2010-06-11 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mono / metadata / ChangeLog
1 2010-06-11  Zoltan Varga  <vargaz@gmail.com>
2
3         * object.c: Use a callback to create IMT trampolines, allowing the usage of one
4         imt trampoline per imt slot when using LLVM.
5
6 2010-06-10  Jonathan Pryor <jpryor@novell.com>
7
8         * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
9           runtime.c:mono_runtime_shutdown().
10         * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
11           AppDomain.ProcessExit event in all AppDomains.
12
13 2010-06-06  Zoltan Varga  <vargaz@gmail.com>
14
15         * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
16         done by the caller.
17
18 2010-06-05  Mark Probst  <mark.probst@gmail.com>
19
20         * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
21         up freeing.
22
23 2010-06-05  Mark Probst  <mark.probst@gmail.com>
24
25         * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
26         segments of memory at once, to reduce the number of mmap/munmap
27         calls.
28
29 2010-06-05  Mark Probst  <mark.probst@gmail.com>
30
31         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
32         allocations and distinguish between normal, degraded and pinned
33         allocations.
34
35 2010-06-05  Mark Probst  <mark.probst@gmail.com>
36
37         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
38         allocations count toward major collections and trigger major
39         collections from degraded allocations if appropriate.
40
41 2010-06-05  Mark Probst  <mark.probst@gmail.com>
42
43         * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
44
45 2010-06-05  Mark Probst  <mark.probst@gmail.com>
46
47         * sgen-gc.c: Enable mark&sweep again.
48
49 2010-06-05  Mark Probst  <mark.probst@gmail.com>
50
51         * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
52
53 2010-06-05  Mark Probst  <mark.probst@gmail.com>
54
55         * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
56         major heap allowance for minor collections, instead of two
57         separate ones for small and large objects.  This reduces the
58         number of major collections.
59
60 2010-06-04  Marek Habersack  <mhabersack@novell.com>
61
62         * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
63         the BFLAGS_IgnoreCase is raised
64
65 2010-06-03  Zoltan Varga  <vargaz@gmail.com>
66
67         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
68         all information in a single structure. Return information about scopes as well.
69
70         * mono-debug.c (mono_debug_lookup_locals): Ditto.
71
72 2010-06-02  Geoff Norton  <gnorton@novell.com>
73
74         * appdomain.c: If we are running with IOMAP we might
75         have been provided a string that isn't case-aware for our file-
76         system, so we need to use io-portability to check if the file 
77         exists, rather than a simple glib test.
78
79         Fixes #608849
80
81 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
82
83         * verify.c (verify_generic_parameters): Verify if
84         there are not loops in constraints.
85
86 2010-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
87
88         * verify.c (is_compatible_boxed_valuetype): Constaints
89         must be recursively checked if one generic argument
90         has a constraint on another.
91
92         Fixes #610625.
93
94 2010-05-31  Miguel de Icaza  <miguel@novell.com>
95
96         * console-unix.c (terminal_get_dimensions): Fix my previous
97         botched commit and return the actual value obtained from the ioctl.
98
99 2010-05-29  Mark Probst  <mark.probst@gmail.com>
100
101         * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
102         references so that we don't have to do the cache-cold fetch of the
103         class in copy_object_no_checks().
104
105 2010-05-29  Robert Jordan  <robertj@gmx.net>
106
107         * marshal.c (mono_marshal_asany): marshal LPWSTRs using
108         mono_marshal_string_to_utf16_copy () to avoid memory allocation
109         mismatches under Windows. Fixes pinvoke2:test_0_asany.
110
111 2010-05-28  Mark Probst  <mark.probst@gmail.com>
112
113         * sgen-gc.c: Change default nursery size to 4MB, because it
114         improves performance on many applications and benchmarks.
115
116 2010-05-28  Mark Probst  <mark.probst@gmail.com>
117
118         * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
119         always aligned to ALLOC_ALIGN.  To handle this, shift the size in
120         the GC descriptor by one bit, and don't encode the size for value
121         types not containing references.  Also get rid of
122         DESC_TYPE_STRING.
123
124 2010-05-28  Mark Probst  <mark.probst@gmail.com>
125
126         * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
127         other than for remset processing.
128
129 2010-05-28  Mark Probst  <mark.probst@gmail.com>
130
131         * sgen-gc.c: More and better remset consistency checks.
132
133 2010-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
134
135         * sgen-gc.c: Add a note about the int[] trick to avoid some
136         memset.
137
138 2010-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
139
140         * sgen-gc.c (sort_addresses): Use heap sort since it has better
141         performance.
142
143         This helps programs with lots of threads or thread with big stacks
144         since the bottleneck the pin queue can get quite big.
145
146 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
147
148         * sgen-gc.c (search_fragment_for_size): Move fragment setup into
149         a separate function called setup_fragment.
150
151         * sgen-gc.c (search_fragment_for_size_range): Variant of
152         search_fragment_for_size that does search for a secondary smaller
153         size.
154
155         * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
156         for tlab allocation so small fragments are used.
157
158         This patch uses small fragments for tlab allocation when possible in order
159         to improve nursery utilization. With a fixed size tlab this patch is not very
160         usefull but once size gets dynamically adjusted, this will be invaluable.
161
162         Performance under pystone 500k is unchanged. Nursery utilization improves by
163         3.5% and 18 more fragments are used per minor GC.
164
165         Performance under modified binary-tree is unchanged. Nursery utilization
166         improves by 0.5% and 3 more fragments are used per minor GC.
167
168         These numbers make sense since as more pinning happens, more fragments are
169         created and so are the chances of having a bunch of small ones.
170
171 2010-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
172         * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space     from
173         the current fragment when allocating a TLAB.
174
175         Reduces number of pystone 500k minor collections by 7%.
176
177 2010-05-25  Martin Baulig  <martin@ximian.com>
178
179         Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
180
181         * debug-mono-symfile.c: Release memory from symfiles that were
182         loaded from memory.
183
184 2010-05-24  Zoltan Varga  <vargaz@gmail.com>
185
186         * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
187         during shutdown.
188
189 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
190
191         * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
192         target class and remove some dead code.
193
194 2010-05-22  Zoltan Varga  <vargaz@gmail.com>
195
196         * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
197         the MonoTypes inside method headers can be freed when the header is freed.
198
199 2010-05-21  Zoltan Varga  <vargaz@gmail.com>
200
201         * threadpool.c: Fix the DISABLE_SOCKETS build.
202
203 2010-05-19 Martin Baulig  <martin@novell.com>
204
205         Fix #604911.
206
207         * threads.c (wait_for_tids_or_state_change): Use an
208         alertable WaitForMultipleObjectsEx().
209         (wait_for_tids): Likewise.
210
211 2010-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
212
213         * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
214         icall.
215
216         * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
217         gc tracked memory.
218
219         * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
220         argument from a gchandle.
221
222         * marshal.c: Get rid of the delegate_target_locations hash table.
223
224         Fixes #605295.
225
226 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
227
228         * sgen-gc.c: Use _fast variants for string and array length.
229
230 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
231
232         * sgen-gc.c: Fix counters to be 64 bits.
233
234         * sgen-gc.c (dump_heap): Fix formating strings.
235
236 2010-05-17 Rodrigo Kumpera  <rkumpera@novell.com>
237
238         * sgen-gc.c (global_remset_location_was_not_added): New
239         function that implements a 2 element LRU cache for just
240         added remsets. It is used to avoid adding duplicate ones.
241
242         * sgen-gc.c (add_to_global_remset): Check cache before
243         adding new entry.
244
245         * sgen-gc.c (scan_from_remsets): Don't process global remsets
246         that fail the cache test.
247
248         * sgen-gc.c (scan_from_remsets): Simplify the global remset
249         loop removing one condtion that is not possible.
250
251         A 2 element LRU cache was chosen by profiling IronPython 2.6
252         pytones with 1M passes and corlib compilation.
253
254         For the ipy test duplication was originally 940.92, measured
255         by "Store remsets" divided by "Unique store remsets".
256
257         With a 2-element LRU, duplication went to 1.007. Without the
258         check in scan_from_remsets 1.438.
259
260         With a 16-elements LRU, duplication reduction was negligibe.
261         A single element cache was basically of no use.
262
263         With corlib compilation duplication went from  1.4 to 1.02.
264
265         Performance results is a 20% time decrease for ipy and 2%
266         with corlib.
267 2010-05-16  Zoltan Varga  <vargaz@gmail.com>
268
269         * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
270
271 2010-05-15  Geoff Norton  <gnorton@novell.com>
272
273         * mono-debug.c: Fix a leak of the global table on shutdown.
274
275 2010-05-15  Geoff Norton  <gnorton@novell.com>
276
277         * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
278         to clean up MonoDebugSourceLocation's.
279
280 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
281
282         * class.c (mono_class_create_from_typedef): Fail a class
283         if there is a loop with its parent.
284
285         Fixes #598239.
286
287 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
288
289         * loader.c (mono_loader_set_error_type_load): Convert
290         a g_warninig to mono_trace_warning.
291
292 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
293
294         * class.c (mono_class_get_full): Release strings on failure
295         to avoid leaking them.
296
297 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
298
299         * class.c (mono_class_create_from_typedef): Only return
300         the class if no exceptions were detected.
301
302         * class.c (mono_class_create_from_typedef): Don't remove
303         broken classes from class_cache. Just set failure and
304         bail out.
305
306         This fixes a memory a memory leak where resolving the same
307         broken class multiple times resulted in a memory leak.
308
309         The right behavior would be to actually return the class
310         a let the caller figure it out.
311
312 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
313
314         * mono-ptr-array.h: Add mono_ptr_array_sort.
315
316         * reflection.c (mono_image_build_metadata): Replace that ugly
317         qsort call with mono_ptr_array_sort.
318
319 2010-05-13  Mark Probst  <mark.probst@gmail.com>
320
321         * sgen-gc.c: Switch to the copying major collector, because
322         Mark&Sweep is still buggy.
323
324 2010-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
325
326         * reflection.c (mono_image_build_metadata): Don't put managed
327         references on non-tracked memory.
328
329 2010-05-13  Zoltan Varga  <vargaz@gmail.com>
330
331         * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
332
333 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
334
335         * icall.c: Switch to mono-ptr-array.h.
336
337 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
338
339         * Makefile.am: Add mono-ptr-array.h.
340
341         * mono-ptr-array.h: New header that implements
342         a GC tracked equivalent of g_ptr_array. 
343
344 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
345
346         * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
347         method to avoid initializing the class.
348
349         Fixes #605115.
350
351 2010-05-12 Rodrigo Kumpera  <rkumpera@novell.com>
352
353         * icall.c (ves_icall_System_MonoType_getFullName): It
354         doesn't require to init the class.
355
356 2010-05-11  Miguel de Icaza  <miguel@novell.com>
357
358         * console-unix.c: Signal handlers now save and restore errno.   We
359         have never had a bug report about this, ioctl does change errno. 
360
361         Hide the unused method.   
362
363         Remove internal declarations from public headers.
364
365         Document what the signal handler is doing
366
367 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
368
369         * sgen-gc.c (clear_unreachable_ephemerons): Clear
370         unreachable keys with a tombstone.
371
372         * sgen-gc.c (mark_ephemerons_in_range): Ignore
373         tombstone keys.
374
375 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
376
377         * icall-def.h:
378         * gc-internals.h:
379         * gc.c: New GC:get_ephemeron_tombstone.
380
381 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
382
383         * appdomain.c (create_exceptions): Rename to
384         create_domain_objects. Create the ephemeron tombstone object.
385
386         * domains-internals.h (MonoDomain): Add new field for the
387         ephemeron tombstone.
388
389         * domain.c (mono_domain_free): Set ephemeron_tombstone to
390         NULL.
391
392 2010-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
393
394         * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
395         and dislinks must be processed before LOS since they
396         could end up with pointers to memory returned to the
397         OS.
398
399 2010-05-11  Zoltan Varga  <vargaz@gmail.com>
400
401         * class.c (mono_class_alloc): New helper function to centralize memory allocation
402         for classes, allocates either from the image mempool or from the heap.
403
404         * class.c: Use mono_class_alloc to allocate memory owned by classes.
405
406         * metadata.c (free_generic_class_dependents): Free more items belonging to
407         generic classes.
408
409 2010-05-10  Zoltan Varga  <vargaz@gmail.com>
410
411         * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
412         as well. Fixes #604054.
413
414 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
415
416         * metadata-verify.c: MS doesn't mind duplicates in the
417         typeref table. Move it to full verification.
418
419         Fixes #600508.
420
421 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
422
423         * image.c (do_mono_image_load): Report verification
424         errors when loading an image fails.
425
426 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
427
428         * reflection.c (mono_type_get_object): Remove chunk of code
429         no longer in use.
430
431 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
432
433         * icall-def.h
434         * icall.c: Delete some unused icalls.
435
436 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
437
438         * appdomain.c (mono_domain_has_type_resolve): Check for
439         NULL domain objects to make pedump happy.
440
441         * object.c (mono_field_get_value): Assert on NULL object.
442         It's the caller resposibility to check for this.
443
444         * object.c (mono_field_get_value_object): Ditto.
445
446         Fixes #601384.
447
448 2010-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
449
450         * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
451         checks can avoid doing a mono_class_init.
452
453         * icall.c: Remove mono_class_init from a bunch of icalls that
454         don't need it.
455
456         Hopefully we're now lazy enough to fix most victims of #601431.
457
458 2010-05-07  Mark Probst  <mark.probst@gmail.com>
459
460         * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
461
462 2010-05-07  Mark Probst  <mark.probst@gmail.com>
463
464         * sgen-gc.c: Remove unnecessary checks in domain clearing code.
465
466 2010-05-07  Marek Habersack  <mhabersack@novell.com>
467
468         * culture-info-tables.h: updated to include en-TT culture. Fixes
469         bug #594035
470
471 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
472
473         Move mono_class_init from mono_type_get_object to icalls.
474         This causes massive memory savings for Assembly::GetTypes () and
475         make it fail a lot less due to missing dependencies.
476
477         This is a conservative, naive change as it doesn't remove some
478         mono_class_init from places that might not need them. Carefull
479         review of those should follow.
480
481         * reflection.c (mono_type_get_object): Don't mono_class_init the
482         returning type.
483
484         * reflection.c:
485         * cominterop.c:
486         * icall.c:
487         * marshal.c: Call mono_class_init in functions receiving a MonoType
488         object.
489
490         First step into fixing #601431.
491
492 2010-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
493
494         * gc-internal.h: Add new functions required for ephemeron support.
495
496         * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
497
498         * icall-def.h: Add GC::register_ephemeron_array.
499
500         * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
501         under sgen. Its fields must not be marked.
502
503         * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
504
505         * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
506         handling finalizable objects. Clean dead ones after all finalizable
507         handling.
508
509         * sgen-gc.c (dump_heap): Add new kind of internal memory.
510
511         * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
512         arrays from the dead domain.
513
514         * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
515
516         * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
517         whose keys are reachable.
518
519         * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
520         list of live ephemeron arrays.
521
522 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
523
524         * class.c (mono_class_layout_fields): Don't perform alignment
525         if align is zero.
526
527         * class.c (mono_class_layout_fields): Init field related information
528         to sane defaults.
529
530 2010-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
531
532         * verify.c (mono_verifier_verify_class): Verify the constraint
533         of generic type definitions.
534
535 2010-05-04  Mark Probst  <mark.probst@gmail.com>
536
537         * sgen-marksweep.c: Simplify free list maintenance in sweep.
538
539 2010-05-02  Mark Probst  <mark.probst@gmail.com>
540
541         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
542         major_do_collection() across the two major collectors.
543
544 2010-05-02  Mark Probst  <mark.probst@gmail.com>
545
546         * sgen-gc.c: Add heavy statistics counter for re-added global
547         remsets.
548
549 2010-05-02  Mark Probst  <mark.probst@gmail.com>
550
551         * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
552         get rid of a division in critical code.
553
554 2010-04-29  Mark Probst  <mark.probst@gmail.com>
555
556         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
557         blocks for objects without references in mark&sweep, to improve
558         performance.
559
560 2010-04-28  Mark Probst  <mark.probst@gmail.com>
561
562         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
563         statistics up-to-date.
564
565 2010-04-27  Mark Probst  <mark.probst@gmail.com>
566
567         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
568         heap-dump for mark&sweep.
569
570 2010-04-27  Zoltan Varga  <vargaz@gmail.com>
571
572         * loader.c (mono_method_get_header): Move the is_inflated case before the
573         wrapper case, as a method can be both.
574
575 2010-04-27  Mark Probst  <mark.probst@gmail.com>
576
577         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
578         separate pass to scan pinned and large object but use the gray
579         queue like for regular objects.
580
581 2010-04-26  Zoltan Varga  <vargaz@gmail.com>
582
583         * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
584         string.h for memmove.
585
586         socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
587         ipaddress_to_struct_in6_addr() is only needed when
588         defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
589
590 2010-04-25  Mark Probst  <mark.probst@gmail.com>
591
592         * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
593         separate copy_object functions for major vs nursery.  Allows us to
594         get rid of a few checks and the start and end parameters for many
595         functions.
596
597 2010-04-25  Mark Probst  <mark.probst@gmail.com>
598
599         * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
600         sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
601         collector.
602
603 2010-04-25  Zoltan Varga  <vargaz@gmail.com>
604
605         * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
606         calling setup_mono_type () since the nested parent could recursively reference
607         the nested class using generic constraints. Fixes #599469.
608
609 2010-04-24  Mark Probst  <mark.probst@gmail.com>
610
611         * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
612         abstraction.
613
614 2010-04-24  Mark Probst  <mark.probst@gmail.com>
615
616         * sgen-gc.c: Remove more unneeded code.
617
618 2010-04-24  Mark Probst  <mark.probst@gmail.com>
619
620         * sgen-gc.c: Disable managed allocator and wbarrier when the
621         binary protocol is enabled.
622
623 2010-04-24  Mark Probst  <mark.probst@gmail.com>
624
625         * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
626
627 2010-04-24  Mark Probst  <mark.probst@gmail.com>
628
629         * sgen-gc.c: Remove a few commented out and unneeded bits.
630
631 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
632
633         * threadpool.c: patch from Robert Nagy that fixes a nullref and
634         uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
635
636 2010-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
637
638         * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
639         types.
640
641         Fixes #331126
642
643 2010-04-21  Mark Probst  <mark.probst@gmail.com>
644
645         * sgen-gc.c: Turn off semi-precise stack mark.
646
647 2010-04-20  Sebastien Pouliot  <sebastien@ximian.com>
648
649         * reflection.c (mono_custom_attrs_from_index): Use right function
650         to free 'list' (i.e. g_list_free) if the verifier fails.
651
652 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
653
654                 * verify.c: Handle the case where mono_type_get_underlying_type_any
655                 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
656                 and MONO_TYPE_VALUETYPE in those case.
657
658                 Based on a slightly modified patch by Sebastien Pouliot  <sebastien@ximian.com>
659
660                 Hopefully Fixes #564253.
661
662 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
663
664         * domain-internals.h: made threadpool_jobs volatile.
665         * mono-wsq.c: add an assert to verify that the threadpool cleaned up
666         all local jobs.
667         * threadpool.c:
668                 -When two threads try to initialize the socket IO pool,
669                 the second one waits until the intialization is finished
670                 instead of continuing right away.
671                 -Add checks for domain unload: no items added in this case.
672                 -Only measure the time every 10 elements added to the queue.
673                 This is an experiment since linux x86 gettimeofday() sucks.
674                 -Create new thread if there are none waiting for work items.
675                 -There was a missing decrement of the busy threads.
676                 -Make sure the local queue is cleaned up before exiting the
677                 thread when the program ends.
678
679 2010-04-19 Rodrigo Kumpera  <rkumpera@novell.com>
680
681         * reflection.c (mono_type_get_object): Normalize generics types
682         as to how managed code expect them to be. A generic instance over
683         the GTD arguments must have the same mirror as the GTD itself.
684
685         Fixes #473289.
686
687 2010-04-19  Zoltan Varga  <vargaz@gmail.com>
688
689         * locales.c: Implement support for DISABLE_NORMALIZATION.
690
691 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
692
693         * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
694         since it is not a MonoMethod.
695
696 2010-04-16  Sebastien Pouliot  <sebastien@ximian.com>
697
698         * icall-def.h: Add get_RequiresElevatedPermissions icall to
699         System.Security.SecurityManager - used only by Moonlight
700         * security-core-clr.c|h: Add Elevated Trust/Permission support
701         for CoreCLR / Moonlight
702
703 2010-04-16  Zoltan Varga  <vargaz@gmail.com>
704
705         * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
706         (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
707
708 2010-04-16  Marek Habersack  <mhabersack@novell.com>
709
710         * mono-perfcounters.c: added code for the "Mono
711         Memory/Total Physical Memory" performance counter.
712
713         * mono-perfcounters-def.h: added definition of the "Mono
714         Memory/Total Physical Memory" performance counter.
715
716 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
717
718         * class.c (mono_class_get_method_by_index): Return NULL
719         on type load failures.
720
721 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
722
723         * class.c (mono_class_from_typeref): Check if the supplied
724         image has an assembly bound to it.
725
726         Fixes #567884.
727
728 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
729
730         * loader.c (mono_method_get_signature_full): Use new function
731         inflate_generic_signature_checked to check for errors.
732
733         Fixes #560839.
734
735 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
736
737         * loader.c (inflate_generic_signature): Add _checked variant
738         and move this function to use it.
739
740 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
741
742         * class.c (mono_class_setup_vtable_general): Use error checking
743         version of mono_class_inflate_generic_method_full.
744
745         Fixes #596975.
746
747 2010-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
748
749         * class.c (mono_class_inflate_generic_type_no_copy): Do proper
750         error handling passing MonoError around.
751
752         Fixes #560336.
753
754 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
755
756         * socket-io.c: make GetHostByName ("") work on windows.
757         Fixes bug #456723.
758
759 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
760
761         * object-internals.h:
762         * threads.c: use a spin lock when accesing the per-thread appdomain
763         list.
764
765 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
766
767         * threads.c: no need to take the threads lock in push/pop appdomain.
768
769 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
770
771         * reflection.c (_mono_reflection_parse_type): MS supports
772         non-assembly-qualified types in a generic type parameter list
773         when enclosed in '[]' (which signals that they should be a fqn).
774
775         This breaks ECMA specs for how type names are encoded in cattr
776         blobs but F# does it.
777
778         Fixes #576342.
779
780 2010-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
781
782         * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
783         for instance methods/ctors.
784
785         Fixes #422113.
786
787 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
788
789         * reflection.c: Use the new verifier support for checking
790         custom attributes.
791
792         Fixes #595306.
793
794 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
795
796         * metadata-verify.c: Implement structural verification
797         of custom attributes. This check requires access to the
798         loader since to resolve the size of an enum we have to
799         look it up.
800         We don't check if named argumenments are encoded in a
801         compatible fashion to their underlying field/prop.
802         Maybe we should?
803
804         * verify-internals.h: Add two new cattr verification API.
805
806 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
807
808         * metadata-verify.c (decode_signature_header): Fix signature.
809
810 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
811
812         * verify.c (mono_verifier_is_enabled_for_method): Handle
813         assembly less images.
814
815         * verify.c (mono_verifier_is_class_full_trust): Ditto.
816
817 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
818
819         * loader.c (mono_method_signature_checked): Properly
820         init MonoError.
821
822         * loader.c (mono_method_signature): It's the calee
823         resposibility to init the error object.
824
825 2010-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
826
827         * metadata-verify.c (decode_signature_header): Do proper
828         overflow checking.
829
830 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
831
832         * reflection.c: maintain the invariants required by
833         mono_class_layout_fields() also in typebuilder_setup_fields ().
834
835 2010-04-11  Sebastien Pouliot  <sebastien@ximian.com>
836
837         * security-core-clr.c: Call mono_class_setup_methods in 
838         get_default_ctor before checking klass->methods. Fix typo in
839         comment
840
841 2010-04-10  Jb Evain  <jbevain@novell.com>
842
843         * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
844         add .net 4.0 RTM version.
845
846 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
847
848         * reflection.c (resolve_object): Properly inflate generic
849         methods when a context is supplied.
850
851         Fixes #591226.
852
853 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
854
855         * verify.c (mono_method_verify): A switch op don't empty
856         the stack for the next one. Fixes a bug when running fsi
857         under --verify-all.
858
859 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
860
861         * metadata-verify.c (is_valid_standalonesig_blob): Accept
862         fields as valid standalone sig too. F# does generate them.
863
864         * metadata-verify.c (verify_typedef_table_full): Ignore
865         what <module> extends.
866
867 2010-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
868
869         * verify.c (do_invoke_method): It's ok to do use call with
870         virtual, non-final methods if their class is sealed.
871
872 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
873
874         * icall.c (ves_icall_MonoField_GetValueInternal): This function
875         is a near identical copy of mono_field_get_value_object. So simply
876         call it.
877
878         * object.c (mono_field_get_value_object): Handle literal fields
879         on open generic classes.
880
881         Fixes #594942.
882
883 2010-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
884
885         * reflection.c (mono_reflection_create_runtime_class): Setup
886         parent/supertype information again since it can be changed
887         without notice.
888
889 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
890
891         * verify.c (verify_type_compatibility_full): Properly handle
892         stores between arrays of primitives.
893
894         Fixes the verifier side of #555950.
895
896 2010-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
897
898         class.c (mono_bounded_array_class_get): Properly init
899         cast_class to take the fact that uint[] and int[] can be
900         casted between each other.
901
902         Fixes #555950.
903
904 2010-04-07  Geoff Norton  <gnorton@novell.com>
905
906         * domain.c: Avoid a deadlock on osx.  Fixes #565765
907
908 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
909
910         * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
911         builders. Fixes #594464.
912
913 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
914
915         * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
916         waiting for all threads to suspend, as those threads can't be suspended.
917
918 2010-04-08  Zoltan Varga  <vargaz@gmail.com>
919
920         * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
921         to avoid crashes on newly created threads.
922
923 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
924
925         * file-io.c: reset the MonoIOStat structure in case of error.
926         Fixes bug #582667.
927
928 2010-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
929
930         * class.c (print_implemented_interfaces): Print proper type name.
931
932         * class.c (mono_class_setup_vtable): Don't try that hard to produce
933         the override map for generic instances since it later ignored.
934
935         * class.c (mono_class_implement_interface_slow): Don't break for
936         dynamic generic instances.
937
938         * object.c (mono_runtime_invoke_array): Add an assert for allocation.
939
940         * reflection.c (mono_reflection_method_get_handle): New method that
941         resolves a method handle.
942
943         * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
944         case when we override methods from a dynamic generic instance interface.
945
946         Fixes #575941.
947
948 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
949
950         * threadpool.c: don't attempt to close the pipe when it has not been
951         created.
952
953 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
954
955         * threadpool.c: if there are no waiting threads, try to start a new
956         one. This fixes the not-so-random hangs in System.ServiceModel tests.
957         No need to use InterlockedCompareExchange to read volatile variables.
958
959 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
960
961         * verify.c (verify_type_compatibility_full): Fail mixed valuetype
962         and reference types that point to the same class.
963
964         Fixes #565598.
965
966 2010-04-05 Rodrigo Kumpera  <rkumpera@novell.com>
967
968         * verify.c (verify_stack_type_compatibility_full): Ignore constraints
969         when verifying compatibility between a generic instance and a generic
970         parameter.
971
972         * verify.c (check_is_valid_type_for_field_ops): Improve error message.
973
974         * verify.c (stack_slot_stack_type_full_name): Improve verification type
975         name.
976
977         Fixes #587849.
978
979 2010-04-04  Mark Probst  <mark.probst@gmail.com>
980
981         * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
982
983 2010-04-04  Zoltan Varga  <vargaz@gmail.com>
984
985         * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
986
987 2010-04-03  Marek Habersack  <mhabersack@novell.com>
988
989         * process.c: when cross-compiling with MinGW, force GetProcessId
990         lookup using GetProcAddress.
991
992 2010-04-02  Mark Probst  <mark.probst@gmail.com>
993
994         * sgen-gc.c: parse_environment_string_extract_number() must be
995         static.
996
997 2010-04-02  Mark Probst  <mark.probst@gmail.com>
998
999         * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1000         gray_object_dequeue(), to make sure they're inlined.
1001
1002 2010-04-02  Mark Probst  <mark.probst@gmail.com>
1003
1004         * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1005         asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1006
1007 2010-04-02  Jb Evain  <jbevain@novell.com>
1008
1009         * exception.c: remove dead code.
1010
1011 2010-04-02  Zoltan Varga  <vargaz@gmail.com>
1012
1013         * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1014         with mono-gc.h.
1015
1016 2010-04-01  Sanjoy Das <sanjoy@playingwithpointers.com>
1017
1018         * sgen-gc.c: Make the nursery size adjustable by the
1019         MONO_GC_PARAMS environment variable.
1020
1021         Code is contributed under MIT/X11 license.
1022
1023 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1024
1025         * threadpool.c: threadpool threads wait is alertable.
1026         Fixes bug #592964.
1027         Reduced the stack size of the *poll_wait thread.
1028
1029 2010-04-01  Sebastien Pouliot  <sebastien@ximian.com>
1030
1031         * exception.c|metadata-internals.h: Add new mono_get_exception_
1032         field_access_msg and mono_get_exception_method_access_msg 
1033         functions that accept a const char* parameter to provide more 
1034         details when the exception is thrown.
1035         * security-core-clr.c|h: Rework code to allow logging exceptions
1036         (export MONO_LOG_MASK="security") and to supply more details in
1037         [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1038         mono_security_core_clr_is_field_access_allowed and 
1039         mono_security_core_clr_is_call_allowed to return an exception,
1040         with messages and logging, that can be emitted by method-to-ir.c
1041
1042 2010-04-01  Mark Probst  <mark.probst@gmail.com>
1043
1044         * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1045         pinned object.
1046
1047 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1048
1049         * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1050         the assembly name is not well formed utf8. Fixes #567882.
1051
1052 2010-04-01  Zoltan Varga  <vargaz@gmail.com>
1053
1054         * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1055         the generic parameters from the builder. Fixes #473298.
1056
1057 2010-03-31  Miguel de Icaza  <miguel@novell.com>
1058
1059         * object.c (mono_class_proxy_vtable): Eliminate warning. 
1060
1061         * marshal.c (emit_marshal_boolean): Eliminate possible
1062         uninitialized local warning. 
1063
1064 2010-03-30  Sebastien Pouliot  <sebastien@ximian.com>
1065
1066         * class.c (mono_class_init): Postpone coreclr inheritance check
1067         until the end of the initialization (so we can check up the 
1068         default ctor manually for the core-clr inheritance rules).
1069         * security-core-clr.c: Add the missing (undocumented) checks on
1070         default constructors when verifying inheritance rules.
1071
1072 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1073
1074         * domain-internals.h (MonoJitExceptionInfo): Add new field
1075         handler_end to the data union. To be used to point the end
1076         of a finally block.
1077
1078 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1079
1080         * reflection.c: Add support for new v4 type
1081         System.Reflection.MonoModule that is the concrete version
1082         of Module which is abstract unver v4.
1083
1084 2010-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
1085
1086         * class.c (mono_class_init): Don't set class failure after
1087         inited = 1 is set. It must be done before.
1088
1089 2010-03-30  Andreas Färber  <andreas.faerber@web.de>
1090
1091         * mono-config.c: Add support for OS "haiku"
1092         * ChangeLog: Fix UTF-8 encoding
1093
1094         Code is contributed under MIT/X11 license.
1095
1096 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1097
1098         * console-unix.c: fixed include logic for sys/ioctl.h.
1099
1100 2010-03-30  Mark Probst  <mark.probst@gmail.com>
1101
1102         * threads.c: Fix bitmap generation for TLS marking on 64 bit
1103         systems.
1104
1105 2010-03-30  Zoltan Varga  <vargaz@gmail.com>
1106
1107         * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1108         unfinished/broken typebuilders.
1109
1110 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1111
1112         * sgen-gc.c: Use the same heuristic for the LOS target that we use
1113         for the minor section allowance.
1114
1115 2010-03-29  Raja R Harinath  <harinath@hurrynot.org>
1116
1117         * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1118         "NoOptimization".
1119
1120 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1121
1122         * sgen-gc.c: Count bytes allocated with heavy statistics.
1123
1124 2010-03-29  Mark Probst  <mark.probst@gmail.com>
1125
1126         * sgen-gc.c: More detailed time statistics.
1127
1128 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1129
1130         * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1131         fix the user defined mark interface to pass a pointer
1132         to the object location and not the object itself.
1133
1134 2010-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
1135
1136         * reflection.c (mono_method_body_get_object): Release
1137         the method header before the call to CACHE_OBJECT since
1138         this is a macro that returns.
1139
1140 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1141
1142         * class.c (inflate_generic_type): mono_metadata_type_dup
1143         already dupes array information, the g_memdup was just
1144         leaking memory.
1145
1146 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1147
1148         * verify.c: Add stack_peek function. Fix CEE_DUP
1149         to not read from invalid memory if push did expand
1150         the stack.
1151
1152 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1153
1154         * verify.c: Remove old table verification code that has
1155         been superseeded by the new metadata verifier.
1156
1157         * verify.h: Remove mono_image_verify_tables from the public
1158         API.
1159
1160         * pedump.c: Fix for removed bits.
1161
1162 2010-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
1163
1164         * verify.c: Allocate stack slows lazily to reduce stack usage
1165         in case of methods with huge stacks. Reduces memory consumption
1166         for mcs yyparse from 459Mb to 1.8Mb.
1167
1168 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1169
1170         * threadpool.c: don't try executing items from domains being
1171         unloaded. Fixes appdomain-async-invoke test.
1172
1173 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1174
1175         * threadpool.c: spin while the threadpool initializes.
1176         * mono-wsq.c: if the WSQ has not been initialized or has been shut
1177         down, don't do anything.
1178
1179 2010-03-26  Zoltan Varga  <vargaz@gmail.com>
1180
1181         * threads.c (mono_thread_create_internal): Set the GC type of the
1182         threads_starting_up hash table.
1183
1184 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1185
1186         * threadpool.c: reset 'state' to avoid returning non-null when the
1187         event type is not found.
1188
1189 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1190
1191         * sgen-gc.c: make copy_object () take the address of the
1192         slot holding the reference. This allows saving memory stores
1193         when not needed and it allows keeping track of oldspace->nursery
1194         references for the card table code.
1195
1196 2010-03-26  Andreas Färber  <andreas.faerber@web.de>
1197
1198         * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1199
1200         Code is contributed under MIT/X11 license.
1201
1202 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1203
1204         * object.c, threads.c, threads-types.h, threads.h: make the
1205         managed thread local storage references precisely tracked.
1206
1207 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1208
1209         * threadpool.[ch]: reworked the threadpool:
1210                 -Threadpool threads use a work-stealing queue. Adding a work
1211                 item from a threadpool thread will queue it in the thread
1212                 local queue without locking (in most cases).
1213                 -epoll events are coalesced before being added to the IO
1214                 queue.
1215                 -Dynamically change the number of active threads
1216                 -Changed the global queue to be more GC friendly
1217
1218         * class-internals.h: add 2 new performance counters for the number of
1219         threads in the threadpool and the IO threadpool.
1220
1221         * object-internals.h: new field in MonoAsyncResult.
1222         * icall-def.h: new internal call for queueing work items.
1223
1224         * Makefile.am: add 2 new files.
1225
1226         * appdomain.c: bump up corlib version.
1227
1228         * mono-wsq.[ch]: an implementation of a work-stealing queue.
1229
1230         * mono-perfcounters-def.h:
1231         * mono-perfcounters.c: added 2 new performance counters.
1232
1233 2010-03-26  Mark Probst  <mark.probst@gmail.com>
1234
1235         * sgen-gc.c: More FIXME/TODO updates.
1236
1237 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1238
1239         * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1240         function mono_gc_invoke_with_gc_lock() which invokes a function
1241         with the guarantee that no collection will occur during its execution.
1242
1243 2010-03-25  Mark Probst  <mark.probst@gmail.com>
1244
1245         * sgen-gc.c: Update a few comments.
1246
1247 2010-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
1248
1249         * reflection.c: Add support for new v4 type
1250         System.Reflection.MonoAssembly that is the concrete version
1251         of Assembly which is abstract unver v4.
1252
1253 2010-03-24  U-anarquia\miguel  <miguel@anarquia>
1254
1255         * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1256         code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1257
1258         Expose a few macros that are needed for SR but not SRE to the
1259         world (previous inside the SRE ifdef)
1260
1261 2010-03-24  Mark Probst  <mark.probst@gmail.com>
1262
1263         * sgen-gc.c (gc_register_current_thread): We need
1264         stack_start_limit as well in the non-attribute pthread case.
1265
1266 2010-03-23 Rodrigo Kumpera  <rkumpera@novell.com>
1267
1268         * threads.c: Fix windows build.
1269
1270 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1271
1272         * thread-types.h: Add mono_thread_resume_interruption.
1273
1274         * threads.c: Add mono_thread_resume_interruption, this
1275         function should be called after the last protected handler
1276         found at interruption time has finished.
1277
1278 2010-03-22 Rodrigo Kumpera  <rkumpera@novell.com>
1279
1280         * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1281         Check MonoInternalThread's ::state instead of ::abort_exc
1282         since the later can be lazily created.
1283
1284         This is specially problematic when running a finally block
1285         under AbortRequested state. ResetAbort must work, but the
1286         abort_exc object has not been created because interruption
1287         has not began.
1288
1289 2010-03-22  Geoff Norton  <gnorton@novell.com>
1290
1291         * locales.c: Its possible for CFStringGetCStringPtr
1292         to return null and not convert encodings.  Use
1293         CFStringGetCString instead.
1294
1295 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1296
1297         * class-internals.h, class.c, object.c: introduce compressed
1298         interface bitmaps (for now only under small config): this saves
1299         about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1300         startups.
1301
1302 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1303
1304         * mono-debug.c: don't try to get the method header, it causes a
1305         deadlock and it is not used for anything anymore.
1306
1307 2010-03-22  Zoltan Varga  <vargaz@gmail.com>
1308
1309         * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1310         broken by the last change.
1311
1312 2010-03-21  Andreas Färber  <andreas.faerber@web.de>
1313
1314         * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1315         SOCK_RDM.
1316         
1317         Code is contributed under MIT/X11 license.
1318
1319 2010-03-20  Sanjoy Das <sanjoy@playingwithpointers.com>
1320
1321         * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1322         nursery.
1323
1324         Code is contributed under MIT/X11 license.
1325
1326 2010-03-19  Martin Baulig  <martin@ximian.com>
1327
1328         * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1329         dummy field, containing an empty string.
1330         (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1331
1332
1333 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1334
1335         * class.c: setup_interface_offsets() refactor to not call
1336         mono_class_get_implemented_interfaces () more times than needed and
1337         to reduce the runtime memory requirements to be O(num_interfaces)
1338         instead of O(max_interface_id).
1339
1340 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1341
1342         * mono-mlist.[ch]: add mono_mlist_set_next ().
1343
1344 2010-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
1345
1346         * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1347         associated changes to support holes in the protected range of a
1348         try block.
1349
1350         * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1351         retrieves the holes table from a given MonoJitInfo.
1352
1353 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1354
1355         * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1356         debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1357         hide the contents of the MonoString and MonoArray structs from the
1358         public API. Change the accessor macros to accessors functions where
1359         needed. Adjusted the array API to allow for pointer-sized lengths and
1360         starting positions, so 64 bit arrays can be optionally provided in an
1361         API compatible way if needed on 64 bit systems.
1362
1363 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1364
1365         * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1366         reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1367
1368 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1369
1370         * class-internals.h: remove the method header from MonoMethod since
1371         from now on it will be transient. We have a header pointer for method
1372         wrappers, since in that case we need to keep track of it. For this
1373         reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1374         structs now. The same happens with MonoMethodInflated.
1375         * class.c: reset the sre_method flag for inflated method structures:
1376         this makes the code that cares look at the header in the MonoMethodInflated
1377         structure.
1378         * loader.c: lookup the method header in the appropriate field now that
1379         it is removed from MonoMethod.
1380         * metadata-internals.h: add a flag to the method header to know if it
1381         can be freed inside mono_metadata_free_mh ().
1382         * method-builder.c: updates after moving the header field from
1383         MonoMethod to MonoMethodWrapper.
1384         * reflection.c: MonoMethods generated from Reflection.Emit use
1385         MonoMethodWrapper structs if they need a method header now (later take
1386         advantage of this and remove all the current unsafe uses of method_aux_hash).
1387         * metadata.c: make method header parsing not leak when verification
1388         fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1389         These changes save a few hundred KB of runtime memory in a mcs
1390         bootstrap or a monodevelop startup.
1391
1392 2010-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
1393
1394         * verify.c: Improve error message.
1395
1396 2010-03-12  Jb Evain  <jbevain@novell.com>
1397
1398         * reflection.c (add_exported_type): populate the exported
1399         table with the type's nested type.
1400
1401 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1402
1403         * sgen-gc.c (STRING_SIZE): Semi-revert r153342.  I'm an idiot who
1404         can't read parentheses.
1405
1406 2010-03-10  Mark Probst  <mark.probst@gmail.com>
1407
1408         * threads.c (thread_cleanup): Add a guard to dereferencing
1409         "thread" to avoid an unlikely race condition.
1410
1411 2010-03-09  Sebastien Pouliot  <sebastien@ximian.com>
1412
1413         * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1414         instead of an empty string.
1415
1416 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1417
1418         * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1419         convert to a boolean, recent gcc versions compile this differently.
1420
1421 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1422
1423        * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1424        inlined.
1425
1426 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1427
1428         * sgen-gc.c (STRING_SIZE): Off by one.
1429
1430 2010-03-09  Mark Probst  <mark.probst@gmail.com>
1431
1432         * sgen-archdep.h: Fix the signal context register access for
1433         AMD64.
1434
1435 2010-03-09  Zoltan Varga  <vargaz@gmail.com>
1436
1437         * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1438
1439 2010-03-08  Rodrigo Kumpera  <rkumpera@novell.com>
1440
1441         * verify.c: Store the initial basic block returned by mono_basic_block_split
1442         so we can release the whole list and not just the first one.
1443
1444 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1445
1446         * verify.c, debug-helpers.c, profiler.c, loader.c,
1447         mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1448         MonoMethodHeader a transient entity.
1449
1450 2010-03-08  Zoltan Varga  <vargaz@gmail.com>
1451
1452         * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1453         uncontrolled growth of the gray stack.
1454
1455         * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1456         added items are removed first, improving cache locality. Avoid freeing queue
1457         segments in the fast path, use the list of segments as the free list, truncate
1458         it to its max size at the start of collection.
1459
1460 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1461
1462         * metadata-internals.h: more memory savings, both with small config and without.
1463
1464
1465 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1466
1467         * appdomain.c, domain-internals.h, domain.c, object.c:
1468         make class_vtable_hash into an array to reduce memory usage.
1469
1470 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1471
1472         * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1473         object-internals.h, object.c, reflection.c, threadpool.c:
1474         reduce resource usage when the small config is selected.
1475         In particular, up to 64K of methods/fields/properties/events
1476         are allowed and "other" methods in events are ignored.
1477
1478 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1479
1480         * threads.c: reduce resource usage when compiled for a small config.
1481
1482 2010-03-05  Mark Probst  <mark.probst@gmail.com>
1483
1484         * sgen-gc.c: Also collect number of degraded-alloced objects with
1485         heavy statistics.
1486
1487 2010-03-04  Geoff Norton  <gnorton@novell.com>
1488
1489         * assembly.c: Only support OSX bundling if the bundle is 
1490         actually detectable.
1491
1492 2010-03-04  Geoff Norton  <gnorton@novell.com>
1493
1494         * loader.c: The marshal specs are freed at the end of the call
1495         but it explicitly frees the strings as well as the container,
1496         so we need to dup them too to avoid referencing free'd memory.
1497
1498 2010-03-04  Geoff Norton  <gnorton@novell.com>
1499
1500         * icall-def.h:
1501         * icall.c: Add a new private internal icall to construct
1502         an object from its type without running the ctor.
1503
1504 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1505
1506         * profiler.c: allow multiple profiler engines to be loaded
1507         at the same time.
1508
1509 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1510
1511         * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1512         profiler event to track object moves.
1513
1514 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1515
1516         * object.c, profiler.c, profiler.h, string-icalls.c:
1517         remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1518
1519 2010-03-03  Miguel de Icaza  <miguel@novell.com>
1520
1521         * decimal.c (mono_double2decimal): Add support for reducing the
1522         scale of a decimal.  It turns the 0.6000000000000 into 0.6 as
1523         expected.
1524
1525 2010-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
1526
1527         * icall-def.h:
1528         * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1529
1530 2010-03-03  Marek Habersack  <mhabersack@novell.com>
1531
1532         * mono-config.c (mono_config_parse_assembly_bindings): added -
1533         parses assembly binding redirections from appdomain's config
1534         file.
1535
1536         * metadata-internals.h: added definition of a new function -
1537         mono_config_parse_assembly_bindings - to support parsing assembly
1538         binding redirections defined in appdomain's config file.
1539
1540         * domain-internals.h: added two new fields to _MonoDomain - a list
1541         of assembly bindings and a flag to parse the config file only
1542         once.
1543
1544         * assembly.c (assembly_binding_maps_name): empty culture name and
1545         NULL culture name are considered equal.
1546         (mono_assembly_apply_binding): added support for domain specific
1547         assembly binding redirections, read from the appdomain's
1548         configuration file. Fixes bug #580185
1549
1550 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1551
1552         * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1553         reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1554         support.
1555
1556 2010-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
1557
1558         * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1559         from this function. The new function receive the parent token instead of a type.
1560
1561         * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1562         * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1563         typebuilders. This make it possible to properly encode generic type builders since
1564         their unmanaged type don't have generics data while unfinished.
1565
1566         Fixes #583655.
1567
1568 2010-03-02  Mark Probst  <mark.probst@gmail.com>
1569
1570         * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1571         writing binary log files (can be enabled by #define'ing
1572         BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1573         bugs in longer running programs.
1574
1575 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1576
1577         * metadata.c: added some API documentation.
1578
1579 2010-03-01  Robert Jordan  <robertj@gmx.net>
1580
1581         * filewatcher.h: Include glib.h to fix the MSVC build.
1582
1583 2010-03-01  Zoltan Varga  <vargaz@gmail.com>
1584
1585         * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1586         a GC handle instead. This is a bit slower to access, but avoids burdening the
1587         GC with 100s of individual roots.
1588
1589         * reflection.c (mono_class_get_ref_info):
1590         (mono_class_set_ref_info):
1591         (mono_class_free_ref_info): New internal helper fuctions.
1592
1593         * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1594         of accessing klass->reflection_info directly.
1595
1596         * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1597         words.
1598
1599         * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1600         the previous array.
1601
1602 2010-02-28  Zoltan Varga  <vargaz@gmail.com>
1603
1604         * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1605         needs an indirection.
1606
1607 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1608
1609         * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1610         so all generic sharing code is in one place.
1611
1612         * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1613         we don't call setup_interface_offsets () for unfinished types.
1614
1615 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1616
1617         * class.c (mono_class_generic_sharing_enabled): Move this to
1618         generic-sharing.c.
1619
1620         * image.c: Add an unload hook which is called before an image is unloaded.
1621
1622         * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1623         metadata.c having to depend on generic sharing.
1624
1625 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1626
1627         * class.c: reduce size of ridiculously large cache.
1628
1629 2010-02-26  Martin Baulig  <martin@ximian.com>
1630
1631         * mono-debug.h
1632         (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1633
1634         * threads.c (mono_thread_internal_reset_abort): New method; resets
1635         the abort, but doesn't throw any exception if no abort was requested.
1636
1637 2010-02-26  Zoltan Varga  <vargaz@gmail.com>
1638
1639         * class.c (get_implicit_generic_array_interfaces): Call
1640         mono_class_setup_interface_offsets () before accessing
1641         eclass->interface_offsets_count. This only shows up on platforms without IMT for
1642         some reason.
1643
1644 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1645
1646         * environment.c, environment.h, icall.c: make the GetOSVersionString()
1647         icall internal.
1648
1649 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1650
1651         * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1652         direct access to the MonoType fields.
1653
1654 2010-02-25  Zoltan Varga  <vargaz@gmail.com>
1655
1656         * threads.h: Move some internal functions which were added to this header by
1657         mistake to threads-types.h.
1658
1659         * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1660
1661 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1662
1663         * class-internals.h, class.h, object.h: make MonoRemoteClass
1664         and mono_remote_class() internal.
1665
1666 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1667
1668         * metadata-internals.h, class-internals.h, metadata.h: make the
1669         MonoType guts internal as well.
1670
1671 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1672
1673         * reflection.h: the MonoTypeNameParse guts are internal now.
1674         * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1675         are internal now, provide accessors as needed.
1676         * metadata.h, metadata-internals.h: the MonoMethodSignature
1677         guts are internal now.
1678         * Makefile.am: mempool.h is an internal header now.
1679         * *.h, *.c: remove glib.h usage from the public headers.
1680
1681 2010-02-24  Atsushi Enomoto  <atsushi@ximian.com>
1682
1683         * culture-info-table.h : regenerated.
1684
1685 2010-02-22  Rodrigo Kumpera  <rkumpera@novell.com>
1686
1687         * metadata.c: Add mono_method_get_header_summary which returns minimal
1688         information about the header of a method. This is the information used
1689         by the inline oracle to reject methods.
1690
1691         This method doesn't decode local variables and doesn't cache it's result,
1692         so it should cause a minimal reduction in memory usage.
1693
1694         * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1695         mono_method_get_header_summary.
1696
1697 2010-02-22  Jeffrey Stedfast  <fejj@novell.com>
1698
1699         * threads.c (mono_thread_exit): Make sure that the main thread is
1700         non-null before dereferencing it.
1701
1702 2010-02-21  Geoff Norton  <gnorton@novell.com>
1703
1704         * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1705         locale.
1706         * locaes.c: When running on darwin, try to get the local from CoreFoundation 
1707         before falling back to the posix lookup.
1708
1709 2010-02-19  Zoltan Varga  <vargaz@gmail.com>
1710
1711         * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1712         the DONT_MANAGE flag set.
1713
1714 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1715
1716         * domain.c: Remove old v1 version strings. Let the runtime
1717         default to 2.0 instead of failing because it can't find a
1718         working 1.0 instalation.
1719
1720 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1721
1722         * domain.c: Add v4 RC version string.
1723
1724 2010-02-19  Rodrigo Kumpera  <rkumpera@novell.com>
1725
1726         * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1727         of overflow checking function.
1728
1729 2010-02-18  Rodrigo Kumpera  <rkumpera@novell.com>
1730
1731         * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1732         generic methods.
1733
1734         * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1735         cases for ParameterInfo.
1736
1737         Fixes #579493.
1738
1739 2010-02-18  Zoltan Varga  <vargaz@gmail.com>
1740
1741         * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1742         have has_cctor set. Fixes #575946.
1743
1744 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1745
1746         * appdomain.c: display a warning if the parsing the config file
1747         produces any error.
1748         Skip the BOM in UTF-8 files.
1749         Copy the AppDomainSetup before setting the privateBinPath so that the
1750         correct configuration file is read.
1751
1752 2010-02-15  Zoltan Varga  <vargaz@gmail.com>
1753
1754         * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1755         vtable trampoline per vtable slot index. Not used yet.
1756
1757 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1758
1759         * icall-def.h:
1760         * icall.c: add internal call that returns the system page size.
1761
1762 2010-02-13  Zoltan Varga  <vargaz@gmail.com>
1763
1764         * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1765         'int' for system classes.
1766
1767 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1768
1769         * icall.c, icall-def.h: new icall to check for sufficient
1770         stack space.
1771
1772 2010-02-12  Mark Probst  <mark.probst@gmail.com>
1773
1774         * reflection.c (ensure_complete_type): Check that reflection_info
1775         is set, too.  Fixes crash of corlib testsuite with -O=-all.
1776
1777 2010-02-11  Rodrigo Kumpera  <rkumpera@novell.com>
1778
1779         * attrdefs.h:
1780         * tabledefs.h: Add NoOptimization flag.
1781
1782 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1783
1784         * sgen-gc.c: Don't consider it a missing remset if the target
1785         object is pinned - we might have done the store but not added the
1786         remset yet.
1787
1788 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1789
1790         * sgen-gc.c: When checking for missing remsets, don't assert on
1791         the first one, but print them all and then assert.
1792
1793 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1794
1795         * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1796
1797 2010-02-09  Miguel de Icaza  <miguel@novell.com>
1798
1799         * console-unix.c: On OSX Control-Y is assigned to
1800         VDSUSP (non-Posix), the
1801         suspend-program-next-time-it-tries-to-read-input command (this is
1802         different than C-z, which suspends immediately).
1803
1804         Do the same thing that bash does and ignore this setting,
1805         making our repl/getline support pasting.
1806
1807 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1808
1809         * sgen-gc.c: Simple plausibility check for scan_starts.
1810
1811 2010-02-10  Mark Probst  <mark.probst@gmail.com>
1812
1813         * sgen-gc.c: Round up when calculating the number of scan starts.
1814
1815 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1816
1817         * reflection.c: Export mono_get_object_from_blob.
1818
1819         * object-internals.h: Ditto.
1820
1821         * icall.c: New icall property_info_get_default_value to get the default
1822         value of a property. Since using this is not common, no caching is done.
1823
1824         * icall-def.h: Add new icall.
1825
1826 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1827
1828         * class.c: Add mono_class_get_property_default_value.
1829
1830         * class-internal.h: Export mono_class_get_property_default_value.
1831
1832 2010-02-10  Rodrigo Kumpera  <rkumpera@novell.com>
1833
1834         * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1835
1836 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1837
1838         * sgen-gc.c: introduced critical regions to allow some lockless
1839         operations and increase scalability.
1840
1841 2010-02-10  Geoff Norton  <gnorton@novell.com>
1842
1843         * reflection.c: Support building with DISABLE_REFLECTION
1844
1845 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1846
1847         * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1848         Closes bug #566057.
1849
1850         * exception.c: fix typo in comment.
1851
1852 2010-02-09  Rodrigo Kumpera  <rkumpera@novell.com>
1853
1854         * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1855         property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1856
1857         * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1858
1859         * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1860         the internal API.
1861
1862         Fixes #574434.
1863
1864 2010-02-09  Mark Probst  <mark.probst@gmail.com>
1865
1866         * threads.c: Removed two assertions that were too strict.  Added a
1867         clarifying comment.  Fixes #577090.
1868
1869 2010-02-08  Zoltan Varga  <vargaz@gmail.com>
1870
1871         * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1872         the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1873
1874         * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1875
1876         * verify.c (mono_type_get_stack_name): Fix a warning.
1877
1878 2010-02-07  Zoltan Varga  <vargaz@gmail.com>
1879
1880         * marshal.c (mono_marshal_get_wrapper_info): Rename from
1881         mono_marshal_wrapper_info_from_wrapper.
1882
1883         * marshal.c (mono_marshal_set_wrapper_info): Rename from
1884         mono_marshal_method_set_wrapper_data, and export.
1885
1886         * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1887         the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1888         by calling mono_marshal_get_wrapper_info ().
1889
1890         * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1891         small objects which does no size checks.
1892
1893 2010-02-05  Rodrigo Kumpera  <rkumpera@novell.com>
1894
1895         * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1896
1897 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1898
1899         * verify.c (mono_method_verify): Use the new basic block formation pass
1900         to avoid verifying dead basic blocks. This is the same behavior as the
1901         runtime MS verifier.
1902
1903 2010-02-04  Rodrigo Kumpera  <rkumpera@novell.com>
1904
1905         * mono-basic-block.c:
1906         * mono-basic-block.h: New implementation of a basic block formation pass.
1907         The formation pass does static liveness analysis as well to detect dead
1908         basic blocks.
1909
1910 2010-02-04  Zoltan Varga  <vargaz@gmail.com>
1911
1912         * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1913         'this' argument in icalls.
1914
1915 2010-02-02  Zoltan Varga  <vargaz@gmail.com>
1916
1917         * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1918
1919 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1920
1921         * object.c, domain.c: When using SGen, we must register
1922         vtable->type as a root if it's not a MonoType, because then it
1923         wasn't pin-alloced.
1924
1925 2010-02-01  Mark Probst  <mark.probst@gmail.com>
1926
1927         * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1928         at the start of nursery collections, because we might have had
1929         degraded allocations which changed next_data.
1930
1931 2010-01-30  Zoltan Varga  <vargaz@gmail.com>
1932
1933         * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1934         custom attr so this function works in cross-compiling mode.
1935
1936 2010-01-29  Zoltan Varga  <vargaz@gmail.com>
1937
1938         * class.c (make_generic_param_class): Initialize interface offsets since we
1939         set klass->inited. Fixes #574819.
1940
1941 2010-01-28  Zoltan Varga  <vargaz@gmail.com>
1942
1943         * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1944         calling the JIT domain cleanup hook.
1945
1946 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1947
1948         * pedump.c (main): Properly set the verifier mode when running the metadata
1949         verifier.
1950
1951 2010-01-28  Rodrigo Kumpera  <rkumpera@novell.com>
1952
1953         * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1954         overlapping fields now that we're called before has_references is set.
1955
1956         * pedump.c (dump_verify_info): Clear any loader error before verifying another
1957         method. Otherwise all sort of weird stuff happens.
1958
1959 2010-01-27  Zoltan Varga  <vargaz@gmail.com>
1960
1961         * object.c (mono_field_get_value_object): Handle nullable types correctly.
1962         Fixes #572874.
1963
1964 2010-01-25  Zoltan Varga  <vargaz@gmail.com>
1965
1966         * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
1967         Fixes #573322.
1968
1969 2010-01-23  Mark Probst  <mark.probst@gmail.com>
1970
1971         * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
1972         pin_staging_area_index is greater than 0.
1973
1974 2010-01-22 Miguel de Icaza (miguel@novell.com)
1975
1976         * loader.c: Since we do nothing with the error returned, pass NULL
1977         to ignore the error.
1978
1979 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1980
1981         * reflection.c (typebuilder_setup_fields): Pretend field setup already
1982         happened before starting to encode the actual fields. This avoid ciclic
1983         dependencies and eventual crashes.
1984
1985         Fixes #572660.
1986
1987 2010-01-21  Mark Probst  <mark.probst@gmail.com>
1988
1989         * sgen-gc.c, gc-internal.h, object.c: Make string allocation
1990         atomic and remove the half-constructed hack in SGen.
1991
1992 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
1993
1994         * metadata-verify.c (parse_generic_inst): Fail a type signature if it 
1995         has a recursive reference to itself.
1996
1997         Fixes #571863.
1998
1999 2010-01-21  Rodrigo Kumpera  <rkumpera@novell.com>
2000
2001         * loader.c (mono_method_signature): Fix error message.
2002
2003 2010-01-21  Mark Probst  <mark.probst@gmail.com>
2004
2005         * sgen-gc.c: Reuse to-space sections between nursery collections.
2006
2007 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2008
2009         * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2010         from the current assembly or mscorlib. Fixes bug #322957.
2011
2012 2010-01-20  Zoltan Varga  <vargaz@gmail.com>
2013
2014         * marshal.c: Calculate the target class of the delegete invoke wrappers using
2015         get_wrapper_target_class.
2016
2017 2010-01-19  Mark Probst  <mark.probst@gmail.com>
2018
2019         * sgen-gc.c: Fix warnings.
2020
2021 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2022
2023         * verify.c (store_local): Better error message.
2024
2025 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2026
2027         * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2028         arguments.
2029
2030 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2031
2032         * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2033         function is generics variance aware.
2034
2035 2010-01-19  Sebastien Pouliot  <sebastien@ximian.com>
2036
2037         * security-core-clr.c (mono_security_core_clr_can_access_internals):
2038         Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2039
2040 2010-01-19  Sylvain Dupont <duposyl@gmail.com>
2041
2042         * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2043           in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2044
2045         Code is contributed under MIT/X11 license.
2046
2047 2010-01-19  Rodrigo Kumpera  <rkumpera@novell.com>
2048
2049         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2050         on a GTD.
2051
2052 2010-01-19  Zoltan Varga  <vargaz@gmail.com>
2053
2054         * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2055         return a point to a wrapper specific info structure describing the wrapper.
2056         (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2057  
2058 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2059  
2060         * sgen-gc.c: Make minor collection section allowance adaptive,
2061         depending on the amount of memory reclaimed in the last major
2062         collection.  If more memory was reclaimed (i.e. more garbage
2063         produced), do the next collection earlier.
2064
2065 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2066
2067         * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2068         to itself.
2069
2070         * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2071         the token as parameter.
2072
2073         * verify-internals.h: Ditto.
2074
2075         * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2076
2077         Fixes #571460.
2078
2079 2010-01-18  Mark Probst  <mark.probst@gmail.com>
2080
2081         * sgen-gc.c: Make store_remset_buffer_index long.
2082
2083 2010-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
2084
2085         * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2086
2087         Fixes #569579.
2088
2089 2010-01-18  Zoltan Varga  <vargaz@gmail.com>
2090
2091         * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2092         off precise marking if it is available.
2093         (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2094
2095 2010-01-17  Zoltan Varga  <vargaz@gmail.com>
2096
2097         * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2098
2099         * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2100         pinned objects.
2101
2102         * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2103         to the array allocator.
2104
2105 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2106
2107         * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2108         result of mono_compile_method (), it already includes an ftnptr.
2109
2110 2010-01-16  Zoltan Varga  <vargaz@gmail.com>
2111
2112         * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2113
2114 2010-01-15  Zoltan Varga  <vargaz@gmail.com>
2115
2116         * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2117         hash value which doesn't depend on glib/eglib versions.
2118         (mono_metadata_type_hash): Use it.
2119
2120         * object.c (mono_method_get_imt_slot): Ditto.
2121
2122 2010-01-14  Rodrigo Kumpera  <rkumpera@novell.com>
2123
2124         * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2125         independently of the GTD.
2126
2127         * class.c (mono_class_setup_fields): Fail if field has negative offset.
2128
2129         * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2130         to the upper limit since instance_size includes this amount.
2131
2132         * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2133
2134         Fixes #569544.
2135
2136 2010-01-14  Zoltan Varga  <vargaz@gmail.com>
2137
2138         * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2139         with static methods.
2140
2141         * object.c (build_imt_slots): Avoid asserting when static methods are
2142         encountered in an interface.
2143
2144 2010-01-13  Mark Probst  <mark.probst@gmail.com>
2145
2146         * sgen-gc.c (to_space_expand): Fix assertion.
2147
2148 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2149
2150         * string-icalls.c: missing declaration fixes.
2151         * sgen-gc.c: portability fixes.
2152
2153 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2154
2155         * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2156
2157         * class.c:
2158         * cominterop.c:
2159         * icall.c:
2160         * object.c: 
2161         * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2162
2163 2010-01-12  Rodrigo Kumpera  <rkumpera@novell.com>
2164
2165         * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2166         it can fail loading the type.
2167
2168         * class.c: Add mono_class_inflate_generic_class_checked.
2169
2170         * class.c:
2171         * verify.c:
2172         * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2173
2174 2010-01-11  Zoltan Varga  <vargaz@gmail.com>
2175
2176         * loader.c (mono_method_signature_checked): New internal function taking an
2177         MonoError argument.
2178
2179         * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2180         Fixes build on rh 7.3.
2181
2182 2010-01-10  Aaron Bockover  <abockover@novell.com>
2183
2184         * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2185         at runtime in the same way as on Windows, which yields a relocatable
2186         Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2187         of the running mono process.
2188
2189         On TARGET_ARM, fallback () will always be executed.
2190
2191 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2192
2193         * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2194
2195 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2196
2197         * class.c (mono_class_is_assignable_from_slow): Support variant
2198         generic delegates.
2199
2200         * class.c (mono_class_implement_interface_slow): Support types with
2201         variant generic arguments.
2202
2203 2010-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
2204
2205         * verify.c: Remove some code duplication.
2206
2207 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2208
2209         * object.c: Update docs.
2210
2211 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2212
2213         * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2214
2215         * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2216         fallback trampoline as well.
2217
2218         * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2219         out argument that is set to TRUE if the match was direct. 
2220
2221         * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2222
2223         * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2224
2225 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2226
2227         * class.c: Add mono_class_interface_offset_with_variance function that does same
2228         as mono_class_interface_offset but takes variance into account.
2229
2230         * class-internal.h: Export mono_class_interface_offset_with_variance.
2231
2232         * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2233
2234 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2235
2236         * object.c:
2237         * icall.c:
2238         * class.c: Add some FIXME for due to variant generic arguments.
2239
2240         object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2241         can't use the simple bitfield check, so call mono_class_is_assignable_from if
2242         the bitfield check fails.
2243
2244 2010-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
2245
2246         * class.c (mono_class_is_assignable_from): Rework the generics variance code
2247         to be easier to read and fix bugs in the case a non generic type implements a variant
2248         interface.
2249
2250         * class.c (mono_class_has_variant_generic_params): Make non static.
2251
2252         * class-internals.h: Export mono_class_has_variant_generic_params as part of
2253         the private API.
2254
2255 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2256
2257         * assembly.c: fix MONO_PATH debug output.
2258
2259 2010-01-06  Atsushi Enomoto  <atsushi@ximian.com>
2260
2261         * culture-info-table.h : regenerated.
2262
2263 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2264
2265         * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2266         types that are meant to not have a parent.
2267
2268 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2269
2270         * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2271         from the image mempool, so it is not leaked.
2272
2273 2010-01-04  Zoltan Varga  <vargaz@gmail.com>
2274
2275         * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2276
2277 2010-01-04  Sebastien Pouliot  <sebastien@ximian.com>
2278
2279         * verify.c (verify_valuetype_layout_with_target): Fix case
2280         that can lead to infinite recursion. Fix bug #567861
2281
2282 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2283
2284         * pedump.c: Run code verifier even if image verification fails
2285         due to a failed type we. This allows more errors to be shown.
2286
2287 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2288
2289         * class.c (count_virtual_methods): Remove the assert and now
2290         fail properly.
2291         
2292         * class.c (setup_interface_offsets): This can fail now.
2293
2294         * class.c (mono_class_setup_vtable_general): Check for parent vtable
2295         errors. Check setup_interface_offsets errors.
2296
2297         * class.c (setup_interface_offsets): Simplify the return error logic
2298         and remove class_init_ok.
2299
2300         Fixes #560327.
2301
2302 2010-01-04  Rodrigo Kumpera  <rkumpera@novell.com>
2303
2304         * class.c (mono_class_init): Do class verification at the beginning. Add
2305         some asserts to avoid tripping into invalid memory.
2306
2307         * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2308         g_error and a decent message.
2309
2310         * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2311
2312         Fixes #567548.
2313
2314 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2315
2316         * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2317         as inline functions instead of defining them in mempool.c.
2318
2319         * metadata-internals.h (MonoImageSet): New structure representing a set of
2320         MonoImages, which own a collection of generic instances.
2321
2322         * metadata.c: Get rid of the global generic caches, instead assign each generic
2323         instance to the image set which consists of all the images referenced by the
2324         instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2325         the memory used by generic instances to be allocated from a per image-set mempool
2326         later.
2327
2328 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2329
2330         * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2331
2332 2010-01-03  Zoltan Varga  <vargaz@gmail.com>
2333
2334         * appdomain.c (zero_static_data): Fix a warning.
2335
2336         * locales.c (construct_culture_from_specific_name): Applied patch from
2337         José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2338         not found. Fixes #567900.
2339
2340 2009-12-31  Sebastien Pouliot  <sebastien@ximian.com>
2341
2342         * loader.c (mono_method_get_signature_full): Remove two asserts.
2343         Return NULL instead so that the verifier can handle both cases 
2344         gracefully.
2345
2346 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2347
2348         * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2349         so we can properly fail types instead of crashing.
2350
2351         Fixes #567676.
2352
2353 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2354
2355         * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2356         generic method.
2357
2358 2009-12-30  Rodrigo Kumpera  <rkumpera@novell.com>
2359
2360         * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2361
2362 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2363
2364         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2365         wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2366         we can't remove it from it since we don't hold the lock.
2367         (mon_new): Free the orphaned events here when a mon structure is added to the
2368         freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2369         this down.
2370
2371 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2372
2373         * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2374         as max stack might be zero.
2375
2376         Fixes #562320.
2377
2378 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2379
2380         Rework all uses of mono_class_setup_methods to accept that it can fail now.
2381
2382         * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2383         instances if the GTD did.
2384
2385         * class.c (mono_class_setup_properties): Ditto.
2386
2387         * class.c (mono_class_setup_events): Ditto.
2388
2389         * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2390
2391         * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2392         error setting.
2393
2394         * class.c (mono_class_init): Fail if GTD did.
2395
2396         * cominterop.c:
2397         * generic-sharing.c:
2398         * icall.c:
2399         * loader.c:
2400         * object.c:
2401         * verify.c: Properly handle failure of mono_class_setup_methods.
2402
2403 2009-12-26  Rodrigo Kumpera  <rkumpera@novell.com>
2404
2405         * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2406         mono_class_inflate_generic_method_full internal.
2407
2408         * class.c (inflate_generic_context): Now takes a MonoError argument.
2409
2410         * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2411         errors.
2412
2413 2009-12-26  Zoltan Varga  <vargaz@gmail.com>
2414
2415         * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2416         they cannot be patched. Partly fixes #564408.
2417
2418 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2419
2420         * metadata-internals.h, reflection.c: Use the
2421         MonoDynamicImage.handleref hash table only with unmanaged keys,
2422         and add a managed hash table handleref_managed for managed keys.
2423
2424 2009-12-24  Mark Probst  <mark.probst@gmail.com>
2425
2426         * sgen-gc.c: Unset to-space bumper between collections.  It might
2427         become invalid due to degraded allocations.
2428
2429 2009-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
2430
2431         * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2432         with the one from the original method.
2433
2434         * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2435         compatibility.
2436
2437         * verify-internals.h: Add new function to the internal API.
2438
2439 2009-12-18  Dimitar Dobrev  <dpldobrev@yahoo.com>
2440
2441         * culture-info-tables.h: regenerated it to include the Georgian culture.
2442
2443 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2444
2445         * sgen-gc.c: Include mono/utils/memcheck.h.
2446
2447         * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2448         instead of the current domain, since the two might not match if this is called
2449         from the debugger.
2450
2451         * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2452         domain which created this assembly.
2453
2454 2009-12-18  Zoltan Varga  <vargaz@gmail.com>
2455
2456         * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2457
2458 2009-12-17  Mark Probst  <mark.probst@gmail.com>
2459
2460         * sgen-gc.c: Managed implementation of the specialized generic
2461         store write barrier.
2462
2463 2009-12-17  Rodrigo Kumpera  <rkumpera@novell.com>
2464
2465         * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2466         A private virtual newslot method is used to implement an interface method without exposing
2467         it to users. When querying for public instance methods, such method would hide a public one
2468         on a parent type.
2469
2470         Fixes #564379.
2471
2472 2009-12-17  Zoltan Varga  <vargaz@gmail.com>
2473
2474         * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2475         conventions.
2476
2477 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2478
2479         * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2480
2481 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2482
2483         * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2484         as they are no longer used.
2485         
2486          * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2487
2488         * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2489
2490 2009-12-16  Rodrigo Kumpera  <rkumpera@novell.com>
2491
2492         * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2493         if the owner class has not been finished before returning reflection_info.      
2494
2495         Fixes #565127.
2496
2497 2009-12-16  Zoltan Varga  <vargaz@gmail.com>
2498
2499         * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2500         param doesn't have custom attributes. Fixes #565117.
2501
2502         * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2503         #565120.
2504
2505 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2506
2507         * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2508
2509 2009-12-15  Rodrigo Kumpera  <rkumpera@novell.com>
2510
2511         * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2512         same amount done by a core-clr enabled runtime.
2513
2514 2009-12-15  Marek Habersack  <mhabersack@novell.com>
2515
2516         * appdomain.c (mono_make_shadow_copy): make sure access mode of
2517         the target files is reset to writable by owner and readable by
2518         everyone else to prevent problems when updating shadow copies of
2519         files whose source is read-only. Fixes bug #556884
2520
2521 2009-12-15  Mark Probst  <mark.probst@gmail.com>
2522
2523         * class.c (mono_generic_class_get_class): Allocate the generic
2524         class via malloc again, so that it can be freed when any one of
2525         the images of its constituent types is closed.
2526
2527         * metadata.c: When closing an image, don't free generic insts and
2528         generic classes right away, but put them into a list for later
2529         freeing.
2530
2531         * image.c, metadata-internals.h: Store the free list and in the
2532         second pass of closing an image, free it.
2533
2534 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2535
2536         * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2537
2538         * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2539         types in type_hash.
2540
2541         * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2542
2543 2009-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
2544
2545         * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2546         user type.
2547
2548         * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2549         is used.
2550
2551 2009-12-14  Miguel de Icaza  <miguel@novell.com>
2552
2553         * verify.c (mono_method_verify): The Unused opcodes produce an
2554         InvalidProgramException on .NET
2555
2556 2009-12-14  Sebastien Pouliot  <sebastien@ximian.com>
2557
2558         * loader.c (mono_method_get_header): Move assert after the verifier
2559         has been called on the method header.
2560
2561 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2562
2563         * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2564
2565         * appdomain.c: Bump corlib version.
2566
2567 2009-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
2568
2569         To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2570         types as well since otherwise generic instances would not return UT as arguments but
2571         their undelying system type.
2572
2573         * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2574         to reflect the fact that they can have now multiple different types.
2575
2576         * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2577
2578         * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2579
2580         * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2581
2582         * reflection.c (mono_reflection_register_with_runtime): Init super types
2583         if the image is not dynamic.
2584
2585         * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2586         check if the generic type definition is a TypeBuilder.
2587
2588         * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2589         doesn't belong to a dynamic image, skip initialization.
2590
2591         * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2592         base definition is not a dynamic type.
2593
2594 2009-12-11  Marek Habersack  <mhabersack@novell.com>
2595
2596         * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2597         mono_profiler_string_allocation
2598
2599         * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2600         if string profiling is enabled, call
2601         mono_profiler_string_allocation
2602
2603         * profiler.h: added two MonoProfileFlags -
2604         MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2605         installation functions for the hooks below.
2606
2607         * profiler-private.h, profiler.c: added two hooks:
2608         mono_profiler_string_allocation called whenever a string is
2609         allocated by InternalAllocateStr and mono_profiler_iomap called
2610         whenever IOMAP code performs an adjustement on a file path.
2611
2612 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2613
2614         * boehm-gc.c: fixed race condition while getting the target of a
2615         disappearing link (bug #522233).
2616
2617 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2618
2619         * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2620         the error.
2621
2622 2009-12-10  Rodrigo Kumpera  <rkumpera@novell.com>
2623
2624         * reflection.c: Add mono_reflection_register_with_runtime icall to
2625         allow a MonoGenericClass to register itself as the managed mirror of
2626         a given generic instance.
2627         This is a temporary workaround until all MGC instantiation happens in
2628         managed code.
2629
2630         * object-internals.h: Ditto.
2631
2632         * icall-def.h: Ditto.
2633
2634 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2635
2636         * sgen-gc.c (find_in_remsets): Also search the generic store
2637         remsets.
2638
2639 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2640
2641         * sgen-gc.c: Don't access class names in debugging code when
2642         unloading a domain, because they might not be valid anymore.
2643
2644 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2645
2646         * domain.c, domain-internals.h: New function mono_domain_unset().
2647
2648         * appdomain.c (unload_thread_main): Detach the thread again at the
2649         end.
2650
2651         * threads.c: When a thread exists or is detached, unset its domain
2652         so that it's NULL when, for example, a pthread destructor runs.
2653
2654         * sgen-gc.c: Assert that there is no domain set after a thread is
2655         done.
2656
2657 2009-12-10  Mark Probst  <mark.probst@gmail.com>
2658
2659         * class.c (mono_generic_class_get_class),
2660         metadata.c (free_generic_class): Allocate generic MonoClass's from
2661         the image mempool, not via malloc.  The problem with malloc is
2662         that when unloading a domain those classes are freed before
2663         clearing the heap and SGen needs the classes.  Rewriting the
2664         unloading code to do the free later would be more work and there's
2665         no point in using malloc anyway.
2666
2667 2009-12-09  Sebastien Pouliot  <sebastien@ximian.com>
2668
2669         * loader.c (mono_method_signature): Always call mono_loader_unlock 
2670         before returning.
2671
2672 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2673
2674         * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2675         user string blobs.
2676
2677         * verify-internals.h: Add new function to the internal API.
2678
2679         * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2680         check if it's a valid string.
2681
2682         * object.c (mono_ldstr): Ditto.
2683
2684         Fixes #561943.
2685
2686 2009-12-09  Rodrigo Kumpera  <rkumpera@novell.com>
2687
2688         * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2689         from a method before returning it. This is the expected behavior.
2690
2691 2009-12-08  Rodrigo Kumpera  <rkumpera@novell.com>
2692
2693         * reflection.c (inflate_method): Handle the case of a regular system type.
2694
2695 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2696
2697         * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2698         gathering code.
2699
2700         * mempool.c, mempool-internals.h: New function
2701         mono_mempool_get_bytes_allocated().
2702
2703         * Makefile.am: sgen-pinning-stats.c added.
2704
2705 2009-12-08  Mark Probst  <mark.probst@gmail.com>
2706
2707         * sgen-gc.c (create_allocator): Only use the fast path if the
2708         object size is within the small object size limit.
2709
2710 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2711
2712         * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2713         possibly adding padding to sizeof (GCMemSection).
2714
2715 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2716
2717         * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2718         reference is not in the nursery.
2719
2720 2009-12-07  Rodrigo Kumpera  <rkumpera@novell.com>
2721
2722         * class.c (mono_class_from_typeref): Bounds check idx against the 
2723         assemblyref table.
2724
2725 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2726
2727         * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2728         through the potential roots, then sort the results and find the
2729         pinned objects from there.
2730
2731         * Makefile.am: sgen-pinning.c added.
2732
2733 2009-12-07  Mark Probst  <mark.probst@gmail.com>
2734
2735         * sgen-gc.c: Record generic stores in specialized remset buffers.
2736
2737 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2738
2739         * sgen-gc.c: Make pinned chunks the same size as major heap
2740         sections, and align them as well, so that we can check whether an
2741         object is in a pinned chunk or a major section in constant time.
2742
2743 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2744
2745         * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2746
2747 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2748
2749         * sgen-gc.c: Make all major heap sections the same size (currently
2750         128k) and allocate them on aligned addresses.  Small heap sections
2751         give us better granularity with pinned objects - we can free up
2752         much more memory.
2753
2754 2009-12-06  Mark Probst  <mark.probst@gmail.com>
2755
2756         * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2757         output removed.
2758
2759 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2760
2761         Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2762
2763         * mono/metadata/assembly.c: When opening an assembly image, pass the real
2764         names in addition to the runtime generated one.
2765
2766         * mono/metadata/image.h: Add a function to take the real name of the assembly
2767         image.
2768
2769         * mono/metadata/image.c: If a real name has been passed to load an assembly,
2770         use it instead of the runtime generated one.
2771
2772         Code is contributed under MIT/X11 license.
2773
2774 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2775
2776         * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2777         before the other checks to prevent problems if the DateTime class is blittable.
2778         Hopefully fixes #559600.
2779
2780 2009-12-05  Mark Probst  <mark.probst@gmail.com>
2781
2782         * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2783         returns the largest string length that will not be put into the
2784         LOS.
2785
2786         * sgen-gc.c, gc-internal.h: New function that returns the largest
2787         object size that will not be put into the LOS.
2788
2789         * appdomain.c: Bump corlib version.
2790
2791 2009-12-05  Zoltan Varga  <vargaz@gmail.com>
2792
2793         * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2794
2795         * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2796
2797 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2798
2799         * reflection.c (inflate_method): Fix signature.
2800
2801         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2802         in managed code.
2803
2804 2009-12-04  Rodrigo Kumpera  <rkumpera@novell.com>
2805
2806         * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2807
2808 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2809
2810         * sgen-gc.c: Abstract to-space handling.
2811
2812 2009-12-03  Rodrigo Kumpera  <rkumpera@novell.com>
2813
2814         * loader.c (find_method_in_class): Ignore methods with broken signatures.
2815
2816         Fixes #559906.
2817
2818 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2819
2820         * sgen-gc.c: Only add references from outside the nursery to
2821         within the nursery to the global remset list.
2822
2823 2009-12-03  Mark Probst  <mark.probst@gmail.com>
2824
2825         * appdomain.c (create_exceptions): Set the domain temporarily if
2826         necessary to avoid cross-domain references.
2827
2828 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2829
2830         * verify.c (get_stack_type): Return that the type is invalid instead of
2831         asserting.
2832
2833         * verify.c (mono_method_verify): Verify that all locals and arguments
2834         have valid stack types.
2835
2836         Fixes #559913.
2837
2838 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2839
2840         * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2841         bounds checking overflow aware.
2842
2843         Fixes #559910.
2844
2845 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2846
2847         * verify.c (do_invoke_method): Check for invalid method signatures.
2848
2849         Fixes #553450.
2850
2851 2009-12-02  Jb Evain  <jbevain@novell.com>
2852
2853         * appdomain.c (MONO_CORLIB_VERSION): bump.
2854         * icall-def.h (get_base_definition): renamed to get_base_method
2855         and add a boolean argument indicating we want the original
2856         method definition, or the immediate base method.
2857         * icall.c: apply the get_base_definition to get_base_method change.
2858
2859 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2860
2861         * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2862
2863         Fixes #558042.
2864
2865 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2866
2867         * class.c: remove asserts for invalid type token in
2868         mono_class_name_from_token(), mono_assembly_name_from_token() and
2869         mono_class_create_from_typedef () (fixes bug #553318).
2870
2871 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2872
2873         * metadata.c, class.c, loader.c: remove assert after bsearch() for
2874         incorrect assemblies (bug #553322).
2875
2876 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2877
2878         * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2879
2880         * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst. 
2881
2882         * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2883
2884         * class.c (inflate_generic_context): Ditto.
2885
2886         * loader.c (method_from_methodspec): Ditto.
2887
2888         Fixes #558230.
2889
2890 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2891
2892         * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2893
2894         * class.c (mono_class_create_from_typespec): Ditto.
2895
2896         * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2897
2898         * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2899
2900         Fixes #558184.
2901
2902 2009-12-02  Rodrigo Kumpera  <rkumpera@novell.com>
2903
2904         * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2905
2906         * verify.c (verify_delegate_compatibility): Ditto.
2907
2908         * verify.c (do_newobj): Ditto.
2909
2910         Fixes #558046.
2911
2912 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2913
2914         * sgen-gc.c: Use a gray queue instead of requiring that gray
2915         objects are in a contiguous region.
2916
2917         * sgen-gray.c: The gray queue implementation.
2918
2919         * Makefile.am: sgen-gray.c added.
2920
2921 2009-12-02  Mark Probst  <mark.probst@gmail.com>
2922
2923         * appdomain.c: When unloading a domain, zero its static data and
2924         perform a minor collection when using SGen.  That will get rid of
2925         all the remsets pointing into that domain's static data.
2926
2927         * sgen-gc.c: Allow remsets into static data.  By doing this we
2928         need less checks so we're more efficient.
2929
2930 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2931
2932         * verify.c (mono_method_verify): Check for catch clauses with broken
2933         types.
2934
2935         Fixes #558465.
2936
2937 2009-12-01  Jb Evain  <jbevain@novell.com>
2938
2939         * class.c (make_generic_param_class): set the namespace of
2940         the generic parameter class from its owner, if available.
2941
2942 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2943
2944         * verify.c (code_bounds_check): Do proper overflow checking.
2945
2946         * verify.c (mono_method_verify): The number of switch entries is
2947         an unsigned int. Properly bounds check it.
2948
2949         Fixes #558594.
2950
2951 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2952
2953         * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2954         mono_metadata_method_has_param_attrs which only checks if a given param
2955         list has a non zero flags entry.
2956
2957         * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2958         to inform how many params should we expect to decode.
2959
2960         * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2961         as it's faster than mono_metadata_get_param_attrs.
2962
2963         * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2964         add mono_metadata_method_has_param_attrs.
2965
2966 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2967
2968         * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
2969         failures.
2970
2971         * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
2972         is -1 but its class is broken.
2973
2974         Fixes #558522.
2975
2976 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2977
2978         * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
2979         for parameter overflow.
2980
2981         * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
2982         of mono_metadata_get_param_attrs.
2983
2984         * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
2985         API.
2986
2987         * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
2988
2989 2009-12-01  Rodrigo Kumpera  <rkumpera@novell.com>
2990
2991         * class.c (mono_class_setup_fields): Check for fields with broken types.
2992
2993         Fixes #558741.
2994
2995 2009-11-28  Rodrigo Kumpera  <rkumpera@novell.com>
2996
2997         * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
2998         so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
2999         its TypeBuilder::CreateType ().
3000
3001         * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3002         if not needed.
3003
3004         * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3005         to make setup_interface_offsets happy.
3006
3007         * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3008         compilation now works.
3009
3010 2009-11-28  Zoltan Varga  <vargaz@gmail.com>
3011
3012         * appdomain.c (create_exceptions): New helper function extracted from
3013         mono_runtime_init () to precreate objects used during exception handling.
3014         (mono_runtime_init): Call it.
3015         (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3016
3017 2009-11-27  Rodrigo Kumpera  <rkumpera@novell.com>
3018
3019         * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3020         compilation until the proper one is found.
3021
3022 2009-11-27  Zoltan Varga  <vargaz@gmail.com>
3023
3024         * class.c (mono_class_setup_vtable_general): Cache the result of
3025         get_virtual_methods () since it can be slow because of the metadata
3026         optimization.
3027
3028         * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3029         from a MonoValueHashTable for now, since the later is based on an earlier
3030         version of hpj's internal probing code and seems to have serious collision
3031         issues.
3032
3033         * loader.c (mono_get_method_full): Update after the change above.
3034
3035 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3036
3037         * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3038
3039 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3040
3041         * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3042         the GTD instead of the DGC instead of crashing.
3043
3044         * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3045         required. Inflate fields if needed.
3046
3047         * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3048         finished. Renamed.
3049
3050 2009-11-26  Rodrigo Kumpera  <rkumpera@novell.com>
3051
3052         * class.c (check_interface_method_override): Check for NULL signatures and fail
3053         the type.
3054
3055         * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3056
3057         Fixes #553428.
3058
3059 2009-11-26  Zoltan Varga  <vargaz@gmail.com>
3060
3061         * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3062         the MONO_METHOD_FLAGS column instead of decoding the whole row.
3063
3064 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3065
3066         * loader.c (field_from_memberref): Resolve the class first then the field
3067         signature. Remove a lot of duplicated code and make sure we don't pass valid
3068         values to mono_loader_set_error_field_load.
3069
3070         Fixes #553306.
3071
3072 2009-11-25  Rodrigo Kumpera  <rkumpera@novell.com>
3073
3074         * class.c (inflate_generic_type): Change code to use new signature of
3075         mono_error_set_bad_image.
3076
3077         Fixes #558124.
3078
3079 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com> 
3080
3081         * verify.c (mono_method_verify): Don't free ctx.params items if 
3082         we aborted while inflating the ctx.locals. Complete previous fix
3083
3084 2009-11-25  Sebastien Pouliot  <sebastien@ximian.com>
3085
3086         * verify.c (mono_method_verify): Use the uninflated type name, 
3087         when the inflated is null, to report errors. Also take care when
3088         freeing, not to free everything since, in case of an error, some
3089         stuff would be copies (i.e. not allocated by the function itself)
3090         Fix bug #558145
3091
3092 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3093
3094         * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3095         or overflow. The caller must have done this check explicitly. This guard us
3096         from accessing invalid memory.
3097
3098         * verify.c (do_push_static_field): Check for stack overflow.
3099
3100         Fixes #553333.
3101
3102 2009-11-24  Rodrigo Kumpera  <rkumpera@novell.com>
3103
3104         * loader.c (find_method_in_class): Don't crash if the signature cannot
3105         be resolved.
3106
3107         * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3108         of asserting for the case of invalid params.
3109
3110         Fixes #553304.
3111
3112 2009-11-24  Sebastien Pouliot  <sebastien@ximian.com>
3113
3114         * image.c (mono_image_load_module): Fix crash when a bad assembly
3115         has no module at all (fix bug #553412) and also replace the 
3116         g_assert with a return NULL (documented return value for failure)
3117
3118 2009-11-23  Zoltan Varga  <vargaz@gmail.com>
3119
3120         * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3121
3122 2009-11-23  Miguel de Icaza  <miguel@novell.com>
3123
3124         * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3125         file attribute to managed code and avoid doing the mask/attribute
3126         checks here. 
3127
3128 2009-11-22  Miguel de Icaza  <miguel@novell.com>
3129
3130         * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3131         the managed world.
3132
3133         * icall-def.h: New entry points.
3134         
3135 2009-11-19  Mark Probst  <mark.probst@gmail.com>
3136
3137         * process.c: Don't put references to managed objects into a
3138         g_ptr_array.
3139
3140 2009-11-18  Sebastien Pouliot  <sebastien@ximian.com>
3141
3142         * class.c (can_access_internals): Allow CoreCLR to participate in
3143         allowing (or not) [InternalsVisibleTo] between assemblies.
3144         * security-core-clr.c|h: Make sure that only trusted code (a 
3145         superset of platform code) can access the internals of platform
3146         code.
3147
3148 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3149
3150         * reflection.c: use the correct base class to get the virtual method
3151         "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3152
3153 2009-11-16  Sebastien Pouliot  <sebastien@ximian.com>
3154
3155         * security-core-clr.c (get_caller_no_reflection_related): 
3156         [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3157         it's still reflection and must be filtered correctly.
3158
3159 2009-11-16  Mark Probst  <mark.probst@gmail.com>
3160
3161         * object.c (compute_class_bitmap): Fix for large bitmaps.
3162
3163 2009-11-15  Zoltan Varga  <vargaz@gmail.com>
3164
3165         (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3166
3167         * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3168         koush@koushikdutta.com). Disable GC_no_dls on android.
3169
3170 2009-11-12  Mark Probst  <mark.probst@gmail.com>
3171
3172         * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3173         tlab_next points outside the TLAB because the allocator was
3174         interrupted.
3175
3176 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3177
3178         * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3179
3180 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3181
3182         * object-internals.h: Change signature for mono_string_to_utf8_image.
3183
3184         * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3185         argument.
3186
3187         * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3188         exceptions due to mono_string_to_utf8.
3189
3190 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3191
3192         * object-internals.h: Change signature for mono_string_to_utf8_mp.
3193
3194         * object.c (mono_remote_class): Make sure all resources are released before
3195         raising an exception.
3196
3197         * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3198
3199 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3200
3201         * mono-perfcounters.c (network_get_impl): Change variable initialization
3202         ordering to fix potential memory leak in case of exceptions.
3203
3204         * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3205         encoded strings.
3206         
3207 2009-11-09  Rodrigo Kumpera  <rkumpera@novell.com>
3208
3209         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3210         variable initialization ordering to fix potential memory leak in case
3211         of exceptions.
3212
3213 2009-11-09  Zoltan Varga  <vargaz@gmail.com>
3214
3215         * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3216         needed.
3217
3218 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3219
3220         * appdomain.c: Fix shadow path code to better deal with exceptions.
3221
3222 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3223
3224         * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3225         exception in the middle of the runtime code.
3226
3227 2009-11-07  Rodrigo Kumpera  <rkumpera@novell.com>
3228
3229         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3230         leak memory with broken envvar value.
3231
3232 2009-11-06  Mark Probst  <mark.probst@gmail.com>
3233
3234         * reflection.c (mono_reflection_setup_internal_class): Because
3235         nested classes are not added to the name cache, we must put them
3236         in the reflection_info_unregister_classes list.
3237
3238 2009-11-05  Sebastien Pouliot  <sebastien@ximian.com>
3239
3240         * class.c: When CoreCLR is enabled don't call mono_init_com_types
3241         if MONO_CLASS_IS_IMPORT return true unless the type reside in 
3242         platform (trusted) code. Instead we return a TypeLoadException to
3243         be thrown later. This is the exception thrown by Silverlight 2 if
3244         a type, inside application (user) code is marked with [ComImport]
3245
3246 2009-11-05  Zoltan Varga  <vargaz@gmail.com>
3247
3248         * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3249         mono_is_debugger_attached () too.
3250
3251         * mono-debug.c (mono_is_debugger_attached): New helper function.
3252         (mono_set_is_debugger_attached): Ditto.
3253
3254 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3255
3256         * object-internals.h: Add mono_string_to_utf8_checked.
3257
3258         * object.c: Implement mono_string_to_utf8_checked.
3259
3260 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3261
3262         * class.c: Add missing check for load errors after every
3263         call to mono_class_setup_fields
3264
3265         Fixes #552282.
3266
3267 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3268
3269         metadata-verify.c (verify_tables_schema): Fix the error message.
3270
3271 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3272
3273         * metadata.c: Change event table schema to use TDOR for event type
3274         as this is what it's meant to be.
3275
3276         * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3277         to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3278         entry.
3279
3280         * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3281         longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3282         rows in MONO_TABLE_GENERICPARAM.
3283
3284         Fixes #552289.
3285
3286 2009-11-05  Rodrigo Kumpera  <rkumpera@novell.com>
3287
3288         * class.c (mono_image_add_to_name_cache): Assert on duplicate
3289         insertion.
3290
3291         * reflection.c (mono_reflection_setup_internal_class): Avoid
3292         registering a gc root the same MonoClass multiple times.
3293         Don't register nested types on the global scope as they should
3294         not be available there.
3295
3296 2009-11-05  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3297
3298         * culture-info-tables.h: regenerated.
3299
3300 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3301
3302         * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3303
3304 2009-11-04  Sebastien Pouliot  <sebastien@ximian.com>
3305
3306         * string-icalls.c|h: Remove string internal calls that are not 
3307         used anymore by the class libraries.
3308         * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3309         which is not used in the class librairies.
3310         * icall-def.h: Update tables.
3311
3312 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3313
3314         * class.h: Move mono_class_inflate_generic_type_checked...
3315
3316         * class-internals.h: to here and make it internal. We don't want to
3317         further expose MonoGenericContext. 
3318
3319 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3320
3321         * verify.c (mono_method_verify): Improve error message.
3322
3323 2009-11-04  Rodrigo Kumpera  <rkumpera@novell.com>
3324
3325         * reflection.c (fieldref_encode_signature): If field_image is NULL then
3326         the token is already properly encoded. Fixs 4.0 build.
3327
3328 2009-11-04  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3329
3330         * locales.c (construct_number_format): Check if the number index is
3331         valid before trying to use it, if not, just return.
3332         
3333 2009-11-04  Zoltan Varga  <vargaz@gmail.com>
3334
3335         * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3336         since that loses the abort state. Fixes #539394.
3337
3338 2009-11-03  Zoltan Varga  <vargaz@gmail.com>
3339
3340         * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3341         explicit this argument to the call signature.
3342         (mono_marshal_get_icall_wrapper): Ditto.
3343
3344 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3345
3346         * reflection.c (fieldref_encode_signature): Add new field_image parameter
3347         to indicate which assembly to use when resolving a custom-mod.
3348
3349         Fixes handling of volatile fields used across assemblies as reported in #551513.
3350
3351 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3352
3353         * loader.c: Improve error messages.
3354
3355 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3356
3357         * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3358         of interfaces. Fixes IKVM.
3359
3360         * class.c (mono_class_setup_vtable_general): Improve debug spew.
3361
3362 2009-11-03  Rodrigo Kumpera  <rkumpera@novell.com>
3363
3364         * verify.c (verifier_inflate_type): Return the inflated type on success.
3365
3366 2009-11-02  Zoltan Varga  <vargaz@gmail.com>
3367
3368         * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3369
3370         * threads.c (mono_thread_attach): Call the profiler thread start callback.
3371
3372         * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3373
3374         * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3375         flag set.
3376
3377         * profiler.c: Add new profiler callbacks for runtime invoke.
3378
3379         * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3380
3381 2009-11-01  Mark Probst  <mark.probst@gmail.com>
3382
3383         * sgen-gc.c: Keep track of the reason for a major collection and
3384         write it to the heap-dump file.
3385
3386 2009-10-31  Miguel de Icaza  <miguel@novell.com>
3387
3388         * threads.c: refactor the code that initializes the
3389         thread_start_args into a reusable function and use this in the two
3390         methods that start up threads.
3391
3392 2009-10-31  Zoltan Varga  <vargaz@gmail.com>
3393
3394         * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3395         Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3396
3397 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3398
3399         * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3400         Until now, we only had the per-cpu(core) counters.
3401
3402 2009-10-28  Mark Probst  <mark.probst@gmail.com>
3403
3404         * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3405         mono_gc_get_suspend_signal(), which returns the suspend signal
3406         number used by the GC.
3407
3408 2009-10-25  Zoltan Varga  <vargaz@gmail.com>
3409
3410         * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3411
3412         * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3413         signalling start_notify.
3414
3415 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3416
3417         * appdomain.c: do not test the st_mode field for shadow-copies.
3418         Fixes bug #545276.
3419
3420 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3421
3422         * threadpool.[ch]: added hooks for thread start/finish and item
3423         processing begin/end. For monotouch use only.
3424
3425 2009-10-24  Zoltan Varga  <vargaz@gmail.com>
3426
3427         * threads.c (mono_thread_get_name): New helper function.
3428
3429         * reflection.c (resolve_object): Set handle_class for strings too.
3430         (mono_reflection_create_custom_attr_data_args): New helper function to decode
3431         a cattr blob into a set of arrays and structures without creating the custom
3432         attributes themselves.
3433         (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3434
3435         * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3436
3437         * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3438         function.
3439
3440 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3441
3442         * verify.c: Replace calls to mono_class_inflate_generic_type with
3443         mono_class_inflate_generic_type_checked. Fixes #480005.
3444
3445 2009-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
3446
3447         * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3448         object since not all paths lead to callees initing it.
3449
3450 2009-10-23  Alp Toker  <alp@nuanti.com>
3451
3452         Fix embedding API breakage from r144688. mono-compiler.h is an internal
3453         header and should not be shipped:
3454
3455         * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3456         which is specific to the mono build. Not going to work.
3457
3458 2009-10-23  Sebastien Pouliot  <sebastien@ximian.com>
3459
3460         * security-manager.c: Report if core-clr is active from
3461         ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3462         to allow Moonlight BCL to behave appropriately (both in browser
3463         and outside, e.g. smcs)
3464
3465 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3466
3467         * mono-config.c: ignore UTF-8 BOM and report parser errors.
3468         Fixes bug #549108.
3469
3470 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3471
3472         * class.c: fix typo.
3473
3474 2009-10-22  Rodrigo Kumpera  <rkumpera@novell.com>
3475
3476         * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3477         a MonoError parameter.
3478
3479         * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3480         version that can does proper error handling.
3481
3482         * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3483
3484         * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3485
3486         * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3487
3488 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3489
3490         * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3491         NO_UNALIGNED_ACCESS is defined.
3492
3493 2009-10-22  Zoltan Varga  <vargaz@gmail.com>
3494
3495         * marshal.c (mono_string_builder_to_utf16): Applied patch from
3496         Hib Eris  <hib@hiberis.nl>. Return empty string for empty string builders.
3497         Fixes #549173.
3498
3499 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3500
3501         * sgen-gc.c: Shorten sections whenever possible.
3502
3503 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3504
3505         * sgen-gc.c: Use our portable semaphore #defines.
3506
3507 2009-10-22  Mark Probst  <mark.probst@gmail.com>
3508
3509         * sgen-gc.c: A debug option for dumping the heap layout to a file
3510         after each collection.
3511
3512 2009-10-21  Mark Probst  <mark.probst@gmail.com>
3513
3514         * sgen-gc.c: Make managed write barriers atomic via
3515         thread-restarts.
3516
3517 2009-10-21  Rodrigo Kumpera  <rkumpera@novell.com>
3518
3519         * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3520         methods. Fixes #543021.
3521
3522 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3523
3524         * socket-io.[ch]: fix VS build.
3525
3526 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3527
3528         * icall-def.h:
3529         * socket-io.[ch]: implemented SendFile.
3530
3531 2009-10-20  Zoltan Varga  <vargaz@gmail.com>
3532
3533         * class.c (mono_class_create_from_typedef): Initialize class->element_class
3534         before the interfaces to avoid crashes later if class initialization fails.
3535         Fixes #548417.
3536
3537         * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3538         Fixes #548276.
3539
3540 2009-10-20  Marek Safar  <marek.safar@gmail.com>
3541
3542         * domain.c: Bump 4.0 version.
3543
3544 2009-10-19  Sebastien Pouliot  <sebastien@ximian.com>
3545
3546         * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3547         code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3548         check since 'pubkey' can't be NULL at this stage
3549         * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3550         the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3551         initialization of 'iter'
3552
3553 2009-10-16  Bill Holmes  <billholmes54@gmail.com>
3554
3555         * cominterop.c : Search the interface parts of vtable to find 
3556           method matches.  Fixes 547030.
3557
3558         Code is contributed under MIT/X11 license.
3559
3560 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3561
3562         * marshal.c: BeginInvoke cannot be called on multicast delegates with
3563         multiple targets. Fixes bug #574426.
3564
3565 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3566
3567         * profiler.h: Put here the definition of
3568         MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3569         (and fix the build...).
3570
3571 2009-10-14  Massimiliano Mantione  <massi@ximian.com>
3572
3573         * profiler.c, profiler.h, profiler-private.h:
3574         Added support for different ways of getting call chains in stat mode.
3575
3576 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3577
3578         * object.c, object-internals.h: New function for computing the
3579         size of an array, factored out of mono_array_new_full().  Use
3580         SGen's functions for allocating arrays and vectors.
3581
3582         * sgen-gc.c, gc-internal.h: Special functions for allocating
3583         arrays and vectors without race conditions.  A managed array
3584         allocator method.
3585
3586         * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3587
3588 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3589
3590         * object.c, object.h, icall.c: Write barriers do the copying now,
3591         as well, so no need for an additional memcpy.
3592
3593         * sgen-gc.c: Lock when storing remsets.  Do the memory
3594         copying/moving in the write barriers.
3595
3596         * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3597
3598         * reflection.c: Added an assert.
3599
3600 2009-10-12  Mark Probst  <mark.probst@gmail.com>
3601
3602         * threads.c, process.c: A few missing write barriers.
3603
3604 2009-10-12  Joel W. Reed <joelwreed@gmail.com>
3605
3606         * mono-perfcounters.c, mono-perfcounters-def.h: Add
3607         network performance counters for bytes sent per second, bytes
3608         received per second, and bytes total per second.
3609
3610         Code is contributed under MIT/X11 license.
3611
3612 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3613
3614         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3615         Fix warning.
3616
3617 2009-10-09  Mark Probst  <mark.probst@gmail.com>
3618
3619         * threads.c, object-internals.h, object.c: Move code for
3620         transferring an object to a different domain (via
3621         serialization/remoting) to object.c.
3622
3623         * object.c (call_unhandled_exception_delegate): If the exception
3624         is in a different domain than the delegate, transfer the exception
3625         to that domain.
3626
3627 2009-10-07  Zoltan Varga  <vargaz@gmail.com>
3628
3629         * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3630         Fixes #322934.
3631
3632 2009-10-06  Zoltan Varga  <vargaz@gmail.com>
3633
3634         * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3635
3636 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3637
3638         * object.c (mono_method_return_message_restore): Handle the case
3639         where the argument is an instance of a generic type.  Fixes
3640         #544446.
3641
3642 2009-10-06  Mark Probst  <mark.probst@gmail.com>
3643
3644         * object.c (set_value): Write barrier fix - we must pass the
3645         count, not the size.
3646
3647 2009-10-05  Zoltan Varga  <vargaz@gmail.com>
3648
3649         * domain.c (mono_init_internal): Print a useful error message when encountering
3650         an old mscorlib, instead of crashing. Fixes #544307.
3651
3652 2009-10-04  Zoltan Varga  <vargaz@gmail.com>
3653
3654         * appdomain.c (copy_app_domain_setup): Fix a warning.
3655
3656         * debug-helpers.c (dis_one): Ditto.
3657
3658 2009-10-04  Mark Probst  <mark.probst@gmail.com>
3659
3660         * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3661         into the new domain, instead of referencing the original one.
3662
3663         * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3664         non-static.
3665
3666         * appdomain.c: Corlib version bump.
3667
3668 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3669
3670         * threadpool.c: one more...
3671
3672 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3673
3674         * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3675         threads to die because we're shutting down. delgate5.exe works again.
3676
3677 2009-10-01  Bill Holmes  <billholmes54@gmail.com>
3678
3679         * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3680           ccw_interface_hash table when a ccw is finalized.
3681
3682         Code is contributed under MIT/X11 license.
3683
3684 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3685
3686         * assembly.c, domain.c, image.c, metadata-internals.h: Split
3687         domain and image unloading into two steps.  We must do this
3688         because clearing the domain in SGen requires the class metadata to
3689         be intact, but we need to free the mono_g_hash_tables in case a
3690         collection occurs during domain unloading and the roots would trip
3691         up the GC.
3692
3693 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3694
3695         * object-internals.h: Remove serialized culture fields from
3696         MonoInternalThread.
3697
3698         * icall-def.h, thread-types.h, threads.c: Remove serialized
3699         culture icalls.
3700
3701         * appdomain.c: Corlib version bump.
3702
3703 2009-09-30  Zoltan Varga  <vargaz@gmail.com>
3704
3705         * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3706         Fixes #543133.
3707
3708 2009-09-30  Mark Probst  <mark.probst@gmail.com>
3709
3710         * sgen-gc.c: Try to shorten the new section after a major
3711         allocation to avoid ever-growing sections.
3712
3713 2009-10-13  Martin Baulig  <martin@ximian.com>
3714
3715         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3716         `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3717         `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3718         `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3719
3720         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3721
3722 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3723
3724         * threadpool.c: fixed the order in which 'completed' and the wait
3725         handle, if any, are set.  Fixes bug #542933 and delegate2.exe
3726         No need to use the wait_handle field of ASyncCall. Make sure the
3727         threadpool is active when adding a job or queueing an idle thread.
3728
3729 2009-09-29  Zoltan Varga  <vargaz@gmail.com>
3730
3731         * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3732
3733         * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3734         when using --compile-all.
3735
3736 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3737
3738         * metadata.c (free_generic_class): Unregister the field_objects
3739         roots if we're using SGen.
3740
3741 2009-09-27  Mark Probst  <mark.probst@gmail.com>
3742
3743         * reflection.c (mono_dynamic_image_free): Deregister the GC root
3744         for GenericParamTableEntry.gparam.
3745
3746 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3747
3748         * marshal.c: don't create the handle when calling. It is created later
3749         if needed.
3750
3751 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3752
3753         * sgen-gc.c: Warning fixes.
3754
3755 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3756
3757         * sgen-gc.c: New debug option "xdomain-checks", which scans the
3758         whole heap for cross-domain references before each collection.
3759
3760         * sgen-scan-object.h: The scan action can now use SCAN to scan the
3761         object.
3762
3763         * threadpool-internals.h, threadpool.c: New function
3764         mono_thread_pool_is_queue_array() for checking whether a given
3765         array is used as a (cross-domain) queue by the thread pool code.
3766
3767 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3768
3769         * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3770         searches the whole heap for objects containing a specific
3771         reference.  Only for debugging.
3772
3773 2009-09-26  Mark Probst  <mark.probst@gmail.com>
3774
3775         * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3776
3777         * icall-def.h, threads.c, threads-types.h: New icalls for copying
3778         byte arrays between domains.
3779
3780 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3781
3782         * threadpool.c:
3783         * class-internals.h:
3784         * mono-perfcounters-def.h:
3785         * mono-perfcounters.c:
3786         -There is a list of idle threads
3787         -Each of those idle threads wait on their own WaitHandle instead
3788         of all of them using the same semaphore. When a new work item is
3789         added, the job is assigned directly to an idle thread or a newly
3790         created one if possible and then the handle for that thread is
3791         signaled. Compare that to the current approach where all the
3792         threads in the pool compete to dequeue a job from the same
3793         queue.
3794         -New struct ThreadPool that brings together the bunch of static
3795         variable for each threadpool (IO and regular).
3796         -New performance counters: # of items added and its rate per
3797         threadpool. The rate will be used later, perhaps together with
3798         other perf. counters, to decide when idle threads should exit.
3799
3800 2009-09-25  Jonathan Chambers  <joncham@gmail.com>
3801
3802         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal): 
3803         Fix typo on Windows build.      
3804         (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3805         
3806         Code is contributed under MIT/X11 license.
3807
3808 2009-09-25  Mark Probst  <mark.probst@gmail.com>
3809
3810         * object-internals.h: The Thread class is split up into Thread and
3811         InternalThread now.  We have exactly one InternalThread per
3812         thread, and at most one Thread per appdomain per thread.  Most
3813         data is stored in InternalThread.  All InternalThread objects live
3814         in the root domain.
3815
3816         * class-internals.h: Add internal_thread_class to MonoDefaults.
3817
3818         * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3819         domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3820         socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3821         resulting from the split of the Thread class.
3822
3823         * gc-internal.h: Prototype for new function for checking whether a
3824         thread is the finalizer thread.
3825
3826         * appdomain.c: Corlib version bump.
3827
3828 2009-09-25  Rolf Bjarne Kvinge  <RKvinge@novell.com>
3829
3830         * appdomain.c|h: Add a mono_domain_try_unload method which is
3831         equivalent to mono_domain_unload, except that it returns an exception
3832         instead of throwing it. Make mono_domain_unload use the
3833         mono_domain_try_unload method to avoid code-duplication.
3834
3835 2009-09-25  Zoltan Varga  <vargaz@gmail.com>
3836
3837         * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3838         a problem.
3839
3840 2009-09-24  Zoltan Varga  <vargaz@gmail.com>
3841
3842         * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3843         aborting when a conversion is not implemented.
3844
3845 2009-09-23  Miguel de Icaza  <miguel@novell.com>
3846
3847         * verify.c: when comparing culture strings, use g_ascii_strcmp
3848
3849         * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3850         when comparing public key tokens to use memcmp on 16 bytes.   I do
3851         not believe this ever worked as advertised in the past.
3852
3853         The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3854         which would have always failed earlier.
3855
3856 2009-06-25  Miguel de Icaza  <miguel@novell.com>
3857
3858         * gc.c: Raise a NullArgumentException if the object passed is
3859         null.
3860
3861 2009-09-22  Zoltan Varga  <vargaz@gmail.com>
3862
3863         * image.c (mono_image_close): Atomically decrement the reference count and
3864         remove the image from the hash tables, to prevent another thread from seeing a
3865         dying MonoImage. Fixes #541194.
3866
3867 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3868
3869         * threadpool.c: actually use the minimum number of 'completion ports'
3870         (for us is just a potential worker thread).
3871
3872 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3873
3874         * threadpool.c: remove ares_htable. It does not make sense any more
3875         since the same objects are now stored in GC-tracked arrays while they are
3876         in the queue.
3877
3878 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3879
3880         * threadpool.c: increase the minimum length of the queues to 128.
3881         Remove warning.
3882
3883 2009-09-21  Zoltan Varga  <vargaz@gmail.com>
3884
3885         * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3886         return the modified signature used by string ctors.
3887
3888 2009-09-20  Zoltan Varga  <vargaz@gmail.com>
3889
3890         * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3891         to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3892         method, to be used by full-aot.
3893
3894 2009-09-18  Rodrigo Kumpera  <rkumpera@novell.com>
3895
3896         Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3897         to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3898         be known to be good.
3899
3900         * class.c (mono_class_init): Fail array types if their element type fails initialization
3901         as well.
3902
3903         * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3904         initialization, additionally we request the element_type vtable to be initialized as well.
3905
3906         This is fine and should not increase the working set in any meaningful way since it's reasonable
3907         to assume       that most code will create an array and eventually populate it, which will require the
3908         type's vtable to be initialized.
3909
3910         * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3911
3912 2009-09-17  Atsushi Enomoto  <atsushi@ximian.com>
3913
3914         * normalization-tables.h : regenerated.
3915
3916 2009-09-16  Zoltan Varga  <vargaz@gmail.com>
3917
3918         * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3919         a leb128 encoding can take up to 5 bytes.
3920
3921 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3922
3923         * class.c (verify_class_overrides): Remove useless argument.
3924
3925         * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3926         before interface enumeration as this is no longer required.
3927
3928 2009-09-15  Rodrigo Kumpera  <rkumpera@novell.com>
3929
3930         * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3931         used under mono_class_init context. This functions avoid any code path that
3932         calls mono_class_init, which leads it to be slow as some things like the interface
3933         bitmap are not available.
3934
3935         * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3936         of it's own broken version. Fixes the verifier part of #538588.
3937
3938         * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3939         API.
3940
3941 2009-09-15  Mark Probst  <mark.probst@gmail.com>
3942
3943         * class.c (mono_class_init): Always set an exception in a class if
3944         vtable setup fails.  Fixes #538577.
3945
3946         * generic-sharing.c: Raise an exception if mono_class_vtable()
3947         returns NULL.
3948
3949 2009-09-13  Zoltan Varga  <vargaz@gmail.com>
3950
3951         * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance 
3952         methods of vtypes, as they could be incorrectly shared with static methods
3953         taking an IntPtr argument.
3954
3955 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3956
3957         * domain.c:
3958         * object.c:
3959         * class-internals.h: renamed waithandle_class to
3960         manualresetevent_class.
3961         * marshal.c: propagate the exception if a remoting BeginInvoke call
3962         fails.
3963
3964 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3965
3966         * object.c: Properly handle vtable failures.
3967
3968 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3969
3970         * socket-io.c: Assert on vtable failure.
3971
3972         * mono-mlist.c: Assert on vtable failure.
3973
3974 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3975
3976         * marshal.c: Assert on vtable failure.
3977
3978 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3979
3980         * icall.c: Properly handle vtable failures.
3981
3982 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3983
3984         * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
3985
3986 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3987
3988         * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
3989
3990         * console-unix.c (do_console_cancel_event): Same.
3991
3992 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
3993
3994         * class-internals.h: Add mono_class_vtable_full function that allows control
3995         if an exception should be raised or not.
3996
3997         * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
3998         to do what its documentation say, that is to return NULL and set exception_type on
3999         failure.
4000
4001         * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4002         and change the code to honor it.
4003
4004 2009-09-11  Rodrigo Kumpera  <rkumpera@novell.com>
4005
4006         * verify.c: Fix typo in error message.
4007
4008 2009-09-10  Sebastien Pouliot  <sebastien@ximian.com>
4009
4010         * security-core-clr.c: Fix default_platform_check so it can run
4011         the runtime coreclr tests (without an infinite recursion when
4012         throwing an exception).
4013
4014 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4015
4016         object.c (mono_delegate_ctor_with_method): Guard against null method.
4017
4018 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4019
4020         * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4021         that should be replaced with error handling later.
4022
4023 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4024
4025         * marshal.c (mono_delegate_end_invoke): Fix warning.
4026
4027 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4028
4029         * loader.c (mono_field_from_token): Properly handle invalid
4030         dynamic tokens.
4031
4032 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4033
4034         * pedump.c (verify_image_file): Skip types that can't be
4035         decoded.
4036
4037 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4038
4039         * verify.c: Look for recursive valuetypes only against the
4040         type been initialized as this is a lot simpler and works.
4041
4042 2009-09-10  Rodrigo Kumpera  <rkumpera@novell.com>
4043
4044         * verify.c: Ensure that fields are properly loaded before
4045         checking them.
4046
4047 2009-09-10  Bill Holmes  <billholmes54@gmail.com>
4048
4049         * object.c (mono_object_get_virtual_method) : Call 
4050           mono_cominterop_get_invoke if the object is a COM object.
4051
4052         Code is contributed under MIT/X11 license.
4053
4054 2009-09-09  Rodrigo Kumpera  <rkumpera@novell.com>
4055
4056         * verify.c: Check for recursive valuetype definitions.
4057
4058 2009-09-08  Rodrigo Kumpera  <rkumpera@novell.com>
4059
4060         Use inheritance-aware interface offsets. Inherited types use the same offsets
4061         of their parents. This reduce offset duplication in case more than one type in
4062         the inheritance tree explicitly implements the same interface.
4063
4064         This also removes a source of vtable bubbles found in #532409. An abstract type
4065         isn't required to provide abstract methods to all interfaces it implements, which
4066         resulted in a bubble with the previous scheme as the child would get a non-full
4067         vtable from its parent. We fail all concrete types with vtable bubbles, so this
4068         should be fixed.
4069
4070         This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4071         it's expected to not cause any significant increase beyond that.
4072
4073         * class.c (setup_interface_offsets): Compute super class iface offsets
4074         first to force sharing.
4075
4076         * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4077         dumping only the relevant ones.
4078
4079         * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4080         methods a new slot regardless if they belong to an interface or not. This allows
4081         an inherited type to override the iface method separately from the class one.
4082
4083 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4084
4085         * threadpool.c: make the Sleep() alertable to prevent delays exiting
4086         applications that take less than 2s to execute.
4087         Bug #524984 fixed.
4088
4089 2009-09-04  Zoltan Varga  <vargaz@gmail.com>
4090
4091         * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4092
4093         * object.c (mono_get_runtime_callbacks): New helper function to return
4094         the runtime callbacks.
4095
4096         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4097         mono_get_runtime_build_info () as the display name.
4098         
4099 2009-09-03  Zoltan Varga  <vargaz@gmail.com>
4100
4101         * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4102         argument, since NEWARR expects a native int. Fixes #481559.
4103
4104 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4105
4106         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4107         against broken SRE methods.
4108
4109 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4110
4111         * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4112         a NULL variable. Abort early on failure.
4113
4114 2009-09-03  Rodrigo Kumpera  <rkumpera@novell.com>
4115
4116         * class.c (can_access_type): Fail visibility test for non nested
4117         types with nested visibility.
4118
4119 2009-09-02  Sebastien Pouliot  <sebastien@ximian.com>
4120
4121         * assembly.c (parse_public_key): Avoid allocating (and not 
4122         freeing) the public key array when it's not requested by the 
4123         caller.
4124         * threads.c (mono_thread_manage, mono_thread_create_internal, 
4125         ves_icall_System_Threading_Thread_Thread_internal): Free 
4126         allocated memory on error.
4127
4128 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4129
4130         * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4131
4132 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4133
4134         * class.c (mono_class_setup_fields): Remove duplicated local variable
4135         named gklass.
4136         Rename gklass to gtd to reflect the fact that it points to the generic
4137         type definition.
4138         Remove the duplicated call to mono_class_setup_fields on gtd and move
4139         the error check to the beginning.
4140
4141 2009-09-02  Rodrigo Kumpera  <rkumpera@novell.com>
4142
4143         * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4144         Remove cruft of the previous patch.
4145
4146 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4147
4148         * metadata-verify.c (verify_method_table): Check for abstract + final.
4149         Fixes #534175.
4150
4151 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4152
4153         * verify.c (verify_class_fields): Check for duplicate fields.
4154
4155 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4156
4157         * metadata-verify.c: Verify the typeref table for duplicates.
4158
4159 2009-09-01  Rodrigo Kumpera  <rkumpera@novell.com>
4160
4161         This reverts r140936 and properly handles interfaces with static methods. The
4162         right fix is to ensure vtables without bubles which is an easier to verify
4163         constraint. We should avoid such special cases as of the reverted patch as those
4164         only make the runtime more brittle.
4165
4166         * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4167         static methods on interfaces.
4168
4169         * class.c (setup_interface_offsets): Use the number of virtual methods when
4170         calculating interface offsets instead of the number of methods. This way we
4171         avoid bubles on the layout.
4172
4173 2009-08-31  Rodrigo Kumpera  <rkumpera@novell.com>
4174
4175         * metadata-verify.c (verify_metadata_header): Some very smart
4176         obfuscators like to add extra stream headers. Ignore them.
4177
4178 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
4179
4180         * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4181         methods correctly.
4182
4183 2009-08-29  Rodrigo Kumpera  <rkumpera@novell.com>
4184
4185         * metadata-verify.c: Verify for duplicated types.
4186
4187 2009-08-28  Rodrigo Kumpera  <rkumpera@novell.com>
4188
4189         * metadata-verify.c (verify_typedef_table): Verify for nested types
4190         without an entry on the nested class table.
4191
4192 2009-08-28  Zoltan Varga  <vargaz@gmail.com>
4193
4194         * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4195         <tom_hindle@sil.org>. Add locking around hash table accesses.
4196
4197 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4198
4199         * verify.c (mono_verifier_verify_class): Verify all interface if
4200         really are interfaces. Fixes #534184.
4201
4202 2009-08-27  Rodrigo Kumpera  <rkumpera@novell.com>
4203
4204         * pedump.c: Initialize all types during metadata validation so we report
4205         errors only detected as part of class initialization.
4206
4207 2009-08-26  Rodrigo Kumpera  <rkumpera@novell.com>
4208
4209         * metadata-verify.c (verify_method_table): PInvoke requires method to
4210         be static. Fixes #534189
4211
4212 2009-08-26  Zoltan Varga  <vargaz@gmail.com>
4213
4214         * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4215         being NULL.
4216
4217 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4218
4219         * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4220         for holes or bad methods. Fixes #525314.
4221
4222 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4223
4224         * class.c (setup_interface_offsets): Don't allocate slot
4225         for the same interface multiple times. This creates bubbles
4226         that waster space and make vtable verification harder.
4227
4228         The same interface get a slot multiple times since we need
4229         to get the closure of all implemented interfaces, which means
4230         the same interface is reported multiple times.
4231
4232 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4233
4234         * verify.c (mono_verifier_verify_class): Don't check the fields
4235         of generic instances since the context on which they got expanded
4236         might lead to false positives.
4237
4238         Such thing happens when a generic type is inflated in the context
4239         of a generic method and the inflated type of a field turns into a
4240         generic method argument, which causes the checking code to think
4241         it's an invalid class when it's not.
4242
4243 2009-08-25  Rodrigo Kumpera  <rkumpera@novell.com>
4244
4245         * verify.c (mono_type_is_valid_in_context): Verify if type
4246         is NULL and remove duplicate test.
4247
4248 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4249
4250         * verify.c (mono_verifier_verify_class): Check fields for
4251         invalid generic arguments.
4252
4253 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4254
4255         * class.c (verify_class_overrides): Verify if for static
4256         and non virtual methods.
4257
4258 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4259
4260         * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4261         Check for errors after retrieving the vtable.
4262
4263 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4264
4265         * class.c (mono_class_setup_vtable_general): Verify
4266         if method overrides are valid before processing them.
4267
4268 2009-08-24  Rodrigo Kumpera  <rkumpera@novell.com>
4269
4270         * marshal.c (mono_array_to_lparray): Fix minimal build with
4271         cominterop disabled.
4272
4273         * marshal.c (mono_free_lparray): Same.
4274
4275 2009-08-21  Mark Probst  <mark.probst@gmail.com>
4276
4277         * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4278         the hash function for the ares_htable.
4279
4280 2009-08-20  Rodrigo Kumpera  <rkumpera@novell.com>
4281
4282         * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4283         bit for assembly flags. MS is ok with it but there is no spec anywhere
4284         on its mean
4285
4286 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4287
4288         * class.c (mono_class_create_from_typedef): Emit profiler events
4289         in all cases.
4290
4291 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4292
4293         * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4294         Release memory on failure.
4295
4296 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4297
4298         * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4299         to the internal API.
4300
4301         * metadata.c (get_constraints): Use a single-linked table as we don't
4302         traverse it backward. Fail and return FALSE if only of the contraint types
4303         is not found.
4304
4305         * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4306         to mono_metadata_load_generic_param_constraints except for having a return value.
4307         This has to be done since the later is part of the public API.
4308
4309         * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4310         and fail the type.
4311
4312         * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4313         and fail the method.
4314
4315 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4316
4317         * metadata-verify.c (is_valid_method_header): Add work-around to deal
4318         with MS broken behavior of emmitting EH section sizes without the
4319         header size added.
4320
4321 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4322
4323         * metadata.c (mono_type_create_from_typespec): Don't allocate image
4324         memory until we're sure that we'll need it. This avoids leaking for
4325         broken types or duplicated instantiation.
4326
4327 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4328
4329         * metadata-verify.c (is_valid_method_header): Fix stupid formating
4330         mistake.
4331
4332 2009-08-19  Rodrigo Kumpera  <rkumpera@novell.com>
4333
4334         * metadata-verify.c (is_valid_method_header): Fix number of clauses
4335         and expected size calculation.
4336
4337 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4338
4339         * class.c (mono_class_get_field_idx): Add fixme for broken
4340         behavior for types with multiple fields with the same name.
4341         I would rather fix it, but have no idea on how to generate
4342         such artifact for testing.
4343
4344 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4345
4346         * verify.c (verifier_load_field): We should allow references to
4347         fields to be made using the generic type definition. It's up to
4348         the loader system to fail invalid ops.
4349
4350         * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4351         are invalid.
4352
4353 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4354
4355         * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4356
4357         * metadata-internals.h: Fix declaration of 
4358         mono_metadata_interfaces_from_typedef_full.
4359
4360         * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4361         heap_alloc_result parameter that controls if the result should be
4362         g_malloc'd.
4363
4364         * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4365         array be g_malloc'd and properly document this public API function.
4366
4367 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4368
4369         * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4370         remove METHOD_HEADER_TINY_FORMAT1.
4371
4372         * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4373
4374         * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4375
4376         Both spec and MS uses only 2 bits to enumerate the kind of header.
4377         So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4378         is superfluous, only used for tiny headers with odd code lengths.
4379
4380         This change also make sure that mono doesn't wronly interpret bit 2
4381         of fat header flags, which is currently reserved.
4382
4383 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4384
4385         * metadata.c (do_mono_metadata_parse_type): Do error
4386         checking for element types. Don't abort if presented
4387         with a broken type kind.
4388
4389 2009-08-18  Rodrigo Kumpera  <rkumpera@novell.com>
4390
4391         * metadata.c (mono_metadata_parse_method_signature_full):
4392         Gracefully fail bad vararg signatures.
4393
4394 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4395
4396         * profiler.c:
4397         * class.c: Fix warnings for uninitialized variables.
4398
4399 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4400
4401         * icall.c: Fix _NSGetEnviron method declaration warning.
4402
4403 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4404
4405         * icall.c:
4406         * reflection.c: Make bitwise checks explicit.
4407
4408 2009-08-18  Christian Hergert  <chris@dronelabs.com>
4409
4410         * debug-helpers.c:
4411         * marshal.c: Fix printf warnings.
4412
4413 2009-08-18  Zoltan Varga  <vargaz@gmail.com>
4414
4415         * reflection.c (encode_cattr_value): Fix a warning.
4416
4417 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4418
4419         * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4420         of array bounds.
4421
4422 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4423
4424         * loader.c (mono_method_signature): Don't assert on broken
4425         signature. Print a more useful error message.
4426
4427 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4428
4429         * loader.c (mono_method_get_marshal_info): Assert if
4430         signature is invalid. Bounds check stores to the
4431         mspecs array;
4432
4433 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4434
4435         * loader.c (field_from_memberref): Fix warning.
4436
4437 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4438
4439         * loader.c (mono_method_get_param_names): Check if signature
4440         is null. Don't store beyond the size of the name array.
4441
4442 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4443
4444         * loader.c (mono_get_method_constrained): Check if signature
4445         is null.
4446
4447 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4448
4449         * loader.c (mono_loader_set_error_bad_image): Improve
4450         error messages.
4451
4452 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4453
4454         * loader.c (mono_get_method_full): Convert an assertion
4455         into a loader error.
4456
4457 2009-08-17  Rodrigo Kumpera  <rkumpera@novell.com>
4458
4459         * class-internals.h, class.c: Better naming and documentation.
4460
4461 2009-08-17  Zoltan Varga  <vargaz@gmail.com>
4462
4463         * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4464         obj is NULL.
4465
4466 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4467
4468         * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4469         parsing fails.
4470
4471 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4472
4473         * loader.c (mono_loader_error_prepare_exception): Handle missing field
4474         errors with no class set.
4475
4476         * loader.c (field_from_memberref): If the field signature is of the wrong
4477         type fail with a MissingFieldException instead of a BadImageException as
4478         this is the behavior observed on MS. 
4479
4480 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4481
4482         * loader.c (field_from_memberref): Don't crash if either the field
4483         signature or the typespec class are invalid.
4484
4485 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4486
4487         * verify.c (verifier_load_field): Don't allow field related
4488         ops to reference fields on generic type definition.
4489
4490 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4491
4492         * metadata-verify.c: Add new warning level for errors specified
4493         by ECMA 335 but that MS ignores.
4494
4495         * metadata-verify.c (verify_method_table): Make compiler controled
4496         visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4497         this check is safe because the end result will only be some visibility
4498         exceptions been thrown.
4499
4500 2009-08-14  Rodrigo Kumpera  <rkumpera@novell.com>
4501
4502         * verify.c (get_boxable_mono_type): Don't allow the
4503         use of the generic type definition on boxed type positions.
4504
4505         Fixes #531237.
4506
4507 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4508
4509         * threadpool.c: Make sure no cross-domain references remain in
4510         ares_htable or the arrays that are thrown away when resizing.
4511
4512 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4513
4514         * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4515         list of classes for which we have to unregister reflection_info
4516         with the GC and which are not in the namespace cache.
4517
4518         * reflection.c (mono_reflection_initialize_generic_parameter): Add
4519         the class to the list.
4520
4521 2009-08-14  Mark Probst  <mark.probst@gmail.com>
4522
4523         * domain.c (mono_domain_free): Unregister the GC roots in
4524         MonoDomain.
4525
4526 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4527
4528         * reflection.c (mono_reflection_type_get_handle): Fix typo.
4529
4530 2009-08-12  Rodrigo Kumpera  <rkumpera@novell.com>
4531
4532         * class.c: Add mono_class_get_field_from_name_full which does
4533         the same as mono_class_get_field_from_name but does check field
4534         signature as well.
4535
4536         * class-internals.h: Export mono_class_get_field_from_name_full as
4537         part of the internal API.
4538
4539         * loader.c (field_from_memberref): Search fields by name and signature
4540         as it's valid to have two fields with same name but different types.
4541
4542         Fixes #528055.
4543
4544 2009-08-10  Rodrigo Kumpera  <rkumpera@novell.com>
4545
4546         * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4547
4548         * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4549
4550         * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4551         System.Type.
4552
4553 2009-08-13  Zoltan Varga  <vargaz@gmail.com>
4554
4555         * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4556
4557         * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4558
4559 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4560
4561         * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4562         to sgen-scan-object.h, which can be included and parameterized via
4563         macros.
4564
4565         * Makefile.am: sgen-scan-object.h added.
4566
4567 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4568
4569         * gc.c: #define GC_dont_gc if we're compiling with SGen.
4570
4571 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4572
4573         * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4574         before clearing a domain in the GC.
4575
4576 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4577
4578         * exception.c (mono_exception_from_name_domain): Actually create
4579         the exception in the specified domain.
4580
4581         * appdomain.c (mono_domain_create_appdomain_internal): Create the
4582         OutOfMemoryException a bit later so that the domain is inialized
4583         "enough" that it works.
4584
4585 2009-08-12  Mark Probst  <mark.probst@gmail.com>
4586
4587         * threads.c (thread_cleanup): Clean up the cached_culture_info
4588         array to prevent cross-domain references.
4589
4590 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4591
4592         * metadata.c: more documentation for MonoType accessors.
4593
4594 2009-08-11  Raja R Harinath  <harinath@hurrynot.org>
4595
4596         Fix incorrect size definitions where the tail array isn't a list
4597         of pointers
4598         * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4599         define size.
4600         * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4601         * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4602         * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4603
4604 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4605
4606         * reflection.h:
4607         * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4608
4609 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4610
4611         * metadata.c:
4612         * loader.c:
4613         * metadata-internals.h:
4614         * method-builder.c:
4615         * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4616
4617 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4618
4619         * cominterop.c:
4620         * metadata.c:
4621         * metadata.h:
4622         * loader.c:
4623         * marshal.c:
4624         * reflection.c: #define for sizeof in MonoType and
4625         MonoMethodSignature.
4626
4627 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4628
4629         * domain.c:
4630         * domain-internals.h: add and use #define's instead of sizeof()
4631         for MonoJitInfo and MonoJitInfoTable.
4632
4633 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4634
4635         * object.c:
4636         * class.h: use #define instead of sizeof() for MonoRemoteClass.
4637
4638 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4639
4640         * metadata.c:
4641         * metadata.h:
4642         * object.c:
4643         * class-internals.h:
4644         * generic-sharing.c:
4645         * marshal.c: use a #define instead of sizeof() for a few
4646         structures that use a zero-length array.
4647
4648 2009-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
4649
4650         * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4651         to handle inflated generic methods.
4652
4653         * appdomain.c: Bump corlib version.
4654
4655         * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4656         instances.
4657
4658         * reflection.c (fixup_method): Same
4659
4660         * reflection.c (resolve_object): Same.
4661
4662         * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4663         g_error and a decent message.
4664
4665 2009-08-06  Massimiliano Mantione  <massi@ximian.com>
4666
4667         * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4668         from the object because it could not yet be available globally
4669         (it happens if the profiler tries to create a gchandle on the
4670         MonoThread object of a thread that is still registering itself
4671         with the runtime).
4672
4673 2009-08-04  Rodrigo Kumpera  <rkumpera@novell.com>
4674
4675         * reflection.c (mono_generic_class_get_object): Initialized the
4676         managed type arguments array.
4677
4678         * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4679
4680         * appdomain.c: Bump corlib version.
4681
4682 2009-08-04  Zoltan Varga  <vargaz@gmail.com>
4683
4684         * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4685         #527902.
4686
4687 2009-08-03  Zoltan Varga  <vargaz@gmail.com>
4688
4689         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4690         Avoid a crash if synch_cs is not set.
4691         
4692         * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal): 
4693         Handle the case when the handle is 0.
4694
4695         * appdomain.c: Bump corlib version.
4696
4697 2009-08-02  Zoltan Varga  <vargaz@gmail.com>
4698
4699         * reflection.c (mono_type_get_object): Fix a warning.
4700
4701 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4702
4703         * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4704         descriptor here.  We assume it's already been computed.
4705
4706         * generic-sharing.c (instantiate_other_info): Compute the GC
4707         descriptor for info type MONO_RGCTX_INFO_KLASS.
4708
4709 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4710
4711         * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4712         type, so don't use MONO_OBJECT_SETREF to set a field.
4713
4714 2009-08-01  Mark Probst  <mark.probst@gmail.com>
4715
4716         * gc.c: We were missing one case where invoking a finalizer would
4717         not reset the domain.  Also, in the finalizer thread loop, assert
4718         that we're in the root domain.
4719
4720 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4721
4722         * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4723         if the type is not an array.
4724
4725 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4726
4727         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4728         method bound to the declaring type of the method. Raise an exception
4729         if the type is not a generic param.
4730
4731 2009-07-31  Rodrigo Kumpera  <rkumpera@novell.com>
4732
4733         * class.c (print_unimplemented_interface_method_info): Print the
4734         full type name.
4735
4736         * class.c (mono_class_setup_vtable_general): When dealing with a
4737         generic instance first check if the generic type definition is
4738         not broken.
4739
4740 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4741
4742         * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4743
4744         * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4745
4746         * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4747
4748         * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4749
4750         * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4751
4752         Code is contributed under MIT/X11 license
4753
4754 2009-08-30  Rodrigo Kumpera  <rkumpera@novell.com>
4755
4756         * verify.c: Fix naming of stelem and ldelem.
4757
4758 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4759
4760         * generic-sharing.c: Replace the templates lock with the loader
4761         lock because of very hard to resolve deadlock issues.
4762
4763 2009-07-30  Zoltan Varga  <vargaz@gmail.com>
4764
4765         * icall.c (ves_icall_Type_GetMethodsByName): Use 
4766         mono_class_get_vtable_size () instead of accessing klass->vtable_size
4767         directly. Fixes #525338.
4768
4769         * class.c (mono_class_get_vtable_size): New helper function.
4770
4771         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4772         the field belongs to the type. Fixes #525733.
4773
4774 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4775
4776         * sgen-gc.c: When we stop a thread and its stack top is not within
4777         its allocated stack (because it's in an altstack signal handler),
4778         restart it and stop it again, until it is.
4779
4780 2009-07-30  Mark Probst  <mark.probst@gmail.com>
4781
4782         * sgen-gc.c: Take a thread's stack top and registers from the
4783         sigcontext in the suspend signal handler.
4784
4785         * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4786         stuff to sgen-archdep.h.
4787
4788         * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4789         caller, because have code in sgen-archdep.h to acquire that data.
4790
4791 2009-07-29  Massimiliano Mantione  <massi@ximian.com>
4792
4793         * profiler.c, profiler.h, profiler-private.h:
4794         Added support for keeping track of code chunks and buffers.
4795
4796 2009-07-29 Rodrigo Kumpera  <rkumpera@novell.com>
4797
4798         * metadata-verify.c: Fix endianness problems on decoding functions.
4799         Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4800
4801 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4802
4803         * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4804         schema for vectors and one dimension SZARRAY.
4805
4806 2009-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
4807
4808         * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4809         schema for vectors and one dimension SZARRAY.
4810
4811 2009-07-27  Mark Probst  <mark.probst@gmail.com>
4812
4813         * icall-def.h, thread-types.h, threads.c: New separate icalls for
4814         Interlocked.(Compare)Exchange with object arguments, which invoke
4815         write barriers.
4816
4817 2009-07-26  Miguel de Icaza  <miguel@novell.com>
4818
4819         * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4820         passed invalid arguments.   Fixes another crasher in the
4821         Silverlight test suite.
4822
4823         * class.c (mono_class_array_element_size): Return 0 for the size
4824         of the class;  This fixes the crasher exposed by :
4825
4826         typeof (void).MakeArrayType ();
4827
4828         * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4829         if there is no method to dereference.    Put all the code that
4830         depends on this inside the if (method) block.
4831
4832         This fixes the crasher exposed by Microsoft's Silvelright CLR test
4833         suite  ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4834
4835         With this change, we pass the test.
4836         
4837         * reflection.c (mono_reflection_sighelper_get_signature_local):
4838         Only dereference the assembly if it has been set.    Fixes a
4839         crasher exposed by #525328
4840
4841 2009-07-25  Mark Probst  <mark.probst@gmail.com>
4842
4843         * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4844         don't perform the store in mono_gc_wbarrier_generic_nostore().
4845         Remove the second argument (value), which is not needed.
4846
4847 2009-07-24  Zoltan Varga  <vargaz@gmail.com>
4848
4849         * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4850         the build.
4851
4852         * boehm-gc.c: Ditto.
4853         
4854 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4855
4856         * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4857         not perform the store itself.  Introduce
4858         mono_gc_wbarrier_generic_nostore(), which is the same as
4859         mono_gc_wbarrier_generic_store(), except it doesn't perform the
4860         store.
4861
4862 2009-07-24  Mark Probst  <mark.probst@gmail.com>
4863
4864         * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4865         mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4866         we still need the memcpy().
4867
4868 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4869
4870         * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4871         so that big arrays are handled correctly.  Always use
4872         safe_object_get_size() to calculate array object sizes, which
4873         takes bounds into account.
4874
4875 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4876
4877         * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4878         GC descriptor is computed before we use it.
4879
4880 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4881
4882         * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4883         write barrier if necessary.
4884
4885 2009-07-22  Mark Probst  <mark.probst@gmail.com>
4886
4887         * icall-def.h, icall.c, thread-types.h: New separate icall for
4888         VolatileWrite(object&,object) that uses a write barrier.
4889
4890         * console-unix.c, file-io.c, icall.c, threads.c: Use write
4891         barriers in icalls which write to "ref" or "out" arguments.
4892
4893 2009-07-21  Zoltan Varga  <vargaz@gmail.com>
4894
4895         * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4896         handler in a separate icall, to reduce the size of the wrappers.
4897
4898 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4899
4900         * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4901
4902 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4903
4904         * metadata-verify.c (parse_field): Allow byref field.
4905
4906         * metadata-verify.c (parse_locals_signature): Allow byref locals.
4907
4908         * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4909
4910 2009-07-20 Rodrigo Kumpera  <rkumpera@novell.com>
4911
4912         * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4913         Fixes #522784.
4914
4915 2009-07-20  Robert Jordan  <robertj@gmx.net>
4916
4917         * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4918         Fix invalid IL in valuetype handling (STOBJ must push the
4919         corresponding class). Fixes bug #523149.
4920
4921         Code is contributed under MIT/X11 license.
4922
4923 2009-07-20  Geoff Norton  <gnorton@novell.com>
4924
4925         * gc.c: Use proper semaphores where available on posix and darwin.
4926
4927 2009-07-19  Geoff Norton  <gnorton@novell.com>
4928
4929         * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4930
4931 2009-07-19 Rodrigo Kumpera  <rkumpera@novell.com>
4932
4933         * refletion.c (is_sre_usertype): Change name to is_usertype and
4934         invert it's result so it returns true if the type is an user type
4935         and not the opposite.
4936
4937         * reflection.c (is_*_type): Change all of those to use new macro
4938         check_corlib_type_cached that cached the type lookup so we don't
4939         need to do string comparisons all the type. Changed the signature
4940         to take a MonoClass instead.
4941
4942         * reflection.c: Change mono_image_create_token and resolve_object
4943         to use is_sre_* functions.
4944
4945 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4946
4947         * sgen-gc.c: Check for writes to the stack in the managed
4948         wbarrier as well.
4949
4950 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4951
4952         * sgen-gc.c: When a thread is unregistered, don't free its remsets
4953         but put them on a list which is processed with the other thread's
4954         remsets.
4955
4956 2009-07-18  Mark Probst  <mark.probst@gmail.com>
4957
4958         * sgen-gc.c: Fix and enable the internal allocator instead of
4959         using malloc/free (which causes deadlocks).
4960
4961 2009-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
4962
4963         * refletion.c: Fix builds with SRE disabled by adding a minimal
4964         implementation of mono_reflection_type_get_handle.
4965
4966 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4967
4968         * refletion.c: Make mono_reflection_type_get_handle non static.
4969
4970         * object-internals.h: Export mono_reflection_type_get_handle.
4971
4972         * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
4973         unmanaged handle using mono_reflection_type_get_handle.
4974
4975 2009-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
4976
4977         * refletion.c: Replace all reads of MonoReflectionType::type with
4978         calls to mono_reflection_type_get_handle. Only the functions that
4979         deal with constructing TypeBuilder::type have not been changed
4980         because they have to deal with NULL values.
4981
4982         This is a first step into supporting reflection types that don't
4983         map directly into their unmanaged counterpart.
4984
4985 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4986
4987         * metadata-verify.c (parse_locals_signature): Don't complain
4988         on signature with zero locals since MS generates it and doesn't
4989         bother with.
4990
4991 2009-07-14 Rodrigo Kumpera  <rkumpera@novell.com>
4992
4993         * reflection.c (mono_image_get_array_token): Resolve return
4994         type using mono_reflection_type_get_handle.
4995
4996         * reflection.c (mono_image_get_array_token): Resolve array method
4997         parent type using mono_reflection_type_get_handle.
4998
4999 2009-07-14  Zoltan Varga  <vargaz@gmail.com>
5000
5001         * reflection.c (mono_image_basic_init): Applied patch from
5002         <Dax@daxxfiles.net>. Set the public key token from the assembly
5003         builder. Fixes #518909.
5004
5005         * appdomain.c: Bump corlib version.
5006
5007 2009-07-13  Zoltan Varga  <vargaz@gmail.com>
5008
5009         * class.c (mono_class_needs_cctor_run): Make this return false if
5010         the class has no cctor.
5011
5012 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5013
5014         * sgen-gc.c: When the minor GC needs to allocate a new section,
5015         invoke the major GC afterwards.
5016
5017 2009-07-14  Bill Holmes  <billholmes54@gmail.com>
5018
5019         * process.c  (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5020           Applying the window_style field to the SHELLEXECUTEINFO struct.
5021
5022         Code is contributed under MIT/X11 license.
5023
5024 2009-07-13  Mark Probst  <mark.probst@gmail.com>
5025
5026         * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5027         locking earlier.  Fix it in the managed allocator by making sure
5028         that no thread is stopped there before the GC runs.  If we do stop
5029         a thread there, we restart it and let it run a but, until it stops
5030         somewhere else.
5031
5032         * gc-internal.h, gc.c: Function for getting the IP from a signal
5033         context via a function registered by mini.
5034
5035 2009-07-11  Zoltan Varga  <vargaz@gmail.com>
5036
5037         * object-internals.h (MonoIntPtr): New structure describing a boxed
5038         IntPtr.
5039
5040         * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5041         returns. Fixes #519953.
5042
5043         * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5044
5045 2009-07-09  Mark Probst  <mark.probst@gmail.com>
5046
5047         * class-internals.h, generic-sharing.c: New RGCTX info type for
5048         getting a remoting invoke with check wrapper.
5049
5050 2009-07-07  Geoff Norton  <gnorton@novell.com>
5051
5052         * icall-def.h: Fix the enable-minimal build.
5053
5054 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5055
5056         * object-internals.h: Add MonoReflectionDerivedType.
5057
5058         * reflection.c: Implement support for PointerType.
5059         Fixed tons of warnings.
5060
5061 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5062
5063         * object-internals.h: Add MonoReflectionByRefType.
5064
5065         * reflection.c: Implement support for ByRefType.
5066
5067 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5068
5069         * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5070
5071         * object-internals.h: Add MonoReflectionArrayType and
5072         mono_reflection_create_unmanaged_type.
5073
5074         * reflection.c: Implement support for ArrayType.
5075
5076 2009-07-07 Rodrigo Kumpera  <rkumpera@novell.com>
5077
5078         * metadata-verify.c (is_valid_method_header): Parse EH block
5079         flags correctly.
5080
5081 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5082
5083         * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5084         processing the disappearing links, and process disappearing links
5085         in a loop until no new objects are copied.
5086
5087 2009-07-03  Mark Probst  <mark.probst@gmail.com>
5088
5089         * object.c (handle_enum): Invoke the write barrier when copying
5090         value type instances.
5091
5092         * sgen-gc.c: Register remsets for unmanaged write barriers only
5093         when the address written to is actually on the heap.  This makes
5094         set_value() in object.c work without requiring that the result be
5095         on the heap.
5096
5097 2009-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
5098
5099         The runtime wrappers are all bound to a given type that must
5100         exist in the same image. For regular images we use the <Module>
5101         type, which is required to exist for all images.
5102
5103         The <Module> type can't be used for dynamic images because it
5104         might not exist at the time the wrapper is required, so we create
5105         a synthetic type to use instead.
5106
5107         The current code works because of the 2 stage setup of MonoClass,
5108         but once this is gone it will no longer work.
5109
5110         * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5111
5112         * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5113
5114         * object-internals.h: Export mono_image_set_wrappers_type icall
5115         as part of the internal API.
5116
5117         * marshal.c (get_wrapper_target_class): If the image is dynamic,
5118         use MonoDynamicImage::wrappers_type instead of the <Module> type.
5119
5120         reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5121         image wrappers_type to the provided value.
5122
5123 2009-07-01 Rodrigo Kumpera  <rkumpera@novell.com>
5124
5125         * appdomain.c (deregister_reflection_info_roots): No need
5126         to use the image lock here.
5127
5128 2009-07-02  Mark Probst  <mark.probst@gmail.com>
5129
5130         * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5131
5132 2009-06-29  Zoltan Varga  <vargaz@gmail.com>
5133
5134         * threads.c: Store the thread start argument in a hash table instead of
5135         registering it as a root, as libgc doesn't support unregistering roots
5136         under windows, leading to 'too many root sets' errors when many threads
5137         are created.
5138
5139         * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5140         shutdown, they can still be referenced by the other dying objects.
5141         Fixes #514506.
5142
5143 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5144
5145         * socket-io.c: DontLinger does not allow LingerOptions.
5146
5147 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5148
5149         * metadata-verify.c: The spec doesn't mention that it's possible to add
5150         custom attribute to a generic parameter. Fixed.
5151
5152 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5153
5154         * class.c (inflate_generic_type): Don't crash while trying to output a message
5155         on why we're aborting.
5156
5157 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5158
5159         * socket-io.c: DontLinger can take an int or a boolean too.
5160
5161 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5162
5163         * gc.c: check for a null argument to SuppressFinalize () and
5164         ReRegisterForFinalize ().
5165
5166 2009-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
5167
5168         * loader.c (method_from_methodspec): Call into the verifier to check
5169         the signature.
5170
5171         * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5172
5173         * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5174         part of the internal API.
5175
5176 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5177
5178         * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5179         the signature.
5180
5181         * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5182
5183         * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5184         part of the internal API.
5185
5186 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5187
5188         * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5189         the signature.
5190
5191         * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5192         blob verification.
5193
5194         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5195         part of the internal API.
5196
5197 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5198
5199         * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5200         when doing basic verification. 
5201
5202         This check must be done since the runtime peeks into signatures in much
5203         more places than it does decoding so it makes sense to ensure that all
5204         pointers to blob objects are well formed.
5205
5206 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5207
5208         * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5209         Use proper overflow dectection. Fix usage of it.
5210
5211 2009-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
5212
5213         * loader.c (field_from_memberref): Call into the verifier to check
5214         the signature.
5215
5216         * loader.c (mono_method_get_signature_full): Same.
5217
5218         * loader.c (method_from_memberref): Same.
5219
5220         * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5221
5222         * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5223         part of the internal API.
5224
5225 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5226
5227         * threadpool.c (mono_thread_pool_add): If the domain is unloading
5228         or unloaded, still return an AsyncResult, but don't add it to the
5229         threadpool.
5230
5231 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5232
5233         * threads.c: fix missing colon when DEBUG is defined.
5234
5235 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5236
5237         * threadpool.c: Don't add new calls to a threadpool if the domain
5238         of the call is unloading or unloaded.  When dequeuing a job, null
5239         the reference in the queue.
5240
5241 2009-06-25  Mark Probst  <mark.probst@gmail.com>
5242
5243         * sgen-gc.c (null_link_in_range): Add the dislink for the old
5244         generation if an object was moved.
5245
5246 2009-06-25  Sylvain Dupont <duposyl@gmail.com>
5247
5248         * cominterop.h cominterop.c marshal.c: Added support for marshalling out 
5249           parameters of type SAFEARRAY[VARIANT].
5250
5251         * reflection.c (encode_marshal_blob): Properly generate element type
5252           (SafeArraySubType marshal attribute option).
5253
5254         Code is contributed under MIT/X11 license.
5255
5256 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5257
5258         * reflection.c: in mono_method_clear_object () really ensure all the
5259         objects are removed.
5260
5261 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5262
5263         * loader.c (mono_method_signature): Call into the verifier to check
5264         the method signature.
5265
5266         * metadata-verify.c (verify_method_table): Move signature verification
5267         to verify_method_table_full.
5268
5269         * metadata-verify.c: Add mono_verifier_verify_method_signature.
5270
5271         * verify-internals.h: Export mono_verifier_verify_method_signature as
5272         part of the internal API.
5273
5274 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5275
5276         * loader.c (mono_method_get_header): Call into the verifier to
5277         check the method header.
5278
5279         * metadata-verify.c: Add mono_verifier_verify_method_header.
5280
5281         * verify-internals.h: Export mono_verifier_verify_method_header as
5282         part of the internal API.
5283
5284 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5285
5286         * class.c (mono_class_find_enum_basetype): Call into the verifier to
5287         check the field signature. Replace an assert with an explicit check.
5288
5289         * class.c (mono_class_setup_fields): Call into the verifier to check
5290         the field signature.
5291
5292         * metadata-verify.c: Add mono_verifier_verify_field_signature.
5293
5294         * verify-internals.h: Export mono_verifier_verify_field_signature as
5295         part of the internal API.
5296
5297 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5298
5299         * class.c (mono_class_find_enum_basetype): Simplify this function
5300         by moving code outside of the loop and not decoding static fields.
5301
5302 2009-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
5303
5304         * metadata-verify.c (verify_typedef_table): Check the extends
5305         token here. Move to here a flags check from verify_typedef_table_full.
5306
5307 2009-06-24  Zoltan Varga  <vargaz@gmail.com>
5308
5309         * metadata-verify.c (is_valid_method_header): Fix a warning.
5310
5311         * metadata-internals.h (MonoImage): Remove the unused 
5312         static_rgctx_invoke_wrapper_cache.
5313
5314         * image.c marshal.c: Ditto.
5315
5316 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5317
5318         * image.c (do_mono_image_load): Enable table data verification.
5319
5320 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5321
5322         * metadata-verify.c (is_valid_constant): Fix nullref check.
5323
5324 2009-06-23 Rodrigo Kumpera  <rkumpera@novell.com>
5325
5326         * metadata-verify.c (is_valid_constant): Fix string bounds check.
5327
5328 2009-06-22  Mark Probst  <mark.probst@gmail.com>
5329
5330         * sgen-gc.c: Managed allocation with pthreads TLS.
5331
5332         * threads.c, threads-types.h: Functions for the JIT to tell the
5333         runtime whether it supports the MONO_TLS opcode.
5334
5335 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5336
5337         * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5338         without methods.
5339
5340 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5341
5342         * metadata-verify.c (is_valid_constant): Fix the string length check.
5343         Use safe overflow checking. Add decent error messages.
5344
5345 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5346
5347         * metadata-verify.c: Move remaininh blob checks to the offline
5348         verification path.
5349
5350 2009-06-22 Rodrigo Kumpera  <rkumpera@novell.com>
5351
5352         * metadata-verify.c: Move more blob checks to the offline verification
5353         path.
5354
5355 2009-06-22  Bill Holmes  <billholmes54@gmail.com>
5356
5357         * object-internals.h : Adding interrupt_on_stop field.
5358
5359         * threads.c (mono_thread_request_interruption) : On Windows exit the
5360           thread if interrupt_on_stop is set.
5361
5362         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5363          Removing old interrupt logic and setting the interrupt_on_stop for the
5364          thread when calling accept.
5365
5366         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5367          setting the interrupt_on_stop for the thread when calling accept.
5368
5369         Contributed under MIT/X11 license.
5370
5371 2009-06-20  Martin Baulig  <martin@ximian.com>
5372
5373         * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5374
5375 2009-06-21  Zoltan Varga  <vargaz@gmail.com>
5376
5377         * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5378         running in no-exec mode.
5379
5380 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5381
5382         * metadata-verify.c (verify_method_table): Move header
5383         checking to verify_method_table_full.
5384
5385         * metata-verify.c (mono_verifier_verify_full_table_data):
5386         Call verify_method_table_full.
5387
5388 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5389
5390         * metadata-verify.c (verify_field_table): Move signature
5391         checking to verify_field_table_full.
5392
5393         * metata-verify.c (mono_verifier_verify_full_table_data):
5394         Call verify_field_table_full.
5395
5396 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5397
5398         * metadata-verify.c (verify_typedef_table): Move remaining
5399         stuff to verify_typedef_table_full.
5400
5401 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5402
5403         * metadata-verify.c: Kill is_corlib from VerifyContext.
5404         It is only used by the offline mode.
5405         So we better remove it from the runtime path.
5406
5407 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5408
5409         * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5410         function that perform the offline metadata verification steps.
5411
5412         * metadata-verify.c (verify_typedef_table): Move some checks to
5413         verify_typedef_table_full and make it been called by new function
5414         mono_verifier_verify_full_table_data.
5415
5416         * pedump.c: Call mono_verifier_verify_full_table_data.
5417
5418         * verify-internals.h: Export mono_verifier_verify_full_table_data as
5419         part of the internal API.
5420
5421 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5422
5423         * metadata-verify.c (typedef_is_system_object): Fix System.Object
5424         check.
5425
5426         * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5427         flags bits. SupportLastError was confused as bit 7 instead of 6.
5428
5429         * metadata-verify.c (verify_implmap_table): Fix import scope verification
5430         to check against the module ref table instead of module.
5431
5432         * metadata-verify.c (verify_implmap_table): Fix corlib check.
5433
5434         * pedump.c: Call mono_image_load_names.
5435
5436 2009-06-19 Rodrigo Kumpera  <rkumpera@novell.com>
5437
5438         * image.c: Extract mono_image_load_names from do_mono_image_load.
5439
5440         * metadata-internals.h: Export mono_image_load_names as part of
5441         the internal API.
5442         
5443 2009-06-19  Zoltan Varga  <vargaz@gmail.com>
5444
5445         * metadata.c (mono_metadata_cleanup): Free the generic method cache
5446         first, as it could reference data in the other caches.
5447
5448 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5449
5450         * metadata-verify.c: Finished with method header verification.
5451
5452 2009-06-18 Rodrigo Kumpera  <rkumpera@novell.com>
5453
5454         * metadata-verify.c: Added more header verification code.
5455         Now only EH clauses are missing.
5456
5457 2009-06-17  Zoltan Varga  <vargaz@gmail.com>
5458
5459         * marshal.c (get_runtime_invoke_type): Don't share primitive types
5460         for return values.
5461
5462 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5463
5464         * metadata-verify.c: Initial method header verification.
5465
5466 2009-06-16 Rodrigo Kumpera  <rkumpera@novell.com>
5467
5468         * metadata-verify.c (verify_import_table): The IAT contents
5469         might end been patched by the windows DL when running with
5470         coree enabled.
5471
5472 2009-06-15 Rodrigo Kumpera  <rkumpera@novell.com>
5473
5474         * class.c (mono_class_from_typeref): If the enclosing type is not
5475         found return null instead of crashing. Fixes #508487.
5476
5477 2009-06-15  Atsushi Enomoto  <atsushi@ximian.com>
5478
5479         * normalization-tables.h : updated to the latest unicode charcter
5480           data.
5481         * appdomain.c : bump corlib version.
5482
5483 2009-06-14  Zoltan Varga  <vargaz@gmail.com>
5484
5485         * class.c (mono_class_from_name): Fix support for assembly references
5486         in the EXPORTEDTYPE table. Fixes #511704.
5487
5488 2009-06-13  Geoff Norton  <gnorton@novell.com>
5489
5490         * domain.c: Ensure that mono_domain_assembly_open actually opens the
5491         assembly in the target domain.
5492
5493 2009-06-12  Robert Jordan  <robertj@gmx.net>
5494
5495         * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5496         because "this" of the managed signature has become an
5497         ordinary parameter in the unmanaged signature.
5498
5499 2009-06-12  Zoltan Varga  <vargaz@gmail.com>
5500
5501         * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5502         field for owner-less generic containers.
5503
5504         * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5505         image field of the owner-less generic containers created here.
5506
5507         * metadata.c (mono_metadata_load_generic_params): Ditto, the
5508         contain is ownerless until the caller sets its owner.
5509
5510         * metadata.c (type_in_image): Handle owner-less generic containers
5511         correctly.
5512         
5513 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5514
5515         * image.c (mono_image_close): Support debug_assembly_unload for
5516         dynamic images too.
5517
5518 2009-06-11 Andrés G. Aragoneses  <aaragoneses@novell.com>
5519
5520         * class.c: Fix some typos in comments.
5521
5522 2009-06-11  Zoltan Varga  <vargaz@gmail.com>
5523
5524         * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5525
5526         * threads.c (mono_thread_execute_interruption): Avoid creating the
5527         abort exception object while holding the synch_cs lock.
5528
5529 2009-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
5530
5531         * metadata-verify.c: Verify basic cattr content.
5532
5533 2009-06-10  Zoltan Varga  <vargaz@gmail.com>
5534
5535         * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5536         nested types.
5537         
5538         * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5539         support for nested types. Fixes #511704.
5540
5541 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5542
5543         * metadata-verify.c: Verify methodspec signatures.
5544
5545 2009-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
5546
5547         * metadata-verify.c: Verify typespec signatures.
5548
5549 2009-06-09  Zoltan Varga  <vargaz@gmail.com>
5550
5551         * metadata.c (free_inflated_method): Call 
5552         mono_marshal_free_inflated_wrappers (), which was missed earlier.
5553
5554 2009-06-08  Miguel de Icaza  <miguel@novell.com>
5555
5556         * mono-config.c: Small change to report the PPC64/ILP32 model.
5557
5558 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5559
5560         * metadata-verify.c (parse_type): Check szarray.
5561
5562 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5563
5564         * metadata-verify.c (parse_type): Check fnptr.
5565
5566 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5567
5568         * metadata-verify.c (parse_type): Check generic instances.
5569
5570 2009-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
5571
5572         * metadata-verify.c (parse_type): Check array shape.
5573
5574 2009-06-05  Robert Jordan  <robertj@gmx.net>
5575
5576         * class.c (mono_class_create_from_typedef): Check only for
5577         mscorlib's System.Array.
5578
5579 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5580
5581         * metadata-verify.c (parse_type): Check pointer, class/valuetype
5582         and generic params. 
5583
5584         * metadata-verify.c (parse_field): Check the signature.
5585
5586 2009-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
5587
5588         * metadata-verify.c: Implement locals signature check.
5589
5590 2009-06-04  Marek Safar  <marek.safar@gmail.com>
5591
5592         * domain.c: Add .NET 4.0 Beta 1 version.
5593
5594 2009-06-04  Bill Holmes  <billholmes54@gmail.com>
5595
5596         * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5597           For QueryInterface on CCWs consider the base class
5598           interfaces as well.
5599
5600         Code is contributed under MIT/X11 license.
5601
5602 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5603
5604         * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5605
5606         * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5607         used.
5608
5609         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5610         adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5611
5612         * generic-sharing.c (inflate_other_data): Ditto.
5613         
5614 2009-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
5615
5616         * metadata-verify.c: Implement property signature check.
5617
5618 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5619
5620         * sgen-gc.h: Register saving support for PPC.
5621
5622 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5623
5624         * sgen-gc.c: Fixed a pthread TLS screwup.
5625
5626 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5627
5628         * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5629         supported.
5630
5631 2009-06-04  Mark Probst  <mark.probst@gmail.com>
5632
5633         * sgen-gc.c: Disable TLA and managed allocation if the __thread
5634         keyword is not supported.
5635
5636 2009-06-04  Zoltan Varga  <vargaz@gmail.com>
5637
5638         * marshal.c metadata.c: Applied patch from Ulrich Weigand 
5639         <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5640         the inflated method is freed. Fixes #508389.
5641
5642         The code is contributed under the MIT/X11 license.
5643         
5644 2009-06-03  Zoltan Varga  <vargaz@gmail.com>
5645
5646         * marshal.c (get_wrapper_target_class): New helper function.
5647         (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5648         the <Module> class of the image. Fixes #509049.
5649
5650 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5651
5652         * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5653         Check if the thread was interrupted and proccess it straight away.
5654         Makes abortion much more responsive.
5655
5656 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5657
5658         * threads.c (mono_thread_execute_interruption): Use atomic cas with
5659         MonoThread::interruption_requested to match it's counterpart.
5660
5661         Fixes a hang in abort-stress-1 on a 2 core x86.
5662
5663         * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5664         Fix warning.
5665
5666 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5667
5668         Change MonoImage::name_cache to be protected by the image lock
5669         instead of the loader lock.
5670
5671         * appdomain.c (deregister_reflection_info_roots): Protect access
5672         to name_cache.
5673
5674         * class.c (mono_image_init_name_cache): Change from the loader lock
5675         to the image lock. Check if the cache wasn't already created.
5676
5677         * class.c: Change from the loader to the image lock.
5678
5679         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5680         the code to hold the image lock while iterating over name_cache and
5681         not go into mono_array_new holding it.
5682
5683         * metadata-internals.h: Add a comment about this change.
5684
5685 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5686
5687         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5688         Under the 2.0 profile raise the loader error.
5689
5690         Fixes #508532.
5691
5692 2009-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
5693
5694         * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5695         of ldind opcode for generic instances so we don't fail for direct wrappers.
5696         This only affect direct calls.
5697
5698 2009-05-31  Zoltan Varga  <vargaz@gmail.com>
5699
5700         * reflection.c (create_dynamic_mono_image): Fix warnings.
5701
5702         * generic-sharing.c (other_info_equal): Ditto.
5703         
5704 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5705
5706         * metadata-verify.c: Implement field signature check.
5707
5708 2009-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
5709
5710         * metadata-verify.c: Implement standalone signature check.
5711
5712 2009-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
5713
5714         * metadata-verify.c: Implement methodref signature check.
5715
5716 2009-05-28  Zoltan Varga  <vargaz@gmail.com>
5717
5718         * object-internals.h (MonoRuntimeCallbacks): New structure containing
5719         callbacks supplied by the runtime.
5720
5721         * object.c (mono_install_callbacks): New internal function to install
5722         the callbacks.
5723
5724         * object.c (mono_create_ftnptr): Move the implementation of this to
5725         mini/.
5726
5727         * object.c (mono_get_addr_from_ftnptr): Ditto.  
5728
5729 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5730
5731         * metadata-verify.c (parse_return_type): Proper byref check.
5732         * metadata-verify.c (is_valid_method_signature): Check for zero arity
5733         generic signatures and method params.
5734
5735 2009-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
5736
5737         * metadata-verify.c (decode_signature_header): Fix bounds check.
5738
5739         * metadata-verify.c (parse_custom_mods): Check custom mods.
5740
5741         * metadata-verify.c (parse_type): Do initial basic verification
5742         of valid values.
5743         
5744         * metadata-verify.c (is_valid_method_signature): Parse the generic
5745         param count.
5746
5747 2009-05-26 Rodrigo Kumpera  <rkumpera@novell.com>
5748
5749         * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5750         discarded based on their most specific definition so we set the method_slots
5751         array before checking if the method is acceptable or not.
5752
5753         Fixes #506757.
5754
5755 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5756
5757         * icall.c: Free the old array when resizing a mono_ptr_array.
5758
5759 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5760
5761         * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5762         for the hashes whose keys are managed objects.
5763
5764 2009-05-26  Mark Probst  <mark.probst@gmail.com>
5765
5766         * object-internals.h, threads.c: Set the execution context on
5767         thread start here, not in corlib.
5768
5769         * appdomain.c: Bump corlib version.
5770
5771 2009-05-27  Martin Baulig  <martin@ximian.com>
5772
5773         * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5774         if `_mono_debug_using_mono_debugger' is set to make things work
5775         properly when embedding Mono.
5776
5777 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5778
5779         * class.c (mono_class_setup_fields): Don't mark simd types as having
5780         16 bytes alignment as the whole runtime doesn't support.
5781
5782 2009-05-25 Rodrigo Kumpera  <rkumpera@novell.com>
5783
5784         * metadata-verify.c (safe_read): Use endian safe read macros.
5785
5786 2009-05-25  Zoltan Varga  <vargaz@gmail.com>
5787
5788         * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5789         it is read-only when using full aot.
5790
5791 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5792
5793         * metadata-verify.c (is_valid_method_signature): Verify parts
5794         of the return type. Provide an error message in case of failure.
5795
5796 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5797
5798         * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5799
5800 2009-05-22 Rodrigo Kumpera  <rkumpera@novell.com>
5801
5802         * metadata-verify.c: Include the size prefix in the bounds check.
5803
5804 2009-05-22  Miguel de Icaza  <miguel@novell.com>
5805
5806         * icall.c: Remove warnings.
5807
5808         * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5809         prevent auto-detection based on GCC defines.
5810
5811         Add PS3
5812
5813         * metadata-verify.c: Do not include signal.h
5814
5815         * generic-sharing.c, marshal.c: Add returns to avoid some warning
5816         messages.  Not sure why the g_assert_not_reached is not enough to
5817         quiet the compiler.
5818         
5819
5820         * appdomain.c: Remove code that is not used when
5821         DISABLE_SHADOW_COPY is set.
5822
5823         * image.c: use g_getenv
5824
5825 2009-05-21  Miguel de Icaza  <miguel@novell.com>
5826
5827         * reflection.c: Remove code that it not used with
5828         DISABLE_REFLECTION_EMIT is defined.
5829
5830 2009-05-21  Zoltan Varga  <vargaz@gmail.com>
5831
5832         * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5833         invoke wrappers.
5834
5835 2009-05-20  Miguel de Icaza  <miguel@novell.com>
5836
5837         * socket-io.c
5838         (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5839         the ifdef here and instead put that on io-layer
5840
5841 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5842
5843         * metadata-verify.c: Verify the generic param constraint table.
5844
5845 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5846
5847         * metadata-verify.c (verify_generic_param_table): Fix
5848         thinko on the valid flags bits for generic params.
5849
5850 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5851
5852         * metadata-verify.c: Verify the methodspec table.
5853
5854 2009-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
5855
5856         * metadata-verify.c: Verify the generic param table.
5857
5858 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5859
5860         * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5861
5862 2009-05-19  Mark Probst  <mark.probst@gmail.com>
5863
5864         * sgen-gc.c: Use generation enum more consistently and use the
5865         correct generation in mono_gc_register_for_finalization().
5866
5867 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5868
5869         * metadata-verify.c: Verify the nested class table.
5870
5871 2009-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
5872
5873         * metadata-verify.c: Verify the manifest resource table.
5874
5875 2009-05-17  Zoltan Varga  <vargaz@gmail.com>
5876
5877         * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5878
5879 2009-05-16  Zoltan Varga  <vargaz@gmail.com>
5880
5881         * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5882         wrappers, this is now done in the JIT.
5883         
5884         * class.c (mono_set_generic_sharing_supported): New internal function.
5885         (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5886
5887 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5888
5889         * metadata-verify.c: Verify the exported type table.
5890
5891 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5892
5893         * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5894
5895 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5896
5897         * metadata-verify.c: Verify the file table.
5898
5899 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5900
5901         * metadata-verify.c (verify_assembly_table): Fix an error message.
5902
5903         * metadata-verify.c: Verify the assemblyref table.
5904
5905 2009-05-15 Rodrigo Kumpera  <rkumpera@novell.com>
5906
5907         * metadata-verify.c (verify_assembly_table): Fix the valid
5908         bits mask for flags.
5909
5910 2009-05-15  Zoltan Varga  <vargaz@gmail.com>
5911
5912         * debug-helpers.c (mono_method_full_name): Print generic parameters of
5913         generic methods as well.
5914
5915 2009-05-15  Geoff Norton  <gnorton@novell.com>
5916
5917         * gc.c: MachO/Darwin supports and uses semaphores fine for this 
5918         use-case and is significantly more performant than the wapi layer.
5919
5920 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5921
5922         * metadata-verify.c: Verify the assembly table.
5923
5924 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5925
5926         * metadata-verify.c: Fix rows limit check.
5927
5928 2009-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
5929
5930         * metadata-verify.c: Verify the fieldrva table.
5931
5932 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5933
5934         * sgen.c: Speed up weak links and finalizers by grouping them by
5935         generation.
5936
5937 2009-05-13  Mark Probst  <mark.probst@gmail.com>
5938
5939         * marshal.c (delegate_hash_table_add): When overwriting an entry,
5940         free the old GCHandle (only applies to SGen).
5941
5942 2009-05-13  Zoltan Varga  <vargaz@gmail.com>
5943
5944         * loader.c (mono_get_method_from_token): Avoid the expensive call to
5945         mono_metadata_load_generic_params () for non-generic methods.
5946
5947 2009-05-12  Mark Probst  <mark.probst@gmail.com>
5948
5949         * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5950         New function for returning a monitor's weak link if it has one.
5951
5952         * sgen-gc.c: Remove an object's monitor's weak link (if it has
5953         one) when clearing a domain.  These can still be around because
5954         the object might not have been collected.
5955
5956 2009-05-12  Zoltan Varga  <vargaz@gmail.com>
5957
5958         * gc.c: Fix a warning.
5959
5960 2009-05-12  Kornél Pál  <kornelpal@gmail.com>
5961
5962         * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5963         prevous wait that resulted in a deadlock on Windows when initializing
5964         the runtime form DllMain. Also results in improved startup time.
5965         (finalizer_thread): Get rid of thread_started_event.
5966         * threads.c, threads-types.h (mono_thread_create_internal): Return the
5967         resulting MonoThread.
5968
5969         Contributed under MIT/X11 license.
5970
5971 2009-05-11 Rodrigo Kumpera  <rkumpera@novell.com>
5972
5973         * metadata-verify.c: Verify the implmap table.
5974         Don't require that #US and #Strings be present.
5975
5976 2009-05-11  Sebastien Pouliot  <sebastien@ximian.com>
5977
5978         * security-core-clr.c: Delegate checks are done at creation time,
5979         not a invocation time. Fix exception for Telerik Silverlight demo
5980
5981 2009-05-11  Mark Probst  <mark.probst@gmail.com>
5982
5983         * sgen-gc.c (need_remove_object_for_domain): Remove the special
5984         case for the Thread class.
5985
5986         * threads.c: Do clean-up of abort exception/state in
5987         thread_cleanup() instead of Thread.free_internal().  Also clean up
5988         current_appcontext.  The reason we have to do that is because
5989         those references might point into another domain and if that
5990         domain is unloaded before the thread is finalized, they point to
5991         invalid data.
5992
5993 2009-05-10  Andreas Faerber  <andreas.faerber@web.de>
5994
5995         * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
5996         stub signatures.
5997         
5998         Contributed unter MIT/X11 license.
5999
6000 2009-05-09  Miguel de Icaza  <miguel@novell.com>
6001
6002         * verify.c, metadata-verifier.c: Add support for disabling the
6003         verifier in some builds.
6004
6005         [ Sorry, my previous commit accidentally commited some work in
6006         progress ]
6007
6008 2009-05-08  Zoltan Varga  <vargaz@gmail.com>
6009
6010         * class.c (mono_class_setup_fields): Set class->field.first for
6011         generic instances.
6012
6013 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6014
6015         * metadata-verify.c: Verify the typespec table.
6016
6017 2009-05-07 Rodrigo Kumpera  <rkumpera@novell.com>
6018
6019         * metadata-verify.c: Verify the module table.
6020
6021 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6022
6023         * metadata-verify.c: Verify the methodimpl table.
6024
6025 2009-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
6026
6027         * metadata-verify.c: Verify the property table.
6028
6029 2009-05-06  Zoltan Varga  <vargaz@gmail.com>
6030
6031         * debug-helpers.c (mono_method_desc_match): Add support for generic
6032         glob patterns.
6033
6034 2009-05-05 Rodrigo Kumpera  <rkumpera@novell.com>
6035
6036         * metadata-verify.c: Verify the propertymap table.
6037
6038 2009-05-04 Rodrigo Kumpera  <rkumpera@novell.com>
6039
6040         * metadata-verify.c: Verify the event table.
6041
6042         * metadata-verify.c (search_sorted_table): Fix offset
6043         calculation.
6044
6045 2009-05-02  Zoltan Varga  <vargaz@gmail.com>
6046
6047         * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6048
6049 2009-05-01  Mark Probst  <mark.probst@gmail.com>
6050
6051         * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6052         because mono_delegate_free_ftnptr() needs it.
6053
6054 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6055
6056         * metadata-verify.c: Verify the eventmap table.
6057
6058 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6059
6060         * metadata-verify.c: Verify the standalonesig table.
6061
6062 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6063
6064         * metadata-verify.c: Verify the field layout table.
6065
6066 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6067
6068         * class.c (mono_type_get_name_recurse): Don't crash
6069         for ownerless generic params.
6070
6071         * debug-helpers.c (mono_type_get_desc): Correct the format
6072         for ownerless generic params.
6073
6074 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6075
6076         * metadata-verify.c: Verify the class layout table.
6077
6078 2009-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
6079
6080         * metadata-verify.c: Verify the decl security table.
6081
6082 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6083
6084         * domain.c (mono_domain_set_internal_with_options): Don't do
6085         anything if the old domain is the same as the old one.  Fixes
6086         #499326.
6087
6088 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6089
6090         * appdomain.c: Deregister the reflection_info roots when unloading
6091         a domain.
6092
6093         * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6094         memory allocated by a domain and frees its disappearing links.
6095
6096         * boehm-gc.c, null-gc.c: Empty implementation of
6097         mono_gc_clear_domain().
6098
6099 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6100
6101         * appdomain.c (clear_cached_vtable): Free the static fields memory
6102         block.
6103
6104 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6105
6106         * gc.c: Set the correct domain when invoking finalizers.
6107
6108         * appdomain.c: Set the correct domain when creating threads.
6109
6110 2009-04-30  Mark Probst  <mark.probst@gmail.com>
6111
6112         * sgen-gc.c: Fix skip size for vectors.
6113
6114 2009-05-03  Martin Baulig  <martin@ximian.com>
6115
6116         * mono-debug-debugger.c
6117         (mono_debugger_check_breakpoints): Check class init handlers even
6118         if we don't have any method load handers.
6119
6120 2009-04-30  Zoltan Varga  <vargaz@gmail.com>
6121
6122         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid 
6123         returning refonly assemblies if refonly is FALSE. Fixes #499013.
6124
6125 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6126
6127         * metadata-verify.c: Verify the field marshal table.
6128
6129 2009-04-29 Rodrigo Kumpera  <rkumpera@novell.com>
6130
6131         * metadata-verify.c: Verify the custom attribute table.
6132
6133 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6134
6135         * metadata-verify.c: Verify the constant table.
6136
6137 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6138
6139         * metadata-verify.c: Verify the memberef table.
6140
6141 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6142
6143         * metadata-verify.c (get_coded_index_token): Remove
6144         dead argument.
6145
6146 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6147
6148         * metadata-verify.c: Verify the interfaceimpl table.
6149
6150 2009-04-28 Rodrigo Kumpera  <rkumpera@novell.com>
6151
6152         * verify.c: Improve error message.
6153
6154         * debug-helpers.c (mono_type_get_desc): Harden the code that
6155         deals with VAR and MVAR.
6156
6157 2009-04-28  Zoltan Varga  <vargaz@gmail.com>
6158
6159         * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes 
6160         part of #498692.
6161
6162 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6163
6164         * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6165         changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6166
6167 2009-04-28  Sebastien Pouliot  <sebastien@ximian.com>
6168
6169         * security-core-clr.c: Avoid redundant checks for platform code, 
6170         e.g. check for method and for class (very common) and check
6171         for class and outer class (less common)...
6172
6173 2009-04-27  Zoltan Varga  <vargaz@gmail.com>
6174
6175         * reflection.c: Avoid returning random cattrs for synthetic methods.
6176         Fixes #498545.
6177
6178 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6179
6180         * assembly.c: assemblies in the GAC should never be shadow-copied.
6181
6182 2009-04-26  Mark Probst  <mark.probst@gmail.com>
6183
6184         * domain.c, domain-internals.h: Disable
6185         track_resurrection_{objects,handles}_hash in MonoDomain if using
6186         SGen.
6187
6188 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6189
6190         * metadata-verify.c: Verify the param table.
6191
6192 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6193
6194         * metadata-verify.c (verify_typedef_table): Range check FieldList and
6195         MethodList.
6196
6197         * metadata-verify.c (verify_method_table): Proper check the ParamList
6198         field.
6199
6200 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6201
6202         * metadata-verify.c (verify_method_table): Check for runtime
6203         implemented functions such as delegate .ctors. Remove spurious
6204         printf.
6205         
6206 2009-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
6207
6208         * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6209
6210 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6211
6212         Don't allocate MonoGenericInfo for ownerless generic params.
6213         * class-internals.h (MonoGenericParam::info): Move field to ...
6214         (MonoGenericParamFull): ... this.  New struct.
6215         (MonoGenericContainer::type_params): Change type to
6216         MonoGenericParamFull.
6217         (MonoGenericParam, MonoGenericContainer): Update accessors.
6218         * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6219         'info' field for ownerless generic param.
6220         (mono_metadata_load_generic_params): Update to changes.
6221         * reflection.c (mono_reflection_create_generic_class): Likewise.
6222         (reflection_methodbuilder_to_mono_method): Likewise.
6223         (mono_reflection_initialize_generic_parameter): Likewise.
6224
6225 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6226
6227         Don't use MonoGenericParamInfo for ownerless generic params.
6228         * class.c (get_anon_gparam_class, set_anon_gparam_class): New.  Don't
6229         use ParamInfo class at all.
6230         (mono_class_from_generic_parameter): Use them.
6231         (make_generic_param_class): Fix a couple of instances where 'pinfo
6232         == NULL' wasn't handle.
6233
6234 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6235
6236         * class.c (make_generic_param_class): Carve out of ...
6237         (mono_class_from_generic_parameter): ... here.
6238
6239 2009-04-24  Raja R Harinath  <harinath@hurrynot.org>
6240
6241         Simplify mono_class_from_generic_parameter
6242         * class-internals.h (MonoGenericParamInfo::token): New field.
6243         * metadata.c (mono_metadata_load_generic_params): Initialize it
6244         from metadata.
6245         * class.c (mono_class_from_generic_parameter): Use it instead of
6246         searching through metadata.
6247
6248 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6249
6250         * metadata-verify.c: Add verification of the method table.
6251
6252 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6253
6254         * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6255         Delegate::Invoke optimization.
6256
6257 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6258
6259         * appdomain.c (mono_domain_create_appdomain_internal): Free the
6260         string returned by get_shadow_assembly_location_base.
6261
6262         * appdomain.c (get_shadow_assembly_location_base): Add a comment
6263         about caller's ownership.
6264
6265 2009-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
6266
6267         * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6268         reflection memory on domain unload.
6269
6270         * domain.c (mono_domain_free): Don't free refobject_hash, let the
6271         reflection cleanup code do it.
6272
6273         * domain-internals.h: Add mono_reflection_cleanup_domain.
6274
6275         This fixes a memory leak for managed mirrors of reflection objects
6276         on domain unload. 
6277
6278 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6279
6280         * metadata-verify.c: Implement more verification of the field table.
6281
6282 2009-04-22 Rodrigo Kumpera  <rkumpera@novell.com>
6283
6284         * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6285         doesn't try to parse the input assembly, which can be broken.
6286
6287 2009-04-23  Mark Probst  <mark.probst@gmail.com>
6288
6289         * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6290         sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6291         by using the lowest bit in the link to store whether the link is
6292         tracked.  Move the track_resurrection hashes into boehm-gc.c.
6293
6294 2009-04-22  Miguel de Icaza  <miguel@novell.com>
6295
6296         * Makefile.am: Split the console support in platform specific code
6297         and put together a framework for making this easy in the future so
6298         that we can start splitting code instead of having a mess of PLATFORM_WIN32
6299
6300 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6301
6302         * pedump.c: Fix a warning.
6303
6304 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6305
6306         * verify.c (mono_delegate_type_equal): Compare valuetypes using
6307         mono_class_from_mono_type to avoid bad interactions with the dual representation
6308         of the generic type definition.
6309
6310 2009-04-21 Rodrigo Kumpera  <rkumpera@novell.com>
6311
6312         * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6313         get the MonoClass for the call context type as it might be a generic
6314         instance.
6315
6316         Fixes #491483.
6317
6318 2009-04-21  Mark Probst  <mark.probst@gmail.com>
6319
6320         * object-internals.h: The Thread object has no execution_context
6321         member anymore.
6322
6323         * threads.c, threadpool.c, threads-types.h: Accessor functions for
6324         the execution context.
6325
6326         * appdomain.c: Bump corlib version.
6327
6328 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6329
6330         * verify.c (do_newobj): Improve error message.
6331
6332 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6333
6334         * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6335         is nested in the filter block.
6336
6337         * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6338         block is not fully nested.
6339
6340         Fixes #495656.
6341
6342 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6343
6344         * verify.c (verify_type_compatibility_full): Compare MonoClass and
6345         not MonoType to check for equality of valuetypes as the generic type
6346         definition allows for two different encodings: the generic type definition
6347         class or a generic instance over the GTD arguments.
6348
6349         Fixes #496175.
6350
6351 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6352
6353         * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6354
6355         * verify.c (do_initobj): Improve error message.
6356
6357 2009-04-20 Rodrigo Kumpera  <rkumpera@novell.com>
6358
6359         * metadata-verify.c: Enable pe verification as the issue with #496453
6360         is that the authenticode data directory have a different unspecified
6361         format. Ignore it for now.
6362
6363         * pedump.c: Run the metadata verifier together with the IL verifier.
6364
6365         Fixes ##496453.
6366
6367 2009-04-20  Rolf Bjarne Kvinge  <RKvinge@novell.com>
6368
6369         * metadata-verify.c: Temporarily disable pe verification due to #496453.
6370
6371 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6372
6373         * class.c (can_access_type): Check visibility against
6374         the element type for pointers and arrays.
6375
6376         Fixes #496150.
6377
6378 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6379
6380         * metadata-verify.c: Fix cli and table verification to use information
6381         from the MonoImage. A lot of duplicated code got killed.
6382
6383 2009-04-17 Rodrigo Kumpera  <rkumpera@novell.com>
6384
6385
6386         This patch starts to integrate the metadata verifier with the runtime code.
6387
6388         This patch causes major regression in functionality for the metadata verifier
6389         as cli and table verification are disabled since they require to be ported to
6390         use MonoImage information.
6391
6392         * image.c (do_mono_image_load): Split the code in this function
6393         into mono_image_load_pe_data and mono_image_load_cli_data.
6394         Add     care_about_pecoff parameter to not load pecoff data.
6395         Call into the metadata verifier for pecoff and cli verification.
6396
6397         * image.c (mono_image_open_raw): New function that doesn't perform
6398         any parsing of the image contents.
6399         
6400         The reason for the 3 new functions is to give pedump better control
6401         into the interaction with the verifier.
6402
6403         * metadata-internals.h: Add new functions from image.c as part of the
6404         internal mono API.
6405
6406         * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6407         mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6408         to make those functions work together with the runtime.
6409
6410         * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6411         true if the image needs to be verified.
6412
6413         * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6414
6415         * pedump.c: Use new metadata verifier API.
6416
6417 2009-04-19  Zoltan Varga  <vargaz@gmail.com>
6418
6419         * object.c (mono_install_vtable_trampoline): Make this receive a
6420         trampoline creation function instead of trampoline, allowing the JIT
6421         to use a different trampoline for each vtable.
6422
6423 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6424
6425         * object.c (mono_raise_exception): Don't reset the thread abort
6426         exception state here.
6427
6428 2009-04-18  Mark Probst  <mark.probst@gmail.com>
6429
6430         * icall-def.h: New icall for getting the thread abort exception
6431         state for a thread.
6432
6433         * object.c, thread.c, object-internals.h: A thread's abort
6434         exception state is now a GC handle.  To get the object it stands
6435         for, we must move it into the current app domain, if it's
6436         different than the one where it originated from.
6437
6438         * appdomain.c: Bump corlib version.
6439
6440         * domain.c, domain-internals.h: New function for setting the
6441         domain and migrate the thread abort exception or not.
6442
6443 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6444
6445         * metadata-verify.c: Add initial verification of the
6446         field table.
6447
6448 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6449
6450         * metadata-verify.c: Add a macro to conditionally enable
6451         dumping of verification information. Add  make_coded_token
6452         and search_sorted_table to enable search sorted tables
6453         by a given coded token.
6454
6455 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6456
6457         * metadata-verify.c: Add array mapping from table index
6458         to description offset. Add get_col_offset and get_col_size
6459         functions.
6460
6461 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6462
6463         * metadata-verify.c: Add remaining table descriptions offsets.
6464         Add remaining coded index descriptions.
6465
6466 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6467
6468         * metadata-verify.c: Fixed constant table description.
6469         Fixed calculation of HasCustomAttribute coded index size.
6470         Fixed calculation of size for many table indexes. 
6471
6472 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6473
6474         * pedump.c (dump_metadata): Dump table offset instead
6475         of useless pointer in memory.
6476
6477 2009-04-16 Rodrigo Kumpera  <rkumpera@novell.com>
6478
6479         * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6480
6481 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6482
6483         * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6484         a missing of for interface types.
6485
6486 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6487
6488         * metadata-verify.c (verify_pe_optional_header): Add comment of why
6489         the code is commented.
6490
6491         * metadata-verify.c (verify_resources_table): Remove spurious printf
6492         and don't fail if there are unmanaged resources. Gmcs generates a useless
6493         one     for all assemblies - I bet it's some MS compatibility junk.
6494
6495 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6496
6497         * metadata-verify.c (verify_typedef_table): Verify the extends field.
6498
6499         * metadata-verify.c (mono_image_verify): Add a is_corlib.
6500
6501         * verify-internals.h: Same.
6502
6503         * pedump.c: Fix for mono_image_verify new signature.
6504
6505 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6506
6507         * metadata-verify.c (verify_typedef_table): Verify for some invalid
6508         flags combinations.
6509
6510 2009-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
6511
6512         * metadata-verify.c (verify_module_table): Ignore the generation field.
6513
6514 2009-04-15  Martin Baulig  <martin@ximian.com>
6515
6516         * debug-mono-symfile.c
6517         (mono_debug_symfile_lookup_location): Don't print a warning for
6518         unknown extended opcodes if they're within 0x40 and 0x7f.
6519
6520 2009-04-15  Zoltan Varga  <vargaz@gmail.com>
6521
6522         * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6523         invoke signatures returning an enum. Fixes #494847.
6524
6525 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6526
6527         * metadata-verify.c: Initial code to verify the typedef table.
6528
6529 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6530
6531         * verify.c (mono_method_verify): Don't fail if an unconditional branch
6532         with non empty stack happens before the beginning of a try block.
6533
6534         Fixes #494812.
6535
6536 2009-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
6537
6538         * metadata-verify.c: Verify typename and typenamespace fields of
6539         the typeref table.
6540
6541 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6542
6543         * metadata-verify.c: Initial code to verify the typeref table.
6544
6545 2009-04-13 Rodrigo Kumpera  <rkumpera@novell.com>
6546
6547         * verify.c (verify_delegate_compatibility): Fix error message.
6548
6549 2009-04-14  Sebastien Pouliot  <sebastien@ximian.com>
6550
6551         * security-core-clr.c: Fix typo
6552
6553 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6554
6555         * marshal.c (delegate_hash_table_add): Make delegate_target_locations 
6556         a MonoGHashTable to keep its values alive.
6557         (emit_marshal_boolean): Fix a warning.
6558
6559 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6560
6561         * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6562         not have any interface configured for IPv4/IPv6.
6563
6564 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6565
6566         * assembly.c: fix typo in error message.
6567
6568 2009-04-14  Zoltan Varga  <vargaz@gmail.com>
6569
6570         * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6571         allocating the location holding the this argument to prevent
6572         'too many root sets' errors.
6573
6574         * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6575         to mark fields as special static.
6576         (mono_field_static_get_value): Handle special static fields.
6577         (mono_field_static_set_value): Ditto.
6578
6579         * class-internals.h (struct _MonoClassField): Document this.
6580
6581 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6582
6583         * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6584           the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6585           case.  This will handle when managed code returns null to native code.
6586
6587         Code is contributed under MIT/X11 license.
6588
6589 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6590
6591         * object.c (build_imt_slots): Changing a free to a g_free to match
6592           the g_malloc0 in add_imt_builder_entry that allocated this memory.
6593
6594         Code is contributed under MIT/X11 license.
6595
6596 2009-04-13  Bill Holmes  <billholmes54@gmail.com>
6597
6598         * marshal.c (emit_marshal_boolean): Adding code to ensure that
6599           the correct TRUE value is passed through the marshaling layer.
6600
6601         Code is contributed under MIT/X11 license.
6602
6603 2009-04-13  Zoltan Varga  <vargaz@gmail.com>
6604
6605         * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6606         correctly. Fixes #492330.
6607         
6608         * marshal.c: Fix the embedding of object pointers into JITted code in
6609         the native-to-managed wrappers by allocating some GC tracked memory, and
6610         embedding the address of that.
6611
6612 2009-04-11  Zoltan Varga  <vargaz@gmail.com>
6613
6614         * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6615         pointers into the vtable.
6616
6617 2009-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
6618
6619         * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6620
6621         * verify.c (verify_ldftn_delegate): Improve error message.
6622
6623 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6624
6625         * reflection.c (my_mono_class_from_mono_type): Remove.
6626
6627 2009-04-09  Raja R Harinath  <harinath@hurrynot.org>
6628
6629         Prepare to reduce memory usage of owner-less generic parameters (1/n)
6630         * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6631         and constraints fields into ...
6632         (MonoGenericParamInfo): ... this.
6633         (mono_generic_param_info, mono_generic_container_get_param_info):
6634         New accessors.
6635         * class.c, debug-helpers.c, icall.c: Update to changes.
6636         * metadata.c, reflection.c, verify.c: Likewise.
6637
6638 2009-04-09  Zoltan Varga  <vargaz@gmail.com>
6639
6640         * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6641
6642         * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6643         
6644         * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6645         booleans with sbytes.
6646
6647 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6648
6649         * class.c (can_access_instantiation): Verify accesibility of element types
6650         for arrays and pointers.
6651
6652         * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6653
6654         * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6655
6656         Fixes #493068.
6657
6658 2009-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
6659
6660         * verify.c (do_invoke_method): Improve error messages.
6661
6662 2009-04-08  Bill Holmes  <billholmes54@gmail.com>
6663
6664         * verify.c:  Fixing the MSVC build.
6665
6666         Code is contributed under MIT/X11 license.
6667
6668 2009-04-08  Sebastien Pouliot  <sebastien@ximian.com>
6669
6670         * security-core-clr.c: Simplify get_reflection_caller not to call
6671         mono_method_get_last_managed (another stack walk) and adjust the
6672         callers to handle a (should not happen) NULL return value.
6673
6674 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6675
6676         Add accessors to some MonoGenericParam fields
6677         * class-internals.h (mono_generic_param_owner): New accessor.
6678         (mono_generic_param_num): Likewise.
6679         (mono_type_get_generic_param_owner): New helper.
6680         (mono_type_get_generic_param_num): New helper.
6681         * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6682
6683 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6684
6685         * class-internals.h (mono_generic_container_get_param): New wrapper.
6686         * class.c, icall.c, metadata.c, verify.c: Use it.
6687
6688 2009-04-08  Raja R Harinath  <harinath@hurrynot.org>
6689
6690         Fix gtest-252.cs
6691         * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6692         the standard case/loop.  In particular, don't complain about
6693         references to generic type definitions.
6694
6695 2009-04-07  Zoltan Varga  <vargaz@gmail.com>
6696
6697         * debug-helpers.c (dis_one): Decode string arguments.
6698
6699 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6700
6701         * pedump.c (dump_verify_info): Dump type name correctly.
6702
6703 2009-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
6704
6705         * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6706         are larger than code size.
6707
6708         This can happen in valid code if the try/catch block is not followed by any instruction
6709         and do a backward branch on the leave instruction.
6710
6711         Fixes #492494.
6712
6713 2009-04-06  Sebastien Pouliot  <sebastien@ximian.com>
6714
6715         * security-core-clr.c: Fix typo while comparing second method names
6716         in can_avoid_corlib_reflection_delegate_optimization
6717
6718 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6719
6720         * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6721
6722         Fixes #487738.
6723
6724 2009-04-06 Rodrigo Kumpera  <rkumpera@novell.com>
6725
6726         * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6727         a MVAR using a class context.
6728
6729         Fixes #490335.
6730
6731 2009-04-06  Zoltan Varga  <vargaz@gmail.com>
6732
6733         * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6734
6735         * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6736
6737         * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6738         functions supplied by the JIT for the SGEN GC.
6739
6740         * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6741         
6742 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6743
6744         monitor.c (mono_monitor_try_enter_internal):
6745         Added calls to profile monitor contentions.
6746         Also duplicated a small piece of code (the "get the monitor" logic)
6747         from the fast path to the slow path, and changed the relevant goto
6748         statements, so that monitor acquisition events can be emitted from the
6749         slow path (this is by Paolo Molaro).
6750
6751 2009-04-06  Massimiliano Mantione  <massi@ximian.com>
6752
6753         * profiler.c, profiler.h, profiler-private.h:
6754         Added support for profiling monitor contentions.
6755
6756 2009-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
6757
6758         * metadata-verify.c: Verify the modules table.
6759
6760 2009-04-02 Rodrigo Kumpera  <rkumpera@novell.com>
6761
6762         * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6763         using the context of the method been verifier and not of the method been called.
6764
6765         * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6766         safely inflate generic types. 
6767
6768 2009-04-02  Sebastien Pouliot  <sebastien@ximian.com>
6769
6770         * security-core-clr.c: Change the strategy for checking the 
6771         "reflection using delegates optimization" to avoid unneeded 
6772         attributes in multiple class libraries.
6773
6774 2009-04-02  Mark Probst  <mark.probst@gmail.com>
6775
6776         * sgen-gc.c: Remove object element in the disappearing link struct
6777         by storing the object pointer in the link.
6778
6779 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6780
6781         * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6782
6783 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6784
6785         * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6786
6787         * verify.c (mono_method_verify): Do proper bounds checking of exception
6788         clause ranges.
6789
6790 2009-03-31 Rodrigo Kumpera  <rkumpera@novell.com>
6791
6792         * loader.c (mono_field_from_token): Don't crash if the field parent could
6793         not be decoded.
6794
6795 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6796
6797         * sgen-gc.c: Execute critical finalizers after ordinary
6798         finalizers.
6799
6800         * class-internals.h, domain.c: Add CriticalFinalizerObject to
6801         mono_defaults.
6802
6803 2009-03-31 Jb Evain <jbevain@novell.com>
6804
6805         * verify.c (do_ldstr): don't check if a string is in the user strings
6806         heap if the current image is dynamic.
6807
6808 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6809
6810         * sgen-gc.c: Wait until the last finalizer has executed when
6811         returning from WaitForPendingFinalizers.
6812
6813 2009-03-31  Martin Baulig  <martin@ximian.com>
6814
6815         * mono-debug-debugger.h (MonoDebuggerEvent): Add
6816         `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6817         `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6818         (mono_debugger_event_create_appdomain): New function.
6819         (mono_debugger_event_unload_appdomain): New function.
6820
6821         * appdomain.c (mono_domain_create_appdomain_internal): Call
6822         mono_debugger_event_create_appdomain().
6823
6824 2009-03-31  Martin Baulig  <martin@ximian.com>
6825
6826         * mono-debug-debugger.c
6827         (mono_debugger_register_class_init_callback): Also register the
6828         class init callback if the class is already initialized to make
6829         things work with shadow copied assemblies.
6830
6831 2009-03-31  Sebastien Pouliot  <sebastien@ximian.com>
6832
6833         * security-core-clr.c
6834         (mono_security_core_clr_ensure_reflection_access_field): Let 
6835         critical code access the field (just like we do for methods). Use
6836         check_field_access helper.
6837         (mono_security_core_clr_ensure_reflection_access_method): Use 
6838         check_field_access helper.
6839
6840 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6841
6842         * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6843         call the run-finalize function directly.
6844
6845         * gc.c, gc-internal.h: Make run_finalize() non-static.
6846
6847 2009-03-31  Mark Probst  <mark.probst@gmail.com>
6848
6849         * sgen-gc.c: Use a separate struct for disappearing links.
6850
6851 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6852
6853         * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6854         * MaxIOVectorLength enabled, just ignore them.
6855         Fixes bug #349688.
6856
6857 2009-03-30 Rodrigo Kumpera  <rkumpera@novell.com>
6858
6859         * metadata-verify.c: Fix eglib build.
6860
6861 2009-03-30  Zoltan Varga  <vargaz@gmail.com>
6862
6863         * threads-types.h: Fix the win32 build.
6864
6865 2009-03-28  Sebastien Pouliot  <sebastien@ximian.com>
6866
6867         * class.c: move coreclr inheritance/override checks to 
6868         security-core.clr.c
6869         * security-core.clr.c|h: add code from class.c with additional
6870         documentation. Fix override check when the method is not critical.
6871
6872 2009-03-28  Zoltan Varga  <vargaz@gmail.com>
6873
6874         * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6875         (match_class): Ditto.
6876
6877 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6878
6879         * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6880
6881         * metadata-verify.c: Implement table layout row size calculation. Verify
6882         the total size of the tables.
6883
6884 2009-03-27 Rodrigo Kumpera  <rkumpera@novell.com>
6885
6886         * metadata-verify.c: Verify heap sizes and size to decode row counts. 
6887
6888 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6889
6890         * appdomain.c:
6891         * console-io.[ch]: added new mono_console_init() to make sure that
6892         file descriptors 0, 1 and 2 are opened.
6893         Bug #489019 fixed.
6894
6895 2009-03-27  Sebastien Pouliot  <sebastien@ximian.com> 
6896
6897         * appdomain.h: Export a new callback type and a new function to
6898         set this callback. This allow a mono host to provide it's own
6899         definition for "platform code".
6900         * metadata-internals.h: Add a core_clr_platform_code flag on 
6901         _MonoImage to (cache and) know if it is representing platform 
6902         code.
6903         * image.c (do_mono_image_open): Set core_clr_platform_code flag 
6904         on platform code images.
6905         * security-core-clr.c|h 
6906         (mono_security_set_core_clr_platform_callback): Allow the host
6907         to provide it's own platform check definition.
6908         (mono_security_core_clr_determine_platform_image): Detect if an 
6909         image is platform code (using the specified callback).
6910         (mono_security_core_clr_is_platform_image): Return cached value 
6911         for platform code.
6912
6913 2009-03-27  Zoltan Varga  <vargaz@gmail.com>
6914
6915         * threads.c (mono_create_thread): New helper function to wrap CreateThread
6916         which has different parameter types for the 'tid' argument in windows and
6917         the io-layer.
6918
6919         * appdomain.c attach.c threads.c: Use the new helper.
6920
6921 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6922
6923         * metadata-verify.c: Verify valid table bits.
6924
6925 2009-03-26 Rodrigo Kumpera  <rkumpera@novell.com>
6926
6927         * metadata-verify.c (verify_metadata_header): Store size in the size field.
6928
6929         * metadata-verify.c: Add initial table schema verification.
6930
6931 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6932
6933         * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6934         obtain the refclass argument needed by mono_param_get_objects (). Fixes
6935         #488383.
6936
6937         * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6938
6939         * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6940
6941 2009-03-26  Sebastien Pouliot  <sebastien@ximian.com>
6942
6943         * security-core-clr.c: Add/update documentation
6944
6945 2009-03-26  Zoltan Varga  <vargaz@gmail.com>
6946
6947         * marshal.c (emit_marshal_object): Generate code to throw an exception
6948         instead of throwing it. Fixes #488670.
6949
6950 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com>
6951
6952         * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6953         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6954         an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6955         and add a call to mono_security_core_clr_ensure_delegate_creation
6956         to do the extra checks required by CoreCLR.
6957         * security-core-clr.c|h: Add function to check delegate creation,
6958         both in the binding and accessibility, under CoreCLR.
6959
6960 2009-03-25  Sebastien Pouliot  <sebastien@ximian.com> 
6961
6962         * reflection.c (mono_reflection_create_dynamic_method): when 
6963         coreclr is enabled make sure that every resolved object are
6964         checked (e.g. field and method access).
6965         * security-core-clr.c|h: Add function to check objects resolved
6966         when a dynamic method is created.
6967
6968 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6969
6970         * metadata-verify.c: Cache directory rva translations.
6971
6972         * metadata-verify.c: Add cli-header and streams verification.
6973
6974 2009-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
6975
6976         * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
6977         the wrong offset (8 instead of 6).
6978
6979 2009-03-23  Zoltan Varga  <vargaz@gmail.com>
6980
6981         * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
6982         methods, return the native function address itself. Fixes
6983         #487758.
6984
6985 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
6986
6987         * console-io.c: some of the values for control characters might not be
6988         present.
6989
6990 2009-03-21  Sebastien Pouliot  <sebastien@ximian.com>
6991
6992         * exception.c|h: Add helpers to create [Field|Method]AccessException
6993         * icall.c: Add required coreclr check calls for field reflection.
6994         Move the existing (method) check logic into security-core-clr.c
6995         * security-core-clr.c: Add functions to check if the access of a
6996         field or method is allowed when reflecting under coreclr. This is
6997         mostly done using a stack walk to find the "real" caller: i.e. the
6998         code that is calling the reflection
6999
7000 2009-03-20  Zoltan Varga  <vargaz@gmail.com>
7001
7002         * gc-internal.h: Change location of gc_wrapper.h
7003
7004 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com> 
7005
7006         * class.c: Simplification to coreclr checks for overrides that
7007         makes it easier to set breakpoints.
7008
7009 2009-03-20  Sebastien Pouliot  <sebastien@ximian.com>
7010
7011         * security-core-clr.c|h: (mono_security_core_clr_class_level, 
7012         mono_security_core_clr_method_level): Avoid potential 
7013         MonoCustomAttrInfo allocation for transparent assemblies (e.g. 
7014         user/application code) and make it easier to set breakpoints
7015
7016 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7017
7018         * metadata-verify.c: Reject cli header tables that mono don't handle.
7019
7020 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7021
7022         * pedump.c: Fix CLI header dumping.
7023
7024 2009-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
7025
7026         * metadata-verify.c: More CLI header verification.
7027
7028 2009-03-19  Zoltan Varga  <vargaz@gmail.com>
7029
7030         * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7031
7032 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7033
7034         * metadata-verify.c: Initial verification of the CLI header.
7035
7036 2009-03-18 Rodrigo Kumpera  <rkumpera@novell.com>
7037
7038         * metadata-verify.c (verify_resources_table): Fix verification of zero
7039         sized resource section and id entries count.
7040
7041 2009-03-18  Zoltan Varga  <vargaz@gmail.com>
7042
7043         * icall.c: Handle user types in many Type icalls. Fixes #486303.
7044
7045 2009-03-17  Jb Evain  <jbevain@novell.com>
7046
7047         * profiler.c: call mono_gc_base_init from mono_profiler_load.
7048
7049 2009-03-17  Zoltan Varga  <vargaz@gmail.com>
7050
7051         * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7052         (mono_gc_make_descr_for_array): Ditto.
7053
7054 2009-03-17  Sebastien Pouliot  <sebastien@ximian.com>
7055
7056         * verify.c (mono_verifier_is_class_full_trust): Add support for
7057         CoreCLR security mode where trusted assemblies are defined as
7058         "platform code".
7059
7060 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7061
7062         * metadata-verify.c: Add minimal PECOFF resource verification.
7063
7064 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7065
7066         * metadata-verify.c: Be less restrictive with some coff fields.
7067
7068 2009-03-16 Rodrigo Kumpera  <rkumpera@novell.com>
7069
7070         * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7071         params as boxed values on stack. Fixes #485706.
7072
7073 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7074
7075         * console-io.c: the termios values may vary in different flavors of unix.
7076
7077 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7078
7079         * console-io.[ch]: return the entire set of control characters when
7080         initializing the terminal.
7081         * appdomain.c: bump corlib version.
7082
7083 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7084
7085         * mono-perfcounters.c: added support for in-process custom
7086         performance counters.
7087
7088 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7089
7090         * metadata-verify.c: Small cleanup and add comment for IAT directory entry. 
7091
7092 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7093
7094         * metadata-verify.c: Verify the data pointed by the import table. 
7095
7096 2009-03-13 Rodrigo Kumpera  <rkumpera@novell.com>
7097
7098         * metadata-verify.c (load_data_directories): Store data
7099         directory contents.
7100
7101         * metadata-verify.c: Verify the import table. 
7102
7103 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7104
7105         * metadata-verify.c: Verify data directories.
7106
7107 2009-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
7108
7109         * metadata-verify.c: Check section header flags.
7110
7111 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7112
7113         * appdomain.c: if the assembly name is a shadow-copied file, return
7114         TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7115         in mono_make_shadow_copy.
7116         * icall.c: if the assembly name is a shadow-copied file, replace it
7117         with the original assembly path.
7118
7119         Bug #484244 fixed. NUnit tests for corlib can be run without
7120         --noshadow now.
7121
7122 2009-03-12  Zoltan Varga  <vargaz@gmail.com>
7123
7124         * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7125         entries when the table is reallocated.
7126
7127         * icall.c: Allocate the memory used by the mono_ptr_array macros using
7128         mono_gc_alloc_fixed () since it contains GC refs.
7129
7130 2009-03-10  Zoltan Varga  <vargaz@gmail.com>
7131
7132         * reflection.c (ensure_complete_type): New helper function to call
7133         type resolve handlers for unfinished dynamic types.
7134         (resolve_object): Call it for MonoClassFields. Fixes #483852.
7135
7136 2009-03-09  Zoltan Varga  <vargaz@gmail.com>
7137
7138         * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7139         #483247.
7140
7141 2009-03-08 Rodrigo Kumpera  <rkumpera@novell.com>
7142
7143         * appdomain.c (get_shadow_assembly_location): Fix memleak.
7144
7145 2009-03-08  Zoltan Varga  <vargaz@gmail.com>
7146
7147         * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7148         between GCHandles of type WeakTrackResurrection and the objects they
7149         point to.
7150
7151         * gc.c: Partly implement the sematics of GCHandles of type 
7152         WeakTrackResurrection: these handles should only be cleared after the
7153         finalizer of the object they are pointing to has ran.
7154
7155 2009-03-06  Mark Probst  <mark.probst@gmail.com>
7156
7157         * icall.c: Partially revert r126631 because using the jump
7158         trampolines for generic shared methods makes it superfluous.
7159
7160 2009-03-06  Zoltan Varga  <vargaz@gmail.com>
7161
7162         * threads.c (handle_store): Create the 'threads' hash table with the proper
7163         MONO_HASH_VALUE_GC type.
7164
7165 2009-03-05  Zoltan Varga  <vargaz@gmail.com>
7166
7167         * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7168         FIRST_GC_TRACKED.
7169
7170         * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7171         and LAST_GC_TRACKED as a GC root.
7172
7173         * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7174
7175         * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7176         the static data even if it consists of 1 reference.
7177
7178         * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7179         if there is a GC descriptor.
7180
7181         * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7182         instead of through the GC since they contain no object references.
7183
7184 2009-03-05  Mark Probst  <mark.probst@gmail.com>
7185
7186         * generic-sharing.c (instantiate_other_info): Always return a jump
7187         trampoline for method code.
7188
7189 2009-03-05  Marek Habersack  <mhabersack@novell.com>
7190
7191         * culture-info-tables.h: generated to include the en-tt culture.
7192
7193 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7194
7195         * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7196         capture the thread context.
7197
7198         * object.c (mono_async_result_new): Cache the invoke wrappers to
7199         ExecutionContext::Capture.
7200
7201 2009-03-04 Rodrigo Kumpera  <rkumpera@novell.com>
7202
7203         * marshal.h: Add a prototype for what mono_compile_method returns
7204         for invoke wrappers.
7205
7206         * gc.c: Use the new prototype declaration.
7207
7208 2009-03-04  Geoff Norton  <gnorton@novell.com>
7209
7210         * boehm-gc.c: Add some MONO_LOG tracing for the GC
7211         * gc-internal.h:
7212         * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7213
7214 2009-03-04  Martin Baulig  <martin@ximian.com>
7215
7216         * mono-debug.h
7217         (mono_debugger_runtime_invoke): Removed.
7218
7219         * mono-debug-debugger.c
7220         (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7221
7222 2009-03-02  Martin Baulig  <martin@ximian.com>
7223
7224         * mono-debug.h
7225         (mono_debugger_unhandled_exception): Removed.
7226         (mono_debugger_handle_exception): Removed.
7227         (mono_debugger_throw_exception): Removed.
7228
7229         * mono-debug.c
7230         (mono_debug_debugger_version): Bump to 5.
7231
7232         * mono-debug-debugger.c: Moved the exception handling code to
7233         ../mini/debug-mini.c
7234
7235 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7236
7237         * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7238         finalize_objects_hash.
7239
7240         * gc.c: Use the separate lock to access the finalize_objects_hash field.
7241         
7242         * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7243         field.
7244
7245         * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7246         cache.
7247
7248         * image.c (mono_image_close): Free it.
7249         
7250         * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7251         allowing a creation of a wrapper which invokes its method using a CALLVIRT
7252         on the this argument.
7253
7254         * gc.c (run_finalize): Optimize the calling of the finalizers.
7255
7256 2009-03-03  Martin Baulig  <martin@ximian.com>
7257
7258         * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7259         of the `MonoGenericInst' changes.
7260
7261 2009-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
7262
7263         * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7264         mono_array_class_get_cached to reduce locking contention. Extract
7265         a domain var.
7266
7267         * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7268         intermediary managed arrays. Use caching version of mono_array_new
7269         to allocate the result array.
7270
7271         * icall.c (ves_icall_Type_GetEvents_internal): Same.    
7272
7273         * icall.c (ves_icall_Type_GetNestedTypes): Same.        
7274
7275         * locales.c (create_names_array_idx):  Use mono_array_new_cached
7276         to reduce locking contention.
7277
7278 2009-03-03  Zoltan Varga  <vargaz@gmail.com>
7279                 
7280         * object.c (mono_method_add_generic_virtual_invocation): Put back the
7281         thunk builder code for the non-interface case.
7282
7283 2009-03-02  Zoltan Varga  <vargaz@gmail.com>
7284
7285         * object.c (get_generic_virtual_entries): New helper function to collect
7286         the virtual generic method instances which need to be added to an IMT
7287         thunk.
7288         (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7289         Instead of creating a new IMT thunk, reset the vtable slot to the
7290         trampoline, the thunk will be created the next time the trampoline is called.
7291         (build_imt_slots): Add support for virtual generic methods in interfaces by
7292         adding to the IMT thunk all the methods registered using 
7293         mono_method_add_generic_virtual_invocation ().
7294
7295         * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7296         (struct _MonoIMTCheckItem): Ditto.
7297
7298         * object.c (mono_method_add_generic_virtual_invocation): Take a
7299         MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7300         the IMT thunk to include all items.
7301         
7302         * object.c (mono_class_create_runtime_vtable): Add a missing
7303         mono_loader_unlock ().
7304
7305 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7306
7307         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7308
7309         * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7310
7311 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7312
7313         * object-internals.h: Rename _MonoReflectionEvent to
7314         MonoReflectionMonoEvent so it reflects the right managed type.
7315         Add a MonoReflectionEvent that correctly represents System.EventInfo.
7316
7317         * icall.c:
7318         * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7319         type.
7320
7321 2009-03-02 Rodrigo Kumpera  <rkumpera@novell.com>
7322
7323         * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7324         intermediary managed arrays. Use caching version of mono_array_new
7325         to allocate the result array.
7326
7327 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7328
7329         * reflection.c: Use cached version of mono_array_new alongside
7330         the mono_reflection_get_custom_attrs_by_type call path.
7331
7332 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7333
7334         * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7335         intermediary managed arrays. Use caching version of mono_array_new
7336         to allocate the result array.
7337
7338         * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7339
7340 2009-03-01 Rodrigo Kumpera  <rkumpera@novell.com>
7341
7342         * icall.c: Add small implementation of a growable stack bound array.
7343
7344         * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7345
7346         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7347         intermediary managed arrays. Use caching version of mono_array_new
7348         to allocate the result array.
7349
7350 2009-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
7351
7352         * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7353         helps Enum::CompareTo to be implemented without reboxing all enums
7354         to their underlying type.
7355 2009-02-27  Zoltan Varga  <vargaz@gmail.com>
7356
7357         * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7358         since it acquires a global lock leading to scalability problems.
7359
7360         * profiler.c: Make the stat profiler work with multiple appdomains, this
7361         currently only works when no appdomains are unloaded.
7362
7363 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7364
7365         * appdomain.c: make the check to avoid copying when the assembly is
7366         already shadow copied actually work.
7367
7368 2009-02-26  Zoltan Varga  <vargaz@gmail.com>
7369
7370         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7371
7372         * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7373         changes to the managed side.
7374
7375 2009-02-25  Zoltan Varga  <vargaz@gmail.com>
7376
7377         * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7378         classes + a separate lock for it, as it is used frequently at runtime, not
7379         just during metadata loading/JIT compilation.
7380
7381         * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7382         for szarrays.
7383         
7384         * object-internals.h (mono_class_from_name_cached): New macro to cache
7385         the results of the lookup locally without having to declare a static
7386         variable to hold it.
7387         (mono_class_get_field_from_name_cached): Ditto.
7388         (mono_array_class_get_cached): Ditto.
7389
7390         * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7391         the new macros.
7392         
7393         * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7394         slower search in metadata.
7395
7396         * pedump.c: Fix a warning.
7397
7398 2009-02-23  Zoltan Varga  <vargaz@gmail.com>
7399
7400         * reflection.c (encode_locals): Add checks for user types.
7401         (method_encode_clauses): Ditto.
7402         (method_encode_code): Ditto.
7403         (mono_image_create_token): Ditto.
7404
7405         * object-internals.h: Change the type of more fields from MonoReflectionType*
7406         to MonoObject*.
7407
7408 2009-02-22  Zoltan Varga  <vargaz@gmail.com>
7409
7410         * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7411         the a thread does not suspend within 100ms.
7412
7413         * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7414         in addition to StopRequested as well.
7415
7416         * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7417
7418         * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7419         search the method_hash before inserting a new entry, to avoid crashes when
7420         the same method is inserted multiple times, causing the old 
7421         MonoDebugMethodInfo structure to be freed by the value dtor function.
7422
7423 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7424
7425         * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7426         SO_EXLUSIVEADDRUSE where available.
7427
7428 2009-02-21  Zoltan Varga  <vargaz@gmail.com>
7429
7430         * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7431         runtime invoke wrappers, this time it is string ctor wrappers, which
7432         pass a dummy string as 'this' instead of their obj argument. Fixes
7433         #478473.
7434
7435 2009-02-21  Jb Evain  <jbevain@novell.com>
7436
7437         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7438         only get create_culture once.
7439
7440 2009-02-20  Zoltan Varga  <vargaz@gmail.com>
7441
7442         * reflection.c (mono_reflection_setup_internal_class): Move the user type
7443         check before the locking.
7444         
7445         * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7446         (mono_reflection_create_runtime_class): Ditto.
7447         (mono_reflection_sighelper_get_signature_local): Ditto.
7448         (mono_reflection_sighelper_get_signature_field): Ditto.
7449
7450         * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7451         is a System.MonoType object or similar.
7452         (monotype_cast): New helper function to cast a MonoObject to a 
7453         MonoReflectionType object.
7454
7455         * object-internals.h: Change MonoReflectionType* members in structures to
7456         MonoObject* members to force the usage of the monotype_cast () function.
7457
7458         * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7459         structures/arrays. This causes us to assert instead of crashing when 
7460         instances of user defined subclasses of System.Type are encountered.
7461
7462 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7463
7464         * cil-coff.h:
7465         * icall-def.h:
7466         * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7467         win32 resource loaded from a PE file.
7468
7469         * image.c: fix mono_image_lookup_resource.
7470
7471 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7472
7473         * icall-def.h:
7474         * threads-types.h:
7475         * threads.c: added internal call for WaitHandle.SignalAndWait.
7476
7477 2009-02-19  Bill Holmes  <billholmes54@gmail.com>
7478
7479         * cominterop.c : Adding cominterop_type_from_handle and 
7480           registering it as an icall.  Replacing all references
7481           to type_from_handle.
7482
7483         Code is contributed under MIT/X11 license.
7484
7485 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7486
7487         * Makefile.am: Add lock-tracer.h and lock-trace.c.
7488
7489         * appdomain.c: Call the tracer init function.
7490
7491         * domain-internals.h: Enable the tracer for the domain locks.
7492
7493         * image.c: Enable the tracer for image locks.
7494
7495         * loader.c: Enable the trace for the loader lock.
7496
7497         * lock-tracer.h:
7498         * lock-tracer.c: Initial implementation of the lock trace utility.
7499         The tracer requires a compile time define to be enabled and a env var
7500         to be enabled at runtime.
7501
7502 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7503
7504         * domain.c (mono_domain_code_foreach): Improve documentation.
7505
7506 2009-02-19 Rodrigo Kumpera  <rkumpera@novell.com>
7507
7508         * appdomain.c:
7509         * generic-sharing.c:
7510         * object.c:
7511         * reflection.c:  Adjust locking order to the new semantics where the loader lock
7512         comes first.
7513
7514 2009-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
7515
7516         * domain.c: Add mono_domain_code_* functions that perform locking
7517         around the domain codeman.
7518
7519         * domain-internals.h: Export those functions.
7520
7521         * object.c: Use new functions instead of acquiring the domain lock.
7522
7523 2009-02-19  Zoltan Varga  <vargaz@gmail.com>
7524
7525         * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7526         delegate. Fixes #477396.
7527
7528 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7529
7530         * reflection.c (create_custom_attr): Get rid of alloca.
7531
7532 2009-02-18  Bill Holmes  <billholmes54@gmail.com>
7533
7534         * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7535           Adding exception handling for all CCW calls.
7536
7537         Code is contributed under MIT/X11 license.
7538
7539 2009-02-18  Zoltan Varga  <vargaz@gmail.com>
7540
7541         * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7542
7543         * marshal.c (emit_marshal_boolean): Add null checks to the new 
7544         native->managed marshalling code. Fixes #476247.
7545
7546 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7547
7548         * class.c (mono_class_get_vtable_entry): Move the addition of
7549         static rgctx invoke wrappers for vtable methods here, this simplifies
7550         a lot of code and causes fewer rgctx wrappers to be created.
7551
7552         * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7553         name of the statistics to begin with an uppercase.
7554
7555 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7556
7557         * reflection.c: Revert previous change as it breaks the build.
7558         
7559 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7560
7561         * verify.c: Properly handle SZARRAY element type.
7562
7563         Fixes #474271.
7564
7565 2009-02-17 Rodrigo Kumpera  <rkumpera@novell.com>
7566
7567         * reflection.c (mono_image_create_method_token): Correctly encode
7568         MethodDef MemberRefParent token.
7569
7570         Fixes #472845.
7571
7572 2009-02-17  Zoltan Varga  <vargaz@gmail.com>
7573
7574         * image.c (mono_image_close): Delete the critical section before
7575         freeing the memory holding it.
7576
7577 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7578
7579         * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7580         Fixes #476257.
7581
7582 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7583
7584         * pedump.c (main): Call mono_marshal_init so pedump
7585         doesn't crash.
7586
7587 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7588
7589         * loader.c (method_from_memberref): Properly fix #474271 and
7590         don't break the runtime bad.
7591
7592 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7593
7594         * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7595         (mono_domain_alloc0): Ditto.
7596
7597 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7598
7599         * loader.c (method_from_memberref): Don't abort if the array
7600         method is not found. A regular loader failure is more informative
7601         and correct.
7602
7603         Fixes #474271.
7604
7605 2009-02-16 Rodrigo Kumpera  <rkumpera@novell.com>
7606
7607         *loader.c: Guard MonoImage::method_cache/methodref_cache
7608         using the image lock instead of the loader lock.
7609
7610         * metadata.h: Add comments about which fields are protected by
7611         the image lock.
7612
7613 2009-02-16  Zoltan Varga  <vargaz@gmail.com>
7614
7615         * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7616
7617         * generic-sharing.c (mono_method_construct_object_context): Remove the
7618         wrapper_type == NONE assert, it is not needed.
7619
7620 2009-02-15  Zoltan Varga  <vargaz@gmail.com>
7621
7622         * reflection.c (clear_cached_object): New helper function.
7623         (mono_method_clear_object): New function to clear the cached reflection
7624         objects for a dynamic method.
7625
7626         * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7627         Partly fixes # 463323.
7628         
7629 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7630
7631         * class.c:
7632         * loader.c:
7633         * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7634
7635 2009-02-14 Rodrigo Kumpera  <rkumpera@novell.com>
7636
7637         * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7638         take the image lock instead of the loader lock.
7639
7640         * metadata-internals.h: Export new functions.
7641
7642 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7643
7644         * domain.c (app_config_parse): Remove another use of stat that is
7645         not necessary as g_file_get_contents already does the presence
7646         check. 
7647
7648 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7649
7650         * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7651
7652         * marshal.c: Move the bstr handling code to cominterop.c.
7653
7654         * marshal.c: Remove some COM interop code missed previously.
7655
7656 2009-02-12  Miguel de Icaza  <miguel@novell.com>
7657
7658         More Paolo patches from the Wii port:
7659         
7660         * security.c: Remove ves_icall_System_Environment_get_UserName
7661         from here.
7662
7663         * icall.c: And put ves_icall_System_Environment_get_UserName
7664         here. 
7665
7666         * appdomain.c (mono_set_private_bin_path_from_config): Remove
7667         redundant call to stat that was only used to test for the file
7668         existence.   Patch from Paolo.
7669
7670         * gc.c (run_finalize): If COM is disabled, do not link in
7671         mono_marshal_free_ccw.
7672
7673         * generic-sharing.c: Use alloca.h here as well.
7674
7675 2009-02-13 Rodrigo Kumpera  <rkumpera@novell.com>
7676
7677         * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7678
7679 2009-02-13  Zoltan Varga  <vargaz@gmail.com>
7680
7681         * cominterop.c cominterop.h: New files.
7682
7683         * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7684         function/typedefs which are needed by cominterop.c global.
7685
7686 2009-02-12  Mark Probst  <mark.probst@gmail.com>
7687
7688         * generic-sharing.c: Don't take the loader lock to guard image
7689         mempool allocs.
7690
7691 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7692
7693         * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7694         called without the loader lock which is required to guard MonoImage:tokens.
7695
7696 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7697
7698         * class.c:
7699         * metadata.c:
7700         * method-builder.c:
7701         * marshal.c:
7702         * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7703
7704 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7705
7706         * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7707         Rework the code to use regular mono_image_alloc/0.
7708
7709         * loader.c: Rework the code to use regular mono_image_alloc/0.
7710
7711         * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7712
7713 2009-02-12  Bill Holmes  <billholmes54@gmail.com>
7714
7715         * object-internals.h : Fixing a typo in the 
7716           MonoReflectionComVisibleAttribute struct.
7717
7718         * marshal.c (cominterop_com_visible): Check the implemented 
7719           interfaces for ComImport.
7720
7721         * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls 
7722           assume that bools should be treated as VARIANTBOOLs.
7723
7724         * marshal.c (emit_marshal_boolean): Adding cases for 
7725           MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7726
7727         * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to 
7728           emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7729
7730         * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7731           should be treated as VARIANTBOOLs.    
7732
7733         Code is contributed under MIT/X11 license.
7734
7735 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7736
7737         * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7738         allocation with the image lock.
7739
7740 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7741
7742         This patch is the last of a series to remove explicit reference of MonoImage::mempool
7743         and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7744
7745         * object.c: Add mono_string_to_utf8_image.
7746
7747         * object-internals.h: Export mono_string_to_utf8_image.
7748
7749         * reflection.c: Rework all explicit references to the the image mempool to go thought
7750         the mono_image_alloc set of functions.
7751
7752 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7753
7754         This patch is the third of a series to remove explicit reference of MonoImage::mempool
7755         and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7756         and generics-sharing.c.
7757
7758         * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7759         as first argument. Note that this function remains broken as it doesn't perform locking around the
7760         mempool allocation.
7761
7762         * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7763
7764         * image.c: Add g_slist_append_image.
7765
7766         * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7767         the supplied image for allocation. Move code into mono_metadata_field_info_full.
7768
7769         * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7770         Fix all related code to do the same.
7771
7772         * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7773
7774         * metadata-internals.h: Fix the signatures.
7775
7776 2009-02-12 Rodrigo Kumpera  <rkumpera@novell.com>
7777
7778         This patch is the second of a series to remove explicit reference of MonoImage::mempool
7779         and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7780         and similar to work using MonoImage.
7781
7782         * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7783         MonoMemPool.
7784
7785         * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7786
7787         * class.c (mono_metadata_signature_deep_dup): Same.
7788
7789         * class.c (inflate_generic_type): Same.
7790
7791         * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7792
7793         * metadata.c (mono_metadata_signature_dup_full): Same.
7794
7795         * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from 
7796         mono_metadata_signature_dup_full.
7797
7798         * metadata.c (mono_metadata_type_dup): Same.
7799
7800         * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7801
7802         * reflection.c: Same.
7803
7804         * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7805
7806         * metadata-internals.h: Fix the signatures.
7807
7808         * class-internals.h: Same.
7809
7810 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7811
7812         This patch is the first of a series to remove explicit reference of MonoImage::mempool
7813         and use mono_image_alloc set of functions instead. 
7814
7815         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7816         Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7817         of a MonoMemPool.
7818
7819         * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7820
7821         * class.c (g_list_prepend_mempool): Removed.
7822
7823         * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7824
7825         * image.c: Add g_list_prepend_image.
7826
7827         * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7828
7829         * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7830
7831
7832 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7833
7834         * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7835         mono_image_unlock.
7836
7837         * image.c (mono_image_init): Init the lock field.
7838  
7839         * image.c (mono_image_init): Cleanup the lock field.
7840
7841         * image.c: Add mono_image_(un)lock functions.
7842
7843 2009-02-11  Mark Probst  <mark.probst@gmail.com>
7844
7845         * class.c, class-internals.h: mono_method_get_context_general()
7846         combines the functionality of mono_method_get_context() and
7847         mini_method_get_context().
7848
7849         * generic-sharing.c, domain-internals.h:
7850         mono_method_construct_object_context() and
7851         mono_domain_lookup_shared_generic() moved from mini.
7852
7853         * icall.c (ves_icall_InternalInvoke): Handle the case where the
7854         method doesn't have the correct instantiation because it's shared
7855         generic code.  Fixes #473999.
7856
7857 2009-02-11  Zoltan Varga  <vargaz@gmail.com>
7858
7859         * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7860
7861         * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7862         
7863 2009-02-11 Rodrigo Kumpera  <rkumpera@novell.com>
7864
7865         * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7866
7867         * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7868
7869         * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7870         and recheck the cache for dups after it.
7871
7872         * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7873
7874         Fixes one of the deadlocks found in #473150.
7875
7876 2009-02-11  Bill Holmes  <billholmes54@gmail.com>
7877
7878         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7879           For Win32, add additional break conditions for accept.
7880
7881         Code is contributed under MIT/X11 license.
7882
7883 2009-02-10  Zoltan Varga  <vargaz@gmail.com>
7884
7885         * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7886         lazily initialize the native wrapper cache.
7887         (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7888         cache, since they are different from the normal wrappers.
7889
7890         * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7891
7892         * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7893         AOT compiled native wrappers.
7894
7895 2009-02-09  Geoff Norton  <gnorton@novell.com>
7896
7897         * appdomain.h:
7898         * security-core-clr.c: Allow enabling core-clr from the embedding
7899         API.
7900
7901 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7902
7903         * socket-io.c: when requesting all the local ips, if there are no
7904         interfaces up and running, MS returns 127.0.0.1.
7905
7906 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7907
7908         * mono-perfcounters-def.h: processor time is an inverse time.
7909         Fixes bug #468625.
7910
7911 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7912
7913         * socket-io.c: an empty host name returns the list of local IPs.
7914         Fixes bug #386637 part 1/2.
7915
7916 2009-02-07  Zoltan Varga  <vargaz@gmail.com>
7917
7918         * verify.c (mono_class_interface_implements_interface): Call
7919         mono_class_setup_interfaces ().
7920         (merge_stacks): Ditto.
7921
7922 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7923
7924         * class.c (mono_class_setup_interfaces): New function to lazily initalize
7925         klass->interfaces.
7926         (mono_generic_class_get_class): Don't initalize klass->interfaces.
7927         (mono_generic_class_get_class): Ditto.
7928
7929 2009-02-06  U-QUACK\miguel  <miguel@quack>
7930
7931         * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7932         they live in security.c
7933
7934         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7935         another bit from Paolo's code.
7936
7937 2009-02-06  Zoltan Varga  <vargaz@gmail.com>
7938
7939         * object.c (build_imt_slots): Add a small optimization to avoid inflating
7940         methods which will be discarded by add_imt_builder_entry ().
7941
7942         * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7943         need to be boxed.
7944
7945         * loader.c: Add a statistics for the size of the memberref signature cache.
7946         
7947         * loader.c (find_cached_memberref_sig): New helper function.
7948         (cache_memberref_sig): Ditto.
7949
7950         * loader.c: Cache the result of parsing memberref signatures, since otherwise
7951         they will be parsed again for every generic instantiation, leading to unbounded
7952         memory growth.
7953
7954 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7955
7956         * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7957         parameters of generic methods.
7958
7959         * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7960         after the original method is copied to the inflated method.
7961         (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7962
7963         * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7964         field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
7965
7966         * class.c metadata.c: Update after the changes above.
7967
7968 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7969
7970         * metadata-verify.c: Simplified error handling and added
7971         section table validation.
7972
7973 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
7974
7975         * class-internals.h (MonoClassExt): New structure containing rarely used
7976         fields of MonoClass.
7977         (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
7978         through a new 'ext' field.
7979
7980         * class.c (mono_class_alloc_ext): New helper function to allocate 
7981         class->ext.
7982
7983         * class.c metadata.c reflection.c: Update after MonoClass structure changes.
7984
7985 2009-02-05  Mark Probst  <mark.probst@gmail.com>
7986
7987         * object.c (mono_object_get_virtual_method): Properly inflate
7988         generic methods.  Fixes #472692.
7989
7990 2009-02-05 Rodrigo Kumpera  <rkumpera@novell.com>
7991
7992         * class.c (mono_class_create_from_typedef): The CLR supports SystemF
7993         recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
7994         for the parent type, the created type must be ready to be used on a generic
7995         instantiation.
7996         We fill this_arg/byval_arg if the parent is a generic instance to make sure
7997         we won't have duplicated entries in generic_inst_cache.
7998
7999         Fixes #469553.
8000
8001 2009-02-05  Miguel De Icaza  <miguel@novell.com>
8002
8003         * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8004         replace with plain BSD per the comments on the bug MONO77637.
8005
8006 2009-02-05  Zoltan Varga  <vargaz@gmail.com>
8007
8008         * class.c (mono_class_get_generic_class): New accessor function.
8009         (mono_class_get_generic_container): Ditto.
8010
8011         * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8012         fields, similar to the ones in MonoMethod.
8013
8014         * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8015         (mono_class_create_from_typedef): Set klass->is_generic if needed.
8016
8017         * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8018         
8019         * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8020         the same information as element_class->byval_arg.
8021
8022         * class.c reflection.c: Remove references to class->byval_arg.
8023
8024         * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing 
8025         klass->enum_basetype directly.
8026
8027         * verify.c metadata.c object.c icall.c reflection.c: Use 
8028         mono_class_enum_basetype () instead of accessing klass->enum_basetype 
8029         directly.
8030
8031 2009-02-04  Miguel de Icaza  <miguel@novell.com>
8032
8033         * icall-def.h: Remove internal calls for sockets when
8034         DISABLE_SOCKET is defined, file system writing features when the
8035         OS only support reading and not writing data and Policy support if
8036         the Policy is disabled.
8037         
8038         * image.c (do_mono_image_open): Apply Paolo's patches for using
8039         mono_file_map_ APIs here.
8040
8041         * assembly.c: Add support for platforms to avoid prefix
8042         auto-detection. 
8043
8044 2009-02-04  Zoltan Varga  <vargaz@gmail.com>
8045
8046         * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8047         warning.
8048
8049         * class.c (mono_class_inflate_generic_class): New helper function.
8050
8051         * class.c: Use mono_class_inflate_generic_class in a few places. Add
8052         statistics for inflated methods/classes.
8053
8054         * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8055
8056         * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8057         the call is made from Delegate.CreateDelegate () for the invoke method of
8058         a delegate.
8059
8060         * loader.c: Add a statistics for the memory occupied by inflated signatures.
8061
8062         * metadata.c (mono_metadata_signature_size): New helper function.
8063
8064         * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8065         generic instances.
8066
8067         * metadata.c (inflated_method_in_image): Avoid calling 
8068         mono_method_signature () if the method does not already have a signature.
8069
8070 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8071
8072         * verify.c (is_compatible_boxed_valuetype): When checking if the boxed 
8073         valuetype is compatible with target type, check by inheritance as a
8074         VT is not really compatible with System.ValueType, for example.
8075
8076         * verify.c (do_invoke_method): Improve error message.
8077
8078         * verify.c (do_box_value): If boxing a nullable, use the type argument
8079         on stack instead.
8080
8081         * verify.c (do_newobj): Improve error message.  
8082
8083         Fixes #469549.
8084
8085 2009-02-03  Miguel de Icaza  <miguel@novell.com>
8086
8087         * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8088
8089 2009-02-03  Mark Probst  <mark.probst@gmail.com>
8090
8091         * generic-sharing.c: Don't hold domain lock when calling
8092         instantiate_other_info().  Fixes #471958.
8093
8094         * domain-internals.h, loader.c: Describe locking policy of domain
8095         lock vs loader lock.
8096
8097 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8098
8099         * verify.c (mono_delegate_signature_equal): Make it possible to check
8100         first-arg-bound delegates to static method.
8101
8102         * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8103         static methods with the first arg bound.
8104
8105         Fixes #469529.
8106
8107 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8108
8109         * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8110         errors.
8111
8112         * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8113         under strict mode. Any type, when boxed can be seen as a reference type.
8114
8115         Fixes #469528.
8116
8117 2009-02-03 Rodrigo Kumpera  <rkumpera@novell.com>
8118
8119         * object.h: The lower bound of an array is a signed integer value.
8120         Introduce mono_array_lower_bound_t typedef. It should be used instead of
8121         gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8122
8123         * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8124         calculate the upper bound.
8125         
8126         Fixes #471252.
8127
8128 2009-02-02  Miguel de Icaza  <miguel@novell.com>
8129
8130         From Paolo's work, refactored, cleared up:
8131         
8132         * threadpool.c, icall.c: ifdef code that requires a working socket
8133         stack.
8134
8135         * metadata.c (mono_metadata_field_info): Do not attempt to return
8136         a value from a function declared as void.
8137
8138         * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8139         from the console stack.
8140
8141         * assembly.c: use strrchr instead of rindex.
8142
8143         * class.c, object.c, marshal.c, icall.c, reflection.c: include
8144         alloca.h on systems that have it.
8145
8146         * environment.c: Avoid code that uses stuff from
8147         HAVE_SYS_UTSNAME_H
8148         
8149         * appdomain.c: Include sys/time.h.
8150
8151         * console-io.c: include sys/ioctl.h if it is available.
8152
8153 2009-02-03  Zoltan Varga  <vargaz@gmail.com>
8154
8155         * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8156
8157         * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8158         the method builder.
8159
8160         * marshal.c: Set mb->skip_visibility instead of setting it on the method
8161         after it was created and cached, as the later is not thread safe.
8162         
8163 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8164
8165         * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8166         called while the debugging module is not initialized. Fixes #471669.
8167
8168 2009-02-02 Rodrigo Kumpera  <rkumpera@novell.com>
8169
8170         * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8171
8172         Fixes #471255.
8173
8174 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8175
8176         * generic-sharing.c (lookup_or_register_other_info): Make sure the
8177         loader lock is not taken while the templates lock is held.  Fixes
8178         #471089.
8179
8180 2009-02-02  Mark Probst  <mark.probst@gmail.com>
8181
8182         * metadata.c (type_in_image): Added a check to fix a monodis
8183         crash.
8184
8185 2009-02-02  Zoltan Varga  <vargaz@gmail.com>
8186
8187         * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8188         nullable arguments.
8189
8190         * object.c (mono_runtime_invoke_array): Ditto.
8191         
8192         * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8193         freeing wrappers of dynamic methods.
8194
8195         * loader.c (mono_free_method): Call it. Fixes #463323.
8196         
8197         * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8198         methods taking vtype/byref arguments, to fix yet another bug caused by
8199         the sharing of runtime invoke wrappers. Partly fixes #471259.
8200
8201 2009-02-01  Zoltan Varga  <vargaz@gmail.com>
8202
8203         * debug-mono-symfile.c (check_line): Return NULL instead of returning
8204         <first file in file table>:1 when the IL offset does not have an associated
8205         line number.
8206
8207 2009-01-31  Zoltan Varga  <vargaz@gmail.com>
8208
8209         * mono-debug.c (mono_debug_lookup_locals): New function to return local
8210         variable info for a method.
8211
8212         * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8213         
8214 2009-01-30  Jb Evain  <jbevain@novell.com>
8215
8216         * pedump.c: reuse code from monodis to make sure pedump honors
8217         MONO_PATH, which is needed to verify net_2_1 assemblies.
8218
8219 2009-01-29  Zoltan Varga  <vargaz@gmail.com>
8220
8221         * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8222         there is no line number info.
8223
8224 2009-01-29  Raja R Harinath  <harinath@hurrynot.org>
8225
8226         Avoid some MonoType allocations
8227         * reflection.c (mono_reflection_initialize_generic_parameter):
8228         Reuse MonoType from param->pklass rather than allocating one.
8229         (mono_dynamic_image_free): Update to changes.
8230
8231 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8232
8233         Rearrange some code to improve consistency
8234         * reflection.c (mono_reflection_setup_generic_class): Move body ...
8235         (mono_reflection_initialize_generic_parameter): ... here.
8236
8237 2009-01-28  Zoltan Varga  <vargaz@gmail.com>
8238
8239         * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8240         with type constraints as an experiment.
8241
8242         * boehm-gc.c (on_gc_notification): Update mono_stats.
8243
8244 2009-01-28  Raja R Harinath  <harinath@hurrynot.org>
8245
8246         Avoid some allocations
8247         * class-internals.h (_MonoGenericInst::type_argv): Convert from
8248         pointer to tail array to avoid extra allocation.
8249         * metadata.c (free_generic_inst): Update to changes.
8250         (mono_metadata_get_generic_inst): Likewise.  Use alloca instead of
8251         on-stack struct.
8252
8253 2009-01-27  Zoltan Varga  <vargaz@gmail.com>
8254
8255         * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8256         return TRUE if the two type objects are the same.
8257
8258 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8259
8260         * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8261         (mono_class_native_size): Use klass->marshal_info->min_align instead of
8262         klass->min_align, since klass->min_align contains the managed alignment,
8263         while the native alignment can be different, like for longs on x86.
8264         Fixes #469135.
8265
8266         * class-internals.h (MonoMarshalType): Add a min_align field.
8267
8268 2009-01-26 Rodrigo Kumpera  <rkumpera@novell.com>
8269
8270         * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8271         the 1.0 format.
8272
8273 2009-01-26  Zoltan Varga  <vargaz@gmail.com>
8274
8275         * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8276         some comments about the usage of the used_regs field.
8277
8278         * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8279         Fixes #469217.
8280
8281 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8282
8283         * appdomain.c: return NULL instead of throwing FileNotFoundException
8284         when LoadAssembly() fails.
8285
8286 2009-01-23  Mark Probst  <mark.probst@gmail.com>
8287
8288         * metadata.c (mono_metadata_generic_param_equal): Only compare the
8289         image if the owner is NULL.  Fixes the AOT failures.
8290
8291 2009-01-23  Zoltan Varga  <vargaz@gmail.com>
8292
8293         * metadata.c (mono_metadata_load_generic_params): Initialize the 
8294         MonoGenericParam structure using memset so the image field is initialized
8295         as well.
8296
8297 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8298
8299         * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8300         a plain store.
8301
8302 2009-01-21  Zoltan Varga  <vargaz@gmail.com>
8303
8304         * class.c (mono_class_setup_vtable_general): In the generic instance
8305         optimization, set method->slot for abstract virtual methods. Fixes part of
8306         #467834.
8307
8308 2009-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
8309
8310         * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8311         which signals that the unloading has started but all appdomain services must
8312         remain operational.
8313
8314         * appdomain.c (mono_domain_unload): The initial state for unloading now
8315         is unloading_start and we switch to unloading after the managed call to
8316         AppDomain::DomainUnload has finished.
8317
8318         The new unloading state has to be created because managed code in the
8319         DomainUnload event can depend on things like the threadpool still working.
8320         The domain must remain fully functional while the event executes.
8321
8322         This shown as an issue due to Process::WaitForExit, which waits for
8323         async reads of stdout and stderr to complete. Since those are processed
8324         in the threadpool the code deadlocks because the DomainUnload callback 
8325         waits for the async read finished event, which should have been set by a
8326         threadpool job but has been discarded due to the domain been in unload
8327         state.
8328
8329 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8330
8331         * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8332         image must match.
8333
8334 2009-01-21  Mark Probst  <mark.probst@gmail.com>
8335
8336         * reflection.c (resolve_object): For fields, inflate the class and
8337         then get the field in the inflated class.
8338
8339 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8340
8341         * object-internals.h (struct _MonoException): Added a comment
8342         explaining the new use of trace_ips.
8343
8344 2009-01-20  Mark Probst  <mark.probst@gmail.com>
8345
8346         * generic-sharing.c (inflate_other_data): Inflate array methods
8347         correctly.
8348
8349         * loader.c, class-internals.h: Rename search_in_array_class() to
8350         mono_method_search_in_array_class() and make it non-static.
8351
8352 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8353
8354         * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8355         Hopefully fixes #458168.
8356
8357 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8358
8359         * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8360         as it is performed elsewhere.
8361
8362         Code is contributed under MIT/X11 license
8363
8364 2009-01-19  Christian Hergert  <christian.hergert@gmail.com>
8365
8366         * mono-perfcounters-def.h: Add counters for asp.net requests total and
8367         requests queued.
8368         * object.c (mono_raise_exception): Increment the exceptions total
8369         counter when an exception is thrown.
8370         * class-internals.h: Add a location for storing the total number of
8371         asp.net requests served.
8372         * mono-perfcounters.c: Implement update support for asp.net counters
8373         from the class libraries. Implement read support for asp.net counters
8374         and exceptions total counter.
8375
8376 2009-01-19  Zoltan Varga  <vargaz@gmail.com>
8377
8378         * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8379         accessing klass->methods. Fixes #467385.
8380
8381 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8382
8383         * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8384         for byval arguments without an [Out] attribute. Fixes #467212.
8385
8386         * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com). 
8387         Fix compilation under android.
8388         
8389         * sgen-gc.c: Instead of scanning gray objects after all roots have been 
8390         processed, scan them directly after they are copied, to achieve better locality
8391         and cache usage.
8392
8393         * socket-io.c: Applied patch from Koushik Dutta
8394         (koush@koushikdutta.com). Disable IPV6 when running under android.
8395
8396 2009-01-18  Zoltan Varga  <vargaz@gmail.com>
8397
8398         * icall.c (ves_icall_InternalExecute): Add write barriers.
8399
8400         * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8401         the GC code.
8402
8403         * sgen-gc.c: Implement write barriers in IL code.
8404
8405 2009-01-17  Geoff Norton  <gnorton@novell.com>
8406
8407         * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8408
8409 2009-01-17  Geoff Norton  <gnorton@novell.com>
8410
8411         * image.c: When unloading the image->references table, there can be gaps
8412         in it.  Ensure that we iterate every entry to avoid leaking assembly references
8413         when unloading an appdomain.
8414
8415 2009-01-16  Zoltan Varga  <vargaz@gmail.com>
8416
8417         * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8418         speed up ptr-in-nursery checks.
8419
8420         * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8421         threads_lock () to prevent deadlocks.
8422
8423         * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8424         does not need to be scanned during minor collections, since writes to it
8425         must use write barriers.
8426
8427 2009-01-15 Rodrigo Kumpera  <rkumpera@novell.com>
8428
8429         * metadata-verify.c: Add pe nt header verification.
8430         
8431 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8432
8433         * gc.c: Fix a few warnings when using SGEN.
8434
8435 2009-01-14 Rodrigo Kumpera  <rkumpera@novell.com>
8436
8437         * metadata-verify.c: Add pe optional header verification.
8438
8439 2009-01-15  Zoltan Varga  <vargaz@gmail.com>
8440
8441         * sgen-gc.c: Add support for user defined marker functions, used by
8442         MonoGHashTable to avoid registering a GC root for every hash node.
8443
8444 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8445
8446         * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8447         non-pinned roots into separate hashes to avoid having to traverse them
8448         in functions which are only interested in one kind.
8449
8450 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8451
8452         * metadata-verify.c: Add pe header machine field verification.
8453         
8454 2009-01-13 Rodrigo Kumpera  <rkumpera@novell.com>
8455
8456         * metadata-verify.c: Add pe header size verification.
8457
8458 2009-01-14  Zoltan Varga  <vargaz@gmail.com>
8459
8460         * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8461         using the GC, they don't contain references.
8462
8463         * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8464
8465 2009-01-13  Geoff Norton  <gnorton@novell.com>
8466
8467         * appdomain.c|h: Expose mono_domain_unload to the embedding api so that 
8468         AppDomains created on the native side can be cleaned up on the native side.
8469
8470 2009-01-13  Geoff Norton  <gnorton@novell.com>
8471
8472         * appdomain.c: Ensure that we call mono_context_init for the embedding api
8473         as well as the managed api.
8474
8475 2009-01-13  Geoff Norton  <gnorton@novell.com>
8476
8477         * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8478         with a MonoAppDomain initialized against it.
8479
8480 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8481
8482         * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8483         
8484         * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8485
8486         * marshal.c: Avoid setting the exception clauses after a method has been entered 
8487         into the wrapper caches. Fixes #465700.
8488
8489         * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8490         method builder.
8491         (mono_mb_create_method): Set the clauses from the method builder.
8492
8493 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8494
8495         * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8496         Patch from Makoto Kishimoto.
8497
8498 2009-01-13  Zoltan Varga  <vargaz@gmail.com>
8499
8500         * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by 
8501         encoding them as ROOT_DESC_COMPLEX.
8502         (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8503
8504 2009-01-12  Zoltan Varga  <vargaz@gmail.com>
8505
8506         * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8507         no longer point to the nursery.
8508
8509         * sgen-gc.c: Add a few comments/FIXMEs.
8510         
8511         * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8512
8513         * marshal.c (mono_marshal_get_synchronized_wrapper): Make the 
8514         initialization of the various _method variables thread safe. Fixes
8515         #465377.
8516
8517 2009-01-12  Mark Probst  <mark.probst@gmail.com>
8518
8519         * domain.c, domain-internals.h: Remove the shared_generics_hash
8520         and its lookup functions.
8521
8522 2009-01-12  Bill Holmes  <billholmes54@gmail.com>
8523
8524         * socket-io.c:  Fixing the MSVC build. 
8525
8526         Code is contributed under MIT/X11 license.
8527
8528 2009-01-12 Rodrigo Kumpera  <rkumpera@novell.com>
8529
8530         * metadata-verify.c: Add pe header watermark verification.
8531
8532 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8533
8534         * metadata-verify.c: Add lfanew verification.
8535
8536 2009-01-12  Jb Evain  <jbevain@novell.com>
8537
8538         * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8539         METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8540
8541 2009-01-10  Zoltan Varga  <vargaz@gmail.com>
8542
8543         * socket-io.c: Fix the build.
8544
8545         * environment.c: Fix an #ifdef.
8546
8547 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8548
8549         * threadpool.c (async_invoke_thread): Handle the wait function returning
8550         WAIT_IO_COMPLETION as well.
8551         (async_invoke_io_thread): Ditto.
8552
8553 2009-01-09  Bill Holmes  <billholmes54@gmail.com>
8554
8555         * threads.c: Fixing the Windows build.
8556
8557         Code is contributed under MIT/X11 license.
8558
8559 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8560  
8561         * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8562         interrupt a wait.
8563         (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8564         the thread to wait again.
8565
8566 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8567
8568         * metadata-verify.c: Initial skeleton of the metadata verifier.
8569
8570         * pedump.c: Add support for the metadata verifier.
8571
8572         * verify-internal.h: Export the whole assembly metadata verifier function.
8573
8574 2009-01-09 Rodrigo Kumpera  <rkumpera@novell.com>
8575
8576         * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8577
8578 2009-01-09  Zoltan Varga  <vargaz@gmail.com>
8579
8580         * Makefile.am: Upgrade dtrace-prelink.sh location.
8581
8582 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8583
8584         * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8585         well. Otherwise the shutdown deadlock that happens on unix will can happen
8586         as well.
8587         If the main thread code finishes too fast it's possible that the finalizer
8588         thread won't have executed yet, won't record itself as the finalizer thread
8589         and the shutdown sequence will wait on it forever.
8590
8591 2009-01-08 Rodrigo Kumpera  <rkumpera@novell.com>
8592
8593         * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8594         with MSVC.
8595
8596 2009-01-08  Miguel de Icaza  <miguel@novell.com>
8597
8598         * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8599         Robert Jordan for pointing this out.
8600
8601 2009-01-08  Christian Prochnow  <cproch@seculogix.de>
8602
8603         * icall.c
8604         * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8605         ves_icall_System_IO_DriveInfo_GetDriveType.
8606
8607 2009-01-07  Miguel de Icaza  <miguel@novell.com>
8608
8609         * icall.c: Wrap calls to mono_strtod in CriticalSection
8610         invocations when using eglib, to work around #464316.
8611
8612 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8613
8614         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8615         return value of GetCurrentDirectory to never access unitialized memory.
8616
8617 2009-01-07 Rodrigo Kumpera  <rkumpera@novell.com>
8618
8619         * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8620         return value of GetCurrentDirectory and expand the buffer if needed.
8621
8622         Fixes #459094.
8623
8624 2009-10-07 Tom Hindle  <tom_hindle@sil.org>
8625
8626         * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) : 
8627           Adding a call to mono_init_com_types.
8628
8629         Code is contributed under MIT/X11 license.
8630
8631 2009-01-07  Geoff Norton  <gnorton@novell.com>
8632
8633         * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on 
8634         darwin.  Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8635         ai_canonname can be null in some cases on darwin, where the runtime assumes it will 
8636         be the value of the ip buffer.
8637
8638 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8639
8640         * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8641         interfaces_packed here.
8642
8643         Fixes part of #463294.
8644
8645 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8646
8647         * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8648
8649         Fixes part of #463294.
8650
8651 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8652
8653         * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8654         is a boxed complex as well.
8655
8656         Fixes part of #463294.
8657
8658 2009-01-06 Rodrigo Kumpera  <rkumpera@novell.com>
8659
8660         * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8661         control if a methodspec should be created for the generic method definition from external assemblies.
8662         Caching of methodspec is done using the handleref hash table.
8663
8664         Fixes #462592.
8665
8666 2009-01-05 Rodrigo Kumpera  <rkumpera@novell.com>
8667
8668         * loader.c (find_method): When searching the interfaces of a class
8669         check the transitive closure of implemented interfaces.
8670
8671         Fixes #463303.
8672
8673 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8674
8675         * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8676         
8677 2009-01-03 Rodrigo Kumpera  <rkumpera@novell.com>
8678
8679         * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8680         interfaces calculation to fill_valuetype_array_derived_types.
8681
8682         * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8683         ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8684         for example.
8685
8686         * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8687         interfaces for valuetypes if needed.    
8688
8689         * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8690         for their basetype as well. Types are array expanded if rank is > 0.
8691
8692         Fixes #400716.
8693
8694 2008-12-30  Bill Holmes  <billholmes54@gmail.com>
8695
8696         * socket-io.h : Changing the signature of
8697           ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8698           the blocking state.
8699
8700         * icall-def.h :  Changing the signature of
8701           System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8702
8703         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8704           For Windows only.  Avoid blocking when calling accept by
8705           querying for a connection via select.  The loop also queries
8706           the thread state every 1000 micro seconds for the thread
8707           stop state.  This will avoid the process hanging on shutdown
8708           when using a TcpChannel that is never connected to.
8709
8710         Code is contributed under MIT/X11 license.
8711
8712 2008-12-30  Marek Safar  <marek.safar@gmail.com>
8713
8714         * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8715
8716 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8717
8718         * class.c (get_implicit_generic_array_interfaces): Extract common
8719         code to a helper function making it a lot easier on the eyes.
8720
8721 2008-12-26 Rodrigo Kumpera  <rkumpera@novell.com>
8722
8723         * class.c (get_implicit_generic_array_interfaces): If the internal
8724         enumerator is an interface inflate System.Object instead of itself.
8725
8726         Fixes #461261.
8727
8728 2008-12-24 Rodrigo Kumpera  <rkumpera@novell.com>
8729
8730         * object.c (mono_runtime_invoke_array): Don't assert with
8731         byref nullable types.
8732
8733         * marshal.c (mono_marshal_get_runtime_invoke): To handle
8734         byref nullables we unbox the object and store it on the
8735         stack. 
8736         We can't use the boxed object since it is the T of Nullable<T>
8737         and the boxed representation of a nullable it's underlying type
8738         or null.
8739         We could cheat and create a boxed nullable and use the same
8740         machinery of other byref VTs but this feels like a hack and
8741         using the stack has the bonus of reducing heap pressure.
8742
8743         Fixes #461941.
8744
8745 2008-12-23 Rodrigo Kumpera  <rkumpera@novell.com>
8746
8747         * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8748         return value.
8749
8750         Fixes #461867.
8751
8752 2008-12-19  Bill Holmes  <billholmes54@gmail.com>
8753
8754         * icall-def.h : Adding an internal call definition for 
8755           System.Environment.internalBroadcastSettingChange.
8756
8757         * icall.c : Adding a Windows only implementation to broadcast a 
8758           WM_SETTINGCHANGE when an environment variable has changed.
8759
8760         Code is contributed under MIT/X11 license.
8761
8762 2008-12-19  Mark Probst  <mark.probst@gmail.com>
8763
8764         * class.c, class-internals.h: Made
8765         mono_class_has_parent_and_ignore_generics() non-static.
8766
8767 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8768
8769         * image.c: deal with the mmap failing when loading an image.
8770
8771 2008-12-17  Geoff Norton  <gnorton@novell.com>
8772
8773         * threadpool.c: Ensure that the io_queue_lock is initialized
8774         in all circumstances, as we always attempt to cleanup against it.
8775
8776 2008-12-17  Miguel de Icaza  <miguel@novell.com>
8777
8778         * icall.c (ves_icall_System_Environment_get_Platform): For
8779         compatibility reasons for existing client code we will keep
8780         returning 4 for a while.   
8781
8782         For how long will depend on the documentation being updated, and
8783         for us to give client code a chance to be updated.
8784
8785         This reverts the original decison on #433108 since we did not
8786         catch roughly 33 instances of the broken code in our own source
8787         code base, we did not catch failures on the buildbots, and QA did
8788         not bring this as a problem.
8789
8790         Only today I found some customer's code breaking due to our own
8791         class libraries not being fully updated and tracked it down to
8792         this change.  I am reverting it because if we could not even get
8793         our story straight in our own code base, how can we hope that our
8794         end user code be fixed?
8795
8796         As of this morning, our Wiki page that documents how to detect
8797         Unix had not been fixed.    
8798
8799 2008-12-16  Zoltan Varga  <vargaz@gmail.com>
8800
8801         * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8802
8803         * class.c (mono_class_get_fields): Handle loading errors.
8804
8805 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8806
8807         * 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.
8808         
8809 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8810
8811         * mono-perfcounters.c: avoid warning.
8812
8813 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8814
8815         * reflection.c (ensure_runtime_vtable): Work on generic instances and
8816         make sure all interfaces have MonoClass::interface_id set.
8817
8818         * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8819         method table is property set.
8820
8821 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8822
8823         * class.c: New function mono_class_setup_interface_id that setup
8824         MonoClass::interface_id if needed.
8825
8826         * class-internals.h: Export new function.
8827
8828 2008-12-12 Rodrigo Kumpera  <rkumpera@novell.com>
8829
8830         * class.c: Add code to sanity check the vtable after setup_vtable_general
8831         has done it's work.
8832
8833 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8834
8835         * icall.c: make Assembly.GetExecutingAssembly work properly when
8836         reflection is used to invoke the method.
8837         Bug #321781 fixed.
8838
8839 2008-12-11  Mark Probst  <mark.probst@gmail.com>
8840
8841         * metadata/generic-sharing.c: Look for constraints in all type
8842         arguments, not just the first one.
8843
8844 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8845
8846         * appdomain.c: return the correct CodeBase for an Assembly instance
8847         that was loaded from the shadow-copy directories.
8848         Bug #458190 fixed.
8849
8850 2008-12-10  Zoltan Varga  <vargaz@gmail.com>
8851
8852         * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8853
8854         * sgen-gc.c (check_object): New debugging helper function.
8855
8856         * object.c: Fix calls to mono_value_copy_array ().
8857
8858 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8859
8860         * class.c (mono_class_setup_fields): If working on an inflated class
8861         first check if the generic definition did init with success.
8862
8863         Fixes #445361.
8864
8865 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8866
8867         pedump.c (main): Fix a warning.
8868
8869 2008-12-10  Bill Holmes  <billholmes54@gmail.com>
8870
8871         * object-internals.h : Adding a definition for 
8872           MonoReflectionComVisibleAttribute.
8873
8874         * marshal.c (cominterop_com_visible) :  Method added to check the 
8875           ComVisible attribute of a class.
8876
8877         * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :  
8878           cominterop_raise_hr_exception added to consolidate common code 
8879           to raise hr exceptions.
8880
8881         * marshal.c (cominterop_can_support_dispatch) :  Method added to determine 
8882           if a managed class should support IDispatch.
8883
8884         * marshal.c 
8885           (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :  
8886           Added additional checks for managed object when getting 
8887           an IDispatch interface.
8888
8889         Code is contributed under MIT/X11 license.
8890
8891 2008-12-10 Rodrigo Kumpera  <rkumpera@novell.com>
8892
8893         pedump.c (main): Handle mono_get_method () returning NULL. 
8894
8895 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8896
8897         * marshal.h: Fix a warning.
8898
8899 2008-12-09  Bill Holmes  <billholmes54@gmail.com>
8900
8901         * marshal.c : Adding cominterop_release_all_rcws to release all
8902           runtime callable wrappers held by the runtime.
8903
8904         * marshal.h : Adding declaration for cominterop_release_all_rcws.
8905           
8906         Code is contributed under MIT/X11 license.
8907
8908 2008-12-09  Zoltan Varga  <vargaz@gmail.com>
8909
8910         * metadata.c (mono_image_alloc_lock): New helper function.
8911         (mono_image_alloc0_lock): Ditto.
8912
8913         * metadata.c: Use the alloc_lock () helper functions for allocating
8914         memory from the image mempool.
8915
8916 2008-12-08 Rodrigo Kumpera  <rkumpera@novell.com>
8917
8918         * class.c (mono_class_from_generic_parameter): Document it's
8919         locking behavior. Fix double checked locking here, we stored in
8920         param->pklass a partially initialized MonoClass and no membar was used.
8921
8922 2008-12-05  Marek Habersack  <mhabersack@novell.com>
8923
8924         * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8925         (3) functions are present in the C library use them to do the
8926         job. If they are absent, make sure that the sum of int_part and
8927         dec_part is rounded before returning. This is necessary due to the
8928         division of dec_part by the power of 10 before the final addition
8929         is performed - if the result is not rounded in some cases it will
8930         yield invalid results.
8931
8932 2008-12-04  Zoltan Varga  <vargaz@gmail.com>
8933
8934         * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8935         wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR 
8936         instruction instead of a pointer constant.
8937
8938 2008-12-03  Zoltan Varga  <vargaz@gmail.com>
8939
8940         * loader.c (mono_method_get_header): Do most of the work outside the
8941         loader lock, to avoid assembly load hook deadlocks.
8942
8943         * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8944         (mono_metadata_parse_type_full): Ditto.
8945
8946 2008-12-02 Rodrigo Kumpera  <rkumpera@novell.com>
8947
8948         * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8949         Make the stack depth fixed. Ensure proper argument passing to the backtrace
8950         funtions. Finally, use a lock to produce well ordered output.
8951
8952         The lock looks silly, as all calls to the corlib mempool should be guarded
8953         with the loader lock, but for some reason this fact doesn't help. 
8954
8955         * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8956
8957 2008-12-02  Mark Probst  <mark.probst@gmail.com>
8958
8959         * socket-io.c: 64 bit big-endian fixes.
8960
8961 2008-12-01 Rodrigo Kumpera  <rkumpera@novell.com>
8962
8963         * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8964         targets that require strict compatibility between the types.
8965
8966         * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
8967         to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
8968         Kill the strict argument and create a new one valuetype_must_be_boxed.
8969
8970         * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
8971         state that all valuetypes must be boxed.
8972
8973         Fixes #448560.
8974
8975 2008-11-29  Kornél Pál  <kornelpal@gmail.com>
8976
8977         * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
8978         IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
8979
8980         Contributed under MIT/X11 license.
8981
8982 2008-11-28 Rodrigo Kumpera  <rkumpera@novell.com>
8983
8984         * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
8985         the inflate_generic_type machinery should handle it.
8986
8987         This avoids a crash when the field's flags is zero and it's type is
8988         a primitive.
8989         What happens is that mono_metadata_parse_type_full will see that opt_attrs
8990         is zero and will return one of the cached built-in primitive types. Since
8991         those types live in read-only memory, the code that copies it crashes.  
8992
8993 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8994
8995         * object.c: Don't put function descriptors into generalized IMT
8996         thunks.
8997
8998 2008-11-28  Mark Probst  <mark.probst@gmail.com>
8999
9000         * class.c: Enable generic code sharing on PPC64.
9001
9002 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9003
9004         * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9005         from mini/mini.c.
9006
9007         * generic-sharing.c: Allocate the method template slists from the
9008         image mempool so it doesn't leak.
9009
9010 2008-11-27 Rodrigo Kumpera  <rkumpera@novell.com>
9011
9012         * class.c (generic_array_methods): Release the linked list.
9013
9014 2008-11-27  Mark Probst  <mark.probst@gmail.com>
9015
9016         * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9017         invocation to g_utf16_to_utf8().
9018
9019 2008-11-26  Mark Probst  <mark.probst@gmail.com>
9020
9021         * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9022         arguments on big endian archs.
9023
9024 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9025
9026         * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9027         the type name (test added in corlib).
9028
9029 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9030
9031         * pedump.c: initialize perf. counters. Fixes a segv.
9032
9033 2008-11-25  Martin Baulig  <martin@ximian.com>
9034
9035         * mono-debug-debugger.c
9036         (mono_debugger_runtime_invoke): Return the exception object if an
9037         exception was thrown.  Visual Studio displays the exception object
9038         in the locals window.
9039
9040 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9041
9042         * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9043         ftnptr.
9044
9045 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9046
9047         * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9048         MONO_TYPE_U are sizeof (gpointer), too.
9049
9050 2008-11-24  Mark Probst  <mark.probst@gmail.com>
9051
9052         * marshal.c (mono_type_native_stack_size): Fixed size and
9053         alignment for reference types.
9054
9055 2008-11-23  Mark Probst  <mark.probst@gmail.com>
9056
9057         * class.c (mono_class_generic_sharing_enabled): Disable generic
9058         code sharing for PPC64.
9059
9060 2008-11-21 Rodrigo Kumpera  <rkumpera@novell.com>
9061
9062         * icall.c (mono_method_get_equivalent_method): Make sure
9063         method->klass->methods is inited before looping over it.
9064
9065 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9066
9067         * object.c: when calling ExecuteAssembly in a newly created domain,
9068         the configuration file and application base are already set up.
9069         Bug #446353 take 2 fixed.
9070
9071 2008-11-20  Zoltan Varga  <vargaz@gmail.com>
9072
9073         * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9074         Fixes #444715. Fix a warning.
9075
9076 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9077
9078         * appdomain.c: write the full path of the assembly to the .ini file
9079         created when "shadow-copying"
9080         Bug #446353 fixed.
9081
9082 2008-11-18  Zoltan Varga  <vargaz@gmail.com>
9083
9084         * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9085         if signature==FALSE.
9086
9087 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9088
9089         * marshal.h : Fix the cygwin build.
9090            marshal.c:12442: undefined reference to `_IID_IMarshal'
9091           
9092         Code is contributed under MIT/X11 license.
9093
9094 2008-11-17  Bill Holmes  <billholmes54@gmail.com>
9095
9096         * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9097           free threaded marshaler when QueryInterface is called on a COM callable
9098           wrapper requesting the IMarshal interface.
9099           
9100         Code is contributed under MIT/X11 license.
9101
9102 2008-11-14  Zoltan Varga  <vargaz@gmail.com>
9103
9104         * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9105
9106         * reflection.c (mono_type_get_object): Special case the very common
9107         void type.
9108
9109         * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9110         hold typeof(void).
9111
9112 2008-11-13  Bill Holmes  <billholmes54@gmail.com>
9113
9114         * process.h : Adding method declaration for
9115           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9116           
9117         * process.c : Adding implementation for
9118           ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9119           
9120         * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9121           to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9122
9123         Code is contributed under MIT/X11 license.
9124
9125 2008-11-10  Rodrigo Kumpera  <rkumpera@novell.com>
9126
9127         * appdomain.c (unload_thread_main): Clean up threadpool by
9128         calling mono_thread_pool_remove_domain_jobs.
9129
9130         * domain-internals.h (struct _MonoDomain): Add new fields to
9131         help coordinate the cleanup of the threadpool.
9132
9133         * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9134         that cleans up the threadpool of all jobs associated with an appdomain.
9135         It does that by cleaning up the queues and making sure all active
9136         threads are accounted.
9137
9138         * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9139         unloaded or in the process of. Take this is such way that there is
9140         no race condition between another thread starting the unload and the
9141         current thread acknowledging it.
9142
9143         * threadpool.c (async_invoke_thread): Same.
9144
9145         * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9146         firing the new thread.
9147
9148         * threadpool.c (start_tpthread): Same.
9149
9150         * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9151
9152         * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9153
9154 2008-11-06  Jonathan Chambers  <joncham@gmail.com>
9155
9156         * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9157         Add support for DuplicateHandle.
9158         
9159         * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9160         Add support for DuplicateHandle.
9161         
9162         * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle): 
9163         Add support for DuplicateHandle.
9164
9165         Code is contributed under MIT/X11 license.
9166
9167 2008-11-06  Mark Probst  <mark.probst@gmail.com>
9168
9169         * class-internals.h: Make min_align into a whole byte.
9170
9171         * class.c: Set min_align for SIMD types to 16.
9172
9173 2008-11-05  Geoff Norton  <gnorton@novell.com>
9174
9175         * attach.c: Default the attacher to enabled for all cases including
9176         embedded.
9177
9178 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9179
9180         * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9181         change r117650.
9182
9183 2008-11-04  Mark Probst  <mark.probst@gmail.com>
9184
9185         * monitor.c, monitor.h: New function for querying offsets of
9186         members of MonoThreadsSync.
9187
9188 2008-11-04  Zoltan Varga  <vargaz@gmail.com>
9189
9190         * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9191         to speed up this function and to avoid the boundless memory growth caused by
9192         the signature_dup () calls.
9193
9194 2008-11-02  Zoltan Varga  <vargaz@gmail.com>
9195
9196         * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9197         wrapper.
9198
9199         * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9200         by 1 bit.
9201
9202         * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9203
9204 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9205
9206         * appdomain.c:
9207         * domain-internals.h: made mono_set_private_bin_path_from_config()
9208         "internal".
9209         * object.c: call the above function after setting the configuration
9210         file path for the root domain.
9211         Fixes bug #314478.
9212
9213 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9214
9215         * assembly.c: when the assembly is loaded from an absolute path, end
9216         basedir with a directory separator.
9217         Bug #440781 fixed.
9218
9219 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9220
9221         * monitor.c (mono_monitor_get_fast_enter_method): If
9222         CompareExchange is not available, don't create the fastpath
9223         instead of asserting.  (The method is missing in the 1.1 profile.)
9224
9225 2008-10-30  Mark Probst  <mark.probst@gmail.com>
9226
9227         * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9228
9229         * monitor.c, monitor.h: Code for generating Monitor.Enter and
9230         Monitor.Exit IL fastpaths.
9231
9232 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9233
9234         * class.c (mono_class_create_from_typedef): Added Vector2ul.
9235
9236 2008-10-28  Rodrigo Kumpera  <rkumpera@novell.com>
9237
9238         * class.c (mono_class_create_from_typedef): Added Vector2l.
9239
9240 2008-10-27  Rodrigo Kumpera  <rkumpera@novell.com>
9241
9242         * class.c (mono_class_create_from_typedef): Added Vector2d.
9243
9244 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9245
9246         * appdomain.c: translate \ into / for cache_path.
9247         * domain-internals.h: new mono_is_shadow_copy_enabled().
9248         * icall.c: (fill_reflection_assembly_name) do the same path
9249         manipulations that get_code_base does.
9250         (get_code_base) use mono_is_shadow_copy_enabled.
9251
9252 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9253
9254         * appdomain.c: shadow-copied assemblies go to CachePath +
9255         ApplicationName when both are set. DynamicBase has nothing to do with
9256         shadow copies.
9257         Bug #406877 fixed.
9258
9259 2008-10-26  Zoltan Varga  <vargaz@gmail.com>
9260
9261         * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9262         STANDALONESIG table.
9263
9264         * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9265         standalone signatures.
9266
9267         * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature 
9268         comparison code: instead of comparing the signatures using a custom
9269         equals function, transform them to a common signature and compare that. This
9270         works better with AOT.
9271
9272 2008-10-25  Zoltan Varga  <vargaz@gmail.com>
9273
9274         * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9275
9276         * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9277         call for generic instances.
9278         (mono_class_setup_properties): Call setup_properties () before accessing
9279         gklass->properties.
9280
9281         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9282         over the virtual methods of a class using metadata if possible, avoiding the
9283         creation of MonoMethod's for non-virtual methods.
9284         
9285         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9286         get_virtual_methods () to iterate over the virtual methods of classes.
9287
9288 2008-10-25  Martin Baulig  <martin@ximian.com>
9289
9290         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9291
9292 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9293
9294         * class.c (mono_class_create_from_typedef): Added Vector4i.
9295
9296 2008-10-24  Mark Probst  <mark.probst@gmail.com>
9297
9298         * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9299         ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9300         special-casing applies to eliminate the call completely.
9301
9302 2008-10-24  Rodrigo Kumpera  <rkumpera@novell.com>
9303
9304         * class.c (mono_class_create_from_typedef): Added Vector8s.
9305
9306 2008-10-23  Rodrigo Kumpera  <rkumpera@novell.com>
9307
9308         * class.c (mono_class_create_from_typedef): Added Vector16sb.
9309
9310 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9311
9312         * icall.c: get rid of annoying warning.
9313
9314 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9315
9316         * threadpool.c: in 1.x, if you change the background status of the
9317         threadpool thread, it's not reset.
9318         Remove unnecessary calls to SetState.
9319
9320 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9321
9322         * threadpool.c: asynchronously create a set of idle threads upon first
9323         use of the threadpool. SetMinThreads will now start the appropriate
9324         number of idle threads if they are not already running. The default is
9325         1 threadpool thread per CPU. Increased the maximum number of threads
9326         per CPU to 10.
9327
9328 2008-10-22  Martin Baulig  <martin@ximian.com>
9329
9330         Revert r116521 from Zoltan, it breaks the debugger:
9331
9332         * class.c (mono_class_get_virtual_methods): New helper function to iterate
9333         over the virtual methods of a class using metadata if possible, avoiding the
9334         creation of MonoMethod's for non-virtual methods.
9335         
9336         * class.c (mono_class_setup_vtable_general): Rewrite this to use 
9337         get_virtual_methods () to iterate over the virtual methods of classes.
9338
9339 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9340
9341         * threads.c: when creating a threadpool thread, set its state to
9342         'background'.
9343         * threadpool.c: reset the background state of a threadpool thread
9344         after finishing each work item
9345         Bug #437888 fixed.
9346
9347 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9348
9349         * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9350         
9351         * class.c (mono_class_setup_vtable_general): Add an optimized version for
9352         generic instances which works by inflating the methods in the container
9353         class's vtable.
9354
9355         * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9356         variant which doesn't make a copy if no inflation was done.
9357         (mono_class_setup_fields): Use it.
9358
9359         * metadata.c (mono_metadata_get_shared_type): New helper function to
9360         return a shared instance of a given MonoType.
9361
9362         * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9363         a copy of most non-generic types.
9364
9365 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9366
9367         * threadpool.c: remove one more GetSystemInfo () call.
9368
9369 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9370
9371         * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9372         use the code in mono-proclib.h to get processor information.
9373
9374 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9375
9376         * appdomain.c: fixed the logic that determines whether assemblies in a
9377         directory are "shadow-copied" or not. Bug #433483 fixed.
9378
9379 2008-10-22  Zoltan Varga  <vargaz@gmail.com>
9380
9381         * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9382         warning.
9383
9384 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9385
9386         * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9387         returning a vtype.
9388
9389         * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9390         reflection.c: Use mono_field_get_name () for accessing a field's name.
9391
9392         * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9393         class.c
9394
9395         * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9396         field.
9397
9398         * loader.c (find_method_in_class): Reenable the metadata optimization by
9399         not using it for generic instances.
9400
9401         * class-internals.h (MonoFieldDefaultValue): Extract the rarely used 
9402         data/def_type fields from MonoClassField into a separate structure.
9403         (struct MonoClassField): Remove data/def_type fields.
9404         (struct _MonoClass): Add a 'field_def_values' array to store the default
9405         values/RVA for fields.
9406
9407         * class.c reflection.c: Update after the changes.
9408         
9409         * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9410         for accessing field->data.
9411
9412         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9413
9414         * loader.c (find_method_in_class): Revert the last change for now as
9415         it breaks Mono.C5 unit tests.
9416
9417         * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9418         'field_generic_types' and 'field_objects' which contain the information
9419         previously stored in MonoInflatedField.
9420         (MonoInflatedField): Delete.
9421         (struct _MonoClassField): Delete 'generic_info' field.
9422
9423         * reflection.c: Store the information which was previously in 
9424         field->generic_info in MonoDynamicGenericClass instead.
9425
9426         * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9427         MonoClassField changes.
9428
9429 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9430
9431         * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9432         store the value inside the data array of the MonoMethodWrapper.
9433         This saves memory, is faster and fixes the lifetime issues (methods
9434         were never removed from the hash previously). May also fix bug#436996.
9435
9436 2008-10-21  Zoltan Varga  <vargaz@gmail.com>
9437
9438         * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic 
9439         generic instances, compute the type from the generic definition instead of
9440         looking in field->generic_info.
9441
9442         * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9443         for inflated fields, the only user was get_fieldref_token () which no
9444         longer needs it.
9445
9446         * class.c (mono_class_init): Revert the last change as it seems to cause
9447         crashes.
9448
9449         * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9450         bytes on 64 bit platforms.
9451
9452         * object.c (mono_class_create_runtime_vtable): Fix a warning.
9453         
9454         * object.c (mono_class_create_runtime_vtable): Don't initalize
9455         field->data/field->def_type here, it is done lazily by 
9456         mono_class_get_field_default_value ().
9457
9458         * icall.c (ves_icall_get_enum_info): Call 
9459         mono_class_get_field_default_value () instead of directly accessing
9460         field->data and field->def_type.
9461
9462         * object.c (get_default_field_value): Ditto.
9463
9464         * class.c (mono_field_get_data): Ditto.
9465         
9466         * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9467         call for generic instances.
9468
9469         * loader.c (find_method_in_class): If klass != from_class, then inflate
9470         the method with the context of from_class, since the caller assumes this.
9471
9472 2008-10-20  Zoltan Varga  <vargaz@gmail.com>
9473
9474         * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9475         for accessing method->slot.
9476
9477 2008-10-20  Cedric Vivier  <cedricv@neonux.com>
9478
9479         * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9480
9481 2008-10-19  Zoltan Varga  <vargaz@gmail.com>
9482
9483         * class.c (mono_method_get_vtable_index): Use
9484         mono_method_get_vtable_slot () for accessing method->slot.
9485
9486         * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9487         accessing klass->methods.
9488
9489         * class.c (mono_method_get_vtable_slot): New helper function.
9490         (mono_class_get_vtable_entry): Ditto.
9491         (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9492         accessing method->slot.
9493
9494         * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9495         method to get_inflated_method ().
9496
9497         * class.c (mono_class_get_inflated_method): New helper method to obtain
9498         a method of an inflated class without calling setup_methods ().
9499         (mono_class_get_cctor): Use get_inflated_method.
9500
9501         * generic-sharing.c (mono_class_get_method_generic): Ditto.
9502         
9503         * marshal.c image.c: Lazily create all the marshal caches.
9504
9505         * image.c (mono_image_init): Move initialization of runtime_invoke
9506         caches to marshal.c.
9507
9508         * marshal.c (get_cache): New helper function to lazily initialize a 
9509         wrapper cache.
9510         (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9511
9512         * debug-helpers.c (mono_method_full_name): Include generic arguments.
9513
9514 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9515
9516         * loader.c: fixed check for interface type.
9517
9518 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9519
9520         * appdomain.c: check for NULL setup before it's referenced.
9521
9522 p
9523 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9524
9525         * class.c: remove the unused old vtable setup code.
9526
9527 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9528
9529         * class.c: don't depend on interface order in
9530         setup_interface_offsets (bug #435777).
9531         * reflection.c: sort the InterfaceImpl table (patch from
9532         Jb Evain  <jbevain@novell.com>).
9533
9534 2008-10-13  Zoltan Varga  <vargaz@gmail.com>
9535
9536         * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9537         the low level assemblies lock.
9538
9539 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9540
9541         * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9542         object.c, reflection.c, socket-io.c, threads.c: introduced
9543         mono_framework_version () to return the major framewrok version,
9544         changed the code that was using more complex patterns to use it.
9545         Return the correct value for PlatformID for OSX.
9546
9547 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9548
9549         * icall-def.h, process.h, process.c: added an icall to get info about
9550         processes using mono-proclib.
9551
9552 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9553
9554         * mono-perfcounters.c: use the mono-proclib functions to
9555         access process information.
9556
9557 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9558
9559         * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9560         monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9561         reflection.c: remove rawbuffer usage: mmap support is more sanely
9562         provided by utils/mono-mmap.
9563
9564 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9565
9566         * gc.c: use posix semaphores when possible so that
9567         mono_gc_finalize_notify() is signal safe.
9568
9569 2008-10-11  Zoltan Varga  <vargaz@gmail.com>
9570
9571         * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9572         #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9573         be #ifdef-ed out, the linker will remove the rest.
9574
9575         * marshal.c: Implement DISABLE_COM.
9576
9577         * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9578
9579 2008-10-11  Miguel de Icaza  <miguel@novell.com>
9580
9581         * locales.c (string_invariant_compare_char): Optimization: do not
9582         call g_unichar_type unless we actually need the information.
9583
9584 2008-10-10  Mark Probst  <mark.probst@gmail.com>
9585
9586         * object.c, class-internals.h: Also create remoting trampolines
9587         for generic methods.  Pass the domain to the remoting trampoline
9588         creation function, too.
9589
9590 2008-10-10  Zoltan Varga  <vargaz@gmail.com>
9591
9592         * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9593
9594 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9595
9596         * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9597         Vector4ui.
9598
9599 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9600
9601         * assembly.c:
9602         * locales.c: remove the use of g_strdown. Fixes bug #322313.
9603
9604 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9605
9606         * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9607         for the least possible amount of time (extending the fix in r113458).
9608
9609 2008-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
9610
9611         * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9612
9613 2008-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
9614
9615         * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9616         as possible simd intrinsic types.
9617         Optimized the test to check for the common prefix first.
9618
9619 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9620
9621         * class.c: back out part of a broken optimization committed on
9622         May 23th (bug #433908).
9623
9624 2008-10-09  Mark Probst  <mark.probst@gmail.com>
9625
9626         * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9627         Win32.  Should fix #432388 for most cases until we have the new
9628         profiler on Win32.
9629
9630 2008-10-08  Zoltan Varga  <vargaz@gmail.com>
9631
9632         * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9633         instead of using inst->id so the hash is stable for AOT.
9634
9635 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9636
9637         * appdomain.c:
9638         * icall.c: create a .ini file for shadow-copied assemblies that
9639         contains the location of the original assembly. Use this to return the
9640         proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9641         Also fix the number of '/' for windows when returning the CodeBase.
9642         Fixes bug #430920.
9643
9644 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9645
9646         * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9647
9648         Code is contributed under MIT/X11 license.
9649
9650 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9651
9652         * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9653           if if the class vtable needs initialized.
9654
9655         Code is contributed under MIT/X11 license.
9656
9657 2008-10-07  Bill Holmes  <billholmes54@gmail.com>
9658
9659         * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) : 
9660           Adding default MonoMarshalSpecs for COM methods.  OBJECT->STRUCT,
9661           STRING->BSTR, and CLASS->INTERFACE.
9662
9663         Code is contributed under MIT/X11 license.
9664
9665 2008-10-07  Marek Habersack  <mhabersack@novell.com>
9666
9667         * sysmath.h: changed the declaration of the
9668         ves_icall_System_Math_Round2 icall by adding an extra
9669         away_from_zero parameter.
9670
9671         * sysmath.c (ves_icall_System_Math_Round2): added support for
9672         away from zero rounding. The icall now takes an extra boolean
9673         parameter to signal that away from zero operation is requested.
9674
9675 2008-10-06  Zoltan Varga  <vargaz@gmail.com>
9676
9677         * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9678         the delegate klass so it can work with full-aot.
9679         (mono_marshal_get_delegate_end_invoke): Ditto.
9680         (mono_marshal_get_delegate_invoke): Ditto.
9681
9682 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9683
9684         * gc.c, attach.h, attach.c: remove a bad pattern:
9685         add_finalizer_callback () is not implemented correctly, it can't
9686         without adding more overhead to the finalizer loop and it's not
9687         even needed, since we know exactly what we need to call, so there is
9688         no need to do so through an expensive function pointer.
9689
9690 2008-10-04  Zoltan Varga  <vargaz@gmail.com>
9691
9692         * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9693         for the no-gc case.
9694         * attach.c (mono_attach_init): Remove the #ifdef.
9695
9696 2008-10-04  Andreas Färber  <andreas.faerber@web.de>
9697
9698         * attach.c (mono_attach_init): Don't use
9699         mono_gc_add_finalizer_thread_callback when compiling without GC.
9700         Fixes #432306.
9701         
9702         Code is contributed under MIT/X11 license.
9703
9704 2008-10-03  Zoltan Varga  <vargaz@gmail.com>
9705
9706         * class.c (mono_class_create_from_typedef): Remove the 
9707         #ifndef DISABLE_SIMD stuff.
9708
9709 2008-10-03  Rodrigo Kumpera  <rkumpera@novell.com>
9710
9711         * class-internals.h (MonoClass): Added simd_type bit field.
9712
9713         * class.c (mono_class_create_from_typedef): Check if type is a simd
9714         intrinsic.
9715
9716 2008-10-03  Mark Probst  <mark.probst@gmail.com>
9717
9718         * object.c (mono_method_add_generic_virtual_invocation): Only add
9719         instantiations to the thunk whose count is at least as large as
9720         the threshold.
9721
9722 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9723
9724         * icall.c: changed the Type of the exception thrown when trying to
9725         invoke a constructor on an abstract class. Part of the fix for bug
9726         #324185.
9727
9728 2008-10-02  Mark Probst  <mark.probst@gmail.com>
9729
9730         * class.c, class-internals.h (mono_method_get_vtable_index): New
9731         function which returns the index into the vtable and properly
9732         handles inflated virtual generic methods.
9733
9734 2008-10-01  Mark Probst  <mark.probst@gmail.com>
9735
9736         * object.c, domain.c, object-internals.h, domain-internals.h:
9737         Generalize IMT thunk machinery to also handle thunks for virtual
9738         generic method invokes.  When a virtual generic method is invoked
9739         more than a number of times we insert it into the thunk so that it
9740         can be called without lookup in unmanaged code.
9741
9742         * generic-sharing.c, class-internals.h: Fetching a
9743         MonoGenericInst* for a method from an (M)RGCTX.
9744
9745 2008-10-01  Zoltan Varga  <vargaz@gmail.com>
9746
9747         * marshal.c (emit_marshal_string): Applied a variant of a patch by
9748         tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9749         marshalling. Fixes #431304.
9750
9751 2008-10-01  Bill Holmes  <billholmes54@gmail.com>
9752
9753         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9754           handle when ref is specified without In or Out.
9755
9756         Code is contributed under MIT/X11 license.
9757
9758 2008-09-30  Mark Probst  <mark.probst@gmail.com>
9759
9760         * loader.c (mono_get_method_constrained): Don't expand method with
9761         the class's context, because it's already a method of that class.
9762
9763 2008-09-30  Atsushi Enomoto  <atsushi@ximian.com>
9764
9765         * attach.c : should be correct build fix.
9766
9767 2008-09-29  Zoltan Varga  <vargaz@gmail.com>
9768
9769         * attach.c: Fix the previous change.
9770
9771 2008-09-29  Atsushi Enomoto  <atsushi@ximian.com>
9772
9773         * attach.c : quick w32 build fix.
9774
9775 2008-09-27  Miguel de Icaza  <miguel@novell.com>
9776
9777         * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9778         crashes MonoDevelop: #430455.
9779
9780 2008-09-27  Zoltan Varga  <vargaz@gmail.com>
9781
9782         * domain-internals.h (struct _MonoDomain): Move most fields used only by
9783         the JIT do MonoJitDomainInfo in ../mini/mini.h.
9784
9785         * domain.c: Remove initialization/cleanup of the removed fields.
9786
9787 2008-09-27  Mark Probst  <mark.probst@gmail.com>
9788
9789         * class.c (mono_class_generic_sharing_enabled): Enable generic
9790         code sharing for PPC.
9791
9792 2008-09-26  Bill Holmes  <billholmes54@gmail.com>
9793
9794         * attach.c : Fixing the Windows builds.
9795
9796         Code is contributed under MIT/X11 license.
9797
9798 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9799
9800         * class.c (mono_class_generic_sharing_enabled): Experimentally change 
9801         the default generic sharing mode to 'all'.
9802
9803 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9804
9805         * generic-sharing.c, class-internals.h: New function for checking
9806         whether a method needs a static RGCTX invoke wrapper.  A few
9807         funtions moved from mini/generic-sharing.c.
9808
9809         * icall.c: New function used.
9810
9811 2008-09-25  Mark Probst  <mark.probst@gmail.com>
9812
9813         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9814         Static RGCTX invoke wrapping applies to value type methods, too.
9815
9816         * class.c (mono_class_setup_vtable_general): In generic-shared
9817         value types, wrap methods with a static RGCTX invoke wrapper.
9818
9819 2008-09-25  Zoltan Varga  <vargaz@gmail.com>
9820
9821         * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9822         osx build.
9823
9824 2008-09-24  Zoltan Varga  <vargaz@gmail.com>
9825
9826         * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9827         register a callback which is called when the finalizer thread is woken
9828         up.
9829         (finalizer_thread): Call the callback if it exists.
9830
9831         * attach.h attach.c: New files, implementing the attach mechanism.
9832
9833         * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9834         
9835         * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9836         by the previous change.
9837
9838 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9839
9840         * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9841         loader.c, marshal.c, metadata-internals.h, metadata.c,
9842         method-builder.c, object.c, reflection.c: introduced specific functions
9843         to allocate from the domain and image mempools and cleaned up most of
9844         the code to use them (still missing a few in reflection.c).
9845         Keep the loader bytes counter updated.
9846
9847 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9848
9849         * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9850         loader-related counters.
9851
9852 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9853
9854         * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9855         added more MS-compatible counters.
9856
9857 2008-09-22  Zoltan Varga  <vargaz@gmail.com>
9858
9859         * class.c (mono_class_setup_fields): Call setup_fields before accessing
9860         class->blittable. Fixes #428217.
9861
9862 2008-09-21  Zoltan Varga  <vargaz@gmail.com>
9863
9864         * reflection.c (mono_image_get_field_on_inst_token): Call 
9865         field_encode_signature () since that handles custom modifiers too.
9866         Fixes #424663.
9867
9868 2008-09-20  Zoltan Varga  <vargaz@gmail.com>
9869
9870         * reflection.c (add_custom_modifiers): New helper function to merge custom
9871         modifiers stored in objects to a MonoType.
9872         (fieldref_encode_signature): Encode custom modifiers.
9873         (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9874         (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9875
9876 2008-09-19  Kornél Pál  <kornelpal@gmail.com>
9877
9878         * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9879         calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9880         64-bit IL only images because imports are not resolved for IL only images.
9881         Special thanks to Bill Holmes for finding this bug and testing the patch.
9882         Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9883
9884         Contributed under MIT/X11 license.
9885
9886 2008-09-19  Miguel de Icaza  <miguel@novell.com>
9887
9888         * mono-config.c (dllmap_start): Add support for the bits keyword
9889         on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9890
9891 2008-09-19  Mark Probst  <mark.probst@gmail.com>
9892
9893         * reflection.c (inflate_mono_method): When the class the method is
9894         to be inflated for is itself not inflated, just return the method.
9895
9896 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9897
9898         * mono-perfcounters.c: use more user friendly process instance names.
9899
9900 2008-09-18  Bill Holmes  <billholmes54@gmail.com>
9901
9902         * marshal.c (emit_marshal_variant) : Change the attribute checks to 
9903           handle "[in] ref" and "[in][out] ref" cases.
9904
9905         * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9906           to mono_mb_create_method.  This was causing problems calling native to
9907           managed passing Variants by value.
9908
9909         Code is contributed under MIT/X11 license.
9910
9911 2008-09-18  Zoltan Varga  <vargaz@gmail.com>
9912
9913         * class.c (can_access_internals): Call mono_assembly_load_friends ()
9914         before accessing the friend_assembly_names field.
9915
9916         * assembly.c (mono_assembly_load_friends): Make this callable multiple
9917         times.
9918         (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9919         called lazily when it is needed.
9920
9921         * metadata-internals.h (struct _MonoAssembly): Add 
9922         'friend_assembly_names_inited' flag.
9923
9924 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9925
9926         * mono-perfcounters-def.h: fix the types of a few counters.
9927         * mono-perfcounters.c: implemented the instance names getter
9928         and a few bugfixes.
9929
9930 2008-09-18  Atsushi Enomoot  <atsushi@ximian.com>
9931
9932         * culture-info-table.h : regenerated.
9933
9934 2008-09-17  Robert Jordan  <robertj@gmx.net>
9935
9936         * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9937         context bound objects. Fixes #415577.
9938
9939         Code is contributed under MIT/X11 license.
9940
9941 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9942
9943         * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9944         implementation (bug #423582).
9945
9946 2008-09-16  Zoltan Varga  <vargaz@gmail.com>
9947
9948         * object.c (mono_object_get_virtual_method): Handle the case method->slot
9949         is not set. Fixes #426309.
9950
9951 2008-09-16  Jb Evain  <jbevain@novell.com>
9952
9953         * class.c (mono_class_from_name): fix the exported type look up
9954         when the type is defined in a referenced assembly.
9955
9956 2008-09-16  Jb Evain  <jbevain@novell.com>
9957
9958         * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9959         increment the next index counter on each iteration to make that work
9960         for more than one type forwarder. Unmanaged part to fix #422929.
9961
9962 2008-09-15  Mark Probst  <mark.probst@gmail.com>
9963
9964         * object-internals.h: enum ComInterfaceType in
9965         MonoInterfaceTypeAttribute is guint32, not guint16.
9966
9967 2008-09-12  Mark Probst  <mark.probst@gmail.com>
9968
9969         * cil-coff.h, image.c, reflection.c: Endianness fixes in image
9970         writing code.
9971
9972 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9973
9974         * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
9975         not gboolean.
9976
9977 2008-09-11  Mark Probst  <mark.probst@gmail.com>
9978
9979         * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
9980         Endianness fixes for MonoSymbolFileOffsetTable.
9981
9982 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9983
9984         * process.c (complete_path) : Removing quotes from the 
9985           input path.  The glib file routines do not handle file paths
9986           that have quotes around them.
9987
9988         Code is contributed under MIT/X11 license.
9989
9990 2008-09-10  Bill Holmes  <billholmes54@gmail.com>
9991
9992         * socket-io.h : Adding a comment to provide locations where 
9993           changes to MonoSocketAsyncResult need to be synced.
9994
9995         Code is contributed under MIT/X11 license.
9996
9997 2008-09-10  Zoltan Varga  <vargaz@gmail.com>
9998
9999         * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out 
10000         parameters as well. Fixes #425001.
10001
10002 2008-09-08  Miguel de Icaza  <miguel@novell.com>
10003
10004         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10005         windows build.
10006
10007 2008-09-07  Miguel de Icaza  <miguel@novell.com>
10008
10009         * console-io.c: Add support for tracking the window size if it
10010         changes.
10011
10012         The setup is very simple: the TtySetup function will now return a
10013         pointer to a location in memory that tracks the current console
10014         size.  The managed code checks its current value every time its
10015         queried against the last value set, and updates accordingly.
10016
10017         With this setup we can work with multiple consoles, and we do not
10018         require to poke into managed code from a signal handler.
10019
10020         Additionally, the environment for COLUMNS and LINES is now handled
10021         in unmanaged code.
10022
10023         (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10024
10025 2008-09-07  Mark Probst  <mark.probst@gmail.com>
10026
10027         * marshal.c (mono_type_native_stack_size): Treat
10028         MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10029
10030 2008-09-04  Jb Evain  <jbevain@novell.com>
10031
10032         * class.c (mono_class_is_assignable_from): fix assignability of nullables
10033         to nullables.
10034
10035 2008-09-03 Rodrigo Kumpera  <rkumpera@novell.com>
10036
10037         * verify.c (verify_type_compatibility_full): Revert change
10038         to allow converting a native int to unmanaged pointer be verifiable
10039         under non-strict mode.
10040         It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10041
10042         * verify.c: Added some TODOs.
10043
10044 2008-09-02  Bill Holmes  <billholmes54@gmail.com>
10045
10046         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10047           ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10048           Changed to use GlobalAlloc for the memory returned on Windows platforms.
10049
10050         Code is contributed under MIT/X11 license.
10051
10052 2008-09-02  Jb Evain  <jbevain@novell.com>
10053
10054         * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10055
10056 2008-09-02 Rodrigo Kumpera  <rkumpera@novell.com>
10057
10058         reflection.c (typebuilder_setup_fields): Handle classes with
10059         explicit size.
10060
10061 2008-09-01 Rodrigo Kumpera  <rkumpera@novell.com>
10062
10063         class.c (mono_class_setup_events): Add memory barrier due to
10064         double checked locking.
10065         
10066         class.c (mono_class_setup_properties): Same.
10067
10068 2008-08-31  Zoltan Varga  <vargaz@gmail.com>
10069
10070         * class.c (mono_class_is_assignable_from): Fix the build.
10071         
10072         * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10073         before accessing klass->interface_bitmap. Fixes #421744.
10074
10075 2008-08-28  Zoltan Varga  <vargaz@gmail.com>
10076
10077         * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10078         the runtime into no-exec mode, useful when running the AOT compiler.
10079
10080         * appdomain.c gc.c object.c: Avoid executing managed code when running
10081         in no-exec mode.
10082         
10083         * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10084
10085         * reflection.c (_mono_reflection_get_type_from_info): Handle the 
10086         special case when the mono_assembly_loaded () returns NULL because the 
10087         search hook is not installed.
10088
10089 2008-08-25  Zoltan Varga  <vargaz@gmail.com>
10090
10091         * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10092         crashes in bstr marshalling on linux.
10093
10094 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10095
10096         * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10097         with more than one parameter.
10098
10099 2008-08-24  Miguel de Icaza  <miguel@novell.com>
10100
10101         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10102         start/stop flow control as well when turning off ICANON (allows
10103         C-s and C-q to be read by Console.ReadKey).
10104
10105 2008-08-24  Zoltan Varga  <vargaz@gmail.com>
10106
10107         * class.c (mono_class_init): Move the initialization of nested classes
10108         into mono_class_get_nested_types (). Fixes #418433.
10109
10110         * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10111         flag.
10112
10113         * class.c reflection.c icall.c: Use mono_class_get_nested_types () for 
10114         iterating tough the nested classes of a class.
10115
10116 2008-08-23  Zoltan Varga  <vargaz@gmail.com>
10117
10118         * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10119         on arm.
10120
10121 2008-08-22  Miguel de Icaza  <miguel@novell.com>
10122
10123         * console-io.c (sigcont_handler): Support signal chaining for
10124         SIGCONT.
10125
10126         (console_set_signal_handlers): Use best practices with sigaction,
10127         clear the structure before using it. 
10128
10129 2008-08-22  Robert Jordan  <robertj@gmx.net>
10130
10131         * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10132         Fix the Windows build.
10133
10134 2008-08-22  Zoltan Varga  <vargaz@gmail.com>
10135
10136         * class.c (mono_class_generic_sharing_enabled): Make the default
10137         sharing mode 'corlib'.
10138
10139 2008-08-21  Zoltan Varga  <vargaz@gmail.com>
10140
10141         * console-io.c (console_set_signal_handlers): Fix a warning.
10142
10143         * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10144         method normally, the JIT will take care of avoiding recursion.
10145
10146 2008-08-20  Bill Holmes  <billholmes54@gmail.com>
10147
10148         * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10149
10150         Code is contributed under MIT/X11 license.
10151
10152 2008-08-20  Miguel de Icaza  <miguel@novell.com>
10153
10154         * console-io.c (sigcont_handler): We need to restore the entire
10155         termios state, not only the original settings, as things like echo
10156         can be controlled after this (Booish exposes this issue with its
10157         own ReadLine implementation).
10158
10159         Additionally, we need to set the terminal back into keypad_xmit
10160         mode.
10161         
10162         (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10163         string as a paramter as well.   Otherwise we get different
10164         keyboard sequences.
10165
10166 2008-08-20  Zoltan Varga  <vargaz@gmail.com>
10167
10168         * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10169         delegates with byref out parameter passing. Fixes #351520.
10170
10171         * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10172         a generic context.
10173         (mono_type_get_desc): Add the type arguments for GENERICINST.
10174         (mono_method_full_name): Stringify the class name using mono_type_full_name
10175         so it picks up generic arguments.
10176
10177 2008-08-19  Gert Driesen  <drieseng@users.sourceforge.net>
10178
10179         * console-io.c: Removed debug output.
10180
10181 2008-08-19 Rodrigo Kumpera  <rkumpera@novell.com>
10182
10183         reflection.c (mono_reflection_create_runtime_class): Alloc
10184         the nested classes linked list using the dynamic image mempool.
10185         Fixes leak in corlib compilation.
10186
10187 2008-08-19  Miguel de Icaza  <miguel@novell.com>
10188
10189         * console-io.c: Fix incredibly annoying behavior on the console
10190         after resuming execution after control-z.   This affected every
10191         console application.
10192
10193 2008-08-18 Rodrigo Kumpera  <rkumpera@novell.com>
10194
10195         * mempool-internals.h: Header for mono private mempool functions. The first
10196         two function are for allocating glib linked lists using pools.
10197
10198         * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10199
10200         * Makefile.am: Added mempool-internals.h.
10201
10202 2008-08-16  Zoltan Varga  <vargaz@gmail.com>
10203
10204         * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10205         (mono_domain_free): Ditto.
10206
10207         * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10208         be used by the JIT to store its domain-specific information, instead of putting
10209         it directly into MonoDomain.
10210
10211         * domain.c (mono_install_create_domain_hook): New helper function to install
10212         a hook which initializes domain->runtime_info.
10213
10214         * domain.c (mono_install_free_domain_hook): Ditto.
10215         
10216 2008-08-15  Zoltan Varga  <vargaz@gmail.com>
10217
10218         * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10219         asserting if the ares parameter is null.
10220
10221         * mono-perfcounters.c: Fix warnings.
10222
10223         * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10224         is not needed, don't check for interruptions either.
10225         (mono_marshal_get_delegate_end_invoke): Ditto.
10226
10227 2008-08-15  Marek Habersack  <mhabersack@novell.com>
10228
10229         * mono-perfcounters.c (predef_readonly_counter): added support for
10230         reading the ASP.NET Requests Queued counter from another process.
10231
10232 2008-08-12  Zoltan Varga  <vargaz@gmail.com>
10233
10234         * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10235         MonoImage to simplify the AOT code.
10236
10237 2008-08-10  Zoltan Varga  <vargaz@gmail.com>
10238
10239         * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10240         marshalling. Fixes #416078.
10241
10242 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10243         
10244         * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10245         it is set, looking up the icall address is deferred to the JIT, since 
10246         in embedded scenarios, the icall might not be registered in the runtime
10247         doing the AOT compilation. Backported from the 2.0 branch.
10248
10249 2008-08-08  Zoltan Varga  <vargaz@gmail.com>
10250
10251         * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10252         Fixes #415621.
10253
10254 2008-08-05  Marek Habersack  <mhabersack@novell.com>
10255
10256         * Makefile.am: added support for cross-compilation.
10257
10258 2008-08-04  Zoltan Varga  <vargaz@gmail.com>
10259
10260         * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10261
10262 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10263
10264         * mono-perfcounters.c: jitted methods and jitted bytes counters.
10265
10266 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10267
10268         * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10269         mono-perfcounters.c: performance counters implementation.
10270
10271 2008-07-31  Zoltan Varga  <vargaz@gmail.com>
10272
10273         * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10274         to gpointer, letting the AOT code decide what to store in it.
10275
10276 2008-07-31  Bill Holmes  <billholmes54@gmail.com>
10277
10278         * marshal.c (cominterop_get_native_wrapper) : Adding a call to 
10279           mono_class_setup_methods if the methods are not initialized.
10280
10281         Code is contributed under MIT/X11 license.
10282
10283 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10284
10285         * verify.c: Remove some debug code I commited by accident.
10286
10287         * verify.c (mono_method_is_valid_in_context): Change the return value
10288         to make possible to distinguish between invalid and unverifiable.
10289
10290         * verify.c (verifier_load_method): Don't return NULL for unverifiable
10291         methods.
10292
10293 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10294
10295         * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10296         constraints. Fixes regression in gtest-253.
10297
10298 2008-07-30 Rodrigo Kumpera  <rkumpera@novell.com>
10299
10300         * verify.c (mono_verifier_verify_class): Don't allow generic types
10301         with explicit layout.
10302
10303         * verify.c (mono_method_verify): Check locals and argument types.
10304
10305 2008-07-29  Zoltan Varga  <vargaz@gmail.com>
10306
10307         * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10308         wait if the thread is in StopRequested state.
10309
10310         * class.c (mono_class_from_name): Refactor the module searching code into
10311         a separate function so it can be reused in the AOT case too.
10312
10313 2008-07-28 Rodrigo Kumpera  <rkumpera@novell.com>
10314
10315         * verify.c (mono_type_is_valid_in_context): Improve the error message.
10316         Check both the type and it's generic type definition for loader errors.
10317         
10318         * verify.c (mono_method_is_valid_in_context): Don't generate another
10319         error when a type errors occur, this leads to the wrong exception been
10320         thrown.
10321
10322 2008-07-28  Dick Porter  <dick@ximian.com>
10323
10324         * icall-def.h
10325         * process.c
10326         (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10327         New internal calls to duplicate and close a process handle.
10328
10329 2008-07-27  Andreas Färber  <andreas.faerber@web.de>
10330
10331         * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10332
10333 2008-07-27  Zoltan Varga  <vargaz@gmail.com>
10334
10335         * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10336
10337 2008-07-27  Robert Jordan  <robertj@gmx.net>
10338
10339         * class.c (mono_class_init): Don't compute class.has_finalize for
10340         valuetypes. Fixes #412477.
10341
10342 2008-07-25 Rodrigo Kumpera  <rkumpera@novell.com>
10343
10344         * verify.c: Implement constraint equivalence checking.
10345         This is required when a generic parameter is used as
10346         argument to a constrained one.
10347
10348         Fixes #410637.
10349
10350 2008-07-24  Zoltan Varga  <vargaz@gmail.com>
10351
10352         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10353
10354         * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10355
10356         * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10357         synch with managed object layout.
10358
10359 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10360
10361         * verify.c (do_branch_op): Handle valuetypes and generic
10362         arguments properly.
10363
10364         * verify.c (do_cmp_op): Same.
10365
10366         Fixes #410383.
10367
10368 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10369
10370         * generic-sharing.c: Fix memory leaks.
10371
10372         * class.c, class-internals.h: Make
10373         mono_class_inflate_generic_type_with_mempool() non-static.
10374
10375 2008-07-24 Rodrigo Kumpera  <rkumpera@novell.com>
10376
10377         * pedump.c (dump_verify_info): Dump full class name.
10378
10379 2008-07-24  Mark Probst  <mark.probst@gmail.com>
10380
10381         * generic-sharing.c: Removed some old code that didn't do anything.
10382
10383 2008-07-24  Massimiliano Mantione  <massi@ximian.com>
10384         * profiler.c: Added runtime_initialized_event,
10385         mono_profiler_install_runtime_initialized and
10386         mono_profiler_runtime_initialized. This new hook tells the profiler
10387         when the runtime is sufficiently initialized to be able to call
10388         mono_thread_attach on the root appdomain.
10389         * profiler.h, profiler-private.h: Likewise.
10390
10391 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10392
10393         * verify.c (do_cast): Do boxing for generic arguments as well.
10394
10395         * class.c (is_nesting_type): Drop generic instantiations before
10396         checking for nesting.
10397
10398         * class.c (can_access_instantiation): Allow access to generic
10399         arguments.
10400
10401 2008-07-23 Rodrigo Kumpera  <rkumpera@novell.com>
10402
10403         * verify.c (verify_class_for_overlapping_reference_fields):
10404         On some cases, the field size might be zero, guard against that.
10405         Fix the explicit layout check to work as expected.
10406
10407 2008-07-23  Zoltan Varga  <vargaz@gmail.com>
10408
10409         * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling 
10410         mono_thread_resume () during shutdown, since the thread we want to abort
10411         might be suspended.
10412
10413 2008-07-22  Zoltan Varga  <vargaz@gmail.com>
10414
10415         * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a 
10416         warning.
10417
10418         * debug-mono-symfile.c: Fix a warning.
10419
10420         * mono-perfcounters.c (get_cpu_times): Fix a warning.
10421
10422         * object.c (mono_class_vtable): Check if exception_type is set, and return
10423         NULL as defined by the function comments.
10424
10425 2008-07-22  Mark Probst  <mark.probst@gmail.com>
10426
10427         * mempool.c: Use malloc for every single mempool allocation if the
10428         configure option is set.  This makes it easier to track mempool
10429         allocations with tools like Valgrind.
10430
10431 2008-07-22  Jb Evain  <jbevain@novell.com>
10432
10433         * reflection.c (create_dynamic_mono_image): emit the same
10434         metadata version that SL2 does when creating a SL2 image.
10435
10436 2008-07-21 Rodrigo Kumpera  <rkumpera@novell.com>
10437
10438         * icall-def.h:
10439         * icall.c: New icall System.Enum:get_hashcode. This function
10440         avoids the overhead of boxing the enum to the underlying type.
10441
10442 2008-07-21  Mark Probst  <mark.probst@gmail.com>
10443
10444         * reflection.c (mono_method_get_object): Don't let static RGCTX
10445         invoke wrappers get into MonoReflectionMethods.
10446
10447 2008-07-17 Rodrigo Kumpera  <rkumpera@novell.com>
10448
10449         * object-internals.h:
10450         * object.c: New mono_runtime_class_init_full function
10451         that makes throwing the exception optinal.
10452
10453         * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10454         for the case where the exception object is supplied.
10455
10456 2008-07-16  Kornél Pál  <kornelpal@gmail.com>
10457
10458         * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10459         old ld versions.
10460
10461         Contributed under MIT/X11 license.
10462
10463 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10464
10465         * string-icalls.c (ves_icall_System_String_InternalSplit):
10466         Optimize array allocation by caching the MonoClass of the
10467         array type.
10468
10469         * icall.c (ves_icall_Type_GetMethodsByName): Same.
10470
10471         * reflection.c (mono_param_get_objects): Same.
10472
10473 2008-07-16 Rodrigo Kumpera  <rkumpera@novell.com>
10474
10475         * icall-def.h:
10476         * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10477         It inflates the given type using the class context.
10478
10479 2008-07-15 Rodrigo Kumpera  <rkumpera@novell.com>
10480
10481         * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10482         the vtable if it already exists.
10483
10484         * object-internals.h: Add mono_class_try_get_vtable as part of the
10485         internal API.
10486
10487         * reflection.c (mono_type_get_object): Use the MonoObject from the
10488         vtable when possible. Reduces locking contention on reflection heavy
10489         code.
10490
10491 2008-07-15  Zoltan Varga  <vargaz@gmail.com>
10492
10493         * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10494         g_bit_nth_msf () since that macro is not implemented in eglib.
10495
10496 2008-07-13  Zoltan Varga  <vargaz@gmail.com>
10497
10498         * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10499         on platforms which do not support it.
10500
10501 2008-07-12  Zoltan Varga  <vargaz@gmail.com>
10502
10503         * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10504
10505 2008-07-11  Martin Baulig  <martin@ximian.com>
10506
10507         * mono-debug-debugger.h
10508         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10509
10510         * mono-debug-debugger.c
10511         (_mono_debugger_interruption_request): New global volatile variable.
10512         (mono_debugger_check_interruption): New public function.
10513
10514         * threads.c
10515         (mono_thread_current_check_pending_interrupt): Call
10516         mono_debugger_check_interruption().
10517         (mono_thread_interruption_checkpoint_request): Likewise.
10518
10519 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10520
10521         * verify.c: Add more type checks for loaded types. Verify the result
10522         handle from ldtoken.
10523
10524 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10525
10526         * loader.c (field_from_memberref): Don't crash if the field
10527         wasn't found.
10528
10529 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10530
10531         * verify.c: Verify if type and method instantiations
10532         don't have invalid VAR or MVAR arguments.
10533
10534 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10535
10536         * verify.c: Fix double free of function pointer list.
10537
10538 2008-07-11 Rodrigo Kumpera  <rkumpera@novell.com>
10539
10540         * object.c (mono_string_to_utf8): Comment the new code as it
10541         breaks under eglib.
10542
10543 2008-07-08 Rodrigo Kumpera  <rkumpera@novell.com>
10544
10545         * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10546
10547 2008-07-07  Bill Holmes  <billholmes54@gmail.com>
10548
10549         * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10550           is not throw too many times.
10551
10552         Code is contributed under MIT/X11 license.
10553
10554 2008-07-07  Zoltan Varga  <vargaz@gmail.com>
10555
10556         * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10557         debugging is turned off.
10558
10559 2008-07-06  Zoltan Varga  <vargaz@gmail.com>
10560
10561         * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10562
10563 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10564
10565         * class-internals.h, class.c: Added new generic sharing option:
10566         Share only stuff in System.Collections.Generic, which is now the
10567         default.
10568
10569 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10570
10571         * generic-sharing.c, class-internals.h: New function for getting a
10572         generic method in a generic class given the corresponding method
10573         for a different instantiation of the class.  Partly refactored
10574         from mini-trampolines.c.
10575
10576         * class.c: Make sure generic methods have a class_inst if they are
10577         part of a generic class.
10578
10579         * metadata.c (mono_type_stack_size_internal): Handle type
10580         variables.
10581
10582 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10583
10584         * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10585         Signifies whether information on the this/vtable/mrgctx variable
10586         is available.
10587
10588 2008-07-04  Mark Probst  <mark.probst@gmail.com>
10589
10590         * object.c, object-internals.h, icall.c: New function
10591         mono_delegate_ctor_with_method(), which does the same as
10592         mono_delegate_ctor(), but takes an explicit method argument
10593         instead of taking the method from the jit info.
10594
10595         * marshal.c: When creating a delegate with an inflated method take
10596         the "this" argument as the target class for the castclass.
10597
10598 2008-07-03  Mark Probst  <mark.probst@gmail.com>
10599
10600         * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10601         mono_jit_info_table_find() to perform very badly in some cases.
10602
10603 2008-07-02  Zoltan Varga  <vargaz@gmail.com>
10604
10605         * icall.c (type_from_typename): Handle 'string'.
10606
10607         * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10608         wrappers into the wrapper_hash, since the key is not a MonoMethod.
10609
10610 2008-07-01  Zoltan Varga  <vargaz@gmail.com>
10611
10612         * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10613
10614         * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10615         number of available managed allocator types.
10616
10617         * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10618         (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10619
10620 2008-06-30  Zoltan Varga  <vargaz@gmail.com>
10621
10622         * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10623         which is a low level lock protecting just the 'jit_code_hash' hash table.
10624
10625         * domain.c: Initialize+cleanup jit_code_hash_lock.
10626         
10627 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10628
10629         * coree.c (mono_load_coree): Set coree_module_handle global variable only
10630         after initialization.
10631
10632         * coree.h: Make MonoFixupExe internal.
10633
10634         Contributed under MIT/X11 license.
10635
10636 2008-06-30  Kornél Pál  <kornelpal@gmail.com>
10637
10638         * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10639         because that is platform independent. Check NumberOfRvaAndSizes in PE32
10640         as well.
10641         (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10642         image being loaded is a CLI image and _CorValidateImage gets called.
10643
10644         * coree.h: Add MonoLoadImage.
10645
10646         * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10647         instead of LoadLibrary.
10648
10649         Contributed under MIT/X11 license.
10650
10651 2008-06-29 Rodrigo Kumpera  <rkumpera@novell.com>
10652
10653         * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10654         for any primitive type.
10655
10656 2008-06-29  Zoltan Varga  <vargaz@gmail.com>
10657
10658         * object.c (mono_array_new_specific): Optimize this and the other allocation
10659         functions a bit.
10660         
10661         * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10662         domains too if mono_dont_free_domains is set.
10663
10664         * domain-internals.h (mono_dont_free_domains): New internal option controlling
10665         whenever to free appdomain data after it has been unloaded.
10666
10667         * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10668         
10669 2008-06-28  Zoltan Varga  <vargaz@gmail.com>
10670
10671         * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10672         (mono_method_get_equivalent_method): Fix a warning.
10673
10674         * object.c (mono_message_init): Avoid looking up array types for each call.
10675
10676 2008-06-27  Zoltan Varga  <vargaz@gmail.com>
10677
10678         * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10679         call.
10680
10681         * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10682         even more.
10683
10684         * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10685         each iteration.
10686
10687         * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10688         fields of an enum.
10689
10690 2008-06-26 Rodrigo Kumpera  <rkumpera@novell.com>
10691
10692         * object.c (mono_value_box): Fix boxing of nullables.
10693
10694 2008-06-26  Kornél Pál  <kornelpal@gmail.com>
10695
10696         * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10697         mono_module_handle that is defined by the linker; no initialization required.
10698         * coree.h: Remove mono_module_handle, add __ImageBase, update
10699         mono_image_open_from_module_handle.
10700         * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10701         PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10702         (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10703         memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10704         to 4 GB away from image base address. IA64 version is not tested but was very
10705         easy to implement and should work if we ever need it.
10706         * domain.c (mono_init_internal): Avoid system error message boxes.
10707         * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10708         with has_entry_point. Handle do_mono_image_load fauilre correctly.
10709         (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10710         coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10711         * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10712
10713         Contributed under MIT/X11 license.
10714
10715 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10716
10717         * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10718         as part of the private mono API.
10719         
10720         * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10721         Do proper argument checking for methods that belong to generic classes.
10722         Do proper type resolution for GMFH/2.
10723         Fixes #377324.
10724         
10725 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10726
10727         * verify.c (do_switch): Fix a memory corruption bug with
10728         the jump index is out of bound.
10729
10730 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10731
10732         * verify.c: Disable debug code.
10733
10734 2008-06-25 Rodrigo Kumpera  <rkumpera@novell.com>
10735
10736         * reflection.c (mono_image_get_methodbuilder_token): Use
10737         mono_image_get_methodspec_token_for_generic_method_definition
10738         instead of mono_image_get_memberref_token. We cache more memberef
10739         entries now.
10740
10741 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10742
10743         * verify.c: Inflate exception clause types.
10744         Fixes #402606.
10745         
10746 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10747
10748         * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10749         name.
10750
10751         * reflection.c (mono_image_get_ctorbuilder_token): Same.
10752
10753         * reflection.c (mono_image_create_method_token): Same.
10754
10755 2008-06-24 Rodrigo Kumpera  <rkumpera@novell.com>
10756
10757         * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10758         It does the same as mono_image_get_methodref_token but works on
10759         MethodBuilder.
10760
10761         * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10762         and always generate a methodspec. This follows the old behavior and fixes
10763         the regressions in System.Core. 
10764
10765 2008-06-24  Zoltan Varga  <vargaz@gmail.com>
10766
10767         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where 
10768         don't event mono_class_get () succeeds. Fixes #402182.
10769
10770 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10771
10772         * metadata-internals.h: Added MonoDynamicImage::methodspec
10773         hashtable to store methodspec tokens created for MethodBuilders.
10774
10775         * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10776         MethodBuilders as open instantiations if a methodspec was requested.
10777
10778         * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10779
10780         * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10781
10782         * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10783
10784         Fixes bug #349190.
10785
10786 2008-06-20 Rodrigo Kumpera  <rkumpera@novell.com>
10787
10788         * loader.c (method_from_methodspec): Avoid crashing if the
10789         method lookup fails.
10790
10791 2008-06-20  Dick Porter  <dick@ximian.com>
10792
10793         * socket-io.c (get_socket_assembly): Cope with Moonlight network
10794         classes being in a different assembly.  Fixes bug 399184.
10795
10796 2008-06-20  Zoltan Varga  <vargaz@gmail.com>
10797
10798         * loader.c (mono_loader_init): Make this callable multiple times.
10799         (mono_dllmap_insert): Call mono_loader_init () so this works even before
10800         the runtime is initialized. Fixes #401755.
10801
10802 2008-06-19  Dick Porter  <dick@ximian.com>
10803
10804         * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10805         Fixes bug 349688.
10806
10807 2008-06-19  Dick Porter  <dick@ximian.com>
10808
10809         * socket-io.c:
10810         * icall-def.h: Implement Socket generic Send() and Receive()
10811         methods.  Fixes bug 395168.
10812
10813 2008-06-19  Kornél Pál  <kornelpal@gmail.com>
10814
10815         * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10816
10817         Contributed under MIT/X11 license.
10818
10819 2008-06-18  Martin Baulig  <martin@ximian.com>
10820
10821         * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10822         `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10823         set to 80.0.  The debugger <-> runtime interface is now frozen as
10824         well.   
10825
10826         * mono-debug.c
10827         (mono_debug_debugger_version): Bump to 4.
10828
10829 2008-06-18  Martin Baulig  <martin@ximian.com>
10830
10831         * debug-mono-symfile.c
10832         (load_symfile): Don't check the minor version.
10833
10834         * debug-mono-symfile.h: Bump the version number to 50.0.
10835
10836 2008-06-18  Martin Baulig  <martin@ximian.com>
10837
10838         * debug-mono-symfile.c
10839         (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10840         minimum required version.
10841
10842 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10843
10844         * reflection.c (mono_custom_attrs_from_property): Fix support for
10845         retriveving cattrs of dynamic inflated generic types.
10846
10847         * reflection.c (mono_custom_attrs_from_event): Same.
10848
10849         * reflection.c (mono_custom_attrs_from_field): Same;
10850
10851         * reflection.c (typebuilder_setup_events): Same cattrs of events.
10852
10853         * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10854         Moved to metadata.c.
10855
10856         * metadata.c: New functions to retrive the equivalent field, event
10857         of property from the generic type definition.
10858
10859         * metadata-internals.h: Added new functions from metadata.c.
10860
10861 2008-06-17 Rodrigo Kumpera  <rkumpera@novell.com>
10862
10863         * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10864         to cached in a mempool is used.
10865
10866         * metadata.c (free_generic_class): In some situations field generic_info type
10867         is not properly dup'ed and leads to double free'ing.
10868
10869         Fixes #400643.
10870
10871 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10872
10873         * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10874         this arguments (will be needed later for generic methods).
10875         Collect stats.
10876
10877 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10878
10879         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10880         Create a static RGCTX invoke wrapper for methods which require it.
10881
10882 2008-06-17  Mark Probst  <mark.probst@gmail.com>
10883
10884         * object.c, class-internals.h: New function for checking whether
10885         an individual field is special static.
10886
10887 2008-06-15  Zoltan Varga  <vargaz@gmail.com>
10888
10889         * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10890         linear search since the table is sorted.
10891
10892         * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10893         Fixes #324180.
10894
10895 2008-06-14  Zoltan Varga  <vargaz@gmail.com>
10896
10897         * appdomain.c (unload_thread_main): Applied patch from Tim Howard 
10898         (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10899
10900         * gc.c (mono_domain_finalize): Allow an infinite timeout.
10901
10902         * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10903         
10904         * threads.c (mono_thread_request_interruption): Get rid of locking, use
10905         InterlockedCompareExchange to query and modify 
10906         thread->interruption_requested.
10907
10908         * object-internals.h (struct _MonoThread): Change interruption_requested
10909         to a gint32 so it can be modified by atomic operations. Add 
10910         'critical_region_level' from the managed side, change small_id to a guint32,
10911         add new set of 'unused' fields.
10912
10913         * appdomain.c: Bump corlib version.
10914
10915 2008-06-13  Zoltan Varga  <vargaz@gmail.com>
10916
10917         * class.c (mono_class_from_name): Search modules as well. Fixes
10918         #322332.
10919
10920 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10921
10922         * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10923         templates.  Templates are generalized with an additional type_argc
10924         argument.  RGCTX templates have type_argc==0, MRGCTX templates
10925         have type_argc>0.
10926
10927         * domain-internals.h, domain.c: New hash table for looking up
10928         MRGCTXs.
10929
10930         * metadata.c, metadata-internals.h: Rename hash and equal
10931         functions for MonoGenericInst's and make them public.
10932
10933         * class-internals.h: New data structures for the MRGCTX.  Macros
10934         for distinguishing slots in the RGCTX and the MRGCTX.
10935
10936 2008-06-13  Mark Probst  <mark.probst@gmail.com>
10937
10938         * object.c (mono_method_get_imt_slot): Put the same methods of
10939         different instantiations of the same generic interface in the same
10940         IMT slots, to make generic sharing simpler.
10941
10942 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10943
10944         * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10945
10946         * metadata.c (mono_metadata_field_info_with_mempool): Added.
10947         This function works just like mono_metadata_field_info, but
10948         accept a mempool as argument to be used allocating memory.
10949
10950         * marshal.c (mono_marshal_load_type_info): Use new function
10951         to load marshal data into image mempool.
10952
10953 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10954
10955         * class.c (mono_class_inflate_generic_type_with_mempool):
10956         This function allows to inflate a generic type using
10957         a mempool.
10958
10959         * class.c (inflate_generic_type): Take a mempool as argument
10960         and use it to do type dup'ing.
10961
10962         * class.c (mono_class_setup_fields): Field type for generic
10963         generic classes are allocated from the image mempool.
10964
10965         * metadata.c (free_generic_class): Inflated field type is
10966         now allocated in the image mempool.
10967
10968 2008-06-12 Rodrigo Kumpera  <rkumpera@novell.com>
10969
10970         * threads.c (thread_cleanup): Free MonoThread::name.
10971
10972 2008-06-12  Marek Habersack  <mhabersack@novell.com>
10973
10974         * appdomain.c (ensure_directory_exists): avoid unnecessary
10975         mkdir(2) calls when the shadow directory already exists.
10976         (mono_make_shadow_copy): copy also satellite assemblies from the
10977         private bin directories.
10978
10979 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
10980
10981         * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
10982         
10983         * threads.c (mono_thread_get_stack_bounds): Align the stack address to
10984         a page boundary. Fixes #396219.
10985
10986 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10987
10988         * marshal.c (mono_marshal_load_type_info): Add a memory barrier
10989         due to double-checked locking.
10990
10991 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10992
10993         * assembly.c (build_assembly_name): Release memory on failure.
10994
10995         * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
10996
10997 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
10998
10999         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11000         memory on failure.
11001
11002 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11003
11004         * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11005         memory on failure.
11006
11007 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11008
11009         * loader.c (field_from_memberref): Check if field signature type is equal
11010         to the non-inflated type of the field. Fixes #398980.
11011
11012 2008-06-11  Zoltan Varga  <vargaz@gmail.com>
11013
11014         * assembly.c (mono_assembly_load_from_full): Call 
11015         mono_assembly_load_friends () outside the assemblies lock, since it can
11016         acquire the loader lock. Fixes #323696.
11017
11018         * reflection.c (resolve_object): Inflate the inst with the context for
11019         FieldOnTypeBuilderInst. Fixes #399010.
11020
11021 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11022
11023         * reflection.c (mono_image_get_field_on_inst_token): Don't
11024         inflate the field to encode it's signature. If it's a
11025         VAR or MVAR it should stay that way in the signature.
11026         Fixes #399047.
11027
11028 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11029
11030         * reflection.c (resolve_object): Release memory of inflated types.
11031
11032 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11033
11034         * loader.c (mono_method_get_signature_full): Remove assert about
11035         loading a methodspec to a generic method. We have such methods, such as
11036         System.Threading.Interlocked::CompareExchange<T>.
11037         This assert was removed since it crashes the verifier when it checks
11038         methods calling CompareExchange<T>.
11039
11040 2008-06-10  Marek Safar  <marek.safar@gmail.com>
11041
11042         * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11043         of Type array and not MonoType.
11044
11045 2008-06-10  Marek Habersack  <mhabersack@novell.com>
11046
11047         * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11048         <lupus@ximian.com>
11049
11050 2008-06-10  Martin Baulig  <martin@ximian.com>
11051
11052         * debug-mono-symfile.h
11053         (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6.  There were no
11054         changes to the file format, but we were generating incorrect
11055         source file indices in the line number table due to a bug, which
11056         made backtraces report an incorrect source file.
11057
11058 2008-06-10 Rodrigo Kumpera  <rkumpera@novell.com>
11059
11060         * mono-debug.c: Moved mono_debug_free_method_jit_info from
11061         mini/debug-mini.c to here.
11062
11063         * mono-debug.c (il_offset_from_address): Free memory from find_method.
11064
11065         * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11066         use it to release structs returned by mono_debug_find_method.
11067
11068 2008-06-10  Zoltan Varga  <vargaz@gmail.com>
11069
11070         * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11071         since it needs to set method->slot for all interface methods.
11072
11073 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11074
11075         * class-internals.h: Forgot to add.
11076
11077 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11078
11079         * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11080
11081         * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11082         Lookup the custom attributes from property_hash.
11083
11084         * reflection.c (mono_save_custom_attrs): Save the custom attributes
11085         in property_hash. Allocate all data using the image mempool.
11086
11087         * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11088         for dynamic_custom_attrs to checks if the image is dynamic.
11089
11090 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11091
11092         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11093         assemblies array.
11094         
11095         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11096         runtime functions while holding the domain assemblies lock.
11097
11098 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11099
11100         * verify.c: Reapplied the last bit of the reverted changes.
11101
11102 2008-06-09 Rodrigo Kumpera  <rkumpera@novell.com>
11103
11104         * verify.c: Reapplied more of the reverted changes.
11105
11106 2008-06-09  Martin Baulig  <martin@ximian.com>
11107
11108         * debug-mono-symfile.c (load_symfile): Check the major version
11109         first; if it's wrong, don't print the minor version in the error message.
11110
11111 2008-06-09  Zoltan Varga  <vargaz@gmail.com>
11112
11113         * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11114         lock instead of the domain lock to avoid deadlocks, since the thread might
11115         already hold the loader lock.
11116
11117         * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11118         (mono_thread_attach): Ditto.
11119
11120         * monitor.c: Use a TLS variable for holding the current thread id instead
11121         of calling pthread_self ().
11122         (mono_monitor_init_tls): New internal function to initialize the TLS
11123         variable.
11124         (mono_monitor_try_enter_internal): Put the owner == id check after the
11125         owner == 0 check.
11126
11127         * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11128         missed optimizations when using gcc-4.3.
11129
11130 2008-06-08 Rodrigo Kumpera  <rkumpera@novell.com>
11131
11132         * reflection.c (mono_dynamic_image_free): Free the memory
11133         used by MonoGenericParam in MonoDynamicImage::gen_param.
11134
11135         * reflection.c (mono_reflection_setup_generic_class): Allocate
11136         container from mempool.
11137
11138         * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11139         container from mempool.
11140
11141 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11142
11143         * threads.c (mono_set_pending_exception): New internal function to set the
11144         pending exception of the current thread.
11145         (mono_thread_get_and_clear_pending_exception): Check for 
11146         thread->pending_exception as well.
11147
11148         * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11149
11150         * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11151         it can trigger a collection.
11152
11153 2008-06-06  Martin Baulig  <martin@ximian.com>
11154
11155         Merged the `debugger-kahalo' branch.
11156
11157         * mono-debug.h
11158         (MONO_DEBUGGER_VERSION): Bumped to 72.
11159
11160         * debug-mono-symfile.h
11161         (MonoSymbolFileMethodIndexEntry): Removed.
11162         (MonoSymbolFileMethodEntry): New public typedef.
11163         (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11164         (MonoSymbolFileSourceEntry): Remove everything except `index' and
11165         `data_offset'.
11166         (MonoSymbolFileMethodEntry): Removed.
11167         (MonoSymbolFileLexicalBlockEntry): Removed.
11168         (MonoSymbolFileLineNumberEntry): Removed.
11169         (MonoDebugLexicalBlockEntry): Removed.
11170         (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11171         removed `num_il_offsets' and `il_offsets'.
11172         (MonoSymbolFile): Replace `version' with `major_version' and
11173         `minor_version'.
11174         (MONO_SYMBOL_FILE_VERSION): Replace with
11175         `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11176         `MONO_SYMBOL_FILE_MINOR_VERSION'.
11177
11178         * debug-mono-symfile.c
11179         (mono_debug_symfile_lookup_location): Add support for the new line
11180         number table format.
11181
11182 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11183
11184         * metadata.c (free_generic_class): Release the inflated
11185         MonoClass of dynamic generic classes if it's not a generic
11186         type definition.
11187
11188 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11189
11190         * verify.c: Reapplied more of the reverted changes.
11191
11192 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11193
11194         * reflection.c (lookup_custom_attr): Clean the cached flag or
11195         nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11196         for SRE types.
11197
11198 2008-06-07 Rodrigo Kumpera  <rkumpera@novell.com>
11199
11200         * verify.c: Reapplied a small part of the reverted changes.
11201
11202 2008-06-07  Zoltan Varga  <vargaz@gmail.com>
11203
11204         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11205
11206         * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was 
11207         previously in managed code.
11208         (mono_monitor_exit): Ditto.
11209         (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11210
11211         * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11212         the managed definition.
11213
11214 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11215
11216         * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11217
11218 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11219
11220         * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11221         
11222         * monitor.c: Add some micro optimizations.
11223
11224         * icall.c (type_from_typename): Handle 'bool'.
11225
11226 2008-06-06 Rodrigo Kumpera  <rkumpera@novell.com>
11227
11228         * verify.c: Implement constructor verification per P III 1.8.1.4.
11229         Fixes #396716.
11230
11231 2008-06-06  Zoltan Varga  <vargaz@gmail.com>
11232
11233         * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11234         holding the assemblies lock here too.
11235
11236 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11237
11238         * verify.c: Kill stack_top function.
11239
11240 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11241
11242         * verify.c: Kill stack_get function.
11243
11244 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11245
11246         * verify.c (mono_method_verify): Last change broke the build. Fixed.
11247
11248 2008-06-05 Rodrigo Kumpera  <rkumpera@novell.com>
11249
11250         * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11251         more reliable.
11252
11253         * verify.c (mono_method_verify): Inflate params and locals to avoid
11254         mismatch when checking for compatibility.
11255
11256 2008-06-05  Jonathan Chambers  <joncham@gmail.com>
11257
11258         * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11259         Length prefix should be size in bytes. Fix bug #339530.
11260         
11261         * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11262         Length prefix should be size in bytes. Fix bug #339530.
11263
11264         Code is contributed under MIT/X11 license.
11265
11266 2008-06-05  Bill Holmes <billholmes54@gmail.com>
11267
11268         * decimal.c:  Adding MSVC implementation to my_g_bit_nth_msf.
11269
11270         Contributed under MIT/X11 license.
11271
11272 2008-06-05  Martin Baulig  <martin@ximian.com>
11273
11274         * mono-debug-debugger.c
11275         (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11276
11277 2008-06-05  Zoltan Varga  <vargaz@gmail.com>
11278
11279         * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11280         while holding the assemblies lock to prevent deadlocks. Handle the case
11281         where the search hook returns NULL but the assembly was still loaded.
11282         Fixes #323696.
11283
11284         * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11285         modify domain state.
11286
11287 2008-06-05  Andreas Färber  <andreas.faerber@web.de>
11288
11289         * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11290         * Makefile.am (pedump_LDADD): Post-process object files and
11291         add dtrace-generated object file, if necessary.
11292
11293         Code is contributed under MIT/X11 license.
11294
11295 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11296
11297         * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11298
11299 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11300
11301         * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11302
11303 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11304
11305         * threads.c: Try to free everything from the delayed free table
11306         when shutting down threads, and set the variable to NULL after the
11307         table is freed so that calling
11308         mono_thread_hazardous_try_free_all() when shutting down the root
11309         domain doesn't crash.
11310
11311 2008-06-04 Rodrigo Kumpera  <rkumpera@novell.com>
11312
11313         * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11314         the caller if resulting type was inflated.
11315
11316         * class.c (mono_class_create_from_typespec): Free the MonoType if it
11317         was inflated.
11318
11319         * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11320
11321
11322 2008-06-04  Zoltan Varga  <vargaz@gmail.com>
11323
11324         * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11325         class library tests.
11326
11327         * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume 
11328         (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11329         #396989.
11330
11331 2008-06-04  Mark Probst  <mark.probst@gmail.com>
11332
11333         * domain.c, domain-internals.h: The JIT infos are now freed by the
11334         JIT info table code.  They are freed immediately if there only a
11335         single JIT info table in circulation.  If there is more, the free
11336         is delayed via a queue.
11337
11338         * threads.c, threads-types.h: New hazard pointer function for
11339         freeing all freeable delayed items in one sitting.
11340
11341 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11342
11343         * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11344
11345         * reflection.c (typebuilder_setup_properties): Same.
11346
11347         * reflection.c (typebuilder_setup_events): Same.
11348
11349 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11350
11351         * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11352         and use it for allocating memory.
11353
11354         * reflection.c (mono_marshal_spec_from_builder): Same.
11355
11356         * reflection.c: Change code to use new signatures.
11357
11358         * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11359
11360 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11361
11362         * decimal.c (rescale128): Put back one line which was accidently commented
11363         out.
11364         
11365         * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11366         to cause crashes.
11367
11368 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11369
11370         * reflection.c (mono_reflection_generic_class_initialize): Name must
11371         be always malloc'ed so we can free it later on. Do this for field, property
11372         and event.
11373
11374         * metadata.c (free_generic_class): Free field, property and event names.
11375
11376 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11377
11378         * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11379         instead of g_memdup.
11380
11381         * reflection.c (typebuilder_setup_fields): Same.
11382
11383 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11384
11385         * decimal.c (rescale128): Optimize this function a bit more.
11386
11387 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11388
11389         * metadata.c (free_generic_class): Release some memory from
11390         SRE generic classes.
11391
11392 2008-06-03 Rodrigo Kumpera  <rkumpera@novell.com>
11393
11394         * reflection.c (mono_image_get_generic_field_token): No reference
11395         to name is kept, free it.
11396
11397         * reflection.c (mono_reflection_generic_class_initialize): Free
11398         more memory of the inflated field.
11399
11400 2008-06-03  Zoltan Varga  <vargaz@gmail.com>
11401
11402         * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11403         code.
11404
11405 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11406
11407         * reflection.c (mono_dynamic_image_free): Release memory used by
11408         MonoDynamicImage::array_methods elements.
11409
11410         * reflection.c (assembly_add_win32_resources): Release memory after
11411         encoding.
11412
11413 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11414
11415         * decimal.c (log2_32): Use an optimized version for this function too.
11416         
11417         * decimal.c (log2_64): Fix this on 32 bit machines.
11418
11419 2008-06-02 Rodrigo Kumpera  <rkumpera@novell.com>
11420
11421         * class.c (mono_dup_array_type): Implement allocation using a mempool.
11422
11423         * class.c (mono_metadata_signature_deep_dup): Same.
11424
11425         * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11426         a mempool.
11427
11428         * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11429
11430         * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11431
11432         * metadata-internals.h: Added mono_metadata_signature_dup_full.
11433
11434         * class-internals.h: Update signatures to take a MonoMemPool.
11435
11436 2008-06-02  Dick Porter  <dick@ximian.com>
11437
11438         * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage): 
11439         * icall-def.h: Add
11440         System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11441         FormatMessage API to get the error text.  Fixes bug 321827.
11442
11443 2008-06-02  Zoltan Varga  <vargaz@gmail.com>
11444
11445         * decimal.c: Add some micro optimizations to make decimal operations faster.
11446
11447 2008-06-01 Rodrigo Kumpera  <rkumpera@novell.com>
11448
11449         * reflection.c (method_encode_clauses): Take a mempool
11450         as parameter and use it to allocate the clause array.
11451
11452         * reflection.c (mono_image_get_field_on_inst_token): Free
11453         the inflated type after encoding it.
11454
11455         * reflection.c (mono_dynamic_image_free): Free each element
11456         of MonoDynamicImage::gen_params.
11457
11458         * reflection.c (reflection_methodbuilder_to_mono_method):
11459         Allocate the generic param array from the mempool.
11460         Allocate signature params from the mempool.
11461
11462         * reflection.c (mono_reflection_generic_class_initialize):
11463         Free inflated fields after been used.
11464
11465 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11466
11467         * icall.c: Reapply the memory leak fixes as they no
11468         longer make mono crash.
11469
11470 2008-05-30 Rodrigo Kumpera  <rkumpera@novell.com>
11471
11472         * reflection.c (mono_type_get_object): Don't store the suplied
11473         MonoType with type_hash. A caller which pass a type that
11474         was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11475         might end with a pointer to freed memory.
11476         The solution is to use byval_arg or this_arg from the associated
11477         MonoClass of the supplied type.
11478
11479 2008-05-29  Zoltan Varga  <vargaz@gmail.com>
11480
11481         * icall.c: Revert the rest of the last change as it breaks the build too.
11482
11483 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11484
11485         * icall.c: Revert a leak fix as it's breaking the build.
11486
11487 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11488
11489         * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11490
11491 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11492
11493         * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11494
11495 2008-05-29 Rodrigo Kumpera  <rkumpera@novell.com>
11496
11497         * icall.c: Fix some memory leaks.
11498
11499 2008-05-29  Dick Porter  <dick@ximian.com>
11500
11501         * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11502         async socket operations from the pending list when a socket
11503         closes.  Leaving it until the threadpool services the event
11504         exposes a race condition when a socket descriptor is reused.
11505         Fixes bug 377589.
11506
11507 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11508
11509         * object.c: Fix negative index check for array alocation.
11510
11511 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11512
11513         * icall.c, marshal.c: Delegate wrappers should skip visibility.
11514         This check is performed by the verifier for IL created delegates
11515         and by Delegate::CreateDelegate for programatically created ones.
11516         Fixes #372406.
11517
11518 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11519
11520         * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11521         Fix code to use mono_array_size_t instead of int.
11522
11523         Based on patch by Luis F. Ortiz.
11524         Contributed under X11 license.
11525         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11526
11527 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11528
11529         * icall.c: Added ves_icall_System_Array_GetLongLength and
11530         ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11531         arrays.
11532
11533         * icall.h: Export both new functions.
11534
11535         Based on patch by Luis F. Ortiz.
11536         Contributed under X11 license.
11537         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11538
11539 2008-05-28  Martin Baulig  <martin@ximian.com>
11540
11541         The debugger now requires exactly r103463.
11542
11543         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11544         This version is not supported by the debugger, wait for 72.
11545
11546 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11547
11548         * object.h: Changed array related functions to use
11549         mono_array_size_t instead of guint32. Forgot to commit this file.
11550
11551         Patch by Luis F. Ortiz.
11552         Contributed under X11 license.
11553         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11554
11555
11556 2008-05-28 Rodrigo Kumpera  <rkumpera@novell.com>
11557
11558         * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11559         don't define it. Use the number literal instead.
11560
11561 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11562
11563         * icall.c: Changed array related functions to use
11564         mono_array_size_t instead of guint32.
11565
11566         * icall.c (ves_icall_System_Array_GetLength): Check for length
11567         overflow under MONO_BIG_ARRAYS.
11568
11569         Based on patch by Luis F. Ortiz.
11570         Contributed under X11 license.
11571         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11572
11573 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11574
11575         * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11576
11577         Based on patch by Luis F. Ortiz.
11578         Contributed under X11 license.
11579         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11580
11581 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11582
11583         * object.c, object.h: Changed array related functions to use
11584         mono_array_size_t instead of guint32.
11585
11586         Patch by Luis F. Ortiz.
11587         Contributed under X11 license.
11588         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11589
11590 2008-05-27 Rodrigo Kumpera  <rkumpera@novell.com>
11591
11592         * object.h: Introduced mono_array_size_t typedef. This must be used
11593         in all places an array length is expected. This is 64bits wide if
11594         MONO_BIG_ARRAYS is enabled.
11595
11596         Patch by Luis F. Ortiz.
11597         Contributed under X11 license.
11598         http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11599
11600 2008-05-27  Zoltan Varga  <vargaz@gmail.com>
11601
11602         * security-manager.c class.c: Set the class exception info by calling
11603         mono_class_set_failure ().
11604
11605         * class.c (mono_class_get_exception_data): New accessor function.
11606         (mono_class_set_failure): Store exception_data in the property hash.
11607
11608         * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11609         the struct as a property.
11610
11611         * loader.c (mono_get_method_full): Store the lookup result for method
11612         tokens in method_cache, the others in methodref_cache to decrease the memory
11613         usage of hash tables.
11614
11615         * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11616         (mono_image_init): method_cache is lazy inited now.
11617
11618         * metadata-internals.h (struct _MonoImage): Change method_cache to
11619         a MonoValueHashTable, add a separate methodref_cache.
11620
11621 2008-05-27  Eyal Alaluf <eyala@mainsoft.com>
11622
11623         * number-formatter.h: Fix tables to avoid arithemtic overflow in
11624           Double.ToString as exposed by Bug #383531.
11625
11626 2008-05-26  Zoltan Varga  <vargaz@gmail.com>
11627
11628         * number-formatter.h: Make some tables static.
11629
11630         * class.c (mono_method_set_generic_container): New accessor function.
11631         (mono_method_get_generic_container): Ditto.
11632
11633         * class-internals.h (struct _MonoMethod): Remove rarely used 
11634         'generic_container' field, store it in the property hash instead. Add 
11635         'is_generic' boolean field instead.
11636
11637         * image.c (mono_image_init): Initialize property_hash.
11638         (mono_image_close): Destroy property_hash.
11639
11640         * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11641         hold rarely used fields of runtime structures belonging to this image.
11642
11643         * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11644         to get/set method->generic_container.
11645
11646         * loader.c (mono_get_method_from_token): Avoid loading the method header for
11647         generic methods.
11648
11649 2008-05-25  Zoltan Varga  <vargaz@gmail.com>
11650
11651         * class.c (mono_class_inflate_generic_method_full): Don't increase
11652         mono_stats.inflated_method_count for methods found in the cache.
11653
11654         * threads.c (mono_thread_request_interruption): Add a comment about 
11655         QueueUserAPC ().
11656
11657 2008-05-24  Zoltan Varga  <vargaz@gmail.com>
11658
11659         * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11660         interface_offsets_packed table.
11661         
11662         * class.c (mono_class_init): Remove some dead code.
11663
11664         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11665         mono_class_setup_vtable () when CAS is active to detect security problems.
11666
11667 2008-05-23 Rodrigo Kumpera  <rkumpera@novell.com>
11668
11669         * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11670
11671         * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11672         parameters as it's irrelevant for delegate checking.
11673
11674 2008-05-23  Zoltan Varga  <vargaz@gmail.com>
11675
11676         * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11677
11678         * class.c (mono_class_init): Control the creation of a generic vtable using
11679         a global which is true by default, but set to false by the runtime startup code.
11680         
11681         * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11682         Disabled for now since it breaks the embedding API.
11683         Move the setup of class->methods for arrays to mono_class_setup_methods ().
11684         (mono_class_setup_methods): Add a memory barrier.
11685
11686         * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11687         when mono_class_init () doesn't compute the generic vtable.
11688         
11689 2008-05-23  Massimiliano Mantione  <massi@ximian.com>
11690         * profiler.c: Added mono_profiler_install_statistical_call_chain,
11691         mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11692         to support call chains (backtrace) in the stat profiler.
11693         * profiler.c, profiler-private.h: Likewise.
11694
11695 2008-05-22  Mark Probst  <mark.probst@gmail.com>
11696
11697         * generic-sharing.c: Init generic class when a method of it is
11698         requested via a runtime generic context.
11699
11700 2008-05-22  Zoltan Varga  <vargaz@gmail.com>
11701
11702         * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11703
11704         * reflection.c (mono_type_get_object): Add a FIXME.
11705
11706         * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11707
11708         * class.c (mono_class_get_method_by_index): New helper function, returning an
11709         entry in the class->methods array.
11710
11711 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11712
11713         * class.c (mono_class_init): Only do the array optimization for szarrays. 
11714         Avoid creating a generic vtable for generic instances as well.
11715         (mono_class_get_method_from_name_flags): Don't search in the metadata for
11716         generic instances.
11717
11718 2008-05-21 Rodrigo Kumpera  <rkumpera@novell.com>
11719
11720         * loader.c (mono_get_method_constrained): Inflate the signature
11721         with class context. Fix #325283.
11722
11723 2008-05-21  Zoltan Varga  <vargaz@gmail.com>
11724
11725         * object.c (mono_class_create_runtime_vtable): Add a comment.
11726
11727         * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11728         where needed.
11729         (setup_interface_offsets): Handle the case when this is called twice for arrays.
11730         (mono_class_setup_vtable_general): Add an assert.
11731         (mono_class_init): Avoid creating a generic vtable for arrays.
11732
11733         * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11734         here, let mono_class_init () do that.
11735
11736         * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11737         interfaces in mscorlib.
11738
11739         * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11740         interfaces. Add some comments.
11741         (mono_class_init): Call mono_class_setup_methods () here since it is no
11742         longer called by mono_class_setup_vtable ().
11743
11744         * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11745         not set in class->vtable.
11746         (mono_class_create_runtime_vtable): Reenable the disabled code.
11747
11748         * object.c (mono_class_create_runtime_vtable): Disable the last change for
11749         now as it causes some test failures.
11750
11751         * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11752         if using the vtable trampoline. Also remove some strange code which put the
11753         generic methods themselves into the vtable slots. Remove the AOT init_vtable
11754         stuff as it is no longer needed.
11755
11756 2008-05-19 Rodrigo Kumpera  <rkumpera@novell.com>
11757
11758         * pedump.c: Give make --verify all option check code as well.
11759         Using --verify code won't check for metadata now.
11760
11761 2008-05-19  Martin Baulig  <martin@ximian.com>
11762
11763         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11764
11765         * mono-debug.c
11766         (_mono_debug_using_mono_debugger): New global variable; it's set
11767         directly by the debugger, so mono_debug_using_mono_debugger() also
11768         works after attaching.
11769
11770 2008-05-18 Rodrigo Kumpera  <rkumpera@novell.com>
11771
11772         * object.c (mono_class_create_runtime_vtable): Use memory barriers
11773         as we do double checked locking on MonoClass::runtime_info and
11774         MonoClassRuntimeInfo::domain_vtables.
11775
11776 2008-05-18  Zoltan Varga  <vargaz@gmail.com>
11777
11778         * debug-helpers.c (print_field_value): Fix a warning.
11779
11780 2008-05-16  Zoltan Varga  <vargaz@gmail.com>
11781
11782         * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11783         set in the AOT case.
11784
11785 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11786
11787         * class.c (mono_class_setup_vtable_general): Use memory barriers
11788         as we do double checked locking on MonoClass::vtable.
11789
11790 2008-05-16 Rodrigo Kumpera  <rkumpera@novell.com>
11791
11792         * reflection.c (resolve_object): Inflate only if the generic context
11793         is not null. Fixes #389886.
11794
11795 2008-05-15  Jonathan Chambers  <joncham@gmail.com>
11796
11797         * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11798         instead of g_free.
11799
11800         Code is contributed under MIT/X11 license.
11801
11802 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11803
11804         * class.c: Revert unrelated change.
11805
11806 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11807
11808         * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11809         a generic instantiation, use mono_class_from_mono_type instead of playing
11810         with MonoType directly.
11811
11812 2008-05-14 Rodrigo Kumpera  <rkumpera@novell.com>
11813
11814         * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11815         checks must ignore generic instantiations, so mono_class_has_parent is not
11816         suitable. Fixes #390128.
11817
11818 2008-05-14  Zoltan Varga  <vargaz@gmail.com>
11819
11820         * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11821         it to avoid registering tokens during metadata generation. Fixes #390023.
11822
11823 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11824
11825         * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11826         consistent.
11827
11828         Contributed under MIT/X11 license.
11829
11830 2008-05-14  Kornél Pál  <kornelpal@gmail.com>
11831
11832         * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11833         even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11834         to fixup the EXE image.
11835         (mono_cleanup): Use mono_close_exe_image.
11836         (mono_close_exe_image): New function.
11837         * image.c: Include "marshal.h".
11838         (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11839         (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11840         counting when the image is loaded outside of mono_image_open_full. Set status
11841         based on GetLastError.
11842         * coree.c: Include required headers. Add init_from_coree.
11843         (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11844         mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11845         (_CorExeMain): Set init_from_coree.
11846         (CorExitProcess): Only call ExitProcess for now.
11847         (CorBindToRuntimeEx): New stub implementation.
11848         (CorBindToRuntime): New function.
11849         (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11850         (MonoFixupExe): ILONLY executables require no fixups.
11851         (mono_set_act_ctx): New function to set activation context.
11852         (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.  
11853         * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11854         Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11855         mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11856         as MONO_INTERNAL.
11857         * domain-internals.h: Add mono_close_exe_image.
11858
11859         Contributed under MIT/X11 license.
11860
11861 2008-05-13 Rodrigo Kumpera  <rkumpera@novell.com>
11862
11863         * metadata.c (mono_metadata_compute_size): Correctly calculate field
11864         size for generic param and event tables. Fixes #388977.
11865
11866 2008-05-13  Zoltan Varga  <vargaz@gmail.com>
11867
11868         * loader.c (mono_method_signature): Use memory barriers because of the double
11869         checked locking pattern.
11870
11871         * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11872         aborting or aborted as well. Fixes #376391.
11873         
11874         * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11875         existing runtime state in the Suspend handler during shutdown.
11876
11877 2008-05-12  Zoltan Varga  <vargaz@gmail.com>
11878
11879         * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11880
11881         * threads.c (mono_thread_suspend_all_other_threads): Add support for threads 
11882         which are starting up or shutting down.
11883
11884         * threads.c (mono_threads_set_shutting_down): Don't return a value since
11885         this function never returns if the runtime is already shutting down.
11886
11887         * icall.c (ves_icall_System_Environment_Exit): Update after 
11888         mono_threads_set_shutting_down () signature change.
11889         
11890 2008-05-09 Rodrigo Kumpera  <rkumpera@novell.com>
11891
11892         * class.c: Added can_access_instantiation to verify if the instantiation
11893         is visible. Fix access check for nested types as they returned TRUE
11894         before doing type and generic instantiation visibility checks.
11895
11896 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11897
11898         * reflection.c (mono_reflection_create_generic_class): The created type
11899         must have a different container from its TypeBuilder. Otherwise they
11900         will end sharing generic arguments, which is wrong.
11901
11902         Due to the sharing, making a generic instance of the created type using
11903         the TypeBuider generic arguments resulted in the generic type definition
11904         been returned, which is wrong as well.
11905
11906         As a bonus the code was leaking the type_params array. This memory should
11907         be allocated from the image mempool.
11908
11909         This fixes bug #354047.
11910
11911 2008-05-08 Rodrigo Kumpera  <rkumpera@novell.com>
11912
11913         * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11914         to here         as they are now used in assembly.c new code.
11915         Added a skipverification flag to MonoAssembly.
11916         New internal function mono_assembly_has_skip_verification.
11917
11918         * assembly.c: New function mono_assembly_has_skip_verification. It checks
11919         if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11920         part of #387274.
11921
11922 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11923
11924         * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11925         needed. Fixes #387034.
11926
11927         * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11928
11929 2008-05-06  Miguel de Icaza  <miguel@novell.com>
11930
11931         * assembly.c (mono_assembly_load_reference): Prevent crash while
11932         disassembling Silverlight 2.0 executables while we still do not
11933         have GACed libraries.
11934
11935 2008-05-07  Zoltan Varga  <vargaz@gmail.com>
11936
11937         * reflection.c: Special case generic type definitions as well. Fixes #383444.
11938
11939 2008-05-06  Zoltan Varga  <vargaz@gmail.com>
11940
11941         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11942         of the dynamic case. Fixes #387404.
11943
11944 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11945
11946         *verify.c (mono_verifier_is_class_full_trust): If under
11947         verify_all and the verifier mode was not set, only
11948         gac and corlib types are fulltrust. This makes --verify-all
11949         usable to detect unverifiable code, which is the expected
11950         use case.
11951
11952 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11953
11954         * verify.h: Ops, commited the header with debug
11955         enabled.
11956
11957 2008-05-06 Rodrigo Kumpera  <rkumpera@novell.com>
11958
11959         * verify.c (merge_stack): Use the new value on unverifiable
11960         stack merges.
11961
11962         * verify.c (verify_type_compatibility_full): Comparison
11963         of nullable types can't use mono_class_is_assignable_from.
11964
11965         * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
11966         that makes all verification errors be reported.
11967
11968         * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
11969         mono_method_verify.
11970
11971 2008-05-05  Robert Jordan  <robertj@gmx.net>
11972
11973         * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
11974         support for value types. See #386415.
11975
11976         * object.c: comments.
11977
11978         Code is contributed under MIT/X11 license.
11979
11980 2008-05-05  Martin Baulig  <martin@ximian.com>
11981
11982         * debug-mono-symfile.h
11983         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
11984         for old pre-terrania symbol files.
11985
11986 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11987
11988         * mono-config.c: Add ppc64 architecture.
11989
11990         Code is contributed under MIT/X11 license.
11991
11992 2008-05-05  Andreas Färber  <andreas.faerber@web.de>
11993
11994         * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
11995           PPC64 uses function descriptors as well.
11996
11997         Code is contributed under MIT/X11 license.
11998
11999 2008-05-04  Zoltan Varga  <vargaz@gmail.com>
12000
12001         * object.c (compute_class_bitmap): Ignore literal static fields.
12002
12003         * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12004         var has an invalid format.
12005         (describe_ptr): Add some sanity checks for the vtable.
12006         (add_nursery_frag): Clear unused nursery fragments.
12007         (major_collection): Clear all remaining nursery fragments.
12008
12009 2008-05-03  Robert Jordan  <robertj@gmx.net>
12010
12011         * image.c, metadata-internals.h: add thunk_invoke_cache.
12012
12013         * marshal.c, marshal.h: implement
12014         mono_marshal_get_thunk_invoke_wrapper ().
12015
12016         * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12017
12018         Code is contributed under MIT/X11 license.
12019
12020 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12021
12022         * verify.c (do_leave): Empty the stack.
12023
12024 2008-05-02 Rodrigo Kumpera  <rkumpera@novell.com>
12025
12026         * class.c (mono_class_is_assignable_from): Variance
12027         doesn't work between reference and value types. For example,
12028         given type C<T+>, C<int32> is not assignable to C<object>.
12029         Break the argument checking loop on first error. 
12030
12031 2008-05-02  Atsushi Enomoto  <atsushi@ximian.com>
12032
12033         * icall.c : base64_to_byte_array() needs some more strict
12034           check for sequence of '=' characters. Patch by Santa
12035           Marta (http://deee.g.hatena.ne.jp/santamarta).
12036
12037           Contributed under MIT/X11 license.
12038           (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12039
12040 2008-05-02  Jonathan Chambers  <joncham@gmail.com>
12041
12042         * domain.c: Disable LoadLibrary support to fix Win32 build.
12043
12044         Code is contributed under MIT/X11 license.
12045
12046 2008-05-02  Zoltan Varga  <vargaz@gmail.com>
12047
12048         * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12049         to help with cache behaviour.
12050
12051 2008-05-01  Miguel de Icaza  <miguel@novell.com>
12052
12053         * appdomain.c (mono_domain_from_appdomain): Add new accessor
12054         method. 
12055
12056 2008-05-01  Zoltan Varga  <vargaz@gmail.com>
12057
12058         * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12059
12060 2008-05-01  Dick Porter  <dick@ximian.com>
12061
12062         * process.c (process_get_fileversion): Only pass 16 bits of
12063         language ID to VerLanguageName.  Fixes bug 381204.
12064
12065 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12066
12067         * verify.c (mono_method_verify): Fix the comparison
12068         operator for code bounds check.
12069
12070 2008-04-30 Rodrigo Kumpera  <rkumpera@novell.com>
12071
12072         * verify.c (mono_method_verify): Check the bounds of
12073         all access of the code array.
12074
12075 2008-04-29  Kornél Pál  <kornelpal@gmail.com>
12076
12077         * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12078
12079 2008-04-28  Zoltan Varga  <vargaz@gmail.com>
12080
12081         * image.c (mono_image_strong_name_position): Fix return value when the rva is
12082         not valid.
12083
12084 2008-04-28  Kornél Pál  <kornelpal@gmail.com>
12085
12086         * loader.c (mono_get_method_from_token, mono_method_signature): Add
12087         support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12088         * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12089         fixup main EXE images when using mono.exe for mixed-mode assembly support.
12090         * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12091         mono_runtime_load.
12092         * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12093         runtime initialization from metadata.
12094         * assembly.c: Remove obsolete ceGetModuleFileNameA.
12095         (mono_set_rootdir): Use mono_get_module_file_name.
12096         (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12097         handles.
12098         * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12099         * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12100         * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12101         MonoCLIImageInfo. Add support for module handles.
12102         (load_cli_header): Update mono_cli_rva_image_map signature.
12103         (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12104         (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12105         (mono_image_rva_map): Add support for module handles.
12106         (mono_image_ensure_section_idx): Add support for module handles.
12107         (mono_image_close): Add support for module handles.
12108         (do_load_header): Add support for module handles.
12109         (mono_image_open_from_module_handle): New function for internal use.
12110         (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12111         (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12112         (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12113         handles.
12114         (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12115         * image.h: Add mono_image_fixup_vtable.
12116         * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12117         support.
12118         * coree.h: New file.
12119         * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12120         unsupported native code.
12121         (mono_marshal_set_callconv_from_modopt): New function splitted from
12122         mono_marshal_get_managed_wrapper.
12123         (mono_marshal_get_managed_wrapper): Use
12124         mono_marshal_set_callconv_from_modopt.
12125         (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12126         * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12127         * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12128         that results in a deadlock when the runtime is loaded in _CorDllMain.
12129         * Makefile.am: Add coree.c and coree.h.
12130
12131         Contributed under MIT/X11 license.
12132
12133 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12134
12135         * generic-sharing.c: Search for type arguments in array element
12136         types as well.
12137
12138 2008-04-28  Mark Probst  <mark.probst@gmail.com>
12139
12140         * class-internals.h, generic-sharing.c: New, small runtime generic context.
12141
12142         * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12143
12144         * object.c: Don't setup the RGCTX when the vtable is created,
12145         because we're setting it up lazily now.
12146
12147 2008-04-26  Zoltan Varga  <vargaz@gmail.com>
12148
12149         * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix 
12150         64 bit support.
12151
12152 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12153
12154         * verify.c (verify_class_for_overlapping_reference_fields): 
12155         If class is under fulltrust allow reference types to overllap
12156         if they have the same RVA.
12157
12158 2008-04-24 Rodrigo Kumpera  <rkumpera@novell.com>
12159
12160         * pedump.c: Added new flag valid-only, that makes the verifier
12161         behaves just like --security=validil. It won't fail type load
12162         due to unverifiable restrictions.
12163
12164 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12165
12166         * class-internals.h (struct MonoMethod): Added a verification_success
12167         field to cache verifier executions. Reduced MonoMethod:slot size by
12168         one bit.
12169
12170 2008-04-23  Zoltan Varga  <vargaz@gmail.com>
12171
12172         * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12173         instead of a 'vt' argument to save an indirection and to allow these to be used
12174         for valuetypes.
12175         (scan_vtype): New helper function to scan an area using a gc descriptor.
12176         (mono_gc_wbarrier_value_copy): Implement this.
12177         (handle_remset): Add support for REMSET_VTYPE.
12178         (find_in_remset_loc): Ditto.
12179         (mono_gc_base_init): Allow some debugging options to be controlled through the
12180         use of the MONO_GC_DEBUG env variable.
12181         (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12182         (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12183
12184 2008-04-23  Martin Baulig  <martin@ximian.com>
12185
12186         * domain.c (mono_domain_create): Move the call to
12187         mono_debug_domain_create() down, after allocating the domain id.
12188
12189 2008-04-23 Rodrigo Kumpera  <rkumpera@novell.com>
12190
12191         verify.c (verify_class_for_overlapping_reference_fields): Skip
12192         static fields while verifying for overlapping fields as they
12193         don't matter at all.
12194
12195 2008-04-23  Marek Habersack  <mhabersack@novell.com>
12196
12197         * domain-internals.h: added a declaration of
12198         mono_make_shadow_copy.
12199
12200         * assembly.c (mono_assembly_open_full): shadow copying of
12201         assemblies moved to here, so that all the assemblies within the
12202         application domain's private binary directories can be
12203         processed. Fixes bug #380546
12204
12205         * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12206         mono_make_shadow_copy and made non-static. The decision whether
12207         to shadow-copy an assembly is made based on its location - it's
12208         copied if it's in one of the private application domain binary
12209         directories and its different to the target file in the shadow
12210         directory. Fixes bug #380546
12211
12212 2008-04-22  Zoltan Varga  <vargaz@gmail.com>
12213
12214         * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12215
12216         * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12217         types.
12218
12219         * reflection.c (mono_image_create_token): Handle 
12220         Method/ConstructorOnTypeBuilderInst.
12221         (resolve_object): Ditto.
12222         (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12223         so it can be called from resolve_object. Also handle the case when the inflated
12224         class already has its methods setup.
12225
12226 2008-04-21  Martin Baulig  <martin@ximian.com>
12227
12228         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12229
12230 2008-04-20  Geoff Norton  <gnorton@novell.com>
12231
12232         * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12233         pointer dereference.
12234
12235 2008-04-15  Marek Habersack  <mhabersack@novell.com>
12236
12237         * appdomain.c (try_load_from): if IOMAP is in effect, call the
12238         portability API to look up the assembly file. Fixes behavior in
12239         situations when the application has a bin/ directory, but the
12240         assembly search patch refers to Bin/ (and thus the requested file
12241         name is Bin/SomeLibrary.dll). Fixes bug #379888
12242
12243 2008-04-15 Rodrigo Kumpera  <rkumpera@novell.com>
12244
12245         verify.c (mono_type_is_generic_argument): Extracted this check
12246         from a dozen places to here.
12247
12248         verify.c: Fixed all issues related to boxing generic arguments
12249         and their constraints.
12250
12251 2008-04-14 Rodrigo Kumpera  <rkumpera@novell.com>
12252
12253         verify.c (mono_class_interface_implements_interface): Fix win32 build.
12254
12255 2008-04-14  Zoltan Varga  <vargaz@gmail.com>
12256
12257         * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12258         isn't finished yet. Fixes #363447.
12259
12260 2008-04-13  Zoltan Varga  <vargaz@gmail.com>
12261
12262         * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12263         Fixes #346419.
12264
12265 2008-04-13  Jb Evain  <jbevain@novell.com>
12266
12267         * domain.c: update the 2.1 profile versions.
12268         Merged from the Moonlight 2 branch.
12269
12270 2008-04-12  Zoltan Varga  <vargaz@gmail.com>
12271
12272         * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12273         mscorlibs for the non-refonly case as well.
12274
12275         * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12276         in mono_assembly_load_from_full (). Fixes #378924.
12277
12278 2008-04-11  Geoff Norton  <gnorton@novell.com>
12279
12280         * icall.c: The global extern environ doesn't exist on Mac.  We
12281         need to call NSGetEnviron instead.
12282
12283 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12284
12285         verify.c: Add generic method constraint verification.
12286
12287 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12288
12289         class.c (mono_class_inflate_generic_method_full): Add a long
12290         explanation to the is_mb_open hack. Remove the FIXME.
12291
12292 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12293
12294         * verify.c (mono_method_verify): Mark all unknown opcodes
12295         as invalid. Mark jmp as unverifiable.
12296
12297 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12298
12299         * verify.c: Add code to do type constraint verification on class instances.
12300
12301         * verify.c (mono_verifier_verify_class): Use the type constraint 
12302         verification code.
12303
12304 2008-04-10 Rodrigo Kumpera  <rkumpera@novell.com>
12305
12306         * class.c (mono_class_get_field_default_value): Don't pass cindex
12307         as hint to mono_metadata_get_constant_index. The local is not initialized
12308         and should contain garbage most of the time. This could only work
12309         with a lot of luck.
12310
12311 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12312
12313         * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12314
12315 2008-04-09 Rodrigo Kumpera  <rkumpera@novell.com>
12316
12317         * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12318
12319         * class.c (mono_class_from_generic_parameter): Save the token of the
12320         generic param in MonoClass::sizes.generic_param_token.
12321
12322         * reflection.c (mono_custom_attrs_from_class): If the class type is
12323         VAR or MVAR retrieve the attributes of the generic param.
12324
12325 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12326
12327         * class.c (mono_class_init): Do class verification if the verifier
12328         is enabled.
12329
12330 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12331
12332         * verify-internal.h: Added mono_verifier_verify_class.
12333
12334         * verify.c: Added mono_verifier_verify_class. It checks for
12335         classes with explicit layout that have overlapping reference fields.
12336
12337         * pedump.c: Init the verifier state prior to verification. Fixed
12338         command line arguments.
12339
12340 2008-04-08 Rodrigo Kumpera  <rkumpera@novell.com>
12341
12342         * Makefile.am: Added verify-internals.h, hopefully fix the build.
12343
12344 2008-04-08  Zoltan Varga  <vargaz@gmail.com>
12345
12346         * verify-internals.h: Fix a warning.
12347
12348 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12349
12350         * verify-internals.h: New header with the verifier configuration
12351         extracted from mini.c.
12352
12353         * verify.c: Implemented the new functions exported by verify-internals.h.
12354
12355 2008-04-07 Rodrigo Kumpera  <rkumpera@novell.com>
12356
12357         * verify.c: Add proper verification of ckfinite.
12358
12359 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12360
12361         * verify.c (do_conversion): Improved error message to something
12362         more meanfull.
12363
12364         * verify.c (check_is_valid_type_for_field_ops): Fix to work
12365         with primitive types.
12366
12367 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12368
12369         * verify.c: Added tail prefix checking. Marked icall
12370         as unverifible.
12371
12372 2008-04-04 Rodrigo Kumpera  <rkumpera@novell.com>
12373
12374         * verify.c: Fix the detection of branches to the middle
12375         of an instruction.
12376
12377 2008-04-03 Rodrigo Kumpera  <rkumpera@novell.com>
12378
12379         * verify.c: Implemented verification of volatile. and
12380         unaligned. prefix. Check if a type is valid after retrieving it.
12381
12382 2008-04-01  Dick Porter  <dick@ximian.com>
12383
12384         * process.c (process_get_fileversion): If there's no string block,
12385         set the file language to en_US.  Fixes the other new part of bug
12386         374600.
12387
12388 2008-03-29 Rodrigo Kumpera  <rkumpera@novell.com>
12389
12390         * class.c: New functions mono_method_can_access_field_full and
12391         mono_method_can_access_method_full. They perform type visibility
12392         and type site check.
12393
12394         * class-internal.h: Added exported functions.
12395
12396         * verify.c: Use new functions to implement proper visibility checks.
12397
12398 2008-03-29  Zoltan Varga  <vargaz@gmail.com>
12399
12400         * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12401
12402 2008-03-28  Dick Porter  <dick@ximian.com>
12403
12404         * process.c (process_get_fileversion): Use the first language ID
12405         we see, rather than insisting on an invariant language.  Fixes bug
12406         374600.
12407
12408 2008-03-28  Zoltan Varga  <vargaz@gmail.com>
12409
12410         * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12411         the streams to fix reading of invalid memory later.
12412
12413         * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12414         to ease debugging.
12415
12416 2008-03-26  Zoltan Varga  <vargaz@gmail.com>
12417
12418         * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12419         (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12420
12421 2008-03-26  Massimiliano Mantione  <massi@ximian.com>
12422         * threads.h: Added MonoThreadManageCallback type and
12423         mono_thread_set_manage_callback prototype
12424         * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12425         (used to store the mono_thread_manage callback).
12426         * threads.c: Added mono_thread_set_manage_callback, and handle
12427         "MonoThread->manage_callback" in build_wait_tids.
12428
12429 2008-03-26  Dick Porter  <dick@ximian.com>
12430
12431         * process.c (process_get_fileversion): Set FileVersionInfo strings
12432         to Empty when the resource doesn't have the particular info.
12433         Fixes bug 355717.
12434
12435 2008-03-25 Rodrigo Kumpera  <rkumpera@novell.com>
12436
12437         * verify.c (mono_method_verify): Proper prefix validation.
12438
12439 2008-03-25  Zoltan Varga  <vargaz@gmail.com>
12440
12441         * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12442         itself in a separate argument instead of throwing them. Fixes #373448.
12443
12444         * appdomain.c: Bump corlib version.
12445
12446 2008-03-24 Rodrigo Kumpera  <rkumpera@novell.com>
12447
12448         * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12449
12450 2008-03-20  Kornél Pál  <kornelpal@gmail.com>
12451
12452         * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12453         version macros.
12454
12455 2008-03-20  Mark Probst  <mark.probst@gmail.com>
12456
12457         * generic-sharing.c, class-internals.h: Code for putting
12458         reflection types into the runtime generic context.
12459
12460 2008-03-19 Rodrigo Kumpera  <rkumpera@novell.com>
12461
12462         * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12463         Fixes #340662. 
12464
12465
12466 2008-03-17 Rodrigo Kumpera  <rkumpera@novell.com>
12467
12468         * verify.c (VerifyContext): Added instruction prefix data to the struct.
12469
12470         * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12471
12472         * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12473
12474         * verify.c (do_cast): Let the result value keep the boxed status.
12475
12476         * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12477
12478 2008-03-17  Jb Evain  <jbevain@novell.com>
12479
12480         * reflection.c: when running on a 2.0 runtime, emit
12481         unconditionally the #~ header version as 2.0, and the
12482         CLI header version as 2.5, for symmetry's sake with csc.
12483
12484 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12485
12486         * class.c: Remove the unused cache_interface_offsets stuff.
12487
12488         * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12489         profiler.c: Fix warnings.
12490
12491 2008-03-16  Mark Probst  <mark.probst@gmail.com>
12492
12493         * generic-sharing.c, class-internals.h: Support for putting
12494         methods into the runtime generic context.
12495
12496 2008-03-16  Zoltan Varga  <vargaz@gmail.com>
12497
12498         * class.c (mono_class_setup_fields): Ignore calls made to this function for
12499         classes which are generic instances of not-yet finished typebuilders. Fixes
12500         #351172.
12501
12502         * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12503
12504 2008-03-15  Zoltan Varga  <vargaz@gmail.com>
12505
12506         * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12507
12508         * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12509         field, replace it with a hash table in MonoDynamicImage.
12510
12511         * reflection.c (inflate_mono_method): Access the generic definition object from
12512         image->generic_def_objects instead of imethod->reflection_info.
12513
12514         * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto. 
12515
12516         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12517         
12518         * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12519         function in reflection.c so it is easier to keep in sync with the dynamic image
12520         creation code.
12521
12522         * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12523         mono_image_close ().
12524
12525 2008-03-15  Mark Probst  <mark.probst@gmail.com>
12526
12527         * class.c (mono_class_generic_sharing_enabled): Disable generic
12528         sharing for all architectures except AMD64 and x86 to fix build.
12529
12530 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12531
12532         * verify.c: Use the generic definition MonoGenericContext when available.
12533         Remove code for checking generics instance compatibility in favor of
12534         mono_class_is_assignable_from.
12535
12536 2008-03-14  Mark Probst  <mark.probst@gmail.com>
12537
12538         * marshal.c, marshal.h, metadata-internals.h, image.c,
12539         wrapper-types.h: New wrapper for invoking a shared static method
12540         without having to pass the runtime generic context argument.
12541
12542 2008-03-14 Rodrigo Kumpera  <rkumpera@novell.com>
12543
12544         * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12545
12546 2008-03-14  Zoltan Varga  <vargaz@gmail.com>
12547
12548         * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12549         
12550         * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12551         create a token from a FieldOnTypeBuilderInst.
12552         (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12553         (resolve_object): Ditto.
12554
12555         * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12556         mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12557
12558 2008-03-14  Martin Baulig  <martin@ximian.com>
12559
12560         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12561
12562         * debug-mono-symfile.h
12563         (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12564         (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12565
12566 2008-03-10  Martin Baulig  <martin@ximian.com>
12567
12568         * debug-mono-symfile.h
12569         (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12570         `lexical_block_table_offset'.
12571         (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12572         `lexical_blocks'.
12573         (MonoSymbolFile): Added `version'.
12574
12575         * mono-debug.h
12576         (MonoDebugLexicalBlockEntry): Removed.
12577         (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12578         `lexical_blocks'.
12579
12580         * mono-debug.c (mono_debug_add_method): Don't compute lexical
12581         blocks here; the debugger now does this internally.
12582
12583 2008-02-27  Martin Baulig  <martin@ximian.com>
12584
12585         * object.c (mono_runtime_exec_main): Call
12586         `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12587         `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12588
12589 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12590
12591         * verify.c (verify_type_compatibility_full): Allow native int to be converted
12592         to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12593
12594 2008-03-12 Rodrigo Kumpera  <rkumpera@novell.com>
12595
12596         * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12597         ldftn with a virtual method.
12598
12599 2008-03-13  Geoff Norton  <gnorton@novell.com>
12600
12601         * decimal.c:  Only include memory.h if the platform has it.
12602
12603 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12604
12605         * assembly.c, class.c, metadata-internals.h: make sure public key
12606         tokesns are compared in a case-insensitive way. Also, all
12607         the lookups in the GAC use a lowercase public key token
12608         (gaacutil already does the lowercasing on install). Fixes
12609         bug #369541.
12610
12611 2008-03-11 Rodrigo Kumpera  <rkumpera@novell.com>
12612
12613         * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12614         and return value.
12615
12616 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12617
12618         * image.c: when someone loads a mscorlib from a file, return the
12619         currently loaded mscorlib (fixes bug #369253).
12620
12621 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12622
12623         * class.c: handle types with no parents by forcing them to have
12624         System.Object as a parent and marking them as broken (this currently
12625         allows the first part of bug #369173 to work as well, likely because
12626         we don't check for typeload exceptions everywhere yet).
12627
12628 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12629
12630         * class.c: more complete check that types belong to corlib
12631         (fixes second part of bug #369173).
12632
12633 2007-03-10  Bill Holmes  <billholmes54@gmail.com>
12634
12635         * generic-sharing.c:  Including glib.h for the MSVC builds to define
12636           "inline" to "__inline" before including mono-membar.h.
12637           
12638         * mono-perfcounters.c:  Adding HAVE_SYS_TIME_H check for MSVC builds.
12639           Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for 
12640           MSVC builds.
12641
12642         Contributed under MIT/X11 license.
12643
12644 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12645
12646         * verify.c (do_invoke_method): Remove return type validation.
12647
12648         * verify.c (do_ret): Do return type validation at return site instead of
12649         call site.
12650
12651 2008-03-10 Rodrigo Kumpera  <rkumpera@novell.com>
12652
12653         * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12654
12655         * verify.c: Some todos cleaned and improved a few error messages.
12656
12657 2008-03-08  Zoltan Varga  <vargaz@gmail.com>
12658
12659         * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12660
12661 2008-03-07  Zoltan Varga  <vargaz@gmail.com>
12662
12663         * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12664         system types correctly.
12665
12666         * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12667         function.
12668
12669 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12670
12671         * assembly.c (build_assembly_name): Fix a warning.
12672
12673 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12674
12675         * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12676         the called function takes an object type argument. Fixes storing or
12677         valuetypes across remoting as well as reducing memory usage.
12678         * image.c, metadata-internals.h: remove now unused ldfld_remote and
12679         stfld_remote wrapper caches.
12680
12681 2008-03-06  Zoltan Varga  <vargaz@gmail.com>
12682
12683         * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12684         is not found.
12685
12686         * reflection.c (mono_image_register_token): New helper function to save
12687         a token->object mapping.        
12688
12689         * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12690         managed code.
12691
12692         * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12693         one dimension arrays. Fixes #367670.
12694         (mono_reflection_get_type_internal): Ditto.
12695
12696 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12697
12698         * marshal.c: mono_load_remote_field_new() always returns object.
12699         so use the proper signature (fixes bug #366445).
12700
12701 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12702         
12703         * class-internals.h (MonoMethod): Remove unused uses_this flag, 
12704         add an 'inline_failure' flag instead.
12705
12706 2008-03-04  Mark Probst  <mark.probst@gmail.com>
12707
12708         * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12709         with a new structure, MonoGenericJitInfo, in the MonoJitInfo.  It
12710         contains the location of "this", used for exception handling.
12711
12712 2008-03-04  Zoltan Varga  <vargaz@gmail.com>
12713
12714         * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12715         their size on all platforms for perf reasons.
12716
12717 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12718
12719         * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12720         object-internal.h
12721
12722         * object-internal.h: Same.
12723
12724 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12725
12726         * reflection.h: Fix the build I just broke.
12727
12728 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12729
12730         * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12731         Test if a token is valid, this remove explicit usage of 
12732         MonoDynamicImage::tokens from the verifier code.
12733
12734         * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12735
12736         * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12737         instead of direct access to MonoDynamicImage::tokens.
12738
12739 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12740
12741         * verify.c (token_bounds_check): Fix the build I just broke.
12742
12743 2008-03-03 Rodrigo Kumpera  <rkumpera@novell.com>
12744
12745         * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12746
12747         * verify.c (verifier_load_method): Fixed the errors message.
12748
12749         * verify.c (mono_method_verify): Fixed a debug message.
12750
12751 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12752
12753         * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12754         mono-perfcounters.h, class-internals.h: support for predefined
12755         writable counters, query of categories and counters, bugfixes.
12756
12757 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12758
12759         * verify.c (do_refanytype): Verify the refanytype opcode.
12760
12761         * verify.c (mono_method_verify): Use do_refanytype.
12762
12763 2008-02-28 Rodrigo Kumpera  <rkumpera@novell.com>
12764
12765         * verify.c (do_mkrefany): Verify the mkrefany opcode.
12766
12767         * verify.c (mono_method_verify): Use do_mkrefany.
12768
12769 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12770
12771         * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12772         mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12773         implementation.
12774
12775 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12776
12777         * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12778         the type load exception.
12779
12780 2008-02-27 Rodrigo Kumpera  <rkumpera@novell.com>
12781
12782         * verify.c: Added a few FIXME for method signatures
12783
12784         * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12785         of mono_method_get_signature and get vararg call working. Removed unused
12786         checks for return value.
12787
12788         * verify.c (do_refanyval): Verify the refanyval opcode.
12789
12790         * verify.c (mono_method_verify): Implemented verification of arglist and
12791         use do_refanyval.
12792
12793 2008-02-27  Zoltan Varga  <vargaz@gmail.com>
12794
12795         * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12796         vtypes to marshal.c.
12797
12798         * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12799         it works for AOT as well.
12800
12801 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12802
12803         * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12804         with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12805         the system time is adjusted.
12806
12807 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12808
12809         * icall.c, icall-def.h: use the new time functions (fixes the
12810         non-monotonic behaviour of TickCount).
12811
12812 2008-02-26  Zoltan Varga  <vargaz@gmail.com>
12813
12814         * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12815         it breaks the build.
12816         
12817         * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12818         cattr is not finished yet.
12819
12820 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12821
12822         * verify.c: Proper token validation for field, method and type.
12823
12824 2008-02-25 Rodrigo Kumpera  <rkumpera@novell.com>
12825
12826         * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12827
12828         * loader.c (method_from_memberref): Generate type load error instead of method missing
12829         if the type is not found.
12830
12831 2008-02-23  Zoltan Varga  <vargaz@gmail.com>
12832
12833         * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12834         some of the conversions caused the generation of a marshal directive exception.
12835
12836 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12837
12838         verify.c: Report which exception should be thrown by the JIT.
12839         Added a lot of FIXME notes.
12840
12841 2008-02-22  Mark Probst  <mark.probst@gmail.com>
12842
12843         * generic-sharing.c: Runtime generic context slots are not
12844         instantiated on init anymore.  Instead, provide function to do the
12845         instantiating on demand.
12846
12847         * class-internals.h: Added vtable to runtime generic context.
12848         Macros for encoding direct and indirect slot offsets in one
12849         guint32.
12850
12851 2008-02-21  Mark Probst  <mark.probst@gmail.com>
12852
12853         * object.c, generic-sharing.c: Moved some generic sharing code
12854         from object.c to generic-sharing.c.
12855
12856         * generic-sharing.c: Added support for extensible runtime generic
12857         context.
12858
12859         * metadata-internals.h: Two new hash tables in MonoImage for
12860         extensible runtime generic context support.
12861
12862         * domain.c: Unregister generic vtables upon domain unloading.
12863
12864         * image.c: Destroy new hash tables upon image unloading.
12865
12866         * metadata.c: Unregister generic subclasses upon image unloading.
12867
12868         * class-internals.h: New data structure for runtime generic
12869         context template.  New fields in the runtime generic context for
12870         extensible part.
12871
12872         * Makefile.am: Added generic-sharing.c.
12873
12874 2008-02-21 Rodrigo Kumpera  <rkumpera@novell.com>
12875
12876         icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12877         there is a pending loader exception, raise it.
12878
12879         icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
12880         same.
12881
12882         icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): 
12883         same.
12884
12885         Fixes #363450.
12886
12887 2008-02-20  Zoltan Varga  <vargaz@gmail.com>
12888
12889         * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12890
12891         * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12892         
12893         * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12894         ref-only requests for compatibility with MS.
12895
12896 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12897
12898         * reflection.c (mono_custom_attrs_from_method): Don't silently
12899         return an empty list for generic method instances.
12900         (mono_custom_attrs_from_param): Likewise.
12901
12902 2008-02-20  Rodrigo Kumpera  <rkumpera@novell.com>
12903             Raja R Harinath  <harinath@hurrynot.org>
12904
12905         Fix #354757
12906         * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12907         * class.c (mono_class_inflate_generic_method_full): Initialize it
12908         when a fully-open method is instantiated.
12909         * metadata.c (inflated_method_equal, inflated_method_hash): Update
12910         to new field.
12911         * reflection.c (inflate_mono_method): Don't create a temporary context.
12912
12913 2008-02-20  Raja R Harinath  <harinath@hurrynot.org>
12914
12915         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12916         Compute correct value, to prepare for imethod->reflection_info going away.
12917
12918 2008-02-19  Zoltan Varga  <vargaz@gmail.com>
12919
12920         * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12921
12922 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12923
12924         * verify.c: Implement skip visibility flag.
12925
12926 2008-02-18 Rodrigo Kumpera  <rkumpera@novell.com>
12927
12928         * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12929         which contains an extra field to tell the kind of exception that should be thrown.
12930
12931         * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12932
12933 2008-02-17  Raja R Harinath  <harinath@hurrynot.org>
12934
12935         * loader.c (mono_method_get_param_names): Initialize 'klass' after
12936         'method' is updated.
12937
12938 2008-02-11  Zoltan Varga  <vargaz@gmail.com>
12939
12940         * class.c (mono_class_layout_fields): Set class->min_align for classes using
12941         explicit layout as well. Fixes #360375.
12942
12943 2008-02-11  Geoff Norton  <gnorton@novell.com>
12944
12945         * loader.c: Guard and dereference against inflated generic methods
12946
12947 2008-02-10  Gert Driesen  <drieseng@users.sourceforge.net>
12948
12949         * class.c: Include Retargetable spec in assembly name.
12950         * assembly.c: Always include PublicKeyToken spec in assembly name
12951         (with value "null" if assembly is not signed), and include
12952         Retargetable spec.
12953         * icall-def.h: Added icall for Assembly.get_fullname.
12954         * icall.c: Added icall returning the fullname of an assembly.
12955
12956 2008-02-09  Zoltan Varga  <vargaz@gmail.com>
12957
12958         * class.c (mono_class_setup_vtable_general): Add a missing call to
12959         mono_class_setup_methods () which is needed in the AOT case.
12960
12961 2008-02-08 Rodrigo Kumpera  <rkumpera@novell.com>
12962
12963         * verify.c (mono_type_get_stack_name): Added. Return the name for the
12964         stack type of the given MonoType.
12965
12966         * verify.c (verify_type_compatibility_full): Handle the void type.
12967
12968         * verify.c (is_compatible_boxed_valuetype): Changed to fit the
12969         way stack merging works.
12970
12971         * verify.c (store_local): Improved verification message.
12972
12973         * verify.c (do_branch_op): If the merging is invalid, the method
12974         is unverifiable and not invalid. Improved error message.
12975
12976         * verify.c (merge_stacks): Properly merge a boxed valuetype and
12977         a reference type diferent than System.Object. Improved error
12978         message.
12979
12980 2008-02-07 Rodrigo Kumpera  <rkumpera@novell.com>
12981
12982         * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
12983
12984         * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
12985         type of an enum even if the argument is byref.
12986
12987         * verify.c: Replace all explicit uses of enumtype and enum_basetype
12988         to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
12989
12990         * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
12991
12992         *verify.c (verify_type_compatibility_full): Make enum types
12993         compatible with their base types.
12994
12995         * verify.c (is_compatible_boxed_valuetype): Added. Check if both
12996         types are compatible for the special case of a boxed valuetype and
12997         System.Object.
12998
12999         * verify.c (verify_stack_type_compatibility): The function
13000         is_compatible_boxed_valuetype was extracted from here.
13001
13002         * verify.c (push_arg): Only set ctx->has_this_store if the method
13003         is not static.
13004
13005         * verify.c (do_ldelem): Fixed a typo in an error message and added
13006         strict check for mixing int32 and native int as the array type
13007         and ldelem type.
13008
13009         * verify.c (merge_stacks): Consider boxed valuetypes in the
13010         compatibility checks.
13011
13012 2008-02-07  Massimiliano Mantione  <massi@ximian.com>
13013         * profiler.h: (MonoGCEvent): Added start-stop the world events.
13014
13015 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13016         *class.c: use_new_interface_vtable_code: renamed the env var to have
13017         a "MONO_" prefix, and fix the logic to enable it by default.
13018
13019 2008-02-06  Massimiliano Mantione  <massi@ximian.com>
13020         *class.c:
13021         mono_class_setup_vtable_general: rewrote the way in which interface
13022         methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13023         makes the code more maintainable.
13024         For now the old code is still there, and can be activated setting
13025         the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13026
13027 2008-02-06 Rodrigo Kumpera  <rkumpera@novell.com>
13028
13029         * verify.c: guarded some debug functions around and #ifdef.
13030
13031         * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13032
13033 2008-02-06  Zoltan Varga  <vargaz@gmail.com>
13034
13035         * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13036         changes for now since they seem to break too many things.
13037
13038 2008-02-05  Mark Probst  <mark.probst@gmail.com>
13039
13040         * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13041         mono_marshal_find_nonzero_bit_offset): Added macro and function
13042         for finding the byte- and bit-offset of a bitfield within a
13043         struct.
13044
13045 2008-02-05  Zoltan Varga  <vargaz@gmail.com>
13046
13047         * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13048         (mono_marshal_get_struct_to_ptr): Ditto.
13049
13050         * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of 
13051         cctor_signature.
13052
13053 2008-02-03  Zoltan Varga  <vargaz@gmail.com>
13054
13055         * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13056         between methods for non-corlib types.
13057
13058 2008-02-02  Geoff Norton  <gnorton@novell.com>
13059
13060         * loader.c (mono_method_get_param_names): Populate the parameter name for 
13061         generic parameters as well. (Fixes #342536)
13062
13063 2008-01-31 Rodrigo Kumpera  <rkumpera@novell.com>
13064
13065         * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13066
13067         * verify.c (do_invoke_method): Fix for calling with byref structs.
13068
13069         * verify.c (do_cast): push a boxed value type based on the type token and not
13070         the type of stack.
13071
13072 2008-01-31  William Holmes  <billholmes54@gmail.com>
13073
13074         * process.c (process_module_string_read): Check the size returned form 
13075           VerQueryValue to avoid out of memory exception. 
13076
13077 2008-01-30  Zoltan Varga  <vargaz@gmail.com>
13078
13079         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
13080         Handle properly modules which are not in the moduleref table. Fixes
13081         #356938.
13082
13083 2008-01-29  Zoltan Varga  <vargaz@gmail.com>
13084
13085         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13086         the dynamic case which is now in managed code.
13087         (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13088
13089         * marshal.c (mono_string_to_bstr): Fix a warning.
13090         (init_com_provider_ms): Ditto.
13091
13092         * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13093
13094         * exception.c (mono_get_exception_out_of_memory): New helper function.
13095
13096 2008-01-28  Jonathan Chambers  <joncham@gmail.com>
13097
13098         * marshal.c: Add support for BSTR marshalling
13099         using other COM systems.
13100
13101         Code is contributed under MIT/X11 license.
13102
13103 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13104
13105         * object.c (mono_runtime_invoke_array): reverted previous
13106         commit as it breaks the build.
13107
13108 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13109
13110         * object.c (mono_runtime_invoke_array): Verify arguments for
13111         invalid types. Fixes #348522.
13112
13113 2008-01-28 Rodrigo Kumpera  <rkumpera@novell.com>
13114
13115         * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13116         non-final virtual calls using call. 
13117
13118         * verify.c (do_invoke): fixed some TODOs.
13119
13120         * verify.c (push_arg): set has_this_store for "ldarga 0".
13121
13122 2008-01-27  Zoltan Varga  <vargaz@gmail.com>
13123
13124         * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13125         which belong to an inflated class. Fixes #356531.
13126
13127 2008-01-26  Robert Jordan  <robertj@gmx.net>
13128
13129         * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13130         which resort to FindFirstFile when a certain error condition
13131         (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13132         Code is contributed under MIT/X11 license.
13133
13134 2008-01-24  Jonathan Chambers  <joncham@gmail.com>
13135
13136         * marshal.c (emit_marshal_string): Fix out string marshalling
13137         to use specified encoding. Fixes #323900.
13138
13139         Code is contributed under MIT/X11 license.
13140
13141 2008-01-24  Raja R Harinath  <harinath@hurrynot.org>
13142
13143         * class.c (mono_class_inflate_generic_method_full): Don't modify
13144         iresult->context after cache check.
13145
13146 2008-01-23  Zoltan Varga  <vargaz@gmail.com>
13147
13148         * class.c (mono_class_inflate_generic_method_full): Change the
13149         struct assignments to memcpy for better visibility and add some comments.
13150
13151 2008-01-23  Dick Porter  <dick@ximian.com>
13152
13153         * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13154         procedure, and make it work on windows.
13155
13156 2008-01-22  Zoltan Varga  <vargaz@gmail.com>
13157
13158         * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13159         a MonoReflectionTypeBuilder since it is always of that type.
13160
13161         * reflection.c (mono_type_get_object): Remove an unneccesary check.     
13162
13163         * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13164
13165         * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13166         
13167         * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13168
13169         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13170
13171         * reflection.c (mono_reflection_create_runtime_class): Remove already created
13172         instantiations from the type cache.
13173
13174 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13175
13176         * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13177
13178         * verify.c (do_unbox_value): push a controled mutability managed pointer.
13179
13180 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13181
13182         * verify.c (do_ldstr): added, verifies if the #US token is valid.
13183
13184         * verify.c (mono_method_verify): removed old TODO
13185
13186 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13187
13188         * verify.c (do_newobj): add visibility check.
13189
13190 2008-01-21 Rodrigo Kumpera  <rkumpera@novell.com>
13191
13192         * verify.c (do_load_function_ptr): add visibility check.
13193
13194 2008-01-21  Massimiliano Mantione  <massi@ximian.com>
13195         *class.c:
13196         mono_generic_class_get_class: hook profiler events.
13197         mono_field_get_offset: added to support heap-shot in the new profiler.
13198         *class.h: exported mono_field_get_offset.
13199         * reflection.c:
13200         mono_reflection_setup_internal_class: hook profiler events.
13201
13202 2008-01-20  Zoltan Varga  <vargaz@gmail.com>
13203
13204         * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions' 
13205         argument here too and use it to avoid checking for pending exceptions if 
13206         possible.
13207
13208 2008-01-20  Gert Driesen  <drieseng@users.sourceforge.net>
13209
13210         * assembly.c (build_assembly_name): add arg for passing the assembly
13211         flags. Do not consider a PublicKey with value "null" valid.
13212         (mono_assembly_name_parse_full): added boolean argument that will be
13213         set if the assembly name contains a PublicKeyToken spec. Added support
13214         for the Retargetable spec for which only Yes or No are allowed as valid
13215         value. Consider assembly name invalid if Retargetable spec is set, but
13216         either version, culture or public key (token) are not specified.
13217         * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13218         with implementation in assembly.c.
13219         * icall.c (fill_reflection_assembly_name): also copy assembly flags
13220         from MonoAssemblyName.
13221         (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13222         introduced argument for mono_assembly_name_parse_full to know if the
13223         assembly name has a PublicKeyToken spec, and if it has instruct
13224         fill_reflection_assembly_name to use default value for keyToken (if
13225         PublicKeyToken is null).
13226
13227 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13228
13229         * verify.c (mono_method_verify): fixed ovf ops with
13230         float values. They are unverifiable now.
13231
13232 2008-01-18  Rodrigo Kumpera  <rkumpera@novell.com>
13233
13234         * class.c (set_failure_from_loader_error): add BadImageException to the
13235         list of exceptions that can cause a type to fail to load.
13236
13237         * class.c (mono_class_get_exception_for_failure): same.
13238
13239 2008-01-17  Rodrigo Kumpera  <rkumpera@novell.com>
13240
13241         * verify.c (in_any_exception_block): added, check if offset
13242         is part of any exception handling clause.
13243
13244         * verify.c (get_stack_type): added VAR and MVAR types.
13245
13246         * verify.c (do_stobj): better error messages.
13247
13248         * verify.c (do_cpobj): added, check cpobj.
13249
13250         * verify.c (do_initobj): added, check initobj.
13251
13252         * verify.c (do_sizeof): added, check sizeof.
13253
13254         * verify.c (do_localloc): added, check localloc.
13255
13256         * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13257
13258 2008-01-17  Zoltan Varga  <vargaz@gmail.com>
13259
13260         * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13261         save_lmf/restore_lmf opcodes.
13262
13263         * threads.c (mono_threads_install_notify_pending_exc): New function to
13264         install a callback notifying the JIT there is a pending exception on a thread.
13265         (mono_thread_request_interruption): Call the new callback.
13266         (mono_thread_get_and_clear_pending_exception): New function to return the
13267         exception pending on a thread.
13268
13269         * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13270         to turn off checking for pending exceptions.
13271         (mono_marshal_get_native_wrapper): Ditto.
13272
13273 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13274
13275         * threads-types.h: Get rid of the unnecessary extern declarations.
13276
13277 2008-01-16  Gert Driesen  <drieseng@users.sourceforge.net>
13278
13279         * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13280         return field from parent class if not private.
13281         (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13282         returns fields from parent class if they are not private.
13283         (method_nonpublic): added function to determine if a given method
13284         should be considered non-public. Returns false for private methods
13285         on parent class, and internal methods from parent on the 1.0 profile.
13286         (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13287         use method_nonpublic function to determine whether method should be
13288         returned.
13289         (property_accessor_public): use newly introduced method_nonpublic
13290         function to determine whether accessor is non-public. 
13291         (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13292         event from parent class if not private. Only return static event if
13293         Static flag is set, and only return static event from parent class if
13294         FlattenHierarchy flag is set.
13295         (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13296         include non-private events from parent class.
13297
13298 2008-01-16  Zoltan Varga  <vargaz@gmail.com>
13299
13300         * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13301         warning.
13302
13303 2008-01-16  Wade Berrier <wberrier@novell.com>
13304
13305         * security.c: Add assembly.h header to appease some warnings
13306
13307 2008-01-16  Dick Porter  <dick@ximian.com>
13308
13309         * process.c (process_module_string_read): Remove trailing null
13310         when saving string.
13311
13312 2008-01-16  Mark Probst  <mark.probst@gmail.com>
13313
13314         * class-internals.h: A new data structure describing the layout of
13315         a runtime generic context (MonoRuntimeGenericContextTemplate).
13316
13317         * metadata-internals.h: Added a hash table to MonoDomain that maps
13318         from open generic classes to their runtime generic context
13319         templates.
13320
13321         * object.c: Building of the runtime generic context, including
13322         proper handling of generic type arguments of superclasses.
13323         Building of the runtime generic context according to the template.
13324
13325 2008-01-15  Zoltan Varga  <vargaz@gmail.com>
13326
13327         * class.c (mono_class_setup_fields): Set field.count for generic instances.
13328         Fixes #350856.
13329
13330         * image.c (do_mono_image_open): Pass TRUE as last_exists to 
13331         mono_portability_find_file (). Fixes #325466.
13332         (mono_image_get_public_key): Fix a warning.
13333
13334 2008-01-14  Zoltan Varga  <vargaz@gmail.com>
13335
13336         * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13337         Fixes #353550.
13338         (mono_class_from_name_case): Ditto.
13339
13340 2008-01-13  Eyal Alaluf <eyala@mainsoft.com>
13341
13342         * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13343           common storage for the tables used in the System/NumberFormatter class.
13344
13345 2008-01-13  Zoltan Varga  <vargaz@gmail.com>
13346
13347         * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13348
13349 2008-01-11  Rodrigo Kumpera  <rkumpera@novell.com>
13350
13351         * verify.c (get_boxable_mono_type): check if the token is valid.
13352
13353         * verify.c (set_stack_value): changed to add an error if an
13354         invalid type is set on stack. Changed all callers due to signature change.
13355
13356         * verify.c (do_stobj): implement stobj validation.
13357
13358 2008-01-11  Zoltan Varga  <vargaz@gmail.com>
13359
13360         * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13361         set container->is_method, it was set earlier.
13362
13363         * metadata.c (type_in_image): Handle MVARs which belong to not finished
13364         generic methods.
13365
13366         * reflection.c (mono_reflection_initialize_generic_parameter): Set
13367         is_method of the generic container to TRUE for methods.
13368
13369 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13370
13371         * metadata.c (type_in_image): Handle type parameters properly.
13372
13373         * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13374         memory ownership of this structure.
13375
13376 2008-01-10  Rodrigo Kumpera  <rkumpera@novell.com>
13377
13378         * verify.c (get_boxable_mono_type): make typedref types been just
13379         unverifiable. check for void type.
13380
13381         * verify.c (do_unbox_any): added, verify opcode unbox.any.
13382
13383         * verify.c (do_load_function_ptr): accept method spec tokens.
13384
13385 2008-01-10  Zoltan Varga  <vargaz@gmail.com>
13386
13387         * marshal.c (mono_class_native_size): Always set *align even if this is called
13388         recursively.
13389
13390 2008-01-09  Zoltan Varga  <vargaz@gmail.com>
13391
13392         * verify.c (mono_verify_corlib): Remove this as it was not used and was 
13393         out-of-date.
13394
13395 2008-01-09  Rodrigo Kumpera  <rkumpera@novell.com>
13396
13397         * verify.c: removed some old unused tables. A huge bunch of small fixes
13398         to things found while testing the verifier with mono basic.
13399
13400         * verify.c (dump_stack_value): dump null literal flag to.
13401
13402         * verify.c (verify_type_compatibility_full): fix comparison
13403         for types that have a generic super type.
13404
13405         * verify.c (verify_stack_type_compatibility): fix compatibility
13406         between null literals and reference types. fix compatibility between
13407         boxed valuetypes and object. fix corner case test for enums.
13408
13409         * verify.c (do_cmp_op): proper verification of cgt.un in case
13410         of reference types.
13411
13412         * verify.c (do_invoke_method): fix error message.
13413
13414         * verify.c (do_store_indirect
13415
13416         * verify.c (check_is_valid_type_for_field_ops): proper verification
13417         of managed pointers to valuetypes and boxed valuetypes. proper verification
13418         of null literals.
13419
13420         * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13421         allow token to be a reference type.
13422
13423         * verify.c (do_cast): proper handling of boxes valuetypes.
13424
13425         * verify.c (do_stelem): proper handling of storing a boxed valuetype
13426         in object[].
13427
13428         * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13429         to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13430         fixed the decoding of unbox_any
13431
13432 2008-01-08  Zoltan Varga  <vargaz@gmail.com>
13433
13434         * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13435
13436 2008-01-08  Rodrigo Kumpera  <rkumpera@novell.com>
13437
13438         * verify.c (do_newobj): do delegate verification.
13439
13440         * verify.c (verify_delegate_compatibility): perform delegate
13441         verification.
13442
13443         * verify.c (verify_ldftn_delegate): perform tests related to
13444         ldftn delegates.
13445
13446         * verify.c (mono_delegate_signature_equal): perform the
13447         slightly diferent signature comparison required by delegates.
13448
13449         * metadata.c (mono_metadata_type_equal_full): added and exported
13450         as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13451         allows signature only comparison.
13452
13453         * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13454         as MONO_INTERNAL.
13455
13456 2008-01-07  Rodrigo Kumpera  <rkumpera@novell.com>
13457
13458         * verify.c: added a bunch of stack_slot_* functions to
13459         make access to stack slot type easier. This is required to
13460         allow optional flags, like null literal, boxed value and
13461         this pointer.
13462         All access paths to IlStackDesc::stype have been changed 
13463         to use these new funcions.
13464         Removed a bunch of unused functions and cleared all warnings.
13465         This patch introduces the usage of the this pointer and 
13466         boxed value flags.
13467
13468 2008-01-07  Zoltan Varga  <vargaz@gmail.com>
13469
13470         * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13471
13472 2008-01-06  Zoltan Varga  <vargaz@gmail.com>
13473
13474         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13475         match managed version.
13476
13477         * appdomain.c: Bump corlib version.
13478         
13479         * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13480         argument.
13481
13482 2008-01-06  Gert Driesen  <drieseng@users.sourceforge.net>
13483
13484         * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13485         Set public key token to zero-length byte array if assembly is not
13486         strongnamed.
13487
13488 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13489
13490         * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13491         writing a vtype array elem.
13492
13493 2007-01-05  Gert Driesen  <drieseng@users.sourceforge.net>
13494
13495         * assembly.c (build_assembly_name): return FALSE if length of token is
13496         not 16 (if not "null").
13497         (mono_assembly_name_parse_full): return FALSE if value of version,
13498         culture, token or key is 0.
13499         * icall.c (fill_reflection_assembly_name): add boolean arguments to
13500         specify whether public key and public key token must be set to default
13501         value (zero-length byte array) if not available. Set versioncompat to
13502         SameMachine. If public key is available or the default is set, then
13503         set PublicKey flag.
13504         (ves_icall_System_Reflection_Assembly_FillName): if no public key
13505         is available, use empty byte array as default value. On the 2.0
13506         profile, use default value for public key token if not set.
13507         (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13508         profile, use default value for public key if not set. On the 2.0
13509         profile, use default value for public key token if not set.
13510         (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13511         default values for public key and public key token.
13512
13513 2008-01-05  Zoltan Varga  <vargaz@gmail.com>
13514
13515         * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13516         field to keep it in synch with the managed object.
13517
13518         * marshal.c (emit_marshal_object): Add support for byref marshalling of
13519         delegates. Fixes #351520.
13520
13521         * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13522         contains defined memory.
13523         
13524         * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13525
13526         * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13527         
13528         * sgen-gc.c (check_consistency): New helper function to do a consistency check
13529         of the GC data structures.
13530
13531         * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13532
13533         * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13534         
13535         * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13536         barrier.
13537         (mono_array_clone_in_domain): Ditto.
13538         (mono_array_clone_in_domain): Ditto.
13539
13540         * threads.c (start_wrapper): Register the thread start argument as a GC root.
13541         (cache_culture): Use a write barrier.
13542
13543         * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13544         (ves_icall_get_property_info): Ditto.
13545
13546         * object.h (MONO_STRUCT_SETREF): New macro.
13547
13548         * class-internals.h (MonoStats): Add some GC statistics.
13549
13550         * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13551
13552 2008-01-04  Andreas Faerber  <andreas.faerber@web.de>
13553
13554         * exception.c (mono_exception_from_name_two_strings):
13555         Break from loop after method is found.
13556
13557 2008-01-04  Dick Porter  <dick@ximian.com>
13558
13559         * process.c (process_module_string_read): Rename variable to
13560         reflect correct usage, after fixing bug 345972.
13561
13562 2008-01-03  Rodrigo Kumpera  <rkumpera@novell.com>
13563
13564         * verify.c (mono_type_create_fnptr_from_mono_method): 
13565         created a MonoType function pointer instance to be used during
13566         verification. The verifier releases this memory at end.
13567
13568         * verify.c (mono_method_is_constructor): extracted repeated
13569         checks for constructor into a single class.
13570
13571         * verify.c (do_push_field): use new extracted method
13572         for constructor check.
13573
13574         * verify.c (do_newobj): same.
13575
13576         * verify.c (do_ldftn): renamed to do_load_function_ptr
13577         and make it verify ldvirtftn too.
13578
13579         * verify.c (mono_method_verify: proper verification
13580         of ldvirtftn. release created MonoMethod instances.
13581
13582 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13583
13584         * verify.c (token_bounds_check): added.
13585
13586         * verify.c (do_ldftn): added.
13587
13588         * verify.c (mono_method_verify): proper verificartion of ldftn.
13589
13590 2007-12-31  Rodrigo Kumpera  <rkumpera@novell.com>
13591
13592         * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13593         than the table row count. It's the resposibility of the caller to
13594         make the bounds check and raise the correct error.
13595
13596         * metadata.c (mono_metadata_decode_row_col): Same.
13597
13598         * loader.c (mono_get_method_from_token): perform bounds check
13599         on token for methoddef table.
13600
13601 2007-12-29  Miguel de Icaza  <miguel@novell.com>
13602
13603         * icall.c
13604         (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13605         assert into a negative result, the managed code already coped with
13606         that.
13607
13608         Some folks on Windows reported this error. 
13609
13610 2007-12-28  Gert Driesen  <drieseng@users.sourceforge.net>
13611
13612         * appdomain.c: Bump corlib version.
13613         * icall.c:
13614         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13615         CultureInfo.CreateCulture to create CultureInfo for name.
13616         (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13617         create CultureInfo for name. Fixes bug #347174.
13618
13619 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13620
13621         * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13622         flags.
13623
13624         * verify.c (is_valid_branch_instruction): allow branching to the
13625         first instruction of the protected block.
13626
13627         * verify.c (is_valid_cmp_branch_instruction): same.
13628
13629         * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13630         avoid double initialization.
13631
13632         * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13633         detect which cases the eval stack should just be copied.
13634
13635         * verify.c (mono_method_verify): check if the eval stack
13636         is empty when entering a protected block.
13637
13638 2007-12-27  Rodrigo Kumpera  <rkumpera@novell.com>
13639
13640         * verify.c: added is_clause_in_range, is_clause_inside_range,
13641         is_clause_nested and verify_clause_relationship. They perform
13642         the verifications stated in P1 12.4.2.7.
13643
13644         * verify.c (mono_method_verify): remove some unused variables,
13645         add the new exception clause checks, add instruction border
13646         checks for protected block start/end, improved some error 
13647         messages and fixed a bug in the way invalid instruction access
13648         is detected.
13649
13650 2007-12-26  Zoltan Varga  <vargaz@gmail.com>
13651
13652         * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13653         from GC 7.0 if available.
13654
13655         * object.c: Remove an unused define.
13656         
13657         * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13658
13659         * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13660
13661         * null-gc.c (mono_gc_make_descr_for_array): Implement.
13662
13663         * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13664
13665         * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13666         to take the same arguments as the other make_descr functions.
13667
13668         * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13669
13670         * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13671         directly.
13672
13673         * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13674         mini.c.
13675
13676         * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc () 
13677         call to boehm-gc.c.
13678
13679         * boehm-gc.c (mono_gc_register_root): Fix a warning.
13680
13681         * null-gc.c (mono_gc_register_root): Fix a warning.
13682
13683         * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13684
13685         * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13686         (mono_gc_base_init): Call GC_init ().
13687
13688         * null-gc.c: Define mono_gc_register_root () as a no-op.
13689
13690         * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13691
13692 2007-12-24  Rodrigo Kumpera  <rkumpera@novell.com>
13693
13694         * verify.c: add prototype for merge_stacks at top
13695
13696         * verify.c (do_switch): added.
13697
13698         * verify.c (merge_stacks): on some cases the stack merging
13699         was not happening properly. Unequal stack sizes at merge
13700         points should be invalid.
13701
13702         * verify.c (mono_method_verify): added more debug info on stack state.
13703         verify switch properly.
13704
13705 2007-12-24  Zoltan Varga  <vargaz@gmail.com>
13706
13707         * method-builder.h: New file, moved the mono_mb_ declarations here from 
13708         marshal.h.
13709
13710         * boehm-gc.c marshal.c: Include method-builder.h.
13711
13712         * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13713
13714         * marshal.c: Remove some code which is now in method-builder.c.
13715
13716 2007-12-23  Zoltan Varga  <vargaz@gmail.com>
13717
13718         * method-builder.c: New file, extraction of the method builder functionality 
13719         from marshal.c.
13720
13721         * marshal.c: Move the mb functions into method-builder.c.
13722
13723         * marshal.h marshal.c: Export some mono_mb_... functions.
13724
13725         * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13726
13727         * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13728         the caller.
13729
13730         * class.c (mono_class_get_full): Check the token type in the dynamic case.
13731
13732         * loader.c (mono_field_from_token): Ditto.      
13733
13734         * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13735         type as well.
13736         
13737         * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13738         Fixes #342565.
13739
13740         * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13741         a helper function for setting it.
13742
13743         * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13744
13745         
13746         * assembly.c: Significally simplify code now that referenced assemblies are 
13747         loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13748
13749         * threads.h: Don't include  the internal threads-types.h header file. Fixes
13750         #349952.
13751
13752 2007-12-21  Rodrigo Kumpera  <rkumpera@novell.com>
13753
13754         * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13755         instructions that were target of branches or are at protected block boundaries.
13756
13757         * verify.c (in_same_block): handle filter clauses.
13758
13759         * verify.c (is_valid_branch_instruction): added. checks the target of
13760         instructions br or brtrue/false.
13761
13762         * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13763         binary branch instructions such as beq and bge.
13764
13765         * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13766         and made it pin the instruction as been part of the exception block.
13767
13768         * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13769         of in_same_block.
13770
13771         * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13772         of in_same_block.
13773
13774         * verify.c (do_ret): ret from a protected block is unverifiable and
13775         not invalid.
13776
13777         * verify.c (do_static_branch): verify br and br.s instructions.
13778
13779         * verify.c (merge_stacks): add extra param to support detection
13780         of branches in the middle of instructions.
13781         
13782         * verify.c (mono_method_verify): verify branches and exception blocks
13783         that target the middle of instructions. Proper verification of br and br.s.
13784
13785 2007-12-21  Zoltan Varga  <vargaz@gmail.com>
13786
13787         * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13788         skip_visibility field.
13789         (reflection_methodbuilder_from_dynamic_method): Ditto.
13790
13791         * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13792         registrations. Fixes #348193.
13793
13794         * threads.h: Move the internal mono_thread_get_pending_exception () to
13795         threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13796
13797 2007-12-20  Zoltan Varga  <vargaz@gmail.com>
13798
13799         * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13800         icall registration. Fixes #348193.
13801
13802         * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13803         for corlib classes into object. Fixes #349621.
13804
13805 2007-12-20  Gert Driesen  <drieseng@users.sourceforge.net>
13806
13807         * icall.c (property_accessor_nonpublic): new function to determine
13808         whether an accessor allows a property to be considered non-public.
13809         Returns false for private accessor(s) from parent class, and internal
13810         accessor(s) from parent on 2.0 profile (and higher).
13811         (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13812         to determine whether property should be included if NonPublic flag
13813         is set. Fixes bug #349078.
13814
13815 2007-12-20  Rodrigo Kumpera  <rkumpera@novell.com>
13816
13817         * verify.c (init_stack_with_value): added.
13818
13819         * verify.c (mono_method_verify): extracted common
13820         code for exception initialization into init_stack_with_value.
13821
13822         * verify.c (mono_method_verify): initialize the exception
13823         for handler clauses as well.
13824
13825         * verify.c (mono_method_verify): fix the exception clause
13826         ordering rules, it should use handler end offset and not
13827         start offset.
13828
13829 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13830
13831         * rawbuffer.c: remove useless warning.
13832
13833 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13834
13835         * threads.h, threads-types.h: move functions to the correct header
13836         (fixes bug#349952).
13837
13838 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13839
13840         * verify.c (mono_method_verify): proper verification
13841         of exception handling clauses ranges and fallthru in
13842         and out of protected blocks.
13843
13844 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13845
13846         * verify.c (mono_method_verify): fixed compilation issue.
13847
13848 2007-12-19  Rodrigo Kumpera  <rkumpera@novell.com>
13849
13850         * verify.c (mono_method_verify): a printf slipped in, changed
13851         to use verifier debug macro.
13852
13853 2007-12-18  Rodrigo Kumpera  <rkumpera@novell.com>
13854
13855         * verify.c (is_correct_leave): check for filter clauses.
13856
13857         * verify.c (do_filter): added.
13858
13859         * verify.c (mono_method_verify): property verification of leave.
13860
13861
13862 2007-12-18  Mark Probst  <mark.probst@gmail.com>
13863
13864         * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13865         Win32 build, until we figure out how to do the proper thing on
13866         Win32.
13867
13868 2007-12-17  Zoltan Varga  <vargaz@gmail.com>
13869
13870         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13871         by the previous patch.
13872         
13873         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13874         the assembly resolve handler for refonly assemblies.
13875
13876 2007-12-17  Mark Probst  <mark.probst@gmail.com>
13877
13878         * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13879         Make sure only one thread is allowed to commence shutdown, and
13880         don't allow new threads to be started once shutdown is in
13881         progress.
13882
13883 2007-12-14  Rodrigo Kumpera  <rkumpera@novell.com>
13884
13885         * verify.c (is_correct_endfilter): added.
13886
13887         * verify.c (is_unverifiable_endfilter): added.
13888
13889         * verify.c (do_endfilter): added.
13890
13891         * verify.c (mono_method_verify): property verification of endfilter
13892         and fixed a corner case or endfinally.
13893
13894 2007-12-13  Rodrigo Kumpera  <rkumpera@novell.com>
13895
13896         * verify.h: new flags to support fail fast of unverifiable code and
13897         do non-strict verification. Non-strict verification is required to
13898         have MS runtime compatibility. There are a huge amount of unverifiable
13899         code that it accepts as verifiable. The strict mode verifies the code
13900         as the specs says.
13901         Non-strict mode will be required in cases where code needs to be
13902         accepted as verifiable but fails under strict mode.
13903
13904         * pedump.c: added support to fail fast and non-strict verification.
13905
13906         * verify.c: added support for both fail fast and non-strict verification.
13907
13908 2007-12-12  Rodrigo Kumpera  <rkumpera@novell.com>
13909
13910         * verify.c (is_correct_endfinally): added.
13911
13912         * verify.c (mono_method_verify): property verification of endfinally.
13913
13914 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13915
13916         * verify.c (in_any_block): check for filter clauses.
13917
13918         * verify.c (is_correct_rethrow): added.
13919
13920         * verify.c (mono_method_verify): property verification of rethrow.
13921
13922         * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13923
13924 2007-12-11  Rodrigo Kumpera  <rkumpera@novell.com>
13925
13926         * verify.c (do_throw): added.
13927
13928         * verify.c (mono_method_verify): property verification of throw
13929
13930 2007-12-11  Zoltan Varga  <vargaz@gmail.com>
13931
13932         * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13933         assemblies. Fixes #346425.
13934
13935 2007-12-10  Zoltan Varga  <vargaz@gmail.com>
13936
13937         * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13938         FieldBuilders.
13939
13940         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13941
13942         * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13943         prevent asserts when this is called with a token which might not be valid.
13944
13945         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13946         lookup_dynamic_token_class with valid_token == FALSE.
13947
13948         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.       
13949
13950         * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13951
13952         * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13953         
13954 2007-12-10  Mark Probst  <mark.probst@gmail.com>
13955
13956         * gc.c: Don't delay threadpool thread finalization unless Mono is
13957         shutting down.
13958
13959 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13960
13961         * threads.c: turn an assert into a non-fatal warning.
13962
13963 2007-12-09  Robert Jordan  <robertj@gmx.net>
13964
13965         * icall.c (GetVirtualMethod): Add missing argument validation.
13966
13967 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13968
13969         * verify.c (do_cast): added.
13970
13971         * verify.c (mono_method_verify): property verification of castclass and isinst.
13972
13973
13974 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13975
13976         * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
13977
13978         * verify.c (do_stelem): added.
13979
13980         * verify.c (mono_method_verify): property verification of stelem.X.
13981
13982 2007-12-07  Mark Probst  <mark.probst@gmail.com>
13983
13984         * class.c, class-internals.h: Introduce an environment variable
13985         (MONO_GENERIC_SHARING) through which the extent of generic code
13986         sharing can be controlled (share all classes, share only corlib
13987         classes, or share nothing).
13988
13989         * object.c: Only create runtime generic context for classes for
13990         which sharing is enabled.
13991
13992 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13993
13994         * verify.c (do_ldelem): refactor it to work with ldelem.any.
13995
13996         * verify.c (mono_method_verify): property verification of ldelem.any.
13997
13998 2007-12-06  Rodrigo Kumpera  <rkumpera@novell.com>
13999
14000         * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14001         added ldelem.X opcodes.
14002
14003         * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14004
14005         * verify.c: proper verification of ldelem.X 
14006
14007 2007-12-06  Zoltan Varga  <vargaz@gmail.com>
14008
14009         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14010
14011 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14012
14013         * verify.c (mono_method_verify): null literal requires special handling,
14014         the value pushed on stack need to be flagged as so.
14015
14016         * verify.c (do_ldelema): Verify ldelema properly.
14017
14018 2007-12-05  Rodrigo Kumpera  <rkumpera@novell.com>
14019
14020         * verify.c: Verify ldlen properly.
14021
14022 2007-12-05  Zoltan Varga  <vargaz@gmail.com>
14023
14024         * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14025         to the target object's type. Fixes #346160.
14026
14027 2007-12-05  Dick Porter  <dick@ximian.com>
14028
14029         * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14030         Solaris needs the same workaround as BSD-derived systems.  Fixes
14031         bug 323524, patch by Burkhard Linke
14032         <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14033
14034 2007-12-04  Gert Driesen  <drieseng@users.sourceforge.net>
14035
14036         * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14037         handle to use when error dialog is shown; otherwise, update mask
14038         to show no error dialog when an error occurs.
14039
14040 2007-12-03  Zoltan Varga  <vargaz@gmail.com>
14041
14042         * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14043
14044         * class.c (mono_class_get_field_default_value): New helper function to initialize
14045         field->def_type and field->data.
14046
14047 2007-11-30  Zoltan Varga  <vargaz@gmail.com>
14048
14049         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14050         the general one.
14051
14052         * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14053
14054         * marshal.c: Avoid depending on delegate->method_info being set.
14055
14056         * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14057         
14058         * object.c (mono_delegate_ctor): Set delegate->method.
14059
14060         * object-internals.h (struct _MonoDelegate): Add 'method' field.
14061
14062         * appdomain.c: Bump corlib version.
14063
14064 2007-11-27  Raja R Harinath  <harinath@gmail.com>
14065
14066         * metadata.c (mono_generic_inst_equal_full): Short-circuit
14067         equality check if we're comparing canonicalized MonoGenericInsts.
14068
14069 2007-11-23  Zoltan Varga  <vargaz@gmail.com>
14070
14071         * class.c (generic_array_methods): Call mono_class_setup_methods () before
14072         accessing class->methods.
14073
14074 2007-11-22  Dick Porter  <dick@ximian.com>
14075
14076         * threads.c: Ensure that the synch_cs is set before trying to use
14077         it.
14078
14079 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14080
14081         * profiler.c: r89126 broke the statistial profiler, unbreak.
14082
14083 2007-11-22  Martin Baulig  <martin@ximian.com>
14084
14085         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14086
14087         * mono-debug.c
14088         (mono_debug_debugger_version): Bump to 3.
14089         (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14090         -> mono_debugger_class_initialized().
14091
14092         * mono-debug-debugger.c
14093         (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14094
14095         * class.c
14096         (mono_debugger_start_class_init_func): Removed.
14097         (mono_debugger_class_loaded_methods_func): Added.
14098         (mono_class_setup_methods): Call it here.
14099
14100 2007-11-22  Martin Baulig  <martin@ximian.com>
14101
14102         * mono-debug.c
14103         (mono_debug_add_delegate_trampoline): New public method.
14104         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14105
14106         * mono-debug.h
14107         (MonoSymbolTable): Added `global_data_table'.
14108         (MonoDebuggerTypeKind): Removed.
14109
14110 2007-11-21  Zoltan Varga  <vargaz@gmail.com>
14111
14112         * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14113         these methods.
14114
14115         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14116         
14117 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14118
14119         * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14120
14121 2007-11-20  Martin Baulig  <martin@ximian.com>
14122
14123         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14124
14125         * mono-debug-debugger.c
14126         (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14127         (mono_debugger_remove_breakpoint): Likewise.
14128         (mono_debugger_check_breakpoints): Likewise.
14129         (mono_debugger_register_class_init_callback): New public method.
14130         (mono_debugger_remove_class_init_callback): Likewise.
14131         (mono_debugger_add_type): Likewise.
14132
14133         * mono-debug-debugger.h
14134         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14135
14136 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14137
14138         * class.c: more interface implementations needed for the
14139         array enumerator (fixes bug #341112).
14140
14141 2007-11-18  Gert Driesen  <drieseng@users.sourceforge.net>
14142
14143         * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14144         fix ParamName of ArgumentNullExceptions.
14145
14146 2007-11-17  Miguel de Icaza  <miguel@novell.com>
14147
14148         * reflection.c (mono_reflection_encode_sighelper): Generate the
14149         modopts and modreqs.   I have a useless test that crashes monodis,
14150         but that shows the code working.
14151
14152 2007-11-17  Zoltan Varga  <vargaz@gmail.com>
14153
14154         * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14155         (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14156
14157 2007-11-15  Dick Porter  <dick@ximian.com>
14158
14159         * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14160         When joining a thread, it's the thread that's calling Join that
14161         gets WaitSleepJoin state not the target.  Fixes the standalone
14162         test case in bug 334740, and hopefully the whole bug too.
14163
14164 2007-11-15  Dick Porter  <dick@ximian.com>
14165
14166         * process.c: Read file version info from the files pointed at by
14167         process modules, not the current process.  Fixes bug 315969.
14168
14169         Use windows typedef names in some places to fix warnings on the
14170         windows build.
14171
14172 2007-11-15  Mark Probst  <mark.probst@gmail.com>
14173
14174         * image.c, metadata-internals.h: Added a generic_class_cache hash
14175         to MonoImage for looking up generic classes when sharing generics.
14176
14177 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14178
14179         * sgen-gc.c: warning cleanups.
14180
14181 2007-11-15  Zoltan Varga  <vargaz@gmail.com>
14182
14183         * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14184         inherited properties.
14185
14186 2007-11-14  Mark Probst  <mark.probst@gmail.com>
14187
14188         * object.c, class-internals.h: Added more information to the
14189         runtime generic context.
14190
14191 2007-11-13  Zoltan Varga  <vargaz@gmail.com>
14192
14193         * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14194         instead of just the target method. Generalize the abstract method handling to
14195         handle any non-static method.
14196
14197         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14198         mono_marshal_get_delegate_invoke () signature change.
14199
14200 2007-11-13  Mark Probst  <mark.probst@gmail.com>
14201
14202         * class.c, class-internals.h: Made
14203         mono_type_get_basic_type_from_generic () public.  Fixed member
14204         access check for shared generics.
14205
14206         * loader.c: Don't insert field into field cache if it's part of a
14207         non-inflated generic class.
14208
14209         * domain.c, domain-internals.h: The generic sharing context is now
14210         part of the jit info data structure.  Added two accessor
14211         functions.
14212
14213 2007-11-12  Zoltan Varga  <vargaz@gmail.com>
14214
14215         * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14216         the array Get/Set/Address methods, since the JIT inlines them.
14217
14218         * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14219
14220         * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14221         (mono_image_init): Initialize runtime_invoke_direct_cache.      
14222
14223         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14224         mono_marshal_get_delegate_invoke signature change.
14225
14226         * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14227         an additional argument. Add support for invoking abstract methods.
14228
14229         * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14230
14231         * image.c (mono_image_close): Free delegate_abstract_invoke_cache.      
14232
14233 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14234
14235         * class.c: Do field layout for open generic classes as well.
14236
14237 2007-11-09  Mark Probst  <mark.probst@gmail.com>
14238
14239         * gc.c, gc-internal.h: Don't finalize threadpool threads with
14240         other objects, because the threadpool is still around.  Put them
14241         in a list instead and after finalizing all other objects in the
14242         root domain shut down the thread pool and then finalize the
14243         threads.  Fixes bug #337383.
14244
14245         * threads.c, thread-types.h: New mono_thread_create_internal()
14246         function for marking a thread with the threadpool flag before it
14247         started.  Set synch_cs to NULL after freeing it.
14248
14249         * threadpool.c: Mark threadpool threads before they start.
14250
14251 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14252
14253         * reflection.h, reflection.c: don't export random functions
14254         and lazy load dbnull and missing objects.
14255
14256 2007-11-07  Jonathan Chambers <joncham@gmail.com>
14257
14258         * class.c: Initialize COM types if COM interfaces
14259         are present (not just COM classes).
14260         
14261         Code is contributed under MIT/X11 license.
14262
14263 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14264         * reflection.c:
14265         create_dynamic_mono_image: hook module profiler events (dynamic case).
14266         mono_image_basic_init: hook assembly profiler events (dynamic case).
14267
14268 2007-11-07  Massimiliano Mantione  <massi@ximian.com>
14269         * profiler.c:
14270         simple_appdomain_unload: completely terminate the profiler
14271         instead of only processing the statistical samples.
14272         simple_shutdown: make sure this is really called exactly once,
14273         even in multithreaded applications, and always listen to
14274         appdomain events.
14275         * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14276         here, the "[un]load" functions will do it.
14277         Fixes bugs #333791 and #325261.
14278
14279 2007-11-07  Geoff Norton  <gnorton@novell.com>
14280
14281         * socket-io.c:  Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14282         rather than depend on __APPLE__.
14283
14284 2007-11-07  Mark Probst  <mark.probst@gmail.com>
14285
14286         * icall.c: Safety checks in InitializeArray.  Fixes bug #324535.
14287
14288 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com> 
14289
14290         * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14291         UTF16 MonoString. Fix the crash from bug #335488
14292
14293 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
14294
14295         * marshal.c: Correct (for non-Win32 OS) length != size in 
14296         mono_string_from_bstr. Fix #339530.
14297
14298 2007-11-06  Geoff Norton  <gnorton@novell.com>
14299
14300         * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14301         to succeed
14302
14303 2007-11-05  Kornél Pál  <kornelpal@gmail.com>
14304
14305         * process.c: Added run-time GetProcessId API detection for Windows.
14306
14307 2007-11-04  Miguel de Icaza  <miguel@novell.com>
14308
14309         * reflection.c  (mono_param_get_objects): If a parameter has the
14310         attribute [System.Runtime.InteropServices.Optional] we should
14311         set the DefaultValue of the ParameterInfo to be
14312         System.Reflection.Missing instead of DBNull.
14313
14314         See bug #339013.
14315
14316         (mono_get_reflection_missing_object): New method,
14317         returns the System.Reflection.Missing.Value singleton instance.
14318
14319 2007-11-03  Atsushi Enomoto  <atsushi@ximian.com>
14320
14321         * culture-info-table.h : regenerated.
14322
14323 2007-11-02  Jonathan Chambers <joncham@gmail.com>
14324
14325         * icall.c: Use GetEnvironmentStrings on windows
14326         so we are using the same environment block as 
14327         GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14328         #333740.
14329         
14330         Code is contributed under MIT/X11 license.
14331
14332 2007-10-31  Martin Baulig  <martin@ximian.com>
14333
14334         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14335
14336         * mono-debug-debugger.h
14337         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14338
14339 2007-10-30  Zoltan Varga  <vargaz@gmail.com>
14340
14341         * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated 
14342         classes.
14343
14344 2007-10-30  Atsushi Enomoto  <atsushi@ximian.com>
14345
14346         * culture-info-table.h : regenerated.
14347
14348 2007-10-30  Robert Jordan  <robertj@gmx.net>
14349
14350         * icall-def.h, icall.c:
14351         Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14352
14353         Code is contributed under MIT/X11 license.
14354
14355 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14356
14357         * class.c (mono_class_setup_vtable): Find the inflated methods in the
14358         inflated class instead of inflating them again.
14359         
14360         * class.c (mono_class_setup_vtable): Inflate the override methods in the 
14361         dynamic case.
14362
14363         * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14364         Call setup_supertypes () after klass->parent is set.
14365         (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14366
14367         * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14368         for inflated instances of not yet created dynamic generic classes.
14369         (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14370         times from inflated_method.
14371         (methodbuilder_to_mono_method): Ditto.
14372
14373 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14374
14375         * gc.c: code cleanup and removed old untested option of not creating the
14376         finalizer thread.
14377
14378 2007-10-29  Zoltan Varga  <vargaz@gmail.com>
14379
14380         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14381         creating a jump trampoline for dynamic methods.
14382
14383 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14384
14385         * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14386         generic TypeBuilders when called from another method of the same type (bug #335131).
14387
14388
14389 2007-10-27  Zoltan Varga  <vargaz@gmail.com>
14390
14391         * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14392         doesn't seem to work perfectly.
14393         
14394         * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14395         called multiple times.
14396         (methodbuilder_to_mono_method): Ditto.
14397         (resolve_object): Inflate FieldBuilder's.
14398
14399 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14400
14401         * string-icalls.c, string-icalls.h, appdomain.c: patch from
14402         Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14403         RemoveEmptyEntries in the string.Split implementation (bug #322375).
14404
14405 2007-10-26  Dick Porter  <dick@ximian.com>
14406
14407         * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14408         Thread initialisation changes
14409
14410 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14411
14412         * verify.c: fix compatibility check between arrays and System.Array
14413
14414 2007-10-26  Zoltan Varga  <vargaz@gmail.com>
14415
14416         * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14417         too. Fixes #336999.
14418
14419 2007-10-25  Zoltan Varga  <vargaz@gmail.com>
14420
14421         * object.c (mono_value_box): Use typed allocation here.
14422
14423 2007-10-23  Zoltan Varga  <vargaz@gmail.com>
14424
14425         * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14426         trampoline instead of compiling the method right away.
14427
14428         * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14429
14430 2007-10-21  Zoltan Varga  <vargaz@gmail.com>
14431
14432         * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14433         related fields for dynamic classes. Fixes #334493.
14434
14435 2007-10-20  Zoltan Varga  <vargaz@gmail.com>
14436
14437         * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14438         
14439         * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14440
14441         * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14442         (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14443
14444         * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14445
14446         * reflection.c (create_generic_typespec): Initialize klass->generic_container
14447         if needed.
14448         (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14449
14450 2007-10-18  Jonathan Chambers <joncham@gmail.com>
14451
14452         * marshal.c: Use correct key when removing item
14453         from ccw_hash.
14454         
14455         Code is contributed under MIT/X11 license.
14456
14457 2007-10-17  William Holmes  <billholmes54@gmail.com>
14458
14459         *marshal.c: Adding a case to marshal booleans to U1
14460
14461         Code is contributed under MIT/X11 license.
14462
14463 2007-10-18  Zoltan Varga  <vargaz@gmail.com>
14464
14465         * class.c (mono_class_from_name): Search the modules compromising dynamic
14466         assemblies. Fixes #331601.
14467
14468 2007-10-16  Zoltan Varga  <vargaz@gmail.com>
14469
14470         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14471         exception if the type name contains an assembly component. Fixes #334203.
14472
14473         * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14474         modules inside dynamic assemblies. Fixes #334200.
14475         
14476         * reflection.c: Set image->public_key and image->public_key_length;
14477
14478         * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14479         fields.
14480
14481         * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.        
14482         
14483 2007-10-16  Mark Probst  <mark.probst@gmail.com>
14484
14485         * metadata.c: Implemented correct comparing of generic classes.
14486         An inflated generic class can be equal to a non-inflated one if it
14487         is inflated with generic type variables as type arguments.  Fixes
14488         bug #333798.
14489
14490 2007-10-15  Dick Porter  <dick@ximian.com>
14491
14492         * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14493         WaitSleepJoin while it is waiting to acquire a lock.  Fixes bug
14494         81646.
14495
14496         * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14497         instead of a monitor lock.  This means that monitor_try_enter and
14498         co can set the thread state safely.
14499         (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14500         thread_interrupt_requested, so interrupt actually works.
14501
14502         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14503         ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14504         state accessor function
14505
14506 2007-10-15  Martin Baulig  <martin@ximian.com>
14507
14508         * mono-debug.h
14509         (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14510         the debugger with the current runtime.
14511
14512 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14513
14514         * object.c, object-internals.h: added the ability to set a single
14515         trampoline for all the slots in a vtable.
14516
14517 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14518
14519         * marshal.c: deal with a possible race condition during multicast
14520         delegate invocation.
14521
14522 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14523
14524         * class.c: ensure value type methods don't have the synchronized
14525         flag set.
14526
14527 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14528
14529         * string-icalls.c, string-icalls.h: reverted unapproved patch that
14530         breaks the build.
14531
14532 2007-10-11  Joel Reed  <joelwreed@comcast.com>
14533
14534         * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14535         to take an options parameter so that empty entries can be removed during
14536         the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14537
14538 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14539
14540         * marshal.c: make sure we don't store the signature from a dynamic
14541         method into the runtime invoke cache (bug #327189).
14542
14543 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14544
14545         * marshal.c: make sure the wrapper methods are properly initialized.
14546
14547 2007-10-11  Mark Probst  <mark.probst@gmail.com>
14548
14549         * metadata.c, metadata-internals.h: Generalized
14550         mono_type_stack_size() to mono_type_stack_size_internal() which
14551         takes an additional argument specifying whether it allows open
14552         types.
14553
14554 2007-10-10  Rodrigo Kumpera  <rkumpera@novell.com>
14555
14556         * verify.c (do_invoke_method): handle typedbyref params
14557         correctly and check for unverifiable return values.
14558
14559         * verify.c (do_newobj): fix a warning.
14560
14561 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14562
14563         * verify.c: don't tread typedbyref as allways unverifable,
14564         so uses, like (ld/st)loc.0 are valid. verify for the cases
14565         that it matters, like boxing related operations.
14566
14567 2007-10-09  Rodrigo Kumpera  <rkumpera@novell.com>
14568
14569         * verify.c: add verification of the newobj opcode. verification
14570         of delegate instantation still missing due ldftn and virldftn not
14571         pushing the function type on stack
14572
14573 2007-10-08  Mark Probst  <mark.probst@gmail.com>
14574
14575         * class-internals.h: Runtime generic context data structure
14576         definition.
14577
14578         * object.c: Initialization of runtime generic context at runtime
14579         vtable creation time.
14580
14581 2007-10-08  Massimiliano Mantione  <massi@ximian.com>
14582         * class.c (mono_class_create_from_typedef,
14583         mono_class_from_generic_parameter, mono_ptr_class_get,
14584         mono_fnptr_class_get, mono_bounded_array_class_get)
14585         * domain.c (mono_domain_create, mono_domain_free)
14586         * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14587         * image.c (do_mono_image_load, mono_image_close):
14588         Hooked up load-unload profiler events.
14589
14590 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14591
14592         * domain.c: track statistics about the actual amount of native code
14593         allocated.
14594
14595 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14596
14597         * class.c: the valuetype enumerators don't have the additional
14598         supertypes interfaces.
14599
14600 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14601
14602         * class.c: need more interfaces setup for the IEnumerator<T>
14603         object created for arrays (tests/ienumerator-interfaces.2.cs).
14604
14605 2007-10-05  Zoltan Varga  <vargaz@gmail.com>
14606
14607         * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14608
14609 2007-10-05  Alp Toker  <alp@atoker.com>
14610
14611         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14612         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14613         #315863.
14614
14615 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14616
14617         * verify.c (verify_type_compatibility_full): verification of
14618         compatibility improved, validates correctly non-strict checks between
14619         native int and I4 types different than (unsigned)int32.
14620
14621         * verify.c (do_store_indirect): added, do all verification of
14622         ldind.X opcodes. 
14623
14624         * verify.c (get_load_indirect_mono_type): renamed to
14625         get_indirect_op_mono_type, as it now returns the MonoType for 
14626         ldind.X and stind.X opcodes.
14627
14628 2007-10-04  Rodrigo Kumpera  <rkumpera@novell.com>
14629
14630         * reflection.c: Fix the encoding of generic type definition for
14631         TypeBuilders.
14632
14633         * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14634         mono_image_typedef_or_ref but allows to specify if typespec lookups should
14635         be made. Typespec check is done prior to typeref cache lookup.
14636
14637         * reflection.c (mono_image_typedef_or_ref): now just delegate to
14638         mono_image_typedef_or_ref_full.
14639
14640         * reflection.c (encode_generic_class): encode the generic class
14641         directly instead of calling encode_type.
14642
14643         * reflection.c (encode_type): encode the generic type definition
14644         MonoClass as a generic instantiation.
14645
14646         * reflection.c (create_typespec): cache typespec tokens in
14647         the assembly->typespec cache. Don't create typespec for a generic
14648         instance MonoClass. Create typespec for the generic type defintion.
14649
14650         * reflection.c (create_generic_typespec): encode the generic
14651         class directly instead of calling encode_type.
14652
14653         * reflection.c (mono_image_create_token): encode the generic
14654         type definition not using a typespec for MonoType instances.
14655
14656
14657 2007-10-04  Raja R Harinath  <rharinath@novell.com>
14658
14659         Fix #328812
14660         * class.c (mono_image_init_name_cache): Don't return nested
14661         'protected internal' classes.
14662         (mono_class_from_name_case): Likewise.
14663
14664 2007-10-04  Atsushi Enomoto  <atsushi@ximian.com>
14665
14666         * icall-def.h, icall.c : get_bundled_machine_config() is now the
14667           common function used by both DefaultConfig in System.dll and
14668           InternalConfigurationHost in System.Configuration.dll.
14669
14670 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14671
14672         * class.c: automatically add to vectors only a few essential explicit
14673         generic interfaces. The rest of the interfaces that arrays should
14674         provide are currently implicitly added (but still not lazily, see the
14675         design in the discussion of bug#325495 for the details of what is
14676         needed for that). Additionally, implicit interfaces are assigned the
14677         same vtable slot as the explicit interfaces (as they are compatible):
14678         this enables huge memory savings since we don't need to instantiate
14679         as many memthods and as large vtables anymore. Also, Since
14680         GetEnumerator<T> returns an instance of a type that is required to
14681         support a similarly large set of interfaces as arrays, we add
14682         implicit interfaces and interface offset sharing support to those
14683         types, too. This change adds all the required interfaces so that
14684         the anonarray.cs test case in the bug report works (we don't add
14685         all the interfaces to arrays of arrays 3-level deep and more because
14686         of the memory requirements explained in the bug and since they are much
14687         less common: the lazy-loading support will enabled them to work, too).
14688
14689 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14690
14691         * verify.c (merge_stacks): major clean up, all type compatibility
14692         checks are done by verify_type_compatibility. This fix my earlier lack
14693         of understanding of the CLR type system and merge_stacks no longer looks
14694         scary.
14695
14696         * verify.c: fixed some bad spelling.
14697
14698 2007-10-02  Rodrigo Kumpera  <rkumpera@novell.com>
14699
14700         * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14701         a given stack slock.
14702         
14703         * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14704         verify_type_compatibility_full. This removed a near indentical function and fixed
14705         handling of Int32 and IntPtr across all opcodes.
14706
14707 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14708
14709         * class.c: only vectors have the additional generic interfaces.
14710
14711 2007-10-01  Jonathan Chambers <joncham@gmail.com>
14712
14713         * mono-config.c: Use g_strcasecmp instead of
14714         strcasecmp like everywhere else to fix
14715         compilation with MSVC.
14716         
14717         Code is contributed under MIT/X11 license.
14718
14719 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14720
14721         * object.c, object-internals.h: refactored the IMT code to enable
14722         building a single slot at a time and lazily creating the IMT trampolines
14723         and thunks.
14724
14725 2007-09-29  Zoltan Varga  <vargaz@gmail.com>
14726
14727         * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14728
14729         * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14730         Fixes #328501.
14731         
14732 2007-09-29  Raja R Harinath  <harinath@gmail.com>
14733
14734         * loader.c (method_from_methodspec): Rearrange to avoid
14735         un-necessary exposition.  Don't assert out if the method's
14736         declaring type is a generic type definition.
14737
14738 2007-09-28  Martin Baulig  <martin@ximian.com>
14739
14740         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14741
14742 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14743
14744         * class-internals.h: optimize field layout of MonoClass to
14745         requires less cachelines at runtime and save a few bytes on 64 bit
14746         systems.
14747
14748 2007-09-28  Jb Evain  <jbevain@novell.com>
14749
14750         * reflection.c: when encoding type names in custom attributes,
14751         if the type is a closed generic type, its generic arguments
14752         have to be serialized as AssemblyQualifiedName, so that when
14753         they are deserialized, it's possible to re-create them properly.
14754         Fixes #329450.
14755
14756
14757 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14758
14759         * object.c, class-internals.h: added delegate-creation counter.
14760
14761 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14762
14763         * class.c: cleanup of the code that synthetizes interfaces for
14764         arrays in 2.0: saves quit a bit of corlib mempool memory.
14765         Code to fix bug #325495 ifdeffed out for now until the issues
14766         with memory usage and O(n^2) behaviour are fixed.
14767
14768 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14769
14770         * marshal.c: when possible, do not duplicate the name of the methods
14771         in the method builder and in the generated MonoMethod.
14772
14773 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14774         * verify.c: added support for type checking ldind_* opcodes.
14775
14776 2007-09-27  Rodrigo Kumpera  <rkumpera@novell.com>
14777
14778         * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14779         which is used to distinguish the fully open instantiation of a TypeBuilder
14780         with the rest. This temporary hack is required to restore the property that
14781         the fully open instantiation is the same type of the generic type definition.
14782
14783         * class-internals.h (mono_generic_class_is_generic_type_definition):
14784         new function as part of the internal API.
14785
14786         * class.c (inflate_generic_type): return NULL when the generic inst is
14787         fully open. The fully open generic type is now the same as the generic type
14788         definition for non TypeBuilder types.
14789
14790         * class.c (mono_generic_class_get_class): removed assert since it is
14791         no longer valid, gklass->cached_class can point to the generic type definition.
14792
14793         * class.c (mono_generic_class_is_generic_type_definition): new.
14794
14795         * metadata.c (mono_generic_class_hash): added is_tb_open field
14796         to the hash calculation.
14797
14798         * metadata.c (free_generic_class): if the generic class is associated
14799         with the generic type definition, its field will come from the mempool and
14800         must not be freed.
14801
14802         * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14803         new, this function identifies the corner case of a TypeBuilder fully open
14804         instantiation.
14805
14806         * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14807         for lookup. Set gclass->cached_class to be the container class in case of
14808         the fully open instantiation of non TypeBuilder types.
14809
14810         * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14811         to compare generic classes.
14812
14813         * reflection.c (method_encode_methodspec): remove assert that
14814         no longer is valid.
14815
14816         * reflection.c (mono_reflection_generic_class_initialize): add
14817         an aditional assert to ensure the proper type is used.
14818
14819 2007-09-26  Rodrigo Kumpera  <rkumpera@novell.com>
14820
14821         * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14822         to enjoy it.
14823
14824 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14825
14826         * verify.c (push_arg): Fixed support for ldarga
14827         * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14828         MonoType used as first arg in case of instance calls.
14829
14830 2007-09-25  Rodrigo Kumpera  <rkumpera@novell.com>
14831
14832         * verify.c: Support for verifying VAR and MVAR types, 
14833
14834 2007-09-25  Zoltan Varga  <vargaz@gmail.com>
14835
14836         * icall.c (ves_icall_get_property_info): Set the reflected type of the
14837         accessors correctly.
14838
14839 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14840
14841         * threads.c: support OSX and other systems in
14842         mono_thread_get_stack_bounds (bug #328026).
14843
14844 2007-09-25  Martin Baulig  <martin@ximian.com>
14845
14846         * mono-debug.h
14847         (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14848
14849 2007-09-24  Martin Baulig  <martin@ximian.com>
14850
14851         * mono-debug.h
14852         (MonoDebugClassEntry): Moved the definition of this struct into
14853         mono-debug.c to make it private.
14854
14855         * mono-debug.c
14856         (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14857         type table per symbol file, we don't need to store the symfile id
14858         any longer.
14859
14860 2007-09-24  Martin Baulig  <martin@ximian.com>
14861
14862         Create one type table per symbol file, since a `MonoClass *' gets
14863         invalid when its image is unloaded.
14864
14865         * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14866         (MonoDebugHandle): Added `type_table'.
14867
14868 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14869
14870         * mempool.c, mempool.h: added mono_mempool_new_size () API
14871         to be able to specify a smaller initial size for the pool.
14872         Adjusted the code to slowly increase pool size before using
14873         the previous default size.
14874         * image.c: use a small initial size for image mempools.
14875
14876 2007-09-23  Zoltan Varga  <vargaz@gmail.com>
14877
14878         * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14879         Fixes ##320990.
14880
14881         * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal): 
14882         Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14883
14884 2007-09-22  Zoltan Varga  <vargaz@gmail.com>
14885
14886         * metadata.c (mono_type_create_from_typespec): Remove an invalid
14887         free. Fixes #327438.
14888
14889 2007-09-21  Raja R Harinath  <harinath@gmail.com>
14890
14891         * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14892         generic instantiations, etc.
14893         <MONO_TYPE_ARRAY>: Likewise.
14894
14895 2007-09-21  Martin Baulig  <martin@ximian.com>
14896
14897         * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14898         these structs were never defined.
14899         (MonoDebugHandle): Removed the `_priv' field, it was never used.
14900
14901 2007-09-21  Martin Baulig  <martin@ximian.com>
14902
14903         * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14904
14905 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14906
14907         * image.c: removed the guid hash tables: we can get the same info
14908         without the additional memory usage hit (partially fixes also bug #327052).
14909
14910 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
14911
14912         * profiler.h, profiler-private.h, profiler.c: add a new profiler
14913         event to handle unloading methods. After the event is called, the
14914         corresponding MonoMethod* must be considered invalid.
14915         * loader.c (mono_free_method): call the new mono_profiler_method_free
14916         event.
14917
14918 2007-09-20  Mark Probst  <mark.probst@gmail.com>
14919
14920         * domain-internals.h: New flag in MonoJitInfo which marks shared
14921         generic methods.  New hash table (shared_generics_hash) in
14922         MonoDomain to keep track of shared generic methods.  Prototypes
14923         for functions to register and lookup shared generic methods.
14924
14925         * domain.c: Support for registering and looking up shared generic
14926         methods via a hash table (shared_generics_hash) in MonoDomain.
14927
14928         * class-internals.h: New exception to signal failure of shared
14929         compilation of a generic method.  New counters for generics
14930         sharing in MonoStats.
14931
14932 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14933
14934         * image.c, metadata-internals.h: don't keep a file descriptor open
14935         for loaded assemblies (bug#325988).
14936
14937 2007-09-19  Raja R Harinath  <rharinath@novell.com>
14938
14939         * metadata.c (signature_in_image): New.  Carve out of type_in_image.
14940         (ginst_in_image, gclass_in_image): Simplify.  Change signature to
14941         use the corresponding datatypes.
14942         (type_in_image): Update to changes.
14943         (CleanForImageUserData): Simplify.
14944         (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14945         Avoid quadratic behaviour in handling the "stolen" list by
14946         separating the filter predicate out, and by prepending the stolen
14947         items rather than appending them.
14948         (steal_ginst_in_image): Likewise.
14949         (mono_metadata_clean_for_image): Update to changes.
14950
14951 2007-09-19  Martin Baulig  <martin@ximian.com>
14952
14953         * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14954
14955 2007-09-19  Martin Baulig  <martin@ximian.com>
14956
14957         * mono-debug.c (mono_debug_cleanup): Don't call
14958         mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14959
14960 2007-09-19  Raja R Harinath  <harinath@gmail.com>
14961
14962         Fix crash on 'make run-test' in mcs/errors
14963         * metadata.c (type_in_image): New.  Carve out of ginst_in_image.
14964         Avoid more potential allocations in mono_class_from_mono_type.
14965         (ginst_in_image): Update to changes.
14966         (gclass_in_image): Rearrange slightly.
14967
14968 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14969
14970         * class.c (mono_class_init): Move the code that sets up class->methods to 
14971         mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
14972
14973         * metadata.c (mono_metadata_get_inflated_signature): New function to return a
14974         canonical instance of an inflated generic signature.
14975         (mono_type_create_from_typespec): Remove an invalid free.
14976
14977         * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.  
14978
14979 2007-09-18  Marek Habersack  <mhabersack@novell.com>
14980
14981         * domain-internals.h: added a declaration of the
14982         mono_assembly_load_full_nosearch internal function.
14983
14984         * assembly.c (mono_assembly_load_with_partial_name): use
14985         mono_try_assembly_resolve return value properly.
14986         (mono_assembly_load_full_nosearch): copied the function body from
14987         mono_assembly_load_full, without the code to invoke assembly
14988         search hooks.
14989         (mono_assembly_load_full): calls the above new function and if the
14990         assembly is not resolved, invokes the search hooks.
14991
14992         * appdomain.c (mono_runtime_init): restore the global postload
14993         assembly search handlers.
14994
14995 2007-09-18  Zoltan Varga  <vargaz@gmail.com>
14996
14997         * class.c (mono_class_init): Make sure class->methods and class->properties
14998         are never NULL in the generics case.
14999
15000         * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15001
15002 2007-09-17  Zoltan Varga  <vargaz@gmail.com>
15003
15004         * metadata.c (free_generic_class): Disable some code to fix the build.
15005
15006         * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15007
15008         * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15009         from the image mempool.
15010
15011         * metadata.c (free_generic_class): Free more data from the inflated class.
15012
15013         * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15014
15015         * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15016         mempool.
15017         (mono_type_create_from_typespec): Ditto.
15018
15019         * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15020         MonoImage to the caller.
15021         (mono_init_internal): Save the opened image in a global variable.
15022         (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15023
15024         * reflection.c (resolve_object): Fix a leak.
15025
15026         * metadata.c: Fix the freeing of data in the generics caches.
15027         
15028         * metadata.c (free_generic_inst): Comment this out to fix the build.
15029         (free_generic_class): Ditto.
15030
15031         * metadata.c: Free cached generic methods, instantinations and classes when
15032         they are removed from the caches.
15033         (mono_metadata_free_type): Free the type itself.
15034
15035         * class.c: Free the result of mono_class_inflate_generic_type () in a few
15036         places.
15037
15038 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15039
15040         * boehm-gc.c: restrict managed allocs to __thread supporting
15041         architectures.
15042
15043 2007-09-16  Zoltan Varga  <vargaz@gmail.com>
15044
15045         * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15046         (mono_generic_class_get_class): Fix a leak.
15047
15048         * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15049         mono_metadata_free_type ().
15050         (mono_metadata_inflate_generic_inst): Fix a leak.
15051
15052 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15053
15054         * mono-debug.c (free_header_data): Fix a leak missed earlier.
15055
15056         * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15057         mempool.
15058
15059         * mono-debug.c (mono_debug_close_image): Fix call to 
15060         g_hash_table_remove ().
15061
15062 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15063
15064         * icall-def.h: redirect all the string ctor to the managed
15065         CreateString () methods.
15066         * string-icalls.c, string-icalls.h: removed dead code for string
15067         ctors and icalls.
15068
15069 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15070
15071         * mono-debug.c: Fix memory leaks.
15072
15073 2007-09-14  Jonathan Chambers <joncham@gmail.com>
15074
15075         * threads-types.h: Implement mono_hazard_pointer_set and 
15076         mono_hazard_pointer_clear macros using do/while(0) to fix
15077         compilation with MSVC.
15078         
15079         Code is contributed under MIT/X11 license.
15080
15081 2007-09-14  Zoltan Varga  <vargaz@gmail.com>
15082
15083         * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15084         -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15085
15086 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15087
15088         * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15089         icalls.
15090
15091 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15092
15093         * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15094         managed-code allocated as well.
15095
15096 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15097
15098         * class.c (mono_class_is_assignable_from): Add support for generic variance.
15099
15100 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15101
15102         * boehm-gc.c: fixed the build after the AOT changes.
15103
15104 2007-09-13  Zoltan Varga  <vargaz@gmail.com>
15105
15106         * wrapper-types.h: Add an ALLOC wrapper type.
15107
15108         * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15109         reference managed allocator methods.
15110
15111 2007-09-12  Marek Safar  <marek.safar@gmail.com>
15112
15113         * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15114         of Type array and not MonoType, a fix suggested by Hari.
15115         
15116 2007-09-12  Jonathan Chambers <joncham@gmail.com>
15117
15118         * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15119         and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15120         
15121         Code is contributed under MIT/X11 license.
15122
15123 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15124
15125         * domain.c, object.c, mono-config.c, object-internals.h: Fixed  #82416.
15126
15127 2007-09-12  Marek Habersack  <mhabersack@novell.com>
15128
15129         * image.c (do_mono_image_open): if assembly file fails to open and
15130         MONO_IOMAP is in effect, try to find the path in a
15131         case-insensitive way.
15132
15133         * appdomain.c (mono_runtime_init): do not install postload hooks -
15134         tests show that MS.NET doesn't use anything of that sort to
15135         trigger the AppDomain.AssemblyResolve event.
15136         (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15137         made non-static.
15138         (mono_runtime_init): init portability helpers here.
15139
15140         * assembly.c (mono_assembly_load_with_partial_name): if other   
15141         attempts fail, trigger the AppDomain.AssemblyResolve event handler
15142         to resolve the assembly.
15143
15144         * domain-internals.h: added mono_try_assembly_resolve and marked
15145         it as internal.
15146
15147 2007-09-11  Jb Evain  <jbevain@novell.com>
15148
15149         * object-internals.h (MonoReflectionDynamicMethod): add
15150         a `MonoReflectionType *owner` field. The owner is used
15151         * reflection.c:
15152         (mono_reflection_create_dynamic_method): use the owner of the dynamic
15153         method as the class declaring the dynamic method.
15154         (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15155         dynamic method to the declaring type of the methodbuilder.
15156
15157 2007-09-11  Mark Probst  <mark.probst@gmail.com>
15158
15159         * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15160         rules for calling methods via reflection.
15161
15162 2007-09-11  Zoltan Varga  <vargaz@gmail.com>
15163
15164         * reflection.c (resolve_object): Add support for MonoGenericClass. 
15165         Inflate MonoType's.
15166
15167 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15168
15169         * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15170         provide a managed method that does fast allocations without needing
15171         a managed->unmanaged transition. Boehm GC implementation currently
15172         enabled for ptrfree objects on sane architectures.
15173
15174 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15175
15176         * marshal.c, marshal.h: exported a couple of useful functions and
15177         added mono_mb_get_label () to easily handle backward branches.
15178
15179 2007-09-10  Zoltan Varga  <vargaz@gmail.com>
15180
15181         * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15182
15183 2007-09-10  Massimiliano Mantione  <massi@ximian.com>
15184
15185         * loader.c (find_method): Fixed the regression introduced while
15186         fixing bug #81466.
15187
15188 2007-09-09  Zoltan Varga  <vargaz@gmail.com>
15189
15190         * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15191         well.
15192         
15193         * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15194         icall.c reflection.c: Pass a MonoGenericContext argument to 
15195         mono_lookup_dynamic_token ().
15196
15197         * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15198         #82744.
15199         
15200 2007-09-09  Robert Jordan  <robertj@gmx.net>
15201
15202         * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15203         for generic methods.
15204
15205         * object.c (mono_object_get_virtual_method): Handle generic methods.
15206         Fixes bug #78882.
15207
15208         Code is contributed under MIT/X11 license.
15209
15210 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15211
15212         * image.c: fix locking in mono_image_load_file_for_image ().
15213
15214 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15215
15216         * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15217         used only as a cache: added an icall to fill it.
15218
15219 2007-09-16  Rodrigo Kumpera  <rkumpera@novell.com>
15220
15221         * reflection.h: exposed mono_reflection_free_type_info
15222         * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15223         since mono_reflection_bind_generic_parameters makes a copy of it.
15224         * reflection.c (free_type_info): subinfos should be freed.
15225         * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and 
15226         made non static.
15227         * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15228         replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15229         this fixes #82695 and #81726.
15230    
15231
15232 2007-09-03  Atsushi Enomoto  <atsushi@ximian.com>
15233
15234         * process.h, process.c:  added support for user profile/info in
15235           ProcessStartInfo. For now only Windows works.
15236
15237 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15238
15239         * metadata.c: consider the generic arguments when comparing
15240         signatures (bug #82614).
15241
15242 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15243
15244         * cil-coff.h, image.c: updated assembly loader to cope with the
15245         PE32+ 64 bit file format.
15246
15247 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15248
15249         * assembly.c, class.c, domain.c, loader.c: remove useless
15250         inclusion of cil-coff.h.
15251
15252 2007-08-29  Jonathan Chambers  <joncham@gmail.com>
15253
15254         * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15255         if interface is marked with CoClassAttribute. 
15256    
15257         Code is contributed under MIT/X11 license.
15258
15259 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15260
15261         * sgen-gc.c: ensure no object from the to space is copied again or finalized
15262         if it's seen twice in major collections.
15263
15264 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15265
15266         * sgen-gc.c: big objects are not copied to the gray area, but they
15267         need to be considered for scanning, too, if they are brought alive
15268         by an object ready for finalizations or a survived one.
15269
15270 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15271
15272         * sgen-gc.c: properly account the number of disappearing links when
15273         they are nullified.
15274
15275 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15276
15277         * sgen-gc.c: share the code to scan the registered roots between the
15278         different types of collections.
15279
15280 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15281
15282         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15283
15284 2007-08-28  Zoltan Varga  <vargaz@gmail.com>
15285
15286         * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15287         class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15288
15289 2007-08-28  Mark Probst  <mark.probst@gmail.com>
15290
15291         * security-manager.c (mono_security_manager_get_methods):
15292         LinkDemandSecurityException now has 2 arguments instead of 3.
15293
15294 2007-08-27  Zoltan Varga  <vargaz@gmail.com>
15295
15296         * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15297         platforms which need it.
15298
15299 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15300
15301         * sgen-gc.c: unregister thread data structures with a pthread_key_t
15302         dtor.
15303
15304 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15305
15306         * threads.c: free the thread static data on thread exit.
15307
15308 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15309
15310         * class.c: walk the hierarchy to find the generic definition for
15311         a class (fixes runtime part of bug #82498).
15312
15313 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15314
15315         * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15316         ...
15317
15318         * image.c (mono_image_close): Here. Hopefully fixes #82510.
15319
15320 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15321
15322         * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15323
15324 2007-08-24  Robert Jordan  <robertj@gmx.net>
15325
15326         * appdomain.c: don't perform the ':'->';' substitution on Win32.
15327
15328 2007-08-24  Jb Evain  <jbevain@novell.com>
15329
15330         * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15331         for byref types.
15332
15333 2007-08-24  Mark Probst  <mark.probst@gmail.com>
15334
15335         * threads.c: Make sure a thread gets cleaned up only once.  Fixes
15336         #82286.
15337
15338 2007-08-24  Zoltan Varga  <vargaz@gmail.com>
15339
15340         * assembly.c: Fix a warning.
15341         
15342 2007-08-23  Marek Habersack  <mhabersack@novell.com>
15343
15344         * appdomain.c: parse the <runtime> section looking for the probing
15345         element with the 'privatePath' attribute, which sets additional
15346         directories in which the runtime should look for assemblies.
15347
15348 2007-08-23  Robert Jordan  <robertj@gmx.net>
15349
15350         * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15351         Fixes #82499.
15352
15353 2007-08-23  Martin Baulig  <martin@ximian.com>
15354
15355         * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15356         _mono_debug_init_corlib() and remove it from the header file.
15357
15358 2007-08-23  Martin Baulig  <martin@ximian.com>
15359
15360         * mono-debug-debugger.c
15361         (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15362         don't notify the debugger about it.
15363
15364         * mono-debug-debugger.h
15365         (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15366
15367 2007-08-23  Robert Jordan  <robertj@gmx.net>
15368
15369         * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15370         Code is contributed under MIT/X11 license.
15371
15372 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15373
15374         * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15375
15376 2007-08-22  Martin Baulig  <martin@ximian.com>
15377
15378         * mono-debug.c: Store debugging info on a per-domain basis and
15379         free it on domain unload.  Add support for unloading symbol files.
15380
15381         * mono-debug.h
15382         (MonoDebugList): New typedef.
15383         (MonoSymbolTable):
15384         - add `data_tables and `type_table'.
15385         - replace 'symbol_files' and `num_symbol_files' with a
15386           `MonoDebugList *'.
15387         (mono_debug_data_table): Removed.
15388         (mono_debug_list_add): New public function.
15389         (mono_debug_list_remove): New public function.
15390         (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15391         (mono_debug_init_2_memory): Renamed into
15392         mono_debug_open_image_from_memory().
15393         (mono_debug_close_image): New public function.
15394         (mono_debug_domain_create): Likewise.
15395         (mono_debug_domain_unload): Likewise.
15396         (MONO_DEBUGGER_VERSION): Bump to 60.
15397
15398         * mono-debug-debugger.h
15399         (MonoDebuggerEvent):
15400         - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15401         - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15402         - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15403         - rename `THREAD_CREATED' and `THREAD_EXITED' into
15404           `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15405         - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15406           meaning.
15407         (mono_debugger_add_symbol_file): Removed.
15408         (mono_debugger_add_type): Removed.
15409         (mono_debugger_lookup_type): Removed.
15410         (mono_debugger_lookup_assembly): Removed.
15411
15412         * domain.c
15413         (mono_domain_create): Call mono_debug_domain_create().
15414         (mono_init_internal): Call mono_debug_init_corlib().
15415
15416         * assembly.c
15417         (mono_assembly_close): Call mono_debug_close_image().
15418
15419 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15420
15421         * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15422         mmap call.
15423
15424 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15425
15426         * sgen-gc.c: ensure section->pin_queue_end is initialized
15427         correctly when non pinning objects in the section have been found.
15428
15429 2007-08-22  Marek Habersack  <mhabersack@novell.com>
15430
15431         * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15432         containing a list of directories separated by ':'. MSDN docs say
15433         the directories should be separated with ';'. Part of a bugfix for
15434         bug #81446
15435
15436 2007-08-21  Rodrigo Kumpera  <rkumpera@novell.com>
15437
15438         * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15439         it should MonoType and not MonoClass.
15440
15441 2007-08-21  Atsushi Enomoto  <atsushi@ximian.com>
15442
15443         * culture-info-table.h : regenerated.
15444
15445 2007-08-20  William Holmes  <billholmes54@gmail.com>
15446
15447         *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15448          to call ReplaceFile Kernel32 on windows or in io-layer.
15449         *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15450         *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15451          as an internal call.
15452
15453         Code is contributed under MIT/X11 license.
15454
15455 2007-08-20  Jb Evain  <jbevain@novell.com>
15456
15457         * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15458         and MONO_EXCEPTION_FIELD_ACCESS.
15459
15460         * debug-helpers.[c|h]: new mono_field_full_name function.
15461
15462 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15463
15464         * class.c: Removed class_security_level() and moved it to
15465         security-core-clr.c.
15466
15467         * security-core-clr.c, security-core-clr.h: class_security_level()
15468         is now public and renamed to mono_security_core_clr_class_level().
15469         It also looks for security attributes in the classes a class is
15470         nested in.
15471
15472 2007-08-20  Mark Probst  <mark.probst@gmail.com>
15473
15474         * security-core-clr.c, security-core-clr.h: CoreCLR security
15475         utility functions.
15476
15477         * Makefile.am: Added security-core-clr.[ch].
15478
15479         * security-manager.c, security-manager.h: Functions and enum for
15480         setting and getting the security mode.
15481
15482         * class.c: CoreCLR security checks.
15483
15484 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15485
15486         * icall-def.h, process.c, process.h: implemented icall to get
15487         user/system processor times.
15488
15489 2007-08-17  Mark Probst  <mark.probst@gmail.com>
15490
15491         * domain.c, threads.c, class-internals.h, domain-internals.h: New
15492         reader-lock-free jit_info_table.
15493
15494 2007-08-17  Zoltan Varga  <vargaz@gmail.com>
15495
15496         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15497
15498         * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.   
15499
15500         * object-internals.h (MonoException): Add missing _data member.
15501
15502 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15503
15504         * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15505         checking that only methods with matching qname or fqname are picked
15506         from implemented interfaces.
15507
15508 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15509
15510         * verify.c (do_newarr):added, do type verification of
15511         newarr ops, push the right value on the eval stack.
15512         * verify.c (mono_method_verify): use do_newarr
15513
15514
15515 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15516
15517         * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15518         factored the common code into get_boxable_mono_type, which
15519         is now using mono_type_get_full, this fixed byref related tests.
15520
15521 2007-08-16  Rodrigo Kumpera  <rkumpera@novell.com>
15522
15523         * class.c: added mono_type_get_full, this function has the same
15524         behavior of mono_class_get_full but the returned MonoType has
15525         all metadata of the associated token in case of a typespec token.
15526         * class.c: added mono_type_retrieve_from_typespec, used by 
15527         mono_type_get_full to retrieve the token type.
15528         * class.c (mono_class_create_from_typespec): changed to use
15529         mono_type_retrieve_from_typespec.
15530         * class.c (mono_ldtoken): changed to use mono_type_get_full
15531         for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15532         * class-internals.h: exported mono_type_get_full for internal use.
15533
15534 2007-08-16  Jb Evain  <jbevain@novell.com>
15535
15536         * domain.c (supported_runtimes): add entry for
15537         the 'moonlight' runtime version.
15538
15539 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15540
15541         * verify.c (mono_method_verify): small typo sliped in.  
15542
15543 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15544
15545         * verify.c (do_unbox_value): added, do type verification of
15546         unboxing ops
15547         * verify.c (mono_method_verify): use do_unbox_value
15548
15549
15550 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15551
15552         * verify.c (dump_stack_value): fixed typo, was printing string
15553         instead of object on stack.
15554         * verify.c (do_box_value): moved the byref check up as it leads
15555         to invalid code and should be done earlier.
15556         * verify.c: improved error messages for and ldobj
15557
15558 2007-08-15  William Holmes  <billholmes54@gmail.com>
15559
15560         * marshal.c (emit_marshal_custom): Omit the call to 
15561           marshal_native_to_managed when calling native to managed 
15562           and the argument is specified as an out argument.
15563
15564         Code is contributed under MIT/X11 license.
15565
15566 2007-08-15  Rodrigo Kumpera  <rkumpera@novell.com>
15567
15568         * verify.c: fixed the type checks for generics, function pointers and vectors.
15569         Added type verification for ldobj and ldtoken. The verifier
15570         would segfault if header or signature of a method contained references
15571         to non-existant types.
15572
15573 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15574
15575         * marshal.c (cominterop_get_ccw): Patch from
15576         Bill Holmes to no walk up interface hierarchy. 
15577         All parent methods should be present in the interface for COM.
15578    
15579         Code is contributed under MIT/X11 license.
15580
15581 2007-08-15  Jonathan Chambers  <joncham@gmail.com>
15582
15583         * marshal.c (emit_marshal_com_interface): Patch from
15584         Bill Holmes to handle COM Interfaces as return values
15585         for native->managed calls.
15586    
15587         Code is contributed under MIT/X11 license.
15588
15589 2007-08-14  Jonathan Chambers  <joncham@gmail.com>
15590
15591         * marshal.c (cominterop_get_idispatch_for_object): Implement
15592         for runtime callable wrappers.
15593    
15594         Code is contributed under MIT/X11 license.
15595
15596 2007-08-13  Rodrigo Kumpera  <rkumpera@novell.com>
15597
15598         * pedump.c (main): changed from mono_init to mono_init_from_assembly
15599         so 2.0 types are accessible
15600
15601
15602 2007-08-13  Miguel de Icaza  <miguel@novell.com>
15603
15604         * domain.c (mono_init_internal): Call mono_assembly_load_friends
15605         once we load mscorlib.   Due to the order in which we initialize,
15606         the mono_assembly_load_full routine that loads mscorlib did not
15607         load friends.   We now load it once we load the
15608         mono_defaults.internals_visible_class class. 
15609
15610         * assembly.c: Expose the mono_load_friend_assemblies method.
15611
15612 2007-08-11  Rodrigo Kumpera  <rkumpera@novell.com>
15613
15614         * verify.c: improved the handling of boxing, better
15615         type checking for unary ops and conversion. Fix bug
15616         regarding managed pointer compatibility checking
15617
15618 2007-08-11  Zoltan Varga  <vargaz@gmail.com>
15619
15620         * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15621
15622         * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15623
15624 2007-08-09  Raja R Harinath  <rharinath@novell.com>
15625
15626         * reflection.c (dup_type): Remove.
15627         * class.c (dup_type): Remove.
15628         (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15629         instead of the dodgy 'dup_type'.
15630         (inflate_generic_type): Likewise.  Fix the VAR/MVAR cases to
15631         handle the case where 'dup_type' needed the second argument.
15632
15633 2007-08-08  Zoltan Varga  <vargaz@gmail.com>
15634
15635         * domain.c: Fix a warning.
15636
15637 2007-08-08  Massimiliano Mantione  <massi@ximian.com>
15638
15639         * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15640         checking that methods with the same fqname are not overridden
15641         with a method from an ancestor.
15642
15643 2007-08-07  Zoltan Varga  <vargaz@gmail.com>
15644
15645         * threads.c (free_thread_static_data_helper): Avoid a crash if
15646         thread->static_data is not yet set.
15647
15648 2007-08-07  Jonathan Chambers  <joncham@gmail.com>
15649
15650         * marshal.c: Use correct image when emitting
15651         native wrapper for COM calls.
15652    
15653         Code is contributed under MIT/X11 license.
15654
15655 2007-08-07  Atsushi Enomoto  <atsushi@ximian.com>
15656
15657         * icall-def.h, security.c, security.h :
15658           added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15659
15660 2007-08-07  Martin Baulig  <martin@ximian.com>
15661
15662         * mono-debug-debugger.h
15663         (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15664
15665         * domain.c (mono_domain_free): Call
15666         `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15667
15668 2007-08-06  Rodrigo Kumpera  <rkumpera@novell.com>
15669
15670         * verify.c (check_underflow, check_overflow): error message now returns IL offset
15671         * verify.c (in_same_block): code should test if either offset is inside the clauses
15672         * verify.c (mono_method_verify): push the exception into the eval stack of exception
15673         and filter blocks
15674
15675 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15676
15677         * image.c (mono_image_close): Fix a leak.
15678
15679         * object.c (mono_runtime_invoke_array): Avoid using alloca.
15680
15681         * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.        
15682
15683 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15684
15685         * domain.c, threads.c, threads-types.h: fix memory retention issue
15686         with thread static variables not being cleared on domain unload.
15687         Reuse thread static slots after domain unload.
15688
15689 2007-08-03  Zoltan Varga  <vargaz@gmail.com>
15690
15691         * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15692         nullable type.
15693
15694         * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15695         now done in mono_runtime_invoke_array.
15696
15697         * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the 
15698         receiver is a nullable type.
15699
15700         * class.c (mono_class_is_assignable_from): Handle the case when klass is a 
15701         generic parameter.
15702
15703 2007-08-03  Jonathan Chambers  <joncham@gmail.com>
15704
15705         * marshal.c: Implement COM Objects as return type for 
15706         managed->unmanaged calls. Added Release calls for COM Object
15707         out/return values in managed->unmanaged calls.
15708
15709         Code is contributed under MIT/X11 license.
15710
15711 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15712
15713         * threads.h, threads-type.h: move the hazard pointer declarations
15714         to the private header.
15715
15716 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15717
15718         * file-io.c, appdomain.c: memory leak fixes.
15719
15720 2007-08-02  Dick Porter  <dick@ximian.com>
15721
15722         * socket-io.c
15723         (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15724         SO_REUSEADDR setting into io-layer/sockets.c.
15725
15726 2007-08-01  Zoltan Varga  <vargaz@gmail.com>
15727
15728         * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15729         from Object when called on a generic parameter. Fixes #82211.
15730
15731 2007-08-01  Dick Porter  <dick@ximian.com>
15732
15733         * file-io.c (convert_share): Test FileShare values bit-by-bit.
15734         Fixes bug 79250 yet again.
15735
15736 2007-07-30  Martin Baulig  <martin@ximian.com>
15737
15738         Merged the `debugger-dublin' branch.
15739
15740         * mono-debug.h
15741         (MonoDebugDataTable): New typedef.
15742         (MonoDebugMethodAddressList): New typedef.
15743         (MonoDebugWrapperData): Removed.
15744         (MonoDebugSymbolTable): Removed `current_data_table',
15745         `current_data_table_size', `current_data_table_offset'.
15746         (MonoDebugDataItemType): Moved into mono-debug.c.
15747         (MonoDebugMethodJitInfo): Remove `address'.
15748         (mono_debug_data_table): New global variable.
15749         (mono_debug_lookup_method_addresses): New public function.
15750         (mono_debug_find_method): Take a `MonoMethod *', not a
15751         `MonoDebugMethodInfo *'.
15752
15753         * mono-debug.c: Drop support for the old symbol tables.
15754
15755 2007-06-28  Martin Baulig  <martin@ximian.com>
15756
15757         * mono-debug.c (mono_debug_debugger_version): New public variable.
15758
15759 2007-07-31  William Holmes  <billholmes54@gmail.com>
15760
15761         * metadata.c Changed mono_type_create_from_typespec to not insert
15762           the type into the hash map until after
15763           do_mono_metadata_parse_type has completed.
15764         Fixes Bug #82194
15765         Code is contributed under MIT/X11 license.
15766
15767 2007-07-31  Zoltan Varga  <vargaz@gmail.com>
15768
15769         * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15770         generic parameter. Fixes #82211.
15771
15772 2007-07-27  Jb Evain  <jbevain@novell.com>
15773
15774         * pedump.c (dump_metadata, dump_metadata_header): dump
15775         versions contained in the metadata header.
15776
15777 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15778
15779         * threads.c: register small_id_table with the GC.
15780
15781 2007-07-27  Mark Probst  <mark.probst@gmail.com>
15782
15783         * threads.c, threads.h, class-internals.h, object-internals.h:
15784         Hazard pointers, to be used by lock-free parallel algorithms.
15785
15786 2007-07-26  Dick Porter  <dick@ximian.com>
15787
15788         * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15789         routine on non-windows platforms, as I've not managed to think of
15790         a non-kludgy way of doing this.  Finishes off bug 78739.
15791
15792 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15793
15794         * object.c: properly setup interface_bitmap in proxy vtables.
15795
15796 2007-07-25  Marek Habersack  <mhabersack@novell.com>
15797
15798         * appdomain.c (get_shadow_assembly_location): do not use TickCount
15799         to create unique shadow copy target directories, use the domain's
15800         serial number instead. Each domain gets a unique target directory
15801         that way.
15802
15803         * domain.c (mono_domain_create): added code to increment domain
15804         shadow copy serial number and cache the value in the current
15805         domain structure.
15806
15807         * domain-internals.h (struct _MonoDomain): added a new field -
15808         shadow_serial to hold the serial number used in generation of
15809         shadow-copy directories. This is to make sure that the directory
15810         name is unique for each and every domain created. We avoid a race
15811         condition with overriding assemblies already in use by other app
15812         domains.
15813
15814 2007-07-24  Rodrigo Kumpera  <rkumpera@novell.com>
15815
15816         * class.c (mono_bounded_array_class_get): fixed memory leak when 
15817         binding generic parameters.
15818
15819 2007-07-24  Raja R Harinath  <rharinath@novell.com>
15820
15821         * metadata.c (do_mono_metadata_parse_generic_class): Use
15822         mono_metadata_lookup_generic_class.  Don't g_assert on a metadata
15823         error.
15824
15825 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15826
15827         * loader.c, class-internals.h, reflection.c: removed the per-method
15828         generics hashtable: we use the global one through the call of
15829         mono_class_inflate_generic_method ().
15830
15831 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15832
15833         * class.c, metadata.c, class-internals.h: introduce yet another
15834         generics global cache for inflated methods (fixes 98% of the perf
15835         issue in bug #81806).
15836
15837 2007-07-23  Raja R Harinath  <rharinath@novell.com>
15838
15839         Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15840         * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15841         (mono_metadata_get_generic_inst): New.  Given a list of MonoType*,
15842         return a MonoGenericInst containing (a copy) of those types.
15843         (mono_metadata_inflate_generic_inst): Update to changes.
15844         (mono_metadata_parse_generic_inst): Likewise.
15845         (mono_get_shared_generic_inst): Likewise.
15846         * reflection.c (mono_class_bind_generic_parameters): Likewise.
15847         (mono_reflection_bind_generic_method_parameters): Likewise.
15848         * metadata-internals.h: Likewise.
15849         * icall.c (free_generic_context): Kill.
15850         (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15851
15852         * reflection.c (reflection_methodbuilder_to_mono_method): Use
15853         mono_metadata_type_dup.
15854         * marshal.c (mono_mb_create_method): Likewise.
15855
15856         * metadata.c (mono_metadata_type_dup): Rename from
15857         mono_metadata_type_dup_mp.  Take an optional mempool instead of a
15858         MonoImage.  Handle a few more cases, esp. when no mempool is given.
15859         * marshal.c, metadata-internals.h: Update to changes.
15860
15861 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15862
15863         * class.c: fixed a small leak for array classes and removed warning.
15864
15865 2007-07-22  Zoltan Varga  <vargaz@gmail.com>
15866
15867         * loader.c (mono_method_get_param_token): Make this work on generic methods.
15868         Return 0x8000000 for return parameters. Fixes #82161.
15869
15870 2007-07-21  Marek Habersack  <grendello@gmail.com>
15871
15872         * appdomain.c (get_shadow_assembly_location): append the current
15873         ticks value to the path. Avoids overwriting the same assemblies by
15874         several threads at the same time.
15875
15876 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15877         and Raja R Harinath  <rharinath@novell.com>
15878
15879         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15880         Simplify slightly.
15881         (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15882         property for testing if a method is a generic method definition.
15883
15884 2007-07-20  Atsushi Enomoto  <atsushi@ximian.com>
15885
15886         * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15887
15888 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15889
15890         * verify.c: used function from private branch, reverted to the one in class.h 
15891
15892 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15893
15894         * verify.c: a typo slipped in and the code wont compile
15895
15896 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15897
15898         * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15899         disabled box instruction as it is doing the wrong thing
15900         improved stack dump messages, now it is easier to debug type related issues
15901
15902
15903 2007-07-19  Juraj Skripsky  <js@hotfeet.ch>
15904
15905         * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak. 
15906
15907 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15908
15909         * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from 
15910         TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15911         grouped with class and valuetype. This change will simply 
15912         the code as it should be handled just like unmanaged pointers.
15913
15914 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15915
15916         * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15917
15918 2007-07-19  Rodrigo Kumpera  <rkumpera@novell.com>
15919
15920         * verify.c: several stack merge issues fixed, reference comparisons now
15921         check the type size. strict type check now works correctly.
15922         added more uses of IS_MANAGED_POINTER macro.
15923         fixed issues pointed by running the test suite against .net.
15924         
15925
15926 2007-07-19  Mark Probst  <mark.probst@gmail.com>
15927
15928         * class.c, loader.c, class-internals.h: Removed the
15929         MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15930         defines.
15931
15932         * icall.c: Better error checking in some internal reflection
15933         methods.
15934
15935 2007-07-18  William Holmes  <billholmes54@gmail.com>
15936
15937         * filewatcher.c : removed unused variable 'filename' in 
15938           ves_icall_System_IO_FSW_SupportsFSW
15939
15940 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15941
15942         * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15943         obsolete, removed.
15944
15945 2007-07-15  Zoltan Varga  <vargaz@gmail.com>
15946
15947         * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15948         
15949         * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15950
15951 2007-07-14  Zoltan Varga  <vargaz@gmail.com>
15952
15953         * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): 
15954         Implement generics support.
15955         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15956
15957         * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15958         type_args and method_args arguments.
15959         (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15960         (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15961         (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15962
15963 2007-07-13  Rodrigo Kumpera  <rkumpera@novell.com>
15964
15965         * reflection.c: patch from Thong Nguyen to fix atribute resolution.
15966           It adds a rootimage parameter to mono_reflection_get_type_internal,
15967           adds new function mono_reflection_get_type_with_rootimage and use
15968           the rootimage to resolve the types instead of the current image
15969
15970 2007-07-13  Rolf Bjarne Kvinge  <RKvinge@novell.com>
15971
15972         * culture-info-table.h: Forgot to update after r78304.
15973
15974 2007-07-13  Raja R Harinath  <rharinath@novell.com>
15975
15976         * class.c (mono_class_is_open_constructed_type)
15977         <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
15978
15979 2007-07-12  Rodrigo Kumpera  <rkumpera@novell.com>
15980
15981         * class.c (mono_bounded_array_class_get):  method fails if used with
15982         an incomplete TypeBuilder enum (no basetype field), fixed it by 
15983         avoiding calculating the size for such array as it cannot be instantiated.
15984         Fix bug #82015
15985
15986 2007-07-12  Raja R Harinath  <rharinath@novell.com>
15987
15988         * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
15989         field.
15990         * metadata.c, reflection.c: Update to changes.
15991
15992 2007-07-11  Rodrigo Kumpera  <rkumpera@novell.com>
15993
15994         * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
15995         mono_class_is_valid_enum, they are used to valide a enum when loading.
15996         * reflection.c: used new functions to throw TypeLoadException when and
15997         invalid enum is build with TypeBuilder. Fixes #82018
15998   
15999 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16000
16001         * object.c: forgot commit of mono_class_setup_methods () to access
16002         iface->methods.
16003         * object-internals.h: added a few more handy fields to
16004         MonoIMTCheckItem.
16005
16006 2007-07-11  Zoltan Varga  <vargaz@gmail.com>
16007
16008         * object.c (build_imt): Call mono_class_setup_methods () before accessing 
16009         iface->methods.
16010
16011 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16012
16013         * class-internals.h, object-internals.h, object.c: IMT-based
16014         interface invocation core from Massimiliano Mantione
16015         (massi@ximian.com) with a reworked arch-specific interface,
16016         bsearch implementation and a few bugfixes and memory savings by me.
16017
16018 2007-07-10  Rodrigo Kumpera  <rkumpera@novell.com>
16019
16020         * class.c (mono_class_create_from_typedef): mono would segfault if 
16021         an enum did not have a __value field. It now throws a TypeLoadException
16022         for such cases. Fix bug #82022
16023
16024 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16025
16026         * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16027
16028 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16029
16030         * class.c (mono_class_init): If a class is already inited but has
16031         an exception_type set, return FALSE, not TRUE.  Fixes: 82050.
16032
16033 2007-07-09  Mark Probst  <mark.probst@gmail.com>
16034
16035         * class.c: Properly handle the case of an unimplemented interface
16036         method.  Fixes: 81673.
16037
16038 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16039
16040         * class-internals.h, object.c: cleanup patch from massi: use
16041         MonoVTable->interface_bitmap since the vtable interfaces offset array
16042         is going away.
16043
16044 2007-07-10  Zoltan Varga  <vargaz@gmail.com>
16045
16046         * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16047         GetMDStreamVersion icall instead.
16048
16049 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16050
16051         * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16052         not use mono_dl_build_path() with a full library name: makes
16053         fallbacks to libgaim and libfam work.
16054
16055 2007-07-06  William Holmes  <billholmes54@gmail.com>
16056
16057         * assembly.c: Added a continue statement in probe_for_partial_name when
16058          parse_assembly_directory_name fails.  Fixes : 82002
16059
16060 2007-07-06  Rodrigo Kumpera  <rkumpera@novell.com>
16061
16062         * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16063         and added a verification  for TYPEDBYREF.
16064         * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16065         make native int interchangeable with int32 and some small cleanup and formating.
16066         * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16067         handle byref of byref.
16068         * verify.c (push_local): handle byref of byref.
16069         * verify.c (do_binop): invalid mix of values is unverifiable
16070         * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16071         added visibility checks
16072         * verify.c (field related method): added visibility checks
16073         * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16074
16075 2007-07-06  Zoltan Varga  <vargaz@gmail.com>
16076
16077         * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16078         string.
16079
16080 2007-07-05  Zoltan Varga  <vargaz@gmail.com>
16081
16082         * profiler.c (mono_profiler_load): Fix an off-by-one error.
16083
16084         * marshal.c (emit_marshal_string): When returning a string from managed code,
16085         allways make a copy even for unicode strings. Fixes #81990.
16086
16087 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16088
16089         * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16090         of byref generic inst types (bug #81997).
16091
16092 2007-07-03  Rodrigo Kumpera  <rkumpera@novell.com>
16093
16094         * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16095         * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16096
16097 2007-07-02  Zoltan Varga  <vargaz@gmail.com>
16098
16099         * marshal.c (emit_marshal_string): Add support for unicode strings in
16100         MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16101
16102 2007-07-02 Rodrigo Kumpera  <rkumpera@novell.com>
16103
16104         * verify.c: field load/store are now verified, missing only access checks now
16105
16106 2007-06-28  Martin Baulig  <martin@ximian.com>
16107
16108         * mono-debug.c (mono_debug_debugger_version): New public variable.
16109
16110 2007-06-24  Gert Driesen  <drieseng@users.sourceforge.net>
16111
16112         * locales.c: When constructing DateTimeFormat or NumberFormat for
16113         MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16114         MonoCultureInfo contructed from the current locale is always
16115         read-only and has UseUserOverride set to true. All MonoCultureInfo
16116         instances returned for GetCultures have both IsReadOnly and
16117         UseUserOverride set to true. Fixes part of bug #81930.
16118
16119 2007-06-22  Jonathan Chambers  <joncham@gmail.com>
16120
16121        * icall-def.h: Update System.__ComObject icalls
16122        * marshal.c: Avoid managed transition (and object creation)
16123        when looking up COM interface in RCW.
16124        * marshal.h: Ditto.
16125        
16126        Code is contributed under MIT/X11 license.
16127
16128 2007-06-22  Zoltan Varga  <vargaz@gmail.com>
16129
16130         * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16131         to avoid crashes during assembly unloading.
16132
16133 2007-06-22  Raja R Harinath  <rharinath@novell.com>
16134
16135         Fix MethodInfo.IsGenericMethodDefinition
16136         * reflection.c (mono_reflection_bind_generic_method_parameters):
16137         Rearrange code to ensure we always uses a generic method definition.
16138         * class.c (mono_class_inflate_generic_method_full): Set
16139         'generic_container' field only for generic method definitions.
16140         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16141         Use presense of 'generic_container' field as indication of being a
16142         generic method definition.
16143
16144 2007-06-21  Zoltan Varga  <vargaz@gmail.com>
16145
16146         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16147
16148         * object-internals.h: Reflect changes in the layout of the managed Delegate
16149         class.
16150         
16151         * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16152         Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16153         runtime memory used by the dynamic method. Fixes #77146.
16154
16155 2007-06-21  Dick Porter  <dick@ximian.com>
16156
16157         * file-io.h: 
16158         * file-io.c (convert_share): Cope with FileShare.Delete.  Patch
16159         from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16160         81767.
16161
16162 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16163
16164         * reflection.c (method_encode_methodspec): Add a tripwire.
16165         * class.c (inflate_generic_type): The fully open generic type is
16166         not the same as the generic type definition.
16167
16168 2007-06-21  Martin Baulig  <martin@ximian.com>
16169
16170         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16171
16172         * mono-debug-debugger.h
16173         (MonoDebuggerBreakpointInfo): Removed.
16174         (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16175         (mono_debugger_remove_breakpoint): Likewise.
16176         (mono_debugger_breakpoint_callback): Likewise.
16177         (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16178
16179 2007-06-21  Raja R Harinath  <rharinath@novell.com>
16180
16181         * metadata.c (mono_metadata_lookup_generic_class): The fully open
16182         generic type is not the same as the generic type definition.
16183         * class.c (mono_generic_class_get_class): Likewise.
16184
16185 2007-06-20  Geoff Norton  <gnorton@customerdna.com>
16186
16187         * icall.c: The second argument to 
16188         System.Reflection.MethodBase.GetMethodFromHandleInternalType
16189         is a MonoType not a MonoClass.
16190
16191 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16192
16193         * verify.c: support for function pointers in the verifier
16194
16195 2007-06-20  Rodrigo Kumpera  <kumpera@gmail.com>
16196
16197         * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16198
16199 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16200
16201         * assembly.c: removed Mono.Data.SqliteClient from the list of
16202         forward-compatible assemblies as it breaks the ABI (bug #81899).
16203
16204 2007-06-19  Raja R Harinath  <rharinath@novell.com>
16205
16206         * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16207         lookup/update with the loader lock.
16208         * reflection.c (mono_class_bind_generic_parameters): No need to
16209         protect mono_metadata_lookup_* with the loader lock.
16210         * class.c (inflate_generic_type): Likewise.
16211         
16212         * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16213         on a generic instantiated type.
16214
16215 2007-06-18  Rodrigo Kumpera <kumpera@gmail.com>
16216
16217         *verify.c: produce meanfull error messages on verification error
16218         *verify.c: fixed some cases of verification errors reported as validation errors
16219         *pedump.c: fixed the error name array, now it shows validation errors properly
16220         *verify.h: fixed the contant that should be used for verification errors
16221
16222 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16223
16224         * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16225         for bug #77596, 81858 and 80743 (generics data structures on domain
16226         unload).
16227
16228 2007-06-15  Raja R Harinath  <rharinath@novell.com>
16229
16230         Avoid allocating 'MonoGenericContext' on the heap.
16231         * class-internals (_MonoMethodInflated::context): Make field
16232         inline, not a pointer.
16233         * loader.c (method_from_methodspec): Allocate 'new_context' on the
16234         stack.  Use the context embedded within the inflated method as the
16235         hash key, rather than 'new_context'.
16236         * class.c (inflate_generic_context): Simplify.  Return a struct
16237         rather than allocating on the heap.
16238         (mono_class_inflate_generic_method_full): Update to changes.  Now,
16239         doesn't salt away a copy of the context -- simplifying the
16240         lifetime rules of a 'MonoGenericContext *'.
16241         (mono_method_get_context): Return pointer to embedded context.
16242         (setup_generic_array_ifaces): Allocate temporary context on stack.
16243         * reflection.c (inflate_mono_method): Likewise.
16244         (mono_reflection_bind_generic_method_parameters): Likewise.
16245         Use the context embedded within the inflated method as the hash key.
16246
16247         Avoid a source of allocation of 'MonoGenericContext'.
16248         * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16249         and 'cached_context' fields into embedded 'MonoGenericContext' field.
16250         * class.c: Update to changes.
16251         (mono_generic_class_get_context): Simplify drastically.  Now just
16252         returns a pointer to the field.
16253         * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16254         argument as a const pointer.
16255         (mono_metadata_generic_context_equal): Likewise.
16256         * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16257         Update to changes.
16258
16259 2007-06-14  Rodrigo Kumpera  <kumpera@gmail.com>
16260
16261         * verify.c improved the handling of brtrue/brfalse, factored out common code
16262
16263 2007-06-14  Raja R Harinath  <rharinath@novell.com>
16264
16265         Kill MonoGenericMethod.
16266         * class-internals.h (MonoGenericContext::method_inst): Rename from
16267         'gmethod' and convert to a MonoGenericInst.
16268         (MonoGenericMethod): Remove.
16269         * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16270         * loader.c (method_from_methodspec): Update to changes.  Use a
16271         MonoGenericContext as the key to the hashtable.
16272         * metadata.c (mono_metadata_generic_context_equal): Rename from 
16273         'mono_metadata_generic_method_equal' and take MonoGenericContext.
16274         (mono_metadata_generic_context_hash): Likewise from
16275         'mono_metadata_generic_method_hash'.  Change hash function.
16276         (mono_metadata_load_generic_params): Update to changes.
16277         (mono_get_shared_generic_method): Remove.
16278         * metadata-internals.h (mono_get_shared_generic_method): Remove.
16279         * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16280         (inflate_generic_context): Likewise.
16281         (mono_class_inflate_generic_method_full): Likewise.
16282         (setup_generic_array_ifaces): Likewise.
16283         (mono_class_create_from_typespec): Likewise.
16284         * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16285         (method_encode_methodspec): Update callsite.
16286         (reflection_methodbuilder_to_mono_method): Update to changes.
16287         (mono_reflection_bind_generic_method_parameters): Likewise.  Use a
16288         MonoGenericContext as the key to the hashtable.
16289         (inflate_mono_method): Update to changes.
16290
16291         * class-internals.h (MonoGenericMethod::container): Remove.
16292         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16293
16294 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16295
16296         * profiler-private.h, profiler.c, profiler.h: added API to profile
16297         exception events.
16298
16299 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16300
16301         * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments 
16302
16303 2007-06-13  Rodrigo Kumpera  <kumpera@gmail.com>
16304
16305         * verify.c: method invocation is now validated, now we verify parameter types on stack.
16306         Fixed overflow and underflow not aborting the verification process.
16307
16308 2007-06-13  Mark Probst  <mark.probst@gmail.com>
16309
16310         * class-internals.h (MonoStats): Added stats entries for dynamic
16311         code allocations.
16312
16313 2007-06-12  Zoltan Varga  <vargaz@gmail.com>
16314
16315         * loader.c (mono_free_method): Free header->locals and header->clauses.
16316
16317         * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16318         dynamic case.
16319
16320         * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16321
16322         * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16323
16324 2007-06-12  Raja R Harinath  <rharinath@novell.com>
16325
16326         * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16327         the tables.
16328
16329 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16330
16331         *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16332
16333 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16334
16335         MonoGenericMethod on a diet
16336         * class-internals.h (_MonoMethodInflated::reflection_info): Move
16337         here ...
16338         (_MonoGenericMethod::reflection_info): ... from here.
16339         * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16340         Update to changes.
16341         * reflection.c (inflate_mono_method): Likewise.
16342         (mono_reflection_bind_generic_method_parameters): Likewise.
16343
16344 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16345
16346         *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16347         *verify.c: factored long ldarg forms to share code with short forms
16348
16349 2007-06-11  Rodrigo Kumpera  <kumpera@gmail.com>
16350
16351         *verify.c: fixed code formating factored some duplicate code
16352         into a new function
16353
16354         *verify.h: fixed binary incompatibility introduced earlier
16355
16356         *pedump.c: fixed formating
16357
16358 2007-06-11  Raja R Harinath  <harinath@gmail.com>
16359
16360         Fix assertion when disassembling Mono.C5.dll
16361         * loader.c (method_from_methodspec): Avoid inflating a method
16362         twice with the same context.  If the methodref is inflated, use
16363         the declaring method instead.
16364
16365         * class.c (mono_class_from_generic_parameter): Fix case similar to
16366         bug #81830 handled below, but for method containers.
16367
16368 2007-06-10  Raja R Harinath  <harinath@gmail.com>
16369
16370         * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16371         get_shared_generic_class.  Directly inflate the instance.
16372         [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16373         (inflate_generic_class): Delete.
16374         (get_shared_generic_class): Delete.  Move setting of
16375         'cached_class' and 'cached_context' ...
16376         * metadata.c (mono_metadata_lookup_generic_class): ... here.
16377
16378         * metadata.c (mono_metadata_lookup_generic_class): Change
16379         signature to take the components of a MonoGenericClass rather than
16380         an allocated MonoGenericClass.  Change semantics to be intern-like.
16381         * reflection.c (mono_class_bind_generic_parameters): Update to
16382         changes.  Make locking region tighter.
16383         * class.c (inflate_generic_class): Update to changes.
16384         (get_shared_generic_class): Likewise.
16385         * metadata-internals.h: Likewise.
16386
16387         * reflection.c (mono_class_bind_generic_parameters): Take and
16388         return a MonoClass*, not a MonoType*.  Add 'is_dynamic' parameter.
16389         (mono_reflection_bind_generic_parameters): Use
16390         'mono_class_bind_generic_parameters' rather than duplicate the code.
16391         * class.c (mono_bounded_array_class_get): Update to changes.
16392         * object-internals.h: Likewise.
16393
16394         * reflection.c (mono_class_bind_generic_parameters): Only support
16395         parameterizing generic type definitions.  Remove support for other
16396         open types.
16397
16398 2007-06-08  Zoltan Varga  <vargaz@gmail.com>
16399
16400         * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16401
16402         * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16403         in the dynamic case.
16404
16405 2007-06-08  Gert Driesen  <drieseng@users.sourceforge.net>
16406
16407         * threads.c: When cleaning up thread, reset the Background bit.
16408         Fixes bug #81720.
16409
16410 2007-06-08  Jonathan Chambers  <joncham@gmail.com>
16411
16412        * metadata.c: Move variable declarations to top of scope.
16413        * verify.c: Move variable declarations to top of scope.
16414
16415        Code is contributed under MIT/X11 license.
16416
16417 2007-06-08  Raja R Harinath  <rharinath@novell.com>
16418
16419         * reflection.c (mono_class_bind_generic_parameters): Replace
16420         open-coded loop with mono_metadata_inflate_generic_inst.
16421
16422         * class.c (get_shared_generic_class): Don't call
16423         mono_get_shared_generic_inst.  Use the container's own
16424         'class_inst'.
16425
16426         * metadata.c (mono_metadata_load_generic_params): Move
16427         initialization of 'context' field here from ...
16428         * class.c (mono_class_create_from_typedef): ... here, and ...
16429         * loader.c (mono_get_method_from_token): ... here.
16430
16431         * class.c (get_shared_generic_class): Rename from
16432         mono_get_shared_generic_class and make static.
16433         (mono_get_shared_generic_inst): Move to metadata.c.
16434         * loader.c (mono_get_shared_generic_method): Likewise.
16435         * class-internals.h, metadata-internals.h: Update to changes.
16436
16437         Fix #81830
16438         * class.c (mono_class_from_generic_parameter): Don't assume a
16439         generic container owner exists.  Generic containers from monodis
16440         don't have any.
16441
16442 2007-06-06  Rodrigo Kumpera  <kumpera@gmail.com>
16443
16444         * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16445         * verify.h: new typedefs to returns the non-verifiable status
16446         * verify.c: initial implementation of generics, stack merging and object compatibility check
16447
16448 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16449
16450         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16451         a MonoInternalHashTable again (fixed bug in internal hash table
16452         code).
16453
16454 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16455
16456         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16457         MonoInternalHashTable again (fixed bug in internal hash table
16458         code).
16459
16460 2007-06-06  Mark Probst  <mark.probst@gmail.com>
16461
16462         * class.c, image.c, class-internals.h, domain.c,
16463         domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16464         changes.  Have to figure out what makes them break the SWF
16465         regression.
16466
16467 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16468
16469         * class.c, image.c, class-internals.h (MonoImage): class_cache is
16470         a MonoInternalHashTable now.
16471
16472 2007-06-04  Mark Probst  <mark.probst@gmail.com>
16473
16474         * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16475         MonoInternalHashTable now.
16476
16477 2007-05-31  Zoltan Varga  <vargaz@gmail.com>
16478
16479         * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16480         invoke_impl code.
16481
16482         * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16483
16484         * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16485         dependent trampoline.
16486
16487         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16488
16489         * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16490
16491 2007-05-29  Robert Jordan  <robertj@gmx.net>
16492
16493         * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16494
16495 2007-05-28  Zoltan Varga  <vargaz@gmail.com>
16496
16497         * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16498
16499 2007-05-25  Jonathan Chambers  <joncham@gmail.com>
16500
16501        * marshal.c: Fix interface lookup loops for
16502        cominterop_get_com_slot_for_method and 
16503        cominterop_get_method_interface. Only need to lookup
16504        if type is a class, else use interface type method is on.
16505
16506        Code is contributed under MIT/X11 license.
16507
16508 2007-05-25  Sebastien Pouliot  <sebastien@ximian.com>
16509
16510         * reflection.c: HasSecurity can be present even if no specially 
16511         encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16512         SecurityAttribute). Fix CAS regression tests on buildbot.
16513
16514 2007-05-24  Jonathan Chambers  <joncham@gmail.com>
16515
16516        * appdomain.c: Add configure checks for header files.
16517        * image.c: Add configure checks for header files.
16518        * file-io.c: Add configure checks for header files.
16519        * debug-mono-symfile.c: Add configure checks for header files.
16520        * threadpool.c: Add configure checks for header files.
16521        * console-io.c: Add configure checks for header files.
16522        * profiler.c: Add configure checks for header files.
16523        * rawbuffer.c: Add configure checks for header files.
16524        * icall.c: Add configure checks for header files.
16525        * rand.c: Add configure checks for header files.
16526        * socket-io.c: Add configure checks for header files.
16527
16528        Code is contributed under MIT/X11 license.
16529
16530 2007-05-24  Zoltan Varga  <vargaz@gmail.com>
16531
16532         * reflection.c (mono_custom_attrs_from_builders): Remove the 
16533         assertion as it breaks the build.
16534         
16535         * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16536
16537         * reflection.c (lookup_custom_attr): Make a copy here too.
16538
16539         * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16540         dynamic images.
16541
16542         * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16543         images.
16544
16545         * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16546         info.
16547
16548 2007-05-22  Zoltan Varga  <vargaz@gmail.com>
16549
16550         * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16551         (load_cattr_value): Ditto.
16552
16553 2007-05-20  Zoltan Varga  <vargaz@gmail.com>
16554
16555         * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16556
16557 2007-05-19  Gert Driesen  <drieseng@users.sourceforge.net>
16558
16559         * threads.c: In "start_wrapper", set apartment_state to MTA if
16560         apartment_state is Unknown and we're running on 2.0 profile or
16561         higher.
16562         * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16563         to main method, then set apartment_state to Unknown on 1.0 profile,
16564         and MTA on 2.0 profile.
16565
16566 2007-05-16  Jb Evain  <jb@nurv.fr>
16567
16568         * class-internals.h (MonoDefaults): Add an attribute_class and
16569           customattribute_data_class.
16570         * domain.c (mono_init_internal): Populate them.
16571         * reflection.c: Use them to remove duplicates. Make a vew
16572         MonoClass variables `static'.
16573
16574 2007-05-15  Massimiliano Mantione  <massi@ximian.com>
16575
16576         * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16577         step in implementing IMT, so that all isinst checks now can go
16578         through the bitmap.
16579         This was needed because vtables for TransparentProxy need to look
16580         like the vtable of the "target" class, so they need to point to
16581         its interface bitmap directly.
16582
16583         * object.c: inside "mono_class_create_runtime_vtable" and
16584         "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16585
16586 2007-05-15  Atsushi Enomoto  <atsushi@ximian.com>
16587
16588         * object-internals.h
16589           culture-info.h : added territory field in MonoCulture and
16590           CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16591         * locales.c : fill territory field above too.
16592         * culture-info-table.h : regenerated.
16593
16594 2007-05-12  Zoltan Varga  <vargaz@gmail.com>
16595
16596         * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16597         Fixes #81599.
16598
16599 2007-05-11  Jonathan Chambers  <joncham@gmail.com>
16600
16601         * object.c: Always initialize apartment, even if 
16602         there is no custom attributes on entry point.
16603         
16604         Code is contributed under MIT/X11 license.
16605
16606 2007-05-10  Jonathan Chambers  <joncham@gmail.com>
16607
16608         * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16609         * metadata.c: If no encoding is set, check for unicode
16610         on class.
16611         
16612         Code is contributed under MIT/X11 license.
16613
16614 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16615
16616         * threads.c: Handle if mono_thread_current returns NULL 
16617         
16618         Code is contributed under MIT/X11 license.
16619
16620 2007-05-09  Jonathan Chambers  <joncham@gmail.com>
16621
16622         * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16623         in start_wrapper. Added mono_thread_init_apartment_state and
16624         mono_thread_cleanup_apartment_state.
16625         * object.c: Initialize thread apartment state on main thread
16626         by checking for STAThreadAttribute on entry point.
16627         * object-internals.h: Add apartment_state field to MonoThread.
16628         * threads-types.h: Add unmanaged definition of 
16629         System.Threading.ApartmentState, MonoThreadApartmentState.
16630         
16631         Code is contributed under MIT/X11 license.
16632         
16633 2007-05-08  Jonathan Chambers  <joncham@gmail.com>
16634
16635         * class.c: Fix windows build.
16636         * class-internals.h: Fix windows build.
16637         
16638         Code is contributed under MIT/X11 license.
16639
16640 2007-05-08  Robert Jordan  <robertj@gmx.net>
16641
16642         * process.c (CreateProcess_internal):
16643         Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16644         .CreateNoWindow was specified. Fixes #81496.
16645
16646 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16647
16648         * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16649         step in implementing IMT, replaced it with two compact arrays
16650         (interfaces_packed and interface_offsets_packed) and a bitmap that
16651         is used for isinst checks (interface_bitmap).
16652
16653         * class.c: (compare_interface_ids): compare function to pass to
16654         bsearch when looking for an interface with a given id.
16655         (mono_class_interface_offset): reimplemented using bsearch on
16656         interfaces_packed, getting the offset from interface_offsets_packed.
16657         (print_implemented_interfaces): utility debugging function.
16658         (setup_interface_offsets): reworked to initialize interfaces_packed,
16659         interface_offsets_packed and interface_bitmap.
16660
16661         * object.c: replaced all accesses to "MonoClass.interface_offsets"
16662         with uses of interfaces_packed and interface_offsets_packed.
16663
16664 2007-05-08  Massimiliano Mantione  <massi@ximian.com>
16665
16666         * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16667         mono_class_interface_offset prototype to wrap all accesses to
16668         "MonoClass.interface_offsets".
16669
16670         * class.c: Implemented mono_class_interface_offset, and wrapped all
16671         accesses to "MonoClass.interface_offsets".
16672
16673         * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16674         "MonoClass.interface_offsets".
16675
16676 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16677
16678         * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16679         GetMethodFromHandle overloads (bug #78637).
16680
16681 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16682
16683         * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16684         it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16685
16686 2007-05-01  Zoltan Varga  <vargaz@gmail.com>
16687
16688         * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16689         #81498.
16690
16691         * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16692         gracefully.
16693         (mono_custom_attrs_from_index): Ditto.
16694
16695         * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes. 
16696         Fixes #81501.
16697
16698 2007-04-30  Zoltan Varga  <vargaz@gmail.com>
16699
16700         * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16701         is now allocated from a mempool.
16702
16703 2007-04-28  Zoltan Varga  <vargaz@gmail.com>
16704
16705         * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16706         caller holds threads_lock, leading to deadlocks. Fixes #81476.
16707
16708 2007-04-26  Zoltan Varga  <vargaz@gmail.com>
16709
16710         * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16711         mono_loader_clear_error () too late. Fixes #81463.
16712
16713 2007-04-26  Atsushi Enomoto  <atsushi@ximian.com>
16714
16715         * culture-info-table.h : regenerated.
16716
16717 2007-04-25  Zoltan Varga  <vargaz@gmail.com>
16718
16719         * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16720         is missing.
16721
16722 2007-04-25  Dick Porter  <dick@ximian.com>
16723
16724         * Makefile.am: Put the mingw enforced-optimisation back into the
16725         PLATFORM_WIN32 section.
16726
16727 2007-04-24  Zoltan Varga  <vargaz@gmail.com>
16728
16729         * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16730         patch.
16731
16732         * image.c (mono_image_load_module): New API function to load a module reference.
16733
16734         * image.c (load_modules): Load modules lazily. Fixes #80812.
16735
16736         * class.c (mono_class_from_typeref): Use mono_image_load_module.
16737         
16738         * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16739
16740         * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this 
16741         to mono_image_load_module_dynamic.
16742
16743 2007-04-23  Jonathan Chambers  <joncham@gmail.com>
16744
16745         * marshal.c: Fix calling convention for CCW on non-windows
16746         platforms. STDCALL on windows, CDECL everywhere else to work 
16747         with XPCOM and MainWin COM.
16748         
16749         Code is contributed under MIT/X11 license.
16750
16751 2007-04-23  Martin Baulig  <martin@ximian.com>
16752
16753         Fix #80969.
16754
16755         * loader.c
16756         (method_from_memberref): Added `gboolean *used_context' argument.
16757         (mono_get_method_from_token): Likewise.
16758         (mono_get_method_full): Don't insert the method in the cache when
16759         `used_context' is true.
16760
16761 2007-04-23  Raja R Harinath  <rharinath@novell.com>
16762
16763         * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16764
16765         * reflection.c (mono_reflection_bind_generic_parameters): Don't
16766         create new MonoTypes for returned types.
16767         * class.c (mono_generic_class_get_class): Export mono-internal.
16768         * class-internals.h: Update to changes.
16769
16770 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16771
16772         * threadpool.c, threadpool.h, icall-def.h: patch from
16773         Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16774
16775 2007-04-18  Zoltan Varga  <vargaz@gmail.com>
16776
16777         * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16778         
16779         * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16780
16781         * threads.c (mono_thread_get_stack_bounds): New helper function.
16782
16783         * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16784         Correctly compute stack bounds when attaching. Fixes #81394.
16785
16786 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16787
16788         * reflection.c: fix handling of doubles in custom attributes
16789         for the arm-fpa format (bug #81368).
16790
16791 2007-04-18  Raja R Harinath  <rharinath@novell.com>
16792
16793         * reflection.c (assembly_add_win32_resources): Mildly relax an
16794         bounds check to let the end pointer point just past the end of the
16795         allocated buffer.  (may fix #81384)
16796
16797 2007-04-17  Atsushi Enomoto  <atsushi@ximian.com>
16798
16799         * culture-info-table.h : regenerated.
16800
16801 2007-04-07  Zoltan Varga  <vargaz@gmail.com>
16802
16803         * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16804         the thread is aborted early.
16805
16806 2007-04-05  Dick Porter  <dick@ximian.com>
16807
16808         * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16809         FindFirstFile()/FindNextFile() to find entries.  This lets the
16810         io-layer versions use MONO_IOMAP compatibility helpers.  Fixes bug
16811         81038.
16812
16813         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16814         the parameters of
16815         ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16816
16817 2007-04-04  Martin Baulig  <martin@ximian.com>
16818
16819         * debug-helpers.c
16820         (mono_method_desc_full_match): Add support for nested classes.
16821
16822 2007-04-02  Zoltan Varga  <vargaz@gmail.com>
16823
16824         * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16825
16826 2007-04-01  Zoltan Varga  <vargaz@gmail.com>
16827
16828         * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16829         waiting for too many threads.
16830
16831 2007-03-28  Sebastien Pouliot  <sebastien@ximian.com>
16832
16833         * environment.c: Fix return value check on uname so we can get the 
16834         executing version on Solaris operating systems.
16835
16836 2007-03-28  Jb Evain  <jbevain@gmail.com>
16837
16838         * class.c (mono_type_get_name_recurse): Complete the
16839         fix for the creation of assembly qualified names for
16840         pointer types. Fixes #81208.
16841
16842 2007-03-27  Dick Porter  <dick@ximian.com>
16843
16844         * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16845         of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16846         changed.
16847
16848         * threads.c
16849         (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16850         the value of ReleaseMutex().
16851
16852 2007-03-27  Dick Porter  <dick@ximian.com>
16853
16854         * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16855         in little-endian order, not network endian, so must be converted
16856         to host endian here.  Fixes bug 80593.
16857
16858 2007-03-22  Jb Evain  <jbevain@gmail.com>
16859
16860         * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16861         qualified names for pointer types. Fixes #81208.
16862
16863 2007-03-21  Jonathan Chambers  <joncham@gmail.com>
16864
16865         * marshal.c: Add support for PreserveSigAttribute. 
16866         
16867         Code is contributed under MIT/X11 license.
16868
16869 2007-03-14  Zoltan Varga  <vargaz@gmail.com>
16870
16871         * process.c: Fix endianness issues. Fixes #81126.
16872
16873         * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16874         multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16875
16876         * image.c (mono_image_lookup_resource): Make this work on big-endian
16877         machines.Change API contract so the caller needs to free the return value.
16878         
16879         * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16880         API change.
16881         
16882 2007-03-14  Martin Baulig  <martin@ximian.com>
16883
16884         * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16885         mono_type_get_desc() as well.
16886
16887 2007-03-13  Jonathan Chambers  <joncham@gmail.com>
16888
16889         * icall.c:  Fix environ access in VS.  
16890         
16891 2007-03-13  Alp Toker  <alp@atoker.com>
16892
16893         * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16894         rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16895         #63841.
16896
16897 2007-03-12  Zoltan Varga  <vargaz@gmail.com>
16898
16899         * reflection.c (mono_reflection_create_dynamic_method): Add support for 
16900         circular references among dynamic methods. Fixes #81091.
16901
16902         * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16903
16904 2007-03-09  Martin Baulig  <martin@ximian.com>
16905
16906         * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16907
16908 2007-03-09  Jonathan Chambers  <joncham@gmail.com>
16909
16910         * appdomain.c:  Fix shadow copy on Windows. Use g_snprintf instead
16911         of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.  
16912         
16913         Code is contributed under MIT/X11 license.
16914         
16915 2007-03-09  Gert Driesen  <drieseng@users.souceforge.net>
16916
16917         * loader.c: Reapply patch for bug #79424.
16918
16919 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16920
16921         * metadata.c (mono_type_to_unmanaged): Only convert object to
16922         MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16923
16924 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16925
16926         * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16927         (and incorrectly set) is_reference field from MonoGenericInst.
16928
16929 2007-03-06  Zoltan Varga  <vargaz@gmail.com>
16930
16931         * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16932         a little earlier.
16933
16934         * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16935
16936         * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16937
16938 2007-03-05  Miguel de Icaza  <miguel@novell.com>
16939
16940         * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16941         FileOptions.1 value to mean "temporary", map that to
16942         FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16943
16944         Fixes 80688
16945
16946 2007-03-03  Marek Habersack  <mhabersack@novell.com>
16947
16948         * appdomain.c: implement MS .Net style shadow copying. Copies of
16949         the assemblies are made in a subdirectory of the dynamic base
16950         directory, the assembly names are preserved.
16951         Copy .mdb and .config files along with the assemblies being shadowed.
16952
16953 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16954
16955         * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16956         (emit_marshal_handleref): Ditto.
16957
16958         * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16959         on Visual C++. Fixes #80671.
16960
16961 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16962
16963         * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16964         for clone operations.
16965
16966 2007-02-28  Zoltan Varga  <vargaz@gmail.com>
16967
16968         * marshal.c: Fix warnings.
16969
16970 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
16971
16972         * loader.c: allow case-insensitive matching of the dll name
16973         in dllmap handling when prefixed with "i:".
16974
16975 2007-02-20  Jonathan Chambers  <joncham@gmail.com>
16976
16977         * threads.c: Fix #ifdef for dummy_apc function for VS.
16978
16979 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
16980
16981         * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
16982
16983 2007-02-19  Massimiliano Mantione  <massi@ximian.com>
16984         * class.c (mono_class_setup_vtable_general): Fix bug 75903,
16985         giving precedence to the methods with a fully qualified name
16986         (InterfaceName.MethodName) when building the interface sections
16987         of the vtable.
16988
16989 2007-02-16  Dick Porter  <dick@ximian.com>
16990
16991         * threadpool.c (append_job): Fix fast-path array handling, so it's
16992         less likely the array will grow exponentially when the load is
16993         heavy.
16994
16995 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
16996
16997         * metadata-internals.h, loader.c: fix dllmap lookup order
16998         for non-function maps, too, and prepare for fallback code.
16999
17000 2007-02-12  Robert Jordan  <robertj@gmx.net>
17001
17002         * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17003         to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17004         and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17005         GlobalFree. Fixes a part of bug #77075.
17006
17007 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17008
17009         * loader.c: implemented typedef parent in field memberref.
17010
17011 2007-02-11  Jonathan Chambers  <joncham@gmail.com>
17012
17013         * marshal.c: Fix warnings and remember to call Release on
17014         IUnknown of RCW.
17015         
17016         Code is contributed under MIT/X11 license.
17017
17018 2007-02-10  Miguel de Icaza  <miguel@novell.com>
17019
17020         * class-internals.h: Add MonoHandleRef definition, and
17021         handleref_class to mono_defaults. 
17022
17023         * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17024         structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17025
17026         * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17027         (do nothing on this stage)
17028         (emit_object_to_ptr_conv): Extract the handle from the HandleRef.  
17029         (emit_marshal_handleref): New method, used for argument handling
17030         of HandleRefs. 
17031
17032 2007-02-08  Jonathan Chambers  <joncham@gmail.com>
17033
17034         * class.c (mono_class_setup_parent): Lazily init com types.
17035         * domain.c (mono_init_internal, mono_init_com_types): Lazily 
17036         init com types.
17037         * object.c (mono_remote_class_vtable): Lazily init com types.
17038         * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17039         * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17040         * domain-internals.h: Expose mono_init_com_types.
17041         * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17042         * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17043         Add support for COM Callable Wrapper marshalling.
17044         * marshal.h: Add icall definitions.
17045         * gc.c: Handle freeing of CCWs in finalizer code.
17046         
17047         Code is contributed under MIT/X11 license.
17048
17049 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17050
17051         * reflection.c: changed all the signature encoding code to use
17052         a variable-sized buffer.
17053
17054 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17055
17056         * marshal.c: locking fixes: never take the loader lock
17057         or other runtime locks when holding the marshal lock
17058         (fixes bug#80664).
17059
17060 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17061
17062         * marshal.c: make the delegate function pointer mapping
17063         work for the moving GC.
17064
17065 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17066
17067         * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17068         for bug #80618.
17069
17070 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17071
17072         * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17073         gmodule.
17074
17075 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17076
17077         * threadpool.c: made the code moving-GC safe.
17078
17079 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17080
17081         * assembly.c, boehm-gc.c, class-internals.h, class.c,
17082         debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17083         monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17084         warning cleanup.
17085         * reflection.c: warning cleanup, some threading and moving GC fixes.
17086
17087 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17088
17089         * class.c, loader.c: create the needed Set/Get/Address array methods
17090         as well as the .ctors in mono_class_init (), fixes bug #80567.
17091
17092 2007-01-24  Zoltan Varga  <vargaz@gmail.com>
17093
17094         * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17095         we doesn't decrease its alignment. Should fix the sparc build.
17096
17097 2007-01-24  Dick Porter  <dick@ximian.com>
17098
17099         * socket-io.c
17100         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17101         Create the returned object if we need to ignore an unsupported
17102         socket option.  Fixes a segfault reported by Atsushi.
17103
17104 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17105
17106         * class.c, object.c: restrict GC-tracked fields to
17107         UIntPtr fields used inside corlib, so we provide better
17108         type info to the GC and also allow broken packing as in
17109         bug #80580.
17110
17111 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17112
17113         * sgen-gc.c: removed duplicated function.
17114
17115 2007-01-19  Miguel de Icaza  <miguel@novell.com>
17116
17117         *  socket-io.c (convert_sockopt_level_and_name): return -2 as a
17118         value that means that the value is not supported, but that we
17119         should not return a failure, but instead report this as a
17120         successful operation.
17121
17122 2007-01-19  Raja R Harinath  <rharinath@novell.com>
17123
17124         Fix tests/bug79956.2.il
17125         * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17126         (mono_generic_class_get_class): If the generic definition in an
17127         enum, copy over other fields related to it.
17128
17129 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17130
17131         * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17132         genericinst enums (bug #79215).
17133
17134 2007-01-17  Massimiliano Mantione  <massi@ximian.com>
17135         * class.c: Fix bug 80307.
17136
17137 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17138
17139         * image.c: if the file table is not present, try to load
17140         all the modules, since we don't have info about them
17141         having or not metadata (bug #80517).
17142         * assembly.c: allow mono_assembly_load_references () to
17143         work for netmodules.
17144
17145 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17146
17147         * image.c, metadata-internals.h, object.c: execute module
17148         cctors when running on the 2 runtime if present (bug #80487).
17149
17150 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17151
17152         * icall.c: optimized InitializeArray() on bigendian.
17153
17154 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17155
17156         * icall.c: fix for the broken ARM FPA double format.
17157
17158 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17159
17160         * icall.c: handle endian issues for r4 and r8 types, too, in
17161         the InitializeArray() icall.
17162
17163 2007-01-15  Miguel de Icaza  <miguel@novell.com>
17164
17165         * loader.c (mono_loader_error_prepare_exception): Clear the error
17166         once we have extracted the information from it, do this before we
17167         call into the JIT's class loading mechanisms.
17168
17169         * object.c (mono_class_create_runtime_vtable): Do not clear the
17170         loader error before calling mono_class_get_exception_for_failure
17171         as the loader error is needed inside
17172         mono_class_get_exception_for_failure to throw the error (thinko).
17173
17174         Fixes #80521
17175         
17176 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17177
17178         * reflection.c: align fields rva data so it's faster to load at
17179         runtime.
17180
17181 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17182
17183         Prepare to simplify GenericMethod handling.
17184         * class-internals.h (mono_method_get_context): New accessor function.
17185         * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17186         rather than directly accessing '->context' field.
17187
17188         * class-internals.h (_MonoGenericParam.method): Move ...
17189         (_MonoGenericContainer): ... here.  Add into union with klass field.
17190         * class.c, icall.c, loader.c, metadata.c, reflection.c:
17191         Update to changes.
17192
17193 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17194
17195         * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17196         the wrapper type enum and reduce relocations.
17197
17198 2007-01-12  Raja R Harinath  <rharinath@novell.com>
17199
17200         * reflection.c (inflate_mono_method): Reuse method instantiation
17201         from the generic method, if available.
17202
17203 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17204
17205         * marshal.c (emit_marshal_variant): Fix conv_arg
17206         type in last commit, based on whether parameter is byref.
17207         
17208 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17209
17210         * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17211         marshalling.
17212         (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17213         MONO_TYPE_OBJECT back for VARIANT support.
17214
17215 2007-01-11  Jonathan Chambers  <joncham@gmail.com>
17216
17217         * marshal.c, marshal.h, icall-def.h: Implement 
17218         Marshal.ReAllocCoTaskMem.
17219
17220 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17221
17222         * marshal.c: memory retention fixes: use the proper
17223         image cache for runtime_invoke method lookups.
17224
17225 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17226
17227         * mempool.c: added code to help debug mempool allocations.
17228
17229 2007-01-11  Dick Porter  <dick@ximian.com>
17230
17231         * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17232         support (experimenting with faking it with IP_MTU_DISCOVER for
17233         systems that don't have IP_DONTFRAGMENT.)
17234         (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17235         icall.
17236
17237         * icall-def.h: new System.Net.Sockets.Disconnect icall.
17238
17239         * socket-io.h: Add new fields to MonoSocketAsyncResult
17240         corresponding to the new ones in Socket.cs.
17241
17242 2007-01-11  Raja R Harinath  <rharinath@novell.com>
17243
17244         Fix IronPython regression mentioned in #80249
17245         * metadata.c (do_mono_metadata_parse_generic_class): Clear
17246         'cached_context' field, since it may have been initialized as a
17247         side-effect of metadata parsing.
17248
17249         * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17250         (_MonoGenericClass.cached_class): Move here and rename from lone
17251         remaining field of ...
17252         (_MonoInflatedGenericClass): ... this.  Remove.
17253         * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17254         to changes.
17255
17256         Fix mcs/tests/test-128.cs regression.
17257         * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17258         2007-01-10 change below.
17259         [MONO_TYPE_OBJECT]: Recurse into array case.
17260
17261 2007-01-11  Raja R Harinath  <harinath@gmail.com>
17262
17263         * class-internals.h (mono_get_inflated_generic_class): Remove.
17264         * class.c (mono_get_inflated_generic_class): Remove.
17265         (mono_generic_class_get_class): Rename from
17266         mono_class_create_generic.
17267         (mono_class_from_mono_type) [GENERICINST]: Use it.
17268         * reflection.c, metadata.c: Update to changes.  Use
17269         'mono_class_from_mono_type'.
17270
17271 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17272
17273         * reflection.c: use passed type when encoding an array element
17274         in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17275
17276 2007-01-09  Robert Jordan  <robertj@gmx.net>
17277
17278         * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17279         result arguments (someDelegate.EndInvoke (unrelatedAres)).
17280         Fixes bug #80392.
17281
17282 2007-01-09  Raja R Harinath  <rharinath@novell.com>
17283
17284         * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17285
17286         * object.c (set_value): Avoid aliasing between type->data.klass
17287         and type->data.generic_class.
17288
17289         * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17290
17291 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17292
17293         * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17294         between type->data.klass and type->data.generic_class.
17295
17296 2007-01-08  Lluis Sanchez  <lluis@ximian.com>
17297
17298         * marshal.c: In MS.NET, StringBuilder objects are not copied by
17299         value in out parameters.
17300
17301 2007-01-08  Raja R Harinath  <rharinath@novell.com>
17302
17303         Simplify invariant for MonoGenericClass::klass field.
17304         * class.c (mono_class_create_generic): Verify 'klass' is null.
17305         * metadata.c (do_mono_metadata_parse_generic_class): Don't
17306         initialize 'klass' field.
17307
17308 2007-01-05  Raja R Harinath  <rharinath@novell.com>
17309
17310         Ongoing work to avoid redundant data and simplify invariants.
17311         * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17312         'generic_class', and change type to a GenericInst.
17313         (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17314         * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17315
17316 2007-01-05  Atsushi Enomoto  <atsushi@ximian.com>
17317
17318         * class.c : skip io-layer under PLATFORM_WIN32.
17319
17320 2007-01-03  Tor Lillqvist  <tml@novell.com>
17321
17322         Fix #80305: In a bundled executable, look in the bundled exe
17323         assembly to determine the runtime version. Add the possibility to
17324         bundle also the machine.config file.
17325         
17326         * assembly.c (mono_assembly_open_from_bundle): Make
17327         non-static. Allow being called even if we have no bundled
17328         assemblies, and return NULL right away in that case.
17329
17330         * domain-internals.h: Declare mono_assembly_open_from_bundle()
17331         here.
17332
17333         * domain.c (app_config_parse): Take an assembly exe file name as
17334         parameter instead of a config file name. Check for a bundled
17335         config file for that assembly by calling
17336         mono_config_string_for_assembly_file() (see below) before looking
17337         for one in the file system.
17338         (get_runtimes_from_exe): Corrsponding change to call of
17339         app_config_parse().
17340         (get_runtimes_from_exe): Check for bundled assembly exe file first
17341         by calling mono_assembly_open_from_bundle(). If no bundled
17342         assembly exe file is found, call mono_image_open() as before to
17343         look it up in the file system.
17344
17345         * mono-config.c: Add variable bundled_machinec_onfig.
17346         (mono_config_string_for_assembly_file): New function.
17347         (mono_config_for_assembly): Move code snippet that looks for a
17348         bundled assembly .config file into the above new function. Call
17349         it.
17350         (mono_register_machine_config, mono_get_machine_config): New
17351         functions to set and retrieve
17352
17353         * assembly.h: Declare mono_register_machine_config().
17354
17355         * mono-config.h: Declare mono_get_machine_config() and
17356         mono_config_string_for_assembly_file().
17357
17358         * icall.c: No declaration of environ necessary on Win32. It is
17359         declared (as a macro expanding to a function call) in stdlib.h.
17360         (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17361         New internal mono function. Returns the value of
17362         mono_get_machine_config() as a Mono string.
17363
17364         * icall-def.h: Add get_bundled_machine_config().
17365
17366 2007-01-04  Raja R Harinath  <rharinath@novell.com>
17367
17368         Remove redundant field
17369         * class-internals.h (_MonoGenericContext.container): Remove field.
17370         * loader.c (mono_method_get_signature_full): Don't parse a
17371         "container" for a signature parse when the signature is inflated
17372         immediately.
17373         (method_from_methodspec): Likewise, for a generic_inst.
17374         * class.c, metadata.c, reflection.c: Update to changes.
17375
17376 2006-01-04  Raja R Harinath  <rharinath@novell.com>
17377
17378         * class-internals.h (_MonoGenericClass): Rename 'context' field to
17379         'cached_context', and change semantics -- it starts off NULL, and
17380         is initialized on demand.
17381         * class.c (mono_generic_class_get_context): New accessor to
17382         replace 'context' field accesses.
17383         (mono_class_get_context): New helper.
17384         (*): Update to changes.
17385         * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17386
17387 2007-01-03  Miguel de Icaza  <miguel@novell.com>
17388
17389         * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17390         before the memcpy.   Fixes Marshal2 regression.
17391
17392 2007-01-02  Jb Evain  <jbevain@gmail.com>
17393
17394         * blob.h: add a MONO_TYPE_ENUM definition
17395         * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17396         fix the encoding of arrays of enums in custom attributes.
17397
17398         Fixes #79666.
17399
17400 2007-01-01  Miguel de Icaza  <miguel@novell.com>
17401
17402         * marshal.c (mono_string_to_byvalwstr): Fix this routine.   The
17403         string is null terminated, but only cut the string short if it
17404         overflows the buffer.   
17405         
17406         (mono_string_to_byvalstr): Also fix this routine.   The code here
17407         was not properly terminating a string (it was only terminated
17408         because of the previous catch-all memset). 
17409
17410         I left the memset, because I do not know if applications expect
17411         the runtime to clear this region. 
17412
17413         Fixes #79944.
17414
17415         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17416         Clear the error before returning to unmanaged code to prevent the
17417         runtime from being confused later on (fixes  80420).
17418         (ves_icall_type_from_name): Always call mono_loader_clear_error
17419         after parsing a type that could have failed.
17420         (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17421
17422         * loader.c (mono_loader_clear_error): Fix indentation.
17423
17424 2006-12-28  Martin Baulig  <martin@ximian.com>
17425
17426         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17427
17428 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17429
17430         * reflection.c: patch from Rolf Bjarne Kvinge to fix
17431         getting a token for an EnumBuilder.
17432
17433 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17434
17435         * reflection.c: be more careful in case resource generation
17436         fails to create the data array.
17437
17438 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17439
17440         * sgen-gc.c: write barrier for clone and fix unregister handles.
17441
17442 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17443
17444         * reflection.c: some fixes needed in the generics code for the moving GC.
17445
17446 2006-12-22  Robert Jordan  <robertj@gmx.net>
17447
17448         * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17449         account. Fixes bug #80299.
17450
17451 2006-12-21  Raja R Harinath  <rharinath@novell.com>
17452
17453         Fix WaitHandle usage in delegates.
17454         * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17455         * object.c (mono_wait_handle_new): Use the property set method to
17456         initialize the handle.
17457         (mono_wait_handle_get_handle): New.
17458         * threadpool.c (mono_async_invoke): Use it.
17459         * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17460         Likewise.
17461         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17462
17463 2006-12-21  Jonathan Chambers  <joncham@gmail.com>
17464
17465         * marshal.c (emit_marshal): Call emit_marshal_variant and
17466         emit_marshal_com_interface when applicable.
17467         (emit_marshal_variant, emit_marshal_com_interface): Add
17468         methods for this case and remove if's from emit_marshal_object.
17469         
17470 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17471
17472         * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17473
17474 2006-12-19  Jonathan Chambers  <joncham@gmail.com>
17475
17476         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17477         ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17478         and GlobalFree on Windows. Remove FIXME.
17479
17480 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17481
17482         * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17483         implementation for managed objects.
17484
17485 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17486
17487         * object.c: implemented code to be used for checking
17488         that no reference field overlaps with non-references.
17489
17490 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17491
17492         * threadpool.c: fix queue code to be compatible with the
17493         moving GC.
17494
17495 2006-12-18  Miguel de Icaza  <miguel@novell.com>
17496
17497         * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17498         in structures by throwing ArgumentNullException.
17499
17500         (emit_marshal_safehandle): Also when they are null parameters.
17501
17502         (emit_marshal_safehandle): Add support for ref
17503         SafeHandles parameters
17504
17505 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17506
17507         * profiler.c: updated to use the mono-dl API instead of
17508         gmodule.
17509
17510 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17511
17512         * profiler.c: updated to use the mono-dl dynamic loading
17513         API instead of gmodule.
17514
17515 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17516
17517         * profiler.c: use readlink, older versions of glib don't have
17518         g_file_read_link ().
17519
17520 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17521
17522         * profiler.c: try to detect the path to mono if libc fails to provide
17523         a useful name (bug #80286).
17524
17525 2006-12-16  Raja R Harinath  <rharinath@novell.com>
17526
17527         Fix #80242
17528         * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17529         instance, use the generic type definition instead.
17530         (ves_icall_Type_GetNestedTypes): Likewise.
17531         * class.c (mono_class_create_generic): Always set the
17532         nested_classes of a generic instance to NULL, even if the generic
17533         type definition has nested types.
17534
17535 2006-12-15  Jonathan Chambers  <joncham@gmail.com>
17536
17537         * marshal.c (mono_string_from_bstr): Revert previous Windows change
17538         and fix on Linux.
17539         
17540 2006-12-15  Miguel de Icaza  <miguel@novell.com>
17541
17542         * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17543         my arguments were in the wrong order.   I also fixed the Windows
17544         version which seems to have had the same issue.
17545
17546         (mono_free_bstr): On Unix, this is g_free.
17547         (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17548         conversions (for the tests in corlib to pass).
17549
17550 2006-12-14  Miguel de Icaza  <miguel@novell.com>
17551
17552         * marshal.c (emit_ptr_to_object_conv): For now, ignore
17553         MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17554         exception if a ref SafeHandle in a struct has changed).
17555         
17556         (emit_struct_conv): Do not perform layout checks for classes
17557         derived from SafeHandle, as those are specially handled. 
17558
17559         (emit_object_to_ptr_conv): Add support for
17560         MONO_MARSHAL_CONV_SAFEHANDLE conversion. 
17561
17562         (emit_marshal_safehandle): Implement conversion of return values
17563         of safehandles (MARSHAL_ACTION_CONV_RESULT).
17564         
17565         * threads.c: WaitHandle now is compiled with two different handles
17566         "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17567         for 2.0.
17568         
17569         (ves_icall_System_Threading_WaitHandle_WaitAll_internal) 
17570         (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17571         these routines to cope with both kinds of fields.
17572
17573 2006-12-12  Miguel de Icaza  <miguel@novell.com>
17574
17575         * metadata.c (mono_type_to_unmanaged): Handle the case where
17576         type->data.klass is a SafeHandle, and in that case, return the
17577         size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17578         MONO_MARSHAL_CONV_SAFEHANDLE. 
17579
17580 2006-12-11  Miguel de Icaza  <miguel@novell.com>
17581
17582         * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17583         MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17584         calling emit_marshal_object.
17585
17586         (emit_marshal_safehandle): Implement marshalling of
17587         SafeHandle parameters (no ref support yet).
17588
17589         (MarshalAction): Document the defines as I implement
17590         them for SafeHandle.
17591
17592         (emit_marshal_object): indentation police.
17593
17594         * class-internals.h: Define MonoSafeHandle.
17595         Add safehandle_class to MonoDefaults type.
17596
17597         * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17598         list of classes to check for fields. 
17599
17600         * domain.c (mono_init_internal): Add SafeHandle to the list of
17601         mono_defaults loaded.
17602
17603 2006-12-15  Raja R Harinath  <rharinath@novell.com>
17604
17605         Fix #80253
17606         * reflection.c (mono_reflection_bind_generic_parameters): If the
17607         generic type definition is a type builder, ensure that it is fully
17608         initialized before instantiating it.  Kill some dead code.
17609
17610 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17611
17612         * object.c: clear the loader_error () before loading
17613         more metadata stuff (bug #80258).
17614
17615 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17616
17617         * icall.c, icall-defs.h: type modifiers icalls for
17618         parameters and properties.
17619
17620 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17621
17622         * object.c, icall.c: fixed warnings.
17623
17624 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17625
17626         * marshal.c: fixed a couple of leaks and coding style in a few places.
17627
17628 2006-12-08  Dick Porter  <dick@ximian.com>
17629
17630         * process.c: Cope with NULL ProcessStartInfo arguments on windows
17631         too.  Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17632         80173.
17633
17634 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17635
17636         * process.c: ProcessStartInfo may have only filename set and
17637         arguments can be NULL.
17638
17639 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17640
17641         * icall.c: fix leak found by Robert Jordan.
17642
17643 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17644
17645         * marshal.c, marshal.h: generate managed method to access an element
17646         of a multi-dimensional array.
17647
17648 2006-11-30  Paolo Molaro (lupus@ximian.com)
17649
17650         * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17651
17652 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17653
17654         * icall.c: back out GetFields () fix until the serialization code is
17655         fixed to not depend on the incorrect behaviour.
17656
17657 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17658
17659         * profiler.c: provide defaults if none are set.
17660
17661 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17662
17663         * Makefile.am, attrdefs.h: new public header file with
17664         constants for attributes for use by embedders.
17665
17666 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17667
17668         * icall.c: GetFields () fix for bug #80064.
17669
17670 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17671
17672         * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17673         removed long unused icalls.
17674
17675 2006-11-27  Jonathan Chambers  <joncham@gmail.com>
17676   
17677         * marshal.c: 
17678                 (mono_marshal_emit_managed_wrapper): Level of indirection for 
17679                 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17680                 can be generated without a delegate class.
17681                 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17682         
17683         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17684
17685 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17686
17687         * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17688         #80069.
17689
17690 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17691
17692         * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17693         icall-def.h: added icalls needed by System.GC.
17694
17695 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17696
17697         * loader.c: ensure the class in catch clauses is handled
17698         correctly for generics methods (fixes bug#79980).
17699
17700 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17701
17702         * monitor.h, monitor.c: added mono_locks_dump () function
17703         to help debug deadlocks involving managed locks.
17704
17705 2006-11-13  Dick Porter  <dick@ximian.com>
17706
17707         * file-io.c (get_file_attributes): If the file is a symlink try
17708         and get the stat data for the target, but also add the
17709         FILE_ATTRIBUTE_REPARSE_POINT flag.  This is an attempt to follow
17710         the specs for the windows symlink support, but will probably have
17711         to be reworked when I have test data from a vista machine.  Fixes
17712         bug 79887.
17713
17714 2006-11-13  Dick Porter  <dick@ximian.com>
17715
17716         * gc.c (mono_domain_finalize): 
17717         * marshal.c (mono_delegate_begin_invoke): 
17718         * threadpool.c (socket_io_init, mono_thread_pool_init)
17719         (mono_thread_pool_finish): 
17720         * monitor.c (mono_monitor_try_enter_internal): 
17721         * threads.c (mono_thread_resume, mono_thread_init)
17722         (mono_thread_suspend_all_other_threads)
17723         (mono_thread_execute_interruption): 
17724         * appdomain.c (mono_domain_unload): Check for NULL error returns
17725         from CreateThread(), CreateEvent() and CreateSemaphore().  See bug
17726         75733.
17727
17728 2006-11-11  Miguel de Icaza  <miguel@novell.com>
17729
17730         * process.c
17731         (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17732         Only close the handle if the value of the handle is not
17733         INVALID_HANDLE_VALUE.  This just makes the process a bit more
17734         robust.
17735
17736         Improvement for #75733, so that we do not run into this problem. 
17737
17738         
17739         * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17740         include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17741         internal variables.  Fixes #79462 
17742         
17743
17744 2006-11-09  Dick Porter  <dick@ximian.com>
17745
17746         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17747         Use poll() not select().  Fixes bug 79397.
17748
17749 2006-11-09  Raja R Harinath  <rharinath@novell.com>
17750
17751         Fix #79872
17752         * assembly.c (mono_assembly_load_from_full): Check that the given
17753         image has an assembly manifest.
17754
17755 2006-11-09  Ankit Jain  <jankit@novell.com>
17756
17757         * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17758         (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17759         (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17760
17761 2006-11-07  Dick Porter  <dick@ximian.com>
17762
17763         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17764         Put the old resolver behaviour back for pre-2.0 profiles.
17765
17766 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17767
17768         * threadpool.c: precise GC and locking fixes.
17769
17770 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17771
17772         * class.c: don't load types that have an explicit unaligned
17773         managed reference. Provide better info in the TypeLoad exception.
17774         Part of the fix for bug #79744.
17775         * object.c: use the correct check for class type load issues.
17776
17777 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17778
17779         * class.c: enforce alignment of fields with managed references
17780         even when Pack=1 is forced by the user (bug #77788).
17781
17782 2006-11-03  Dick Porter  <dick@ximian.com>
17783
17784         * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17785         If the address reverse lookup fails, return it as the hostname
17786         anyway.  Fixes bug 79721.
17787
17788 2006-11-03  Dick Porter  <dick@ximian.com>
17789
17790         * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17791         Fix build on Windows.
17792
17793 2006-11-02  Dick Porter  <dick@ximian.com>
17794
17795         * icall-def.h: 
17796         * object-internals.h: 
17797         * exception.c (mono_get_exception_thread_interrupted): 
17798         * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17799         Fixes bug 74525.
17800
17801         * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17802         Check for pending Thread.Interrupt.
17803
17804 2006-10-27  Massimiliano Mantione  <massi@ximian.com>
17805         * loader.c: Fixed bug 79684.
17806
17807 2006-10-27  Dick Porter  <dick@ximian.com>
17808
17809         * file-io.c (get_file_attributes): Force symlinks to directories
17810         to be returned as a regular file.  Fixes bug 79733.
17811 2006-10-26  Dick Porter  <dick@ximian.com>
17812
17813         * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17814         CreateFile to open a directory then we need to set the
17815         FILE_FLAG_BACKUP_SEMANTICS flag.  Fixes bug 75285.
17816
17817 2006-10-23  Zoltan Varga  <vargaz@gmail.com>
17818
17819         * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17820         friends.
17821
17822 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17823
17824         * sgengc.c: small cleanup of timer code.
17825
17826 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17827
17828         * sgen-gc.c: fix some warnings and start adding support for
17829         complete object removal on domain unload.
17830
17831 2006-10-22  Gert Driesen  <drieseng@users.sourceforge.net>
17832
17833         * assembly.c: build_assembly_name should not consider a version
17834         number without build or revision number invalid. Fixes bug #79715.
17835
17836 2006-10-18  Jonathan Chambers  <joncham@gmail.com>
17837
17838         * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17839         call kernel32 function OutputDebugString directly.
17840         
17841         Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17842         
17843 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17844
17845         * reflection.c: small cleanup, using a function to insert a MonoString
17846         in the string heap.
17847
17848 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17849
17850         * reflection.c: moving GC fixes.
17851
17852 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17853
17854         * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17855         all the objects with finalizers belonging to an unloading appdomain.
17856
17857 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17858
17859         * sgen-gc.c: added ability to allocate even when the nursery is fully
17860         pinned and fixed a couple of bugs.
17861
17862 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17863
17864         * threads.h: Revert the last change for now.
17865
17866         * threads.h (mono_thread_get_pending_exception): Rename this to
17867         mono_thread_get_undeniable_exception ().
17868
17869 2006-10-15  Gert Driesen  <drieseng@users.sourceforge.net>
17870
17871         * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17872         BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17873         when fname does not refer to valid assembly. This result in a more
17874         meaningful error message.
17875         * exception.c: added mono_get_exception_bad_image_format2 which 
17876         constructs a BadImageFormatException using the ctor taking a custom
17877         message and the file name. Passing in a NULL msg results in a default
17878         message.
17879         * exception.h: define mono_get_exception_bad_image_format2 function.
17880         * icall.c: in InternalGetAssemblyName, throw BadImageFormatException 
17881         when file name pointed to an invalid IL image. Use 
17882         mono_get_exception_file_not_found2 to construct FileNotFoundException,
17883         as this results in a more meaningful error message.
17884
17885 2006-10-15  Zoltan Varga  <vargaz@gmail.com>
17886
17887         * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17888         #79465.
17889
17890 2006-10-12  Zoltan Varga  <vargaz@gmail.com>
17891
17892         * metadata.c (mono_type_size): Change the align parameter to guint32 for
17893         consistency with the other _size functions.
17894         (mono_type_stack_size): Ditto.
17895
17896         * class.c object.c icall.c: Fix warnings caused by the above change.
17897
17898         * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17899
17900         * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17901
17902         * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17903
17904 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17905
17906         * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17907         process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17908         socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17909         threadpool.h, threads-types.h: mark more internal functions.
17910
17911 2006-10-11  Dick Porter  <dick@ximian.com>
17912
17913         * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17914         Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17915         reproduce the bug even before applying the fix.)
17916
17917 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17918
17919         * reflection.c: allow retrieving attributes for arguments in generic
17920         methods (bug #79241).
17921
17922 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17923
17924         * debug-mono-symfile.c: properly check fopen () result (found by
17925         coverity).
17926
17927 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17928
17929         * reflection.c: make error message clearer and fixed two
17930         issuelets found by Coverity.
17931
17932 2006-10-10  Zoltan Varga  <vargaz@gmail.com>
17933
17934         * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17935
17936 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17937
17938         * object-internals.h, gc-internal.h, profiler-private.h:
17939         mark internal functions.
17940
17941 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17942
17943         * reflection.c: put data in the text section.
17944         * icall.c: recognize more types in type_from_typename ().
17945         * process.c, marshal.c: added some GC FIXMEs.
17946
17947 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17948
17949         * loader.c: check for NULL before initializing.
17950
17951 2006-10-09  Zoltan Varga  <vargaz@gmail.com>
17952
17953         * gc.c (finalizer_thread): Use a non-alertable wait here.
17954
17955         * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17956         until the correct solution is found.
17957
17958 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17959
17960         * reflection.c (mono_module_get_object): Avoid an assert when operating on
17961         modules with no metadata. Fixes #79596.
17962
17963         * image.c (load_metadata_ptrs): Put back the error message when
17964         the #- heap is encountered since the support is not complete yet.
17965
17966 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17967
17968         * gc.c: do not allow the user to SuppressFinalize () a
17969         delegate because it would leak the trampoline if present.
17970
17971 2006-10-06  Zoltan Varga  <vargaz@gmail.com>
17972
17973         * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
17974         PropertyPtr table.
17975
17976 2006-10-05  Zoltan Varga  <vargaz@gmail.com>
17977
17978         * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
17979
17980         * metadata.c (mono_metadata_get_param_attrs): Ditto.
17981
17982         * row-indexes.h: Add definitions for *Ptr tables.
17983
17984         * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
17985
17986         * metadata.c (mono_metadata_translate_token_index): New helper function to
17987         translate table indexes used in uncompressed metadata.
17988         (mono_metadata_decode_table_row): Ditto.
17989         (mono_metadata_decode_table_row_col): Ditto.
17990
17991         * metadata.c: Add table schema for *Ptr tables.
17992
17993         * class.c loader.c: Use the new helper function to access the affected metadata
17994         tables.
17995         
17996         * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
17997         #38532.
17998         
17999 2006-10-04  Zoltan Varga  <vargaz@gmail.com>
18000
18001         * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18002         sequences which can be unbounded in size. Fixes #79583.
18003
18004 2006-10-02  Zoltan Varga  <vargaz@gmail.com>
18005
18006         * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18007         static initialization.
18008
18009         * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18010
18011         * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18012
18013         * domain.c (mono_domain_free): Free up type_init_exception_hash.
18014
18015         * object.c (mono_runtime_class_init): Implement correct semantics when a static
18016         ctor fails, i.e. throw the same exception on subsequent accesses.
18017         
18018 2006-09-0  Jonathan Chambers  <joncham@gmail.com>
18019
18020         * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18021         * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18022         Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18023         Handle marshalling of interfaces and VARIANTs contained in structs.
18024         
18025         Code is contributed under MIT/X11 license.
18026         
18027 2006-09-30  Zoltan Varga  <vargaz@gmail.com>
18028
18029         * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18030         
18031         * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18032         mempool.
18033
18034 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18035
18036         * console-io.c: ignore previous SIGINT handler.
18037
18038 2006-09-27  Zoltan Varga  <vargaz@gmail.com>
18039
18040         * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual 
18041         (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18042         #79460, #79461, #79485.
18043
18044         * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18045
18046         * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18047         #79217.
18048
18049 2006-09-26  Zoltan Varga  <vargaz@gmail.com>
18050
18051         * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18052         could be generated from it.
18053
18054 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18055
18056         * rand.c: fix read loop to correctly handle EINTR.
18057
18058 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18059
18060         * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18061         internal calls are defined to keep methods closer to the declaring
18062         type and allow a significant reduction in runtime relocations and
18063         memory usage.
18064
18065 2006-09-21 Gert Driesen  <drieseng@users.sourceforge.net>
18066
18067         * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18068         exception message to have FileNotFoundException use the default
18069         assembly load error message. Fixes bug #79426.
18070         * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18071
18072 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18073
18074         * threadpool.c: (start_thread_or_queue) use the root domain when
18075         creating the thread instead of the async object one.
18076
18077 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18078
18079         * class.c, object.c, class-internals.h, reflection.c:
18080         for arrays, store element_size inside MonoClass (speedup
18081         for array object creation).
18082
18083 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18084
18085         * icall.c: fixed CodeBase to use the file name and not the module
18086         name (bug #79365).
18087
18088 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18089
18090         * mono-debug.c, mono-debug.h: export find_method as
18091         mono_debug_find_method ().
18092
18093 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18094
18095         * debug-helpers.c, class-internals.h: added a few functions useful
18096         when debugging under gdb.
18097
18098 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18099
18100         * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18101         characters that need special handling.
18102
18103 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18104
18105         * mono-config.c: make the os/cpu specification more flexible,
18106         allowing lists and negation.
18107
18108 2006-09-18  Jonathan Chambers  <joncham@gmail.com>
18109
18110         * marshal.c: COM Interop fixes. Handle case where method->klass.
18111         is interface. Handle BSTR/MonoString when null. Use CDECL as 
18112         calling convention on non-windows platforms. This is for
18113         compatibility with XPCOM and MainWin COM.
18114         
18115         Code is contributed under MIT/X11 license.
18116         
18117
18118 2006-09-18  Zoltan Varga  <vargaz@gmail.com>
18119
18120         * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18121         correctly. Fixes #79217.
18122
18123         * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18124
18125 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18126
18127         * mono-config.c: allow both an os and cpu attribute for dllmap
18128         and dllentry elemnets to enable a single config file to be used
18129         for multiple architectures.
18130
18131 2006-09-18  Gert Driesen  <drieseng@users.sourceforge.net>
18132
18133         * loader.c: MonoLoaderError was cleared too soon on load failure.
18134         Fixes bug #79424.
18135
18136 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18137
18138         * icall.c: use the defining class vtable when accessing a
18139         static field, not a pobblibly derived class.
18140
18141 2006-09-17  Zoltan Varga  <vargaz@gmail.com>
18142
18143         * icall.c string-icalls.c: Remove references to unicode.h.
18144
18145         * unicode.h unicode.c Makefile.am: Remove these unused source files.
18146
18147         * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18148
18149         * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument, 
18150         indicating the image where custom marshaller types should be looked up.
18151         (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18152         custom marshallers, instead of corlib. Fixes #79425.
18153
18154 2006-09-14  Zoltan Varga  <vargaz@gmail.com>
18155
18156         * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18157
18158 2006-09-14  Jonathan Chambers  <joncham@gmail.com>
18159
18160         * environment.c (ves_icall_System_Environment_get_ProcessorCount): 
18161         Implement Environment.ProcessorCount.
18162         
18163         * environment.h (ves_icall_System_Environment_get_ProcessorCount): 
18164         Implement Environment.ProcessorCount.
18165         
18166         * icall.c: 
18167         Add Environment.ProcessorCount icall.
18168         
18169         Patch by Jason McFall.
18170
18171 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18172
18173         * assembly.c: don't append .exe/.dll when the filename already contains
18174         one of those extensions.
18175
18176 2006-09-12  Martin Baulig  <martin@ximian.com>
18177
18178         * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18179         to array interfaces.
18180
18181 2006-09-11  Martin Baulig  <martin@ximian.com>
18182
18183         * reflection.c (mono_image_build_metadata): Create the
18184         MethodImpl's after emitting all types and methods, so we don't
18185         need another fixup pass for them.
18186
18187 2006-09-11  Zoltan Varga  <vargaz@gmail.com>
18188
18189         * class.c (mono_class_from_name_case): Fix regression introduced by the last
18190         change.
18191
18192 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18193
18194         * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18195         unload.
18196
18197 2006-09-10  Zoltan Varga  <vargaz@gmail.com>
18198
18199         * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18200         args is not set. Fixes #78926.
18201
18202 2006-09-08  Zoltan Varga  <vargaz@gmail.com>
18203
18204         * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18205
18206         * image.c (load_class_names): Move this to class.c, and rename it to 
18207         'mono_image_init_name_cache'.
18208         (load_modules): Fix a warning.
18209
18210         * class.c icall.c image.c: Initialize image->name_cache lazily.
18211
18212         * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18213         on its name using information in the AOT file.
18214
18215         * class.c (mono_class_from_name): Use the new hook function.
18216
18217 2006-09-06  Zoltan Varga  <vargaz@gmail.com>
18218
18219         * reflection.c (mono_param_get_objects): Handle enum default parameter values
18220         correctly.
18221
18222         * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18223         Fixes #79289.
18224         
18225 2006-09-06  Martin Baulig  <martin@ximian.com>
18226
18227         * icall.c (mono_lookup_internal_call): Small fix.
18228
18229 2006-09-05  Raja R Harinath  <rharinath@novell.com>
18230
18231         * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18232         double g_free.
18233
18234 2006-09-04  Sebastien Pouliot  <sebastien@ximian.com>
18235
18236         * debug-mono-symfile.c: Fix *some* memory leaks that happens only 
18237         when --debug is specified.
18238
18239 2006-09-04  Zoltan Varga  <vargaz@gmail.com>
18240
18241         * class.c (setup_generic_array_ifaces): Fix a warning.
18242
18243 2006-09-04  Miguel de Icaza  <miguel@novell.com>
18244
18245         * Temporarily remove the patch to assemly.c that checks the
18246         assembly versions as it breaks our gacutil.
18247
18248 2006-09-03  Zoltan Varga  <vargaz@gmail.com>
18249
18250         * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18251
18252         * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18253         a net 1.0 runtime.
18254
18255         * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18256         created using the default ctor. Fixes #79152.
18257         (mono_string_builder_to_utf16): Ditto.
18258
18259 2006-09-01  Martin Baulig  <martin@ximian.com>
18260
18261         Fix handling of the generic array interfaces.
18262
18263         * class-internals.h
18264         (MonoDefaults): Removed `generic_array_class' and added
18265         `generic_ilist' class.
18266
18267         * class.c
18268         (mono_bounded_array_class_get): Add the new generic array interfaces.
18269         (setup_generic_array_ifaces): New static method; create vtable
18270         entries for each method in the generic array interfaces.
18271
18272         * metadata.c
18273         (select_container): Allow "parent-less" generic methods.
18274
18275         * marshal.c
18276         (mono_marshal_get_generic_array_helper): New public method.
18277
18278         * icall.c
18279         (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18280         Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18281         moved the interncall into System.Array.
18282
18283 2006-09-01  Raja R Harinath  <rharinath@novell.com>
18284
18285         A few more cases of avoiding work on types with ->byref set.
18286         Has the real fix for #79238
18287         * icall.c (is_generic_parameter): New helper.
18288         (ves_icall_Type_GetGenericParameterPosition): Use it.
18289         (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18290         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18291         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18292         (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18293         reference types.
18294         (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18295         reference types.
18296         (ves_icall_Type_get_IsGenericInstance): Likewise.
18297         (ves_icall_Type_get_IsGenericType): Likewise.
18298
18299 2006-09-01  Zoltan Varga  <vargaz@gmail.com>
18300
18301         * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18302         class if possible.
18303
18304         * mempool.h (mono_mempool_get_allocated): New helper function.
18305
18306         * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18307         change.
18308
18309         * mempool.c: Fix warnings and the calculation of stats.
18310
18311         * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18312
18313         * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18314
18315         * loader.c (mono_get_method_from_token): Update method_count stat.
18316
18317         * class-internals.h (MonoStats): Add some stats.
18318
18319 2006-08-31 Robert Jordan  <robertj@gmx.net>
18320
18321         * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18322         with managed variants.
18323         All code is contributed under the MIT/X11 license.
18324         
18325 2006-08-31  Zoltan Varga  <vargaz@gmail.com>
18326
18327         * reflection.c (reflection_methodbuilder_to_mono_method): Set 
18328         method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18329
18330         * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18331
18332         * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18333         with cycles in classes.
18334
18335         * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18336
18337         * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is 
18338         missing a [MarshalAs] directive. Fixes #79203.
18339
18340         * marshal.c (mono_marshal_load_type_info): Fix a race in initializing 
18341         klass->marshal_info. Fixes #79217.
18342
18343 2006-08-30  Martin Baulig  <martin@ximian.com>
18344
18345         Committing a patch from Joachim Ante <joe@otee.dk>:
18346         Add support for binary data symbol stores.
18347
18348         * debug-mono-symfile.c
18349         (mono_debug_open_mono_symbol_file): Renamed into
18350         mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18351         arguments.
18352
18353         * mono-debug.c
18354         (mono_debug_open_image): Added `raw_contents' and `size' args.
18355         (mono_debug_init_2_memory): New public function.
18356
18357 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18358
18359         * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18360
18361 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18362
18363         * appdomain.c: implement support for ShadowCopyFiles.
18364
18365 2006-08-22  Sebastien Pouliot  <sebastien@ximian.com>
18366
18367         * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18368         when value is NULL (and should remove CID #51).
18369
18370 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18371
18372         * image.c: moved 2 functions to ../utils.
18373
18374 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18375
18376         * gc.c: cope with the target object of a GC handle being NULL
18377         (bug #78877).
18378
18379 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18380
18381         * class.c: recursively check parent's explicit implementations
18382         of interface methods (fixes bug #79125).
18383
18384 2006-08-19  Miguel de Icaza  <miguel@novell.com>
18385
18386         * filewatcher.c: Avoid warnings when building, do not redefine
18387         constants that are defined.
18388
18389         Remove warnings.
18390
18391 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18392
18393         * image.c: don't fail when the link points to an absolute path.
18394
18395 2006-08-18  Sebastien Pouliot  <sebastien@ximian.com>
18396
18397         * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18398         Fix CID #3.
18399
18400 2006-08-17  Miguel de Icaza  <miguel@novell.com>
18401
18402         * image.c (full_path): A new method used to obtain the actual path
18403         of an assembly even in the presence of symbolic links.  
18404
18405         This is necessary for the case where we are running a binary that
18406         has been GACed, but we are using the "published" path name
18407         ($prefix/mono/1.0/blah.exe) which happens to point to the real
18408         file in the GAC.
18409
18410         This was the source of the failure for the `xsp' command with the
18411         recent AppDomain changes, as far as the runtime was concerned,
18412         there were two different assemblies: $prefix/mono/1.0/blah.exe and
18413         $prefix/mono/gac/blah/version/blah.exe.
18414
18415         (do_mono_image_open): use full path
18416
18417 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18418
18419         * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18420
18421 2006-08-17  Sebastien Pouliot  <sebastien@ximian.com>
18422
18423         * marshal.c: Fix mono_marshal_check_domain_image if an invalid 
18424         domain_id is supplied. Fix CID #241 and corlib's unit tests.
18425
18426 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18427
18428         * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18429         small structures. Fixes #78990.
18430
18431 2006-08-17  Zoltan Varga  <vargaz@gmail.com>
18432
18433         * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18434
18435         * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18436
18437 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18438
18439         * appdomain.c:
18440         * marshal.c: don't load all the assemblies from a domain into newly
18441         created ones. The new domains might have different rules and load
18442         assemblies from different locations. Fixes bug #76757.
18443
18444         Patch by Lluis. Conflicts resolved by Brian Crowell.
18445
18446 2006-08-16  Alp Toker  <alp@atoker.com>
18447
18448         * socket-io.c: First half of the fix for #79084.
18449         Set sa_size to the length of the content, not that of the struct.
18450         Don't add NULL suffix to the content, this should be done in
18451         managed code if needed.
18452
18453 2006-08-14  Raja R Harinath  <rharinath@novell.com>
18454
18455         Fix part of #79012
18456         * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18457         mono_metadata_parse_type returns NULL.
18458
18459 2006-08-13  Atsushi Enomoto  <atsushi@ximian.com>
18460
18461         * normalization-tables.h : new file for string normalization data.
18462         * locales.c, locales.h, icall.c :
18463           added load_normalization_resource() for string normalization,
18464           and icall as well.
18465         * Makefile.am : added normalization-tables.h to the sources.
18466
18467 2006-08-13  Zoltan Varga  <vargaz@gmail.com>
18468
18469         * marshal.c: Add more helper functions to reduce code duplication and use them
18470         everywhere.
18471
18472 2006-08-12  Zoltan Varga  <vargaz@gmail.com>
18473
18474         * marshal.c: Fix non-x86 stdcall warnings.
18475         
18476         * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use 
18477         them everywhere.
18478
18479 2006-08-11  Jonathan Chambers  <joncham@gmail.com>
18480
18481         * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18482         type check on multi-dimensional arrays. Fixes #79000.
18483
18484 2006-08-10  Jonathan Chambers  <joncham@gmail.com>
18485
18486         * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18487         * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18488         to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18489         * class-internals.h: add is_com_object to class structure.
18490         * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18491         null checks to COM object marshalling. Fix .ctor call on RCW.
18492         * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18493         
18494         All code is contributed under the MIT/X11 license.
18495
18496 2006-08-09  Dick Porter  <dick@ximian.com>
18497
18498         * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18499         racing mono_monitor_allocator_lock() somewhere, so don't delete
18500         the critical section for now.  Found by running and exiting
18501         monodevelop.
18502
18503 2006-08-10  Zoltan Varga  <vargaz@gmail.com>
18504
18505         * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18506         (ves_icall_System_ComObject_FindInterface): Ditto.
18507         (ves_icall_System_ComObject_CacheInterface): Ditto.
18508
18509         * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18510         (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18511
18512 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18513
18514         * threadpool.c: treat pipes from process asynchronous reads as sockets
18515         when reading from them, so we get select/poll or epoll to wait for
18516         data.
18517
18518 2006-08-07  Sebastien Pouliot  <sebatien@ximian.com>
18519
18520         * loader.c: Fix a typo (CID #233) in the null check.
18521
18522 2006-08-07  Zoltan Varga  <vargaz@gmail.com>
18523
18524         * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18525         Hopefully fixes #78949.
18526         
18527         * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from 
18528         Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18529         bytes. Fixes #78972.
18530
18531 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18532
18533         * filewatcher.c: we need to set errno here.
18534
18535 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18536
18537         * filewatcher.c: let Win32Exception get the error value.
18538
18539 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18540
18541         * filewatcher.c: translate errno into win32 errors for Win32Exception
18542         to know what happened.
18543
18544 2006-08-01  Zoltan Varga  <vargaz@gmail.com>
18545
18546         * threadpool.c: Fix more warnings.
18547
18548         * assembly.c (search_loaded): Fix warnings.
18549
18550         * threadpool.c (mono_thread_pool_finish): Fix warnings.
18551         (mono_async_invoke): Ditto.
18552
18553 2006-07-28  Jonathan Chambers  <joncham@gmail.com>
18554
18555         * object.c (mono_remote_class_vtable): Need to create proxy vtable
18556         entries for __ComObject type in addition to ComImport types.
18557         * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18558         about hash table.
18559         
18560         All code is contributed under the MIT/X11 license.
18561
18562 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18563
18564         * image.c: avoid tentative loading of modulerefs that contain
18565         no metadata (P/Invoke library names).
18566
18567 2006-07-28  Dick Porter  <dick@ximian.com>
18568
18569         * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18570         mono_loader_lock() somewhere, so don't delete the critical section
18571         for now.  Found by running and exiting monodevelop.
18572
18573 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18574
18575         * filewatcher.c: define the inotify syscalls when we're building on
18576         linux and have sys/syscall.h. The build system might not have support
18577         for inotify but the target system might have it.
18578
18579 2006-07-26  Miguel de Icaza  <miguel@novell.com>
18580
18581         * domain.c: Documentation updates.
18582
18583         * loader.c (mono_free_method): Do not release the method
18584         information if we are being profiled, as profilers will use this
18585         information at shut down to present some data to the user.
18586
18587         This is needed so that the profiler does not crash, as the
18588         profiler tends to keep MonoMethods around, and they might become
18589         invalid if we free these.
18590
18591         (mono_get_method_constrained): Return the original CIL stream
18592         method as well, so verification can be performed against it.
18593
18594 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18595
18596         * filewatcher.[ch]: support for inotify file system watcher.
18597         * icall.c: add new internal calls for the inotify file system watcher.
18598
18599 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18600
18601         * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18602         #78888.
18603
18604 2006-07-20  Dick Porter  <dick@ximian.com>
18605
18606         * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18607         warning.
18608
18609 2006-07-20  Dick Porter  <dick@ximian.com>
18610
18611         * threads.c (start_wrapper): Do the thread cleanup while we still
18612         hold a reference to its object.  Fixes bug 78123.
18613
18614 2006-07-18  Kornél Pál  <kornelpal@gmail.com>
18615
18616         * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18617         * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18618           "managed-to-managed".
18619         * icall.c: Redirect string constructors that take sbyte* to
18620           ves_icall_System_String_ctor_RedirectToCreateString.
18621         * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18622           to CreateString () methods with matching signature.
18623         * reflection.c: Use original security informations for
18624           MONO_WRAPPER_MANAGED_TO_MANAGED.
18625         * security-manager.c: Use original security informations for
18626           MONO_WRAPPER_MANAGED_TO_MANAGED.
18627         * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18628           that is a placeholder and only its address should be used.
18629         * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18630           that is a placeholder and only its address should be used.
18631
18632 2006-07-15  Jonathan Chambers  <joncham@gmail.com>
18633
18634         Begin implementing COM Interop.
18635         * appdomain.c: Increment corlib version.
18636         * class.c: Set ComImport classes' parent to __ComObject.
18637         * loader.c: Mark cominterop methods as such.
18638         * domain.c: Add __ComObject class to MonoDefaults structure.
18639         * image.c: Add 2 hashtables to the image for COM Interop related methods
18640         * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18641         using the mempool allocator
18642         
18643         * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18644         * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18645         declaration for mono_metadata_type_dup_mp.
18646         
18647         * debug-helpers.c: Added strings for two additional wrapper types
18648         * object.c: Create proxy objects for ComImport classes
18649         * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18650         and added __ComObject class to MonoDefaults structure.
18651         
18652         * object-internals.h: Finish MonoRealProxy definition, and add definition of
18653         MonoComInteropProxy and MonoComObject.
18654         
18655         * marshal.c: Added support for COM Interop
18656         (signature_cominterop): Converts managed signature to corresponding
18657         unmanaged COM signature.
18658         (cominterop_get_function_pointer): gets unmanaged function pointer via
18659         COM object vtable
18660         (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18661         (cominterop_get_method_interface): returns interface type that method is defined on
18662         (mono_mb_emit_cominterop_call): emits native call to function pointer
18663         gotten from vtable
18664         (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18665         that matches signature of unmanaged function.
18666         (cominterop_get_native_wrapper): wrapper around adjusted method call.
18667         (cominterop_get_invoke): forwards call from proxy to __ComObject
18668         (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef 
18669         (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface 
18670         (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release 
18671         
18672         * marshal.h: Added Marshal icall declarations.
18673         * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18674         so we can access them in finalizer
18675         
18676 2006-07-14  Dick Porter  <dick@ximian.com>
18677
18678         * object.c (mono_type_initialization_cleanup): Fix a race
18679         condition by temporarily commenting out the critical section
18680         deletion.
18681
18682 2006-07-14  Zoltan Varga  <vargaz@gmail.com>
18683
18684         * reflection.c (create_custom_attr): Fix some warnings.
18685         (create_custom_attr_data): Ditto.
18686         (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18687         types. Fixes #78855.
18688
18689 2006-07-11  Zoltan Varga  <vargaz@gmail.com>
18690
18691         * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18692
18693         * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18694
18695 2006-07-08  Zoltan Varga  <vargaz@gmail.com>
18696
18697         * reflection.c (resolve_object): Add support for DynamicMethod.
18698
18699         * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18700         Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18701
18702 2006-07-06  Sebastien Pouliot  <sebastien@ximian.com>
18703
18704         * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal 
18705         don't leak GPtrArray's pdata has we have no use (nor free) for it.
18706
18707 2006-07-01  Zoltan Varga  <vargaz@gmail.com>
18708
18709         * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18710         Fixes #77888.
18711
18712 2006-06-30  Raja R Harinath  <rharinath@novell.com>
18713
18714         * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18715         slightly: remove a shadow local variable.
18716
18717 2006-06-29  Raja R Harinath  <rharinath@novell.com>
18718
18719         * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18720         definition that introduces the virtual function slot.
18721         Also fix Coverity #105.
18722
18723 2006-06-29  Zoltan Varga  <vargaz@gmail.com>
18724
18725         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18726         for dynamic assemblies. Fixes #78724.
18727
18728 2006-06-28  Zoltan Varga  <vargaz@gmail.com>
18729
18730         * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18731         Fixes #78722.
18732
18733 2006-06-21  Martin Baulig  <martin@ximian.com>
18734
18735         * reflection.c
18736         (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18737         fixes #76484.
18738
18739 2006-06-21  Zoltan Varga  <vargaz@gmail.com>
18740
18741         * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18742
18743 2006-06-20  Raja R Harinath  <rharinath@novell.com>
18744
18745         Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18746         nor TYPEREFs.
18747         * class.c (mono_class_create_from_typespec): Add 'context' argument.
18748         Inflate result if necessary.
18749         (mono_class_get_full): Remove old version.  Rename from
18750         'mono_class_get' and add 'context' argument.  Pass it to
18751         ..._create_from_typespec.
18752         (mono_class_get): New.  Simple wrapper to mono_class_get_full.
18753         (mono_ldtoken): Revert change below.
18754
18755 2006-06-20  Martin Baulig  <martin@ximian.com>
18756
18757         * class.c (mono_ldtoken): Don't pass the generic context to
18758         mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF.  Fixes #78053.
18759
18760 2006-06-15  Zoltan Varga  <vargaz@gmail.com>
18761
18762         * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18763         and later freeing it. Fixes #78638.
18764
18765 2006-06-15  Miguel de Icaza  <miguel@novell.com>
18766
18767         * icall.c (mono_class_get_throw): Revert over-zealous error
18768         throwing, the caller for mono_class_get_throw will cope with
18769         errors when classes are not properly initialized already.
18770
18771         The code still copes with loader exceptions though.
18772
18773         Fixes the regression in reftype1 and reftype3 from the CAS tests.
18774         
18775 2006-06-14  Miguel de Icaza  <miguel@novell.com>
18776
18777         Fixes the `make run1' version of RuntimeAbort (to be commited,
18778         source is in Bugzilla).
18779         
18780         * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18781         FALSE on class loading failure instead of returning true.
18782
18783         * class.c (mono_class_create_from_typedef): It is possible for
18784         mono_metadata_interfaces_from_typedef_full to fail if a class is
18785         not found, cope with this.
18786         
18787
18788 2006-06-14  Dick Porter  <dick@ximian.com>
18789
18790         * socket-io.c: 
18791         * process.c: Fix a bunch of signed/unsigned warnings from gcc
18792         4.1.1
18793
18794 2006-06-12  Atsushi Enomoto  <atsushi@ximian.com>
18795
18796         * culture-info-table.h : oops, forgot to make it nsync with r61548.
18797
18798 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18799
18800         * icall.c: Another fix for building mono in Visual Studio.
18801
18802 2006-06-09  Jonathan Chambers  <jonathan.chambers@ansys.com>
18803
18804         * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18805         
18806 2006-06-09  Martin Baulig  <martin@ximian.com>
18807
18808         * debug-mono-symfile.c: Put this back and really fix it this
18809         time. Sorry for all the trouble.
18810
18811 2006-06-08  Zoltan Varga  <vargaz@gmail.com>
18812
18813         * icall.c (mono_class_get_throw): Fix a warning.
18814         (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw 
18815         ReflectionTypeLoadException if needed. Fixes #78606.
18816
18817         * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18818         (mono_class_init): Ditto.
18819
18820         * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18821         ref_only exceptions.
18822         (mono_loader_clear_error): Make this work even if there is no error.
18823
18824 2006-06-08  Jonathan Chambers  <jonathan.chambers@ansys.com>
18825
18826         * object-internals.h marshal.c marshal.h icall.c: Implement method 
18827         Marshal.GetComSlotForMethodInfo using internal call.
18828
18829 2006-06-07  Zoltan Varga  <vargaz@gmail.com>
18830
18831         * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18832         a function for signalling it.
18833
18834         * class.c (mono_class_from_typeref): Use the new kind of loader error when
18835         a referenced assembly is not found.
18836
18837         * loader.c (mono_loader_error_prepare_exception): Add support for 
18838         LOADER_ERROR_ASSEMBLY. Fix formatting.
18839
18840 2006-06-05  Jonathan Chambers  <jonathan.chambers@ansys.com>
18841
18842         * domain.c appdomain.c class-internals.h marshal.c: Add support 
18843         for VARIANT marshalling on windows and increment corlib version
18844         since Variant struct was added.
18845
18846 2006-06-03  Miguel de Icaza  <miguel@novell.com>
18847
18848         * debug-mono-symfile.c: Revert Martin's previous patch which broke
18849         stack trace line information:
18850
18851         (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18852         (Martin) when looking up B which is between A and C, return A not C.
18853
18854         Bug is #78573.
18855
18856         Thanks to Alexander Olk for tracking this down.
18857
18858 2006-06-02  Zoltan Varga  <vargaz@gmail.com>
18859
18860         * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18861         
18862         * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18863         avoid clobbering its value.
18864         (mono_string_to_lpstr): Fix a warning on windows.
18865
18866 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18867
18868         * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18869
18870         * reflection.c loader.c: Removed references to 'dummy' flag.
18871
18872         * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18873
18874         * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18875         it gets GC tracking.
18876
18877         * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18878         GC tracking.
18879         
18880         * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18881
18882         * marshal.c threadpool.c: Update callers of mono_async_result_new.
18883
18884         * appdomain.c: Bump corlib version.
18885
18886 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18887
18888         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18889         CEE_STIND_REF when working with object references.
18890
18891 2006-05-31  Zoltan Varga  <vargaz@gmail.com>
18892
18893         * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18894         Fixes #78539.
18895
18896 2006-05-30  Miguel de Icaza  <miguel@novell.com>
18897
18898         * loader.c (method_from_memberref): Fix argument value for
18899         mono_loader_set_error_method_load (I was passing the MonoClass
18900         instead of the class name char *).
18901
18902 2006-05-30  Zoltan Varga  <vargaz@gmail.com>
18903
18904         * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18905         CEE_STIND_REF when working with object references.
18906
18907 2006-05-30  Martin Baulig  <martin@ximian.com>
18908
18909         * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18910         mono_method_full_name() change and replace the ':' with a '.'
18911         here.
18912
18913 2006-05-30  Martin Baulig  <martin@ximian.com>
18914
18915         * debug-mono-symfile.c
18916         (mono_debug_symfile_lookup_location): Fix the algorithm:
18917         when looking up B which is between A and C, return A not C.
18918
18919 2006-05-29  Martin Baulig  <martin@ximian.com>
18920
18921         * mono-debug.h
18922         (MonoDebugMethodInfo): Make the typedef public.
18923         (MonoDebugSourceLocation): New public struct.
18924
18925         * mono-debug.c
18926         (mono_debug_source_location_from_address): Removed.
18927         (mono_debug_source_location_from_il_offset): Removed.
18928         (mono_debug_il_offset_from_address): Removed.
18929         (mono_debug_address_from_il_offset): Removed.
18930         (mono_debug_lookup_method): New public function.
18931         (mono_debug_lookup_source_location): New public function; replaces
18932         the old mono_debug_source_location_from_*() functions; see the
18933         inline documentation.
18934         (mono_debug_free_source_location): New public function.
18935         (mono_debug_print_stack_frame): New public function; see the
18936         inline documentation.
18937
18938         * debug-mono-symfile.c
18939         (mono_debug_find_source_location): Renamed into
18940         mono_debug_symfile_lookup_location(); only take a
18941         `MonoDebugMethodInfo *' and an `offset' argument; added inline
18942         documentation.
18943         (mono_debug_find_method): Renamed into
18944         mono_debug_symfile_lookup_method().
18945
18946 2006-05-27  Zoltan Varga  <vargaz@gmail.com>
18947
18948         * assembly.c (mono_assembly_open_full): Dont overwrite the status
18949         returned by mono_image_open_full ().
18950
18951         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18952         MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18953         #78517.
18954
18955         * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18956         #78518.
18957
18958 2006-05-27  Miguel de Icaza  <miguel@novell.com>
18959
18960         * class.c (mono_class_from_typeref): handle missing images
18961         earlier, deals with bug #78418.   Refactor code; 
18962
18963         Fix a warning introduced in my previous commit (some stale code
18964         from before I revisited my patch).
18965
18966         * class.c (mono_class_create_from_typedef): On failure, remove the
18967         class from the MonoImage->class_cache as the class is not
18968         initialized;   Fixes the leak pointed out by Paolo.
18969
18970 2006-05-25  Dick Porter  <dick@ximian.com>
18971
18972         * threads.c (mono_thread_cleanup): Build fix.  Comment out the
18973         DeleteCriticalSections until I figure out which one may still be
18974         sometimes locked when mono_thread_cleanup is called.
18975
18976 2006-05-24  Dick Porter  <dick@ximian.com>
18977
18978         * threads.c (mono_thread_cleanup): Move the threading cleanup out
18979         of mono_thread_manage and back into its own function, so it can be
18980         called after the finalizer thread has finished.
18981
18982         * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
18983
18984 2006-05-24  Zoltan Varga  <vargaz@gmail.com>
18985
18986         * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
18987         Fixes #78495.
18988
18989         * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
18990         with non-blittable elements.
18991         (emit_object_to_ptr_conv): Ditto. Fixes #78492.
18992
18993 2006-05-24  Martin Baulig  <martin@ximian.com>
18994
18995         * mono-debug-debugger.h (MonoDebuggerEvent): Added
18996         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.    
18997
18998         * mono-debug-debugger.c (mono_debugger_cleanup): Send a
18999         `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19000         `mono_debugger_event_handler' to NULL.
19001
19002 2006-05-24  Martin Baulig  <martin@ximian.com>
19003
19004         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19005
19006 2006-05-24  Martin Baulig  <martin@ximian.com>
19007
19008         * mono-debug-debugger.h
19009         (mono_debugger_create_notification_function): Added
19010         `MonoCodeManager *' argument.
19011
19012 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19013
19014         * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19015
19016 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19017
19018         * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19019         * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19020         implementation.
19021
19022 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19023
19024         * icall.c: precise GC support: objects can't be stored in unmanaged
19025         memory anymore, even if they are kept alive by other references: since
19026         they can move the GC needs to be able to always find them.
19027
19028 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19029
19030         * object.c: precise GC support for static fields. Support
19031         for moving GCs: write barriers and pinned allocation for interned
19032         strings.
19033
19034 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19035
19036         * domain.c, domain-internals.h: precise GC support for the MonoDomain
19037         structure.
19038
19039 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19040
19041         * class.c, gc.c: sgen and precise GC updates.
19042
19043 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19044
19045         * marshal.h, marshal.c: added write barrier wrapper and precise type
19046         fixes.
19047
19048 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19049
19050         * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19051         support.
19052
19053 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19054
19055         * reflection.c: precise and sgen GC updates.
19056
19057 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19058
19059         * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19060
19061 2006-05-22  Zoltan Varga  <vargaz@gmail.com>
19062
19063         * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19064
19065 2006-05-20  Zoltan Varga  <vargaz@gmail.com>
19066
19067         * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19068         MONO_TYPE_OBJECT. Fixes #78462.
19069
19070 2006-05-18  Zoltan Varga  <vargaz@gmail.com>
19071
19072         * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct 
19073         and blittable types.
19074
19075 2006-05-17  Miguel de Icaza  <miguel@novell.com>
19076
19077         * class.c (mono_class_get_exception_for_failure): Implement parts
19078         of a TODO: if the loader error is set (instead of the class
19079         error), we return a Loader exception that can be properly thrown
19080         elsewhere.
19081
19082         This was exposed by some Winforms 2.0 code that I tried to run
19083         (Atsushi pointed me to it).
19084
19085 2006-05-17  Zoltan Varga  <vargaz@gmail.com>
19086
19087         * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19088         uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19089         
19090         * marshal.c (emit_marshal_vtype): Add limited support for 
19091         UnmanagedType.LPStruct. Fixes #78427.
19092
19093         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure): 
19094         Applied a patch from kangaroo to fix #77523.
19095
19096 2006-05-17  Martin Baulig  <martin@ximian.com>
19097
19098         * threads.c
19099         (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19100         (debugger_thread_created): Removed.
19101         (debugger_thread_exited): Removed.
19102
19103 2006-05-15  Zoltan Varga  <vargaz@gmail.com>
19104
19105         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19106
19107         * object-internals.h (MonoReflectionResource): Sync with managed version.
19108
19109 2006-05-12  Wade Berrier <wberrier@novell.com>
19110
19111         * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19112
19113 2006-05-12  Zoltan Varga  <vargaz@gmail.com>
19114
19115         * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19116         functions try to allocate from the image mempool.
19117
19118 2006-05-12  Dick Porter  <dick@ximian.com>
19119
19120         * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19121
19122 2006-05-12  Lluis Sanchez  <lluis@ximian.com>
19123
19124         * object.c: The FieldGetter and FieldSetter methods require the full
19125         name of the class, not only the name. Fixes bug #78277.
19126
19127 2006-05-11  Miguel de Icaza  <miguel@novell.com>
19128
19129         * loader.c (method_from_memberref): Do not pass the NULL klass to
19130         mono_loader_set_error_() methods.  Pass the non-NULL value
19131         (class). 
19132
19133 2006-05-11  Zoltan Varga  <vargaz@gmail.com>
19134
19135         * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19136         (mono_assembly_close): Null out assembly->image->references after freeing it.
19137
19138         * image.c (mono_image_close): Free image->references.
19139         
19140         * reflection.c (mono_image_basic_init): Fix a small memory leak.
19141
19142 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19143
19144         * marshal.c: In function mono_mb_add_local don't use the mb pointer 
19145         before checking if it's NULL (g_assert).
19146
19147 2006-05-10  Martin Baulig  <martin@ximian.com>
19148
19149         * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19150         I thought I already killed that two months ago, but now it somehow reappeared.
19151
19152 2006-05-10  Martin Baulig  <martin@ximian.com>
19153
19154         * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19155
19156 2006-05-10  Zoltan Varga  <vargaz@gmail.com>
19157
19158         * reflection.c: Allocate memory for dynamically created methods in the image
19159         mempools.
19160
19161 2006-05-10  Sebastien Pouliot  <sebastien@ximian.com>
19162
19163         * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions, 
19164         don't use the ad pointer before checking if it's NULL (g_assert).
19165
19166 2006-05-09  Zoltan Varga  <vargaz@gmail.com>
19167
19168         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19169         a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19170
19171         * marshal.c: Allocate all signatures from mempools.
19172
19173         * marshal.c: Allocate some more signatures from mempools.
19174
19175 2006-05-09  Miguel de Icaza  <miguel@novell.com>
19176
19177         * object.c (mono_load_remote_field): The code used to provide a
19178         temporary variable for returning results if the user did not
19179         provide a result pointer.  But our temporary variable was allocted
19180         on the satck.
19181
19182         Fix calling code to always pass a result area.   Coverity ID 103.
19183
19184 2006-05-06  Zoltan Varga  <vargaz@gmail.com>
19185
19186         * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19187         value, not the old. Fixes #78312.
19188         (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19189
19190         * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19191         (mono_ptr_class_get): Ditto. Also change the cache from a global one to a 
19192         per-image cache.
19193
19194         * assembly.c (mono_assembly_close): Free image->references.
19195
19196         * assembly.c (mono_assembly_names_equal): Fix a warning.
19197         (mono_assemblies_cleanup): Cleanup more global data.
19198
19199         * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19200
19201         * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19202         ptr_cache and image->modules.
19203
19204         * image.c (mono_image_init): Allocate array_cache lazily.
19205         
19206 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19207
19208         * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19209         behavior was changed recently and has bad side effects.
19210
19211 2006-05-05  Zoltan Varga  <vargaz@gmail.com>
19212
19213         * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19214         
19215         * assembly.c (mono_assembly_close): Remove a debug printf.
19216
19217         * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19218
19219         * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19220         to also allow for temporary references between mono_image_open ()/close ().
19221
19222         * domain.c (get_runtimes_from_exe): Add a FIXME.        
19223
19224 2006-05-04  Zoltan Varga  <vargaz@gmail.com>
19225
19226         * marshal.c: Fix support for dynamic methods.
19227
19228         * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19229
19230         * marshal.c (mono_marshal_cleanup): New cleanup function.
19231
19232         * marshal.c: Rewrite the wrapper code to allocate most of its memory from the 
19233         image mempools.
19234
19235         * class.c (mono_class_init): Fix leaking class->nested_classes.
19236
19237         * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19238
19239         * image.c (mono_image_init): Initialize the new cashes.
19240
19241         * image.c (mono_image_close): Destroy the new cashes.
19242
19243         * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19244
19245         * mempool.c (mono_mempool_strdup): New helper function.
19246
19247         * class-internals.h: Add prototype for mono_loader_unlock ().
19248
19249         * domain.c (mono_jit_info_table_find): Fix a warning.
19250         (mono_debugger_check_runtime_version): Ditto.
19251
19252         * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h 
19253         class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19254         functions to these modules.
19255
19256         * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19257         metadata modules.
19258         
19259         * marshal.c (mono_free_bstr): Fix a warning.
19260
19261         * assembly.c (mono_assembly_open_full): Fix another small leak.
19262
19263         * object.c: Fix some unload leaks in the remoting code.
19264
19265         * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19266         function.
19267
19268         * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19269
19270         * reflection.c: Fix some unload leaks in dynamic assemblies.
19271
19272 2006-05-02  Jonathan Chambers  <jonathan.chambers@ansys.com>
19273
19274         * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19275         * marshal.h: Add BSTR support on Win32
19276         * icall.c: Add BSTR icalls
19277         * metadata.h: Add BSTR enums
19278
19279 2006-04-28  Miguel de Icaza  <miguel@novell.com>
19280
19281         Work to catch the crash from #76795 and turn it into an
19282         exception.   As I stubbed out pieces of the VisualBasic support,
19283         I found a number of places where the code was failing and I added
19284         checks to those places. 
19285         
19286         * metadata.c (do_mono_metadata_parse_generic_class): Make this
19287         function return a status code.  If we fail to parse the signature
19288         from mono_metadata_parse_generic_inst, return FALSE.
19289
19290         * loader.c (mono_get_method_from_token): If we fail to load the
19291         method (mono_class_get) return NULL.   
19292
19293         * (method_from_memberref): Return NULL if we are unable to parse
19294         the method signature
19295
19296         (mono_loader_error_prepare_exception): Since we now use the
19297         loader_error flag internally to stop processing, and obtaining
19298         exceptions that might be thrown will walk this code path the
19299         proper way of going from a MonoLoaderError into a
19300         MonoException was convoluted.   This new routine encapsulates the
19301         process of turning the error into an exception and *clearing* the
19302         error afterwards.
19303         
19304 2006-04-27  Miguel de Icaza  <miguel@novell.com>
19305
19306         Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19307         with missing assemblies), and to cope with:
19308
19309                 * Missing fieldref from a non-existing assembly.
19310                 * Missing methodref from a non-existing assembly.
19311
19312         The first batch of work to address *some* of the issues from 76661.
19313         
19314         * object.c (mono_class_create_runtime_vtable): If we fail to
19315         initialize the class raise the exception here. 
19316
19317         * metadata.c (mono_class_get_overrides_full): If any methods fail
19318         to load return the failure to the caller.
19319
19320         * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19321         flagging assemblies that failed to load.   
19322
19323         Do not crash if we are unable to load the assembly.
19324
19325         (mono_assembly_close): Do nothing with REFERENCE_MISSING
19326         assemblies. 
19327
19328         * loader.c (mono_loader_set_error_type_load): Change the
19329         convention to always pass unallocated strings, so we make our own
19330         copies (I know our own code had duplicated strings before, but
19331         this keeps the normal conventions).
19332         (method_from_memberref): Call mono_loader_set_error_method_load
19333         for all possible failures of loading the class. 
19334         Remove assert, turn into a loader error.
19335
19336         (mono_loader_error_to_exception): Move this routine from mini
19337         (mini_loader_error_to_exception) there was no need to have that in
19338         mini. 
19339
19340         * class.c (mono_class_from_typeref): If we were not able to load
19341         the assembly with mono_assembly_load_reference, call the
19342         mono_loader_set_error_type_load to register the problem.
19343
19344         (mono_class_setup_fields): If we fail to load the type from
19345         mono_metadata_parse_type_full, call mono_class_set_failure and
19346         break from the loop.
19347
19348         If class->exception_type is set, we do not layout the fields as
19349         that might crash the runtime, and instead return (from breaking
19350         from the previous loop).
19351
19352         (mono_class_setup_vtable): This now returns a boolean indicating
19353         whether the table was properly setup.   The decision is driven by
19354         mono_class_get_overrides_full which might run into non-existing
19355         methods. 
19356         
19357         (mono_class_init): Returns TRUE on success or FALSE if there was a
19358         problem in loading the type (incorrect assemblies, missing
19359         assemblies, methods, etc).
19360
19361         When we call mono_class_setup_fields we also check for a potential
19362         error inside this call (either a class exception or a general
19363         loader exception).
19364
19365         (mono_class_create_from_typedef): If the parent fails to load
19366         (calling mono_class_get_full) return NULL.
19367         
19368         ** Important **
19369
19370         calls to mono_metadata_parse_type_full should be checked
19371         everywhere and set the mono_class_set_failure
19372         (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19373
19374         The current patch checks the places where my manually constructed
19375         tests show the errors are showing up, but we should do it
19376         everywhere. 
19377
19378         ** Important2 **
19379
19380         mono_class_init return values should be tested everywhere, like
19381         the previous case this is something that we should audit
19382         everywhere and not only on the cases exposed by the tests I
19383         created. 
19384
19385 2006-04-26  Miguel de Icaza  <miguel@novell.com>
19386
19387         * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19388         boolean parameter and instead pass the information on `options'
19389         parameter (FileOptions).
19390
19391         * icall.c: Register the new signature for MonoIO.Open.
19392
19393         * debug-helpers.c (dis_one): Trying to understand how coverity
19394         works.  Fix Run 5, item 78.
19395
19396 2006-04-26  Dick Porter  <dick@ximian.com>
19397
19398         * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19399         dereference.
19400
19401 2006-04-25  Martin Baulig  <martin@ximian.com>
19402
19403         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19404
19405         * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19406         debugger_thread_created().
19407         (debugger_gc_push_all_stacks): Don't handle the main thread in any
19408         special way.
19409         (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19410         (mono_debugger_finalize_threads): New function; undo the effects
19411         of mono_debugger_init_threads().
19412         (mono_debugger_create_all_threads): Removed.
19413
19414 2006-04-24  Zoltan Varga  <vargaz@gmail.com>
19415
19416         * image.c (mono_image_close): Tidy up trace messages.
19417
19418         * assembly.c (mono_assembly_close): Ditto.
19419
19420         * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19421         no longer references an already freed assembly. Fixes #78168.
19422
19423 2006-04-21  Dick Porter  <dick@ximian.com>
19424
19425         * threads.c (mono_thread_detach): Fix reference counting when
19426         detaching threads.
19427
19428 2006-04-21  Zoltan Varga  <vargaz@gmail.com>
19429
19430         * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19431         #78155.
19432
19433 2006-04-19  Zoltan Varga  <vargaz@gmail.com>
19434
19435         * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19436         (mono_type_to_stind): Ditto.
19437
19438         * marshal.c: Use the new helper functions to simplify code.
19439
19440         * image.c (mono_image_close): Add some code for help debug assembly unloading
19441         problems.
19442
19443         * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19444         image mempool.
19445
19446         * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19447         assembly was already loaded in another appdomain. Fixes #78083.
19448
19449 2006-04-13  Zoltan Varga  <vargaz@gmail.com>
19450
19451         * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19452         referenced assemblies.
19453         (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19454
19455         * domain.c (mono_domain_free): Add a trace message.
19456
19457         * appdomain.c (add_assemblies_to_domain): Ditto.        
19458
19459         * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19460         field.  
19461
19462 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19463
19464         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19465
19466 2006-04-12  Martin Baulig  <martin@ximian.com>
19467
19468         * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19469         `USE_INCLUDED_LIBGC'.   
19470
19471 2006-04-12  Zoltan Varga  <vargaz@gmail.com>
19472
19473         * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19474         the patch contains ../ and a small directory name later. Hopefully fixes
19475         #78035.
19476
19477 2006-04-10  Martin Baulig  <martin@ximian.com>
19478
19479         Clean up the debugger's thread-handling code.
19480
19481         The debugger's thread-handling code has been moved from
19482         ../mini/debug-debugger.c to threads.c.  We now iterate directly
19483         over the `threads' hash, keep track of exiting threads and also
19484         use proper locking.
19485
19486         We can now debug XSP and XSP based applications with the debugger.
19487
19488         * object-internals.h (MonoThread): Added `gpointer end_stack'.
19489
19490         * threads.h
19491         (MonoThreadCallbacks): Removed; this was only used by the debugger.
19492         (mono_install_thread_callbacks): Likewise.      
19493
19494         * threads.c (mono_thread_callbacks): Removed.
19495         (debugger_thread_created, debugger_thread_exited): New static functions.
19496         (start_wrapper): Call debugger_thread_created().
19497         (thread_cleanup): Call debugger_thread_exited().
19498         (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19499         (mono_debugger_init_threads): New public function.
19500         (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19501         iterate directly over the `threads' hash and also use proper locking.
19502
19503         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19504
19505         * mono-debug-debugger.h
19506         (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19507
19508 2006-04-10  Zoltan Varga  <vargaz@gmail.com>
19509
19510         * reflection.c (encode_cattr_value): Fix handling of parameter type=object, 
19511         argument type=array. Fixes #78057.
19512
19513 2006-04-10  Atsushi Enomoto  <atsushi@ximian.com>
19514
19515         * culture-info-table.h : regenerated. Fixed bug #69652.
19516
19517 2006-04-07  Zoltan Varga  <vargaz@gmail.com>
19518
19519         * loader.c metadata.c: Reapply a variant r59116.
19520         
19521         * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19522
19523         * class.c (mono_class_setup_interface_offsets): New internal function.
19524
19525         * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19526         interfaces too. Fixes #77398.
19527
19528         * reflection.c (encode_cattr_value): Add support for 
19529         parameter type=object, argument type=array.
19530         (load_cattr_value): Ditto. Fixes #77916.
19531
19532         * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19533         (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19534
19535         * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19536         a byval char array and CharSet is Ansi.
19537
19538         * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19539
19540 2006-04-06  Zoltan Varga  <vargaz@gmail.com>
19541
19542         * metadata.c: Add some locking comments.
19543         
19544         * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19545         mempool.
19546         (mono_metadata_free_method_signature): Don't free the signature itself.
19547
19548         * loader.c (mono_free_method): Don't free the signature in non-dynamic methods. 
19549
19550         * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19551         reference the same MonoImage.
19552         (mono_assembly_load_from_full): Add an assert.
19553
19554 2006-04-05  Zoltan Varga  <vargaz@gmail.com>
19555
19556         * image.c (mono_image_close): Don't put the image we are about to free into the
19557         loaded_images_guid_hash.
19558
19559         * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19560         to reduce code duplication.
19561
19562         * marshal.c: Register the native functions called by this module as icalls, to
19563         somewhat centralize the creation of MonoMethodSignature's.
19564
19565         * loader.c (mono_method_signature): Add a cache for method signatures.
19566
19567         * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19568         the parameter attributes of a method.
19569         (mono_metadata_parse_method_signature_full): Refactored the computation of
19570         parameter attributes into a separate function. Also avoid one allocation in
19571         most cases.
19572
19573         * assembly.c (mono_assembly_close): Ditto.
19574
19575         * image.c (mono_image_close): Log trace messages with INFO level.
19576
19577         * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19578
19579         * image.c reflection.c: Correct reference counting of image modules.
19580         
19581         * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19582         of this function from the image mempool.
19583         
19584         (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19585         to allow more cached types to be used.
19586
19587         * mono-debug.c (mono_debug_add_method): Appled patch from
19588         David S. Miller  <davem@sunset.davemloft.net>: Access 
19589         minfo->lexical_blocks[] entry elements using read32().
19590
19591 2006-04-04  Zoltan Varga  <vargaz@gmail.com>
19592
19593         * loader.c (mono_free_method): No longer free the method header for non-dynamic
19594         methods as it is allocated from the mempool.
19595
19596         * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19597         image mempool.
19598
19599         * metadata-internals.h: Add comments describing the reference counting scheme
19600         used for MonoImage and MonoAssembly.
19601
19602         * image.c assembly.c reflection.c: Rework reference counting of images and 
19603         assemblies so they are freed when the runtime is shut down. Free some 
19604         additional memory structures when an image is unloaded.
19605         
19606 2006-04-03  Zoltan Varga  <vargaz@gmail.com>
19607
19608         * class.c loader.c reflection.c: Allocate more data structures in
19609         the image mempool.
19610
19611 2006-03-31  Miguel de Icaza  <miguel@novell.com>
19612
19613         * icall.c
19614         (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19615         build on pre glib 2.4 systems.
19616
19617 2006-03-31  Zoltan Varga  <vargaz@gmail.com>
19618
19619         * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19620
19621         * icall.c: Fix some warnings.
19622
19623 2006-03-29  Atsushi Enomoto  <atsushi@ximian.com>
19624
19625         * culture-info-table.h : regenerated.
19626
19627 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19628
19629         * threads.c, object-internals.h, verify.c: changed the culture caching
19630         code to use a normal MonoArray for storage so the GC can keep track of
19631         them easily. Fixed bits of the cache logic, too and simplified the
19632         code.
19633
19634 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19635
19636         * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19637         thread for non-Boehm GCs.
19638
19639 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19640
19641         * domain.c, object.c, domain-internals.h: reduce the amount of memory
19642         needed to keep track of the data for static fields.
19643
19644 2006-03-29  Raja R Harinath  <rharinath@novell.com>
19645
19646         Fix #75172
19647         * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19648         for interface classes.  Use 'num_methods' instead.
19649         (ves_icall_Type_GetPropertiesByName): Likewise.  Setup vtable
19650         before using '->vtable_size' field.
19651
19652 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19653
19654         * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19655         doesn't contain managed pointers, so use a normal hashtable.
19656
19657 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19658
19659         * reflection.c, class-internals.h, domain.c: fixed handling of types
19660         used as values for objects in custom attributes (bug #77915):
19661
19662 2006-03-24  Martin Baulig  <martin@ximian.com>
19663
19664         * class.c (mono_class_setup_fields): Added support for generic
19665         instances; fixes #77580.
19666
19667 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19668
19669         * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19670
19671 2006-03-24  Dick Porter  <dick@ximian.com>
19672
19673         * file-io.c (get_file_attributes): More stat macro breakage.
19674         Fixes bug 77759.
19675
19676 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19677
19678         * profiler.c: added the file=filename option in the default profiler
19679         to output the profile data to filename.
19680
19681 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19682
19683         * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19684         bug #77877.
19685
19686 2006-03-22  Martin Baulig  <martin@ximian.com>
19687
19688         * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19689         allocated `MonoClassField *' in `fb->handle'.
19690
19691 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19692
19693         * class.c, image.c, metadata-internals.h: implemented new mechanism to
19694         allocate interface ID to save memory and allow better ID reuse on
19695         appdomain unload. setup_generic_vtable () removal from Martin.
19696
19697 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19698
19699         * object.h, appdomain.c, domain.c, exception.c, icall.c,
19700         locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19701         threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19702         write barriers for reference stores with managed objects accessed with
19703         C structures in the runtime and in embedding programs.
19704
19705 2006-03-20  Raja R Harinath  <rharinath@novell.com>
19706
19707         * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19708         'interface_id' and 'max_interface_id' fields of MonoClasses
19709         representing open generic types.
19710
19711 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19712
19713         * object.h, object.c, icall.c: added functions to deal with
19714         storing valuetypes that contain references in managed objects.
19715         * reflection.c, string-icalls.c, threads.c, marshal.c: small
19716         fixes and comments around uses of mono_array_addr ().
19717
19718 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19719
19720         * object.h, icall.c, monitor.c: object.GetHashCode ()
19721         implementation that supports the moving garbage collector.
19722
19723 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19724
19725         * icall.c, threads-types.h, threads.c: implemented finalizer for
19726         LocalDataStoreSlot.
19727
19728 2006-03-15  Zoltan Varga  <vargaz@gmail.com>
19729
19730         * metadata.c (mono_type_size): Add a fixme.
19731         (mono_type_stack_size): Ditto.
19732
19733         * object-internals.h (MonoReflectionAssemblyBuilder): Added 
19734         'type_forwarders' field.
19735
19736         * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19737         attribute from net 2.0.
19738
19739         * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19740         from class.c.
19741
19742         * class.c (mono_class_setup_fields): Fix a warning.
19743         
19744         * class.c (mono_class_from_name): Add support for assemblyref entries
19745         in the EXPORTEDTYPE table.
19746
19747         * reflection.c: Add support for handling type forwarders under net 2.0.
19748
19749         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.       
19750         
19751 2006-03-14  Zoltan Varga  <vargaz@gmail.com>
19752
19753         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19754         overwriting entries in ModuleBuild->types, also clean up the code
19755         a little. Fixes #77774.
19756
19757 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19758
19759         * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19760         load friend assembly info when present.
19761
19762 2006-03-14  Raja R Harinath  <rharinath@novell.com>
19763
19764         Fix crasher on gtest-158.cs.
19765         * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19766         the return value if the MonoClass we want is yet in an
19767         inconsistent state.
19768         * class.c (mono_class_create_from_typedef): Add an comment
19769         explaining an order dependency between mono_class_setup_parent and
19770         mono_class_setup_mono_type.
19771
19772 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19773
19774         * class.c: documentation updates and events bug fix.
19775
19776 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19777
19778         * class.c: some cleanup, locking fixes.
19779
19780 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19781
19782         * class.c: fix the generics code to setup nested
19783         type info to the instantiated type (bug #77770).
19784
19785 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19786
19787         * marshal.c: fixed a few type correctness issues.
19788
19789 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19790
19791         * loader.c: the Set/Get/Addrtess array methods should be public.
19792
19793 2006-03-11  Zoltan Varga  <vargaz@gmail.com>
19794
19795         * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19796         
19797         * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19798         info->wrapper.
19799
19800 2006-03-10  Zoltan Varga  <vargaz@gmail.com>
19801
19802         * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19803
19804         * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19805
19806         * mempool.c (mono_mempool_alloc): Speed this up a bit.
19807         (mono_mempool_alloc0): Ditto.
19808
19809 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19810
19811         * socket-io.c:
19812         (create_object_from_sockaddr): it was allocating 4 extra bytes
19813         for the AF_UNIX data. Fixes bug #77747.
19814
19815 2006-03-09  Zoltan Varga  <vargaz@gmail.com>
19816
19817         * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19818
19819 2006-03-09  Dick Porter  <dick@ximian.com>
19820
19821         * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19822         Fixes bug 76966 again.
19823
19824 2006-03-07  Peter Dennis Bartok  <pbartok@novell.com>
19825
19826         * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19827         names from r57532
19828         * appdomain.c: Bumped corlib version to 48 (due to r57532)
19829
19830 2006-03-07  Martin Baulig  <martin@ximian.com>
19831
19832         * object.c
19833         (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19834
19835 2006-03-07  Martin Baulig  <martin@ximian.com>
19836
19837         * class.c
19838         (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19839         regression introduced in r56970; see gtest-252.cs.
19840
19841         * loader.c (mono_get_method_constrained): Correctly handle generic
19842         methods; see gtest-253.cs.
19843
19844 2006-03-04  Zoltan Varga  <vargaz@gmail.com>
19845
19846         * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19847
19848 2006-03-04  Martin Baulig  <martin@ximian.com>
19849
19850         * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19851         compute the parent type at runtime, just like we're already doing
19852         it for interfaces.
19853
19854         * reflection.c
19855         (mono_reflection_bind_generic_parameters): Don't compute the
19856         parent type anymore.
19857
19858         * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19859
19860 2006-03-04  Martin Baulig  <martin@ximian.com>
19861
19862         * mono-debug-debugger.h
19863         (mono_debugger_create_notification_function): Allocate memory at
19864         runtime and return a pointer to it.
19865
19866 2006-03-03  Zoltan Varga  <vargaz@gmail.com>
19867
19868         * assembly.c: Fix windows build.
19869         
19870         * assembly.c: Fix build.
19871
19872         * assembly.c: Move the contents of os/{unix,win32}/util.c to this file. 
19873
19874         * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19875         
19876 2006-03-03  Dick Porter  <dick@ximian.com>
19877
19878         * process.c
19879         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19880         Check parameters before dereferencing them.  Fixes Aaron's part of
19881         bug 77393.
19882
19883 2006-03-03  Raja R Harinath  <rharinath@novell.com>
19884
19885         Fix performance regression.
19886         * loader.c (find_method_in_class): Add 'from_class' argument.
19887         Rename 'klass' argument to 'in_class'.  The signature is compared
19888         against the method in 'in_class', and the corresponding method is
19889         returned from 'from_class'.
19890         (find_method): Walk both 'in_class' and 'from_class' in parallel.
19891         (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19892         type definition and generic instantiation in parallel.
19893         (mono_get_method_constrained): Update to changes.
19894
19895 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19896
19897         * threads.c: make sure the domain is correct, too when doing
19898         mono_thread_attach ().
19899
19900 2006-03-01  Zoltan Varga  <vargaz@gmail.com>
19901
19902         * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19903         windows. Fixes #77683.
19904
19905 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19906
19907         * object.h, *: introduced specific way to set elements of an array
19908         of references to be used as write barrier. Still need to audit the
19909         uses of mono_array_addr.
19910
19911 2006-03-01  Miguel de Icaza  <miguel@novell.com>
19912
19913         * object-internals.h: New field to cache the assmebly name, patch
19914         from Tambet Ingo (tambet@ximian.com)
19915
19916 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19917
19918         * decimal.h, class-internals.h, metadata-internals.h,
19919         file-io.h: mark a few function declarations as internal, to
19920         reduce the number of PLT entries.
19921
19922 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19923
19924         * file-io.c: fix typo in warning message.
19925
19926 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19927
19928         * loader.c: on unix, lookup the "*A" version of a function
19929         if charset is auto as a second option before failing.
19930
19931 2006-02-28  Raja R Harinath  <rharinath@novell.com>
19932
19933         * class.h (mono_class_inflate_generic_method): Revert to two
19934         argument version.
19935         * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19936         (mono_class_inflate_generic_method_full): Add.
19937         * class.c (mono_class_inflate_generic_method_full): Rename from
19938         'mono_class_inflate_generic_method'.  Don't set 'inflated' field.
19939         (mono_class_inflate_generic_method): New.  Wrapper around ..._full.
19940         * loader.c, reflection.c: Update to changes.
19941
19942 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19943
19944         * icall.c: const fixes and small improvements.
19945
19946 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19947
19948         * threadpool.c: for asynchronous connect(), enable the same workaround
19949         for BSD 6 as for the Mac. Fixes bug #77637.
19950
19951 2006-02-24  Zoltan Varga  <vargaz@gmail.com>
19952
19953         * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19954         formatted classes. Fixes #77524.
19955
19956 2006-02-24  Raja R Harinath  <rharinath@novell.com>
19957
19958         * class.c (inflate_generic_type): Add a couple more
19959         micro-optimizations.
19960         (inflate_generic_context): Don't use the 'gmethod' from
19961         'inflate_with'.
19962         (mono_class_inflate_generic_method): If the method has generic
19963         parameters, but the passed-in context doesn't have a 'gmethod',
19964         create one.  Use the possibly simplified generic instantiation
19965         from the declaring class instead of the one passed in.
19966
19967 2006-02-24  Raja R Harinath  <harinath@gmail.com>
19968
19969         Make generic method signature and method header handling lazy.
19970         * class.c (mono_class_inflate_generic_signature): Move to loader.c.
19971         (inflate_generic_header): Likewise.
19972         (mono_class_inflate_generic_method): Rewrite.  Add a 'klass_hint'
19973         parameter to avoid inflating types.
19974         (mono_get_inflated_method): Empty out.
19975         * class.h (mono_class_inflate_generic_method): Update to changes.
19976         * loader.c (mono_get_method_from_token): Don't parse signature for
19977         generic methods, nor methods of generic classes.
19978         (mono_method_signature): Rename from 'mono_method_signature'.
19979         Inflate signature on demand.
19980         (mono_method_get_header): Inflate method header on demand.
19981         * reflection.c: Update to changes.
19982
19983 2006-02-23  Raja R Harinath  <rharinath@novell.com>
19984
19985         * metadata.c (mono_metadata_inflate_generic_inst): If the
19986         instantiation is closed, don't bother expanding it in the new
19987         context.
19988         * class.c (inflate_generic_class): If the generic instantiation
19989         doesn't change after inflation, return the argument itself.
19990         (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
19991         Add bounds checks.
19992         (inflate_generic_context): If neither the generic class nor the
19993         generic method instantiations change, return the original context.
19994         * reflection.c (mono_method_get_object): Do
19995         'mono_get_inflated_method' before accessing the ->klass field.
19996         (inflate_mono_method): Don't create a MonoGenericMethod unless
19997         necessary.
19998         (inflate_method): Don't pass a constructed type as the declaring
19999         type of a methodbuilder.
20000
20001 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20002
20003         * object.c: fix memory overwrite.
20004
20005 2006-02-22  Dick Porter  <dick@ximian.com>
20006
20007         * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20008         it doesn't work any more.
20009         (mono_threads_request_thread_dump): Fix unused variable warnings.
20010
20011 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20012
20013         * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20014         mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20015         the public header file.
20016
20017 2006-02-21  Zoltan Varga  <vargaz@gmail.com>
20018
20019         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20020
20021 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20022
20023         * class-internals.h, object.c: reduce the size of MonoVTable
20024         and store the interface_offsets array at negative offsets.
20025
20026 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20027
20028         * metadata.c: tweak table descriptors data structures to reduce
20029         size and runtime relocations.
20030
20031 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20032
20033         * marshal.c: fix some types and opcodes to be type-safe
20034         in marshaling wrappers.
20035
20036 2006-02-21  Ankit Jain  <jankit@novell.com>
20037
20038         * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20039
20040 2006-02-21  Raja R Harinath  <rharinath@novell.com>
20041
20042         * metadata.c (get_constraints): Relax debugging checks for monodis.
20043
20044 2006-02-21  Ankit Jain  <jankit@novell.com>
20045
20046         * metadata.c (mono_metadata_load_generic_params): Move the code
20047         checking for ambiguous generic params from here to mono/dis/get.c
20048         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20049
20050 2006-02-21  Raja R Harinath  <harinath@gmail.com>
20051
20052         Fix assertion triggered when compiling nemerle.
20053         * class.c (mono_get_shared_generic_inst): Rename from
20054         get_shared_inst and make non-static.
20055         * loader.c (mono_get_shared_generic_method): New.  Used to create
20056         the MonoGenericContext-equivalent of a MonoGenericContainer.
20057         (mono_get_method_from_token): Initialize the 'context' field of
20058         the created MonoGenericContainer.
20059         * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20060         * metadata.c (get_constraints): Add sanity check.
20061         * class-internals.h: Add new internal methods.
20062
20063         * reflection.c (verify_safe_for_managed_space): New sanity check.
20064         Currently checks that owner-less generic parameters aren't allowed
20065         in managed space.
20066         (mono_type_get_object): Use it.
20067         * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20068         that are now in mono_type_get_object.
20069         (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20070
20071 2006-02-19  Raja R Harinath  <harinath@gmail.com>
20072
20073         * metadata.c (mono_type_create_from_typespec): Rename from
20074         mono_type_create_from_typespec_full.  Remove MonoGenericContainer*
20075         argument and caching of types in the generic container.
20076         (unwrap_arrays, find_generic_param): Remove.
20077         * metadata-internals.h: Update.
20078         * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20079
20080 2006-02-18  Zoltan Varga  <vargaz@gmail.com>
20081
20082         * class.c (mono_class_get_exception_for_failure): Fix a warning.
20083
20084         * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20085         return values. Fixes #77581.
20086
20087         * class.c (mono_fnptr_class_get): Switch name and name_space.
20088
20089         * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20090         classes and add support for [In, Out] attributes.
20091         (mono_marshal_free_asany): Ditto. Fixes #77524.
20092
20093 2006-02-18  Raja R Harinath  <harinath@gmail.com>
20094
20095         * class.c (mono_class_from_generic_parameter): Make more robust to
20096         incomplete MonoGenericContainers from monodis.
20097
20098 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20099
20100         * class-internals.h: added some more exception types.
20101         * class.c, metadata.c: added a few checks to handle missing
20102         types.
20103
20104 2006-02-17  Raja R Harinath  <rharinath@novell.com>
20105
20106         Use owner-less generic-params some more.
20107         * class.c (my_mono_class_from_generic_parameter): Remove.
20108         (mono_class_from_generic_parameter): Handle null image,
20109         param->name and param->owner.
20110         (mono_class_from_mono_type): Update.
20111         (mono_class_create_from_typespec): Remove 'container' parameter.
20112         If that parameter is non-null, the result is always inflated by
20113         'mono_class_get_full' anyway.
20114         (mono_class_get): Rename from _mono_class_get.  Remove 'container'
20115         parameter.
20116         (mono_class_get_full): Update.
20117
20118         * class.c (inflate_generic_type) [GENERICINST]: If the generic
20119         instance is not open, don't bother inflating.
20120         (mono_class_setup_fields): Hoist some loop-invariants.  Don't
20121         parse metadata for inflated classes.
20122         (_mono_class_get): Change GenericContext* parameter to
20123         GenericContainer*.
20124         (mono_class_create_from_typespec): Likewise.  Simplify, and
20125         implement trivially.  All the cases are handled in
20126         mono_class_from_mono_type.  Don't inflate returned class.
20127         (mono_class_get_full): Delegate GENERICINST optimization to
20128         inflate_generic_type.
20129         (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20130
20131 2006-02-16  Dick Porter  <dick@ximian.com>
20132
20133         * socket-io.c (create_object_from_sockaddr): Fix typo.
20134         (create_sockaddr_from_object): Check array lengths before
20135         potentially accessing items off the end.
20136         (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20137         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20138         (ves_icall_System_Net_Sockets_Socket_Send_internal)
20139         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20140         length checks to avoid wraparound overflows.
20141         (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20142         contents of the array of sockets
20143         (hostent_to_IPHostEntry2)
20144         (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20145         Check return value of inet_ntop ().
20146         (addrinfo_to_IPHostEntry): Fix typo
20147
20148 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20149
20150         Type metadata parsing doesn't use generic-instantiation information.
20151         * metadata.c (mono_metadata_parse_array_full): Change
20152         MonoGenericContext* parameter to MonoGenericContainer*.
20153         (mono_metadata_parse_type_full): Likewise.
20154         (mono_type_create_from_typespec_full): Likewise.
20155         (mono_metadata_parse_mh_full): Likewise.
20156         (mono_metadata_parse_generic_inst): Likewise.
20157         (do_mono_metadata_parse_generic_class): Likewise.
20158         (do_mono_metadata_parse_type): Likewise.
20159         * metadata-internals.h: Update to changes.
20160         * class.c (mono_class_find_enum_basetype): Likewise.
20161         (mono_class_setup_fields): Likewise.
20162         (mono_class_create_from_typespec): Likewise.
20163         * loader.c (method_from_methodspec): Likewise.
20164         (mono_get_method_from_token): Likewise.
20165         (mono_method_get_header): Likewise.
20166
20167 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20168
20169         * marshal.c: handle additional GENERICINST case (patch from
20170         Thong Nguyen <tum@veridicus.com>).
20171         Fix a few cases where LDIND_I/STIND_I was used for references.
20172
20173 2006-02-16  Raja R Harinath  <rharinath@novell.com>
20174
20175         * reflection.c (mono_reflection_get_token): Remove unused variable.
20176
20177 2006-02-16  Martin Baulig  <martin@ximian.com>
20178
20179         * reflection.c (mono_reflection_get_token): Add support for fields
20180         in instantiated generic types.
20181
20182         * icall.c
20183         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20184
20185 2006-02-15  Martin Baulig  <martin@ximian.com>
20186
20187         * icall.c
20188         (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20189         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20190         (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20191         (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20192
20193 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20194
20195         * class.c, metadata.c, metadata.h, object.c, icall.c,
20196         marshal.c: changed mono_type_get_underlying_type () to do
20197         the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20198         Fixed handling of instantiated generic valuetypes (bug #75479).
20199
20200 2006-02-15  Raja R Harinath  <rharinath@novell.com>
20201
20202         * metadata.c (mono_metadata_decode_signed_value): Simplify.
20203         Delegate to mono_metadata_decode_value, and work on the returned value.
20204
20205         * icall.c (ves_icall_MonoType_GetGenericArguments):
20206         Add consistency check here too.
20207         
20208 2006-02-15  Ankit Jain  <jankit@novell.com>
20209
20210         * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20211         char/short etc.
20212
20213 2006-02-15  Ankit Jain  <jankit@novell.com>
20214
20215         * metadata.c (mono_metadata_decode_signed_value): New function to decode
20216         signed values, used only for representing lower bounds of arrays.
20217         (mono_metadata_parse_array_full): Use new
20218         mono_metadata_decode_signed_value to decode lower bounds.
20219
20220 2006-02-14  Martin Baulig  <martin@ximian.com>
20221
20222         * reflection.c
20223         (mono_reflection_get_token): Support "MonoGenericMethod" and
20224         "MonoGenericCMethod" and allow generic instances / methods.
20225
20226 2006-02-11  Zoltan Varga  <vargaz@gmail.com>
20227
20228         * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20229         to obtain the terminal size using an ioctl.
20230
20231         * object.c (mono_nullable_init): Revert this as nullable reference
20232         types are not valid.
20233         (mono_nullable_box): Ditto.
20234
20235 2006-02-09  Dick Porter  <dick@ximian.com>
20236
20237         * threads.c (mono_thread_detach): Drop a reference to the thread
20238         we're detaching.
20239
20240 2006-02-09  Zoltan Varga  <vargaz@gmail.com>
20241
20242         * object.c (mono_nullable_init): Handle nullable reference types.
20243         (mono_nullable_box): Ditto. Fixes #77446.
20244
20245 2006-02-07  Martin Baulig  <martin@ximian.com>
20246
20247         * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20248
20249 2006-02-07  Ankit Jain  <jankit@novell.com>
20250
20251         * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20252         * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20253         (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20254         (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20255         (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20256         (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20257
20258 2006-02-02  Zoltan Varga  <vargaz@gmail.com>
20259
20260         * class.c (mono_class_create_generic): Set type_token as well.
20261
20262         * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20263         compatible with MS.
20264
20265 2006-02-02  Martin Baulig  <martin@ximian.com>
20266
20267         * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20268         has never been used so far.
20269
20270 2006-02-02  Martin Baulig  <martin@ximian.com>
20271
20272         * mono-debug-debugger.h: Changed comment at the top of this file;
20273         the header is not installed, but it's safe to #include it from
20274         within the JIT.
20275
20276         * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20277         * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20278
20279 2006-02-02  Martin Baulig  <martin@ximian.com>
20280
20281         * mono-debug.h
20282         (MonoSymbolTable): Removed the `metadata_info' field.
20283
20284         * mono-debug.c
20285         (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20286
20287         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20288         (mono_debugger_add_builtin_types): Removed.
20289         (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20290         (mono_debugger_create_notification_function): We now operate on a
20291         pre-allocated area; take a `gpointer' and return `void'.
20292
20293         * mono-debug-debugger.c
20294         (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20295         (mono_debugger_add_builtin_types): Removed.
20296
20297 2006-02-02  Martin Baulig  <martin@ximian.com>
20298
20299         * threads.c (mono_debugger_create_all_threads): New public method.
20300
20301 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20302
20303         * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20304         breaks on several platforms.
20305
20306 2006-02-01  Sebastien Pouliot  <sebastien@ximian.com>
20307
20308         * assembly.c: the VS.NET build doesn't supply default values for
20309         MONO_ASSEMBLIES and MONO_CFG_DIR.
20310
20311 2006-02-01  Zoltan Varga  <vargaz@gmail.com>
20312
20313         * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20314         helper function.
20315
20316         * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20317
20318         * loader.c (method_from_memberref): Fix a warning.
20319
20320         * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20321
20322         * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20323         with explicit layout. Fixes #77433.
20324
20325 2006-01-31  Zoltan Varga  <vargaz@gmail.com>
20326
20327         * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure 
20328         max_interface_id is initialized before using it. Fixes #77398.
20329         (ves_icall_Type_GetInterfaces): Ditto.
20330
20331 2006-01-30  Raja R Harinath  <rharinath@novell.com>
20332
20333         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20334         allocate memory for parameter attributes when parsing memberref
20335         signatures.
20336         * loader.c (mono_loader_set_error_method_load): Don't warn.
20337         (method_from_memberref): Ensure MissingMethodException gets thrown
20338         if method is not found.  Make warning more informative.
20339
20340 2006-01-29  Raja R Harinath  <harinath@gmail.com>
20341
20342         Fix #77397
20343         * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20344         return true if is byref.
20345         (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20346         (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20347         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20348
20349 2006-01-27  Raja R Harinath  <rharinath@novell.com>
20350
20351         Fix tests/find-method.2.il
20352         * loader.c (find_method, find_method_in_class): Remove is_inflated
20353         argument.  Revert 2006-01-18 change.
20354         (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20355         is generic, search for method in its generic definition.
20356         * class.c (mono_class_setup_vtable_general): Print generic
20357         arguments of generic types in debugging printf.
20358
20359 2006-01-26  Zoltan Varga  <vargaz@gmail.com>
20360
20361         * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20362
20363         * threads.c (mono_threads_request_thread_dump): New helper function.
20364
20365 2006-01-25  Raja R Harinath  <rharinath@novell.com>
20366
20367         * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20368
20369 2006-01-25  Ankit Jain  <jankit@novell.com>
20370
20371         * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20372         move definition to ..
20373         * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20374         
20375 2006-01-25  Ankit Jain  <jankit@novell.com>
20376             Raja R Harinath  <rharinath@novell.com>
20377
20378         * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20379         * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20380         as necessary.
20381
20382 2006-01-25  Martin Baulig  <martin@ximian.com>
20383
20384         * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20385         `MonoDebuggerThread' into debug-debugger.c.
20386
20387 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20388
20389         * profiler.c: fix printing of data.
20390
20391 2006-01-24  Atsushi Enomoto  <atsushi@ximian.com>
20392
20393         * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20394           invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20395
20396 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20397
20398         * object.c: fix deadlock related to string interning.
20399
20400 2006-01-23  Martin Baulig  <martin@ximian.com>
20401
20402         * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20403
20404         * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20405
20406 2006-01-23  Martin Baulig  <martin@ximian.com>
20407
20408         * mono-debug.h: Moved the prototypes of some functions which are
20409         used by the JIT here from mono-debug-debugger.h.
20410
20411 2006-01-21  Martin Baulig  <martin@ximian.com>
20412
20413         * Makefile.am: Don't install mono-debug-debugger.h.
20414
20415 2006-01-21  Martin Baulig  <martin@ximian.com>
20416
20417         * mono-debug-debugger.h: Enforce the private status of this header
20418         file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20419         Moved some stuff from mono-debugger-jit-wrapper.h here.
20420
20421 2006-01-20  Raja R Harinath  <rharinath@novell.com>
20422
20423         * class.c (mono_class_from_typeref): Add a sanity test to help
20424         catch lack of assembly load/search hooks.
20425
20426 2006-01-19  Zoltan Varga  <vargaz@gmail.com>
20427
20428         * marshal.c (emit_struct_conv): Relax the fields with same offset
20429         check even more. Fixes #77230.
20430
20431 2006-01-18  Martin Baulig  <martin@ximian.com>
20432
20433         * loader.c (find_method_in_class): Added `gboolean is_inflated'
20434         argument; if false, we compare the uninstantiated signatures.
20435         (method_from_memberref): Compare the uninstantiated signatures;
20436         fixes #76417.
20437
20438 2006-01-18  Robert Jordan  <robertj@gmx.net>
20439
20440         * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20441         Clear the weak link. Fixes bug #77170.
20442
20443         * gc.c (mono_gchandle_free):
20444         Reflect *-gc.c changes (tiny optimization).
20445
20446 2006-01-18  Zoltan Varga  <vargaz@gmail.com>
20447
20448         * metadata.c (mono_metadata_signature_dup): Applied patch from
20449         Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20450         Fixes #77288.
20451
20452 2006-01-17  Zoltan Varga  <vargaz@gmail.com>
20453
20454         * marshal.c (emit_struct_conv): Allow fields with the same offset when
20455         marshalling from native to managed code. Fixes #77230.
20456
20457 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20458
20459         * threadpool.c: fix problem (Mac only) when more than one asynchronous
20460         connect. Fixes bug #77020.
20461
20462 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20463
20464         * class.c: fixed id assignement for nested interfaces (bug #77275).
20465         Added also better info for --print-vtable debugging.
20466
20467 2006-01-12  Martin Baulig  <martin@ximian.com>
20468
20469         * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20470         interfaces on-the-fly; fixes #76625.
20471
20472         * class-internals.h
20473         (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20474         don't need that anymore.
20475
20476 2006-01-12  Miguel de Icaza  <miguel@novell.com>
20477
20478         * socket-io.c
20479         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20480         To avoid initing the nested_classes when not needed I turned the
20481         PeerCredData as a toplevel internal class, as it has to be shared
20482         anyways. 
20483
20484         Fixes the CASA issue.
20485
20486 2006-01-11  Ben Maurer  <bmaurer@andrew.cmu.edu>
20487
20488         * domain.c: Accessors for MonoJitInfo
20489
20490         * profiler-private.h: Add jitinfo to the end jit hook
20491
20492         * profiler.[ch]: Define new hooks, called after jitting which give
20493         the MonoJitInfo that was compiled
20494
20495 2006-01-10  Martin Baulig  <martin@ximian.com>
20496
20497         * class.c (mono_class_setup_events): Add support for generic
20498         classes; fixes #76440.
20499
20500 2006-01-06  Raja R Harinath  <rharinath@novell.com>
20501
20502         Fix #77160.
20503         * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20504         on passed-in method.
20505
20506 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20507
20508         * object.c (mono_runtime_invoke_array): Add Nullable support.
20509
20510         * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20511
20512 2006-01-03  Sebastien Pouliot  <sebastien@ximian.com>
20513
20514         * file-io.c: Don't consider sockets as directory and avoid an endless
20515         loop. Fix bug #76966.
20516
20517 2006-01-03  Zoltan Varga  <vargaz@gmail.com>
20518
20519         * object.c (mono_nullable_init): New helper function.
20520         (mono_nullable_box): Ditto.
20521
20522         * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20523
20524         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20525
20526         * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20527         
20528 2006-01-02  Zoltan Varga  <vargaz@gmail.com>
20529
20530         * class.c (mono_class_is_assignable_from): Make T assignable to 
20531         Nullable<T>.
20532
20533 2005-12-23  Sebastien Pouliot  <sebastien@ximian.com>
20534
20535         * appdomain.c: Bump corlib version to 46.
20536         * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20537         serialization purpose) and changed ves_icall_System_Reflection_
20538         Assembly_get_code_base signature to accept a boolean (to escape, or 
20539         not, the assembly code base).
20540
20541 2005-12-23  Dick Porter  <dick@ximian.com>
20542
20543         * icall.c: 
20544         * threads-types.h: 
20545         * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20546         CreateEvent icall now returns "created" boolean parameter.
20547
20548 2005-12-22  Zoltan Varga  <vargaz@gmail.com>
20549
20550         * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20551         #76967.
20552
20553         * reflection.c (mono_custom_attrs_construct_by_type): Handle the case 
20554         when attr_klass is an interface. Fixes #77045.
20555
20556 2005-12-20  Zoltan Varga  <vargaz@gmail.com>
20557
20558         * marshal.c (emit_struct_conv): Fix previous patch.
20559         
20560         * marshal.c (emit_struct_conv): Add a check for fields with the same
20561         offset.
20562
20563 2005-12-20  Raja R Harinath  <rharinath@novell.com>
20564
20565         Fix regression in Mono.C5.
20566         * class.c (mono_class_create_generic): If 'klass' is an interface
20567         set up the interface offsets.
20568         (mono_class_is_assignable_from): Don't throw away generic arguments.
20569
20570 2005-12-19  Raja R Harinath  <rharinath@novell.com>
20571
20572         * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20573         type parameters.
20574
20575 2005-12-15  Raja R Harinath  <rharinath@novell.com>
20576
20577         * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20578         dead store.
20579         (do_mono_metadata_parse_generic_class): Don't pass the current
20580         generic context when parsing the type being instantiated: it
20581         cannot use it, anyway.
20582
20583         * loader.c (method_from_memberref): Don't inflate a signature if
20584         it doesn't contain any type parameters.
20585
20586 2005-12-15  Zoltan Varga  <vargaz@gmail.com>
20587
20588         * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20589
20590 2005-12-14  Martin Baulig  <martin@ximian.com>
20591
20592         * class.c
20593         (mono_type_get_name_recurse): Don't return null for type
20594         parameters and open generic classes.
20595         (mono_class_setup_methods): Don't exclude generic instances.
20596         (mono_get_unique_iid): Use different IDs for different
20597         instantiations of the same generic type.
20598         (mono_class_setup_vtable): Only use setup_generic_vtable() for
20599         open generic instances; create a normal vtable for closed generic
20600         instances.
20601         (mono_class_setup_vtable_general): We're now also called for
20602         closed generic instances.
20603
20604         * reflection.c
20605         (mono_reflection_bind_generic_parameters): Correctly use
20606         mono_metadata_lookup_generic_inst() everywhere.
20607
20608 2005-12-14  Zoltan Varga  <vargaz@gmail.com>
20609
20610         * object.c (mono_class_create_runtime_vtable): Call 
20611         mono_class_setup_vtable ().
20612
20613         * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20614         function.
20615         (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20616         #76959.
20617
20618         * loader.c (mono_loader_set_error_type_load): Print the type load
20619         warnings to the console so they are more visible to the user.
20620         (mono_loader_set_error_method_load): Ditto.
20621
20622         * reflection.c (ensure_runtime_vtable): Revert the last change as it
20623         is still broken.
20624         
20625         * reflection.c (ensure_runtime_vtable): Fix build.
20626
20627         * reflection.c (ensure_runtime_vtable): Disable an optimization which
20628         doesn't work in all cases.
20629
20630 2005-12-13  Zoltan Varga  <vargaz@gmail.com>
20631
20632         * object.c (mono_array_new_full): Treat a single dimensional array
20633         with 0 lower bounds as an szarray. Fixes #76973.
20634
20635         * reflection.c (custom_attr_visible): Really fix this.
20636
20637 2005-12-12  Zoltan Varga  <vargaz@gmail.com>
20638
20639         * reflection.c (custom_attr_visible): Allow nested public attributes
20640         as well.
20641
20642         * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20643         interface check.
20644
20645 2005-12-12  Raja R Harinath  <harinath@gmail.com>
20646
20647         * class.c (set_generic_param_owner): Delete.
20648         (mono_class_create_from_typedef): Don't set ->owner field of
20649         generic parameters to "param containers" of enclosing classes.
20650         * reflection.c (mono_reflection_initialize_generic_parameter):
20651         Likewise.
20652
20653 2005-12-11  Zoltan Varga  <vargaz@gmail.com>
20654
20655         * reflection.c (custom_attr_visible): Fix build.
20656
20657 2005-12-10  Zoltan Varga  <vargaz@gmail.com>
20658
20659         * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20660         private attributes.
20661         
20662         * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20663         handling of null parameter defaults.
20664
20665 2005-12-09  Raja R Harinath  <rharinath@novell.com>
20666
20667         * class.c (mono_class_from_generic_parameter): Don't set
20668         klass->generic_container.
20669         (my_mono_class_from_generic_parameter): Likewise.
20670
20671 2005-12-07  Zoltan Varga  <vargaz@gmail.com>
20672
20673         * reflection.c (load_public_key): Fix a warning.
20674         (method_encode_code): Fix unaligned accesses.
20675
20676 2005-12-07  Martin Baulig  <martin@ximian.com>
20677
20678         * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20679
20680         * reflection.c
20681         (write_generic_param_entry): Encode our custom attrs.
20682
20683         * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20684
20685 2005-12-07  Martin Baulig  <martin@ximian.com>
20686
20687         * reflection.c (encode_new_constraint): Removed; we don't use the
20688         `NewConstraintAttribute' anymore.
20689
20690 2005-12-06  Zoltan Varga  <vargaz@gmail.com>
20691
20692         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20693         not fire a TypeResolve event when Assembly.GetType () is called.
20694
20695 2005-12-05  Ben Maurer  <bmaurer@ximian.com>
20696
20697         Beginning of support for nullable types in the runtime. Parts of
20698         this patch are from Martin.
20699
20700         * appdomain.c (MONO_CORLIB_VERSION): Bump
20701
20702         * domain.c (mono_init_internal): get the nullable type
20703
20704         * class.c (mono_class_is_nullable): New method
20705         (mono_class_get_nullable_param): New mehod
20706         (mono_class_create_generic): In types T? set cast_class to T
20707
20708         * class-internals.h (MonoDefaults): new nullable default class
20709         (mono_class_get_nullable_param, mono_class_get_nullable_param):
20710         new methods.
20711
20712 2005-12-05  Raja R Harinath  <rharinath@novell.com>
20713
20714         * metadata.c (select_container): New.  Refactor code to select the
20715         appropriate GenericContainer given the type of generic parameter
20716         we are looking for.
20717         (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20718         not a MonoGenericContext.  Use select_container.  Update parameters.
20719         (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20720         and MONO_TYPE_MVAR.
20721         (unwrap_arrays): Remove duplicate tests.
20722         (find_generic_param): Rename from 'has_same_context'.  Now walks a
20723         generic instantiated class to find any arguments that are generic
20724         parameters.
20725         (mono_type_create_from_typespec_full): Use find_generic_param to
20726         avoid evicting some generic instantiations from the typespec
20727         cache.
20728
20729 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20730
20731         * reflection.c: fixed writing of doubles on ARM FPA.
20732
20733 2005-12-02  Robert Jordan  <robertj@gmx.net>
20734
20735         * icall.c: Fixed EventInfo.ReflectedType (#76829).
20736
20737 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20738
20739         * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20740         least on SUSE 10 they are not the same (on debian, they are just the
20741         same thing).
20742
20743 2005-12-01  Raja R Harinath  <rharinath@novell.com>
20744
20745         * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20746         DeclaringType for VARs and MVARs.
20747         * class.c (set_generic_param_owner): Fix initialization of owner
20748         fields.
20749
20750 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20751
20752         * icall.c: fixed Enum.ToObject() to correctly convert the values.
20753
20754 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20755
20756         * threadpool.c: workaround for a bug that shows up on the Mac:
20757         select()+connect() on a blocking socket is not like it should
20758         be, so we proceed to connect() in that case, wasting the I/O
20759         threadpool thread until connect succeedes. Fixes bug #75436.
20760
20761 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20762
20763         * threadpool.c: fix typo when setting file descriptor states.
20764
20765 2005-11-28  Raja R Harinath  <rharinath@novell.com>
20766
20767         * class-internals.h (MonoGenericContainer.is_signature): Remove.        
20768         * metadata.c (mono_metadata_parse_method_signature_full): Don't
20769         create a temporary signature container.
20770         (mono_metadata_parse_generic_param): Update to changes.
20771         (mono_type_create_from_typespec_full): Update to changes.
20772         * loader.c (method_from_memberref): Don't use a
20773         MonoGenericContainer while parsing a memberref signature.
20774         (method_from_methodspec): Remove dead-store of the 'container'
20775         variable.  It's overwritten before use.
20776
20777         * metadata.c (mono_type_create_from_typespec_full): Make debugging
20778         checks tighter.
20779         (mono_metadata_parse_generic_param): Likewise.
20780         * loader.c (find_method_in_class): Does not need a
20781         MonoGenericContainer.  Use 'mono_method_signature' rather than
20782         'mono_method_signature_full'.
20783         (find_method, mono_get_method_constrained, method_from_memberref):
20784         Update to changes.
20785
20786         * metadata.c (mono_type_create_from_typespec_full): Ensure that
20787         owner-less generic-parameters are never evicted from the typespec
20788         cache.
20789
20790         * loader.c (method_from_memberref): Don't use the current context
20791         when parsing signatures.
20792         (method_from_methodspec, mono_get_method_from_token): Update to changes.
20793
20794         * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20795         side-effects in g_assert.
20796         * loader.c (mono_get_method_from_token): Resolve klass earlier so
20797         that we don't potentially lose information.
20798
20799 2005-11-26  Dick Porter  <dick@ximian.com>
20800
20801         * icall.c:
20802         * threads.c: icalls to implement basic (ie, not named)
20803         System.Threading.Semaphore.
20804
20805 2005-11-24  Dick Porter  <dick@ximian.com>
20806
20807         * process.c
20808         (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20809         Use GetProcessId() if it's available.
20810
20811 2005-11-23  Zoltan Varga  <vargaz@gmail.com>
20812
20813         * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20814
20815 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20816             Ankit Jain  <jankit@novell.com>
20817
20818         * loader.c (mono_get_method_from_token): Initialize 'method' field
20819         of all generic parameters before parsing the signature.  Remove
20820         code that "fixed"-up MVAR references.
20821
20822 2005-11-23  Ankit Jain  <jankit@novell.com>
20823
20824         * metadata.c (mono_metadata_has_generic_params):
20825         (mono_metadata_load_generic_param_constraints):
20826         (mono_metadata_load_generic_params): Move duplicate code ...
20827         (mono_metadata_get_generic_param_row): ... here. Returns the
20828         first row-id in GenericParam table for a given owner (token).
20829         * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20830         prototype.
20831
20832 2005-11-23  Raja R Harinath  <rharinath@novell.com>
20833             Ankit Jain  <jankit@novell.com>
20834
20835         * metadata.c (mono_metadata_class_equal): Pass signature_only when
20836         comparing VARs too.
20837         * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at 
20838         type->data.generic_param only if the type is an MVAR.
20839         (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20840         leak owner-less VARs and MVARs into managed space.
20841
20842 2005-11-21  Martin Baulig  <martin@ximian.com>
20843
20844         * class-internals.h
20845         (MonoMethod): Moved the `generic_container' here from
20846         `MonoMethodNormal' since we now also need it for
20847         `MonoMethodPInvoke';
20848         (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20849         (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20850         an union containing both `MonoMethodNormal' and
20851         `MonoMethodPInvoke'.
20852
20853         * loader.c
20854         (mono_get_method_from_token): Allow implementing generic methods
20855         as interncalls.
20856
20857         * threads.c
20858         (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20859         icall.
20860
20861 2005-11-17  Dick Porter  <dick@ximian.com>
20862
20863         * icall.c: 
20864         * process.h: 
20865         * process.c: Split the Process Start_internal icall into
20866         ShellExecuteEx_internal and CreateProcess_internal, which are
20867         called depending on whether UseShellExecute is true.  Fixes bug
20868         76670.
20869
20870         * appdomain.c (MONO_CORLIB_VERSION): Incremented
20871
20872 2005-11-17  Zoltan Varga  <vargaz@gmail.com>
20873
20874         * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20875         'msize' parameters, use the information in 'mspec' instead.
20876         (emit_object_to_ptr_conv): Ditto.
20877
20878         * marshal.c (emit_struct_conv): Handle explicit layout structs with
20879         fields out of order. Fixes #76733.
20880
20881 2005-11-17  Ankit Jain  <jankit@novell.com>
20882
20883         * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20884
20885 2005-11-16  Atsushi Enomoto  <atsushi@ximian.com>
20886
20887         * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20888           bug #76575.
20889
20890 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20891
20892         * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20893         for types with non-auto layout. Fixes #76717.
20894
20895 2005-11-16  Ankit Jain  <jankit@novell.com>
20896
20897         * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20898         * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam 
20899         if generic_context is null.
20900           (mono_metadata_generic_param_equal): param->owner can be null.
20901           (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20902         null.
20903
20904 2005-11-16  Zoltan Varga  <vargaz@gmail.com>
20905
20906         * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20907         the correct value.
20908
20909 2005-11-15  Martin Baulig  <martin@ximian.com>
20910
20911         * object.c (set_value): Use mono_class_from_mono_type() instead of
20912         the hack for generic instances; fixes #76136.
20913
20914 2005-11-15  Zoltan Varga  <vargaz@gmail.com>
20915
20916         * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20917         fields.
20918
20919         * image.c (load_metadata_ptrs): Initialize the new fields.
20920
20921         * reflection.c (create_dynamic_mono_image): Ditto.
20922
20923         * reflection.c (build_compressed_metadata): Use the new fields.
20924
20925         * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20926         icall.
20927
20928         * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20929         icall.
20930         
20931 2005-11-15  Ankit Jain  <jankit@novell.com>
20932             Raja R Harinath  <harinath@gmail.com>
20933
20934         * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20935         * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20936         new per-generic_container cache if the cached MonoType's context matches
20937         the current context.
20938           (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20939         to the expected context.
20940           (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20941
20942 2005-11-14  Carlos Alberto Cortez <calberto.cortez@gmail.com>
20943
20944         * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20945         we changed the signature of an icall.
20946         * icall.c: Modify to mono_double_ParseImpl return true/false 
20947         depending on the success, instead of throwing the exception. This will
20948         help us in Double.TryParse methods.
20949         
20950 2005-11-14  Zoltan Varga  <vargaz@gmail.com>
20951
20952         * marshal.c (emit_marshal_object): Throw an exception when
20953         marshalling 'object' instead of crashing. Fixes #76696.
20954
20955 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20956
20957         * class-internals.h: Add prototype for mono_type_get_full_name ().
20958
20959 2005-11-11  Dick Porter  <dick@ximian.com>
20960
20961         * threads.c (mono_thread_manage): Make sure the main thread has
20962         abandoned all its mutexes when cleaning up.  Fixes bug 74680.
20963
20964 2005-11-11  Zoltan Varga  <vargaz@gmail.com>
20965
20966         * loader.c (mono_loader_set_error_type_load): Log a warning to the
20967         console about the missing type.
20968         (mono_loader_set_error_method_load): Ditto.
20969
20970 2005-11-09  Miguel de Icaza  <miguel@novell.com>
20971
20972         * mono-config.c (mono_get_config_dir): Set the system defaults if
20973         none is specified.
20974
20975         * assembly.c (mono_set_dirs): New API entry point to set the
20976         assembly and the config directory in one call
20977
20978 2005-11-09  Zoltan Varga  <vargaz@gmail.com>
20979
20980         * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
20981         the ftnptr was created from a delegate in a domain other than the
20982         current domain. Fixes #75377.
20983
20984         * exception.h exception.c: Add mono_get_exception_not_supported ().
20985
20986 2005-11-08  Martin Baulig  <martin@ximian.com>
20987
20988         * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
20989
20990 2005-11-07  Sebastien Pouliot  <sebastien@ximian.com>
20991
20992         * security-manager.h: Added definitions to deal with strongname key 
20993         pairs bigger (and smaller) than 1024 bits.
20994         * reflection.c: Remove hardcoded strongname size (128 bytes) and 
20995         adjust wrt the public key length being used.
20996
20997 2005-11-03  Atsushi Enomoto  <atsushi@ximian.com>
20998
20999         * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21000           Windows build (r51396-51397).
21001
21002 2005-11-03  Martin Baulig  <martin@ximian.com>
21003
21004         * class.c (mono_class_setup_vtable_general): Also add generic
21005         methods to the vtable; fixes #76581.
21006
21007 2005-11-01  Miguel de Icaza  <miguel@novell.com>
21008
21009         * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21010         sure that we lookup GetString method from the System.Text.Encoding
21011         class, not the derived class or we get an empty method.
21012
21013         Fixed class #76612.
21014
21015 2005-10-25  Miguel de Icaza  <miguel@novell.com>
21016
21017         * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21018         if it has been previously set (embedders). 
21019
21020         Make mono_set_rootdir available also on Unix.
21021
21022 005-10-24  Robert Jordan  <robertj@gmx.net>
21023
21024         * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21025
21026 2005-10-30  Zoltan Varga  <vargaz@freemail.hu>
21027
21028         * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21029         only calls which are made to native code use this flag.
21030
21031         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21032
21033 2005-10-29  Zoltan Varga  <vargaz@freemail.hu>
21034
21035         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21036         Add support for FieldBuilders.
21037
21038 2005-10-29  Martin Baulig  <martin@ximian.com>
21039
21040         * mono-debug.c
21041         (mono_debug_using_mono_debugger): New public method; returns
21042         whether we're running inside the debugger.
21043
21044 2005-10-27  Zoltan Varga  <vargaz@gmail.com>
21045
21046         * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21047         for Method/Constructor/FieldBuilders.
21048
21049 2005-10-26  Zoltan Varga  <vargaz@gmail.com>
21050
21051         * reflection.c (module_add_cattrs): Save custom attributes for global methods
21052         and fields as well.
21053
21054 2005-10-26  Martin Baulig  <martin@ximian.com>
21055
21056         * mono-debug-debugger.c
21057         (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21058
21059 2005-10-24  Raja R Harinath  <harinath@gmail.com>
21060
21061         * icall.c (base64_to_byte_array): Don't pass an out-of-range
21062         integer to isspace.
21063
21064 2005-10-21  Zoltan Varga  <vargaz@gmail.com>
21065
21066         * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21067         when passing valuetypes byref. Fixes #76502.
21068
21069 2005-10-19  Jackson Harper  <jackson@ximian.com>
21070
21071         * profiler.c: Don't put a . in front of types that are not in a
21072         namespace.
21073
21074 2005-10-18  Zoltan Varga  <vargaz@gmail.com>
21075
21076         * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21077
21078 2005-10-15  Zoltan Varga  <vargaz@freemail.hu>
21079
21080         * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21081         #76436.
21082         (mono_marshal_get_ldflda_wrapper): Fix a warning.
21083
21084 2005-10-13  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21085
21086         * assembly.c metadata-internals.h icall.c: Define an additional
21087         parameter for mono_assembly_name_parse_full, so we can avoid creating
21088         S.R.AssemblyName.Version when no version info wasn't passed.
21089         
21090 2005-10-09  Miguel de Icaza  <miguel@novell.com>
21091
21092         * class.c (mono_type_get_full_name): Reimplement method that was
21093         removed. 
21094
21095         * image.c: Some docs
21096
21097 2005-10-10  Zoltan Varga  <vargaz@gmail.com>
21098
21099         * profiler.c (output_newobj_profile): Fix printing of Total memory
21100         on x86.
21101
21102 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21103
21104         * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21105
21106 2005-10-08  Gert Driesen  <drieseng@users.sourceforge.net>
21107
21108         * threads.c: remove debug output.
21109
21110 2005-10-08  Zoltan Varga  <vargaz@freemail.hu>
21111
21112         * threads.c (mono_thread_manage): Fix crashes if more than 64
21113         threads need to be aborted. Hopefully fixes #75899.
21114
21115         * assembly.c (mono_stringify_assembly_name): New helper function.
21116
21117         * class.c: Use mono_stringify_assembly_name instead of the similar
21118         static function.
21119
21120         * assembly.h assembly.c: Add support for calling a postload search 
21121         hook if an assembly cannot be loaded.
21122
21123         * appdomain.c: Register new search hooks which call the AssemblyResolve
21124         events in AppDomain. Fixes #75231
21125
21126 2005-10-07  Martin Baulig  <martin@ximian.com>
21127
21128         * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21129         methods without debug info.
21130
21131 2005-10-07  Zoltan Varga  <vargaz@gmail.com>
21132
21133         * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21134         wrappers.
21135
21136 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21137
21138         * file-io.c: now that we return symlinks, use lstat and, when the file
21139         is a symbolic link, stat, to get the file attributes. Also avoid the
21140         conversion to/from utf16/external.
21141
21142 2005-10-06  Zoltan Varga  <vargaz@gmail.com>
21143
21144         * class.c (mono_class_layout_fields): Compute klass->has_references
21145         correctly if an embedded valuetype is not yet initialized. Fixes
21146         #76331.
21147
21148 2005-10-04  Martin Baulig  <martin@ximian.com>
21149
21150         * metadata.c
21151         (mono_metadata_load_generic_param_constraints): New public
21152         function; splitted the constraints loading out from
21153         mono_metadata_load_generic_params().
21154
21155         * class.c (mono_class_create_from_typedef): Call
21156         mono_metadata_load_generic_param_constraints() after setting up
21157         the type and creating our parent; fixes #75329.
21158
21159 2005-10-04  Martin Baulig  <martin@ximian.com>
21160
21161         * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21162         non-dynamic parent classes.
21163
21164 2005-10-04  Atsushi Enomoto  <atsushi@ximian.com>
21165
21166         * file-io.c : win32 build fix (ETXTBSY seems not found).
21167
21168 2005-10-04  Martin Baulig  <martin@ximian.com>
21169
21170         * reflection.c
21171         (mono_image_get_methodspec_token): Make the cache actually work;
21172         fixes #75974.
21173
21174 2005-10-04  Martin Baulig  <martin@ximian.com>
21175
21176         * class.c (mono_class_name_from_token): Removed the unneccessary
21177         `MonoGenericContext *' argument.
21178
21179 2005-10-04  Martin Baulig  <martin@ximian.com>
21180
21181         * loader.c
21182         (method_from_methodspec): Make the caching work again; fixes the
21183         performance regression from #76262.
21184
21185 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21186
21187         * file-io.c:
21188         * file-io.h:
21189         * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21190         GetFileSystemEntries that performs the same work but without going
21191         into io-layer, locking, etc.
21192
21193 2005-09-30  Zoltan Varga  <vargaz@gmail.com>
21194
21195         * threads.c (ves_icall_System_Threading_Thread_Abort): Handle 
21196         ThreadState_Stopped as well. Fixes #76047.
21197
21198 2005-09-29  Martin Baulig  <martin@ximian.com>
21199
21200         * class.c
21201         (inflate_generic_context): If the new context has a `gmethod', set
21202         its `container' that that gmethod's `container'.
21203
21204         * metadata.c
21205         (mono_metadata_parse_generic_param): Simplify things;
21206         `generic_container = generic_context->container;' is just fine.
21207
21208         * loader.c (method_from_methodspec): Code cleanups.
21209
21210 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21211
21212         * decimal.c: fix warning (and let gcc generate correct
21213         code on ARM with optimizations).
21214
21215 2005-09-28  Martin Baulig  <martin@ximian.com>
21216
21217         * loader.c
21218         (method_from_memberref): Added `MonoGenericContext *class_context'
21219         argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21220         (method_from_methodspec): If we're a memberref, use the enclosing
21221         context when parsing its parent.  Fixes #76262; see gtest-206.cs.
21222
21223 2005-09-28  Martin Baulig  <martin@ximian.com>
21224
21225         * object.c (mono_runtime_invoke_array): Added support for
21226         MONO_TYPE_GENERICINST; fixes #75917.
21227
21228 2005-09-27  Martin Baulig  <martin@ximian.com>
21229
21230         * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21231         `k->byval_arg.type' to determine the actual type.
21232
21233         * loader.c (method_from_methodspec): Removed some hacks.
21234
21235 2005-09-27  Ben Maurer  <bmaurer@ximian.com>
21236
21237         * class-internals.h (mono_field_is_deleted): Do the test for
21238         rtspecialname before we check the actual name of the field. This
21239         prevents us from dereferencing a pointer into the string table,
21240         saving us from accessing a few pages
21241
21242         * *.c: Replace the use of {Enter,Leave}CriticalSection with
21243         macros. This will allow a deadlock debugger to easily be plugged
21244         in.
21245
21246 2005-09-27  Martin Baulig  <martin@ximian.com>
21247
21248         * loader.c (method_from_methodspec): Create a "signature"
21249         MonoGenericContainer and use mono_get_method_full().  Fixes #75584.
21250
21251 2005-09-27  Martin Baulig  <martin@ximian.com>
21252
21253         * class.c
21254         (inflate_generic_class): Correctly set the new context's
21255         container.
21256
21257         * loader.c
21258         (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21259         instead of a `MonoGenericContext *'.
21260         (mono_method_signature_full): Take a `MonoGenericContainer *'
21261         instead of a `MonoGenericContext *'.
21262
21263         * metadata.c
21264         (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21265         instead of a `MonoGenericContext *'.
21266         (mono_metadata_parse_method_signature_full): Likewise.
21267
21268 2005-09-26  Martin Baulig  <martin@ximian.com>
21269
21270         * class.c
21271         (mono_class_from_generic_parameter): Set `klass->generic_container'
21272         (mono_class_from_generic_parameter): Likewise.
21273         (mono_bounded_array_class_get): We inherit the generic container
21274         from the element class.
21275
21276         * loader.c
21277         (find_method, find_method_in_class): Take a `MonoGenericContext *'
21278         argument rather than computing it here.
21279         (method_from_memberref): Correctly set the generic context before
21280         parsing the signature.  Fixes #75681.
21281
21282 2005-09-26  Zoltan Varga  <vargaz@gmail.com>
21283
21284         * object.c (mono_class_has_special_static_fields): Fix warnings.
21285
21286 2005-09-26  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21287
21288         * assembly.c: Add parse_public_key function, to
21289         par the public keys. Also added mono_assembly_name_parse_full,
21290         to define it the parsed key should be freed or not.
21291         * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21292         to parse a long format assembly name.
21293         * metadata-internals.h: Keep mono_assembly_name_parse_full as
21294         private, since calling it to preserve the key requires
21295         freeing it manually.
21296         
21297 2005-09-26  Atsushi Enomoto  <atsushi@ximian.com>
21298
21299         * locales.c : removed HAVE_ICU part.
21300
21301 2005-09-24  Zoltan Varga  <vargaz@freemail.hu>
21302
21303         * object.c (mono_class_create_runtime_vtable): Avoid calling 
21304         field_is_special_static if the klass has no special static fields.
21305
21306         * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21307         (MonoCachedClassInfo): Likewise.
21308
21309         * object.c (mono_class_has_special_static_fields): New helper function.
21310
21311 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21312
21313         * class.c (mono_class_create_from_typedef): Don't call 
21314         interfaces_from_typedef_full for enums.
21315         (mono_class_create_from_typedef): Compute the base types of enums directly
21316         without calling mono_class_setup_fields ().
21317         (mono_class_find_enum_basetype): New helper function.
21318
21319         * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21320         one place inside the string heap.
21321         
21322 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21323
21324         * class.c: locking fixes, code cleanups, some docs added.
21325         Allocate some data structures in the image mempool.
21326
21327 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21328
21329         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21330         the example code.
21331         
21332 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21333
21334         * class-internals.h, class.c, reflection.c: reduce memory taken by
21335         MonoClass.
21336
21337 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21338
21339         * metadata.c, metadata.h, loader.h: documentation updates, code and
21340         API cleanups.
21341
21342 2005-09-23  Zoltan Varga  <vargaz@gmail.com>
21343
21344         * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21345         the example code.
21346
21347         * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21348         page faults caused by the runtime while reading metadata.
21349
21350 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21351
21352         * socket-io.c: the field names were changed 3 months ago and no one
21353         realized until bug #76077 got filed!
21354
21355 2005-09-20  Martin Baulig  <martin@ximian.com>
21356
21357         * icall.c (assembly_icalls): Removed some unused debugger icalls.
21358
21359 2005-09-20  Martin Baulig  <martin@ximian.com>
21360
21361         * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21362         write the rank into the class entry.
21363
21364 2005-09-20  Martin Baulig  <martin@ximian.com>
21365
21366         * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21367
21368 2005-09-19  Zoltan Varga  <vargaz@gmail.com>
21369
21370         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21371
21372         * icall.c (custom_attrs_defined_internal): New icall.
21373
21374         * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21375         function.
21376         (mono_custom_attrs_construct_by_type): New helper function.
21377
21378 2005-09-17  Zoltan Varga  <vargaz@freemail.hu>
21379
21380         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21381         terminate the resulting string. Fixes #76123.
21382
21383 2005-09-16  Martin Baulig  <martin@ximian.com>
21384
21385         * mono-debug.c
21386         (mono_debug_add_method): Ignore inflated methods for the moment.
21387
21388 2005-09-14  Martin Baulig  <martin@ximian.com>
21389
21390         * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21391
21392 2005-09-13  Zoltan Varga  <vargaz@gmail.com>
21393
21394         * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21395         return a success/failure indication.
21396         (mono_metadata_interfaces_from_typedef_full): Ditto.
21397         (get_constraints): Ditto.
21398
21399 2005-09-12  Zoltan Varga  <vargaz@gmail.com>
21400
21401         * marshal.c (emit_marshal_array): Fix handling of null arrays.
21402         
21403         * marshal.c (emit_marshal_array): Add support for returning string
21404         arrays from delegates. Fixes #76063.
21405
21406         * marshal.c: Use the emit_ldloc/stloc macros where possible.
21407
21408 2005-09-11  Zoltan Varga  <vargaz@gmail.com>
21409
21410         * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21411         icall.
21412
21413 2005-09-09  Zoltan Varga  <vargaz@gmail.com>
21414
21415         * reflection.c icall.c: Fix after mono_get_exception_type_load
21416         signature change.
21417
21418         * assembly.c (mono_assembly_get_assemblyref): New helper function.
21419         (mono_assembly_load_reference): Use the new helper.
21420
21421         * class-internals.h (MonoLoaderError): New structure containing 
21422         information about type loading errors.
21423
21424         * class-internals.h loader.c: Add APIs to store per-thread loader
21425         error information.
21426
21427         * loader.c class.c: Set the loader error if needed.
21428
21429         * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21430
21431 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21432
21433         * decimal.c: fixed to handle the broken ARM fp format.
21434
21435 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21436
21437         * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21438         broken.
21439
21440 2005-09-06  Martin Baulig  <martin@ximian.com>
21441
21442         * domain.c (supported_runtimes): Added v2.0.50727.
21443
21444 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21445
21446         * culture-info.h: reduce the size of some structures.
21447
21448 2005-09-05  Martin Baulig  <martin@ximian.com>
21449
21450         Reflect latest API changes in the August CTP.
21451
21452         * icall.c
21453         ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21454         ("MonoType.HasGenericArguments"): Removed.
21455         ("MonoMethod.BindGenericParameters"): Renamed to
21456         "MakeGenericMethod".
21457         ("MethodBuilder.BindGenericParameters"): Renamed to
21458         "MakeGenericMethod".    
21459
21460 2005-09-05  Martin Baulig  <martin@ximian.com>
21461
21462         * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21463
21464 2005-09-05  Martin Baulig  <martin@ximian.com>
21465
21466         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21467
21468         * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21469         generic_container is non-NULL.
21470
21471 2005-09-05  Martin Baulig  <martin@ximian.com>
21472
21473         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21474
21475         * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21476
21477 2005-08-29  Michal Moskal  <malekith@nemerle.org>
21478
21479         * reflection.c (encode_locals,
21480         mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21481         for large generic types.
21482
21483 2005-09-05  Martin Baulig  <martin@ximian.com>
21484
21485         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21486
21487         * class.c (mono_dup_array_type): New public method.
21488         (mono_metadata_signature_deep_dup): New public method.
21489         (dup_type): Correctly duplicate array and function types.
21490
21491 2005-09-05  Martin Baulig  <martin@ximian.com>
21492
21493         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21494
21495         * reflection.c (get_default_param_value_blobs): Handle generic types
21496         and generic methods.
21497
21498 2005-09-02  Sebastien Pouliot  <sebastien@ximian.com>
21499
21500         * class.c: Fixed error reporting (method/class were inversed) for 
21501         inheritance demands.
21502         * security-manager.c|h: Added the AppDomain when calling the managed
21503         System.Security.SecurityManager.InheritanceDemand method.
21504
21505 2005-09-01  Raja R Harinath  <rharinath@novell.com>
21506
21507         * reflection.c (encode_marshal_blob): 'marshaltype' and
21508         'marshaltyperef' are alternate sources for the custom marshaler
21509         name.
21510
21511 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21512
21513         * class.c: fix creation of array classes with rank == 1
21514         (patch by Ankit Jain <jankit@novell.com>).
21515
21516 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21517
21518         * object.c: fix check for creating the bound data for arrays vs
21519         szarrays.
21520
21521 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21522
21523         * object.c: configuration file name is now based on the executable name,
21524         not the image name. Fixes bug #75931.
21525
21526 2005-08-29  Zoltan Varga  <vargaz@gmail.com>
21527
21528         * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21529         flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21530
21531 2005-08-25  Zoltan Varga  <vargaz@gmail.com>
21532
21533         * rand.c: Use wincrypt.h instead of WinCrypt.h.
21534
21535 2005-08-24  Ankit Jain  <jankit@novell.com>
21536             Raja R Harinath  <rharinath@novell.com>
21537
21538         * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21539           called by it recursively.
21540           (mono_class_init): Remove special case in pending_init handling, since it's
21541           superseded by the fix to mono_class_from_typeref.
21542
21543 2005-08-22  Zoltan Varga  <vargaz@freemail.hu>
21544
21545         * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the 
21546         BROKEN_THREAD_START stuff.
21547
21548 2005-08-21  Zoltan Varga  <vargaz@freemail.hu>
21549
21550         * class-internals.h object.c: Add a new kind of trampoline called a delegate 
21551         trampoline.
21552
21553         * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21554         
21555         * object.c (mono_delegate_ctor): Replace the original function address with
21556         a delegate trampoline.
21557
21558 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21559
21560         * icall.c: add boolean argument to base64_to_byte_array and 
21561         InternalFromBase64String to control whether a whitespace-only string
21562         is allowed (or should casue a FormatException to be thrown). We need
21563         this as the behavior has changed between MS.NET 1.x and 2.0, and we
21564         to match the MS behaviour in both profiles.
21565         * appdomain.c: Bump corlib version.
21566
21567 2005-08-20  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21568
21569         This patch implements a big portion of publisher policy
21570         support, used to bind assembly versions and redirect
21571         one assembly from version A to version B.
21572
21573         * assembly.c:
21574         New GSList loaded_assembly_bindings, for storing the cached
21575         assembly bindings.
21576         (assembly_binding_maps_name): New static function for checking if a 
21577         assembly binding information maps an assembly name.
21578         (mono_assembly_binding_info_free): New function for freeing
21579         assembly binding information resources.
21580         (get_publisher_policy_info): New static function for retrieving 
21581         assembly binding information from a MonoImage.
21582         (compare_versions): New static function for comparing an assembly
21583         binding information data and the version of an assembly name.
21584         (check_policy_versions): New static function for checking if an
21585         assembly binding info mapping an assembly name is valid for it.
21586         (mono_assembly_load_publisher_policy): New static function for
21587         loading the 'policy.major.minor.MyAssembly' image for an assembly
21588         with an assembly name 'aname'.
21589         (mono_assembly_bind_version): New static function for updating
21590         assembly redirection.
21591         (mono_assembly_apply_binding): New static function for applying
21592         assembly binding.
21593         (search_binding_loaded): New static function for searching 
21594         loaded assembly binding infos in the cache domain.
21595         (mono_assembly_load_full): Don't apply assembly binding for
21596         reflection only assemblies.
21597
21598         * metadata-internals.h: Add MonoAssemblyBindingInfo,
21599         which contains information about assembly binding. Also
21600         declare signature for mono_config_parse_publisher_policy ()
21601         function, used to retrieve pub policy info.
21602         
21603         * mono-config.c:
21604         (publisher_policy_start): New static function used to parse publisher 
21605         policy config files.
21606         (publisher_policy_parser): New static MonoParseHandler containing 
21607         the functions used when parsing config files.
21608         (mono_config_parse_publisher_policy): New function for parsing
21609         publisher policy files.
21610         
21611 2005-08-20  Zoltan Varga  <vargaz@freemail.hu>
21612
21613         * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21614
21615         * marshal.c (mono_delegate_free_ftnptr): Ditto.
21616
21617         * object.c (mono_get_addr_from_ftnptr): New helper function.
21618
21619         * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21620
21621         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21622
21623 2005-08-19  Dick Porter  <dick@ximian.com>
21624
21625         * threads.c, threads.h, appdomain.c, appdomain.h,
21626         profiler-private.h, monitor.c, object.c, object-internals.h,
21627         profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21628         store the thread ID, so it can hold a 64 bit value if needed.
21629
21630 2005-08-19  Zoltan Varga  <vargaz@freemail.hu>
21631
21632         * reflection.c (mono_reflection_create_dynamic_method): Store the
21633         handle class into the method references as well so ldtoken works in
21634         dynamic methods.
21635
21636         * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21637         types.
21638
21639 2005-08-19  Ankit Jain <jankit@novell.com>
21640
21641         Fix #75847.
21642         * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature 
21643           here rather than using the method signature of a arbitrary function
21644           named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with 
21645           two arguments.
21646           Hack done with Harinath.
21647
21648 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21649
21650         * threadpool.c: disable printing stack traces when we get a exception
21651         in a threadpool thread. I need to do more testing to figure out which
21652         cases actually print this. Fixes bug #75828.
21653
21654 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21655
21656         * icall.c: there might be ignored whitespace after the last '='. This
21657         fixes length computation and bug #75840.
21658
21659 2005-08-18  Zoltan Varga  <vargaz@freemail.hu>
21660
21661         * assembly.c (mono_assembly_load_full): Consider .exe extension as
21662         well. Fixes #75809.
21663
21664         * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21665         #75784.
21666         
21667         * reflection.c (create_custom_attr_data): Ditto.
21668
21669 2005-08-17  Atsushi Enomoto  <atsushi@ximian.com>
21670
21671         * locales.c, culture-info.h : removed RegionLCIDMap.
21672         * culture-info-tables.h : regenerated.
21673
21674 2005-08-16  Martin Baulig  <martin@ximian.com>
21675
21676         * class.c (mono_type_get_name_recurse): Small fix.
21677
21678 2005-08-16  Atsushi Enomoto  <atsushi@ximian.com>
21679
21680         * locales.c : indentation fixie.
21681
21682 2005-08-15  Atsushi Enomoto  <atsushi@ximian.com>
21683
21684         * object-internals.h,
21685           locales.h,
21686           locales.c,
21687           culture-info.h,
21688           icall.c : added RegionInfo table support.
21689         * culture-info-table.h : regenerated for region support.
21690
21691 2005-08-14  Kamil Skalski  <nazgul@nemerle.org>
21692
21693         * reflection.c (resolve_object): handle all kinds of MonoMethod
21694         including generic ones
21695
21696 2005-08-12  Ankit Jain <jankit@novell.com>
21697
21698         * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21699           (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY. 
21700
21701 2005-09-12  Lluis Sanchez  <lluis@ximian.com>
21702
21703         * process.c: Don't close a thread handle when it's NULL. This is a
21704         workaround for bug #75733.
21705
21706 2005-08-11  Zoltan Varga  <vargaz@freemail.hu>
21707
21708         * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21709
21710 2005-08-10  Zoltan Varga  <vargaz@freemail.hu>
21711
21712         * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21713
21714 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21715
21716         * threadpool.c: if a work item in the thread pool has a callback that
21717         catches a exception, don't propagate it after invoking the callback.
21718         Fixes bug #75336.
21719
21720 2005-08-08  Zoltan Varga  <vargaz@freemail.hu>
21721
21722         * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21723
21724         * class-internals.h (MonoCachedClassInfo): Add some new fields.
21725
21726         * class.c (mono_class_init): Load field info lazily in the AOT case.    
21727
21728         * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21729
21730 2005-08-03  Ankit Jain  <jankit@novell.com>
21731
21732         Fix #75683.
21733         * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21734           PInvoke calling convention is 0.
21735
21736 2005-08-02  Zoltan Varga  <vargaz@freemail.hu>
21737
21738         * socket-io.c (convert_sockopt_level_and_name): Applied patch from 
21739         Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21740
21741 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21742
21743         * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21744         to handle threads not started by the GC (patch by Michael Meeks
21745         <michael.meeks@novell.com>).
21746
21747 2005-07-31  Kamil Skalski  <nazgul@omega.pl>
21748
21749         * reflection.c: Make buffer used in emitting types larger for some
21750         big generic types (patch by Michal Moskal).
21751
21752 2005-07-30  Zoltan Varga  <vargaz@freemail.hu>
21753
21754         * mono-debug.c: Fix some (not all) alignment problems.
21755
21756 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21757
21758         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21759         Invoke mono_image_load_from_data_full passing the refonly
21760         parameter.
21761
21762         * assembly.c
21763         (mono_assembly_open_from_bundle): Add the refonly argument, 
21764         in order to pass it to other methods it calls to.
21765         (do_mono_assembly_open): Add the refonly argument, in order 
21766         to pass it to other methods it calls to.
21767         (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21768         the refonly parameter to it.
21769
21770         * image.c: Add loaded_images_refonly_hash and
21771         loaded_images_refonly_guid_hash to cache the reflection
21772         only loaded images.
21773         (mono_images_init): Initialize the hash tables used for
21774         caching the reflection only images.
21775         (load_modules): Invoke mono_image_open_full passing the refonly
21776         parameter to load the modules the correct way.
21777         (build_guid_table): Add the refonly argument, to re-build the 
21778         correct hash table.
21779         (do_mono_image_open): Added the refonly argument, in order to
21780         define it for the loaded image.
21781         (mono_image_loaded_full): New function, which receives an
21782         additional parameter to look for the image in the refonly or
21783         non-refonly section.
21784         (mono_image_loaded): Updated, using mono_image_loaded_full.
21785         (mono_image_loaded_by_guid_full): The same case that happens
21786         with mono_image_loaded_full.
21787         (mono_image_loaded_by_guid): Likewise.
21788         (register_image): Use the ref_only variable inside MonoImage
21789         to decide in which hash table store the current image.
21790         (mono_image_open_from_data_full): Rename
21791         mono_image_open_from_data to mono_image_open_from_data_full,
21792         adding the refonly argument, to define the ref_only variable 
21793         inside MonoImage.
21794         (mono_image_open_from_data): Return 
21795         mono_image_open_from_data_full.
21796         (mono_image_open_full): Rename mono_image_open to
21797         mono_image_open_full, receiving the new refonly argument,
21798         to pass it to inner methods.
21799         (mono_pe_file_open): Update this function, to open
21800         a MonoImage as a non-refonly image.
21801         (mono_image_close): Use the refonly variable inside
21802         MonoImage to remove the image from the correct caches.
21803
21804         * image.h: Add the signatures of mono_image_open_full,
21805         mono_image_open_from_data_full, mono_image_loaded_full,
21806         mono_image_loaded_by_guid_full.
21807
21808         * metadata-internals.h: Add the ref_only field to 
21809         MonoImage.
21810         
21811 2005-07-29  Carlos Alberto Cortez <calberto.cortez@gmail.com>
21812
21813         * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21814         Fix the last behavior, which used to load the assemblies and
21815         extract MonoReflectionAssemblyName information, instead of
21816         extract it from the metadata tables. Needed for Reflection
21817         Only assemblies.
21818         
21819 2005-07-29  Martin Baulig  <martin@ximian.com>
21820
21821         * mono-debug-debugger.c
21822         (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21823         not initialized.
21824
21825         * mono-debug.c
21826         (mono_debug_address_from_il_offset): Check whether we have
21827         debugging support before attempting to take the lock.
21828         (mono_debug_source_location_from_address): Likewise.
21829         (mono_debug_source_location_from_il_offset): Likewise.
21830         (mono_debug_il_offset_from_address): Likewise.
21831         (mono_debug_address_from_il_offset): Likewise.
21832
21833 2005-07-29  Zoltan Varga  <vargaz@freemail.hu>
21834
21835         * class.c (mono_class_from_name_case): Add support for dynamic images.
21836         Fixes #75650.
21837
21838         * object.c (mono_class_compute_gc_descriptor): Add a workaround
21839         for #75479.
21840
21841 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21842         
21843         * reflection.c (mono_method_get_object): Fix warning.
21844
21845 2005-07-28  Martin Baulig  <martin@ximian.com>
21846
21847         * mono-debug.c
21848         (mono_debug_add_wrapper): Also write the wrapper type.
21849
21850 2005-07-28  Zoltan Varga  <vargaz@freemail.hu>
21851
21852         * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21853         
21854         * class.c (mono_class_init): Avoid reading nested classes if the AOT
21855         data indicates the class has none.
21856
21857 2005-07-26  Ben Maurer  <bmaurer@ximian.com>
21858
21859         * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21860         loader lock with the debugger lock. Prevents deadlocks for beagle.
21861
21862         Beagle can now run on an smp box for a weekend without any
21863         issues. Woohoo!
21864
21865 2005-07-26  Zoltan Varga  <vargaz@freemail.hu>
21866
21867         * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21868         in a module. Fixes #75629.
21869
21870 2005-07-26  Martin Baulig  <martin@ximian.com>
21871
21872         * mono-debug.c (mono_debug_add_wrapper): New static method.
21873         (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21874         interncall or a wrapper.
21875
21876         * mono-debug.h (MonoDebugWrapperData): New public typedef.
21877         (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21878         (MONO_DEBUGGER_VERSION): Bump to 51.
21879
21880         * mono-debug-debugger.c
21881         (mono_debugger_add_type): Removed this empty function.
21882         (mono_debugger_add_method): Likewise.
21883
21884 2005-07-22  Zoltan Varga  <vargaz@freemail.hu>
21885
21886         * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable () 
21887         before accessing method->slot.
21888
21889 2005-07-21  Jb Evain  <jbevain@gmail.com>
21890
21891         * reflection.c (method_encode_clauses/class): Handle filters clauses.
21892         Fixes #75010.
21893
21894 2005-07-21  Zoltan Varga  <vargaz@freemail.hu>
21895
21896         * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21897         #75587.
21898
21899 2005-07-20  Zoltan Varga  <vargaz@freemail.hu>
21900
21901         * image.h image.c: Add mono_image_get_guid () API function.
21902
21903 2005-07-19  Ben Maurer  <bmaurer@ximian.com>
21904
21905         There were issues when multiple threads tried to load
21906         assemblies. A deadlock was created between assemblies_mutex and
21907         mono_domain_assemblies_lock. This fixes the issue by making the
21908         assembly ref counting be lock free. See bug 75586.
21909         
21910         * image.c (mono_image_close): The add ref function here was using
21911         Interlocked operations while the unref was using a mutex and a
21912         --. I don't think this was ever a bug that would be exposed in a
21913         non-pendantic way (ie, by an embedder doing a ref on one thread
21914         and an unref on another), but for the sake of correctness, this is
21915         now Interlocked.
21916
21917         * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21918         (mono_assembly_load_reference): Call mono_assembly_addref rather
21919         than touching the refcount ourselves.
21920         (mono_assembly_close): Use InterlockedDecrement to unref the
21921         assembly. Don't acquire the lock unless it is actually needed.
21922
21923 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21924
21925         * class.c (mono_class_layout_fields): Fix calculation of has_references
21926         for generic types.
21927
21928 2005-07-12  Martin Baulig  <martin@ximian.com>
21929
21930         Applying a patch from Michal Moskal <malekith@nemerle.org>.
21931
21932         * metadata.c
21933         (mono_type_hash): Provide better hashing for generic instances.
21934         (mono_generic_inst_hash): Improve hashing.
21935         (mono_generic_class_hash): Likewise.
21936
21937         * reflection.c (mymono_metadata_type_hash): Improve hashing for
21938         generic instances.
21939
21940 2005-07-12  Martin Baulig  <martin@ximian.com>
21941
21942         * reflection.c (mono_reflection_create_runtime_class): Remove the
21943         hack for generic type definitions and non-`Run' assemblies.
21944         (mono_reflection_bind_generic_parameters): Also use
21945         `klass->wastypebuilder' to check for TypeBuilders.
21946
21947 2005-07-12  Zoltan Varga  <vargaz@freemail.hu>
21948
21949         * class.c (mono_class_layout_fields): Fix calculation of has_references
21950         for generic types.
21951
21952         * class.c (inflate_generic_class): Fix a leak.
21953         (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21954         for generic types.
21955
21956 2005-07-11  Martin Baulig  <martin@ximian.com>
21957
21958         * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21959         on error.
21960
21961 2005-07-11  Martin Baulig  <martin@ximian.com>
21962
21963         * loader.c (find_method): Also lookup in
21964         `mono_defaults.object_class' if we're an interfaces; fixes #75460.
21965
21966 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21967
21968         * appdomain.c (mono_domain_unload): Don't free the error message
21969         before passing it to mono_get_exception_...
21970
21971         * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
21972         
21973 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
21974
21975         * threads.c: try to better guess an available RT signal (bug #75387).
21976
21977 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21978
21979         * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
21980         and CACHE_OBJECT.
21981
21982 2005-07-07  Martin Baulig  <martin@ximian.com>
21983
21984         * class.c (mono_type_get_name_full): Return NULL for
21985         MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
21986         fixes #75408.
21987
21988 2005-07-07  Zoltan Varga  <vargaz@freemail.hu>
21989
21990         * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
21991         exit the appdomain as well being aborted.
21992
21993         * threadpool.c: Create all threadpool threads inside the root appdomain, and
21994         change back to the root domain after calling managed code. This enables
21995         appdomains using threadpools to be unloaded.
21996
21997 2005-07-07  Martin Baulig  <martin@ximian.com>
21998
21999         * class-internals.h
22000         (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22001         into `MonoDynamicGenericClass' since we only need it for dynamic
22002         types.
22003
22004         * reflection.c (mono_class_bind_generic_parameters): We don't need
22005         to compute the `parent' here.
22006
22007 2005-07-07  Atsushi Enomoto  <atsushi@ximian.com>
22008
22009         * culture-info-table.h : regenerated.
22010
22011 2005-07-06  Martin Baulig  <martin@ximian.com>
22012
22013         * icall.c
22014         (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22015
22016         * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22017
22018 2005-07-06  Martin Baulig  <martin@ximian.com>
22019
22020         * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22021         we're doing a signature-only comparision; fixes #74945.
22022
22023 2005-07-06  Martin Baulig  <martin@ximian.com>
22024
22025         * class-internals.h (MonoGenericClass): Moved some things out into
22026         a new `MonoInflatedGenericClass' type.  
22027         (MonoInflatedGenericClass): New type; the `klass' of a
22028         `MonoGenericClass' is now computed lazyly in
22029         mono_get_inflated_generic_class().      
22030
22031         * class.c (mono_get_inflated_generic_class): New public function.
22032         (mono_class_inflate_generic_method): Removed the unused
22033         `MonoClass *' argument.
22034         (setup_generic_vtable): Don't call mono_get_inflated_method() on
22035         all the methods.
22036         (mono_class_create_generic): Make this static and merge it with
22037         mono_class_create_generic_2(); we're now called automatically from
22038         mono_get_inflated_generic_class().
22039
22040         * loader.c (mono_method_signature): Call
22041         mono_get_inflated_method() here.
22042
22043 2005-07-06  Zoltan Varga  <vargaz@freemail.hu>
22044
22045         * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22046         type of fields with RVA.
22047
22048         * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22049         for this pseudo class.
22050         (my_mono_class_from_generic_parameter): Likewise.
22051         (mono_class_init): Allow interfaces to have cctors.
22052
22053 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22054
22055         * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22056         lazily for AOT methods.
22057
22058 2005-07-05  Martin Baulig  <martin@ximian.com>
22059
22060         * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22061         returns FALSE for a successful match, not TRUE.
22062
22063 2005-07-05  Zoltan Varga  <vargaz@freemail.hu>
22064
22065         * loader.c (mono_method_get_index): Optimize this a bit.
22066
22067 2005-07-04  Martin Baulig  <martin@ximian.com>
22068
22069         * class.c
22070         (class_compute_field_layout): Move the check for generic type
22071         definitions into mono_class_layout_fields().  Fixes #74684.
22072         (mono_class_from_generic_parameter): Correctly compute
22073         `klass->parent'; fixes #75457.
22074
22075         * reflection.c (register_assembly, register_module): Make sure
22076         `domain->rejobject_hash' is already created.
22077
22078 2005-07-02  Martin Baulig  <martin@ximian.com>
22079
22080         * class-internals.h
22081         (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22082         `MonoDynamicGenericClass'.      
22083
22084 2005-07-01  Lluis Sanchez  <lluis@ximian.com>
22085
22086         * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22087         returned by a field getter is null, since null is a valid value.
22088
22089 2005-07-01  Martin Baulig  <martin@ximian.com>
22090
22091         * reflection.c (mono_reflection_generic_class_initialize): Update
22092         the `dgclass->fields [i].parent' to the correct class.
22093         (mono_image_get_fieldref_token): Use the declaring type, not the
22094         reflected type.
22095
22096 2005-07-01  Martin Baulig  <martin@ximian.com>
22097
22098         * loader.c (find_method): Also look in the interfaces; fixes #75429.
22099
22100 2005-06-30  Ben Maurer  <bmaurer@ximian.com>
22101
22102         * threads.c (thread_cleanup): assert that thread != NULL
22103         (wait_for_tids_or_state_change): We were using the wrong variable
22104         when accessing wait->threads. `i' was always out of the bounds of
22105         the array.
22106
22107 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22108
22109         * loader.c: map user32 and kernel32 to libMonoSupportW
22110
22111 2005-06-28  Zoltan Varga  <vargaz@freemail.hu>
22112
22113         * appdomain.c (unload_thread_main): Mark this as WINAPI.
22114
22115 2005-06-28  Martin Baulig  <martin@ximian.com>
22116
22117         * loader.c (method_from_methodspec): Fix #75334.
22118
22119 2005-06-28  Martin Baulig  <martin@ximian.com>
22120
22121         Fix #74953 - Arrays now implement the generic IList<T> interface
22122         on the 2.0 platform.
22123
22124         * class-internals.h (MonoDefaults): Added `generic_array_class'.
22125
22126         * reflection.c (mono_class_bind_generic_parameters): New public
22127         function; similar to mono_reflection_bind_generic_parameters(),
22128         but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22129
22130         * domain.c (mono_init_internal): Try to initialize.
22131         `mono_defaults.generic_array_class' here; this'll only succeed if
22132         we're using the 2.0 corlib.
22133
22134         * icall.c
22135         (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22136         interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22137         (mono_lookup_internal_call): Added support for nested classes.
22138
22139         * loader.c
22140         (mono_get_method_from_token): Set `result->signature->pinvoke' if
22141         we're an interncall and have generic arguments.
22142
22143         * class.c
22144         (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22145         (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22146         instance of System.Array.InternalArray<T> for arrays, so they
22147         implement the generic IList<T> interface.
22148
22149 2005-06-27  Zoltan Varga  <vargaz@freemail.hu>
22150
22151         * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22152         (chastamar@yahoo.com). Fixes #75374.    
22153
22154 2005-06-27  Atsushi Enomoto <atsushi@ximian.com>
22155
22156         * culture-info-table.h: regenerated.
22157
22158 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22159
22160         * icall.c: handle spaces correctly for base64 strings.
22161
22162 2005-06-26  Ben Maurer  <bmaurer@ximian.com>
22163
22164         * *.c: Kill some warnings.
22165
22166 2005-06-23  Duncan Mak  <duncan@novell.com>
22167
22168         * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22169         that this builds on Solaris 10 (x86).
22170
22171 2005-06-23  Martin Baulig  <martin@ximian.com>
22172
22173         * class.c
22174         (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22175         generic type definitions.
22176
22177 2005-06-23  Martin Baulig  <martin@ximian.com>
22178
22179         Fix #75331.
22180
22181         * metadata.c (mono_class_get_overrides): Renamed to
22182         mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22183         (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22184         pass it to mono_get_method_full().
22185
22186 2005-06-22  Ben Maurer  <bmaurer@ximian.com>
22187
22188         * reflection.c (mono_reflection_create_runtime_class): take the
22189         mono_domain_lock in this method. Prevents deadlocks
22190
22191 2005-06-22  Martin Baulig  <martin@ximian.com>
22192
22193         * loader.c (method_from_methodspec): Fix #75330.
22194
22195 2005-06-22  Martin Baulig  <martin@ximian.com>
22196
22197         * reflection.c (type_get_qualified_name): Use
22198         mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22199         (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22200         argument; use it if we don't have an assembly name.
22201
22202 2005-06-22  Lluis Sanchez Gual  <lluis@novell.com>
22203
22204         * object.c: In mono_message_init, set "copy out" flag for in
22205         parameters with the [Out] flag.
22206
22207 2005-06-21  Martin Baulig  <martin@ximian.com>
22208
22209         * class.c
22210         (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22211         and MONO_TYPE_PTR.
22212
22213 2005-06-21  Martin Baulig  <martin@ximian.com>
22214
22215         * class.c (mono_class_init): Don't initialize `class->fields' for
22216         generic instances since they're initialized again in
22217         compute_field_layout(). 
22218         (compute_field_layout): Set the field's `generic_info' here; fix
22219         #75320. 
22220
22221 2005-06-21  Martin Baulig  <martin@ximian.com>
22222
22223         * class-internals.h
22224         (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22225
22226         * metadata.c (mono_metadata_generic_method_equal): Also
22227         distinguish the `generic_class'; fixes #75334.
22228
22229 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22230
22231         * domain.c:
22232         * appdomain.c:
22233         * domain-internals.h:
22234         * reflection.c: 'domain_assemblies' field is now protected by its own
22235         lock. Don't call into managed code to run the AssemblyLoad event if we
22236         now there are no registered delegates for it.
22237
22238 2005-06-20  Martin Baulig  <martin@ximian.com>
22239
22240         * class.c (mono_class_is_assignable_from): Use a custom version of
22241         mono_class_has_parent() to make things work for generic instances;
22242         fix #75300.
22243
22244 2005-06-20  Martin Baulig  <martin@ximian.com>
22245
22246         * loader.c (method_from_methodspec): Apply a patch from
22247         Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22248
22249 2005-06-20  Martin Baulig  <martin@ximian.com>
22250
22251         * class.c (mono_class_init): Reverted Zoltan's last change; it
22252         breaks generics.
22253
22254 2005-06-19  Zoltan Varga  <vargaz@freemail.hu>
22255
22256         * threads.c (wait_for_tids_or_state_change): Add missing locking.
22257
22258 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22259
22260         * socket-io.c: fix the index in the socket array for writable/error
22261         sockets. Fixes bug #75306.
22262
22263 2005-06-17  Zoltan Varga  <vargaz@freemail.hu>
22264
22265         * class.c (mono_class_init): Allow interfaces to have static ctors.
22266
22267 2005-06-17  Martin Baulig  <martin@ximian.com>
22268
22269         * loader.c (method_from_methodspec): Use `context->container' when
22270         parsing the `gmethod->inst'.
22271
22272 2005-06-17  Martin Baulig  <martin@ximian.com>
22273
22274         * class.c (mono_type_get_name_recurse): Don't add the assembly
22275         name for type arguments.
22276
22277 2005-06-15  Martin Baulig  <martin@ximian.com>
22278
22279         * reflection.c (mono_image_get_inflated_method_token): Encode
22280         correct klass; fixes #75260.
22281
22282 2005-06-13 Michal Moskal <malekith@nemerle.org>
22283
22284         * icall.c: Make GetCorrespondingMethod/Constructor take
22285         MonoReflectionMethod method not MonoMethod. Removed
22286         MonoType.GetCorrespondingField, and make
22287         MonoGenericType.GetCorrespondingField take name not
22288         MonoClassField.
22289
22290 2005-06-13  Michal Moskal <malekith@nemerle.org>
22291
22292         * reflection.c (field_encode_signature, encode_locals):
22293          Make sizes of buffers for types larger (for big generic types).
22294          (create_generic_typespec,
22295          mono_reflection_sighelper_get_signature_local,
22296          mono_reflection_sighelper_get_signature_field):
22297          Add asserts for too small buffers.
22298
22299 2005-06-15  Martin Baulig  <martin@ximian.com>
22300
22301         * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22302         if our parent is not a dynamic type.
22303
22304 2005-06-15  Martin Baulig  <martin@ximian.com>
22305
22306         * class-internals.h (MonoTypeNameFormat): New enum.
22307
22308         * class.c
22309         (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22310         (mono_type_get_full_name): Removed.
22311         (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22312         argument instead of the boolean's.
22313
22314         * icall.c (ves_icall_System_MonoType_getFullName):
22315         Added `gboolean assembly_qualified'.    
22316
22317         * reflection.h
22318         (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22319
22320         * reflection.c (mono_reflection_parse_type): Parse the new type
22321         name format.
22322
22323 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22324
22325         * icall.c: no need to convert from utf16 to utf8 and then back again
22326         after the call to GetLogicalDrives.
22327
22328 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22329
22330         * icall.c: frombase64. Fix problems exposed by new tests.
22331
22332 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22333
22334         * icall.c: added internal calls for converting char [] and strings in
22335         base64 into byte [].
22336
22337 2005-06-10  Martin Baulig  <martin@ximian.com>
22338
22339         * class.c (mono_class_create_generic_2): Read the nested classes
22340         from the metadata rather than from `gklass->nested_classes' since
22341         `gklass' might not be initialized yet.
22342
22343 2005-06-09  Duncan Mak  <duncan@novell.com>
22344
22345         * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22346         all public headers. Fixes #74919.
22347
22348 2005-06-09  Lluis Sanchez Gual  <lluis@novell.com>
22349
22350         * domain.c: The key for proxy_vtable_hash is now a pointer
22351         array. Added new GHashFunc and GCompareFunc functions for this.
22352
22353         * class.h: The list of interfaces in MonoRemoteClass is known in
22354         advance and can't grow (we create a new MonoRemoteClass if needed),
22355         so now the interface array can be allocated together with
22356         MonoRemoteClass.
22357         
22358         * object.c: Added a new method create_remote_class_key.
22359         Fixed mono_remote_class so it does not depend on
22360         mono_upgrade_remote_class.
22361         Removed extend_interface_array.
22362         Added new method clone_remote_class(), which makes a copy of a remote
22363         class and adds a new interface or class to it.
22364         mono_upgrade_remote_class() now creates a new remote class (or gets
22365         it from the cache) if an vtable upgrade is needed. In this way
22366         we make sure that other objects sharing the same remote class
22367         don't get the new vtable with unwanted interfaces.
22368         
22369         * object-internals.h:
22370         * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22371         
22372         * marshal.c: Track changes in mono_upgrade_remote_class().
22373
22374 2005-06-08  Kamil Skalski <nazgul@nemerle.org>
22375         * icall.c: Add runtime methods for obtaining members of inflated
22376         class, which were created from supplied non-inflated members. It
22377         is used in internal Get{Method,Constructor,Field} methods in
22378         System.Type
22379
22380 2005-06-09  Martin Baulig  <martin@ximian.com>
22381
22382         * reflection.c
22383         (mono_reflection_bind_generic_method_parameters): Fix #75169.
22384
22385 2005-06-08  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22386         * reflection.c (mono_image_basic_init): Define
22387         Version in MonoDynamicAssembly. 
22388         
22389 2005-06-08  Martin Baulig  <martin@ximian.com>
22390
22391         Fix #75136.
22392
22393         * loader.c
22394         (mono_method_signature_full): New public method; takes a
22395         `MonoGenericContext *'.
22396         (find_method): Use mono_method_signature_full() and pass the
22397         klass'es context to it.
22398
22399         * class.c (mono_class_is_inflated_method): Use
22400         mono_method_signature_full() and pass the context to it.
22401
22402 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22403
22404         * object.c: add proper locking in mono_remote_class_vtable(),
22405         fixes possible memory corruption.
22406
22407 2005-06-08  Michael Meeks  <michael.meeks@novell.com>
22408
22409         * marshal.c (mono_remoting_marshal_init): set
22410         initialized after initialization.
22411
22412 2005-06-08  Atsushi Enomoto  <atsushi@ximian.com>
22413
22414         * locales.c : hush.
22415
22416 2005-06-06  Michael Meeks  <michael.meeks@novell.com>
22417
22418         * object.c (extend_interface_array): fix really silly
22419         memory corrupting / comparison bug.
22420
22421 2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22422
22423         * reflection.c: Functions added to support the creation
22424         of CustomAttributeData, which includes Attribute data
22425         used by ReflectionOnly methods.
22426
22427         * reflection.h:  mono_reflection_get_custom_attrs_data and
22428          mono_custom_attrs_data_construct added (functions exposed).
22429
22430          * icall.c: Added mono_reflection_get_custom_attrs_data
22431          as icall.
22432         
22433 2005-06-07  Zoltan Varga  <vargaz@freemail.hu>
22434
22435         * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22436         lupus's request.
22437
22438 2005-06-06  Zoltan Varga  <vargaz@freemail.hu>
22439
22440         * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22441
22442         * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22443         dynamic DllImportAttribute.
22444
22445         * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of 
22446         dynamic DllImportAttribute.
22447
22448         * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22449         Fixes #75162.
22450
22451 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22452
22453         * threads.c: avoid segfault when an unstarted thread is aborted.
22454
22455 2005-06-05  Kornél Pál <kornelpal@hotmail.com>
22456
22457         * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22458         Returns the name and version of the runtime for reporting.
22459
22460 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22461
22462         * appdomain.c: bump corlib version.
22463         * object-internals.h: new field in MonoReflectionAssembly.
22464
22465 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22466
22467         * object-internals.h: Carlos forgot to add this field.
22468
22469 2005-06-03  Carlos Alberto Cortez <calberto.cortez@gmail.com>
22470
22471         * icall.c: Added create_version to create instances
22472         of Version of MonoReflectionAssemblyName. This change helps
22473         the AssemblyName tests to keep running fine.
22474         
22475 2005-06-03  Lluis Sanchez Gual  <lluis@novell.com>
22476   
22477         * object.c (mono_method_return_message_restore): A somehow less
22478         intrusive fix for #75138.
22479
22480 2005-06-03  Raja R Harinath  <rharinath@novell.com>
22481
22482         * object.c (mono_method_return_message_restore): Fix computation
22483         of expected number of out args.
22484
22485 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22486
22487         * reflection.c (mono_image_get_method_info): Fix the case when the
22488         charset is empty.
22489
22490 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com> 
22491
22492         * object.c: Added missing null check in
22493           mono_method_return_message_restore.
22494
22495 2005-06-02  Zoltan Varga  <vargaz@freemail.hu>
22496
22497         * reflection.c (mono_image_get_method_info): Handle the case when
22498         dllentry is empty.
22499
22500 2005-06-02  Lluis Sanchez Gual  <lluis@novell.com>
22501
22502         * object.c: When creating the vtable for a proxy, take into account
22503         all inherited interfaces, not only the ones registered in
22504         iclass->interfaces. This fixs bug #74996.
22505         Also, in mono_method_return_message_restore, verify that the array
22506         of out args has the expected lengh.
22507
22508 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22509
22510         * socket-io.c: update the timeout in Poll when the call is interrupte.
22511
22512 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22513
22514         * socket-io.c: support abort/suspend in Select_internal after last
22515         change.
22516
22517 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22518
22519         * threadpool.c: remove warning.
22520
22521 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22522
22523         * icall.c:
22524         * socket-io.[ch]: Select_internal uses poll() now when available, thus
22525         removing the 1024 limit from select(). Runtime part of the fix for
22526         bug #71203.
22527
22528 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22529
22530         * socket-io.c: when resolving the addresses for the same
22531         host returned by gethostname(), get the local IPs from the interface
22532         list. Loopback addresses are discarded if the are interfaces up with
22533         non-loopback ones. Fixes bug #63265.
22534
22535 2005-05-27  Vladimir Vukicevic  <vladimir@pobox.com>
22536
22537         * appdomain.c, verify.c, object-internals.h, reflection.c:
22538         bumped corlib number to 36, and added new extra_flags field
22539         to ReflectionMethodBuilder and friends.  Fixes #75060.
22540
22541 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22542
22543         * gc.c: register a new weak link only if the object is non-null
22544         (fixes bug#75047).
22545
22546 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22547
22548         * culture-info.h : short time pattern too.
22549
22550 2005-05-26  Atsushi Enomoto  <atsushi@ximian.com>
22551
22552         * culture-info.h : expand long time pattern string length.
22553
22554 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22555
22556         * culture-info-table.h : update (more French date format; #72788).
22557
22558 2005-05-25  Zoltan Varga  <vargaz@freemail.hu>
22559
22560         * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22561         the method is static. Fixes #75029.
22562
22563 2005-05-25  Lluis Sanchez Gual  <lluis@novell.com>
22564
22565         * reflection.c: Update the table_idx field of method builders after
22566         saving the module, since it can change. This is a workaround for
22567         bug #74914. 
22568
22569 2005-05-25  Atsushi Enomoto  <atsushi@ximian.com>
22570
22571         * culture-info-table.h : update (additional French date format).
22572
22573 2005-05-20  Zoltan Varga  <vargaz@freemail.hu>
22574
22575         * icall.c (ves_icall_type_Equals): Revert last change.
22576         
22577         * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22578
22579         * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22580
22581 2005-05-20  Sebastien Pouliot  <sebastien@ximian.com>
22582
22583         * class-internals.h: Added executioncontext_class field to 
22584         MonoDefaults structure.
22585         * domain.c: Cache System.Threading.ExecutionContext class in 
22586         mono_defaults.
22587         * object.c: Capture the ExecutionContext for asynchroneous calls in
22588          mono_async_result_new.
22589         * object-internals.h: Added execution_context and original_context 
22590         fields to MonoAsyncResult. Added execution_context to MonoThread.
22591         * security-manager.c|.h: Added mono_get_context_capture_method to 
22592         return the capture method (if required by the security manager or by
22593         the framework version used).
22594         * threadpool.c: Apply capture (if present) ExecutionContext in 
22595         mono_async_invoke and revert to original context after it completes.
22596
22597 2005-05-19  Atsushi Enomoto  <atsushi@ximian.com>
22598
22599         * culture-info-table.h : updated (real hacky solution for zh-CHT).
22600
22601 2005-05-18  Atsushi Enomoto  <atsushi@ximian.com>
22602
22603         * culture-info-table.h : zh-CHT related workaround.
22604
22605 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22606
22607         * marshal.c (emit_marshal_custom): Add some error checking and call the
22608         methods in the ICustomMarshaler interface. Fixes #74875.
22609         
22610         * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22611         native->managed wrappers.
22612
22613 2005-05-12  Martin Baulig  <martin@ximian.com>
22614
22615         * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22616         here and use the loader lock.
22617
22618         * mono-debug.c: Properly lock when the debugger is not attached.
22619         (mono_debug_init): Release the initial lock if we're not running
22620         in the debugger.
22621
22622 2005-05-12  Zoltan Varga  <vargaz@freemail.hu>
22623
22624         * marshal.c (emit_marshal_custom): Pass through NULL values without
22625         calling the custom marshalling routines.
22626
22627         * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22628         conversion in structures. Fixes #74882.
22629
22630 2005-05-12  Atsushi Enomoto  <atsushi@ximian.com>
22631
22632         * culture-info-table.h : zh-* cultures were missing.
22633
22634 2005-05-12  Lluis Sanchez Gual  <lluis@novell.com>
22635
22636         * threads.c: Added a new event background_change_event which is signaled
22637         when a thread changes its background mode.
22638         Moved here several checks previously done in managed code. The checks
22639         require the thread lock, and using the thread lock in managed code
22640         can result in deadlocks.
22641         Merged Start_internal and Thread_internal into a single method. Now 
22642         Thread_internal does all work of creating and starting a thread.
22643         Added icalls for setting and getting the state of the object. Moved from
22644         managed code to avoid locking there.
22645         Added wait_for_tids_or_state_change() which is called instad of
22646         wait_for_tids when waiting for non-backround threads to end. This method
22647         will return if one of the threads ends or the background_change_event
22648         is signaled.
22649         * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22650         the background mode. This method signals the background_change_event
22651         event.
22652         * icall.c:
22653         * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22654         removed Start_internal.
22655         
22656 2005-05-11  Martin Baulig  <martin@ximian.com>
22657
22658         * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22659         to order of some fields to get proper alignment on 64-bit machines.
22660
22661 2005-05-11  Martin Baulig  <martin@ximian.com>
22662
22663         * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22664         changes as they're broken and completely fuck up the debugger.
22665
22666         * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22667
22668 2005-05-10  Martin Baulig  <martin@ximian.com>
22669
22670         * reflection.c (mono_reflection_generic_class_initialize): Don't
22671         call mono_class_setup_parent() here.
22672
22673 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22674
22675         * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22676         send/receive timeout use an integer in milliseconds. We were using a
22677         struct timeval.
22678
22679 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22680
22681         * locales.c:
22682         (internal_get_cultures): reserve the first slot of the array for the
22683         InvariantCulture, which will be filled in managed code.
22684
22685 2005-05-06  Zoltan Varga  <vargaz@freemail.hu>
22686
22687         * reflection.c (mono_image_fill_module_table): Initialize the
22688         GENERATION field as well.
22689
22690 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22691
22692         * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22693         Monitor.Enter on the object.
22694
22695 2005-05-05  Lluis Sanchez Gual  <lluis@novell.com>
22696
22697         * threads.c: Enable the wait for running threads when exiting.
22698         * icall.c: Suspend all threads before exiting.
22699
22700 2005-05-05  Zoltan Varga  <vargaz@freemail.hu>
22701
22702         * assembly.c (mono_assembly_load_reference): Fix warning.
22703
22704 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22705
22706         * threadpool.c: changed the default number of threads per cpu. From now
22707         on, the default will be 20 + (5 * number of cpus) instead of 50.
22708
22709 2005-05-04  Zoltan Varga  <vargaz@freemail.hu>
22710
22711         * loader.c (mono_method_get_signature_full): Add locking here.
22712
22713 2005-05-03  Lluis Sanchez Gual <lluis@novell.com>
22714
22715         * appdomain.c: Moved methods for parsing and freeing assembly
22716         names to assembly.c.
22717         * assembly.c, domain-internals.h: Created public methods for parsing
22718         assembly names. Fixed mono_assembly_load_with_partial_name:
22719         it now finds the best match, taking into account the version,
22720         token and culture specified in the partial name. Also return
22721         the latest version if no version information is specified.
22722
22723 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22724
22725         * threadpool.c: replace check for SocketAsyncCall class.
22726
22727 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22728
22729         * threadpool-internals.h:
22730         * Makefile.am: added threadpool-internals.h
22731
22732         * threadpool.c: call mono_unhandled_exception on exceptions not handled
22733         that happen in threadpool threads (tested on MS).
22734         (mono_thread_pool_remove_socket): new function that dispatch any pending
22735         AIO call on a socket that is closing. By now only epoll really needs it,
22736         as select/poll wake up when the socket closes.
22737
22738
22739         * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22740
22741 2005-05-01  Zoltan Varga  <vargaz@freemail.hu>
22742
22743         * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22744
22745 2005-05-01  Lluis Sanchez Gual  <lluis@novell.com>
22746
22747         * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22748
22749 2005-04-30  Lluis Sanchez Gual  <lluis@novell.com>
22750
22751         * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22752         has an abort request, convert it into a suspend request.
22753
22754 2005-04-30  Ben Maurer  <bmaurer@ximian.com>
22755
22756         * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22757         warning for the usage of `UnmanagedFunctionPointerAttribute' which
22758         is not supported yet.
22759
22760 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22761
22762         * image.c: register assemblies loaded from data (bundles) in the loaded
22763         assemblies hash. Fixes bug #74772.
22764
22765 2005-04-29  Martin Baulig  <martin@ximian.com>
22766
22767         * class.c (mono_type_get_name_recurse): Update to the new naming
22768         schema from the latest .NET 2.x beta2.
22769         (mono_class_setup_vtable_general): If we're a generic instance,
22770         copy the vtable from our generic type definition and inflate all
22771         the methods in it.
22772
22773         * loader.c (find_method): Update to the new naming schema from the
22774         latest .NET 2.x beta2.
22775
22776 2005-04-29  Raja R Harinath  <harinath@gmail.com>
22777
22778         * class.c (mono_class_init): Add a mono_loader_unlock to the
22779         #74734 fix.
22780
22781 2005-04-28  Zoltan Varga  <vargaz@freemail.hu>
22782
22783         * icall.c (ves_icall_System_Environment_Exit): Remove the 
22784         suspend_all_other_threads () call for the time being, since it can hang.
22785
22786         * threads.c (mono_thread_manage): Similarly, disable the waiting for
22787         the background threads to exit, since it can also hang.
22788
22789         * class.c (mono_class_init): Applied patch from Ankit Jain 
22790         (radical@gmail.com). Avoid pending init errors when a field refers
22791         to a nested class using a typeref. Fixes #74734.
22792
22793         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22794         this for dynamic modules.
22795
22796 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22797
22798         * threads.c: don't wait for threads that are in the process of aborting
22799         or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22800         and waiting for background threads to finish. This makes xsp and
22801         mod-mono-server exit without random length delays and/or hangs.
22802
22803 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22804
22805         * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22806
22807 2005-04-25  Zoltan Varga  <vargaz@freemail.hu>
22808
22809         * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22810         dynamic types to prevent infinite loops. Fixes #74727.
22811
22812         * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22813         ..._is_assignable_to.
22814
22815 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
22816
22817         * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22818
22819 2005-04-25  Martin Baulig  <martin@ximian.com>
22820
22821         Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22822
22823         * domain.c
22824         (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22825
22826         * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22827
22828         * reflection.c (build_compressed_metadata): Set metadata header
22829         version to 2.0.
22830
22831 2005-04-23  Zoltan Varga  <vargaz@freemail.hu>
22832
22833         * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22834         number into an integral and a decimal part. Fixes #70473.
22835
22836         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22837
22838 2005-04-23  Atsushi Enomoto  <atsushi@ximian.com>
22839
22840         * culture-info-table.h : reflected the latest locale-builder output.
22841
22842 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22843
22844         * threadpool.c: check for SuspendRequested too when deciding if
22845         mono_thread_interruption_checkpoint should be called.
22846
22847 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22848
22849         * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22850         * threads.c: remove interruption_mutex and use Interlocked instead. When
22851         suspending all the threads, wait for all the suspended events at once.
22852         If we're shutting down and get an APC that is going to be queued,
22853         call mono_thread_execute_interruption immediately, as the thread might
22854         be sleeping on a pthread condition or mutex.
22855
22856         * icall.c: call mono_runtime_set_shutting_down before suspending the
22857         threads.
22858
22859         Fixes bug #74693. And now xsp is happier when exiting.
22860
22861 2005-04-22  Zoltan Varga  <vargaz@freemail.hu>
22862
22863         * loader.c (mono_stack_walk): Fix #74690.
22864
22865 2005-04-22  Martin Baulig  <martin@ximian.com>
22866
22867         * mono-debug.h (MonoDebugMethodJitInfo): Added
22868         `MonoDebugMethodJitInfo *jit'.
22869
22870         * mono-debug.c (mono_debug_read_method): Cache the
22871         MonoDebugMethodJitInfo in `address->jit'.
22872         (mono_debug_free_method_jit_info): New public method.
22873
22874 2005-04-22  Martin Baulig  <martin@ximian.com>
22875
22876         * class.c (mono_class_is_assignable_from): Disallow
22877         type parameter -> interface.
22878
22879 2005-04-21  Dick Porter  <dick@ximian.com>
22880
22881         * threads.c (mono_thread_create): Turn an assertion into an error.
22882
22883 2005-04-20  Zoltan Varga  <vargaz@freemail.hu>
22884
22885         * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22886         
22887         * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c: 
22888         Fix some gcc 4.0 warnings.
22889
22890 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22891
22892         * file-io.c: fix alt dir separator char on unix systems
22893         and cleanup (fixes bug #71214).
22894
22895 2005-04-19  Lluis Sanchez Gual  <lluis@novell.com>
22896
22897         * marshal.c: Use CALLVIRT instead of CALL when dispatching
22898         a call to a remote domain, since the method may be an
22899         interface method in the client domain. This fixes bug #74192.
22900
22901 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22902
22903         * threadpool.c: recv/send are now performed before going back to managed
22904         code to save one transition.
22905
22906 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22907
22908         * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22909
22910         * metadata/threadpool.c: removed hack to workaround the bug above.
22911
22912         Fixes bug #74618.
22913
22914 2005-04-16  Zoltan Varga  <vargaz@freemail.hu>
22915
22916         * reflection.c reflection.h: Fix handling of parameter defaults in
22917         dynamic methods. Also fixes handling of parameter attributes.
22918         Fixes #74609.
22919
22920         * mono-debug.c (mono_debug_close_image): Fix warning.
22921
22922 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22923
22924         * socket-io.h: replaced old unused field with new 'blocking'.
22925         * threadpool.c: restore socket blocking state on windows(tm).
22926
22927 2005-04-14  Sebastien Pouliot  <sebastien@ximian.com>
22928
22929         * icall.c: don't return the codebase in the AssemblyName[] returned by
22930         ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22931         * object-internals.h: Removed FIXME (fields were presents) and fixed
22932         versioncompat declaration.
22933
22934 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22935
22936         * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22937         not closed, so don't cleanup when it happens.
22938
22939 2005-04-13  Chris Toshok  <toshok@ximian.com>
22940
22941         * mono-debug-debugger.h: change prototype for
22942         mono_debugger_lookup_type.
22943
22944         * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22945         this function, although it should probably be named
22946         mono_debugger_init_type.
22947
22948 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22949
22950         * threadpool.c: fix non-AIO case.
22951
22952 2005-04-13  Zoltan Varga  <vargaz@freemail.hu>
22953
22954         * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22955         the built-in profiler to measure just JIT compilation times.
22956
22957 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22958
22959         * threadpool.c: the epollfd might be closed by another thread at
22960         any time, so ignore EBADF at treat it as a "we're closing" sign.
22961
22962 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22963
22964         * threadpool.c: release the semaphores with a count equals to the number
22965         of working threads in both IO and regular pools. Fixed typo that messed
22966         up the count of IO pool threads. Don't initialize the pipe handles if
22967         we're using epoll.
22968
22969 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22970
22971         * threadpool.c: some systems don't like a NULL when deleting the socket
22972         from epoll.
22973
22974 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22975
22976         * threadpool.c: fix semaphore allocation.
22977
22978 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22979
22980         * threadpool.c: added epoll() based implementation for asynchronous IO
22981         that is used instead of the default poll() when available.
22982         It can be disabled by setting MONO_DISABLE_AIO.
22983
22984 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22985
22986         * threadpool.c: windows needs 'closesocket' and instead of returning
22987         0 when the stream is closed while in select, it returns -1. Fixes bug
22988         #74573.
22989
22990 2005-04-12  Zoltan Varga  <vargaz@freemail.hu>
22991
22992         * class.c (class_compute_field_layout): Fix the regression caused by
22993         the previous try.
22994
22995 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22996
22997         * threadpool.c: separate pool for socket async. IO.
22998         * threadpool.h: mono_max_worker_threads is not a global any more.
22999
23000 2005-04-10  Zoltan Varga  <vargaz@freemail.hu>
23001
23002         * class.c (class_compute_field_layout): Fix #74549.
23003
23004 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23005
23006         * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23007         use 2 connected sockets instead.
23008
23009 2005-04-08  Miguel de Icaza  <miguel@novell.com>
23010
23011         * mono-config.c: Add new entry point for mkbundle
23012         mono_config_parse_memory. 
23013
23014 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23015
23016         * threadpool.c: removed another unused function.
23017
23018 2005-04-08  Ankit Jain  <radical@corewars.org>
23019
23020         * reflection.c (get_default_param_value_blobs): Add 'types'
23021         parameter to get the types encoded in the constant table.
23022         (mono_param_get_objects): Use the type from the constant table,
23023         not the type of the parameter, when creating default values.
23024         Handle null default values correctly.
23025
23026 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23027
23028         * file-io.c:
23029         * file-io.h:
23030         * threadpool.c:
23031         * threadpool.h:
23032         * icall.c:
23033         * socket-io.c: removed dead code for async IO.
23034
23035 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23036
23037         * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23038
23039         * threadpool.c: intercept socket async. calls and pass them to a thread
23040         that is polling and dispatching the job items to the threadpool as
23041         socket become ready. Fixes bugs #71217, #71933.
23042
23043         * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23044         between char and short/ushort arrays.
23045
23046         * socket-io.c: remove dead code.
23047
23048 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23049
23050         * locales.c,
23051           icall.c : removed InternalToUpper_Comp() and
23052           InternalToLower_Comp().
23053
23054 2005-04-06  Atsushi Enomoto  <atsushi@ximian.com>
23055
23056         * char-conversions.h : The tables were incorrectly generated. Should
23057           be generated against invariant culture.
23058
23059 2005-04-04  Zoltan Varga  <vargaz@freemail.hu>
23060
23061         * object.c (mono_runtime_invoke_array): Fix return value when 
23062         passing pre-created valuetype objects to ctors.
23063
23064         * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer 
23065         (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23066         Fixes #74338.
23067
23068 2005-03-30  Sebastien Pouliot  <sebastien@ximian.com>
23069
23070         * domain.c: removed g_assert for runtimesecurityframe_class. This is 
23071         only used with --security and hides the wrong corlib version error.
23072
23073 2005-03-30  Joshua Tauberer  <tauberer@for.net>
23074
23075         * class.c: Changed mono_class_name_from_token so that types
23076         outside of a namespace don't have an initial period.  Improved
23077         the g_warning message used in _mono_class_get when loading
23078         fails.
23079         * assembly.c: In mono_assembly_load_reference, when an assembly
23080         can't be found, "No such file or directory" is misleading and
23081         unhelpful because a few paths were checked for the presence of
23082         the assembly.  When that happens (ENOENT), display a nicer
23083         message indicating the directories that were searched.  In all
23084         cases, the warning is made easier to read for non-hackers.
23085
23086 2005-03-29  Sebastien Pouliot  <sebastien@ximian.com>
23087
23088         * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23089         project/solution.
23090         * appdomain.h|domain.c: Removed inline from functions.
23091         * appdomain.c: Reduced warnings when compiling on windows.
23092         * icall.c: Fixed output_debug declaration to gunichar2*.
23093         * mono-config.c: Reduced warnings when compiling on windows.
23094         * rand.c: Added missing "windows.h". Added missing return value.
23095         * rawbuffer.c: Added missing winsock2.h for windows.
23096         * sysmath.h: Added mono-compiler.h header to allow/ease 
23097         compilation with non-GCC compilers.
23098         * threads.c: Fixed declarations to compile with VS.NET C compiler.
23099         Removed cast warnings.
23100
23101         Adapted from the work of J Lothian (for VC6).
23102
23103 2005-03-29  Zoltan Varga  <vargaz@freemail.hu>
23104
23105         * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23106         from default_path.
23107
23108 2005-03-27  Zoltan Varga  <vargaz@freemail.hu>
23109
23110         * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23111         the 2.0 profile.
23112
23113 2005-03-27  Raja R Harinath  <harinath@gmail.com>
23114
23115         * Makefile.am (assembliesdir): Fix.  If it is arch-dependent it
23116         has to be in $(exec_prefix).  $(prefix) is for arch-independent
23117         stuff, and it would probably use $(prefix)/share rather than
23118         $(prefix)/lib.
23119
23120 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23121
23122         * console-io.c: added 2 includes that might be missing.
23123
23124 2005-03-24  Zoltan Varga  <vargaz@freemail.hu>
23125
23126         * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23127         profile.
23128
23129         * reflection.c (create_custom_attr): Allocate the params array using
23130         alloca so it gets GC tracking.
23131
23132 2005-03-23  Chris Toshok  <toshok@ximian.com>
23133
23134         * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23135         out some spew.
23136
23137 2005-03-24  Raja R Harinath  <rharinath@novell.com>
23138
23139         * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23140         changes to pick up any changes in prefix, etc.
23141
23142 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23143
23144         * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23145         
23146         * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23147         * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23148
23149 2005-03-23  Zoltan Varga  <vargaz@freemail.hu>
23150
23151         * class-internals.h object-internals.h class.c reflection.c: Extend the
23152         mono_lookup_dynamic_token () function to return the class of the
23153         token as well. 
23154
23155         * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23156         well. Fixes #73848.
23157
23158 2005-03-23  Sebastien Pouliot  <sebastien@ximian.com>
23159
23160         * security-manager.c: Skip inheritance checks for intra-corlib
23161         class inheritance and method overrides. This skips a lot of checks
23162         and (anyway) permissions cannot work until corlib is loaded.
23163
23164 2005-03-23  Martin Baulig  <martin@ximian.com>
23165
23166         * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23167         MONO_TYPE_GENERICINST.  
23168
23169 2005-03-23  Martin Baulig  <martin@ximian.com>
23170
23171         * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23172
23173 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23174
23175         * class.c: added locking comments to some functions.
23176         Cache the interface offsets arrays (saves about 20 KB
23177         of runtime memory in a typical app).
23178         Reduce the time overhead in mono_class_setup_supertypes ().
23179
23180 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23181
23182         * icall.c: speedup and fix leaks in GetMethodsByName and
23183         GetPropertiesByName.
23184
23185 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23186
23187         * reflection.c: some locking fixes.
23188
23189 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23190
23191         * metadata.c: added missing break in case statement.
23192
23193 2005-03-22  Zoltan Varga  <vargaz@freemail.hu>
23194
23195         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23196         typedbyref return values. Fixes #73941.
23197
23198 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
23199
23200         * security-manager.c|h: Added demandunmanaged method and 
23201         suppressunmanagedcodesecurity class to MonoSecurityManager.
23202         Renamed aptc class to allowpartiallytrustedcallers.
23203
23204 2005-03-17  Martin Baulig  <martin@ximian.com>
23205
23206         * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23207
23208 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23209
23210         * file-io.c: disabled file async. IO using aio_*. It uses the
23211         threadpool now. Workaround for bug #73718.
23212
23213 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23214
23215         * assembly.h, mono-config.c: added code to deal with bundled configs
23216         for bundled assemblies.
23217
23218 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23219
23220         * *.c, private.h: cleanup, removing old private.h header file.
23221
23222 2005-03-16  Zoltan Varga  <vargaz@freemail.hu>
23223
23224         * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23225         and throw_on_unmappable_char attributes.
23226
23227 2005-03-13  Sebastien Pouliot  <sebastien@ximian.com>
23228
23229         * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23230         _ProcessName_internal.
23231
23232 2005-03-13  Zoltan Varga  <vargaz@freemail.hu>
23233
23234         * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23235         #73631.
23236
23237         * icall.c threads.c threads-types.h: Remove slothash icalls as they
23238         are no longer used.
23239
23240 2005-03-11  Zoltan Varga  <vargaz@freemail.hu>
23241
23242         * object.c (compute_class_bitmap): Add support for generics. Fixes
23243         #73527.
23244
23245 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23246
23247         * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23248
23249 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23250
23251         * filewatcher.c: commented out the code for windows watcher, as we don't
23252         use it (we use the managed implementation instead).
23253
23254 2005-03-10  Zoltan Varga  <vargaz@freemail.hu>
23255
23256         * object-internals.h (MonoThread): Remove 'unused1' field.
23257
23258         * appdomain.c: Bump corlib version.
23259
23260         * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23261
23262         * reflection.c (mono_reflection_create_runtime_class): Remove the
23263         AssemblyBuilder.Save optimization since it causes too many problems.
23264
23265 2005-03-10  Sebastien Pouliot  <sebastien@ximian.com>
23266
23267         * exception.c|h: Added mono_get_exception_reflection_type_load to
23268         create a ReflectionTypeLoadException object.
23269         * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23270         to return NULL is a InheritanceDemand fails during reflection. Updated
23271         ves_icall_System_Reflection_Assembly_GetTypes to throw a 
23272         ReflectionTypeLoadException if an InheritanceDemand fails during 
23273         reflection. Added icall mapping for GetLinkDemandSecurity.
23274         * security-manager.c|h: Added ves_icall_System_Security_
23275         SecurityManager_GetLinkDemandSecurity internal call to return the
23276         class and methods permissions set for a LinkDemand. Removed unused
23277         fields in MonoSecurityManager.
23278
23279 2005-03-10  Martin Baulig  <martin@ximian.com>
23280
23281         * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23282         it's a generic instance.
23283
23284 2005-03-09  Zoltan Varga  <vargaz@freemail.hu>
23285
23286         * reflection.c (mono_get_object_from_blob): Applied patch from
23287         Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23288
23289         * class.c (mono_class_is_assignable_from): Another try at fixing 
23290         #73469 without breaking anything.
23291
23292 2005-03-08  Zoltan Varga  <vargaz@freemail.hu>
23293
23294         * class.c: (mono_class_is_assignable_from): Revert the last changes
23295         since they don't work with generics.
23296         
23297         * class.c (mono_class_is_assignable_from): Fix build bustage.
23298
23299         * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23300         the managed IsAssignableFrom method. Fixes #73469.
23301
23302         * reflection.c (mono_reflection_call_is_assignable_from): New helper
23303         function.
23304
23305 2005-03-04  Zoltan Varga  <vargaz@freemail.hu>
23306
23307         * object.c (mono_load_remote_field_new): Fix returning uninitialized
23308         memory when the remoting callback does not sets the out arguments.
23309         Fixes #73007.
23310
23311         * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23312         by mistake.
23313
23314         * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23315
23316         * object-internals.h (MonoStackFrame): Sync with managed object layout.
23317
23318         * appdomain.c: Bump corlib version.
23319
23320 2005-03-03  Zoltan Varga  <vargaz@freemail.hu>
23321
23322         * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23323         function.
23324
23325         * threads.c (mono_thread_attach): Detect threads which are not started
23326         by the GC pthread wrappers.
23327
23328 2005-03-03  Sebastien Pouliot  <sebastien@ximian.com>
23329
23330         * icall.c: Added new icall for RNG.
23331         * rand.c|h: Added new icall to open the RNG. This allows to share a 
23332         single handle on Linux to access /dev/urandom and fix #73183.
23333
23334 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23335
23336         * object.c: setting the new vtable in a transparent proxy object must
23337         not change the GC descriptor.
23338
23339 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23340
23341         * object.c: fixed compilation without GCJ support.
23342         * reflection.c: for runtime-created types ensure klass->has_references
23343         is correct (bug #73215).
23344
23345 2005-03-02  Martin Baulig  <martin@ximian.com>
23346
23347         * class.c (mono_class_is_assignable_from): Make this work if
23348         `oklass' is a generic instance; fixes #72831.
23349
23350 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23351
23352         * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23353         with hasthis set.
23354         
23355         * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23356
23357         * marshal.c: Reorganize native->managed marshalling code to also use
23358         the emit_marshal_... functions.
23359
23360 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23361
23362         * object.c: typed allocs have issues with bitmap sizes > 30,
23363         so check for max_set >= 30.
23364
23365 2005-03-01  Zoltan Varga  <vargaz@freemail.hu>
23366
23367         * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23368         managed code. Fixes #73012.
23369
23370         * metadata.h (MonoMarshalSpec): Add elem_mult field.
23371
23372         * metadata.c reflection.c: Load/Emit elem_mult as well.
23373         
23374         * metadata.h (MonoMarshalSpec): Add comment.
23375
23376         * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23377
23378         * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23379         num_elem to -1 if not given.
23380
23381         * object-internals.h (MonoReflectionMarshal): Add has_size field.
23382
23383         * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23384         given values.
23385
23386 2005-03-01  Marek Safar  <marek.safar@seznam.cz>
23387
23388         * null-gc.c (mono_gc_free_fixed): Was not compilable.
23389
23390 2005-02-28  Zoltan Varga  <vargaz@freemail.hu>
23391
23392         * reflection.c (encode_marshal_blob): Encode param_num field as well.
23393
23394         * object-internals.h (MonoReflectionMarshal): Add param_num field.
23395
23396 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23397
23398         * object.c: generalized the reference bitmap creation
23399         and added hooks for the new GC.
23400         * class-internals.c: removed the gc_bitmap field from MonoClass.
23401
23402 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23403
23404         * domain.c: help the compiler to produce better code
23405         in mono_jit_info_table_find ().
23406
23407 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23408
23409         * object.c: make all allocations look typed.
23410
23411 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23412
23413         * socket-io.c: load Mono.Posix if it's not loaded already
23414         (fixes bug#73033).
23415
23416 2005-02-24  Martin Baulig  <martin@ximian.com>
23417
23418         * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23419         * reflection.c (dup_type): Likewise.
23420
23421 2005-02-24  Zoltan Varga  <vargaz@freemail.hu>
23422
23423         * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23424         Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23425
23426 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23427
23428         * domain.c, threads.c, object-internals.h: make the critical thread
23429         local vars use the fast access mode (even when we're compiled in
23430         a lib). Provide accessors to be used by the jit during codegen.
23431
23432 2005-02-24  Carlos Alberto Cortez <calberto.cortez@gmail.com>
23433
23434         * appdomain.c: Changed hook functios behavior to include
23435         support for the reflection only assemblies. Some icalls were changed
23436         to support the mentioned assemblies too. Signatures of static methods
23437         try_assembly_resolve and real_load now have an additional parameter:
23438         refonly.
23439
23440         * assembly.c: General changes to mono_assembly_ methods to support
23441         reflection only api. Functions mono_assembly_open, mono_assembly_load,
23442         mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23443         suffix, to support an additional gbool parameter to specify whether
23444         the assembli is reflection only or not. Created some new hook functions 
23445         to add support for reflection only assemblies. Signatures of static 
23446         methods load_in_path, search_loaded, and mono_assembly_load_from_gac 
23447         have now an additional parameter: refonly.
23448
23449         * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23450         indicating whether the assembly is reflection only or not.
23451
23452         * exception.c: Add mono_get_exception_invalid_operation.
23453
23454         * icall.c: Throw an InvalidOperationException when trying to invoke
23455         a property/method/event, or trying to set/get the value of a field.
23456         Also add an icall to retrieve the ref_only flag to the
23457         MonoReflectionAssembly.
23458
23459 2005-02-23  Chris Toshok  <toshok@ximian.com>
23460
23461         Part of fix for #72827.
23462         * mono-debug.c (mono_debug_add_method): add lexical block data to
23463         the info we write.  Kind of a hack at the moment - we copy the
23464         lexical block info from the MonoDebugMethodInfo to the
23465         MonoDebugMethodJitInfo here, before writing it.
23466         (mono_debug_read_method): read the lexical block info.
23467
23468         * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23469
23470         * debug-mono-symfile.h: add lexical block support.
23471
23472         * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23473         support.
23474
23475 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23476
23477         * loader.c (mono_lookup_pinvoke_call): Fix warning.
23478
23479         * object.c (mono_runtime_free_method): Call mono_free_method () and
23480         put the TODOs there.
23481
23482         * loader.c (mono_free_method): Free up most memory allocated for 
23483         dynamic methods.
23484
23485 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23486
23487         * reflection.c: properly flag a Type argument to a
23488         named custom attr value (bug #72248).
23489
23490 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23491
23492         * reflection.c: reduce code duplication in named custom
23493         attribute encoding.
23494
23495 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23496
23497         * reflection.c: properly encode custom attrs of type object
23498         (bug #72649).
23499
23500 2005-02-23  Zoltan Varga  <vargaz@freemail.hu>
23501
23502         * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23503
23504 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23505
23506         * socket-io.c: load System.dll if it's not loaded already
23507         (bug #72850 and #70477).
23508
23509 2005-02-21  Martin Baulig  <martin@ximian.com>
23510
23511         * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23512         generic instances.
23513
23514 2005-02-21  Martin Baulig  <martin@ximian.com>
23515
23516         * reflection.c (mono_image_build_metadata): We also need to
23517         "fixup" the MethodImpl table after we computed the final method
23518         indices.  Call fixup_methodimpl() to do that.
23519         (fixup_methodimpl): New private method.
23520
23521 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23522
23523         * assembly.c: special case mscorlib.dll (bug#72536),
23524         patch from Carlos Alberto Cortez.
23525
23526 2005-02-20  Zoltan Varga  <vargaz@freemail.hu>
23527
23528         * threads-types.h threads.c: Fix build bustage.
23529
23530         * threads.c: Use a union for long<->double conversions.
23531
23532         * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23533         functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23534
23535         * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock 
23536         containing the checkpoint call with NOT_TAKEN.
23537         
23538         * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt 
23539         checkpoint before pushing the arguments, so they won't have to be
23540         spilled to stack.
23541
23542 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23543
23544         * domain.c, assembly.c, domain-internals.h: make some data
23545         const and relocation-free.
23546
23547 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23548
23549         * object.c, appdomain.c, class-internals.h: introduce the
23550         MonoClassRuntimeInfo structure to hold the info needed to
23551         use a class at runtime. Made mono_class_vtable() lock-free
23552         for all the appdomains.
23553
23554 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23555
23556         * metadata-internals.h, image.c: introduce a per-image mempool to
23557         be used for memory that has the same lifetime as the image.
23558
23559 2005-02-18  Lluis Sanchez Gual  <lluis@novell.com>
23560
23561         * domain.c: In mono_init_internal(), instead of selecting the first
23562         runtime version supported by an executable, get a list of all
23563         supported versions and select the one for which an mscorlib exists
23564         (since even if the runtime supports a given version, it doesn't mean
23565         that the framework for that version is installed).
23566         Modified get_runtimes_from_exe to support this behavior.
23567         In supported_runtimes, added information about additional system
23568         assembly versions.
23569         
23570         * assembly.c: Added support for more than one system assembly version
23571         per runtime version. Updated the assembly list.
23572         In mono_assembly_remap_version, removed the initial version check,
23573         since we don't know to which version we need to compare until we
23574         get the version set on which the assembly is based.
23575         Moved the code for loading corlib into the new method
23576         mono_assembly_load_corlib(), so it can be used by the initialization
23577         code.
23578         
23579         * domain-internals.h: Updated data structures and added declaration
23580         for mono_assembly_load_corlib.
23581
23582 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23583
23584         * reflection.c (resolve_object): Fix the creation of the signature in 
23585         the SignatureHelper case.
23586
23587         * assembly.c (mono_assembly_remap_version): Fix binary search.
23588         
23589 2005-02-17  Sebastien Pouliot  <sebastien@ximian.com>
23590  
23591         * class.c: Added inheritance check when a method is overloaded (from a
23592         virtual method or when implementing an interface) and when a class is
23593         inherited. Added functions to set a failure for a class and to 
23594         retreive the exception from a failure.
23595         * class-internals.h: Added fields to MonoClass to keep the exception
23596         information status for inheritance (or other exceptions) to be thrown
23597         later (i.e. not at load time).
23598         * object.c: Throw the inheritance SecurityException when a type is to 
23599         be created with either class or method inheritance violations.
23600         * reflection.c|h: Fix when getting declsec from a class. Removed 
23601         unrequired code for class. Improved sanity in parameter naming.
23602         * security-manager.c|h: Added functions to check for class and method
23603         inheritance.
23604
23605 2005-02-17  Zoltan Varga  <vargaz@freemail.hu>
23606
23607         * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23608         and has_finalize in dynamic types as well.
23609
23610 2005-02-17  Atsushi Enomoto  <atsushi@ximian.com>
23611
23612         * culture-info-table.h : fixed currency format for en-GB (and so on).
23613
23614 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23615
23616         * gc.c: ensure the GC handles never have 0 as a value.
23617
23618 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23619
23620         * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23621         a pointer to a struct to unmanaged code. Fixes #72625.
23622
23623 2005-02-16  Martin Baulig  <martin@ximian.com>
23624
23625         * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23626
23627 2005-02-16  Zoltan Varga  <vargaz@freemail.hu>
23628
23629         * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23630
23631 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23632
23633         * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23634
23635         * marshal.c (mono_ftnptr_to_delegate): If the delegate has the 
23636         UnmanagedFunctionPointerAttribute, use it for determining calling convention
23637         etc. Fixes #71471.
23638
23639         * reflection.c (mono_custom_attrs_get_attr): New helper function.
23640
23641         * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23642
23643 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23644
23645         * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23646         changes to make the current context a field in MonoThread.
23647
23648 2005-02-15  Zoltan Varga  <vargaz@freemail.hu>
23649
23650         * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23651         the last change.
23652         
23653         * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23654         extracted from mono_marshal_get_native_wrapper.
23655
23656         * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23657         to create wrappers around native functions.
23658
23659         * marshal.c (mono_ftnptr_to_delegate): Add support for creating 
23660         delegates for arbitrary function pointers. Fixes #71472.
23661
23662 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23663
23664         * threads.c: cleaned up the code a little.
23665
23666 2005-02-15  Martin Baulig  <martin@ximian.com>
23667
23668         * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23669         the data table.
23670
23671         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23672         allocate larger chunks if needed.
23673
23674 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23675
23676         * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23677         in by mistake.
23678
23679 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23680
23681         * domain.c: keep the domains in an array and ensure the domain ids
23682         are kept small, so they can be used as indexes to domain-specific data
23683         with a small memory overhead.
23684
23685 2005-02-14  Zoltan Varga  <vargaz@freemail.hu>
23686
23687         * icall.c: Handle byref types in Type icalls. Fixes #72544.
23688
23689 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23690
23691         * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23692
23693 2005-02-13  Zoltan Varga  <vargaz@freemail.hu>
23694
23695         * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23696
23697         * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23698         values.
23699
23700         * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23701         
23702 2005-02-12  Ben Maurer  <bmaurer@ximian.com>
23703
23704         * domain-internals.h: add the hashtable here.
23705
23706         * class-internals.h: Remove `info' from MonoMethod
23707
23708         * domain.c: Add a new hashtable, jit_trampoline_hash
23709
23710 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23711
23712         * object.c: don't set the value of static fields
23713         (fixes bug#72494).
23714
23715 2005-02-11  Martin Baulig  <martin@ximian.com>
23716
23717         * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23718         (mono_debug_add_method): Silently ignore the method if it's too big.
23719         (mono_debug_add_type): Likewise.
23720
23721 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23722
23723         * threads.c, appdomain.c: remove #ifdefs from the code.
23724
23725 2005-02-10  Sebastien Pouliot  <sebastien@ximian.com>
23726
23727         * metadata-internals.h: Added flags to MonoAssembly to cache the most
23728         common security informations. This allows us to stay in unmanaged code
23729         when doing LinkDemand and it's special cases (except for the first 
23730         time for initialization). The flags a very much used with --security.
23731         * reflection.c|h: Added code to get declarative security attributes 
23732         for LinkDemand and InheritanceDemand. This required to refactor the
23733         existing code for Demand.
23734         * security-manager.c|h: Added new method fields for the special cases
23735         of LinkDemand.
23736
23737 2005-02-10  Martin Baulig  <martin@ximian.com>
23738
23739         * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23740         (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23741
23742 2005-02-10  Martin Baulig  <martin@ximian.com>
23743
23744         * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23745         debugging code; this is almost a complete rewrite.
23746
23747         * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23748
23749 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23750
23751         * domain.c, object.h: expose mono_string_equal () and 
23752         mono_string_hash ().
23753         * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23754         it's implemented in managed code.
23755
23756 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23757
23758         * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23759         lo leak objects between appdomains.
23760
23761 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23762
23763         * assembly.c: old compilers compilation fix from 
23764         robertj@gmx.net (Robert Jordan).
23765
23766 2005-02-09  Ben Maurer  <bmaurer@ximian.com>
23767
23768         * class-internals.h: Little reminder for the future.
23769
23770         * debug-helpers.c: Fix up wrapper_type_names
23771
23772 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23773
23774         * image.c, metadata-internals.h: when loading an image from a file,
23775         mmap all of it and use the same codepaths as when using a
23776         in-memory image: the code is simpler and we use less memory
23777         (both writable and readonly).
23778
23779 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23780
23781         * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23782         API to alloc runtime data structures that need to be tracked by the
23783         GC and contain pointers.
23784         * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23785         make the code more readable and eventually use a different GC.
23786
23787 2005-02-09  Zoltan Varga  <vargaz@freemail.hu>
23788
23789         * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23790         for out arguments.
23791         
23792 2005-02-09  Lluis Sanchez Gual  <lluis@novell.com>
23793
23794         * object.c: In release_type_locks(), don't release the cctor lock
23795         if it has already been released. This fixes a crash in the
23796         thread5 test.
23797
23798 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23799
23800         * gc.c, marshal.c, icall.c: register a delegate for finalization
23801         only when the native function pointer has been allocated for it.
23802
23803 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23804
23805         * object.c: cleaned up some code, allocate objects that are
23806         pointer free with the atomic malloc variant. Allocate memory
23807         for static data from the mempool if it's pointer-free.
23808         Allocate the bounds array at the end of the array data, when needed.
23809         * object-internals.h, object.h: move a private function in a private
23810         header.
23811         * class.c: handle missing case in tracking references in fields.
23812
23813 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23814
23815         * class.c, class-internals.h: keep track if a type has
23816         reference fields in either the instance or static fields.
23817
23818 2005-02-07  Lluis Sanchez Gual  <lluis@novell.com>
23819
23820         * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23821         and renamed to MonoRuntimeInfo. Added fields to store the expected
23822         framework assembly version. Changed mono_get_framework_version and
23823         mono_get_runtime_version for a single mono_get_runtime_info method.
23824         
23825         * assembly.c: Added method to remap system assembly versions to the
23826         current executing runtime version. Removed old mapping code.
23827         Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23828         
23829         * icall.c, reflection.c: Track api changes.
23830
23831 2005-02-06  Miguel de Icaza  <miguel@novell.com>
23832
23833         * loader.c (method_from_memberref): Improve error reporting,
23834         produce the class name instead of the typeref/typedef index. 
23835
23836 2005-02-07  Zoltan Varga  <vargaz@freemail.hu>
23837
23838         * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23839
23840 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23841
23842         * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23843         stdcall and charset name mangling.  Reorganize the code and add
23844         some tracing stuff.
23845
23846 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23847
23848         * monodiet.c: More iters!
23849
23850         * marshal.c: Iter usage.
23851
23852         * icall.c: Iter usage.
23853
23854         * object.c: Use iters.
23855
23856         * debug-helpers.c: More iters
23857
23858 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23859
23860         * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23861         under win32.
23862
23863 2005-02-05  Ben Maurer  <bmaurer@ximian.com>
23864
23865         * mono-debug-debugger.c: use iters
23866
23867         * class.c, class-internals.h: mono_class_setup_events is static
23868         now
23869
23870         * All callers: use iters
23871
23872 2005-02-05  Zoltan Varga  <vargaz@freemail.hu>
23873
23874         * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23875         Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23876
23877 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23878
23879         * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23880
23881         * marshal.h: Add prototypes for ldfld/stfld_remote.
23882
23883         * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23884         this is called during startup.
23885         
23886 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23887
23888         * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23889         MonoThreadsSync struct private in monitor.c. Changed the way
23890         MonoThreadsSync is allocated so it's faster and there is no
23891         need to keep track of it with a finalizer and it uses less memory.
23892         This also finally allows us to allocate mono objects as ptrfree when
23893         there are no reference fields.
23894
23895 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23896
23897         * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23898         disappearing link to the GC interface and use them to simplify
23899         the gchandles code.
23900
23901 2005-02-04  Zoltan Varga  <vargaz@freemail.hu>
23902
23903         * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23904         stfld_remote which call mono_load/store_field_new. This allows methods
23905         calling ldfld/stfld wrappers to be AOTed.
23906
23907         * console-io.c: Include sys/filio.h under solaris.
23908         
23909         * console-io.c: Include curses.h if needed correctly.
23910
23911 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23912         
23913         * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23914         method->klass as well.
23915
23916         * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23917
23918         * class.c (mono_class_init): Switch on lazy initialization of 
23919         methods.
23920
23921         * class.c (mono_class_get_finalizer): Handle the case when the 
23922         finalizer is inherited.
23923
23924 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23925
23926         * console-io.c: <curses.h> is needed by term.h on solaris.
23927
23928 2005-02-03  Ben Maurer  <bmaurer@ximian.com>
23929
23930         * icall.c, class-internals.h, monodiet.c, class.c: Remove
23931         mono_class_setup_properties where possible. Remove this ftn from
23932         the header file, and make it static.
23933
23934 2005-02-03  Zoltan Varga  <vargaz@freemail.hu>
23935
23936         * loader.c: Add missing setup_... call.
23937
23938         * class.c: Add missing setup_... calls.
23939
23940         * class.c (mono_class_init): Switch on lazy initialization of 
23941         the generic vtable.
23942         
23943         * class.c (mono_class_init): Fix generics broken by the recent changes.
23944
23945         * monodiet.c (handle_type): Add missing setup_... calls.
23946
23947         * class.c: Back out garbage in previous patch.
23948         
23949         * class.c: Add missing setup_... calls.
23950
23951         * class.c (mono_class_get_method_from_name_flags): Avoid calling
23952         mono_class_setup_methods () if possible.
23953
23954         * class-internals.h (MonoClass): Add 'has_cctor' flag.
23955
23956         * class-internals.h (MonoCachedClassInfo): New structure.
23957
23958         * class.c: Initialize properties and events fields of MonoClass lazily.
23959
23960         * class.c: Add infrastructure for lazily initializing the methods and
23961         vtable fields of MonoClass. Not yet used.
23962
23963         * class.c (mono_class_get_finalizer): New helper function.
23964
23965         * class.c: Add infrastructure for loading some class related data from
23966         an AOT file.
23967
23968         * object.c: Add infrastructure for initializing the vtable from data
23969         in the AOT file.
23970
23971         * gc.c (run_finalize): Use mono_class_get_finalizer ().
23972
23973         * class.c loader.c object.c icall.c gc.c reflection.c: Call the
23974         appropriate initialization function before accessing parts of the
23975         MonoClass structure.
23976
23977         * marshal.c: Fix warnings.
23978         
23979         * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
23980
23981         * mono-debug-debugger.c (get_exception_message): Use 
23982         mono_class_get_method_from_name_flags ().
23983
23984 2005-02-02  Ben Maurer  <bmaurer@ximian.com>
23985
23986         * reflection.c, appdomain.c: Replace a few manual searches that
23987         Zoltan missed. (Paolo approved this part of my initial patch).
23988
23989 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
23990
23991         * profiler.c: disable recording statistical events at report time.
23992
23993 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23994
23995         * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
23996         to byteswap arrays of enum values, too (bug #72080).
23997
23998 2005-02-02  Zoltan Varga  <vargaz@freemail.hu>
23999
24000         * appdomain.c (set_domain_search_path): Allow this to be called if
24001         domain->setup is not yet set.
24002
24003         * loader.c (mono_method_get_index): New helper function.
24004
24005         * loader.c reflection.c: Use mono_method_get_index ().
24006
24007         * class.c (mono_class_get_method_from_name_flags): New helper method.
24008
24009         * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24010         this.
24011
24012         * class.c (mono_class_get_cctor): New helper method.
24013
24014         * string-icalls.c object.c class.c marshal.c reflection.c: Use
24015         mono_class_get_method () to look up methods.
24016
24017 2005-02-01  Miguel de Icaza  <miguel@novell.com>
24018
24019         * console-io.c: Fix the build, this should work on Windows.
24020
24021 2005-01-31  Ben Maurer  <bmaurer@ximian.com>
24022
24023         * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24024         be set to null to keep things valid
24025
24026 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24027
24028         * icall.c: added Console 2.0 icalls.
24029         * Makefile.am: added console-io.[ch]
24030         * console-io.[ch]: internal calls for Console 2.0 API.
24031
24032 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24033
24034         * class.c: make sure we consider all the interfaces
24035         when calculating max_interface_id (bug found by
24036         Jeroen Frijters running ikvm).
24037
24038 2005-01-31  Zoltan Varga  <vargaz@freemail.hu>
24039
24040         * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24041         valuetype fields to null.
24042
24043         * object.c (set_value): Ditto. Fixes #71669.    
24044
24045 2005-01-31  Martin Baulig  <martin@ximian.com>
24046
24047         * metadata.c (mono_metadata_has_generic_params): New public
24048         function; checks whether something is a generic method.
24049
24050 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24051
24052         * appdomain.c: fix infinite recursion when adding assemblies.
24053
24054 2005-01-30  Sebastien Pouliot  <sebastien@ximian.com>
24055
24056         * object.c: Fix small typo to return all items for Environment.
24057         GetCommandLineArgs.
24058
24059 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24060
24061         * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24062         reflection.c: more domain and assembly-unload related fixes
24063         and memory leaks plugs.
24064
24065 2005-01-30  Zoltan Varga  <vargaz@freemail.hu>
24066
24067         * 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.
24068
24069 2005-01-29  Ben Maurer  <bmaurer@ximian.com>
24070
24071         * loader.c (mono_method_signature): Make this method lazy
24072         (mono_get_method_from_token): Don't computate the signature here.
24073
24074         Doing this saves quite a bit of memory. I got 90 kb on starting up
24075         monodoc. It should also save some disk reads on startup.
24076
24077         * *: MonoMethod->signature might be NULL now. You *MUST* use
24078         mono_method_signature.
24079
24080 2005-01-29  Zoltan Varga  <vargaz@freemail.hu>
24081
24082         * object.c (mono_runtime_get_main_args): Return an array from the
24083         current domain here. Fixes #71938.
24084
24085 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24086
24087         * monitor.c: formatting changes to comply with the
24088         mono coding style and remove #ifdefs from the code.
24089
24090 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24091
24092         * metadata.c, private.h: remove some unneeded data
24093         and use a more compact representation for table schemas.
24094
24095 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24096
24097         * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24098         to get a better distribution in hash tables.
24099         * *.c: use mono_aligned_addr_hash() where appropriate.
24100         * assembly.c: make var static.
24101
24102 2005-01-28  Zoltan Varga  <vargaz@freemail.hu>
24103
24104         * domain-internals.h: Put MonoJitInfo on a diet.
24105
24106         * domain.c: Fix a warning.
24107
24108 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24109
24110         * gc.c: rework the gc handles code to reuse handles
24111         when freed.
24112
24113 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24114
24115         * domain.c: fixed long standing bug in mono_string_equal() which
24116         was brought to light with the ldstr changes.
24117
24118 2005-01-26  Sebastien Pouliot  <sebastien@ximian.com>
24119
24120         * reflection.c: Remove warning by adding missing include for marshal.h
24121
24122 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24123
24124         * domain.c, object.c: change the ldstr_table to hold
24125         MonoString* as keys: makes the runtime isinterned lookup
24126         faster and simplifies memory management.
24127
24128 2005-01-25  Sebastien Pouliot  <sebastien@ximian.com> 
24129  
24130         * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24131         possible to add imperative security checks before calling the icall.
24132         * reflection.c: Return security attributes on the original MonoMethod
24133         (and not the wrapped one). This fix permissions on icalls.
24134
24135 2005-01-25  Dick Porter  <dick@ximian.com>
24136
24137         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24138         the check for mktime() support actually test the mktime() return
24139         value.  "Fixes" bug 71682, though the output is still different to
24140         MS.
24141
24142 2005-01-25  Martin Baulig  <martin@ximian.com>
24143
24144         * class.c (mono_class_is_assignable_from): Make this work for
24145         generic instances.
24146
24147 2005-01-24  Ben Maurer  <bmaurer@ximian.com>
24148
24149         * marshal.c (mono_string_utf8_to_builder)
24150         (mono_string_builder_to_utf16): We might not have ownership of the
24151         string. In thise case, we need to create a new buffer.
24152
24153         * object-internals.h (mono_stringbuilder_capacity): sb->str might
24154         be null, in which case, use the default capacity.
24155
24156 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24157
24158         * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24159         GC events to the profiler.
24160
24161 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24162
24163         * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24164         if you don't want the GC to run.
24165
24166 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24167
24168         * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24169         start providing a GC API and keeping different implementations in
24170         their own file.
24171         * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24172
24173 2005-01-22  Ben Maurer  <bmaurer@ximian.com>
24174
24175         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24176         mmap rather than allocating a huge buffer.
24177         (mono_debug_close_mono_symbol_file): Free the buffer allocated
24178         above.
24179
24180 2005-01-22  Sebastien Pouliot  <sebastien@ximian.com>
24181
24182         * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24183         and CheckExecutionRights.
24184         * reflection.c|h: Keep the index of the declarative security to be 
24185         used, instead of the pointer, when AOT compiler is used. Also add 
24186         class initialization when requesting demands.
24187         * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24188         CheckExecutionRights. Both properties are now FALSE by default, and
24189         unmodifiable, unless the --security option is used.
24190
24191 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24192
24193         * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24194         reflection.c: properly refcount images and assemblies, many leaks fixed.
24195
24196 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24197
24198         * threadpool.c: increase the timeout for threads in the thread pool to
24199         10s.  Fixes bug #67159.
24200
24201 2005-01-20  Bernie Solomon  <bernard@ugsolutions.com>
24202
24203         * class-internals.h: Sun's compiler insists on explicit
24204         signed on bit fields to handle then correctly.
24205
24206 2005-01-19  Miguel de Icaza  <miguel@ximian.com>
24207
24208         * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24209         Make the size of the array fit only the number of invalid path
24210         chars that we have.
24211
24212         * class.c (_mono_class_get): Improve the error reporting when a
24213         class referenced is not found, to assist debugging. 
24214
24215 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24216
24217         * threads.c: fix off-by-one error.
24218         * domain.c: free data allocated in the domain.
24219
24220 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24221
24222         * reflection.c (mono_method_body_get_object): Fill out exception info
24223         as well.
24224
24225         * object-internals.h: Add MonoReflectionExceptionHandlingClause 
24226         structure.
24227         
24228 2005-01-19  Martin Baulig  <martin@ximian.com>
24229
24230         * loader.c (mono_get_method_constrained): Make this work again.
24231
24232 2005-01-19  Zoltan Varga  <vargaz@freemail.hu>
24233
24234         * object-internals.h (_MonoReflectionMethodBody): Make local_index a 
24235         guint16 to match the managed side.
24236
24237         * reflection.c (mono_reflection_body_get_object): Fill out local
24238         variables array.
24239
24240         * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24241         as well.
24242
24243         * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24244         'local_var_sig_token'.
24245
24246 2005-01-18  Zoltan Varga  <vargaz@freemail.hu>
24247
24248         * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks 
24249         System.Drawing.
24250
24251         * reflection.c (mono_method_body_get_object): Handle abstract and
24252         runtime methods.
24253
24254 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24255
24256         * marshal.c, loader.c, class-internals.h, reflection.c:
24257         store the emthod data for a wrapper in an array instead of a list.
24258
24259 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24260
24261         * marshal.c: change the code to allocate memory more
24262         conservatively for method wrappers.
24263
24264 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24265
24266         * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24267         fields from MonoClass to the marshal info structure where they belong.
24268
24269 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24270
24271         * class.c, object.c, class-internals.h, marshal.c: rearrange
24272         some fields and tweak some types to lower memory usage.
24273
24274 2005-01-17  Zoltan Varga  <vargaz@freemail.hu>
24275
24276         * threads.c (signal_thread_state_change): Handle the case when the
24277         target thread is the current thread.
24278
24279         * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24280
24281         * marshal.c: Rename emit_ptr_to_str_conv and its pair to 
24282         emit_ptr_to_object_conv. 
24283
24284         * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24285         marshalling. Fixes #71352.
24286
24287 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24288
24289         * metadata.h, blob.h: move table enum to blob.h so it can be included
24290         in any header.
24291         * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24292         cut the size of MonoImage/MonoDynamicImage.
24293
24294 2005-01-16  Zoltan Varga  <vargaz@freemail.hu>
24295
24296         * profiler.c (mono_profiler_install_simple): Fix default arguments.
24297
24298 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24299
24300         * reflection.c, reflection.h, icall.c: add a function to check
24301         if an attribute type is defined for a metadata object.
24302
24303 2005-01-14  Lluis Sanchez Gual  <lluis@novell.com>
24304
24305         * object-internals.h: Added some needed fields from StringBuilder class.
24306         * marshal.c: Set the maxCapacity when creating a StringBuilder.
24307
24308 2005-01-13  Zoltan Varga  <vargaz@freemail.hu>
24309
24310         * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24311         threads before shutting down the runtime.
24312
24313         * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24314
24315 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24316
24317         * object-internal.h, threads.c: implement stacksize and 
24318         parameterized thread start functionality (requires
24319         matching corlib). Marked broken code for later removal.
24320
24321 2005-01-12  Martin Baulig  <martin@ximian.com>
24322
24323         * class-internals.h (MonoGenericClass): Moved the `initialized'
24324         flag to MonoDynamicGenericClass, removed `init_pending'.
24325         (MonoGenericInst): Added `is_reference' flag.
24326
24327 2005-01-12  Zoltan Varga  <vargaz@freemail.hu>
24328
24329         * reflection.c (mono_image_create_pefile): Only set the pe_offset
24330         inside the MSDOS header. Fixes #71201.
24331
24332         * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24333         gc thread.
24334         (mono_domain_finalize): Ditto.
24335
24336 2005-01-12  Martin Baulig  <martin@ximian.com>
24337
24338         * class.c (mono_get_shared_generic_class): Use the cache for
24339         non-dynamic generic classes.
24340
24341         * class-internals.h (mono_class_create_generic_2): Removed
24342         function prototype, this function is now static inside class.c.
24343
24344         * class.c (mono_class_create_generic_2): Made this static, only
24345         call it from mono_class_init() and mono_class_setup_parent().
24346         (collect_implemented_interfaces_aux): Call mono_class_init() on
24347         the interfaces we collect.
24348         (mono_class_setup_vtable): Call mono_class_init (class->parent).
24349
24350 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24351
24352         * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24353         it a real thread handle.
24354
24355         * domain-internals.h: Move exvar_offset from MonoJitInfo to 
24356         MonoJitExceptionInfo, since each catch clause needs its own variable.
24357         
24358 2005-01-11  Dick Porter  <dick@ximian.com>
24359
24360         * image.c (mono_pe_file_open): New variant on mono_image_open()
24361         that does not set up the CLI metadata; used for FileVersionInfo so
24362         it can get the data for windows binaries too.
24363         
24364         * process.c (process_read_string_block): Don't read off the end of
24365         the StringTable block.
24366
24367         These both fix bug 70766.
24368
24369 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24370
24371         * gc.c: set some fields to NULL at GC cleanup time.
24372         * threads.c: if we quit the main thread, call exit ().
24373
24374 2005-01-11  Zoltan Varga  <vargaz@freemail.hu>
24375
24376         * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24377
24378 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24379
24380         * threads.h, threads.c, object.c: added accessor and settor for
24381         main_thread. Handle it specially when exiting from it: wait
24382         for other foreground threads to exit.
24383
24384 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24385
24386         * process.c, verify.c: remove some bloat.
24387
24388 2005-01-09  Zoltan Varga  <vargaz@freemail.hu>
24389
24390         * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24391         the calling convention to cdecl under win32.
24392
24393 2005-01-08  Ben Maurer  <bmaurer@ximian.com>
24394
24395         * object.c (mono_object_get_size): New function to get the size of
24396         an object instance.
24397
24398         * profiler.c (simple_allocation): Use above.
24399
24400 2005-01-08  Sebastien Pouliot  <sebastien@ximian.com>
24401
24402         * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24403         ves_icall_System_AppDomain_getRootDomain (as it's not required to
24404         get an appdomain by it's id and we can't assume the root's id is 0).
24405         * domain-internals.h: Change the function prototype to match.
24406         * icall.c: Change the icall table for AppDomain.
24407
24408 2005-01-08  Miguel de Icaza  <miguel@ximian.com>
24409
24410         * locales.c (string_invariant_compare_char): Only compute
24411         GUnicodeTypes in the case where we need them.  Test for ordinality
24412         first and return if so.
24413
24414         From the commit:
24415
24416                 /*
24417                  * FIXME: here we must use the information from c1type and c2type
24418                  * to find out the proper collation, even on the InvariantCulture, the
24419                  * sorting is not done by computing the unicode values, but their
24420                  * actual sort order.
24421                  */
24422
24423 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24424
24425         * loader.c: for P/Invoke methods, allow the "Internal" shared
24426         library name to refer to the calling process symbol namespace.
24427
24428 2005-01-07  Sebastien Pouliot  <sebastien@ximian.com>
24429
24430         * Makefile.am: Add the security manager to the build.
24431         * security-manager.c|h: New. Initialization of the security manager.
24432
24433 2005-01-07  Dick Porter  <dick@ximian.com>
24434
24435         * threads.c: 
24436         * monitor.c: Update thread state during Monitor and WaitHandle
24437         waits.  Fixes bug 71031.
24438
24439 2005-01-07  Zoltan Varga  <vargaz@freemail.hu>
24440
24441         * reflection.c (property_encode_signature): Correctly handle when the
24442         property has no methods.
24443
24444 2005-01-06  Zoltan Varga  <vargaz@freemail.hu>
24445
24446         * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24447         
24448         * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24449         fields from mb, not rmb. Fixes #71017.
24450
24451         * marshal.c (emit_ptr_to_str_conv): Add support for 
24452         ByValTStr -> string conversion. Fixes #71015.
24453
24454         * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24455
24456         * mempool.c (mono_mempool_contains_addr): New helper function.
24457
24458 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24459
24460         * metadata.c (mono_metadata_compute_size): Fix size calculation of
24461         HasSematics encoded fields.
24462         
24463         * metadata.c (mono_type_to_unmanaged): Improve error message for 
24464         invalid string marshalling.
24465
24466         * metadata.c: Fix warnings.
24467         
24468 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24469
24470         * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24471         profiler support.
24472
24473 2005-01-05  Zoltan Varga  <vargaz@freemail.hu>
24474
24475         * domain.c object.c domain-internals.h: Revert part of r38077 since the
24476         keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24477         tests.
24478
24479 2005-01-03  Zoltan Varga  <vargaz@freemail.hu>
24480
24481         * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24482         so methods containing these can be AOTed.
24483
24484 2005-01-03  Martin Baulig  <martin@ximian.com>
24485
24486         * loader.c (find_method): Removed the hack for generic instances.
24487         (method_from_memberref): If our parent is a generic instance, pass
24488         its generic type definition to find_method() and then inflate the
24489         method.
24490         (mono_get_method_constrained): Pass the generic type definition to
24491         find_method() and inflate the method later.
24492
24493         * class-internals.h (MonoStats): Added `generic_class_count'.
24494
24495         * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24496         Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24497
24498         * reflection.c (mono_custom_attrs_from_params): Don't ignore
24499         generic type definitions.
24500
24501 2004-12-30  Zoltan Varga  <vargaz@freemail.hu>
24502
24503         * loader.c icall.c: Fix warnings.
24504
24505 2004-12-29  Zoltan Varga  <vargaz@freemail.hu>
24506
24507         * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24508         blittable types. Fixes #70864.
24509
24510 2004-12-29  Martin Baulig  <martin@ximian.com>
24511
24512         * icall.c
24513         (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24514
24515         * reflection.c (mono_method_get_object): Create a
24516         "System.Reflection.MonoGenericMethod" for inflated methods; don't
24517         call mono_get_inflated_method().
24518
24519         * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24520
24521 2004-12-27  Martin Baulig  <martin@ximian.com>
24522
24523         * class-internals.h (MonoMethod): Added `is_inflated' flag.
24524         (MonoMethodInflated): Added `inflated' field.
24525
24526         * class.c (mono_class_inflate_generic_method): Don't really
24527         inflate the method here; just set the `is_inflated' flag in the
24528         MonoMethod.
24529         (mono_class_get_inflated_method): Actually inflate the method here
24530         if it's not already inflated; we use the MonoMethodInflated's new
24531         `inflated' field as a cache.
24532
24533 2004-12-26  Martin Baulig  <martin@ximian.com>
24534
24535         * class.c
24536         (inflate_generic_class): Moved some code out of inflate_generic_type().
24537         (mono_class_inflate_generic_method): If we're already inflated,
24538         inflate the context and use the declaring method; ie. make sure
24539         the declaring method of an inflated method is always the generic
24540         method definition.
24541         (mono_class_create_from_typedef): Create
24542         `class->generic_container->context->gclass'.
24543
24544 2004-12-24  Ben Maurer  <bmaurer@ximian.com>
24545
24546         * metadata-internals.h, marshal.c, reflection.c: More
24547         MonoGHashTable->GHashTable.
24548
24549         * domain-internals.h, class.c: Change MonoGHashTable's into
24550         GHashTables for some cases where no gc stuff is used
24551
24552         All users: update apis
24553
24554 2004-12-23  Ben Maurer  <bmaurer@ximian.com>
24555
24556         * metadata.c (builtin_types): Make this `const'. Makes this get
24557         put into the shareable section.
24558         (mono_metadata_init): Casts to make gcc happy.
24559
24560 2004-12-22  Zoltan Varga  <vargaz@freemail.hu>
24561
24562         * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24563
24564 2004-12-21  Sebastien Pouliot  <sebastien@ximian.com> 
24565
24566         * icall.c: Added an internal call to retrieve the position and length
24567         of assembly-level declarative security attributes (RequestMinimum, 
24568         RequestOptional and RequestRefuse). This is used by the Assembly class
24569         to re-create the corresponding permission sets.
24570
24571 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24572
24573         * marshal.c: fix the stelemref wrapper to be type correct
24574         (and faster).
24575
24576 2004-12-20  Ben Maurer  <bmaurer@ximian.com>
24577
24578         * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24579         to do key & 0x7fffffff. Hashtable already does this. It just
24580         results in longer code.
24581
24582 2004-12-20  Sebastien Pouliot  <sebastien@ximian.com>
24583
24584         * appdomain.c: Bump corlib version.
24585         * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24586         * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24587         * reflection.c|h: Add functions to get declarative security infos
24588         (blob position and length) for assemblies, classes and methods.
24589
24590 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24591
24592         * reflection.c: sort the constant table (bug #70693).
24593
24594 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24595
24596         * object-internals.h, threads.c, domain.c: add accessors for
24597         the MonoThread and MonoDomain tls keys.
24598
24599 2004-12-18  Martin Baulig  <martin@ximian.com>
24600
24601         * class.c (inflate_generic_type): If we're inflating a generic
24602         instance, set `ngclass->context->container = context->container';
24603         ie. the container we inflated into.
24604
24605         * metadata.c (mono_metadata_parse_generic_param): Reflect above
24606         inflate_generic_type() changes.
24607
24608 2004-12-17  Martin Baulig  <martin@ximian.com>
24609
24610         * class-internals.h
24611         (MonoGenericClass): Replaced `MonoType *generic_type' with
24612         `MonoClass *generic_class'.  Removed `dynamic_info'; if
24613         `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24614         (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24615
24616 2004-12-16  Zoltan Varga  <vargaz@freemail.hu>
24617
24618         * exception.c (mono_exception_from_token): New helper function.
24619
24620 2004-12-15  Zoltan Varga  <vargaz@freemail.hu>
24621
24622         * assembly.c (mono_assembly_load_with_partial_name): Call 
24623         mono_assembly_loaded before invoking the preload hooks. Fixes
24624         #70564.
24625
24626         * object-internals.h (MonoThread): Change culture_info and 
24627         ui_culture_info into an array.
24628
24629         * threads.c: Cache culture info objects from more than one appdomain.
24630
24631         * threads.c threads-types.h icall.c: Add icalls for manipulating the 
24632         current UI culture.
24633
24634 2004-12-14  Zoltan Varga  <vargaz@freemail.hu>
24635
24636         * threads.h threads.c appdomain.c: Clear the culture_info field of
24637         all threads during unloading if they point to an object in the dying
24638         appdomain.
24639
24640 2004-12-13  Ben Maurer  <bmaurer@ximian.com>
24641
24642         * culture-info.h (TextInfoEntry): New struct
24643         * object-internals.h: sync with managed
24644         * locales.c: fill the `text_info_data' field
24645         * culture-info-tables.h: update
24646
24647 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24648
24649         * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24650         collector.
24651
24652 2004-12-12  Ben Maurer  <bmaurer@ximian.com>
24653
24654         * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24655         (ves_icall_ModuleBuilder_getMethodToken): Ditto
24656
24657 2004-12-12  Martin Baulig  <martin@ximian.com>
24658
24659         * mono-debug-debugger.c (write_type): If we're an enum and the
24660         builtin types have already been initialized, call mono_class_init().
24661
24662 2004-12-11  Martin Baulig  <martin@ximian.com>
24663
24664         * metadata.c (mono_metadata_load_generic_params): Added
24665         `MonoGenericContainer *parent_container' argument; automatically
24666         compute `container->is_method'; pass the correct owner to
24667         get_constraints().      
24668
24669         * reflection.c (compare_genericparam): Sort the GenericParam table
24670         according to increasing owners. 
24671
24672 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24673
24674         * profiler.c: allow disabling the default profiler.
24675
24676 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24677
24678         * decimal.c, icall.c: allow disabling System.Decimal support.
24679
24680 2004-12-09  Marek Safar <marek.safar@seznam.cz>
24681
24682         * reflection.c: Add support for null attribute arguments.
24683
24684 2004-12-09  Martin Baulig  <martin@ximian.com>
24685
24686         * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24687         names to get rid of compiler warnings.
24688
24689 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24690
24691         * marshal.c (mono_marshal_get_struct_to_ptr): Call 
24692         mono_marshal_load_type_info (). Fixes #69625.
24693         (mono_marshal_get_ptr_to_struct): Likewise.
24694
24695 2004-12-08  Martin Baulig  <martin@ximian.com>
24696
24697         * mono-debug.h: Bumped version number to 47.
24698
24699         * mono-debug-debugger.c
24700         (mono_debugger_event_handler, mono_debugger_event): Take two
24701         guint64 arguments insteed of a gpointer and a guint32.  
24702
24703 2004-12-08  Martin Baulig  <martin@ximian.com>
24704
24705         * debug-mono-symfile.h
24706         (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24707         `address' to `native_offset'.
24708
24709 2004-12-08  Martin Baulig  <martin@ximian.com>
24710
24711         * class.c (mono_class_create_from_typespec): Only inflate if we
24712         either have `context->gclass' or `context->gmethod'.
24713
24714 2004-12-08  Zoltan Varga  <vargaz@freemail.hu>
24715
24716         * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24717
24718         * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24719
24720         * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24721
24722         * reflection.c (mono_assembly_get_object): Remove the workaround put
24723         in for the release.
24724         
24725         * appdomain.c: Use the corlib_internal field from MonoAssembly.
24726
24727         * appdomain.c: Bump corlib version.
24728
24729         * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24730         be visible in other appdomains.
24731
24732 2004-12-07  Ben Maurer  <bmaurer@ximian.com>
24733
24734         * threads.c: Interlocked inc and dec for longs were messed up,
24735         use a KISS based impl for this. Fixes 70234
24736
24737 2004-12-07  Zoltan Varga  <vargaz@freemail.hu>
24738
24739         * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24740
24741 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24742
24743         * icall.c: fix to follow policy not to allow struct
24744         arguments in icalls.
24745
24746 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24747
24748         * process.c: make the patch that handles spaces in file paths work
24749         on mono/windows too.
24750
24751 2004-12-06  Martin Baulig  <martin@ximian.com>
24752
24753         * class.c (mono_class_create_generic): Call
24754         mono_class_setup_supertypes() if we're dynamic.
24755         (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24756
24757 2004-12-06  Zoltan Varga  <vargaz@freemail.hu>
24758
24759         * object-internals.h: Add new fields to MonoThread.
24760
24761         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24762
24763         * icall.c threads-types.h threads.c: Add new icalls.
24764
24765         * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24766
24767         * object-internals.h (MonoReflectionAssembly): Sync object layout with
24768         managed side.
24769
24770         * appdomain.c: Bump corlib version.
24771
24772         * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24773         internal assemblies. Fixes #69181.
24774
24775 2004-12-05  Martin Baulig  <martin@ximian.com>
24776
24777         * class.c (mono_class_inflate_generic_signature): Make this a
24778         no-op if `context' is NULL or we don't have any type parameters;
24779         also copy `sentinelpos'.        
24780
24781 2004-12-04  Zoltan Varga  <vargaz@freemail.hu>
24782
24783         * image.c: Add unbox_wrapper_cache.
24784
24785         * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24786
24787         * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24788         function generator.
24789         
24790         * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24791         Fixes #70173.
24792
24793         * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24794         
24795 2004-12-04  Martin Baulig  <martin@ximian.com>
24796
24797         * loader.c (mono_method_get_signature_full): New public function;
24798         like mono_method_get_signature(), but with an additional
24799         `MonoGenericContext *' argument.
24800
24801         * class.c (mono_class_inflate_generic_signature): Formerly known
24802         as inflate_generic_signature(); make this public.
24803
24804 2004-12-04  Martin Baulig  <martin@ximian.com>
24805
24806         * metadata.c
24807         (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24808         instead of a `MonoGenericContainer *'.  
24809         (mono_metadata_parse_array_full): Likewise.
24810         (mono_metadata_parse_signature_full): Likewise.
24811         (mono_metadata_parse_method_signature_full): Likewise.
24812         (mono_metadata_parse_generic_inst): Likewise.
24813         (mono_metadata_parse_generic_param): Likewise.
24814         (mono_metadata_parse_mh_full): Likewise.
24815         (mono_type_create_from_typespec_full): Likewise.
24816
24817 2004-12-03  Martin Baulig  <martin@ximian.com>
24818
24819         * class-internals.h (MonoGenericContainer): Replaced the
24820         `MonoGenericContext * pointer with a `MonoGenericContext'
24821         structure and made it the first element.
24822
24823 2004-12-03  Martin Baulig  <martin@ximian.com>
24824
24825         * class.c
24826         (inflate_generic_type): Set the `context->container' when creating
24827         a new MonoGenericContext.
24828         (mono_class_inflate_generic_method): Likewise.
24829         (mono_class_create_from_typespec): Just use `context->container'
24830         to get the container.
24831
24832         * loader.c (method_from_methodspec): Set `context->parent' from
24833         `context->container' - and if that's a method container, use its
24834         parent.  Also set the `context->container' when creating a new
24835         MonoGenericContext.
24836         (mono_get_method_from_token): Use just `context->container' to get
24837         the container.
24838
24839         * metadata.c (do_mono_metadata_parse_generic_class): Also set
24840         `gclass->context->container'.
24841
24842         * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24843         the `context->container' when creating a new MonoGenericContext.
24844
24845 2004-12-03  Zoltan Varga  <vargaz@freemail.hu>
24846
24847         * reflection.c (compare_genericparam): Sort params with identical
24848         owner by their number. Fixes gen-111 on sparc.
24849
24850 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24851
24852         * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24853         around the domain changes.
24854
24855         * appdomain.c (mono_domain_unload): Handle the case when the thread
24856         calling Unload is itself being aborted during unloading. Fixes #70022.
24857
24858         * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24859
24860         * marshal.c (emit_thread_interrupt_checkpoint_call): Call 
24861         checkpoint_func as an icall so it gets a wrapper.
24862         (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24863         in the cross-appdomain wrappers too.
24864
24865         * threads.c (mono_thread_has_appdomain_ref): Make this public.
24866
24867         * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24868
24869         * reflection.c: Fix some memory leaks.
24870         
24871 2004-12-02  Martin Baulig  <martin@ximian.com>
24872
24873         * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24874
24875         * metadata.c (generic_class_cache): New static hashtable.
24876         (mono_metadata_lookup_generic_class): New public method.
24877
24878 2004-12-02  Martin Baulig  <martin@ximian.com>
24879
24880         * class.c (mono_class_create_from_typedef): Call
24881         mono_class_setup_parent() and mono_class_create_mono_type() before
24882         parsing the interfaces.
24883
24884 2004-12-02  Martin Baulig  <martin@ximian.com>
24885
24886         * metadata.c (generic_inst_cache): New static hashtable.
24887         (mono_metadata_lookup_generic_inst): New public function.
24888         (mono_metadata_inflate_generic_inst): New public function.
24889         (mono_metadata_parse_generic_inst): New public function.
24890         (do_mono_metadata_parse_generic_class): Use the new
24891         mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24892         since this'll also use the cache.
24893
24894         * reflection.c (mono_reflection_bind_generic_method_parameters):
24895         Use mono_metadata_lookup_generic_inst() to use the new cache.
24896
24897         * class.c (inflate_mono_type): Use
24898         mono_metadata_inflate_generic_inst() to inflate a generic
24899         instance; this'll also use the new cache.
24900
24901         * loader.c (method_from_methodspec): Use
24902         mono_metadata_parse_generic_inst() and
24903         mono_metadata_inflate_generic_inst() rather than parsing it
24904         manually, so we can use the new cache.
24905
24906 2004-12-02  Zoltan Varga  <vargaz@freemail.hu>
24907
24908         * threads.c (wait_for_tids): Do not incorrectly free threads when 
24909         the wait times out.
24910
24911 2004-12-01  Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24912
24913         * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24914         iter->args based on whether parameters are passed in registers (i.e.
24915         MONO_ARCH_REGPARMS is defined)
24916
24917 2004-12-01  Zoltan Varga  <vargaz@freemail.hu>
24918
24919         * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24920         the exception message. Fixes #70070.
24921         (method_from_methodspec): Fix warnings.
24922
24923 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24924
24925         * process.c: (complete_path) return the path quoted
24926
24927 2004-12-01  Martin Baulig  <martin@ximian.com>
24928
24929         * class-internals.h (MonoGenericInst): New structure.
24930         (MonoGenericClass): Replaced `type_argc', `type_argv' and
24931         `is_open' with `MonoGenericInst *inst'.
24932         (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24933         `is_open' with `MonoGenericInst *inst'.
24934
24935 2004-11-30  Martin Baulig  <martin@ximian.com>
24936
24937         Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24938
24939         * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24940         to `generic_class_cache'.
24941
24942         * metadata.c
24943         (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24944         (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24945         (mono_generic_inst_is_valuetype): Renamed to
24946         mono_generic_class_is_valuetype().
24947
24948         * class-internals.h
24949         (MonoGenericInst): Renamed to MonoGenericClass.
24950         (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24951         (MonoClass): Renamed `generic_inst' to `generic_class'.
24952         (MonoGenericContext): Renamed `ginst' to `gclass'.
24953
24954         * object-internals.h
24955         (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24956
24957         * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24958         mono_reflection_generic_class_initialize().
24959
24960         * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24961         now known as "System.Reflection.MonoGenericClass".
24962         (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24963
24964 2004-11-29  Sebastien Pouliot  <sebastien@ximian.com>
24965
24966         * class-internals.h: Added a flag field to MonoClass to cache the
24967         declarative security attributes actions associated with the class.
24968         * domain-internals.h: Added booleans to MonoJitInfo to cache the
24969         (class or method level) stack modifiers (Assert, Deny and PermitOnly)
24970         applicable to the JITted method.
24971         * reflection.c|h: Added functions to extract (as flags) which security
24972         actions are available (declaratively) for a method, class or assembly.
24973         * metadata.c|h: Added functions to search the declarative security
24974         table in the metadata.
24975         
24976 2004-11-29  Ben Maurer  <bmaurer@ximian.com>
24977
24978         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
24979         EXPORTEDTYPES are already in the class name cache, so there is no
24980         need to add extra code here to look at them. Just removes a bit of
24981         cruft.
24982
24983         (ves_icall_System_Environment_get_TickCount): No need for #if
24984         WINDOWS. We already have the code in io-layer.
24985
24986 2004-11-28  Martin Baulig  <martin@ximian.com>
24987
24988         * loader.c
24989         (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
24990         Fixes gen-112.cs.
24991
24992 2004-11-27  Miguel de Icaza  <miguel@ximian.com>
24993
24994         * assembly.c (do_mono_assembly_open): Instead of having a
24995         conditional WITH_BUNDLE, incorporate support for bundles here, by
24996         having a global `bundles' variable holding a pointer to the actual
24997         bundles. 
24998
24999         (mono_register_bundled_assemblies): New API call used by the
25000         bundle code. 
25001
25002         See mkbundle.1 for details.
25003         
25004 2004-11-27  Martin Baulig  <martin@ximian.com>
25005
25006         * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25007         the vtable for generic methods.
25008
25009 2004-11-26  Martin Baulig  <martin@ximian.com>
25010
25011         * metadata.c
25012         (mono_metadata_generic_method_hash): New public function.
25013         (mono_metadata_generic_method_equal): Likewise.
25014
25015         * class-internals.h
25016         (MonoGenericContainer): Added `GHashTable *method_hash'.
25017
25018         * reflection.c (ReflectionMethodBuilder): Added
25019         `MonoGenericContainer *generic_container'.
25020         (reflection_methodbuilder_to_mono_method): Don't create a new
25021         MonoGenericContainer each time we're called.
25022         (mono_reflection_bind_generic_method_parameters): Use
25023         `container->method_hash' to cache the results so we don't create a
25024         different method if we're called several times with the same
25025         arguments.
25026
25027         * loader.c (method_from_methodspec): Use the new
25028         `container->method_hash' here, too.
25029
25030 2004-11-26  Martin Baulig  <martin@ximian.com>
25031
25032         * class.c (inflate_generic_signature): Correctly compute
25033         `res->has_type_parameters'.
25034         (mono_class_vtable): Use the `has_type_parameters' flag to
25035         determine whether we're a generic method.
25036
25037         * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25038
25039 2004-11-25  Zoltan Varga  <vargaz@freemail.hu>
25040
25041         * object.c (mono_runtime_run_main): Fix a small memory leak.
25042
25043 2004-11-25  Martin Baulig  <martin@ximian.com>
25044
25045         * class.c (set_generic_param_owner): Fixed the loop.
25046
25047 2004-11-25  Martin Baulig  <martin@ximian.com>
25048
25049         * object.c (mono_class_vtable): Don't create any JIT wrappers for
25050         generic methods.
25051
25052 2004-11-24  Zoltan Varga  <vargaz@freemail.hu>
25053
25054         * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25055         names. Fixes #69787.
25056
25057 2004-11-24  Martin Baulig  <martin@ximian.com>
25058
25059         * class.c (mono_class_create_generic_2): If we don't have a
25060         `ginst->parent', inflate `gklass->parent' to get our parent.
25061
25062 2004-11-24  Martin Baulig  <martin@ximian.com>
25063
25064         * reflection.c (compare_genericparam): Correctly sort the
25065         GenericParam table; fixes #69779.
25066
25067 2004-11-23  Ben Maurer  <bmaurer@ximian.com>
25068
25069         * reflection.c: When writing a PE file, don't create a huge
25070         buffer in memory. Just write the arrays we have to the file.
25071         This reduces memory usage.
25072
25073         * metadata-internals.h: MonoDynamicStream pefile is no longer used
25074         globally.
25075
25076 2004-11-17  Martin Baulig  <martin@ximian.com>
25077
25078         * class.c (mono_class_init): Don't setup `class->parent' for
25079         dynamic instances; moved this to mono_class_generic_2().
25080         (mono_class_create_generic): Also set `klass->inited' for dynamic
25081         generic instances.
25082         (mono_class_create_generic_2): Don't do anything for dynamic
25083         generic instances.  Set `klass->parent' here and also call
25084         mono_class_setup_parent() here. 
25085
25086         * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25087         `MonoType *parent' argument; set `ginst->parent' before calling
25088         mono_class_create_generic_2(), so we set the correct parent.
25089
25090 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25091
25092         * reflection.c: allow getting attributes from ModuleBuilder
25093         (used by ikvm).
25094
25095 2004-11-17  Martin Baulig  <martin@ximian.com>
25096
25097         * class.c (mono_class_create_from_typedef): If a type parameter is
25098         inherited from an outer class, set its owner to that class.
25099
25100 2004-11-17  Atsushi Enomoto  <atsushi@ximian.com>
25101
25102         * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25103           for (int*) written size. This fixes bug #69592.
25104
25105 2004-11-15  Sebastien Pouliot  <sebastien@ximian.com>
25106
25107         * icall.c: Added IsAuthenticodePresnet internal call.
25108         * image.c|h: New function that check a MonoImage for an Authenticode
25109         signature in the certificate PE data directory.
25110         * security.c|h: New internal call to ask the runtime if an 
25111         Authenticode signature seems referenced in the PE header.
25112
25113 2004-11-15  Zoltan Varga  <vargaz@freemail.hu>
25114
25115         * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25116
25117         * reflection.c (mono_image_create_pefile): Free the assembly streams
25118         after writing out the assembly file.
25119
25120         * object.c (mono_runtime_run_main): Fix small memory leak.
25121
25122         * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25123         property access modifiers. Fixes #69389.
25124
25125 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25126
25127         * domain.c, object.c, object-internals.h, domain-internals.h,
25128         object.h, marshal.c: keep dynamic code info per domain.
25129
25130 2004-11-15  Martin Baulig  <martin@ximian.com>
25131
25132         * class.c (mono_type_get_name_recurse): Put type arguments in
25133         `[',`]' instead of in `<','>'.  Thanks to Atsushi for the patch,
25134         see bug #68387.
25135
25136 2004-11-15  Martin Baulig  <martin@ximian.com>
25137
25138         * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25139         (mono_class_setup_vtable): When computing `the_cname' for a
25140         generic instance, don't include the namespace since we'd otherwise
25141         add it twice.
25142
25143 2004-11-15  Martin Baulig  <martin@ximian.com>
25144
25145         * class.c (mono_class_create_generic): Changed return type to void.
25146         (mono_class_create_generic_2): New public function; setup
25147         `class->method', `class->field' and `class->interfaces' here
25148         instead of in mono_class_init().
25149
25150         * class.h (mono_class_create_generic): Moved to class-internals.h.
25151
25152 2004-11-14  Ben Maurer  <bmaurer@ximian.com>
25153
25154         * reflection.c (mono_image_create_pefile): take a file HANDLE.
25155         rather than writing to memory, write to this file. Right now,
25156         we are just writting into a buffer, and copying that. However
25157         we can avoid the buffer later.
25158
25159         (mono_dynamic_stream_reset): new function
25160
25161         * icall.c, object-internals.h: update for the above.
25162
25163 2004-11-13  Ben Maurer  <bmaurer@ximian.com>
25164
25165         * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25166         have been using gc'd memory. First it is slower, unlikely
25167         the comment in the source code said, secondly, it increases
25168         our footprint to do it in the gc.
25169
25170         * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25171         the method so that it does not have to copy to managed code.
25172
25173 2004-11-12  Zoltan Varga  <vargaz@freemail.hu>
25174
25175         * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25176
25177 2004-11-12  Martin Baulig  <martin@localhost>
25178
25179         * reflection.c (mono_image_create_token): Allow generic method
25180         definitions here, since they may appear in an `.override'; see
25181         gen-98/gen-99 for an example.
25182
25183 2004-11-11  Zoltan Varga  <vargaz@freemail.hu>
25184
25185         * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25186         #69365.
25187
25188         * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25189         descriptive.
25190
25191 2004-11-11  Martin Baulig  <martin@ximian.com>
25192
25193         * class.c (mono_class_setup_vtable): In an explicit interface
25194         implementation, the method name now includes the arity.
25195
25196 2004-11-10  Zoltan Varga  <vargaz@freemail.hu>
25197
25198         * object.c (mono_array_full_copy): Fix warning.
25199
25200 2004-11-10  Lluis Sanchez Gual  <lluis@novell.com>
25201
25202         * appdomain.c: Removed look_for_method_by_name(). Use the new method
25203         mono_class_get_method_from_name() instead.
25204         
25205         * class-internals.h: Added two new types of wrappers. 
25206         Added MonoRemotingTarget enum. Added new trampoline function type, which
25207         takes an additional MonoRemotingTarget value as parameter, so it is
25208         possible to request a trampoline for a specific target.
25209         
25210         * class.c: Added new mono_class_get_method_from_name() method.
25211         
25212         * class.h: In MonoRemoteClass, we can have now to vtables, one for
25213         general remoting sinks and one specific for cross domain calls.
25214         
25215         * debug-helpers.c: Added new wrapper names.
25216         
25217         * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25218         of a remote class.
25219         
25220         * image.c: Porperly delete value objects form the remoting invoke hashtable.
25221         
25222         * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25223         with several other methods (mono_marshal_get_xappdomain_dispatch,
25224         mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25225         and others) can generate a fast remoting wrapper for cross domain calls.
25226         More information can be found in docs/remoting.
25227         Other changes: Removed mono_find_method_by_name, and used
25228         mono_class_get_method_from_name instead.
25229         Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25230         is stored in the remoting invoke hashtable.
25231         
25232         * marshal.h: published the new method for getting the xdomain wrapper,
25233         and also added a method for getting the adequate wrapper for a given
25234         method and target.
25235         
25236         * object-internals.h, object.c: Added a couple of methods for capying and
25237         cloning arrays.
25238         Modified mono_install_remoting_trampoline, which takes the new remoting
25239         trampoline that has a remoting target as parameter.
25240         mono_class_proxy_vtable now also takes a remoting target as parameter, and
25241         will return the most suitable vtable for the target.
25242         Added mono_remote_class_vtable, which returns the vtable of a remote class
25243         (which can be the normal remoting vtable or the xdomain vtable).
25244         
25245         * threads.c: the xdomain invoke and dispatch wrappers must also be
25246         protected against interruptions.
25247
25248 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25249
25250         * icall.c: use memmove in BlockCopyInternal when the source and
25251         destination arrays are the same.
25252
25253 2004-11-09  Martin Baulig  <martin@ximian.com>
25254
25255         * class-internals.h (MonoGenericContainer): Removed `method' and
25256         `signature', replaced them with `is_method' and `is_signature'
25257         flags.  Added `context'.
25258
25259         * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25260         instead of a `MonoGenericContainer *'.
25261
25262         * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25263         for dynamic type parameters.
25264         (mono_metadata_load_generic_params): Setup `container->context'.
25265
25266         * reflection.c (mono_reflection_setup_generic_class): Setup
25267         `tb->generic_container->context'.
25268         (do_mono_reflection_bind_generic_parameters): Use
25269         mono_class_inflate_generic_type() to correctly inflate types,
25270         rather than using our own hack just for MONO_TYPE_VAR.
25271
25272 2004-11-09  Martin Baulig  <martin@ximian.com>
25273
25274         * class.c (mono_class_inflate_generic_method): Small fix; don't
25275         crash here.
25276
25277         * icall.c
25278         (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25279         (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25280         (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25281         (ves_icall_Type_BindGenericParameters): Likewise.
25282         (ves_icall_Type_get_IsGenericInstance): Likewise.
25283         (ves_icall_Type_GetGenericParameterPosition): Likewise.
25284         (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25285         (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25286         (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25287
25288 2004-11-09  Zoltan Varga  <vargaz@freemail.hu>
25289
25290         * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25291         assembly versions and public key tokens. Fixes #69113.
25292
25293 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25294
25295         * metadata.c: fix bug introduced with the type cache changes
25296         on 2004-11-06.
25297
25298 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25299
25300         * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25301         the MonoClass pointer instead of the token in exception clauses.
25302         * reflection.c: updates for the above and make the code not depend
25303         on the structure of MonoExceptionClause.
25304
25305 2004-11-08  Zoltan Varga  <vargaz@freemail.hu>
25306
25307         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25308         Add support for dynamic assemblies. Fixes #69114.
25309
25310         * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25311
25312 2004-11-07  Ben Maurer  <bmaurer@ximian.com>
25313
25314         * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25315         since most only those methods use it. the code member of
25316         MonoMethodPInvoke was dead, so that can be removed too. Also,
25317         remove inline_count (again, not used), and move slot so that it
25318         can share bits with some other flags. This saves 8 bytes in the
25319         structure and gives us about 50 kb back for mcs helloworld.cs
25320
25321         * *.[ch]: Do naming changes for the above.
25322
25323         * loader.c (mono_method_get_header): Lazily init the header
25324         on first access.
25325         (mono_get_method_from_token): don't init the header here
25326         (mono_free_method): the header may never be allocated
25327
25328         Overall, this saves 150 kb of unmanaged allocations
25329         for mcs helloworld.cs. That accounts for 10% of the unmanaged
25330         memory at runtime.
25331         
25332         * loader.c, loader.h (mono_method_get_header): new accessor.
25333
25334         * *.[ch]: use the above method. Prepares us to lazily load
25335         the header.
25336
25337         * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25338         three warnings, which are actual bugs (see 69206).
25339
25340         * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25341         unused. Saves a cool 4 bytes / method.
25342
25343 2004-11-06  Ben Maurer  <bmaurer@ximian.com>
25344
25345         * metadata.c (builtin_types): Add types for System.Object here.
25346         (mono_metadata_parse_type_full): Cache MonoType*'s that are
25347         for a class or valuetype from klass->this_arg or klass->byval_arg.
25348
25349         On mcs for a hello world, this gets us down from 21836 MonoType's
25350         to 14560.
25351
25352         (mono_metadata_free_type): Account for the above change.
25353
25354 2004-11-06  Zoltan Varga  <vargaz@freemail.hu>
25355
25356         * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an 
25357         exception instead of asserting if name is null.
25358         (ves_icall_System_AppDomain_GetData): Ditto.
25359
25360 2004-11-05  Zoltan Varga  <vargaz@freemail.hu>
25361
25362         (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25363         EnumBuilder.
25364
25365         * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly): 
25366         Return NULL when the domain does not have entry_assembly set.
25367
25368         * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal): 
25369         Add a 'resource_modules' argument.
25370         (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25371
25372         * reflection.c (mono_reflection_create_runtime_class): Move setting
25373         of wastypebuilder here, so mono_get_type_object () returns a MonoType
25374         for enums too.
25375
25376         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25377         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25378         Throw an ArgumentNullException if 'ptr' is null.
25379
25380         * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25381         assemblies here. Fixes #69020.
25382
25383 2004-11-05  Geoff Norton  <gnorton@customerdna.com>
25384
25385         * reflection.c (build_compressed_metadata): Fix the previous patch for
25386         big endian systems.  GUINT32_FROM_LE isn't needed on strlen and was overwriting
25387         the stack.
25388
25389 2004-11-04  Zoltan Varga  <vargaz@freemail.hu>
25390
25391         * assembly.c (mono_assembly_names_equal): Allow a match if one of
25392         the cultures is false. Fixes #69090.
25393
25394         * reflection.c (build_compressed_metadata): Fix invalid memory read 
25395         detected by valgrind.
25396         
25397         * reflection.c (mono_reflection_get_type): Avoid triggering a 
25398         TypeResolve multiple times for the same type. Fixes #65577.
25399
25400 2004-11-04  Ben Maurer  <bmaurer@ximian.com>
25401
25402         * marshal.c: Avoid using ldftn to call managed functions. It is
25403         much slower than just a call.
25404
25405         * reflection.c (mono_module_get_object): free the basename we
25406         allocate here from glib.
25407         
25408         * reflection.c (ensure_runtime_vtable): make sure to free
25409         overrides.  Also, we were allocating an array of MonoMethod not an
25410         array of MonoMethod*.
25411
25412         * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25413
25414         * image.c (mono_image_close): free image->guid here.
25415
25416 2004-11-02  Zoltan Varga  <vargaz@freemail.hu>
25417
25418         * reflection.c: Fix some spec conformance issues with the PE file
25419         structures so mcs compiled apps run on the Net 2.0 beta.
25420
25421 2004-11-01  Zoltan Varga  <vargaz@freemail.hu>
25422
25423         * string-icalls.c (ves_icall_System_String_ctor_encoding): 
25424         Implement this. Fixes #67264.
25425
25426         * debug-helpers.h debug-helpers.c marshal.c: Move 
25427         mono_find_method_by_name to debug-helpers.c.
25428
25429 2004-10-31  Zoltan Varga  <vargaz@freemail.hu>
25430
25431         * object.c (mono_release_type_locks): type_initialization_hash is
25432         a GHashTable.
25433
25434         * reflection.c object.c object-internals.h: Fix warnings.
25435
25436         * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25437         without accessors. Fixes #61561.
25438
25439         * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25440         application base from the root domain if not set. Fixes #65641.
25441         (mono_runtime_init): Fix warning.
25442
25443 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25444
25445         * appdomain.c: call mono_thread_pool_init.
25446         * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25447         of worker threads based on the number of CPUs and the environment
25448         variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25449         for non-windows (windows) systems.
25450
25451 2004-10-27  Chris Toshok  <toshok@ximian.com>
25452
25453         * mono-debug-debugger.c (write_class): don't call mono_class_init
25454         here, as even with the check for (!klass->init_pending), we get
25455         into a situation where we're hitting cycles in class
25456         initialization.  Fixes #68816.
25457
25458 2004-10-25  Zoltan Varga  <vargaz@freemail.hu>
25459
25460         * image.c: Avoid overwriting values in the loaded_images_hash when an
25461         assembly is loaded multiple times. Fixes #61152.
25462
25463         * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25464         so multiple satellite assemblies for the same name can be loaded.
25465         Fixes #68259.
25466
25467         * mono_domain_assembly_preload: Actually return the loaded assembly, 
25468         not NULL.
25469
25470         * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25471         (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25472
25473         * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25474         pending finalizers are not invoked after the appdomain has been 
25475         unloaded. Fixes #67862.
25476
25477 2004-10-22  Martin Baulig  <martin@ximian.com>
25478
25479         * mono-debug-debugger.c
25480         (mono_debugger_runtime_invoke): Don't box valuetypes.
25481
25482 2004-10-22  Chris Toshok  <toshok@ximian.com>
25483
25484         * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25485         don't hide private methods.
25486
25487 2004-10-22  Sebastien Pouliot  <sebastien@ximian.com>
25488
25489         * icall.c: Allows the runtime to "share" (when known) the public key
25490         token of an assembly. This avoid the need to recalculate the token 
25491         (from the public key) in managed code.
25492
25493 2004-10-21  Chris Toshok  <toshok@ximian.com>
25494
25495         * debug-helpers.c (append_class_name): argh, revert last patch.
25496         
25497 2004-10-21  Chris Toshok  <toshok@ximian.com>
25498
25499         * debug-helpers.c (append_class_name): use '+' as the delimiter,
25500         not '/', so that it matches what the debugger uses to look up
25501         methods.
25502
25503 2004-10-21  Martin Baulig  <martin@ximian.com>
25504
25505         * mono-debug-debugger.c (mono_debugger_throw_exception): New
25506         public method; this is called each time an exception is thrown and
25507         allows the debugger to use exception catch points.
25508
25509 2004-10-21  Martin Baulig  <martin@ximian.com>
25510
25511         * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25512         the stack pointer and the exception object in some struct and pass
25513         that to the debugger.
25514
25515 2004-10-21  Chris Toshok  <toshok@ximian.com>
25516
25517         * mono-debug-debugger.c (do_write_class): add instance/static
25518         event support.  We don't expose "raise" or "other" yet.
25519         (event_is_static): new method.
25520
25521 2004-10-20  Bernie Solomon  <bernard@ugsolutions.com>
25522
25523         * mono-debug-debugger.c
25524         (mono_debugger_handle_exception): Remove
25525         bogus return value for fussy compilers.
25526
25527 2004-10-20  Martin Baulig  <martin@ximian.com>
25528
25529         * mono-debug-debugger.c
25530         (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25531         (mono_debugger_handled_exception): Likewise.
25532
25533 2004-10-20  Martin Baulig  <martin@ximian.com>
25534
25535         * mono-debug-debugger.h (MonoDebuggerEvent): Added
25536         MONO_DEBUGGER_EVENT_EXCEPTION.
25537
25538         * mono-debug-debugger.c (mono_debugger_handle_exception): New
25539         public function to send the debugger a notification for an
25540         exception and inform it about a catch/finally clause.
25541
25542 2004-10-19  Zoltan Varga  <vargaz@freemail.hu>
25543
25544         * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25545         Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25546         fix 2.95 build. 
25547
25548         * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25549
25550 2004-10-18  Zoltan Varga  <vargaz@freemail.hu>
25551
25552         * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25553         marshalled as [In,Out]. Fixes #58325.
25554
25555 2004-10-14  Zoltan Varga  <vargaz@freemail.hu>
25556
25557         * reflection.c (mono_method_body_get_object): Implement some fields.
25558
25559 2004-10-12  Martin Baulig  <martin@ximian.com>
25560
25561         * reflection.c (mono_reflection_bind_generic_parameters): Small
25562         fix, correctly retrieve our parent from a generic instance.
25563
25564 2004-10-12  Martin Baulig  <martin@ximian.com>
25565
25566         * metadata.c (mono_metadata_generic_param_equal): We always have
25567         an owner.
25568
25569         * class.c
25570         (mono_class_from_generic_parameter): We need to have an owner.
25571         (my_mono_class_from_generic_parameter): Likewise.
25572
25573         * reflection.c (mono_reflection_setup_generic_class): Renamed to
25574         mono_reflection_create_generic_class() and added a new
25575         mono_reflection_setup_generic_class().  
25576         (mono_reflection_initialize_generic_param): If we're a nested
25577         generic type and inherited from the containing class, set our
25578         owner to the outer class.
25579
25580 2004-10-11  Zoltan Varga  <vargaz@freemail.hu>
25581
25582         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25583
25584         * reflection.c (mono_method_body_get_object): New function to create
25585         a MethodBody object.
25586
25587         * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25588
25589 2004-10-11  Martin Baulig  <martin@ximian.com>
25590
25591         * metadata.c (_mono_metadata_type_equal): Renamed to
25592         do_mono_metadata_type_equal() and made static.
25593
25594 2004-10-11  Martin Baulig  <martin@ximian.com>
25595
25596         * appdomain.c: Bump corlib version number to 28.
25597
25598 2004-10-10  Martin Baulig  <martin@ximian.com>
25599
25600         * class-internals.h
25601         (MonoGenericInst): Added `MonoGenericContainer *container'.
25602         (MonoGenericMethod): Likewise.
25603         (MonoGenericContext): Likewise.
25604         (MonoGenericParam): Added `MonoGenericContainer *owner'.
25605
25606         * metadata.c
25607         (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25608         (do_mono_metadata_parse_generic_inst): Likewise.
25609         (mono_metadata_parse_type_full): New public method.  This is the actual
25610         mono_metadata_parse_type() implementation - with an additional
25611         `MonoGenericContainer *' argument.
25612         (mono_metadata_parse_array_full): Likewise.
25613         (mono_metadata_parse_signature_full): Likewise.
25614         (mono_metadata_parse_method_signature_full): Likewise.
25615         (mono_metadata_parse_mh_full): Likewise.
25616         (mono_type_create_from_typespec): Likewise.
25617         (mono_metadata_interfaces_from_typedef_full): New public method;
25618         this is similar to the other _full() methods, but we take a
25619         `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25620         (mono_metadata_parse_generic_param): Take an additional
25621         `MonoGenericContainer *' argument and lookup the MonoGenericParam
25622         from that container.
25623         (mono_metadata_generic_param_equal): New static method to compare
25624         two type parameters.
25625         (_mono_metadata_type_equal): New static method; takes an
25626         additional `gboolean signature_only' argument - if true, we don't
25627         compare the owners of generic parameters.
25628         (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25629         with a TRUE argument - do a signature-only comparision.
25630
25631         * loader.c: Use the new _full() methods and pass the
25632         MonoGenericContainer to them.
25633
25634         * object-internals.h (MonoReflectionTypeBuilder): Added
25635         `MonoGenericContainer *generic_container' field.
25636         (MonoReflectionMethodBuilder): Likewise.
25637
25638 2004-10-08  Zoltan Varga  <vargaz@freemail.hu>
25639
25640         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25641         case initial images of dynamic assemblies.
25642
25643         * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25644
25645         * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25646
25647         * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25648         length of event->other array.
25649         (typebuilder_setup_events): Ditto.
25650
25651         * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25652         'assembly_by_name' and add an 'assemblies' list.
25653
25654         * assembly.h assembly.c: Add a new search hook for determining whenever
25655         an assembly is already loaded. Use this instead of searching in the
25656         loaded_assemblies list.
25657
25658         * domain.c appdomain.c: Implement the new search hook so loaded 
25659         assemblies are now scoped by appdomain. Fixes #67727.
25660
25661 2004-10-07  Zoltan Varga  <vargaz@freemail.hu>
25662
25663         * threads.c (mono_thread_attach): Initialize synch_lock field so
25664         mono_thread_detach works again.
25665
25666         * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25667         'lib' too. Fixes #63130.
25668
25669 2004-10-06  Jackson Harper  <jackson@ximian.com>
25670
25671         * culture-info-tables.h: regenerated.
25672
25673 2004-10-06  Zoltan Varga  <vargaz@freemail.hu>
25674
25675         * icall.c (ves_icall_Type_GetInterfaces): Include interfaces 
25676         implemented by other interfaces in the result. Fixes #65764.
25677         
25678         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25679         Handle unloadable modules without crashing.
25680
25681         * image.c (load_modules): Revert the previous patch since modules must
25682         have a fixed index inside the array.
25683         
25684         * image.c (load_modules): Don't include native modules in the modules
25685         array.
25686
25687 2004-10-05  Zoltan Varga  <vargaz@freemail.hu>
25688
25689         * reflection.h: Add param_defaults field.
25690
25691         * reflection.c: Add support for parameter defaults in dynamic methods.
25692         Fixes #64595.
25693
25694         * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25695         an empty string when a type has no namespace. Fixes #64230.
25696
25697 2004-10-04  Sebastien Pouliot  <sebastien@ximian.com>
25698
25699         * tabledefs.h: Added "internal" security actions to support non-CAS
25700         permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance. 
25701         Note: they do not seems to be used anymore in 2.0 (new metadata format)
25702
25703 2004-10-04  Zoltan Varga  <vargaz@freemail.hu>
25704
25705         * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25706         constructor of abstract class. Fixes #61689.
25707
25708 2004-10-04  Martin Baulig  <martin@ximian.com>
25709
25710         * class-internals.h (MonoGenericContainer): New type.
25711         (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25712         `MonoGenericContainer *generic_container'.
25713         (MonoClass): Replaced `gen_params' and `num_gen_params' with
25714         `MonoGenericContainer *generic_container'.
25715
25716         * metadata.c (mono_metadata_load_generic_params): Return a
25717         `MonoGenericContainer *' instead of a `MonoGenericParam *';
25718         removed the `num' argument.
25719
25720 2004-10-03  Zoltan Varga  <vargaz@freemail.hu>
25721
25722         * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25723         for dynamic images.
25724
25725         * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25726         machine fields.
25727
25728         * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25729
25730         * reflection.c: Save pe_kind and machine values into the generated
25731         image file.
25732
25733         * appdomain.c: Bump corlib version number.
25734
25735         * object-internals.h: Reorganize layout of LocalBuilder.
25736
25737         * class-internals.h class.c (mono_class_get_implemented_interfaces): 
25738         New helper function.
25739
25740         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25741         created MonoType for dynamic types. Fixes #66180.
25742
25743 2004-10-02  Ben Maurer  <bmaurer@ximian.com>
25744
25745         * threadpool.c: the ares hashtable needs a critical section around it.
25746         this prevents some nasty segfaults
25747
25748 2004-10-02  Massimiliano Mantione  <massi@ximian.com>
25749
25750         * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25751         on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25752         bug 67324).
25753         
25754 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25755
25756         * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25757         
25758 2004-09-30  Lluis Sanchez Gual  <lluis@novell.com>
25759
25760         * image.c: Always canonicalize image file names, to avoid loading
25761         the same assembly twice when referenced using a relative path.
25762
25763 2004-09-30  Zoltan Varga  <vargaz@freemail.hu>
25764
25765         * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25766
25767         * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25768
25769         * marshal.c: Fix warnings.
25770
25771 2004-09-29  Geoff Norton  <gnorton@customerdna.com>
25772
25773         * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25774         attempting to marshal the delegate_trampoline as the method_addr.
25775         This patch has a static hashtable of marshalled delegates so that 
25776         we can map delegate_trampoline addresses back to delegates.  This
25777         allows a delegate passed to managed code to be passed back into native
25778         code.  Fixes #67039
25779
25780 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25781
25782         * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25783
25784         * reflection.c (method_encode_code): Align method headers properly.
25785         Fixes #66025.
25786
25787 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25788
25789         * marshal.c: In the runtime invoke wrapper, reset the abort
25790         exception if it is cached. This avoids the automatic rethrowal of 
25791         the exception after the catch of the wrapper. Also check for pending
25792         interruptions before calling the managed method. This is done using
25793         the new method emit_thread_force_interrupt_checkpoint, since the
25794         normal checkpoint method is ignored when running the invoke wrapper.
25795         * object.c: If the abort exception is rethrown, set the abort_exc
25796         field of the thread, so it will be rethrown aftere every catch.
25797         * threadpool.c: Only run an interruption checkpoint if what has been
25798         requested is a stop of the thread (aborts will be ignored).
25799         * threads.c: By default, a thread will now never be interrumped while
25800         running the runtime invoke wrapper (this ensures that runtime_invoke
25801         will always return to the caller if an exception pointer is provided).
25802         There is a new special method mono_thread_force_interruption_checkpoint()
25803         to force an interruption checkpoint even if running a protected
25804         wrapper, which is used by the same runtime invoke wrapper to do a check
25805         at a safe point.
25806
25807 2004-09-28  Lluis Sanchez Gual  <lluis@novell.com>
25808
25809         * object.c, object-internals.h: Implemented mono_release_type_locks,
25810         which releases the cctor locks held by a thread.
25811         * threads.c, threads.h: In thread_cleanup, release cctor locks held
25812         by a thread. Added mono_thread_exit() method to be used to safely stop
25813         a thread.
25814
25815 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25816
25817         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): 
25818         Move null check before dereference.  Avoid indexing beyond the end
25819         of the 'modules' array.
25820
25821 2004-09-28  Raja R Harinath  <rharinath@novell.com>
25822
25823         * metadata-internals.h (MonoImage): Add module_count field.
25824         * image.c (load_modules): Set image->module_count.
25825         (mono_image_load_file_for_image): Use image->module_count.
25826         * reflection.c (mono_image_load_module): Append to image->modules array 
25827         of dynamic assembly.
25828         (mono_module_get_object): Fix loop to actually increment index.
25829         Use image->module_count.
25830         * assembly.c (mono_assembly_load_references): Use image->module_count.
25831         * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25832         Likewise.
25833
25834 2004-09-28  Zoltan Varga  <vargaz@freemail.hu>
25835
25836         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): 
25837         Avoid assert on generic types.
25838
25839 2004-09-26  Zoltan Varga  <vargaz@freemail.hu>
25840
25841         * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25842
25843         * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25844
25845         * reflection.c (mono_reflection_marshal_from_marshal_spec): New 
25846         function to convert a MarshalSpec structure to its managed counterpart.
25847
25848         * reflection.c: Fix warnings.
25849         
25850         * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25851         field.
25852
25853         * icall.c (mono_create_icall_signature): Fix build.
25854
25855 2004-09-25  Zoltan Varga  <vargaz@freemail.hu>
25856
25857         * icall.c: Add MakePointType icall.
25858
25859         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25860         warnings.
25861
25862 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25863
25864         * threadpool.c: reuse allocated slots in the queue.
25865
25866 2004-09-24  Zoltan Varga  <vargaz@freemail.hu>
25867
25868         * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25869
25870         * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25871
25872         * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25873         previous change.
25874
25875         * tabledefs.h: Add constants for pinvoke attributes BestFit and
25876         ThrowOnUnmappableChar.
25877
25878         * icall.c (ves_icall_Type_GetPacking): New icall.
25879
25880 2004-09-24  Martin Baulig  <martin@ximian.com>
25881
25882         * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25883
25884 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25885
25886         * appdomain.c:
25887         (mono_domain_set): allow setting a domain that is being unloaded.
25888         (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25889         being unloaded.
25890
25891 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25892
25893         * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25894         the GetCustomAttributes icall.
25895
25896 2004-09-23  Martin Baulig  <martin@ximian.com>
25897
25898         * object-internals.h (MonoReflectionGenericParam): Replaced
25899         'has_ctor_constraint', `has_reference_type' and `has_value_type'
25900         with `guint32 attrs'.
25901
25902 2004-09-23  Martin Baulig  <martin@ximian.com>
25903
25904         * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25905
25906 2004-09-23  Martin Baulig  <martin@ximian.com>
25907
25908         * object-internals.h (GenericParameterAttributes): New enum.
25909
25910 2004-09-23  Zoltan Varga  <vargaz@freemail.hu>
25911
25912         * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25913         
25914         * class.c (init_events): Fill out event->other field.
25915
25916         * class.c: Fix warnings.
25917
25918         * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25919
25920 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25921
25922         * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25923         walk which doesn't supply the IL offset.
25924
25925 2004-09-22  Martin Baulig  <martin@ximian.com>
25926
25927         * reflection.c (mono_reflection_setup_internal_class): If we're
25928         System.ValueType, System.Object or System.Enum, set
25929         `klass->instance_size' and create the vtable.
25930         (mono_reflection_create_internal_class): If we're an enum type,
25931         get the base class from our current corlib.
25932
25933 2004-09-22  Zoltan Varga  <vargaz@freemail.hu>
25934
25935         * reflection.h (MonoResolveTokenError): New type.
25936
25937         * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25938         icall.
25939
25940         * icall.c: Add an 'error' argument to the ResolveToken icalls.
25941
25942 2004-09-22  Lluis Sanchez Gual  <lluis@novell.com>
25943
25944         * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25945         Support also calling constructors, but only for already allocated objects.
25946
25947 2004-09-17  Geoff Norton <gnorton@customerdna.com>
25948
25949         * reflection.c (type_get_qualified_name): If the klass is null
25950         return the typename to avoid a NullRefEx.
25951         (encode_cattr_value): Get the qualified name of the boxed type,
25952         not the underlying enumtype.  Fixes #62984.
25953
25954 2004-09-21  Zoltan Varga  <vargaz@freemail.hu>
25955
25956         * marshal.c: Fix problems with previous checkin.
25957
25958 2004-09-21    <vargaz@freemail.hu>
25959
25960         * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25961         existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25962
25963         * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25964
25965 2004-09-21  Geoff Norton <gnorton@customerdna.com>
25966
25967         * icall.c (ves_icall_MonoType_GetElementType): GetElementType
25968         should only return a type for pointers, arrays, and passbyref types.
25969         Fixes bug #63841.
25970
25971 2004-09-21  Martin Baulig  <martin@ximian.com>
25972
25973         * domain.c (mono_debugger_check_runtime_version): New public
25974         function.
25975
25976         * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.    
25977
25978 2004-09-20  Sebastien Pouliot  <sebastien@ximian.com>
25979
25980         * reflection.c: Added missing sort to the declarative security 
25981         attributes table. MS implementation stops seeing the attributes if the
25982         token number regress in the table (as shown by ildasm and permview).
25983
25984 2004-09-20  Zoltan Varga  <vargaz@freemail.hu>
25985
25986         * object-internals.h (MonoReflectionModule): Add 'token' field.
25987         
25988         * reflection.c (mono_reflection_get_token): Add support for Module
25989         and Assembly.
25990         (mono_module_get_object): Set 'token' field.
25991         (mono_module_file_get_object): Set 'token' field.
25992
25993         * icall.c: Add new Assembly and Module icalls.
25994
25995         * appdomain.c: Bump corlib version.
25996
25997 2004-09-19  Zoltan Varga  <vargaz@freemail.hu>
25998
25999         * loader.h loader.c class.h class.c: Add helper functions for obtaining
26000         tokens of metadata objects.
26001
26002         * reflection.h reflection.c (mono_reflection_get_token): New function
26003         to obtain the token of a metadata object.
26004
26005         * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26006
26007 2004-09-17  Zoltan Varga  <vargaz@freemail.hu>
26008
26009         * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26010         
26011         * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26012
26013 2004-09-16  Sebastien Pouliot  <sebastien@ximian.com>
26014
26015         * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26016         * object-internals.h: Added 3 MonoArray* members to MonoReflection
26017         AssemblyBuilder to access the permissions set in the class lib.
26018         * reflection.c: Added security attributes encoding step in 
26019         mono_image_build_metadata.
26020         * tabledefs.h: Added new security actions defined in 2.0:
26021         LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26022
26023 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26024
26025         * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26026         macro parameter.
26027
26028 2004-09-16  Lluis Sanchez Gual  <lluis@novell.com>
26029  
26030         * locales.c: nullify the ICU_collator member of CompareInfo when it is
26031           finalized. There where random SIGSEVs at program termination, when
26032           an object being finalized was trying to do a string comparison and
26033           the current culture was already finalized.
26034  
26035 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26036
26037         * threads.c: call thread_cleanup before finishing the thread if we get
26038         there.
26039
26040 2004-09-16  Zoltan Varga  <vargaz@freemail.hu>
26041
26042         * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26043         assemblies from the parent. Fixes #65665.
26044
26045 2004-09-15  Zoltan Varga  <vargaz@freemail.hu>
26046
26047         * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26048         modifiers.
26049
26050 2004-09-14  Bernie Solomon  <bernard@ugsolutions.com>
26051
26052         * reflection.h: add prototype for mono_get_dbnull_object
26053         * reflection.c: add prototypes for get_default_param_value_blobs 
26054         and mono_get_object_from_blob for fussier compilers
26055
26056 2004-09-14  Lluis Sanchez Gual  <lluis@novell.com>
26057  
26058         * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26059         false deadlock checks in class initialization.
26060  
26061 2004-09-13  Zoltan Varga  <vargaz@freemail.hu>
26062
26063         * image.c (mono_image_addref): Fix comment.
26064
26065         * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26066         possible.
26067
26068 2004-09-12  Jambunathan K  <kjambunathan@novell.com>
26069
26070         * reflection.c (mono_param_get_objects): Modified to return
26071         ParameterInfo.DefaultValue object.
26072
26073         (get_default_param_value_blobs):
26074         (mono_get_object_from_blob):
26075         (mono_get_dbnull_object): New helper routines. 
26076
26077         * object.c (mono_get_constant_value_from_blob): New helper routine
26078         carved out from get_default_field_value ()
26079
26080         * object-internals.h (mono_get_constant_value_from_blob): Added
26081         function declaration.
26082
26083 2004-09-11  Zoltan Varga  <vargaz@freemail.hu>
26084
26085         * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load 
26086         referenced assemblies. Fixes #62135.
26087
26088         * exception.h exception.c (mono_get_exception_file_not_found2): New
26089         helper function.
26090
26091 2004-09-10  Zoltan Varga  <vargaz@freemail.hu>
26092
26093         * class.h class.c: Add mono_type_get_underlying_type ().
26094
26095 2004-09-09  Geoff Norton <gnorton@customerndna.com>
26096
26097         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26098         Fix GetTypes() to support dynamically created assemblies.
26099
26100 2004-09-09  Zoltan Varga  <vargaz@freemail.hu>
26101
26102         * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26103         
26104         * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26105         previous patch.
26106
26107         * reflection.h reflection.c loader.c: Allow dynamic construction of
26108         pinvoke methods. Fixes #65571.
26109         
26110         * reflection.c (mono_reflection_get_type): Revert previous change since
26111         it causes regressions.
26112
26113 2004-09-08  Martin Baulig  <martin@ximian.com>
26114
26115         * class.c (class_compute_field_layout): Don't call
26116         mono_class_layout_fields() for open generic instances.
26117
26118 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26119         * threads.c appdomain.c: fix typo in GC macro
26120
26121 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26122
26123         * threads.c: don't call mono_thread_detach() in start_wrapper(),
26124         avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26125
26126 2004-09-08  Zoltan Varga  <vargaz@freemail.hu>
26127
26128         * image.c (mono_image_close): Applied patch from 
26129         vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26130         assembly is loaded multiple times from data.
26131         
26132         * image.c (mono_image_open): Fix warning.
26133
26134 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26135
26136         * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26137         once. Fixes #58334.
26138         
26139         * reflection.c (mono_reflection_create_runtime_class): Initialize
26140         klass->nested_classes. Fixes #61224.
26141
26142 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26143
26144         * threads.c: sched_yield() on exit, to allow threads to quit.
26145
26146 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26147
26148         * object.c (mono_unhandled_exception): Remove leftover debug code.
26149
26150 2004-09-07  Atsushi Enomoto  <atsushi@ximian.com>
26151
26152         * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26153
26154 2004-09-07  Zoltan Varga  <vargaz@freemail.hu>
26155
26156         * marshal.c (emit_marshal_array): Really null terminate string arrays.
26157         
26158         * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26159
26160 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26161
26162         * marshal.c (emit_marshal_array): Null terminate string arrays.
26163         
26164         * marshal.c (raise_auto_layout_exception): Fix warning.
26165
26166         * reflection.c (mono_param_get_objects): Initialize the default value
26167         with DBNull.Value, not null. Fixes #62123.
26168
26169 2004-09-01  Miguel de Icaza  <miguel@ximian.com>
26170
26171         * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26172         throw an exception with a cute explanation.
26173
26174 2004-09-06  Dick Porter  <dick@ximian.com>
26175
26176         * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26177         Close the new process's thread handle, as we don't use it.  The
26178         handle stays around forever otherwise.
26179
26180 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26181
26182         * object.c (arith_overflow): Fix warning.
26183
26184         * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26185         calling conventions in method refs. Fixes #65352.
26186
26187         * reflection.c: Fix warnings.
26188
26189 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26190
26191         * icall.c: Add a new icall for Array.Clear
26192
26193 2004-09-06 Ben Maurer  <bmaurer@users.sourceforge.net>
26194
26195         * object.c: When allocating an array, we have to throw
26196         an overflow exception if any of the lengths are < 0.
26197
26198 2004-09-06  Zoltan Varga  <vargaz@freemail.hu>
26199
26200         * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26201         properly. Also move implementation of string array marshalling to 
26202         managed code. Fixes #42316.
26203
26204 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26205
26206         * assembly.c: provide more information when loading an assembly fails.
26207
26208 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26209
26210         * filewatcher.c: don't expect the development fam package to be
26211         installed.
26212
26213 2004-09-03  Zoltan Varga  <vargaz@freemail.hu>
26214
26215         * marshal.c: Make a copy of the signature cookie since it will be
26216         freed by the caller.
26217         
26218         * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26219
26220         * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26221
26222         * metadata.c (mono_metadata_free_marshal_spec): New function to free
26223         marshal specs.
26224
26225         * marshal.c: More refactoring.
26226         
26227         * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26228         smaller functions.
26229
26230 2004-09-03  Lluis Sanchez Gual  <lluis@novell.com>
26231
26232         * object.c: In mono_message_invoke, fill the output parameter array after
26233           calling the managed method (it was done before the call). This fixes
26234           bug #59299.
26235
26236 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26237
26238         * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26239         as well.
26240
26241 2004-09-02  Martin Baulig  <martin@ximian.com>
26242
26243         * class.c (mono_class_instance_size): Don't allow generic type
26244         definitions or open generic instances.
26245         (mono_class_array_element_size): If we're a value type, call
26246         mono_class_instance_size() on the original class.
26247
26248         * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26249         handle generic instances.
26250
26251         * mono-debug-debugger.c (write_type): Handle generic instances
26252         like classes.
26253
26254 2004-09-02  Zoltan Varga  <vargaz@freemail.hu>
26255
26256         * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26257         the allocation request fails. Fixes #65089.
26258
26259         * object.c (mono_runtime_free_method): Do not call mono_free_method.
26260         
26261         * object.c (mono_runtime_free_method): New function to free a dynamic
26262         method.
26263
26264         * marshal.c (mono_delegate_free_ftnptr): New function to free the
26265         delegate trampoline.
26266
26267         * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26268         with hasthis as dynamic,
26269
26270         * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26271
26272         * domain.c (mono_jit_info_table_remove): New function to remove an
26273         entry from the jit info table.
26274
26275         * class-internals.h (MonoMethod): Add 'dynamic' field.
26276
26277         * loader.c: Fix warnings.
26278
26279 2004-09-01  Martin Baulig  <martin@ximian.com>
26280
26281         * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26282         instead of mono_debugger_lock() because the latter one is a no-op
26283         unless running in the debugger.
26284
26285 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26286
26287         * class.c (class_compute_field_layout): Classes with auto-layout or
26288         reference fields are not blittable.
26289         
26290 2004-09-01  Dick Porter  <dick@ximian.com>
26291
26292         * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26293         mono_image_get_filename() to get the assembly location.
26294
26295         * icall.c:
26296         * metadata.h: Fix compile warnings
26297
26298 2004-09-01  Zoltan Varga  <vargaz@freemail.hu>
26299
26300         * class.c (class_compute_field_layout): System.Object is blittable.
26301
26302         * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26303         as in/out. Fixes #59909.
26304
26305 2004-09-01  Martin Baulig  <martin@ximian.com>
26306
26307         * metadata.h (MONO_TYPE_ISREFERENCE): Call
26308         mono_metadata_generic_inst_is_valuetype() if we're a generic
26309         instance to check whether our underlying type is a reference type.
26310
26311 2004-09-01  Martin Baulig  <martin@ximian.com>
26312
26313         * metadata.c (mono_type_size): If we're a generic instance, call
26314         mono_class_value_size() for value types.
26315
26316 2004-08-31  Zoltan Varga  <vargaz@freemail.hu>
26317
26318         * marshal.c: Implement more custom marshalling functionality. Fixes
26319         #64915.
26320
26321 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26322
26323         * mono-debug.c, debug-mono-symfile.c: add some locking love.
26324
26325 2004-08-30  Zoltan Varga  <vargaz@freemail.hu>
26326
26327         * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26328
26329         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26330
26331         * icall.c: Fix some warnings.
26332
26333         * threads.c (abort_appdomain_thread): Fix unref errors.
26334         (mono_thread_current): Fix THREAD_DEBUG define.
26335
26336 2004-08-29  Zoltan Varga  <vargaz@freemail.hu>
26337
26338         * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26339
26340         * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26341
26342 2004-08-28  Zoltan Varga  <vargaz@freemail.hu>
26343
26344         * marshal.c (mono_marshal_get_native_wrapper): Add support for byref 
26345         string arrays.
26346
26347 2004-08-28  Martin Baulig  <martin@ximian.com>
26348
26349         * metadata.c
26350         (mono_metadata_generic_inst_is_valuetype): New public function.
26351
26352         * metadata.h (MONO_TYPE_ISSTRUCT): Call
26353         mono_metadata_generic_inst_is_valuetype() if we're a generic
26354         instance to check whether our underlying type is a valuetype.
26355
26356 2004-08-26  Zoltan Varga  <vargaz@freemail.hu>
26357
26358         * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26359         #63768.
26360
26361 2004-08-25  Martin Baulig  <martin@ximian.com>
26362
26363         * loader.c (mono_get_method_from_token): Abstract methods can also
26364         be generic and thus have type parameters.
26365
26366         * metadata-internals.h
26367         (MonoDynamicImage): Added `GPtrArray *gen_params'.
26368
26369         * reflection.c (mono_image_get_generic_param_info): Don't create a
26370         metadata row, just add an entry to the `gen_params' array.
26371         (build_compressed_metadata): Sort the `gen_params' array and then
26372         actually create the metadata.
26373
26374 2004-08-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26375
26376         * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26377
26378 2004-08-25  Zoltan Varga  <vargaz@freemail.hu>
26379
26380         * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26381
26382 2004-08-24  Martin Baulig  <martin@ximian.com>
26383
26384         * class.cs (mono_class_is_subclass_of): Like an interface, a
26385         generic instance also derives from System.Object.
26386
26387 2004-08-23  Zoltan Varga  <vargaz@freemail.hu>
26388
26389         * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26390         custom modifiers to be in any order. Fixes #61990.
26391
26392 2004-08-20  Zoltan Varga  <vargaz@freemail.hu>
26393
26394         * object.c: Register mono_object_new_fast icall.
26395         
26396         * object.c (mono_class_get_allocation_ftn): Return to calling
26397         mono_object_new_fast, since it seems faster to compute the object 
26398         size in unmanaged code than passing it as a parameter.
26399
26400         * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26401
26402         * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26403         this function with Boehm as the oom handler, so we don't have to check
26404         the result of GC_malloc.
26405
26406         * object.c: Remove checks for oom.
26407
26408         * object.h object.c (mono_class_get_allocation_ftn): New function to
26409         return the icall which can be used to allocate an instance of a given
26410         class. 
26411
26412         * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26413
26414         * class-internals.h: Add 'enabled' field.
26415
26416 2004-08-19  Zoltan Varga  <vargaz@freemail.hu>
26417
26418         * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26419
26420 2004-08-18  Jambunathan K  <kjambunathan@novell.com>
26421         * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26422         value 0x0010.
26423
26424 2004-08-18 Ben Maurer  <bmaurer@users.sourceforge.net>
26425
26426         * appdomain.c: use the Tls function for appdomain too,
26427         at Zoltan's request. Actually return in mono_context_get
26428
26429         * appdomain.c, profiler.c, threads.c: use __thread
26430
26431 2004-08-18  Zoltan Varga  <vargaz@freemail.hu>
26432
26433         * appdomain.c threads.c: Call GC_CreateThread on windows.
26434
26435         * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26436         multiple libraries since this don't work on windows.
26437
26438 2004-08-18  Martin Baulig  <martin@ximian.com>
26439
26440         * class-internals.h
26441         (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26442         MonoMethodHeader.
26443
26444         * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26445         MonoMethodNormal since we also need it for abstract and interface
26446         methods.
26447
26448         * reflection.c
26449         (build_compressed_metadata): Sort the GenericParam table.
26450         (mono_image_create_token): Added `gboolean create_methodspec'
26451         argument; this is false when generating a MethodImpl token.
26452         (reflection_methodbuilder_to_mono_method): Abstract and interface
26453         methods may also have generic parameters.
26454
26455 2004-08-17 Ben Maurer  <bmaurer@users.sourceforge.net>
26456
26457         * appdomain.c: thread local alloc
26458
26459 2004-08-17  Martin Baulig  <martin@ximian.com>
26460
26461         * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26462
26463         * icall.c
26464         (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26465         argument.
26466
26467         * class.c (mono_type_get_full_name): New public function.
26468         (mono_type_get_name): Don't include the type arguments.
26469
26470 2004-08-16  Zoltan Varga  <vargaz@freemail.hu>
26471
26472         * Makefile.am: Build static versions of libmetadata and libmonoruntime
26473         for inclusion into the mono executable.
26474
26475 2004-08-16  Martin Baulig  <martin@ximian.com>
26476
26477         * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26478         MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26479
26480 2004-08-14  Martin Baulig  <martin@ximian.com>
26481
26482         * class.c (dup_type): Also copy the `byref' field.
26483
26484 2004-08-15  Zoltan Varga  <vargaz@freemail.hu>
26485
26486         * reflection.c (create_dynamic_mono_image): Revert the last change 
26487         since it breaks bootstrap.
26488
26489 2004-08-14  Zoltan Varga  <vargaz@freemail.hu>
26490
26491         * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26492
26493         * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26494         not free them with g_free.
26495
26496 2004-08-11  Martin Baulig  <martin@ximian.com>
26497
26498         * reflection.c (mono_reflection_setup_internal_class): Also call
26499         mono_class_setup_mono_type() if we already have a `tb->type.type'.
26500
26501 2004-08-09  Sebastien Pouliot  <sebastien@ximian.com>
26502
26503         * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when 
26504         called during default (first) AppDomain creation. Keep track of
26505         Evidence when loading assemblies.
26506
26507 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26508
26509         * opcodes.c, opcodes.h: reduce runtime relocations.
26510
26511 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26512
26513         * culture-info.h, locales.c: fixes and chages to sue the new
26514         optimized format of the locale data.
26515         * culture-info-tables.h: regenerated.
26516
26517 2004-08-06  Geoff Norton <gnorton@customerdna.com>
26518         
26519         * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26520
26521 2004-08-05  Sebastien Pouliot  <sebastien@ximian.com>
26522
26523         * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26524         ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26525         * domain-internals.h: icall declaration.
26526         * icall.c: icall registration.
26527         * object-internals.h: New fields in MonoAssembly for CAS.
26528
26529 2004-08-05  Duncan Mak  <duncan@ximian.com>
26530
26531         * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26532         CEE_LDELEM_ANY.
26533
26534 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26535
26536         * reflection.c: fix to deal with object[] arrays in custom ctors
26537         (bug #62550).
26538
26539 2004-08-05  Martin Baulig  <martin@ximian.com>
26540
26541         * class.c (mono_class_array_element_size): Added support for
26542         generic instances and correctly handle "recursive" types.
26543
26544 2004-08-05  Zoltan Varga  <vargaz@freemail.hu>
26545
26546         * assembly.c: Fix warnings.
26547
26548 2004-08-04  Martin Baulig  <martin@ximian.com>
26549
26550         * class.c
26551         (mono_type_get_name_recurse): Added `gboolean include_arity'
26552         argument specifying whether or not we should include the generic
26553         arity in the type name.
26554         (_mono_type_get_name): New static function.
26555         (mono_class_setup_vtable): If we're a generic instance, don't
26556         include the generic arity in the names of explicit method
26557         implementations.        
26558
26559 2004-08-03  Martin Baulig  <martin@ximian.com>
26560
26561         * class.c (mono_type_get_name_recurse): Enclose the generic type
26562         arguments in `<', '>'.
26563
26564 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26565
26566         * gc.c: make GC warning messages use the trace API, they are just
26567         noise to most of the users.
26568
26569 2004-08-03  Martin Baulig  <martin@ximian.com>
26570
26571         * debug-mono-symfile.c (read_string): Correctly read the string.
26572
26573 2004-07-30  Zoltan Varga  <vargaz@freemail.hu>
26574
26575         * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26576         
26577         * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26578         icalls.
26579         (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26580
26581 2004-07-30  Martin Baulig  <martin@ximian.com>
26582
26583         * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26584         Reflect latest symbol writer changes.   
26585
26586 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26587
26588         * object.c: always create an object if null is passed
26589         to Invoke() where a valuetype is expected.
26590
26591 2004-07-29  Bernie Solomon  <bernard@ugsolutions.com>
26592
26593         * marshal.c (mono_marshal_init): make managed
26594         signatures match native ones better for 64bits.
26595
26596 2004-07-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26597
26598         * appdomain.c: hack to build correctly the private bin path on windows.
26599         Fixes bug #61991.
26600
26601 2004-07-28  Lluis Sanchez Gual  <lluis@novell.com>
26602
26603         * assembly.c: Load mscorlib from the correct framework directory
26604           (mono/<version>/mscorlib.dll).
26605         * appdomain.h: Added prototypes for new functions.
26606         * internals.h: Added some prototypes.
26607         * domain.c: When initializing the runtime, get from the executable and
26608           the configuration files the runtime version that the app supports.
26609           Added support methods for reading app.exe.config. Added list of versions
26610           supported by the JIT. Added two new methods: mono_init_from_assembly,
26611           which initializes the runtime and determines the required version from
26612           the provided exe file, and mono_init_version, which initializes
26613           the runtime using the provided version.
26614         * icall.c: Get machine.config from version-specific directory.
26615         * reflection.c: When generating an image, embed the version number
26616           of the current runtime.
26617
26618 2004-07-28  Dick Porter  <dick@ximian.com>
26619
26620         * socket-io.c
26621         (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26622         returned sockaddr size before creating the remote address object.
26623         Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26624         61608.
26625
26626 2004-07-28  Dick Porter  <dick@ximian.com>
26627
26628         * locales.c (string_invariant_compare_char): Fix invariant char
26629         compares between upper and lower cases.  Fixes bug 61458.
26630
26631 2004-07-27  Ben Maurer  <bmaurer@ximain.com>
26632         
26633         * marshal.c: actually cache stelem.ref wrappers.
26634         
26635 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26636
26637         * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image 
26638         sections and remove the mono_cli_rva_map () function.
26639
26640 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26641
26642         * debug-mono-symfile.c: fix one more endianess issue, from a patch
26643         by Geoff Norton (<gnorton@customerdna.com>).
26644
26645 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26646
26647         * class.c: fix class loads for pointer types (typeof(int) !=
26648         typeof(int*)).
26649
26650 2004-07-27  Martin Baulig  <martin@ximian.com>
26651
26652         * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26653         reading the debugging information from an external ".mdb" file.
26654
26655 2004-07-24  Martin Baulig  <martin@ximian.com>
26656
26657         * reflection.c (mono_image_get_type_info): Only write a class
26658         layout entry if we actually have a size or a packing size.
26659
26660 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26661
26662         * reflection.c (type_get_fully_qualified_name): 
26663         insert cast to get type checking of ?: with non-gcc compilers
26664
26665 2004-07-21  Bernie Solomon  <bernard@ugsolutions.com>
26666
26667         * rand.c: use g_getenv for both lookups of
26668         MONO_EGD_SOCKET
26669
26670 2004-07-17  Martin Baulig  <martin@ximian.com>
26671
26672         * reflection.c (mono_reflection_bind_generic_method_parameters):
26673         Set `gmethod->reflection_info'.
26674
26675 2004-07-17  Martin Baulig  <martin@ximian.com>
26676
26677         * class.c (mono_class_create_from_typedef): Insert the newly
26678         created class into the hash table before computing the interfaces
26679         since we could be called recursively.
26680
26681 2004-07-16  Ben Maurer  <bmaurer@ximain.com>
26682
26683         * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26684         function to implement stelem.ref in managed code
26685         * class-internals.h, debug-helpers.c: a new wrapper type
26686         for the above.
26687
26688 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26689
26690         * gc.c: allow GC handles to work even when no GC is compiled in.
26691         Fix part of bug #61134 (GetAddrOfPinnedObject).
26692
26693 2004-07-13  Peter Williams  <peter@newton.cx>
26694  
26695         * process.c (complete_path): Make sure we don't attempt to execute
26696         directories.
26697  
26698 2004-07-12  Geoff Norton <gnorton@customerdna.com>
26699
26700         * DateTime.cs: Patch for bug #61112.  Our DateTime wasn't roundtripping over timezone
26701           boundaries properly.  This patch checkes ToLocalTime() to see if we're tripping over a boundary
26702           and will add/subtract the hour if needed
26703
26704 2004-07-12  Martin Baulig  <martin@ximian.com>
26705
26706         * reflection.c (mono_field_get_object): If we have
26707         `field->generic_info', take the attributes from
26708         `field->generic_info->generic_type'.    
26709
26710 2004-07-12  Martin Baulig  <martin@ximian.com>
26711
26712         * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26713         This function must be called before initializing the runtime.
26714         (mono_debug_init_1): New function; call this after initializing
26715         the runtime, but before loading the assembly.  It tells the
26716         debugger to load corlib and the builtin types.
26717
26718         * mono-debug-debugger.c: Did some larger changes in the debugging
26719         code; support recursive class declarations, make sure we actually
26720         add all classes.
26721
26722 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26723
26724         * debug-helpers.c: undo my previous patch and fixed the real issue in
26725         ../mini/exceptions-x86.c
26726
26727 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26728
26729         * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26730         when no HOME env. variable was set and a NullRef was thrown in a .cctor
26731         called from other .cctors.
26732
26733 2004-07-09  Miguel de Icaza  <miguel@ximian.com>
26734
26735         * loader.c: Removed the mono_loader_wine_init hack now that we are
26736         doing a managed version of Windows.Forms.
26737
26738 2004-07-09  Ben Maurer  <bmaurer@ximian.com>
26739
26740         * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26741         threadpool.c, threads.c: remove static data from rootset.
26742
26743 2004-07-09  Dick Porter  <dick@ximian.com>
26744
26745         * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26746         Don't do any more processing if the matched length was 0.  It was
26747         increasing the size of the string before.  Fixes bug 61167.
26748
26749 2004-07-09  Dick Porter  <dick@ximian.com>
26750
26751         * socket-io.h:
26752         * socket-io.c
26753         (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26754         Add support for SO_PEERCRED if its available.
26755
26756 2004-07-09  Peter Bartok <pbartok@novell.com>
26757         * loader.c: winelib.exe.so error message is now only displayed if
26758         MONO_DEBUG is set. To help us avoid questions when people are trying
26759         out the new Managed.Windows.Forms.
26760
26761 2004-07-08  Zoltan Varga  <vargaz@freemail.hu>
26762
26763         * class-internals.h debug-helpers.c marshal.c: Add new wrapper types 
26764         for isinst and castclass wrappers.
26765
26766         * class-internals.h icall.c: Move registration and lookup of JIT icalls
26767         to libmetadata from the JIT, so they could be used by the marshalling
26768         code and the interpreter.
26769
26770         * marshal.c: Register marshalling related JIT icalls here instead of
26771         in mini.c. Use CEE_MONO_ICALL instead of the family of 
26772         CEE_MONO_PROC<x> opcodes to call marshalling functions.
26773
26774         * metadata.h: Remove unneeded marshalling conversions.
26775
26776         * opcodes.c: Update for new opcodes.
26777         
26778 2004-07-08  Martin Baulig  <martin@ximian.com>
26779
26780         * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26781         (mono_debug_get_domain_data): Make this function static.
26782
26783 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26784
26785         * gc.c, object.h: add nice GC handle API for embedders.
26786
26787 2004-07-06  Ben Maurer  <bmaurer@ximian.com>
26788
26789         * reflection.c: more changes for the new api
26790
26791         * object.c: When we reflect on a field w/ a constant value, it
26792         will not have a memory location, so we must access metadata. Also,
26793         allow easier reading of strings so that we can read them from
26794         the constant data.
26795
26796         * class.c (mono_class_layout_fields): no need for literal fields here.
26797
26798         * class-internals.h: api changes for const fields
26799
26800         * icall.c (ves_icall_get_enum_info): use new apis for const fields
26801
26802 2004-07-06  Martin Baulig  <martin@ximian.com>
26803
26804         * mono-debug.h: Increment version number to 44.
26805
26806         * mono-debug.c (mono_debug_add_wrapper): The second argument is
26807         now a gpointer, rewrote this whole method.
26808
26809         * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26810         function.  Add information about the wrapper in a new "misc table".
26811
26812         * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26813         for the new misc table.
26814
26815 2004-07-05  Zoltan Varga  <vargaz@freemail.hu>
26816
26817         * metadata-internals.h image.c: Add a cache for helper signatures.
26818
26819         * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26820
26821 2004-07-03  Zoltan Varga  <vargaz@freemail.hu>
26822
26823         * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26824         delegates from a delegate. Fixes #61033.
26825         
26826         * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26827         marshalling of stringbuilder arrays. Fixes #59900.
26828
26829 2004-07-02  Zoltan Varga  <vargaz@freemail.hu>
26830
26831         * icall.c: Add EnumBuilder:setup_enum_type icall.
26832
26833 2004-06-30  Ben Maurer  <bmaurer@ximian.com>
26834
26835         * icall.c: Added a new icall for the property version of
26836         OffsetOfStringData.
26837
26838 2004-06-30  Zoltan Varga  <vargaz@freemail.hu>
26839
26840         * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26841         it has a constant size across platforms.
26842
26843         * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26844         stack trace.
26845
26846 2004-06-29  Martin Baulig  <martin@ximian.com>
26847
26848         * mono-debug.c (mono_debug_add_method): Protect the whole function
26849         in mono_debugger_lock(), not just parts of it.
26850
26851 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26852
26853         * reflection.c: make sure padding bytes in heaps are zeroed.
26854
26855 2004-06-24  David Waite  <mass@akuma.org>
26856
26857         * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26858         image.c, loader.c, locales.c, marshal.c, metadata.c,
26859         mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26860         string-icalls.c, threads.c: change to C90-style comments from C99 /
26861         C++ -style
26862
26863 2004-06-24  Dick Porter  <dick@ximian.com>
26864
26865         * threads.c
26866         (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26867         return createdNew.  Fixes bug 60412.
26868
26869         * threads-types.h: 
26870         * icall.c: Add createdNew parameter to CreateMutex icall
26871
26872 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26873
26874         * reflection.c, object-internals.h: save default value in params.
26875
26876 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26877
26878         * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26879         no need to build a new path combining that with the application base.
26880         Fixes bug #60442.
26881
26882 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26883
26884         * reflection.c: fixed minor standard compliance issues.
26885
26886 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26887
26888         * reflection.c: fixed issue with encoding some custom attributes
26889         (arrays in properties and fields, bug #60411).
26890
26891 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26892
26893         * reflection.c: fix start address when copying the public key token.
26894
26895 2004-06-23  Martin Baulig  <martin@ximian.com>
26896
26897         * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26898         the `exc' object in a static object to put it into the GC's root set.
26899
26900 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26901
26902         * reflection.c: make mono_reflection_setup_internal_class ()
26903         callable a second time to setup a new parent class.
26904
26905 2004-06-23  Dick Porter  <dick@ximian.com>
26906
26907         * threads.c: Check for WAIT_IO_COMPLETION return values.
26908
26909 2004-06-22  Sebastien Pouliot  <sebastien@ximian.com>
26910
26911         * appdomain.c: Removed the g_free on the public key token. Now copy 
26912         the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26913         * assembly.c: Added public key token string value when loading 
26914         assemblies. Fix bug #60439.
26915         * icall.c: Added missing informations (like public key) in 
26916         GetReferencedAssemblies. Fix #60519.
26917         * image.h: Changed definition for public key token from const char*
26918         public_tok_value to guchar public_key_token [17];
26919         * reflection.c: Updated for changes to public key token.
26920
26921 2004-06-22  Lluis Sanchez Gual
26922
26923         * icall.c: In ves_icall_InternalExecute, when setting a filed, also look 
26924         for the field in base classes.
26925
26926 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26927
26928         * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26929         mark headers as not supported, they are installed only for use by the
26930         debugger.
26931
26932 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26933
26934         * *.c, *.h: avoid namespace pollution in public headers.
26935
26936 2004-06-21  Martin Baulig  <martin@ximian.com>
26937
26938         * exception.c (mono_get_exception_security): It's in
26939         "System.Security", not in "System".
26940
26941         * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26942         the exception classes.
26943
26944 2004-06-21  Martin Baulig  <martin@ximian.com>
26945
26946         * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26947         Protect the exception object from being finalized.
26948
26949 2004-06-21  Martin Baulig  <martin@ximian.com>
26950
26951         * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26952         public function.
26953
26954 2004-06-21  Sebastien Pouliot  <sebastien@ximian.com>
26955
26956         * reflection.c: Load the assembly in mono_reflection_type_from_name,
26957         if it was not loaded before. Fix parts of #60439.
26958
26959 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26960
26961         * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26962         code that was broken since Ben's change: wrappers are now
26963         dependent on the method signature only again.
26964
26965 2004-06-21  Martin Baulig  <martin@ximian.com>
26966
26967         * mono-debug-debugger.c (write_class): Cleaned this up a bit and
26968         added interface support.
26969
26970 2004-06-21  Martin Baulig  <martin@ximian.com>
26971
26972         * class.c (mono_vtable_get_static_field_data): New public method.
26973
26974 2004-06-20  Atsushi Enomoto  <atsushi@ximian.com>
26975
26976         * filewatcher.c : Windows build fix to be compliant with API changes.
26977
26978 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26979
26980         * class.h, class.c: more accessors.
26981         * metadata.h, metadata.c: prepare for hiding MonoType and
26982         MonoMethodSignature: people should use the accessors from now on
26983         outside of the tree.
26984
26985 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
26986
26987         * *.c, *.h: more API cleanups.
26988
26989 2004-06-18  Jackson Harper  <jackson@ximian.com>
26990
26991         * assembly.c: Trace loading assemblies.
26992         * loader.c: Trace loading native libraries.
26993         * mono-config.c: Trace loading config files.
26994         
26995 2004-06-18  Dick Porter  <dick@ximian.com>
26996
26997         * locales.c: Tell ICU the lengths of strings, it can cope with
26998         embedded \0 then.  Fixes bug 59274, and doesn't break bug 55822.
26999
27000 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27001
27002         * image.c: swapped name/filename;
27003
27004 2004-06-18  Martin Baulig  <martin@ximian.com>
27005
27006         * mono-debug-debugger.c (write_class): Write the parent class at
27007         the end of the header.
27008
27009 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27010
27011         * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27012
27013 2004-06-17  Raja R Harinath  <rharinath@novell.com>
27014
27015         * Makefile.am (PLATFORM_LIB): New.  Possibly refer to ../os/libmonoos.la.
27016         (bundle_obj): New conditional define.
27017         (BUILT_SOURCES): Remove.
27018         ($(bundle_srcs)): Make parallel-make safe.
27019         (libmonoruntime_la_LIBADD): Make unconditional.
27020         (libmetadata_la_LIBADD): Make unconditional.  Refer to $(bundle_obj).
27021         (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27022
27023 2004-06-17  Atsushi Enomoto  <atsushi@ximian.com>
27024
27025         * culture-info-tables.h: It was inconsistent with the latest
27026           supp info files.
27027
27028 2004-06-17  Zoltan Varga  <vargaz@freemail.hu>
27029
27030         * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27031         be loaded.
27032
27033         * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27034         with gcc 2.95.
27035
27036 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27037
27038         * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27039         cleaned up public header threads.h.
27040
27041 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27042
27043         * Makefile.am, *.c, *.h: more API cleanups.
27044
27045 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27046
27047         * Makefile.am: removed monosn from compilation.
27048         * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27049         debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27050         image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27051         metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27052         mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27053         reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27054
27055 2004-06-15  Jackson Harper  <jackson@ximian.com>
27056
27057         * assembly.c: Make locales lower case when searching the GAC for
27058         assemblies. gacutil will always make locales lowercase when
27059         installing so this effectively makes them case insensitive.
27060         
27061 2004-06-15  Lluis Sanchez Gual  <lluis@ximian.com>
27062
27063         * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27064         * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27065           parameter which allows to choose whether the wait can be interrupted or 
27066           not. Also added the method mono_monitor_enter(), which locks the monitor
27067           using an infinite wait and without allowing interruption.
27068           In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27069           interrupted.
27070         * object.h: Added new fields in MonoThread. suspend_event holds the event
27071           used to susped/resume the thread. synch_lock is the lock object to use for
27072           modifying the thread state.
27073         * threads.c: Use the new synch_lock object for locking, instead of "this",
27074           which can generate deadlocks.
27075           Moved thread state change in Thread.Sleep and Thread.Join from managed
27076           to unmanaged code. This avoids a deadlock when the thread was suspended
27077           just after acquiring the thread lock.
27078           In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27079           Implemented Thread.Suspend using an event instead of ThreadSuspend,
27080           which is not fully implemented in the io-layer.
27081         * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27082
27083 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27084
27085         * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27086         threads-types.h: more API cleanups.
27087
27088 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27089
27090         * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27091         domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27092         threadpool.c, threads.c: first pass at the exported API cleanup.
27093
27094 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27095
27096         * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27097
27098 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27099
27100         * icall.c: added internalGetHome.
27101
27102 2004-06-14  Dick Porter  <dick@ximian.com>
27103
27104         * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27105         possible to return successfully when '.' or '..' were the only
27106         entries in a directory, but were skipped.  The MonoIOStat was not
27107         filled in in that case.  Now return ERROR_NO_MORE_FILES instead.
27108         Fixes bug 59574.
27109
27110 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27111
27112         * reflection.c: make binaries run on .Net 1.1 by default.
27113
27114 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27115
27116         * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27117
27118 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27119
27120         * marshal.c: keep track of struct size with explicit layout
27121         (bug #59979).
27122
27123 2004-06-12  Martin Baulig  <martin@ximian.com>
27124
27125         * mono-debug-debugger.c: Comment out a debugging g_message().
27126
27127 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27128
27129         * reflection.c, reflection.h: do not free custom attrs that are cached.
27130         * icall.c: use braces to make code clearer.
27131
27132 2004-06-11  Martin Baulig  <martin@ximian.com>
27133
27134         * class.h (MonoInflatedField): New type.
27135         (MonoClassField): Replaced `MonoType *generic_type' with
27136         `MonoInflatedField *generic_info'.
27137
27138         * icall.c
27139         (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27140
27141 2004-06-11  Martin Baulig  <martin@ximian.com>
27142
27143         * reflection.c (mono_image_create_method_token): Correctly encode
27144         varargs methods.
27145
27146 2004-06-11  Martin Baulig  <martin@ximian.com>
27147
27148         * metadata.c (mono_metadata_parse_method_signature): When parsing
27149         a MethodDef which has VarArgs, also set sentinelpos if we don't
27150         have any parameters.
27151
27152 2004-06-11  Martin Baulig  <martin@ximian.com>
27153
27154         * verify.c (mono_method_verify): In CEE_CALL, use
27155         mono_method_get_signature() to get the method's signature, unless
27156         we're a PInvoke method.
27157
27158 2004-06-10  Jackson Harper  <jackson@ximian.com>
27159
27160         * assembly.c: Use <path>/lib/mono/gac for the extra paths
27161         lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27162         logical name as the supplied path is just a prefix to the gac not
27163         the direct path to it.
27164         
27165 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27166
27167         * reflection.c: make the token for a created method match
27168         the token of the MethodBuilder it was created from
27169         (IKVM requires this behaviour now).
27170
27171 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27172
27173         * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27174         reflection.c, socket-io.c: leak fixes.
27175
27176 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27177
27178         * icall.c: handle sentinel pos in vararg methods in position different
27179         from 0.
27180
27181 2004-06-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27182
27183         * culture-info-tables.h: freshly generated.
27184
27185 2004-06-09  Martin Baulig  <martin@ximian.com>
27186
27187         * loader.c (mono_get_method_constrained): Call `mono_class_init
27188         (constrained_class)'.   
27189
27190 2004-06-08  Gert Driesen <drieseng@users.sourceforge.net>
27191
27192         * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27193         any methods. Fixes #59629.
27194
27195 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27196
27197         * culture-info-tables.h: reflecting locale-builder updates.
27198
27199 2004-06-08  Dick Porter  <dick@ximian.com>
27200
27201         * object.h:
27202         * locales.c: Fixed compile warnings, including a real bug in
27203         CompareInfo_internal_compare.
27204         
27205 2004-06-08  Dick Porter  <dick@ximian.com>
27206
27207         * locales.c
27208         (ves_icall_System_Globalization_CompareInfo_internal_index):
27209         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27210         Double-check the resuls of usearches, because ICU currently
27211         ignores most of the collator settings here.  Fixes bug 59720.
27212         
27213 2004-06-08  Dick Porter  <dick@ximian.com>
27214
27215         * locales.c
27216         (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27217         Fix memory leak and segfault-causing typo.  No idea how this one
27218         lasted so long without being noticed.
27219
27220 2004-06-09  Zoltan Varga  <vargaz@freemail.hu>
27221
27222         * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27223         any methods. Fixes #59629.
27224
27225 2004-06-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27226
27227         * assembly.c:
27228         (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27229         own the critical section before). Removed dead code (that's done
27230         in the preload hook).
27231
27232         (mono_assembly_load_with_partial_name): call the preload hook.
27233
27234 2004-06-08  Martin Baulig  <martin@ximian.com>
27235
27236         * metadata.c (mono_metadata_signature_alloc): Default
27237         `sentinelpos' to -1.
27238
27239         * reflection.c (mono_image_get_array_token): Likewise.
27240
27241 2004-06-08  Martin Baulig  <martin@ximian.com>
27242
27243         * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27244
27245         * metadata.c (mono_metadata_parse_method_signature): When parsing
27246         a MethodDef which has VarArgs, set sentinelpos.
27247
27248         * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27249         `gint16' since we're using -1 for non-varargs methods.
27250
27251         * reflection.c
27252         (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27253         (method_encode_signature): Added varargs support.
27254         (method_builder_encode_signature): Likewise.
27255         (mono_image_get_varargs_method_token): New static method.
27256         (mono_image_create_method_token): New public method; this is
27257         called via an icall instead of mono_image_create_token() when
27258         calling a varargs method.       
27259
27260 2004-06-08  Lluis Sanchez Gual  <lluis@ximian.com>
27261
27262         * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27263
27264 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27265
27266         * culture-info-tables.h : Reflecting the latest locale-builder that
27267           fixed empty array representation ({} to {0}).
27268
27269 2004-06-07  Jackson Harper  <jackson@ximian.com>
27270
27271         * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27272         looking up extra gac paths. This allows MONO_GAC_PATH to act
27273         exactly like a prefix.
27274         
27275 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27276
27277         * reflection.c (mono_reflection_type_from_name): Make a copy of the
27278         type name before modifying it. Fixes #59405.
27279
27280 2004-06-08  Atsushi Enomoto  <atsushi@ximian.com>
27281
27282         * culture-info.h: added fields for "all datetime patterns".
27283         * locales.c: (  ves_icall_System_Globalization_CultureInfo
27284           _construct_datetime_format ()): fill xxx_patterns fields.
27285         * object.h: added fields for "all datetime patterns" to
27286           MonoDateTimeFormatInfo.
27287         * culture-info-tables.h: reflecting locale-builder updates.
27288
27289 2004-06-08  Zoltan Varga  <vargaz@freemail.hu>
27290
27291         * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27292         the event has no add and remove methods. Fixes #59629.
27293
27294 2004-06-05  Sebastien Pouliot  <sebastien@ximian.com>
27295
27296         * object.c: Fixed possible integer overflow when allocating large
27297         strings.
27298
27299 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27300
27301         * culture-info-tables.h: reflecting locale-builder updates.
27302
27303 2004-06-05  Atsushi Enomoto  <atsushi@ximian.com>
27304
27305         * culture-info-tables.h: reflecting locale-builder updates.
27306
27307 2004-06-03  Atsushi Enomoto  <atsushi@ximian.com>
27308
27309         * culture-info-tables.h: reflecting locale-builder updates.
27310
27311 2004-06-03  Lluis Sanchez Gual  <lluis@ximian.com>
27312
27313         * threads.c: Made Thread.Sleep abortable.
27314
27315 2004-06-02  Martin Baulig  <martin@ximian.com>
27316
27317         * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27318
27319         * debug-mono-symfile.h: Bumped symbol file version number to 37.
27320
27321 2004-05-31  Zoltan Varga  <vargaz@freemail.hu>
27322
27323         * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27324
27325 2004-05-30  Jackson Harper  <jackson@ximian.com>
27326
27327         * reflection.c: Do not hardcode assembly versions or public key
27328         tokens anymore. All of this except the corlib section was dead
27329         code anyways.
27330         
27331 2004-05-29  Zoltan Varga  <vargaz@freemail.hu>
27332
27333         * object.c (mono_runtime_invoke_array): Automatically create boxed
27334         objects for byref valuetypes if needed. Fixes #59300.
27335         
27336         * object.c (mono_method_return_message_restore): Handle 
27337         MONO_TYPE_OBJECT as well.
27338
27339 2004-05-28  Jackson Harper  <jackson@ximian.com>
27340
27341         * reflection.c: The modified type encoding was causing build
27342         problems. Reverted for now.
27343         
27344 2004-05-28  Jackson Harper  <jackson@ximian.com>
27345
27346         * reflection.c/h: Take an assembly ref so that we dont create
27347         fully qualified names when encoding types in the same assembly as
27348         the custom attribute being emitted.
27349         * appdomain.c: Increment version number.
27350         
27351 2004-05-26  Duncan Mak  <duncan@ximian.com>
27352
27353         * icall.c
27354         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27355         Set the full version number (major, minor, build, revision).
27356
27357 2004-05-28  Vladimir Vukicevic  <vladimir@pobox.com>
27358
27359         * marshal.c (emit_struct_conv): increment src/dst after blit
27360         (mono_marshal_get_managed_wrapper,
27361         mono_marshal_get_native_wrapper): make sure we have marshalling
27362         info before marshalling params (info computation affects
27363         blittable)
27364
27365         * class.c (class_compute_field_layout): correctly deal with
27366         blittable
27367         (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27368         value types (as per what windows dows by default)
27369         (mono_class_setup_mono_type): System.ValueType is blittable
27370         (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27371         blittable
27372
27373         * marshal.c (mono_marshal_load_type_info): flag types  as
27374         non-blittable if the native layout doesn't match the managed
27375         layout
27376
27377 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27378
27379         * appdomain.c: don't add stuff in the private search path that is
27380         above the application base. If application base is not set, there's
27381         no private search path.
27382
27383 2004-05-28  Zoltan Varga  <vargaz@freemail.hu>
27384
27385         * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27386         byref struct arguments in native->managed marshalling.
27387
27388 2004-05-28      Patrik Torstensson      <totte@hiddenpeaks.com>
27389
27390         * marshal.c (mono_marshal_get_runtime_invoke): correctly
27391         cache methods using signature (special case for methods
27392         that are value type or string class)
27393         
27394         * image.c (mono_image_close): clean up allocated GSList's
27395         in runtime_invoke_cache.
27396
27397 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27398
27399         * mono-config.c: set the correct path for mono_cfg_dir on windows when
27400         there's no MONO_CFG_DIR environment variable defined.
27401
27402 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27403
27404         * threads.c: windows version must be >= 0x0500 to include OpenThread.
27405
27406 2004-05-28  Lluis Sanchez Gual  <lluis@ximian.com>
27407
27408         * threadpool.c: Really wait for 500ms after the async call, even if the wait
27409           is interrumped.
27410         * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27411           before waiting for it, and call CloseHandle after the wait to unref it.
27412           This will make sure that handles are not disposed too early.
27413
27414 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27415
27416         * appdomain.c:
27417         * appdomain.h:
27418         * icall.c: removed
27419         ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27420         needed now.
27421
27422         * object.c: se the application_base only for the domain that runs
27423         Main. Fixes bug #59216,
27424
27425 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27426
27427         * appdomain.c:
27428         * object.c: only the domain in which Main is run have
27429         SetupInformation.ConfigurationFile set, so moved a few lines from
27430         appdomain.c to object.c.
27431
27432 2004-05-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27433
27434         * appdomain.c: we tried to load [name].(dll|exe), but according
27435         to bug #57710, we must also try [culture]/[name].(dll|exe) and
27436         [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27437         There's a test case attached to bug #58922.
27438
27439 2004-05-27  Dick Porter  <dick@ximian.com>
27440
27441         * icall.c:
27442         * file-io.c: Implemented icalls for locking and unlocking regions
27443         in a file.
27444         (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27445         FALSE on error (fixes both compiler warning and real bug.)
27446
27447 2004-05-27  Atsushi Enomoto  <atsushi@ximian.com>
27448
27449         * culture-info-tables.h: reflecting locale-builder updates.
27450
27451           (Added missing ChangeLog entry for 05/26)
27452
27453 2004-05-27  Jackson Harper  <jackson@ximian.com>
27454
27455         * locales.c: Fix some cut and paste errors.
27456         
27457 2004-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27458
27459         * mono-config.c: set the correct path for config. directory on windows.
27460
27461 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27462
27463         * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27464           on win32.
27465
27466 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27467
27468         * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27469         from pinvoke functions.
27470         
27471         * marshal.c (mono_ftnptr_to_delegate): Implement this.
27472
27473 2004-05-26  Atsushi Enomoto  <atsushi@ximian.com>
27474
27475         * culture-info-tables.h: reflecting locale-builder updates.
27476
27477 2004-05-26  Zoltan Varga  <vargaz@freemail.hu>
27478
27479         * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27480         #59086.
27481
27482 2004-05-26  Sebastien Pouliot  <sebastien@ximian.com>
27483
27484         * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27485         * icall.c: Modified icalls for RNG.
27486         * rand.c|h: Changed RNG interface to allow thread-safe usage under 
27487         Windows (CryptoAPI).
27488
27489 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27490
27491         * locales.c: Fix build.
27492
27493 2004-05-25  Atsushi Enomoto  <atsushi@ximian.com>
27494
27495         * culture-info-tables.h: reflecting locale-builder updates.
27496
27497 2004-05-25  Jackson Harper  <jackson@ximian.com>
27498
27499         * locales.c: When creating the current culture use the $LANGs
27500         specific culture. So DateTimeFormat and NumberFormat entries are created.
27501         
27502 2004-05-25  Zoltan Varga  <vargaz@freemail.hu>
27503
27504         * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27505         a char array as parameter.
27506
27507 2004-05-24  Lluis Sanchez Gual  <lluis@ximian.com>
27508
27509         * image.c: In mono_image_open(), always use an absolute path name to
27510           look for already loaded images.
27511
27512 2004-05-24  Sebastien Pouliot  <sebastien@ximian.com>
27513
27514         * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27515         missing in the windows build (like older cygwin include files).
27516
27517 2004-05-23  Sebastien Pouliot  <sebastien@ximian.com>
27518
27519         * icall.c: Fixed check for possible integer overflow in Buffer_
27520         BlockCopy icall. Replaced comments style // by /* */.
27521
27522 2004-05-22  Zoltan Varga  <vargaz@freemail.hu>
27523
27524         * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27525         
27526         * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27527         check after MONO_VTADDR. Fixes pinvoke2.exe.
27528
27529         * marshal.h marshal.c metadata.h: Add beginnings of support for
27530         ftnptr -> delegate marshalling.
27531
27532 2004-05-21  Zoltan Varga  <vargaz@freemail.hu>
27533
27534         * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27535         * threads.c: Fix warnings.
27536
27537 2004-05-20  Lluis Sanchez Gual  <lluis@ximian.com>
27538
27539         * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27540         * icall.c: Registered icalls for Suspend and Resume.
27541         * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27542           Thread.Abort.
27543         * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27544         * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27545         * process.c: Use WaitForSingleObjectEx.
27546         * threadpool.c: Use WaitForSingleObjectEx. Added some interruption 
27547           checkpoints.
27548         * threads.c, threads.h: Make use of new Ex wait methods. Improved
27549           implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27550           for Suspend and Resume. Added new mono_thread_stop, used for stoping
27551           background threads. Added basic support for Abort in Windows.
27552           Start new threads using a managed delegate invoke wrapper. This wrapper
27553           has an interruption checkpoint that is needed since an interruption
27554           can be requested before the thread leaves the unmanaged code that starts 
27555           the thread.
27556         * marshal.c: Added interruption checkpoint after every native call, and
27557           also before managed calls for wrappers called from unmanaged code to
27558           go into managed code.
27559         * object.h: Added new field in MonoThread to keep track of interruption
27560           requests.
27561
27562 2004-05-20  Zoltan Varga  <vargaz@freemail.hu>
27563
27564         * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27565         calls.
27566
27567 2004-05-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27568
27569         * appdomain.c:
27570         * assembly.c:
27571         * gc.c:
27572         * locales.c:
27573         * mono-config.c:
27574         * rand.c: getenv -> g_getenv (windows!)
27575
27576         * process.c: complete_path is also used on non-windows platforms.
27577
27578 2004-05-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27579
27580         * icall.c: new signature for Process_Start.
27581
27582         * process.[ch]: new signature for Process_Start. If we're on windows
27583         and UseShellExecute is false, we have to search for the program by
27584         ourselves if we don't get a full path.
27585
27586 2004-05-18  Zoltan Varga  <vargaz@freemail.hu>
27587
27588         * marshal.c (mono_marshal_get_native_wrapper): Fix up custom 
27589         marshalling and call CleanUpNativeData if needed. Fixes #58646.
27590
27591 2004-05-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27592
27593         * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27594         Fixes bug #58373.
27595
27596 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27597
27598         * process.c: use double quotes to quote program name and arguments on
27599         windows. Fixes bug #58575.
27600
27601 2004-05-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27602
27603         * file-io.c: don't return "." and ".." when using windows Find*File.
27604
27605 2003-05-17      Patrik Torstensson <totte@hiddenpeaks.com>
27606
27607         * marshal.c: Don't pass wrappers to message init because method 
27608         addressed used to lookup metadata. part of remoting[2|3] fix.
27609
27610 2004-05-15  Jackson Harper  <jackson@ximian.com>
27611
27612         * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27613         path is essentially the same as MONO_PATH except that it points to
27614         GACs instead of lib directories.
27615         * loader.h: The user gac is gone so we dont need function to
27616         enable/disable it.
27617         * mono-config.c: user gac option is now gone.
27618         
27619 2004-05-15  Jackson Harper  <jackson@ximian.com>
27620
27621         * culture-info.h: Make defines more consistent, add calendar data
27622         to the culture info table.
27623         * culture-info-tables.h: Add basic calendar data. Basically
27624         everyone gets default gregorian until all the data is
27625         updated.
27626         * locales.c: Use the new consistent defines. Set calendar data for
27627         culture info objects.
27628         * object.h: add a field for calendar data to CultureInfo
27629         
27630 2004-05-14 Ben Maurer  <bmaurer@users.sourceforge.net>
27631
27632         * image.c: image->runtime_invoke_cache is keyed on signatures now.
27633         * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27634         a signature.
27635         (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27636         (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27637         an extra param that is the pointer of the method to invoke. The IL for
27638         the invoke method is no longer specific to the method, but to the
27639         signature of the method. Thus, we can share the same code for multiple
27640         methods. This reduces the number of methods that have to be compiled.
27641
27642 2004-05-14  Zoltan Varga  <vargaz@freemail.hu>
27643
27644         * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27645
27646         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27647
27648         * icall.c: Optimize Buffer.BlockCopy.
27649
27650 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27651
27652         * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27653         DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27654         quote). Changed them to "MMMM yyyy".
27655
27656 2004-05-12  Miguel de Icaza  <miguel@ximian.com>
27657
27658         * rand.c
27659         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file. 
27660
27661 2004-05-13  Zoltan Varga  <vargaz@freemail.hu>
27662
27663         * reflection.h: Updated after changes to managed structures.
27664
27665         * appdomain.c: Bump corlib version.
27666
27667 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27668
27669         * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27670         windows.
27671
27672 2004-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27673
27674         * Makefile.am: link to ../os/libmonoos.la on windows.
27675
27676         * assembly.c:
27677                 -If MONO_DEBUG, warn about non-existing directories in
27678                 MONO_PATH.
27679                 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27680                 compile time variable.
27681                 -Removed init_default_path and call mono_set_rootdir from
27682                 libmonoos.a instead (windows only).
27683
27684         * assembly.h: declare mono_assembly_getrootdir().
27685
27686         * domain.c:
27687         * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27688
27689         * loader.c: s/getenv/g_getenv/
27690
27691 2004-05-11  Zoltan Varga  <vargaz@freemail.hu>
27692
27693         * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27694
27695         * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27696
27697         * metadata.h: Add new marshalling conversions.
27698
27699         * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27700         function.
27701
27702         * reflection.c (mono_reflection_get_type): Lookup the type in all
27703         modules of a multi-module assembly. Fixes #58291.
27704
27705 2004-05-11  Lluis Sanchez Gual  <lluis@ximian.com>
27706
27707         * threads.c: Before aborting a background, set the StopRequested
27708         state.  This avoids throwing the Abort exception.
27709         In mono_thread_manage, don't continue with the shutdown until all
27710         aborted threads have actually stopped.
27711
27712 2004-05-10  Jackson Harper  <jackson@ximian.com>
27713
27714         * locales.c: Remove the modifier from culture names.
27715         
27716 2004-05-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27717
27718         * Makefile.am: monosn is not installed any more. It has been deprecated
27719         in favor of sn.
27720
27721 2004-05-07  Jackson Harper  <jackson@ximian.com>
27722
27723         * locales.c
27724         (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27725         Fix array construction, add bailout if the length is 0.
27726
27727 2004-05-07  Dick Porter  <dick@ximian.com>
27728
27729         * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27730         machine doesn't have a DNS entry.  Patch by Urs Muff
27731         (umuff@quark.com), fixes bug 57928.
27732
27733 2004-05-06  Jackson Harper  <jackson@ximian.com>
27734
27735         * reflection.c: Handle null PublicTokens properly. alloc mem for
27736         assembly names culture so we dont crash when freeing it.
27737         
27738 2004-05-06  Jackson Harper  <jackson@ximian.com>
27739
27740         * assembly.c: Check the usergac when loading with partial names.
27741         
27742 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27743
27744         * rand.c|h: Added new icall for (optionally) seeding the PRNG. This 
27745         does nothing for now (not required for Linux/Windows) but the class
27746         library can call it (and a newer or modified runtime could need it).
27747         * icall.c: Registred icall.
27748
27749 2004-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27750
27751         * loader.c: prints a message on module loading error we set MONO_DEBUG
27752         environment variable.
27753
27754 2004-05-05  Jackson Harper  <jackson@ximian.com>
27755
27756         * appdomain.c: Handle PublicKeyToken=null properly.
27757         
27758 2004-05-05  Sebastien Pouliot  <sebastien@ximian.com>
27759
27760         * environment.c|h: Added icall ves_icall_System_Environment_
27761         GetOSVersionString to get the current OS version as a string.
27762         * icall.c: Registred icall.
27763
27764 2004-05-05  Lluis Sanchez Gual  <lluis@ximian.com>
27765
27766         * object.c: in mono_object_get_virtual_method(), take into account that
27767         non-virtual methods don't have a slot in the vtable. Check needed when
27768         the object is a proxy.
27769
27770 2004-05-05  Zoltan Varga  <vargaz@freemail.hu>
27771
27772         * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27773         (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27774
27775         * object.c (mono_class_compute_gc_descriptor): Fix warning.
27776
27777         * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27778         passed when a valuetype is expected.
27779
27780         * object.c (mono_unhandled_exception): Only set the exit code if the
27781         exception happens in the main thread. Fixes thread5.exe.
27782
27783         * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27784         invalid names. Fixes #58047.
27785
27786 2004-05-03  Jackson Harper  <jackson@ximian.com>
27787
27788         * assembly.c: This line was committed accidently and is unneeded.
27789         
27790 2004-05-03  Jackson Harper  <jackson@ximian.com>
27791
27792         * icall.c: Add new icall for Assembly::LoadWithPartialName
27793         * assembly.c/.h: new function that probes the GAC to load partial
27794         assembly names by Paolo Molaro.
27795         
27796 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27797
27798         * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27799         * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27800         (type_get_fully_qualified_name): Added PublicKeyToken when building a
27801         full type name.
27802
27803 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27804
27805         * appdomain.c: fixed check for 'neutral' culture and removed warning.
27806         * reflection.c: fix bug when parsing a full type name and Version is not
27807         the last thing in the string.
27808
27809 2004-05-03  Zoltan Varga  <vargaz@freemail.hu>
27810
27811         * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27812         crashes when it is freed.
27813
27814 2004-05-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27815
27816         * assembly.c: print the compat warning to stderr.
27817
27818 2004-05-01  Miguel de Icaza  <miguel@ximian.com>
27819
27820         * assembly.c (mono_assembly_load_references): Add a compatibility
27821         hack to run old applications that might be still referencing the
27822         3300-based assemblies, only do this for System.xxx.
27823
27824 2004-05-01  Jackson Harper  <jackson@ximian.com>
27825
27826         * appdomain.c: If the culture is neutral we set it to "".
27827         
27828 2004-04-29  Jackson Harper  <jackson@ximian.com>
27829
27830         * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27831
27832 2004-04-29  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27833  
27834         * string-icalls.c: added low overhead function for copying chars
27835         * icall.c: added needed icall for the above function
27836  
27837 2004-04-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27838
27839         * icall.c: fix return value of get_global_assembly_cache.  Implemented
27840         Environment.GetLogicalDrives.
27841
27842 2004-04-28  Bernie Solomon  <bernard@ugsolutions.com>
27843
27844         * rand.c: try and talk to egd or prngd
27845         for random bytes if opening devices fail.
27846
27847 2004-04-28  Zoltan Varga  <vargaz@freemail.hu>
27848
27849         * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27850         alignment for the type using the native alignment of its members 
27851         instead of using klass->min_align.
27852
27853         * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27854
27855 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27856
27857         * file-io.c:
27858         * socket-io.c: added check for sys/aio.h.
27859
27860 2004-04-28  Dick Porter  <dick@ximian.com>
27861
27862         * threads.c: Don't abort a thread thats already aborting, when
27863         terminating everything.
27864
27865 2004-04-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27866
27867         * icall.c: added 2 new async calls for Socket.
27868
27869         * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27870         IO on *nix systems.
27871
27872         * threadpool.c: removed unused variable.
27873
27874 2004-04-27  Zoltan Varga  <vargaz@freemail.hu>
27875
27876         * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27877
27878 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27879
27880         * locales.c: put back string_invariant_tolower () and
27881         string_invariant_toupper ().
27882
27883 2004-04-26 David Waite <mass@akuma.org>
27884
27885         * file-io.h:
27886         * socket-io.h:
27887         * threads.h:
27888         * unicode.h: remove comma from end of enumeration declarations
27889
27890 2004-04-26 David Waite <mass@akuma.org>
27891
27892         * debug-mono-symfile.h:
27893         * decimal.c:
27894         * mono_debug.h:
27895         * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27896
27897
27898 2004-04-26  Jackson Harper  <jackson@ximian.com>
27899
27900         * appdomain.c: Increment version number.
27901         
27902 2004-04-26  Jackson Harper  <jackson@ximian.com>
27903
27904         * appdomain.c: Set assembly references public token value when
27905         PublicKeyToken is specified, not the hash_value. Free public token
27906         values when free assembly name data. Previously the public key
27907         token was hex decoded, however we are using hex encoded public key
27908         tokens, so this is not neccasary.
27909         * assembly.c: Lookup assemblies in the gac if their public token
27910         value is set. Add function to allow enabling user gac
27911         lookups. Specify whether or not the assembly was loaded from the
27912         GAC. Compare full assembly names when checking the cache for
27913         assemblies (Temporarily disabled see comment in code). Remove
27914         mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27915         specifies trace-loader they get extra info to stdout on the
27916         loading of assemblies.
27917         * image.h: Add a field for an assembly references public token
27918         value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27919         whether an assembly has been loaded from the GAC.
27920         * image.c: Remove a corlib -> mscorlib name mapping.
27921         * loader.h: Add function to enable/disable the user gac.
27922         * mono-config.c: Check if the usergac is enabled in the config
27923         file.
27924         * icall.c: New icall to determine whether or not an assembly has
27925         been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27926         * tabldefs.h: Add constant for assemblyref flag that specifies a
27927         full public key is used instead of a public token.
27928         * reflection.c: Remove mscorlib -> corlib mappings. Set
27929         PublicTokenValue instead of hash value. This value is a hex
27930         string so it does not need to be expanded.
27931
27932 2004-04-26  Martin Baulig  <martin@ximian.com>
27933
27934         * mono-debug-debugger.c (mono_debugger_initialize): Set
27935         `mono_debugger_initialized' before calling mono_debug_lock().
27936
27937 2004-04-42  Robert Shade <rshade@dvsconsulting.com>
27938
27939         * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27940           InternalToUpper/InternalToLower.
27941         * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27942           removed invariant culture shortcut.  This is now done in managed code.
27943         * locales.c: (string_invariant_toupper/tolower) removed.
27944
27945 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27946
27947         * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27948         Added Poll internal call.
27949
27950         * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27951         call for Poll. Select was too heavy for polling a single socket.
27952
27953         * threadpool.[ch]: added mono_threadpool_cleanup.
27954         * threads.c: use it. Don't use Thread_Abort on windows.
27955
27956 2004-04-23  Martin Baulig  <martin@ximian.com>
27957
27958         * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27959
27960 2004-04-23  Sebastien Pouliot  <sebastien@ximian.com>
27961
27962         * icall.c: Registred new icalls for key pair protection and added an
27963         icall for Environment.GetFolderPath on Windows.
27964         * security.c|h: Added new icalls for key pair protection.
27965
27966 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27967
27968         * socket-io.c: don't display the non-supported family warning for known
27969         families. Now this is not displayed on windows when checking support
27970         for IPv4/IPv6.
27971
27972 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27973
27974         * class.c: don't display the layout warning for static fields.
27975
27976 2004-04-21  Lluis Sanchez Gual <lluis@ximian.com>
27977
27978         * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
27979         * locales.c, locales.h: Added new icalls for culture-specific
27980         Char.ToLower and Char.ToUpper.
27981
27982 2004-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
27983
27984         * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
27985         by David Waite.
27986
27987 2004-04-20  Martin Baulig  <martin@ximian.com>
27988
27989         * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
27990         of the type name before passing it to mono_reflection_type_from_name().
27991
27992 2004-04-19  Zoltan Varga  <vargaz@freemail.hu>
27993
27994         * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
27995         encodings here. Fixes #56965.
27996
27997 2004-04-18  Bernie Solomon <bernard@ugsolutions.com>
27998
27999         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28000         fix test on strstr result not that I can see anything that
28001         relies on the result.
28002
28003 2004-04-18  Zoltan Varga  <vargaz@freemail.hu>
28004
28005         * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28006         Fixes #57081.
28007
28008         * marshal.c (mono_marshal_get_string_encoding): New helper function.
28009
28010         * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28011         function to determine which marshalling to use for strings. Fixes
28012         #56965.
28013
28014         * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28015
28016         * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28017
28018 2004-04-15  Bernie Solomon  <bernard@ugsolutions.com>
28019
28020         * icall.c: #include mono-config.h
28021
28022 2004-04-15  Jackson Harper  <jackson@ximian.com>
28023
28024         * culture-info-tables.h: Fix date formats for en-US culture.
28025         
28026 2004-04-15  Lluis Sanchez Gual  <lluis@ximian.com>
28027
28028         * icall.c: Registered icalls for ThreadPool.GetMinThreads and 
28029         ThreadPool.SetMinThreads.
28030         * threadpool.c: Implemented ThreadPool.GetMinThreads and
28031         ThreadPool.SetMinThreads.
28032
28033 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28034
28035         * mono-config.c: also load the .config file in the directory
28036         where the assembly was found.
28037
28038 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28039
28040         * assembly.c: load per-assembly config files.
28041         * icall.c: decrapified code to get the config dir and moved to
28042         mono-config.c.
28043         * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28044         per-assembly config files. When doing a dll map lookup give precedence
28045         to the per-assembly data.
28046
28047 2004-04-14  Martin Baulig  <martin@ximian.com>
28048
28049         * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28050         MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28051         and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28052
28053         * mono-debugger-debugger.c: While the debugger is locked, remember
28054         whether the symbol tables have changes and send one single
28055         MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28056
28057 2004-04-14  Zoltan Varga  <vargaz@freemail.hu>
28058
28059         * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28060
28061         * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New 
28062         function.
28063
28064         * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28065         account when marshalling string arrays. Fixes #56965.
28066
28067 2004-04-13  Sebastien Pouliot  <sebastien@ximian.com>
28068
28069         * icall.c: Add new icalls mapping for security.
28070         * security.c|h: Add internal calls for WindowsIdentity,
28071         WindowsImpersonationContext and WindowsPrincipal.
28072
28073 2004-04-13  Gert Driesen (drieseng@users.sourceforge.net)
28074
28075         * class.c: Added comment to ensure the System.MonoDummy class
28076         is removed when no longer necessary
28077
28078 2004-04-13  Miguel de Icaza  <miguel@ximian.com>
28079
28080         * appdomain.c: Pass arguments to the bootstraping exceptions to
28081         minimize JITed methods at boot
28082
28083         * metadata.c (mono_exception_from_name_two_strings): Allow for the
28084         second string to be null.
28085
28086         * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28087         Change the protocol to minimize the JIT methods at startup.  Now
28088         it Returns the internal codepage, if the value of "int_code_page"
28089         is 1 at entry, and we can not compute a suitable code page
28090         number, returns the code page as a string.
28091
28092 2004-04-13  Jackson Harper  <jackson@ximian.com>
28093
28094         * culture-info-tables.h: Fix number of decimal digits for all
28095         english locales.
28096
28097 2004-04-13  Jackson Harper  <jackson@ximian.com>
28098
28099         * icall.c: Clairfy out of sync error message. It is not always
28100         your corlib that is out of sync.
28101
28102 2004-04-13  Zoltan Varga  <vargaz@freemail.hu>
28103
28104         * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28105         properties when only the set accessor is overriden. Fixes #55874.
28106
28107 2004-04-09  Zoltan Varga  <vargaz@freemail.hu>
28108
28109         * assembly.c (mono_assembly_load_references): Make this thread safe.
28110         Fixes #56327.
28111
28112 2004-04-08  Zoltan Varga  <vargaz@freemail.hu>
28113
28114         * monosn.c: Add missing initialization calls.
28115
28116 2004-04-08  Bernie Solomon  <bernard@ugsolutions.com>
28117
28118         * locales.c:
28119         ves_icall_System_Globalization_CultureInfo_construct_number_format
28120         Fix g_assert so it compiles on fussier compilers re int/ptr
28121         mismatch
28122
28123 2004-04-08  Dick Porter  <dick@ximian.com>
28124
28125         * socket-io.h:
28126         * socket-io.c: Don't set SO_REUSEADDR on windows.  Fixes bug
28127         53992.  Also rearrange the code so that the internal calls return
28128         an error value and exceptions are thrown from managed code.
28129
28130         * icall.c: Add type info to the socket icalls.
28131
28132 2004-04-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28133
28134         * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28135         owes me a beer.
28136
28137 2004-04-07  Martin Baulig  <martin@ximian.com>
28138
28139         * class.c (mono_class_from_generic_parameter): Don't default
28140         `klass->parent' to `mono_defaults.object_type'.
28141
28142 2004-04-07  Martin Baulig  <martin@ximian.com>
28143
28144         * reflection.c (mono_reflection_initialize_generic_parameter): Set
28145         `param->pklass->reflection_info'.       
28146
28147 2004-04-07  Jackson Harper  <jackson@ximian.com>
28148
28149         * culture-info-tables.h: Fix date separator symbol.
28150         
28151 2004-04-07  Martin Baulig  <martin@ximian.com>
28152
28153         * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28154         from System.Type to System.MonoType.
28155
28156 2004-04-07  Martin Baulig  <martin@ximian.com>
28157
28158         * reflection.h
28159         (MonoReflectionGenericParam): Added `has_reference_type' and
28160         `has_value_type' fields.
28161
28162         * reflection.c (mono_image_get_generic_param_info): Encode the
28163         correct flags if we have the `class' or `struct' constraint.
28164
28165 2004-04-07  Martin Baulig  <martin@ximian.com>
28166
28167         * reflection.h
28168         (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28169
28170 2004-04-07  Jackson Harper  <jackson@ximian.com>
28171
28172         * appdomain.c: Revert extra patches, just wanted to bump the
28173         version number.
28174         
28175 2004-04-07  Jackson Harper  <jackson@ximian.com>
28176
28177         * Makefile.am: Add culture-info private headers.
28178         * icall.c: Add new icalls for contructing locales.
28179         * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28180         * locales.h: Declare new culture info construction methods.
28181         * object.h: Add new fields used to avoid the CultureMap to
28182         MonoCultureInfo.
28183         * culture-info.h: Definition of structs used in the culture info
28184         tables.
28185         * culture-info-tables.h: Autogenerated tables that contain culture
28186         info data. This file was generated with the locale-builder tool.
28187         * appdomain.c: Incement corlib version number.
28188         
28189 2004-04-07  Bernie Solomon  <bernard@ugsolutions.com>
28190
28191         * appdomain.c: (mono_runtime_init) move mono_thread_init
28192         to before mono_object_new calls so critical sections
28193         are initialized before use.
28194
28195 2004-04-07  Martin Baulig  <martin@ximian.com>
28196
28197         * icall.c
28198         (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28199         (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28200         (ves_icall_MonoGenericParam_initialize): Removed.
28201         (monogenericparam_icalls): Removed.
28202         (generictypeparambuilder_icalls): Added new table for
28203         System.Reflection.Emit.GenericTypeParameterBuilder.
28204
28205         * reflection.c
28206         (mono_reflection_define_generic_parameter): Removed.
28207         (mono_reflection_initialize_generic_parameter): This is now called
28208         from GenericTypeParameterBuilder's .ctor.
28209
28210 2004-04-06  Martin Baulig  <martin@ximian.com>
28211
28212         * class.c (mono_class_init): Don't inflate nested classes in a
28213         generic instance.
28214         (mono_type_get_name_recurse): Include the generic arguments for
28215         generic instances and generic type declarations.
28216         (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28217         (_mono_class_get_instantiation_name): Removed.
28218         (mono_class_create_generic): Always use `gklass->name' as our name.
28219
28220         * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28221
28222         * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28223         (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28224         (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28225         ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28226         closed generic methods here.
28227
28228         * reflection.c
28229         (mono_reflection_generic_inst_get_nested_types): Removed.
28230         (inflate_mono_method): Copy the generic parameters from the
28231         MonoMethodHeader into out MonoGenericMethod.
28232
28233 2004-04-06  Martin Baulig  <martin@ximian.com>
28234
28235         * row-indexes.h
28236         (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28237
28238         * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28239
28240         * reflection.c (build_compressed_metadata): If we have any entries
28241         in the GenericParam, MethodSpec or GenericParamConstraint tables,
28242         set the header version to 1.1.
28243
28244 2004-04-06  Martin Baulig  <martin@ximian.com>
28245
28246         * class.c (mono_class_init): If we're a generic instance,
28247         initialize our nested classes, too.
28248         (_mono_class_get_instantiation_name): Deal with the new `!%d'
28249         suffix. 
28250
28251 2004-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28252
28253         * process.c: quote the argument passed to the shell on windows.
28254
28255 2004-04-05  Zoltan Varga  <vargaz@freemail.hu>
28256
28257         * threads.c (mono_alloc_special_static_data): Allow this to be
28258         called during startup.
28259
28260 2004-04-02  Martin Baulig  <martin@ximian.com>
28261
28262         * icall.c
28263         (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28264
28265 2004-04-02  Zoltan Varga  <vargaz@freemail.hu>
28266
28267         * icall.c: Fix build.
28268
28269 2004-04-02  Sebastien Pouliot  <sebastien@ximian.com>
28270
28271         * Makefile.am: Added security.c|h.
28272         * icall.c: Added icall for get_UserName;
28273         * security.c: New file for security related icalls. Added function
28274         get_UserName for System.Environment (fix #56144).
28275         * security.h: New. Header file for security.c
28276
28277 2004-04-02  Dick Porter  <dick@ximian.com>
28278
28279         * icall.c: Deleted the icalls that were obsoleted some time ago
28280         by the ICU string code, and which were mixed into the icall
28281         rearranging.  Fixes bug 55969.
28282
28283         * string-icalls.h: 
28284         * string-icalls.c: Deleted the code that those icalls reference.
28285
28286 2004-04-01  Martin Baulig  <martin@ximian.com>
28287
28288         * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28289
28290         * class.c (mono_class_from_generic_parameter): Don't set 
28291         TYPE_ATTRIBUTE_INTERFACE.
28292         (my_mono_class_from_generic_parameter): Likewise.
28293
28294 2004-04-01  Martin Baulig  <martin@ximian.com>
28295
28296         * loader.c (find_method): Added an optional `MonoClass *ic'
28297         argument to search in a specific interface.
28298         (mono_get_method_constrained): New public function.
28299
28300 2004-04-01  Martin Baulig  <martin@ximian.com>
28301
28302         * reflection.c (mono_image_get_generic_field_token): Use the
28303         `handleref' cache here.
28304
28305 2004-04-01  Martin Baulig  <martin@ximian.com>
28306
28307         * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28308
28309         * reflection.c (create_generic_typespec): Use the `typespec' hash
28310         here, not the `typeref' one.    
28311
28312 2004-04-01  Martin Baulig  <martin@ximian.com>
28313
28314         * class.c (mono_class_inflate_generic_type): Moved the
28315         functionality into a new static inflate_generic_type() which
28316         returns NULL if it didn't do anything.  Only increment the
28317         `mono_stats.inflated_type_count' if we actually inflated
28318         something.
28319         (mono_class_get_full): Check the classes type to see whether we
28320         need to inflate it; also inflate MONO_TYPE_(M)VAR.
28321
28322 2004-04-01  Jackson Harper  <jackson@ximian.com>
28323
28324         * reflection.c: Set culture for assembly references.
28325         
28326 2004-04-01 Ben Maurer  <bmaurer@users.sourceforge.net>
28327
28328         * reflection.[ch], icall.[ch], Fix support for pinning variables.
28329
28330 2004-04-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28331
28332         * assembly.c:
28333         (do_mono_assembly_open): the critical section also covers
28334         mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28335
28336 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28337
28338         * threads.c:
28339         (mono_manage_threads): abort the background threads when finishing.
28340         Fixes bug #47232.
28341
28342 2004-03-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28343
28344         * gc.c: only close the done_event handle if there was no timeout.
28345         C-ified comments.
28346
28347 2004-03-30  Martin Baulig  <martin@ximian.com>
28348
28349         * icall.c (icall_entries): It's called "System.Activator", not
28350         "System.Activation".    
28351
28352 2004-03-30  Martin Baulig  <martin@ximian.com>
28353
28354         * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28355         (mono_class_create_from_typespec): Likewise.
28356
28357 2004-03-30  Martin Baulig  <martin@ximian.com>
28358
28359         * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28360         `has_ctor_constraint' and `initialized'.
28361
28362 2004-03-30  Martin Baulig  <martin@ximian.com>
28363
28364         * reflection.c (encode_new_constraint): New static function to add
28365         the constructor constraint attribute to a type parameter.
28366         (encode_constraints): Call encode_new_constraint() if necessary.
28367
28368         * reflection.h
28369         (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28370
28371         * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28372         
28373 2004-03-29 Ben Maurer  <bmaurer@users.sourceforge.net>
28374
28375         * reflection.c, icall.c: add support for pinning variables. 
28376
28377 2004-03-29  Bernie Solomon  <bernard@ugsolutions.com>
28378
28379         * marshal.c (mono_marshal_get_managed_wrapper):
28380         init bool local with zero rather than null.
28381
28382 2004-03-29  Martin Baulig  <martin@ximian.com>
28383
28384         * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28385         the "official" behavior here.
28386         (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28387
28388 2004-03-29  Martin Baulig  <martin@ximian.com>
28389
28390         * icall.c: Reflect latest API changes.
28391
28392 2004-03-29  Martin Baulig  <martin@ximian.com>
28393
28394         * loader.c (mono_get_method_from_token): Also call
28395         mono_metadata_load_generic_params () for abstract and interface
28396         methods; replace the type arguments in the method signature with
28397         the ones which are loaded from the metadata.
28398
28399 2004-03-29  Lluis Sanchez Gual  <lluis@ximian.com>
28400
28401         * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28402         of the lock is not the current thread. MS.NET don't do it, in spite of
28403         what the documentation says. See bug #56157.
28404
28405 2004-03-28  Martin Baulig  <martin@ximian.com>
28406
28407         * class.c (mono_class_init): Don't call init_properties() and
28408         init_events() for generic instances; set `prop->parent' when
28409         inflating properties.
28410
28411         * reflection.c (mono_generic_inst_get_object): Call
28412         `mono_class_init (ginst->klass)'.
28413         (mono_type_get_object): Only create a MonoGenericInst if your
28414         generic type is a TypeBuilder.
28415         (do_mono_reflection_bind_generic_parameters): Only set
28416         `ginst->is_dynamic' if our generic type is a TypeBuilder.
28417
28418 2004-03-28  Zoltan Varga  <vargaz@freemail.hu>
28419
28420         * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28421         Fixes #56091.
28422
28423 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28424
28425         * icall.c: added Kill_internal icall.
28426         * process.[ch]: added Kill_internal icall.
28427
28428 2004-03-25  Martin Baulig  <martin@ximian.com>
28429
28430         * class.h (MonoStats): Added `generic_instance_count',
28431         `inflated_method_count', `inflated_type_count' and
28432         `generics_metadata_size'.       
28433
28434 2004-03-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28435
28436         * reflection.c: no warnings now.
28437
28438 2004-03-25  Martin Baulig  <martin@ximian.com>
28439
28440         * class.c (mono_class_get_full): New public function; does a
28441         mono_class_get(), but also takes a `MonoGenericContext *'.
28442
28443         * loader.c (mono_field_from_memberref): Renamed to
28444         `field_from_memberref', made static and added `MonoGenericContext *'
28445         argument.
28446         (mono_field_from_token): Added `MonoGenericInst *' argument.
28447         (method_from_memberef): Likewise.
28448         (mono_get_method_from_token): Likewise.
28449         (mono_get_method_full): New public function; does a
28450         mono_get_method(), but also takes a `MonoGenericContext *'.
28451
28452         * verify.c (mono_method_verify): Get the method's generic context
28453         and pass it to mono_field_from_token(), mono_get_method_full() and
28454         mono_class_get_full().
28455
28456 2004-03-25  Martin Baulig  <martin@ximian.com>
28457
28458         * class.c (mono_class_inflate_generic_type): Take a
28459         `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28460         `MonoGenericMethod *'.
28461
28462 2004-03-25  Martin Baulig  <martin@ximian.com>
28463
28464         * loader.h (MonoMethodInflated): Store the MonoGenericContext
28465         instead of the MonoGenericMethod here.
28466
28467 2004-03-25  Martin Baulig  <martin@ximian.com>
28468
28469         * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28470         each time we create a new MonoGenericInst, we also create a new
28471         context which points back to us.
28472
28473         * class.c (inflate_method): Use `ginst->context' instead of
28474         creating a new context.
28475
28476         * loader.c (method_from_memberref): Use
28477         `klass->generic_inst->context' instead of creating a new context.
28478
28479 2004-03-25  Martin Baulig  <martin@ximian.com>
28480
28481         * class.h (MonoGenericContext): New struct.
28482         (MonoGenericMethod): Removed `generic_inst'.
28483
28484         * class.c (mono_class_inflate_generic_method): Take a
28485         `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28486
28487 2004-03-25  Martin Baulig  <martin@ximian.com>
28488
28489         * loader.h (MonoMethodInflated): New typedef.
28490
28491         * metadata.h (MonoMethodSignature): Removed `gen_method', make
28492         `generic_param_count' consume just 30 bits, added `is_inflated'
28493         and `has_type_parameters' flags (one bit each).
28494
28495         * class.c (mono_class_inflate_generic_method): Create a
28496         MonoMethodInflated instead of a MonoMethodNormal and set
28497         `is_inflated' in the method signature.
28498
28499         * class.h (MonoGenericMethod): Removed `generic_method'.
28500
28501 2004-03-25  Lluis Sanchez Gual  <lluis@ximian.com>
28502
28503         * image.c: Make sure the name of a MonoImage is always an absolute path.
28504           This fixes bug #54415.
28505
28506 2004-03-24  Martin Baulig  <martin@ximian.com>
28507
28508         * class.c (mono_class_setup_vtable): If we're a generic instance,
28509         use our generic type's vtable size.
28510
28511 2004-03-24  Zoltan Varga  <vargaz@freemail.hu>
28512
28513         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28514         MONO_NO_UNLOAD env var as a temporary workaround for unloading 
28515         problems.
28516
28517 2004-03-23  Martin Baulig  <martin@ximian.com>
28518
28519         * class.h (MonoDynamicGenericInst): Added `int count_events' and
28520         `MonoEvent *events'.
28521
28522         * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28523         (typebuilder_icalls): Added "get_event_info"; calls
28524         mono_reflection_event_builder_get_event_info(). 
28525
28526         * reflection.c (mono_reflection_generic_inst_initialize): Added
28527         `MonoArray *events'.
28528         (mono_reflection_event_builder_get_event_info): New function.
28529
28530 2004-03-23  Bernie Solomon  <bernard@ugsolutions.com>
28531
28532         * object.h: add mono_type_initialization_init
28533
28534         * object.c (mono_runtime_class_init): 
28535         implement class constructor synchronization rules
28536         to cope with threading issues.  
28537         add mono_type_initialization_init
28538
28539         * appdomain.c (mono_runtime_init): call 
28540         mono_type_initialization_init
28541
28542         * class.h: removing initializing field from MonoVTable
28543
28544 2004-03-23  Martin Baulig  <martin@ximian.com>
28545
28546         * class.c (my_mono_class_from_generic_parameter): Use
28547         `param->name' if it's not NULL. 
28548
28549 2004-03-22 Ben Maurer  <bmaurer@users.sourceforge.net>
28550
28551         * class.c: do not insert non-virtual methods in the vtable.
28552         * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28553         that means the method is non-virtual. This never would have
28554         happened before.
28555
28556 2004-03-22  Lluis Sanchez Gual  <lluis@ximian.com>
28557
28558         * profiler.c: Added lock for accessing coverage_hash.
28559
28560 2004-03-22  Martin Baulig  <martin@ximian.com>
28561
28562         * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28563         `method->method->signature->generic_param_count != 0' to make it
28564         work for interface methods.
28565
28566 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28567
28568         * process.c: quote the string passed to the shell using g_shell_quote.
28569
28570 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28571
28572         * threads.c:
28573         (mono_threads_manage): don't remove the finalizer thread and self
28574         from the threads hash table so that mono_thread_manage can be called
28575         more than once.
28576
28577 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28578
28579         * process.c: quote the arguments when UseShellExecute is true. Fixes
28580         bug #55790.
28581
28582 2004-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28583
28584         * threads.c: set mono_thread_detach as a cleanup routine for every
28585         thread. This way it's always executed upon thread termination, either
28586         aborted or finished normally. No more xsp hangs!
28587
28588 2004-03-17  Martin Baulig  <martin@ximian.com>
28589
28590         * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28591         `int count_nested' and a `MonoType **nested'.
28592
28593         * reflection.c (mono_reflection_bind_generic_parameters): Moved
28594         most of the functionality into a new static
28595         do_mono_reflection_bind_generic_parameters() and don't take a
28596         `MonoType *nested_in' argument any more.  Don't compute nested
28597         types here.
28598         (mono_reflection_generic_inst_get_nested_types): New public method
28599         to get nested types.
28600
28601         * class.c (mono_class_create_generic): Set `klass->nested_in' if
28602         we're a nested class.
28603
28604         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28605         mono_reflection_generic_inst_get_nested_types() to compute the
28606         nested types.
28607
28608 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28609
28610         * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28611         descriptive error message under windows.
28612         
28613 2004-03-17  Martin Baulig  <martin@ximian.com>
28614
28615         * class.c (dup_type): Added `const MonoType *original' argument;
28616         copy the attrs from the original type.
28617
28618 2004-03-17  Martin Baulig  <martin@ximian.com>
28619
28620         * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28621         `m->generic_inst_cache' here.
28622
28623 2004-03-17  Zoltan Varga  <vargaz@freemail.hu>
28624
28625         * exception.h exception.c: Add stack_overflow_exception.
28626
28627 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28628
28629         * threadpool.c:
28630         (overlapped_callback): call SetEvent *after* invoking the callback.
28631         No need to call CloseHandle.
28632
28633 2004-03-16  Martin Baulig  <martin@ximian.com>
28634
28635         * reflection.c (mono_image_get_fieldref_token): Take a
28636         `MonoReflectionField *' instead of a `MonoClassField *' and a
28637         `MonoClass *'; store the `MonoReflectionField *' in the hash.
28638
28639 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28640
28641         * appdomain.c: don't add the culture to the filename we're looking for
28642         if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28643
28644 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28645
28646         * locales.c: don't ignore symbols when doing case insensitive compares.
28647         Thanks Dick! Fixes bug #54046.
28648
28649         * threads.c: surround 'threads' usage with enter/leave in
28650         mono_thread_manage.
28651
28652 2004-03-16  Zoltan Varga  <vargaz@freemail.hu>
28653
28654         * marshal.c (mono_marshal_get_native_wrapper): Char arrays are 
28655         implicitly marshalled as [Out]. Fixes #55450.
28656
28657         (mono_marshal_get_runtime_invoke): Zero out the result if there is
28658         an exception.
28659
28660 2004-03-16  Martin Baulig  <martin@ximian.com>
28661
28662         * class.c (mono_class_from_generic_parameter): Use the actual
28663         parameter name. 
28664
28665 2004-03-16  Martin Baulig  <martin@ximian.com>
28666
28667         * reflection.c (type_get_signature_size): New static function.
28668         Compues the size of the type in a method signature.
28669         (method_get_signature_size): New static function; calls
28670         type_get_signature_size() to compute the actual size of the
28671         method's signature.
28672         (method_encode_signature): Use method_get_signature_size() to get
28673         the signature's size rather than using `nparams * 10'.
28674
28675 2004-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28676
28677         * file-io.h: define here WapiOverlapped on windows. I don't want the
28678         regular OVERLAPPED one.
28679
28680         * file-io.c:
28681         * threadpool.c: somehow, BindIoCompletionCallback is not found.
28682         Disabling AIO on windows.
28683
28684 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28685
28686         * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28687         bug #55385.
28688
28689 2004-03-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28690
28691         * appdomain.c: upgraded corlib version.
28692
28693         * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28694         and BeginWrite. Allow opening files for asynchrnous operations.
28695
28696         * file-io.h: new struct that maps FileStreamAsyncResult.
28697         * icall.c: added new icalls.
28698         * process.[ch]: support setting child process environment variables
28699         and use the SHELL or COMSPEC when UseShellExecute is true.
28700
28701         * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28702         callback for async. IO is here and also BindHandle.
28703
28704         * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28705         from here.
28706
28707 2004-03-14  Zoltan Varga  <vargaz@freemail.hu>
28708
28709         * reflection.c (create_custom_attr): Allow len == 0.
28710
28711         * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28712         computation on big-endian machines.
28713
28714 2004-03-13  Martin Baulig  <martin@ximian.com>
28715
28716         * class.h (MonoGenericInst): Added `int count_ifaces'.
28717
28718         * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28719         `ginst->count_ifaces' instead `klass->interface_count' since we
28720         may get called before the vtable is created.
28721
28722         * loader.c (mono_method_get_param_names): If we're a generic
28723         instance, return and don't initialize the class.
28724
28725         * reflection.c (mono_reflection_setup_generic_class): Don't call
28726         ensure_runtime_vtable().
28727         (mono_reflection_bind_generic_parameters): Set
28728         `ginst->count_ifaces'.
28729
28730 2004-03-11  Jackson Harper <jackson@ximian.com>
28731
28732         * icall.c:
28733         * unicode.c:
28734         * unicode.h: Remove unused System.Char icalls.
28735         
28736 2004-03-11  Miguel de Icaza  <miguel@ximian.com>
28737
28738         * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28739         code when we P/Invoke the first library in Windows.Forms, instead
28740         of when we first open the assembly.
28741
28742         * assembly.c: Drop the lookup from here.
28743
28744 2004-03-10  Martin Baulig  <martin@ximian.com>
28745
28746         * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28747         class for properties, fields and events.  Finally fixes #54945.
28748
28749 2004-03-10  Martin Baulig  <martin@ximian.com>
28750
28751         * metadata.c (mono_metadata_class_equal): New static function;
28752         checks whether two generic instances or two generic parameters are
28753         equal.
28754         (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28755         compare classes.        
28756
28757 2004-03-10  Martin Baulig  <martin@ximian.com>
28758
28759         * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28760
28761         * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28762         argument and write it into the `reflection_info' field.
28763
28764         * icall.c
28765         (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28766         (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28767
28768 2004-03-09  Jackson Harper  <jackson@ximian.com>
28769
28770         * char-conversions.h: use 8 bits for numeric data its all we need
28771         * icall.c: numeric data is only 8 bits now.
28772
28773 2004-03-09  Martin Baulig  <martin@ximian.com>
28774
28775         * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28776
28777         * class.c (init_properties, init_events): Initialize the new
28778         `parent' field.
28779
28780         * reflection.c (typebuilder_setup_properties): Likewise.
28781         (typebuilder_setup_events): Likewise.
28782
28783         * reflection.h (MonoEventInfo): Replaced `parent with
28784         `declaring_type' and `reflected_type'.
28785
28786         * icall.c (ves_icall_get_property_info): Distinguish between
28787         declaring and reflected type.
28788         (ves_icall_get_event_info): Likewise.
28789
28790 2004-03-09  Martin Baulig  <martin@ximian.com>
28791
28792         * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28793         (ves_icall_Type_GetField): Correctly set field->klass.
28794
28795 2004-03-09  Zoltan Varga  <vargaz@freemail.hu>
28796
28797         * loader.h: Fix warning.
28798
28799 2004-03-08  Miguel de Icaza  <miguel@ximian.com>
28800
28801         *  loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28802         library routine if present.  Notice that it will still continue
28803         executing even if its missing, for those working on the Gtk#
28804         edition of Windows.Forms.
28805
28806         * assembly.c (do_mono_assembly_open): If loading the
28807         System.Windows.Forms call mono_loader_wini_init.
28808
28809 2004-03-04  Lluis Sanchez Gual  <lluis@ximian.com>
28810
28811         * class.h: Added MonoRemoteClass struct.
28812         * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28813         function for MonoStrings.
28814         * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28815         Added internal call for getting the proxy type.
28816         * marshal.c: Get the type of transparent proxies from its remote_class.
28817         Added methods that generate the IL for type checks and casts:
28818         mono_marshal_get_isinst, mono_marshal_get_castclass, 
28819         mono_marshal_get_proxy_cancast.
28820         * marshal.h: Declaration of the previous new methods.
28821         * object.c: Added new moethods for creating and updating MonoRemoteClass
28822         instances: mono_remote_class, mono_upgrade_remote_class, 
28823         * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28824         * verify.c: FIx transparent_proxy_fields layout.
28825         * appdomain.c: Bump corlib version.
28826
28827 2004-03-04  Jackson Harper  <jackson@ximian.com>
28828
28829         * icall.c: Add icall to access char conversion tables.
28830         * char-conversions.h: Character conversion tables.
28831         * Makefile.am: Add char-conversions.h private header file.
28832         
28833 2004-03-04  Zoltan Varga  <vargaz@freemail.hu>
28834
28835         * appdomain.c (unload_thread_main): Increase unloading timeout to
28836         10 sec as a temporary workaround for Nant problems.
28837
28838 2004-02-29  Zoltan Varga  <vargaz@freemail.hu>
28839
28840         * gc.c: Add checks for GC_enable and GC_disable.
28841
28842         * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28843         (jaak@zd.com.pl). Fix memory corruption in String.Replace 
28844         (bug #54988).
28845         
28846 2004-02-27  Martin Baulig  <martin@ximian.com>
28847
28848         * reflection.c (mono_reflection_bind_generic_parameters): Take a
28849         `MonoReflectionType *' instead of a `MonoType *'.
28850
28851 2004-02-26  Zoltan Varga  <vargaz@freemail.hu>
28852
28853         * gc.c (run_finalize): Avoid finalizing the object representing the
28854         finalizer thread.
28855         (finalizer_thread): Fix warning.
28856
28857 2004-02-25  Martin Baulig  <martin@ximian.com>
28858
28859         * class.c (_mono_class_get_instantiation_name): Added `int offset'
28860         argument for nested types.
28861         (mono_class_create_generic): Added support for nested generictypes.
28862
28863         * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28864         `GList *nested'.
28865
28866         * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28867
28868         * reflection.c (method_encode_signature): Increase the minimum
28869         value of `size' from 10 to 11.
28870         (mono_reflection_bind_generic_parameters): Take `int type_argc'
28871         and `MonoType **types' arguments instead of the `MonoArray
28872         *types'; added `MonoType *nested_in'.  Recursively instantiate
28873         nested classes. 
28874
28875 2004-02-23  Zoltan Varga  <vargaz@freemail.hu>
28876
28877         * appdomain.h (MonoDomain): Add preallocated null_reference_ex and 
28878         stack_overflow_ex members which are used by exception handling.
28879
28880         * appdomain.c (mono_runtime_init): Initialize the new members.
28881
28882         * gc.c (mono_gc_enable): New helper function.
28883         * gc.c (mono_gc_disable): New helper function.
28884
28885 2004-02-23  Martin Baulig  <martin@ximian.com>
28886
28887         * icall.c: I must have been really stupid - make it actually work
28888         this time ;-)
28889
28890 2004-02-23  Martin Baulig  <martin@ximian.com>
28891
28892         * loader.c (method_from_memberref): Only inflate the method if
28893         it's in another klass.
28894
28895 2004-02-23  Martin Baulig  <martin@ximian.com>
28896
28897         * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28898         (mono_class_init): If we're a generic instance and an interface,
28899         compute `class->interface_id'; also create `class->interfaces'
28900         here and inflate them.
28901
28902         * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28903         `ginst->is_open'.
28904         (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28905
28906         * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28907
28908 2004-02-15  Miguel de Icaza  <miguel@ximian.com>
28909
28910         * reflection.c (method_encode_code): Improved the error message
28911         generated by the exception.
28912
28913 2004-02-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28914
28915         * icall.c: Martin did not do what he said in the ChangeLog for
28916         2004-02-18, but put back the changes for properties and events.
28917         Commenting those changes out again and adding comment to bug #54518.
28918         
28919         * process.c: removed warning.
28920
28921 2004-02-20  Zoltan Varga  <vargaz@freemail.hu>
28922
28923         * marshal.c (emit_struct_conv): Print an error message instead of
28924         asserting when a type does not have the StructLayout attribute.
28925
28926 2004-02-20  Martin Baulig  <martin@ximian.com>
28927
28928         * reflection.c (mono_type_get_object): Also use the cache for
28929         generic instances.
28930         (mono_reflection_bind_generic_parameters): Always compute
28931         `ginst->ifaces'.        
28932
28933 2004-02-20  Martin Baulig  <martin@ximian.com>
28934
28935         * class.h (MonoGenericMethod): Removed `klass'.
28936
28937         * class.c (mono_class_inflate_generic_method): Added `MonoClass
28938         *klass' argument.
28939
28940 2004-02-20  Martin Baulig  <martin@ximian.com>
28941
28942         * reflection.c (method_encode_methodspec): Actually use the
28943         uninflated signature for the memberref.
28944
28945 2004-02-20  Martin Baulig  <martin@ximian.com>
28946
28947         * class.h (MonoGenericMethod): Removed `declaring'.
28948
28949         * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28950         is NULL, compute it here.
28951
28952 2004-02-20  Martin Baulig  <martin@ximian.com>
28953
28954         * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28955
28956         * metadata.c (mono_metadata_generic_inst_hash): New method.
28957         (mono_metadata_generic_inst_equal): New method.
28958
28959         * reflection.c (mono_reflection_bind_generic_parameters): Use the
28960         `klass->image->generic_inst_cache' cache to avoid creating
28961         duplicate MonoGenericInst's.
28962
28963         * class.c (mono_class_inflate_generic_type): Use the cache.
28964
28965 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
28966
28967         * object.c: fixed gc descriptor calculation for embedded valuetypes.
28968
28969 2004-02-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28970
28971         * icall.c: added Socket.WSAIoctl icall.
28972
28973         * socket-io.[ch]: implemented
28974         ves_icall_System_Net_Sockets_Socket_WSAIoctl.
28975
28976 2004-02-19  Atsushi Enomoto  <atsushi@ximian.com>
28977
28978         * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
28979
28980 2004-02-18  Urs C Muff  <umuff@quark.com>
28981
28982         * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
28983         this work on PPC and other big-endian architectures.
28984
28985         * debug-mono-symfile.h: Prepended the names of all the `guint32'
28986         fields with an underscore to make sure they're only accessed by
28987         the read32() macro.
28988
28989 2004-02-18  Martin Baulig  <martin@ximian.com>
28990
28991         * icall.c: Put the klass->refclass changes back for methods and
28992         fields, but not for properties and events.  We're currently not
28993         distinguishing between DeclaringType and ReflectedType for
28994         properties and events, that's what caused the regressions.
28995
28996 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
28997
28998         * object.c:
28999         (mono_async_result_new): the handle can be NULL.
29000
29001         * threadpool.c: Use an event instead of a semaphore, don't initialize
29002         it until needed. This saves quite a few semaphores from being created
29003         when using the threadpool.
29004
29005 2004-02-18  Zoltan Varga  <vargaz@freemail.hu>
29006
29007         * object.c (mono_string_is_interned_lookup): Fix interning of long
29008         strings. Fixes #54473.
29009
29010         * domain.c (ldstr_equal): Optimize if the two strings are equal.
29011
29012         * icall.c: Revert the klass->refclass changes since they introduce
29013         regressions (bug #54518).
29014
29015 2004-02-18  Martin Baulig  <martin@ximian.com>
29016
29017         * class.c (mono_class_init): If we're a generic instance and don't
29018         come from a TypeBuilder, inflate our members here.
29019         (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29020         (mono_class_create_generic): New public method.
29021         (mono_class_initialize_generic): Removed.
29022         (get_instantiation_name): Renamed to
29023         _mono_class_get_instantiation_name() and made it public.
29024
29025 2004-02-18  Martin Baulig  <martin@ximian.com>
29026
29027         * class.c (mono_class_inflate_generic_type): Clear the new
29028         instance's `nginst->klass' when inflating a generic instance.
29029         (mono_class_is_subclass_of): Added (basic) support for generic
29030         instances.
29031
29032 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29033
29034         * appdomain.h, domain.c: use a MonoCodeManager instead of a
29035         MonoMempool to hold compiled native code.
29036
29037 2004-02-17  Martin Baulig  <martin@ximian.com>
29038
29039         * class.h (MonoDynamicGenericInst): Added `count_properties' and
29040         `properties'.
29041
29042         * reflection.c (mono_reflection_generic_inst_initialize): Added
29043         `MonoArray *properties' argument.
29044
29045         * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.    
29046
29047 2004-02-17  Martin Baulig  <martin@ximian.com>
29048
29049         * icall.c (ves_icall_Type_GetFields): Renamed to
29050         ves_icall_Type_GetFields_internal() and added a
29051         `MonoReflectionType *rtype' argument; pass it to
29052         mono_field_get_object() to set the field's "reflected" type.
29053         (ves_icall_Type_GetConstructors): Likewise.
29054         (ves_icall_Type_GetEvents): Likewise.
29055         (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29056         argument; pass it to mono_method_get_object() to set the method's
29057         "reflected" type.       
29058
29059 2004-02-17  Martin Baulig  <martin@ximian.com>
29060
29061         * class.h (MonoDynamicGenericInst): New type.
29062         (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29063
29064         * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29065         (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29066         (ves_icall_MonoGenericInst_GetFields): New interncall.
29067
29068         * class.c (mono_class_from_generic): Don't call
29069         mono_class_initialize_generic() if this is a dynamic instance;
29070         ie. it's being created from a TypeBuilder.
29071         Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29072         `class->byval_arg.type'.
29073
29074         * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29075         to `inflate_method' and made static.
29076         (mono_reflection_inflate_field): Removed.
29077         (mono_reflection_generic_inst_initialize): New public method.
29078
29079         * reflection.h (MonoReflectionGenericInst): Removed `methods',
29080         `ctors' and `fields'; added `initialized'.
29081
29082 2004-02-14  Zoltan Varga  <vargaz@freemail.hu>
29083
29084         * debug-helpers.c (mono_method_full_name): Fix output for empty
29085         namespaces.
29086
29087 2004-02-12  Martin Baulig  <martin@ximian.com>
29088
29089         * class.h (MonoClassField): Added `MonoType *generic_type'.
29090
29091         * reflection.c (mono_image_get_fieldref_token): Added support for
29092         instantiated generic types.
29093         (field_encode_inflated_field): Removed.
29094         (mono_image_get_inflated_field_token): Removed.
29095         (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29096
29097         * reflection.h (MonoReflectionInflatedField): Removed.
29098
29099 2004-02-12  Martin Baulig  <martin@ximian.com>
29100
29101         * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29102         `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29103
29104         * reflection.c (mono_image_get_methodspec_token): Take a
29105         `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29106         (mono_image_create_token): Check whether we have a
29107         `method->signature->gen_method' and call
29108         mono_image_get_methodspec_token() if appropriate.
29109         (inflated_method_get_object): Removed.
29110         (mono_reflection_bind_generic_method_parameters): Return a
29111         `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29112         (mono_reflection_inflate_method_or_ctor): Likewise.
29113
29114         * reflection.h (MonoReflectionInflatedMethod): Removed.
29115
29116 2004-02-12  Zoltan Varga  <vargaz@freemail.hu>
29117
29118         * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29119         for custom valuetype marshalling.
29120
29121         * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29122
29123 2004-02-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29124
29125         * icall.c: fixed WSAGetLastError_internal name.
29126
29127 2004-02-11  Zoltan Varga  <vargaz@freemail.hu>
29128
29129         * threads.c (mono_thread_attach): Allow this to be called multiple
29130         times for a thread.
29131         
29132         * threads.c (build_wait_tids): Do not wait for ourselves.
29133
29134         * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the 
29135         appdomain list is empty.
29136
29137         * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29138         memory returned by mono_string_builder_to_utf16, since it points into
29139         managed memory. Thanks to Bernie Solomon for noticing this.
29140
29141         * icall.c: Add AppDomainSetup icalls.
29142
29143         * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29144
29145         * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29146         types.
29147
29148         * reflection.c (reflection_methodbuilder_to_mono_method): Save
29149         custom attributes to the method_aux struct. Also fix array indexes etc.
29150
29151         * loader.c (mono_method_get_param_names): Make dynamic case work again.
29152         
29153 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29154
29155         * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29156         (both static and runtime) and reduce startup time.
29157
29158 2004-02-10  Zoltan Varga  <vargaz@freemail.hu>
29159
29160         * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29161         AsAny marshalling conversion instead of crashing.
29162
29163         * marshal.c: Fix warnings.
29164
29165 2004-02-09  Martin Baulig  <martin@ximian.com>
29166
29167         * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29168
29169         * reflection.h (MonoReflectionInflatedMethod): Removed the
29170         `declaring' field, it's now in the unmanaged MonoGenericMethod.
29171
29172         * reflection.c (method_encode_methodspec): Removed the `method'
29173         argument; we get it from `gmethod->declaring'.
29174         (inflated_method_get_object): Removed the `declaring' argument.
29175
29176 2004-02-09  Martin Baulig  <martin@ximian.com>
29177
29178         * class.h (MonoGenericMethod): New type.
29179         (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29180         `generic_method'.
29181
29182         * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29183         a `MonoGenericMethod *gen_method' one.
29184
29185         * class.c (mono_class_inflate_generic_type): Take an additional
29186         `MonoGenericMethod * argument.  This is only non-NULL if we're
29187         inflating types for a generic method.   
29188         (mono_class_inflate_generic_signature): Renamed to
29189         inflate_generic_signature() and made static; take a
29190         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29191         (inflate_generic_header): Take a `MonoGenericMethod *' argument
29192         instead of a `MonoGenericInst *' one.
29193         (mono_class_inflate_generic_method): Likewise.
29194
29195         * reflection.c (encode_generic_method_sig): Take a
29196         `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29197         (method_encode_methodspec): Likewise.
29198         (inflated_method_get_object): Likewise. 
29199
29200         * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29201         field with a `MonoGenericMethod *gmethod' one.  
29202
29203 2004-02-08  Bernie Solomon  <bernard@ugsolutions.com>
29204
29205         * class.h (mono_class_has_parent): add parens to expansion
29206         so you can ! this.
29207
29208 2004-02-08  Martin Baulig  <martin@ximian.com>
29209
29210         * image.h (MonoImage): Removed `generics_cache'.
29211
29212         * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29213         instead of a `MonoType *' argument; removed the `inflate_methods'
29214         argument.  Don't inflate methods here.
29215
29216         * loader.c (find_method): If it's a generic instance, call
29217         mono_class_init() on the `sclass->generic_inst->generic_type'.
29218
29219         * metadata.c (mono_type_size): Make this work on uninitialized
29220         generic instances; call it on the `ginst->generic_type's class.
29221
29222         * reflection.c (mono_reflection_bind_generic_parameters): Call
29223         mono_class_from_generic() to create the `ginst->klass'.
29224
29225 2004-02-08  Martin Baulig  <martin@ximian.com>
29226
29227         * class.h (MonoClass): Changed type of `generic_inst' from
29228         `MonoType *' to `MonoGenericInst *'.
29229
29230 2004-02-08  Martin Baulig  <martin@ximian.com>
29231
29232         * icall.c (ves_icall_Type_BindGenericParameters): Just call
29233         mono_type_get_object(), this is now creating a `MonoGenericInst'
29234         for MONO_TYPE_GENERICINST.
29235         (ves_icall_MonoGenericInst_GetParentType): Likewise.
29236         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29237
29238         * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29239         instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29240         (inflated_method_get_object): Added `MonoClass *refclass' argument.
29241         (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29242         and reflected type.
29243
29244         * reflection.h (MonoReflectionInflatedMethod): Removed
29245         `declaring_type' and `reflected_type'.
29246
29247 2004-02-08  Martin Baulig  <martin@ximian.com>
29248
29249         * class.h (MonoGenericInst): Added `MonoType *parent' and
29250         `MonoType **ifaces'.
29251
29252         * reflection.h (MonoReflectionGenericInst): Removed `klass',
29253         `parent' and `interfaces'.
29254
29255         * reflection.c (mono_reflection_bind_generic_parameters): Take a
29256         `MonoType *' argument and return a `MonoType *'.
29257
29258         * icall.c
29259         (ves_icall_MonoGenericInst_GetParentType): New interncall.
29260         (ves_icall_MonoGenericInst_GetInterfaces): Likewise.    
29261
29262 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29263
29264         * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29265         valuetype marshalling.
29266
29267 2004-02-06  Martin Baulig  <martin@ximian.com>
29268
29269         * class.c
29270         (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29271         (my_mono_class_from_generic_parameter): Likewise.
29272
29273 2004-02-06  Zoltan Varga  <vargaz@freemail.hu>
29274
29275         * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29276         contents of the symbol files lazily.
29277
29278         * object.h (MonoThread): Add 'name' and 'name_len' fields.
29279
29280         * threads.h threads.c icall.c: New icalls for getting and setting the
29281         threads name.
29282
29283 2004-02-05  Zoltan Varga  <vargaz@freemail.hu>
29284
29285         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID): 
29286         Raise an exception when the domain is not found.
29287
29288 2004-02-03  Martin Baulig  <martin@ximian.com>
29289
29290         * reflection.c (mono_image_get_methodspec_token): Use the
29291         uninflated signature; fixes gen-33.
29292
29293 2004-02-02  Zoltan Varga  <vargaz@freemail.hu>
29294
29295         * gc.c threads.c: Make the finalizer thread a normal managed thread so
29296         the finalizer code can use thread functionality.
29297
29298         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for 
29299         the finalizer thread.
29300
29301         * threads.c: Make some functions more robust.
29302
29303         * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29304
29305         * metadata.h: Add new marshalling conventions.
29306
29307         * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29308         stringbuilder marshalling. Fixes #53700.
29309
29310         * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29311
29312         * reflection.c (mono_image_get_type_info): Save declarative security
29313         info.
29314
29315         * reflection.c (mono_image_get_field_info): Handle uninitialized 
29316         unmanaged fields as well.
29317
29318         * appdomain.c: Bump corlib version.
29319
29320 2004-02-01  Martin Baulig  <martin@ximian.com>
29321
29322         * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29323         method type arguments.  
29324
29325 2004-01-30  Duncan Mak  <duncan@ximian.com>
29326
29327         * marshal.h: Add prototype for
29328         "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29329         and
29330         "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29331         fix the build.
29332
29333 2004-01-30  Zoltan Varga  <vargaz@freemail.hu>
29334
29335         * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29336         (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29337
29338 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29339
29340         * marshal.c (mono_marshal_get_native_wrapper): Add support for
29341         custom marshalling of valuetypes.
29342
29343         * marshal.c: Fix some warnings.
29344
29345 2004-01-29  Martin Baulig  <martin@ximian.com>
29346
29347         * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29348         for generic method parameters.
29349
29350         * reflection.c (method_encode_methodspec): Write the uninflated
29351         signature into the methodspec table.
29352         (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29353         is always the uninflated method.
29354         (reflection_methodbuilder_to_mono_method): Copy the generic
29355         parameters from the MethodBuilder into `header->gen_params'.
29356
29357 2004-01-29  Zoltan Varga  <vargaz@freemail.hu>
29358
29359         * class.c (mono_class_from_generic_parameter): Fix warning.
29360
29361 2004-01-27  Martin Baulig  <martin@ximian.com>
29362
29363         * class.c (mono_class_from_generic_parameter): Don't create
29364         `klass->methods' here.  
29365
29366 2004-01-26  Zoltan Varga  <vargaz@freemail.hu>
29367
29368         * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29369         extension since it does not work with libraries named lib<FOO>.dll.so.
29370
29371 2004-01-25  Martin Baulig  <martin@ximian.com>
29372
29373         * class.c (mono_class_inflate_generic_type): Added support for
29374         MONO_TYPE_GENERICINST.
29375
29376         * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29377         inflate methods on open constructed types.      
29378
29379 2004-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29380
29381         * object.c: fire ProcessExit event in the root AppDomain after running
29382         Main. Fixes bug #53299.
29383
29384 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29385
29386         * socket-io.c: include the new socket-wrappers.h header.
29387         Use the wrappers instead of the unix socket functions to make the code
29388         more clear.
29389
29390 2004-01-23  Zoltan Varga  <vargaz@freemail.hu>
29391
29392         * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29393
29394         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29395         Fixes #22532.
29396
29397 2004-01-22  Zoltan Varga  <vargaz@freemail.hu>
29398
29399         * reflection.c (mono_image_create_pefile): Handle the case when the
29400         entry point is not a MethodBuilder.
29401
29402         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29403         field to ReflectionMethod since it is not allways a builder.
29404
29405         * reflection.c (type_get_fully_qualified_name): New helper function to
29406         return the fully qualified name of a type.
29407
29408         * reflection.c (encode_marshal_blob): Always emit the fully qualified
29409         type name for custom marshallers.
29410
29411         * reflection.c (mono_marshal_spec_from_builder): Ditto.
29412
29413         * class.c (mono_class_setup_vtable): If a parent class already 
29414         implements an interface, use the implementing methods from that class.
29415         Fixes #53148.
29416
29417 2004-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29418
29419         * threadpool.c: just return instead of ExitThread to allow for thread
29420         clean up earlier.
29421
29422 2004-01-21  Zoltan Varga  <vargaz@freemail.hu>
29423
29424         * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29425         when closing resource modules.
29426
29427         * reflection.c (mono_image_create_pefile): Handle the case when the
29428         entry point is not a MethodBuilder.
29429
29430         * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29431         field to ReflectionMethod since it is not allways a builder.
29432
29433 2004-01-20  Bernie Solomon  <bernard@ugsolutions.com>
29434
29435         * marshal.c (mono_marshal_get_managed_wrapper): 
29436         mono_marshal_alloc takes native int so CONV_I
29437         the arg for 64bits.
29438
29439 2004-01-20  Zoltan Varga  <vargaz@freemail.hu>
29440
29441         * reflection.c (fixup_cattrs): New function to fixup the methoddef
29442         tokens in the cattr table. Fixes #53108.
29443
29444 2004-01-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29445
29446         * loader.c: don't trim ".dll" before looking up in the config file.
29447         Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29448
29449 2004-01-19  Zoltan Varga  <vargaz@freemail.hu>
29450
29451         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): 
29452         Return the module which contains the resource as well.
29453         (ves_icall_System_Reflection_Module_Close): New icall.
29454
29455         * appdomain.c: Bump corlib version number.
29456
29457         * image.c (mono_image_addref): New public function.
29458
29459         * assembly.c: Call mono_image_addref.
29460
29461         * reflection.c (mono_module_get_object): Increase reference count of 
29462         the image.
29463
29464         * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29465         Fixes #22532.
29466
29467         * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29468         Applied patch from Bernie Solomon  <bernard@ugsolutions.com>. Throw
29469         proper exceptions on DllImport problems.
29470
29471 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29472
29473         * class.c, metadata.c: eliminate CSIZE macro.
29474
29475 2004-01-19  Lluis Sanchez Gual  <lluis@ximian.com>
29476
29477         * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29478         * object.h: Added async_callback field in MonoAsyncResult.
29479         * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29480         * verify.c: Added async_callback in MonoAsyncResult layout.
29481
29482 2004-01-17  Zoltan Varga  <vargaz@freemail.hu>
29483
29484         * reflection.c (mono_reflection_get_custom_attrs): Add support
29485         for Modules.
29486
29487 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29488
29489         * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder 
29490         marshalling.
29491         (mono_marshal_method_from_wrapper): Add null pointer check.
29492
29493 2004-01-16  Martin Baulig  <martin@ximian.com>
29494
29495         * debug-mono-symfile.h: Set version number to 36 and reflect
29496         latest symbol writer changes.
29497
29498 2004-01-16  Zoltan Varga  <vargaz@freemail.hu>
29499
29500         * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29501         multi-dimensional arrays.
29502         (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29503         (mono_class_from_mono_type): Use bounded_array_class_get.
29504         
29505         * class.c (mono_bounded_array_class_get): New function which takes
29506         a 'bounded' bool argument to distinguish vectors from one dimensional
29507         arrays.
29508
29509         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call 
29510         bounded_array_class_get if the array has bounds.
29511
29512         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
29513         Search modules loaded using AssemblyBuilder:AddModule as well.
29514
29515 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29516
29517         * appdomain.c: increased corlib version.
29518         * filewatcher.c: removed g_print.
29519         * icall.c:
29520         (get_property_info): only allocate what is actually requested.
29521         (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29522
29523 2004-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29524
29525         * Makefile.am: added filewatcher.[ch]
29526         * filewatcher.[ch]: FileSystemWatcher runtime support.
29527         * icall.c: added new FSW icalls.
29528
29529 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29530
29531         * string-icalls.c: fix stringbuilder regression as suggested by
29532         Iain McCoy <iain@mccoy.id.au>.
29533
29534 2004-01-13  Zoltan Varga  <vargaz@freemail.hu>
29535
29536         * process.c (process_read_stringtable_block): Recognize '007f' as
29537         a language neutral stringtable block.
29538
29539 2004-01-12  Patrik Torstensson
29540
29541         * object.h (MonoStringBuilder) : Changed layout to support our
29542         new stringbuilder class.
29543         * marshal.c: Change marshalling to support the new layout of 
29544         string builder.
29545         * appdomain.c: increased version number because new layout of
29546         string builder.
29547
29548 2004-01-12  Zoltan Varga  <vargaz@freemail.hu>
29549
29550         * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29551         assembly name as an string instead of an AssemblyName, since it is
29552         easier to extract info from it.
29553
29554         * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29555         the culture subdirectories too. Fixes #52231.
29556
29557 2004-01-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29558
29559         * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29560         It takes 2 new parameters with an optional name for the method to look
29561         for and case ignoring info.
29562
29563         * threadpool.c: removed unused variable.
29564
29565 2004-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29566
29567         * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29568         It takes 2 new parameters with an optional name for the property to look
29569         for and case ignoring info.
29570         Fixes bug #52753.
29571
29572 2004-01-09  Zoltan Varga  <vargaz@freemail.hu>
29573
29574         * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29575         Fix #52451.
29576
29577 2004-01-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29578
29579         * appdomain.c:
29580         * assembly.c: escape the uri before passing it to g_filename_from_uri.
29581         Fixes bug #52630.
29582
29583 2004-01-07  Zoltan Varga  <vargaz@freemail.hu>
29584
29585         * reflection.c: Add support for more than one unmanaged resource.
29586
29587         * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29588         in field->def_value, as done in all other cases.
29589
29590         * reflection.c (mono_reflection_get_custom_attrs): Add support for
29591         TypeBuilders.
29592
29593         * reflection.c (mono_reflection_create_runtime_class): Remove 
29594         errorneous assignment to klass->element_class, since it is already
29595         done in mono_reflection_setup_internal_class.
29596
29597 2004-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29598
29599         * gc.c: added missing LeaveCriticalSection.
29600         * icall.c: indented a couple of lines.
29601         * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29602         if we call EndInvoke inside a callback. Fixes bug #52601.
29603
29604 2004-01-07  Martin Baulig  <martin@ximian.com>
29605
29606         * mono-debug-debugger.h
29607         (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29608
29609 2004-01-06  Miguel de Icaza  <miguel@ximian.com>
29610
29611         * appdomain.c: Use messages in NotImplementedException.
29612
29613         * exception.c (mono_get_exception_not_implemented): Now this takes
29614         a message argument.
29615
29616         * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29617         exception instead of g_asserting an aborting when something is not
29618         implemented.
29619
29620         Add some inline docs.
29621
29622 2004-01-05  Zoltan Varga  <vargaz@freemail.hu>
29623
29624         * reflection.h: Update after changes to object layout.
29625
29626         * reflection.c: Implement saving of unmanaged aka win32 resources.
29627
29628         * appdomain.c: Bump version number.
29629
29630         * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID): 
29631         Handle missing domains gracefully.
29632
29633 2004-01-05  Atsushi Enomoto <atsushi@ximian.com>
29634
29635         * file-io.c : On Windows, there are much more invalid_path_chars.
29636
29637 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29638
29639         * class.h, object.c: prepare for GetType () speedup.
29640
29641 2003-12-24  Atsushi Enomoto <atsushi@ximian.com>
29642
29643         * profiler.c: workaround for --profile null reference exception on
29644           cygwin. Patch by Patrik Torstensson.
29645
29646 2003-12-22  Bernie Solomon  <bernard@ugsolutions.com>
29647
29648         * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29649         make work for unaligned access.
29650
29651 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29652
29653         * class.c: small cleanup (class->fields [i] -> field).
29654         * image.c: check address of metadata is valid.
29655
29656 2003-12-22  Zoltan Varga  <vargaz@freemail.hu>
29657
29658         * assembly.h assembly.c (mono_assembly_loaded): New public function to
29659         search the list of loaded assemblies.
29660
29661         * reflection.c (mono_reflection_type_from_name): Use 
29662         mono_assembly_loaded instead of mono_image_loaded.
29663
29664         * reflection.c: Fix warnings.
29665
29666 2003-12-20  Zoltan Varga  <vargaz@freemail.hu>
29667
29668         * image.h (MonoImage): Add a new 'dynamic' field to denote that the image 
29669         is dynamic. This is needed since an assembly can contain both dynamic and
29670         non-dynamic images.
29671
29672         * class.c loader.c metadata.c object.c: Use image->dynamic instead of 
29673         assembly->dynamic.
29674
29675         * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29676
29677         * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29678         to store modules loaded using AddModule.
29679
29680         * reflection.c (mono_image_fill_file_table): Generalize this so it works
29681         on Modules.
29682
29683         * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29684
29685         * reflection.c (mono_image_fill_export_table_from_module): New function to
29686         fill out the EXPORTEDTYPES table from a module.
29687
29688         * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29689         into a separate function. Also handle loaded non-dynamic modules.
29690
29691         * reflection.c (mono_image_basic_init): Fix memory allocation.
29692
29693         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29694
29695         * assembly.c (mono_assembly_load_references): Make this public.
29696
29697 2003-12-19  Martin Baulig  <martin@ximian.com>
29698
29699         * class.c (mono_class_initialize_generic): Made this static, take
29700         a `MonoGenericInst *' instead of a `MonoClass *'.
29701         (mono_class_from_generic): Call mono_class_initialize_generic()
29702         unless we're already initialized or being called from
29703         do_mono_metadata_parse_generic_inst().
29704
29705         * class.h (MonoGenericInst): Added `initialized' and
29706         `init_pending' flags.
29707
29708         * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29709         `mono_class_init (gklass)' or mono_class_initialize_generic()
29710         here; set `generic_inst->init_pending' while parsing the
29711         `type_argv'.
29712
29713 2003-12-19  Bernie Solomon  <bernard@ugsolutions.com>
29714
29715         * locales.c: include string.h for memxxx prototypes
29716
29717 2003-12-19  Zoltan Varga  <vargaz@freemail.hu>
29718
29719         * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29720         constructor when accessing literal fields.
29721
29722 2003-12-17  Zoltan Varga  <vargaz@freemail.hu>
29723
29724         * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29725
29726         * reflection.c (assembly_add_resource_manifest): New function to fill
29727         the MANIFESTRESOURCE table.
29728
29729         * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29730
29731         * reflection.h: Update to changes in class layout.
29732
29733         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): 
29734         Reenable call to mono_runtime_is_shutting_down ().
29735
29736         * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29737         determine if the runtime is shutting down.
29738
29739 2003-12-16  Jackson Harper <jackson@ximian.com>
29740
29741         * icall.c: comment out call to mono_runtime_is_shutting_down to
29742         fix build.
29743         
29744 2003-12-16  Zoltan Varga  <vargaz@freemail.hu>
29745
29746         * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29747         (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29748
29749 2003-12-15  Bernie Solomon  <bernard@ugsolutions.com>
29750
29751         * reflection.c: move definition of swap_with_size
29752         to before its first call
29753
29754 2003-12-15  Zoltan Varga  <vargaz@freemail.hu>
29755
29756         * appdomain.c (mono_runtime_is_shutting_down): New public function.
29757
29758         * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29759         icall.
29760
29761         * object.c: Fix warnings.
29762
29763         * icall.c (ves_icall_Type_Get...): Only consider inherited static
29764         members if FlattenHierarchy is set.
29765
29766         * reflection.c (mono_image_add_decl_security): New function to emit
29767         declarative security.
29768
29769         * reflection.h reflection.c: Add support for declarative security.
29770
29771         * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29772         
29773 2003-12-13  Zoltan Varga  <vargaz@freemail.hu>
29774
29775         appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29776         
29777         * appdomain.c verify.c: Moved corlib version checking into its own
29778         function in appdomain.c since it needs to create vtables etc.
29779
29780 2003-12-13  Patrik Torstensson <p@rxc.se>
29781
29782         * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this 
29783         instead of unwrapped server.
29784
29785 2003-12-12  Zoltan Varga  <vargaz@freemail.hu>
29786
29787         * verify.c (check_corlib): Fix field index.
29788
29789 2003-12-10  Zoltan Varga  <vargaz@freemail.hu>
29790
29791         * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29792         GetGacPath icall.
29793
29794 2003-12-10  Bernie Solomon  <bernard@ugsolutions.com>
29795
29796         * process.c:  (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29797         ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29798         cope with sizeof(size_t) != sizeof(guint32).
29799
29800 2003-12-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
29801
29802         * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29803         in case of failure.
29804
29805 2003-12-10  Mark Crichton <crichton@gimp.org>
29806
29807         * icall.c: removed the GetNonZeroBytes.  We now handle this case
29808         in managed code.
29809
29810         * rand.c, rand.h: Same here.  Also cleaned up the clode slightly.
29811
29812 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29813
29814         * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29815         marked as deleted.
29816
29817 2003-12-09  Zoltan Varga  <vargaz@freemail.hu>
29818
29819         * verify.c (check_corlib): Handle the case when the version field is 
29820         initialized by a static constructor.
29821
29822 2003-12-08  Patrik Torstensson  <p@rxc.se>
29823
29824     * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29825
29826 2003-12-08  Martin Baulig  <martin@ximian.com>
29827
29828         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29829         a MonoReflectionGenericParameter, also take the parameter index
29830         and name as arguments.
29831         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29832         (ves_icall_MonoGenericParam_initialize): New interncall.
29833         (ves_icall_Type_make_byref_type): New interncall.
29834
29835         * reflection.h (MonoReflectionGenericParam): Derive from
29836         MonoReflectionType, not just from MonoObject.  Added `refobj' and
29837         `index' fields.
29838
29839         * reflection.c (mono_reflection_define_generic_parameter): Create
29840         and return a new MonoReflectionGenericParam; don't initialize the
29841         constraints here.
29842         (mono_reflection_initialize_generic_parameter): New public method;
29843         initializes the constraints and creates the `param->pklass'.
29844
29845 2003-12-08  Zoltan Varga  <vargaz@freemail.hu>
29846
29847         * reflection.h reflection.c: Use the new fields 'num_types', 
29848         'num_fields' and 'num_methods' to track the number of types etc.
29849
29850         * verify.c (check_corlib): Check corlib version number.
29851
29852 2003-12-07  Zoltan Varga  <vargaz@freemail.hu>
29853
29854         * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29855         function works on all methods.
29856
29857 2003-12-07  Lluis Sanchez Gual  <lluis@ximian.com>
29858
29859         * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29860         * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29861         the custom_type_info flag of the transparent proxy.
29862         * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29863         objects that supports IRemotingTypeInfo.
29864         * object.h: Added custom_type_info field in transparent proxy.
29865
29866 2003-12-06  Martin Baulig  <martin@ximian.com>
29867
29868         * class.c (mono_class_create_from_generic): Removed.
29869         (mono_class_from_generic): Check `ginst->klass' before doing
29870         anything else.  This is important to fully support "recursive"
29871         generic types.
29872
29873         * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29874         empty `generic_inst->klass' before doing anything else.
29875
29876 2003-12-06  Dick Porter  <dick@ximian.com>
29877
29878         * verify.c: 
29879         * object.h:
29880         * icall.c:
29881         * locales.c: Use C structs to access class fields.  Don't do a
29882         conversion between MonoString and UChar because both are
29883         platform-endian UTF-16.  Compare now takes startindex and count
29884         parameters.  Add a char overload for IndexOf.  Speed up the
29885         invariant string IndexOf.
29886
29887 2003-12-05  Zoltan Varga  <vargaz@freemail.hu>
29888
29889         * Makefile.am (monosn_LDADD): Fix parallel build.
29890
29891 2003-12-04  Martin Baulig  <martin@ximian.com>
29892
29893         * icall.c
29894         (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29895         (ves_icall_Type_make_array_type): New interncall.       
29896
29897 2003-12-04  Martin Baulig  <martin@ximian.com>
29898
29899         * locales.c: also change it in the !HAVE_ICU case.
29900
29901 2003-12-04  Dick Porter  <dick@ximian.com>
29902
29903         * icall.c:
29904         * locales.c: construct_compareinfo is now in CompareInfo, not
29905         CultureInfo.
29906
29907 2003-12-04  Zoltan Varga  <vargaz@freemail.hu>
29908
29909         * image.c (mono_image_load_file_for_image): Cache loaded images in the
29910         image->files array.
29911
29912         * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29913         table as well.
29914
29915         * assembly.c (mono_assembly_load_references): Only load references
29916         once.
29917
29918         * class.c (mono_class_from_name): Avoid linear search of the 
29919         EXPORTEDTYPE table.
29920
29921         * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29922
29923 2003-12-03  Zoltan Varga  <vargaz@freemail.hu>
29924
29925         * image.h (MonoImage): Add 'field_cache' field.
29926
29927         * loader.c (mono_field_from_token): Cache field lookups.
29928         
29929         * reflection.c (mono_module_get_object): Fix name property.
29930
29931         * icall.c (ves_icall_get_enum_info): Update after changes to 
29932         mono_metadata_get_constant_index ().
29933
29934         * icall.c: Get rid of get_type_info icall, use a separate icall for
29935         each type property to avoid needless memory allocations. Fixes #51514.
29936
29937         * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29938         to avoid needless binary searches.
29939
29940         * class.c (class_compute_field_layout): Move the initialization of
29941         field->def_value to mono_class_vtable ().
29942
29943         * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29944         non-corlib types.
29945
29946         * object.c (mono_object_allocate): Make it inline.
29947
29948         * object.c (mono_object_allocate_spec): Make it inline.
29949         
29950 2003-12-02  Dick Porter  <dick@ximian.com>
29951
29952         * locales.c (create_NumberFormat): NumberFormatInfo construction.
29953         Patch by Mohammad DAMT (mdamt@cdl2000.com).
29954
29955 2003-12-01  Dick Porter  <dick@ximian.com>
29956
29957         * threads.c: Fix signature and call in CreateMutex and
29958         CreateEvent.
29959
29960 2003-12-01  Dick Porter  <dick@ximian.com>
29961
29962         * icall.c: 
29963         * locales.c: Implement string compares and searching
29964
29965         * object.h: Add extra Thread field
29966
29967 2003-11-30  Zoltan Varga  <vargaz@freemail.hu>
29968
29969         * reflection.c (fixup_method): Add support for MonoCMethod.
29970
29971 2003-11-28  Zoltan Varga  <vargaz@freemail.hu>
29972
29973         * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
29974
29975         * reflection.c (assembly_name_to_aname): Allow extra characters in
29976         assembly names. Fixes #51468.
29977
29978 2003-11-26  Zoltan Varga  <vargaz@freemail.hu>
29979
29980         * exception.c (mono_exception_from_name_domain): New helper function.
29981
29982         * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
29983         exception object in the correct domain.
29984
29985         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix 
29986         formatting + make a copy a the input data.
29987
29988         * loader.c (mono_get_method_from_token): Methods which contain
29989         native code do not have entries in the ImplMap.
29990
29991         (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
29992         Thanks to Gonzalo for spotting this.
29993         
29994         * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
29995         patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
29996
29997         * assembly.h (mono_assembly_load_from): Split the second part of 
29998         assembly loading into a new public function.
29999
30000         * exception.h (mono_get_exception_bad_image_format): New function.
30001
30002 2003-11-24  Zoltan Varga  <vargaz@freemail.hu>
30003
30004         icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30005         Enumerate all modules inside a dynamic assembly. Fixes #51293.
30006         
30007         * icall.c: Add new icall for creating dynamic methods.
30008
30009         * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30010
30011         * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30012
30013         * reflection.c (mono_reflection_create_dynamic_method): New icall to
30014         create a dynamic method.
30015
30016         * reflection.c (resolve_object): New helper function.
30017
30018         * reflection.c: Generalize ReflectionMethodBuilder and the functions
30019         which manipulate it so they can also work on dynamic methods.
30020
30021         * reflection.c (reflection_method_builder_to_mono_method): Avoid 
30022         creating the MonoReflectionMethodAux structure if it is not needed.
30023         
30024         * reflection.h verify.c: Update after changes to object layout.
30025
30026         * reflection.c (method_builder_encode_signature): Fix compilation on
30027         gcc 2.95.x.
30028
30029 2003-11-21  Lluis Sanchez Gual  <lluis@ximian.com>
30030
30031         * appdomain.h: Added support for context static fields. Added static_data
30032           field to MonoAppContext and renamed thread_static_fields to a more
30033           generic special_static_fields in MonoAppDomain, since it can now contain
30034           context static fields.
30035         * domain.c: Updated hashtable name.
30036         * object.c: Replaced field_is_thread_static() for a more generic
30037           field_is_special_static() which also checks for context static attribute.
30038           In mono_class_vtable(), added support for static context fields.
30039         * threads.c: Changed methods that manage thread static fields to more
30040           generic methods so they can be reused both for thread and context static
30041           data.
30042         * threads.h: Declared some new methods.
30043
30044 2003-11-21  Zoltan Varga  <vargaz@freemail.hu>
30045
30046         * reflection.h: Update after changes to the managed types.
30047
30048         * reflection.c (encode_custom_modifiers): New helper function.
30049
30050         * reflection.c (method_encode_signature): Emit custom modifiers.
30051
30052         * reflection.c (field_encode_signature): Emit custom modifiers.
30053
30054 2003-11-18  Zoltan Varga  <vargaz@freemail.hu>
30055
30056         * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30057
30058         * icall.c (ves_icall_System_ValueType_Equals): New optimized 
30059         implementation.
30060
30061         * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New 
30062         icall.
30063
30064         * object.c (mono_field_get_value_object): New function.
30065
30066         * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30067         specific.
30068
30069 2003-11-17  Zoltan Varga  <vargaz@freemail.hu>
30070
30071         * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30072         return a preallocated out-of-memory exception instance.
30073
30074         * object.c (out_of_memory): Use the new function.
30075
30076         * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30077         flag is before the custom modifiers. Fixes #49802.
30078
30079 2003-11-16  Martin Baulig  <martin@ximian.com>
30080
30081         * class.c (mono_class_is_open_constructed_type): Implemented the
30082         MONO_TYPE_GENERICINST case.
30083
30084 2003-11-16  Zoltan Varga  <vargaz@freemail.hu>
30085
30086         * assembly.c (mono_assembly_fill_assembly_name): New function to
30087         fill out the MonoAssemblyName structure.
30088         (mono_assembly_open): Use the new function.
30089
30090         * icall.c (fill_reflection_assembly_name): New helper function.
30091
30092         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30093         new function.
30094
30095         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30096
30097 2003-11-15  Martin Baulig  <martin@ximian.com>
30098
30099         * class.c (mono_class_is_open_constructed_type): New public
30100         function; checks whether a type is an open constructed type,
30101         ie. whether it still contains type parameters.
30102         (mono_class_inflate_generic_type): If we're a type parameter and
30103         the inflated type is also a MONO_TYPE_(M)VAR, return the original
30104         type.
30105
30106         * class.h (MonoGenericInst): Added `guint32 is_open'.
30107
30108         * loader.c (method_from_methodspec): Check whether we're an open
30109         or closed constructed type and set `ginst->is_open'.
30110
30111         * reflection.c (mono_reflection_bind_generic_parameters): Check
30112         whether we're an open or closed constructed type and set
30113         `ginst->is_open'.
30114         (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30115         from open constructed types.
30116
30117 2003-11-15  Martin Baulig  <martin@ximian.com>
30118
30119         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30120         a generic instance (instead of a generic type declaration) with
30121         unbound generic parameters, bind them to our actual types.
30122
30123 2003-11-14  Martin Baulig  <martin@ximian.com>
30124
30125         * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30126
30127         * reflection.c (mono_reflection_bind_generic_parameters): If we're
30128         an interface type, populate `res->interfaces' with instantiated
30129         versions of all the interfaces we inherit.
30130
30131 2003-11-13  Aleksey Demakov  <avd@openlinksw.com>
30132
30133         * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30134         when MONO_PATH is set but doesn't contain the install dir.
30135
30136 2003-11-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30137
30138         * icall.c:
30139         (ves_icall_Type_GetInterfaces): don't return an interface twice when
30140         it's also implemented in base classes. Fixes bug #50927.
30141
30142 2003-11-13  Zoltan Varga  <vargaz@freemail.hu>
30143
30144         * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30145         if this method is called from a finalizer. Fixes #50913.
30146
30147 2003-11-12  Miguel de Icaza  <miguel@ximian.com>
30148
30149         * threads.c: Implement VolatileRead/VolatileWrite
30150
30151         * icall.c: Add new icalls for VolatileRead/VolatileWrite
30152
30153 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30154
30155         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied 
30156         patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30157         2.95.3.
30158
30159         * assembly.c (mono_assembly_open): Fix windows build. Applied patch 
30160         from Peter Ross (pro@missioncriticalit.com).
30161         
30162 2003-11-12  Lluis Sanchez Gual  <lluis@ximian.com>
30163
30164         * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30165
30166 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30167
30168         * assembly.c (mono_assembly_load_references): Disable check because it
30169         triggers on older corlibs which lots of people have.
30170
30171 2003-11-12  Jackson Harper  <jackson@ximian.com>
30172
30173         * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30174         load corlib.dll if mscorlib.dll is not found.
30175         * assembly.h: Remove corlib name define.
30176         * class.c:
30177         * domain.c:
30178         * image.c: Change corlib name to mscorlib.
30179         
30180 2003-11-12  Zoltan Varga  <vargaz@freemail.hu>
30181
30182         * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30183
30184 2003-11-11  Miguel de Icaza  <miguel@ximian.com>
30185
30186         * appdomain.h: Added loader_optimization here to sync with the C#
30187         code, and add disallow_binding_redirects field.
30188
30189 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30190
30191         * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30192
30193         * reflection.c (mono_image_build_metadata): Fix crash on modules
30194         with no types.
30195
30196         * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30197
30198         * icall.c (ves_icall_get_method_info): Return callingConvention as
30199         well.
30200
30201         * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add 
30202         namespaces from the EXPORTEDTYPE table as well.
30203
30204         * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30205         from all modules inside the assembly.
30206         
30207 2003-11-11  Martin Baulig  <martin@ximian.com>
30208
30209         * reflection.c (mono_reflection_bind_generic_parameters): Make
30210         this work for interfaces.
30211
30212 2003-11-11  Martin Baulig  <martin@ximian.com>
30213
30214         * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30215
30216 2003-11-11  Martin Baulig  <martin@ximian.com>
30217
30218         * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30219         "MonoInflatedMethod" and "MonoInflatedCtor".
30220
30221 2003-11-11  Zoltan Varga  <vargaz@freemail.hu>
30222
30223         * reflection.c (resolution_scope_from_image): Use the assembly table
30224         from the manifest module, since other modules don't have it.
30225
30226         * debug-helpers.c (mono_type_full_name): New helper function.
30227
30228         * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30229
30230         * image.c (mono_image_load_file_for_image): New public function which
30231         is a replacement for the load_file_for_image in class.c.
30232
30233         * assembly.c (mono_assembly_load_module): A wrapper for the function
30234         above which does assembly association and reference loading too.
30235
30236         * class.c (mono_class_from_name): Call mono_assembly_load_module.
30237
30238 2003-11-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30239
30240         * appdomain.c: not all of the attributes for the full assembly name
30241         are required and the order doesn't matter. Fixes bug #50787.
30242
30243 2003-11-10  Dick Porter  <dick@ximian.com>
30244
30245         * locales.c: Use platform-endian UTF16
30246
30247 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30248
30249         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30250         
30251 2003-11-10  Martin Baulig  <martin@ximian.com>
30252
30253         * metadata.c
30254         (mono_metadata_load_generic_params): Make this actually work.
30255
30256         * reflection.c (mono_reflection_bind_generic_parameters): If our
30257         parent is a generic instance, pass all the `types' to it, no
30258         matter whether it has the same number of type parameters or not.
30259
30260 2003-11-10  Zoltan Varga  <vargaz@freemail.hu>
30261
30262         * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30263
30264         * assembly.c (mono_assembly_load_references): Move the image<->assembly
30265         assignment code to this function so it gets called recursively for all
30266         modules.
30267
30268         * image.c (load_modules): Remove the assembly assignment since it is
30269         now done by mono_assembly_load_references.
30270         
30271         * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): 
30272         Add 'module' argument.
30273         (mono_module_get_types): New helper function.
30274         (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30275
30276 2003-11-08  Martin Baulig  <martin@ximian.com>
30277
30278         * class.c (mono_class_inflate_generic_method): Interface method
30279         don't have a header.
30280
30281         * reflection.c (mono_image_get_methodspec_token): Take an
30282         additional `MonoGenericInst *' argument instead of reading it from
30283         the header; this is necessary to support interfaces.
30284         (mono_image_create_token): Pass the `MonoGenericInst *' from the
30285         MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30286         (inflated_method_get_object): Take an additional `MonoGenericInst *'
30287         argument.
30288
30289         * reflection.h (MonoReflectionInflatedMethod): Added
30290         `MonoGenericInst *ginst'.
30291
30292 2003-11-07  Zoltan Varga  <vargaz@freemail.hu>
30293
30294         * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30295
30296 2003-11-06  Zoltan Varga  <zovarga@ws-zovarga2>
30297
30298         * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30299
30300 2003-11-06  Zoltan Varga  <vargaz@freemail.hu>
30301
30302         * reflection.c 
30303         (reflection_methodbuilder_from_method_builder):
30304         (reflection_methodbuilder_from_ctor_builder): New helper functions to 
30305         initialize a ReflectionMethodBuilder structure.
30306         (mono_image_get_methodbuilder_token):
30307         (mono_image_get_ctorbuilder_token): New functions to emit memberref
30308         tokens which point to types in another module inside the same assembly.
30309
30310         * reflection.c: Use the new helper functions.
30311         
30312         * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30313
30314         * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image 
30315         instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30316
30317         * reflection.c (resolution_scope_from_image): Emit a moduleref if
30318         neccesary.
30319
30320         * reflection.c (mono_image_build_metadata): Emit metadata only for the
30321         current module. Emit the manifest only for the main module.
30322
30323         * reflection.c (mono_image_create_token): Add assertion when a 
30324         memberref needs to be created.
30325
30326         * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30327
30328         * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a 
30329         larger buffer for the custom attribute blob. Fixes #50637.
30330         
30331 2003-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30332
30333         * threadpool.c: notify listener on async processing handles after
30334         invoking the async callback. Thanks to Zoltan.
30335
30336 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30337
30338         * reflection.c (create_dynamic_mono_image): Call mono_image_init to 
30339         avoid code duplication.
30340
30341         * reflection.h (MonoDynamicImage): New type which is currently unused,
30342         but will be used through the ref.emit code in place of 
30343         MonoDynamicAssembly.
30344
30345         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30346         object layout.
30347
30348         * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30349         a MonoDynamicImage instead of just a MonoImage.
30350         
30351         * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30352         icalls to ModuleBuilder but keep their semantics, so they will work
30353         with moduleb->assemblyb. This will change later.
30354         
30355 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30356
30357         * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30358         object layout.
30359
30360         * reflection.c (mono_image_build_metadata): Avoid creation of a default
30361         main module, since it is now done by the managed code.
30362
30363 2003-11-03  Martin Baulig  <martin@ximian.com>
30364
30365         * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30366         `ginst->klass' here.
30367         (method_encode_methodspec): Don't use the `ginst->generic_method's
30368         klass if it's a generic instance, use `ginst->klass' in this case.
30369
30370 2003-11-03  Martin Baulig  <martin@ximian.com>
30371
30372         * reflection.c (mono_image_get_generic_method_param_info):
30373         Removed, use mono_image_get_generic_param_info() instead.
30374         (mono_image_get_type_info): Write the GenericParam table before
30375         the Method table.  This is neccessary because in the GenericParam
30376         table, type parameters of the class (ie. '!0' etc.) must come
30377         before the ones from its generic methods (ie. '!!0' etc).
30378
30379 2003-11-03  Zoltan Varga  <vargaz@freemail.hu>
30380
30381         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30382
30383 2003-11-02  Martin Baulig  <martin@ximian.com>
30384
30385         * reflection.c (create_generic_typespec): Take a
30386         `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30387         the generic parameters from it.
30388
30389 2003-11-02  Martin Baulig  <martin@ximian.com>
30390
30391         * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30392         instead of a `MonoClassField *' since we just need the type.
30393         (create_generic_typespec): New static function.  Creates a
30394         TypeSpec token for a generic type declaration.
30395         (mono_image_get_generic_field_token): New static function.
30396         (mono_image_create_token): If we're a FieldBuilder in a generic
30397         type declaration, call mono_image_get_generic_field_token() to get
30398         the token.
30399
30400 2003-11-02  Martin Baulig  <martin@ximian.com>
30401
30402         * reflection.h
30403         (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30404         `MonoReflectionGenericInst *declaring_type' and
30405         `MonoReflectionGenericInst *reflected_type' fields.
30406
30407         * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30408         `MonoReflectionGenericInst *declaring_type' and a
30409         `MonoReflectionGenericInst *reflected_type' argument instead of a
30410         single `MonoReflectionGenericInst *type' one.  Set
30411         `res->declaring_type' and `res->reflected_type' from them.
30412         (mono_reflection_inflate_field): Likewise.      
30413
30414 2003-11-02  Martin Baulig  <martin@ximian.com>
30415
30416         * class.c (mono_class_setup_vtable): Don't store generic methods
30417         in the vtable.  
30418
30419 2003-11-02  Martin Baulig  <martin@ximian.com>
30420
30421         * reflection.h (MonoReflectionGenericInst): Added
30422         `MonoReflectionType *declaring_type'.
30423
30424         * reflection.c (mono_reflection_bind_generic_parameters): Use
30425         `if (tb->parent)' instead of `klass->parent'.
30426
30427 2003-11-01  Zoltan Varga  <vargaz@freemail.hu>
30428
30429         * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30430         with an empty ASSEMBLY table.
30431
30432         * reflection.c (mono_image_build_metadata): Avoid using the same loop
30433         variable in the inner and outer loops.
30434
30435 2003-10-31  Zoltan Varga  <vargaz@freemail.hu>
30436
30437         * metadata.h (mono_metadata_make_token): Put parentheses around macro
30438         argument.
30439
30440         * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30441         
30442         * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain 
30443         icalls. Instead, do everything in managed code. This is needed since
30444         it is hard to restore the original domain etc. in unmanaged code in the
30445         presence of undeniable exceptions.
30446
30447         * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): 
30448         New icalls to push and pop appdomain refs.
30449
30450 2003-10-31  Martin Baulig  <martin@ximian.com>
30451
30452         * class.c (inflate_generic_type): Renamed to
30453         mono_class_inflate_generic_type() and made it public.
30454
30455         * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30456         New interncall.
30457
30458         * loader.c (mono_field_from_memberref): Also set the retklass for
30459         typespecs.
30460
30461         * fielder.c (mono_image_get_inflated_field_token): New static
30462         method; creates a metadata token for an inflated field.
30463         (mono_image_create_token, fixup_method): Added support for
30464         "MonoInflatedField".
30465         (fieldbuilder_to_mono_class_field): New static function.
30466         (mono_reflection_inflate_field): New public function.
30467
30468         * reflection.h
30469         (MonoReflectionGenericInst): Added `MonoArray *fields'.
30470         (MonoReflectionInflatedField): New typedef.     
30471
30472 2003-10-30  Bernie Solomon  <bernard@ugsolutions.com>
30473
30474         * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30475         for Solaris and other platforms without s6_addr16
30476
30477 2003-10-30  Martin Baulig  <martin@ximian.com>
30478
30479         * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30480         argument instead of two.
30481         (mono_class_inflate_generic_signature): Likewise.
30482         (inflate_generic_header): Likewise.
30483         (mono_class_inflate_generic_method): Likewise.  In addition, if
30484         `ginst->klass' is set, it becomes the new `method->klass'.
30485
30486         * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30487         field.
30488
30489         * reflection.c (encode_generic_method_sig): Write a 0xa as the
30490         first byte. [FIXME]
30491         (method_encode_methodspec): If we have generic parameters, create
30492         a MethodSpec instead of a MethodRef.
30493         (fixup_method): Added support for "MonoInflatedMethod" and
30494         "MonoInflatedCtor".
30495         (mono_image_create_token): Added support for "MonoInflatedMethod"
30496         and "MonoInflatedCtor".
30497         (inflated_method_get_object): New static function; returns a
30498         managed "System.Reflection.MonoInflatedMethod" object.
30499         (mono_reflection_bind_generic_method_parameters): Return a
30500         `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30501         (mono_reflection_inflate_method_or_ctor): Likewise.
30502         (mono_image_get_generic_method_param_info): Initialize unused
30503         fields to zero.
30504         (mono_image_get_generic_param_info): Likewise.
30505
30506         * reflection.h (MonoReflectionInflatedMethod): New public
30507         typedef.  Corresponds to the managed "S.R.MonoInflatedMethod" and
30508         "S.R.MonoInflatedCtor" classes.
30509
30510         * loader.c (method_from_memberref): If we're a TypeSpec and it
30511         resolves to a generic instance, inflate the method.
30512
30513 2003-10-28  Dick Porter  <dick@ximian.com>
30514
30515         * object.c (mono_runtime_run_main): Convert command-line arguments
30516         into utf8, falling back to the user's locale encoding to do so.
30517
30518 2003-10-27  Zoltan Varga  <vargaz@freemail.hu>
30519
30520         * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30521         at this time.
30522
30523         * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30524
30525         * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30526         up icalls at method definition time. Partially fixes #33569.
30527
30528 2003-10-25  Zoltan Varga  <vargaz@freemail.hu>
30529
30530         * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30531         marshalling of arrays. Fixes #50116.
30532
30533         * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30534
30535         * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30536         points to a vtable in the dying appdomain.
30537
30538         * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30539         listeners into unmanaged code inside the lock.
30540
30541         * object.c (mono_class_vtable): Turn off typed allocation in non-root
30542         domains and add some comments.
30543
30544 2003-10-25  Martin Baulig  <martin@ximian.com>
30545
30546         * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30547
30548         * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30549
30550         * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30551         `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30552         currently parsing.  Create the generic class and store it in
30553         `generic_inst->klass' before parsing the type arguments.  This is
30554         required to support "recursive" definitions; see mcs/tests/gen-23.cs
30555         for an example.
30556         (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30557         to support recursive typespec entries.
30558
30559         * class.c (mono_class_setup_parent): If our parent is a generic
30560         instance, we may get called before it has its name set.
30561         (mono_class_from_generic): Splitted into
30562         mono_class_create_from_generic() and mono_class_initialize_generic().
30563
30564 2003-10-25  Martin Baulig  <martin@ximian.com>
30565
30566         * icall.c (ves_icall_Type_BindGenericParameters): Return a
30567         `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30568         ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30569         ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30570
30571         * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30572         (create_typespec): Likewise.
30573         (mono_reflection_bind_generic_parameters): Return a
30574         `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30575         (mono_reflection_inflate_method_or_ctor): New public function.
30576
30577         * reflection.h (MonoReflectionGenericInst): New typedef.        
30578
30579 2003-10-24  Zoltan Varga  <vargaz@freemail.hu>
30580
30581         * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30582         inside the domain lock. Fixes #49993.
30583         
30584         * object.c (mono_class_vtable): When typed allocation is used, 
30585         allocate vtables in the GC heap instead of in the mempool, since the
30586         vtables contain GC descriptors which are used by the collector even
30587         after the domain owning the mempool is unloaded.
30588
30589         * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30590
30591         * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30592         reflect what it does. Also invalidate mempools instead of freeing
30593         them if a define is set.
30594
30595         * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30596         of the appdomain.
30597         
30598         * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30599         hold the finalizable objects in this domain.
30600
30601         * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30602         appdomain.
30603
30604         * appdomain.c (mono_domain_set): New function to set the current
30605         appdomain, but only if it is not being unloaded.
30606
30607         * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30608         appdomain which is being unloaded.
30609         
30610         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30611         unloading of the root appdomain.
30612
30613         * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30614         icall to execute a method in another appdomain. Intended as a 
30615         replacement for InternalSetDomain, which can confuse the code 
30616         generation in the JIT.
30617
30618         * appdomain.c (mono_domain_is_unloading): New function to determine
30619         whenever an appdomain is unloading.
30620
30621         * appdomain.c (mono_domain_unload): New function to correctly unload
30622         an appdomain.
30623
30624         * assembly.c (mono_assembly_load_references): Check that an assembly
30625         does not references itself.
30626
30627         * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30628         domain manually, it asks the finalizer thread to do it, then waits for
30629         the result. Also added a timeout.
30630
30631         * icall.c: Register the new icalls.
30632
30633         * threads.h threads.c: Export the mono_gc_stop_world and 
30634         mono_gc_start_world functions.
30635         
30636         * mempool.h mempool.c (mono_mempool_invalidate): New debugging 
30637         function to fill out the mempool with 0x2a.
30638
30639 2003-10-22  Zoltan Varga  <vargaz@freemail.hu>
30640
30641         * reflection.h (MonoReflectionMethodAux): New structure to store
30642         information which is rarely used, thus is not in the MonoMethod
30643         structure.
30644
30645         * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30646         store the aux info.
30647
30648         * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30649         and marshalling info into the aux structure.
30650
30651         * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30652         from the aux structure.
30653
30654         * loader.c (mono_method_get_param_names): Retrieve the param names from
30655         the aux structure.
30656         
30657 2003-10-21  Zoltan Varga  <vargaz@freemail.hu>
30658
30659         * exception.h exception.c: Add AppDomainUnloadedException && fix 
30660         warning.
30661
30662 2003-10-21  Dick Porter  <dick@ximian.com>
30663
30664         * socket-io.c
30665         (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30666         patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30667
30668 2003-10-21  Martin Baulig  <martin@ximian.com>
30669
30670         * reflection.c (mono_reflection_bind_generic_parameters):
30671         `klass->parent' is NULL for interfaces.
30672
30673 2003-10-21  Martin Baulig  <martin@ximian.com>
30674
30675         * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30676
30677 2003-10-20  Zoltan Varga  <vargaz@freemail.hu>
30678
30679         * exception.c (mono_exception_from_name_msg): New helper function for
30680         creating exceptions and initializing their message field.
30681
30682         * exception.c: Simplify functions using the new helper.
30683
30684         * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30685         New function.
30686
30687         * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30688         mono_raise_exception, since otherwise gcc doesn't generate the function
30689         epilog for raise_exception, confusing the stack unwinding in the JIT.
30690         Fixes #45043.
30691
30692         * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30693         PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30694         Fixes #49499.
30695
30696 2003-10-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30697
30698         * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30699         utf8.
30700
30701 2003-10-18  Lluis Sanchez Gual  <lluis@ximian.com>
30702
30703         * icall.c: Removed GetUninitializedObject method because
30704           AllocateUninitializedClassInstance does the same.
30705
30706 2003-10-18  Martin Baulig  <martin@ximian.com>
30707
30708         * class.c (inflate_generic_signature): Renamed to
30709         mono_class_inflate_generic_signature() and made it public.
30710         (my_mono_class_from_generic_parameter): New static function; if we
30711         don't already have the generic parameter's MonoClass, create a
30712         very simple one which is just used internally in the runtime and
30713         not passed back to managed code.
30714
30715         * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30716
30717         * metadata.h (MonoMethodSignature): Moved the
30718         `MonoGenericParam *gen_params' to the MonoMethodHeader.
30719         (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30720
30721         * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30722         ves_icall_MonoMethod_GetGenericArguments(); this is now an
30723         interncall on the MonoMethod class, not on MethodInfo.
30724         (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30725         calling mono_reflection_bind_generic_method_parameters() directly.
30726
30727         * loader.c (mono_method_get_signature): If this is a MethodSpec;
30728         return the already computed `method->signature'.
30729         (method_from_methodspec): New static function to load a method
30730         from a MethodSpec entry.
30731         (mono_get_method_from_token): Call the new method_from_methodspec()
30732         for MethodSpec tokens.  
30733         (mono_get_method_from_token): If we're a generic method, load the
30734         type parameters.
30735
30736         * reflection.c (mono_image_get_memberref_token): Allow
30737         MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30738         table.
30739         (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30740         (mono_image_create_token): First check whether it's a generic
30741         method (so we'd need to create a MethodSpec), then do the other
30742         two alternatives.
30743         (mono_reflection_bind_generic_method_parameters): Return a
30744         `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30745         called directly from the interncall.
30746
30747 2003-10-17  Zoltan Varga  <vargaz@freemail.hu>
30748
30749         * reflection.c (load_public_key): Move loading of the public key
30750         into managed code.
30751
30752         * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30753
30754         * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30755         fields.
30756
30757         * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30758         culture, hash_alg and public_key. Fixes #49555.
30759
30760 2003-10-17  Martin Baulig  <martin@ximian.com>
30761
30762         * class.h (MonoGenericInst): Moved this declaration here and added
30763         `MonoMethod *generic_method'.
30764
30765         * icall.c
30766         (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30767         (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30768
30769         * metadata.c (mono_metadata_type_equal): Two types of
30770         MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30771         index; ie. don't compare the address of the `MonoGenericParam'
30772         structure.
30773         (mono_metadata_load_generic_params): Removed the `MonoMethod
30774         *method' argument.
30775
30776         * metadata.h (MonoGenericInst): Moved declaration to class.h.
30777         (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30778
30779         * reflection.c (method_encode_signature): Encode the number of
30780         generic parameters.
30781         (encode_generic_method_sig): New static function.
30782         (method_encode_methodspec): New static function; creates an entry
30783         in the MethodSpec table for a generic method.
30784         (mono_image_get_methodspec_token): New static function.
30785         (mono_image_create_token): Call mono_image_get_methodspec_token()
30786         for generic methods.
30787         (mono_reflection_bind_generic_method_parameters): New public
30788         function.  Instantiates a generic method.
30789
30790 2003-10-16  Martin Baulig  <martin@ximian.com>
30791
30792         * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30793         *gen_params' here from MonoMethodHeader.
30794
30795         * metadata.c (mono_metadata_parse_method_signature): If we have
30796         generic parameters, initialize `method->gen_params' and then set
30797         the correct `type->data.generic_param' in all the parameters.
30798
30799 2003-10-16  Zoltan Varga  <vargaz@freemail.hu>
30800
30801         * threads.c (mono_threads_get_default_stacksize): New function to 
30802         return the default stacksize.
30803
30804         * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30805         termination of the finalizer thread, since the previous method had
30806         race conditions. Fixes #49628.
30807
30808         * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30809         as for the other managed threads.
30810
30811 2003-10-16  Martin Baulig  <martin@ximian.com>
30812
30813         * class.c (inflate_generic_signature): Copy `generic_param_count'
30814         and `gen_params'.
30815
30816         * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30817         New interncall.
30818
30819         * metadata.c (mono_metadata_parse_method_signature): Actually set
30820         the `method->generic_param_count' here.
30821         (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30822
30823 2003-10-15  Zoltan Varga  <vargaz@freemail.hu>
30824
30825         * object.h: Add a new field to TypedRef to simplify the implementation
30826         of the REFANY opcodes in the JIT.
30827
30828         * icall.c: Make use of the new field.
30829
30830         * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30831         dynamically.
30832
30833 2003-10-15  Martin Baulig  <martin@ximian.com>
30834
30835         * class.c (mono_class_from_gen_param): Renamed to
30836         mono_class_from_generic_parameter() and moved most of the
30837         functionality from mono_reflection_define_generic_parameter()
30838         here; ie. we create a "real" class here.
30839         (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30840         MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30841         previously been called.
30842
30843         * class.h (MonoGenericParam): Moved the declaration of this struct
30844         here from metadata.h and added `MonoMethod *method'.
30845
30846         * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30847         interncall.
30848
30849         * loader.c (mono_get_method_from_token): If we have any generic
30850         parameters, call mono_metadata_load_generic_params() to read them
30851         from the MONO_TABLE_GENERICPAR.
30852
30853         * metadata.c (mono_metadata_load_generic_params): Added
30854         `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30855
30856         * metadata.h (MonoMethodSignature): Replaced
30857         `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30858         (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30859
30860         * reflection.c (mono_reflection_define_generic_parameter): Moved
30861         most of the functionality into the new
30862         mono_class_from_generic_parameter(); set the `method' field if
30863         we're a method parameter.       
30864
30865 2003-10-13 Bernie Solomon  <bernard@ugsolutions.com>
30866
30867         * marshal.c (emit_struct_conv): if native size is 0
30868         emit no code.
30869
30870 2003-10-14  Martin Baulig  <martin@ximian.com>
30871
30872         * icall.c: The generics API has changed in the spec since it was
30873         added to System.Type; these modifications make it match the spec
30874         again.
30875         (ves_icall_Type_GetGenericParameters): Renamed to
30876         `ves_icall_Type_GetGenericArguments'.
30877         (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30878         (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30879         `ves_icall_MonoType_get_HasGenericArguments'.
30880         (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30881         `ves_icall_MonoType_get_IsGenericParameter'.
30882         (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30883         this is no interncall anymore.
30884         (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30885         `ves_icall_TypeBuilder_get_IsGenericParameter'.
30886
30887 2003-10-14  Martin Baulig  <martin@ximian.com>
30888
30889         * reflection.c (mono_reflection_bind_generic_parameters): Also
30890         inflate generic methods if we're reading the class from IL.
30891
30892 2003-10-13  Martin Baulig  <martin@ximian.com>
30893
30894         * reflection.c (mono_reflection_define_generic_parameter): This
30895         method isn't called directly from the icall anymore; take a
30896         `MonoReflectionAssemblyBuilder *' so we can use this for type and
30897         method generic parameters.
30898         (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30899         (method_builder_encode_signature): Encode generic parameters.
30900         (mono_image_get_method_info): Write generic params to the
30901         MONO_TABLE_GENERICPARAM table.
30902
30903         * reflection.h (MonoReflectionMethodBuilder): Added
30904         `MonoArray *generic_params'.
30905
30906         * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30907
30908         * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30909         wrapper for mono_reflection_define_generic_parameter().
30910         (ves_icall_MethodBuilder_define_generic_parameter): Likewise.   
30911
30912 2003-10-13  Zoltan Varga  <vargaz@freemail.hu>
30913
30914         * marshal.h: Add missing function to fix build.
30915
30916         * marshal.c (mono_marshal_get_native_wrapper): Add support for 
30917         the SetLastError pinvoke attribute.
30918
30919         * marshal.c (mono_marshal_set_last_error): New helper function called
30920         by the generated code.
30921         
30922         * marshal.c (mono_mb_emit_branch): New helper function.
30923
30924         * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30925
30926         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30927         classes as parameters and return values of delegates. Fixes #29256. 
30928
30929 2003-10-12  Bernie Solomon  <bernard@ugsolutions.com>
30930
30931         * locales.c: use gint32 in non HAVE_ICU case
30932
30933 2003-10-11  Martin Baulig  <martin@ximian.com>
30934
30935         * mono-debug.c (mono_debug_add_method): Added a workaround for
30936         bug #48591.
30937
30938 2003-10-10  Zoltan Varga  <vargaz@freemail.hu>
30939
30940         * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30941         delegates passed to native code must use the STDCALL calling 
30942         convention. Fixes #35987.
30943
30944 2003-10-10  Martin Baulig  <martin@ximian.com>
30945
30946         * class.c (inflate_generic_type): If we're inflating for a generic
30947         type instance (and not for a generic method), return
30948         MONO_TYPE_MVAR unchanged.
30949
30950 2003-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30951
30952         * string-icalls.c: Join ignores null strings in the source array.
30953         * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30954         * threads.c: GetAvailableTheads is slightly more accurate.
30955
30956 2003-10-09  Bernie Solomon  <bernard@ugsolutions.com>
30957
30958         * threads.h threads.c : add mono_threads_set_default_stacksize
30959         and pass default to CreateThread calls.
30960
30961 2003-10-09  Dick Porter  <dick@ximian.com>
30962
30963         * icall.c:
30964         * locales.h:
30965         * locales.c: Internal calls for constructing CultureInfo and
30966         related objects from libicu (if its available.)
30967
30968 2003-10-09  Zoltan Varga  <vargaz@freemail.hu>
30969
30970         * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
30971
30972 2003-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
30973
30974         * threadpool.c: added an argument to async_invoke_thread that is the
30975         item to process, pass the MonoAsyncResult to the thread start function
30976         when creating a new thread. This way we don't need to acquire any lock
30977         when we're creating a new thread. Readded a semaphore for faster
30978         response times (instead of that Sleep i added).
30979
30980 2003-10-08  Bernie Solomon  <bernard@ugsolutions.com>
30981
30982         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
30983         get daylight change dates better on Windows, fix handling
30984         of platforms without tm_gmtoff.
30985
30986 2003-10-06  Martin Baulig  <martin@ximian.com>
30987
30988         * class.c (inflate_generic_method): Renamed to
30989         mono_class_inflate_generic_method() and made public.
30990         (mono_class_init): Don't inflate the generic methods here.
30991         (mono_class_from_generic): Added `gboolean inflate_methods'
30992         argument.  Inflate the methods here.
30993
30994         * loader.c (mono_method_get_param_names): Ignore instances of
30995         generic types for the moment.
30996
30997         * reflection.c (fixup_method): Added support for inflated methods.
30998         (mono_image_create_token): Use mono_image_get_methodref_token()
30999         for inflated methods.
31000         (mono_custom_attrs_from_param): Ignore instances of generic types
31001         for the moment.
31002         (mono_reflection_bind_generic_parameters): New public function.
31003         Moved all the functionality from
31004         ves_icall_Type_BindGenericParameters() here and added support for
31005         dynamic types.
31006         (mono_reflection_define_generic_parameter): Initialize
31007         `klass->methods' here.
31008
31009         * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31010         functionality into mono_reflection_define_generic_parameter().
31011         (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31012         TypeBuilder, return that TypeBuilder.
31013
31014 2003-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31015
31016         * appdomain.c: removed mono_delegate_semaphore.
31017
31018         * threadpool.c:
31019         (mono_thread_pool_add): moved hash table creation inside and the thread 
31020         creation outside of the critical region.
31021         (mono_thread_pool_finish): removed obsolete code.
31022         (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31023         continue or exit the thread depending on the queue.
31024
31025 2003-10-07  Bernie Solomon  <bernard@ugsolutions.com>
31026
31027         * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31028         marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31029         handle more bool marshalling options
31030
31031 2003-10-07  Zoltan Varga  <vargaz@freemail.hu>
31032
31033         * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31034         arrays of structs. Also add a more descriptive error message when
31035         a structure member is marshalled as LPArray.
31036
31037 2003-10-06  Zoltan Varga  <vargaz@freemail.hu>
31038
31039         * marshal.c (mono_marshal_get_native_wrapper): Add support for
31040         marshalling arrays of complex types. Fixes #29098. Also remove an
31041         usused and incomplete function.
31042
31043 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31044
31045         * gc.c: report heap_size - free_bytes as total memory allocated
31046         (bug#49362).
31047
31048 2003-10-05  Zoltan Varga  <vargaz@freemail.hu>
31049
31050         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally 
31051         fix timezone handling problems on Windows.
31052         
31053         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31054         asserts when the year is outside the range handled by ms the functions.
31055
31056         * class.c (setup_interface_offsets): If the class is an interface,
31057         fill out its interface_offsets slot.
31058
31059 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31060
31061         * threadpool.c: mark threadpool threads as background.
31062
31063 2003-10-03  Bernie Solomon  <bernard@ugsolutions.com>
31064
31065         * decimal.c - define DECINLINE to nothing if not using GCC
31066
31067 2003-10-03  Zoltan Varga  <vargaz@freemail.hu>
31068
31069         * assembly.c: More refcount fixes.
31070
31071 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31072
31073         * string-icalls.c: if we're not trimming, return the same string.
31074         When not splitting, don't create a new string.
31075
31076 2003-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31077
31078         * image.c:
31079         (mono_image_open): increment the ref_count inside the critical section.
31080
31081 2003-10-02  Zoltan Varga  <vargaz@freemail.hu>
31082
31083         * image.c (mono_image_open): Fix reference counting bug.
31084
31085 2003-09-30  Bernie Solomon  <bernard@ugsolutions.com>
31086
31087         * marshal.c (mono_marshal_type_size) struct alignment changed for 
31088         64bit machines.  (emit_ptr_to_str_conv) Fix bool conversions for 
31089         64bits. Avoid leak in mono_marshal_get_native_wrapper when
31090         mono_lookup_pinvoke_call throws.        
31091
31092 2003-09-30  Zoltan Varga  <vargaz@freemail.hu>
31093
31094         * reflection.c (mono_reflection_parse_type): Fix #49114.
31095
31096         * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31097         temporary workaround for cygwin header problem.
31098
31099         * object.c (mono_object_isinst): Synchronize this with the code
31100         generated by the JIT for casts.
31101
31102 2003-09-29  Zoltan Varga  <vargaz@freemail.hu>
31103
31104         * reflection.c (encode_type): Fix #38332.
31105
31106 2003-09-26  Zoltan Varga  <vargaz@freemail.hu>
31107
31108         * marshal.c (mono_marshal_method_from_wrapper): New function to return
31109         the original method from the wrapper method.
31110
31111 2003-09-25  Martin Baulig  <martin@ximian.com>
31112
31113         * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31114         interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31115         (ves_icall_Type_get_IsGenericInstance): New interncall.
31116
31117 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31118
31119         * object.c: fix cast warning in big endian code.
31120
31121 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31122
31123         * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31124         
31125 2003-09-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31126
31127         * assembly.c: don't call check_env from mono_assembly_load. It's
31128         already done once in mono_assemblies_init and may cause headaches when
31129         multiple threads are loading assemblies.
31130
31131 2003-09-19  Martin Baulig  <martin@ximian.com>
31132
31133         * reflection.c (mono_reflection_define_generic_parameter): Don't
31134         allocate `klass->methods', set `klass->flags' to
31135         TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31136
31137 2003-09-18  Martin Baulig  <martin@ximian.com>
31138
31139         * class.c (mono_class_init): Don't create `class->methods' if it's
31140         already initialized.
31141
31142         * metadata.c (mono_metadata_load_generic_params): Make this
31143         actually work.
31144
31145         * reflection.c (mono_reflection_define_generic_parameter): Set
31146         parent class and interfaces from the constraints.
31147
31148         * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31149         to keep this struct in sync with the declaration in TypeBuilder.cs.
31150
31151 2003-09-17  Martin Baulig  <martin@ximian.com>
31152
31153         * metadata.h (MonoType): Replaced the data's `int type_param'
31154         field with `MonoGenericParam *generic_param'.
31155         (MonoGenericParam): Added `MonoClass *klass'.
31156
31157         * class.c (mono_class_from_gen_param): Removed the
31158         `MonoImage *image' and `int type_num' arguments.
31159
31160         * metadata.c (mono_metadata_parse_generic_param): New static
31161         method; creates a MonoGenericParam which just contains the index.
31162         (do_mono_metadata_parse_type): Call
31163         mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31164         MONO_TYPE_MVAR.
31165
31166         * reflection.c (mono_image_typedef_or_ref): Generic type
31167         parameters may be in the same assembly, but never use a typedef
31168         for them.
31169         (mono_reflection_define_generic_parameter): We're now creating a
31170         "real" class for the type parameter; it's now safe to call
31171         mono_class_from_mono_type() on the class'es type, it'll do the
31172         right thing.
31173
31174 2003-09-16  Martin Baulig  <martin@ximian.com>
31175
31176         * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31177         `symfile->range_entry_size' and `symfile->class_entry_size' here;
31178         the `symfile' data structure must be fully initialized before it
31179         gets added to the table.
31180
31181 2003-09-15  Zoltan Varga  <vargaz@freemail.hu>
31182
31183         * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31184
31185         * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31186         class init trampolines.
31187
31188 2003-09-11  Zoltan Varga  <vargaz@freemail.hu>
31189
31190         * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31191         to the built-in profiler to turn off time and allocation profiling
31192         respectively.
31193
31194 2003-09-10  Zoltan Varga  <vargaz@freemail.hu>
31195
31196         * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31197         g_direct_equal.
31198
31199         * debug-helpers.c (mono_method_full_name): Print the wrapper type
31200         in human readable form.
31201
31202 2003-09-08  Zoltan Varga  <vargaz@freemail.hu>
31203
31204         * reflection.c icall.c: Fixed warnings.
31205
31206         * image.c (load_class_names): Use a temporary hash table to hold the
31207         namespaces in order to avoid doing many string comparisons.
31208
31209         * image.h: Fix typo.
31210
31211         * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31212         Pass NULL instead of g_direct_equal to the GHashTable constructor 
31213         since the NULL case is short-circuited inside g_hash_table_lookup, 
31214         leading to better performance.  
31215
31216         * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31217         obtain the first custom attribute for a given index. Depends on the
31218         CustomAttribute table being sorted by the parent field.
31219
31220         * reflection.c (mono_custom_attrs_from_index): Use the new function 
31221         for better performance.
31222
31223 2003-09-07  Martin Baulig  <martin@ximian.com>
31224
31225         * class.c (mono_class_init): If we're a generic instance, inflate
31226         all our methods instead of loading them from the image.
31227         (mono_class_from_generic): Set `class->methods = gklass->methods'.
31228
31229 2003-09-07  Martin Baulig  <martin@ximian.com>
31230
31231         * mono-debug-debugger.c: Added support for constructors.
31232
31233 2003-09-06  Martin Baulig  <martin@ximian.com>
31234
31235         * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31236         New interncall.
31237
31238         * reflection.c (mono_reflection_setup_generic_class): Call
31239         ensure_runtime_vtable() to create the vtable.
31240
31241 2003-09-05  Martin Baulig  <martin@ximian.com>
31242
31243         * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31244         MONO_TYPE_MVAR.
31245
31246 2003-09-04  Martin Baulig  <martin@ximian.com>
31247
31248         * reflection.c (mono_reflection_define_generic_parameter): Generic
31249         parameters start with zero.
31250
31251 2003-09-04  Martin Baulig  <martin@ximian.com>
31252
31253         * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31254
31255         * reflection.h (MonoReflectionGenericParam): New typedef.
31256         (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31257         the generic parameters from the managed TypeBuilder.
31258
31259         * reflection.c (mono_reflection_define_generic_parameter): New function.
31260         (mono_reflection_create_runtime_class): Encode generic parameters.
31261         (mono_reflection_setup_generic_class): New function; this is
31262         called after adding adding all generic params to the TypeBuilder.
31263         (encode_type): Added MONO_TYPE_VAR.
31264
31265 2003-09-04  Zoltan Varga  <vargaz@freemail.hu>
31266
31267         * class.h class.c (mono_class_needs_cctor_run): Moved this method
31268         here from the JIT.
31269
31270         * assembly.h assembly.c: Moved the AOT loading code into an assembly
31271         load hook.
31272
31273 2003-09-03  Zoltan Varga  <vargaz@freemail.hu>
31274
31275         * reflection.h reflection.c class.h class.c: Delete duplicate 
31276         definition of mono_type_get_name () from reflection.c and export the
31277         one in class.c.
31278
31279         * class.c: Class loading fixes from Bernie Solomon 
31280         (bernard@ugsolutions.com).
31281
31282         * reflection.c: Endianness fixes from Bernie Solomon 
31283         (bernard@ugsolutions.com).
31284         
31285 2003-09-01  Zoltan Varga  <vargaz@freemail.hu>
31286
31287         * assembly.h assembly.c: Define a file format version for AOT
31288         libraries.
31289         
31290         * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31291
31292         * appdomain.h (MonoJitInfo): New field to determine whenever the
31293         code is domain neutral.
31294         
31295 2003-08-31  Miguel de Icaza  <miguel@ximian.com>
31296
31297         * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31298
31299 2003-08-30  Zoltan Varga  <vargaz@freemail.hu>
31300
31301         * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir): 
31302         (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31303         Avoid caching the result since strings must be domain specific. Fixes
31304         #48050.
31305
31306 2003-08-29  Zoltan Varga  <vargaz@freemail.hu>
31307
31308         * marshal.c (mono_marshal_init): Make this callable multiple times
31309         since it is hard to find a correct place to call it.
31310
31311         * object.c (mono_runtime_class_init): Execute static constructors in
31312         the correct appdomain.
31313
31314         * image.c (build_guid_table): Handle the case when multiple images have
31315         the same GUID.
31316
31317 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31318
31319         * icall.c: added a couple of icalls for System.Web.
31320
31321 2003-08-28  Martin Baulig  <martin@ximian.com>
31322
31323         * icall.c (ves_icall_Type_BindGenericParameters): Use
31324         `klass->generic_inst' instead of `&klass->byval_arg' in the
31325         mono_type_get_object() call.  The returned type must be
31326         MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31327
31328 2003-08-27  Zoltan Varga  <vargaz@freemail.hu>
31329
31330         * NOTES: New file.
31331
31332         * object.c (mono_class_proxy_vtable): Make it thread safe.
31333
31334         * pedump.c: Fix warning.
31335
31336         * object.c appdomain.h: Get rid of metadata_section. 
31337         It is no longer needed and it was causing deadlocks with domain->lock.
31338
31339         * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31340
31341 2003-08-26  Martin Baulig  <martin@ximian.com>
31342
31343         * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31344
31345 2003-08-26  Martin Baulig  <martin@ximian.com>
31346
31347         * pedump.c (main): Call mono_metadata_init(),
31348         mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31349         and mono_loader_init().
31350
31351 2003-08-26  Zoltan Varga  <vargaz@freemail.hu>
31352
31353         * loader.h: Add missing include to fix build.
31354
31355         * image.h: mono_image_load_references is no more.
31356
31357         * assembly.c: Reworked assembly loading to make it really thread safe.
31358         After these changes, the assembly returned by mono_assembly_open is
31359         fully initialized, i.e. all its references assemblies are loaded.
31360
31361         * assembly.c (mono_image_load_references): Renamed to 
31362         mono_assembly_load_references, and made private, since clients no
31363         longer need to call it.
31364
31365         * class.c: Removed calls to mono_assembly_load_references, since it was
31366         a source of deadlocks.
31367
31368         * loader.h loader.c class.h class.c: Protect data structures using a 
31369         new lock, the loader lock.
31370
31371         * class.c (mono_class_setup_vtable): Create temporary hash tables and
31372         GPtrArrays only when needed.
31373
31374         * class.c (mono_class_layout_fields): Ignore the dummy field inserted 
31375         into empty structures by mcs. Fixes pinvoke7.cs.
31376         
31377         * domain.c (mono_init): Call a new initialization function.
31378
31379         * appdomain.c (mono_runtime_init): Call the new initializer function
31380         of the marshal module.
31381
31382         * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31383         inserted into empty structures by mcs. Fixes pinvoke7.cs.
31384
31385         * marshal.h marshal.c: Added locks around the wrapper caches to make
31386         this module thread safe.
31387
31388         * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31389         this argument. Fixes pinvoke1.exe.
31390
31391 2003-08-25  Lluis Sanchez <lluis@ximian.com>
31392
31393         * object.h: Added call_type field to MonoMethodMessage and the corresponding
31394         enumeration of values. Removed fields to store remote call output values in
31395         MonoAsyncResult. Not needed any more.
31396         * object.c: Initialize call_type and async_result fields in mono_message_init.
31397         * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31398         dispatching the message.
31399         mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31400         async call to finish. To do it use a message with EndInvoke call type.
31401
31402 2003-08-25  Zoltan Varga  <vargaz@freemail.hu>
31403
31404         * loader.h loader.c (mono_method_hash_marhal_info): New function which
31405         determines whenever a method has marshalling info.
31406
31407 2003-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31408
31409         * assembly.c: fix the build on windows.
31410
31411 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31412
31413         * object.cs: Fixed bug #47785.
31414
31415 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31416
31417         * string-icalls.c (StringReplace): If their are no occurances of
31418         the old string found return a reference to the supplied
31419         string. This saves some memory and matches MS behavoir.
31420         
31421 2003-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31422
31423         * socket-io.c: fixed compilation for systems that define AF_INET6
31424         and don't define SOL_IP/SOL_IPV6.
31425
31426 2003-08-21  Zoltan Varga  <vargaz@freemail.hu>
31427
31428         * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31429         the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31430
31431         * rawbuffer.c rawbuffer.h: Make this module thread safe.
31432
31433         * domain.c: Make this module thread safe.
31434
31435         * domain.c (mono_init): Call new initialization function.
31436
31437         * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31438         reference types too. Fixes #38812.
31439
31440         * image.c (mono_image_init): Fixed warnings.
31441
31442         * class.c (mono_class_from_typeref): Handle assembly load failure
31443         correctly.
31444
31445         * appdomain.c (add_assemblies_to_domain): Handle the case when
31446         the references of an assembly are not yet loaded.
31447
31448         * metadata.c image.c assembly.c: Moved initialization of global
31449         variables to a separate function called at startup since lazy 
31450         initialization of these variables is not thread safe.
31451         
31452         * image.c assembly.c: Made this module thread safe by adding locks in 
31453         the appropriate places.
31454
31455         * domain.c (mono_init): Call the new initialization functions of the
31456         three modules.
31457
31458 2003-08-20  Lluis Sanchez Gual  <lluis@ximian.com>
31459
31460         * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31461           make a direct call. It is proxy's work to make the call asynchronous.
31462           mono_delegate_end_invoke(): If the targe is a proxy, just collect
31463           the return values.
31464         * object.cs: mono_method_call_message_new(): read AsyncResult and
31465           state object from parameters list, if this info is requested.
31466         * object.h: Added fields to store remote call output values in
31467           MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31468
31469 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31470
31471         * object.h: add needed fields to MonoThread.
31472         * threads.c, threads.h: allow registering a function to cleanup data
31473         allocated per thread by the JIT.
31474
31475 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31476
31477         * loader.h: portability fix by Bernie Solomon
31478         * <bernard@ugsolutions.com>.
31479
31480 2003-08-16  Zoltan Varga  <vargaz@freemail.hu>
31481
31482         * reflection.h reflection.c (mono_param_get_objects): Changed this to 
31483         return a MonoArray. This simplifies the code and also ensures that
31484         the cache allways contains an object reference as a value.
31485
31486         * icall.c (ves_icall_get_parameter_info): Simplified using the new
31487         function.
31488
31489 2003-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31490
31491         * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31492         fixes a problem with byte ordering when getting the address family for
31493         a socket.
31494
31495 2003-08-15  Zoltan Varga  <vargaz@freemail.hu>
31496
31497         * .cvsignore: Added monosn.
31498
31499         * reflection.h reflection.c loader.c: Added support for parameter
31500         marshalling to dynamically created types. Fixes #47295.
31501
31502 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31503
31504         * rand.c: remove useless warnings.
31505
31506 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31507
31508         * class.c: implemented ldtoken for methods and fieldrefs.
31509
31510 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31511
31512         * threadpool.c: when mono_async_invoke was called, no one took care of
31513         monitoring the queue. So if the method invoked took some time and we
31514         got new async invoke requests after 500 ms (the thread created waited
31515         that long in WaitForSingleObject), the new async invoke was not called
31516         until the previous one finished.
31517
31518         This is fixed now. Thanks to Totte for helping with it.
31519
31520 2003-08-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31521
31522         * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31523
31524 2003-08-11  Martin Baulig  <martin@ximian.com>
31525
31526         * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31527
31528 2003-08-06  Martin Baulig  <martin@ximian.com>
31529
31530         * mono-debug-debugger.c: Added support for static fields,
31531         properties and methods.
31532
31533 2003-08-06  Martin Baulig  <martin@ximian.com>
31534
31535         * mono-debug-debugger.c: Don't store the MonoString's vtable to
31536         make this work for applications with multiple application domains.
31537
31538 2003-08-04  Martin Baulig  <martin@ximian.com>
31539
31540         * mono-debug-debugger.c: Completely reworked the type support; the
31541         most important thing is that we're now just using one single
31542         `MonoType' instance per type.
31543
31544 Sat Aug  2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31545
31546         * mono-endian.h, mono-endian.c, icall.c: Added icall
31547         ves_icall_System_Double_AssertEndianity to assert double word endianity
31548         on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31549
31550 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31551
31552         * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31553         support, icalls and fixes.
31554
31555 2003-07-31  Miguel de Icaza  <miguel@ximian.com>
31556
31557         * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31558         classes that are a punctuation character in .NET is not the same a
31559         g_unichar_ispunct.
31560
31561 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31562
31563         * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31564
31565 2003-07-29  Miguel de Icaza  <miguel@ximian.com>
31566
31567         * icall.c: Add new MemCopy internalcall.
31568         (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31569         Simplified code; It is not necessary to handle all the cases here,
31570         as the C# code takes care of it.  Only handle the case of the name
31571         resource embedded into the assembly.
31572
31573         Changed signature to return the data pointer and the size of the
31574         data. 
31575
31576 2003-07-26  Miguel de Icaza  <miguel@ximian.com>
31577
31578         * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31579         encoded.        (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31580
31581 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31582
31583         * socket-io.c: ignore EINTR error in select.
31584
31585 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31586
31587         * class.h, class.c: removed unused subclasses field in MonoClass.
31588
31589 2003-07-29  Lluis Sanchez Gual  <lluis@ximian.com>
31590
31591         * icall.c: improve fix of get_base_definition(). If the parent class
31592           doesn't have the mehod, look at the parent of the parent.
31593         * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31594           to check if a parameter is an in or out parameter
31595           (PARAM_ATTRIBUTE_IN is not set by default).
31596           mono_method_return_message_restore(): Use mono_class_value_size to
31597           get the size of a value type. mono_type_stack_size (parameterType)
31598           does not return the correct value if parameterType is byRef.
31599           mono_load_remote_field(), mono_load_remote_field_new(),
31600           mono_store_remote_field(), mono_store_remote_field_new():
31601           raise exception if the remote call returns an exception.
31602
31603 2003-07-28  Martin Baulig  <martin@ximian.com>
31604
31605         * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31606         method.  This is a wrapper around mono_runtime_invoke() which
31607         boxes the instance object if neccessary.
31608
31609 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31610
31611         * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31612         metadata.h, row-indexes.h, verify.c: first cut of generics support.
31613
31614 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31615
31616         * icall.c: disable mcs bug workaround.
31617
31618 2003-07-21  Miguel de Icaza  <miguel@ximian.com>
31619
31620         * object.c (mono_runtime_class_init): Take the metadata_section
31621         mutex before obtaining the domain mutex.
31622
31623         * appdomain.h: Added definition of metadata_section mutex here. 
31624
31625         * object.c: define metadata_mutex here.
31626
31627 2003-07-24  Ravi Pratap  <ravi@ximian.com>
31628
31629         * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31630         fixed.
31631
31632 2003-07-24  Lluis Sanchez Gual  <lluis@ximian.com>
31633
31634         * reflection.c: Fix bug #46669
31635
31636 2003-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31637
31638         * exception.c:
31639         * exception.h:
31640         * icall.c:
31641         * object.h: fill in the type name for TypeLoadException.
31642
31643 2003-07-23  Ravi Pratap  <ravi@ximian.com>
31644
31645         * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31646         relationship between TypeBuilders while compiling corlib) and bug
31647         45993 (Array types returned from the runtime while compiling
31648         corlib were from the loaded corlib).
31649
31650 2003-07-22  Martin Baulig  <martin@ximian.com>
31651
31652         * mono-debug-debugger.c: Reworked the type support a bit more;
31653         distinguish between types and classes.
31654
31655 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31656
31657         * icall.c: add IsArrayImpl icall.
31658
31659 2003-07-22  Zoltan Varga  <vargaz@freemail.hu>
31660
31661         * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31662         initializing real_size only once. Also fix bug #46602.
31663
31664 2003-07-21  Jerome Laban <jlaban@wanadoo.fr>
31665
31666         * object.c: Renamed mono_metadata_section to metadata_section.
31667
31668 2003-07-21  Lluis Sanchez Gual  <lluis@ximian.com>
31669
31670         * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31671           empty array if the type is an array. Fixed.
31672           ves_icall_MonoMethod_get_base_definition: if the base method
31673           is abstract, get the MethodInfo from the list of methods of
31674           the class.
31675         * reflection.c: ParameterInfo.PositionImpl should be zero-based
31676           and it was 1-based. Fixed in mono_param_get_objects.
31677
31678 2003-07-20  Martin Baulig  <martin@ximian.com>
31679
31680         * mono-debug.h: Set version number to 31.
31681         (mono_debug_init): Added `MonoDomain *' argument.
31682
31683         * mono-debug-debugger.c: Reworked the type support; explicitly
31684         tell the debugger about builtin types; pass the `klass' address to
31685         the debugger.
31686
31687 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31688
31689         * image.c: Allow new metadata tables to be loaded without a
31690         warning. Also update the warning message to give the new constant value.
31691                 
31692 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31693
31694         * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31695         metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: 
31696         array type representation changes.
31697
31698 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31699
31700         * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31701         on Environment.Exit () call.
31702
31703 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31704
31705         * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31706         requires a matching corlib.
31707
31708 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31709
31710         * Changelog: My editor decided to add a CR to each line. Sorry about that.
31711           Committed again without the CRs.
31712         
31713 2003-07-17  Lluis Sanchez Gual  <lluis@ximian.com>
31714
31715         * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31716           getting it from the "this" socket instance. Did not work
31717           if the socket is a subclass of Socket.
31718           Also fixed bug #35371.
31719
31720 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31721
31722         * metadata.c: fixed size for TypedByRef.
31723         * loader.c: when searching for a method, consider the vararg amrker.
31724         * unicode.c, decimal.c: constify some arrays.
31725
31726 2003-07-15  Dick Porter  <dick@ximian.com>
31727
31728         * socket-io.c: Fixed compilation for gcc < 3.2.
31729
31730         Fixed compilation for machines that don't have AF_INET6 (thanks to
31731         Bernie Solomon <bernard@ugsolutions.com> for that part.)
31732
31733         Fixed compile warnings.
31734         
31735         Fixed formatting and line endings.
31736
31737 2003-07-14  Jerome Laban <jlaban@wanadoo.fr>
31738
31739         * socket-io.h:
31740         * socket-io.c: Added IPv6 support.
31741
31742 2003-07-13  Zoltan Varga  <vargaz@freemail.hu>
31743
31744         * class.c (mono_class_is_assignable_from): New function to implement
31745         the is_assignable_from logic. Used by mono_object_isinst, 
31746         Type::IsAssignableFrom () and the interpreter.
31747
31748         * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31749         Object, even interfaces.
31750         
31751         * object.c (mono_object_isinst): Implement in terms of 
31752         is_assignable_from.
31753
31754         * icall.c (ves_icall_type_is_assignable_from): New icall.
31755
31756 2003-07-11  Zoltan Varga  <vargaz@freemail.hu>
31757
31758         * domain.c (foreach_domain): fix compiler warning.
31759
31760 2003-07-11  Dietmar Maurer  <dietmar@ximian.com>
31761
31762         * image.c (load_metadata_ptrs): use g_strndup because strndup is
31763         not available on all plattforms
31764
31765 2003-07-10  Zoltan Varga  <vargaz@freemail.hu>
31766
31767         * image.h image.c: Store the metadata version string in MonoImage.
31768         * icall.c: New icall to retrieve the image version.
31769         * reflection.c (create_dynamic_image): Fill in the image version field
31770         * reflection.c (build_compressed_metadata): Use the image version
31771         from the image structure.
31772
31773 2003-07-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31774
31775         * appdomain.c: modified comment.
31776         * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31777         That will be its last iteration when mono_gc_cleanup is called from
31778         mono_runtime_cleanup and before the domain is unloaded.
31779
31780         Fixes bug #45962.
31781
31782 2003-07-04  Dietmar Maurer  <dietmar@ximian.com>
31783
31784         * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31785         attributes.
31786
31787 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31788
31789         * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31790         rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31791         Bernie Solomon <bernard@ugsolutions.com>.
31792
31793 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31794
31795         * object.c, object.h: provide mono_object_new_fast() for faster
31796         allocation in some special cases.
31797
31798 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31799
31800         * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31801         mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31802
31803 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31804
31805         * threadpool.c: fix leaks.
31806
31807 2003-07-01  Dick Porter  <dick@ximian.com>
31808
31809         * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31810         using MonoGHashTables.  Fixes threadpool bug posted to list.
31811
31812 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31813
31814         * image.h, image.c: added support to load an assembly from a byte array.
31815         * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added 
31816         assembly bundle support.
31817
31818 2003-06-27  Dietmar Maurer  <dietmar@ximian.com>
31819
31820         * threadpool.c (mono_thread_pool_add): keep a reference to the
31821         AsyncResult to prevent GC
31822
31823 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31824
31825         * class.c: leak fix.
31826
31827 2003-06-25  Dick Porter  <dick@ximian.com>
31828
31829         * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31830         for the async object, the WaitHandle object will close the handle.
31831         Fixes bug 45321.
31832
31833 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31834
31835         * class.c: in mono_array_class_get (), lookup from the hash with the
31836         same type we insert: this works around a bug in
31837         mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31838         lluis. The real fix will have to wait for after the release.
31839
31840 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31841
31842         * icall.c: fix memory leak when getting type members.
31843
31844 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31845
31846         * reflection.c: added more pubtoken special cases.
31847
31848 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31849
31850         * class.c: handle field offset correctly when class size
31851         is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31852
31853 2003-06-20  Martin Baulig  <martin@ximian.com>
31854
31855         * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31856         *image' field.
31857
31858 2003-06-20  Martin Baulig  <martin@ximian.com>
31859
31860         * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31861
31862 2003-06-20  Martin Baulig  <martin@ximian.com>
31863
31864         * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed.  We
31865         just distinguish between variables in registers and variables at
31866         an offset relative to a register.
31867
31868 2003-06-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
31869
31870         * icall.c: #ifdef out latest changes until mcs is fixed.
31871
31872 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31873
31874         * icall.c: return members in metadata order.
31875
31876 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31877
31878         * icall.c: avoid infinite loop in GetTimeZoneData.
31879
31880 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31881
31882         * icall.c: added Marshal.Prelink/All icalls.
31883
31884 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31885
31886         * object.c, object.h: fix warnings and do some overflow checking
31887         when creating arrays.
31888
31889 2003-06-17  Dick Porter  <dick@ximian.com>
31890
31891         * file-io.h:
31892         * file-io.c: File attributes need to be tweaked slightly when
31893         passed from the managed to the w32 world.
31894
31895 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31896         * profiler.h profiler-private.h profiler.c: Rework last patch
31897         based on suggestion by Paolo.
31898         
31899 2003-06-17  Zoltan Varga  <vargaz@freemail.hu>
31900
31901         * profiler.h profiler-private.h profiler.c: Added infrastructure for 
31902         instruction level coverage data collection.
31903         * profiler.h profiler.c (: Added new callback function which can be
31904         used by the profiler to limit which functions should have coverage
31905         instrumentation.
31906         * profiler.c (mono_profiler_load): Call g_module_build_path to
31907         generate the file name of the profiler library.
31908
31909 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31910
31911         * profiler.c, profiler.h, profiler-private.h: added basic block 
31912         coverage profiling API.
31913
31914 2003-06-15  Zoltan Varga  <vargaz@freemail.hu>
31915
31916         * reflection.c (mono_reflection_create_runtime_class): Add support
31917         for events in dynamically generated code.
31918
31919         * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31920         not allocated.
31921
31922 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31923
31924         * icall.c: when getting timezone info, return reasonable values if we
31925         can't get the actual data.
31926
31927 2003-06-14  Dick Porter  <dick@ximian.com>
31928
31929         * threads.c (start_wrapper): Remove the reference to the thread
31930         object in the TLS data, so the thread object can be finalized.
31931         This won't be reached if the thread threw an uncaught exception,
31932         so those thread handles will stay referenced :-( (This is due to
31933         missing support for scanning thread-specific data in the Boehm GC
31934         - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31935
31936 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31937
31938         * reflection.c: ensure streams and tables are first allocated with
31939         ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31940
31941 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31942
31943         * icall.c: fixed GetElementType for byrefs (bug# 44792).
31944
31945 2003-06-13  Zoltan Varga  <vargaz@freemail.hu>
31946
31947         * reflection.c (mono_reflection_create_runtime_class): Add support for
31948         properties to dynamically created classes.
31949         * reflection.c: Fix a few places where non-MonoObjects were inserted
31950         into the tokens hashtable.
31951
31952 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31953
31954         * object.c: some support to handle out of memory exceptions.
31955
31956 2003-06-12  Dietmar Maurer  <dietmar@ximian.com>
31957
31958         * marshal.c (mono_marshal_get_native_wrapper): support reference
31959         return types
31960
31961 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31962
31963         * object.h, object.c: more portability stuff from Bernie Solomon.
31964         Unexport mono_object_allocate(). Added mono_object_unbox ().
31965         Set exitcode when an unhandled exception is thrown.
31966
31967 2003-06-11  Dietmar Maurer  <dietmar@ximian.com>
31968
31969         * marshal.c (mono_marshal_get_native_wrapper): use custom
31970         marshaler for return types.
31971
31972 2003-06-10  Dick Porter  <dick@ximian.com>
31973
31974         * socket-io.c: Don't assume that one of struct ip_mreqn or struct
31975         ip_mreq is available
31976
31977 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
31978
31979         * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
31980         mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
31981         by Bernie Solomon <bernard@ugsolutions.com>.
31982
31983 2003-06-10  Zoltan Varga  <vargaz@freemail.hu>
31984
31985         * gc.c (mono_gc_init): Avoid error message on shutdown when
31986         GC_DONT_GC=1 is used.
31987
31988         * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal): 
31989         New icall to return the GUID of a module.
31990
31991 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31992
31993         * class.c: ensure instance size always includes the parent's size
31994         even whem class size is set explicitly (fixes bug#44294).
31995
31996 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
31997
31998         * profiler.h, profiler.c: made the simple profiler thread-safe,
31999         get more accurate timing info. Allow the loading of an
32000         externally-developed profiler module.
32001
32002 2003-06-05  Dietmar Maurer  <dietmar@ximian.com>
32003
32004         * marshal.c (mono_marshal_get_native_wrapper): improved
32005         class/byref arguments.
32006         (mono_marshal_get_native_wrapper): better string marshaling support.
32007
32008 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32009
32010         * class.c: ensure .pack and .size are handled correctly and
32011         simplified layout of static fields.
32012
32013 2003-06-04  Dietmar Maurer  <dietmar@ximian.com>
32014
32015         * appdomain.c
32016         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32017
32018         * loader.c (mono_lookup_pinvoke_call): look for modules in the
32019         current directory (fix bug 44008)
32020
32021 2003-06-03  Dietmar Maurer  <dietmar@ximian.com>
32022
32023         * marshal.c (mono_marshal_get_native_wrapper): started support for
32024         custom marshalers.
32025         (mono_delegate_to_ftnptr): consider marshalling specifications
32026
32027 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32028
32029         * reflection.c, reflection.h: emit custom marshal info.
32030
32031 2003-06-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32032
32033         * object.c: free the GError.
32034         * icall.c: added CloseEvent_internal.
32035         * threads.[ch]:
32036         (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32037         call.
32038
32039 2003-06-01  Zoltan Varga  <vargaz@freemail.hu>
32040
32041         * loader.c (mono_method_get_signature): Add support for dynamic
32042         assemblies.
32043
32044 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32045
32046         * reflection.c: fixed bug #43905.
32047
32048 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32049
32050         * class.c, domain.c, icall.c, metadata.h, object.h: support for
32051         handling TypedReference and ArgIterator.
32052         * loader.c, loader.h: added function to get signature at call site.
32053
32054 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32055
32056         * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more 
32057         data readonly. Buglets and warning fixes. Some MethodSpec support.
32058
32059 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32060
32061         * class.h, class.c, object.c: remove relative numbering support.
32062
32063 2003-05-26  Miguel de Icaza  <miguel@ximian.com>
32064
32065         * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32066         free the string, until we get a chance to fix Gtk#
32067
32068 2003-05-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32069
32070         * marshal.c: revert last patch.
32071
32072 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32073
32074         * icall.c: updates for new mono_class_vtable() not calling
32075         the type constructor anymore.
32076
32077 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32078
32079         * object.h, object.c: separate vtable creation from type
32080         initialization. Make running the .cctor thread safe.
32081
32082 2003-05-26  Dietmar Maurer  <dietmar@ximian.com>
32083
32084         * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32085
32086 2003-05-21  Dietmar Maurer  <dietmar@ximian.com>
32087
32088         * loader.c (mono_get_method): consider calling convention
32089
32090 2003-05-21  Zoltan Varga  <vargaz@freemail.hu>
32091
32092         * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32093         to return the invisible global type for a module.
32094
32095         * reflection.c (mono_image_build_metadata): Emit global fields too.
32096
32097 2003-05-20  Peter Williams  <peterw@ximian.com>
32098
32099         * loader.c (mono_lookup_internal_call): Add a few newlines.
32100
32101 2003-05-20  Zoltan Varga  <vargaz@freemail.hu>
32102
32103         * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32104         literal strings.
32105
32106         * appdomain.c (set_domain_search_path): Recalculate search path when
32107         AppDomainSetup.PrivateBinPath changes.
32108
32109         * object.c (mono_class_compute_gc_descriptor): It turns out some
32110         parts of the class libs (like System.Thread) holds pointers to
32111         GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32112         to treat native int a pointer type here.
32113         
32114 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32115
32116         * appdomain.h, domain.c: add hashtable for jump target resolution.
32117
32118 2003-05-19  Zoltan Varga  <vargaz@freemail.hu>
32119
32120         * reflection.h reflection.c icall.c: Added new icalls 
32121         GetManifestResourceInfoInternal, GetModulesInternal and support
32122         infrastructure.
32123
32124 2003-05-16  Dick Porter  <dick@ximian.com>
32125
32126         * icall.c:
32127         * file-io.h:
32128         * file-io.c: Implement System.IO.MonoIO::GetTempPath
32129
32130 2003-05-14  Lluis Sanchez Gual  <lluis@ideary.com>
32131
32132         * object.c: mono_store_remote_field: little fix to previous patch.
32133
32134 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32135
32136         * class.c: add constructors to array classes.
32137         * icall.c: special case array construction for InternalInvoke (),
32138
32139 2003-05-14  Zoltan Varga  <vargaz@freemail.hu>
32140
32141         * class.h class.c reflection.c object.c: Added support for field
32142         defaults in dynamically generated classes.
32143
32144 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32145
32146         * reflection.c: properly encode charset for ddlimport.
32147
32148 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32149
32150         * threads.c: allow compiling without GC.
32151
32152 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32153
32154         * appdomain.h, object.c, object.h, threads.c, threads.h: added
32155         handling of thread static data.
32156
32157 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32158
32159         * reflection.h, reflection.c: added mono_custom_attrs_free ().
32160
32161 2003-05-13  Dietmar Maurer  <dietmar@ximian.com>
32162
32163         * class.c (mono_array_class_get): always set the serializable flags
32164         (mono_array_class_get): always set the SEALED attribute for array types
32165
32166 2003-05-12  Dietmar Maurer  <dietmar@ximian.com>
32167
32168         * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32169         attributes (fix for bug 42021).
32170
32171 2003-05-12  Dick Porter  <dick@ximian.com>
32172
32173         * gc.c: Don't run finalizers when the finalizer thread is
32174         finishing up, because the default domain has already been
32175         destroyed.
32176
32177 2003-05-11  Miguel de Icaza  <miguel@ximian.com>
32178
32179         * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32180         value is null, we should throw an exception.   This is slightly
32181         different than the other conventions used for the constructor.
32182
32183 2003-05-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32184
32185         * socket-io.c: fixed windows build.
32186
32187 2003-05-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32188
32189         * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32190
32191 2003-05-10  Zoltan Varga  <vargaz@freemail.hu>
32192
32193         * object.c (mono_string_new_wrapper): Compatibility fix for MS
32194         compilers.
32195
32196 2003-05-09  Zoltan Varga  <vargaz@freemail.hu>
32197
32198         * class.c (mono_class_layout_fields): Add experimental GC aware
32199         auto layout facility. Requires class library changes to work correctly.
32200
32201         (mono_class_setup_vtable): Avoid overriding explicit interface
32202         method implementations. Fixes iface3.exe test.
32203
32204         * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32205         object reference.
32206         (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32207         (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32208
32209         * metadata.h: Add new type classification macro which determines
32210         whenever the type holds an object reference.
32211
32212 2003-05-08  Dietmar Maurer  <dietmar@ximian.com>
32213
32214         * marshal.c (mono_marshal_get_native_wrapper): cleanups
32215
32216 2003-05-07  Zoltan Varga  <vargaz@freemail.hu>
32217
32218         * gc.c (finalizer_thread): Work around a GC bug.
32219
32220 2003-05-07  Dietmar Maurer  <dietmar@ximian.com>
32221
32222         * marshal.c (emit_struct_conv): allow unions
32223
32224         * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32225
32226 2003-05-06  Dietmar Maurer  <dietmar@ximian.com>
32227
32228         * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32229
32230 2003-05-06  Martin Baulig  <martin@ximian.com>
32231
32232         * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32233
32234 2003-05-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32235
32236         * socket-io.c:
32237         (Select_internal): allow NULLs, don't create arrays if not needed.
32238         Coupled with Socket.cs changes.
32239
32240         * threadpool.c:
32241         (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32242         register a finalizer for it that will close the semaphore handle. This
32243         fixes the leak and make Lupus' test run with > 4080 loops.
32244
32245 2003-05-05  Dietmar Maurer  <dietmar@ximian.com>
32246
32247         * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32248         Jerome Laban (bug #42287)
32249
32250 2003-05-02  Martin Baulig  <martin@ximian.com>
32251
32252         * debug-mono-symfile.h
32253         (MonoSymbolFile): Moved declaration into mono-debug.h.
32254         (MonoDebugMethodJitInfo): Likewise.
32255         (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32256         argument.
32257         (_mono_debug_address_from_il_offset): Take a
32258         MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32259
32260         * mono-debug.h
32261         (MonoDebugDomainData): New struct.
32262         (mono_debug_get_domain_data): New function.
32263         (mono_debug_add_method): Take an additional `MonoDomain *'
32264         argument.
32265         (mono_debug_source_location_from_address): Likewise.
32266         (mono_debug_il_offset_from_address): Likewise.
32267         (mono_debug_address_from_il_offset): Likewise.
32268
32269 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32270
32271         * reflection.c: one more check for null type in custom attrs.
32272
32273 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32274
32275         * reflection.c: avoid warning (comparison is always false due to limited
32276         range of data type).
32277
32278 2003-05-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32279
32280         * icall.c: throw an exception in Type.GetField if the argument 'name'
32281         is NULL.
32282
32283 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32284
32285         * reflection.c: fixed handling of enums in named arguments to custom
32286         attributes (bug #42123).
32287
32288 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32289
32290         * reflection.c: use the right array element type and handle
32291         a null for a Type argument, too.
32292
32293 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32294
32295         * reflection.c: handle arrays as arguments to custom attributes.
32296
32297 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32298
32299         * reflection.c: handle a string value in a custom attr
32300         ctor that takes an object.
32301
32302 2003-04-29  Dietmar Maurer  <dietmar@ximian.com>
32303
32304         * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32305         (fix bug #42063)
32306
32307 2003-04-28  Zoltan Varga  <vargaz@freemail.hu>
32308
32309         * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32310
32311 2003-04-27  Martin Baulig  <martin@ximian.com>
32312
32313         * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32314         MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32315         MONO_DEBUGGER_EVENT_BREAKPOINT.
32316         (mono_breakpoint_trampoline_code): Removed.
32317         (mono_debugger_event_handler): The last argument is now a
32318         `guint32'.
32319         (mono_debugger_insert_breakpoint_full): Removed the
32320         `use_trampoline' argument.
32321         (mono_debugger_method_has_breakpoint): Likewise.
32322         (mono_debugger_trampoline_breakpoint_callback): Renamed to
32323         mono_debugger_breakpoint_callback(); take the method and
32324         breakpoint number as arguments.
32325
32326 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32327
32328         * metadata.c: fix off by one when loading parameters attributes.
32329
32330 2003-04-24  Martin Baulig  <martin@ximian.com>
32331
32332         * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32333
32334 2003-04-24  Martin Baulig  <martin@ximian.com>
32335
32336         * mono-debug-debugger.c: Moved all code which interacts with the
32337         Mono Debugger here.
32338
32339         * debug-mono-symfile.c: This code now just deals with the symbol
32340         file itself, the debugger code is now in mono-debug-debugger.c.
32341
32342 2003-04-23  Martin Baulig  <martin@ximian.com>
32343
32344         * mono-debug.c (mono_debug_source_location_from_il_offset):
32345         New method; like mono_debug_source_location_from_address(), but
32346         takes an IL offset instead of a machine address.
32347
32348 2003-04-23  Martin Baulig  <martin@ximian.com>
32349
32350         * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32351         `line' field; this is now computed by the debugger.
32352
32353 2003-04-23  Martin Baulig  <martin@ximian.com>
32354
32355         * mono-debug.[ch]: New files.  This is the new debugging interface.
32356
32357         * mono-debug-debugger.[ch]: New files.  Moved all code which
32358         interacts with the Mono Debugger here.
32359
32360 2003-04-22  Dietmar Maurer  <dietmar@ximian.com>
32361
32362         * domain.c (mono_init): initialize mono_defaults.monitor_class
32363
32364 2003-04-21  Miguel de Icaza  <miguel@ximian.com>
32365
32366         * reflection.c (method_encode_code): Add a spicy exception to help
32367         future compiler authors.
32368
32369 2003-04-21  Martin Baulig  <martin@ximian.com>
32370
32371         * icall.c
32372         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32373         Make this work with relative pathnames; g_filename_to_uri() needs
32374         an absolute filename.
32375
32376 2003-04-18  Zoltan Varga  <vargaz@freemail.hu>
32377
32378         * icall.c: Track name changes in Object and ValueType.
32379
32380 2003-04-18  Dietmar Maurer  <dietmar@ximian.com>
32381
32382         * metadata.c (mono_type_stack_size): size should be a multiple of
32383         sizeof (gpointer)
32384
32385 2003-04-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32386
32387         * gc.c:
32388         (internal_domain_finalize): moved into mono_domain_finalize. No need
32389         to create another thread because the finalizers will be run in the
32390         finalizer thread.
32391         
32392         (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32393         (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32394         to be run (MS does this too).
32395
32396 2003-04-17  Zoltan Varga  <vargaz@freemail.hu>
32397
32398         * object.c (mono_class_compute_gc_descriptor): Update comment.
32399
32400         * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32401
32402         * image.h: Add synchronized wrapper cache.
32403
32404         * image.c (do_mono_image_open): Initialize cache.
32405
32406         * reflection.c (create_dynamic_mono_image): Initialize cache.
32407
32408 2003-04-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32409
32410         * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32411         ves_icall_System_Buffer_ByteLengthInternal.
32412
32413 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32414
32415         * reflection.c: setup klass->nested_in earlier. Allow
32416         a dash in the assembly name.
32417
32418 2003-04-15  Dietmar Maurer  <dietmar@ximian.com>
32419
32420         * metadata.c (mono_type_to_unmanaged): dont access
32421         type->data.klass for MONO_TYPE_OBJECT
32422         (mono_type_to_unmanaged): consider System.Delegate class
32423
32424 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32425
32426         * class.c: just setup supertypes in the proper place instead of
32427         initializing the full element class for arrays.
32428
32429 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32430
32431         * class.c: ensure the element class of arrays is initialized.
32432         Setup the supertype info for array classes, too.
32433
32434 2003-04-14  Miguel de Icaza  <miguel@ximian.com>
32435
32436         * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32437
32438 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32439
32440         * Makefile.am: re-added -m option when running cygpath. This way,
32441         MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32442         separator.
32443         * mono-config.c: same codepath for locating mono config file for WIN32
32444         and the rest.
32445         * assembly.c: if mono_assembly_setrootdir is called, don't override
32446         the value set.
32447
32448 2003-04-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32449
32450         * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32451         MONO_ASSEMBLIES variable.
32452
32453 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32454
32455         * icall.c: added Assembly::GetNamespaces() icall.
32456
32457 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32458
32459         * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32460
32461 2003-04-10  Lluis Sanchez Gual  <lluis@ideary.com>
32462
32463         * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32464         * object.c: fixed bug in the construction of vtable for proxies
32465
32466 2003-04-10  Zoltan Varga  <vargaz@freemail.hu>
32467
32468         * object.c (mono_array_new): Mark mono_array_new as an icall.
32469
32470 2003-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32471
32472         * class.c: fixed test for public method when overriding interfaces.
32473         Closes bug #40970.
32474
32475 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32476
32477         * appdomain.h, domain.c: added mono_domain_foreach() to
32478         be able to access the currently loaded appdomains.
32479         * object.c: make string interning work across sppdomains.
32480         Mark some functions for use as icalls.
32481
32482 2003-04-09  Zoltan Varga  <vargaz@freemail.hu>
32483
32484         * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32485
32486         * reflection.h reflection.c: Allocate long living data using 
32487         GC_MALLOC_ATOMIC so the collector does not need to scan it.
32488
32489         * reflection.c: Double the allocation size in streams instead of
32490         increasing it, to prevent unneccesary copying on large assemblies.
32491         
32492         * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32493         creation if the assembly does not have the Run flag set.
32494
32495 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32496
32497         * class.h: avoid the C++ keywords in header files (Jerome Laban
32498         spotted and fixed this).
32499
32500 2003-04-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32501
32502         * object.c:
32503         (mono_unhandled_exception): fill in the arguments for the
32504         UnhandledException event. Only trigger that event for the default
32505         domain (as MS does).
32506
32507 2003-04-04  Zoltan Varga  <vargaz@freemail.hu>
32508
32509         * object.c: Improve typed allocation stuff based on suggestions from
32510         Paolo. Also turn it on if the GC library supports it.
32511
32512 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32513
32514         * object.c object.h class.h: Added experimental typed allocation
32515         facility using the interfaces in gc_gcj.h.
32516
32517         * os/gc_wrapper.h: Added new include files.
32518         
32519 2003-04-03  Martin Baulig  <martin@ximian.com>
32520
32521         All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32522         which is not yet enabled by default.
32523
32524         * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32525         functions.
32526         (mono_gc_lock, mono_gc_unlock): New static functions.
32527
32528         * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32529         functions; stop/start the world for the garbage collector.  This
32530         is using the windows API; we need to complete the SuspendThread()/
32531         ResumeThread() implementation in the io-layer to make this work on Unix.
32532         (mono_gc_push_all_stacks): New public function; tells the garbage
32533         collector about the stack pointers from all managed threads.
32534
32535 2003-04-03  Martin Baulig  <martin@ximian.com>
32536
32537         * object.h (MonoThread): Added `gpointer stack_ptr'.
32538
32539         * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32540
32541 2003-04-03  Martin Baulig  <martin@ximian.com>
32542
32543         * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32544
32545 2003-04-03  Zoltan Varga  <vargaz@freemail.hu>
32546
32547         * reflection.c (typebuilder_setup_fields): Initialize field.first and
32548         field.last.
32549
32550 2003-04-02  Miguel de Icaza  <miguel@ximian.com>
32551
32552         * loader.c (mono_lookup_internal_call): Report the corlib that is
32553         out of sync.
32554
32555 2003-03-05  Aleksey Demakov <avd@openlinksw.com>
32556
32557         * icall.c (ves_icall_type_GetTypeCode): fixed check for
32558         System.DBNull (it's class not valuetype).
32559
32560 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32561
32562         * reflection.c: set table_idx in MonoReflectionArrayMethod object even 
32563         if the array method was already assigned a token (fixes bug#40646).
32564
32565 2003-04-02  Zoltan Varga  <vargaz@freemail.hu>
32566
32567         * reflection.c (mono_reflection_get_type): Attempt type resolve even
32568         if no assembly is given.
32569
32570 2003-04-01  Miguel de Icaza  <miguel@ximian.com>
32571
32572         * metadata.h: Added the new tables.
32573
32574         * row-indexes.h: Added definitions for new tables.
32575
32576         * metadata.c: Add schemas for new tables, and add support for
32577         computing the sizes of them.
32578
32579         * class.c: Update for handling the new type cases.
32580
32581 2003-04-01  Dietmar Maurer  <dietmar@ximian.com>
32582
32583         * metadata.h (MONO_TYPE_IS_VOID): new macro
32584
32585 2003-03-31  Martin Baulig  <martin@ximian.com>
32586
32587         * threads.h (MonoThreadCallbacks): Added `thread_created'.
32588
32589         * threads.c (mono_thread_new_init): Call `thread_created' in the
32590         mono_thread_callbacks.
32591
32592 2003-03-31  Lluis Sanchez Gual <lluis@ideary.com>
32593
32594         * loader.h: added marshalbyrefobject_class to mono_defaults
32595         * domain.c: added initialization of mono_defaults.marshalbyrefobject_class 
32596         * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32597           generation of output parameters.
32598           ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32599         * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32600           contextbound and the target object belongs to the context of the caller.
32601         * object.h: added context and unwrapped_server variables in MonoRealProxy.
32602         * object.c: Implemented support for interfaces and abstract classes
32603           in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32604           proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32605
32606 2003-03-30  Zoltan Varga  <vargaz@freemail.hu>
32607
32608         * class.h class.c (mono_class_is_subclass_of): New function.
32609         
32610         * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32611         routines for most common case (calls from ArrayList::ToArray).
32612
32613         * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown 
32614         routine so programs which call Environment::Exit() can be profiled.
32615
32616         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle): 
32617         Added MONO_ARCH_SAVE_REGS.
32618
32619         * icall.c (ves_icall_type_is_subtype_of): Use new function.
32620
32621 2003-03-29  Miguel de Icaza  <miguel@ximian.com>
32622
32623         * blob.h: Add a couple of new MonoType types definitions.
32624
32625         * tabledefs.h: Add a couple of new call convs.
32626
32627 2003-03-27  Zoltan Varga  <vargaz@freemail.h>
32628
32629         * reflection.h (MonoReflectionDynamicAssembly): track changes in
32630         the layout of the class.
32631
32632         * reflection.c (alloc_table): double the size on overflow to avoid
32633         unnecessary copying.
32634
32635         * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32636         avoid filling out metadata tables and blobs. Also set mb->ilgen to
32637         null so it can be garbage collected.
32638         
32639 2003-03-27  Zoltan Varga  <vargaz@freemail.hu>
32640
32641         * reflection.c (mono_reflection_get_type): Return the resolved type
32642         only if it is in the assembly we searched.
32643
32644         * reflection.c (ensure_runtime_vtable): Initialize method slots.
32645
32646         * class.c (mono_class_setup_vtable): Set the slot of the overriding
32647         method.
32648
32649 2003-03-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32650
32651         * appdomain.c:
32652         (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32653         the right one is 'file:///blah', but MS allows it.
32654         * assembly.c:
32655         (mono_assembly_open): allow 'file://blah'
32656
32657         Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32658
32659 2003-03-26  Aleksey Demakov <avd@openlinksw.com>
32660
32661         * socket-io.c: fixes bug #40310.
32662
32663 2003-03-25  Zoltan Varga  <vargaz@freemail.hu>
32664
32665         * reflection.c (mono_reflection_parse_type): handle deeply nested
32666         types correctly.
32667
32668         * reflection.c (mono_image_create_token): Use unique token values
32669         since they will be put into a hash table.
32670
32671         * class.c (mono_class_setup_vtable): If a method occurs in more than
32672         one place in the vtable, and it gets overriden, then change the
32673         other occurances too.
32674
32675         * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32676         object as return type.
32677
32678 2003-03-22  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32679
32680         * icall.c: Deleted "ToString" implementation for double and float
32681         because they are full implemented in managed code.
32682
32683 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32684
32685         * reflection.c, reflection.h: implemented and exported functions
32686         to retrieve info about custom attributes.
32687
32688 2003-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32689
32690         * appdomain.c: moved Uri handling to assembly.c
32691         * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32692         work when using a file Uri in *nix and windows.
32693
32694         * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32695         GetReferencedAssemblies.
32696
32697 2003-03-18  Dick Porter  <dick@ximian.com>
32698
32699         * icall.c: Rename a couple of internal calls
32700
32701         * threads.c: Set the thread state to Stopped when a thread exits.
32702         Fixes bug 39377.
32703
32704 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>
32705
32706         * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32707         New icall.
32708
32709         * object.c (mono_class_vtable): fix warning.
32710
32711 2003-03-17  Zoltan Varga  <vargaz@freemail.hu>  
32712
32713         * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32714
32715         * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32716         memory.
32717         (method_encode_clauses): Create exception info structures in the right
32718         order.
32719         (mono_reflection_setup_internal_class): Initialize supertypes field.
32720
32721         * class.c object.c: Handle interfaces which implement other interfaces 
32722         correctly.
32723
32724         * class.h class.c: Move the supertypes array initialization code into 
32725         a separate function so it can be used for dynamic types too. Also call
32726         it earlier, in mono_class_init(), since it can be used before the
32727         type is initialized.
32728
32729 2003-03-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32730
32731         * Makefile.am:
32732         * assembly.c:
32733         * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32734
32735         * appdomain.c:
32736         * appdomain.h:
32737         * marshal.c:
32738         * object.c: remove warnings.
32739
32740 2003-03-13  Martin Baulig  <martin@ximian.com>
32741
32742         * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32743         (MonoDebugLexicalBlockEntry): New types.
32744
32745         * debug-mono-symfile.c
32746         (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32747
32748 2003-03-13  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32749
32750         * process.c: ret can be any non-zero value accroding to MS doc.
32751
32752 2003-03-07  Miguel de Icaza  <miguel@ximian.com>
32753
32754         * class.c (mono_marshal_load_type_info): Fix buglet:  Noticed when
32755         fixing a warning for a miss-used prototype, would have cause
32756         random memory corruption.
32757
32758 2003-03-07  Martin Baulig  <martin@ximian.com>
32759
32760         * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32761         getting really annoying ....
32762
32763 2003-03-07  Zoltan Varga  <vargaz@freemail.hu>
32764
32765         * reflection.c (fixup_method): added support for array methods.
32766
32767 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32768
32769         * socket-io.c:  handle case when AF_INET6 and AF_IPX are not defined
32770         (pointed out by Michael Adams).
32771
32772 2003-03-04  Dick Porter  <dick@ximian.com>
32773
32774         * icall.c: Temporarily reverted the Double and Single ToString()
32775         change, because it broke nunit.
32776
32777 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32778
32779         * object.h, threads.h: make include files compatible with C++
32780         (patch by Jerome Laban <jlaban@wanadoo.fr>).
32781
32782 2003-03-04  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
32783
32784         * icall.c: Erased ToString helper functions for Double and Single.
32785         Now, that implementations ar all in managed code (Double and Single
32786         Formatters).
32787
32788 2003-03-03  Lluis Sanchez Gual  <lluis@ideary.com>
32789
32790         * appdomain.c: Added method for initializing the default context of
32791         a domain. Added internal call for getting the default context.
32792         * appdomain.h: Added context variable in MonoDomain struct.
32793         * domain.c: mono_domain_set also sets the default context of the domain
32794         * icall.c: Mapped internal method InternalGetDefaultContext.
32795         * object.c: mono_object_get_virtual_method returns always a remoting
32796         wrapper if the object is a transparent proxy.
32797         mono_runtime_invoke_array: when creating an object by calling the
32798         constructor, if the created object is a proxy, then the constructor should
32799         be called using the a remoting wrapper.
32800
32801 2003-03-03  Dick Porter  <dick@ximian.com>
32802
32803         * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32804         variable so it compiles on solaris.  Problem spotted by
32805         Christopher Taylor <ct@cs.clemson.edu>
32806
32807 2003-03-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32808
32809         * appdomain.c:
32810         (get_info_from_assembly_name): don't leak value.
32811
32812         * icall.c:
32813         (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32814         result.
32815
32816 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32817
32818         * assembly.c: export mono_image_load_references ().
32819         * class.c: handle function pointers. mono_class_from_name() now
32820         supports nested type names directly.
32821
32822 2003-02-28  Zoltan Varga  <vargaz@freemail.hu>
32823
32824         * reflection.h reflection.c: Encode already created dynamic methods 
32825         and fields correctly as a DEF instead of a REF.
32826
32827         * reflection.c: Get rid of the force_ref argument to 
32828         mono_image_typedef_or_ref since it was wrong in the first place.
32829
32830         * string-icalls.c: add error checking to string constructors according
32831         to the MSDN docs.
32832
32833         * reflection.c: Emit types in the order their TypeBuilders were 
32834         created. Previously, a new table index was assigned to each type before
32835         the tables were emitted. This was wrong because the signature blob
32836         might already refer to a type by its original table index.
32837
32838 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>
32839
32840         * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32841         change.
32842         
32843 2003-02-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32844
32845         * Makefile.am: make assemblies dir have \ instead of / on windows.
32846
32847 2003-02-27  Zoltan Varga  <vargaz@freemail.hu>  
32848
32849         * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32850         iterate over the NESTEDCLASS table using a linear search since the
32851         table is not guaranteed to be sorted by the secondary key.
32852
32853         * class.c (mono_class_create_from_typedef): fixed up call to
32854         mono_metadata_nesting_typedef.
32855         
32856 2003-02-27  Dietmar Maurer  <dietmar@ximian.com>
32857
32858         * marshal.c (mono_string_to_byvalstr): clear the memory as
32859         suggested by Jerome Laban <jlaban@wanadoo.fr>
32860
32861 2003-02-26  Dick Porter  <dick@ximian.com>
32862
32863         * process.c: Cope with padding in .rsrc blocks
32864
32865 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32866
32867         * metadata.h: reverted the filter_len change, it breaks reflection
32868         
32869 2003-02-26  Dietmar Maurer  <dietmar@ximian.com>
32870
32871         * metadata.h: added a new field to store the filter_len
32872         
32873
32874 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32875
32876         * reflection.c: handle custom attributes for types and members
32877         created with Reflection.Emit (bug#38422).
32878
32879 2003-02-22  Zoltan Varga  <vargaz@freemail.hu>
32880
32881         * reflection.c: define RTSpecialName automatically for constructors for
32882         compatibility with MS.NET.
32883
32884         * reflection.c (mono_reflection_create_runtime_class): initialize
32885         nested_in field of dynamically created classes.
32886
32887 2003-02-22  Martin Baulig  <martin@ximian.com>
32888
32889         * debug-mono-symfile.h: Incremented version number.
32890
32891 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32892
32893         * object.h icall.c process.c: fix warnings.
32894
32895 2003-02-21  Zoltan Varga  <vargaz@freemail.hu>
32896
32897         * appdomain.h appdomain.c:
32898         (mono_domain_try_type_resolve): split the 
32899         name_or_tb argument into a name and a tb argument.
32900         (mono_domain_has_type_resolve): new function to check whenever the
32901         application has registered a TypeResolve event handler.
32902         
32903         * icall.c reflection.h reflection.c: move the type resolve logic into
32904         mono_reflection_get_type () so it will be invoked when 
32905         Assembly::GetType () is called.
32906
32907         * reflection.c:
32908         (mono_reflection_get_type): renamed to get_type_internal.
32909         (mono_reflection_get_type): fixed type name generation so it works 
32910         for nested types too.
32911         (mono_reflection_get_type): call has_type_resolve () to avoid the 
32912         costly type name generation if there is no resolve event handler.
32913
32914 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32915
32916         * class.c, image.c: load exported types from file references.
32917
32918 2003-02-19  Lluis Sanchez Gual  <lluis@ideary.com>
32919
32920         * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32921           used to cache the managed methods used to create proxies and make 
32922           remote invocation of methods.
32923         * class.h: Added in MonoVTable a flag to indicate that a class needs 
32924           to be remotely created.
32925         * object.c: Modified the method mono_class_vtable(). It now initializes 
32926           the remote flag of the vtable. Modified mono_object_new_specific(), 
32927           so now it checks the remote flag.
32928         * icall.c: Added a couple of internal methods, one for enabling instance 
32929           creation interception for a type, and one for creating objects bypassing
32930           the remote check.
32931
32932 2003-02-18  Martin Baulig  <martin@ximian.com>
32933
32934         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32935         New interncall to get a method's metadata token.
32936
32937         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32938         New interncall for the debugger.
32939
32940 2003-02-18  Dietmar Maurer  <dietmar@ximian.com>
32941
32942         * class.c (mono_class_setup_vtable): allocate supertype array
32943
32944 2003-02-18  Martin Baulig  <martin@ximian.com>
32945
32946         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32947
32948 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32949
32950         * reflection.c:
32951         (assembly_name_to_aname): jump over unknown properties (i've found
32952         something like: 'type, assembly, version=xxx, custom=null, public...',
32953         so now will ignore custom=null and still get the rest of the values).
32954
32955 2003-02-17  Dick Porter  <dick@ximian.com>
32956
32957         * threads.c: Have Thread.Start() wait for a semaphore to signal
32958         that the thread has set up all its local data.  This fixes bug
32959         34323, where Abort() raced the new thread's TLS data.
32960
32961         Also removes the handle_store() call from start_wrapper, because
32962         threads are now always created suspended and there is no longer a
32963         race between the parent and child threads to store the info.
32964
32965 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
32966
32967         * image.c: explain the #- heap issue in a message, hopefully
32968         avoiding FAQs on mono-list.
32969
32970 2003-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
32971
32972         * icall.c:
32973         (GetEntryAssembly): if the domain has not invoked
32974         AppDomain.ExecuteAssembly yet, return the assembly of the default
32975         AppDomain.
32976
32977 2003-02-16  Zoltan Varga  <vargaz@freemail.hu>
32978
32979         * class.c (mono_ldtoken): make it work in dynamic assemblies.
32980
32981 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
32982
32983         * metadata.c, reflection.c: simple speedup to type hash
32984         and equals code.
32985
32986 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
32987
32988         * image.c, image.h, class.c, assembly.c: move module loading
32989         to MonoImage. When loading metadata, consider alignemnet from
32990         the start of metadata, not from the metadata address in memory.
32991
32992 2003-02-13  Zoltan Varga  <vargaz@freemail.hu>
32993
32994         * reflection.c (mono_reflection_get_custom_attrs): Added support for 
32995         AssemblyBuilder objects. Factored out custom attribute creation into
32996         a separate function.
32997         (create_custom_attr): new function to create custom attributes.
32998
32999 2003-02-12  Miguel de Icaza  <miguel@ximian.com>
33000
33001         * Makefile.am: Got tired of typing the full pathname to pedump.
33002         Until there is another option, am installing this.
33003
33004 2003-02-12  Dietmar Maurer  <dietmar@ximian.com>
33005
33006         * class.c (class_compute_field_layout): always set field->parent 
33007         (mono_ldtoken): use mono_defaults.fieldhandle_class;
33008
33009 2003-02-11  Dick Porter  <dick@ximian.com>
33010
33011         * threads-types.h:
33012         * monitor.c: Rewrote Monitor, making lock much faster and
33013         Pulse/Wait work as specified.  Also uses much fewer handles, and only
33014         creates them as needed.
33015
33016         * exception.c: Added SynchronizationLockException
33017
33018         * threads.c: Deleted old Monitor implementation.  The new one is
33019         in a new file.
33020
33021 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33022
33023         * class.c: handled TypedReference type code. Set the correct size for
33024         class data. Setup interface_offsets for interface classes, too.
33025
33026 2003-02-09  Martin Baulig  <martin@ximian.com>
33027
33028         * debug-mono-symfile.h: Reflect latest symbol writer changes.
33029
33030 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33031
33032         * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33033         * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33034         * object.c: fixed mono_object_get_virtual_method () for interfaces.
33035         * verify.c: check for code that runs after the end of the method.
33036
33037 2003-02-08  Pedro Mart?nez Juli?  <yoros@wanadoo.es>
33038
33039         * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33040         "System.Math::Round2".
33041         * sysmath.h: Added Floor, Round and Round2 definitions.
33042         * sysmath.c: Modified certain functions that were not 100% compliant
33043         with MS.NET (math precision) and added the implementation of Floor,
33044         Round and Round2.
33045
33046 2003-02-07  Martin Baulig  <martin@ximian.com>
33047
33048         * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33049
33050 2003-02-07  Martin Baulig  <martin@ximian.com>
33051
33052         * debug-mono-symfile.c: Reflected latest symwriter changes.
33053         (mono_debug_create_mono_symbol_file): Removed.
33054         (mono_debug_open_mono_symbol_file): Take an argument which
33055         specifies whether to create a dynamic symbol file.
33056
33057 2003-02-07  Dietmar Maurer  <dietmar@ximian.com>
33058
33059         * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33060
33061 2003-02-05  Martin Baulig  <martin@ximian.com>
33062
33063         * reflection.c (mono_image_build_metadata): Make this public,
33064         protect it against being called multiple times, don't create
33065         resources and don't build the compressed metadata here.
33066         (mono_image_create_pefile): Do this here.
33067
33068         * icall.c
33069         ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33070
33071 2003-02-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33072
33073         * socket-io.c: fixed bug #36322.
33074
33075 2003-02-06  Piers Haken <piersh@friskit.com>
33076
33077         * appdomain.[ch]:
33078         * class.h:
33079         * debug-mono-symfile.c:
33080         * icall.c:
33081         * loader.c:
33082         * mono-config.c:
33083         * monosn.c:
33084         * reflection.c:
33085         * socket-io.c: warning cleanups
33086
33087 2003-02-06  Dietmar Maurer  <dietmar@ximian.com>
33088
33089         * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33090         function. works like remoting invoke, but does a check for the Proxy first.
33091
33092 2003-02-05  Miguel de Icaza  <miguel@ximian.com>
33093
33094         * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33095
33096 2003-02-05  Dietmar Maurer  <dietmar@ximian.com>
33097
33098         * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33099         array of pointers.
33100         (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33101         (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33102
33103         * object.c (mono_store_remote_field_new): used by the new jit
33104         instead of mono_store_remote_field
33105         (mono_load_remote_field_new): used by the new jit
33106         instead of mono_load_remote_field
33107
33108 2003-02-05  Patrik Torstensson
33109
33110         * appdomain.c: changed unload to take the domain id instead
33111         of domain
33112         
33113         * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33114
33115
33116 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33117
33118         * appdomain.c: don't look for assemblies in ApplicationBase if
33119         PrivateBinPathProbe is set.
33120
33121 2003-02-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33122
33123         * object.c: make the first argument in main_args contain the absolute
33124         path to the assembly. Fixes bug #37511.
33125
33126 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33127
33128         * icall.c: get correct UTC offset for countries not using daylight
33129         time saving. Fixes bug #30030.
33130
33131 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33132
33133         * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33134         and 1 are the family).
33135
33136 2003-02-04  Dietmar Maurer  <dietmar@ximian.com>
33137
33138         * icall.c (ves_icall_InternalExecute): removed wrong assertion
33139
33140         * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33141
33142 2003-02-04  Zoltan Varga  <vargaz@freemail.hu>
33143
33144         * reflection.c: added support for SignatureHelper tokens, which is
33145         needed by the Calli opcode.
33146
33147         * reflection.h: track changes to SignatureHelper class.
33148
33149         * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33150
33151 2003-02-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33152
33153         * appdomain.c: fixed loading assemblies from PrivateBinPath.
33154
33155 2003-02-03  Patrik Torstensson
33156         * appdomain.[c|h], domain.c : 
33157          - Added support for getting a domain via domain id
33158          - Support for setting and getting domain from System.AppDomain 
33159            (used in cross appdomain channel)
33160          - Added support for get/set for a MonoAppContext on a thread 
33161            (Context class in System.Runtime.Remoting.Contexts),
33162          - Removed hack in Get/SetData and ExecuteAssembly.
33163         
33164         * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33165         the managed world to get control when a proxy is created.
33166
33167         * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33168         
33169 2003-02-03  Miguel de Icaza  <miguel@ximian.com>
33170
33171         * icall.c
33172         (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33173         Populate the codebase field as well.
33174
33175 2003-02-02  Martin Baulig  <martin@ximian.com>
33176
33177         * debug-mono-symfile.c
33178         (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33179         (mono_debug_symfile_add_method): Allow interncalls.
33180
33181 2003-01-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33182
33183         * icall.c: throw parse exception if strtod fails or the string is empty.
33184
33185 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33186
33187         * marshal.c: handle object type separately from defined
33188         class types.
33189
33190 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33191
33192         * marshal.c: handle NATIVE_LPSTR for strings when it's
33193         explicitly specified.
33194
33195 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33196
33197         * reflection.c, reflection.h, icall.c: setup the reflection
33198         handle cache for ModuleBuilders and AssemblyBuilders.
33199
33200 2003-01-30  Dietmar Maurer  <dietmar@ximian.com>
33201
33202         * reflection.c (reflection_methodbuilder_to_mono_method): set
33203         pinvoke flag
33204
33205 2003-01-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33206
33207         * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33208
33209 2003-01-29  Dick Porter  <dick@ximian.com>
33210
33211         * threads.c: No need for the fake_thread kludge now that Thread
33212         doesn't run a class constructor
33213         
33214 2003-01-29  Dick Porter  <dick@ximian.com>
33215
33216         * threads.c: Use g_direct_hash instead of the rather bogus
33217         g_int_hash
33218
33219 2003-01-29  Dietmar Maurer  <dietmar@ximian.com>
33220
33221         * marshal.c (mono_marshal_get_native_wrapper): add check for null
33222         (fix pinvoke12.exe)
33223         (mono_marshal_get_struct_to_ptr): generate valid IL code
33224         (mono_marshal_get_ptr_to_struct): generate valid IL code
33225         (*): correctly set sig->pinvoke, we need to memdup the signature
33226         to do that
33227
33228 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33229
33230         * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33231         to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33232
33233 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33234
33235         * profiler.c: provide more callers information.
33236
33237 2003-01-28  Dietmar Maurer  <dietmar@ximian.com>
33238
33239         * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33240
33241         * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33242
33243         * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33244
33245 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33246
33247         * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33248         exception instead of going into an infinite loop on dates which it 
33249         can't yet handle.
33250
33251         * string-icalls.c (ves_icall_System_String_get_Chars): raise 
33252         out-of-range exception if needed.
33253
33254         * class.c (mono_class_setup_vtable): allow a virtual method to provide
33255         an implementation for an interface method and to override an inherited
33256         method at the same time. 
33257         Imagine a scenario when a virtual method is used to override a
33258         virtual abstract method in a parent class, and this same method 
33259         provides an implementation for an method inherited from an interface. 
33260         In this case, the interface resolution code will set im->slot, which 
33261         means that the virtual method override pass will skip this method 
33262         which means a pointer to the abstract method inherited from the parent
33263         will remain in the vtable of this non-abstract class.
33264
33265         * class.c: (mono_class_setup_vtable): continue search for a real 
33266         method if only an abstract method is found.     
33267
33268 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33269
33270         * reflection.c: add size to encoding for ByValStr and ByValArray
33271         marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33272
33273 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33274
33275         * class.c (mono_class_setup_vtable): pass the override info as an
33276         argument.
33277
33278         * class.c (mono_class_setup_vtable): set the slot of overriding methods
33279         correctly.
33280         
33281         * reflection.c (ensure_runtime_vtable); add support for method 
33282         overrides.
33283         
33284 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33285
33286         * reflection.c (resolution_scope_from_image): Hack to work to work with
33287         dynamic assemblies.
33288
33289         * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and 
33290         added a 'force_ref' argument to force this function to allways return 
33291         a TypeRef. This is needed by mono_image_get_memberref_token ().
33292         
33293 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33294
33295         * reflection.c (mono_image_get_type_info): interfaces really don't have
33296         a parent.
33297
33298         * reflection.c (mono_image_basic_init): fill out missing fields of
33299         image structure.
33300
33301         * reflection.c (mono_image_basic_init): Invoke assembly load hooks for 
33302         dynamic assemblies. This is required so dynamic assemblies show up in
33303         AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33304         Type::GetType() etc. This is consistent with MS behaviour.
33305
33306         * image.c image.h reflection.c: add newly created classes to the name 
33307         cache so mono_class_get () will find them.      
33308
33309 2003-01-27  Zoltan Varga  <vargaz@freemail.hu>
33310
33311         First part of changes to get IKVM.NET running under mono.
33312         
33313         * appdomain.h, appdomain.c: added new function 
33314         mono_domain_try_type_resolve() which will emit TypeResolve events. 
33315         This function will call AppDomain::DoTypeResolve to do the actual work.
33316
33317         * class.h, class.c, loader.c, object.c, reflection.h, reflection.c: 
33318         moved existing code dealing with dynamic tokens to a new function 
33319         called mono_reflection_lookup_dynamic_token (). This function will 
33320         raise TypeResolve events when appropriate. Since reflection.c is not 
33321         part of libmetadata, a new hook function called 
33322         mono_lookup_dynamic_token() is added to class.c which will call this.
33323
33324         * assembly.h assembly.c: make the invoke_load_hook function public,
33325         so it can be called for dynamic assemblies.
33326
33327         * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33328
33329         * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the 
33330         type isn't found.
33331
33332         * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a 
33333         MonoGHashTable, since it contains pointers to objects which the GC 
33334         needs to track.
33335
33336         * assembly.c (search_loaded): remove unused variable.
33337         
33338 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33339
33340         * object.c: fixed issue exposed by gcc-generated IL programs
33341         that use RVA data for pointers.
33342
33343 2003-01-25  Martin Baulig  <martin@ximian.com>
33344
33345         * threads.c (start_wrapper): Moved the initialization of
33346         `start_func' above the mono_new_thread_init() call to which we
33347         pass it as argument.
33348
33349 2003-01-24  Martin Baulig  <martin@ximian.com>
33350
33351         * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33352         the MonoThread pointer.
33353
33354 2003-01-21  Miguel de Icaza  <miguel@ximian.com>
33355
33356         * icall.c: Rename `PowImpl' to Pow.
33357
33358 2003-01-23  Dick Porter  <dick@ximian.com>
33359
33360         * threads.c (start_wrapper): Create a Thread object if needed, so
33361         the Main() thread can do the class initialisation in a subthread
33362         that has been set up to allow managed code execution.
33363
33364         Pass the thread ID instead of the MonoThread pointer to the thread
33365         start and attach callbacks.  This change is required, because the
33366         jit thread start callback must be called _before_ the Thread
33367         object can be created.
33368         
33369         (mono_thread_init): Removed much object creation code that is no
33370         longer needed.  No managed code is called from here now.
33371
33372         * object.c (mono_runtime_exec_managed_code): Create a subthread
33373         for Main, and call back to the runtime to use it.
33374         Set the exit code when Main exits.
33375
33376         * gc.c: Make sure domain finalisation happens in a subthread.
33377         Re-enable threaded GC, fixing bug 31333 (again).
33378
33379         * environment.c: System.Environment internall calls (so far just
33380         ExitCode is here, the others are still in icall.c)
33381
33382         * appdomain.c (mono_runtime_cleanup): All threads running managed
33383         code should have finished before mono_runtime_cleanup() is
33384         reached, so no need to clean up threads.
33385
33386 2003-01-22  Martin Baulig  <martin@ximian.com>
33387
33388         * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33389         `gpointer func' arguments.      
33390         (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33391         but added `MonoThread *thread' argument.
33392         (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33393
33394         * threads.c (mono_new_thread_init): Added `gpointer func' argument
33395         and pass it to the mono_thread_start_cb callback.
33396         (mono_install_thread_callbacks): New public function to install a
33397         set of callbacks which are set by the debugger.
33398         (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33399
33400 2003-01-22  Martin Baulig  <martin@ximian.com>
33401
33402         * Makefile.am: Install debug-mono-symfile.h.
33403
33404 2003-01-21  Aleksey Demakov <avd@openlinksw.com>
33405
33406         * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33407
33408 2003-01-21  Dietmar Maurer  <dietmar@ximian.com>
33409
33410         * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33411         * class.c (mono_ptr_class_get): correctly set access levels of pointers
33412         (mono_array_class_get): correctly set access levels of arrays
33413
33414 2003-01-20      Patrik Torstensson
33415         * image.h (MonoAssemblyName): changed major, minor, build, revision
33416         from signed to unsigned.
33417
33418 2003-01-20  sean kasun <skasun@azstarnet.com>
33419
33420         * reflection.c (load_cattr_value): Now this handles
33421         MONO_TYPE_SZARRAY.  Fixes bug #35629
33422
33423 2003-01-20  Miguel de Icaza  <miguel@ximian.com>
33424
33425         * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33426         integer value
33427
33428 2003-01-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33429
33430         * decimal.c: fixed bug #26056.
33431
33432 2003-01-17  Martin Baulig  <martin@ximian.com>
33433
33434         * gc.c: Raise an ExecutionEngineException instead of using g_error().
33435
33436 2003-01-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33437
33438         * exception.[ch]:
33439         (mono_get_exception_type_initialization): new function.
33440
33441         * object.c: throw a TypeInitializationException when an exception is
33442         thrown invoking the class constructor.
33443
33444 2003-01-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33445
33446         * reflection.c: fixed attribute reading.
33447
33448 2003-01-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33449
33450         * icall.c:
33451         (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33452         provided, look for the type in the calling assembly and then in
33453         mscorlib; if the assembly name is provided, only try that one.
33454
33455 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33456
33457         * object.c: register the vtable before there is a chance it's
33458         queried again recursively.
33459
33460 2003-01-13  Duncan Mak  <duncan@ximian.com>
33461
33462         * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33463         gc-internal.h. 
33464         
33465 2003-01-12  Patrik Torstensson <totte@race-x-change.com>
33466
33467         * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33468
33469 2003-01-11  Martin Baulig  <martin@ximian.com>
33470
33471         * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33472         this to 20 for the release.
33473
33474 2003-01-10  Dietmar Maurer  <dietmar@ximian.com>
33475
33476         * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33477
33478         * loader.c (mono_method_get_marshal_info): bug fix
33479
33480         * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33481         structures with explicit layout
33482
33483 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33484
33485         * profiler.c: made the output more readable (and sorted). 
33486         Added caller information for the allocation profiler.
33487
33488 2003-01-09  Sebastien Pouliot  <spouliot@videotron.ca>
33489
33490         * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33491
33492 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33493
33494         * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33495         to get value types.
33496         
33497 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33498
33499         * object.c, profiler.h, profiler.c, profiler-private.h:
33500         Added object allocation profiler.
33501
33502 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33503
33504         * reflection.h, reflection.c: handle global methods.
33505         Compress blob entries.
33506
33507 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33508
33509         * marshal.c: fix compilation.
33510
33511 2003-01-09  Dietmar Maurer  <dietmar@ximian.com>
33512
33513         * loader.c (mono_method_get_marshal_info): impl.
33514
33515         * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33516
33517 2003-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33518
33519         * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33520         for reference types.
33521
33522 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33523
33524         * loader.c: fixed off by one error in loaded parameter names.
33525
33526 2003-01-08  Dietmar Maurer  <dietmar@ximian.com>
33527
33528         * marshal.c (mono_marshal_get_icall_wrapper): like
33529         mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33530         instead of a MonoMethod.
33531
33532 2003-01-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33533
33534         * decimal.c: fixed bug #36537.
33535
33536 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33537
33538         * marshal.c: throw a missing method exception if a
33539         P/Invoke method is not found.
33540
33541 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33542
33543         * icall.c: allow a null this for constructors.
33544
33545 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33546
33547         * icall.c: raise the proper exceptions if the arguments to the
33548         internal Invoke are incorrect.
33549
33550 2003-01-03  Dietmar Maurer  <dietmar@ximian.com>
33551
33552         * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33553
33554 2003-01-03  Martin Baulig  <martin@ximian.com>
33555
33556         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33557
33558 2002-12-31  Martin Baulig  <martin@ximian.com>
33559
33560         * debug-mono-symfile.c: Completely rewrote the type section.
33561         Instead of using individual malloc()ed fields, we use one big
33562         continuous memory area and offsets into this area.
33563         See the comments in the source code for details.
33564
33565 2002-12-30  Martin Baulig  <martin@ximian.com>
33566
33567         * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33568
33569 2002-12-30  Martin Baulig  <martin@ximian.com>
33570
33571         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33572         line number table in this data blob instead of using an external
33573         pointer.
33574
33575 2002-12-28  Martin Baulig  <martin@ximian.com>
33576
33577         * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33578
33579 2002-12-22  Rachel Hestilow  <hestilow@ximian.com>
33580
33581         * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33582         as a boxed return type.
33583
33584 2002-12-21  Miguel de Icaza  <miguel@ximian.com>
33585
33586         * appdomain.c
33587         (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33588         g_build_filename to properly get separators on the filename created.
33589
33590         * object.h: Small change, introduce MonoMarshalByRefObject to
33591         track the layout of that structure in the C# universe as we make
33592         changes there.
33593
33594 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33595
33596         * object.c: removed assert to allow static fields on interfaces.
33597         * loader.c: a TypeSpec may be used for any type, not just arrays.
33598
33599 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33600
33601         * class.c, class.h: added mono_class_array_element_size ().
33602         Ignore static methods in interfaces.
33603
33604 2002-12-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33605
33606         * threads.c: fixed the build under cygwin.
33607
33608 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33609
33610         * reflection.c: handle nullref constants. Allocate keys for
33611         reflection handles with the GC.
33612
33613 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33614
33615         * threads.c, threads.h: added mono_thread_get_abort_signal()
33616         to get a suitable signal for thread abort.
33617
33618 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33619
33620         * metadata.c: fix handling of ExportedType table.
33621
33622 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33623
33624         * icall.c: added WriteWindowsDebugString internal call.
33625
33626 2002-12-15  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33627
33628         * reflection.h: added fields to match C# implementation.
33629
33630 2002-12-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33631
33632         * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33633
33634 2002-12-12  Juli Mallett  <jmallett@FreeBSD.org>
33635
33636         * gc.h, gc-internal.h: Rename header for GC internal calls to
33637         gc-internal.h from gc.h as to not clash with Boehm GC having its
33638         header installed as <gc.h> in outside include paths.
33639         * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33640         * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33641
33642 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33643
33644         * icall.c: assign minor, build and revision in FillName.
33645
33646 2002-12-11  Zoltan Varga  <vargaz@freemail.hu>
33647
33648         * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33649         Added support for running code generated by Reflection.Emit.
33650
33651 2002-12-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33652
33653         * appdomain.c: check for NULL argument in LoadFrom.
33654
33655 2002-12-10  Dick Porter  <dick@ximian.com>
33656
33657         * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33658
33659 2002-12-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33660
33661         * appdomain.c: fix buglet when building exe file name.  Handle full
33662         assembly name (needed after latest changes to AssemblyName).
33663         * image.c:
33664         (mono_image_close): free some hashtables.
33665
33666 2002-12-05  Dietmar Maurer  <dietmar@ximian.com>
33667
33668         * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN 
33669         instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation 
33670         on some systems (redhat 7.3) 
33671
33672 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33673
33674         * threads.c: delete the critical section of a sync block,
33675         spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33676
33677 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33678
33679         * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33680
33681 2002-12-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33682
33683         * appdomain.[ch]: handle the assembly preload event to try loading the
33684         assemblies using the paths we have in the current domain.
33685
33686         * assembly.[ch]: created an assembly preload hook that is called to try
33687         loading the assembly by other means that the ones provided here.
33688
33689         * domain.c: initialize the domain search path.
33690
33691         From now on, assemblies (TODO: except corlib and System) are loaded
33692         according to these rules when using mono_assembly_load ():
33693
33694                 1. It tries to load the assembly from the ApplicationBase
33695                 of the current domain appending .dll and .exe (TODO: have to
33696                 try loading from name/name.dll and name/name.exe).
33697
33698                 2. It tries the search path specified in PrivateBinPath for the
33699                 current domain (if any).
33700
33701                 3. Previous behavior.
33702
33703 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33704
33705         * icall.c: implemented GetInterfaceMap() related icall.
33706         * domain.c, loader.h: load MethodInfo in mono_defaults.
33707
33708 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33709
33710         * gc.c: disable the finalizer thread for now, untill all the issues
33711         with it are resolved.
33712
33713 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33714
33715         * string-icalls.c: handle embedded nulls in string ctor when the
33716         length is specified.
33717
33718 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33719
33720         * class.c: look for explicit interface implementation in parent
33721         classes, too.
33722
33723 2002-12-03  Dietmar Maurer  <dietmar@ximian.com>
33724
33725         * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3) 
33726
33727 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33728
33729         * gc.c: protect handles with a critical section.
33730
33731 2002-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33732
33733         * icall.c:
33734         (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33735         parameters. If no assembly specified, try getting the type from all
33736         the assemblies in the current domain, else, load the assembly and get
33737         the type from it.
33738
33739 2002-11-30  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33740
33741         * marshal.c: applied patch from Aleksey Demakov that fixes
33742         ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33743
33744 2002-11-28  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33745
33746         * icall.c: fixed get_location.
33747
33748 2002-11-28  Dietmar Maurer  <dietmar@ximian.com>
33749
33750         * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33751         declarations to make it work with older gcc. 
33752
33753         * loader.c (mono_get_method): set signature->pinvoke for native calls
33754
33755 2002-11-20  Dick Porter  <dick@ximian.com>
33756
33757         * threads.c (mono_thread_init): Set the main thread's handle
33758
33759 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33760
33761         * gc.c: allow compilation without GC support. Changed to match the
33762         mono coding style.
33763
33764 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33765
33766         * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33767
33768 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33769
33770         * reflection.c: set a public key token on the core assemblies.
33771
33772 2002-11-18  Dick Porter  <dick@ximian.com>
33773
33774         * threads.c: Split out some thread initialisation so that other
33775         files can set the start callback function.
33776
33777         * gc.c: Run finalisers in a separate thread, to avoid stack
33778         overflow.  Fixes bug 31333.
33779
33780         * appdomain.c: Set up GC finalisation thread.
33781
33782         * reflection.c: 
33783         * object.c: 
33784         * domain.c: Use gc.h macros for GC_malloc
33785         
33786 2002-11-15  Dick Porter  <dick@ximian.com>
33787
33788         * threadpool.c: 
33789         * threads.c:
33790         * appdomain.c: Removed mono_runtime_init_with_attach(),
33791         mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33792         merging the extra parameter with the existing function.  Removed
33793         unneeded code in mono_thread_attach().
33794
33795 2002-11-14  Dietmar Maurer  <dietmar@ximian.com>
33796
33797         * image.c (mono_image_loaded_by_guid): a method to get loaded
33798         images by guid. 
33799         (load_metadata_ptrs): we store the guid as string.
33800
33801 2002-11-11  Dietmar Maurer  <dietmar@ximian.com>
33802
33803         * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33804
33805         * metadata.c (mono_guid_to_string): imported method form Zoltan
33806         Varga (slightly modified)
33807
33808         * assembly.c (mono_assembly_open): load precompiled code
33809
33810         * loader.h (MonoMethod): we store the method token for use in the
33811         aot compiler. 
33812
33813 2002-11-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33814
33815         * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33816         the hook function called when an assembly is loaded.
33817         
33818         * domain.c: Modified file.
33819         (mono_domain_assembly_load): removed hash table insertion of assemblies.
33820
33821         Fixes bug #33196.
33822
33823 2002-11-07  Miguel de Icaza  <miguel@ximian.com>
33824
33825         * reflection.c: Map PEFileKind to the value expected by the WinNT
33826         image loader. 
33827
33828 2002-11-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33829
33830         * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33831         Read until the buffer is filled completely.
33832
33833 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33834
33835         * icall.c: implemented MonoType.InternalGetEvent ().
33836
33837 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33838
33839         * appdomain.c: implemented InitAppDomainSetup. Delayed
33840         AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33841         the entry_assembly.
33842
33843         * assembly.c: base_dir is now an absolute path ending with
33844         G_DIR_SEPARATOR.
33845
33846         * icall.c: modified get_location according to the above changes.
33847
33848         * object.c: init AppDomain.SetupInformation for the default domain after
33849         we have the entry assembly.
33850
33851         * domain.c: when unloading a domain, setup = NULL.
33852
33853 2002-11-04  Dietmar Maurer  <dietmar@ximian.com>
33854
33855         * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33856
33857 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33858
33859         * object.h, object.c: introduced mono_object_get_virtual_method ()
33860         to lookup the method invoked on an object when a callvirt is done on
33861         a method.
33862         * icall.c: make MethodInfo::Invoke() always do a virtual call.
33863
33864 2002-11-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33865
33866         * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33867         current domain when loaded an assembly and failed to load it.
33868
33869         * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33870
33871 2002-10-31  Dick Porter  <dick@ximian.com>
33872
33873         * icall.c: 
33874         * file-io.h: 
33875         * file-io.c: Return the error status in a parameter, as the
33876         GetLastError() value has long since been blown away if we try and
33877         look it up in a subsequent internal call invocation.  Delete the
33878         GetLastError() internal call, because it's useless.
33879
33880 2002-10-31  Dietmar Maurer  <dietmar@ximian.com>
33881
33882         * class.[ch]: added cast_class to fix bug 29517
33883
33884 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33885
33886         * marshal.c: create valid IL code in the filter clause:
33887         the new JIT is less forgiving:-)
33888
33889 2002-10-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33890
33891         * icall.c: removed get_property internal call.
33892
33893 2002-10-25  Zoltan Varga  <vargaz@freemail.hu>
33894
33895         * appdomain.h domain.c: Added an ID to appdomains.
33896         
33897         * threads.c threads.h icall.c: Implement icall
33898         Thread:GetDomainID(), and remove unused icall 
33899         CurrentThreadDomain_internal.
33900
33901 2002-10-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33902
33903         * icall.c: Don't recurse through the base types in GetConstructor.
33904         Fixes bug #32063. 
33905
33906 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33907
33908         * mempool.h, mempool.c: added mono_mempool_empty() and
33909         mono_mempool_stats().
33910
33911 2002-10-23  Dick Porter  <dick@ximian.com>
33912
33913         * file-io.c: 
33914         * file-io.h: 
33915         * icall.c: Added MonoIO.GetFileType internal call
33916
33917 2002-10-17  Dick Porter  <dick@ximian.com>
33918
33919         * appdomain.c (mono_runtime_cleanup): Don't signal the async
33920         delegate semaphore before waiting for all threads to finish,
33921         because new threads can also call async delegates.  Fixes bug
33922         32004.
33923
33924         * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33925         of 3 seconds, in case another async job is queued.  (This part is
33926         needed because the bug fix reintroduced the 3s exit lag.)  This
33927         makes the mono_runtime_shutdown flag superfluous.
33928
33929 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33930
33931         * reflection.c: include ehader size in method section headers.
33932         Really check for suplicated modules entries.
33933
33934 2002-10-17  Martin Baulig  <martin@gnome.org>
33935
33936         * debug-mono-symfile.c: Added back support for locals.
33937
33938 2002-10-14  Martin Baulig  <martin@gnome.org>
33939
33940         * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33941         MONO_TYPE_VOID.
33942
33943 2002-10-14  Martin Baulig  <martin@gnome.org>
33944
33945         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33946         mono_class_get() instead of looking in the class cache. 
33947
33948 2002-10-13  Martin Baulig  <martin@gnome.org>
33949
33950         * debug-mono-symfile.c: Set version number to 28, include the
33951         signature in method names.
33952
33953 2002-10-13  Martin Baulig  <martin@gnome.org>
33954
33955         * debug-mono-symfile.h: Set version number to 27.
33956
33957 2002-10-11  Martin Baulig  <martin@gnome.org>
33958
33959         * gc.c: Don't register/unregister NULL pointers as disappearing links.
33960
33961 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33962
33963         * metadata.c, metadata.h: added helper function to allocate signatures.
33964
33965 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33966
33967         * icall.c: added internal call to get the location of machine.config.
33968
33969 2002-10-08  Martin Baulig  <martin@gnome.org>
33970
33971         * debug-mono-symfile.c: Ignore classes with a pending init for the
33972         moment.
33973
33974 2002-10-03  Dick Porter  <dick@ximian.com>
33975
33976         * threads.c: Freebsd pthread_t is a pointer
33977
33978 2002-10-03  Dick Porter  <dick@ximian.com>
33979
33980         * socket-io.c: Implemented GetHostName_internal
33981
33982 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33983
33984         * mono-config.c:
33985         (mono_config_parse_file): don't leak the text.
33986
33987 2002-10-02  Martin Baulig  <martin@gnome.org>
33988
33989         * debug-mono-symfile.c: Added support for methods.
33990
33991 2002-10-01  Martin Baulig  <martin@gnome.org>
33992
33993         * debug-mono-symfile.c: Don't emit methods and line numbers for
33994         the dynamic symbol file, just write the type table.  We can easily
33995         have an external helper program which creates a symbol file for an
33996         IL file.        
33997
33998 2002-10-01  Dick Porter  <dick@ximian.com>
33999
34000         * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34001         Only add the handle to the cleanup array when we're about to
34002         launch the thread.  Bug 31425 deadlocked when the test was run on
34003         mono under w32.
34004
34005 2002-10-01  Martin Baulig  <martin@gnome.org>
34006
34007         * debug-mono-symfile.c: Added support for properties.
34008
34009 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34010
34011         * reflection.c: unaligned store fix from Mark Crichton
34012         <crichton@gimp.org>.
34013
34014 2002-09-27  Martin Baulig  <martin@gnome.org>
34015
34016         * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34017         New interncall.
34018
34019 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34020
34021         * assembly.h, assembly.c: use a sane API to hook into the assembly
34022         loading process instead of a useless special-purpouse hack
34023         (ngen needs a hook, too, for example).
34024
34025 2002-09-27  Dick Porter  <dick@ximian.com>
34026
34027         * threads.c (mono_thread_init): Call GetCurrentProcess() so
34028         io-layer can set up some process handle info.  Not needed on w32,
34029         but doesn't hurt either.
34030
34031         * process.c: Pass the program name in the second parameter to
34032         CreateProcess, so the path is searched.  Include the working
34033         directory. Implemented process name, process enumeration, and some
34034         process detail internal calls.
34035         
34036         * icall.c: Added internal calls for process lookup, and some
34037         process details
34038
34039 2002-09-26  Martin Baulig  <martin@gnome.org>
34040
34041         * assembly.c (mono_install_open_assembly_hook): New global
34042         function to install a function to be invoked each time a new
34043         assembly is loaded.
34044         (mono_assembly_open): Run this callback function if set.
34045
34046         * debug-mono-symfile.c: Put back line numbers for the dynamic
34047         symbol file and also record the .il file as source file.  This
34048         allows us to install the temporary symbol file as `file.dbg' just
34049         like a compiler-generated one.
34050
34051 2002-09-26  Nick Zigarovich <nick@chemlab.org>
34052
34053         * Corrected typo in gc.c (BOHEM vs BOEHM).
34054
34055 2002-09-25  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34056
34057         * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34058         GetProperties. Also avoid calling g_slist_length in GetProperties and
34059         GetMethods.
34060
34061 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34062
34063         * reflection.c: avoid unaligned stores (bug spotted by
34064         Mark Crichton  <crichton@gimp.org>).
34065
34066 2002-09-25  Martin Baulig  <martin@gnome.org>
34067
34068         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34069         instead of guint64 for addresses and added prologue/epilogue info.
34070
34071 2002-09-25  Martin Baulig  <martin@gnome.org>
34072
34073         * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34074         store line number info.  For the dynamic symbol file, we only need
34075         to provide the JIT generated dynamic line number info for the dynamic
34076         symbol file.
34077
34078 2002-09-25  Martin Baulig  <martin@gnome.org>
34079
34080         * debug-mono-symfile.h: Incremented version number.
34081
34082 2002-09-24  Martin Baulig  <martin@gnome.org>
34083
34084         * class.c (mono_debugger_class_init_func): New global function
34085         pointer variable.
34086         (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34087         call it.
34088
34089         * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34090         function.  This is called via the mono_debugger_class_init_func
34091         hook to add all types to the dynamic type table.
34092         (ves_icall_MonoDebugger_GetType): New interncall to get a class
34093         from its metadata token.
34094
34095         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34096         New interncall for the debugger.
34097
34098 2002-09-24  Nick Drochak <ndrochak@gol.com>
34099
34100         * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34101         before using it in case it is null.
34102         
34103 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34104
34105         * metadata.c: allow custom modifiers in local var signatures
34106         (bug spotted by Zoltan Varga).
34107
34108 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34109
34110         * class.c: deal with the <Module> class that may have a NULL vtable.
34111         Eliminate warnings.
34112
34113 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34114
34115         * image.c, image.h: more strong name helpers.
34116         * monosn.c: more work: convert pem keys to cryptoapi format.
34117
34118 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34119
34120         * string-icalls.c: speedup IndexOf.
34121
34122 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34123
34124         * icall.c: updates from Zoltan.2.Varga@nokia.com.
34125
34126 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34127
34128         * icall.c: cleanup: use mono_object_domain ().
34129
34130 2002-09-23  Martin Baulig  <martin@gnome.org>
34131
34132         * debug-mono-symfile.c: Improved type support.
34133
34134 2002-09-22  Martin Baulig  <martin@gnome.org>
34135
34136         * debug-mono-symfile.c: Added support for reference types and strings.
34137
34138 2002-09-22  Martin Baulig  <martin@gnome.org>
34139
34140         * debug-mono-symfile.c: Started to work on the type table.
34141
34142 2002-09-21  Martin Baulig  <martin@gnome.org>
34143
34144         * debug-mono-symfile.c: Largely reworked the symbol table format.
34145         The symbol table is now incrementally updated each time a new
34146         method is added.  We're now also using our own magic and version
34147         so that you don't need to recompile all your classes if the
34148         dynamic table changes.
34149         (mono_debug_update_mono_symbol_file): Removed.
34150         (mono_debug_symfile_add_method): New function to add a method.
34151
34152 2002-09-21  Martin Baulig  <martin@gnome.org>
34153
34154         * icall.c
34155         ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34156         New interncall.
34157
34158         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34159         New interncall to get a method from its metadata token.
34160
34161 2002-09-21  Martin Baulig  <martin@gnome.org>
34162
34163         * debug-mono-symfile.c: Create type table.
34164
34165 2002-09-20  Martin Baulig  <martin@gnome.org>
34166
34167         * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34168
34169 2002-09-20  Martin Baulig  <martin@gnome.org>
34170
34171         * debug-mono-symfile.c: Provide information about params and locals.
34172
34173 2002-09-20  Martin Baulig  <martin@gnome.org>
34174
34175         * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34176         New interncall.
34177
34178         * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34179         interncall to get a method from its metadata token.
34180
34181 2002-09-20  Martin Baulig  <martin@gnome.org>
34182
34183         * debug-mono-symfile.c: Added a few checks for method->header
34184         being non-NULL.  This should never happen, but for the moment
34185         let's use a g_warning() rather than a g_assert().
34186
34187 2002-09-19  Mark Crichton  <crichton@gimp.org>
34188
34189         * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34190         even if support for it isn't present.  Added an #ifdef to fix this.
34191
34192         * socket-io.c: Added checks back for Solaris support.
34193
34194 2002-09-19  Martin Baulig  <martin@gnome.org>
34195
34196         * debug-mono-symfile.c (read_string, write_string): Reflect latest
34197         changes in the symbol file format.
34198
34199 2002-09-18  Martin Baulig  <martin@gnome.org>
34200
34201         * debug-mono-symfile.c: Set version number to 21.
34202
34203 2002-09-18  Dick Porter  <dick@ximian.com>
34204
34205         * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34206         on netbsd.  Fixes bug 30051.
34207
34208 2002-09-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34209
34210         * reflection.c:
34211         (set_version_from_string): little fix.
34212
34213 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34214
34215         * monosn.c, Makefile.am: added strong name utility.
34216         * reflection.h, reflection.c: implemented delayed signing,
34217         locale, version and hash id assembly attributes.
34218
34219 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34220
34221         * loader.c, metadata.c: load param attributes in signatures.
34222
34223 2002-09-16  Martin Baulig  <martin@gnome.org>
34224
34225         * debug-mono-symfile.c: Added string table with all method names.
34226
34227 2002-09-14  Martin Baulig  <martin@gnome.org>
34228
34229         * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34230         fast method lookup.
34231
34232 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34233
34234         * reflection.c: record the public key token of referenced assemblies.
34235
34236 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34237
34238         * image.c, image.h: added functions to get the strong name and the
34239         public key of an assembly.
34240         * pedump.c: use them.
34241
34242 2002-09-12  Dietmar Maurer  <dietmar@ximian.com>
34243
34244         * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34245
34246 2002-09-12  Miguel de Icaza  <miguel@ximian.com>
34247
34248         * marshal.c (mono_marshal_get_managed_wrapper): Added
34249         MONO_TYPE_BOOLEAN 
34250
34251 2002-09-11  Martin Baulig  <martin@gnome.org>
34252
34253         * gc.c: Call GC_unregister_disappearing_link() on all links when
34254         finalizing them, this is necessary to aviod a crash in boehm's
34255         finalize handler.
34256
34257 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34258
34259         * gc.c: handle GetTarget for finalized objects spotted and fixed by
34260         nick@chemlab.org.
34261
34262 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34263
34264         * icall.c: implemented MonoType::Module.
34265         * reflection.c, reflection.h: mono_module_get_object () from
34266         Tomi Pakarinen <tomi.pakarinen@welho.com>.
34267
34268 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34269
34270         * icall.c: ignore overridden methods in GetMethods ().
34271         Fix for FieldInfo::SetValue().
34272         * object.c: handle float/double in runtime invoke.
34273
34274 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34275
34276         * object.c: allow a constructor to be called again on an object.
34277
34278 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34279
34280         * class.h, class.c: move field layout code to it's own function and
34281         export it. Get an interface id earlier. Move fields in MonoClass
34282         so they are more cache friendly and align the bitfields.
34283         * loader.c: temporary handle get_param_names() for a runtime method.
34284         * reflection.c, reflection.h: more code to handle runtime creation of
34285         types.
34286
34287 2002-09-09  Martin Baulig  <martin@gnome.org>
34288
34289         * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34290         signature with the pinvoke field being set for the actual call.
34291
34292 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34293
34294         * icall.c: removed some unused icalls. Start of map of glib charsets
34295         to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34296
34297 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34298
34299         * debug-helpers.c: break infinite loop (found and fixed by
34300         Holger Arnold <harnold@gmx.de>).
34301
34302 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34303
34304         * icall.c: target may be null in create_delegate.
34305
34306 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34307
34308         * marshal.c: handle a boolean return type.
34309
34310 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34311
34312         * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34313
34314 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34315
34316         * gc.c: fix weakreferences.
34317
34318 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34319
34320         * icall.c: added icall to get default codepage.
34321
34322 2002-09-03  Dick Porter  <dick@ximian.com>
34323
34324         * threads.h: 
34325         * threads.c: Use MonoThread instead of MonoObject where
34326         apropriate.
34327
34328         Store running thread objects in a hash table, so that we have all
34329         the info to hand when waiting for them to finish
34330         (means we don't need OpenThread() any more, so mingw builds should
34331         be fully functional again.)
34332
34333         * verify.c:
34334         * object.h: Added thread ID to MonoThread
34335
34336 2002-09-03  Martin Baulig  <martin@gnome.org>
34337
34338         * icall.c (System.Reflection.Assembly::get_location): New interncall.
34339
34340 2002-09-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34341
34342         * icall.c: fixed leak in get_temp_path. Thanks lupus.
34343
34344 2002-09-03  Martin Baulig  <martin@gnome.org>
34345
34346         * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34347         argument to store the end address of the disassembled instruction.
34348
34349         * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34350         here from debug-symfile.h.
34351         (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34352         JIT into this struct.
34353         (MonoSymbolFile): Added `char *image_file' field.
34354         (MonoDebugGetMethodFunc): Removed.
34355         (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34356         (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34357         (mono_debug_find_method): New method.
34358
34359         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34360         create a full symbol file.
34361         (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34362         and static symbol files.
34363         (mono_debug_find_method): The symbol file keeps an internal method hash,
34364         call this to get a MonoDebugMethodInfo from a MonoMethod.
34365
34366         * debug-symfile.[ch]: Removed.
34367
34368 2002-08-29  Miguel de Icaza  <miguel@ximian.com>
34369
34370         * image.c (do_mono_image_open): Remove linker version check.
34371
34372 2002-08-29  Dietmar Maurer  <dietmar@ximian.com>
34373
34374         * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34375         wrappers for instance methods.
34376         
34377 2002-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34378
34379         * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34380
34381 2002-08-28  Dick Porter  <dick@ximian.com>
34382
34383         * Makefile.am: Export HOST_CC for w32 builds
34384
34385 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34386
34387         * file-io.c process.c: MonoString are null terminated, no
34388         need for mono_string_to_utf16() anymore.
34389
34390 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34391
34392         * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34393
34394 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34395
34396         * icall.c, reflection.h: speedup System.MonoType.
34397
34398 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34399
34400         * reflection.c: allow null as the value of a string argument in
34401         custom attributes constructors.
34402
34403 2002-08-27  Martin Baulig  <martin@gnome.org>
34404
34405         * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34406         `trampoline_address' field.
34407
34408 2002-08-27  Dietmar Maurer  <dietmar@ximian.com>
34409
34410         * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34411         check (fixes bug #29486) 
34412
34413 2002-08-27  Martin Baulig  <martin@gnome.org>
34414
34415         * debug-mono-symfile.c: Changed the file format in a way that allows us
34416         open it read-only and to use a specially malloced area for all the
34417         dynamic data.  We can now also generate a symbol file on-the-fly if we're
34418         debugging IL code and there is no MCS generated symbol file for it.
34419
34420 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34421
34422         * object.c: added a define for a good string and array
34423         creation speedup (not enabled by default because we need to deal with
34424         the synch stuff).
34425
34426 2002-08-26  Martin Baulig  <martin@gnome.org>
34427
34428         * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34429         function to create a dynamic symbol file.  This is used by the
34430         debugger to create a symbol file for IL code on-the-fly.
34431
34432 2002-08-26  Martin Baulig  <martin@gnome.org>
34433
34434         * loader.c (mono_lookup_pinvoke_call): Include the error message
34435         from g_module_error() in the error message.
34436
34437 2002-08-24  Martin Baulig  <martin@gnome.org>
34438
34439         * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34440         function to update the symbol file.  The symbol file is mmap()ed
34441         writable, but private.  This allows us to install the symbol file
34442         together with the assembly.
34443
34444 2002-08-24  Martin Baulig  <martin@gnome.org>
34445
34446         * debug-mono-symfile.[ch]: New files.  Similar to debug-symfile.[ch]
34447         but they can read the new symbol file format which mcs is now creating.
34448
34449         * debug-symfile.c (mono_debug_find_source_location): Moved to
34450         debug-mono-symfile.c; this is now operating on the new symbol file.
34451
34452 2002-08-23  Martin Baulig  <martin@gnome.org>
34453
34454         * debug-helpers.c (mono_method_desc_from_method): New function to get
34455         a MonoMethodDesc from a MonoMethod.
34456
34457 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34458
34459         * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34460         calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34461
34462 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34463
34464         * string-icalls.[ch]: make helper methods static.
34465
34466 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34467
34468         * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34469         types to it and to SetValueInternal.
34470
34471         * object.c: Moved handle_enum label to its proper place. This was the
34472         f... bug! ;-)
34473
34474         This time i compiled mcs and gtk-sharp and they both work.
34475
34476 2002-08-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34477
34478         * icall.c: reverted partially my previous patch until 
34479         object.c:set_value handles enums correcly.
34480
34481 2002-08-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34482
34483         * icall.c:
34484         (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34485         (ves_icall_System_Environment_get_MachineName): removed warning when
34486         compiling under cygwin.
34487
34488 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34489
34490         * object.c: fixed field_get_value() for reference types.
34491
34492 2002-08-22  Dick Porter  <dick@ximian.com>
34493
34494         * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34495         Don't free a buffer while it's still needed.  Patch from Jonathan
34496         Liger <Jonathan.liger@wanadoo.fr>
34497
34498 2002-08-21  Miguel de Icaza  <miguel@ximian.com>
34499
34500         * icall.c (ves_icall_System_Environment_get_Platform): Add new
34501         internal call.
34502
34503 2002-08-21  Dietmar Maurer  <dietmar@ximian.com>
34504
34505         * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34506         (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34507
34508         * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34509         we call unmanaged code which throws exceptions.
34510
34511 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34512
34513         * appdomain.h: added per-domain entry_assembly.
34514         * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34515         arguments.
34516         * icall.c: Assembly::GetEntryAssembly icall.
34517         * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34518         Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34519
34520 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34521
34522         * appdomain.h, gc.c: added mono_domain_finalize ().
34523
34524 2002-08-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34525
34526         * object.c:
34527         (mono_print_unhandled_exception): changed g_warning by g_printerr
34528         because g_log has a 1024 characters limit (yeah, i got a big stack
34529         trace). Don't print exception name, that should be in ToString 
34530         returned string.
34531
34532 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34533
34534         * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34535         * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34536
34537 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34538
34539         * object.c:
34540         (mono_print_unhandled_exception): after previous commit, i realized
34541         that MS calls ToString on the exception. I changed this function to
34542         do that. This way we get stack_trace for free.
34543
34544 2002-08-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34545
34546         * object.c:
34547         (mono_print_unhandled_exception): invoke Message property instead of
34548         getting 'message' field from Exception. Don't allocate memory for
34549         'trace' and 'message' if not needed.
34550
34551 2002-08-18  Dick Porter  <dick@ximian.com>
34552
34553         * unicode.c: Fix asserts to match Encoder.cs checks
34554
34555 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34556
34557         * marshal.c: fix unaligned store issue and a few wrong
34558         opcode argument types.
34559
34560 2002-08-16  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34561
34562         * icall.c: added GetUninitializedObjectInternal internal call.
34563
34564 2002-08-16  Dietmar Maurer  <dietmar@ximian.com>
34565
34566         * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34567         to the right domain.
34568
34569 2002-08-14  Dietmar Maurer  <dietmar@ximian.com>
34570
34571         * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34572
34573         * class.c (class_compute_field_layout): set blittable to false for Strings
34574
34575         * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34576
34577 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34578
34579         * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34580         first chunk of code to create types at runtime. Code to
34581         handle ReflectedType/DeclaringType. Make reflection handles
34582         domain specific.
34583
34584 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34585
34586         * class.c: set correct name in arrays.
34587
34588 2002-08-13  Dietmar Maurer  <dietmar@ximian.com>
34589
34590         * appdomain.c (mono_domain_transfer_object): make it work with
34591         valuetypes. bug fixes.
34592
34593 2002-08-12  Dick Porter  <dick@ximian.com>
34594
34595         * object.h: Rename some parameters to avoid c++ keywords (Patch
34596         from Joseph Wenninger <kde@jowenn.at>)
34597
34598 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34599
34600         * icall.c: added icall to implement Assembly.GetFile*.
34601
34602 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34603
34604         * reflection.h, reflection.c: code to embed managed resources.
34605
34606 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34607
34608         * class.c: move all the type size stuff into
34609         class_compute_field_layout().
34610
34611 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34612
34613         * class.c: ensure enums have always the correct instance size.
34614         * unicode.c: remove wrong assert.
34615
34616 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34617
34618         * assembly.c: fix mem corruption issue.
34619         * image.h, image.c: added mono_image_get_resource () to access
34620         managed resources.
34621         * icall.c: implemented Assembly.EntryPoint property and some
34622         Managed Resources related internalcalls.
34623
34624
34625 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34626
34627         * image.c, image.h: impemented mono_image_get_entry_point ().
34628         * appdomain.c: use mono_image_get_entry_point.
34629
34630 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34631
34632         * reflection.c: support the object type argument when loading
34633         custom attributes.
34634
34635 2002-08-05  Dietmar Maurer  <dietmar@ximian.com>
34636
34637         * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34638         String as return type.
34639
34640 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34641
34642         * reflection.c: fix encoding of named args for custom attrs to match
34643         the ms implementation. Read them back when instantiating custom
34644         attributes.
34645
34646 2002-08-02  Radek Doulik  <rodo@ximian.com>
34647
34648         * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34649         by Dietmar as quick fix
34650         (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34651         16 as stack size, used on more places as quick fix before Dietmar
34652         will fix it properly
34653
34654 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34655
34656         * object.h, object.c: added accessors for fields and properties.
34657
34658 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34659
34660         * class.c, class.h: made mono_class_get_field_from_name ()
34661         loop on parent types.
34662         Added mono_class_get_property_from_name ().
34663
34664 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34665
34666         * class.c, class.h: move the code to setup the type vtable in its own
34667         function so that it can be reused also for types created at runtime.
34668         Eliminate the "class" identifier from the header file.
34669         * reflection.c: setup the vtable for enums so that we can create
34670         objects for use in SetConstant ().
34671
34672 2002-08-02  Dietmar Maurer  <dietmar@ximian.com>
34673
34674         * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34675         instead of the delegate itself as this pointer (bug #28383)
34676
34677 2002-08-01  Dietmar Maurer  <dietmar@ximian.com>
34678
34679         * marshal.c (mono_marshal_get_managed_wrapper): added return type
34680         conversions.
34681
34682 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34683
34684         * loader.c: don't set the pinvoke bit on icalls.
34685
34686 2002-07-31  Dietmar Maurer  <dietmar@ximian.com>
34687
34688         * debug-helpers.c (mono_method_full_name): only print a number to
34689         indicate wrapper type (so that the output is more readable in traces).
34690
34691 2002-07-30  Dietmar Maurer  <dietmar@ximian.com>
34692
34693         * class.c (mono_class_init): include method override patch from Paolo
34694
34695 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34696
34697         * icall.c: fixed GetTypeCode().
34698
34699 2002-07-29  Dietmar Maurer  <dietmar@ximian.com>
34700
34701         * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34702         use real delegate invoke function to make it work with multicast
34703         delegates (fix bug# 28291).
34704
34705 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34706
34707         * object.c: load constant strings.
34708
34709 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34710
34711         * reflection.c: no magic numbers.
34712         * tabledefs.h: security action enum.
34713
34714 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34715
34716         * assembly.c: fix possible memory corruption.
34717
34718 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34719
34720         * reflection.h, reflection.c: added support for linking resources.
34721         * verify.c: check we have an updated corlib.
34722
34723 2002-07-25  Dietmar Maurer  <dietmar@ximian.com>
34724
34725         * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34726         string arrays.
34727         (mono_marshal_string_array): null terminate unmanaged string arrays.
34728         (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34729
34730 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34731
34732         * icall.c: Type.GetType () can now return also types from the
34733         calling assembly.
34734
34735 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34736
34737         * loader.h, loader.c: stack walking support.
34738         * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34739         GetCallingAssembly.
34740
34741 2002-07-24  Dietmar Maurer  <dietmar@ximian.com>
34742
34743         * marshal.c: added optimisations for blittable types 
34744
34745         * class.c (mono_array_class_get): do not set blittable attribute on arrays
34746         (mono_class_setup_mono_type): set blittable attribute for single
34747         and double.
34748
34749         * marshal.c (mono_string_utf8_to_builder): impl.
34750         (mono_string_builder_to_utf8): impl.
34751         (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34752
34753 2002-07-23  Dietmar Maurer  <dietmar@ximian.com>
34754
34755         * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34756         (mono_marshal_get_managed_wrapper): impl. byref types
34757
34758 2002-07-23  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34759
34760         * icall.c:
34761         (search_method): don't display debug message. 
34762
34763 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34764
34765         * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34766
34767 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34768
34769         * appdomain.c: set the missing filename when throwing exception.
34770
34771 2002-07-22  Dietmar Maurer  <dietmar@ximian.com>
34772
34773         * metadata.c (mono_type_size): code cleanup
34774         (mono_type_stack_size): removed some test code
34775
34776 2002-07-21  Miguel de Icaza  <miguel@ximian.com>
34777
34778         * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34779         mono_get_exception_file_not_found now.
34780
34781         * exception.c (mono_exception_from_name_two_strings): New version
34782         that will call a constructor with two string arguments. 
34783         (mono_get_exception_file_not_found): New helper routine, used to
34784         report file-not-found errors.
34785
34786 2002-07-20  Dick Porter  <dick@ximian.com>
34787
34788         * process.h:
34789         * process.c: Pass file handles to CreateProcess
34790         
34791         * icall.c:
34792         * file-io.h:
34793         * file-io.c: Implemented CreatePipe
34794
34795 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34796
34797         * metadata.c (mono_get_param_info): set alignment for value types
34798
34799 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34800
34801         * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34802         Constify mono_domain_assembly_open().
34803         * loader.c: handle null namespace in icalls.
34804
34805 2002-07-19  Dietmar Maurer  <dietmar@ximian.com>
34806
34807         * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34808         (emit_str_to_ptr_conv): marshal object as structs
34809
34810         * metadata.c (mono_type_to_unmanaged): marshal object as structs
34811
34812         * marshal.c (mono_marshal_get_runtime_invoke): support value types
34813
34814 2002-07-18  Dietmar Maurer  <dietmar@ximian.com>
34815
34816         * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34817         (mono_marshal_get_native_wrapper): we an now return value types
34818
34819 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34820
34821         * verify.c: more checks implemented.
34822
34823 2002-07-17  Dietmar Maurer  <dietmar@ximian.com>
34824
34825         * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34826         (fix bug #27695)
34827         (mono_marshal_get_native_wrapper): allow byref arguments
34828         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34829         impl. PtrToStringXXX methods
34830         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34831         (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34832         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34833         (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34834         (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34835
34836 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34837
34838         * reflection.c: fix buglet in parsing an assembly name.
34839
34840 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34841
34842         * marshal.c (emit_ptr_to_str_conv): first impl.
34843
34844 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34845
34846         * object.c, class.h: cache the vtable in the class as suggested by
34847         vargaz@freemail.hu (Zoltan Varga).
34848
34849 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34850
34851         * class.h, loader.c: added mono_field_from_token().
34852         * verify.c: first cut of type checking code.
34853
34854 2002-07-16  Dietmar Maurer  <dietmar@ximian.com>
34855
34856         * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34857
34858 2002-07-15  Dietmar Maurer  <dietmar@ximian.com>
34859
34860         * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34861         (fix bug #27782)
34862         (mono_marshal_get_remoting_invoke): impl.
34863         (mono_delegate_begin_invoke): impl.
34864         (mono_mb_emit_save_args): impl.
34865         (mono_delegate_end_invoke): impl.
34866         (mono_marshal_get_delegate_begin_invoke):
34867         (mono_marshal_get_delegate_end_invoke):
34868         (mono_marshal_get_delegate_invoke): generate a special name for
34869         those methods (including the signature) and associate them whith
34870         the delegate class. 
34871
34872 2002-07-13  Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34873
34874         * reflection.[ch]: 
34875         (mono_reflection_type_from_name): now it has a MonoImage parameter
34876         which is used as the default image to search the type in. If the image
34877         is NULL or getting the type from it fails, it defaults to corlib.
34878
34879         * icall.c: changed 1 call to mono_reflection_type_from_name to match
34880         new parameter.
34881
34882 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34883
34884         * reflection.c: update the parameter table index.
34885
34886 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34887
34888         * domain.c: don't include the mark byte in the string hash.
34889
34890 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34891
34892         * icall.cs: icall for Type.GetTypeCode ().
34893         * verify: a couple of fixes and disabled local initialization checks.
34894
34895 2002-07-12  Dietmar Maurer  <dietmar@ximian.com>
34896
34897         * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34898
34899         * debug-helpers.c (mono_method_full_name): print the type of the
34900         runtime wrapper
34901
34902         * metadata.c (mono_signature_hash): a hash function for signatures
34903         (mono_signature_hash): better hash algorithm
34904
34905         * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34906
34907         * debug-helpers.c (mono_method_full_name): this can now generate
34908         method names with signatures
34909
34910         * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34911         method dont have this pointers.
34912
34913 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34914
34915         * reflection.c: fixup typebuilder tokens.
34916         * image.c: fix buglet.
34917         * marshal.h: remove whitespace.
34918         * metadata.h, metadata.c: reinstate code that was removed.
34919         * verify.c: handle catch directives and fix another couple of bugs.
34920
34921 2002-07-11  Dietmar Maurer  <dietmar@ximian.com>
34922
34923         * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34924         (mono_marshal_get_native_wrapper): make it comp. with the old code
34925         (mono_marshal_get_native_wrapper): support boolean
34926         (mono_marshal_get_managed_wrapper): support more types
34927
34928 2002-06-25  Dietmar Maurer  <dietmar@ximian.com>
34929
34930         * class.c (class_compute_field_layout): compute class->blittable attribute.
34931
34932 2002-07-09  Dick Porter  <dick@ximian.com>
34933
34934         * threads.c: Make the thread cleaning up cope with threads that
34935         call ExitThread()
34936
34937 2002-07-08  Radek Doulik  <rodo@ximian.com>
34938
34939         * reflection.c (method_encode_code): use non-translated values to
34940         compute finally_start, this fixes exception handling on ppc, yay!
34941
34942         * decimal.h (struct signscale): fix endianess
34943
34944 2002-07-07  Radek Doulik  <rodo@ximian.com>
34945
34946         * reflection.c: swap box_val and not val
34947
34948 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34949
34950         * reflection.c, reflection.h: handle full assembly info in type name.
34951         Handle Type arguments when loading custom attributes.
34952         * icall.c: updated to use new mono_reflection_type_from_name () method.
34953
34954 2002-07-07  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34955
34956         * loader.c:
34957         (method_from_memberref): also print assembly name when method not found.
34958
34959 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34960
34961         * icall.c:
34962         (ves_icall_TypeGetProperties): fixed bug #27473. 
34963
34964 2002-07-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
34965
34966         * reflection.c: display image name and token when cannot find the
34967         .ctor for an attribute.
34968
34969 2002-07-05  Martin Baulig  <martin@gnome.org>
34970
34971         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
34972
34973 2002-07-04  Dick Porter  <dick@ximian.com>
34974
34975         * threads.c (mono_thread_cleanup): Nasty kludge to get this to
34976         compile on mingw.  This will cause mingw builds to not wait for
34977         subthreads to terminate after the main thread does.  I've lodged a
34978         bug with the mingw developers for them to wrap OpenThread().
34979
34980 2002-07-03  Dick Porter  <dick@ximian.com>
34981
34982         * threads.c: Store thread IDs instead of handles, because
34983         GetCurrentThread() returns a pseudohandle and therefore stores
34984         useless values.  mono_thread_cleanup() continues checking the
34985         array of threads until it is empty, to cope with subthreads
34986         spawning new threads after the main thread has finished.
34987
34988         * profiler.h:
34989         * profiler.c:
34990         * profiler-private.h: Pass the thread ID to thread profiler
34991         functions, instead of a handle
34992
34993 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34994
34995         * verify.c: fixes to make it more usable.
34996         * pedump.c: added --verify code to verify IL code in an assembly.
34997
34998 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34999
35000         * reflection.c: turn errors into warnings to allow compiling corlib.
35001
35002 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35003
35004         * reflection.c: add special cases to compile corlib.
35005
35006 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35007
35008         * reflection.c: handle properties with only a set method.
35009
35010 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35011
35012         * opcodes.h: add enum with opcodes in opval order.
35013
35014 2002-07-01  Dick Porter  <dick@ximian.com>
35015         
35016         * object.h:
35017         * object.c (mono_runtime_run_main): Removed unneeded argument
35018
35019 2002-06-28  Martin Baulig  <martin@gnome.org>
35020
35021         * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35022
35023 2002-06-27  Dick Porter  <dick@ximian.com>
35024
35025         * threads.c: Store the handle in both the parent thread and in the
35026         subthread, to minimise the time between starting a new thread and
35027         storing its ID.
35028
35029 2002-06-26  Dick Porter  <dick@ximian.com>
35030
35031         * appdomain.c (mono_runtime_cleanup): Close the socket library
35032         after all the threads have finished, not before
35033
35034 2002-06-26  Martin Baulig  <martin@gnome.org>
35035
35036         * debug-symfile.c (mono_debug_find_source_location): Added
35037         `guint32 *line_number' argument.  If it's not NULL, store the line number
35038         there and return the file name without the line number.
35039
35040 2002-06-25  Dick Porter  <dick@ximian.com>
35041
35042         * icall.c:
35043         * process.h:
35044         * process.c: Process forking and other support functions
35045
35046 2002-06-25  Dick Porter  <dick@ximian.com>
35047
35048         * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35049         things dont happen when the image is closed.
35050         (mono_image_lookup_resource): Walk the resource section looking
35051         for a particular entry
35052
35053         * cil-coff.h: PE resource section decoding
35054
35055 2002-06-25  Dick Porter  <dick@ximian.com>
35056         
35057         * assembly.h:
35058         * assembly.c: 
35059         (mono_assembly_foreach): Accessor functions to walk the list of
35060         loaded assemblies
35061         (mono_assembly_set_main):
35062         (mono_assembly_get_main): Process methods need to know which
35063         assembly is the "main" one
35064
35065         * object.c (mono_runtime_run_main): Record the main assembly
35066
35067         * debug-helpers.c: Fix typo
35068
35069 2002-06-24  Dietmar Maurer  <dietmar@ximian.com>
35070
35071         * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35072         (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35073
35074 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35075
35076         * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35077
35078 2002-06-21  Miguel de Icaza  <miguel@ximian.com>
35079
35080         * image.c (do_mono_image_open): Initialize reference count,
35081         otherwise we leak the MonoImage.
35082
35083 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35084
35085         * reflection.c: small tweak to handle self-hosting.
35086
35087 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35088
35089         * reflection.c: fix type name parse code.
35090
35091 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35092
35093         * reflection.c: break out of the loop.
35094         * image.c: special case corlib.
35095
35096 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35097
35098         * reflection.c: add all the custom attrs at the end to ensure the
35099         ctors have been properly initialized when the attributes are defined
35100         in the current assembly.
35101
35102 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35103
35104         * reflection.c: handle correctly multiple-nested types.
35105
35106 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35107
35108         * row-indexes.h: fix typos.
35109         * reflection.c: adjust for typos and fix method_def_or_ref
35110         encoding in MethodImpl table.
35111
35112 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35113
35114         * reflection.c: fix entry point patching (thanks Serge!).
35115
35116 2002-06-18  Dietmar Maurer  <dietmar@ximian.com>
35117
35118         * verify.c: add check for System.Exception
35119
35120 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35121
35122         * image.c, class.c: minifix for code just c&p'ed.
35123         * reflection.c: warning fix.
35124         * object.h, loader.h, domain.c: load also StringBuilder.
35125
35126 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35127
35128         * marshal.h, marshal.c: some support code to handle complex marshaling.
35129
35130 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35131
35132         * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35133         Better signatures with vtable error dump.
35134
35135 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35136
35137         * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35138
35139 2002-06-17  Dietmar Maurer  <dietmar@ximian.com>
35140
35141         * icall.c (ves_icall_Type_GetField): impl.
35142
35143 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35144
35145         * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35146         to retrieve a marshal description blob for a field or param.
35147
35148 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35149
35150         * reflection.h, reflection.c: change order of nested type emission
35151         to avoid table corruption. The NestedTypes table is sorted.
35152         * icall.c: change order of GetConstructor results to workaround mcs bug.
35153
35154 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35155
35156         * reflection.h, reflection.c: handle field and param marshal
35157         information.
35158
35159 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35160
35161         * icall.c, marshal.c marshal.h: more Marshal class implementation.
35162
35163 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35164
35165         * reflection.c: fix call convention.
35166
35167 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35168
35169         * reflection.h, reflection.c: mono_image_get_memberref_token()
35170         takes a type instead of a class, now. Added
35171         mono_image_get_array_token() to create tokens for the special
35172         multi-dim array methods.
35173
35174 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35175
35176         * assembly.c: handle modules (no assembly table). Split
35177         loading references in its own function.
35178         * class.c: handle moduleref resolution scope.
35179         * image.c, image.h: cache module name in image.
35180
35181 2002-06-07  Martin Baulig  <martin@gnome.org>
35182
35183         * reflection.c (mono_image_get_type_info): Only add a class layout entry
35184         if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35185
35186 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35187
35188         * icall.c: more signature fixes that used uint instead of int.
35189
35190 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35191
35192         * reflection.c: fixed signature of field refs.
35193
35194 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35195
35196         * class.c, reflection.c: handle typerefs of nested types
35197         (both on read and when writing files).
35198
35199 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35200
35201         * icall.c: fix method signatures that tried to workaround the previous
35202         typo, d'oh!
35203
35204 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35205
35206         * debug-helpers.c: fix typo.
35207
35208 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35209
35210         * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35211         rewrote the PE/COFF writing code (our programs are understood by the
35212         ms runtime, now).
35213
35214 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35215
35216         * gc.c, gc.h, icall.c: weakreference support.
35217
35218 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35219
35220         * Makefile.am, mono-config.c: use $(sysconfdir).
35221
35222 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35223
35224         * icall.c: changed default precision of Double.ToString() to 15.
35225         Fixed memory leak. Unified with Single.ToString.
35226
35227 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35228
35229         * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35230
35231 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35232
35233         * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35234         gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35235         warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35236         and myself.
35237
35238 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35239
35240         * debug-symfile.c, sysmath.c: yet more compilation fixes.
35241
35242 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35243
35244         * reflection.c, socket-io.c: more compilation fixes.
35245
35246 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35247
35248         * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35249         domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35250         unicode.c: warning and compiler compatibility fixes.
35251
35252 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35253
35254         * class.h, metadata.c: fixed warnings/compilation errors.
35255
35256 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35257
35258         * Makefile.am, mono-config.c, mono-config.h: configuration file
35259         support routines.
35260         * loader.c, loader.h: make Dll mapping configurable at runtime in the
35261         config file. Export methods to insert and lookup mappings.
35262
35263 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35264
35265         * reflection.c: handle types and boxed objects in custom attr
35266         constructors.
35267
35268 2002-05-30  Martin Baulig  <martin@gnome.org>
35269
35270         * debug-symfile.c
35271         (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35272
35273 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35274
35275         * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35276         to lookup the implmap row for a P/Invoke method.
35277         * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35278         P/Invoke method from the runtime on an as needed basis.
35279
35280 2002-05-28  Dietmar Maurer  <dietmar@ximian.com>
35281
35282         * metadata.c (mono_metadata_parse_signature): impl.
35283
35284 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35285
35286         * class.c: handle .pack directive.
35287
35288 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35289
35290         * object.c: initialize static fields with RVA data.
35291
35292 2002-05-25  Martin Baulig  <martin@gnome.org>
35293
35294         * debug-symfile.c
35295         (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35296
35297 2002-05-24  Martin Baulig  <martin@gnome.org>
35298
35299         * debug-symfile.c
35300         (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35301         (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35302         `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35303
35304 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35305
35306         * object.c: special case string ctros in invoke.
35307         * gc.c: silly whitespace changes.
35308
35309 2002-05-23  Dietmar Maurer  <dietmar@ximian.com>
35310
35311         * threadpool.[ch]: impl. a threadpool that can
35312         be used by mint and mono.
35313
35314 2002-05-22  Martin Baulig  <martin@gnome.org>
35315
35316         * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35317         The first argument is now a `MonoReflectionModuleBuilder *', the return
35318         value is a `MonoReflectionModuleBuilder *'.  Use the AssemblyBuilder's
35319         `methods' field to get the method builder.  The `token' argument is the
35320         unfixed token.
35321
35322         * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35323         invalid characters instead of g_assert_not_reached()ing.  This seems
35324         to be the behaviour of mscorlib.
35325
35326 2002-05-22  Dietmar Maurer  <dietmar@ximian.com>
35327
35328         * object.c (mono_runtime_invoke_array): applied patch from Rachel
35329         Hestilow to fix bug #25104
35330
35331 2002-05-21  Martin Baulig  <martin@gnome.org>
35332
35333         * debug-symfile.c (mono_debug_find_source_location): New function.
35334         Looks up an IL offset in the line number table and returns the source
35335         location as a string.
35336
35337 2002-05-21  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35338
35339         * icall.c:
35340         (mono_double_ToStringImpl): changed %f by %g until we have something
35341         better.
35342
35343 2002-05-21  Nick Drochak  <ndrochak@gol.com>
35344
35345         * icall.c : Use different name for Math.Pow's icall.  Needed to check
35346         parameters first in C#.
35347
35348 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35349
35350         * icall.c, reflection.h: added icall to get info about an event.
35351
35352 2002-05-20  Radek Doulik  <rodo@ximian.com>
35353
35354         * object.c (mono_value_box): don't use memcpy for boxing on BIG
35355         endian
35356         (mono_value_box): don't use memcpy for small sizes on
35357         architectures with unaligned access
35358
35359 2002-05-20  Martin Baulig  <martin@gnome.org>
35360
35361         * reflection.c (mono_reflection_setup_internal_class): Don't crash
35362         if `tb->parent == NULL'.
35363         (mono_reflection_create_internal_class): New function.  This is
35364         called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35365         for enum types.
35366
35367         * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35368         New interncall.
35369
35370 2002-05-19  Martin Baulig  <martin@gnome.org>
35371
35372         * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35373         argument to get the length, don't default to the array length.
35374
35375 2002-05-18  Miguel de Icaza  <miguel@ximian.com>
35376
35377         * assembly.c (mono_assembly_setrootdir): New function used to
35378         override the MONO_ASSEMBLIES directory.
35379
35380 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35381
35382         * icall.c: ValueType_GetHashCode() initialize local var.
35383
35384 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35385
35386         * reflection.c: sort custom attributes table.
35387
35388 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35389
35390         * reflection.c: support named args in custom attributes (write support).
35391
35392 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35393
35394         * reflection.c: fix finally position calculation.
35395
35396 2002-05-15  Radek Doulik  <rodo@ximian.com>
35397
35398         * reflection.c: fixed endianess at many places
35399
35400         * icall.c (ves_icall_InitializeArray): comment out debug msg
35401
35402 2002-05-15  Dietmar Maurer  <dietmar@ximian.com>
35403
35404         * object.c (mono_unhandled_exception): new function to handle
35405         unhandled exceptions.
35406         (mono_unhandled_exception): call the UnhandledException event.
35407         (mono_runtime_delegate_invoke): impl.
35408
35409 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35410
35411         * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35412         returns the RVA, not the direct pointer to the data. Handle the case
35413         when the class size is fixed.
35414
35415 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35416
35417         * reflection.c: fix some endianess issues.
35418
35419 2002-05-14  Dietmar Maurer  <dietmar@ximian.com>
35420
35421         * object.c (mono_runtime_invoke): is now able to catch exceptions.
35422
35423         * threads.c (mono_thread_init): added a callback which is invoked
35424         at thread start.
35425
35426 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35427         
35428         * icall.c: make GetHashCode return non-negative values.
35429
35430 2002-05-14  Dan Lewis  <dihlewis@yahoo.co.uk>
35431
35432         * object.c, icall.c, gc.c: revert to address-based hashcode.
35433
35434 2002-05-13  Miguel de Icaza  <miguel@ximian.com>
35435
35436         * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35437
35438 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35439
35440         * icall.c, class.c: special case <Module>.
35441
35442 2002-05-13  Dan Lewis  <dihlewis@yahoo.co.uk>
35443
35444         * icall.c: fix bug in GetNow().
35445
35446 2002-05-11  Dietmar Maurer  <dietmar@ximian.com>
35447
35448         * object.c (mono_runtime_class_init): make sure that we call all
35449         static class constructors.
35450
35451 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35452
35453         * reflection.c: sort methodsemantics table.
35454
35455 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35456
35457         * reflection.h, reflection.c: honour init locals setting.
35458
35459 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35460
35461         * icall.c: copied Double ToStringImpl for Single ToStringImpl
35462
35463 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35464
35465         * reflection.c: support ContructorBuilders in attribute blob creation.
35466
35467 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35468
35469         * reflection.c: some changes to build a binary that can be run
35470         directly in windows.
35471
35472 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35473
35474         * loader.c: print a big message when an icall can't be found.
35475
35476 2002-05-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35477
35478         * string-icalls.c: fix bug 24248.
35479
35480 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35481
35482         * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35483         icall.c, reflection.h: separate assembly loading by pathname and by
35484         assembly name. Use the MONO_PATH env var to search for assemblies.
35485
35486 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35487
35488         * assembly.c, image.h: add some support for assemblies
35489         with multiple modules.
35490         * class.c, class.h: export mono_class_from_typeref().
35491         * loader.c: remove duplicated code and use mono_class_from_typeref(),
35492         instead.
35493
35494 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35495
35496         * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35497         documentation says (the ECMA one is correct).
35498
35499 2002-05-02  Dick Porter  <dick@ximian.com>
35500
35501         * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35502         Don't name the synchronisation mutex.
35503
35504 2002-04-30  Jeffrey Stedfast  <fejj@ximian.com>
35505
35506         * rand.c
35507         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35508         Make the prototypes match.
35509         (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35510         Same.
35511
35512         * icall.c
35513         (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35514         systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35515         all systems have tm.tm_zone, so use strftime() with %Z to print
35516         the timezone abreviation into a temp string.
35517
35518         * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35519         rather than mono_array_addr() on a MonoString on Big Endian
35520         machines.
35521
35522 2002-04-30  Dietmar Maurer  <dietmar@ximian.com>
35523
35524         * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35525         fix bug 24041
35526
35527 2002-04-30  Dick Porter  <dick@ximian.com>
35528
35529         * socket-io.c: Cope with SOCKET being an integer rather than a
35530         pointer now.
35531
35532         * threads.c: Added Thread_free_internal, to deal with thread
35533         handle cleanup.  Moved calls to handle_store() and handle_remove()
35534         to start_wrapper(), so each can only be called once.  Allocate
35535         synchronisation blocks with GC_malloc(), and use GC finalisation
35536         to close the handles.
35537
35538         * icall.c: added System.Threading.Thread::Thread_free_internal
35539
35540 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35541
35542         * icall.c: support Environment.Exit, CommandLineArgs().
35543
35544 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35545
35546         * object.c, object.h: added mono_runtime_run_main () and
35547         mono_runtime_get_main_args () for use in System.Environment.
35548
35549 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35550
35551         * gc.c: fix thinko, enable actual finalization since the jit is now
35552         fixed.
35553
35554 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35555
35556         * gc.c, object.c: take into account that an object may be offset wrt the address
35557         returned by GC_malloc().
35558
35559 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35560
35561         * image.c: handle files without entries in the assembly table (modules).
35562
35563 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35564
35565         * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow 
35566         mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35567         allowed to be null when it's System.Object class setup.
35568
35569 2002-04-27  Martin Baulig  <martin@gnome.org>
35570
35571         * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35572         if `tb->parent == NULL' rather than crashing.
35573
35574 2002-04-28  Nick Drochak  <ndrochak@gol.com>
35575
35576         * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error.  Was
35577         calling acos() where asin() should have been called.
35578
35579 2002-04-26  Martin Baulig  <martin@gnome.org>
35580
35581         * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35582         instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35583         there's a subdirectory called `System', but we don't want to read that
35584         subdirectory as an assembly.
35585
35586 2002-04-25  Martin Baulig  <martin@gnome.org>
35587
35588         * debug-symfile.c: Reflect latest MonoString changes.
35589
35590 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35591
35592         * rand.c, rand.h: instance method icalls need to have an explicit
35593         this pointer as first argument in the C implementation.
35594
35595 2002-04-25  Nick Drochak <ndrochak@gol.com>
35596
35597         * icall.c: Fix typo in map for GetNonZeroBytes
35598
35599 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35600
35601         * string-icalls.c : String does now passes unit tests without any 
35602         errors, the following changes has been made:
35603         
35604         Implemented replace methods.
35605         Renaming of methods to (try) follow the standard.
35606         Fixed compare ordinal
35607         Made all memory allocated directly to function instead of via icall function.
35608         Small performance fix in is_in_array function
35609                         
35610  (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35611
35612         c (mono_string_Internal_ctor_charp_int_int):
35613         (mono_string_Internal_ctor_sbytep_int_int):  Removed check for
35614         sindex < 0, throw ArgumentOutOfRangeException instead of
35615         ArgumentNullException.
35616
35617         Added new check for length == 0, however
35618         I need to make it return String.Empty from the C code.
35619         
35620         (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35621         that calculate the length for us here.
35622         
35623         (mono_string_Internal_ctor_sbytep_int_int): Replaced
35624         mono_string_new_utf16 with mono_string_new, since value is utf8.
35625
35626 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35627
35628         * object.c: register the object for finalization if needed.
35629         Allocate one more char in the string for the terminating 0 char.
35630
35631 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35632
35633         * class.c, class.h, image.c: check if a type implemenst a destructor.
35634         Use the proper key for array class lookups.
35635         * icall.c: register the icalls in the System.GC class.
35636         * gc.c, gc.h: GC-related functions and icalls.
35637
35638 2002-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35639
35640         * icall.c:
35641         * socket-io.c:
35642         * unicode.c: free some strings gotten from mono_string_to_utf8 and
35643         changed a couple of free () by g_free ().
35644
35645         * decimal.c: one-liner in the comments for decimal2string ().
35646
35647 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35648
35649         * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35650
35651 2002-04-24      Patrik Torstensson <patrik.torstensson@labs2.com>
35652
35653         * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35654         * object.c (mono_runtime_invoke_array) : handle null in params
35655
35656 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35657
35658         * string-icalls.c: fixed bug in split (one off bug)
35659
35660 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35661
35662         * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35663         * icalls.c: added String::Equals as internal method
35664
35665 2002-04-23      Patrik Torstensson <patrik.torstensson@labs2.com>
35666
35667         * threads.c: fixed bug in the double interlocked functions
35668
35669 2002-04-22      Patrik Torstensson <patrik.torstensson@labs2.com>
35670
35671         * threads.c: implemented all of the new interlocked icalls.
35672         * string-icalls.c: fix a bug in insert.
35673         * icalls.c: added the icalls for interlocked, removed old string functions.
35674         
35675 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35676
35677         * loader.c: fix off-by-one error when reading argument names.
35678
35679 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35680
35681         * profiler.c: win32 counter implementation (untested).
35682         * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35683         (the latter needs testing and more complete impl. from win32 folks).
35684
35685 2002-04-21  Dan Lewis  <dihlewis@yahoo.co.uk>
35686
35687         * object.c: mono_array_new_full workaround mono_array_class_get
35688         problem.
35689
35690 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35691
35692         * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35693         * object.h (mono_string_chars): Changed casting type.
35694
35695 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35696
35697         * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35698                            method signatures to use gunichar2 instead of gint16.
35699
35700 2002-04-20  Dan Lewis  <dihlewis@yahoo.co.uk>
35701
35702         * object.h, object.c: domain-specific versions of mono_object_new and
35703         mono_array_new.
35704
35705 2002-04-20  Dietmar Maurer  <dietmar@ximian.com>
35706
35707         * object.c: changed String layout
35708
35709         * string-icalls.c (mono_string_Internal_ctor_chara): added
35710         internal string constructors.
35711
35712 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35713
35714         * threads.c: pass 'this' to the thread start routine.
35715
35716 2002-04-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35717
35718         * string-icalls.c: fix IndexOf and LastIndexOf. Now
35719         InternalCompareStr don't call twice mono_string_cmp_char for the last
35720         character. Improved performance in mono_string_cmp_char.
35721
35722 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35723
35724         * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35725         code into its own library: libmonoruntime.
35726
35727 2002-04-19  Dan Lewis  <dihlewis@yahoo.co.uk>
35728
35729         * object.h, object.c: changed array format so that szarrays do not
35730         require a bounds structure.
35731         * icall.c, appdomain.c: support for new szarray format.
35732
35733 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35734
35735         * metadata.c: compare also the retuns type when comparing signatures:
35736         we didn't do this as an optimization since really overloaded methods
35737         must differ also in the arguments, but this doesn't work with
35738         low-level IL code (or when using explicit conversion operators: see
35739         bug#23498 for an example).
35740
35741 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35742
35743         * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35744
35745 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35746
35747         * icall.c: make MonoType::GetElementType its own icall.
35748
35749 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35750
35751         * icall.c: remove MonoMethod_get_Name().
35752         * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35753         object.
35754
35755 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35756
35757         * string-icalls.c: optimized a few methods.
35758
35759 2002-04-17      Patrik Torstensson <patrik.torstensson@labs2.com>
35760
35761         * icall.c: added all new string internal calls
35762         * string-icalls.c: added, new string internal call implementation.
35763         * object.c: added mono_string_new_size for allocating a string a size
35764
35765 2002-04-17  Dietmar Maurer  <dietmar@ximian.com>
35766
35767         * object.c (mono_object_isinst): use the same code as in the
35768         optimized x86 version.
35769
35770 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35771
35772         * profiler.c: TSC-based timer code (faster and more accurate).
35773         Not hooked up in configure, yet (set USE_X86TSC to 1).
35774
35775 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35776
35777         * profiler.c, profiler.h: track time spent compiling methods.
35778         * threads.c: track thread creation/destruction.
35779
35780 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35781
35782         * profiler.c, profiler.h, profiler-private.h: profiling interface
35783         and sample implementation. Moved here so that it can be used also by
35784         the jit.
35785
35786 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35787
35788         * reflection.c, reflection.h: keep types and other handles separate in
35789         the hash tables for referred tokens. Add guid for modules.
35790
35791 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35792
35793         * assembly.c: fix bugs found with valgrind.
35794         * metadata.h, metadata.c: added mono_metadata_guid_heap().
35795
35796 2002-04-14      Patrik Torstensson <patrik.torstensson@labs2.com>
35797
35798         * threads: added icall support for getting current domain for
35799                    the thread.
35800  
35801 2002-04-13  Martin Baulig  <martin@gnome.org>
35802
35803         * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35804         (MonoDebugVarInfo): Added `index' field for register based addresses.
35805         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35806         (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35807         `MonoDebugVarInfo *params' and `guint32 this_offset' with
35808         `MonoDebugVarInfo *this_var'.
35809
35810         * debug-symfile.c (relocate_variable): New static function to write
35811         a location description for a local variable or method parameter.
35812
35813 2002-04-12  Martin Baulig  <martin@gnome.org>
35814
35815         * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35816         stack offset and begin/end scope address of a local variable.
35817         (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35818         'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35819         (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35820
35821         * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35822         Added new relocation types for start/end scope of a local variable.
35823
35824 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35825
35826         * object.h: add mono_object_domain() macro.
35827         * reflection.c: handle typespecs.
35828         * icall.c: MonoMethod::get_Name() implementation.
35829
35830 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35831
35832         * icall.c: String::GetHashCode() icall implementation.
35833
35834 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35835
35836         * icall.c: String::IndexOfAny icall.
35837         * object.c, object.h: make array->max_length more useful.
35838         Intrduced mono_object_class() and mono_string_length() macros.
35839
35840 2002-04-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
35841
35842         * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35843         instead of g_unichar_isdigit.
35844
35845 2002-04-11  Nick Drochak  <ndrochak@gol.com>
35846
35847         * icall.c: Implement a simple Double.ToString().
35848
35849 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35850
35851         * appdomain.h: only io-layer.h is supposed to be included.
35852         * icall.c: explicitly import environ. Fix warning.
35853
35854 2002-04-10  Nick Drochak  <ndrochak@gol.com>
35855
35856         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35857                 return true even if it's not Daylight Savings time.
35858                 Only return false for the case where the function isn't
35859                 implemented for a plaform (read Windows).
35860
35861 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35862
35863         * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35864         data with a mutex.
35865
35866 2002-04-09  Dietmar Maurer  <dietmar@ximian.com>
35867
35868         * mempool.c (mono_mempool_alloc): only use g_malloc when
35869         absolutely necessary.
35870
35871 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35872
35873         * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35874
35875         * class.c (mono_class_vtable): use domain mempool to allocate vtable
35876         (mono_class_proxy_vtable): use domain mempool
35877
35878 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35879
35880         * appdomain.h, appdomain.c: split initialization that requires the
35881         execution engine support into mono_runtime_init().
35882
35883 2002-04-08  Dietmar Maurer  <dietmar@ximian.com>
35884
35885         * class.c (mono_class_init): don't include vtable inside MonoClass
35886         to save some memory, gather some statistics.
35887         (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35888
35889 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35890
35891         * icall.c: internalcall implementation for ValueType.Equals().
35892
35893 2002-04-06  Dietmar Maurer  <dietmar@ximian.com>
35894
35895         * object.c (mono_message_init): moved 
35896         (mono_runtime_exec_main): new arch. independent impl.
35897         (mono_runtime_invoke_array): new method - like
35898         mono_runtime_invoke, but you can pass an array of objects.
35899         (mono_remoting_invoke): new arch. independent impl.
35900         (mono_message_invoke): new arch. independent impl.
35901         (mono_runtime_class_init): new arch. independent impl.
35902         (mono_runtime_object_init): new arch. independent impl.
35903
35904 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35905
35906         * metadata.c, object.c, reflection.c: documented the exported
35907         functions.
35908
35909 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35910
35911         * icall.c: simpler code to pass the assembly builder data to corlib.
35912         Implement GetNestedTypes() internalcall.
35913
35914 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35915
35916         * class.c: warn if a type can't be loaded.
35917
35918 2002-04-04  Dietmar Maurer  <dietmar@ximian.com>
35919
35920         * image.h: typedef MonoImageOpenStatus
35921         * types.h: removed unused file
35922         
35923 2002-04-04  Dan Lewis  <dihlewis@yahoo.co.uk>
35924
35925         * icall.c: Enum_ToObject accepts enum value arguments.
35926
35927 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35928
35929         * class.c: move initialization of properties, events and nested
35930         classes, so that they happen for interfaces, too.
35931
35932 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35933
35934         * icall.c: cleanup some ugly casts in Array_SetValue*.
35935
35936 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35937
35938         * icall.c: the values array fro enums is of the correct type, now.
35939         Implement (correctly) getFullName instead of assQualifiedName for
35940         MonoType.
35941         * reflection.h, reflection.c: added mono_type_get_name ().
35942
35943 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35944
35945         * assembly.c, image.h: for each MonoImage, record from wich assembly
35946         it was loaded.
35947         * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35948         Make Type.Assembly work.
35949
35950 2002-04-03  Dietmar Maurer  <dietmar@ximian.com>
35951
35952         * debug-symfile.h: use char* instead of gpointer to avoid
35953         unnecessary casts.
35954
35955         * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35956
35957         * icall.c (ves_icall_InternalExecute): impl. FielSetter
35958         (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35959
35960 2002-03-30  Dietmar Maurer  <dietmar@ximian.com>
35961
35962         * icall.c (mono_message_init): impl. (code cleanup)
35963         (ves_icall_InternalExecute): impl. FieldGetter
35964
35965         * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
35966         defined we call all (non-static)methods through the vtable. 
35967
35968 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
35969
35970         * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
35971         finalizer even though the memory is still referenced (and the chunk of
35972         memory is not freed).
35973
35974 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
35975
35976         * assembly.c: fix brokeness.
35977
35978 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
35979
35980         * class.c: kill some warnings. Check explicit interface method
35981         implementation also without considering the namespace.
35982         Load also literal strings in static class data.
35983
35984 2002-03-29  Miguel de Icaza  <miguel@ximian.com>
35985
35986         * assembly.c (default_assembly_name_resolver): Kill memory leak. 
35987         (default_assembly_name_resolver): Make the resolver take the
35988         "base" directory where the assembly was originally defined, so we
35989         can load DLLs that are in the same directory as the assembly that
35990         is being referenced.
35991
35992 2002-03-28  Dick Porter  <dick@ximian.com>
35993
35994         * file-io.h: 
35995         * file-io.c:
35996         * socket-io.c: 
35997         * unicode.h: 
35998         * unicode.c: Warning cleanups
35999
36000 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36001
36002         * object.h, reflection.h: use the correct type instead of MonoObject.
36003
36004 2002-03-28  Martin Baulig  <martin@gnome.org>
36005
36006         * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36007         (mono_debug_update_symbol_file): Initialize classes if necessary.
36008
36009 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36010
36011         * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36012         rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36013
36014 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36015
36016         * assembly.h: fix function prototype.
36017         * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36018         * mono-endian.h: use const cast.
36019
36020 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36021
36022         * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36023
36024 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36025
36026         * loader.c: don't assert when a typeref can't be loaded, give
36027         a chance to the runtime to trow an exception instead.
36028         * loader.h: fix warning.
36029
36030 2002-03-28  Dietmar Maurer  <dietmar@ximian.com>
36031
36032         * class.c (mono_class_proxy_vtable): added proxy support
36033
36034 2002-03-27  Dan Lewis <dihlewis@yahoo.co.uk>
36035
36036         * icall.c: removed last of PAL calls, added System.Environment
36037         * file-io.h, file-io.c: MonoIO implementation
36038         * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36039
36040 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36041
36042         * appdomain.c: do not use the byte marker in ldstr table lookup.
36043         * debug-helpers.c: allow two ':' to separate class and method name.
36044         * object.c: allocate arrays bounds with the GC, too.
36045         * verify: add a few more checks.
36046
36047 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36048
36049         * reflection.c: output also literal strings. Allocate parameter data
36050         with GC_malloc() (thanks, Martin, for catching this!).
36051
36052 2002-03-26  Martin Baulig  <martin@gnome.org>
36053
36054         * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36055         include the `this' offset in the `param_offsets'.
36056
36057 2002-03-25  Martin Baulig  <martin@gnome.org>
36058
36059         * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36060         mono_debug_get_class() function to get the classes. Added new
36061         relocation types for arrays and strings.
36062         (mono_debug_get_class): New static function to search in all
36063         referenced assemblies for a metadata token.
36064
36065         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36066
36067 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36068
36069         * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36070         hold gc-allocated objects. Make the string heap a stream like the
36071         others. Removed duplicated code when writing stream info.
36072         Added asserts to catch possible buffer overflows. Set the sorted map
36073         for tables that need sorting. Added some documentation.
36074
36075 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36076
36077         * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table 
36078         for interned strings and vtables.
36079
36080 2002-03-24  Martin Baulig  <martin@gnome.org>
36081
36082         * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36083         it in the array since it was created with g_slist_prepend().
36084
36085 2002-03-24  Martin Baulig  <martin@gnome.org>
36086
36087         * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36088         to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36089         (mono_debug_method_from_token): Renamed to
36090         ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36091         (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36092
36093         * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36094         relocation types.
36095
36096         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36097
36098 2002-03-24  Martin Baulig  <martin@gnome.org>
36099
36100         * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36101         (mono_debug_method_from_token): New func.
36102
36103         * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36104         New interncall, calls mono_debug_local_type_from_signature().
36105         (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36106         calls mono_debug_method_from_token().
36107
36108 2002-03-23  Martin Baulig  <martin@gnome.org>
36109
36110         * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36111         specifies the number of bytes to be converted, not the array size.
36112         Return the number of chars, not the number of bytes.
36113         (ves_icall_iconv_get_chars): The `byteCount' argument
36114         specifies the number of bytes to be converted, not the array size.
36115
36116 2002-03-23  Martin Baulig  <martin@gnome.org>
36117
36118         * reflection.h (MonoReflectionSigHelper): New type.
36119
36120         * reflection.c (mono_reflection_sighelper_get_signature_local),
36121         (mono_reflection_sighelper_get_signature_local): New functions.
36122
36123         * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36124         (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36125         interncalls.
36126
36127 2002-03-23  Martin Baulig  <martin@gnome.org>
36128
36129         * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36130         is_writeable is set.
36131         (mono_raw_buffer_update): New function to write the modified map
36132         back to disk.
36133
36134         * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36135
36136         * debug-symfile.c (mono_debug_update_symbol_file): Call
36137         mono_raw_buffer_update() when done writing.
36138
36139 2002-03-23  Martin Baulig  <martin@gnome.org>
36140
36141         * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36142
36143         * debug-symfile.c: Added support for arguments and local variables.
36144
36145 2002-03-23  Dick Porter  <dick@ximian.com>
36146
36147         * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36148         protected by ifdefs, hence breaking the w32 build.
36149
36150 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36151
36152         * object.c: implement is_interned() the right way.
36153
36154 2002-03-21  Martin Baulig  <martin@gnome.org>
36155
36156         * debug-symfile.[ch]: New files to handle debugging information
36157         files. There's also support to dynamically update these symbol
36158         files to include machine dependent information.
36159
36160 2002-03-20  Dietmar Maurer  <dietmar@ximian.com>
36161
36162         * threads.c (mono_thread_create): new function to create thread
36163         from C
36164
36165 2002-03-20  Martin Baulig  <martin@gnome.org>
36166
36167         * icall.c (ves_icall_InternalInvoke): Create a new object if the
36168         method is a constructor.
36169         (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36170         points to ves_icall_InternalInvoke().
36171
36172 2002-03-20  Dan Lewis <dihlewis@yahoo.co.uk>
36173
36174         * file-io.c: Flush shouldn't throw exceptions.
36175
36176 2002-03-19  Dan Lewis <dihlewis@yahoo.co.uk>
36177
36178         * file-io.c: FileStream flush support; FileSetLength now
36179         restores file pointer.
36180
36181 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36182
36183         * class.c: set image for pointer classes.
36184
36185 2002/03/19  Nick Drochak <ndrochak@gol.com>
36186
36187         * sysmath.c: Forgot one.
36188
36189 2002-03-18  Miguel de Icaza  <miguel@ximian.com>
36190
36191         * sysmath.c: Avoid redefining existing names.
36192
36193 2002-03-18  Dan Lewis <dihlewis@yahoo.co.uk>
36194
36195         * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36196         handled by runtime as icall rather than dllimport from libm.so
36197         * file-io.c, file-io.h: fixed handle argument type.
36198
36199 2002-03-18  Dick Porter  <dick@ximian.com>
36200
36201         * reflection.c (mono_image_get_type_info): rename interface to
36202         iface, because of "#define interface struct" on windows.
36203
36204 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36205
36206         * class.c, class.h: rename and export mono_ptr_class_get().
36207         * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36208         * reflection.c, reflection.h, icall.c: better/saner type name
36209         parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36210         method signatures.
36211
36212 2002-03-14  Dietmar Maurer  <dietmar@ximian.com>
36213
36214         * class.c (mono_class_init): removed hardcoded GHC_SLOT
36215
36216         * icall.c (ves_icall_InternalInvoke): impl.
36217
36218 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36219
36220         * reflection.c: output the interface map table, too.
36221
36222 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36223
36224         * class.c (class_compute_field_layout): separate computation of 
36225         static field layout
36226
36227 2002-03-12  Dan Lewis <dihlewis@yahoo.co.uk>
36228
36229         * icall.c: added System.Buffer support.
36230         * file-io.c: moved file icalls from PAL to FileStream.
36231
36232 2002-03-12  Dietmar Maurer  <dietmar@ximian.com>
36233
36234         * icall.c (ves_icall_System_Object_GetHashCode): impl.
36235
36236 2002-03-11  Dietmar Maurer  <dietmar@ximian.com>
36237
36238         * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36239
36240 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36241
36242         * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36243
36244 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36245
36246         * debug-helpers.{c,h}: moved here from monograph some useful functions
36247         to locate a method by name/signature in a class or image. Included
36248         also a small and flexible IL disassembler.
36249
36250 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36251
36252         * reflection.c: fixup tokens in methods with small header size, too.
36253
36254 2002-03-08  Dietmar Maurer  <dietmar@ximian.com>
36255
36256         * object.c (mono_string_to_utf8): remove assert(!error), instead
36257         print a warning. 
36258
36259 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36260
36261         * icall.c: update to the new mono_Array_class_get interface.
36262
36263 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36264
36265         * appdomain.c, object.c: Boehm-GC enable.
36266         * icall.c: make get_data_chunk() support split data requests.
36267         Ensure a class is initialized in more cases. Return only the first
36268         property found in GetProperties() or the compiler gets confused. 
36269         Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36270         * reflection.h, reflection.c: add fixup mechanism for field and method
36271         tokens. Initialize assembly->typeref in a single place. Output
36272         properties after events. Support custom attributes for events, too.
36273         Typo fix for paramter custom attrs.
36274
36275 2002-03-07  Martin Baulig  <martin@gnome.org>
36276
36277         * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36278
36279 2002-03-07  Dietmar Maurer  <dietmar@ximian.com>
36280
36281         * class.c (mono_array_class_get): fix. for multi. dim. arrays
36282
36283 2002-03-06  Martin Baulig  <martin@gnome.org>
36284
36285         * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36286         non-zero lower bounds. See testcases #F10-#F13.
36287
36288 2002-03-05  Martin Baulig  <martin@gnome.org>
36289
36290         * exception.c (mono_get_exception_argument_out_of_range): New exception.
36291
36292         * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36293         ves_icall_System_Array_GetValue(), only calculate the absolute array position
36294         here.
36295         (ves_icall_System_Array_SetValue): Likewise.
36296         (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36297         as argument and does the actual work. This function is used when copying a
36298         multi-dimensional array.
36299         (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36300         now do all the widening conversions of value types.
36301         (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36302
36303 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36304
36305         * class.c: remove some magic numbers and use the smbolic names,
36306         instead. Added init_events() to load event info at class init time.
36307         * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36308         and mono_metadata_methods_from_event().
36309         * reflection.h, reflection.c: added support for writing out the evnets
36310         related information.
36311
36312 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36313
36314         * reflection.h, icall.c: use a different method (GetInterfaces)
36315         to gather interface info and add isbyref, isprimitive and
36316         ispointer to the ves_icall_get_type_info() return value.
36317
36318 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36319
36320         * class.h: stared adding support for events.
36321         * icall.c: split find_members implementation. Added debug icall to get
36322         the address of an object.
36323         * reflection.c: handle TypeBuilders in mono_type_get_object().
36324
36325 2002-03-01  Martin Baulig  <martin@gnome.org>
36326
36327         * icall.c (ves_icall_System_Array_GetLength): This must throw an
36328         ArgumentOutOfRangeException(), not an ArgumentException().
36329         (ves_icall_System_Array_GetLowerBound): Likewise.
36330         (ves_icall_System_Array_GetValue): Improved argument checking.
36331         (ves_icall_System_Array_SetValue): Improved argument checking.
36332
36333 2002-03-01  Martin Baulig  <martin@gnome.org>
36334
36335         * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36336         called with invalid arguments rather than just dying with g_assert().
36337         (ves_icall_System_Array_SetValue): Likewise.
36338         (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36339         raise a NotImplementedException instead.
36340         (ves_icall_System_Array_GetLength): Added argument checking.
36341         (ves_icall_System_Array_GetLowerBound): Added argument checking.
36342
36343 2002-03-01  Dietmar Maurer  <dietmar@ximian.com>
36344
36345         * object.h (mono_assert): new macros mono_assert and
36346         mono_assert_not_reached
36347
36348 2002-02-28  Martin Baulig  <martin@gnome.org>
36349
36350         * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36351         and "System::String::IsInterned" to "System::String::_IsInterned".
36352
36353 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36354
36355         * icall.c: remove hacks for typebuilder. Added icall to create a
36356         modified type from a tybebuilder.
36357         * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36358         in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36359         to create a backing MonoClass for a TypeBuilder.
36360
36361 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36362
36363         * class.c, class.h: more refactoring of class init.
36364         Export mono_class_setup_mono_type() and mono_class_setup_parent().
36365
36366 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36367
36368         * marshal.c, marshal.h: start of marshaling interface.
36369
36370 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36371
36372         * icall.c: fix order in assembly qualified name icall.
36373
36374 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36375
36376         * class.c: do not free str, since we store it in the hash table.
36377         * reflection.h: add label field to MonoILExceptionInfo.
36378         * reflection.c: handle references to more than one assembly. Handle
36379         case when there isn't a module created in the assembly.
36380
36381 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36382
36383         * class.c: Fix typo. Start refactoring of class init code.
36384
36385 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36386
36387         * appdomain.c: exit with 1 on error.
36388         * class.c: we already have the name in MonoClassField.
36389         * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36390         MonoStreamHeader instead of an offset of image->raw_metadata.
36391
36392 2002-02-26  Miguel de Icaza  <miguel@ximian.com>
36393
36394         * appdomain.c (mono_init): Be even more descriptive about the error.
36395
36396 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36397
36398         * appdomain.c: give the user an informative message when corlib can't
36399         be loaded.
36400
36401 2002-02-26  Martin Baulig  <martin@gnome.org>
36402
36403         * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36404         New icall to get the time zone data.
36405
36406 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36407
36408         * reflection.c: set virtual and raw size of section correctly.
36409         * threads.c: transfer domain information to newly created threads.
36410
36411 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36412
36413         * class.c: when instancing a class in a domain, load the default
36414         vaules for static fields from the constant table. Fix System.Enum to
36415         not be an enum.
36416         * icall.c: implement Object::GetType() internalcall. Implemented
36417         MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36418         Fixed checking of binding flags in find_members().
36419         * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36420         * reflection.c: handle enumerations when writing to the constant
36421         table. Use a different object cache for types.
36422
36423
36424 2002-02-22  Dietmar Maurer  <dietmar@ximian.com>
36425
36426         * object.c (mono_object_isinst): fix for arrays
36427
36428         * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36429
36430 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36431
36432         * object.c: don't use mprotect ()  and fix intern pool hash table
36433         lookup for big endian systems.
36434
36435 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36436
36437         * icall.c: change type_is_subtype_of () signature.
36438
36439 2002-02-21  Mark Crichton  <crichton@gimp.org>
36440
36441         * rand.c, rand.h: Added random number generator for
36442         System.Security.Cryptography classes.
36443
36444         * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36445
36446         * icall.c: Added System.Security.Cryptography calls.
36447
36448 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36449
36450         * class.c, icall.c, metadata.c: better support for pointer types.
36451         Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36452         * reflection.c: Add support for getting custom attrs for properties
36453         and simplify some code.
36454
36455 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36456
36457         * icall.c: change getToken () and add custom attribute GetBlob()helper
36458         method.
36459         * reflection.h: add custom attrs array to the reflection builder structures.
36460         * reflection.c: encode and emit custom attributes for all the relevant
36461         reflection objects. Cache fieldref and methodref tokens. Change
36462         mono_image_create_token() interface to take a MonoDynamicAssembly.
36463         More complete custom attributes decoder. Load custom attributes for
36464         Assembly, Field, Method and Constructor objects, too. Make the
36465         returned array an Attribute[] one, not object[]. Added
36466         mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36467         custom attribute constructor.
36468
36469 2002-02-20  Dick Porter  <dick@ximian.com>
36470
36471         * icall.c:
36472         * rawbuffer.c:
36473         * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36474         problem code out for now).
36475
36476 2002-02-19  Radek Doulik  <rodo@ximian.com>
36477
36478         * object.c (mono_ldstr): use hash table to avoid multiple swapping
36479
36480 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36481
36482         * icall.c: register the GetCustomAttributes method.
36483         * object.c, object.h: add mono_string_new_len ().
36484         * reflection.h, reflection.c: added mono_runtime_invoke(),
36485         mono_install_runtime_invoke(). Added
36486         mono_reflection_get_custom_attrs () to load custom attributes and
36487         create the attribute objects.
36488
36489 2002-02-19  Dick Porter  <dick@ximian.com>
36490         * threads-dummy-types.c:
36491         * threads-dummy-types.h:
36492         * threads-dummy.c:
36493         * threads-dummy.h:
36494         * threads-pthread-types.c:
36495         * threads-pthread-types.h:
36496         * threads-pthread.c:
36497         * threads-pthread.h:  Deleted obsolete files
36498
36499 2002-02-19  Dietmar Maurer  <dietmar@ximian.com>
36500
36501         * class.c (mono_class_vtable): runtime init the class when we
36502         allocate static class data.
36503
36504         * icall.c (ves_icall_System_Array_SetValue): check for null values.
36505
36506         * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36507         and String - but we will need generic marshalling support in the
36508         future. 
36509         (mono_init): set the domain name in a ms compatible way
36510
36511         * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36512         String[].
36513
36514 2002-02-18  Dietmar Maurer  <dietmar@ximian.com>
36515
36516         * object.c (mono_array_clone): use alloca() instead of g_malloc  
36517         for sizes
36518
36519         * appdomain.c (mono_domain_unload): impl.
36520
36521 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36522
36523         * appdomain.c, object.c: fix intern pool implementation.
36524         * class.c: fix alignment code.
36525
36526 2002-02-16  Radek Doulik  <rodo@ximian.com>
36527
36528         * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36529         and s2 > s1, just copy lower bytes to be compatible with little
36530         endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36531         (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36532
36533         * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36534         force big_endian to be 1 for big endian machines 
36535         (ves_icall_iconv_new_decoder): ditto
36536
36537 2002-02-16  Jeffrey Stedfast  <fejj@ximian.com>
36538
36539         * socket-io.c (convert_sockopt_level_and_name): If the system
36540         doesn't define SOL_IP or SOL_TCP, get them by hand using
36541         getprotobyname() and caching the values (because this could be a
36542         slow operation).
36543         (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36544         Use the appropriate struct when the system does support it. Ie,
36545         not all systems have struct ip_mreqn so use struct ip_mreq when
36546         appropriate.
36547
36548 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36549
36550         * reflection.c: handle finally clauses.
36551
36552 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36553
36554         * socket-io.c: use g_snprintf() instead of snprintf.
36555
36556 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36557
36558         * reflection.c (mono_param_get_objects): Cast second argument to
36559         mono_method_get_param_names to a const char** to silence the
36560         compiler warning.
36561
36562         * appdomain.c (mono_domain_assembly_open): Put parens around the
36563         truth statement in the for-loop.
36564
36565         * unicode.c (iconv_convert): Got rid of a compiler warning about
36566         int i being unused when the system has a new iconv.
36567         (iconv_get_length): Same.
36568
36569         * image.c (load_class_names): Cast the second argument to
36570         g_hash_table_insert() to char* to hush compiler warnings about the
36571         arg being a const.
36572         (mono_image_open): Same here.
36573
36574         * socket-io.c: Don't conditionally include sys/filio.h or
36575         sys/sockio.h here anymore since we now get them from
36576         io-layer/io-layer.h
36577         (inet_pton): If the system doesn't support inet_aton, implement
36578         using inet_addr and also #define INADDR_NONE if it isn't defined
36579         by the system.
36580
36581 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36582
36583         * metadata.c, metadata.h: added function to get packing and size info
36584         of a typedef.
36585         * reflection.h, reflection.c: handle field RVA data. Save info about
36586         the table layout if needed. Assign typedef indexes to all the types
36587         before dumping the info about them to avoid forward reference problems.
36588
36589 2002-02-14  Dietmar Maurer  <dietmar@ximian.com>
36590
36591         * socket-io.c (convert_sockopt_level_and_name): ifdef
36592         SO_ACCEPTCONN because it is not defined on my system (old debian)
36593
36594 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36595
36596         * opcode.c: use stddef.h to get NULL.
36597
36598 2002-02-14  Jeffrey Stedfast  <fejj@ximian.com>
36599
36600         * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36601         for FIONBIO, FIONREAD and SIOCATMARK.
36602         (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36603         define INADDR_NONE and besides, inet_addr() is deprecated and
36604         should not be used. Use inet_pton() instead - it also has the
36605         added bonus that it can easily handle IPv6 addresses as well.
36606         (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36607
36608 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36609
36610         * decimal.c: remove _MSC_VER conditional.
36611
36612 2002-02-13  Dick Porter  <dick@ximian.com>
36613
36614         * socket-io.c: 
36615         * icall.c: Internal calls for Blocking, Select, Shutdown,
36616         GetSocketOption and SetSocketOption
36617
36618 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36619
36620         * assembly.cs: better resolver: use it instead of some kludgy
36621         code.
36622
36623 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36624
36625         * reflection.c: the best way to speed-up the compiler is to avoid
36626         infinite loops.
36627
36628 2002-02-13  Dietmar Maurer  <dietmar@ximian.com>
36629
36630         * class.c (mono_class_vtable): changed the object layout
36631         (obj->vtable->class). 
36632         (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36633
36634 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36635
36636         * assembly.c: look for assemblies in the assembly dir, too.
36637
36638 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36639
36640         * class.c: fix thinko in mono_class_from_type().
36641
36642 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36643
36644         * exception.h, exception.c: added TypeLoadException.
36645         * object.h, object.c: added mono_array_clone ().
36646         * icall.c: handle throwOnError in AssemblyGetType().
36647         Added Array.Clone().
36648         * opcode.h, opcode.c: use a single value for the opcode val.
36649         Compile fix for non-gcc compilers.
36650
36651 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36652
36653         * opcodes.c, opcodes.h: export interesting info about opcodes.
36654
36655 2002-02-05  Dietmar Maurer  <dietmar@ximian.com>
36656
36657         * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36658         icalls. 
36659
36660         * class.c (class_compute_field_layout): set element_class for enums
36661         (mono_class_create_from_typedef): set element_class for normal classes
36662
36663         * icall.c (ves_icall_System_Enum_get_value): impl.
36664
36665         * class.c (mono_class_create_from_typedef): do not set valuetype
36666         flag for System.ValueType and System.Enum
36667
36668 2002-02-04  Dietmar Maurer  <dietmar@ximian.com>
36669
36670         * unicode.c (iconv_convert): fix big endian problem.
36671
36672 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36673
36674         * class.c: add asserts if we are ever going to scribble over memory.
36675         * socket-io.c: not all systems have AF_IRDA defined.
36676
36677 2002-01-31  Dietmar Maurer  <dietmar@ximian.com>
36678
36679         * class.c (class_compute_field_layout): do not consider static
36680         fields to compute alignment
36681
36682 2002-01-25  Dietmar Maurer  <dietmar@ximian.com>
36683
36684         * appdomain.c (mono_appdomain_get): impl.
36685         (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36686
36687 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36688
36689         * icall.c: ignore "file://" prefix when loading an assembly.
36690
36691 2002-01-23  Dick Porter  <dick@ximian.com>
36692
36693         * socket-io.c:
36694         * icall.c:
36695         * Makefile.am: Added socket support
36696
36697 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36698
36699         * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36700         code back.  This should return the assemblies that are loaded by
36701         the runtime on behalf of an application domain. 
36702
36703         The current implementation is still broken, it just returns every
36704         assembly loaded, but until we get real applications domain this
36705         will do.
36706
36707 2002-01-23  Dietmar Maurer  <dietmar@ximian.com>
36708
36709         * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36710         AppDomain object.
36711
36712 2002-01-23  Miguel de Icaza  <miguel@ximian.com>
36713
36714         * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36715         the mono_class_from_name lookup.
36716         (ves_icall_get_parameter_info): ditto.
36717         (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36718         method.
36719         (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36720
36721 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36722
36723         * class.c: load also nested classes on class init.
36724         System.ValueType instance methods gets passed boxed
36725         values, unless methods in derived classed that get a pointer to the
36726         data.
36727         * icall.c: use better name parsing code in GetType().
36728         * image.c, image.h: add mono_image_loaded ().
36729         * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36730         * reflection.c, reflection.h: added mono_reflection_parse_type().
36731
36732 2002-01-22  Veronica De Santis <veron78@interfree.it>
36733
36734         * icall.c : Added mapping of internal calls for Manual and Auto reset events
36735         * threads.c : Added the implementation of internal calls for events
36736         * threads.h : Added prototypes of internal calls for events
36737         
36738 2002-01-21  Radek Doulik  <rodo@ximian.com>
36739
36740         * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36741
36742 2002-01-21  Dietmar Maurer  <dietmar@ximian.com>
36743
36744         * class.c (mono_class_init): set min_align to 1 (instead of 0)
36745         (mono_class_value_size): use min_align
36746
36747 2002-01-20  Dick Porter  <dick@ximian.com>
36748
36749         * threads.h:
36750         * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36751         so it compiles on w32.
36752
36753 2002-01-17  Dietmar Maurer  <dietmar@ximian.com>
36754
36755         * metadata.c (mono_type_stack_size): impl.
36756
36757         * class.c (mono_class_get_field): impl. memberref token
36758
36759 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36760
36761         * icall.h : Added the internal calls mapping for CreateMutex_internal
36762                     and ReleaseMutex_internal.
36763         * threads.h : Added the prototype of mutexes internal calls.
36764         * threads.c : Added the implementations of mutexes internal calls.
36765
36766 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36767
36768         * metaparse.h: removed unused file.
36769         * reflection.c, reflection.h: added stream_data_align () function 
36770         to align data in streams and keep stream aligned. Add support for
36771         exception support in method headers.
36772
36773 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36774
36775         * unicode.c: make iconv_convert () return the number of bytess written
36776         in the output buffer.
36777
36778 2002-01-15  Dick Porter  <dick@ximian.com>
36779         * threads.c: Make the runtime's idea of infinite timeouts coincide
36780         with the class library's
36781
36782         Fix a particularly egregious bug in mono_thread_cleanup(). That
36783         code was so utterly bogus it must have been written on a Monday.
36784
36785 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36786
36787         * reflection.h: add subtypes field to TypeBuilder.
36788         * reflection.c: encode constants for literal fields.
36789         Handle subtypes. Fix user string token (and add a zero byte)
36790         at the end.
36791         
36792 2002-01-14  Dietmar Maurer  <dietmar@ximian.com>
36793
36794         * class.c (mono_class_init): bug fix: assign slot numbers for
36795         abstract methods.
36796
36797 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36798
36799         * reflection.c: don't try to output a code RVA for abstract methods.
36800         Small fixes for method header format. Output parameter info to the
36801         ParamDef table. Save method overriding info to MethodImpl table.
36802         Fix property support. Allow typedef.extends to be a type in the
36803         building assembly.
36804         * verify.c: fix off-by-one error.
36805
36806 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36807
36808         * class.c: fix mono_class_from_mono_type () for szarray types.
36809         Remove unused cache check in mono_class_from_type_spec().
36810         * icall.c: *type_from_name () functions handle simple arrays and byref.
36811         * reflection.c: handle byref and szarray types. Handle methods without
36812         body (gets P/Invoke compilation working). Handle types and fields in
36813         get_token ().
36814         * reflection.h: add rank to MonoTypeInfo.
36815
36816 2002-01-10  Dick Porter  <dick@ximian.com>
36817
36818         * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36819         internal calls
36820
36821 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36822
36823         * icall.c: initialize class in type_from_handle ().
36824         Loop also in parent classes for get_method ().
36825         * reflection.c: properly encode class and valuetype types.
36826         Start on encoding TypeBuilder types. Handle fieldrefs.
36827         Use correct length when registering a user string.
36828         Handle ConstructorBuilder and MonoMethod in get_token ().
36829         Make mono_type_get_object () aware of cached types.
36830         * object.c: back out change to mono_string_new ().
36831
36832 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36833         * object.c: mono_string_new should return a NULL when the string 
36834         passed in is NULL -- not try to deference it.
36835         
36836 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36837
36838         * icall.c: hack to make IsSubType work for TypeBuilders.
36839         * reflection.c: emit constructors before methods.
36840         Retrieve param names in mono_param_get_objects().
36841
36842 2002/01/05  Nick Drochak  <ndrochak@gol.com>
36843
36844         * Makefile.am: fix list of headers and sources so automake 1.5
36845         doesn't complain. Removed \# at end of list.
36846
36847 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36848
36849         * reflection.c: get token for a method ref. Set return type of
36850         constructor to void.
36851         * loader.c: debug message.
36852         * class.c: typo fix.
36853
36854 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36855
36856         * icall.c: fix array init with rank > 1. FindMembers
36857         loops in parent class as well.
36858         * image.c: do not insert nested types in name cache.
36859         * reflection.c: warning fix.
36860         * reflection.h: add override method (for interface impl).
36861
36862 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36863
36864         * metadata.c: fix customattr decoding.
36865
36866 2001-12-21  Miguel de Icaza  <miguel@ximian.com>
36867
36868         * rawbuffer.cs: Added native Win32 implementation, avoids using
36869         mmap on Cygwin.  This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36870
36871 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36872
36873         * class.c: make the low-level routines handle the cache.
36874
36875 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36876
36877         * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36878
36879 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36880
36881         * class.c: fix mono_array_element_size() for objects.
36882         * class.h, class.c: add properties to MonoClass and load them
36883         at init time.
36884         * icall.c: check with isinst() when assigning a value to an array
36885         instead of requiring the classes to match exactly.
36886         Implemented icall for System.Type::GetType().
36887         Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36888         enums. Handle bindingflags when looking for methods and fields.
36889         * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36890         and mono_metadata_methods_from_property().
36891         * reflection.h, reflection.c: added structures for propreties,
36892         parameters and enums. Implemented mono_property_get_object() and
36893         mono_param_get_objects().
36894
36895 2001-12-18  Dick Porter  <dick@ximian.com>
36896
36897         * file-io.c: Use mono_string_to_utf16() instead of
36898         mono_string_chars()
36899
36900         * object.c: Added mono_string_to_utf16(), which copies the non
36901         NULL-terminated MonoString into a new double-null-terminated
36902         buffer.
36903
36904 2001-12-17  Dietmar Maurer  <dietmar@ximian.com>
36905
36906         * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36907
36908 2001-12-16  Dietmar Maurer  <dietmar@ximian.com>
36909
36910         * file-io.c: raise exceptions if handle is invalid.
36911
36912 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36913
36914         * assembly.c: yet another check for mscorlib.
36915         * class.c, class.h: load nesting info for classes.
36916         * icall.c: many new functions to support the Reflection classes.
36917         * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36918         * reflection.h, reflection.c: mono_image_create_token(),
36919         mono_assembly_get_object(), mono_type_get_object(),
36920         mono_method_get_object(), mono_field_get_object(): methods to return
36921         objects that parallel the C representation of assemblies, types,
36922         methods, fields.
36923
36924 2001-12-11  Dick Porter  <dick@ximian.com>
36925
36926         * icall.c:
36927         * file-io.c: Internal calls for file IO.
36928
36929 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36930
36931         * tabledefs.h: missing FileAttributes.
36932         * verify.h, verify.c: use is_valid_string () to simplify and check for
36933         valid strings more correctly. Fix warnings and speeling.
36934         Check more tables: Filed, File, ModuleRef, StandAloneSig.
36935         Check code: branches, maxstack, method calls.
36936
36937 2001-12-04  Dietmar Maurer  <dietmar@ximian.com>
36938
36939         * object.c (mono_object_allocate): removed static, so that the jit
36940         can allocate value types.
36941
36942         * icall.c (ves_icall_System_DateTime_GetNow): impl.
36943
36944 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36945
36946         * class.c: init enum types right away and register the
36947         token->MonoClass map in mono_class_create_from_typedef ().
36948         * verify.h, verify.c: first cut of the verifier.
36949         * pedump.c: add --verify switch to verify metadata tables.
36950         * tabledefs.h: add some missing enums.
36951
36952 2001-11-30  Dietmar Maurer  <dietmar@ximian.com>
36953
36954         * class.c (mono_install_runtime_class_init): impl.
36955         (mono_class_init): renamed mono_class_metadata_init to
36956         mono_class_init, also removed the metadata_inited flag
36957
36958         * object.c (mono_object_isinst): use faster algorithm
36959
36960 2001-11-30  Radek Doulik  <rodo@ximian.com>
36961
36962         * mono-endian.h: reverted last change
36963         added function prototypes
36964
36965         * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
36966         add mono-endian.c back
36967
36968         * mono-endian.c: returned back, as Paolo pointed out, it's needed
36969         for unaligned access, I've mistaked it with endianess. I am
36970         sorry.
36971         (mono_read16): fix reverted endianess
36972         (mono_read64): ditto
36973         (mono_read32): ditto
36974
36975 2001-11-30  Dick Porter  <dick@ximian.com>
36976
36977         * exception.c: Implement mono_exception_from_name()
36978
36979 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
36980
36981         * metadata.h, metadata.c: remove params_size and locals_size and their
36982         calculation from the metadata code: they are only usefult to the
36983         interp.
36984
36985 2001-11-29  Radek Doulik  <rodo@ximian.com>
36986
36987         * object.c (mono_ldstr): swap bytes here, it's probably not the
36988         best place, but works for me now, I'll redo it once I know mono
36989         better, also note that I add PROT_WRITE and don't reset back, also
36990         note that it's only affects big endians, so x86 should be OK
36991
36992         * mono-endian.h (read16): use just glib macros for both endians
36993
36994         * mono-endian.c: removed as glib macros are used in in
36995         mono-endian.h so we don't need to care about endianess for read
36996         macros as glib does that for us already
36997
36998 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
36999
37000         * class.h, class.h: take minimum alignment into consideration so
37001         that the fields of a class remain aligned also when in an array.
37002
37003 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37004
37005         * loader.h, loader.c: add mono_method_get_param_names().
37006         * class.c: 0-init class fields.
37007
37008 2001-11-26  Dick Porter  <dick@ximian.com>
37009
37010         * icall.c:
37011         * threads-types.h:
37012         * threads.c: New file that handles System.Threading on all platforms
37013
37014         * object.c: 
37015         * object.h: Remove the synchronisation struct from MonoObject,
37016         replace it with a pointer that gets initialised on demand
37017
37018         * Makefile.am: Replace all the system-specific threading code with
37019         a single file that uses the new wrapper library
37020
37021 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37022
37023         * class.c, class.h: add mono_install_trampoline() so that the runtime
37024         can register a function to create a trampoline: removes the ugly
37025         requirement that a runtime needed to export arch_create_jit_trampoline.
37026         * object.h, object.c: added mono_install_handler() so that the runtime
37027         can install an handler for exceptions generated in C code (with
37028         mono_raise_exception()). Added C struct for System.Delegate.
37029         * pedump.c: removed arch_create_jit_trampoline.
37030         * reflection.c: some cleanups to allow registering user strings and
37031         later getting a token for methodrefs and fieldrefs before the assembly
37032         is built.
37033         * row-indexes.h: updates and fixes from the new ECMA specs.
37034
37035 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37036
37037         * class.h, class.c: add enum_basetype field to MonoClass.
37038         * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37039         to get index in the constant table reated to a field, param or
37040         property.
37041         * reflection.h, reflection.c: handle constructors. Set public-key and
37042         version number of the built assembly to 0.
37043         * row-indexes.h: update from new ECMA spec.
37044
37045 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37046
37047         * class.h, class.c: add a max_interface_id to MonoClass.
37048         * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37049         since it's used to do that. Added mono_type_type_from_obj().
37050         Make GetType() return NULL instead of segfaulting if the type was not
37051         found. Handle simple arrays in assQualifiedName.
37052         * object.h: add a struct to represent an Exception.
37053         * reflection.c: output call convention in method signature.
37054         Add code to support P/Invoke methods and fixed offsets for fields.
37055
37056 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37057
37058         * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37059         the value.
37060         * icall.c: use mono_array_addr instead of array->vector: fixes the
37061         reflection image writing.
37062         * reflection.c: init call convention byte to 0 in method signature.
37063         Encode the property signature. Don't output property-related methods
37064         twice. Really process the properties for a type (don't cast a field to
37065         a property, my mom always told me that).
37066         Fix 64 bit issues in pointer alignment in a different and more
37067         readable way.
37068
37069 2001-11-10  Sean MacIsaac  <macisaac@ximian.com>
37070
37071         * loader.h: Removed type class from MonoDefaults, added monotype
37072
37073         * loader.c: Loaded MonoType, removed loading of Type
37074
37075         * icall.c (my_mono_new_object): Now returns a System.MonoType,
37076         and fills in System.Type._impl with a RuntimeTypeHandle rather
37077         than the actual MonoClass *
37078
37079         (ves_icall_type_from_handle): change from type_class to
37080         monotype_class
37081
37082         (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37083         implemented
37084
37085         (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37086         implemented
37087
37088         (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37089
37090         (ves_icall_System_Reflection_Assembly_GetType): implemented
37091
37092         (ves_icall_System_MonoType_assQualifiedName): implemented
37093
37094         (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37095
37096 2001-11-09  Miguel de Icaza  <miguel@ximian.com>
37097
37098         * assembly.c (mono_assembly_open): Implement a cache for the
37099         assemblies. 
37100
37101         (mono_assembly_close): only destroy the assembly when the last
37102         reference is gone.
37103         
37104 2001-11-09  Dick Porter  <dick@ximian.com>
37105
37106         * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37107
37108 2001-11-09  Dietmar Maurer  <dietmar@ximian.com>
37109
37110         * class.c (mono_class_metadata_init): bug fix: compute the right slot
37111
37112 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37113
37114         * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37115         from Martin Weindel.
37116         * object.h: add mono_string_chars ().
37117
37118 2001-11-07  Miguel de Icaza  <miguel@ximian.com>
37119
37120         * reflection.c (build_compressed_metadata): Eliminates warnings
37121         and uses 64-bit clean code.
37122
37123         * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37124         (mono_type_equal): Change signature to eliminate warnings.
37125
37126 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37127
37128         * icall.c, loader.c: remove the internalcall array constructors.
37129         Changes to match the new MonoArray structure.
37130         * object.h, object.c: an array object doesn't allocate an extra
37131         vector. Add mono_array_new_full () to create jagged arrays easily.
37132
37133 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37134
37135         * metadata.h, metadata.c: add mono_metadata_field_info () to
37136         retreive all the info about a field from vairous tables.
37137         * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37138         * class.h, class.c: augment MonoClassField with more info.
37139         Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37140         policy and load a field's RVA if needed.
37141
37142 2001-11-05  Dietmar Maurer  <dietmar@ximian.com>
37143
37144         * class.c (mono_class_metadata_init): create a trampoline for all
37145         virtual functions instead of actually compiling them.
37146
37147 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37148
37149         * class.h, class.c: include name in MonoClassField.
37150         * class.c: fix fundamental type of System.Object and System.String.
37151         Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37152         tokens in ldtoken.
37153         * icall.c: remove internalcalls for the Reflection stuff that is now
37154         done in C# code.
37155         * loader.c: mono_field_from_memberref () implementation.
37156         * mono-endian.c: thinko (s/struct/union/g).
37157         * object.c, object.h: make the mono_string_* prototypes actually use
37158         MonoString instead of MonoObject.
37159         * reflection.c, reflection.h: updates for changes in the reflection
37160         code in corlib: we use C structures that map to the actual C# classes.
37161         Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37162         fat method header if needed and use the info from the ILGenerator for
37163         methods. Handle fields in types. Misc fixes.
37164
37165 2001-10-17  Dietmar Maurer  <dietmar@ximian.com>
37166
37167         * class.c (mono_class_metadata_init): bug fix: always allocate
37168         space for static class data
37169
37170 2001-10-25  Dietmar Maurer  <dietmar@ximian.com>
37171
37172         * class.c (mono_compute_relative_numbering): use relative
37173         numbering to support fast runtime type checks.
37174
37175 2001-10-17  Sean MacIsaac  <macisaac@ximian.com>
37176
37177         * class.c (mono_class_create_from_typeref): added debugging output
37178         to print class name when MonoDummy is returned instead of real class
37179
37180 2001-10-15  Dietmar Maurer  <dietmar@ximian.com>
37181
37182         * class.c (mono_class_metadata_init): interface offset table now
37183         contains pointers into the vtable - this is more efficient for the jit
37184
37185 2001-10-12  Dietmar Maurer  <dietmar@ximian.com>
37186
37187         * class.c (mono_class_metadata_init): use a temporary vtable (the
37188         old algorithm only worked for the interpreter, but not for the jit)
37189
37190 2001-10-11  Dietmar Maurer  <dietmar@ximian.com>
37191
37192         * loader.c (method_from_memberref): use mono_class_get to get the
37193         class of an array instead of using System.Array directly.
37194         (mono_get_method): also add MEMBERREF methods to the method cache
37195         which usefull for arrays.
37196
37197 2001-10-10  Dietmar Maurer  <dietmar@ximian.com>
37198
37199         * pedump.c (arch_compile_method): added to compute vtable entry
37200
37201         * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37202         number of interfaces.
37203         
37204         * class.h: merged MonoArrayClass into MonoClass
37205
37206         * class.c (mono_class_create_from_typedef): compute the vtable size and
37207         allocate space to include the vtable inside MonoClass
37208         (mono_class_metadata_init): initialize the vtable
37209
37210 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37211
37212         * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37213         Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37214         * image.c: endian fixes by Laurent Rioux.
37215         * object.h, object.c: rename MonoStringObject to MonoString and
37216         MonoArrayObject to MonoArray. Change some function names to conform to
37217         the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37218         guint16* as first argument, so don't use char*.
37219         Provide macros to do the interesting things on arrays in a portable way.
37220         * threads-pthread.c: updates for the API changes and #include <sched.h>
37221         (required for sched_yield()).
37222         * icall.c: updates for the API changes above.
37223         * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37224         platforms that need them.
37225
37226 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37227
37228         * class.c: set the correct type for all the fundamental
37229         type when loading the class.
37230
37231 2001-10-05  Dick Porter  <dick@ximian.com>
37232
37233         * threads-pthread.c (pthread_mutex_timedlock): Simple
37234         compatibility version for C libraries that lack this call.
37235
37236 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37237
37238         * class.c: MonoTypes stored in MonoClass are stored as
37239         fundamental MonoTypes when the class represents a
37240         fundamental type (System.Int32, ...).
37241         The TypeHandle return by ldtoken is a MonoType*.
37242         * icall.c: ves_icall_get_data_chunk () write out all the
37243         PE/COFF stuff. Implement ves_icall_define_method (),
37244         ves_icall_set_method_body (), ves_icall_type_from_handle ().
37245         * image.c: properly skip unknown streams.
37246         * loader.h, loader.c: add type_class to mono_defaults.
37247         * metadata.c, metadata.h: export compute_size () as
37248         mono_metadata_compute_size () with a better interface.
37249         Typo and C&P fixes.
37250         * pedump.c: don't try to print the entry point RVA if there is no entry point.
37251         * reflection.c, reflection.h: many cleanups, fixes, output method
37252         signatures and headers, typedef and typeref info, compress the metadata
37253         tables, output all the heap streams, cli header etc.
37254         * row-indexes.h: typo fixes.
37255
37256 2001-10-04  Dick Porter  <dick@ximian.com>
37257
37258         * object.h: Add a synchronisation mutex struct to MonoObject
37259
37260         * object.c (mono_new_object): Initialise the object
37261         synchronisation mutexes
37262
37263         * icall.c: System.Threading.Monitor internal calls
37264         
37265         * threads-pthread.h:
37266         * threads-pthread.c: System.Threading.Monitor internal calls
37267
37268         * threads-types.h: New file, includes the system-specific thread
37269         structures
37270         
37271         * threads-pthread-types.h:
37272         * threads-pthread-types.c: New files, handle pthread-specific
37273         synchronisation types
37274
37275         * threads-dummy-types.h: 
37276         * threads-dummy-types.c: New files of dummy support for
37277         thread-specific types
37278
37279         * metadata.c:
37280         * image.c:
37281         * pedump.c: include mono-endian.h not endian.h
37282         
37283         * Makefile.am: More threads files.
37284         Name mono-endian.h not endian.h
37285
37286 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37287
37288         * Makefile.am, reflection.h, reflection.c: move here the reflection related 
37289         stuff and implement a few more bits.
37290         * icall.c: a field needs to be dereferenced twice. Do not use the same
37291         name for two variables in the same scope.
37292         * image.c, image.h: cleanups.
37293
37294 2001-10-02  Dietmar Maurer  <dietmar@ximian.com>
37295
37296         * class.c (mono_class_metadata_init): bug fix: compute the right size
37297
37298 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37299
37300         * icall.c: implemented some of the Reflection internalcalls.
37301         * image.c, image.h: start writing out the PE/COFF image.
37302         * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37303         that does the reverse than decode_blob_size ().
37304         * object.c: use mono_metadata_encode_value (). Move here
37305         temporary implementation of mono_string_to_utf8 ().
37306         * rawbuffer.c: make malloc_map static.
37307
37308 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37309
37310         * metadata.c: fix type comparison for arrays.
37311         * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37312         Added a couple of new classes to monodefaults.
37313         * icall.c: added a couple of Reflection-related internalcalls.
37314         * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37315         Added a byval_arg MonoType to MonoClass.
37316
37317 2001-09-28  Dick Porter  <dick@ximian.com>
37318
37319         * icall.c:
37320         * threads-pthread.h: 
37321         * threads-pthread.c: Implemented internal calls for
37322         LocalDataStoreSlot operations.  Applied mutexes around all shared
37323         data.  Reworked the thread creation and Start() operations to
37324         avoid a race condition.
37325         
37326         * threads-dummy.h:
37327         * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37328
37329 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37330
37331         * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37332
37333 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37334
37335         * class.c, loader.c: warn and return NULL instead of erroring out.
37336         * icall.c: added System.AppDomain::getCurDomain().
37337         * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37338
37339 2001-09-25  Dick Porter  <dick@ximian.com>
37340
37341         * threads-pthread.h:
37342         * threads-pthread.c: Implemented timed thread joining and added
37343         System.Threading.Thread::Join_internal internal call
37344
37345         * icall.c: Added System.Threading.Thread::Join_internal internal call
37346
37347         * threads-dummy.h:
37348         * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37349
37350 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37351
37352         * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37353         mono_string_intern () to implement the semantics of the ldstr opcode
37354         and the interning of System.Strings.
37355         * icall.c: provide hooks to make String::IsIntern and String::Intern
37356         internalcalls.
37357
37358 2001-09-23  Dick Porter  <dick@ximian.com>
37359
37360         * threads-dummy.c: 
37361         * threads-dummy.h: New files of dummy threading routines
37362
37363         * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37364         support code based on system specifics
37365
37366         Rename PTHREAD_LIBS to THREAD_LIBS
37367         
37368 2001-09-23  Dick Porter  <dick@ximian.com>
37369
37370         * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37371         Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37372         internal calls.
37373         (mono_thread_init): Set up a Thread object instance to return when
37374         the main thread calls Thread.CurrentThread
37375         (mono_thread_cleanup): Wait for all subthreads to exit
37376
37377         * icall.c: New internal calls for System.Threading.Thread::Sleep
37378         (including Schedule) and CurrentThread
37379
37380         * threads.h: New file, to insulate thread-specific stuff from the
37381         rest of the code
37382
37383 2001-09-21  Dick Porter  <dick@ximian.com>
37384
37385         * threads-pthread.h: 
37386         * threads-pthread.c: New file, for handling pthreads-style
37387         threading support.  Start() now starts a new thread and executes
37388         the ThreadStart delegate instance.
37389
37390         * icall.c: Added the internalcall for
37391         System.Threading.Thread::Start_internal
37392
37393         * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37394
37395 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37396
37397         * loader.c: work around the different signatures for delegates
37398         constructors csc generates in compiled code vs the ones compiled in mscorlib.
37399
37400 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37401
37402         * class.h, class.c: add mono_class_get_field_from_name ().
37403         * *: Fix C comments and other ANSI C issues.
37404
37405 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37406
37407         * endian.h, assembly.c: fix some endianness issues.
37408
37409 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37410
37411         * loader.h, load.c: add delegate_class to mono_defaults.
37412         Handle runtime provided methods in mono_get_method ().
37413
37414 2001-08-29  Dietmar Maurer  <dietmar@ximian.com>
37415
37416         * loader.c (mono_get_method): use pinvoke for internal call
37417
37418         * icall.c: use pinvoke for internal call
37419
37420         * loader.c (method_from_memberref): set the method name
37421
37422 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37423
37424         * metadata.c: help the compiler generate better code for
37425         mono_class_from_mono_type ().
37426
37427 2001-08-28  Dietmar Maurer  <dietmar@ximian.com>
37428
37429         * class.c (mono_class_metadata_init): delayed computing of the
37430         class size to mono_class_metadata_init ()
37431
37432 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37433
37434         * class.c, class.h: add an interfaces member to MonoClass.
37435         * image.c, image.h: add assembly_name field to MonoImage
37436         from the assembly table.
37437         * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37438
37439 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37440
37441         * class.c: Handle Array in mono_class_from_mono_type ().
37442         * metadata.c, pedump.c: some endian fixes.
37443
37444 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37445
37446         * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37447         * metadata.c: fix small problem introduced with the latest commit.
37448
37449 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37450
37451         * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37452         We don't need a MonoMetadata pointer anymore to compare signatures in
37453         mono_metadata_signature_equal (), update callers.
37454         Reduced memory usage an number of allocations for MonoMethodHeader and
37455         MonoMethodSignature.
37456
37457 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37458
37459         * metadata.c: added compare for szarray.
37460
37461 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37462
37463         * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37464         and add a couple more types to it and mono_defaults. Give an hint on
37465         classes that need implementing in our corlib and are referenced
37466         in mscorlib.
37467
37468 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37469
37470         * class.h, class.c: keep track if a class is also an Enum.
37471         * loader.c: Implement a couple more types for use in libffi
37472         marshalling. Gives better diagnostics when failing to dlopen
37473         a library. Set method->klass for P/Invoke methods, too.
37474
37475 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37476
37477         * class.c, class.h: add a MonoType this_arg to MonoClass that
37478         represents a pointer to an object of the class' type that
37479         can be used by the interpreter and later the type cache.
37480         Add best guess alignment info for valuetype objects.
37481
37482 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37483
37484         * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37485         into MonoType: one less level of indirection and allocation and
37486         simplifies quite a bit of code. Added cache for MonoTypes that are
37487         used frequently, so that we don't need to allocate them all the time.
37488
37489 2001-08-24  Dietmar Maurer  <dietmar@ximian.com>
37490
37491         * class.c (mono_class_create_from_typedef): System.Enum is also a
37492         value type, although it does not derive from System.ValueType
37493         (maybe a bug in the ms compiler?)
37494
37495         * metadata.c (mono_type_size): return the right size for value types
37496
37497         * loader.c (mono_get_method): only initialize method header if not abstract
37498
37499         * class.c (mono_class_from_mono_type): use mono_default values. 
37500
37501 2001-08-23  Dietmar Maurer  <dietmar@ximian.com>
37502
37503         * *: use MonoClass pointers instead of <type_tokens>
37504         
37505         * class.h: new flag: metadata_inited.
37506
37507         * class.c (mono_class_metadata_init): impl.
37508         (mono_class_instance_size): impl.
37509         (mono_class_data_size): impl.
37510
37511 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37512
37513         * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37514         MonoClass now has the name and name_space fields. 
37515         MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37516         mono_get_method () takes and optional MonoClass as argument.
37517         Removed mono_typedef_from_name() and added mono_class_token_from_name()
37518         instead that takes advantage of a map from class names to typedef
37519         tokens in MonoImage.
37520
37521 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37522
37523         * metadata.c: zero is not a valid alignment boundary.
37524         Merge MONO_TYPE_VOID in default decoding code.
37525
37526 2001-08-21  Dietmar Maurer  <dietmar@ximian.com>
37527
37528         * image.h: merged MonoMetadata into MonoImage
37529
37530         * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37531         identify the type of elements.
37532
37533 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37534
37535         * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37536         * cil-coff.h: split MonoMSDOSHeader and add size info.
37537         * image.c: add some consistency checks.
37538         * metadata.c: fix row size computation: one programmer
37539         error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37540         add explanation for the locator routine.
37541         Fix decoding of size in method header.
37542         
37543 2001-08-20  Miguel de Icaza  <miguel@ximian.com>
37544
37545         * assembly.c    (g_concat_dir_and_file): Use _S for string concat.
37546         (g_concat_dir_and_file): Bring g_concat_dir_and_file
37547         function from gnome-libs.  This uses the right path separator
37548         based on the OS, and also works around a bug in some systems where
37549         a double slash is not allowed. 
37550         (default_assembly_name_resolver): Use g_concat_dir_and_file
37551         (mono_assembly_open): ditto.
37552
37553 2001-08-20  Dietmar Maurer  <dietmar@ximian.com>
37554
37555         * metadata.c (mono_metadata_signature_equal): impl.
37556
37557         * *: void is now a realy MonoType (instead of using NULL)
37558         
37559         * metadata.c (do_mono_metadata_parse_type): use
37560         mono_metadata_parse_type to parse void value.
37561
37562 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37563
37564         * metadata.c, metadata.h: in the signature and method header store
37565         only the space required for holding the loca vars and incoming arguments.
37566
37567 2001-08-15  Dietmar Maurer  <dietmar@ximian.com>
37568
37569         * metadata.c (do_mono_metadata_parse_type): treat void like any
37570         other type (instead of assigning NULL);
37571
37572 2001-08-14  Dietmar Maurer  <dietmar@ximian.com>
37573
37574         * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37575
37576 2001-08-09  Dietmar Maurer  <dietmar@ximian.com>
37577
37578         * image.c (do_mono_image_open): added a cache for arrays.
37579
37580 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37581
37582         * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37583         decode a single column from a row in a metadata table and changes
37584         to take advantage of it in the typedef locator (gives a nice speed up).
37585         Store offset info for function params.
37586
37587 2001-08-02  Dietmar Maurer  <dietmar@ximian.com>
37588
37589         * image.h (MONO_IMAGE_IS_CORLIB): removed 
37590
37591 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37592
37593         * assembly.c: how could mono_assembly_close () had ever worked?
37594         * metadata.c, metadata.h: provide offset info for local vars.
37595         Implement mono_type_size () to take care of alignment as well
37596         as size (it was mono_field_type_size in cli/class.c before).
37597
37598 2001-08-01  Dietmar Maurer  <dietmar@ximian.com>
37599
37600         * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37601
37602         * assembly.h (CORLIB_NAME): set to corlib.dll
37603
37604         * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37605
37606 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37607
37608         * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37609         cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37610         tokentype.h: massive namespace cleanup.
37611
37612 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37613
37614         * metadata.h, metadata.c: decode exception clauses when parsing method header.
37615
37616 2001-07-27  Dietmar Maurer  <dietmar@ximian.com>
37617
37618         * metadata.c (mono_metadata_free_type): added check for type !=
37619         NULL (void) before calling mono_metadata_free_type()
37620
37621 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37622
37623         * metadata.h, row_indexes.h: added header with enumerations to use
37624         to index in the columns from tables in metadata and to decode coded
37625         tokens: we should start using this instead of embedding magic numbers
37626         all over the code.
37627
37628 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37629
37630         * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37631         Move metadata_t info from cli_image_info_t to MonoImage, where
37632         it's easily accessible. Changed all the uses accordingly.
37633         Added the method and class caches to MonoImage.
37634         * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37635         and mono_metadata_decode_value () signature to be more consistent
37636         with the other parse functions (and simplify code). Taken advantage
37637         of zero-length array allocation with GCC. Removed reduntant (and
37638         wrong) MonoFieldType struct and use MonoParam instead. Changed
37639         mono_metadata_parse_field_type () to use common code for parsing.
37640         Added mono_metadata_typedef_from_field () and
37641         mono_metadata_typedef_from_method () to lookup a typedef index from a
37642         field or method token.
37643         Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37644
37645 2001-07-23  Miguel de Icaza  <miguel@ximian.com>
37646
37647         * metadata.c (mono_metadata_parse_field_type): Implement. 
37648         (do_mono_metadata_parse_type): Split engine from
37649         mono_metadata_parse_type, so that we can create smaller structures
37650         for things that just have one pointer to the MonoType (look at
37651         the MonoFieldType)
37652
37653 2001-07-20  Miguel de Icaza  <miguel@ximian.com>
37654
37655         * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37656         as Jan Gray found out, it is incorrect. 
37657
37658 2001-07-18  Miguel de Icaza  <miguel@ximian.com>
37659
37660         * assembly.c: Implement asssembly loading.  This loads an image
37661         and loads all the referenced assemblies.  Come to think of it, we
37662         could always do lazy loading of the assemblies. 
37663
37664         * image.c (mono_image_open): Keep loaded images in a hashtable.
37665
37666         * image.h (MonoImage): Add reference count.
37667
37668 2001-07-17  Miguel de Icaza  <miguel@ximian.com>
37669
37670         * assembly.c (mono_assembly_open): Keep track of the file name in
37671         case the assembly has no ASSEMBLY table.
37672
37673         * metadata.h: Fixed Paolo's quick hack.  Put the documnentation
37674         from get.c here.
37675
37676 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37677
37678         * metadata.c, metadata.h: decode local vars in method header
37679         parse function. Change callers accordingly.
37680
37681 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37682
37683         * metadata.h, cil-coff.h: protect against multiple inclusion.
37684         Added some new structures to hold information decoded from metadata:
37685         MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37686         and relevant decoding/free functions.
37687         * metadata.c: implement decoding functions. Add warning for out of bounds
37688         index in mono_metadata_locate(). Implement mono_get_method () to retreive
37689         all the info about a method signature and invocation. Remove check on
37690         uninitialized local var in parse_mh() and fix memory leak.
37691
37692 2001-07-12  Miguel de Icaza  <miguel@ximian.com>
37693
37694         * metadata.h: More macros.
37695
37696         * tokentype.h: New file.
37697
37698 Fri Jul  6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37699
37700         * assembly.c: added a consistency check and initialize
37701         some structures with g_new0().
37702         * metadata.c: fixed a couple more bugs in table size computation
37703         and add other checks for out-of bound access to metadata.
37704
37705 Thu Jul  5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37706
37707         * metatada.c: fix bugs computing table sizes. Spew a
37708         warning when index in string heap is out of bounds.
37709
37710 2001-07-04  Miguel de Icaza  <miguel@ximian.com>
37711
37712         * metadata.h: Add a couple of macros to manipulate tokens. 
37713
37714 Tue Jul  3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37715
37716         * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37717         cli_section_tables).
37718
37719 2001-07-01  Miguel de Icaza  <miguel@ximian.com>
37720
37721         * metadata.c (mono_metadata_user_string): New function, provides
37722         access to the UserString heap. 
37723
37724 2001-06-27  Miguel de Icaza  <miguel@ximian.com>
37725
37726         * metadata.c: Add inline documentation.
37727
37728 2001-06-26  Miguel de Icaza  <miguel@ximian.com>
37729
37730         * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37731         files. 
37732
37733 2001-06-22  Miguel de Icaza  <miguel@ximian.com>
37734
37735         * typeattr.h: New file, TypeAttribute flags. 
37736
37737 2001-06-21  Miguel de Icaza  <miguel@ximian.com>
37738
37739         * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37740         mono_assembly_ensure_section): Section loading code.
37741         (load_section_tables): Load the sections.
37742
37743         * mono/metadata/metadata.c (mono_metadata_locate_token,
37744         mono_metadata_locate): Functions to locate the information
37745         definition given a token or a table and an index.
37746         (mono_metadata_compute_table_bases): New.
37747         (compute_size): New function to compute the sizes of the various
37748         tables.
37749
37750         * mono/metadata/metadata.h: Finish listing the different index
37751         types. 
37752
37753         * mono/metadata/pedump.c: Improve to dump new information.
37754
37755 2001-06-19  Miguel de Icaza  <miguel@ximian.com>
37756
37757         * mono/metadata/metadata.c: Entered all the tables matching
37758         Beta2. 
37759
37760         * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2