1 2010-06-20 Jb Evain <jbevain@novell.com>
3 * metadata-verify.c: do not consider the assembly invalid if it
4 doesn't have a #Blob stream as resource assemblies don't
7 2010-06-17 Geoff Norton <gnorton@novell.com>
9 * sgen-archdep.h: sgen support for arm linux and darwin.
11 2010-06-17 Zoltan Varga <vargaz@gmail.com>
13 * loader.c (mono_method_get_header): Avoid a crash if the declaring method
16 2010-06-17 Rodrigo Kumpera <rkumpera@novell.com>
18 * sgen-gc.c (mono_gc_wbarrier_value_copy_bitmap): Work in a similar
19 way to mono_gc_wbarrier_value_copy but takes a bitmap that
20 indicates which slots need a write barrier.
22 2010-06-14 Jonathan Pryor <jpryor@novell.com>
24 * Makefile.am (EXTRA_DIST): Add runtime.h.
26 2010-06-14 Zoltan Varga <vargaz@gmail.com>
28 * object.c (build_imt_slots): Don't crash if callbacks.get_imt_trampoline is not set.
30 2010-06-11 Zoltan Varga <vargaz@gmail.com>
32 * object.c (mono_method_add_generic_virtual_invocation): Fix the computation of the
33 IMT slot which is passed to callbacks.get_imt_trampoline.
35 2010-06-11 Zoltan Varga <vargaz@gmail.com>
37 * object.c: Use a callback to create IMT trampolines, allowing the usage of one
38 imt trampoline per imt slot when using LLVM.
40 2010-06-10 Jonathan Pryor <jpryor@novell.com>
42 * object.c (mono_runtime_run_main): Move fire_process_exit_event() into
43 runtime.c:mono_runtime_shutdown().
44 * runtime.c: Added; adds mono_runtime_shutdown(), which invokes the
45 AppDomain.ProcessExit event in all AppDomains.
47 2010-06-06 Zoltan Varga <vargaz@gmail.com>
49 * marshal.c (mono_marshal_get_runtime_invoke): Don't set *exc to NULL, it is now
52 2010-06-05 Mark Probst <mark.probst@gmail.com>
54 * sgen-los.c: Keep bitmaps on chunk usage in LOS sections to speed
57 2010-06-05 Mark Probst <mark.probst@gmail.com>
59 * sgen-gc.c, sgen-los.c: New LOS allocator that allocates large
60 segments of memory at once, to reduce the number of mmap/munmap
63 2010-06-05 Mark Probst <mark.probst@gmail.com>
65 * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: Protocol degraded
66 allocations and distinguish between normal, degraded and pinned
69 2010-06-05 Mark Probst <mark.probst@gmail.com>
71 * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Make degraded
72 allocations count toward major collections and trigger major
73 collections from degraded allocations if appropriate.
75 2010-06-05 Mark Probst <mark.probst@gmail.com>
77 * sgen-marksweep.c (ms_get_empty_block): Update heap boundaries.
79 2010-06-05 Mark Probst <mark.probst@gmail.com>
81 * sgen-gc.c: Enable mark&sweep again.
83 2010-06-05 Mark Probst <mark.probst@gmail.com>
85 * sgen-gc.c: Increase the maximum small object size to 8000 bytes.
87 2010-06-05 Mark Probst <mark.probst@gmail.com>
89 * sgen-gc.c, sgen-major-copying.c, sgen-marksweep.c: Have only one
90 major heap allowance for minor collections, instead of two
91 separate ones for small and large objects. This reduces the
92 number of major collections.
94 2010-06-04 Marek Habersack <mhabersack@novell.com>
96 * icall.c (ves_icall_MonoType_GetEvent): be case insensitive is
97 the BFLAGS_IgnoreCase is raised
99 2010-06-03 Zoltan Varga <vargaz@gmail.com>
101 * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Rewrite this so it returns
102 all information in a single structure. Return information about scopes as well.
104 * mono-debug.c (mono_debug_lookup_locals): Ditto.
106 2010-06-02 Geoff Norton <gnorton@novell.com>
108 * appdomain.c: If we are running with IOMAP we might
109 have been provided a string that isn't case-aware for our file-
110 system, so we need to use io-portability to check if the file
111 exists, rather than a simple glib test.
115 2010-06-02 Rodrigo Kumpera <rkumpera@novell.com>
117 * verify.c (verify_generic_parameters): Verify if
118 there are not loops in constraints.
120 2010-06-02 Rodrigo Kumpera <rkumpera@novell.com>
122 * verify.c (is_compatible_boxed_valuetype): Constaints
123 must be recursively checked if one generic argument
124 has a constraint on another.
128 2010-05-31 Miguel de Icaza <miguel@novell.com>
130 * console-unix.c (terminal_get_dimensions): Fix my previous
131 botched commit and return the actual value obtained from the ioctl.
133 2010-05-29 Mark Probst <mark.probst@gmail.com>
135 * sgen-gc.c: Always use DESC_TYPE_RUN_LENGTH for objects without
136 references so that we don't have to do the cache-cold fetch of the
137 class in copy_object_no_checks().
139 2010-05-29 Robert Jordan <robertj@gmx.net>
141 * marshal.c (mono_marshal_asany): marshal LPWSTRs using
142 mono_marshal_string_to_utf16_copy () to avoid memory allocation
143 mismatches under Windows. Fixes pinvoke2:test_0_asany.
145 2010-05-28 Mark Probst <mark.probst@gmail.com>
147 * sgen-gc.c: Change default nursery size to 4MB, because it
148 improves performance on many applications and benchmarks.
150 2010-05-28 Mark Probst <mark.probst@gmail.com>
152 * sgen-gc.c, sgen-scan-object.h: Value types in arrays are not
153 always aligned to ALLOC_ALIGN. To handle this, shift the size in
154 the GC descriptor by one bit, and don't encode the size for value
155 types not containing references. Also get rid of
158 2010-05-28 Mark Probst <mark.probst@gmail.com>
160 * sgen-gc.c: Don't depend on the size encoded in a GC descriptor
161 other than for remset processing.
163 2010-05-28 Mark Probst <mark.probst@gmail.com>
165 * sgen-gc.c: More and better remset consistency checks.
167 2010-05-28 Rodrigo Kumpera <rkumpera@novell.com>
169 * sgen-gc.c: Add a note about the int[] trick to avoid some
172 2010-05-27 Rodrigo Kumpera <rkumpera@novell.com>
174 * sgen-gc.c (sort_addresses): Use heap sort since it has better
177 This helps programs with lots of threads or thread with big stacks
178 since the bottleneck the pin queue can get quite big.
180 2010-05-26 Rodrigo Kumpera <rkumpera@novell.com>
182 * sgen-gc.c (search_fragment_for_size): Move fragment setup into
183 a separate function called setup_fragment.
185 * sgen-gc.c (search_fragment_for_size_range): Variant of
186 search_fragment_for_size that does search for a secondary smaller
189 * sgen-gc.c (mono_gc_alloc_obj_nolock): Use search_fragment_for_size_range
190 for tlab allocation so small fragments are used.
192 This patch uses small fragments for tlab allocation when possible in order
193 to improve nursery utilization. With a fixed size tlab this patch is not very
194 usefull but once size gets dynamically adjusted, this will be invaluable.
196 Performance under pystone 500k is unchanged. Nursery utilization improves by
197 3.5% and 18 more fragments are used per minor GC.
199 Performance under modified binary-tree is unchanged. Nursery utilization
200 improves by 0.5% and 3 more fragments are used per minor GC.
202 These numbers make sense since as more pinning happens, more fragments are
203 created and so are the chances of having a bunch of small ones.
205 2010-05-26 Rodrigo Kumpera <rkumpera@novell.com>
206 * sgen-gc.c (mono_gc_alloc_obj_nolock): Avoid wasting space from
207 the current fragment when allocating a TLAB.
209 Reduces number of pystone 500k minor collections by 7%.
211 2010-05-25 Martin Baulig <martin@ximian.com>
213 Applying a patch from Lucas Meijer <lucas@lucasmeijer.com>.
215 * debug-mono-symfile.c: Release memory from symfiles that were
218 2010-05-24 Zoltan Varga <vargaz@gmail.com>
220 * marshal.c (mono_marshal_free_dynamic_wrappers): Avoid an assert when this is called
223 2010-05-22 Zoltan Varga <vargaz@gmail.com>
225 * marshal.c (mono_marshal_get_runtime_invoke): Simplify the code computing the
226 target class and remove some dead code.
228 2010-05-22 Zoltan Varga <vargaz@gmail.com>
230 * metadata.c: Add a 'transient' argument to the MonoType creation functions, so
231 the MonoTypes inside method headers can be freed when the header is freed.
233 2010-05-21 Zoltan Varga <vargaz@gmail.com>
235 * threadpool.c: Fix the DISABLE_SOCKETS build.
237 2010-05-19 Martin Baulig <martin@novell.com>
241 * threads.c (wait_for_tids_or_state_change): Use an
242 alertable WaitForMultipleObjectsEx().
243 (wait_for_tids): Likewise.
245 2010-05-19 Rodrigo Kumpera <rkumpera@novell.com>
247 * marshal.c (mono_marshal_init): Register mono_gchandle_get_target
250 * marshal.c (mono_delegate_to_ftnptr): Use a gchandle instead of
253 * marshal.c (mono_marshal_emit_managed_wrapper): Retrieve the first
254 argument from a gchandle.
256 * marshal.c: Get rid of the delegate_target_locations hash table.
260 2010-05-17 Rodrigo Kumpera <rkumpera@novell.com>
262 * sgen-gc.c: Use _fast variants for string and array length.
264 2010-05-17 Rodrigo Kumpera <rkumpera@novell.com>
266 * sgen-gc.c: Fix counters to be 64 bits.
268 * sgen-gc.c (dump_heap): Fix formating strings.
270 2010-05-17 Rodrigo Kumpera <rkumpera@novell.com>
272 * sgen-gc.c (global_remset_location_was_not_added): New
273 function that implements a 2 element LRU cache for just
274 added remsets. It is used to avoid adding duplicate ones.
276 * sgen-gc.c (add_to_global_remset): Check cache before
279 * sgen-gc.c (scan_from_remsets): Don't process global remsets
280 that fail the cache test.
282 * sgen-gc.c (scan_from_remsets): Simplify the global remset
283 loop removing one condtion that is not possible.
285 A 2 element LRU cache was chosen by profiling IronPython 2.6
286 pytones with 1M passes and corlib compilation.
288 For the ipy test duplication was originally 940.92, measured
289 by "Store remsets" divided by "Unique store remsets".
291 With a 2-element LRU, duplication went to 1.007. Without the
292 check in scan_from_remsets 1.438.
294 With a 16-elements LRU, duplication reduction was negligibe.
295 A single element cache was basically of no use.
297 With corlib compilation duplication went from 1.4 to 1.02.
299 Performance results is a 20% time decrease for ipy and 2%
301 2010-05-16 Zoltan Varga <vargaz@gmail.com>
303 * mono-debug.c (mono_debug_cleanup): Fix a crash in the previous change.
305 2010-05-15 Geoff Norton <gnorton@novell.com>
307 * mono-debug.c: Fix a leak of the global table on shutdown.
309 2010-05-15 Geoff Norton <gnorton@novell.com>
311 * debug-mono-symfile.(c|h): Add mono_debug_symfile_free_location
312 to clean up MonoDebugSourceLocation's.
314 2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
316 * class.c (mono_class_create_from_typedef): Fail a class
317 if there is a loop with its parent.
321 2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
323 * loader.c (mono_loader_set_error_type_load): Convert
324 a g_warninig to mono_trace_warning.
326 2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
328 * class.c (mono_class_get_full): Release strings on failure
329 to avoid leaking them.
331 2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
333 * class.c (mono_class_create_from_typedef): Only return
334 the class if no exceptions were detected.
336 * class.c (mono_class_create_from_typedef): Don't remove
337 broken classes from class_cache. Just set failure and
340 This fixes a memory a memory leak where resolving the same
341 broken class multiple times resulted in a memory leak.
343 The right behavior would be to actually return the class
344 a let the caller figure it out.
346 2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
348 * mono-ptr-array.h: Add mono_ptr_array_sort.
350 * reflection.c (mono_image_build_metadata): Replace that ugly
351 qsort call with mono_ptr_array_sort.
353 2010-05-13 Mark Probst <mark.probst@gmail.com>
355 * sgen-gc.c: Switch to the copying major collector, because
356 Mark&Sweep is still buggy.
358 2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
360 * reflection.c (mono_image_build_metadata): Don't put managed
361 references on non-tracked memory.
363 2010-05-13 Zoltan Varga <vargaz@gmail.com>
365 * sgen-archdep.h (ARCH_COPY_SIGCTX_REGS): Fix this for amd64.
367 2010-05-12 Rodrigo Kumpera <rkumpera@novell.com>
369 * icall.c: Switch to mono-ptr-array.h.
371 2010-05-12 Rodrigo Kumpera <rkumpera@novell.com>
373 * Makefile.am: Add mono-ptr-array.h.
375 * mono-ptr-array.h: New header that implements
376 a GC tracked equivalent of g_ptr_array.
378 2010-05-12 Rodrigo Kumpera <rkumpera@novell.com>
380 * icall.c (ves_icall_Type_GetInterfaces): Rewrite this
381 method to avoid initializing the class.
385 2010-05-12 Rodrigo Kumpera <rkumpera@novell.com>
387 * icall.c (ves_icall_System_MonoType_getFullName): It
388 doesn't require to init the class.
390 2010-05-11 Miguel de Icaza <miguel@novell.com>
392 * console-unix.c: Signal handlers now save and restore errno. We
393 have never had a bug report about this, ioctl does change errno.
395 Hide the unused method.
397 Remove internal declarations from public headers.
399 Document what the signal handler is doing
401 2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
403 * sgen-gc.c (clear_unreachable_ephemerons): Clear
404 unreachable keys with a tombstone.
406 * sgen-gc.c (mark_ephemerons_in_range): Ignore
409 2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
413 * gc.c: New GC:get_ephemeron_tombstone.
415 2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
417 * appdomain.c (create_exceptions): Rename to
418 create_domain_objects. Create the ephemeron tombstone object.
420 * domains-internals.h (MonoDomain): Add new field for the
423 * domain.c (mono_domain_free): Set ephemeron_tombstone to
426 2010-05-11 Rodrigo Kumpera <rkumpera@novell.com>
428 * sgen-gc.c (mono_gc_clear_domain): Both ephemerons
429 and dislinks must be processed before LOS since they
430 could end up with pointers to memory returned to the
433 2010-05-11 Zoltan Varga <vargaz@gmail.com>
435 * class.c (mono_class_alloc): New helper function to centralize memory allocation
436 for classes, allocates either from the image mempool or from the heap.
438 * class.c: Use mono_class_alloc to allocate memory owned by classes.
440 * metadata.c (free_generic_class_dependents): Free more items belonging to
443 2010-05-10 Zoltan Varga <vargaz@gmail.com>
445 * reflection.c (mono_reflection_method_get_handle): Handle MonoGenericMethod
446 as well. Fixes #604054.
448 2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
450 * metadata-verify.c: MS doesn't mind duplicates in the
451 typeref table. Move it to full verification.
455 2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
457 * image.c (do_mono_image_load): Report verification
458 errors when loading an image fails.
460 2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
462 * reflection.c (mono_type_get_object): Remove chunk of code
465 2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
468 * icall.c: Delete some unused icalls.
470 2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
472 * appdomain.c (mono_domain_has_type_resolve): Check for
473 NULL domain objects to make pedump happy.
475 * object.c (mono_field_get_value): Assert on NULL object.
476 It's the caller resposibility to check for this.
478 * object.c (mono_field_get_value_object): Ditto.
482 2010-05-07 Rodrigo Kumpera <rkumpera@novell.com>
484 * icall.c (ves_icall_type_is_subtype_of): Non iface subtype
485 checks can avoid doing a mono_class_init.
487 * icall.c: Remove mono_class_init from a bunch of icalls that
490 Hopefully we're now lazy enough to fix most victims of #601431.
492 2010-05-07 Mark Probst <mark.probst@gmail.com>
494 * sgen-gc.c: Remove REMSET_ROOT_LOCATION.
496 2010-05-07 Mark Probst <mark.probst@gmail.com>
498 * sgen-gc.c: Remove unnecessary checks in domain clearing code.
500 2010-05-07 Marek Habersack <mhabersack@novell.com>
502 * culture-info-tables.h: updated to include en-TT culture. Fixes
505 2010-05-06 Rodrigo Kumpera <rkumpera@novell.com>
507 Move mono_class_init from mono_type_get_object to icalls.
508 This causes massive memory savings for Assembly::GetTypes () and
509 make it fail a lot less due to missing dependencies.
511 This is a conservative, naive change as it doesn't remove some
512 mono_class_init from places that might not need them. Carefull
513 review of those should follow.
515 * reflection.c (mono_type_get_object): Don't mono_class_init the
521 * marshal.c: Call mono_class_init in functions receiving a MonoType
524 First step into fixing #601431.
526 2010-05-06 Rodrigo Kumpera <rkumpera@novell.com>
528 * gc-internal.h: Add new functions required for ephemeron support.
530 * gc.c: Implement ves_icall_System_GC_register_ephemeron_array.
532 * icall-def.h: Add GC::register_ephemeron_array.
534 * object.c (compute_class_bitmap): sys.rt.cs.Ephemeronis an opaque type
535 under sgen. Its fields must not be marked.
537 * sgen-gc.c (mono_gc_clear_domain): Call cleanup function for ephemerons.
539 * sgen-gc.c (finish_gray_stack): Mark all reachable ephemerons before
540 handling finalizable objects. Clean dead ones after all finalizable
543 * sgen-gc.c (dump_heap): Add new kind of internal memory.
545 * sgen-gc.c (null_ephemerons_for_domain): Remove from the list ephemeron
546 arrays from the dead domain.
548 * sgen-gc.c (clear_unreachable_ephemerons): Clear dead ephemerons entries.
550 * sgen-gc.c (mark_ephemerons_in_range): Mark/Copy all ephemeron values
551 whose keys are reachable.
553 * sgen-gc.c (mono_gc_ephemeron_array_add): Register the array into the
554 list of live ephemeron arrays.
556 2010-05-05 Rodrigo Kumpera <rkumpera@novell.com>
558 * class.c (mono_class_layout_fields): Don't perform alignment
561 * class.c (mono_class_layout_fields): Init field related information
564 2010-05-05 Rodrigo Kumpera <rkumpera@novell.com>
566 * verify.c (mono_verifier_verify_class): Verify the constraint
567 of generic type definitions.
569 2010-05-04 Mark Probst <mark.probst@gmail.com>
571 * sgen-marksweep.c: Simplify free list maintenance in sweep.
573 2010-05-02 Mark Probst <mark.probst@gmail.com>
575 * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Unify
576 major_do_collection() across the two major collectors.
578 2010-05-02 Mark Probst <mark.probst@gmail.com>
580 * sgen-gc.c: Add heavy statistics counter for re-added global
583 2010-05-02 Mark Probst <mark.probst@gmail.com>
585 * sgen-marksweep.c, sgen-gc.c: Use one mark bit per ALLOC_ALIGN to
586 get rid of a division in critical code.
588 2010-04-29 Mark Probst <mark.probst@gmail.com>
590 * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Have separate
591 blocks for objects without references in mark&sweep, to improve
594 2010-04-28 Mark Probst <mark.probst@gmail.com>
596 * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Bring heavy
597 statistics up-to-date.
599 2010-04-27 Mark Probst <mark.probst@gmail.com>
601 * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Support
602 heap-dump for mark&sweep.
604 2010-04-27 Zoltan Varga <vargaz@gmail.com>
606 * loader.c (mono_method_get_header): Move the is_inflated case before the
607 wrapper case, as a method can be both.
609 2010-04-27 Mark Probst <mark.probst@gmail.com>
611 * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Don't do a
612 separate pass to scan pinned and large object but use the gray
613 queue like for regular objects.
615 2010-04-26 Zoltan Varga <vargaz@gmail.com>
617 * boehm-gc.c: Applied patch from Robert Nagy (robert@openbsd.org). Include
618 string.h for memmove.
620 socket-io.c: Applied patch from Robert Nagy (robert@openbsd.org).
621 ipaddress_to_struct_in6_addr() is only needed when
622 defined(HAVE_STRUCT_IP_MREQN) || defined(HAVE_STRUCT_IP_MREQ).
624 2010-04-25 Mark Probst <mark.probst@gmail.com>
626 * sgen-gc.c, sgen-marksweep.c, sgen-major-copying.c: Properly
627 separate copy_object functions for major vs nursery. Allows us to
628 get rid of a few checks and the start and end parameters for many
631 2010-04-25 Mark Probst <mark.probst@gmail.com>
633 * sgen-marksweep.c, sgen-gc.c, sgen-major-copying.c,
634 sgen-protocol.c, sgen-protocol.h, Makefile.am: Major Mark&Sweep
637 2010-04-25 Zoltan Varga <vargaz@gmail.com>
639 * class.c (mono_class_create_from_typedef): Initialize class->nested_in after
640 calling setup_mono_type () since the nested parent could recursively reference
641 the nested class using generic constraints. Fixes #599469.
643 2010-04-24 Mark Probst <mark.probst@gmail.com>
645 * sgen-gc.c, sgen-pinning.c, sgen-major-copying.c: Major collector
648 2010-04-24 Mark Probst <mark.probst@gmail.com>
650 * sgen-gc.c: Remove more unneeded code.
652 2010-04-24 Mark Probst <mark.probst@gmail.com>
654 * sgen-gc.c: Disable managed allocator and wbarrier when the
655 binary protocol is enabled.
657 2010-04-24 Mark Probst <mark.probst@gmail.com>
659 * sgen-gc.c: Put nursery-fragment-cleaning into its own function.
661 2010-04-24 Mark Probst <mark.probst@gmail.com>
663 * sgen-gc.c: Remove a few commented out and unneeded bits.
665 2010-04-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
667 * threadpool.c: patch from Robert Nagy that fixes a nullref and
668 uses mono_sem_wait instead of mono_sem_timedwait for openbsd.
670 2010-04-20 Rodrigo Kumpera <rkumpera@novell.com>
672 * icall.c (ves_icall_type_is_assignable_from): Properly handle byref
677 2010-04-21 Mark Probst <mark.probst@gmail.com>
679 * sgen-gc.c: Turn off semi-precise stack mark.
681 2010-04-20 Sebastien Pouliot <sebastien@ximian.com>
683 * reflection.c (mono_custom_attrs_from_index): Use right function
684 to free 'list' (i.e. g_list_free) if the verifier fails.
686 2010-04-19 Rodrigo Kumpera <rkumpera@novell.com>
688 * verify.c: Handle the case where mono_type_get_underlying_type_any
689 returns NULL. Remove duplicated code between MONO_TYPE_GENERICINST
690 and MONO_TYPE_VALUETYPE in those case.
692 Based on a slightly modified patch by Sebastien Pouliot <sebastien@ximian.com>
694 Hopefully Fixes #564253.
696 2010-04-19 Gonzalo Paniagua Javier <gonzalo@novell.com>
698 * domain-internals.h: made threadpool_jobs volatile.
699 * mono-wsq.c: add an assert to verify that the threadpool cleaned up
702 -When two threads try to initialize the socket IO pool,
703 the second one waits until the intialization is finished
704 instead of continuing right away.
705 -Add checks for domain unload: no items added in this case.
706 -Only measure the time every 10 elements added to the queue.
707 This is an experiment since linux x86 gettimeofday() sucks.
708 -Create new thread if there are none waiting for work items.
709 -There was a missing decrement of the busy threads.
710 -Make sure the local queue is cleaned up before exiting the
711 thread when the program ends.
713 2010-04-19 Rodrigo Kumpera <rkumpera@novell.com>
715 * reflection.c (mono_type_get_object): Normalize generics types
716 as to how managed code expect them to be. A generic instance over
717 the GTD arguments must have the same mirror as the GTD itself.
721 2010-04-19 Zoltan Varga <vargaz@gmail.com>
723 * locales.c: Implement support for DISABLE_NORMALIZATION.
725 2010-04-16 Zoltan Varga <vargaz@gmail.com>
727 * marshal.c (mono_marshal_get_native_func_wrapper): Set the marshal info to NULL,
728 since it is not a MonoMethod.
730 2010-04-16 Sebastien Pouliot <sebastien@ximian.com>
732 * icall-def.h: Add get_RequiresElevatedPermissions icall to
733 System.Security.SecurityManager - used only by Moonlight
734 * security-core-clr.c|h: Add Elevated Trust/Permission support
735 for CoreCLR / Moonlight
737 2010-04-16 Zoltan Varga <vargaz@gmail.com>
739 * boehm-gc.c (mono_gc_base_init): Applied patch from Robert Nagy
740 (robert@openbsd.org). Fix GC_stackbottom calculation on OpenBSD.
742 2010-04-16 Marek Habersack <mhabersack@novell.com>
744 * mono-perfcounters.c: added code for the "Mono
745 Memory/Total Physical Memory" performance counter.
747 * mono-perfcounters-def.h: added definition of the "Mono
748 Memory/Total Physical Memory" performance counter.
750 2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
752 * class.c (mono_class_get_method_by_index): Return NULL
753 on type load failures.
755 2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
757 * class.c (mono_class_from_typeref): Check if the supplied
758 image has an assembly bound to it.
762 2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
764 * loader.c (mono_method_get_signature_full): Use new function
765 inflate_generic_signature_checked to check for errors.
769 2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
771 * loader.c (inflate_generic_signature): Add _checked variant
772 and move this function to use it.
774 2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
776 * class.c (mono_class_setup_vtable_general): Use error checking
777 version of mono_class_inflate_generic_method_full.
781 2010-04-15 Rodrigo Kumpera <rkumpera@novell.com>
783 * class.c (mono_class_inflate_generic_type_no_copy): Do proper
784 error handling passing MonoError around.
788 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
790 * socket-io.c: make GetHostByName ("") work on windows.
793 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
795 * object-internals.h:
796 * threads.c: use a spin lock when accesing the per-thread appdomain
799 2010-04-14 Gonzalo Paniagua Javier <gonzalo@novell.com>
801 * threads.c: no need to take the threads lock in push/pop appdomain.
803 2010-04-14 Rodrigo Kumpera <rkumpera@novell.com>
805 * reflection.c (_mono_reflection_parse_type): MS supports
806 non-assembly-qualified types in a generic type parameter list
807 when enclosed in '[]' (which signals that they should be a fqn).
809 This breaks ECMA specs for how type names are encoded in cattr
810 blobs but F# does it.
814 2010-04-14 Rodrigo Kumpera <rkumpera@novell.com>
816 * icall.c (ves_icall_InternalInvoke): Check if the vtable is sane
817 for instance methods/ctors.
821 2010-04-13 Rodrigo Kumpera <rkumpera@novell.com>
823 * reflection.c: Use the new verifier support for checking
828 2010-04-13 Rodrigo Kumpera <rkumpera@novell.com>
830 * metadata-verify.c: Implement structural verification
831 of custom attributes. This check requires access to the
832 loader since to resolve the size of an enum we have to
834 We don't check if named argumenments are encoded in a
835 compatible fashion to their underlying field/prop.
838 * verify-internals.h: Add two new cattr verification API.
840 2010-04-13 Rodrigo Kumpera <rkumpera@novell.com>
842 * metadata-verify.c (decode_signature_header): Fix signature.
844 2010-04-13 Rodrigo Kumpera <rkumpera@novell.com>
846 * verify.c (mono_verifier_is_enabled_for_method): Handle
847 assembly less images.
849 * verify.c (mono_verifier_is_class_full_trust): Ditto.
851 2010-04-13 Rodrigo Kumpera <rkumpera@novell.com>
853 * loader.c (mono_method_signature_checked): Properly
856 * loader.c (mono_method_signature): It's the calee
857 resposibility to init the error object.
859 2010-04-13 Rodrigo Kumpera <rkumpera@novell.com>
861 * metadata-verify.c (decode_signature_header): Do proper
864 Tue Apr 13 12:36:29 CEST 2010 Paolo Molaro <lupus@ximian.com>
866 * reflection.c: maintain the invariants required by
867 mono_class_layout_fields() also in typebuilder_setup_fields ().
869 2010-04-11 Sebastien Pouliot <sebastien@ximian.com>
871 * security-core-clr.c: Call mono_class_setup_methods in
872 get_default_ctor before checking klass->methods. Fix typo in
875 2010-04-10 Jb Evain <jbevain@novell.com>
877 * domain.c (supported_runtimes): remove .net 4.0 beta 2 and
878 add .net 4.0 RTM version.
880 2010-04-09 Rodrigo Kumpera <rkumpera@novell.com>
882 * reflection.c (resolve_object): Properly inflate generic
883 methods when a context is supplied.
887 2010-04-09 Rodrigo Kumpera <rkumpera@novell.com>
889 * verify.c (mono_method_verify): A switch op don't empty
890 the stack for the next one. Fixes a bug when running fsi
893 2010-04-09 Rodrigo Kumpera <rkumpera@novell.com>
895 * metadata-verify.c (is_valid_standalonesig_blob): Accept
896 fields as valid standalone sig too. F# does generate them.
898 * metadata-verify.c (verify_typedef_table_full): Ignore
899 what <module> extends.
901 2010-04-09 Rodrigo Kumpera <rkumpera@novell.com>
903 * verify.c (do_invoke_method): It's ok to do use call with
904 virtual, non-final methods if their class is sealed.
906 2010-04-08 Rodrigo Kumpera <rkumpera@novell.com>
908 * icall.c (ves_icall_MonoField_GetValueInternal): This function
909 is a near identical copy of mono_field_get_value_object. So simply
912 * object.c (mono_field_get_value_object): Handle literal fields
913 on open generic classes.
917 2010-04-08 Rodrigo Kumpera <rkumpera@novell.com>
919 * reflection.c (mono_reflection_create_runtime_class): Setup
920 parent/supertype information again since it can be changed
923 2010-04-07 Rodrigo Kumpera <rkumpera@novell.com>
925 * verify.c (verify_type_compatibility_full): Properly handle
926 stores between arrays of primitives.
928 Fixes the verifier side of #555950.
930 2010-04-07 Rodrigo Kumpera <rkumpera@novell.com>
932 class.c (mono_bounded_array_class_get): Properly init
933 cast_class to take the fact that uint[] and int[] can be
934 casted between each other.
938 2010-04-07 Geoff Norton <gnorton@novell.com>
940 * domain.c: Avoid a deadlock on osx. Fixes #565765
942 2010-04-08 Zoltan Varga <vargaz@gmail.com>
944 * icall.c (ves_icall_System_Enum_ToObject): Avoid a crash for unfinished type
945 builders. Fixes #594464.
947 2010-04-08 Zoltan Varga <vargaz@gmail.com>
949 * icall.c (ves_icall_System_Environment_Exit): Shutdown the threadpool before
950 waiting for all threads to suspend, as those threads can't be suspended.
952 2010-04-08 Zoltan Varga <vargaz@gmail.com>
954 * threads.c (mono_thread_suspend_all_other_threads): Call ensure_synch_cs_set ()
955 to avoid crashes on newly created threads.
957 2010-04-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
959 * file-io.c: reset the MonoIOStat structure in case of error.
962 2010-04-06 Rodrigo Kumpera <rkumpera@novell.com>
964 * class.c (print_implemented_interfaces): Print proper type name.
966 * class.c (mono_class_setup_vtable): Don't try that hard to produce
967 the override map for generic instances since it later ignored.
969 * class.c (mono_class_implement_interface_slow): Don't break for
970 dynamic generic instances.
972 * object.c (mono_runtime_invoke_array): Add an assert for allocation.
974 * reflection.c (mono_reflection_method_get_handle): New method that
975 resolves a method handle.
977 * reflection.c (mono_reflection_get_dynamic_overrides): Handle the
978 case when we override methods from a dynamic generic instance interface.
982 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
984 * threadpool.c: don't attempt to close the pipe when it has not been
987 2010-04-05 Gonzalo Paniagua Javier <gonzalo@novell.com>
989 * threadpool.c: if there are no waiting threads, try to start a new
990 one. This fixes the not-so-random hangs in System.ServiceModel tests.
991 No need to use InterlockedCompareExchange to read volatile variables.
993 2010-04-05 Rodrigo Kumpera <rkumpera@novell.com>
995 * verify.c (verify_type_compatibility_full): Fail mixed valuetype
996 and reference types that point to the same class.
1000 2010-04-05 Rodrigo Kumpera <rkumpera@novell.com>
1002 * verify.c (verify_stack_type_compatibility_full): Ignore constraints
1003 when verifying compatibility between a generic instance and a generic
1006 * verify.c (check_is_valid_type_for_field_ops): Improve error message.
1008 * verify.c (stack_slot_stack_type_full_name): Improve verification type
1013 2010-04-04 Mark Probst <mark.probst@gmail.com>
1015 * sgen-gc.c: Remove superfluous scanning of alloc-pinned objects.
1017 2010-04-04 Zoltan Varga <vargaz@gmail.com>
1019 * threads.c Applied some openbsd changes from Robert Nagy <robert@openbsd.org>.
1021 2010-04-03 Marek Habersack <mhabersack@novell.com>
1023 * process.c: when cross-compiling with MinGW, force GetProcessId
1024 lookup using GetProcAddress.
1026 2010-04-02 Mark Probst <mark.probst@gmail.com>
1028 * sgen-gc.c: parse_environment_string_extract_number() must be
1031 2010-04-02 Mark Probst <mark.probst@gmail.com>
1033 * sgen-gc.c, sgen-gray.c: Macros for gray_object_enqueue() and
1034 gray_object_dequeue(), to make sure they're inlined.
1036 2010-04-02 Mark Probst <mark.probst@gmail.com>
1038 * sgen-gc.c, sgen-gray.c: Fix a few debug levels, put a few
1039 asserts in inner loops into DEBUG and lower MAX_DEBUG_LEVEL.
1041 2010-04-02 Jb Evain <jbevain@novell.com>
1043 * exception.c: remove dead code.
1045 2010-04-02 Zoltan Varga <vargaz@gmail.com>
1047 * *-gc.c: Fix the signature of mono_gc_get_used/heap_size () to be consistent
1050 2010-04-01 Sanjoy Das <sanjoy@playingwithpointers.com>
1052 * sgen-gc.c: Make the nursery size adjustable by the
1053 MONO_GC_PARAMS environment variable.
1055 Code is contributed under MIT/X11 license.
1057 2010-04-01 Gonzalo Paniagua Javier <gonzalo@novell.com>
1059 * threadpool.c: threadpool threads wait is alertable.
1061 Reduced the stack size of the *poll_wait thread.
1063 2010-04-01 Sebastien Pouliot <sebastien@ximian.com>
1065 * exception.c|metadata-internals.h: Add new mono_get_exception_
1066 field_access_msg and mono_get_exception_method_access_msg
1067 functions that accept a const char* parameter to provide more
1068 details when the exception is thrown.
1069 * security-core-clr.c|h: Rework code to allow logging exceptions
1070 (export MONO_LOG_MASK="security") and to supply more details in
1071 [TypeLoad|MethodAccess|FieldAccess]Exception thrown. Also added
1072 mono_security_core_clr_is_field_access_allowed and
1073 mono_security_core_clr_is_call_allowed to return an exception,
1074 with messages and logging, that can be emitted by method-to-ir.c
1076 2010-04-01 Mark Probst <mark.probst@gmail.com>
1078 * sgen-gc.c, sgen-pinning-stats.c: In the heap-dump, dump each
1081 2010-04-01 Zoltan Varga <vargaz@gmail.com>
1083 * appdomain.c (mono_domain_assembly_postload_search): Avoid a crash/assert if
1084 the assembly name is not well formed utf8. Fixes #567882.
1086 2010-04-01 Zoltan Varga <vargaz@gmail.com>
1088 * reflection.c (mono_reflection_create_generic_class): Set the flags field of
1089 the generic parameters from the builder. Fixes #473298.
1091 2010-03-31 Miguel de Icaza <miguel@novell.com>
1093 * object.c (mono_class_proxy_vtable): Eliminate warning.
1095 * marshal.c (emit_marshal_boolean): Eliminate possible
1096 uninitialized local warning.
1098 2010-03-30 Sebastien Pouliot <sebastien@ximian.com>
1100 * class.c (mono_class_init): Postpone coreclr inheritance check
1101 until the end of the initialization (so we can check up the
1102 default ctor manually for the core-clr inheritance rules).
1103 * security-core-clr.c: Add the missing (undocumented) checks on
1104 default constructors when verifying inheritance rules.
1106 2010-03-30 Rodrigo Kumpera <rkumpera@novell.com>
1108 * domain-internals.h (MonoJitExceptionInfo): Add new field
1109 handler_end to the data union. To be used to point the end
1112 2010-03-30 Rodrigo Kumpera <rkumpera@novell.com>
1114 * reflection.c: Add support for new v4 type
1115 System.Reflection.MonoModule that is the concrete version
1116 of Module which is abstract unver v4.
1118 2010-03-30 Rodrigo Kumpera <rkumpera@novell.com>
1120 * class.c (mono_class_init): Don't set class failure after
1121 inited = 1 is set. It must be done before.
1123 2010-03-30 Andreas Färber <andreas.faerber@web.de>
1125 * mono-config.c: Add support for OS "haiku"
1126 * ChangeLog: Fix UTF-8 encoding
1128 Code is contributed under MIT/X11 license.
1130 Tue Mar 30 15:53:06 CEST 2010 Paolo Molaro <lupus@ximian.com>
1132 * console-unix.c: fixed include logic for sys/ioctl.h.
1134 2010-03-30 Mark Probst <mark.probst@gmail.com>
1136 * threads.c: Fix bitmap generation for TLS marking on 64 bit
1139 2010-03-30 Zoltan Varga <vargaz@gmail.com>
1141 * icall.c (ves_icall_System_Enum_get_underlying_type): Don't crash on
1142 unfinished/broken typebuilders.
1144 2010-03-29 Mark Probst <mark.probst@gmail.com>
1146 * sgen-gc.c: Use the same heuristic for the LOS target that we use
1147 for the minor section allowance.
1149 2010-03-29 Raja R Harinath <harinath@hurrynot.org>
1151 * metadata-verify.c (INVALID_METHOD_IMPLFLAG_BITS): Allow bit 6
1154 2010-03-29 Mark Probst <mark.probst@gmail.com>
1156 * sgen-gc.c: Count bytes allocated with heavy statistics.
1158 2010-03-29 Mark Probst <mark.probst@gmail.com>
1160 * sgen-gc.c: More detailed time statistics.
1162 Mon Mar 29 11:52:34 CEST 2010 Paolo Molaro <lupus@ximian.com>
1164 * gc-internal.h, sgen-gc.c, threads.c, utils/mono-hash.c:
1165 fix the user defined mark interface to pass a pointer
1166 to the object location and not the object itself.
1168 2010-03-27 Rodrigo Kumpera <rkumpera@novell.com>
1170 * reflection.c (mono_method_body_get_object): Release
1171 the method header before the call to CACHE_OBJECT since
1172 this is a macro that returns.
1174 2010-03-26 Rodrigo Kumpera <rkumpera@novell.com>
1176 * class.c (inflate_generic_type): mono_metadata_type_dup
1177 already dupes array information, the g_memdup was just
1180 2010-03-26 Rodrigo Kumpera <rkumpera@novell.com>
1182 * verify.c: Add stack_peek function. Fix CEE_DUP
1183 to not read from invalid memory if push did expand
1186 2010-03-26 Rodrigo Kumpera <rkumpera@novell.com>
1188 * verify.c: Remove old table verification code that has
1189 been superseeded by the new metadata verifier.
1191 * verify.h: Remove mono_image_verify_tables from the public
1194 * pedump.c: Fix for removed bits.
1196 2010-03-26 Rodrigo Kumpera <rkumpera@novell.com>
1198 * verify.c: Allocate stack slows lazily to reduce stack usage
1199 in case of methods with huge stacks. Reduces memory consumption
1200 for mcs yyparse from 459Mb to 1.8Mb.
1202 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1204 * threadpool.c: don't try executing items from domains being
1205 unloaded. Fixes appdomain-async-invoke test.
1207 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1209 * threadpool.c: spin while the threadpool initializes.
1210 * mono-wsq.c: if the WSQ has not been initialized or has been shut
1211 down, don't do anything.
1213 2010-03-26 Zoltan Varga <vargaz@gmail.com>
1215 * threads.c (mono_thread_create_internal): Set the GC type of the
1216 threads_starting_up hash table.
1218 2010-03-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
1220 * threadpool.c: reset 'state' to avoid returning non-null when the
1221 event type is not found.
1223 Fri Mar 26 19:03:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1225 * sgen-gc.c: make copy_object () take the address of the
1226 slot holding the reference. This allows saving memory stores
1227 when not needed and it allows keeping track of oldspace->nursery
1228 references for the card table code.
1230 2010-03-26 Andreas Färber <andreas.faerber@web.de>
1232 * null-gc.c (mono_gc_invoke_with_gc_lock): Fix function name.
1234 Code is contributed under MIT/X11 license.
1236 Fri Mar 26 11:33:17 CET 2010 Paolo Molaro <lupus@ximian.com>
1238 * object.c, threads.c, threads-types.h, threads.h: make the
1239 managed thread local storage references precisely tracked.
1241 2010-03-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
1243 * threadpool.[ch]: reworked the threadpool:
1244 -Threadpool threads use a work-stealing queue. Adding a work
1245 item from a threadpool thread will queue it in the thread
1246 local queue without locking (in most cases).
1247 -epoll events are coalesced before being added to the IO
1249 -Dynamically change the number of active threads
1250 -Changed the global queue to be more GC friendly
1252 * class-internals.h: add 2 new performance counters for the number of
1253 threads in the threadpool and the IO threadpool.
1255 * object-internals.h: new field in MonoAsyncResult.
1256 * icall-def.h: new internal call for queueing work items.
1258 * Makefile.am: add 2 new files.
1260 * appdomain.c: bump up corlib version.
1262 * mono-wsq.[ch]: an implementation of a work-stealing queue.
1264 * mono-perfcounters-def.h:
1265 * mono-perfcounters.c: added 2 new performance counters.
1267 2010-03-26 Mark Probst <mark.probst@gmail.com>
1269 * sgen-gc.c: More FIXME/TODO updates.
1271 2010-03-25 Mark Probst <mark.probst@gmail.com>
1273 * gc-internal.h, sgen-gc.c, sgen-gc.h, boehm-gc.c, null-gc.c: New
1274 function mono_gc_invoke_with_gc_lock() which invokes a function
1275 with the guarantee that no collection will occur during its execution.
1277 2010-03-25 Mark Probst <mark.probst@gmail.com>
1279 * sgen-gc.c: Update a few comments.
1281 2010-03-24 Rodrigo Kumpera <rkumpera@novell.com>
1283 * reflection.c: Add support for new v4 type
1284 System.Reflection.MonoAssembly that is the concrete version
1285 of Assembly which is abstract unver v4.
1287 2010-03-24 U-anarquia\miguel <miguel@anarquia>
1289 * reflection.c (mono_reflection_get_custom_attrs_info): Protect
1290 code that uses System.Reflection.Emit in DISABLE_REFLECTION_EMIT.
1292 Expose a few macros that are needed for SR but not SRE to the
1293 world (previous inside the SRE ifdef)
1295 2010-03-24 Mark Probst <mark.probst@gmail.com>
1297 * sgen-gc.c (gc_register_current_thread): We need
1298 stack_start_limit as well in the non-attribute pthread case.
1300 2010-03-23 Rodrigo Kumpera <rkumpera@novell.com>
1302 * threads.c: Fix windows build.
1304 2010-03-22 Rodrigo Kumpera <rkumpera@novell.com>
1306 * thread-types.h: Add mono_thread_resume_interruption.
1308 * threads.c: Add mono_thread_resume_interruption, this
1309 function should be called after the last protected handler
1310 found at interruption time has finished.
1312 2010-03-22 Rodrigo Kumpera <rkumpera@novell.com>
1314 * threads.c (ves_icall_System_Threading_Thread_ResetAbort):
1315 Check MonoInternalThread's ::state instead of ::abort_exc
1316 since the later can be lazily created.
1318 This is specially problematic when running a finally block
1319 under AbortRequested state. ResetAbort must work, but the
1320 abort_exc object has not been created because interruption
1323 2010-03-22 Geoff Norton <gnorton@novell.com>
1325 * locales.c: Its possible for CFStringGetCStringPtr
1326 to return null and not convert encodings. Use
1327 CFStringGetCString instead.
1329 Mon Mar 22 18:06:38 CET 2010 Paolo Molaro <lupus@ximian.com>
1331 * class-internals.h, class.c, object.c: introduce compressed
1332 interface bitmaps (for now only under small config): this saves
1333 about 600 KB of runtime memory on gmcs bootstraps or monodevelop
1336 Mon Mar 22 16:03:34 CET 2010 Paolo Molaro <lupus@ximian.com>
1338 * mono-debug.c: don't try to get the method header, it causes a
1339 deadlock and it is not used for anything anymore.
1341 2010-03-22 Zoltan Varga <vargaz@gmail.com>
1343 * loader.c (mono_method_get_marshal_info): Fix the handling of dynamic methods
1344 broken by the last change.
1346 2010-03-21 Andreas Färber <andreas.faerber@web.de>
1348 * socket-io.c: Don't depend on AF_SNA, AF_DECnet,
1351 Code is contributed under MIT/X11 license.
1353 2010-03-20 Sanjoy Das <sanjoy@playingwithpointers.com>
1355 * sgen-gc.c (mono_gc_get_write_barrier): Handle non-aligned
1358 Code is contributed under MIT/X11 license.
1360 2010-03-19 Martin Baulig <martin@ximian.com>
1362 * mono-debug.c (MonoDebugWrapperData): Replace `cil_code' with a
1363 dummy field, containing an empty string.
1364 (mono_debug_add_method): Don't call mono_disasm_code() for wrappers.
1367 Fri Mar 19 17:26:43 CET 2010 Paolo Molaro <lupus@ximian.com>
1369 * class.c: setup_interface_offsets() refactor to not call
1370 mono_class_get_implemented_interfaces () more times than needed and
1371 to reduce the runtime memory requirements to be O(num_interfaces)
1372 instead of O(max_interface_id).
1374 2010-03-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
1376 * mono-mlist.[ch]: add mono_mlist_set_next ().
1378 2010-03-16 Rodrigo Kumpera <rkumpera@novell.com>
1380 * domain-internals.h: Add MonoTryBlockHoleJitInfo struct and
1381 associated changes to support holes in the protected range of a
1384 * domain.c: Add mono_jit_info_get_try_block_hole_table_info, which
1385 retrieves the holes table from a given MonoJitInfo.
1387 Tue Mar 16 13:11:15 CET 2010 Paolo Molaro <lupus@ximian.com>
1389 * object.h, object-internals.h, object.c, icall.c, gc-internal.h,
1390 debug-helpers.c, cominterop.c, process.c, sgen-gc.c, socket-io.c:
1391 hide the contents of the MonoString and MonoArray structs from the
1392 public API. Change the accessor macros to accessors functions where
1393 needed. Adjusted the array API to allow for pointer-sized lengths and
1394 starting positions, so 64 bit arrays can be optionally provided in an
1395 API compatible way if needed on 64 bit systems.
1397 Tue Mar 16 10:18:07 CET 2010 Paolo Molaro <lupus@ximian.com>
1399 * class-internals.h, class.c, loader.c, marshal.c, metadata.c,
1400 reflection.c: the MonoMethodNormal struct is now unused, so remove it.
1402 Mon Mar 15 18:28:00 CET 2010 Paolo Molaro <lupus@ximian.com>
1404 * class-internals.h: remove the method header from MonoMethod since
1405 from now on it will be transient. We have a header pointer for method
1406 wrappers, since in that case we need to keep track of it. For this
1407 reason, all the Reflection.Emit generated methods use MonoMethodWrapper
1408 structs now. The same happens with MonoMethodInflated.
1409 * class.c: reset the sre_method flag for inflated method structures:
1410 this makes the code that cares look at the header in the MonoMethodInflated
1412 * loader.c: lookup the method header in the appropriate field now that
1413 it is removed from MonoMethod.
1414 * metadata-internals.h: add a flag to the method header to know if it
1415 can be freed inside mono_metadata_free_mh ().
1416 * method-builder.c: updates after moving the header field from
1417 MonoMethod to MonoMethodWrapper.
1418 * reflection.c: MonoMethods generated from Reflection.Emit use
1419 MonoMethodWrapper structs if they need a method header now (later take
1420 advantage of this and remove all the current unsafe uses of method_aux_hash).
1421 * metadata.c: make method header parsing not leak when verification
1422 fails. Alloc it with g_malloc() and free it in mono_metadata_free_mh().
1423 These changes save a few hundred KB of runtime memory in a mcs
1424 bootstrap or a monodevelop startup.
1426 2010-03-12 Rodrigo Kumpera <rkumpera@novell.com>
1428 * verify.c: Improve error message.
1430 2010-03-12 Jb Evain <jbevain@novell.com>
1432 * reflection.c (add_exported_type): populate the exported
1433 table with the type's nested type.
1435 2010-03-10 Mark Probst <mark.probst@gmail.com>
1437 * sgen-gc.c (STRING_SIZE): Semi-revert r153342. I'm an idiot who
1438 can't read parentheses.
1440 2010-03-10 Mark Probst <mark.probst@gmail.com>
1442 * threads.c (thread_cleanup): Add a guard to dereferencing
1443 "thread" to avoid an unlikely race condition.
1445 2010-03-09 Sebastien Pouliot <sebastien@ximian.com>
1447 * assembly.c: Fix crash in moon-unit when aname->culture is NULL
1448 instead of an empty string.
1450 2010-03-09 Zoltan Varga <vargaz@gmail.com>
1452 * object-internals.h (_G_BOOLEAN_EXPR): Fix the definition of this to explicitly
1453 convert to a boolean, recent gcc versions compile this differently.
1455 2010-03-09 Zoltan Varga <vargaz@gmail.com>
1457 * sgen-gc.c (safe_object_get_size): Avoid a function call so this can really be
1460 2010-03-09 Mark Probst <mark.probst@gmail.com>
1462 * sgen-gc.c (STRING_SIZE): Off by one.
1464 2010-03-09 Mark Probst <mark.probst@gmail.com>
1466 * sgen-archdep.h: Fix the signal context register access for
1469 2010-03-09 Zoltan Varga <vargaz@gmail.com>
1471 * sgen-gray.c: Get rid of the unused 'start' field in GrayQueueSection.
1473 2010-03-08 Rodrigo Kumpera <rkumpera@novell.com>
1475 * verify.c: Store the initial basic block returned by mono_basic_block_split
1476 so we can release the whole list and not just the first one.
1478 Mon Mar 8 17:30:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1480 * verify.c, debug-helpers.c, profiler.c, loader.c,
1481 mono-basic-block.c, mono-debug.c, reflection.c: prepare to make
1482 MonoMethodHeader a transient entity.
1484 2010-03-08 Zoltan Varga <vargaz@gmail.com>
1486 * sgen-gc.c (scan_needed_big_objects): Call drain_gray_stack () to avoid
1487 uncontrolled growth of the gray stack.
1489 * sgen-gray.c: Rewrite this so it behaves like a stack, not a queue, so recently
1490 added items are removed first, improving cache locality. Avoid freeing queue
1491 segments in the fast path, use the list of segments as the free list, truncate
1492 it to its max size at the start of collection.
1494 Mon Mar 8 10:13:52 CET 2010 Paolo Molaro <lupus@ximian.com>
1496 * metadata-internals.h: more memory savings, both with small config and without.
1499 Sat Mar 6 19:12:12 CET 2010 Paolo Molaro <lupus@ximian.com>
1501 * appdomain.c, domain-internals.h, domain.c, object.c:
1502 make class_vtable_hash into an array to reduce memory usage.
1504 Sat Mar 6 18:16:35 CET 2010 Paolo Molaro <lupus@ximian.com>
1506 * mempool.c, class-internals.h, class.c, icall.c, metadata.c,
1507 object-internals.h, object.c, reflection.c, threadpool.c:
1508 reduce resource usage when the small config is selected.
1509 In particular, up to 64K of methods/fields/properties/events
1510 are allowed and "other" methods in events are ignored.
1512 Fri Mar 5 19:05:47 CET 2010 Paolo Molaro <lupus@ximian.com>
1514 * threads.c: reduce resource usage when compiled for a small config.
1516 2010-03-05 Mark Probst <mark.probst@gmail.com>
1518 * sgen-gc.c: Also collect number of degraded-alloced objects with
1521 2010-03-04 Geoff Norton <gnorton@novell.com>
1523 * assembly.c: Only support OSX bundling if the bundle is
1524 actually detectable.
1526 2010-03-04 Geoff Norton <gnorton@novell.com>
1528 * loader.c: The marshal specs are freed at the end of the call
1529 but it explicitly frees the strings as well as the container,
1530 so we need to dup them too to avoid referencing free'd memory.
1532 2010-03-04 Geoff Norton <gnorton@novell.com>
1535 * icall.c: Add a new private internal icall to construct
1536 an object from its type without running the ctor.
1538 Thu Mar 4 15:37:09 CET 2010 Paolo Molaro <lupus@ximian.com>
1540 * profiler.c: allow multiple profiler engines to be loaded
1543 Wed Mar 3 20:19:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1545 * profiler-private.h, profiler.c, profiler.h, sgen-gc.c: introduce
1546 profiler event to track object moves.
1548 Wed Mar 3 19:20:39 CET 2010 Paolo Molaro <lupus@ximian.com>
1550 * object.c, profiler.c, profiler.h, string-icalls.c:
1551 remove the reduntant MONO_PROFILE_STRING_ALLOC profiler event.
1553 2010-03-03 Miguel de Icaza <miguel@novell.com>
1555 * decimal.c (mono_double2decimal): Add support for reducing the
1556 scale of a decimal. It turns the 0.6000000000000 into 0.6 as
1559 2010-03-03 Rodrigo Kumpera <rkumpera@novell.com>
1562 * icall.c: Implement System.MonoType::get_core_clr_security_level icall.
1564 2010-03-03 Marek Habersack <mhabersack@novell.com>
1566 * mono-config.c (mono_config_parse_assembly_bindings): added -
1567 parses assembly binding redirections from appdomain's config
1570 * metadata-internals.h: added definition of a new function -
1571 mono_config_parse_assembly_bindings - to support parsing assembly
1572 binding redirections defined in appdomain's config file.
1574 * domain-internals.h: added two new fields to _MonoDomain - a list
1575 of assembly bindings and a flag to parse the config file only
1578 * assembly.c (assembly_binding_maps_name): empty culture name and
1579 NULL culture name are considered equal.
1580 (mono_assembly_apply_binding): added support for domain specific
1581 assembly binding redirections, read from the appdomain's
1582 configuration file. Fixes bug #580185
1584 Wed Mar 3 11:46:06 CET 2010 Paolo Molaro <lupus@ximian.com>
1586 * appdomain.c, domain.c, icall.c, image.c, marshal.c, object.c,
1587 reflection.c, socket-io.c, threadpool.c, threads.c: removed 1.1/1.0
1590 2010-03-02 Rodrigo Kumpera <rkumpera@novell.com>
1592 * reflection.c (mono_image_get_memberref_token): Extract mono_image_add_memberef_row
1593 from this function. The new function receive the parent token instead of a type.
1595 * reflection.c (mono_image_get_methodref_token_for_methodbuilder):
1596 * reflection.c (mono_image_get_ctorbuilder_token): Use new function to encode
1597 typebuilders. This make it possible to properly encode generic type builders since
1598 their unmanaged type don't have generics data while unfinished.
1602 2010-03-02 Mark Probst <mark.probst@gmail.com>
1604 * sgen-gc.c, sgen-protocol.c, sgen-protocol.h: New facility for
1605 writing binary log files (can be enabled by #define'ing
1606 BINARY_PROTOCOL) for better debugging of timing-dependent bugs or
1607 bugs in longer running programs.
1609 Mon Mar 1 19:35:32 CET 2010 Paolo Molaro <lupus@ximian.com>
1611 * metadata.c: added some API documentation.
1613 2010-03-01 Robert Jordan <robertj@gmx.net>
1615 * filewatcher.h: Include glib.h to fix the MSVC build.
1617 2010-03-01 Zoltan Varga <vargaz@gmail.com>
1619 * class-internals.h (MonoClass): Get rid of the reflection_info field, add
1620 a GC handle instead. This is a bit slower to access, but avoids burdening the
1621 GC with 100s of individual roots.
1623 * reflection.c (mono_class_get_ref_info):
1624 (mono_class_set_ref_info):
1625 (mono_class_free_ref_info): New internal helper fuctions.
1627 * reflection.c appdomain.c icall.c class.c: Use the new helper functions instead
1628 of accessing klass->reflection_info directly.
1630 * sgen-gc.c (alloc_complex_descriptor): Fix the computation of the number of
1633 * gc.c (alloc_handle): Create a GC descriptor for the 'entries' array, free
1636 2010-02-28 Zoltan Varga <vargaz@gmail.com>
1638 * marshal.c (get_runtime_invoke_type): Avoid sharing byref with I, as the latter
1639 needs an indirection.
1641 2010-02-26 Zoltan Varga <vargaz@gmail.com>
1643 * generic-sharing.c: Removed, moved its contents to mini/mini-generic-sharing.c,
1644 so all generic sharing code is in one place.
1646 * class.c (get_implicit_generic_array_interfaces): Fix the last change so
1647 we don't call setup_interface_offsets () for unfinished types.
1649 2010-02-26 Zoltan Varga <vargaz@gmail.com>
1651 * class.c (mono_class_generic_sharing_enabled): Move this to
1654 * image.c: Add an unload hook which is called before an image is unloaded.
1656 * generic-sharing.c: Use the unload hook to unregister per-image data, to avoid
1657 metadata.c having to depend on generic sharing.
1659 Fri Feb 26 19:23:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1661 * class.c: reduce size of ridiculously large cache.
1663 2010-02-26 Martin Baulig <martin@ximian.com>
1666 (MONO_DEBUGGER_MINOR_VERSION): Bump to 5.
1668 * threads.c (mono_thread_internal_reset_abort): New method; resets
1669 the abort, but doesn't throw any exception if no abort was requested.
1671 2010-02-26 Zoltan Varga <vargaz@gmail.com>
1673 * class.c (get_implicit_generic_array_interfaces): Call
1674 mono_class_setup_interface_offsets () before accessing
1675 eclass->interface_offsets_count. This only shows up on platforms without IMT for
1678 Thu Feb 25 12:12:44 CET 2010 Paolo Molaro <lupus@ximian.com>
1680 * environment.c, environment.h, icall.c: make the GetOSVersionString()
1683 Thu Feb 25 11:37:50 CET 2010 Paolo Molaro <lupus@ximian.com>
1685 * metadata.c, metadata.h: make MONO_TYPE_IS* functional without
1686 direct access to the MonoType fields.
1688 2010-02-25 Zoltan Varga <vargaz@gmail.com>
1690 * threads.h: Move some internal functions which were added to this header by
1691 mistake to threads-types.h.
1693 * class.c (mono_class_init): Get rid of mono_setup_vtable_in_class_init.
1695 Wed Feb 24 17:45:27 CET 2010 Paolo Molaro <lupus@ximian.com>
1697 * class-internals.h, class.h, object.h: make MonoRemoteClass
1698 and mono_remote_class() internal.
1700 Wed Feb 24 17:05:18 CET 2010 Paolo Molaro <lupus@ximian.com>
1702 * metadata-internals.h, class-internals.h, metadata.h: make the
1703 MonoType guts internal as well.
1705 Wed Feb 24 16:02:42 CET 2010 Paolo Molaro <lupus@ximian.com>
1707 * reflection.h: the MonoTypeNameParse guts are internal now.
1708 * assembly.c, assembly.h, image.h: the MonoAssemblyName guts
1709 are internal now, provide accessors as needed.
1710 * metadata.h, metadata-internals.h: the MonoMethodSignature
1711 guts are internal now.
1712 * Makefile.am: mempool.h is an internal header now.
1713 * *.h, *.c: remove glib.h usage from the public headers.
1715 2010-02-24 Atsushi Enomoto <atsushi@ximian.com>
1717 * culture-info-table.h : regenerated.
1719 2010-02-22 Rodrigo Kumpera <rkumpera@novell.com>
1721 * metadata.c: Add mono_method_get_header_summary which returns minimal
1722 information about the header of a method. This is the information used
1723 by the inline oracle to reject methods.
1725 This method doesn't decode local variables and doesn't cache it's result,
1726 so it should cause a minimal reduction in memory usage.
1728 * metadata-internals.h: Add MonoMethodHeaderSummary structure and
1729 mono_method_get_header_summary.
1731 2010-02-22 Jeffrey Stedfast <fejj@novell.com>
1733 * threads.c (mono_thread_exit): Make sure that the main thread is
1734 non-null before dereferencing it.
1736 2010-02-21 Geoff Norton <gnorton@novell.com>
1738 * Makefile.am: Add CoreFoundation linkage on darwin to properly get the current
1740 * locaes.c: When running on darwin, try to get the local from CoreFoundation
1741 before falling back to the posix lookup.
1743 2010-02-19 Zoltan Varga <vargaz@gmail.com>
1745 * threads.c (mono_thread_suspend_all_other_threads): Ignore threads which have
1746 the DONT_MANAGE flag set.
1748 2010-02-19 Rodrigo Kumpera <rkumpera@novell.com>
1750 * domain.c: Remove old v1 version strings. Let the runtime
1751 default to 2.0 instead of failing because it can't find a
1752 working 1.0 instalation.
1754 2010-02-19 Rodrigo Kumpera <rkumpera@novell.com>
1756 * domain.c: Add v4 RC version string.
1758 2010-02-19 Rodrigo Kumpera <rkumpera@novell.com>
1760 * mono-basic-block.c (mono_opcode_value_and_size): Use pointer variant
1761 of overflow checking function.
1763 2010-02-18 Rodrigo Kumpera <rkumpera@novell.com>
1765 * reflection.c (mono_reflection_method_on_tb_inst_get_handle): Handle non
1768 * reflection.c (mono_reflection_get_custom_attrs_info): Handle compiler context
1769 cases for ParameterInfo.
1773 2010-02-18 Zoltan Varga <vargaz@gmail.com>
1775 * class.c (mono_class_get_cctor): Fix support for dynamic classes, which doesn't
1776 have has_cctor set. Fixes #575946.
1778 2010-02-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
1780 * appdomain.c: display a warning if the parsing the config file
1782 Skip the BOM in UTF-8 files.
1783 Copy the AppDomainSetup before setting the privateBinPath so that the
1784 correct configuration file is read.
1786 2010-02-15 Zoltan Varga <vargaz@gmail.com>
1788 * object.c: Instead of using one vtable trampoline, allow the JIT to use one
1789 vtable trampoline per vtable slot index. Not used yet.
1791 2010-02-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
1794 * icall.c: add internal call that returns the system page size.
1796 2010-02-13 Zoltan Varga <vargaz@gmail.com>
1798 * debug-helpers.c (mono_method_desc_search_in_image): Handle short names like
1799 'int' for system classes.
1801 Fri Feb 12 18:36:02 CET 2010 Paolo Molaro <lupus@ximian.com>
1803 * icall.c, icall-def.h: new icall to check for sufficient
1806 2010-02-12 Mark Probst <mark.probst@gmail.com>
1808 * reflection.c (ensure_complete_type): Check that reflection_info
1809 is set, too. Fixes crash of corlib testsuite with -O=-all.
1811 2010-02-11 Rodrigo Kumpera <rkumpera@novell.com>
1814 * tabledefs.h: Add NoOptimization flag.
1816 2010-02-10 Mark Probst <mark.probst@gmail.com>
1818 * sgen-gc.c: Don't consider it a missing remset if the target
1819 object is pinned - we might have done the store but not added the
1822 2010-02-10 Mark Probst <mark.probst@gmail.com>
1824 * sgen-gc.c: When checking for missing remsets, don't assert on
1825 the first one, but print them all and then assert.
1827 2010-02-10 Mark Probst <mark.probst@gmail.com>
1829 * sgen-gc.c (find_in_remset_loc): Handle the small bitmap case.
1831 2010-02-09 Miguel de Icaza <miguel@novell.com>
1833 * console-unix.c: On OSX Control-Y is assigned to
1834 VDSUSP (non-Posix), the
1835 suspend-program-next-time-it-tries-to-read-input command (this is
1836 different than C-z, which suspends immediately).
1838 Do the same thing that bash does and ignore this setting,
1839 making our repl/getline support pasting.
1841 2010-02-10 Mark Probst <mark.probst@gmail.com>
1843 * sgen-gc.c: Simple plausibility check for scan_starts.
1845 2010-02-10 Mark Probst <mark.probst@gmail.com>
1847 * sgen-gc.c: Round up when calculating the number of scan starts.
1849 2010-02-10 Rodrigo Kumpera <rkumpera@novell.com>
1851 * reflection.c: Export mono_get_object_from_blob.
1853 * object-internals.h: Ditto.
1855 * icall.c: New icall property_info_get_default_value to get the default
1856 value of a property. Since using this is not common, no caching is done.
1858 * icall-def.h: Add new icall.
1860 2010-02-10 Rodrigo Kumpera <rkumpera@novell.com>
1862 * class.c: Add mono_class_get_property_default_value.
1864 * class-internal.h: Export mono_class_get_property_default_value.
1866 2010-02-10 Rodrigo Kumpera <rkumpera@novell.com>
1868 * reflection.c (mono_image_get_property_info): Encode the default value of a property.
1870 Wed Feb 10 14:48:45 CET 2010 Paolo Molaro <lupus@ximian.com>
1872 * sgen-gc.c: introduced critical regions to allow some lockless
1873 operations and increase scalability.
1875 2010-02-10 Geoff Norton <gnorton@novell.com>
1877 * reflection.c: Support building with DISABLE_REFLECTION
1879 2010-02-09 Gonzalo Paniagua Javier <gonzalo@novell.com>
1881 * threadpool.c: Fixes for SetMinThreads and SetMaxThreads.
1884 * exception.c: fix typo in comment.
1886 2010-02-09 Rodrigo Kumpera <rkumpera@novell.com>
1888 * icall.c (param_info_get_type_modifiers): Handle the case when the member object is a
1889 property. This happens which instances returned by PropertyInfo::GetIndexParameters ().
1891 * reflection.c (mono_reflection_get_custom_attrs_info): Ditto.
1893 * object-internals.h: Export mono_class_is_reflection_method_or_constructor as part of
1898 2010-02-09 Mark Probst <mark.probst@gmail.com>
1900 * threads.c: Removed two assertions that were too strict. Added a
1901 clarifying comment. Fixes #577090.
1903 2010-02-08 Zoltan Varga <vargaz@gmail.com>
1905 * domain.c (mono_jit_info_table_find): Avoid looking in the root domain, since
1906 the caller has no way of knowing the domain which owns the returned MonoJitInfo.
1908 * appdomain.c (create_exceptions): Call mono_thread_push/popappdomain_ref ().
1910 * verify.c (mono_type_get_stack_name): Fix a warning.
1912 2010-02-07 Zoltan Varga <vargaz@gmail.com>
1914 * marshal.c (mono_marshal_get_wrapper_info): Rename from
1915 mono_marshal_wrapper_info_from_wrapper.
1917 * marshal.c (mono_marshal_set_wrapper_info): Rename from
1918 mono_marshal_method_set_wrapper_data, and export.
1920 * boehm-gc.c sgen-gc.c null-gc.c: Get rid of mono_gc_get_allocator_type, store
1921 the allocator type in a AllocatorWrapperInfo structure instead, which is accesible
1922 by calling mono_marshal_get_wrapper_info ().
1924 * sgen-gc.c (mono_gc_get_managed_allocator): Add a specialized allocator for
1925 small objects which does no size checks.
1927 2010-02-05 Rodrigo Kumpera <rkumpera@novell.com>
1929 * icall-def.h: Rename get_MetadataToken to GetMetadataToken.
1931 2010-02-04 Rodrigo Kumpera <rkumpera@novell.com>
1933 * verify.c (mono_method_verify): Use the new basic block formation pass
1934 to avoid verifying dead basic blocks. This is the same behavior as the
1935 runtime MS verifier.
1937 2010-02-04 Rodrigo Kumpera <rkumpera@novell.com>
1939 * mono-basic-block.c:
1940 * mono-basic-block.h: New implementation of a basic block formation pass.
1941 The formation pass does static liveness analysis as well to detect dead
1944 2010-02-04 Zoltan Varga <vargaz@gmail.com>
1946 * marshal.c (mono_marshal_get_native_wrapper): Emit a null check for the
1947 'this' argument in icalls.
1949 2010-02-02 Zoltan Varga <vargaz@gmail.com>
1951 * reflection.c (resolve_object): Handle MonoArrayMethod. Fixes #575955.
1953 2010-02-01 Mark Probst <mark.probst@gmail.com>
1955 * object.c, domain.c: When using SGen, we must register
1956 vtable->type as a root if it's not a MonoType, because then it
1959 2010-02-01 Mark Probst <mark.probst@gmail.com>
1961 * sgen-gc.c: Reset to_space_bumper to to_space_section->next_data
1962 at the start of nursery collections, because we might have had
1963 degraded allocations which changed next_data.
1965 2010-01-30 Zoltan Varga <vargaz@gmail.com>
1967 * marshal.c (mono_marshal_get_managed_wrapper): Avoid constructing the
1968 custom attr so this function works in cross-compiling mode.
1970 2010-01-29 Zoltan Varga <vargaz@gmail.com>
1972 * class.c (make_generic_param_class): Initialize interface offsets since we
1973 set klass->inited. Fixes #574819.
1975 2010-01-28 Zoltan Varga <vargaz@gmail.com>
1977 * domain.c (mono_domain_free): Send the END_UNLOAD profiler event before
1978 calling the JIT domain cleanup hook.
1980 2010-01-28 Rodrigo Kumpera <rkumpera@novell.com>
1982 * pedump.c (main): Properly set the verifier mode when running the metadata
1985 2010-01-28 Rodrigo Kumpera <rkumpera@novell.com>
1987 * verify.c (verify_class_for_overlapping_reference_fields): Properly verify
1988 overlapping fields now that we're called before has_references is set.
1990 * pedump.c (dump_verify_info): Clear any loader error before verifying another
1991 method. Otherwise all sort of weird stuff happens.
1993 2010-01-27 Zoltan Varga <vargaz@gmail.com>
1995 * object.c (mono_field_get_value_object): Handle nullable types correctly.
1998 2010-01-25 Zoltan Varga <vargaz@gmail.com>
2000 * icall.c (ves_icall_System_Array_SetValueImpl): Handle nullable types correctly.
2003 2010-01-23 Mark Probst <mark.probst@gmail.com>
2005 * sgen-pinning.c (evacuate_pin_staging_area): Don't assume
2006 pin_staging_area_index is greater than 0.
2008 2010-01-22 Miguel de Icaza (miguel@novell.com)
2010 * loader.c: Since we do nothing with the error returned, pass NULL
2011 to ignore the error.
2013 2010-01-21 Rodrigo Kumpera <rkumpera@novell.com>
2015 * reflection.c (typebuilder_setup_fields): Pretend field setup already
2016 happened before starting to encode the actual fields. This avoid ciclic
2017 dependencies and eventual crashes.
2021 2010-01-21 Mark Probst <mark.probst@gmail.com>
2023 * sgen-gc.c, gc-internal.h, object.c: Make string allocation
2024 atomic and remove the half-constructed hack in SGen.
2026 2010-01-21 Rodrigo Kumpera <rkumpera@novell.com>
2028 * metadata-verify.c (parse_generic_inst): Fail a type signature if it
2029 has a recursive reference to itself.
2033 2010-01-21 Rodrigo Kumpera <rkumpera@novell.com>
2035 * loader.c (mono_method_signature): Fix error message.
2037 2010-01-21 Mark Probst <mark.probst@gmail.com>
2039 * sgen-gc.c: Reuse to-space sections between nursery collections.
2041 2010-01-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
2043 * icall.c: don't raise AppDomain.TypeResolve when the type is loaded
2044 from the current assembly or mscorlib. Fixes bug #322957.
2046 2010-01-20 Zoltan Varga <vargaz@gmail.com>
2048 * marshal.c: Calculate the target class of the delegete invoke wrappers using
2049 get_wrapper_target_class.
2051 2010-01-19 Mark Probst <mark.probst@gmail.com>
2053 * sgen-gc.c: Fix warnings.
2055 2010-01-19 Rodrigo Kumpera <rkumpera@novell.com>
2057 * verify.c (store_local): Better error message.
2059 2010-01-19 Rodrigo Kumpera <rkumpera@novell.com>
2061 * object.c (mono_object_get_virtual_method): Handle generic interfaces with variant
2064 2010-01-19 Rodrigo Kumpera <rkumpera@novell.com>
2066 * icall.c (ves_icall_Remoting_RemotingServices_GetVirtualMethod): This
2067 function is generics variance aware.
2069 2010-01-19 Sebastien Pouliot <sebastien@ximian.com>
2071 * security-core-clr.c (mono_security_core_clr_can_access_internals):
2072 Handle the case where 'basedir' can be NULL (e.g. SRE assemblies)
2074 2010-01-19 Sylvain Dupont <duposyl@gmail.com>
2076 * cominterop.c marshal.c: Added support for marshalling in, in/byref,
2077 in/out, in/out/byref parameters of type SAFEARRAY[VARIANT].
2079 Code is contributed under MIT/X11 license.
2081 2010-01-19 Rodrigo Kumpera <rkumpera@novell.com>
2083 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Handle inflated generic methods
2086 2010-01-19 Zoltan Varga <vargaz@gmail.com>
2088 * marshal.c (mono_marshal_wrapper_info_from_wrapper): New helper function to
2089 return a point to a wrapper specific info structure describing the wrapper.
2090 (mono_marshal_get_array_address): Store the rank+elem_size in the wrapper info.
2092 2010-01-18 Mark Probst <mark.probst@gmail.com>
2094 * sgen-gc.c: Make minor collection section allowance adaptive,
2095 depending on the amount of memory reclaimed in the last major
2096 collection. If more memory was reclaimed (i.e. more garbage
2097 produced), do the next collection earlier.
2099 2010-01-18 Rodrigo Kumpera <rkumpera@novell.com>
2101 * metadata-verify.c (parse_type): Fail a type signature if it has a recursive reference
2104 * metadata-verify.c (mono_verifier_verify_typespec_signature): Change signature to take
2105 the token as parameter.
2107 * verify-internals.h: Ditto.
2109 * metadata.c (mono_type_create_from_typespec): Pass token to verifier.
2113 2010-01-18 Mark Probst <mark.probst@gmail.com>
2115 * sgen-gc.c: Make store_remset_buffer_index long.
2117 2010-01-18 Rodrigo Kumpera <rkumpera@novell.com>
2119 * class.c (mono_class_from_typeref): Fail loading of self-referencing typeref tokens.
2123 2010-01-18 Zoltan Varga <vargaz@gmail.com>
2125 * sgen-gc.c (mono_gc_base_init): Add 'conservative_stack_mark' option to turn
2126 off precise marking if it is available.
2127 (mono_gc_get_bitmap_for_descr): Fix the handling of run length descriptors.
2129 2010-01-17 Zoltan Varga <vargaz@gmail.com>
2131 * sgen-gc.c (mono_gc_conservatively_scan_area): Resurrect this.
2133 * sgen-pinning.c (evacuate_pin_staging_area): Don't assert if there are no
2136 * sgen-gc.c (create_allocator): Add the missing n > MONO_ARRAY_MAX_INDEX check
2137 to the array allocator.
2139 2010-01-16 Zoltan Varga <vargaz@gmail.com>
2141 * generic-sharing.c (instantiate_other_info): Don't create ftnptr's from the
2142 result of mono_compile_method (), it already includes an ftnptr.
2144 2010-01-16 Zoltan Varga <vargaz@gmail.com>
2146 * metadata.c (get_image_set): Remove an assert which can happen in normal use.
2148 2010-01-15 Zoltan Varga <vargaz@gmail.com>
2150 * metadata.c (mono_metadata_str_hash): New helper function to compute a stable
2151 hash value which doesn't depend on glib/eglib versions.
2152 (mono_metadata_type_hash): Use it.
2154 * object.c (mono_method_get_imt_slot): Ditto.
2156 2010-01-14 Rodrigo Kumpera <rkumpera@novell.com>
2158 * class.c (mono_type_has_exceptions): Check the generic instance. It can fail
2159 independently of the GTD.
2161 * class.c (mono_class_setup_fields): Fail if field has negative offset.
2163 * class.c (mono_class_setup_fields): Fail if valuetype has zero size. Add sizeof(MonoObject)
2164 to the upper limit since instance_size includes this amount.
2166 * class.c (mono_class_layout_fields): Check if the types of the static fields have failed.
2170 2010-01-14 Zoltan Varga <vargaz@gmail.com>
2172 * object.c (build_imt_slots): Compute the vtable slot correctly for interfaces
2173 with static methods.
2175 * object.c (build_imt_slots): Avoid asserting when static methods are
2176 encountered in an interface.
2178 2010-01-13 Mark Probst <mark.probst@gmail.com>
2180 * sgen-gc.c (to_space_expand): Fix assertion.
2182 Wed Jan 13 15:42:28 CET 2010 Paolo Molaro <lupus@ximian.com>
2184 * string-icalls.c: missing declaration fixes.
2185 * sgen-gc.c: portability fixes.
2187 2010-01-12 Rodrigo Kumpera <rkumpera@novell.com>
2189 * class.c (mono_class_get_implemented_interfaces): Now take a MonoError argument.
2195 * class-internals.h: Adjust for new signature of mono_class_get_implemented_interfaces.
2197 2010-01-12 Rodrigo Kumpera <rkumpera@novell.com>
2199 * class.c (mono_class_setup_interfaces): Now take a MonoError argument and
2200 it can fail loading the type.
2202 * class.c: Add mono_class_inflate_generic_class_checked.
2206 * class-internals.h: Adjust for new signature of mono_class_setup_interfaces.
2208 2010-01-11 Zoltan Varga <vargaz@gmail.com>
2210 * loader.c (mono_method_signature_checked): New internal function taking an
2213 * socket-io.c (AI_ADDRCONFIG): Applied patch from John Lightsey (jd@cpanel.net).
2214 Fixes build on rh 7.3.
2216 2010-01-10 Aaron Bockover <abockover@novell.com>
2218 * assembly.c (mono_set_rootdir): Support finding the mono paths on OS X
2219 at runtime in the same way as on Windows, which yields a relocatable
2220 Mono. Uses dyld's _NSGetExecutablePath and realpath to resolve the path
2221 of the running mono process.
2223 On TARGET_ARM, fallback () will always be executed.
2225 2010-01-08 Rodrigo Kumpera <rkumpera@novell.com>
2227 * icall.c (ves_icall_Type_GetInterfaceMapData): This function is generics variance aware.
2229 2010-01-08 Rodrigo Kumpera <rkumpera@novell.com>
2231 * class.c (mono_class_is_assignable_from_slow): Support variant
2234 * class.c (mono_class_implement_interface_slow): Support types with
2235 variant generic arguments.
2237 2010-01-08 Rodrigo Kumpera <rkumpera@novell.com>
2239 * verify.c: Remove some code duplication.
2241 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2243 * object.c: Update docs.
2245 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2247 * object.c (add_imt_builder_entry): Improve DEBUG_IMT spew.
2249 * object.c (build_imt_slots): Interfaces with variant generic arguments use the
2250 fallback trampoline as well.
2252 * class.c (mono_class_interface_offset_with_variance): Add new non_exact_match
2253 out argument that is set to TRUE if the match was direct.
2255 * class.c (mono_class_is_assignable_from): Delegates require variance testing as well.
2257 * class-internal.h: Update prototype of mono_class_interface_offset_with_variance.
2259 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2261 * class.c: Add mono_class_interface_offset_with_variance function that does same
2262 as mono_class_interface_offset but takes variance into account.
2264 * class-internal.h: Export mono_class_interface_offset_with_variance.
2266 * object.c: Fix and improve DEBUG_IMT. Added an assert for IMT thunk building.
2268 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2272 * class.c: Add some FIXME for due to variant generic arguments.
2274 object.c (mono_object_isinst_mbyref): Interfaces with variant generic arguments
2275 can't use the simple bitfield check, so call mono_class_is_assignable_from if
2276 the bitfield check fails.
2278 2010-01-07 Rodrigo Kumpera <rkumpera@novell.com>
2280 * class.c (mono_class_is_assignable_from): Rework the generics variance code
2281 to be easier to read and fix bugs in the case a non generic type implements a variant
2284 * class.c (mono_class_has_variant_generic_params): Make non static.
2286 * class-internals.h: Export mono_class_has_variant_generic_params as part of
2289 2010-01-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
2291 * assembly.c: fix MONO_PATH debug output.
2293 2010-01-06 Atsushi Enomoto <atsushi@ximian.com>
2295 * culture-info-table.h : regenerated.
2297 2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
2299 * verify.c (mono_verifier_verify_class): Properly check for broken parent. Ignore
2300 types that are meant to not have a parent.
2302 2010-01-04 Zoltan Varga <vargaz@gmail.com>
2304 * marshal.c (mono_marshal_get_runtime_invoke): Make a copy of the signature
2305 from the image mempool, so it is not leaked.
2307 2010-01-04 Zoltan Varga <vargaz@gmail.com>
2309 * metadata-internals.h (_MonoImage): Remove unused generic_class_cache field.
2311 2010-01-04 Sebastien Pouliot <sebastien@ximian.com>
2313 * verify.c (verify_valuetype_layout_with_target): Fix case
2314 that can lead to infinite recursion. Fix bug #567861
2316 2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
2318 * pedump.c: Run code verifier even if image verification fails
2319 due to a failed type we. This allows more errors to be shown.
2321 2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
2323 * class.c (count_virtual_methods): Remove the assert and now
2326 * class.c (setup_interface_offsets): This can fail now.
2328 * class.c (mono_class_setup_vtable_general): Check for parent vtable
2329 errors. Check setup_interface_offsets errors.
2331 * class.c (setup_interface_offsets): Simplify the return error logic
2332 and remove class_init_ok.
2336 2010-01-04 Rodrigo Kumpera <rkumpera@novell.com>
2338 * class.c (mono_class_init): Do class verification at the beginning. Add
2339 some asserts to avoid tripping into invalid memory.
2341 * object.c (compute_class_bitmap): Replace a g_assert_not_reached with a
2342 g_error and a decent message.
2344 * verify.c (mono_verifier_verify_class): Verify for invalid super type.
2348 2010-01-03 Zoltan Varga <vargaz@gmail.com>
2350 * mempool-internals.h (g_list_prepend_mempool): Define this and related functions
2351 as inline functions instead of defining them in mempool.c.
2353 * metadata-internals.h (MonoImageSet): New structure representing a set of
2354 MonoImages, which own a collection of generic instances.
2356 * metadata.c: Get rid of the global generic caches, instead assign each generic
2357 instance to the image set which consists of all the images referenced by the
2358 instance. This greatly speeds up mono_metadata_clean_for_image (), and allows
2359 the memory used by generic instances to be allocated from a per image-set mempool
2362 2010-01-03 Zoltan Varga <vargaz@gmail.com>
2364 * marshal.c (mono_marshal_get_runtime_invoke): Fix a memory leak.
2366 2010-01-03 Zoltan Varga <vargaz@gmail.com>
2368 * appdomain.c (zero_static_data): Fix a warning.
2370 * locales.c (construct_culture_from_specific_name): Applied patch from
2371 José Antonio Sánchez Lázaro <jasl@darcysoft.es>. Fix a crash if a culture was
2372 not found. Fixes #567900.
2374 2009-12-31 Sebastien Pouliot <sebastien@ximian.com>
2376 * loader.c (mono_method_get_signature_full): Remove two asserts.
2377 Return NULL instead so that the verifier can handle both cases
2380 2009-12-30 Rodrigo Kumpera <rkumpera@novell.com>
2382 * class.c (mono_class_setup_methods): Use checked version of mono_class_inflate_generic_method_full
2383 so we can properly fail types instead of crashing.
2387 2009-12-30 Rodrigo Kumpera <rkumpera@novell.com>
2389 * reflection.c (reflection_methodbuilder_to_mono_method): Assert in case of a broken
2392 2009-12-30 Rodrigo Kumpera <rkumpera@novell.com>
2394 * marshal.c (mono_mb_emit_restore_result): Properly handle generic enums.
2396 2009-12-26 Zoltan Varga <vargaz@gmail.com>
2398 * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait): Don't close the
2399 wait handle if the wait is interrupted, since it is still in mon->wait_list, and
2400 we can't remove it from it since we don't hold the lock.
2401 (mon_new): Free the orphaned events here when a mon structure is added to the
2402 freelist. Fixes #561239. Thanks to Mike Rieker <wmrieker@nii.net> for tracking
2405 2009-12-26 Rodrigo Kumpera <rkumpera@novell.com>
2407 * verify.c (init_stack_with_value_at_exception_boundary): Do stack overflow checking here
2408 as max stack might be zero.
2412 2009-12-26 Rodrigo Kumpera <rkumpera@novell.com>
2414 Rework all uses of mono_class_setup_methods to accept that it can fail now.
2416 * class.c (mono_class_setup_methods): This function now can fail the class. Do so for generic
2417 instances if the GTD did.
2419 * class.c (mono_class_setup_properties): Ditto.
2421 * class.c (mono_class_setup_events): Ditto.
2423 * class.c (mono_class_setup_vtable): Fail early if the type is already broken.
2425 * class.c (mono_class_setup_vtable_general): Add a few more missing broken type checks. Sanitize
2428 * class.c (mono_class_init): Fail if GTD did.
2431 * generic-sharing.c:
2435 * verify.c: Properly handle failure of mono_class_setup_methods.
2437 2009-12-26 Rodrigo Kumpera <rkumpera@novell.com>
2439 * class-internals.c: Add mono_class_inflate_generic_method_full_checked and make
2440 mono_class_inflate_generic_method_full internal.
2442 * class.c (inflate_generic_context): Now takes a MonoError argument.
2444 * class.c (mono_class_inflate_generic_method_full): Now calls the _checked and abort on
2447 2009-12-26 Zoltan Varga <vargaz@gmail.com>
2449 * generic-sharing.c (instantiate_other_info): Avoid creating jump trampolines since
2450 they cannot be patched. Partly fixes #564408.
2452 2009-12-24 Mark Probst <mark.probst@gmail.com>
2454 * metadata-internals.h, reflection.c: Use the
2455 MonoDynamicImage.handleref hash table only with unmanaged keys,
2456 and add a managed hash table handleref_managed for managed keys.
2458 2009-12-24 Mark Probst <mark.probst@gmail.com>
2460 * sgen-gc.c: Unset to-space bumper between collections. It might
2461 become invalid due to degraded allocations.
2463 2009-12-21 Rodrigo Kumpera <rkumpera@novell.com>
2465 * loader.c (mono_method_get_signature_full): Check if the returned signature is compatible
2466 with the one from the original method.
2468 * metadata-verify.c (mono_verifier_is_sig_compatible): New function to verify signature
2471 * verify-internals.h: Add new function to the internal API.
2473 2009-12-18 Dimitar Dobrev <dpldobrev@yahoo.com>
2475 * culture-info-tables.h: regenerated it to include the Georgian culture.
2477 2009-12-18 Zoltan Varga <vargaz@gmail.com>
2479 * sgen-gc.c: Include mono/utils/memcheck.h.
2481 * reflection.c (mono_reflection_get_type_internal_dynamic): Use assembly->domain
2482 instead of the current domain, since the two might not match if this is called
2485 * metadata-internals.h (MonoDynamicAssembly): Add a 'domain' field to specify the
2486 domain which created this assembly.
2488 2009-12-18 Zoltan Varga <vargaz@gmail.com>
2490 * debug-helpers.c (dis_one): Avoid a glib assert on empty strings.
2492 2009-12-17 Mark Probst <mark.probst@gmail.com>
2494 * sgen-gc.c: Managed implementation of the specialized generic
2495 store write barrier.
2497 2009-12-17 Rodrigo Kumpera <rkumpera@novell.com>
2499 * icall.c (ves_icall_Type_GetMethodsByName): Don't pin virtual methods if they are newslot.
2500 A private virtual newslot method is used to implement an interface method without exposing
2501 it to users. When querying for public instance methods, such method would hide a public one
2506 2009-12-17 Zoltan Varga <vargaz@gmail.com>
2508 * reflection.c (resolve_object): Fix the encoding of unmanaged calling
2511 2009-12-16 Rodrigo Kumpera <rkumpera@novell.com>
2513 * reflection.c (mono_type_get_object): Guard against NULL generic param owner.
2515 2009-12-16 Rodrigo Kumpera <rkumpera@novell.com>
2517 * class-internals.h (MonoDynamicGenericClass): Kill property and event related fields
2518 as they are no longer used.
2520 * metadata.c (free_generic_class_dependents): Remove reference to previous fields
2522 * reflection.c (mono_reflection_generic_class_initialize): Ditto.
2524 2009-12-16 Rodrigo Kumpera <rkumpera@novell.com>
2526 * reflection.c (mono_type_get_object): If the type is VAR or MVAR check
2527 if the owner class has not been finished before returning reflection_info.
2531 2009-12-16 Zoltan Varga <vargaz@gmail.com>
2533 * reflection.c (mono_custom_attrs_from_param): Avoid a crash if a dynamic
2534 param doesn't have custom attributes. Fixes #565117.
2536 * class.c (mono_bounded_array_class_get): Make these classes PUBLIC. Fixes
2539 2009-12-15 Rodrigo Kumpera <rkumpera@novell.com>
2541 * class.c (mono_class_setup_fields): Fail valuetypes that are bigger than 1Mb.
2543 2009-12-15 Rodrigo Kumpera <rkumpera@novell.com>
2545 * pedump.c: Add partial-md mode that doesn't perform full metadata verification. It does the
2546 same amount done by a core-clr enabled runtime.
2548 2009-12-15 Marek Habersack <mhabersack@novell.com>
2550 * appdomain.c (mono_make_shadow_copy): make sure access mode of
2551 the target files is reset to writable by owner and readable by
2552 everyone else to prevent problems when updating shadow copies of
2553 files whose source is read-only. Fixes bug #556884
2555 2009-12-15 Mark Probst <mark.probst@gmail.com>
2557 * class.c (mono_generic_class_get_class): Allocate the generic
2558 class via malloc again, so that it can be freed when any one of
2559 the images of its constituent types is closed.
2561 * metadata.c: When closing an image, don't free generic insts and
2562 generic classes right away, but put them into a list for later
2565 * image.c, metadata-internals.h: Store the free list and in the
2566 second pass of closing an image, free it.
2568 2009-12-14 Rodrigo Kumpera <rkumpera@novell.com>
2570 * reflection.c (mono_generic_class_get_object): Assert if this is ever called.
2572 * reflection.c (mono_reflection_register_with_runtime): Only register dynamic
2575 * reflection.c (resolve_object): Call ensure_complete_type on the inflated field.
2577 2009-12-14 Rodrigo Kumpera <rkumpera@novell.com>
2579 * reflection.c (mono_reflection_type_get_handle): Properly fail in case of a broken
2582 * reflection.c (mono_reflection_register_with_runtime): Throws in case a bad user type
2585 2009-12-14 Miguel de Icaza <miguel@novell.com>
2587 * verify.c (mono_method_verify): The Unused opcodes produce an
2588 InvalidProgramException on .NET
2590 2009-12-14 Sebastien Pouliot <sebastien@ximian.com>
2592 * loader.c (mono_method_get_header): Move assert after the verifier
2593 has been called on the method header.
2595 2009-12-12 Rodrigo Kumpera <rkumpera@novell.com>
2597 * object-internals.h: Remove useless field from MonoReflectionGenericClass.
2599 * appdomain.c: Bump corlib version.
2601 2009-12-12 Rodrigo Kumpera <rkumpera@novell.com>
2603 To properly support user types, MonoGenericClass has to be used for regular, non SRE,
2604 types as well since otherwise generic instances would not return UT as arguments but
2605 their undelying system type.
2607 * object-internals.h: Change field types of MonoGenericClass and *OnTypeBuilderInst
2608 to reflect the fact that they can have now multiple different types.
2610 * reflection.c (mono_image_get_field_on_inst_token): Handle MonoField.
2612 * reflection.c (mono_image_get_ctor_on_inst_token): Handle MonoCMethod.
2614 * reflection.c (mono_image_get_method_on_inst_token): Handle MonoMethod.
2616 * reflection.c (mono_reflection_register_with_runtime): Init super types
2617 if the image is not dynamic.
2619 * reflection.c (mono_reflection_bind_generic_parameters): In case of a MonoGenericClass,
2620 check if the generic type definition is a TypeBuilder.
2622 * reflection.c (mono_reflection_generic_class_initialize): If the generic type definition
2623 doesn't belong to a dynamic image, skip initialization.
2625 * reflection.c (resolve_object): Properly handle *OnTypeBuilderInst types where their
2626 base definition is not a dynamic type.
2628 2009-12-11 Marek Habersack <mhabersack@novell.com>
2630 * object.c (mono_ldstr, mono_ldstr_metadata_sig): added calls to
2631 mono_profiler_string_allocation
2633 * string-icalls.c (ves_icall_System_String_InternalAllocateStr):
2634 if string profiling is enabled, call
2635 mono_profiler_string_allocation
2637 * profiler.h: added two MonoProfileFlags -
2638 MONO_PROFILE_IOMAP_EVENTS and MONO_PROFILE_STRING_ALLOC as well as
2639 installation functions for the hooks below.
2641 * profiler-private.h, profiler.c: added two hooks:
2642 mono_profiler_string_allocation called whenever a string is
2643 allocated by InternalAllocateStr and mono_profiler_iomap called
2644 whenever IOMAP code performs an adjustement on a file path.
2646 Fri Dec 11 18:24:04 CET 2009 Paolo Molaro <lupus@ximian.com>
2648 * boehm-gc.c: fixed race condition while getting the target of a
2649 disappearing link (bug #522233).
2651 2009-12-10 Rodrigo Kumpera <rkumpera@novell.com>
2653 * class.c (mono_type_get_full): Produce warning instead of simply swallowing
2656 2009-12-10 Rodrigo Kumpera <rkumpera@novell.com>
2658 * reflection.c: Add mono_reflection_register_with_runtime icall to
2659 allow a MonoGenericClass to register itself as the managed mirror of
2660 a given generic instance.
2661 This is a temporary workaround until all MGC instantiation happens in
2664 * object-internals.h: Ditto.
2666 * icall-def.h: Ditto.
2668 2009-12-10 Mark Probst <mark.probst@gmail.com>
2670 * sgen-gc.c (find_in_remsets): Also search the generic store
2673 2009-12-10 Mark Probst <mark.probst@gmail.com>
2675 * sgen-gc.c: Don't access class names in debugging code when
2676 unloading a domain, because they might not be valid anymore.
2678 2009-12-10 Mark Probst <mark.probst@gmail.com>
2680 * domain.c, domain-internals.h: New function mono_domain_unset().
2682 * appdomain.c (unload_thread_main): Detach the thread again at the
2685 * threads.c: When a thread exists or is detached, unset its domain
2686 so that it's NULL when, for example, a pthread destructor runs.
2688 * sgen-gc.c: Assert that there is no domain set after a thread is
2691 2009-12-10 Mark Probst <mark.probst@gmail.com>
2693 * class.c (mono_generic_class_get_class),
2694 metadata.c (free_generic_class): Allocate generic MonoClass's from
2695 the image mempool, not via malloc. The problem with malloc is
2696 that when unloading a domain those classes are freed before
2697 clearing the heap and SGen needs the classes. Rewriting the
2698 unloading code to do the free later would be more work and there's
2699 no point in using malloc anyway.
2701 2009-12-09 Sebastien Pouliot <sebastien@ximian.com>
2703 * loader.c (mono_method_signature): Always call mono_loader_unlock
2706 2009-12-09 Rodrigo Kumpera <rkumpera@novell.com>
2708 * metadata-verify.c: Add mono_verifier_verify_string_signature to check
2711 * verify-internals.h: Add new function to the internal API.
2713 * verify.c (do_ldstr): Call into mono_verifier_verify_string_signature to
2714 check if it's a valid string.
2716 * object.c (mono_ldstr): Ditto.
2720 2009-12-09 Rodrigo Kumpera <rkumpera@novell.com>
2722 * icall.c (ves_icall_GetCurrentMethod): Drop all generic arguments
2723 from a method before returning it. This is the expected behavior.
2725 2009-12-08 Rodrigo Kumpera <rkumpera@novell.com>
2727 * reflection.c (inflate_method): Handle the case of a regular system type.
2729 2009-12-08 Mark Probst <mark.probst@gmail.com>
2731 * sgen-gc.c, sgen-pinning-stats.c, sgen-gray.c: More statistics
2734 * mempool.c, mempool-internals.h: New function
2735 mono_mempool_get_bytes_allocated().
2737 * Makefile.am: sgen-pinning-stats.c added.
2739 2009-12-08 Mark Probst <mark.probst@gmail.com>
2741 * sgen-gc.c (create_allocator): Only use the fast path if the
2742 object size is within the small object size limit.
2744 2009-12-07 Mark Probst <mark.probst@gmail.com>
2746 * sgen-gc.c: Make sure section->data is aligned to 8 bytes by
2747 possibly adding padding to sizeof (GCMemSection).
2749 2009-12-07 Mark Probst <mark.probst@gmail.com>
2751 * sgen-gc.c (mono_gc_wbarrier_nostore): Skip the remset if the
2752 reference is not in the nursery.
2754 2009-12-07 Rodrigo Kumpera <rkumpera@novell.com>
2756 * class.c (mono_class_from_typeref): Bounds check idx against the
2759 2009-12-07 Mark Probst <mark.probst@gmail.com>
2761 * sgen-gc.c, sgen-pinning.c: When pinning, make only one pass
2762 through the potential roots, then sort the results and find the
2763 pinned objects from there.
2765 * Makefile.am: sgen-pinning.c added.
2767 2009-12-07 Mark Probst <mark.probst@gmail.com>
2769 * sgen-gc.c: Record generic stores in specialized remset buffers.
2771 2009-12-06 Mark Probst <mark.probst@gmail.com>
2773 * sgen-gc.c: Make pinned chunks the same size as major heap
2774 sections, and align them as well, so that we can check whether an
2775 object is in a pinned chunk or a major section in constant time.
2777 2009-12-06 Mark Probst <mark.probst@gmail.com>
2779 * sgen-gc.c (build_nursery_fragments): Don't leak fragments.
2781 2009-12-06 Mark Probst <mark.probst@gmail.com>
2783 * sgen-gc.c: Make all major heap sections the same size (currently
2784 128k) and allocate them on aligned addresses. Small heap sections
2785 give us better granularity with pinned objects - we can free up
2788 2009-12-06 Mark Probst <mark.probst@gmail.com>
2790 * string-icalls.c (ves_icall_System_String_GetLOSLimit): Debug
2793 2009-12-05 Zoltan Varga <vargaz@gmail.com>
2795 Applied patch from Laurent Etiemble (laurent.etiemble@gmail.com).
2797 * mono/metadata/assembly.c: When opening an assembly image, pass the real
2798 names in addition to the runtime generated one.
2800 * mono/metadata/image.h: Add a function to take the real name of the assembly
2803 * mono/metadata/image.c: If a real name has been passed to load an assembly,
2804 use it instead of the runtime generated one.
2806 Code is contributed under MIT/X11 license.
2808 2009-12-05 Zoltan Varga <vargaz@gmail.com>
2810 * marshal.c (emit_marshal_vtype): Do the klass == date_time_class checks
2811 before the other checks to prevent problems if the DateTime class is blittable.
2812 Hopefully fixes #559600.
2814 2009-12-05 Mark Probst <mark.probst@gmail.com>
2816 * string-icalls.c, string-icalls.h, icall-def.h: New icall that
2817 returns the largest string length that will not be put into the
2820 * sgen-gc.c, gc-internal.h: New function that returns the largest
2821 object size that will not be put into the LOS.
2823 * appdomain.c: Bump corlib version.
2825 2009-12-05 Zoltan Varga <vargaz@gmail.com>
2827 * class-internals.h: Add MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2829 * generic-sharing.c: Handle MONO_RGCTX_INFO_METHOD_DELEGATE_CODE.
2831 2009-12-04 Rodrigo Kumpera <rkumpera@novell.com>
2833 * reflection.c (inflate_method): Fix signature.
2835 * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Reflect change
2838 2009-12-04 Rodrigo Kumpera <rkumpera@novell.com>
2840 * reflection.c (inflate_method): Make this method work with TypeBuilder as well.
2842 2009-12-03 Mark Probst <mark.probst@gmail.com>
2844 * sgen-gc.c: Abstract to-space handling.
2846 2009-12-03 Rodrigo Kumpera <rkumpera@novell.com>
2848 * loader.c (find_method_in_class): Ignore methods with broken signatures.
2852 2009-12-03 Mark Probst <mark.probst@gmail.com>
2854 * sgen-gc.c: Only add references from outside the nursery to
2855 within the nursery to the global remset list.
2857 2009-12-03 Mark Probst <mark.probst@gmail.com>
2859 * appdomain.c (create_exceptions): Set the domain temporarily if
2860 necessary to avoid cross-domain references.
2862 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2864 * verify.c (get_stack_type): Return that the type is invalid instead of
2867 * verify.c (mono_method_verify): Verify that all locals and arguments
2868 have valid stack types.
2872 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2874 * verify.c (mono_method_verify): Bounds check the filter offset. Make all
2875 bounds checking overflow aware.
2879 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2881 * verify.c (do_invoke_method): Check for invalid method signatures.
2885 2009-12-02 Jb Evain <jbevain@novell.com>
2887 * appdomain.c (MONO_CORLIB_VERSION): bump.
2888 * icall-def.h (get_base_definition): renamed to get_base_method
2889 and add a boolean argument indicating we want the original
2890 method definition, or the immediate base method.
2891 * icall.c: apply the get_base_definition to get_base_method change.
2893 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2895 * class.c (mono_class_setup_fields): Fail an enum without an instance field.
2899 Wed Dec 2 16:35:49 CET 2009 Paolo Molaro <lupus@ximian.com>
2901 * class.c: remove asserts for invalid type token in
2902 mono_class_name_from_token(), mono_assembly_name_from_token() and
2903 mono_class_create_from_typedef () (fixes bug #553318).
2905 Wed Dec 2 15:48:19 CET 2009 Paolo Molaro <lupus@ximian.com>
2907 * metadata.c, class.c, loader.c: remove assert after bsearch() for
2908 incorrect assemblies (bug #553322).
2910 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2912 * metadata.c (mono_metadata_inflate_generic_inst): Add MonoError parameter.
2914 * metadata-internals.h: Change signature of mono_metadata_inflate_generic_inst.
2916 * class.c (inflate_generic_type): Use new version of mono_metadata_inflate_generic_inst.
2918 * class.c (inflate_generic_context): Ditto.
2920 * loader.c (method_from_methodspec): Ditto.
2924 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2926 * class.c (mono_type_retrieve_from_typespec): Use MonoError machinery to report errors.
2928 * class.c (mono_class_create_from_typespec): Ditto.
2930 * class.c (mono_class_get_full): Fix for change on the above 2 functions.
2932 * class.c (mono_type_get_full): Fix for change on the above 2 functions.
2936 2009-12-02 Rodrigo Kumpera <rkumpera@novell.com>
2938 * verify.c (mono_class_has_default_constructor): Check fror broken signatures.
2940 * verify.c (verify_delegate_compatibility): Ditto.
2942 * verify.c (do_newobj): Ditto.
2946 2009-12-02 Mark Probst <mark.probst@gmail.com>
2948 * sgen-gc.c: Use a gray queue instead of requiring that gray
2949 objects are in a contiguous region.
2951 * sgen-gray.c: The gray queue implementation.
2953 * Makefile.am: sgen-gray.c added.
2955 2009-12-02 Mark Probst <mark.probst@gmail.com>
2957 * appdomain.c: When unloading a domain, zero its static data and
2958 perform a minor collection when using SGen. That will get rid of
2959 all the remsets pointing into that domain's static data.
2961 * sgen-gc.c: Allow remsets into static data. By doing this we
2962 need less checks so we're more efficient.
2964 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
2966 * verify.c (mono_method_verify): Check for catch clauses with broken
2971 2009-12-01 Jb Evain <jbevain@novell.com>
2973 * class.c (make_generic_param_class): set the namespace of
2974 the generic parameter class from its owner, if available.
2976 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
2978 * verify.c (code_bounds_check): Do proper overflow checking.
2980 * verify.c (mono_method_verify): The number of switch entries is
2981 an unsigned int. Properly bounds check it.
2985 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
2987 * metadata.c: Kill mono_metadata_get_param_attrs_checked. Add
2988 mono_metadata_method_has_param_attrs which only checks if a given param
2989 list has a non zero flags entry.
2991 * metadata.c (mono_metadata_get_param_attrs): Add param_count parameter
2992 to inform how many params should we expect to decode.
2994 * loader.c (mono_method_signature): Use mono_metadata_method_has_param_attrs
2995 as it's faster than mono_metadata_get_param_attrs.
2997 * metadata-internals.h: Fix mono_metadata_get_param_attrs signature and
2998 add mono_metadata_method_has_param_attrs.
3000 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
3002 * class.c (mono_class_setup_vtable_general): Check for mono_method_get_vtable_slot
3005 * class.c (mono_method_get_vtable_slot): Don't assert if the computed method slot
3006 is -1 but its class is broken.
3010 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
3012 * metadata.c: Introduce mono_metadata_get_param_attrs_checked which checks
3013 for parameter overflow.
3015 * metadata.c (mono_metadata_parse_method_signature_full): Use checked version
3016 of mono_metadata_get_param_attrs.
3018 * metadata-internals.h: Add mono_metadata_get_param_attrs_checked to the internal
3021 * loader.c (mono_method_signature): Use checked version of mono_metadata_get_param_attrs.
3023 2009-12-01 Rodrigo Kumpera <rkumpera@novell.com>
3025 * class.c (mono_class_setup_fields): Check for fields with broken types.
3029 2009-11-28 Rodrigo Kumpera <rkumpera@novell.com>
3031 * reflection.c (ensure_generic_class_runtime_vtable): Split this function in 2
3032 so we can avoid calling ensure_runtime_vtable multiple times for the GTD during
3033 its TypeBuilder::CreateType ().
3035 * reflection.c (ensure_generic_class_runtime_vtable): Avoid initializing interfaces
3038 * reflection.c: Every time we change the interface array, set interfaces_packed to NULL
3039 to make setup_interface_offsets happy.
3041 * reflection.c (remove_instantiations_of_and_ensure_contents): Fix instances again as corlib
3042 compilation now works.
3044 2009-11-28 Zoltan Varga <vargaz@gmail.com>
3046 * appdomain.c (create_exceptions): New helper function extracted from
3047 mono_runtime_init () to precreate objects used during exception handling.
3048 (mono_runtime_init): Call it.
3049 (mono_domain_create_appdomain_internal): Ditto. Fixes #555264.
3051 2009-11-27 Rodrigo Kumpera <rkumpera@novell.com>
3053 * reflection.c (remove_instantiations_of_and_ensure_contents): Temp hack to fix corlib
3054 compilation until the proper one is found.
3056 2009-11-27 Zoltan Varga <vargaz@gmail.com>
3058 * class.c (mono_class_setup_vtable_general): Cache the result of
3059 get_virtual_methods () since it can be slow because of the metadata
3062 * metadata-internals.h (_MonoImage): Change 'method_cache' to a GHashTable
3063 from a MonoValueHashTable for now, since the later is based on an earlier
3064 version of hpj's internal probing code and seems to have serious collision
3067 * loader.c (mono_get_method_full): Update after the change above.
3069 2009-11-26 Zoltan Varga <vargaz@gmail.com>
3071 * class-internals.h (MonoCachedClassInfo): Add 'is_generic_container' field.
3073 2009-11-26 Rodrigo Kumpera <rkumpera@novell.com>
3075 * reflection.c (get_field_on_inst_generic_type): Try to fallback using the field from
3076 the GTD instead of the DGC instead of crashing.
3078 * reflection.c (ensure_generic_class_runtime_vtable): Only reinflate stuff that is
3079 required. Inflate fields if needed.
3081 * reflection.c (remove_instantiations_of): Ensure generic instances are properly
3084 2009-11-26 Rodrigo Kumpera <rkumpera@novell.com>
3086 * class.c (check_interface_method_override): Check for NULL signatures and fail
3089 * debug-helpers.c (mono_signature_get_desc): Return a fixed string for NULL signatures.
3093 2009-11-26 Zoltan Varga <vargaz@gmail.com>
3095 * class.c (mono_class_get_virtual_methods): Call decode_row_col to obtain
3096 the MONO_METHOD_FLAGS column instead of decoding the whole row.
3098 2009-11-25 Rodrigo Kumpera <rkumpera@novell.com>
3100 * loader.c (field_from_memberref): Resolve the class first then the field
3101 signature. Remove a lot of duplicated code and make sure we don't pass valid
3102 values to mono_loader_set_error_field_load.
3106 2009-11-25 Rodrigo Kumpera <rkumpera@novell.com>
3108 * class.c (inflate_generic_type): Change code to use new signature of
3109 mono_error_set_bad_image.
3113 2009-11-25 Sebastien Pouliot <sebastien@ximian.com>
3115 * verify.c (mono_method_verify): Don't free ctx.params items if
3116 we aborted while inflating the ctx.locals. Complete previous fix
3118 2009-11-25 Sebastien Pouliot <sebastien@ximian.com>
3120 * verify.c (mono_method_verify): Use the uninflated type name,
3121 when the inflated is null, to report errors. Also take care when
3122 freeing, not to free everything since, in case of an error, some
3123 stuff would be copies (i.e. not allocated by the function itself)
3126 2009-11-24 Rodrigo Kumpera <rkumpera@novell.com>
3128 * verify.c (stack_push, stack_pop, stack_pop_safe): Assert if we underflow
3129 or overflow. The caller must have done this check explicitly. This guard us
3130 from accessing invalid memory.
3132 * verify.c (do_push_static_field): Check for stack overflow.
3136 2009-11-24 Rodrigo Kumpera <rkumpera@novell.com>
3138 * loader.c (find_method_in_class): Don't crash if the signature cannot
3141 * metadata.c (mono_metadata_parse_generic_param): Return NULL instead
3142 of asserting for the case of invalid params.
3146 2009-11-24 Sebastien Pouliot <sebastien@ximian.com>
3148 * image.c (mono_image_load_module): Fix crash when a bad assembly
3149 has no module at all (fix bug #553412) and also replace the
3150 g_assert with a return NULL (documented return value for failure)
3152 2009-11-23 Zoltan Varga <vargaz@gmail.com>
3154 * debug-helpers.c (mono_type_get_desc): Handle typedbyref.
3156 2009-11-23 Miguel de Icaza <miguel@novell.com>
3158 * file-io.c: Change FindFirst/FindNext/FindClose API to return the
3159 file attribute to managed code and avoid doing the mask/attribute
3162 2009-11-22 Miguel de Icaza <miguel@novell.com>
3164 * file-io.c: Surface a smart FindFirst/FindNext/FindClose API to
3167 * icall-def.h: New entry points.
3169 2009-11-19 Mark Probst <mark.probst@gmail.com>
3171 * process.c: Don't put references to managed objects into a
3174 2009-11-18 Sebastien Pouliot <sebastien@ximian.com>
3176 * class.c (can_access_internals): Allow CoreCLR to participate in
3177 allowing (or not) [InternalsVisibleTo] between assemblies.
3178 * security-core-clr.c|h: Make sure that only trusted code (a
3179 superset of platform code) can access the internals of platform
3182 Mon Nov 16 16:28:11 CET 2009 Paolo Molaro <lupus@ximian.com>
3184 * reflection.c: use the correct base class to get the virtual method
3185 "get_UnderlyingSystemType" and speed up the icall. Fixes bug #555013.
3187 2009-11-16 Sebastien Pouliot <sebastien@ximian.com>
3189 * security-core-clr.c (get_caller_no_reflection_related):
3190 [Mono]Type.InvokeMember is outside System.Reflection[.Emit] but
3191 it's still reflection and must be filtered correctly.
3193 2009-11-16 Mark Probst <mark.probst@gmail.com>
3195 * object.c (compute_class_bitmap): Fix for large bitmaps.
3197 2009-11-15 Zoltan Varga <vargaz@gmail.com>
3199 (mono_gc_get_suspend_signal): Fix the build with a system libgc.
3201 * boehm-gc.c (mono_gc_base_init): Applied patch from DKoushik K. Dutta (
3202 koush@koushikdutta.com). Disable GC_no_dls on android.
3204 2009-11-12 Mark Probst <mark.probst@gmail.com>
3206 * sgen-gc.c (find_tlab_next_from_address): Handle the case where
3207 tlab_next points outside the TLAB because the allocator was
3210 2009-11-09 Rodrigo Kumpera <rkumpera@novell.com>
3212 * reflection.c (mono_image_module_basic_init): Handle exceptions correctly.
3214 2009-11-09 Rodrigo Kumpera <rkumpera@novell.com>
3216 * object-internals.h: Change signature for mono_string_to_utf8_image.
3218 * object.c (mono_string_to_utf8_image): Change signature to take a MonoError
3221 * reflection.c: Take care of mono_string_to_utf8_image change and avoid raising
3222 exceptions due to mono_string_to_utf8.
3224 2009-11-09 Rodrigo Kumpera <rkumpera@novell.com>
3226 * object-internals.h: Change signature for mono_string_to_utf8_mp.
3228 * object.c (mono_remote_class): Make sure all resources are released before
3229 raising an exception.
3231 * object.c (mono_print_unhandled_exception): Avoid raising an exception.
3233 2009-11-09 Rodrigo Kumpera <rkumpera@novell.com>
3235 * mono-perfcounters.c (network_get_impl): Change variable initialization
3236 ordering to fix potential memory leak in case of exceptions.
3238 * mono-perfcounters.c (mono_perfcounter_create): Properly handle badly
3241 2009-11-09 Rodrigo Kumpera <rkumpera@novell.com>
3243 * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): Change
3244 variable initialization ordering to fix potential memory leak in case
3247 2009-11-09 Zoltan Varga <vargaz@gmail.com>
3249 * icall.c (mono_ArgIterator_Setup): Remove the MONO_ARCH_REGPARMS stuff, its not
3252 2009-11-07 Rodrigo Kumpera <rkumpera@novell.com>
3254 * appdomain.c: Fix shadow path code to better deal with exceptions.
3256 2009-11-07 Rodrigo Kumpera <rkumpera@novell.com>
3258 * appdomain.c: Use checked version of mono_string_to_utf8 to avoid raising an
3259 exception in the middle of the runtime code.
3261 2009-11-07 Rodrigo Kumpera <rkumpera@novell.com>
3263 * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): Don't
3264 leak memory with broken envvar value.
3266 2009-11-06 Mark Probst <mark.probst@gmail.com>
3268 * reflection.c (mono_reflection_setup_internal_class): Because
3269 nested classes are not added to the name cache, we must put them
3270 in the reflection_info_unregister_classes list.
3272 2009-11-05 Sebastien Pouliot <sebastien@ximian.com>
3274 * class.c: When CoreCLR is enabled don't call mono_init_com_types
3275 if MONO_CLASS_IS_IMPORT return true unless the type reside in
3276 platform (trusted) code. Instead we return a TypeLoadException to
3277 be thrown later. This is the exception thrown by Silverlight 2 if
3278 a type, inside application (user) code is marked with [ComImport]
3280 2009-11-05 Zoltan Varga <vargaz@gmail.com>
3282 * icall.c (ves_icall_System_Diagnostics_Debugger_IsAttached_internal): Call
3283 mono_is_debugger_attached () too.
3285 * mono-debug.c (mono_is_debugger_attached): New helper function.
3286 (mono_set_is_debugger_attached): Ditto.
3288 2009-11-05 Rodrigo Kumpera <rkumpera@novell.com>
3290 * object-internals.h: Add mono_string_to_utf8_checked.
3292 * object.c: Implement mono_string_to_utf8_checked.
3294 2009-11-05 Rodrigo Kumpera <rkumpera@novell.com>
3296 * class.c: Add missing check for load errors after every
3297 call to mono_class_setup_fields
3301 2009-11-05 Rodrigo Kumpera <rkumpera@novell.com>
3303 metadata-verify.c (verify_tables_schema): Fix the error message.
3305 2009-11-05 Rodrigo Kumpera <rkumpera@novell.com>
3307 * metadata.c: Change event table schema to use TDOR for event type
3308 as this is what it's meant to be.
3310 * metadata.c (mono_metadata_compute_size): Change MONO_TABLE_ASSEMBLYPROCESSOR
3311 to MONO_TABLE_ASSEMBLYREFPROCESSOR, which is table that has a MONO_MT_TABLE_IDX
3314 * metadata.c (mono_metadata_compute_size): Trim MT_TABLE_IDX of code that no
3315 longer makes sense: remove MONO_TABLE_EVENT and remove checks for non-existent
3316 rows in MONO_TABLE_GENERICPARAM.
3320 2009-11-05 Rodrigo Kumpera <rkumpera@novell.com>
3322 * class.c (mono_image_add_to_name_cache): Assert on duplicate
3325 * reflection.c (mono_reflection_setup_internal_class): Avoid
3326 registering a gc root the same MonoClass multiple times.
3327 Don't register nested types on the global scope as they should
3328 not be available there.
3330 2009-11-05 Rolf Bjarne Kvinge <RKvinge@novell.com>
3332 * culture-info-tables.h: regenerated.
3334 2009-11-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
3336 * debug-helpers.c: avoid g_strdup() in mono_type_full_name().
3338 2009-11-04 Sebastien Pouliot <sebastien@ximian.com>
3340 * string-icalls.c|h: Remove string internal calls that are not
3341 used anymore by the class libraries.
3342 * icall.c: Remove System_Reflection_FieldInfo_internal_from_handle
3343 which is not used in the class librairies.
3344 * icall-def.h: Update tables.
3346 2009-11-04 Rodrigo Kumpera <rkumpera@novell.com>
3348 * class.h: Move mono_class_inflate_generic_type_checked...
3350 * class-internals.h: to here and make it internal. We don't want to
3351 further expose MonoGenericContext.
3353 2009-11-04 Rodrigo Kumpera <rkumpera@novell.com>
3355 * verify.c (mono_method_verify): Improve error message.
3357 2009-11-04 Rodrigo Kumpera <rkumpera@novell.com>
3359 * reflection.c (fieldref_encode_signature): If field_image is NULL then
3360 the token is already properly encoded. Fixs 4.0 build.
3362 2009-11-04 Rolf Bjarne Kvinge <RKvinge@novell.com>
3364 * locales.c (construct_number_format): Check if the number index is
3365 valid before trying to use it, if not, just return.
3367 2009-11-04 Zoltan Varga <vargaz@gmail.com>
3369 * marshal.c (mono_marshal_get_runtime_invoke): Don't reset abort exceptions,
3370 since that loses the abort state. Fixes #539394.
3372 2009-11-03 Zoltan Varga <vargaz@gmail.com>
3374 * marshal.c (mono_marshal_get_native_wrapper): For icall wrappers, add an
3375 explicit this argument to the call signature.
3376 (mono_marshal_get_icall_wrapper): Ditto.
3378 2009-11-03 Rodrigo Kumpera <rkumpera@novell.com>
3380 * reflection.c (fieldref_encode_signature): Add new field_image parameter
3381 to indicate which assembly to use when resolving a custom-mod.
3383 Fixes handling of volatile fields used across assemblies as reported in #551513.
3385 2009-11-03 Rodrigo Kumpera <rkumpera@novell.com>
3387 * loader.c: Improve error messages.
3389 2009-11-03 Rodrigo Kumpera <rkumpera@novell.com>
3391 * class.c (mono_class_setup_methods): Only give a slot for virtual methods
3392 of interfaces. Fixes IKVM.
3394 * class.c (mono_class_setup_vtable_general): Improve debug spew.
3396 2009-11-03 Rodrigo Kumpera <rkumpera@novell.com>
3398 * verify.c (verifier_inflate_type): Return the inflated type on success.
3400 2009-11-02 Zoltan Varga <vargaz@gmail.com>
3402 * debug-mono-symfile.c (check_line): Fix the handling of IL offset 0.
3404 * threads.c (mono_thread_attach): Call the profiler thread start callback.
3406 * object-internals.h (_MonoThreadInternal): Add a 'flags' field.
3408 * threads.c (build_wait_tids): Ignore threads which have the DONT_MANAGE
3411 * profiler.c: Add new profiler callbacks for runtime invoke.
3413 * object.c (mono_runtime_invoke): Call the runtime invoke callbacks.
3415 2009-11-01 Mark Probst <mark.probst@gmail.com>
3417 * sgen-gc.c: Keep track of the reason for a major collection and
3418 write it to the heap-dump file.
3420 2009-10-31 Miguel de Icaza <miguel@novell.com>
3422 * threads.c: refactor the code that initializes the
3423 thread_start_args into a reusable function and use this in the two
3424 methods that start up threads.
3426 2009-10-31 Zoltan Varga <vargaz@gmail.com>
3428 * appdomain.c (mono_domain_try_unload): Applied patch from Romain Tartière.
3429 Fix returning when WaitForSingleObjectEx returns WAIT_IO_COMPLETION.
3431 2009-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
3433 * mono-perfcounters.c: add the "_Total" instance for CPU counters.
3434 Until now, we only had the per-cpu(core) counters.
3436 2009-10-28 Mark Probst <mark.probst@gmail.com>
3438 * gc-internal.h, boehm-gc, sgen-gc.c, null-gc: Add
3439 mono_gc_get_suspend_signal(), which returns the suspend signal
3440 number used by the GC.
3442 2009-10-25 Zoltan Varga <vargaz@gmail.com>
3444 * threads.c (start_wrapper): Avoid an assert if thread_start_args () is NULL.
3446 * threads.c (start_wrapper): Call mono_profiler_thread_start () later after
3447 signalling start_notify.
3449 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3451 * appdomain.c: do not test the st_mode field for shadow-copies.
3454 2009-10-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
3456 * threadpool.[ch]: added hooks for thread start/finish and item
3457 processing begin/end. For monotouch use only.
3459 2009-10-24 Zoltan Varga <vargaz@gmail.com>
3461 * threads.c (mono_thread_get_name): New helper function.
3463 * reflection.c (resolve_object): Set handle_class for strings too.
3464 (mono_reflection_create_custom_attr_data_args): New helper function to decode
3465 a cattr blob into a set of arrays and structures without creating the custom
3466 attributes themselves.
3467 (create_custom_attr_data): Simplify using create_custom_attr_data_args.
3469 * mono-debug.c (mono_debug_il_offset_from_address): New helper function.
3471 * debug-mono-symfile.c (mono_debug_symfile_get_line_numbers): New helper
3474 2009-10-23 Rodrigo Kumpera <rkumpera@novell.com>
3476 * verify.c: Replace calls to mono_class_inflate_generic_type with
3477 mono_class_inflate_generic_type_checked. Fixes #480005.
3479 2009-10-23 Rodrigo Kumpera <rkumpera@novell.com>
3481 * class.c (mono_class_inflate_generic_type_with_mempool): Clear the error
3482 object since not all paths lead to callees initing it.
3484 2009-10-23 Alp Toker <alp@nuanti.com>
3486 Fix embedding API breakage from r144688. mono-compiler.h is an internal
3487 header and should not be shipped:
3489 * class.h: Back out MONO_DEPRECATED change. Currently depends on config.h
3490 which is specific to the mono build. Not going to work.
3492 2009-10-23 Sebastien Pouliot <sebastien@ximian.com>
3494 * security-manager.c: Report if core-clr is active from
3495 ves_icall_System_Security_SecurityManager_get_SecurityEnabled
3496 to allow Moonlight BCL to behave appropriately (both in browser
3497 and outside, e.g. smcs)
3499 2009-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
3501 * mono-config.c: ignore UTF-8 BOM and report parser errors.
3504 2009-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3506 * class.c: fix typo.
3508 2009-10-22 Rodrigo Kumpera <rkumpera@novell.com>
3510 * class-internals.h: Change signature of mono_class_inflate_generic_type_with_mempool to take
3511 a MonoError parameter.
3513 * class.h: Mark mono_class_inflate_generic_type deprecated, add new mono_class_inflate_generic_type_checked
3514 version that can does proper error handling.
3516 * class.c (inflate_generic_type): Add a MonoError parameter. Don't assert on error, use new mono error machinery.
3518 * class.c (mono_class_inflate_generic_type_with_mempool): Add new MonoError parameter.
3520 * class.c, generics-sharing.c: Changes to handle mono_class_inflate_generic_type_with_mempool new signature.
3522 2009-10-20 Zoltan Varga <vargaz@gmail.com>
3524 * debug-helpers.c (dis_one): Fix the disassembly of empty strings when
3525 NO_UNALIGNED_ACCESS is defined.
3527 2009-10-22 Zoltan Varga <vargaz@gmail.com>
3529 * marshal.c (mono_string_builder_to_utf16): Applied patch from
3530 Hib Eris <hib@hiberis.nl>. Return empty string for empty string builders.
3533 2009-10-22 Mark Probst <mark.probst@gmail.com>
3535 * sgen-gc.c: Shorten sections whenever possible.
3537 2009-10-22 Mark Probst <mark.probst@gmail.com>
3539 * sgen-gc.c: Use our portable semaphore #defines.
3541 2009-10-22 Mark Probst <mark.probst@gmail.com>
3543 * sgen-gc.c: A debug option for dumping the heap layout to a file
3544 after each collection.
3546 2009-10-21 Mark Probst <mark.probst@gmail.com>
3548 * sgen-gc.c: Make managed write barriers atomic via
3551 2009-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3553 * verify.c (verify_delegate_compatibility): Properly verify delegate creation of static
3554 methods. Fixes #543021.
3556 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3558 * socket-io.[ch]: fix VS build.
3560 2009-10-21 Gonzalo Paniagua Javier <gonzalo@novell.com>
3563 * socket-io.[ch]: implemented SendFile.
3565 2009-10-20 Zoltan Varga <vargaz@gmail.com>
3567 * class.c (mono_class_create_from_typedef): Initialize class->element_class
3568 before the interfaces to avoid crashes later if class initialization fails.
3571 * marshal.c (emit_marshal_vtype): Implement byref marshalling of DateTime.
3574 2009-10-20 Marek Safar <marek.safar@gmail.com>
3576 * domain.c: Bump 4.0 version.
3578 2009-10-19 Sebastien Pouliot <sebastien@ximian.com>
3580 * assembly.c (mono_assembly_load_reference): Fix leak when 'status'
3581 code is known. (parse_public_key) Remove duplicate (unneeded) NULL
3582 check since 'pubkey' can't be NULL at this stage
3583 * icall.c (ves_icall_System_Array_FastCopy): Add comment about
3584 the check. (ves_icall_Type_GetInterfaceMapData) Remove duplicate
3585 initialization of 'iter'
3587 2009-10-16 Bill Holmes <billholmes54@gmail.com>
3589 * cominterop.c : Search the interface parts of vtable to find
3590 method matches. Fixes 547030.
3592 Code is contributed under MIT/X11 license.
3594 2009-10-15 Gonzalo Paniagua Javier <gonzalo@novell.com>
3596 * marshal.c: BeginInvoke cannot be called on multicast delegates with
3597 multiple targets. Fixes bug #574426.
3599 2009-10-14 Massimiliano Mantione <massi@ximian.com>
3601 * profiler.h: Put here the definition of
3602 MONO_PROFILER_MAX_STAT_CALL_CHAIN_DEPTH
3603 (and fix the build...).
3605 2009-10-14 Massimiliano Mantione <massi@ximian.com>
3607 * profiler.c, profiler.h, profiler-private.h:
3608 Added support for different ways of getting call chains in stat mode.
3610 2009-10-12 Mark Probst <mark.probst@gmail.com>
3612 * object.c, object-internals.h: New function for computing the
3613 size of an array, factored out of mono_array_new_full(). Use
3614 SGen's functions for allocating arrays and vectors.
3616 * sgen-gc.c, gc-internal.h: Special functions for allocating
3617 arrays and vectors without race conditions. A managed array
3620 * boehm-gc.c, null-gc.c: Don't provide a managed array allocator.
3622 2009-10-12 Mark Probst <mark.probst@gmail.com>
3624 * object.c, object.h, icall.c: Write barriers do the copying now,
3625 as well, so no need for an additional memcpy.
3627 * sgen-gc.c: Lock when storing remsets. Do the memory
3628 copying/moving in the write barriers.
3630 * null-gc.c, boehm-gc.c: Write barriers must copy here, too.
3632 * reflection.c: Added an assert.
3634 2009-10-12 Mark Probst <mark.probst@gmail.com>
3636 * threads.c, process.c: A few missing write barriers.
3638 2009-10-12 Joel W. Reed <joelwreed@gmail.com>
3640 * mono-perfcounters.c, mono-perfcounters-def.h: Add
3641 network performance counters for bytes sent per second, bytes
3642 received per second, and bytes total per second.
3644 Code is contributed under MIT/X11 license.
3646 2009-10-09 Mark Probst <mark.probst@gmail.com>
3648 * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
3651 2009-10-09 Mark Probst <mark.probst@gmail.com>
3653 * threads.c, object-internals.h, object.c: Move code for
3654 transferring an object to a different domain (via
3655 serialization/remoting) to object.c.
3657 * object.c (call_unhandled_exception_delegate): If the exception
3658 is in a different domain than the delegate, transfer the exception
3661 2009-10-07 Zoltan Varga <vargaz@gmail.com>
3663 * marshal.c (emit_marshal_vtype): Emit marshalling of DateTime to OLE DATE.
3666 2009-10-06 Zoltan Varga <vargaz@gmail.com>
3668 * domain.c (DEFAULT_RUNTIME_VERSION): Change this to v2.0.
3670 2009-10-06 Mark Probst <mark.probst@gmail.com>
3672 * object.c (mono_method_return_message_restore): Handle the case
3673 where the argument is an instance of a generic type. Fixes
3676 2009-10-06 Mark Probst <mark.probst@gmail.com>
3678 * object.c (set_value): Write barrier fix - we must pass the
3679 count, not the size.
3681 2009-10-05 Zoltan Varga <vargaz@gmail.com>
3683 * domain.c (mono_init_internal): Print a useful error message when encountering
3684 an old mscorlib, instead of crashing. Fixes #544307.
3686 2009-10-04 Zoltan Varga <vargaz@gmail.com>
3688 * appdomain.c (copy_app_domain_setup): Fix a warning.
3690 * debug-helpers.c (dis_one): Ditto.
3692 2009-10-04 Mark Probst <mark.probst@gmail.com>
3694 * domain-internals.h, appdomain.c: The AppDomainSetup is copied
3695 into the new domain, instead of referencing the original one.
3697 * marshal.c, marshal.h: Make mono_marshal_xdomain_copy_value()
3700 * appdomain.c: Corlib version bump.
3702 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3704 * threadpool.c: one more...
3706 2009-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
3708 * threadpool.c: forgot a LeaveCriticalSection when telling the idle
3709 threads to die because we're shutting down. delgate5.exe works again.
3711 2009-10-01 Bill Holmes <billholmes54@gmail.com>
3713 * cominterop.c (mono_marshal_free_ccw_entry): Updating the
3714 ccw_interface_hash table when a ccw is finalized.
3716 Code is contributed under MIT/X11 license.
3718 2009-09-30 Mark Probst <mark.probst@gmail.com>
3720 * assembly.c, domain.c, image.c, metadata-internals.h: Split
3721 domain and image unloading into two steps. We must do this
3722 because clearing the domain in SGen requires the class metadata to
3723 be intact, but we need to free the mono_g_hash_tables in case a
3724 collection occurs during domain unloading and the roots would trip
3727 2009-09-30 Mark Probst <mark.probst@gmail.com>
3729 * object-internals.h: Remove serialized culture fields from
3732 * icall-def.h, thread-types.h, threads.c: Remove serialized
3735 * appdomain.c: Corlib version bump.
3737 2009-09-30 Zoltan Varga <vargaz@gmail.com>
3739 * marshal.c (emit_marshal_object): Emit out marshalling of stringbuilders.
3742 2009-09-30 Mark Probst <mark.probst@gmail.com>
3744 * sgen-gc.c: Try to shorten the new section after a major
3745 allocation to avoid ever-growing sections.
3747 2009-10-13 Martin Baulig <martin@ximian.com>
3749 * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
3750 `MONO_DEBUGGER_EVENT_TRAMPOLINE' into
3751 `MONO_DEBUGGER_EVENT_OLD_TRAMPOLINE' and added a new
3752 `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
3754 * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 4.
3756 2009-09-29 Gonzalo Paniagua Javier <gonzalo@novell.com>
3758 * threadpool.c: fixed the order in which 'completed' and the wait
3759 handle, if any, are set. Fixes bug #542933 and delegate2.exe
3760 No need to use the wait_handle field of ASyncCall. Make sure the
3761 threadpool is active when adding a job or queueing an idle thread.
3763 2009-09-29 Zoltan Varga <vargaz@gmail.com>
3765 * object.c (mono_unhandled_exception): Fix a crash if there is no main thread.
3767 * threads.c (build_wait_tids): Fix a crash if there is no main thread, like
3768 when using --compile-all.
3770 2009-09-27 Mark Probst <mark.probst@gmail.com>
3772 * metadata.c (free_generic_class): Unregister the field_objects
3773 roots if we're using SGen.
3775 2009-09-27 Mark Probst <mark.probst@gmail.com>
3777 * reflection.c (mono_dynamic_image_free): Deregister the GC root
3778 for GenericParamTableEntry.gparam.
3780 2009-09-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
3782 * marshal.c: don't create the handle when calling. It is created later
3785 2009-09-26 Mark Probst <mark.probst@gmail.com>
3787 * sgen-gc.c: Warning fixes.
3789 2009-09-26 Mark Probst <mark.probst@gmail.com>
3791 * sgen-gc.c: New debug option "xdomain-checks", which scans the
3792 whole heap for cross-domain references before each collection.
3794 * sgen-scan-object.h: The scan action can now use SCAN to scan the
3797 * threadpool-internals.h, threadpool.c: New function
3798 mono_thread_pool_is_queue_array() for checking whether a given
3799 array is used as a (cross-domain) queue by the thread pool code.
3801 2009-09-26 Mark Probst <mark.probst@gmail.com>
3803 * sgen-gc.c: New function mono_gc_scan_for_specific_ref() which
3804 searches the whole heap for objects containing a specific
3805 reference. Only for debugging.
3807 2009-09-26 Mark Probst <mark.probst@gmail.com>
3809 * appdomain.c (MONO_CORLIB_VERSION): Bumped.
3811 * icall-def.h, threads.c, threads-types.h: New icalls for copying
3812 byte arrays between domains.
3814 2009-09-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
3817 * class-internals.h:
3818 * mono-perfcounters-def.h:
3819 * mono-perfcounters.c:
3820 -There is a list of idle threads
3821 -Each of those idle threads wait on their own WaitHandle instead
3822 of all of them using the same semaphore. When a new work item is
3823 added, the job is assigned directly to an idle thread or a newly
3824 created one if possible and then the handle for that thread is
3825 signaled. Compare that to the current approach where all the
3826 threads in the pool compete to dequeue a job from the same
3828 -New struct ThreadPool that brings together the bunch of static
3829 variable for each threadpool (IO and regular).
3830 -New performance counters: # of items added and its rate per
3831 threadpool. The rate will be used later, perhaps together with
3832 other perf. counters, to decide when idle threads should exit.
3834 2009-09-25 Jonathan Chambers <joncham@gmail.com>
3836 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal):
3837 Fix typo on Windows build.
3838 (ves_icall_System_Net_Sockets_Socket_Accept_internal): Fix typo on Windows build.
3840 Code is contributed under MIT/X11 license.
3842 2009-09-25 Mark Probst <mark.probst@gmail.com>
3844 * object-internals.h: The Thread class is split up into Thread and
3845 InternalThread now. We have exactly one InternalThread per
3846 thread, and at most one Thread per appdomain per thread. Most
3847 data is stored in InternalThread. All InternalThread objects live
3850 * class-internals.h: Add internal_thread_class to MonoDefaults.
3852 * appdomain.c (mono_domain_unload), attach.c (receiver_thread),
3853 domain.c, gc.c, icall-def.h, monitor.c, object.c, sgen-gc.c,
3854 socket-io.c, threadpool.c, thread-types.h, threads.c: Changes
3855 resulting from the split of the Thread class.
3857 * gc-internal.h: Prototype for new function for checking whether a
3858 thread is the finalizer thread.
3860 * appdomain.c: Corlib version bump.
3862 2009-09-25 Rolf Bjarne Kvinge <RKvinge@novell.com>
3864 * appdomain.c|h: Add a mono_domain_try_unload method which is
3865 equivalent to mono_domain_unload, except that it returns an exception
3866 instead of throwing it. Make mono_domain_unload use the
3867 mono_domain_try_unload method to avoid code-duplication.
3869 2009-09-25 Zoltan Varga <vargaz@gmail.com>
3871 * debug-helpers.c (dis_one): Avoid unaligned accesses on platforms where that is
3874 2009-09-24 Zoltan Varga <vargaz@gmail.com>
3876 * marshal.c (emit_ptr_to_object_conv): Generate an exception instead of
3877 aborting when a conversion is not implemented.
3879 2009-09-23 Miguel de Icaza <miguel@novell.com>
3881 * verify.c: when comparing culture strings, use g_ascii_strcmp
3883 * assembly.c (mono_public_tokens_are_equal): Change g_strcasecmp
3884 when comparing public key tokens to use memcmp on 16 bytes. I do
3885 not believe this ever worked as advertised in the past.
3887 The standard Public Key is 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00
3888 which would have always failed earlier.
3890 2009-06-25 Miguel de Icaza <miguel@novell.com>
3892 * gc.c: Raise a NullArgumentException if the object passed is
3895 2009-09-22 Zoltan Varga <vargaz@gmail.com>
3897 * image.c (mono_image_close): Atomically decrement the reference count and
3898 remove the image from the hash tables, to prevent another thread from seeing a
3899 dying MonoImage. Fixes #541194.
3901 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3903 * threadpool.c: actually use the minimum number of 'completion ports'
3904 (for us is just a potential worker thread).
3906 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3908 * threadpool.c: remove ares_htable. It does not make sense any more
3909 since the same objects are now stored in GC-tracked arrays while they are
3912 2009-09-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
3914 * threadpool.c: increase the minimum length of the queues to 128.
3917 2009-09-21 Zoltan Varga <vargaz@gmail.com>
3919 * marshal.c (mono_marshal_get_string_ctor_signature): New internal function to
3920 return the modified signature used by string ctors.
3922 2009-09-20 Zoltan Varga <vargaz@gmail.com>
3924 * marshal.c (mono_marshal_get_runtime_invoke_dynamic): New internal function
3925 to return a runtime-invoke wrapper which uses DYN_CALL to call the wrapped
3926 method, to be used by full-aot.
3928 2009-09-18 Rodrigo Kumpera <rkumpera@novell.com>
3930 Since the runtime supports lazy initialization of a type's vtable and this can cause a type
3931 to fail, we need to ensure that the vtable is properly initialized at spots were the type must
3932 be known to be good.
3934 * class.c (mono_class_init): Fail array types if their element type fails initialization
3937 * object.c (mono_class_create_runtime_vtable): Fail array types if their element type fails
3938 initialization, additionally we request the element_type vtable to be initialized as well.
3940 This is fine and should not increase the working set in any meaningful way since it's reasonable
3941 to assume that most code will create an array and eventually populate it, which will require the
3942 type's vtable to be initialized.
3944 * loader.c (field_from_memberref): Add a comment for a possibly useless mono_class_init call.
3946 2009-09-17 Atsushi Enomoto <atsushi@ximian.com>
3948 * normalization-tables.h : regenerated.
3950 2009-09-16 Zoltan Varga <vargaz@gmail.com>
3952 * mono-debug.c (mono_debug_add_method): Increase the size of the buffer,
3953 a leb128 encoding can take up to 5 bytes.
3955 2009-09-15 Rodrigo Kumpera <rkumpera@novell.com>
3957 * class.c (verify_class_overrides): Remove useless argument.
3959 * class.c (mono_class_setup_vtable_general): Move the overrides check to happen
3960 before interface enumeration as this is no longer required.
3962 2009-09-15 Rodrigo Kumpera <rkumpera@novell.com>
3964 * class.c: New function mono_class_is_assignable_from_slow that is safe to be
3965 used under mono_class_init context. This functions avoid any code path that
3966 calls mono_class_init, which leads it to be slow as some things like the interface
3967 bitmap are not available.
3969 * class.c (verify_class_overrides): Use mono_class_is_assignable_from_slow instead
3970 of it's own broken version. Fixes the verifier part of #538588.
3972 * class-internals.h: Export mono_class_is_assignable_from_slow as part of the internal
3975 2009-09-15 Mark Probst <mark.probst@gmail.com>
3977 * class.c (mono_class_init): Always set an exception in a class if
3978 vtable setup fails. Fixes #538577.
3980 * generic-sharing.c: Raise an exception if mono_class_vtable()
3983 2009-09-13 Zoltan Varga <vargaz@gmail.com>
3985 * marshal.c (mono_marshal_get_runtime_invoke): Don't share instance
3986 methods of vtypes, as they could be incorrectly shared with static methods
3987 taking an IntPtr argument.
3989 2009-09-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
3993 * class-internals.h: renamed waithandle_class to
3994 manualresetevent_class.
3995 * marshal.c: propagate the exception if a remoting BeginInvoke call
3998 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4000 * object.c: Properly handle vtable failures.
4002 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4004 * socket-io.c: Assert on vtable failure.
4006 * mono-mlist.c: Assert on vtable failure.
4008 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4010 * marshal.c: Assert on vtable failure.
4012 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4014 * icall.c: Properly handle vtable failures.
4016 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4018 * debug-helpers.c (mono_class_describe_statics): Properly handle vtable failures.
4020 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4022 * cominterop.c (ves_icall_System_ComObject_CreateRCW): Property handle vtable failures.
4024 * console-unix.c (do_console_cancel_event): Same.
4026 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4028 * class-internals.h: Add mono_class_vtable_full function that allows control
4029 if an exception should be raised or not.
4031 * object.c (mono_class_vtable): Call into mono_class_vtable_full. Fix this function
4032 to do what its documentation say, that is to return NULL and set exception_type on
4035 * object.c (mono_class_create_runtime_vtable): Add new raise_on_error parameter
4036 and change the code to honor it.
4038 2009-09-11 Rodrigo Kumpera <rkumpera@novell.com>
4040 * verify.c: Fix typo in error message.
4042 2009-09-10 Sebastien Pouliot <sebastien@ximian.com>
4044 * security-core-clr.c: Fix default_platform_check so it can run
4045 the runtime coreclr tests (without an infinite recursion when
4046 throwing an exception).
4048 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4050 object.c (mono_delegate_ctor_with_method): Guard against null method.
4052 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4054 * marshal.c (mono_marshal_get_xappdomain_dispatch): Add an assert
4055 that should be replaced with error handling later.
4057 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4059 * marshal.c (mono_delegate_end_invoke): Fix warning.
4061 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4063 * loader.c (mono_field_from_token): Properly handle invalid
4066 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4068 * pedump.c (verify_image_file): Skip types that can't be
4071 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4073 * verify.c: Look for recursive valuetypes only against the
4074 type been initialized as this is a lot simpler and works.
4076 2009-09-10 Rodrigo Kumpera <rkumpera@novell.com>
4078 * verify.c: Ensure that fields are properly loaded before
4081 2009-09-10 Bill Holmes <billholmes54@gmail.com>
4083 * object.c (mono_object_get_virtual_method) : Call
4084 mono_cominterop_get_invoke if the object is a COM object.
4086 Code is contributed under MIT/X11 license.
4088 2009-09-09 Rodrigo Kumpera <rkumpera@novell.com>
4090 * verify.c: Check for recursive valuetype definitions.
4092 2009-09-08 Rodrigo Kumpera <rkumpera@novell.com>
4094 Use inheritance-aware interface offsets. Inherited types use the same offsets
4095 of their parents. This reduce offset duplication in case more than one type in
4096 the inheritance tree explicitly implements the same interface.
4098 This also removes a source of vtable bubbles found in #532409. An abstract type
4099 isn't required to provide abstract methods to all interfaces it implements, which
4100 resulted in a bubble with the previous scheme as the child would get a non-full
4101 vtable from its parent. We fail all concrete types with vtable bubbles, so this
4104 This change causes an increase of 1.7% in vtable memory usage for IronPython pystone but
4105 it's expected to not cause any significant increase beyond that.
4107 * class.c (setup_interface_offsets): Compute super class iface offsets
4108 first to force sharing.
4110 * class.c: Add VTABLE_SELECTOR macro to the vtable debug macros to help
4111 dumping only the relevant ones.
4113 * class.c (mono_class_setup_vtable_general): Give newslot, non final, virtual
4114 methods a new slot regardless if they belong to an interface or not. This allows
4115 an inherited type to override the iface method separately from the class one.
4117 2009-09-04 Gonzalo Paniagua Javier <gonzalo@novell.com>
4119 * threadpool.c: make the Sleep() alertable to prevent delays exiting
4120 applications that take less than 2s to execute.
4123 2009-09-04 Zoltan Varga <vargaz@gmail.com>
4125 * object-internals.h (MonoRuntimeCallbacks): Add a 'get_runtime_build_info' callback.
4127 * object.c (mono_get_runtime_callbacks): New helper function to return
4128 the runtime callbacks.
4130 * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Use the result of
4131 mono_get_runtime_build_info () as the display name.
4133 2009-09-03 Zoltan Varga <vargaz@gmail.com>
4135 * marshal.c (emit_marshal_array): Call conv.ovf.i on the array parameter
4136 argument, since NEWARR expects a native int. Fixes #481559.
4138 2009-09-03 Rodrigo Kumpera <rkumpera@novell.com>
4140 * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Guard
4141 against broken SRE methods.
4143 2009-09-03 Rodrigo Kumpera <rkumpera@novell.com>
4145 * class.c (mono_type_get_full): Don't call mono_metadata_free_type on
4146 a NULL variable. Abort early on failure.
4148 2009-09-03 Rodrigo Kumpera <rkumpera@novell.com>
4150 * class.c (can_access_type): Fail visibility test for non nested
4151 types with nested visibility.
4153 2009-09-02 Sebastien Pouliot <sebastien@ximian.com>
4155 * assembly.c (parse_public_key): Avoid allocating (and not
4156 freeing) the public key array when it's not requested by the
4158 * threads.c (mono_thread_manage, mono_thread_create_internal,
4159 ves_icall_System_Threading_Thread_Thread_internal): Free
4160 allocated memory on error.
4162 2009-09-02 Rodrigo Kumpera <rkumpera@novell.com>
4164 * icall.c, icall-def.h: Remove some dead code from early SRE changes.
4166 2009-09-02 Rodrigo Kumpera <rkumpera@novell.com>
4168 * class.c (mono_class_setup_fields): Remove duplicated local variable
4170 Rename gklass to gtd to reflect the fact that it points to the generic
4172 Remove the duplicated call to mono_class_setup_fields on gtd and move
4173 the error check to the beginning.
4175 2009-09-02 Rodrigo Kumpera <rkumpera@novell.com>
4177 * marshal.c (mono_array_to_lparray): Do DISABLE_COM properly.
4178 Remove cruft of the previous patch.
4180 2009-09-01 Rodrigo Kumpera <rkumpera@novell.com>
4182 * metadata-verify.c (verify_method_table): Check for abstract + final.
4185 2009-09-01 Rodrigo Kumpera <rkumpera@novell.com>
4187 * verify.c (verify_class_fields): Check for duplicate fields.
4189 2009-09-01 Rodrigo Kumpera <rkumpera@novell.com>
4191 * metadata-verify.c: Verify the typeref table for duplicates.
4193 2009-09-01 Rodrigo Kumpera <rkumpera@novell.com>
4195 This reverts r140936 and properly handles interfaces with static methods. The
4196 right fix is to ensure vtables without bubles which is an easier to verify
4197 constraint. We should avoid such special cases as of the reverted patch as those
4198 only make the runtime more brittle.
4200 * class.c (mono_class_setup_vtable_general): Revert previous change that handle
4201 static methods on interfaces.
4203 * class.c (setup_interface_offsets): Use the number of virtual methods when
4204 calculating interface offsets instead of the number of methods. This way we
4205 avoid bubles on the layout.
4207 2009-08-31 Rodrigo Kumpera <rkumpera@novell.com>
4209 * metadata-verify.c (verify_metadata_header): Some very smart
4210 obfuscators like to add extra stream headers. Ignore them.
4212 2009-08-30 Zoltan Varga <vargaz@gmail.com>
4214 * class.c (mono_class_setup_vtable_general): Verify interfaces with static
4217 2009-08-29 Rodrigo Kumpera <rkumpera@novell.com>
4219 * metadata-verify.c: Verify for duplicated types.
4221 2009-08-28 Rodrigo Kumpera <rkumpera@novell.com>
4223 * metadata-verify.c (verify_typedef_table): Verify for nested types
4224 without an entry on the nested class table.
4226 2009-08-28 Zoltan Varga <vargaz@gmail.com>
4228 * cominterop.c (cominterop_get_ccw): Applied patch from tom hindle
4229 <tom_hindle@sil.org>. Add locking around hash table accesses.
4231 2009-08-25 Rodrigo Kumpera <rkumpera@novell.com>
4233 * verify.c (mono_verifier_verify_class): Verify all interface if
4234 really are interfaces. Fixes #534184.
4236 2009-08-27 Rodrigo Kumpera <rkumpera@novell.com>
4238 * pedump.c: Initialize all types during metadata validation so we report
4239 errors only detected as part of class initialization.
4241 2009-08-26 Rodrigo Kumpera <rkumpera@novell.com>
4243 * metadata-verify.c (verify_method_table): PInvoke requires method to
4244 be static. Fixes #534189
4246 2009-08-26 Zoltan Varga <vargaz@gmail.com>
4248 * threads.c (mono_thread_suspend_all_other_threads): Handle 'threads_starting_ip'
4251 2009-08-25 Rodrigo Kumpera <rkumpera@novell.com>
4253 * class.c (mono_class_setup_vtable_general): Verify the resulting vtable
4254 for holes or bad methods. Fixes #525314.
4256 2009-08-25 Rodrigo Kumpera <rkumpera@novell.com>
4258 * class.c (setup_interface_offsets): Don't allocate slot
4259 for the same interface multiple times. This creates bubbles
4260 that waster space and make vtable verification harder.
4262 The same interface get a slot multiple times since we need
4263 to get the closure of all implemented interfaces, which means
4264 the same interface is reported multiple times.
4266 2009-08-25 Rodrigo Kumpera <rkumpera@novell.com>
4268 * verify.c (mono_verifier_verify_class): Don't check the fields
4269 of generic instances since the context on which they got expanded
4270 might lead to false positives.
4272 Such thing happens when a generic type is inflated in the context
4273 of a generic method and the inflated type of a field turns into a
4274 generic method argument, which causes the checking code to think
4275 it's an invalid class when it's not.
4277 2009-08-25 Rodrigo Kumpera <rkumpera@novell.com>
4279 * verify.c (mono_type_is_valid_in_context): Verify if type
4280 is NULL and remove duplicate test.
4282 2009-08-24 Rodrigo Kumpera <rkumpera@novell.com>
4284 * verify.c (mono_verifier_verify_class): Check fields for
4285 invalid generic arguments.
4287 2009-08-24 Rodrigo Kumpera <rkumpera@novell.com>
4289 * class.c (verify_class_overrides): Verify if for static
4290 and non virtual methods.
4292 2009-08-24 Rodrigo Kumpera <rkumpera@novell.com>
4294 * icaa.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor):
4295 Check for errors after retrieving the vtable.
4297 2009-08-24 Rodrigo Kumpera <rkumpera@novell.com>
4299 * class.c (mono_class_setup_vtable_general): Verify
4300 if method overrides are valid before processing them.
4302 2009-08-24 Rodrigo Kumpera <rkumpera@novell.com>
4304 * marshal.c (mono_array_to_lparray): Fix minimal build with
4305 cominterop disabled.
4307 * marshal.c (mono_free_lparray): Same.
4309 2009-08-21 Mark Probst <mark.probst@gmail.com>
4311 * threadpool.c (mono_thread_pool_init): Use mono_object_hash() as
4312 the hash function for the ares_htable.
4314 2009-08-20 Rodrigo Kumpera <rkumpera@novell.com>
4316 * metadata-verify.c (verify_assembly_table): Accept 0x10 as a valid
4317 bit for assembly flags. MS is ok with it but there is no spec anywhere
4320 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4322 * class.c (mono_class_create_from_typedef): Emit profiler events
4325 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4327 * icall.c (ves_icall_Type_GetMethodsByName): Don't leak loader errors.
4328 Release memory on failure.
4330 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4332 * class-internals.h: Add mono_metadata_load_generic_param_constraints_full
4333 to the internal API.
4335 * metadata.c (get_constraints): Use a single-linked table as we don't
4336 traverse it backward. Fail and return FALSE if only of the contraint types
4339 * metadata.c (mono_metadata_load_generic_param_constraints_full): Identical
4340 to mono_metadata_load_generic_param_constraints except for having a return value.
4341 This has to be done since the later is part of the public API.
4343 * class.c (mono_class_create_from_typedef): Properly check the loading of constrains
4346 * loader.c (mono_get_method_from_token): Properly check the loading of constraints
4347 and fail the method.
4349 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4351 * metadata-verify.c (is_valid_method_header): Add work-around to deal
4352 with MS broken behavior of emmitting EH section sizes without the
4355 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4357 * metadata.c (mono_type_create_from_typespec): Don't allocate image
4358 memory until we're sure that we'll need it. This avoids leaking for
4359 broken types or duplicated instantiation.
4361 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4363 * metadata-verify.c (is_valid_method_header): Fix stupid formating
4366 2009-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4368 * metadata-verify.c (is_valid_method_header): Fix number of clauses
4369 and expected size calculation.
4371 2009-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4373 * class.c (mono_class_get_field_idx): Add fixme for broken
4374 behavior for types with multiple fields with the same name.
4375 I would rather fix it, but have no idea on how to generate
4376 such artifact for testing.
4378 2009-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4380 * verify.c (verifier_load_field): We should allow references to
4381 fields to be made using the generic type definition. It's up to
4382 the loader system to fail invalid ops.
4384 * verify.c (get_boxable_mono_type): Only uninstantiated GTDs
4387 2009-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4389 * class.c: Fix usage of mono_metadata_interfaces_from_typedef_full.
4391 * metadata-internals.h: Fix declaration of
4392 mono_metadata_interfaces_from_typedef_full.
4394 * metadata.c (mono_metadata_interfaces_from_typedef_full): Add extra
4395 heap_alloc_result parameter that controls if the result should be
4398 * metadata.c (mono_metadata_interfaces_from_typedef): Let the resulting
4399 array be g_malloc'd and properly document this public API function.
4401 2009-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4403 * cil-coff.h: Fix METHOD_HEADER_FORMAT_MASK to be 2 bits and
4404 remove METHOD_HEADER_TINY_FORMAT1.
4406 * reflection.c: Remove reference to METHOD_HEADER_TINY_FORMAT1.
4408 * metadata.c (mono_metadata_parse_mh_full): Kill tiny format1.
4410 Both spec and MS uses only 2 bits to enumerate the kind of header.
4411 So given that 0x6 and 0x2 are equal under a 2 bits mask, tiny format1
4412 is superfluous, only used for tiny headers with odd code lengths.
4414 This change also make sure that mono doesn't wronly interpret bit 2
4415 of fat header flags, which is currently reserved.
4417 2009-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4419 * metadata.c (do_mono_metadata_parse_type): Do error
4420 checking for element types. Don't abort if presented
4421 with a broken type kind.
4423 2009-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4425 * metadata.c (mono_metadata_parse_method_signature_full):
4426 Gracefully fail bad vararg signatures.
4428 2009-08-18 Christian Hergert <chris@dronelabs.com>
4431 * class.c: Fix warnings for uninitialized variables.
4433 2009-08-18 Christian Hergert <chris@dronelabs.com>
4435 * icall.c: Fix _NSGetEnviron method declaration warning.
4437 2009-08-18 Christian Hergert <chris@dronelabs.com>
4440 * reflection.c: Make bitwise checks explicit.
4442 2009-08-18 Christian Hergert <chris@dronelabs.com>
4445 * marshal.c: Fix printf warnings.
4447 2009-08-18 Zoltan Varga <vargaz@gmail.com>
4449 * reflection.c (encode_cattr_value): Fix a warning.
4451 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4453 * metadata.c (mono_metadata_parse_array_full): Fix memory leak
4456 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4458 * loader.c (mono_method_signature): Don't assert on broken
4459 signature. Print a more useful error message.
4461 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4463 * loader.c (mono_method_get_marshal_info): Assert if
4464 signature is invalid. Bounds check stores to the
4467 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4469 * loader.c (field_from_memberref): Fix warning.
4471 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4473 * loader.c (mono_method_get_param_names): Check if signature
4474 is null. Don't store beyond the size of the name array.
4476 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4478 * loader.c (mono_get_method_constrained): Check if signature
4481 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4483 * loader.c (mono_loader_set_error_bad_image): Improve
4486 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4488 * loader.c (mono_get_method_full): Convert an assertion
4489 into a loader error.
4491 2009-08-17 Rodrigo Kumpera <rkumpera@novell.com>
4493 * class-internals.h, class.c: Better naming and documentation.
4495 2009-08-17 Zoltan Varga <vargaz@gmail.com>
4497 * boehm-gc.c (mono_gc_add_weak_track_handle): Don't do any work if
4500 2009-08-14 Rodrigo Kumpera <rkumpera@novell.com>
4502 * loader.c (mono_method_get_signature_full): Fail gracefully if signature
4505 2009-08-14 Rodrigo Kumpera <rkumpera@novell.com>
4507 * loader.c (mono_loader_error_prepare_exception): Handle missing field
4508 errors with no class set.
4510 * loader.c (field_from_memberref): If the field signature is of the wrong
4511 type fail with a MissingFieldException instead of a BadImageException as
4512 this is the behavior observed on MS.
4514 2009-08-14 Rodrigo Kumpera <rkumpera@novell.com>
4516 * loader.c (field_from_memberref): Don't crash if either the field
4517 signature or the typespec class are invalid.
4519 2009-08-14 Rodrigo Kumpera <rkumpera@novell.com>
4521 * verify.c (verifier_load_field): Don't allow field related
4522 ops to reference fields on generic type definition.
4524 2009-08-14 Rodrigo Kumpera <rkumpera@novell.com>
4526 * metadata-verify.c: Add new warning level for errors specified
4527 by ECMA 335 but that MS ignores.
4529 * metadata-verify.c (verify_method_table): Make compiler controled
4530 visibility + (rt)specialname error a warning as MS ignores this. Ignoring
4531 this check is safe because the end result will only be some visibility
4532 exceptions been thrown.
4534 2009-08-14 Rodrigo Kumpera <rkumpera@novell.com>
4536 * verify.c (get_boxable_mono_type): Don't allow the
4537 use of the generic type definition on boxed type positions.
4541 2009-08-14 Mark Probst <mark.probst@gmail.com>
4543 * threadpool.c: Make sure no cross-domain references remain in
4544 ares_htable or the arrays that are thrown away when resizing.
4546 2009-08-14 Mark Probst <mark.probst@gmail.com>
4548 * appdomain.c, metadata-internals.h, image.c: In MonoImage add a
4549 list of classes for which we have to unregister reflection_info
4550 with the GC and which are not in the namespace cache.
4552 * reflection.c (mono_reflection_initialize_generic_parameter): Add
4553 the class to the list.
4555 2009-08-14 Mark Probst <mark.probst@gmail.com>
4557 * domain.c (mono_domain_free): Unregister the GC roots in
4560 2009-08-12 Rodrigo Kumpera <rkumpera@novell.com>
4562 * reflection.c (mono_reflection_type_get_handle): Fix typo.
4564 2009-08-12 Rodrigo Kumpera <rkumpera@novell.com>
4566 * class.c: Add mono_class_get_field_from_name_full which does
4567 the same as mono_class_get_field_from_name but does check field
4570 * class-internals.h: Export mono_class_get_field_from_name_full as
4571 part of the internal API.
4573 * loader.c (field_from_memberref): Search fields by name and signature
4574 as it's valid to have two fields with same name but different types.
4578 2009-08-10 Rodrigo Kumpera <rkumpera@novell.com>
4580 * icall-def.h: Add a bunch of temporary icalls to MonoGenericClass.
4582 * reflection.c (mono_reflection_type_get_handle): Handle MonoGenericClass.
4584 * reflection.c (encode_cattr_value): Use mono_reflection_type_get_handle to encode
4587 2009-08-13 Zoltan Varga <vargaz@gmail.com>
4589 * gc.c (GCHandle_CheckCurrentDomain): Moved this here from icall.c.
4591 * boehm-gc.c (mono_gc_add_weak_track_handle): Handle nulls.
4593 2009-08-12 Mark Probst <mark.probst@gmail.com>
4595 * sgen-gc.c, sgen-scan-object.h: Object scanning code factored out
4596 to sgen-scan-object.h, which can be included and parameterized via
4599 * Makefile.am: sgen-scan-object.h added.
4601 2009-08-12 Mark Probst <mark.probst@gmail.com>
4603 * gc.c: #define GC_dont_gc if we're compiling with SGen.
4605 2009-08-12 Mark Probst <mark.probst@gmail.com>
4607 * domain.c (mono_domain_free): Free a domain's mono_g_hash_tables
4608 before clearing a domain in the GC.
4610 2009-08-12 Mark Probst <mark.probst@gmail.com>
4612 * exception.c (mono_exception_from_name_domain): Actually create
4613 the exception in the specified domain.
4615 * appdomain.c (mono_domain_create_appdomain_internal): Create the
4616 OutOfMemoryException a bit later so that the domain is inialized
4617 "enough" that it works.
4619 2009-08-12 Mark Probst <mark.probst@gmail.com>
4621 * threads.c (thread_cleanup): Clean up the cached_culture_info
4622 array to prevent cross-domain references.
4624 Tue Aug 11 14:38:57 CEST 2009 Paolo Molaro <lupus@ximian.com>
4626 * metadata.c: more documentation for MonoType accessors.
4628 2009-08-11 Raja R Harinath <harinath@hurrynot.org>
4630 Fix incorrect size definitions where the tail array isn't a list
4632 * class-internals.h (MONO_SIZEOF_MARSHAL_TYPE): Use offsetof to
4634 * domain-internals.h (MONO_SIZEOF_JIT_INFO): Likewise.
4635 * metadata.h (MONO_SIZEOF_TYPE): Likewise.
4636 * reflection.h (MONO_SIZEOF_CUSTOM_ATTR_INFO): Likewise.
4638 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4641 * reflection.c: MONO_SIZEOF_CUSTOM_ATTR_INFO.
4643 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4647 * metadata-internals.h:
4649 * reflection.c: use MONO_SIZEOF_METHOD_HEADER.
4651 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4658 * reflection.c: #define for sizeof in MonoType and
4659 MonoMethodSignature.
4661 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4664 * domain-internals.h: add and use #define's instead of sizeof()
4665 for MonoJitInfo and MonoJitInfoTable.
4667 2009-08-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
4670 * class.h: use #define instead of sizeof() for MonoRemoteClass.
4672 2009-08-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
4677 * class-internals.h:
4678 * generic-sharing.c:
4679 * marshal.c: use a #define instead of sizeof() for a few
4680 structures that use a zero-length array.
4682 2009-08-06 Rodrigo Kumpera <rkumpera@novell.com>
4684 * object-internals.h (MonoReflectionMethodOnTypeBuilderInst): Add new fields
4685 to handle inflated generic methods.
4687 * appdomain.c: Bump corlib version.
4689 * reflection.c (mono_image_get_method_on_inst_token): Handle generic method
4692 * reflection.c (fixup_method): Same
4694 * reflection.c (resolve_object): Same.
4696 * reflection.c (inflate_method): Replace a g_assert_not_reached with a
4697 g_error and a decent message.
4699 2009-08-06 Massimiliano Mantione <massi@ximian.com>
4701 * bohem-gc.c (mono_gc_add_weak_track_handle): Get the domain
4702 from the object because it could not yet be available globally
4703 (it happens if the profiler tries to create a gchandle on the
4704 MonoThread object of a thread that is still registering itself
4707 2009-08-04 Rodrigo Kumpera <rkumpera@novell.com>
4709 * reflection.c (mono_generic_class_get_object): Initialized the
4710 managed type arguments array.
4712 * object-internals.h (MonoReflectionGenericClass): Add type_arguments field.
4714 * appdomain.c: Bump corlib version.
4716 2009-08-04 Zoltan Varga <vargaz@gmail.com>
4718 * threads.c (thread_cleanup): Free serialized_ui_culture_info. Fixes
4721 2009-08-03 Zoltan Varga <vargaz@gmail.com>
4723 * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal):
4724 Avoid a crash if synch_cs is not set.
4726 * threads.c (ves_icall_System_Threading_Thread_Thread_free_internal):
4727 Handle the case when the handle is 0.
4729 * appdomain.c: Bump corlib version.
4731 2009-08-02 Zoltan Varga <vargaz@gmail.com>
4733 * reflection.c (mono_type_get_object): Fix a warning.
4735 2009-08-01 Mark Probst <mark.probst@gmail.com>
4737 * sgen-gc.c (mono_gc_wbarrier_value_copy): Don't compute the GC
4738 descriptor here. We assume it's already been computed.
4740 * generic-sharing.c (instantiate_other_info): Compute the GC
4741 descriptor for info type MONO_RGCTX_INFO_KLASS.
4743 2009-08-01 Mark Probst <mark.probst@gmail.com>
4745 * reflection.c (mono_type_get_object): MonoDomain is an unmanaged
4746 type, so don't use MONO_OBJECT_SETREF to set a field.
4748 2009-08-01 Mark Probst <mark.probst@gmail.com>
4750 * gc.c: We were missing one case where invoking a finalizer would
4751 not reset the domain. Also, in the finalizer thread loop, assert
4752 that we're in the root domain.
4754 2009-07-31 Rodrigo Kumpera <rkumpera@novell.com>
4756 * icall.c (ves_icall_MonoType_GetArrayRank): Throw ArgumentException
4757 if the type is not an array.
4759 2009-07-31 Rodrigo Kumpera <rkumpera@novell.com>
4761 * icall.c (ves_icall_MonoType_get_DeclaringMethod): Return the
4762 method bound to the declaring type of the method. Raise an exception
4763 if the type is not a generic param.
4765 2009-07-31 Rodrigo Kumpera <rkumpera@novell.com>
4767 * class.c (print_unimplemented_interface_method_info): Print the
4770 * class.c (mono_class_setup_vtable_general): When dealing with a
4771 generic instance first check if the generic type definition is
4774 2009-02-11 Tom Hindke <tom_hindle@sil.org>
4776 * marshal.c (mono_array_to_lparray): Implemented so managed object types are converted to native types.
4778 * marshal.c: Added new method mono_free_lparray to free memory allocated by mono_array_to_lparray
4780 * marshal.c (emit_marshal_array): call emit mono_free_lparray where approprate.
4782 * marshal.c (conv_to_icall): added MONO_MARSHAL_FREE_LPARRAY case
4784 * metadata.h (MonoMarshalConv enum): added MONO_MARSHAL_FREE_LPARRAY
4786 Code is contributed under MIT/X11 license
4788 2009-08-30 Rodrigo Kumpera <rkumpera@novell.com>
4790 * verify.c: Fix naming of stelem and ldelem.
4792 2009-07-30 Mark Probst <mark.probst@gmail.com>
4794 * generic-sharing.c: Replace the templates lock with the loader
4795 lock because of very hard to resolve deadlock issues.
4797 2009-07-30 Zoltan Varga <vargaz@gmail.com>
4799 * icall.c (ves_icall_Type_GetMethodsByName): Use
4800 mono_class_get_vtable_size () instead of accessing klass->vtable_size
4801 directly. Fixes #525338.
4803 * class.c (mono_class_get_vtable_size): New helper function.
4805 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle_type): Fix the second argument, its a MonoType* not a MonoClass*. Check whenever
4806 the field belongs to the type. Fixes #525733.
4808 2009-07-30 Mark Probst <mark.probst@gmail.com>
4810 * sgen-gc.c: When we stop a thread and its stack top is not within
4811 its allocated stack (because it's in an altstack signal handler),
4812 restart it and stop it again, until it is.
4814 2009-07-30 Mark Probst <mark.probst@gmail.com>
4816 * sgen-gc.c: Take a thread's stack top and registers from the
4817 sigcontext in the suspend signal handler.
4819 * sgen-gc.h, sgen-archdep.h, Makefile.am: Move arch-dependent
4820 stuff to sgen-archdep.h.
4822 * gc.c, gc-internal.h: Remove the get_ip_from_sigctx installer and
4823 caller, because have code in sgen-archdep.h to acquire that data.
4825 2009-07-29 Massimiliano Mantione <massi@ximian.com>
4827 * profiler.c, profiler.h, profiler-private.h:
4828 Added support for keeping track of code chunks and buffers.
4830 2009-07-29 Rodrigo Kumpera <rkumpera@novell.com>
4832 * metadata-verify.c: Fix endianness problems on decoding functions.
4833 Based on a patch by Ulrich Weigand <uweigand@de.ibm.com>
4835 2009-07-28 Rodrigo Kumpera <rkumpera@novell.com>
4837 * icall.c (ves_icall_Type_make_array_type): Handle the new encoding
4838 schema for vectors and one dimension SZARRAY.
4840 2009-07-28 Rodrigo Kumpera <rkumpera@novell.com>
4842 * reflection.c (mono_reflection_type_get_handle): Handle the new encoding
4843 schema for vectors and one dimension SZARRAY.
4845 2009-07-27 Mark Probst <mark.probst@gmail.com>
4847 * icall-def.h, thread-types.h, threads.c: New separate icalls for
4848 Interlocked.(Compare)Exchange with object arguments, which invoke
4851 2009-07-26 Miguel de Icaza <miguel@novell.com>
4853 * icall.c (ves_icall_Type_GetNestedType): Throw an exception when
4854 passed invalid arguments. Fixes another crasher in the
4855 Silverlight test suite.
4857 * class.c (mono_class_array_element_size): Return 0 for the size
4858 of the class; This fixes the crasher exposed by :
4860 typeof (void).MakeArrayType ();
4862 * icall.c (ves_icall_MonoType_GetEvent): Do not dereference method
4863 if there is no method to dereference. Put all the code that
4864 depends on this inside the if (method) block.
4866 This fixes the crasher exposed by Microsoft's Silvelright CLR test
4867 suite ./Reflection/Emit/TypeBuilder/TypeBuilderGetEvent.exe
4869 With this change, we pass the test.
4871 * reflection.c (mono_reflection_sighelper_get_signature_local):
4872 Only dereference the assembly if it has been set. Fixes a
4873 crasher exposed by #525328
4875 2009-07-25 Mark Probst <mark.probst@gmail.com>
4877 * sgen-gc.c, object.h, null-gc.c, boehm-gc.c, marshal.c: Really
4878 don't perform the store in mono_gc_wbarrier_generic_nostore().
4879 Remove the second argument (value), which is not needed.
4881 2009-07-24 Zoltan Varga <vargaz@gmail.com>
4883 * null-gc.c (mono_gc_wbarrier_generic_nostore): Define this to fix
4886 * boehm-gc.c: Ditto.
4888 2009-07-24 Mark Probst <mark.probst@gmail.com>
4890 * sgen-gc.c, marshal.c, object.h: Make the managed write barrier
4891 not perform the store itself. Introduce
4892 mono_gc_wbarrier_generic_nostore(), which is the same as
4893 mono_gc_wbarrier_generic_store(), except it doesn't perform the
4896 2009-07-24 Mark Probst <mark.probst@gmail.com>
4898 * icall.c (ves_icall_System_Array_SetGenericValueImpl):
4899 mono_gc_wbarrier_value_copy() doesn't perform the copy itself, so
4900 we still need the memcpy().
4902 2009-07-22 Mark Probst <mark.probst@gmail.com>
4904 * sgen-gc.c: Align array bounds calculation to mono_array_size_t
4905 so that big arrays are handled correctly. Always use
4906 safe_object_get_size() to calculate array object sizes, which
4907 takes bounds into account.
4909 2009-07-22 Mark Probst <mark.probst@gmail.com>
4911 * sgen-gc.c (mono_gc_wbarrier_value_copy): Make sure the class's
4912 GC descriptor is computed before we use it.
4914 2009-07-22 Mark Probst <mark.probst@gmail.com>
4916 * icall.c (ves_icall_System_Array_SetGenericValueImpl): Use a
4917 write barrier if necessary.
4919 2009-07-22 Mark Probst <mark.probst@gmail.com>
4921 * icall-def.h, icall.c, thread-types.h: New separate icall for
4922 VolatileWrite(object&,object) that uses a write barrier.
4924 * console-unix.c, file-io.c, icall.c, threads.c: Use write
4925 barriers in icalls which write to "ref" or "out" arguments.
4927 2009-07-21 Zoltan Varga <vargaz@gmail.com>
4929 * marshal.c (mono_marshal_get_runtime_invoke): Do the work done in the exception
4930 handler in a separate icall, to reduce the size of the wrappers.
4932 2009-07-20 Rodrigo Kumpera <rkumpera@novell.com>
4934 * metadata-verify.c (is_valid_typespec_blob): Fix error message.
4936 2009-07-20 Rodrigo Kumpera <rkumpera@novell.com>
4938 * metadata-verify.c (parse_field): Allow byref field.
4940 * metadata-verify.c (parse_locals_signature): Allow byref locals.
4942 * metadata-verify.c (is_valid_typespec_blob): Allow byref typespec.
4944 2009-07-20 Rodrigo Kumpera <rkumpera@novell.com>
4946 * verify.c (do_cast): Fail for any non reference type that isn't boxed.
4949 2009-07-20 Robert Jordan <robertj@gmx.net>
4951 * cominterop.c (cominterop_get_managed_wrapper_adjusted):
4952 Fix invalid IL in valuetype handling (STOBJ must push the
4953 corresponding class). Fixes bug #523149.
4955 Code is contributed under MIT/X11 license.
4957 2009-07-20 Geoff Norton <gnorton@novell.com>
4959 * gc.c: Use proper semaphores where available on posix and darwin.
4961 2009-07-19 Geoff Norton <gnorton@novell.com>
4963 * gc.c: Unnamed posix semaphores are broken on darwin-arm too.
4965 2009-07-19 Rodrigo Kumpera <rkumpera@novell.com>
4967 * refletion.c (is_sre_usertype): Change name to is_usertype and
4968 invert it's result so it returns true if the type is an user type
4969 and not the opposite.
4971 * reflection.c (is_*_type): Change all of those to use new macro
4972 check_corlib_type_cached that cached the type lookup so we don't
4973 need to do string comparisons all the type. Changed the signature
4974 to take a MonoClass instead.
4976 * reflection.c: Change mono_image_create_token and resolve_object
4977 to use is_sre_* functions.
4979 2009-07-18 Mark Probst <mark.probst@gmail.com>
4981 * sgen-gc.c: Check for writes to the stack in the managed
4984 2009-07-18 Mark Probst <mark.probst@gmail.com>
4986 * sgen-gc.c: When a thread is unregistered, don't free its remsets
4987 but put them on a list which is processed with the other thread's
4990 2009-07-18 Mark Probst <mark.probst@gmail.com>
4992 * sgen-gc.c: Fix and enable the internal allocator instead of
4993 using malloc/free (which causes deadlocks).
4995 2009-07-16 Rodrigo Kumpera <rkumpera@novell.com>
4997 * refletion.c: Fix builds with SRE disabled by adding a minimal
4998 implementation of mono_reflection_type_get_handle.
5000 2009-07-15 Rodrigo Kumpera <rkumpera@novell.com>
5002 * refletion.c: Make mono_reflection_type_get_handle non static.
5004 * object-internals.h: Export mono_reflection_type_get_handle.
5006 * icall.c (ves_icall_MonoGenericClass_InflateType): Resolve the
5007 unmanaged handle using mono_reflection_type_get_handle.
5009 2009-07-15 Rodrigo Kumpera <rkumpera@novell.com>
5011 * refletion.c: Replace all reads of MonoReflectionType::type with
5012 calls to mono_reflection_type_get_handle. Only the functions that
5013 deal with constructing TypeBuilder::type have not been changed
5014 because they have to deal with NULL values.
5016 This is a first step into supporting reflection types that don't
5017 map directly into their unmanaged counterpart.
5019 2009-07-14 Rodrigo Kumpera <rkumpera@novell.com>
5021 * metadata-verify.c (parse_locals_signature): Don't complain
5022 on signature with zero locals since MS generates it and doesn't
5025 2009-07-14 Rodrigo Kumpera <rkumpera@novell.com>
5027 * reflection.c (mono_image_get_array_token): Resolve return
5028 type using mono_reflection_type_get_handle.
5030 * reflection.c (mono_image_get_array_token): Resolve array method
5031 parent type using mono_reflection_type_get_handle.
5033 2009-07-14 Zoltan Varga <vargaz@gmail.com>
5035 * reflection.c (mono_image_basic_init): Applied patch from
5036 <Dax@daxxfiles.net>. Set the public key token from the assembly
5037 builder. Fixes #518909.
5039 * appdomain.c: Bump corlib version.
5041 2009-07-13 Zoltan Varga <vargaz@gmail.com>
5043 * class.c (mono_class_needs_cctor_run): Make this return false if
5044 the class has no cctor.
5046 2009-07-13 Mark Probst <mark.probst@gmail.com>
5048 * sgen-gc.c: When the minor GC needs to allocate a new section,
5049 invoke the major GC afterwards.
5051 2009-07-14 Bill Holmes <billholmes54@gmail.com>
5053 * process.c (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal) :
5054 Applying the window_style field to the SHELLEXECUTEINFO struct.
5056 Code is contributed under MIT/X11 license.
5058 2009-07-13 Mark Probst <mark.probst@gmail.com>
5060 * sgen-gc.c: Fix the race condition in the unmanaged allocator by
5061 locking earlier. Fix it in the managed allocator by making sure
5062 that no thread is stopped there before the GC runs. If we do stop
5063 a thread there, we restart it and let it run a but, until it stops
5066 * gc-internal.h, gc.c: Function for getting the IP from a signal
5067 context via a function registered by mini.
5069 2009-07-11 Zoltan Varga <vargaz@gmail.com>
5071 * object-internals.h (MonoIntPtr): New structure describing a boxed
5074 * object.c (mono_runtime_invoke_array): Handle ptr arguments and
5075 returns. Fixes #519953.
5077 * marshal.c (mono_marshal_get_runtime_invoke): Handle pointer returns.
5079 2009-07-09 Mark Probst <mark.probst@gmail.com>
5081 * class-internals.h, generic-sharing.c: New RGCTX info type for
5082 getting a remoting invoke with check wrapper.
5084 2009-07-07 Geoff Norton <gnorton@novell.com>
5086 * icall-def.h: Fix the enable-minimal build.
5088 2009-07-07 Rodrigo Kumpera <rkumpera@novell.com>
5090 * object-internals.h: Add MonoReflectionDerivedType.
5092 * reflection.c: Implement support for PointerType.
5093 Fixed tons of warnings.
5095 2009-07-07 Rodrigo Kumpera <rkumpera@novell.com>
5097 * object-internals.h: Add MonoReflectionByRefType.
5099 * reflection.c: Implement support for ByRefType.
5101 2009-07-07 Rodrigo Kumpera <rkumpera@novell.com>
5103 * icall-def.h: Add System.Reflection.Emit.DerivedType::create_unmanaged_type.
5105 * object-internals.h: Add MonoReflectionArrayType and
5106 mono_reflection_create_unmanaged_type.
5108 * reflection.c: Implement support for ArrayType.
5110 2009-07-07 Rodrigo Kumpera <rkumpera@novell.com>
5112 * metadata-verify.c (is_valid_method_header): Parse EH block
5115 2009-07-03 Mark Probst <mark.probst@gmail.com>
5117 * sgen-gc.c (finish_gray_stack): Set the to_space pointer after
5118 processing the disappearing links, and process disappearing links
5119 in a loop until no new objects are copied.
5121 2009-07-03 Mark Probst <mark.probst@gmail.com>
5123 * object.c (handle_enum): Invoke the write barrier when copying
5124 value type instances.
5126 * sgen-gc.c: Register remsets for unmanaged write barriers only
5127 when the address written to is actually on the heap. This makes
5128 set_value() in object.c work without requiring that the result be
5131 2009-07-02 Rodrigo Kumpera <rkumpera@novell.com>
5133 The runtime wrappers are all bound to a given type that must
5134 exist in the same image. For regular images we use the <Module>
5135 type, which is required to exist for all images.
5137 The <Module> type can't be used for dynamic images because it
5138 might not exist at the time the wrapper is required, so we create
5139 a synthetic type to use instead.
5141 The current code works because of the 2 stage setup of MonoClass,
5142 but once this is gone it will no longer work.
5144 * icall-def.h: Add ModuleBuilder::set_wrappers_type.
5146 * metadata-internals.h (MonoDynamicImage): Add wrappers_type.
5148 * object-internals.h: Export mono_image_set_wrappers_type icall
5149 as part of the internal API.
5151 * marshal.c (get_wrapper_target_class): If the image is dynamic,
5152 use MonoDynamicImage::wrappers_type instead of the <Module> type.
5154 reflection.c: Add mono_image_set_wrappers_type qhixh sets the dynamic
5155 image wrappers_type to the provided value.
5157 2009-07-01 Rodrigo Kumpera <rkumpera@novell.com>
5159 * appdomain.c (deregister_reflection_info_roots): No need
5160 to use the image lock here.
5162 2009-07-02 Mark Probst <mark.probst@gmail.com>
5164 * sgen-gc.c (collect_nursery): Also scan from write-barrier roots.
5166 2009-06-29 Zoltan Varga <vargaz@gmail.com>
5168 * threads.c: Store the thread start argument in a hash table instead of
5169 registering it as a root, as libgc doesn't support unregistering roots
5170 under windows, leading to 'too many root sets' errors when many threads
5173 * gc.c (mono_gc_run_finalize): Avoid finalizing dynamic methods during
5174 shutdown, they can still be referenced by the other dying objects.
5177 2009-06-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
5179 * socket-io.c: DontLinger does not allow LingerOptions.
5181 2009-06-26 Rodrigo Kumpera <rkumpera@novell.com>
5183 * metadata-verify.c: The spec doesn't mention that it's possible to add
5184 custom attribute to a generic parameter. Fixed.
5186 2009-06-26 Rodrigo Kumpera <rkumpera@novell.com>
5188 * class.c (inflate_generic_type): Don't crash while trying to output a message
5189 on why we're aborting.
5191 2009-06-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
5193 * socket-io.c: DontLinger can take an int or a boolean too.
5195 Fri Jun 26 17:00:04 CEST 2009 Paolo Molaro <lupus@ximian.com>
5197 * gc.c: check for a null argument to SuppressFinalize () and
5198 ReRegisterForFinalize ().
5200 2009-06-26 Rodrigo Kumpera <rkumpera@novell.com>
5202 * loader.c (method_from_methodspec): Call into the verifier to check
5205 * metadata-verify.c: Addmono_verifier_verify_methodspec_signature.
5207 * verify-internals.h: Export mono_verifier_verify_methodspec_signature as
5208 part of the internal API.
5210 2009-06-25 Rodrigo Kumpera <rkumpera@novell.com>
5212 * metadata.c (mono_type_create_from_typespec): Call into the verifier to check
5215 * metadata-verify.c: Add mono_verifier_verify_typespec_signature.
5217 * verify-internals.h: Export mono_verifier_verify_typespec_signature as
5218 part of the internal API.
5220 2009-06-25 Rodrigo Kumpera <rkumpera@novell.com>
5222 * metadata.c (mono_metadata_parse_mh_full): Call into the verifier to check
5225 * metadata-verify.c: Add mono_verifier_verify_standalone_signature. Fix
5228 * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5229 part of the internal API.
5231 2009-06-25 Rodrigo Kumpera <rkumpera@novell.com>
5233 * metadata-verify.c: Use is_valid_blob_object to verify blob validity
5234 when doing basic verification.
5236 This check must be done since the runtime peeks into signatures in much
5237 more places than it does decoding so it makes sense to ensure that all
5238 pointers to blob objects are well formed.
5240 2009-06-25 Rodrigo Kumpera <rkumpera@novell.com>
5242 * metadata-verify.c (is_valid_blob_object): Add extra minsize argument.
5243 Use proper overflow dectection. Fix usage of it.
5245 2009-06-25 Rodrigo Kumpera <rkumpera@novell.com>
5247 * loader.c (field_from_memberref): Call into the verifier to check
5250 * loader.c (mono_method_get_signature_full): Same.
5252 * loader.c (method_from_memberref): Same.
5254 * metadata-verify.c: Add mono_verifier_verify_memberref_signature.
5256 * verify-internals.h: Export mono_verifier_verify_memberref_signature as
5257 part of the internal API.
5259 2009-06-25 Mark Probst <mark.probst@gmail.com>
5261 * threadpool.c (mono_thread_pool_add): If the domain is unloading
5262 or unloaded, still return an AsyncResult, but don't add it to the
5265 2009-06-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
5267 * threads.c: fix missing colon when DEBUG is defined.
5269 2009-06-25 Mark Probst <mark.probst@gmail.com>
5271 * threadpool.c: Don't add new calls to a threadpool if the domain
5272 of the call is unloading or unloaded. When dequeuing a job, null
5273 the reference in the queue.
5275 2009-06-25 Mark Probst <mark.probst@gmail.com>
5277 * sgen-gc.c (null_link_in_range): Add the dislink for the old
5278 generation if an object was moved.
5280 2009-06-25 Sylvain Dupont <duposyl@gmail.com>
5282 * cominterop.h cominterop.c marshal.c: Added support for marshalling out
5283 parameters of type SAFEARRAY[VARIANT].
5285 * reflection.c (encode_marshal_blob): Properly generate element type
5286 (SafeArraySubType marshal attribute option).
5288 Code is contributed under MIT/X11 license.
5290 Thu Jun 25 15:48:09 CEST 2009 Paolo Molaro <lupus@ximian.com>
5292 * reflection.c: in mono_method_clear_object () really ensure all the
5293 objects are removed.
5295 2009-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5297 * loader.c (mono_method_signature): Call into the verifier to check
5298 the method signature.
5300 * metadata-verify.c (verify_method_table): Move signature verification
5301 to verify_method_table_full.
5303 * metadata-verify.c: Add mono_verifier_verify_method_signature.
5305 * verify-internals.h: Export mono_verifier_verify_method_signature as
5306 part of the internal API.
5308 2009-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5310 * loader.c (mono_method_get_header): Call into the verifier to
5311 check the method header.
5313 * metadata-verify.c: Add mono_verifier_verify_method_header.
5315 * verify-internals.h: Export mono_verifier_verify_method_header as
5316 part of the internal API.
5318 2009-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5320 * class.c (mono_class_find_enum_basetype): Call into the verifier to
5321 check the field signature. Replace an assert with an explicit check.
5323 * class.c (mono_class_setup_fields): Call into the verifier to check
5324 the field signature.
5326 * metadata-verify.c: Add mono_verifier_verify_field_signature.
5328 * verify-internals.h: Export mono_verifier_verify_field_signature as
5329 part of the internal API.
5331 2009-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5333 * class.c (mono_class_find_enum_basetype): Simplify this function
5334 by moving code outside of the loop and not decoding static fields.
5336 2009-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5338 * metadata-verify.c (verify_typedef_table): Check the extends
5339 token here. Move to here a flags check from verify_typedef_table_full.
5341 2009-06-24 Zoltan Varga <vargaz@gmail.com>
5343 * metadata-verify.c (is_valid_method_header): Fix a warning.
5345 * metadata-internals.h (MonoImage): Remove the unused
5346 static_rgctx_invoke_wrapper_cache.
5348 * image.c marshal.c: Ditto.
5350 2009-06-23 Rodrigo Kumpera <rkumpera@novell.com>
5352 * image.c (do_mono_image_load): Enable table data verification.
5354 2009-06-23 Rodrigo Kumpera <rkumpera@novell.com>
5356 * metadata-verify.c (is_valid_constant): Fix nullref check.
5358 2009-06-23 Rodrigo Kumpera <rkumpera@novell.com>
5360 * metadata-verify.c (is_valid_constant): Fix string bounds check.
5362 2009-06-22 Mark Probst <mark.probst@gmail.com>
5364 * sgen-gc.c: Managed allocation with pthreads TLS.
5366 * threads.c, threads-types.h: Functions for the JIT to tell the
5367 runtime whether it supports the MONO_TLS opcode.
5369 2009-06-22 Rodrigo Kumpera <rkumpera@novell.com>
5371 * metadata-verify.c (verify_param_table): Fix a crash for assemblies
5374 2009-06-22 Rodrigo Kumpera <rkumpera@novell.com>
5376 * metadata-verify.c (is_valid_constant): Fix the string length check.
5377 Use safe overflow checking. Add decent error messages.
5379 2009-06-22 Rodrigo Kumpera <rkumpera@novell.com>
5381 * metadata-verify.c: Move remaininh blob checks to the offline
5384 2009-06-22 Rodrigo Kumpera <rkumpera@novell.com>
5386 * metadata-verify.c: Move more blob checks to the offline verification
5389 2009-06-22 Bill Holmes <billholmes54@gmail.com>
5391 * object-internals.h : Adding interrupt_on_stop field.
5393 * threads.c (mono_thread_request_interruption) : On Windows exit the
5394 thread if interrupt_on_stop is set.
5396 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
5397 Removing old interrupt logic and setting the interrupt_on_stop for the
5398 thread when calling accept.
5400 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Receive_internal) :
5401 setting the interrupt_on_stop for the thread when calling accept.
5403 Contributed under MIT/X11 license.
5405 2009-06-20 Martin Baulig <martin@ximian.com>
5407 * mono-debug.h (MONO_DEBUGGER_MINOR_VERSION): Bump to 3.
5409 2009-06-21 Zoltan Varga <vargaz@gmail.com>
5411 * appdomain.c (mono_try_assembly_resolve): Don't call managed code when
5412 running in no-exec mode.
5414 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5416 * metadata-verify.c (verify_method_table): Move header
5417 checking to verify_method_table_full.
5419 * metata-verify.c (mono_verifier_verify_full_table_data):
5420 Call verify_method_table_full.
5422 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5424 * metadata-verify.c (verify_field_table): Move signature
5425 checking to verify_field_table_full.
5427 * metata-verify.c (mono_verifier_verify_full_table_data):
5428 Call verify_field_table_full.
5430 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5432 * metadata-verify.c (verify_typedef_table): Move remaining
5433 stuff to verify_typedef_table_full.
5435 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5437 * metadata-verify.c: Kill is_corlib from VerifyContext.
5438 It is only used by the offline mode.
5439 So we better remove it from the runtime path.
5441 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5443 * metadata-verify.c: Add new mono_verifier_verify_full_table_data
5444 function that perform the offline metadata verification steps.
5446 * metadata-verify.c (verify_typedef_table): Move some checks to
5447 verify_typedef_table_full and make it been called by new function
5448 mono_verifier_verify_full_table_data.
5450 * pedump.c: Call mono_verifier_verify_full_table_data.
5452 * verify-internals.h: Export mono_verifier_verify_full_table_data as
5453 part of the internal API.
5455 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5457 * metadata-verify.c (typedef_is_system_object): Fix System.Object
5460 * metadata-verify.c (verify_implmap_table): Fix implmap invalid
5461 flags bits. SupportLastError was confused as bit 7 instead of 6.
5463 * metadata-verify.c (verify_implmap_table): Fix import scope verification
5464 to check against the module ref table instead of module.
5466 * metadata-verify.c (verify_implmap_table): Fix corlib check.
5468 * pedump.c: Call mono_image_load_names.
5470 2009-06-19 Rodrigo Kumpera <rkumpera@novell.com>
5472 * image.c: Extract mono_image_load_names from do_mono_image_load.
5474 * metadata-internals.h: Export mono_image_load_names as part of
5477 2009-06-19 Zoltan Varga <vargaz@gmail.com>
5479 * metadata.c (mono_metadata_cleanup): Free the generic method cache
5480 first, as it could reference data in the other caches.
5482 2009-06-18 Rodrigo Kumpera <rkumpera@novell.com>
5484 * metadata-verify.c: Finished with method header verification.
5486 2009-06-18 Rodrigo Kumpera <rkumpera@novell.com>
5488 * metadata-verify.c: Added more header verification code.
5489 Now only EH clauses are missing.
5491 2009-06-17 Zoltan Varga <vargaz@gmail.com>
5493 * marshal.c (get_runtime_invoke_type): Don't share primitive types
5496 2009-06-16 Rodrigo Kumpera <rkumpera@novell.com>
5498 * metadata-verify.c: Initial method header verification.
5500 2009-06-16 Rodrigo Kumpera <rkumpera@novell.com>
5502 * metadata-verify.c (verify_import_table): The IAT contents
5503 might end been patched by the windows DL when running with
5506 2009-06-15 Rodrigo Kumpera <rkumpera@novell.com>
5508 * class.c (mono_class_from_typeref): If the enclosing type is not
5509 found return null instead of crashing. Fixes #508487.
5511 2009-06-15 Atsushi Enomoto <atsushi@ximian.com>
5513 * normalization-tables.h : updated to the latest unicode charcter
5515 * appdomain.c : bump corlib version.
5517 2009-06-14 Zoltan Varga <vargaz@gmail.com>
5519 * class.c (mono_class_from_name): Fix support for assembly references
5520 in the EXPORTEDTYPE table. Fixes #511704.
5522 2009-06-13 Geoff Norton <gnorton@novell.com>
5524 * domain.c: Ensure that mono_domain_assembly_open actually opens the
5525 assembly in the target domain.
5527 2009-06-12 Robert Jordan <robertj@gmx.net>
5529 * cominterop.c (cominterop_get_ccw): Increment mspec's SizeParamIndex
5530 because "this" of the managed signature has become an
5531 ordinary parameter in the unmanaged signature.
5533 2009-06-12 Zoltan Varga <vargaz@gmail.com>
5535 * class-internals.h (struct _MonoGenericContainer): Add an 'image'
5536 field for owner-less generic containers.
5538 * reflection.c (mono_reflection_initialize_generic_parameter): Set the
5539 image field of the owner-less generic containers created here.
5541 * metadata.c (mono_metadata_load_generic_params): Ditto, the
5542 contain is ownerless until the caller sets its owner.
5544 * metadata.c (type_in_image): Handle owner-less generic containers
5547 2009-06-11 Zoltan Varga <vargaz@gmail.com>
5549 * image.c (mono_image_close): Support debug_assembly_unload for
5552 2009-06-11 Andrés G. Aragoneses <aaragoneses@novell.com>
5554 * class.c: Fix some typos in comments.
5556 2009-06-11 Zoltan Varga <vargaz@gmail.com>
5558 * reflection.c (add_custom_modifiers): Avoid reading invalid memory.
5560 * threads.c (mono_thread_execute_interruption): Avoid creating the
5561 abort exception object while holding the synch_cs lock.
5563 2009-06-10 Rodrigo Kumpera <rkumpera@novell.com>
5565 * metadata-verify.c: Verify basic cattr content.
5567 2009-06-10 Zoltan Varga <vargaz@gmail.com>
5569 * reflection.c (add_exported_type): Don't set the FORWARDER flag on
5572 * reflection.c (mono_image_fill_export_table_from_type_forwarders): Add
5573 support for nested types. Fixes #511704.
5575 2009-06-09 Rodrigo Kumpera <rkumpera@novell.com>
5577 * metadata-verify.c: Verify methodspec signatures.
5579 2009-06-09 Rodrigo Kumpera <rkumpera@novell.com>
5581 * metadata-verify.c: Verify typespec signatures.
5583 2009-06-09 Zoltan Varga <vargaz@gmail.com>
5585 * metadata.c (free_inflated_method): Call
5586 mono_marshal_free_inflated_wrappers (), which was missed earlier.
5588 2009-06-08 Miguel de Icaza <miguel@novell.com>
5590 * mono-config.c: Small change to report the PPC64/ILP32 model.
5592 2009-06-05 Rodrigo Kumpera <rkumpera@novell.com>
5594 * metadata-verify.c (parse_type): Check szarray.
5596 2009-06-05 Rodrigo Kumpera <rkumpera@novell.com>
5598 * metadata-verify.c (parse_type): Check fnptr.
5600 2009-06-05 Rodrigo Kumpera <rkumpera@novell.com>
5602 * metadata-verify.c (parse_type): Check generic instances.
5604 2009-06-05 Rodrigo Kumpera <rkumpera@novell.com>
5606 * metadata-verify.c (parse_type): Check array shape.
5608 2009-06-05 Robert Jordan <robertj@gmx.net>
5610 * class.c (mono_class_create_from_typedef): Check only for
5611 mscorlib's System.Array.
5613 2009-06-04 Rodrigo Kumpera <rkumpera@novell.com>
5615 * metadata-verify.c (parse_type): Check pointer, class/valuetype
5618 * metadata-verify.c (parse_field): Check the signature.
5620 2009-06-04 Rodrigo Kumpera <rkumpera@novell.com>
5622 * metadata-verify.c: Implement locals signature check.
5624 2009-06-04 Marek Safar <marek.safar@gmail.com>
5626 * domain.c: Add .NET 4.0 Beta 1 version.
5628 2009-06-04 Bill Holmes <billholmes54@gmail.com>
5630 * cominterop.c (cominterop_ccw_queryinterface): Fix for bug 499566.
5631 For QueryInterface on CCWs consider the base class
5634 Code is contributed under MIT/X11 license.
5636 2009-06-04 Zoltan Varga <vargaz@gmail.com>
5638 * wrapper-types.h: Delete STATIC_RGCTX_INVOKE.
5640 * marshal.c (mono_marshal_ret_static_rgctx_invoke): Remove, no longer
5643 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
5644 adding a static-rgctx invoke wrapper, it is done by the runtime trampolines.
5646 * generic-sharing.c (inflate_other_data): Ditto.
5648 2009-06-03 Rodrigo Kumpera <rkumpera@novell.com>
5650 * metadata-verify.c: Implement property signature check.
5652 2009-06-04 Mark Probst <mark.probst@gmail.com>
5654 * sgen-gc.h: Register saving support for PPC.
5656 2009-06-04 Mark Probst <mark.probst@gmail.com>
5658 * sgen-gc.c: Fixed a pthread TLS screwup.
5660 2009-06-04 Mark Probst <mark.probst@gmail.com>
5662 * sgen-gc.c: Do TLS using pthread API if __thread keyword is not
5665 2009-06-04 Mark Probst <mark.probst@gmail.com>
5667 * sgen-gc.c: Disable TLA and managed allocation if the __thread
5668 keyword is not supported.
5670 2009-06-04 Zoltan Varga <vargaz@gmail.com>
5672 * marshal.c metadata.c: Applied patch from Ulrich Weigand
5673 <uweigand@de.ibm.com>: Free the wrappers of inflated generic methods when
5674 the inflated method is freed. Fixes #508389.
5676 The code is contributed under the MIT/X11 license.
5678 2009-06-03 Zoltan Varga <vargaz@gmail.com>
5680 * marshal.c (get_wrapper_target_class): New helper function.
5681 (mono_marshal_get_runtime_invoke): Place runtime-invoke wrappers into
5682 the <Module> class of the image. Fixes #509049.
5684 2009-06-01 Rodrigo Kumpera <rkumpera@novell.com>
5686 * threads.c (ves_icall_System_Threading_Thread_Sleep_internal):
5687 Check if the thread was interrupted and proccess it straight away.
5688 Makes abortion much more responsive.
5690 2009-06-01 Rodrigo Kumpera <rkumpera@novell.com>
5692 * threads.c (mono_thread_execute_interruption): Use atomic cas with
5693 MonoThread::interruption_requested to match it's counterpart.
5695 Fixes a hang in abort-stress-1 on a 2 core x86.
5697 * threads.c (ves_icall_System_Threading_Thread_GetAbortExceptionState):
5700 2009-06-01 Rodrigo Kumpera <rkumpera@novell.com>
5702 Change MonoImage::name_cache to be protected by the image lock
5703 instead of the loader lock.
5705 * appdomain.c (deregister_reflection_info_roots): Protect access
5708 * class.c (mono_image_init_name_cache): Change from the loader lock
5709 to the image lock. Check if the cache wasn't already created.
5711 * class.c: Change from the loader to the image lock.
5713 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Fix
5714 the code to hold the image lock while iterating over name_cache and
5715 not go into mono_array_new holding it.
5717 * metadata-internals.h: Add a comment about this change.
5719 2009-06-01 Rodrigo Kumpera <rkumpera@novell.com>
5721 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
5722 Under the 2.0 profile raise the loader error.
5726 2009-06-01 Rodrigo Kumpera <rkumpera@novell.com>
5728 * marshal.c (mono_marshal_get_runtime_invoke): Emit the right kind
5729 of ldind opcode for generic instances so we don't fail for direct wrappers.
5730 This only affect direct calls.
5732 2009-05-31 Zoltan Varga <vargaz@gmail.com>
5734 * reflection.c (create_dynamic_mono_image): Fix warnings.
5736 * generic-sharing.c (other_info_equal): Ditto.
5738 2009-05-29 Rodrigo Kumpera <rkumpera@novell.com>
5740 * metadata-verify.c: Implement field signature check.
5742 2009-05-29 Rodrigo Kumpera <rkumpera@novell.com>
5744 * metadata-verify.c: Implement standalone signature check.
5746 2009-05-28 Rodrigo Kumpera <rkumpera@novell.com>
5748 * metadata-verify.c: Implement methodref signature check.
5750 2009-05-28 Zoltan Varga <vargaz@gmail.com>
5752 * object-internals.h (MonoRuntimeCallbacks): New structure containing
5753 callbacks supplied by the runtime.
5755 * object.c (mono_install_callbacks): New internal function to install
5758 * object.c (mono_create_ftnptr): Move the implementation of this to
5761 * object.c (mono_get_addr_from_ftnptr): Ditto.
5763 2009-05-27 Rodrigo Kumpera <rkumpera@novell.com>
5765 * metadata-verify.c (parse_return_type): Proper byref check.
5766 * metadata-verify.c (is_valid_method_signature): Check for zero arity
5767 generic signatures and method params.
5769 2009-05-27 Rodrigo Kumpera <rkumpera@novell.com>
5771 * metadata-verify.c (decode_signature_header): Fix bounds check.
5773 * metadata-verify.c (parse_custom_mods): Check custom mods.
5775 * metadata-verify.c (parse_type): Do initial basic verification
5778 * metadata-verify.c (is_valid_method_signature): Parse the generic
5781 2009-05-26 Rodrigo Kumpera <rkumpera@novell.com>
5783 * icall.c (ves_icall_Type_GetMethodsByName): Virtual methods should be
5784 discarded based on their most specific definition so we set the method_slots
5785 array before checking if the method is acceptable or not.
5789 2009-05-26 Mark Probst <mark.probst@gmail.com>
5791 * icall.c: Free the old array when resizing a mono_ptr_array.
5793 2009-05-26 Mark Probst <mark.probst@gmail.com>
5795 * reflection.c (create_dynamic_mono_image): Use mono_object_hash()
5796 for the hashes whose keys are managed objects.
5798 2009-05-26 Mark Probst <mark.probst@gmail.com>
5800 * object-internals.h, threads.c: Set the execution context on
5801 thread start here, not in corlib.
5803 * appdomain.c: Bump corlib version.
5805 2009-05-27 Martin Baulig <martin@ximian.com>
5807 * mono-debug.c (mono_debug_init): Use `MONO_DEBUG_FORMAT_DEBUGGER'
5808 if `_mono_debug_using_mono_debugger' is set to make things work
5809 properly when embedding Mono.
5811 2009-05-25 Rodrigo Kumpera <rkumpera@novell.com>
5813 * class.c (mono_class_setup_fields): Don't mark simd types as having
5814 16 bytes alignment as the whole runtime doesn't support.
5816 2009-05-25 Rodrigo Kumpera <rkumpera@novell.com>
5818 * metadata-verify.c (safe_read): Use endian safe read macros.
5820 2009-05-25 Zoltan Varga <vargaz@gmail.com>
5822 * object.c (mono_create_ftnptr): Don't allocate from the code mempool since
5823 it is read-only when using full aot.
5825 2009-05-22 Rodrigo Kumpera <rkumpera@novell.com>
5827 * metadata-verify.c (is_valid_method_signature): Verify parts
5828 of the return type. Provide an error message in case of failure.
5830 2009-05-22 Rodrigo Kumpera <rkumpera@novell.com>
5832 * metadata-verify.c (is_valid_method_signature): Verify the call conv.
5834 2009-05-22 Rodrigo Kumpera <rkumpera@novell.com>
5836 * metadata-verify.c: Include the size prefix in the bounds check.
5838 2009-05-22 Miguel de Icaza <miguel@novell.com>
5840 * icall.c: Remove warnings.
5842 * mono-config.c: Allow for CONFIG_CPU to be set in config.h and
5843 prevent auto-detection based on GCC defines.
5847 * metadata-verify.c: Do not include signal.h
5849 * generic-sharing.c, marshal.c: Add returns to avoid some warning
5850 messages. Not sure why the g_assert_not_reached is not enough to
5854 * appdomain.c: Remove code that is not used when
5855 DISABLE_SHADOW_COPY is set.
5857 * image.c: use g_getenv
5859 2009-05-21 Miguel de Icaza <miguel@novell.com>
5861 * reflection.c: Remove code that it not used with
5862 DISABLE_REFLECTION_EMIT is defined.
5864 2009-05-21 Zoltan Varga <vargaz@gmail.com>
5866 * marshal.c (mono_marshal_get_runtime_invoke): Share more runtime
5869 2009-05-20 Miguel de Icaza <miguel@novell.com>
5872 (ves_icall_System_Net_Sockets_Socket_Available_internal): Remove
5873 the ifdef here and instead put that on io-layer
5875 2009-05-19 Rodrigo Kumpera <rkumpera@novell.com>
5877 * metadata-verify.c: Verify the generic param constraint table.
5879 2009-05-19 Rodrigo Kumpera <rkumpera@novell.com>
5881 * metadata-verify.c (verify_generic_param_table): Fix
5882 thinko on the valid flags bits for generic params.
5884 2009-05-19 Rodrigo Kumpera <rkumpera@novell.com>
5886 * metadata-verify.c: Verify the methodspec table.
5888 2009-05-19 Rodrigo Kumpera <rkumpera@novell.com>
5890 * metadata-verify.c: Verify the generic param table.
5892 2009-05-19 Mark Probst <mark.probst@gmail.com>
5894 * sgen-gc.c: Store and use the count with REMSET_VTYPE.
5896 2009-05-19 Mark Probst <mark.probst@gmail.com>
5898 * sgen-gc.c: Use generation enum more consistently and use the
5899 correct generation in mono_gc_register_for_finalization().
5901 2009-05-18 Rodrigo Kumpera <rkumpera@novell.com>
5903 * metadata-verify.c: Verify the nested class table.
5905 2009-05-18 Rodrigo Kumpera <rkumpera@novell.com>
5907 * metadata-verify.c: Verify the manifest resource table.
5909 2009-05-17 Zoltan Varga <vargaz@gmail.com>
5911 * debug-helpers.c (dis_one): Add little-endian support for ldstr.
5913 2009-05-16 Zoltan Varga <vargaz@gmail.com>
5915 * class.c (mono_class_get_vtable_entry): Avoid adding static-rgctx
5916 wrappers, this is now done in the JIT.
5918 * class.c (mono_set_generic_sharing_supported): New internal function.
5919 (mono_class_generic_sharing_enabled): Move the #ifdef stuff to the JIT.
5921 2009-05-15 Rodrigo Kumpera <rkumpera@novell.com>
5923 * metadata-verify.c: Verify the exported type table.
5925 2009-05-15 Rodrigo Kumpera <rkumpera@novell.com>
5927 * pedump.c (main): Fake an assembly for netmodules to make the verifier happy.
5929 2009-05-15 Rodrigo Kumpera <rkumpera@novell.com>
5931 * metadata-verify.c: Verify the file table.
5933 2009-05-15 Rodrigo Kumpera <rkumpera@novell.com>
5935 * metadata-verify.c (verify_assembly_table): Fix an error message.
5937 * metadata-verify.c: Verify the assemblyref table.
5939 2009-05-15 Rodrigo Kumpera <rkumpera@novell.com>
5941 * metadata-verify.c (verify_assembly_table): Fix the valid
5942 bits mask for flags.
5944 2009-05-15 Zoltan Varga <vargaz@gmail.com>
5946 * debug-helpers.c (mono_method_full_name): Print generic parameters of
5947 generic methods as well.
5949 2009-05-15 Geoff Norton <gnorton@novell.com>
5951 * gc.c: MachO/Darwin supports and uses semaphores fine for this
5952 use-case and is significantly more performant than the wapi layer.
5954 2009-05-13 Rodrigo Kumpera <rkumpera@novell.com>
5956 * metadata-verify.c: Verify the assembly table.
5958 2009-05-13 Rodrigo Kumpera <rkumpera@novell.com>
5960 * metadata-verify.c: Fix rows limit check.
5962 2009-05-13 Rodrigo Kumpera <rkumpera@novell.com>
5964 * metadata-verify.c: Verify the fieldrva table.
5966 2009-05-13 Mark Probst <mark.probst@gmail.com>
5968 * sgen.c: Speed up weak links and finalizers by grouping them by
5971 2009-05-13 Mark Probst <mark.probst@gmail.com>
5973 * marshal.c (delegate_hash_table_add): When overwriting an entry,
5974 free the old GCHandle (only applies to SGen).
5976 2009-05-13 Zoltan Varga <vargaz@gmail.com>
5978 * loader.c (mono_get_method_from_token): Avoid the expensive call to
5979 mono_metadata_load_generic_params () for non-generic methods.
5981 2009-05-12 Mark Probst <mark.probst@gmail.com>
5983 * monitor.c, monitor.h (mono_monitor_get_object_monitor_weak_link):
5984 New function for returning a monitor's weak link if it has one.
5986 * sgen-gc.c: Remove an object's monitor's weak link (if it has
5987 one) when clearing a domain. These can still be around because
5988 the object might not have been collected.
5990 2009-05-12 Zoltan Varga <vargaz@gmail.com>
5992 * gc.c: Fix a warning.
5994 2009-05-12 Kornél Pál <kornelpal@gmail.com>
5996 * gc.c (mono_gc_init): Set gc_thread on creation. This avoids the
5997 prevous wait that resulted in a deadlock on Windows when initializing
5998 the runtime form DllMain. Also results in improved startup time.
5999 (finalizer_thread): Get rid of thread_started_event.
6000 * threads.c, threads-types.h (mono_thread_create_internal): Return the
6001 resulting MonoThread.
6003 Contributed under MIT/X11 license.
6005 2009-05-11 Rodrigo Kumpera <rkumpera@novell.com>
6007 * metadata-verify.c: Verify the implmap table.
6008 Don't require that #US and #Strings be present.
6010 2009-05-11 Sebastien Pouliot <sebastien@ximian.com>
6012 * security-core-clr.c: Delegate checks are done at creation time,
6013 not a invocation time. Fix exception for Telerik Silverlight demo
6015 2009-05-11 Mark Probst <mark.probst@gmail.com>
6017 * sgen-gc.c (need_remove_object_for_domain): Remove the special
6018 case for the Thread class.
6020 * threads.c: Do clean-up of abort exception/state in
6021 thread_cleanup() instead of Thread.free_internal(). Also clean up
6022 current_appcontext. The reason we have to do that is because
6023 those references might point into another domain and if that
6024 domain is unloaded before the thread is finalized, they point to
6027 2009-05-10 Andreas Faerber <andreas.faerber@web.de>
6029 * null-gc.c (mono_gc_weak_link_add, mono_gc_clear_domain): Fix
6032 Contributed unter MIT/X11 license.
6034 2009-05-09 Miguel de Icaza <miguel@novell.com>
6036 * verify.c, metadata-verifier.c: Add support for disabling the
6037 verifier in some builds.
6039 [ Sorry, my previous commit accidentally commited some work in
6042 2009-05-08 Zoltan Varga <vargaz@gmail.com>
6044 * class.c (mono_class_setup_fields): Set class->field.first for
6047 2009-05-07 Rodrigo Kumpera <rkumpera@novell.com>
6049 * metadata-verify.c: Verify the typespec table.
6051 2009-05-07 Rodrigo Kumpera <rkumpera@novell.com>
6053 * metadata-verify.c: Verify the module table.
6055 2009-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6057 * metadata-verify.c: Verify the methodimpl table.
6059 2009-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6061 * metadata-verify.c: Verify the property table.
6063 2009-05-06 Zoltan Varga <vargaz@gmail.com>
6065 * debug-helpers.c (mono_method_desc_match): Add support for generic
6068 2009-05-05 Rodrigo Kumpera <rkumpera@novell.com>
6070 * metadata-verify.c: Verify the propertymap table.
6072 2009-05-04 Rodrigo Kumpera <rkumpera@novell.com>
6074 * metadata-verify.c: Verify the event table.
6076 * metadata-verify.c (search_sorted_table): Fix offset
6079 2009-05-02 Zoltan Varga <vargaz@gmail.com>
6081 * domain-internals.h (struct _MonoJitInfo): Add a 'from_llvm' flag.
6083 2009-05-01 Mark Probst <mark.probst@gmail.com>
6085 * gc.c (mono_gc_run_finalize): Don't set the domain too late,
6086 because mono_delegate_free_ftnptr() needs it.
6088 2009-04-30 Rodrigo Kumpera <rkumpera@novell.com>
6090 * metadata-verify.c: Verify the eventmap table.
6092 2009-04-30 Rodrigo Kumpera <rkumpera@novell.com>
6094 * metadata-verify.c: Verify the standalonesig table.
6096 2009-04-30 Rodrigo Kumpera <rkumpera@novell.com>
6098 * metadata-verify.c: Verify the field layout table.
6100 2009-04-30 Rodrigo Kumpera <rkumpera@novell.com>
6102 * class.c (mono_type_get_name_recurse): Don't crash
6103 for ownerless generic params.
6105 * debug-helpers.c (mono_type_get_desc): Correct the format
6106 for ownerless generic params.
6108 2009-04-30 Rodrigo Kumpera <rkumpera@novell.com>
6110 * metadata-verify.c: Verify the class layout table.
6112 2009-04-30 Rodrigo Kumpera <rkumpera@novell.com>
6114 * metadata-verify.c: Verify the decl security table.
6116 2009-04-30 Mark Probst <mark.probst@gmail.com>
6118 * domain.c (mono_domain_set_internal_with_options): Don't do
6119 anything if the old domain is the same as the old one. Fixes
6122 2009-04-30 Mark Probst <mark.probst@gmail.com>
6124 * appdomain.c: Deregister the reflection_info roots when unloading
6127 * sgen-gc.c, domain.c, gc-internal.h: mono_gc_clear_domain() nulls
6128 memory allocated by a domain and frees its disappearing links.
6130 * boehm-gc.c, null-gc.c: Empty implementation of
6131 mono_gc_clear_domain().
6133 2009-04-30 Mark Probst <mark.probst@gmail.com>
6135 * appdomain.c (clear_cached_vtable): Free the static fields memory
6138 2009-04-30 Mark Probst <mark.probst@gmail.com>
6140 * gc.c: Set the correct domain when invoking finalizers.
6142 * appdomain.c: Set the correct domain when creating threads.
6144 2009-04-30 Mark Probst <mark.probst@gmail.com>
6146 * sgen-gc.c: Fix skip size for vectors.
6148 2009-05-03 Martin Baulig <martin@ximian.com>
6150 * mono-debug-debugger.c
6151 (mono_debugger_check_breakpoints): Check class init handlers even
6152 if we don't have any method load handers.
6154 2009-04-30 Zoltan Varga <vargaz@gmail.com>
6156 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid
6157 returning refonly assemblies if refonly is FALSE. Fixes #499013.
6159 2009-04-29 Rodrigo Kumpera <rkumpera@novell.com>
6161 * metadata-verify.c: Verify the field marshal table.
6163 2009-04-29 Rodrigo Kumpera <rkumpera@novell.com>
6165 * metadata-verify.c: Verify the custom attribute table.
6167 2009-04-28 Rodrigo Kumpera <rkumpera@novell.com>
6169 * metadata-verify.c: Verify the constant table.
6171 2009-04-28 Rodrigo Kumpera <rkumpera@novell.com>
6173 * metadata-verify.c: Verify the memberef table.
6175 2009-04-28 Rodrigo Kumpera <rkumpera@novell.com>
6177 * metadata-verify.c (get_coded_index_token): Remove
6180 2009-04-28 Rodrigo Kumpera <rkumpera@novell.com>
6182 * metadata-verify.c: Verify the interfaceimpl table.
6184 2009-04-28 Rodrigo Kumpera <rkumpera@novell.com>
6186 * verify.c: Improve error message.
6188 * debug-helpers.c (mono_type_get_desc): Harden the code that
6189 deals with VAR and MVAR.
6191 2009-04-28 Zoltan Varga <vargaz@gmail.com>
6193 * image.c (mono_image_fixup_vtable): Avoid casting an lvalue. Fixes
6196 2009-04-23 Tom Hindle <tom_hindle@sil.org>
6198 * cominterop.c (ves_icall_System_Runtime_InteropServices_Marshal_ReleaseComObjectInternal):
6199 changed to match .Net behaviour of not aborting on additional calls to ReleaseComObject.
6201 2009-04-28 Sebastien Pouliot <sebastien@ximian.com>
6203 * security-core-clr.c: Avoid redundant checks for platform code,
6204 e.g. check for method and for class (very common) and check
6205 for class and outer class (less common)...
6207 2009-04-27 Zoltan Varga <vargaz@gmail.com>
6209 * reflection.c: Avoid returning random cattrs for synthetic methods.
6212 2009-04-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6214 * assembly.c: assemblies in the GAC should never be shadow-copied.
6216 2009-04-26 Mark Probst <mark.probst@gmail.com>
6218 * domain.c, domain-internals.h: Disable
6219 track_resurrection_{objects,handles}_hash in MonoDomain if using
6222 2009-04-24 Rodrigo Kumpera <rkumpera@novell.com>
6224 * metadata-verify.c: Verify the param table.
6226 2009-04-24 Rodrigo Kumpera <rkumpera@novell.com>
6228 * metadata-verify.c (verify_typedef_table): Range check FieldList and
6231 * metadata-verify.c (verify_method_table): Proper check the ParamList
6234 2009-04-24 Rodrigo Kumpera <rkumpera@novell.com>
6236 * metadata-verify.c (verify_method_table): Check for runtime
6237 implemented functions such as delegate .ctors. Remove spurious
6240 2009-04-24 Rodrigo Kumpera <rkumpera@novell.com>
6242 * pedump.c: Proper initialize the runtime forcing the 2.0 profile.
6244 2009-04-24 Raja R Harinath <harinath@hurrynot.org>
6246 Don't allocate MonoGenericInfo for ownerless generic params.
6247 * class-internals.h (MonoGenericParam::info): Move field to ...
6248 (MonoGenericParamFull): ... this. New struct.
6249 (MonoGenericContainer::type_params): Change type to
6250 MonoGenericParamFull.
6251 (MonoGenericParam, MonoGenericContainer): Update accessors.
6252 * metadata.c (mono_metadata_parse_generic_param): Don't initialize
6253 'info' field for ownerless generic param.
6254 (mono_metadata_load_generic_params): Update to changes.
6255 * reflection.c (mono_reflection_create_generic_class): Likewise.
6256 (reflection_methodbuilder_to_mono_method): Likewise.
6257 (mono_reflection_initialize_generic_parameter): Likewise.
6259 2009-04-24 Raja R Harinath <harinath@hurrynot.org>
6261 Don't use MonoGenericParamInfo for ownerless generic params.
6262 * class.c (get_anon_gparam_class, set_anon_gparam_class): New. Don't
6263 use ParamInfo class at all.
6264 (mono_class_from_generic_parameter): Use them.
6265 (make_generic_param_class): Fix a couple of instances where 'pinfo
6266 == NULL' wasn't handle.
6268 2009-04-24 Raja R Harinath <harinath@hurrynot.org>
6270 * class.c (make_generic_param_class): Carve out of ...
6271 (mono_class_from_generic_parameter): ... here.
6273 2009-04-24 Raja R Harinath <harinath@hurrynot.org>
6275 Simplify mono_class_from_generic_parameter
6276 * class-internals.h (MonoGenericParamInfo::token): New field.
6277 * metadata.c (mono_metadata_load_generic_params): Initialize it
6279 * class.c (mono_class_from_generic_parameter): Use it instead of
6280 searching through metadata.
6282 2009-04-23 Rodrigo Kumpera <rkumpera@novell.com>
6284 * metadata-verify.c: Add verification of the method table.
6286 2009-04-23 Rodrigo Kumpera <rkumpera@novell.com>
6288 * icall.c (ves_icall_Type_GetMethodsByName): Fix memleak for the
6289 Delegate::Invoke optimization.
6291 2009-04-23 Rodrigo Kumpera <rkumpera@novell.com>
6293 * appdomain.c (mono_domain_create_appdomain_internal): Free the
6294 string returned by get_shadow_assembly_location_base.
6296 * appdomain.c (get_shadow_assembly_location_base): Add a comment
6297 about caller's ownership.
6299 2009-04-23 Rodrigo Kumpera <rkumpera@novell.com>
6301 * reflection.c: Add mono_reflection_cleanup_domain to cleanup
6302 reflection memory on domain unload.
6304 * domain.c (mono_domain_free): Don't free refobject_hash, let the
6305 reflection cleanup code do it.
6307 * domain-internals.h: Add mono_reflection_cleanup_domain.
6309 This fixes a memory leak for managed mirrors of reflection objects
6312 2009-04-22 Rodrigo Kumpera <rkumpera@novell.com>
6314 * metadata-verify.c: Implement more verification of the field table.
6316 2009-04-22 Rodrigo Kumpera <rkumpera@novell.com>
6318 * pedump.c (main): Init mono with mscorlib so it defaults to 2.0 and
6319 doesn't try to parse the input assembly, which can be broken.
6321 2009-04-23 Mark Probst <mark.probst@gmail.com>
6323 * boehm-gc.c, gc-internal.h, gc.c, monitor.c, null-gc.c,
6324 sgen-gc.c: Implement track resurrection in weak GC handles in SGen
6325 by using the lowest bit in the link to store whether the link is
6326 tracked. Move the track_resurrection hashes into boehm-gc.c.
6328 2009-04-22 Miguel de Icaza <miguel@novell.com>
6330 * Makefile.am: Split the console support in platform specific code
6331 and put together a framework for making this easy in the future so
6332 that we can start splitting code instead of having a mess of PLATFORM_WIN32
6334 2009-04-21 Rodrigo Kumpera <rkumpera@novell.com>
6336 * pedump.c: Fix a warning.
6338 2009-04-21 Rodrigo Kumpera <rkumpera@novell.com>
6340 * verify.c (mono_delegate_type_equal): Compare valuetypes using
6341 mono_class_from_mono_type to avoid bad interactions with the dual representation
6342 of the generic type definition.
6344 2009-04-21 Rodrigo Kumpera <rkumpera@novell.com>
6346 * verify.c (do_invoke_method): Use mono_class_from_mono_type to
6347 get the MonoClass for the call context type as it might be a generic
6352 2009-04-21 Mark Probst <mark.probst@gmail.com>
6354 * object-internals.h: The Thread object has no execution_context
6357 * threads.c, threadpool.c, threads-types.h: Accessor functions for
6358 the execution context.
6360 * appdomain.c: Bump corlib version.
6362 2009-04-20 Rodrigo Kumpera <rkumpera@novell.com>
6364 * verify.c (do_newobj): Improve error message.
6366 2009-04-20 Rodrigo Kumpera <rkumpera@novell.com>
6368 * verify.c (verify_clause_relationship): Only mask as an error if the exception clause
6369 is nested in the filter block.
6371 * verify.c (verify_clause_relationship): The disjoint check must verify if the exception
6372 block is not fully nested.
6376 2009-04-20 Rodrigo Kumpera <rkumpera@novell.com>
6378 * verify.c (verify_type_compatibility_full): Compare MonoClass and
6379 not MonoType to check for equality of valuetypes as the generic type
6380 definition allows for two different encodings: the generic type definition
6381 class or a generic instance over the GTD arguments.
6385 2009-04-20 Rodrigo Kumpera <rkumpera@novell.com>
6387 * verify.c (dump_stack_value): Fix compilation with extra debug turned on.
6389 * verify.c (do_initobj): Improve error message.
6391 2009-04-20 Rodrigo Kumpera <rkumpera@novell.com>
6393 * metadata-verify.c: Enable pe verification as the issue with #496453
6394 is that the authenticode data directory have a different unspecified
6395 format. Ignore it for now.
6397 * pedump.c: Run the metadata verifier together with the IL verifier.
6401 2009-04-20 Rolf Bjarne Kvinge <RKvinge@novell.com>
6403 * metadata-verify.c: Temporarily disable pe verification due to #496453.
6405 2009-04-17 Rodrigo Kumpera <rkumpera@novell.com>
6407 * class.c (can_access_type): Check visibility against
6408 the element type for pointers and arrays.
6412 2009-04-17 Rodrigo Kumpera <rkumpera@novell.com>
6414 * metadata-verify.c: Fix cli and table verification to use information
6415 from the MonoImage. A lot of duplicated code got killed.
6417 2009-04-17 Rodrigo Kumpera <rkumpera@novell.com>
6420 This patch starts to integrate the metadata verifier with the runtime code.
6422 This patch causes major regression in functionality for the metadata verifier
6423 as cli and table verification are disabled since they require to be ported to
6424 use MonoImage information.
6426 * image.c (do_mono_image_load): Split the code in this function
6427 into mono_image_load_pe_data and mono_image_load_cli_data.
6428 Add care_about_pecoff parameter to not load pecoff data.
6429 Call into the metadata verifier for pecoff and cli verification.
6431 * image.c (mono_image_open_raw): New function that doesn't perform
6432 any parsing of the image contents.
6434 The reason for the 3 new functions is to give pedump better control
6435 into the interaction with the verifier.
6437 * metadata-internals.h: Add new functions from image.c as part of the
6440 * metadata-verify.c: Split mono_image_verify into mono_verifier_verify_pe_data,
6441 mono_verifier_verify_cli_data and mono_verifier_verify_table_data. Prepare
6442 to make those functions work together with the runtime.
6444 * verify.c: Add mono_verifier_is_enabled_for_image function that returns
6445 true if the image needs to be verified.
6447 * verify-internals.h: Export new functions from metadata-verify.c and verify.c.
6449 * pedump.c: Use new metadata verifier API.
6451 2009-04-19 Zoltan Varga <vargaz@gmail.com>
6453 * object.c (mono_install_vtable_trampoline): Make this receive a
6454 trampoline creation function instead of trampoline, allowing the JIT
6455 to use a different trampoline for each vtable.
6457 2009-04-18 Mark Probst <mark.probst@gmail.com>
6459 * object.c (mono_raise_exception): Don't reset the thread abort
6460 exception state here.
6462 2009-04-18 Mark Probst <mark.probst@gmail.com>
6464 * icall-def.h: New icall for getting the thread abort exception
6467 * object.c, thread.c, object-internals.h: A thread's abort
6468 exception state is now a GC handle. To get the object it stands
6469 for, we must move it into the current app domain, if it's
6470 different than the one where it originated from.
6472 * appdomain.c: Bump corlib version.
6474 * domain.c, domain-internals.h: New function for setting the
6475 domain and migrate the thread abort exception or not.
6477 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6479 * metadata-verify.c: Add initial verification of the
6482 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6484 * metadata-verify.c: Add a macro to conditionally enable
6485 dumping of verification information. Add make_coded_token
6486 and search_sorted_table to enable search sorted tables
6487 by a given coded token.
6489 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6491 * metadata-verify.c: Add array mapping from table index
6492 to description offset. Add get_col_offset and get_col_size
6495 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6497 * metadata-verify.c: Add remaining table descriptions offsets.
6498 Add remaining coded index descriptions.
6500 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6502 * metadata-verify.c: Fixed constant table description.
6503 Fixed calculation of HasCustomAttribute coded index size.
6504 Fixed calculation of size for many table indexes.
6506 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6508 * pedump.c (dump_metadata): Dump table offset instead
6509 of useless pointer in memory.
6511 2009-04-16 Rodrigo Kumpera <rkumpera@novell.com>
6513 * metadata-verify.c (verify_typedef_table): Add tests for MethodList.
6515 2009-04-15 Rodrigo Kumpera <rkumpera@novell.com>
6517 * metadata-verify.c (verify_typedef_table): Add tests for FieldList and
6518 a missing of for interface types.
6520 2009-04-15 Rodrigo Kumpera <rkumpera@novell.com>
6522 * metadata-verify.c (verify_pe_optional_header): Add comment of why
6523 the code is commented.
6525 * metadata-verify.c (verify_resources_table): Remove spurious printf
6526 and don't fail if there are unmanaged resources. Gmcs generates a useless
6527 one for all assemblies - I bet it's some MS compatibility junk.
6529 2009-04-15 Rodrigo Kumpera <rkumpera@novell.com>
6531 * metadata-verify.c (verify_typedef_table): Verify the extends field.
6533 * metadata-verify.c (mono_image_verify): Add a is_corlib.
6535 * verify-internals.h: Same.
6537 * pedump.c: Fix for mono_image_verify new signature.
6539 2009-04-15 Rodrigo Kumpera <rkumpera@novell.com>
6541 * metadata-verify.c (verify_typedef_table): Verify for some invalid
6544 2009-04-15 Rodrigo Kumpera <rkumpera@novell.com>
6546 * metadata-verify.c (verify_module_table): Ignore the generation field.
6548 2009-04-15 Martin Baulig <martin@ximian.com>
6550 * debug-mono-symfile.c
6551 (mono_debug_symfile_lookup_location): Don't print a warning for
6552 unknown extended opcodes if they're within 0x40 and 0x7f.
6554 2009-04-15 Zoltan Varga <vargaz@gmail.com>
6556 * marshal.c (mono_marshal_get_runtime_invoke_sig): Don't share runtime
6557 invoke signatures returning an enum. Fixes #494847.
6559 2009-04-14 Rodrigo Kumpera <rkumpera@novell.com>
6561 * metadata-verify.c: Initial code to verify the typedef table.
6563 2009-04-14 Rodrigo Kumpera <rkumpera@novell.com>
6565 * verify.c (mono_method_verify): Don't fail if an unconditional branch
6566 with non empty stack happens before the beginning of a try block.
6570 2009-04-14 Rodrigo Kumpera <rkumpera@novell.com>
6572 * metadata-verify.c: Verify typename and typenamespace fields of
6575 2009-04-13 Rodrigo Kumpera <rkumpera@novell.com>
6577 * metadata-verify.c: Initial code to verify the typeref table.
6579 2009-04-13 Rodrigo Kumpera <rkumpera@novell.com>
6581 * verify.c (verify_delegate_compatibility): Fix error message.
6583 2009-04-14 Sebastien Pouliot <sebastien@ximian.com>
6585 * security-core-clr.c: Fix typo
6587 2009-04-14 Zoltan Varga <vargaz@gmail.com>
6589 * marshal.c (delegate_hash_table_add): Make delegate_target_locations
6590 a MonoGHashTable to keep its values alive.
6591 (emit_marshal_boolean): Fix a warning.
6593 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6595 * socket-io.c: don't return IPv4/IPv6 addresses if the machine does
6596 not have any interface configured for IPv4/IPv6.
6598 2009-04-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
6600 * assembly.c: fix typo in error message.
6602 2009-04-14 Zoltan Varga <vargaz@gmail.com>
6604 * marshal.c (mono_delegate_to_ftnptr): Use mono_gc_alloc_fixed () for
6605 allocating the location holding the this argument to prevent
6606 'too many root sets' errors.
6608 * object.c (mono_class_create_runtime_vtable): Set field->offset to -1
6609 to mark fields as special static.
6610 (mono_field_static_get_value): Handle special static fields.
6611 (mono_field_static_set_value): Ditto.
6613 * class-internals.h (struct _MonoClassField): Document this.
6615 2009-04-13 Bill Holmes <billholmes54@gmail.com>
6617 * cominterop.c (mono_cominterop_emit_marshal_com_interface): Assigning
6618 the argument a value of null for the MARSHAL_ACTION_MANAGED_CONV_OUT
6619 case. This will handle when managed code returns null to native code.
6621 Code is contributed under MIT/X11 license.
6623 2009-04-13 Bill Holmes <billholmes54@gmail.com>
6625 * object.c (build_imt_slots): Changing a free to a g_free to match
6626 the g_malloc0 in add_imt_builder_entry that allocated this memory.
6628 Code is contributed under MIT/X11 license.
6630 2009-04-13 Bill Holmes <billholmes54@gmail.com>
6632 * marshal.c (emit_marshal_boolean): Adding code to ensure that
6633 the correct TRUE value is passed through the marshaling layer.
6635 Code is contributed under MIT/X11 license.
6637 2009-04-13 Zoltan Varga <vargaz@gmail.com>
6639 * marshal.c (mono_marshal_emit_managed_wrapper): Handle closed delegates
6640 correctly. Fixes #492330.
6642 * marshal.c: Fix the embedding of object pointers into JITted code in
6643 the native-to-managed wrappers by allocating some GC tracked memory, and
6644 embedding the address of that.
6646 2009-04-11 Zoltan Varga <vargaz@gmail.com>
6648 * object.c (mono_class_create_runtime_vtable): Avoid putting MonoMethod
6649 pointers into the vtable.
6651 2009-04-09 Rodrigo Kumpera <rkumpera@novell.com>
6653 * verify.c (mono_delegate_type_equal): Proper check MONO_TYPE_CLASS.
6655 * verify.c (verify_ldftn_delegate): Improve error message.
6657 2009-04-09 Raja R Harinath <harinath@hurrynot.org>
6659 * reflection.c (my_mono_class_from_mono_type): Remove.
6661 2009-04-09 Raja R Harinath <harinath@hurrynot.org>
6663 Prepare to reduce memory usage of owner-less generic parameters (1/n)
6664 * class-internals.h (MonoGenericParam): Carve out pklass, name, flags
6665 and constraints fields into ...
6666 (MonoGenericParamInfo): ... this.
6667 (mono_generic_param_info, mono_generic_container_get_param_info):
6669 * class.c, debug-helpers.c, icall.c: Update to changes.
6670 * metadata.c, reflection.c, verify.c: Likewise.
6672 2009-04-09 Zoltan Varga <vargaz@gmail.com>
6674 * debug-helpers.c (dis_one): Fix decoding of strings in dynamic images.
6676 * marshal.c (get_runtime_invoke_type): Share enums with their base types.
6678 * marshal.c (get_runtime_invoke_type): Share pointers with ints and
6679 booleans with sbytes.
6681 2009-04-08 Rodrigo Kumpera <rkumpera@novell.com>
6683 * class.c (can_access_instantiation): Verify accesibility of element types
6684 for arrays and pointers.
6686 * class.c (can_access_type): Return true if the target class is VAR or MVAR.
6688 * class.c (mono_method_can_access_method_full): Fix typos in the documentation.
6692 2009-04-08 Rodrigo Kumpera <rkumpera@novell.com>
6694 * verify.c (do_invoke_method): Improve error messages.
6696 2009-04-08 Bill Holmes <billholmes54@gmail.com>
6698 * verify.c: Fixing the MSVC build.
6700 Code is contributed under MIT/X11 license.
6702 2009-04-08 Sebastien Pouliot <sebastien@ximian.com>
6704 * security-core-clr.c: Simplify get_reflection_caller not to call
6705 mono_method_get_last_managed (another stack walk) and adjust the
6706 callers to handle a (should not happen) NULL return value.
6708 2009-04-08 Raja R Harinath <harinath@hurrynot.org>
6710 Add accessors to some MonoGenericParam fields
6711 * class-internals.h (mono_generic_param_owner): New accessor.
6712 (mono_generic_param_num): Likewise.
6713 (mono_type_get_generic_param_owner): New helper.
6714 (mono_type_get_generic_param_num): New helper.
6715 * class.c, icall.c, metadata.c, reflection.c, verify.c: Use them.
6717 2009-04-08 Raja R Harinath <harinath@hurrynot.org>
6719 * class-internals.h (mono_generic_container_get_param): New wrapper.
6720 * class.c, icall.c, metadata.c, verify.c: Use it.
6722 2009-04-08 Raja R Harinath <harinath@hurrynot.org>
6725 * verify.c (mono_type_is_valid_type_in_context): Rewrite to use
6726 the standard case/loop. In particular, don't complain about
6727 references to generic type definitions.
6729 2009-04-07 Zoltan Varga <vargaz@gmail.com>
6731 * debug-helpers.c (dis_one): Decode string arguments.
6733 2009-04-07 Rodrigo Kumpera <rkumpera@novell.com>
6735 * pedump.c (dump_verify_info): Dump type name correctly.
6737 2009-04-07 Rodrigo Kumpera <rkumpera@novell.com>
6739 * verify.c (mono_method_verify): Don't init code slots for exception boundaries if they
6740 are larger than code size.
6742 This can happen in valid code if the try/catch block is not followed by any instruction
6743 and do a backward branch on the leave instruction.
6747 2009-04-06 Sebastien Pouliot <sebastien@ximian.com>
6749 * security-core-clr.c: Fix typo while comparing second method names
6750 in can_avoid_corlib_reflection_delegate_optimization
6752 2009-04-06 Rodrigo Kumpera <rkumpera@novell.com>
6754 * verify.c (do_throw): Don't allow an unboxed generic param ar argument.
6758 2009-04-06 Rodrigo Kumpera <rkumpera@novell.com>
6760 * metadata.c (do_mono_metadata_parse_type): Fail if we are decoding
6761 a MVAR using a class context.
6765 2009-04-06 Zoltan Varga <vargaz@gmail.com>
6767 * object.c (mono_class_compute_gc_descriptor): Make this non-static.
6769 * domain-internals.h (struct _MonoJitInfo): Add a 'gc_info' field.
6771 * gc-internal.h (MonoGCCallbacks): New stucture containing the callback
6772 functions supplied by the JIT for the SGEN GC.
6774 * sgen-gc.c: Call the callbacks supplied by the JIT to do stack marking.
6776 2009-04-06 Massimiliano Mantione <massi@ximian.com>
6778 monitor.c (mono_monitor_try_enter_internal):
6779 Added calls to profile monitor contentions.
6780 Also duplicated a small piece of code (the "get the monitor" logic)
6781 from the fast path to the slow path, and changed the relevant goto
6782 statements, so that monitor acquisition events can be emitted from the
6783 slow path (this is by Paolo Molaro).
6785 2009-04-06 Massimiliano Mantione <massi@ximian.com>
6787 * profiler.c, profiler.h, profiler-private.h:
6788 Added support for profiling monitor contentions.
6790 2009-04-03 Rodrigo Kumpera <rkumpera@novell.com>
6792 * metadata-verify.c: Verify the modules table.
6794 2009-04-02 Rodrigo Kumpera <rkumpera@novell.com>
6796 * verify.c (mono_generic_param_is_constraint_compatible): Inflate the candidate
6797 using the context of the method been verifier and not of the method been called.
6799 * verify.c: Add verifier_inflate_type and mono_type_is_valid_type_in_context to
6800 safely inflate generic types.
6802 2009-04-02 Sebastien Pouliot <sebastien@ximian.com>
6804 * security-core-clr.c: Change the strategy for checking the
6805 "reflection using delegates optimization" to avoid unneeded
6806 attributes in multiple class libraries.
6808 2009-04-02 Mark Probst <mark.probst@gmail.com>
6810 * sgen-gc.c: Remove object element in the disappearing link struct
6811 by storing the object pointer in the link.
6813 2009-03-31 Rodrigo Kumpera <rkumpera@novell.com>
6815 * pedump.c (dump_verify_info): Don't crash if signature decoding fails.
6817 2009-03-31 Rodrigo Kumpera <rkumpera@novell.com>
6819 * verify.c (verifier_load_field): Fail if the field parent could not be loaded.
6821 * verify.c (mono_method_verify): Do proper bounds checking of exception
6824 2009-03-31 Rodrigo Kumpera <rkumpera@novell.com>
6826 * loader.c (mono_field_from_token): Don't crash if the field parent could
6829 2009-03-31 Mark Probst <mark.probst@gmail.com>
6831 * sgen-gc.c: Execute critical finalizers after ordinary
6834 * class-internals.h, domain.c: Add CriticalFinalizerObject to
6837 2009-03-31 Jb Evain <jbevain@novell.com>
6839 * verify.c (do_ldstr): don't check if a string is in the user strings
6840 heap if the current image is dynamic.
6842 2009-03-31 Mark Probst <mark.probst@gmail.com>
6844 * sgen-gc.c: Wait until the last finalizer has executed when
6845 returning from WaitForPendingFinalizers.
6847 2009-03-31 Martin Baulig <martin@ximian.com>
6849 * mono-debug-debugger.h (MonoDebuggerEvent): Add
6850 `MONO_DEBUGGER_EVENT_CREATE_APPDOMAIN' and
6851 `MONO_DEBUGGER_EVENT_UNLOAD_APPDOMAIN'.
6852 (mono_debugger_event_create_appdomain): New function.
6853 (mono_debugger_event_unload_appdomain): New function.
6855 * appdomain.c (mono_domain_create_appdomain_internal): Call
6856 mono_debugger_event_create_appdomain().
6858 2009-03-31 Martin Baulig <martin@ximian.com>
6860 * mono-debug-debugger.c
6861 (mono_debugger_register_class_init_callback): Also register the
6862 class init callback if the class is already initialized to make
6863 things work with shadow copied assemblies.
6865 2009-03-31 Sebastien Pouliot <sebastien@ximian.com>
6867 * security-core-clr.c
6868 (mono_security_core_clr_ensure_reflection_access_field): Let
6869 critical code access the field (just like we do for methods). Use
6870 check_field_access helper.
6871 (mono_security_core_clr_ensure_reflection_access_method): Use
6872 check_field_access helper.
6874 2009-03-31 Mark Probst <mark.probst@gmail.com>
6876 * sgen-gc.c: Remove data (callback) element from FinalizeEntry and
6877 call the run-finalize function directly.
6879 * gc.c, gc-internal.h: Make run_finalize() non-static.
6881 2009-03-31 Mark Probst <mark.probst@gmail.com>
6883 * sgen-gc.c: Use a separate struct for disappearing links.
6885 2009-03-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
6887 * socket-io.c: don't fail if the SocketOptionsFlag has Partial or
6888 * MaxIOVectorLength enabled, just ignore them.
6891 2009-03-30 Rodrigo Kumpera <rkumpera@novell.com>
6893 * metadata-verify.c: Fix eglib build.
6895 2009-03-30 Zoltan Varga <vargaz@gmail.com>
6897 * threads-types.h: Fix the win32 build.
6899 2009-03-28 Sebastien Pouliot <sebastien@ximian.com>
6901 * class.c: move coreclr inheritance/override checks to
6903 * security-core.clr.c|h: add code from class.c with additional
6904 documentation. Fix override check when the method is not critical.
6906 2009-03-28 Zoltan Varga <vargaz@gmail.com>
6908 * debug-helpers.c (mono_method_desc_match): Make '*' match anything.
6909 (match_class): Ditto.
6911 2009-03-27 Rodrigo Kumpera <rkumpera@novell.com>
6913 * metadata-verify.c: Rename bounds_check_offset to bounds_check_datadir.
6915 * metadata-verify.c: Implement table layout row size calculation. Verify
6916 the total size of the tables.
6918 2009-03-27 Rodrigo Kumpera <rkumpera@novell.com>
6920 * metadata-verify.c: Verify heap sizes and size to decode row counts.
6922 2009-03-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
6925 * console-io.[ch]: added new mono_console_init() to make sure that
6926 file descriptors 0, 1 and 2 are opened.
6929 2009-03-27 Sebastien Pouliot <sebastien@ximian.com>
6931 * appdomain.h: Export a new callback type and a new function to
6932 set this callback. This allow a mono host to provide it's own
6933 definition for "platform code".
6934 * metadata-internals.h: Add a core_clr_platform_code flag on
6935 _MonoImage to (cache and) know if it is representing platform
6937 * image.c (do_mono_image_open): Set core_clr_platform_code flag
6938 on platform code images.
6939 * security-core-clr.c|h
6940 (mono_security_set_core_clr_platform_callback): Allow the host
6941 to provide it's own platform check definition.
6942 (mono_security_core_clr_determine_platform_image): Detect if an
6943 image is platform code (using the specified callback).
6944 (mono_security_core_clr_is_platform_image): Return cached value
6947 2009-03-27 Zoltan Varga <vargaz@gmail.com>
6949 * threads.c (mono_create_thread): New helper function to wrap CreateThread
6950 which has different parameter types for the 'tid' argument in windows and
6953 * appdomain.c attach.c threads.c: Use the new helper.
6955 2009-03-26 Rodrigo Kumpera <rkumpera@novell.com>
6957 * metadata-verify.c: Verify valid table bits.
6959 2009-03-26 Rodrigo Kumpera <rkumpera@novell.com>
6961 * metadata-verify.c (verify_metadata_header): Store size in the size field.
6963 * metadata-verify.c: Add initial table schema verification.
6965 2009-03-26 Zoltan Varga <vargaz@gmail.com>
6967 * icall.c (ves_icall_get_parameter_info): Add a 'member' argument, used to
6968 obtain the refclass argument needed by mono_param_get_objects (). Fixes
6971 * reflection.c (mono_param_get_objects_internal): Add a 'refclass' argument.
6973 * appdomain.c (MONO_CORLIB_VERSION): Bump this.
6975 2009-03-26 Sebastien Pouliot <sebastien@ximian.com>
6977 * security-core-clr.c: Add/update documentation
6979 2009-03-26 Zoltan Varga <vargaz@gmail.com>
6981 * marshal.c (emit_marshal_object): Generate code to throw an exception
6982 instead of throwing it. Fixes #488670.
6984 2009-03-25 Sebastien Pouliot <sebastien@ximian.com>
6986 * appdomain.c: Bump MONO_CORLIB_VERSION to 73.
6987 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Add
6988 an extra 'throwOnBindFailure' parameter to the icall. Remove FIXME
6989 and add a call to mono_security_core_clr_ensure_delegate_creation
6990 to do the extra checks required by CoreCLR.
6991 * security-core-clr.c|h: Add function to check delegate creation,
6992 both in the binding and accessibility, under CoreCLR.
6994 2009-03-25 Sebastien Pouliot <sebastien@ximian.com>
6996 * reflection.c (mono_reflection_create_dynamic_method): when
6997 coreclr is enabled make sure that every resolved object are
6998 checked (e.g. field and method access).
6999 * security-core-clr.c|h: Add function to check objects resolved
7000 when a dynamic method is created.
7002 2009-03-24 Rodrigo Kumpera <rkumpera@novell.com>
7004 * metadata-verify.c: Cache directory rva translations.
7006 * metadata-verify.c: Add cli-header and streams verification.
7008 2009-03-24 Rodrigo Kumpera <rkumpera@novell.com>
7010 * image.c (load_metadata_ptrs): We decode MonoImage::md_version_minor at
7011 the wrong offset (8 instead of 6).
7013 2009-03-23 Zoltan Varga <vargaz@gmail.com>
7015 * marshal.c (mono_delegate_to_ftnptr): For delegates wrapping pinvoke
7016 methods, return the native function address itself. Fixes
7019 2009-03-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
7021 * console-io.c: some of the values for control characters might not be
7024 2009-03-21 Sebastien Pouliot <sebastien@ximian.com>
7026 * exception.c|h: Add helpers to create [Field|Method]AccessException
7027 * icall.c: Add required coreclr check calls for field reflection.
7028 Move the existing (method) check logic into security-core-clr.c
7029 * security-core-clr.c: Add functions to check if the access of a
7030 field or method is allowed when reflecting under coreclr. This is
7031 mostly done using a stack walk to find the "real" caller: i.e. the
7032 code that is calling the reflection
7034 2009-03-20 Zoltan Varga <vargaz@gmail.com>
7036 * gc-internal.h: Change location of gc_wrapper.h
7038 2009-03-20 Sebastien Pouliot <sebastien@ximian.com>
7040 * class.c: Simplification to coreclr checks for overrides that
7041 makes it easier to set breakpoints.
7043 2009-03-20 Sebastien Pouliot <sebastien@ximian.com>
7045 * security-core-clr.c|h: (mono_security_core_clr_class_level,
7046 mono_security_core_clr_method_level): Avoid potential
7047 MonoCustomAttrInfo allocation for transparent assemblies (e.g.
7048 user/application code) and make it easier to set breakpoints
7050 2009-03-19 Rodrigo Kumpera <rkumpera@novell.com>
7052 * metadata-verify.c: Reject cli header tables that mono don't handle.
7054 2009-03-19 Rodrigo Kumpera <rkumpera@novell.com>
7056 * pedump.c: Fix CLI header dumping.
7058 2009-03-19 Rodrigo Kumpera <rkumpera@novell.com>
7060 * metadata-verify.c: More CLI header verification.
7062 2009-03-19 Zoltan Varga <vargaz@gmail.com>
7064 * locales.c (get_current_locale_name): Use g_malloc instead of malloc.
7066 2009-03-18 Rodrigo Kumpera <rkumpera@novell.com>
7068 * metadata-verify.c: Initial verification of the CLI header.
7070 2009-03-18 Rodrigo Kumpera <rkumpera@novell.com>
7072 * metadata-verify.c (verify_resources_table): Fix verification of zero
7073 sized resource section and id entries count.
7075 2009-03-18 Zoltan Varga <vargaz@gmail.com>
7077 * icall.c: Handle user types in many Type icalls. Fixes #486303.
7079 2009-03-17 Jb Evain <jbevain@novell.com>
7081 * profiler.c: call mono_gc_base_init from mono_profiler_load.
7083 2009-03-17 Zoltan Varga <vargaz@gmail.com>
7085 * sgen-gc.c (mono_gc_make_descr_for_object): Fix 64 bit support.
7086 (mono_gc_make_descr_for_array): Ditto.
7088 2009-03-17 Sebastien Pouliot <sebastien@ximian.com>
7090 * verify.c (mono_verifier_is_class_full_trust): Add support for
7091 CoreCLR security mode where trusted assemblies are defined as
7094 2009-03-16 Rodrigo Kumpera <rkumpera@novell.com>
7096 * metadata-verify.c: Add minimal PECOFF resource verification.
7098 2009-03-16 Rodrigo Kumpera <rkumpera@novell.com>
7100 * metadata-verify.c: Be less restrictive with some coff fields.
7102 2009-03-16 Rodrigo Kumpera <rkumpera@novell.com>
7104 * verify.c (init_stack_with_value_at_exception_boundary): Init generic
7105 params as boxed values on stack. Fixes #485706.
7107 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7109 * console-io.c: the termios values may vary in different flavors of unix.
7111 2009-03-16 Gonzalo Paniagua Javier <gonzalo@novell.com>
7113 * console-io.[ch]: return the entire set of control characters when
7114 initializing the terminal.
7115 * appdomain.c: bump corlib version.
7117 Mon Mar 16 11:11:26 CET 2009 Paolo Molaro <lupus@ximian.com>
7119 * mono-perfcounters.c: added support for in-process custom
7120 performance counters.
7122 2009-03-13 Rodrigo Kumpera <rkumpera@novell.com>
7124 * metadata-verify.c: Small cleanup and add comment for IAT directory entry.
7126 2009-03-13 Rodrigo Kumpera <rkumpera@novell.com>
7128 * metadata-verify.c: Verify the data pointed by the import table.
7130 2009-03-13 Rodrigo Kumpera <rkumpera@novell.com>
7132 * metadata-verify.c (load_data_directories): Store data
7135 * metadata-verify.c: Verify the import table.
7137 2009-03-12 Rodrigo Kumpera <rkumpera@novell.com>
7139 * metadata-verify.c: Verify data directories.
7141 2009-03-12 Rodrigo Kumpera <rkumpera@novell.com>
7143 * metadata-verify.c: Check section header flags.
7145 2009-03-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
7147 * appdomain.c: if the assembly name is a shadow-copied file, return
7148 TRUE from mono_is_shadow_copy_enabled but don't actually do anything
7149 in mono_make_shadow_copy.
7150 * icall.c: if the assembly name is a shadow-copied file, replace it
7151 with the original assembly path.
7153 Bug #484244 fixed. NUnit tests for corlib can be run without
7156 2009-03-12 Zoltan Varga <vargaz@gmail.com>
7158 * sgen-gc.c (add_to_global_remset): Fix the handling of root global remset
7159 entries when the table is reallocated.
7161 * icall.c: Allocate the memory used by the mono_ptr_array macros using
7162 mono_gc_alloc_fixed () since it contains GC refs.
7164 2009-03-10 Zoltan Varga <vargaz@gmail.com>
7166 * reflection.c (ensure_complete_type): New helper function to call
7167 type resolve handlers for unfinished dynamic types.
7168 (resolve_object): Call it for MonoClassFields. Fixes #483852.
7170 2009-03-09 Zoltan Varga <vargaz@gmail.com>
7172 * reflection.c (mono_custom_attrs_has_attr): Handle interfaces. Fixes
7175 2009-03-08 Rodrigo Kumpera <rkumpera@novell.com>
7177 * appdomain.c (get_shadow_assembly_location): Fix memleak.
7179 2009-03-08 Zoltan Varga <vargaz@gmail.com>
7181 * domain-internals.h (struct _MonoDomain): Add new hash tables mapping
7182 between GCHandles of type WeakTrackResurrection and the objects they
7185 * gc.c: Partly implement the sematics of GCHandles of type
7186 WeakTrackResurrection: these handles should only be cleared after the
7187 finalizer of the object they are pointing to has ran.
7189 2009-03-06 Mark Probst <mark.probst@gmail.com>
7191 * icall.c: Partially revert r126631 because using the jump
7192 trampolines for generic shared methods makes it superfluous.
7194 2009-03-06 Zoltan Varga <vargaz@gmail.com>
7196 * threads.c (handle_store): Create the 'threads' hash table with the proper
7197 MONO_HASH_VALUE_GC type.
7199 2009-03-05 Zoltan Varga <vargaz@gmail.com>
7201 * domain-internals.h (struct _MonoDomain): Move 'typeof_void' before
7204 * domain.c (mono_domain_create): Register the fields between FIRST_GC_TRACKED
7205 and LAST_GC_TRACKED as a GC root.
7207 * gc-internal.h: Fix the comment of mono_gc_alloc_fixed.
7209 * object.c (mono_class_create_runtime_vtable): Create a GC descriptor for
7210 the static data even if it consists of 1 reference.
7212 * boehm-gc.c (mono_gc_alloc_fixed): Allocate using GC_MALLOC_EXPLICITLY_TYPED
7213 if there is a GC descriptor.
7215 * reflection.c (ALLOC_REFENTRY): Allocate ReflectedEntry-es using malloc
7216 instead of through the GC since they contain no object references.
7218 2009-03-05 Mark Probst <mark.probst@gmail.com>
7220 * generic-sharing.c (instantiate_other_info): Always return a jump
7221 trampoline for method code.
7223 2009-03-05 Marek Habersack <mhabersack@novell.com>
7225 * culture-info-tables.h: generated to include the en-tt culture.
7227 2009-03-04 Rodrigo Kumpera <rkumpera@novell.com>
7229 * domain-internals.h (MonoDomain): Add two fields to cache invoke wrappers to
7230 capture the thread context.
7232 * object.c (mono_async_result_new): Cache the invoke wrappers to
7233 ExecutionContext::Capture.
7235 2009-03-04 Rodrigo Kumpera <rkumpera@novell.com>
7237 * marshal.h: Add a prototype for what mono_compile_method returns
7238 for invoke wrappers.
7240 * gc.c: Use the new prototype declaration.
7242 2009-03-04 Geoff Norton <gnorton@novell.com>
7244 * boehm-gc.c: Add some MONO_LOG tracing for the GC
7246 * mono-gc.h: Expose mono_gc_invoke_finalizers in the embedding api.
7248 2009-03-04 Martin Baulig <martin@ximian.com>
7251 (mono_debugger_runtime_invoke): Removed.
7253 * mono-debug-debugger.c
7254 (mono_runtime_invoke): Moved into ../mini/debug-mini.c.
7256 2009-03-02 Martin Baulig <martin@ximian.com>
7259 (mono_debugger_unhandled_exception): Removed.
7260 (mono_debugger_handle_exception): Removed.
7261 (mono_debugger_throw_exception): Removed.
7264 (mono_debug_debugger_version): Bump to 5.
7266 * mono-debug-debugger.c: Moved the exception handling code to
7267 ../mini/debug-mini.c
7269 2009-03-03 Zoltan Varga <vargaz@gmail.com>
7271 * domain-internals.h (struct _MonoDomain): Add a separate lock for the
7272 finalize_objects_hash.
7274 * gc.c: Use the separate lock to access the finalize_objects_hash field.
7276 * domain-internals.h (struct _MonoDomain): Add finalize_runtime_invoke
7279 * metadata-internals.h (struct _MonoImage): Add runtime_invoke_vcall_cache
7282 * image.c (mono_image_close): Free it.
7284 * marshal.c (mono_marshal_get_runtime_invoke): Add a 'virtual' argument
7285 allowing a creation of a wrapper which invokes its method using a CALLVIRT
7286 on the this argument.
7288 * gc.c (run_finalize): Optimize the calling of the finalizers.
7290 2009-03-03 Martin Baulig <martin@ximian.com>
7292 * mono-debug.h (MONO_DEBUGGER_MAJOR_VERSION): Bump to 81 because
7293 of the `MonoGenericInst' changes.
7295 2009-03-03 Rodrigo Kumpera <rkumpera@novell.com>
7297 * icall.c (ves_icall_MonoType_GetGenericArguments): Use
7298 mono_array_class_get_cached to reduce locking contention. Extract
7301 * icall.c (ves_icall_Type_GetFields_internal): Avoid allocating
7302 intermediary managed arrays. Use caching version of mono_array_new
7303 to allocate the result array.
7305 * icall.c (ves_icall_Type_GetEvents_internal): Same.
7307 * icall.c (ves_icall_Type_GetNestedTypes): Same.
7309 * locales.c (create_names_array_idx): Use mono_array_new_cached
7310 to reduce locking contention.
7312 2009-03-03 Zoltan Varga <vargaz@gmail.com>
7314 * object.c (mono_method_add_generic_virtual_invocation): Put back the
7315 thunk builder code for the non-interface case.
7317 2009-03-02 Zoltan Varga <vargaz@gmail.com>
7319 * object.c (get_generic_virtual_entries): New helper function to collect
7320 the virtual generic method instances which need to be added to an IMT
7322 (mono_method_add_generic_virtual_invocation): Add a 'vtable' argument.
7323 Instead of creating a new IMT thunk, reset the vtable slot to the
7324 trampoline, the thunk will be created the next time the trampoline is called.
7325 (build_imt_slots): Add support for virtual generic methods in interfaces by
7326 adding to the IMT thunk all the methods registered using
7327 mono_method_add_generic_virtual_invocation ().
7329 * object-internals.h (_MonoImtBuilderEntry): Add a 'has_target_code' field.
7330 (struct _MonoIMTCheckItem): Ditto.
7332 * object.c (mono_method_add_generic_virtual_invocation): Take a
7333 MonoMethod argument instead of a MonoGenericInst. Fix the construction of
7334 the IMT thunk to include all items.
7336 * object.c (mono_class_create_runtime_vtable): Add a missing
7337 mono_loader_unlock ().
7339 2009-03-02 Rodrigo Kumpera <rkumpera@novell.com>
7341 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7343 * object-internals.h (MonoReflectionEvent): Add cached_add_event.
7345 2009-03-02 Rodrigo Kumpera <rkumpera@novell.com>
7347 * object-internals.h: Rename _MonoReflectionEvent to
7348 MonoReflectionMonoEvent so it reflects the right managed type.
7349 Add a MonoReflectionEvent that correctly represents System.EventInfo.
7352 * reflection.c: Adjust code to use the new MonoReflectionMonoEvent
7355 2009-03-02 Rodrigo Kumpera <rkumpera@novell.com>
7357 * icall.c (ves_icall_Type_GetMethodsByName): Avoid allocating
7358 intermediary managed arrays. Use caching version of mono_array_new
7359 to allocate the result array.
7361 2009-03-01 Rodrigo Kumpera <rkumpera@novell.com>
7363 * reflection.c: Use cached version of mono_array_new alongside
7364 the mono_reflection_get_custom_attrs_by_type call path.
7366 2009-03-01 Rodrigo Kumpera <rkumpera@novell.com>
7368 * icall.c (ves_icall_Type_GetInterfaces): Avoid allocating
7369 intermediary managed arrays. Use caching version of mono_array_new
7370 to allocate the result array.
7372 * icall.c (ves_icall_Type_GetConstructors_internal): Same.
7374 2009-03-01 Rodrigo Kumpera <rkumpera@novell.com>
7376 * icall.c: Add small implementation of a growable stack bound array.
7378 * icall.c (ves_icall_System_Enum_get_hashcode): Fix warning.
7380 * icall.c (ves_icall_Type_GetPropertiesByName): Avoid allocating
7381 intermediary managed arrays. Use caching version of mono_array_new
7382 to allocate the result array.
7384 2009-02-27 Rodrigo Kumpera <rkumpera@novell.com>
7386 * icall.c: New icall ves_icall_System_Enum_compare_value_to that
7387 helps Enum::CompareTo to be implemented without reboxing all enums
7388 to their underlying type.
7389 2009-02-27 Zoltan Varga <vargaz@gmail.com>
7391 * domain.c (SET_APPDOMAIN): Avoid calling TlsSetValue () on some platforms,
7392 since it acquires a global lock leading to scalability problems.
7394 * profiler.c: Make the stat profiler work with multiple appdomains, this
7395 currently only works when no appdomains are unloaded.
7397 2009-02-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
7399 * appdomain.c: make the check to avoid copying when the assembly is
7400 already shadow copied actually work.
7402 2009-02-26 Zoltan Varga <vargaz@gmail.com>
7404 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
7406 * object-internals.h (struct _MonoReflectionGenericClass): Sync with
7407 changes to the managed side.
7409 2009-02-25 Zoltan Varga <vargaz@gmail.com>
7411 * metadata-internals.h (struct _MonoImage): Add a new cache for szarray
7412 classes + a separate lock for it, as it is used frequently at runtime, not
7413 just during metadata loading/JIT compilation.
7415 * class.c (mono_bounded_array_class_get): Use the separate cache + lock
7418 * object-internals.h (mono_class_from_name_cached): New macro to cache
7419 the results of the lookup locally without having to declare a static
7420 variable to hold it.
7421 (mono_class_get_field_from_name_cached): Ditto.
7422 (mono_array_class_get_cached): Ditto.
7424 * threadpool.c threads.c locales.c icall.c reflection.c socket-io.c: Use
7427 * object.c (mono_get_delegate_invoke): Call setup_methods () to avoid the
7428 slower search in metadata.
7430 * pedump.c: Fix a warning.
7432 2009-02-23 Zoltan Varga <vargaz@gmail.com>
7434 * reflection.c (encode_locals): Add checks for user types.
7435 (method_encode_clauses): Ditto.
7436 (method_encode_code): Ditto.
7437 (mono_image_create_token): Ditto.
7439 * object-internals.h: Change the type of more fields from MonoReflectionType*
7442 2009-02-22 Zoltan Varga <vargaz@gmail.com>
7444 * threads.c (mono_thread_suspend_all_other_threads): Handle the case when
7445 the a thread does not suspend within 100ms.
7447 * monitor.c (mono_monitor_try_enter_internal): Handle SuspendRequested
7448 in addition to StopRequested as well.
7450 * mono-debug.c: Call _mono_debug_get_image () while holding the debug lock.
7452 * debug-mono-symfile.c (mono_debug_symfile_lookup_method): Actually
7453 search the method_hash before inserting a new entry, to avoid crashes when
7454 the same method is inserted multiple times, causing the old
7455 MonoDebugMethodInfo structure to be freed by the value dtor function.
7457 2009-02-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
7459 * socket-io.c: support SO_MAXCONN, SO_USELOOPBACK and
7460 SO_EXLUSIVEADDRUSE where available.
7462 2009-02-21 Zoltan Varga <vargaz@gmail.com>
7464 * marshal.c (mono_marshal_get_runtime_invoke): Fix _another_ bug sharing
7465 runtime invoke wrappers, this time it is string ctor wrappers, which
7466 pass a dummy string as 'this' instead of their obj argument. Fixes
7469 2009-02-21 Jb Evain <jbevain@novell.com>
7471 * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
7472 only get create_culture once.
7474 2009-02-20 Zoltan Varga <vargaz@gmail.com>
7476 * reflection.c (mono_reflection_setup_internal_class): Move the user type
7477 check before the locking.
7479 * reflection.c (mono_reflection_setup_internal_class): Check for user types.
7480 (mono_reflection_create_runtime_class): Ditto.
7481 (mono_reflection_sighelper_get_signature_local): Ditto.
7482 (mono_reflection_sighelper_get_signature_field): Ditto.
7484 * object-internals.h (CHECK_MONOTYPE): New macro to check that a Type object
7485 is a System.MonoType object or similar.
7486 (monotype_cast): New helper function to cast a MonoObject to a
7487 MonoReflectionType object.
7489 * object-internals.h: Change MonoReflectionType* members in structures to
7490 MonoObject* members to force the usage of the monotype_cast () function.
7492 * reflection.c icall.c: Use monotype_cast () for accessing Type members of
7493 structures/arrays. This causes us to assert instead of crashing when
7494 instances of user defined subclasses of System.Type are encountered.
7496 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7500 * icall.c: add new GetUnmanagedResourcePtr that returns a pointer to a
7501 win32 resource loaded from a PE file.
7503 * image.c: fix mono_image_lookup_resource.
7505 2009-02-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
7509 * threads.c: added internal call for WaitHandle.SignalAndWait.
7511 2009-02-19 Bill Holmes <billholmes54@gmail.com>
7513 * cominterop.c : Adding cominterop_type_from_handle and
7514 registering it as an icall. Replacing all references
7515 to type_from_handle.
7517 Code is contributed under MIT/X11 license.
7519 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
7521 * Makefile.am: Add lock-tracer.h and lock-trace.c.
7523 * appdomain.c: Call the tracer init function.
7525 * domain-internals.h: Enable the tracer for the domain locks.
7527 * image.c: Enable the tracer for image locks.
7529 * loader.c: Enable the trace for the loader lock.
7532 * lock-tracer.c: Initial implementation of the lock trace utility.
7533 The tracer requires a compile time define to be enabled and a env var
7534 to be enabled at runtime.
7536 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
7538 * domain.c (mono_domain_code_foreach): Improve documentation.
7540 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
7543 * generic-sharing.c:
7545 * reflection.c: Adjust locking order to the new semantics where the loader lock
7548 2009-02-18 Rodrigo Kumpera <rkumpera@novell.com>
7550 * domain.c: Add mono_domain_code_* functions that perform locking
7551 around the domain codeman.
7553 * domain-internals.h: Export those functions.
7555 * object.c: Use new functions instead of acquiring the domain lock.
7557 2009-02-19 Zoltan Varga <vargaz@gmail.com>
7559 * marshal.c (mono_ftnptr_to_delegate): Convert a NULL ftnptr to a null
7560 delegate. Fixes #477396.
7562 2009-02-18 Zoltan Varga <vargaz@gmail.com>
7564 * reflection.c (create_custom_attr): Get rid of alloca.
7566 2009-02-18 Bill Holmes <billholmes54@gmail.com>
7568 * cominterop.c (cominterop_get_managed_wrapper_adjusted) :
7569 Adding exception handling for all CCW calls.
7571 Code is contributed under MIT/X11 license.
7573 2009-02-18 Zoltan Varga <vargaz@gmail.com>
7575 * reflection.c (mono_reflection_init): Remove the unused reflection mutex.
7577 * marshal.c (emit_marshal_boolean): Add null checks to the new
7578 native->managed marshalling code. Fixes #476247.
7580 2009-02-17 Zoltan Varga <vargaz@gmail.com>
7582 * class.c (mono_class_get_vtable_entry): Move the addition of
7583 static rgctx invoke wrappers for vtable methods here, this simplifies
7584 a lot of code and causes fewer rgctx wrappers to be created.
7586 * marshal.c (mono_marshal_get_static_rgctx_invoke): Change the
7587 name of the statistics to begin with an uppercase.
7589 2009-02-17 Rodrigo Kumpera <rkumpera@novell.com>
7591 * reflection.c: Revert previous change as it breaks the build.
7593 2009-02-17 Rodrigo Kumpera <rkumpera@novell.com>
7595 * verify.c: Properly handle SZARRAY element type.
7599 2009-02-17 Rodrigo Kumpera <rkumpera@novell.com>
7601 * reflection.c (mono_image_create_method_token): Correctly encode
7602 MethodDef MemberRefParent token.
7606 2009-02-17 Zoltan Varga <vargaz@gmail.com>
7608 * image.c (mono_image_close): Delete the critical section before
7609 freeing the memory holding it.
7611 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
7613 * verify.c (mono_method_verify): rethrow opcode doesn not fall through.
7616 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
7618 * pedump.c (main): Call mono_marshal_init so pedump
7621 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
7623 * loader.c (method_from_memberref): Properly fix #474271 and
7624 don't break the runtime bad.
7626 2009-02-16 Zoltan Varga <vargaz@gmail.com>
7628 * domain.c (mono_domain_alloc): Add locking so the caller doesn't have to.
7629 (mono_domain_alloc0): Ditto.
7631 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
7633 * loader.c (method_from_memberref): Don't abort if the array
7634 method is not found. A regular loader failure is more informative
7639 2009-02-16 Rodrigo Kumpera <rkumpera@novell.com>
7641 *loader.c: Guard MonoImage::method_cache/methodref_cache
7642 using the image lock instead of the loader lock.
7644 * metadata.h: Add comments about which fields are protected by
7647 2009-02-16 Zoltan Varga <vargaz@gmail.com>
7649 * appdomain.c (mono_set_private_bin_path_from_config): Fix a warning.
7651 * generic-sharing.c (mono_method_construct_object_context): Remove the
7652 wrapper_type == NONE assert, it is not needed.
7654 2009-02-15 Zoltan Varga <vargaz@gmail.com>
7656 * reflection.c (clear_cached_object): New helper function.
7657 (mono_method_clear_object): New function to clear the cached reflection
7658 objects for a dynamic method.
7660 * object.c (mono_runtime_free_method): Call mono_method_clear_object ().
7661 Partly fixes # 463323.
7663 2009-02-14 Rodrigo Kumpera <rkumpera@novell.com>
7667 * reflection.c: Remove all explicit uses of MonoImage::property_hash.
7669 2009-02-14 Rodrigo Kumpera <rkumpera@novell.com>
7671 * image.c: Add mono_image_property_(lookup,insert,remove) functions that
7672 take the image lock instead of the loader lock.
7674 * metadata-internals.h: Export new functions.
7676 2009-02-12 Miguel de Icaza <miguel@novell.com>
7678 * domain.c (app_config_parse): Remove another use of stat that is
7679 not necessary as g_file_get_contents already does the presence
7682 2009-02-13 Zoltan Varga <vargaz@gmail.com>
7684 * cominterop.c icall-def.h: Fix the DISABLE_COM build.
7686 * marshal.c: Move the bstr handling code to cominterop.c.
7688 * marshal.c: Remove some COM interop code missed previously.
7690 2009-02-12 Miguel de Icaza <miguel@novell.com>
7692 More Paolo patches from the Wii port:
7694 * security.c: Remove ves_icall_System_Environment_get_UserName
7697 * icall.c: And put ves_icall_System_Environment_get_UserName
7700 * appdomain.c (mono_set_private_bin_path_from_config): Remove
7701 redundant call to stat that was only used to test for the file
7702 existence. Patch from Paolo.
7704 * gc.c (run_finalize): If COM is disabled, do not link in
7705 mono_marshal_free_ccw.
7707 * generic-sharing.c: Use alloca.h here as well.
7709 2009-02-13 Rodrigo Kumpera <rkumpera@novell.com>
7711 * reflection.c (mono_reflection_lookup_dynamic_token): Do the locking properly.
7713 2009-02-13 Zoltan Varga <vargaz@gmail.com>
7715 * cominterop.c cominterop.h: New files.
7717 * marshal.c: Move the COM interop related code to cominterop.c. Make a few
7718 function/typedefs which are needed by cominterop.c global.
7720 2009-02-12 Mark Probst <mark.probst@gmail.com>
7722 * generic-sharing.c: Don't take the loader lock to guard image
7725 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7727 * reflection.c (mono_reflection_lookup_dynamic_token): This function might be
7728 called without the loader lock which is required to guard MonoImage:tokens.
7730 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7736 * reflection.c: Don't take the loader lock to alloc memory from the image mempool.
7738 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7740 * metadata.c: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7741 Rework the code to use regular mono_image_alloc/0.
7743 * loader.c: Rework the code to use regular mono_image_alloc/0.
7745 * metadata-internals.h: Remove mono_image_alloc_lock and mono_image_alloc0_lock.
7747 2009-02-12 Bill Holmes <billholmes54@gmail.com>
7749 * object-internals.h : Fixing a typo in the
7750 MonoReflectionComVisibleAttribute struct.
7752 * marshal.c (cominterop_com_visible): Check the implemented
7753 interfaces for ComImport.
7755 * marshal.c (cominterop_get_native_wrapper_adjusted): For COM calls
7756 assume that bools should be treated as VARIANTBOOLs.
7758 * marshal.c (emit_marshal_boolean): Adding cases for
7759 MARSHAL_ACTION_MANAGED_CONV_IN and MARSHAL_ACTION_MANAGED_CONV_OUT.
7761 * marshal.c (mono_marshal_emit_managed_wrapper): Adding calls to
7762 emit_marshal MARSHAL_ACTION_MANAGED_CONV_IN and OUT for bools.
7764 * marshal.c (cominterop_get_ccw): For COM calls assume that bools
7765 should be treated as VARIANTBOOLs.
7767 Code is contributed under MIT/X11 license.
7769 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7771 * image.c (mono_image_alloc, mono_image_alloc0, mono_image_strdup): Guard mempool
7772 allocation with the image lock.
7774 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7776 This patch is the last of a series to remove explicit reference of MonoImage::mempool
7777 and use mono_image_alloc set of functions instead. This time we finish with reflection.c
7779 * object.c: Add mono_string_to_utf8_image.
7781 * object-internals.h: Export mono_string_to_utf8_image.
7783 * reflection.c: Rework all explicit references to the the image mempool to go thought
7784 the mono_image_alloc set of functions.
7786 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7788 This patch is the third of a series to remove explicit reference of MonoImage::mempool
7789 and use mono_image_alloc set of functions instead. This time we finish with marshal.c
7790 and generics-sharing.c.
7792 * generics-sharing.c (set_other_info_templates): Take a MonoImage instead of a MonoMemPool
7793 as first argument. Note that this function remains broken as it doesn't perform locking around the
7796 * generics-sharing.c (rgctx_template_set_other_slot): Pass the image and not the mempool.
7798 * image.c: Add g_slist_append_image.
7800 * metadata.c (mono_metadata_field_info_with_mempool): Remove the mempool argument and use
7801 the supplied image for allocation. Move code into mono_metadata_field_info_full.
7803 * metadata.c (mono_metadata_parse_marshal_spec_full): Take a MonoImage instead of a MonoMemPool.
7804 Fix all related code to do the same.
7806 * marshal.c (mono_marshal_load_type_info): Pass the image instead of the mempool.
7808 * metadata-internals.h: Fix the signatures.
7810 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
7812 This patch is the second of a series to remove explicit reference of MonoImage::mempool
7813 and use mono_image_alloc set of functions instead. This time we rework mono_metadata_type_dup
7814 and similar to work using MonoImage.
7816 * class.c (mono_mempool_dup): Rename to mono_image_memdup and take a MonoImage instead of a
7819 * class.c (mono_dup_array_type): Take a MonoImage instead of a MonoMemPool as first argument.
7821 * class.c (mono_metadata_signature_deep_dup): Same.
7823 * class.c (inflate_generic_type): Same.
7825 * class.c (mono_class_inflate_generic_type_with_mempool): Same.
7827 * metadata.c (mono_metadata_signature_dup_full): Same.
7829 * metadata.c: Add mono_metadata_signature_dup_mempool and extract common functionality from
7830 mono_metadata_signature_dup_full.
7832 * metadata.c (mono_metadata_type_dup): Same.
7834 * marshal.c: Pass the image to calls to mono_metadata_type_dup.
7836 * reflection.c: Same.
7838 * generic-sharing.c: Pass the image to calls to mono_class_inflate_generic_type_with_mempool.
7840 * metadata-internals.h: Fix the signatures.
7842 * class-internals.h: Same.
7844 2009-02-11 Rodrigo Kumpera <rkumpera@novell.com>
7846 This patch is the first of a series to remove explicit reference of MonoImage::mempool
7847 and use mono_image_alloc set of functions instead.
7849 * class.c (mono_class_inflate_generic_type_with_mempool_no_copy):
7850 Rename to mono_class_inflate_generic_type_no_copy and take a MonoImage instead
7853 * class.c (mono_class_setup_fields): Adapt to mono_class_inflate_generic_type_no_copy.
7855 * class.c (g_list_prepend_mempool): Removed.
7857 * class.c (mono_class_get_nested_types): Use g_list_prepend_image instead of g_list_prepend_mempool.
7859 * image.c: Add g_list_prepend_image.
7861 * metadata-internals.h (struct MonoImage): Fix comment. Export g_list_prepend_image as internal.
7863 * reflection.c (mono_reflection_create_runtime_class): Use g_list_prepend_image instead of g_list_prepend_mempool.
7866 2009-02-11 Rodrigo Kumpera <rkumpera@novell.com>
7868 * metadata-internals.h (struct MonoImage): Add lock field. Export mono_image_lock and
7871 * image.c (mono_image_init): Init the lock field.
7873 * image.c (mono_image_init): Cleanup the lock field.
7875 * image.c: Add mono_image_(un)lock functions.
7877 2009-02-11 Mark Probst <mark.probst@gmail.com>
7879 * class.c, class-internals.h: mono_method_get_context_general()
7880 combines the functionality of mono_method_get_context() and
7881 mini_method_get_context().
7883 * generic-sharing.c, domain-internals.h:
7884 mono_method_construct_object_context() and
7885 mono_domain_lookup_shared_generic() moved from mini.
7887 * icall.c (ves_icall_InternalInvoke): Handle the case where the
7888 method doesn't have the correct instantiation because it's shared
7889 generic code. Fixes #473999.
7891 2009-02-11 Zoltan Varga <vargaz@gmail.com>
7893 * loader.c (mono_method_get_wrapper_data): Handle inflated methods as well.
7895 * loader.c (mono_loader_lock): Add a comment pointing to the locking document.
7897 2009-02-11 Rodrigo Kumpera <rkumpera@novell.com>
7899 * metadata.c: Make mono_image_alloc_lock and mono_image_alloc0_lock non static.
7901 * metadata-internals.h: Export mono_image_alloc_lock and mono_image_alloc0_lock.
7903 * loader.c (mono_get_method_full): Drop the loader lock while constructing the method
7904 and recheck the cache for dups after it.
7906 * loader.c (mono_get_method_from_token): Use _lock version of mono_image_alloc0.
7908 Fixes one of the deadlocks found in #473150.
7910 2009-02-11 Bill Holmes <billholmes54@gmail.com>
7912 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal):
7913 For Win32, add additional break conditions for accept.
7915 Code is contributed under MIT/X11 license.
7917 2009-02-10 Zoltan Varga <vargaz@gmail.com>
7919 * marshal.c (mono_marshal_get_native_func_wrapper): Use get_cache to
7920 lazily initialize the native wrapper cache.
7921 (mono_marshal_get_native_wrapper): Put aot-ed native wrappers into a separate
7922 cache, since they are different from the normal wrappers.
7924 * image.c (mono_image_init): Initialize native_wrapper_cache lazily as well.
7926 * metadata-internals.h (struct _MonoImage): Add a new wrapper for
7927 AOT compiled native wrappers.
7929 2009-02-09 Geoff Norton <gnorton@novell.com>
7932 * security-core-clr.c: Allow enabling core-clr from the embedding
7935 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7937 * socket-io.c: when requesting all the local ips, if there are no
7938 interfaces up and running, MS returns 127.0.0.1.
7940 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7942 * mono-perfcounters-def.h: processor time is an inverse time.
7945 2009-02-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
7947 * socket-io.c: an empty host name returns the list of local IPs.
7948 Fixes bug #386637 part 1/2.
7950 2009-02-07 Zoltan Varga <vargaz@gmail.com>
7952 * verify.c (mono_class_interface_implements_interface): Call
7953 mono_class_setup_interfaces ().
7954 (merge_stacks): Ditto.
7956 2009-02-06 Zoltan Varga <vargaz@gmail.com>
7958 * class.c (mono_class_setup_interfaces): New function to lazily initalize
7960 (mono_generic_class_get_class): Don't initalize klass->interfaces.
7961 (mono_generic_class_get_class): Ditto.
7963 2009-02-06 U-QUACK\miguel <miguel@quack>
7965 * icall-defs.h: Include also the Encrypt/Decrypt string methods as
7966 they live in security.c
7968 * debug-mono-symfile.c (mono_debug_open_mono_symbols): Integrated
7969 another bit from Paolo's code.
7971 2009-02-06 Zoltan Varga <vargaz@gmail.com>
7973 * object.c (build_imt_slots): Add a small optimization to avoid inflating
7974 methods which will be discarded by add_imt_builder_entry ().
7976 * marshal.c (get_runtime_invoke_type): Avoid sharing enum types since they
7979 * loader.c: Add a statistics for the size of the memberref signature cache.
7981 * loader.c (find_cached_memberref_sig): New helper function.
7982 (cache_memberref_sig): Ditto.
7984 * loader.c: Cache the result of parsing memberref signatures, since otherwise
7985 they will be parsed again for every generic instantiation, leading to unbounded
7988 2009-02-05 Zoltan Varga <vargaz@gmail.com>
7990 * loader.c (mono_get_method_from_token): Avoid creating class for the generic
7991 parameters of generic methods.
7993 * class.c (mono_class_inflate_generic_method_full): Set is_mb_open again
7994 after the original method is copied to the inflated method.
7995 (mono_class_get_vtable_entry): Handle rgctx invoke wrappers more efficiently.
7997 * class-internals.h (struct _MonoMethodInflated): Move the is_mb_open
7998 field to MonoMethod since it only consumes 1 bit there, and 4/8 bytes here.
8000 * class.c metadata.c: Update after the changes above.
8002 2009-02-05 Rodrigo Kumpera <rkumpera@novell.com>
8004 * metadata-verify.c: Simplified error handling and added
8005 section table validation.
8007 2009-02-05 Zoltan Varga <vargaz@gmail.com>
8009 * class-internals.h (MonoClassExt): New structure containing rarely used
8010 fields of MonoClass.
8011 (struct _MonoClass): Move rarely used fields to MonoClassExt, accessed
8012 through a new 'ext' field.
8014 * class.c (mono_class_alloc_ext): New helper function to allocate
8017 * class.c metadata.c reflection.c: Update after MonoClass structure changes.
8019 2009-02-05 Mark Probst <mark.probst@gmail.com>
8021 * object.c (mono_object_get_virtual_method): Properly inflate
8022 generic methods. Fixes #472692.
8024 2009-02-05 Rodrigo Kumpera <rkumpera@novell.com>
8026 * class.c (mono_class_create_from_typedef): The CLR supports SystemF
8027 recursive types such as List<T>:Cons<T,List<T>> so when doing the lookup
8028 for the parent type, the created type must be ready to be used on a generic
8030 We fill this_arg/byval_arg if the parent is a generic instance to make sure
8031 we won't have duplicated entries in generic_inst_cache.
8035 2009-02-05 Miguel De Icaza <miguel@novell.com>
8037 * threadpool.c (socket_io_add_poll): Remove the BSD6 define and
8038 replace with plain BSD per the comments on the bug MONO77637.
8040 2009-02-05 Zoltan Varga <vargaz@gmail.com>
8042 * class.c (mono_class_get_generic_class): New accessor function.
8043 (mono_class_get_generic_container): Ditto.
8045 * class-internals.h (struct _MonoClass): Add 'is_generic' and 'is_inflated'
8046 fields, similar to the ones in MonoMethod.
8048 * class.c (mono_generic_class_get_class): Set klass->is_inflated.
8049 (mono_class_create_from_typedef): Set klass->is_generic if needed.
8051 * reflection.c (mono_reflection_create_generic_class): Set klass->is_generic.
8053 * class-internals.h (struct _MonoClass): Remove enum_basetype, it contains
8054 the same information as element_class->byval_arg.
8056 * class.c reflection.c: Remove references to class->byval_arg.
8058 * class.c marshal.c: Use mono_class_enum_basetype () instead of accessing
8059 klass->enum_basetype directly.
8061 * verify.c metadata.c object.c icall.c reflection.c: Use
8062 mono_class_enum_basetype () instead of accessing klass->enum_basetype
8065 2009-02-04 Miguel de Icaza <miguel@novell.com>
8067 * icall-def.h: Remove internal calls for sockets when
8068 DISABLE_SOCKET is defined, file system writing features when the
8069 OS only support reading and not writing data and Policy support if
8070 the Policy is disabled.
8072 * image.c (do_mono_image_open): Apply Paolo's patches for using
8073 mono_file_map_ APIs here.
8075 * assembly.c: Add support for platforms to avoid prefix
8078 2009-02-04 Zoltan Varga <vargaz@gmail.com>
8080 * generic-sharing.c (mono_method_fill_runtime_generic_context): Fix a
8083 * class.c (mono_class_inflate_generic_class): New helper function.
8085 * class.c: Use mono_class_inflate_generic_class in a few places. Add
8086 statistics for inflated methods/classes.
8088 * loader.c (inflate_generic_header): Use mono_class_inflate_generic_class.
8090 * icall.c (ves_icall_Type_GetMethodsByName): Optimize the case when
8091 the call is made from Delegate.CreateDelegate () for the invoke method of
8094 * loader.c: Add a statistics for the memory occupied by inflated signatures.
8096 * metadata.c (mono_metadata_signature_size): New helper function.
8098 * class.c (mono_class_get_method_from_name_flags): Add an optimization for
8101 * metadata.c (inflated_method_in_image): Avoid calling
8102 mono_method_signature () if the method does not already have a signature.
8104 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
8106 * verify.c (is_compatible_boxed_valuetype): When checking if the boxed
8107 valuetype is compatible with target type, check by inheritance as a
8108 VT is not really compatible with System.ValueType, for example.
8110 * verify.c (do_invoke_method): Improve error message.
8112 * verify.c (do_box_value): If boxing a nullable, use the type argument
8115 * verify.c (do_newobj): Improve error message.
8119 2009-02-03 Miguel de Icaza <miguel@novell.com>
8121 * appdomain.c: Add support for DISABLE_SOCKETS and DISABLE_SHADOW_COPY
8123 2009-02-03 Mark Probst <mark.probst@gmail.com>
8125 * generic-sharing.c: Don't hold domain lock when calling
8126 instantiate_other_info(). Fixes #471958.
8128 * domain-internals.h, loader.c: Describe locking policy of domain
8129 lock vs loader lock.
8131 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
8133 * verify.c (mono_delegate_signature_equal): Make it possible to check
8134 first-arg-bound delegates to static method.
8136 * verify.c (verify_delegate_compatibility): Correctly verify delegates to
8137 static methods with the first arg bound.
8141 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
8143 * verify.c: Added stack_slot_full_name to provide decent and more meanfull
8146 * verify.c (is_compatible_boxed_valuetype): Be less restrictive when not
8147 under strict mode. Any type, when boxed can be seen as a reference type.
8151 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
8153 * object.h: The lower bound of an array is a signed integer value.
8154 Introduce mono_array_lower_bound_t typedef. It should be used instead of
8155 gint32 as under MONO_BIG_ARRAYS it will be a gint64.
8157 * icall.c: Cast MonoArrayBounds::length to a signed value so correctly
8158 calculate the upper bound.
8162 2009-02-02 Miguel de Icaza <miguel@novell.com>
8164 From Paolo's work, refactored, cleared up:
8166 * threadpool.c, icall.c: ifdef code that requires a working socket
8169 * metadata.c (mono_metadata_field_info): Do not attempt to return
8170 a value from a function declared as void.
8172 * console-io.c: Use MONO_NULL_TTYDRIVER to remove the tty driver
8173 from the console stack.
8175 * assembly.c: use strrchr instead of rindex.
8177 * class.c, object.c, marshal.c, icall.c, reflection.c: include
8178 alloca.h on systems that have it.
8180 * environment.c: Avoid code that uses stuff from
8183 * appdomain.c: Include sys/time.h.
8185 * console-io.c: include sys/ioctl.h if it is available.
8187 2009-02-03 Zoltan Varga <vargaz@gmail.com>
8189 * method-builder.h (_MonoMethodBuilder): Add a 'skip_visibility' flag.
8191 * method-builder.c (mono_mb_create_method): Set method->skip_visibility from
8194 * marshal.c: Set mb->skip_visibility instead of setting it on the method
8195 after it was created and cached, as the later is not thread safe.
8197 2009-02-02 Zoltan Varga <vargaz@gmail.com>
8199 * mono-debug.c (mono_debug_print_stack_frame): Avoid crashes when this is
8200 called while the debugging module is not initialized. Fixes #471669.
8202 2009-02-02 Rodrigo Kumpera <rkumpera@novell.com>
8204 * icall.c (type_from_name): Ignore reflection frames to find out the real caller.
8208 2009-02-02 Mark Probst <mark.probst@gmail.com>
8210 * generic-sharing.c (lookup_or_register_other_info): Make sure the
8211 loader lock is not taken while the templates lock is held. Fixes
8214 2009-02-02 Mark Probst <mark.probst@gmail.com>
8216 * metadata.c (type_in_image): Added a check to fix a monodis
8219 2009-02-02 Zoltan Varga <vargaz@gmail.com>
8221 * marshal.c (mono_marshal_get_runtime_invoke): Add support for byref
8224 * object.c (mono_runtime_invoke_array): Ditto.
8226 * marshal.c (mono_marshal_free_dynamic_wrappers): New function for
8227 freeing wrappers of dynamic methods.
8229 * loader.c (mono_free_method): Call it. Fixes #463323.
8231 * marshal.c (mono_marshal_get_runtime_invoke): Disable sharing for
8232 methods taking vtype/byref arguments, to fix yet another bug caused by
8233 the sharing of runtime invoke wrappers. Partly fixes #471259.
8235 2009-02-01 Zoltan Varga <vargaz@gmail.com>
8237 * debug-mono-symfile.c (check_line): Return NULL instead of returning
8238 <first file in file table>:1 when the IL offset does not have an associated
8241 2009-01-31 Zoltan Varga <vargaz@gmail.com>
8243 * mono-debug.c (mono_debug_lookup_locals): New function to return local
8244 variable info for a method.
8246 * debug-mono-symfile.c (mono_debug_symfile_lookup_locals): Ditto.
8248 2009-01-30 Jb Evain <jbevain@novell.com>
8250 * pedump.c: reuse code from monodis to make sure pedump honors
8251 MONO_PATH, which is needed to verify net_2_1 assemblies.
8253 2009-01-29 Zoltan Varga <vargaz@gmail.com>
8255 * mono-debug.c (mono_debug_print_stack_frame): Print the IL offset even when
8256 there is no line number info.
8258 2009-01-29 Raja R Harinath <harinath@hurrynot.org>
8260 Avoid some MonoType allocations
8261 * reflection.c (mono_reflection_initialize_generic_parameter):
8262 Reuse MonoType from param->pklass rather than allocating one.
8263 (mono_dynamic_image_free): Update to changes.
8265 2009-01-28 Raja R Harinath <harinath@hurrynot.org>
8267 Rearrange some code to improve consistency
8268 * reflection.c (mono_reflection_setup_generic_class): Move body ...
8269 (mono_reflection_initialize_generic_parameter): ... here.
8271 2009-01-28 Zoltan Varga <vargaz@gmail.com>
8273 * generic-sharing.c (has_constraints): Enable gshared for methods/classes
8274 with type constraints as an experiment.
8276 * boehm-gc.c (on_gc_notification): Update mono_stats.
8278 2009-01-28 Raja R Harinath <harinath@hurrynot.org>
8280 Avoid some allocations
8281 * class-internals.h (_MonoGenericInst::type_argv): Convert from
8282 pointer to tail array to avoid extra allocation.
8283 * metadata.c (free_generic_inst): Update to changes.
8284 (mono_metadata_get_generic_inst): Likewise. Use alloca instead of
8287 2009-01-27 Zoltan Varga <vargaz@gmail.com>
8289 * icall.c (ves_icall_System_Type_EqualsInternal): For user-defined types,
8290 return TRUE if the two type objects are the same.
8292 2009-01-26 Zoltan Varga <vargaz@gmail.com>
8294 * marshal.c (mono_marshal_load_type_info): Fill out info->min_align.
8295 (mono_class_native_size): Use klass->marshal_info->min_align instead of
8296 klass->min_align, since klass->min_align contains the managed alignment,
8297 while the native alignment can be different, like for longs on x86.
8300 * class-internals.h (MonoMarshalType): Add a min_align field.
8302 2009-01-26 Rodrigo Kumpera <rkumpera@novell.com>
8304 * assembly.c (mono_assembly_try_decode_skip_verification): Add a hack to check
8307 2009-01-26 Zoltan Varga <vargaz@gmail.com>
8309 * domain-internals.h (struct _MonoJitInfo): Add a 'from_aot' field plus
8310 some comments about the usage of the used_regs field.
8312 * marshal.c (emit_marshal_ptr): Allow pointers to blittable structures.
8315 2009-01-24 Gonzalo Paniagua Javier <gonzalo@novell.com>
8317 * appdomain.c: return NULL instead of throwing FileNotFoundException
8318 when LoadAssembly() fails.
8320 2009-01-23 Mark Probst <mark.probst@gmail.com>
8322 * metadata.c (mono_metadata_generic_param_equal): Only compare the
8323 image if the owner is NULL. Fixes the AOT failures.
8325 2009-01-23 Zoltan Varga <vargaz@gmail.com>
8327 * metadata.c (mono_metadata_load_generic_params): Initialize the
8328 MonoGenericParam structure using memset so the image field is initialized
8331 2009-01-21 Rodrigo Kumpera <rkumpera@novell.com>
8333 * appdomain.c (mono_domain_unload): Change the InterlockedIncrement to
8336 2009-01-21 Zoltan Varga <vargaz@gmail.com>
8338 * class.c (mono_class_setup_vtable_general): In the generic instance
8339 optimization, set method->slot for abstract virtual methods. Fixes part of
8342 2009-01-21 Rodrigo Kumpera <rkumpera@novell.com>
8344 * domain-internals.h: Add new appdomain state MONO_APPDOMAIN_UNLOADING_START
8345 which signals that the unloading has started but all appdomain services must
8348 * appdomain.c (mono_domain_unload): The initial state for unloading now
8349 is unloading_start and we switch to unloading after the managed call to
8350 AppDomain::DomainUnload has finished.
8352 The new unloading state has to be created because managed code in the
8353 DomainUnload event can depend on things like the threadpool still working.
8354 The domain must remain fully functional while the event executes.
8356 This shown as an issue due to Process::WaitForExit, which waits for
8357 async reads of stdout and stderr to complete. Since those are processed
8358 in the threadpool the code deadlocks because the DomainUnload callback
8359 waits for the async read finished event, which should have been set by a
8360 threadpool job but has been discarded due to the domain been in unload
8363 2009-01-21 Mark Probst <mark.probst@gmail.com>
8365 * metadata.c (mono_metadata_generic_param_equal): Owner as well as
8368 2009-01-21 Mark Probst <mark.probst@gmail.com>
8370 * reflection.c (resolve_object): For fields, inflate the class and
8371 then get the field in the inflated class.
8373 2009-01-20 Mark Probst <mark.probst@gmail.com>
8375 * object-internals.h (struct _MonoException): Added a comment
8376 explaining the new use of trace_ips.
8378 2009-01-20 Mark Probst <mark.probst@gmail.com>
8380 * generic-sharing.c (inflate_other_data): Inflate array methods
8383 * loader.c, class-internals.h: Rename search_in_array_class() to
8384 mono_method_search_in_array_class() and make it non-static.
8386 2009-01-19 Zoltan Varga <vargaz@gmail.com>
8388 * metadata.c (inflated_signature_in_image): Call signature_in_image as well.
8389 Hopefully fixes #458168.
8391 2009-01-19 Christian Hergert <christian.hergert@gmail.com>
8393 * object.c (mono_raise_exception): Remove call to InterlockedIncrement
8394 as it is performed elsewhere.
8396 Code is contributed under MIT/X11 license
8398 2009-01-19 Christian Hergert <christian.hergert@gmail.com>
8400 * mono-perfcounters-def.h: Add counters for asp.net requests total and
8402 * object.c (mono_raise_exception): Increment the exceptions total
8403 counter when an exception is thrown.
8404 * class-internals.h: Add a location for storing the total number of
8405 asp.net requests served.
8406 * mono-perfcounters.c: Implement update support for asp.net counters
8407 from the class libraries. Implement read support for asp.net counters
8408 and exceptions total counter.
8410 2009-01-19 Zoltan Varga <vargaz@gmail.com>
8412 * loader.c (search_in_array_class): Call mono_class_setup_methods () before
8413 accessing klass->methods. Fixes #467385.
8415 2009-01-18 Zoltan Varga <vargaz@gmail.com>
8417 * marshal.c (emit_marshal_custom): Avoid calling MarshalNativeToManaged
8418 for byval arguments without an [Out] attribute. Fixes #467212.
8420 * attach.c: Applied patch from Koushik Dutta (koush@koushikdutta.com).
8421 Fix compilation under android.
8423 * sgen-gc.c: Instead of scanning gray objects after all roots have been
8424 processed, scan them directly after they are copied, to achieve better locality
8427 * socket-io.c: Applied patch from Koushik Dutta
8428 (koush@koushikdutta.com). Disable IPV6 when running under android.
8430 2009-01-18 Zoltan Varga <vargaz@gmail.com>
8432 * icall.c (ves_icall_InternalExecute): Add write barriers.
8434 * marshal.c (mono_marshal_get_write_barrier): Remove, this is now done in
8437 * sgen-gc.c: Implement write barriers in IL code.
8439 2009-01-17 Geoff Norton <gnorton@novell.com>
8441 * image.c: Avoid trying to walk the reference table of dynamic assemblies.
8443 2009-01-17 Geoff Norton <gnorton@novell.com>
8445 * image.c: When unloading the image->references table, there can be gaps
8446 in it. Ensure that we iterate every entry to avoid leaking assembly references
8447 when unloading an appdomain.
8449 2009-01-16 Zoltan Varga <vargaz@gmail.com>
8451 * sgen-gc.c: Add support for allocating a nursery at an aligned address, to
8452 speed up ptr-in-nursery checks.
8454 * threads.c (mono_threads_abort_appdomain_threads): Abort threads outside the
8455 threads_lock () to prevent deadlocks.
8457 * sgen-gc.c gc-internal.h: Add a new root type root-with-wbarrier, which
8458 does not need to be scanned during minor collections, since writes to it
8459 must use write barriers.
8461 2009-01-15 Rodrigo Kumpera <rkumpera@novell.com>
8463 * metadata-verify.c: Add pe nt header verification.
8465 2009-01-15 Zoltan Varga <vargaz@gmail.com>
8467 * gc.c: Fix a few warnings when using SGEN.
8469 2009-01-14 Rodrigo Kumpera <rkumpera@novell.com>
8471 * metadata-verify.c: Add pe optional header verification.
8473 2009-01-15 Zoltan Varga <vargaz@gmail.com>
8475 * sgen-gc.c: Add support for user defined marker functions, used by
8476 MonoGHashTable to avoid registering a GC root for every hash node.
8478 2009-01-14 Zoltan Varga <vargaz@gmail.com>
8480 * sgen-gc.c: Fix warnings. Optimize copy_object () a bit. Split pinned/
8481 non-pinned roots into separate hashes to avoid having to traverse them
8482 in functions which are only interested in one kind.
8484 2009-01-13 Rodrigo Kumpera <rkumpera@novell.com>
8486 * metadata-verify.c: Add pe header machine field verification.
8488 2009-01-13 Rodrigo Kumpera <rkumpera@novell.com>
8490 * metadata-verify.c: Add pe header size verification.
8492 2009-01-14 Zoltan Varga <vargaz@gmail.com>
8494 * reflection.c (ALLOC_REFENTRY): Don't allocate the ReflectionEntry structures
8495 using the GC, they don't contain references.
8497 * domain.c (mono_domain_create): Create ldstr_table using MONO_HASH_KEY_VALUE_GC.
8499 2009-01-13 Geoff Norton <gnorton@novell.com>
8501 * appdomain.c|h: Expose mono_domain_unload to the embedding api so that
8502 AppDomains created on the native side can be cleaned up on the native side.
8504 2009-01-13 Geoff Norton <gnorton@novell.com>
8506 * appdomain.c: Ensure that we call mono_context_init for the embedding api
8507 as well as the managed api.
8509 2009-01-13 Geoff Norton <gnorton@novell.com>
8511 * appdomain.h|c: New API for creating a MonoDomain in the embedding api
8512 with a MonoAppDomain initialized against it.
8514 2009-01-13 Zoltan Varga <vargaz@gmail.com>
8516 * reflection.c (MOVING_GC_REGISTER): Fix a warning.
8518 * reflection.c (mono_image_get_generic_param_info): Use MOVING_GC_REGISTER.
8520 * marshal.c: Avoid setting the exception clauses after a method has been entered
8521 into the wrapper caches. Fixes #465700.
8523 * method-builder.c (mono_mb_set_clauses): New function to set the clauses of the
8525 (mono_mb_create_method): Set the clauses from the method builder.
8527 2009-01-13 Gonzalo Paniagua Javier <gonzalo@novell.com>
8529 * threadpool.c: include sys/socket.h. Fixes compilation on FreeBSD.
8530 Patch from Makoto Kishimoto.
8532 2009-01-13 Zoltan Varga <vargaz@gmail.com>
8534 * sgen-gc.c (mono_gc_make_descr_from_bitmap): Handle large bitmaps by
8535 encoding them as ROOT_DESC_COMPLEX.
8536 (precisely_scan_objects_from): Implement support for ROOT_DESC_COMPLEX.
8538 2009-01-12 Zoltan Varga <vargaz@gmail.com>
8540 * sgen-gc.c (scan_from_remsets): Clear the global remset of pointers which
8541 no longer point to the nursery.
8543 * sgen-gc.c: Add a few comments/FIXMEs.
8545 * sgen-gc.c: Implement scanning of the alloc_pinned objects.
8547 * marshal.c (mono_marshal_get_synchronized_wrapper): Make the
8548 initialization of the various _method variables thread safe. Fixes
8551 2009-01-12 Mark Probst <mark.probst@gmail.com>
8553 * domain.c, domain-internals.h: Remove the shared_generics_hash
8554 and its lookup functions.
8556 2009-01-12 Bill Holmes <billholmes54@gmail.com>
8558 * socket-io.c: Fixing the MSVC build.
8560 Code is contributed under MIT/X11 license.
8562 2009-01-12 Rodrigo Kumpera <rkumpera@novell.com>
8564 * metadata-verify.c: Add pe header watermark verification.
8566 2009-01-09 Rodrigo Kumpera <rkumpera@novell.com>
8568 * metadata-verify.c: Add lfanew verification.
8570 2009-01-12 Jb Evain <jbevain@novell.com>
8572 * tabldefs.h: rename METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE to
8573 METHOD_ATTRIBUTE_STRICT to match the ECMA terminology.
8575 2009-01-10 Zoltan Varga <vargaz@gmail.com>
8577 * socket-io.c: Fix the build.
8579 * environment.c: Fix an #ifdef.
8581 2009-01-09 Zoltan Varga <vargaz@gmail.com>
8583 * threadpool.c (async_invoke_thread): Handle the wait function returning
8584 WAIT_IO_COMPLETION as well.
8585 (async_invoke_io_thread): Ditto.
8587 2009-01-09 Bill Holmes <billholmes54@gmail.com>
8589 * threads.c: Fixing the Windows build.
8591 Code is contributed under MIT/X11 license.
8593 2009-01-09 Zoltan Varga <vargaz@gmail.com>
8595 * threads.c (signal_thread_state_change): Call wapi_interrupt_thread () to
8597 (mono_thread_execute_interruption): Call wapi_clear_interruption () to enable
8598 the thread to wait again.
8600 2009-01-09 Rodrigo Kumpera <rkumpera@novell.com>
8602 * metadata-verify.c: Initial skeleton of the metadata verifier.
8604 * pedump.c: Add support for the metadata verifier.
8606 * verify-internal.h: Export the whole assembly metadata verifier function.
8608 2009-01-09 Rodrigo Kumpera <rkumpera@novell.com>
8610 * gc.c (mono_gc_init): Fix the comments about deadlock on windows.
8612 2009-01-09 Zoltan Varga <vargaz@gmail.com>
8614 * Makefile.am: Upgrade dtrace-prelink.sh location.
8616 2009-01-08 Rodrigo Kumpera <rkumpera@novell.com>
8618 * gc.c (mono_gc_init): Wait for finalizer thread to init on windows as
8619 well. Otherwise the shutdown deadlock that happens on unix will can happen
8621 If the main thread code finishes too fast it's possible that the finalizer
8622 thread won't have executed yet, won't record itself as the finalizer thread
8623 and the shutdown sequence will wait on it forever.
8625 2009-01-08 Rodrigo Kumpera <rkumpera@novell.com>
8627 * threads.c (mono_thread_current): Make THREAD_DEBUG work on windows
8630 2009-01-08 Miguel de Icaza <miguel@novell.com>
8632 * appdomain.c: Initialize the mono_strtod_mutex here, thanks to
8633 Robert Jordan for pointing this out.
8635 2009-01-08 Christian Prochnow <cproch@seculogix.de>
8638 * icall-def.h: added internal calls ves_icall_System_IO_DriveInfo_GetDiskFreeSpace,
8639 ves_icall_System_IO_DriveInfo_GetDriveType.
8641 2009-01-07 Miguel de Icaza <miguel@novell.com>
8643 * icall.c: Wrap calls to mono_strtod in CriticalSection
8644 invocations when using eglib, to work around #464316.
8646 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
8648 * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Double check the
8649 return value of GetCurrentDirectory to never access unitialized memory.
8651 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
8653 * file-io.c (ves_icall_System_IO_MonoIO_GetCurrentDirectory): Properly check the
8654 return value of GetCurrentDirectory and expand the buffer if needed.
8658 2009-10-07 Tom Hindle <tom_hindle@sil.org>
8660 * marshal.c (GetIUnknownForObjectInternal, GetIUnknownForObjectInternal) :
8661 Adding a call to mono_init_com_types.
8663 Code is contributed under MIT/X11 license.
8665 2009-01-07 Geoff Norton <gnorton@novell.com>
8667 * socket-io.c: ioctlsocket(FIONREAD) returns the size of the UDP header as well on
8668 darwin. Use getsockopt SO_NREAD instead to get the right values for TCP and UDP.
8669 ai_canonname can be null in some cases on darwin, where the runtime assumes it will
8670 be the value of the ip buffer.
8672 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
8674 * verify.c (mono_class_interface_implements_interface): Verify parents as we can't rely on
8675 interfaces_packed here.
8677 Fixes part of #463294.
8679 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
8681 * verify.c (is_array_type_compatible): Ignore bounds and sizes when checking array compatibility.
8683 Fixes part of #463294.
8685 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
8687 * verify.c (stack_slot_is_complex_type_not_reference_type): Check if the type
8688 is a boxed complex as well.
8690 Fixes part of #463294.
8692 2009-01-06 Rodrigo Kumpera <rkumpera@novell.com>
8694 * reflection.c (mono_image_get_methodref_token): Add an extra create_typespec parameter to
8695 control if a methodspec should be created for the generic method definition from external assemblies.
8696 Caching of methodspec is done using the handleref hash table.
8700 2009-01-05 Rodrigo Kumpera <rkumpera@novell.com>
8702 * loader.c (find_method): When searching the interfaces of a class
8703 check the transitive closure of implemented interfaces.
8707 2009-01-03 Rodrigo Kumpera <rkumpera@novell.com>
8709 * class.c (get_implicit_generic_array_interfaces): Improve debugging code.
8711 2009-01-03 Rodrigo Kumpera <rkumpera@novell.com>
8713 * class.c (get_implicit_generic_array_interfaces): Extract valuetype
8714 interfaces calculation to fill_valuetype_array_derived_types.
8716 * class.c (get_implicit_generic_array_interfaces): Valuetypes need IList /
8717 ICollection / IEnumerator interfaces for their extra twin type - sbyte for byte
8720 * class.c (get_implicit_generic_array_interfaces): InternalEnumerator gets
8721 interfaces for valuetypes if needed.
8723 * class.c (fill_valuetype_array_derived_types): Enums should have interfaces
8724 for their basetype as well. Types are array expanded if rank is > 0.
8728 2008-12-30 Bill Holmes <billholmes54@gmail.com>
8730 * socket-io.h : Changing the signature of
8731 ves_icall_System_Net_Sockets_Socket_Accept_internal to pass
8734 * icall-def.h : Changing the signature of
8735 System.Net.Sockets.Socket.Accept_internal to pass the blocking state.
8737 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Accept_internal) :
8738 For Windows only. Avoid blocking when calling accept by
8739 querying for a connection via select. The loop also queries
8740 the thread state every 1000 micro seconds for the thread
8741 stop state. This will avoid the process hanging on shutdown
8742 when using a TcpChannel that is never connected to.
8744 Code is contributed under MIT/X11 license.
8746 2008-12-30 Marek Safar <marek.safar@gmail.com>
8748 * tabledefs.h: Add METHOD_ATTRIBUTE_CHECK_ACCESS_ON_OVERRIDE.
8750 2008-12-26 Rodrigo Kumpera <rkumpera@novell.com>
8752 * class.c (get_implicit_generic_array_interfaces): Extract common
8753 code to a helper function making it a lot easier on the eyes.
8755 2008-12-26 Rodrigo Kumpera <rkumpera@novell.com>
8757 * class.c (get_implicit_generic_array_interfaces): If the internal
8758 enumerator is an interface inflate System.Object instead of itself.
8762 2008-12-24 Rodrigo Kumpera <rkumpera@novell.com>
8764 * object.c (mono_runtime_invoke_array): Don't assert with
8765 byref nullable types.
8767 * marshal.c (mono_marshal_get_runtime_invoke): To handle
8768 byref nullables we unbox the object and store it on the
8770 We can't use the boxed object since it is the T of Nullable<T>
8771 and the boxed representation of a nullable it's underlying type
8773 We could cheat and create a boxed nullable and use the same
8774 machinery of other byref VTs but this feels like a hack and
8775 using the stack has the bonus of reducing heap pressure.
8779 2008-12-23 Rodrigo Kumpera <rkumpera@novell.com>
8781 * marshal.c (mono_marshal_emit_managed_wrapper): Handle char
8786 2008-12-19 Bill Holmes <billholmes54@gmail.com>
8788 * icall-def.h : Adding an internal call definition for
8789 System.Environment.internalBroadcastSettingChange.
8791 * icall.c : Adding a Windows only implementation to broadcast a
8792 WM_SETTINGCHANGE when an environment variable has changed.
8794 Code is contributed under MIT/X11 license.
8796 2008-12-19 Mark Probst <mark.probst@gmail.com>
8798 * class.c, class-internals.h: Made
8799 mono_class_has_parent_and_ignore_generics() non-static.
8801 Thu Dec 18 16:35:22 CET 2008 Paolo Molaro <lupus@ximian.com>
8803 * image.c: deal with the mmap failing when loading an image.
8805 2008-12-17 Geoff Norton <gnorton@novell.com>
8807 * threadpool.c: Ensure that the io_queue_lock is initialized
8808 in all circumstances, as we always attempt to cleanup against it.
8810 2008-12-17 Miguel de Icaza <miguel@novell.com>
8812 * icall.c (ves_icall_System_Environment_get_Platform): For
8813 compatibility reasons for existing client code we will keep
8814 returning 4 for a while.
8816 For how long will depend on the documentation being updated, and
8817 for us to give client code a chance to be updated.
8819 This reverts the original decison on #433108 since we did not
8820 catch roughly 33 instances of the broken code in our own source
8821 code base, we did not catch failures on the buildbots, and QA did
8822 not bring this as a problem.
8824 Only today I found some customer's code breaking due to our own
8825 class libraries not being fully updated and tracked it down to
8826 this change. I am reverting it because if we could not even get
8827 our story straight in our own code base, how can we hope that our
8828 end user code be fixed?
8830 As of this morning, our Wiki page that documents how to detect
8831 Unix had not been fixed.
8833 2008-12-16 Zoltan Varga <vargaz@gmail.com>
8835 * metadata.c (inflated_method_in_image): Add a workaround for #458168.
8837 * class.c (mono_class_get_fields): Handle loading errors.
8839 2008-12-12 Mark Mason <mmason@upwardaccess.com>
8841 * 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.
8843 2008-12-12 Gonzalo Paniagua Javier <gonzalo@novell.com>
8845 * mono-perfcounters.c: avoid warning.
8847 2008-12-12 Rodrigo Kumpera <rkumpera@novell.com>
8849 * reflection.c (ensure_runtime_vtable): Work on generic instances and
8850 make sure all interfaces have MonoClass::interface_id set.
8852 * reflection.c (ensure_generic_class_runtime_vtable): Ensure the
8853 method table is property set.
8855 2008-12-12 Rodrigo Kumpera <rkumpera@novell.com>
8857 * class.c: New function mono_class_setup_interface_id that setup
8858 MonoClass::interface_id if needed.
8860 * class-internals.h: Export new function.
8862 2008-12-12 Rodrigo Kumpera <rkumpera@novell.com>
8864 * class.c: Add code to sanity check the vtable after setup_vtable_general
8867 2008-12-11 Gonzalo Paniagua Javier <gonzalo@novell.com>
8869 * icall.c: make Assembly.GetExecutingAssembly work properly when
8870 reflection is used to invoke the method.
8873 2008-12-11 Mark Probst <mark.probst@gmail.com>
8875 * metadata/generic-sharing.c: Look for constraints in all type
8876 arguments, not just the first one.
8878 2008-12-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
8880 * appdomain.c: return the correct CodeBase for an Assembly instance
8881 that was loaded from the shadow-copy directories.
8884 2008-12-10 Zoltan Varga <vargaz@gmail.com>
8886 * sgen-gc.c (build_nursery_fragments): Clear nursery_next/nursery_frag_real_end.
8888 * sgen-gc.c (check_object): New debugging helper function.
8890 * object.c: Fix calls to mono_value_copy_array ().
8892 2008-12-10 Rodrigo Kumpera <rkumpera@novell.com>
8894 * class.c (mono_class_setup_fields): If working on an inflated class
8895 first check if the generic definition did init with success.
8899 2008-12-10 Rodrigo Kumpera <rkumpera@novell.com>
8901 pedump.c (main): Fix a warning.
8903 2008-12-10 Bill Holmes <billholmes54@gmail.com>
8905 * object-internals.h : Adding a definition for
8906 MonoReflectionComVisibleAttribute.
8908 * marshal.c (cominterop_com_visible) : Method added to check the
8909 ComVisible attribute of a class.
8911 * marshal.c (cominterop_raise_hr_exception, cominterop_get_interface) :
8912 cominterop_raise_hr_exception added to consolidate common code
8913 to raise hr exceptions.
8915 * marshal.c (cominterop_can_support_dispatch) : Method added to determine
8916 if a managed class should support IDispatch.
8919 (cominterop_get_idispatch_for_objec, cominterop_ccw_queryinterfacet) :
8920 Added additional checks for managed object when getting
8921 an IDispatch interface.
8923 Code is contributed under MIT/X11 license.
8925 2008-12-10 Rodrigo Kumpera <rkumpera@novell.com>
8927 pedump.c (main): Handle mono_get_method () returning NULL.
8929 2008-12-09 Zoltan Varga <vargaz@gmail.com>
8931 * marshal.h: Fix a warning.
8933 2008-12-09 Bill Holmes <billholmes54@gmail.com>
8935 * marshal.c : Adding cominterop_release_all_rcws to release all
8936 runtime callable wrappers held by the runtime.
8938 * marshal.h : Adding declaration for cominterop_release_all_rcws.
8940 Code is contributed under MIT/X11 license.
8942 2008-12-09 Zoltan Varga <vargaz@gmail.com>
8944 * metadata.c (mono_image_alloc_lock): New helper function.
8945 (mono_image_alloc0_lock): Ditto.
8947 * metadata.c: Use the alloc_lock () helper functions for allocating
8948 memory from the image mempool.
8950 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
8952 * class.c (mono_class_from_generic_parameter): Document it's
8953 locking behavior. Fix double checked locking here, we stored in
8954 param->pklass a partially initialized MonoClass and no membar was used.
8956 2008-12-05 Marek Habersack <mhabersack@novell.com>
8958 * sysmath.c (ves_icall_System_Math_Round2): if round (3) and rint
8959 (3) functions are present in the C library use them to do the
8960 job. If they are absent, make sure that the sum of int_part and
8961 dec_part is rounded before returning. This is necessary due to the
8962 division of dec_part by the power of 10 before the final addition
8963 is performed - if the result is not rounded in some cases it will
8964 yield invalid results.
8966 2008-12-04 Zoltan Varga <vargaz@gmail.com>
8968 * marshal.c (mono_marshal_emit_native_wrapper): Add AOT support for pinvoke
8969 wrappers by emitting the function address using a CEE_MONO_ICALL_ADDR
8970 instruction instead of a pointer constant.
8972 2008-12-03 Zoltan Varga <vargaz@gmail.com>
8974 * loader.c (mono_method_get_header): Do most of the work outside the
8975 loader lock, to avoid assembly load hook deadlocks.
8977 * metadata.c (mono_metadata_parse_mh_full): Use finer-grained locking.
8978 (mono_metadata_parse_type_full): Ditto.
8980 2008-12-02 Rodrigo Kumpera <rkumpera@novell.com>
8982 * mempool.c (mono_backtrace): Take the number of allocated bytes as argument.
8983 Make the stack depth fixed. Ensure proper argument passing to the backtrace
8984 funtions. Finally, use a lock to produce well ordered output.
8986 The lock looks silly, as all calls to the corlib mempool should be guarded
8987 with the loader lock, but for some reason this fact doesn't help.
8989 * mempool.c (mono_mempool_alloc0): Add support for TRACE_ALLOCATIONS.
8991 2008-12-02 Mark Probst <mark.probst@gmail.com>
8993 * socket-io.c: 64 bit big-endian fixes.
8995 2008-12-01 Rodrigo Kumpera <rkumpera@novell.com>
8997 * verify.c (is_compatible_boxed_valuetype): Rewrite function to work properly with
8998 targets that require strict compatibility between the types.
9000 * verify.c (verify_stack_type_compatibility_full): Boxed values are not compatible
9001 to unboxed types. All cases that this is true are checked by is_compatible_boxed_valuetype.
9002 Kill the strict argument and create a new one valuetype_must_be_boxed.
9004 * verify.c (verify_delegate_compatibility): Use verify_stack_type_compatibility_full to
9005 state that all valuetypes must be boxed.
9009 2008-11-29 Kornél Pál <kornelpal@gmail.com>
9011 * coree.c (MonoFixupExe): Use sizeof(IMAGE_BASE_RELOCATION) instead of
9012 IMAGE_SIZEOF_BASE_RELOCATION as newer Vista SDKs no longer define the latter.
9014 Contributed under MIT/X11 license.
9016 2008-11-28 Rodrigo Kumpera <rkumpera@novell.com>
9018 * class.c (mono_class_setup_fields): Don't copy MonoType::attrs as
9019 the inflate_generic_type machinery should handle it.
9021 This avoids a crash when the field's flags is zero and it's type is
9023 What happens is that mono_metadata_parse_type_full will see that opt_attrs
9024 is zero and will return one of the cached built-in primitive types. Since
9025 those types live in read-only memory, the code that copies it crashes.
9027 2008-11-28 Mark Probst <mark.probst@gmail.com>
9029 * object.c: Don't put function descriptors into generalized IMT
9032 2008-11-28 Mark Probst <mark.probst@gmail.com>
9034 * class.c: Enable generic code sharing on PPC64.
9036 2008-11-27 Mark Probst <mark.probst@gmail.com>
9038 * mempool.c, mempool-internals.h: Added g_slist_append_mempool()
9041 * generic-sharing.c: Allocate the method template slists from the
9042 image mempool so it doesn't leak.
9044 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
9046 * class.c (generic_array_methods): Release the linked list.
9048 2008-11-27 Mark Probst <mark.probst@gmail.com>
9050 * marshal.c (mono_string_builder_to_utf8): Fixed a wrong
9051 invocation to g_utf16_to_utf8().
9053 2008-11-26 Mark Probst <mark.probst@gmail.com>
9055 * icall.c (mono_ArgIterator_IntGetNextArg): Handle sub-word sized
9056 arguments on big endian archs.
9058 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9060 * reflection.c: (_mono_reflection_parse_type) skip leading spaces in
9061 the type name (test added in corlib).
9063 2008-11-25 Gonzalo Paniagua Javier <gonzalo@novell.com>
9065 * pedump.c: initialize perf. counters. Fixes a segv.
9067 2008-11-25 Martin Baulig <martin@ximian.com>
9069 * mono-debug-debugger.c
9070 (mono_debugger_runtime_invoke): Return the exception object if an
9071 exception was thrown. Visual Studio displays the exception object
9072 in the locals window.
9074 2008-11-24 Mark Probst <mark.probst@gmail.com>
9076 * mini-trampolines.c (mono_delegate_trampoline): Don't return a
9079 2008-11-24 Mark Probst <mark.probst@gmail.com>
9081 * marshal.c (mono_type_native_stack_size): MONO_TYPE_I and
9082 MONO_TYPE_U are sizeof (gpointer), too.
9084 2008-11-24 Mark Probst <mark.probst@gmail.com>
9086 * marshal.c (mono_type_native_stack_size): Fixed size and
9087 alignment for reference types.
9089 2008-11-23 Mark Probst <mark.probst@gmail.com>
9091 * class.c (mono_class_generic_sharing_enabled): Disable generic
9092 code sharing for PPC64.
9094 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
9096 * icall.c (mono_method_get_equivalent_method): Make sure
9097 method->klass->methods is inited before looping over it.
9099 2008-11-20 Gonzalo Paniagua Javier <gonzalo@novell.com>
9101 * object.c: when calling ExecuteAssembly in a newly created domain,
9102 the configuration file and application base are already set up.
9103 Bug #446353 take 2 fixed.
9105 2008-11-20 Zoltan Varga <vargaz@gmail.com>
9107 * marshal.c: Add support for MONO_TYPE_GENERICINST to some functions.
9108 Fixes #444715. Fix a warning.
9110 2008-11-18 Gonzalo Paniagua Javier <gonzalo@novell.com>
9112 * appdomain.c: write the full path of the assembly to the .ini file
9113 created when "shadow-copying"
9116 2008-11-18 Zoltan Varga <vargaz@gmail.com>
9118 * debug-helpers.c (mono_method_full_name): Stringify wrapper types even
9119 if signature==FALSE.
9121 2008-11-17 Bill Holmes <billholmes54@gmail.com>
9123 * marshal.h : Fix the cygwin build.
9124 marshal.c:12442: undefined reference to `_IID_IMarshal'
9126 Code is contributed under MIT/X11 license.
9128 2008-11-17 Bill Holmes <billholmes54@gmail.com>
9130 * marshal.h : cominterop_ccw_getfreethreadedmarshaler added to return the
9131 free threaded marshaler when QueryInterface is called on a COM callable
9132 wrapper requesting the IMarshal interface.
9134 Code is contributed under MIT/X11 license.
9136 2008-11-14 Zoltan Varga <vargaz@gmail.com>
9138 * domain-internals.h (MonoDomain): Update MONO_DOMAIN_LAST_GC_TRACKED.
9140 * reflection.c (mono_type_get_object): Special case the very common
9143 * domain-internals.h (struct _MonoDomain): Add 'typeof_void' field to
9146 2008-11-13 Bill Holmes <billholmes54@gmail.com>
9148 * process.h : Adding method declaration for
9149 ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9151 * process.c : Adding implementation for
9152 ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9154 * icall-def.h : Registering ICALL Processs.WaitForInputIdle_internal
9155 to ves_icall_System_Diagnostics_Process_WaitForInputIdle_internal.
9157 Code is contributed under MIT/X11 license.
9159 2008-11-10 Rodrigo Kumpera <rkumpera@novell.com>
9161 * appdomain.c (unload_thread_main): Clean up threadpool by
9162 calling mono_thread_pool_remove_domain_jobs.
9164 * domain-internals.h (struct _MonoDomain): Add new fields to
9165 help coordinate the cleanup of the threadpool.
9167 * threadpool.c (mono_thread_pool_remove_domain_jobs): New fuction
9168 that cleans up the threadpool of all jobs associated with an appdomain.
9169 It does that by cleaning up the queues and making sure all active
9170 threads are accounted.
9172 * threadpool.c (async_invoke_io_thread): Ignore job if its domain is
9173 unloaded or in the process of. Take this is such way that there is
9174 no race condition between another thread starting the unload and the
9175 current thread acknowledging it.
9177 * threadpool.c (async_invoke_thread): Same.
9179 * threadpool.c (start_io_thread_or_queue): Increment threadpool_jobs before
9180 firing the new thread.
9182 * threadpool.c (start_tpthread): Same.
9184 * theadpool.c (append_job): Increment threadpool_jobs before queueing.
9186 * threadpool.h: Add mono_thread_pool_remove_domain_jobs.
9188 2008-11-06 Jonathan Chambers <joncham@gmail.com>
9190 * file-io.c (ves_icall_System_IO_MonoIO_DuplicateHandle):
9191 Add support for DuplicateHandle.
9193 * file-io.h (ves_icall_System_IO_MonoIO_DuplicateHandle):
9194 Add support for DuplicateHandle.
9196 * icall-def.h (ves_icall_System_IO_MonoIO_DuplicateHandle):
9197 Add support for DuplicateHandle.
9199 Code is contributed under MIT/X11 license.
9201 2008-11-06 Mark Probst <mark.probst@gmail.com>
9203 * class-internals.h: Make min_align into a whole byte.
9205 * class.c: Set min_align for SIMD types to 16.
9207 2008-11-05 Geoff Norton <gnorton@novell.com>
9209 * attach.c: Default the attacher to enabled for all cases including
9212 Wed Nov 5 16:33:41 CET 2008 Paolo Molaro <lupus@ximian.com>
9214 * monitor.c, class-internals.h, wrapper-types.h: revert incorrect
9217 2008-11-04 Mark Probst <mark.probst@gmail.com>
9219 * monitor.c, monitor.h: New function for querying offsets of
9220 members of MonoThreadsSync.
9222 2008-11-04 Zoltan Varga <vargaz@gmail.com>
9224 * marshal.c (mono_marshal_get_runtime_invoke): Use runtime_invoke_direct_cache
9225 to speed up this function and to avoid the boundless memory growth caused by
9226 the signature_dup () calls.
9228 2008-11-02 Zoltan Varga <vargaz@gmail.com>
9230 * monitor.c (mono_monitor_get_fast_enter_method): Add a proper type for the
9233 * class-internals.h (struct _MonoMethod): Increase the size of 'wrapper_type'
9236 * wrapper-types.h: Add MONO_WRAPPER_MONITOR_FAST_ENTER/EXIT.
9238 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9241 * domain-internals.h: made mono_set_private_bin_path_from_config()
9243 * object.c: call the above function after setting the configuration
9244 file path for the root domain.
9247 2008-10-31 Gonzalo Paniagua Javier <gonzalo@novell.com>
9249 * assembly.c: when the assembly is loaded from an absolute path, end
9250 basedir with a directory separator.
9253 2008-10-30 Mark Probst <mark.probst@gmail.com>
9255 * monitor.c (mono_monitor_get_fast_enter_method): If
9256 CompareExchange is not available, don't create the fastpath
9257 instead of asserting. (The method is missing in the 1.1 profile.)
9259 2008-10-30 Mark Probst <mark.probst@gmail.com>
9261 * marshal.c, marshal.h: Rename signature_no_pinvoke() and make it non-static.
9263 * monitor.c, monitor.h: Code for generating Monitor.Enter and
9264 Monitor.Exit IL fastpaths.
9266 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
9268 * class.c (mono_class_create_from_typedef): Added Vector2ul.
9270 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
9272 * class.c (mono_class_create_from_typedef): Added Vector2l.
9274 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
9276 * class.c (mono_class_create_from_typedef): Added Vector2d.
9278 2008-10-27 Gonzalo Paniagua Javier <gonzalo@novell.com>
9280 * appdomain.c: translate \ into / for cache_path.
9281 * domain-internals.h: new mono_is_shadow_copy_enabled().
9282 * icall.c: (fill_reflection_assembly_name) do the same path
9283 manipulations that get_code_base does.
9284 (get_code_base) use mono_is_shadow_copy_enabled.
9286 2008-10-26 Gonzalo Paniagua Javier <gonzalo@novell.com>
9288 * appdomain.c: shadow-copied assemblies go to CachePath +
9289 ApplicationName when both are set. DynamicBase has nothing to do with
9293 2008-10-26 Zoltan Varga <vargaz@gmail.com>
9295 * reflection.c (encode_locals): Use a cache to avoid duplicate entries in the
9296 STANDALONESIG table.
9298 * metadata-internals.h (struct _MonoDynamicImage): Add cache for
9299 standalone signatures.
9301 * marshal.c (mono_marshal_get_runtime_invoke): Rewrite the signature
9302 comparison code: instead of comparing the signatures using a custom
9303 equals function, transform them to a common signature and compare that. This
9304 works better with AOT.
9306 2008-10-25 Zoltan Varga <vargaz@gmail.com>
9308 * Reapply r116521 with (!mono_debug_using_mono_debugger ()) checks.
9310 * class.c (mono_class_init): Remove unneccesary mono_class_setup_properties ()
9311 call for generic instances.
9312 (mono_class_setup_properties): Call setup_properties () before accessing
9315 * class.c (mono_class_get_virtual_methods): New helper function to iterate
9316 over the virtual methods of a class using metadata if possible, avoiding the
9317 creation of MonoMethod's for non-virtual methods.
9319 * class.c (mono_class_setup_vtable_general): Rewrite this to use
9320 get_virtual_methods () to iterate over the virtual methods of classes.
9322 2008-10-25 Martin Baulig <martin@ximian.com>
9324 * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_DEAD): New #define.
9326 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
9328 * class.c (mono_class_create_from_typedef): Added Vector4i.
9330 2008-10-24 Mark Probst <mark.probst@gmail.com>
9332 * marshal.c (mono_marshal_get_synchronized_wrapper): Emit
9333 ldtoken+GetTypeFromHandle instead of i4+icall so that the JIT
9334 special-casing applies to eliminate the call completely.
9336 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
9338 * class.c (mono_class_create_from_typedef): Added Vector8s.
9340 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
9342 * class.c (mono_class_create_from_typedef): Added Vector16sb.
9344 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9346 * icall.c: get rid of annoying warning.
9348 2008-10-23 Gonzalo Paniagua Javier <gonzalo@novell.com>
9350 * threadpool.c: in 1.x, if you change the background status of the
9351 threadpool thread, it's not reset.
9352 Remove unnecessary calls to SetState.
9354 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9356 * threadpool.c: asynchronously create a set of idle threads upon first
9357 use of the threadpool. SetMinThreads will now start the appropriate
9358 number of idle threads if they are not already running. The default is
9359 1 threadpool thread per CPU. Increased the maximum number of threads
9362 2008-10-22 Martin Baulig <martin@ximian.com>
9364 Revert r116521 from Zoltan, it breaks the debugger:
9366 * class.c (mono_class_get_virtual_methods): New helper function to iterate
9367 over the virtual methods of a class using metadata if possible, avoiding the
9368 creation of MonoMethod's for non-virtual methods.
9370 * class.c (mono_class_setup_vtable_general): Rewrite this to use
9371 get_virtual_methods () to iterate over the virtual methods of classes.
9373 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9375 * threads.c: when creating a threadpool thread, set its state to
9377 * threadpool.c: reset the background state of a threadpool thread
9378 after finishing each work item
9381 2008-10-22 Zoltan Varga <vargaz@gmail.com>
9383 * class.c (mono_class_get_vtable_entry): Add an optimization for szarrays.
9385 * class.c (mono_class_setup_vtable_general): Add an optimized version for
9386 generic instances which works by inflating the methods in the container
9389 * class.c (mono_class_inflate_generic_type_with_mempool_no_copy): New
9390 variant which doesn't make a copy if no inflation was done.
9391 (mono_class_setup_fields): Use it.
9393 * metadata.c (mono_metadata_get_shared_type): New helper function to
9394 return a shared instance of a given MonoType.
9396 * class.c (mono_class_inflate_generic_type_with_mempool): Avoid making
9397 a copy of most non-generic types.
9399 Wed Oct 22 18:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
9401 * threadpool.c: remove one more GetSystemInfo () call.
9403 Wed Oct 22 17:45:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
9405 * mono-perfcounters.c, icall-def.h, environment.c, environment.h:
9406 use the code in mono-proclib.h to get processor information.
9408 2008-10-22 Gonzalo Paniagua Javier <gonzalo@novell.com>
9410 * appdomain.c: fixed the logic that determines whether assemblies in a
9411 directory are "shadow-copied" or not. Bug #433483 fixed.
9413 2008-10-22 Zoltan Varga <vargaz@gmail.com>
9415 * process.c (ves_icall_System_Diagnostics_Process_GetProcessData): Fix a
9418 2008-10-21 Zoltan Varga <vargaz@gmail.com>
9420 * marshal.c (runtime_invoke_signature_equal): Don't shared wrappers
9423 * class.c debug-helpers.c object.c class-internals.h marshal.c icall.c
9424 reflection.c: Use mono_field_get_name () for accessing a field's name.
9426 * class-internals.h (MONO_CLASS_HAS_STATIC_METADATA): Move this here from
9429 * class.c (mono_field_get_rva): Fix crash if this is called on a dynamic
9432 * loader.c (find_method_in_class): Reenable the metadata optimization by
9433 not using it for generic instances.
9435 * class-internals.h (MonoFieldDefaultValue): Extract the rarely used
9436 data/def_type fields from MonoClassField into a separate structure.
9437 (struct MonoClassField): Remove data/def_type fields.
9438 (struct _MonoClass): Add a 'field_def_values' array to store the default
9439 values/RVA for fields.
9441 * class.c reflection.c: Update after the changes.
9443 * object.c (mono_class_create_runtime_vtable): Use mono_field_get_data ()
9444 for accessing field->data.
9446 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_InitializeArray): Ditto.
9448 * loader.c (find_method_in_class): Revert the last change for now as
9449 it breaks Mono.C5 unit tests.
9451 * class-internals.h (struct _MonoDynamicGenericClass): Add fields
9452 'field_generic_types' and 'field_objects' which contain the information
9453 previously stored in MonoInflatedField.
9454 (MonoInflatedField): Delete.
9455 (struct _MonoClassField): Delete 'generic_info' field.
9457 * reflection.c: Store the information which was previously in
9458 field->generic_info in MonoDynamicGenericClass instead.
9460 * metadata.c (free_generic_class): Update after MonoDynamicGenericClass/
9461 MonoClassField changes.
9463 Tue Oct 21 17:07:55 CEST 2008 Paolo Molaro <lupus@ximian.com>
9465 * marshal.c, method-builder.c: get rid of wrapper_hash and instead
9466 store the value inside the data array of the MonoMethodWrapper.
9467 This saves memory, is faster and fixes the lifetime issues (methods
9468 were never removed from the hash previously). May also fix bug#436996.
9470 2008-10-21 Zoltan Varga <vargaz@gmail.com>
9472 * reflection.c (mono_image_get_fieldref_token): For fields of non-dynamic
9473 generic instances, compute the type from the generic definition instead of
9474 looking in field->generic_info.
9476 * class.c (mono_class_setup_fields): Don't create a MonoInflatedField
9477 for inflated fields, the only user was get_fieldref_token () which no
9480 * class.c (mono_class_init): Revert the last change as it seems to cause
9483 * class-internals.h (struct _MonoClassField): Reorder fields to save 4
9484 bytes on 64 bit platforms.
9486 * object.c (mono_class_create_runtime_vtable): Fix a warning.
9488 * object.c (mono_class_create_runtime_vtable): Don't initalize
9489 field->data/field->def_type here, it is done lazily by
9490 mono_class_get_field_default_value ().
9492 * icall.c (ves_icall_get_enum_info): Call
9493 mono_class_get_field_default_value () instead of directly accessing
9494 field->data and field->def_type.
9496 * object.c (get_default_field_value): Ditto.
9498 * class.c (mono_field_get_data): Ditto.
9500 * class.c (mono_class_init): Remove unneccesary mono_class_setup_methods ()
9501 call for generic instances.
9503 * loader.c (find_method_in_class): If klass != from_class, then inflate
9504 the method with the context of from_class, since the caller assumes this.
9506 2008-10-20 Zoltan Varga <vargaz@gmail.com>
9508 * class.c (mono_method_get_vtable_index): Use mono_method_get_vtable_slot ()
9509 for accessing method->slot.
9511 2008-10-20 Cedric Vivier <cedricv@neonux.com>
9513 * icall-def.h, icall.c: Add icall for Debugger.IsAttached.
9515 2008-10-19 Zoltan Varga <vargaz@gmail.com>
9517 * class.c (mono_method_get_vtable_index): Use
9518 mono_method_get_vtable_slot () for accessing method->slot.
9520 * object.c (build_imt_slots): Use mono_class_get_method_by_index () for
9521 accessing klass->methods.
9523 * class.c (mono_method_get_vtable_slot): New helper function.
9524 (mono_class_get_vtable_entry): Ditto.
9525 (mono_class_setup_vtable_general): Use mono_method_get_vtable_slot () for
9526 accessing method->slot.
9528 * generic-sharing.c (mono_class_get_method_generic): Pass the declaring
9529 method to get_inflated_method ().
9531 * class.c (mono_class_get_inflated_method): New helper method to obtain
9532 a method of an inflated class without calling setup_methods ().
9533 (mono_class_get_cctor): Use get_inflated_method.
9535 * generic-sharing.c (mono_class_get_method_generic): Ditto.
9537 * marshal.c image.c: Lazily create all the marshal caches.
9539 * image.c (mono_image_init): Move initialization of runtime_invoke
9540 caches to marshal.c.
9542 * marshal.c (get_cache): New helper function to lazily initialize a
9544 (mono_marshal_get_runtime_invoke): Share more runtime invoke wrappers.
9546 * debug-helpers.c (mono_method_full_name): Include generic arguments.
9548 Fri Oct 17 10:51:32 CEST 2008 Paolo Molaro <lupus@ximian.com>
9550 * loader.c: fixed check for interface type.
9552 Thu Oct 16 20:59:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
9554 * appdomain.c: check for NULL setup before it's referenced.
9557 Thu Oct 16 16:12:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
9559 * class.c: remove the unused old vtable setup code.
9561 Thu Oct 16 12:53:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
9563 * class.c: don't depend on interface order in
9564 setup_interface_offsets (bug #435777).
9565 * reflection.c: sort the InterfaceImpl table (patch from
9566 Jb Evain <jbevain@novell.com>).
9568 2008-10-13 Zoltan Varga <vargaz@gmail.com>
9570 * assembly.c (mono_assembly_open_full): Avoid loading images while holding
9571 the low level assemblies lock.
9573 Mon Oct 13 16:35:26 CEST 2008 Paolo Molaro <lupus@ximian.com>
9575 * domain-internals.h, domain.c, icall.c, image.c, marshal.c,
9576 object.c, reflection.c, socket-io.c, threads.c: introduced
9577 mono_framework_version () to return the major framewrok version,
9578 changed the code that was using more complex patterns to use it.
9579 Return the correct value for PlatformID for OSX.
9581 Mon Oct 13 14:38:01 CEST 2008 Paolo Molaro <lupus@ximian.com>
9583 * icall-def.h, process.h, process.c: added an icall to get info about
9584 processes using mono-proclib.
9586 Mon Oct 13 11:14:44 CEST 2008 Paolo Molaro <lupus@ximian.com>
9588 * mono-perfcounters.c: use the mono-proclib functions to
9589 access process information.
9591 Mon Oct 13 11:00:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
9593 * domain.c, assembly.c, debug-mono-symfile.c, debug-mono-symfile.h,
9594 monosn.c, Makefile.am, pedump.c, image.c, metadata-internals.h,
9595 reflection.c: remove rawbuffer usage: mmap support is more sanely
9596 provided by utils/mono-mmap.
9598 Sat Oct 11 19:46:19 CEST 2008 Paolo Molaro <lupus@ximian.com>
9600 * gc.c: use posix semaphores when possible so that
9601 mono_gc_finalize_notify() is signal safe.
9603 2008-10-11 Zoltan Varga <vargaz@gmail.com>
9605 * reflection.c: Implement DISABLE_REFLECTION_EMIT, remove some
9606 #ifdef DISABLE_REFLECTION_SAVE stuff, only the exported functions need to
9607 be #ifdef-ed out, the linker will remove the rest.
9609 * marshal.c: Implement DISABLE_COM.
9611 * reflection.c: Implement DISABLE_REFLECTION_EMIT_SAVE.
9613 2008-10-11 Miguel de Icaza <miguel@novell.com>
9615 * locales.c (string_invariant_compare_char): Optimization: do not
9616 call g_unichar_type unless we actually need the information.
9618 2008-10-10 Mark Probst <mark.probst@gmail.com>
9620 * object.c, class-internals.h: Also create remoting trampolines
9621 for generic methods. Pass the domain to the remoting trampoline
9622 creation function, too.
9624 2008-10-10 Zoltan Varga <vargaz@gmail.com>
9626 * class.c (mono_class_init): Fix+re-enable the finalize optimization.
9628 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9630 * class.c (mono_class_create_from_typedef): Vector4u was renamed to
9633 2008-10-10 Gonzalo Paniagua Javier <gonzalo@novell.com>
9636 * locales.c: remove the use of g_strdown. Fixes bug #322313.
9638 Fri Oct 10 17:01:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
9640 * assembly.c: in mono_assembly_load_friends() take the assemblies lock
9641 for the least possible amount of time (extending the fix in r113458).
9643 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
9645 * class.c (mono_class_create_from_typedef): Retrofit to new type names.
9647 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
9649 * class.c (mono_class_create_from_typedef): Added Vector8u and Vector16u
9650 as possible simd intrinsic types.
9651 Optimized the test to check for the common prefix first.
9653 Thu Oct 9 17:38:24 CEST 2008 Paolo Molaro <lupus@ximian.com>
9655 * class.c: back out part of a broken optimization committed on
9656 May 23th (bug #433908).
9658 2008-10-09 Mark Probst <mark.probst@gmail.com>
9660 * profiler.c (simple_shutdown): Don't call mono_thread_attach() on
9661 Win32. Should fix #432388 for most cases until we have the new
9664 2008-10-08 Zoltan Varga <vargaz@gmail.com>
9666 * metadata.c (mono_metadata_generic_context_hash): Call generic_inst_hash
9667 instead of using inst->id so the hash is stable for AOT.
9669 2008-10-07 Gonzalo Paniagua Javier <gonzalo@novell.com>
9672 * icall.c: create a .ini file for shadow-copied assemblies that
9673 contains the location of the original assembly. Use this to return the
9674 proper CodeBase for shadow-copied assemblies. Fixes bug #323606.
9675 Also fix the number of '/' for windows when returning the CodeBase.
9678 2008-10-07 Bill Holmes <billholmes54@gmail.com>
9680 * marshal.c (cominterop_get_ccw) : Fixing a copy paste error from r115126.
9682 Code is contributed under MIT/X11 license.
9684 2008-10-07 Bill Holmes <billholmes54@gmail.com>
9686 * marshal.c (cominterop_get_native_wrapper) : Adding a call to mono_class_setup_vtable
9687 if if the class vtable needs initialized.
9689 Code is contributed under MIT/X11 license.
9691 2008-10-07 Bill Holmes <billholmes54@gmail.com>
9693 * marshal.c (cominterop_get_native_wrapper_adjusted, cominterop_get_ccw) :
9694 Adding default MonoMarshalSpecs for COM methods. OBJECT->STRUCT,
9695 STRING->BSTR, and CLASS->INTERFACE.
9697 Code is contributed under MIT/X11 license.
9699 2008-10-07 Marek Habersack <mhabersack@novell.com>
9701 * sysmath.h: changed the declaration of the
9702 ves_icall_System_Math_Round2 icall by adding an extra
9703 away_from_zero parameter.
9705 * sysmath.c (ves_icall_System_Math_Round2): added support for
9706 away from zero rounding. The icall now takes an extra boolean
9707 parameter to signal that away from zero operation is requested.
9709 2008-10-06 Zoltan Varga <vargaz@gmail.com>
9711 * marshal.c (mono_marshal_get_delegate_begin_invoke): Put the wrapper in
9712 the delegate klass so it can work with full-aot.
9713 (mono_marshal_get_delegate_end_invoke): Ditto.
9714 (mono_marshal_get_delegate_invoke): Ditto.
9716 Mon Oct 6 16:10:02 CEST 2008 Paolo Molaro <lupus@ximian.com>
9718 * gc.c, attach.h, attach.c: remove a bad pattern:
9719 add_finalizer_callback () is not implemented correctly, it can't
9720 without adding more overhead to the finalizer loop and it's not
9721 even needed, since we know exactly what we need to call, so there is
9722 no need to do so through an expensive function pointer.
9724 2008-10-04 Zoltan Varga <vargaz@gmail.com>
9726 * gc.c: Define a dummy version of mono_gc_add_finalizer_thread_callback ()
9728 * attach.c (mono_attach_init): Remove the #ifdef.
9730 2008-10-04 Andreas Färber <andreas.faerber@web.de>
9732 * attach.c (mono_attach_init): Don't use
9733 mono_gc_add_finalizer_thread_callback when compiling without GC.
9736 Code is contributed under MIT/X11 license.
9738 2008-10-03 Zoltan Varga <vargaz@gmail.com>
9740 * class.c (mono_class_create_from_typedef): Remove the
9741 #ifndef DISABLE_SIMD stuff.
9743 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
9745 * class-internals.h (MonoClass): Added simd_type bit field.
9747 * class.c (mono_class_create_from_typedef): Check if type is a simd
9750 2008-10-03 Mark Probst <mark.probst@gmail.com>
9752 * object.c (mono_method_add_generic_virtual_invocation): Only add
9753 instantiations to the thunk whose count is at least as large as
9756 2008-10-02 Gonzalo Paniagua Javier <gonzalo@novell.com>
9758 * icall.c: changed the Type of the exception thrown when trying to
9759 invoke a constructor on an abstract class. Part of the fix for bug
9762 2008-10-02 Mark Probst <mark.probst@gmail.com>
9764 * class.c, class-internals.h (mono_method_get_vtable_index): New
9765 function which returns the index into the vtable and properly
9766 handles inflated virtual generic methods.
9768 2008-10-01 Mark Probst <mark.probst@gmail.com>
9770 * object.c, domain.c, object-internals.h, domain-internals.h:
9771 Generalize IMT thunk machinery to also handle thunks for virtual
9772 generic method invokes. When a virtual generic method is invoked
9773 more than a number of times we insert it into the thunk so that it
9774 can be called without lookup in unmanaged code.
9776 * generic-sharing.c, class-internals.h: Fetching a
9777 MonoGenericInst* for a method from an (M)RGCTX.
9779 2008-10-01 Zoltan Varga <vargaz@gmail.com>
9781 * marshal.c (emit_marshal_string): Applied a variant of a patch by
9782 tom hindle <tom_hindle@sil.org>. Fix byref native-to-managed string
9783 marshalling. Fixes #431304.
9785 2008-10-01 Bill Holmes <billholmes54@gmail.com>
9787 * marshal.c (emit_marshal_variant) : Change the attribute checks to
9788 handle when ref is specified without In or Out.
9790 Code is contributed under MIT/X11 license.
9792 2008-09-30 Mark Probst <mark.probst@gmail.com>
9794 * loader.c (mono_get_method_constrained): Don't expand method with
9795 the class's context, because it's already a method of that class.
9797 2008-09-30 Atsushi Enomoto <atsushi@ximian.com>
9799 * attach.c : should be correct build fix.
9801 2008-09-29 Zoltan Varga <vargaz@gmail.com>
9803 * attach.c: Fix the previous change.
9805 2008-09-29 Atsushi Enomoto <atsushi@ximian.com>
9807 * attach.c : quick w32 build fix.
9809 2008-09-27 Miguel de Icaza <miguel@novell.com>
9811 * Turn off MONO_GENERIC_SHARING=all and go back to corlib as it
9812 crashes MonoDevelop: #430455.
9814 2008-09-27 Zoltan Varga <vargaz@gmail.com>
9816 * domain-internals.h (struct _MonoDomain): Move most fields used only by
9817 the JIT do MonoJitDomainInfo in ../mini/mini.h.
9819 * domain.c: Remove initialization/cleanup of the removed fields.
9821 2008-09-27 Mark Probst <mark.probst@gmail.com>
9823 * class.c (mono_class_generic_sharing_enabled): Enable generic
9824 code sharing for PPC.
9826 2008-09-26 Bill Holmes <billholmes54@gmail.com>
9828 * attach.c : Fixing the Windows builds.
9830 Code is contributed under MIT/X11 license.
9832 2008-09-25 Zoltan Varga <vargaz@gmail.com>
9834 * class.c (mono_class_generic_sharing_enabled): Experimentally change
9835 the default generic sharing mode to 'all'.
9837 2008-09-25 Mark Probst <mark.probst@gmail.com>
9839 * generic-sharing.c, class-internals.h: New function for checking
9840 whether a method needs a static RGCTX invoke wrapper. A few
9841 funtions moved from mini/generic-sharing.c.
9843 * icall.c: New function used.
9845 2008-09-25 Mark Probst <mark.probst@gmail.com>
9847 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
9848 Static RGCTX invoke wrapping applies to value type methods, too.
9850 * class.c (mono_class_setup_vtable_general): In generic-shared
9851 value types, wrap methods with a static RGCTX invoke wrapper.
9853 2008-09-25 Zoltan Varga <vargaz@gmail.com>
9855 * attach.c (ipc_connect): Use AF_UNIX instead of AF_FILE to fix the
9858 2008-09-24 Zoltan Varga <vargaz@gmail.com>
9860 * gc.c (mono_gc_add_finalizer_thread_callback): New function to
9861 register a callback which is called when the finalizer thread is woken
9863 (finalizer_thread): Call the callback if it exists.
9865 * attach.h attach.c: New files, implementing the attach mechanism.
9867 * appdomain.c: Init/cleanup the attach mechanism on startup/shutdown.
9869 * object.c (mono_object_get_virtual_method): Fix an assertion introduced
9870 by the previous change.
9872 Tue Sep 23 15:24:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
9874 * class.c, domain-internals.h, domain.c, generic-sharing.c, image.c,
9875 loader.c, marshal.c, metadata-internals.h, metadata.c,
9876 method-builder.c, object.c, reflection.c: introduced specific functions
9877 to allocate from the domain and image mempools and cleaned up most of
9878 the code to use them (still missing a few in reflection.c).
9879 Keep the loader bytes counter updated.
9881 Mon Sep 22 17:33:12 CEST 2008 Paolo Molaro <lupus@ximian.com>
9883 * domain.c, monitor.c, boehm-gc.c, gc.c: update some of the GC and
9884 loader-related counters.
9886 Mon Sep 22 17:29:54 CEST 2008 Paolo Molaro <lupus@ximian.com>
9888 * mono-perfcounters-def.h, mono-perfcounters.c, class-internals.h:
9889 added more MS-compatible counters.
9891 2008-09-22 Zoltan Varga <vargaz@gmail.com>
9893 * class.c (mono_class_setup_fields): Call setup_fields before accessing
9894 class->blittable. Fixes #428217.
9896 2008-09-21 Zoltan Varga <vargaz@gmail.com>
9898 * reflection.c (mono_image_get_field_on_inst_token): Call
9899 field_encode_signature () since that handles custom modifiers too.
9902 2008-09-20 Zoltan Varga <vargaz@gmail.com>
9904 * reflection.c (add_custom_modifiers): New helper function to merge custom
9905 modifiers stored in objects to a MonoType.
9906 (fieldref_encode_signature): Encode custom modifiers.
9907 (mono_image_get_generic_field_token): Call add_custom_modifiers ().
9908 (fieldbuilder_to_mono_class_field): Ditto. Fixes #424663.
9910 2008-09-19 Kornél Pál <kornelpal@gmail.com>
9912 * coree.c (_CorValidateImage): Some 64-bit IL only images have entry point
9913 calling _CorDllMain imported from mscoree.dll. Set entry point RVA to 0 for
9914 64-bit IL only images because imports are not resolved for IL only images.
9915 Special thanks to Bill Holmes for finding this bug and testing the patch.
9916 Also fail for 64-bit images marked as CLI_FLAGS_32BITREQUIRED.
9918 Contributed under MIT/X11 license.
9920 2008-09-19 Miguel de Icaza <miguel@novell.com>
9922 * mono-config.c (dllmap_start): Add support for the bits keyword
9923 on dllentry and dllmap to easily detect 32 vs 64 bit systems.
9925 2008-09-19 Mark Probst <mark.probst@gmail.com>
9927 * reflection.c (inflate_mono_method): When the class the method is
9928 to be inflated for is itself not inflated, just return the method.
9930 Fri Sep 19 11:51:36 CEST 2008 Paolo Molaro <lupus@ximian.com>
9932 * mono-perfcounters.c: use more user friendly process instance names.
9934 2008-09-18 Bill Holmes <billholmes54@gmail.com>
9936 * marshal.c (emit_marshal_variant) : Change the attribute checks to
9937 handle "[in] ref" and "[in][out] ref" cases.
9939 * marshal.c (cominterop_get_ccw) : The wrong signature was being passed
9940 to mono_mb_create_method. This was causing problems calling native to
9941 managed passing Variants by value.
9943 Code is contributed under MIT/X11 license.
9945 2008-09-18 Zoltan Varga <vargaz@gmail.com>
9947 * class.c (can_access_internals): Call mono_assembly_load_friends ()
9948 before accessing the friend_assembly_names field.
9950 * assembly.c (mono_assembly_load_friends): Make this callable multiple
9952 (mono_assembly_load_from_full): Avoid calling load_friends (), it is
9953 called lazily when it is needed.
9955 * metadata-internals.h (struct _MonoAssembly): Add
9956 'friend_assembly_names_inited' flag.
9958 Thu Sep 18 18:18:47 CEST 2008 Paolo Molaro <lupus@ximian.com>
9960 * mono-perfcounters-def.h: fix the types of a few counters.
9961 * mono-perfcounters.c: implemented the instance names getter
9964 2008-09-18 Atsushi Enomoot <atsushi@ximian.com>
9966 * culture-info-table.h : regenerated.
9968 2008-09-17 Robert Jordan <robertj@gmx.net>
9970 * marshal.c (mono_marshal_get_ldflda_wrapper): Add support for
9971 context bound objects. Fixes #415577.
9973 Code is contributed under MIT/X11 license.
9975 Tue Sep 16 21:03:58 CEST 2008 Paolo Molaro <lupus@ximian.com>
9977 * icall-def.h, threads-types.h, threads.c: fixed SpinWait()
9978 implementation (bug #423582).
9980 2008-09-16 Zoltan Varga <vargaz@gmail.com>
9982 * object.c (mono_object_get_virtual_method): Handle the case method->slot
9983 is not set. Fixes #426309.
9985 2008-09-16 Jb Evain <jbevain@novell.com>
9987 * class.c (mono_class_from_name): fix the exported type look up
9988 when the type is defined in a referenced assembly.
9990 2008-09-16 Jb Evain <jbevain@novell.com>
9992 * reflection.c (mono_image_fill_export_table_from_type_forwarders):
9993 increment the next index counter on each iteration to make that work
9994 for more than one type forwarder. Unmanaged part to fix #422929.
9996 2008-09-15 Mark Probst <mark.probst@gmail.com>
9998 * object-internals.h: enum ComInterfaceType in
9999 MonoInterfaceTypeAttribute is guint32, not guint16.
10001 2008-09-12 Mark Probst <mark.probst@gmail.com>
10003 * cil-coff.h, image.c, reflection.c: Endianness fixes in image
10006 2008-09-11 Mark Probst <mark.probst@gmail.com>
10008 * icall.c: Boolean arguments to a runtime invoke are MonoBoolean,
10011 2008-09-11 Mark Probst <mark.probst@gmail.com>
10013 * debug-mono-symfile.c (mono_debug_symfile_lookup_location):
10014 Endianness fixes for MonoSymbolFileOffsetTable.
10016 2008-09-10 Bill Holmes <billholmes54@gmail.com>
10018 * process.c (complete_path) : Removing quotes from the
10019 input path. The glib file routines do not handle file paths
10020 that have quotes around them.
10022 Code is contributed under MIT/X11 license.
10024 2008-09-10 Bill Holmes <billholmes54@gmail.com>
10026 * socket-io.h : Adding a comment to provide locations where
10027 changes to MonoSocketAsyncResult need to be synced.
10029 Code is contributed under MIT/X11 license.
10031 2008-09-10 Zoltan Varga <vargaz@gmail.com>
10033 * marshal.c (emit_marshal_custom): Call NativeToManaged for non-out
10034 parameters as well. Fixes #425001.
10036 2008-09-08 Miguel de Icaza <miguel@novell.com>
10038 * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Fix
10041 2008-09-07 Miguel de Icaza <miguel@novell.com>
10043 * console-io.c: Add support for tracking the window size if it
10046 The setup is very simple: the TtySetup function will now return a
10047 pointer to a location in memory that tracks the current console
10048 size. The managed code checks its current value every time its
10049 queried against the last value set, and updates accordingly.
10051 With this setup we can work with multiple consoles, and we do not
10052 require to poke into managed code from a signal handler.
10054 Additionally, the environment for COLUMNS and LINES is now handled
10057 (ves_icall_System_ConsoleDriver_GetTtySize): This is now gone.
10059 2008-09-07 Mark Probst <mark.probst@gmail.com>
10061 * marshal.c (mono_type_native_stack_size): Treat
10062 MONO_TYPE_TYPEDBYREF like MONO_TYPE_VALUETYPE.
10064 2008-09-04 Jb Evain <jbevain@novell.com>
10066 * class.c (mono_class_is_assignable_from): fix assignability of nullables
10069 2008-09-03 Rodrigo Kumpera <rkumpera@novell.com>
10071 * verify.c (verify_type_compatibility_full): Revert change
10072 to allow converting a native int to unmanaged pointer be verifiable
10073 under non-strict mode.
10074 It turns out that "(IntPtr)null" is indeed unverifiable, go figure.
10076 * verify.c: Added some TODOs.
10078 2008-09-02 Bill Holmes <billholmes54@gmail.com>
10080 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi,
10081 ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni) :
10082 Changed to use GlobalAlloc for the memory returned on Windows platforms.
10084 Code is contributed under MIT/X11 license.
10086 2008-09-02 Jb Evain <jbevain@novell.com>
10088 * object.c (mono_ldstr_metdata_sig): renamed to mono_ldstr_metadata_sig.
10090 2008-09-02 Rodrigo Kumpera <rkumpera@novell.com>
10092 reflection.c (typebuilder_setup_fields): Handle classes with
10095 2008-09-01 Rodrigo Kumpera <rkumpera@novell.com>
10097 class.c (mono_class_setup_events): Add memory barrier due to
10098 double checked locking.
10100 class.c (mono_class_setup_properties): Same.
10102 2008-08-31 Zoltan Varga <vargaz@gmail.com>
10104 * class.c (mono_class_is_assignable_from): Fix the build.
10106 * class.c (mono_class_is_assignable_from): Call mono_class_setup_vtable ()
10107 before accessing klass->interface_bitmap. Fixes #421744.
10109 2008-08-28 Zoltan Varga <vargaz@gmail.com>
10111 * appdomain.c (mono_runtime_set_no_exec): New internal function setting
10112 the runtime into no-exec mode, useful when running the AOT compiler.
10114 * appdomain.c gc.c object.c: Avoid executing managed code when running
10117 * rawbuffer.c (mono_raw_buffer_load_mmap): Disable this on the iphone.
10119 * reflection.c (_mono_reflection_get_type_from_info): Handle the
10120 special case when the mono_assembly_loaded () returns NULL because the
10121 search hook is not installed.
10123 2008-08-25 Zoltan Varga <vargaz@gmail.com>
10125 * marshal.c: Applied patch from tom hindle (tom_hindle@sil.org) to fix
10126 crashes in bstr marshalling on linux.
10128 2008-08-24 Zoltan Varga <vargaz@gmail.com>
10130 * debug-helpers.c (mono_type_get_desc): Fix printing of generic instances
10131 with more than one parameter.
10133 2008-08-24 Miguel de Icaza <miguel@novell.com>
10135 * console-io.c (ves_icall_System_ConsoleDriver_TtySetup): Disable
10136 start/stop flow control as well when turning off ICANON (allows
10137 C-s and C-q to be read by Console.ReadKey).
10139 2008-08-24 Zoltan Varga <vargaz@gmail.com>
10141 * class.c (mono_class_init): Move the initialization of nested classes
10142 into mono_class_get_nested_types (). Fixes #418433.
10144 * class-internals.h (struct _MonoClass): Add a new 'nested_classes_inited'
10147 * class.c reflection.c icall.c: Use mono_class_get_nested_types () for
10148 iterating tough the nested classes of a class.
10150 2008-08-23 Zoltan Varga <vargaz@gmail.com>
10152 * class.c (mono_class_generic_sharing_enabled): Enable generic sharing
10155 2008-08-22 Miguel de Icaza <miguel@novell.com>
10157 * console-io.c (sigcont_handler): Support signal chaining for
10160 (console_set_signal_handlers): Use best practices with sigaction,
10161 clear the structure before using it.
10163 2008-08-22 Robert Jordan <robertj@gmx.net>
10165 * console-io.c (ves_icall_System_ConsoleDriver_TtySetup):
10166 Fix the Windows build.
10168 2008-08-22 Zoltan Varga <vargaz@gmail.com>
10170 * class.c (mono_class_generic_sharing_enabled): Make the default
10171 sharing mode 'corlib'.
10173 2008-08-21 Zoltan Varga <vargaz@gmail.com>
10175 * console-io.c (console_set_signal_handlers): Fix a warning.
10177 * marshal.c (mono_marshal_get_synchronized_wrapper): Call the wrapper
10178 method normally, the JIT will take care of avoiding recursion.
10180 2008-08-20 Bill Holmes <billholmes54@gmail.com>
10182 * console-io.c : Fixing builds for platforms that do not have <termios.h>.
10184 Code is contributed under MIT/X11 license.
10186 2008-08-20 Miguel de Icaza <miguel@novell.com>
10188 * console-io.c (sigcont_handler): We need to restore the entire
10189 termios state, not only the original settings, as things like echo
10190 can be controlled after this (Booish exposes this issue with its
10191 own ReadLine implementation).
10193 Additionally, we need to set the terminal back into keypad_xmit
10196 (ves_icall_System_ConsoleDriver_TtySetup): Take the keypad xmit
10197 string as a paramter as well. Otherwise we get different
10198 keyboard sequences.
10200 2008-08-20 Zoltan Varga <vargaz@gmail.com>
10202 * marshal.c (emit_marshal_object): Avoid managed-to-native marshalling of
10203 delegates with byref out parameter passing. Fixes #351520.
10205 * debug-helpers.c (mono_context_get_desc): New helper function to stringify
10207 (mono_type_get_desc): Add the type arguments for GENERICINST.
10208 (mono_method_full_name): Stringify the class name using mono_type_full_name
10209 so it picks up generic arguments.
10211 2008-08-19 Gert Driesen <drieseng@users.sourceforge.net>
10213 * console-io.c: Removed debug output.
10215 2008-08-19 Rodrigo Kumpera <rkumpera@novell.com>
10217 reflection.c (mono_reflection_create_runtime_class): Alloc
10218 the nested classes linked list using the dynamic image mempool.
10219 Fixes leak in corlib compilation.
10221 2008-08-19 Miguel de Icaza <miguel@novell.com>
10223 * console-io.c: Fix incredibly annoying behavior on the console
10224 after resuming execution after control-z. This affected every
10225 console application.
10227 2008-08-18 Rodrigo Kumpera <rkumpera@novell.com>
10229 * mempool-internals.h: Header for mono private mempool functions. The first
10230 two function are for allocating glib linked lists using pools.
10232 * mempool.c: Added g_list_prepend_mempool and g_slist_prepend_mempool.
10234 * Makefile.am: Added mempool-internals.h.
10236 2008-08-16 Zoltan Varga <vargaz@gmail.com>
10238 * domain.c (mono_domain_create): Call the JIT domain hook if installed.
10239 (mono_domain_free): Ditto.
10241 * domain-internals.h (struct _MonoDomain): Add 'runtime_info' field, this could
10242 be used by the JIT to store its domain-specific information, instead of putting
10243 it directly into MonoDomain.
10245 * domain.c (mono_install_create_domain_hook): New helper function to install
10246 a hook which initializes domain->runtime_info.
10248 * domain.c (mono_install_free_domain_hook): Ditto.
10250 2008-08-15 Zoltan Varga <vargaz@gmail.com>
10252 * marshal.c (mono_delegate_end_invoke): Raise an exception instead of
10253 asserting if the ares parameter is null.
10255 * mono-perfcounters.c: Fix warnings.
10257 * marshal.c (mono_marshal_get_delegate_begin_invoke): Don't set save_lmf, it
10258 is not needed, don't check for interruptions either.
10259 (mono_marshal_get_delegate_end_invoke): Ditto.
10261 2008-08-15 Marek Habersack <mhabersack@novell.com>
10263 * mono-perfcounters.c (predef_readonly_counter): added support for
10264 reading the ASP.NET Requests Queued counter from another process.
10266 2008-08-12 Zoltan Varga <vargaz@gmail.com>
10268 * metadata-internals.h: Move the 'aot_module' field from MonoAssembly to
10269 MonoImage to simplify the AOT code.
10271 2008-08-10 Zoltan Varga <vargaz@gmail.com>
10273 * marshal.c (emit_marshal_object): Implement native-to-managed StringBuilder
10274 marshalling. Fixes #416078.
10276 2008-08-08 Zoltan Varga <vargaz@gmail.com>
10278 * marshal.c (mono_marshal_get_native_wrapper): Add an 'aot' argument, when
10279 it is set, looking up the icall address is deferred to the JIT, since
10280 in embedded scenarios, the icall might not be registered in the runtime
10281 doing the AOT compilation. Backported from the 2.0 branch.
10283 2008-08-08 Zoltan Varga <vargaz@gmail.com>
10285 * marshal.c (mono_remoting_wrapper): Handle nullable types correctly.
10288 2008-08-05 Marek Habersack <mhabersack@novell.com>
10290 * Makefile.am: added support for cross-compilation.
10292 2008-08-04 Zoltan Varga <vargaz@gmail.com>
10294 * socket-io.c (get_socket_assembly): Make 'moonlight' variable static.
10296 Fri Aug 1 18:47:48 CEST 2008 Paolo Molaro <lupus@ximian.com>
10298 * mono-perfcounters.c: jitted methods and jitted bytes counters.
10300 Fri Aug 1 16:07:09 CEST 2008 Paolo Molaro <lupus@ximian.com>
10302 * class-internals.h, icall-def.h, mono-perfcounters-def.h,
10303 mono-perfcounters.c: performance counters implementation.
10305 2008-07-31 Zoltan Varga <vargaz@gmail.com>
10307 * metadata-internals.h (struct _MonoAssembly): Change the type of 'aot_module'
10308 to gpointer, letting the AOT code decide what to store in it.
10310 2008-07-31 Bill Holmes <billholmes54@gmail.com>
10312 * marshal.c (cominterop_get_native_wrapper) : Adding a call to
10313 mono_class_setup_methods if the methods are not initialized.
10315 Code is contributed under MIT/X11 license.
10317 2008-07-30 Rodrigo Kumpera <rkumpera@novell.com>
10319 * verify.c: Remove some debug code I commited by accident.
10321 * verify.c (mono_method_is_valid_in_context): Change the return value
10322 to make possible to distinguish between invalid and unverifiable.
10324 * verify.c (verifier_load_method): Don't return NULL for unverifiable
10327 2008-07-30 Rodrigo Kumpera <rkumpera@novell.com>
10329 * verify.c (mono_generic_param_is_constraint_compatible): Inflate type
10330 constraints. Fixes regression in gtest-253.
10332 2008-07-30 Rodrigo Kumpera <rkumpera@novell.com>
10334 * verify.c (mono_verifier_verify_class): Don't allow generic types
10335 with explicit layout.
10337 * verify.c (mono_method_verify): Check locals and argument types.
10339 2008-07-29 Zoltan Varga <vargaz@gmail.com>
10341 * monitor.c (mono_monitor_try_enter_internal): Allow nterruption of the
10342 wait if the thread is in StopRequested state.
10344 * class.c (mono_class_from_name): Refactor the module searching code into
10345 a separate function so it can be reused in the AOT case too.
10347 2008-07-28 Rodrigo Kumpera <rkumpera@novell.com>
10349 * verify.c (mono_type_is_valid_in_context): Improve the error message.
10350 Check both the type and it's generic type definition for loader errors.
10352 * verify.c (mono_method_is_valid_in_context): Don't generate another
10353 error when a type errors occur, this leads to the wrong exception been
10356 2008-07-28 Dick Porter <dick@ximian.com>
10360 (ves_icall_System_Diagnostics_Process_ProcessHandle_duplicate):
10361 New internal calls to duplicate and close a process handle.
10363 2008-07-27 Andreas Färber <andreas.faerber@web.de>
10365 * object.c (CHECK_ADD_OVERFLOW_UN): Add missing bracket. Fixes #412499.
10367 2008-07-27 Zoltan Varga <vargaz@gmail.com>
10369 * appdomain.c (unload_thread_main): Attach the unload thread to the runtime.
10371 2008-07-27 Robert Jordan <robertj@gmx.net>
10373 * class.c (mono_class_init): Don't compute class.has_finalize for
10374 valuetypes. Fixes #412477.
10376 2008-07-25 Rodrigo Kumpera <rkumpera@novell.com>
10378 * verify.c: Implement constraint equivalence checking.
10379 This is required when a generic parameter is used as
10380 argument to a constrained one.
10384 2008-07-24 Zoltan Varga <vargaz@gmail.com>
10386 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
10388 * domain-internals.h (struct _MonoDomain): Add 'method_code_hash' field.
10390 * object-internals.h (struct _MonoDelegate): Add 'method_code' field,
10391 synch with managed object layout.
10393 2008-07-24 Rodrigo Kumpera <rkumpera@novell.com>
10395 * verify.c (do_branch_op): Handle valuetypes and generic
10396 arguments properly.
10398 * verify.c (do_cmp_op): Same.
10402 2008-07-24 Mark Probst <mark.probst@gmail.com>
10404 * generic-sharing.c: Fix memory leaks.
10406 * class.c, class-internals.h: Make
10407 mono_class_inflate_generic_type_with_mempool() non-static.
10409 2008-07-24 Rodrigo Kumpera <rkumpera@novell.com>
10411 * pedump.c (dump_verify_info): Dump full class name.
10413 2008-07-24 Mark Probst <mark.probst@gmail.com>
10415 * generic-sharing.c: Removed some old code that didn't do anything.
10417 2008-07-24 Massimiliano Mantione <massi@ximian.com>
10418 * profiler.c: Added runtime_initialized_event,
10419 mono_profiler_install_runtime_initialized and
10420 mono_profiler_runtime_initialized. This new hook tells the profiler
10421 when the runtime is sufficiently initialized to be able to call
10422 mono_thread_attach on the root appdomain.
10423 * profiler.h, profiler-private.h: Likewise.
10425 2008-07-23 Rodrigo Kumpera <rkumpera@novell.com>
10427 * verify.c (do_cast): Do boxing for generic arguments as well.
10429 * class.c (is_nesting_type): Drop generic instantiations before
10430 checking for nesting.
10432 * class.c (can_access_instantiation): Allow access to generic
10435 2008-07-23 Rodrigo Kumpera <rkumpera@novell.com>
10437 * verify.c (verify_class_for_overlapping_reference_fields):
10438 On some cases, the field size might be zero, guard against that.
10439 Fix the explicit layout check to work as expected.
10441 2008-07-23 Zoltan Varga <vargaz@gmail.com>
10443 * threads.c (ves_icall_System_Threading_Thread_Abort): Avoid calling
10444 mono_thread_resume () during shutdown, since the thread we want to abort
10445 might be suspended.
10447 2008-07-22 Zoltan Varga <vargaz@gmail.com>
10449 * mono-debug-debugger.c (mono_debugger_check_breakpoints): Fix a
10452 * debug-mono-symfile.c: Fix a warning.
10454 * mono-perfcounters.c (get_cpu_times): Fix a warning.
10456 * object.c (mono_class_vtable): Check if exception_type is set, and return
10457 NULL as defined by the function comments.
10459 2008-07-22 Mark Probst <mark.probst@gmail.com>
10461 * mempool.c: Use malloc for every single mempool allocation if the
10462 configure option is set. This makes it easier to track mempool
10463 allocations with tools like Valgrind.
10465 2008-07-22 Jb Evain <jbevain@novell.com>
10467 * reflection.c (create_dynamic_mono_image): emit the same
10468 metadata version that SL2 does when creating a SL2 image.
10470 2008-07-21 Rodrigo Kumpera <rkumpera@novell.com>
10473 * icall.c: New icall System.Enum:get_hashcode. This function
10474 avoids the overhead of boxing the enum to the underlying type.
10476 2008-07-21 Mark Probst <mark.probst@gmail.com>
10478 * reflection.c (mono_method_get_object): Don't let static RGCTX
10479 invoke wrappers get into MonoReflectionMethods.
10481 2008-07-17 Rodrigo Kumpera <rkumpera@novell.com>
10483 * object-internals.h:
10484 * object.c: New mono_runtime_class_init_full function
10485 that makes throwing the exception optinal.
10487 * class-internals.h: New exception type MONO_EXCEPTION_OBJECT_SUPPLIED
10488 for the case where the exception object is supplied.
10490 2008-07-16 Kornél Pál <kornelpal@gmail.com>
10492 * coree.h: Define __ImageBase as _image_base__ on cygwin that fixes build with
10495 Contributed under MIT/X11 license.
10497 2008-07-16 Rodrigo Kumpera <rkumpera@novell.com>
10499 * string-icalls.c (ves_icall_System_String_InternalSplit):
10500 Optimize array allocation by caching the MonoClass of the
10503 * icall.c (ves_icall_Type_GetMethodsByName): Same.
10505 * reflection.c (mono_param_get_objects): Same.
10507 2008-07-16 Rodrigo Kumpera <rkumpera@novell.com>
10510 * icall.c: New ves_icall_MonoGenericClass_InflateType icall.
10511 It inflates the given type using the class context.
10513 2008-07-15 Rodrigo Kumpera <rkumpera@novell.com>
10515 * object.c (mono_class_try_get_vtable): New function. Tries to fetch
10516 the vtable if it already exists.
10518 * object-internals.h: Add mono_class_try_get_vtable as part of the
10521 * reflection.c (mono_type_get_object): Use the MonoObject from the
10522 vtable when possible. Reduces locking contention on reflection heavy
10525 2008-07-15 Zoltan Varga <vargaz@gmail.com>
10527 * decimal.c (my_g_bit_nth_msf): Implement this directly without calling
10528 g_bit_nth_msf () since that macro is not implemented in eglib.
10530 2008-07-13 Zoltan Varga <vargaz@gmail.com>
10532 * class.c (mono_class_generic_sharing_enabled): Always disable generic sharing
10533 on platforms which do not support it.
10535 2008-07-12 Zoltan Varga <vargaz@gmail.com>
10537 * marshal.c (mono_signature_to_name): Encode sig->hasthis as well.
10539 2008-07-11 Martin Baulig <martin@ximian.com>
10541 * mono-debug-debugger.h
10542 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_INTERRUPTION_REQUEST'.
10544 * mono-debug-debugger.c
10545 (_mono_debugger_interruption_request): New global volatile variable.
10546 (mono_debugger_check_interruption): New public function.
10549 (mono_thread_current_check_pending_interrupt): Call
10550 mono_debugger_check_interruption().
10551 (mono_thread_interruption_checkpoint_request): Likewise.
10553 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
10555 * verify.c: Add more type checks for loaded types. Verify the result
10556 handle from ldtoken.
10558 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
10560 * loader.c (field_from_memberref): Don't crash if the field
10563 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
10565 * verify.c: Verify if type and method instantiations
10566 don't have invalid VAR or MVAR arguments.
10568 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
10570 * verify.c: Fix double free of function pointer list.
10572 2008-07-11 Rodrigo Kumpera <rkumpera@novell.com>
10574 * object.c (mono_string_to_utf8): Comment the new code as it
10575 breaks under eglib.
10577 2008-07-08 Rodrigo Kumpera <rkumpera@novell.com>
10579 * object.c (mono_string_to_utf8): Avoid allocating a temp array.
10581 2008-07-07 Bill Holmes <billholmes54@gmail.com>
10583 * threads.c : Thread.Interrupt changes to ensure that ThreadInterruptedException
10584 is not throw too many times.
10586 Code is contributed under MIT/X11 license.
10588 2008-07-07 Zoltan Varga <vargaz@gmail.com>
10590 * mono-debug.c (mono_debug_find_method): Allow this to be called even when
10591 debugging is turned off.
10593 2008-07-06 Zoltan Varga <vargaz@gmail.com>
10595 * generic-sharing.c (mono_method_lookup_rgctx): Fix a warning.
10597 2008-07-04 Mark Probst <mark.probst@gmail.com>
10599 * class-internals.h, class.c: Added new generic sharing option:
10600 Share only stuff in System.Collections.Generic, which is now the
10603 2008-07-04 Mark Probst <mark.probst@gmail.com>
10605 * generic-sharing.c, class-internals.h: New function for getting a
10606 generic method in a generic class given the corresponding method
10607 for a different instantiation of the class. Partly refactored
10608 from mini-trampolines.c.
10610 * class.c: Make sure generic methods have a class_inst if they are
10611 part of a generic class.
10613 * metadata.c (mono_type_stack_size_internal): Handle type
10616 2008-07-04 Mark Probst <mark.probst@gmail.com>
10618 * domain-internals.h: New field (has_this) in MonoGenericJitInfo.
10619 Signifies whether information on the this/vtable/mrgctx variable
10622 2008-07-04 Mark Probst <mark.probst@gmail.com>
10624 * object.c, object-internals.h, icall.c: New function
10625 mono_delegate_ctor_with_method(), which does the same as
10626 mono_delegate_ctor(), but takes an explicit method argument
10627 instead of taking the method from the jit info.
10629 * marshal.c: When creating a delegate with an inflated method take
10630 the "this" argument as the target class for the castclass.
10632 2008-07-03 Mark Probst <mark.probst@gmail.com>
10634 * domain.c (mono_jit_info_table_find): Fixed a bug that caused
10635 mono_jit_info_table_find() to perform very badly in some cases.
10637 2008-07-02 Zoltan Varga <vargaz@gmail.com>
10639 * icall.c (type_from_typename): Handle 'string'.
10641 * marshal.c (mono_marshal_get_runtime_invoke): Don't insert runtime invoke
10642 wrappers into the wrapper_hash, since the key is not a MonoMethod.
10644 2008-07-01 Zoltan Varga <vargaz@gmail.com>
10646 * icall.c (mono_get_jit_icall_info): New function to return the jit icall hash table.
10648 * *-gc.c (mono_gc_get_managed_allocator_types): New function to return the
10649 number of available managed allocator types.
10651 * marshal.c (mono_marshal_init): Register Thread:ResetAbort as an icall ().
10652 (mono_marshal_get_runtime_invoke): Call ResetAbort as an icall.
10654 2008-06-30 Zoltan Varga <vargaz@gmail.com>
10656 * domain-internals.h (struct _MonoDomain): Add 'jit_code_hash_lock' field,
10657 which is a low level lock protecting just the 'jit_code_hash' hash table.
10659 * domain.c: Initialize+cleanup jit_code_hash_lock.
10661 2008-06-30 Kornél Pál <kornelpal@gmail.com>
10663 * coree.c (mono_load_coree): Set coree_module_handle global variable only
10664 after initialization.
10666 * coree.h: Make MonoFixupExe internal.
10668 Contributed under MIT/X11 license.
10670 2008-06-30 Kornél Pál <kornelpal@gmail.com>
10672 * coree.c (_CorValidateImage): Retain IMAGE_DIRECTORY_ENTRY_SECURITY
10673 because that is platform independent. Check NumberOfRvaAndSizes in PE32
10675 (MonoLoadImage): New wrapper function around LoadLibrary to ensure that the
10676 image being loaded is a CLI image and _CorValidateImage gets called.
10678 * coree.h: Add MonoLoadImage.
10680 * image.c (mono_image_open_full): Load CLI images using MonoLoadImage
10681 instead of LoadLibrary.
10683 Contributed under MIT/X11 license.
10685 2008-06-29 Rodrigo Kumpera <rkumpera@novell.com>
10687 * icall.c (ves_icall_System_ValueType_Equals): Avoid allocating objects
10688 for any primitive type.
10690 2008-06-29 Zoltan Varga <vargaz@gmail.com>
10692 * object.c (mono_array_new_specific): Optimize this and the other allocation
10695 * object.c (mono_class_create_runtime_vtable): Use typed allocation in other
10696 domains too if mono_dont_free_domains is set.
10698 * domain-internals.h (mono_dont_free_domains): New internal option controlling
10699 whenever to free appdomain data after it has been unloaded.
10701 * domain.c (mono_domain_free): Don't free appdomain data if the option is set.
10703 2008-06-28 Zoltan Varga <vargaz@gmail.com>
10705 * icall.c (ves_icall_System_Enum_get_underlying_type): New icall.
10706 (mono_method_get_equivalent_method): Fix a warning.
10708 * object.c (mono_message_init): Avoid looking up array types for each call.
10710 2008-06-27 Zoltan Varga <vargaz@gmail.com>
10712 * object.c (mono_message_invoke): Avoid looking up the object[] type for each
10715 * icall.c (ves_icall_System_ValueType_Equals): Optimize the comparison of enums
10718 * class.c (mono_class_get_fields): Avoid calling setup_fields_locking () for
10721 * icall.c (ves_icall_System_ValueType_Equals): Avoid traversing all the static
10724 2008-06-26 Rodrigo Kumpera <rkumpera@novell.com>
10726 * object.c (mono_value_box): Fix boxing of nullables.
10728 2008-06-26 Kornél Pál <kornelpal@gmail.com>
10730 * assembly.c (mono_set_rootdir): Use __ImageBase instead of
10731 mono_module_handle that is defined by the linker; no initialization required.
10732 * coree.h: Remove mono_module_handle, add __ImageBase, update
10733 mono_image_open_from_module_handle.
10734 * coree.c (_CorValidateImage): Convert platform independent PE32 images to
10735 PE32+ on 64-bit Windows that makes the OS able to load CIL images as modules.
10736 (MonoFixupCorEE): Export Address Table RVAs are 32-bit unsigned integers so
10737 memory has to be allocated for trampolines (x64) or procedure labels (IA64) up
10738 to 4 GB away from image base address. IA64 version is not tested but was very
10739 easy to implement and should work if we ever need it.
10740 * domain.c (mono_init_internal): Avoid system error message boxes.
10741 * image.c (mono_image_open_from_module_handle): Replace ref_count argument
10742 with has_entry_point. Handle do_mono_image_load fauilre correctly.
10743 (mono_image_open_full, mono_image_close): Use has_entry_point instead of
10744 coff_attributes that is a more reliable way to detect if _CorDllMain was called.
10745 * metadata-internals.h: Add has_entry_point to _MonoImage on Windows.
10747 Contributed under MIT/X11 license.
10749 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
10751 * class.c, class-internals.h: Export mono_class_get_generic_type_definition
10752 as part of the private mono API.
10754 * loader.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandleInternalType):
10755 Do proper argument checking for methods that belong to generic classes.
10756 Do proper type resolution for GMFH/2.
10759 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
10761 * verify.c (do_switch): Fix a memory corruption bug with
10762 the jump index is out of bound.
10764 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
10766 * verify.c: Disable debug code.
10768 2008-06-25 Rodrigo Kumpera <rkumpera@novell.com>
10770 * reflection.c (mono_image_get_methodbuilder_token): Use
10771 mono_image_get_methodspec_token_for_generic_method_definition
10772 instead of mono_image_get_memberref_token. We cache more memberef
10775 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
10777 * verify.c: Inflate exception clause types.
10780 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
10782 * reflection.c (mono_image_get_methodbuilder_token): Don't leak
10785 * reflection.c (mono_image_get_ctorbuilder_token): Same.
10787 * reflection.c (mono_image_create_method_token): Same.
10789 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
10791 * reflection.c: Added mono_image_get_methodref_token_for_methodbuilder.
10792 It does the same as mono_image_get_methodref_token but works on
10795 * reflection.c: Use mono_image_get_methodspec_token_for_generic_method_definition
10796 and always generate a methodspec. This follows the old behavior and fixes
10797 the regressions in System.Core.
10799 2008-06-24 Zoltan Varga <vargaz@gmail.com>
10801 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Collect exceptions for classes where
10802 don't event mono_class_get () succeeds. Fixes #402182.
10804 2008-06-20 Rodrigo Kumpera <rkumpera@novell.com>
10806 * metadata-internals.h: Added MonoDynamicImage::methodspec
10807 hashtable to store methodspec tokens created for MethodBuilders.
10809 * reflection.c (mono_image_get_methodbuilder_token): Encode generic
10810 MethodBuilders as open instantiations if a methodspec was requested.
10812 * reflection.c (fixup_method): Skip MethodBuilder with methodspec tokens.
10814 * reflection.c (create_dynamic_mono_image): Create the methodspec hashtable.
10816 * reflection.c (mono_dynamic_image_free): Release the methodspec hashtable.
10820 2008-06-20 Rodrigo Kumpera <rkumpera@novell.com>
10822 * loader.c (method_from_methodspec): Avoid crashing if the
10823 method lookup fails.
10825 2008-06-20 Dick Porter <dick@ximian.com>
10827 * socket-io.c (get_socket_assembly): Cope with Moonlight network
10828 classes being in a different assembly. Fixes bug 399184.
10830 2008-06-20 Zoltan Varga <vargaz@gmail.com>
10832 * loader.c (mono_loader_init): Make this callable multiple times.
10833 (mono_dllmap_insert): Call mono_loader_init () so this works even before
10834 the runtime is initialized. Fixes #401755.
10836 2008-06-19 Dick Porter <dick@ximian.com>
10838 * socket-io.c (convert_socketflags): Ignore SocketFlags.Partial.
10841 2008-06-19 Dick Porter <dick@ximian.com>
10844 * icall-def.h: Implement Socket generic Send() and Receive()
10845 methods. Fixes bug 395168.
10847 2008-06-19 Kornél Pál <kornelpal@gmail.com>
10849 * icall-def.h, icall.c: Add ves_icall_System_Reflection_Module_GetHINSTANCE.
10851 Contributed under MIT/X11 license.
10853 2008-06-18 Martin Baulig <martin@ximian.com>
10855 * mono-debug.h (MONO_DEBUGGER_VERSION): Split into
10856 `MONO_DEBUGGER_MAJOR_VERSION' and `MONO_DEBUGGER_MINOR_VERSION';
10857 set to 80.0. The debugger <-> runtime interface is now frozen as
10861 (mono_debug_debugger_version): Bump to 4.
10863 2008-06-18 Martin Baulig <martin@ximian.com>
10865 * debug-mono-symfile.c
10866 (load_symfile): Don't check the minor version.
10868 * debug-mono-symfile.h: Bump the version number to 50.0.
10870 2008-06-18 Martin Baulig <martin@ximian.com>
10872 * debug-mono-symfile.c
10873 (load_symfile): Treat `MONO_SYMBOL_FILE_MINOR_VERSION' as a
10874 minimum required version.
10876 2008-06-17 Rodrigo Kumpera <rkumpera@novell.com>
10878 * reflection.c (mono_custom_attrs_from_property): Fix support for
10879 retriveving cattrs of dynamic inflated generic types.
10881 * reflection.c (mono_custom_attrs_from_event): Same.
10883 * reflection.c (mono_custom_attrs_from_field): Same;
10885 * reflection.c (typebuilder_setup_events): Same cattrs of events.
10887 * loader.c (-mono_metadata_get_corresponding_field_from_generic_type_definition):
10888 Moved to metadata.c.
10890 * metadata.c: New functions to retrive the equivalent field, event
10891 of property from the generic type definition.
10893 * metadata-internals.h: Added new functions from metadata.c.
10895 2008-06-17 Rodrigo Kumpera <rkumpera@novell.com>
10897 * reflection.c (mono_custom_attrs_from_builders): Mark MonoCustomAttrInfo
10898 to cached in a mempool is used.
10900 * metadata.c (free_generic_class): In some situations field generic_info type
10901 is not properly dup'ed and leads to double free'ing.
10905 2008-06-17 Mark Probst <mark.probst@gmail.com>
10907 * marshal.c (mono_marshal_get_static_rgctx_invoke): Also handle
10908 this arguments (will be needed later for generic methods).
10911 2008-06-17 Mark Probst <mark.probst@gmail.com>
10913 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal):
10914 Create a static RGCTX invoke wrapper for methods which require it.
10916 2008-06-17 Mark Probst <mark.probst@gmail.com>
10918 * object.c, class-internals.h: New function for checking whether
10919 an individual field is special static.
10921 2008-06-15 Zoltan Varga <vargaz@gmail.com>
10923 * metadata.c (mono_metadata_get_generic_param_row): Use bsearch instead of
10924 linear search since the table is sorted.
10926 * gc.c (mono_gc_cleanup): Abort the finalizer thread more gracefully.
10929 2008-06-14 Zoltan Varga <vargaz@gmail.com>
10931 * appdomain.c (unload_thread_main): Applied patch from Tim Howard
10932 (timh@ict.om.org). Remove the timeouts when waiting for appdomains to unload.
10934 * gc.c (mono_domain_finalize): Allow an infinite timeout.
10936 * threads.c (mono_threads_abort_appdomain_threads): Ditto.
10938 * threads.c (mono_thread_request_interruption): Get rid of locking, use
10939 InterlockedCompareExchange to query and modify
10940 thread->interruption_requested.
10942 * object-internals.h (struct _MonoThread): Change interruption_requested
10943 to a gint32 so it can be modified by atomic operations. Add
10944 'critical_region_level' from the managed side, change small_id to a guint32,
10945 add new set of 'unused' fields.
10947 * appdomain.c: Bump corlib version.
10949 2008-06-13 Zoltan Varga <vargaz@gmail.com>
10951 * class.c (mono_class_from_name): Search modules as well. Fixes
10954 2008-06-13 Mark Probst <mark.probst@gmail.com>
10956 * generic-sharing.c: Code for maintaining the MRGCTX and MRGCTX
10957 templates. Templates are generalized with an additional type_argc
10958 argument. RGCTX templates have type_argc==0, MRGCTX templates
10961 * domain-internals.h, domain.c: New hash table for looking up
10964 * metadata.c, metadata-internals.h: Rename hash and equal
10965 functions for MonoGenericInst's and make them public.
10967 * class-internals.h: New data structures for the MRGCTX. Macros
10968 for distinguishing slots in the RGCTX and the MRGCTX.
10970 2008-06-13 Mark Probst <mark.probst@gmail.com>
10972 * object.c (mono_method_get_imt_slot): Put the same methods of
10973 different instantiations of the same generic interface in the same
10974 IMT slots, to make generic sharing simpler.
10976 2008-06-12 Rodrigo Kumpera <rkumpera@novell.com>
10978 * metadata-internals.h: Added mono_metadata_field_info_with_mempool.
10980 * metadata.c (mono_metadata_field_info_with_mempool): Added.
10981 This function works just like mono_metadata_field_info, but
10982 accept a mempool as argument to be used allocating memory.
10984 * marshal.c (mono_marshal_load_type_info): Use new function
10985 to load marshal data into image mempool.
10987 2008-06-12 Rodrigo Kumpera <rkumpera@novell.com>
10989 * class.c (mono_class_inflate_generic_type_with_mempool):
10990 This function allows to inflate a generic type using
10993 * class.c (inflate_generic_type): Take a mempool as argument
10994 and use it to do type dup'ing.
10996 * class.c (mono_class_setup_fields): Field type for generic
10997 generic classes are allocated from the image mempool.
10999 * metadata.c (free_generic_class): Inflated field type is
11000 now allocated in the image mempool.
11002 2008-06-12 Rodrigo Kumpera <rkumpera@novell.com>
11004 * threads.c (thread_cleanup): Free MonoThread::name.
11006 2008-06-12 Marek Habersack <mhabersack@novell.com>
11008 * appdomain.c (ensure_directory_exists): avoid unnecessary
11009 mkdir(2) calls when the shadow directory already exists.
11010 (mono_make_shadow_copy): copy also satellite assemblies from the
11011 private bin directories.
11013 2008-06-11 Zoltan Varga <vargaz@gmail.com>
11015 * threads.c (mono_thread_get_stack_bounds): Align the stack in all cases.
11017 * threads.c (mono_thread_get_stack_bounds): Align the stack address to
11018 a page boundary. Fixes #396219.
11020 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11022 * marshal.c (mono_marshal_load_type_info): Add a memory barrier
11023 due to double-checked locking.
11025 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11027 * assembly.c (build_assembly_name): Release memory on failure.
11029 * assembly.c (mono_assembly_name_parse_full): Release memory on failure.
11031 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11033 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Release
11036 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11038 * icall.c (ves_icall_System_Reflection_AssemblyName_ParseName): Release
11041 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11043 * loader.c (field_from_memberref): Check if field signature type is equal
11044 to the non-inflated type of the field. Fixes #398980.
11046 2008-06-11 Zoltan Varga <vargaz@gmail.com>
11048 * assembly.c (mono_assembly_load_from_full): Call
11049 mono_assembly_load_friends () outside the assemblies lock, since it can
11050 acquire the loader lock. Fixes #323696.
11052 * reflection.c (resolve_object): Inflate the inst with the context for
11053 FieldOnTypeBuilderInst. Fixes #399010.
11055 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11057 * reflection.c (mono_image_get_field_on_inst_token): Don't
11058 inflate the field to encode it's signature. If it's a
11059 VAR or MVAR it should stay that way in the signature.
11062 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11064 * reflection.c (resolve_object): Release memory of inflated types.
11066 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11068 * loader.c (mono_method_get_signature_full): Remove assert about
11069 loading a methodspec to a generic method. We have such methods, such as
11070 System.Threading.Interlocked::CompareExchange<T>.
11071 This assert was removed since it crashes the verifier when it checks
11072 methods calling CompareExchange<T>.
11074 2008-06-10 Marek Safar <marek.safar@gmail.com>
11076 * icall.c (ves_icall_MonoMethod_GetGenericArguments): Creates an instance
11077 of Type array and not MonoType.
11079 2008-06-10 Marek Habersack <mhabersack@novell.com>
11081 * profiler.c: fix a segfault on shutdown. Patch from Paolo Molaro
11084 2008-06-10 Martin Baulig <martin@ximian.com>
11086 * debug-mono-symfile.h
11087 (MONO_SYMBOL_FILE_MINOR_VERSION): Bump to 6. There were no
11088 changes to the file format, but we were generating incorrect
11089 source file indices in the line number table due to a bug, which
11090 made backtraces report an incorrect source file.
11092 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
11094 * mono-debug.c: Moved mono_debug_free_method_jit_info from
11095 mini/debug-mini.c to here.
11097 * mono-debug.c (il_offset_from_address): Free memory from find_method.
11099 * mono-debug.h: Export mono_debug_free_method_jit_info, users should
11100 use it to release structs returned by mono_debug_find_method.
11102 2008-06-10 Zoltan Varga <vargaz@gmail.com>
11104 * class.c (mono_class_setup_vtable): Call setup_methods even for interfaces
11105 since it needs to set method->slot for all interface methods.
11107 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
11109 * class-internals.h: Forgot to add.
11111 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
11113 * class-internals.h: Added MONO_PROP_DYNAMIC_CATTR.
11115 * reflection.c (lookup_custom_attr): Added a MonoImage argument.
11116 Lookup the custom attributes from property_hash.
11118 * reflection.c (mono_save_custom_attrs): Save the custom attributes
11119 in property_hash. Allocate all data using the image mempool.
11121 * reflection.c: Removed dynamic_custom_attrs. Changed all checks
11122 for dynamic_custom_attrs to checks if the image is dynamic.
11124 2008-06-09 Zoltan Varga <vargaz@gmail.com>
11126 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Free the
11129 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Avoid calling
11130 runtime functions while holding the domain assemblies lock.
11132 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
11134 * verify.c: Reapplied the last bit of the reverted changes.
11136 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
11138 * verify.c: Reapplied more of the reverted changes.
11140 2008-06-09 Martin Baulig <martin@ximian.com>
11142 * debug-mono-symfile.c (load_symfile): Check the major version
11143 first; if it's wrong, don't print the minor version in the error message.
11145 2008-06-09 Zoltan Varga <vargaz@gmail.com>
11147 * appdomain.c (set_domain_search_path): Make this use the domain assemblies
11148 lock instead of the domain lock to avoid deadlocks, since the thread might
11149 already hold the loader lock.
11151 * threads.c (start_wrapper): Call mono_monitor_init_tls ().
11152 (mono_thread_attach): Ditto.
11154 * monitor.c: Use a TLS variable for holding the current thread id instead
11155 of calling pthread_self ().
11156 (mono_monitor_init_tls): New internal function to initialize the TLS
11158 (mono_monitor_try_enter_internal): Put the owner == id check after the
11161 * object-internals.h (_G_BOOLEAN_EXPR): Redefine this glib macro to avoid
11162 missed optimizations when using gcc-4.3.
11164 2008-06-08 Rodrigo Kumpera <rkumpera@novell.com>
11166 * reflection.c (mono_dynamic_image_free): Free the memory
11167 used by MonoGenericParam in MonoDynamicImage::gen_param.
11169 * reflection.c (mono_reflection_setup_generic_class): Allocate
11170 container from mempool.
11172 * reflection.c (mono_reflection_initialize_generic_parameter): Allocate
11173 container from mempool.
11175 2008-06-07 Zoltan Varga <vargaz@gmail.com>
11177 * threads.c (mono_set_pending_exception): New internal function to set the
11178 pending exception of the current thread.
11179 (mono_thread_get_and_clear_pending_exception): Check for
11180 thread->pending_exception as well.
11182 * object-internals.h (struct _MonoThread): Add 'pending_exception' field.
11184 * boehm-gc.c (mono_gc_base_init): Set GC_no_dls before calling GC_init () since
11185 it can trigger a collection.
11187 2008-06-06 Martin Baulig <martin@ximian.com>
11189 Merged the `debugger-kahalo' branch.
11192 (MONO_DEBUGGER_VERSION): Bumped to 72.
11194 * debug-mono-symfile.h
11195 (MonoSymbolFileMethodIndexEntry): Removed.
11196 (MonoSymbolFileMethodEntry): New public typedef.
11197 (MonoSymbolFileOffsetTable): Added `_is_aspx_source'.
11198 (MonoSymbolFileSourceEntry): Remove everything except `index' and
11200 (MonoSymbolFileMethodEntry): Removed.
11201 (MonoSymbolFileLexicalBlockEntry): Removed.
11202 (MonoSymbolFileLineNumberEntry): Removed.
11203 (MonoDebugLexicalBlockEntry): Removed.
11204 (MonoDebugMethodInfo): Replaced `entry' by `guint32 entry_offset';
11205 removed `num_il_offsets' and `il_offsets'.
11206 (MonoSymbolFile): Replace `version' with `major_version' and
11208 (MONO_SYMBOL_FILE_VERSION): Replace with
11209 `MONO_SYMBOL_FILE_MAJOR_VERSION' and
11210 `MONO_SYMBOL_FILE_MINOR_VERSION'.
11212 * debug-mono-symfile.c
11213 (mono_debug_symfile_lookup_location): Add support for the new line
11214 number table format.
11216 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
11218 * metadata.c (free_generic_class): Release the inflated
11219 MonoClass of dynamic generic classes if it's not a generic
11222 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
11224 * verify.c: Reapplied more of the reverted changes.
11226 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
11228 * reflection.c (lookup_custom_attr): Clean the cached flag or
11229 nobody will free it. Fixes a memleak in MonoCustomAttrs::IsDefinedInternal
11232 2008-06-07 Rodrigo Kumpera <rkumpera@novell.com>
11234 * verify.c: Reapplied a small part of the reverted changes.
11236 2008-06-07 Zoltan Varga <vargaz@gmail.com>
11238 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
11240 * monitor.c (mono_monitor_try_enter_internal): Add NULL check which was
11241 previously in managed code.
11242 (mono_monitor_exit): Ditto.
11243 (ves_icall_System_Threading_Monitor_Monitor_exit): Removed, not needed anymore.
11245 * icall-def.h: Rename the Enter/Exit icalls to simply Enter/Exit to match
11246 the managed definition.
11248 2008-06-06 Rodrigo Kumpera <rkumpera@novell.com>
11250 * verify.c: Revert changes to see if it helps with weird buildbot crashes.
11252 2008-06-06 Zoltan Varga <vargaz@gmail.com>
11254 * monitor.c: Redefine GetCurrentThreadId () with a macro on !win32.
11256 * monitor.c: Add some micro optimizations.
11258 * icall.c (type_from_typename): Handle 'bool'.
11260 2008-06-06 Rodrigo Kumpera <rkumpera@novell.com>
11262 * verify.c: Implement constructor verification per P III 1.8.1.4.
11265 2008-06-06 Zoltan Varga <vargaz@gmail.com>
11267 * assembly.c (mono_assembly_loaded_full): Avoid calling the search hooks while
11268 holding the assemblies lock here too.
11270 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
11272 * verify.c: Kill stack_top function.
11274 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
11276 * verify.c: Kill stack_get function.
11278 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
11280 * verify.c (mono_method_verify): Last change broke the build. Fixed.
11282 2008-06-05 Rodrigo Kumpera <rkumpera@novell.com>
11284 * verify.c (verify_type_compatibility_full): Make SZARRAY checks
11287 * verify.c (mono_method_verify): Inflate params and locals to avoid
11288 mismatch when checking for compatibility.
11290 2008-06-05 Jonathan Chambers <joncham@gmail.com>
11292 * metadata.c (mono_string_from_bstr): Fix BSTR marshalling.
11293 Length prefix should be size in bytes. Fix bug #339530.
11295 * metadata.c (mono_string_to_bstr): Fix BSTR marshalling.
11296 Length prefix should be size in bytes. Fix bug #339530.
11298 Code is contributed under MIT/X11 license.
11300 2008-06-05 Bill Holmes <billholmes54@gmail.com>
11302 * decimal.c: Adding MSVC implementation to my_g_bit_nth_msf.
11304 Contributed under MIT/X11 license.
11306 2008-06-05 Martin Baulig <martin@ximian.com>
11308 * mono-debug-debugger.c
11309 (mono_debugger_check_breakpoints): Reflect latest runtime changes.
11311 2008-06-05 Zoltan Varga <vargaz@gmail.com>
11313 * assembly.c (mono_assembly_load_from_full): Avoid calling the search hooks
11314 while holding the assemblies lock to prevent deadlocks. Handle the case
11315 where the search hook returns NULL but the assembly was still loaded.
11318 * appdomain.c (set_domain_search_path): Acquire the domain lock since we
11319 modify domain state.
11321 2008-06-05 Andreas Färber <andreas.faerber@web.de>
11323 * boehm-gc.c: Add DTrace probes gc-{begin,end}.
11324 * Makefile.am (pedump_LDADD): Post-process object files and
11325 add dtrace-generated object file, if necessary.
11327 Code is contributed under MIT/X11 license.
11329 2008-06-04 Rodrigo Kumpera <rkumpera@novell.com>
11331 * reflection.c (mono_dynamic_image_free): Free MonoDynamicImage::public_key.
11333 2008-06-04 Rodrigo Kumpera <rkumpera@novell.com>
11335 * class.c (mono_type_get_full): Add a work-around for generic type definitions.
11337 2008-06-04 Mark Probst <mark.probst@gmail.com>
11339 * threads.c: Try to free everything from the delayed free table
11340 when shutting down threads, and set the variable to NULL after the
11341 table is freed so that calling
11342 mono_thread_hazardous_try_free_all() when shutting down the root
11343 domain doesn't crash.
11345 2008-06-04 Rodrigo Kumpera <rkumpera@novell.com>
11347 * class.c (mono_type_retrieve_from_typespec): Add an argument to inform
11348 the caller if resulting type was inflated.
11350 * class.c (mono_class_create_from_typespec): Free the MonoType if it
11353 * class.c (mono_type_get_full): Free the MonoType if it was inflated.
11356 2008-06-04 Zoltan Varga <vargaz@gmail.com>
11358 * decimal.c (rescale128): Rework the code a bit so it no longer crashes the
11359 class library tests.
11361 * icall.c (ves_icall_InternalInvoke): Applied patch from Andy Hume
11362 (andyhume32@yahoo.co.uk). Add more useful exception messages. Fixes
11365 2008-06-04 Mark Probst <mark.probst@gmail.com>
11367 * domain.c, domain-internals.h: The JIT infos are now freed by the
11368 JIT info table code. They are freed immediately if there only a
11369 single JIT info table in circulation. If there is more, the free
11370 is delayed via a queue.
11372 * threads.c, threads-types.h: New hazard pointer function for
11373 freeing all freeable delayed items in one sitting.
11375 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
11377 * reflection.c (typebuilder_setup_fields): Use mempool for allocations.
11379 * reflection.c (typebuilder_setup_properties): Same.
11381 * reflection.c (typebuilder_setup_events): Same.
11383 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
11385 * reflection.c (mono_custom_attrs_from_builders): Receive a MonoMemPool
11386 and use it for allocating memory.
11388 * reflection.c (mono_marshal_spec_from_builder): Same.
11390 * reflection.c: Change code to use new signatures.
11392 * metadata.c (mono_metadata_type_dup): Add a FIXME note.
11394 2008-06-03 Zoltan Varga <vargaz@gmail.com>
11396 * decimal.c (rescale128): Put back one line which was accidently commented
11399 * decimal.c (rescale128): Disable the code added by the last patch, as it seems
11402 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
11404 * reflection.c (mono_reflection_generic_class_initialize): Name must
11405 be always malloc'ed so we can free it later on. Do this for field, property
11408 * metadata.c (free_generic_class): Free field, property and event names.
11410 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
11412 * reflection.c (fieldbuilder_to_mono_class_field): Use mono_metadata_type_dup
11413 instead of g_memdup.
11415 * reflection.c (typebuilder_setup_fields): Same.
11417 2008-06-03 Zoltan Varga <vargaz@gmail.com>
11419 * decimal.c (rescale128): Optimize this function a bit more.
11421 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
11423 * metadata.c (free_generic_class): Release some memory from
11424 SRE generic classes.
11426 2008-06-03 Rodrigo Kumpera <rkumpera@novell.com>
11428 * reflection.c (mono_image_get_generic_field_token): No reference
11429 to name is kept, free it.
11431 * reflection.c (mono_reflection_generic_class_initialize): Free
11432 more memory of the inflated field.
11434 2008-06-03 Zoltan Varga <vargaz@gmail.com>
11436 * decimal.c (mono_decimalDiv): Moved equality checks here from managed
11439 2008-06-02 Rodrigo Kumpera <rkumpera@novell.com>
11441 * reflection.c (mono_dynamic_image_free): Release memory used by
11442 MonoDynamicImage::array_methods elements.
11444 * reflection.c (assembly_add_win32_resources): Release memory after
11447 2008-06-02 Zoltan Varga <vargaz@gmail.com>
11449 * decimal.c (log2_32): Use an optimized version for this function too.
11451 * decimal.c (log2_64): Fix this on 32 bit machines.
11453 2008-06-02 Rodrigo Kumpera <rkumpera@novell.com>
11455 * class.c (mono_dup_array_type): Implement allocation using a mempool.
11457 * class.c (mono_metadata_signature_deep_dup): Same.
11459 * metadata.c (mono_metadata_signature_dup_full): Added, allow dup'ng with
11462 * metadata.c (mono_metadata_signature_dup): Delegate to the _full version.
11464 * metadata.c (mono_metadata_type_dup): Remove asserts and FIXME.
11466 * metadata-internals.h: Added mono_metadata_signature_dup_full.
11468 * class-internals.h: Update signatures to take a MonoMemPool.
11470 2008-06-02 Dick Porter <dick@ximian.com>
11472 * icall.c (ves_icall_System_ComponentModel_Win32Exception_W32ErrorMessage):
11474 System.ComponentModel.Win32Exception.W32ErrorMessage, using the
11475 FormatMessage API to get the error text. Fixes bug 321827.
11477 2008-06-02 Zoltan Varga <vargaz@gmail.com>
11479 * decimal.c: Add some micro optimizations to make decimal operations faster.
11481 2008-06-01 Rodrigo Kumpera <rkumpera@novell.com>
11483 * reflection.c (method_encode_clauses): Take a mempool
11484 as parameter and use it to allocate the clause array.
11486 * reflection.c (mono_image_get_field_on_inst_token): Free
11487 the inflated type after encoding it.
11489 * reflection.c (mono_dynamic_image_free): Free each element
11490 of MonoDynamicImage::gen_params.
11492 * reflection.c (reflection_methodbuilder_to_mono_method):
11493 Allocate the generic param array from the mempool.
11494 Allocate signature params from the mempool.
11496 * reflection.c (mono_reflection_generic_class_initialize):
11497 Free inflated fields after been used.
11499 2008-05-30 Rodrigo Kumpera <rkumpera@novell.com>
11501 * icall.c: Reapply the memory leak fixes as they no
11502 longer make mono crash.
11504 2008-05-30 Rodrigo Kumpera <rkumpera@novell.com>
11506 * reflection.c (mono_type_get_object): Don't store the suplied
11507 MonoType with type_hash. A caller which pass a type that
11508 was mono_metadata_type_dup'ed cannot free it reliably, as type_hash
11509 might end with a pointer to freed memory.
11510 The solution is to use byval_arg or this_arg from the associated
11511 MonoClass of the supplied type.
11513 2008-05-29 Zoltan Varga <vargaz@gmail.com>
11515 * icall.c: Revert the rest of the last change as it breaks the build too.
11517 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
11519 * icall.c: Revert a leak fix as it's breaking the build.
11521 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
11523 * appdomain.c (mono_make_shadow_copy): Fix another leak of dir_name.
11525 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
11527 * appdomain.c (mono_make_shadow_copy): We leaked dir_name.
11529 2008-05-29 Rodrigo Kumpera <rkumpera@novell.com>
11531 * icall.c: Fix some memory leaks.
11533 2008-05-29 Dick Porter <dick@ximian.com>
11535 * threadpool.c (mono_thread_pool_remove_socket): Always remove the
11536 async socket operations from the pending list when a socket
11537 closes. Leaving it until the threadpool services the event
11538 exposes a race condition when a socket descriptor is reused.
11541 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
11543 * object.c: Fix negative index check for array alocation.
11545 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
11547 * icall.c, marshal.c: Delegate wrappers should skip visibility.
11548 This check is performed by the verifier for IL created delegates
11549 and by Delegate::CreateDelegate for programatically created ones.
11552 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
11554 * sockey-io.c (ves_icall_System_Net_Sockets_Socket_Select_internal):
11555 Fix code to use mono_array_size_t instead of int.
11557 Based on patch by Luis F. Ortiz.
11558 Contributed under X11 license.
11559 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11561 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
11563 * icall.c: Added ves_icall_System_Array_GetLongLength and
11564 ves_icall_System_Array_CreateInstanceImpl64. Both allow handling big
11567 * icall.h: Export both new functions.
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
11573 2008-05-28 Martin Baulig <martin@ximian.com>
11575 The debugger now requires exactly r103463.
11577 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 71.
11578 This version is not supported by the debugger, wait for 72.
11580 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
11582 * object.h: Changed array related functions to use
11583 mono_array_size_t instead of guint32. Forgot to commit this file.
11585 Patch by Luis F. Ortiz.
11586 Contributed under X11 license.
11587 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11590 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
11592 * object.h: Don't use G_MAXINT32 or G_MAXUINT32 as old glibs
11593 don't define it. Use the number literal instead.
11595 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
11597 * icall.c: Changed array related functions to use
11598 mono_array_size_t instead of guint32.
11600 * icall.c (ves_icall_System_Array_GetLength): Check for length
11601 overflow under MONO_BIG_ARRAYS.
11603 Based on patch by Luis F. Ortiz.
11604 Contributed under X11 license.
11605 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11607 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
11609 * object.c: Add 64bits bounds check for arrays under MONO_BIG_ARRAYS.
11611 Based on patch by Luis F. Ortiz.
11612 Contributed under X11 license.
11613 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11615 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
11617 * object.c, object.h: Changed array related functions to use
11618 mono_array_size_t instead of guint32.
11620 Patch by Luis F. Ortiz.
11621 Contributed under X11 license.
11622 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11624 2008-05-27 Rodrigo Kumpera <rkumpera@novell.com>
11626 * object.h: Introduced mono_array_size_t typedef. This must be used
11627 in all places an array length is expected. This is 64bits wide if
11628 MONO_BIG_ARRAYS is enabled.
11630 Patch by Luis F. Ortiz.
11631 Contributed under X11 license.
11632 http://lists.ximian.com/pipermail/mono-devel-list/2008-May/027995.html
11634 2008-05-27 Zoltan Varga <vargaz@gmail.com>
11636 * security-manager.c class.c: Set the class exception info by calling
11637 mono_class_set_failure ().
11639 * class.c (mono_class_get_exception_data): New accessor function.
11640 (mono_class_set_failure): Store exception_data in the property hash.
11642 * class-internals.h (struct _MonoClass): Store 'exception_data' outside
11643 the struct as a property.
11645 * loader.c (mono_get_method_full): Store the lookup result for method
11646 tokens in method_cache, the others in methodref_cache to decrease the memory
11647 usage of hash tables.
11649 * image.c (mono_image_close): Destroy method_cache and methodref_cache.
11650 (mono_image_init): method_cache is lazy inited now.
11652 * metadata-internals.h (struct _MonoImage): Change method_cache to
11653 a MonoValueHashTable, add a separate methodref_cache.
11655 2008-05-27 Eyal Alaluf <eyala@mainsoft.com>
11657 * number-formatter.h: Fix tables to avoid arithemtic overflow in
11658 Double.ToString as exposed by Bug #383531.
11660 2008-05-26 Zoltan Varga <vargaz@gmail.com>
11662 * number-formatter.h: Make some tables static.
11664 * class.c (mono_method_set_generic_container): New accessor function.
11665 (mono_method_get_generic_container): Ditto.
11667 * class-internals.h (struct _MonoMethod): Remove rarely used
11668 'generic_container' field, store it in the property hash instead. Add
11669 'is_generic' boolean field instead.
11671 * image.c (mono_image_init): Initialize property_hash.
11672 (mono_image_close): Destroy property_hash.
11674 * metadata-internals.h (struct _MonoImage): Add 'property_hash' hash table to
11675 hold rarely used fields of runtime structures belonging to this image.
11677 * class.c loader.c verify.c icall.c reflection.c: Use the new accessor functions
11678 to get/set method->generic_container.
11680 * loader.c (mono_get_method_from_token): Avoid loading the method header for
11683 2008-05-25 Zoltan Varga <vargaz@gmail.com>
11685 * class.c (mono_class_inflate_generic_method_full): Don't increase
11686 mono_stats.inflated_method_count for methods found in the cache.
11688 * threads.c (mono_thread_request_interruption): Add a comment about
11691 2008-05-24 Zoltan Varga <vargaz@gmail.com>
11693 * class.c (setup_interface_offsets): Use sizeof (guint16) when allocating the
11694 interface_offsets_packed table.
11696 * class.c (mono_class_init): Remove some dead code.
11698 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Call
11699 mono_class_setup_vtable () when CAS is active to detect security problems.
11701 2008-05-23 Rodrigo Kumpera <rkumpera@novell.com>
11703 * verify.c (mono_delegate_type_equal): Handle VAR, MVAR and GENERICINST.
11705 * verify.c (mono_delegate_signature_equal): Don't compar number of generic
11706 parameters as it's irrelevant for delegate checking.
11708 2008-05-23 Zoltan Varga <vargaz@gmail.com>
11710 * class-internals.h class.c: Correct the name of the 'mono_no_setup_vtable_in_class_init' variable.
11712 * class.c (mono_class_init): Control the creation of a generic vtable using
11713 a global which is true by default, but set to false by the runtime startup code.
11715 * class.c (mono_class_init): Avoid constructing a generic vtable in most cases.
11716 Disabled for now since it breaks the embedding API.
11717 Move the setup of class->methods for arrays to mono_class_setup_methods ().
11718 (mono_class_setup_methods): Add a memory barrier.
11720 * object.c (mono_class_create_runtime_vtable): Add code to handle the case
11721 when mono_class_init () doesn't compute the generic vtable.
11723 2008-05-23 Massimiliano Mantione <massi@ximian.com>
11724 * profiler.c: Added mono_profiler_install_statistical_call_chain,
11725 mono_profiler_stat_get_call_chain_depth and mono_profiler_stat_call_chain
11726 to support call chains (backtrace) in the stat profiler.
11727 * profiler.c, profiler-private.h: Likewise.
11729 2008-05-22 Mark Probst <mark.probst@gmail.com>
11731 * generic-sharing.c: Init generic class when a method of it is
11732 requested via a runtime generic context.
11734 2008-05-22 Zoltan Varga <vargaz@gmail.com>
11736 * class.c (mono_class_init): Add a comment about trying to avoid calling this.
11738 * reflection.c (mono_type_get_object): Add a FIXME.
11740 * loader.c (find_method_in_class): Use mono_class_get_method_by_index ().
11742 * class.c (mono_class_get_method_by_index): New helper function, returning an
11743 entry in the class->methods array.
11745 2008-05-21 Zoltan Varga <vargaz@gmail.com>
11747 * class.c (mono_class_init): Only do the array optimization for szarrays.
11748 Avoid creating a generic vtable for generic instances as well.
11749 (mono_class_get_method_from_name_flags): Don't search in the metadata for
11752 2008-05-21 Rodrigo Kumpera <rkumpera@novell.com>
11754 * loader.c (mono_get_method_constrained): Inflate the signature
11755 with class context. Fix #325283.
11757 2008-05-21 Zoltan Varga <vargaz@gmail.com>
11759 * object.c (mono_class_create_runtime_vtable): Add a comment.
11761 * class.c (get_implicit_generic_array_interfaces): Call mono_class_init ()
11763 (setup_interface_offsets): Handle the case when this is called twice for arrays.
11764 (mono_class_setup_vtable_general): Add an assert.
11765 (mono_class_init): Avoid creating a generic vtable for arrays.
11767 * class.c (mono_generic_class_get_class): Don't call setup_interface_offsets ()
11768 here, let mono_class_init () do that.
11770 * class.c (mono_class_init): Avoid calling mono_class_setup_methods () for
11771 interfaces in mscorlib.
11773 * class.c (mono_class_setup_vtable): Avoid calling setup_methods () for
11774 interfaces. Add some comments.
11775 (mono_class_init): Call mono_class_setup_methods () here since it is no
11776 longer called by mono_class_setup_vtable ().
11778 * object.c (mono_class_proxy_vtable): Null out entries in pvt->vtable which are
11779 not set in class->vtable.
11780 (mono_class_create_runtime_vtable): Reenable the disabled code.
11782 * object.c (mono_class_create_runtime_vtable): Disable the last change for
11783 now as it causes some test failures.
11785 * object.c (mono_class_create_runtime_vtable): Avoid creating a generic vtable
11786 if using the vtable trampoline. Also remove some strange code which put the
11787 generic methods themselves into the vtable slots. Remove the AOT init_vtable
11788 stuff as it is no longer needed.
11790 2008-05-19 Rodrigo Kumpera <rkumpera@novell.com>
11792 * pedump.c: Give make --verify all option check code as well.
11793 Using --verify code won't check for metadata now.
11795 2008-05-19 Martin Baulig <martin@ximian.com>
11797 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 70.
11800 (_mono_debug_using_mono_debugger): New global variable; it's set
11801 directly by the debugger, so mono_debug_using_mono_debugger() also
11802 works after attaching.
11804 2008-05-18 Rodrigo Kumpera <rkumpera@novell.com>
11806 * object.c (mono_class_create_runtime_vtable): Use memory barriers
11807 as we do double checked locking on MonoClass::runtime_info and
11808 MonoClassRuntimeInfo::domain_vtables.
11810 2008-05-18 Zoltan Varga <vargaz@gmail.com>
11812 * debug-helpers.c (print_field_value): Fix a warning.
11814 2008-05-16 Zoltan Varga <vargaz@gmail.com>
11816 * object.c (mono_object_get_virtual_method): Fix a crash if method->slot is not
11817 set in the AOT case.
11819 2008-05-16 Rodrigo Kumpera <rkumpera@novell.com>
11821 * class.c (mono_class_setup_vtable_general): Use memory barriers
11822 as we do double checked locking on MonoClass::vtable.
11824 2008-05-16 Rodrigo Kumpera <rkumpera@novell.com>
11826 * reflection.c (resolve_object): Inflate only if the generic context
11827 is not null. Fixes #389886.
11829 2008-05-15 Jonathan Chambers <joncham@gmail.com>
11831 * metadata.c (emit_marshal_string): Free return strings using mono_marshal_free
11834 Code is contributed under MIT/X11 license.
11836 2008-05-14 Rodrigo Kumpera <rkumpera@novell.com>
11838 * class.c: Revert unrelated change.
11840 2008-05-14 Rodrigo Kumpera <rkumpera@novell.com>
11842 * verify.c (check_is_valid_type_for_field_ops): Type on stack can be
11843 a generic instantiation, use mono_class_from_mono_type instead of playing
11844 with MonoType directly.
11846 2008-05-14 Rodrigo Kumpera <rkumpera@novell.com>
11848 * class.c: Added mono_class_has_parent_and_ignore_generics. Visibility
11849 checks must ignore generic instantiations, so mono_class_has_parent is not
11850 suitable. Fixes #390128.
11852 2008-05-14 Zoltan Varga <vargaz@gmail.com>
11854 * reflection.c (mono_image_create_token): Add a 'register_token' argument, and use
11855 it to avoid registering tokens during metadata generation. Fixes #390023.
11857 2008-05-14 Kornél Pál <kornelpal@gmail.com>
11859 * coree.c: Rename dwOldProtect to OldProtect that makes naming convention
11862 Contributed under MIT/X11 license.
11864 2008-05-14 Kornél Pál <kornelpal@gmail.com>
11866 * domain.c (mono_init_internal): Enable LoadLibrary support. Load EXE image
11867 even when get_runtimes_from_exe didn't load it that allows mono_fixup_exe_image
11868 to fixup the EXE image.
11869 (mono_cleanup): Use mono_close_exe_image.
11870 (mono_close_exe_image): New function.
11871 * image.c: Include "marshal.h".
11872 (mono_image_open_from_module_handle): Add ref_count argument. Return the image.
11873 (mono_image_open_full, mono_image_close): Fix LoadLibrary/FreeLibrary reference
11874 counting when the image is loaded outside of mono_image_open_full. Set status
11875 based on GetLastError.
11876 * coree.c: Include required headers. Add init_from_coree.
11877 (_CorDllMain): Support fix in mono_image_open_full, mono_image_close. Call
11878 mono_assembly_open only when the image has vtfixups. Set init_from_coree.
11879 (_CorExeMain): Set init_from_coree.
11880 (CorExitProcess): Only call ExitProcess for now.
11881 (CorBindToRuntimeEx): New stub implementation.
11882 (CorBindToRuntime): New function.
11883 (MonoFixupCorEE): Fixup CorBindToRuntime and CorBindToRuntimeEx.
11884 (MonoFixupExe): ILONLY executables require no fixups.
11885 (mono_set_act_ctx): New function to set activation context.
11886 (mono_load_coree): Use init_from_coree. Call mono_set_act_ctx.
11887 * coree.h: Move STATUS_SUCCESS and STATUS_INVALID_IMAGE_FORMAT to header.
11888 Declare mono_module_handle, coree_module_handle, mono_get_module_file_name,
11889 mono_load_coree, mono_fixup_exe_image and mono_image_open_from_module_handle
11891 * domain-internals.h: Add mono_close_exe_image.
11893 Contributed under MIT/X11 license.
11895 2008-05-13 Rodrigo Kumpera <rkumpera@novell.com>
11897 * metadata.c (mono_metadata_compute_size): Correctly calculate field
11898 size for generic param and event tables. Fixes #388977.
11900 2008-05-13 Zoltan Varga <vargaz@gmail.com>
11902 * loader.c (mono_method_signature): Use memory barriers because of the double
11903 checked locking pattern.
11905 * threads.c (remove_and_abort_threads): Stop and wait for threads which are
11906 aborting or aborted as well. Fixes #376391.
11908 * threads.c (mono_thread_execute_interruption): Avoid depending on no longer
11909 existing runtime state in the Suspend handler during shutdown.
11911 2008-05-12 Zoltan Varga <vargaz@gmail.com>
11913 * threads.c (mono_thread_request_interruption): Add some FIXMEs.
11915 * threads.c (mono_thread_suspend_all_other_threads): Add support for threads
11916 which are starting up or shutting down.
11918 * threads.c (mono_threads_set_shutting_down): Don't return a value since
11919 this function never returns if the runtime is already shutting down.
11921 * icall.c (ves_icall_System_Environment_Exit): Update after
11922 mono_threads_set_shutting_down () signature change.
11924 2008-05-09 Rodrigo Kumpera <rkumpera@novell.com>
11926 * class.c: Added can_access_instantiation to verify if the instantiation
11927 is visible. Fix access check for nested types as they returned TRUE
11928 before doing type and generic instantiation visibility checks.
11930 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
11932 * reflection.c (mono_reflection_create_generic_class): The created type
11933 must have a different container from its TypeBuilder. Otherwise they
11934 will end sharing generic arguments, which is wrong.
11936 Due to the sharing, making a generic instance of the created type using
11937 the TypeBuider generic arguments resulted in the generic type definition
11938 been returned, which is wrong as well.
11940 As a bonus the code was leaking the type_params array. This memory should
11941 be allocated from the image mempool.
11943 This fixes bug #354047.
11945 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
11947 * metadata-internals.h: Move MONO_SECMAN_FLAG macros from mini/declsec.h
11948 to here as they are now used in assembly.c new code.
11949 Added a skipverification flag to MonoAssembly.
11950 New internal function mono_assembly_has_skip_verification.
11952 * assembly.c: New function mono_assembly_has_skip_verification. It checks
11953 if an assembly has a version 2.0 SkipVerification security attribute. Fixes
11956 2008-05-07 Zoltan Varga <vargaz@gmail.com>
11958 * object.c (mono_object_get_virtual_method): Inflate the resulting method if
11959 needed. Fixes #387034.
11961 * class.c (mono_class_inflate_generic_type): Avoid a crash if context is NULL.
11963 2008-05-06 Miguel de Icaza <miguel@novell.com>
11965 * assembly.c (mono_assembly_load_reference): Prevent crash while
11966 disassembling Silverlight 2.0 executables while we still do not
11967 have GACed libraries.
11969 2008-05-07 Zoltan Varga <vargaz@gmail.com>
11971 * reflection.c: Special case generic type definitions as well. Fixes #383444.
11973 2008-05-06 Zoltan Varga <vargaz@gmail.com>
11975 * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Fix handling
11976 of the dynamic case. Fixes #387404.
11978 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
11980 *verify.c (mono_verifier_is_class_full_trust): If under
11981 verify_all and the verifier mode was not set, only
11982 gac and corlib types are fulltrust. This makes --verify-all
11983 usable to detect unverifiable code, which is the expected
11986 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
11988 * verify.h: Ops, commited the header with debug
11991 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
11993 * verify.c (merge_stack): Use the new value on unverifiable
11996 * verify.c (verify_type_compatibility_full): Comparison
11997 of nullable types can't use mono_class_is_assignable_from.
11999 * verify.c, verify.h: Added MONO_VERIFY_REPORT_ALL_ERRORS
12000 that makes all verification errors be reported.
12002 * pedump.c: Pass MONO_VERIFY_REPORT_ALL_ERRORS to
12003 mono_method_verify.
12005 2008-05-05 Robert Jordan <robertj@gmx.net>
12007 * marshal.c (mono_marshal_get_thunk_invoke_wrapper):
12008 support for value types. See #386415.
12010 * object.c: comments.
12012 Code is contributed under MIT/X11 license.
12014 2008-05-05 Martin Baulig <martin@ximian.com>
12016 * debug-mono-symfile.h
12017 (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): Removed; dropped support
12018 for old pre-terrania symbol files.
12020 2008-05-05 Andreas Färber <andreas.faerber@web.de>
12022 * mono-config.c: Add ppc64 architecture.
12024 Code is contributed under MIT/X11 license.
12026 2008-05-05 Andreas Färber <andreas.faerber@web.de>
12028 * object.c (mono_create_ftnptr, mono_get_addr_from_ftnptr):
12029 PPC64 uses function descriptors as well.
12031 Code is contributed under MIT/X11 license.
12033 2008-05-04 Zoltan Varga <vargaz@gmail.com>
12035 * object.c (compute_class_bitmap): Ignore literal static fields.
12037 * sgen-gc.c (mono_gc_base_init): Print some help when the MONO_GC_DEBUG env
12038 var has an invalid format.
12039 (describe_ptr): Add some sanity checks for the vtable.
12040 (add_nursery_frag): Clear unused nursery fragments.
12041 (major_collection): Clear all remaining nursery fragments.
12043 2008-05-03 Robert Jordan <robertj@gmx.net>
12045 * image.c, metadata-internals.h: add thunk_invoke_cache.
12047 * marshal.c, marshal.h: implement
12048 mono_marshal_get_thunk_invoke_wrapper ().
12050 * object.c, object.h: implement mono_method_get_unmanaged_thunk ().
12052 Code is contributed under MIT/X11 license.
12054 2008-05-02 Rodrigo Kumpera <rkumpera@novell.com>
12056 * verify.c (do_leave): Empty the stack.
12058 2008-05-02 Rodrigo Kumpera <rkumpera@novell.com>
12060 * class.c (mono_class_is_assignable_from): Variance
12061 doesn't work between reference and value types. For example,
12062 given type C<T+>, C<int32> is not assignable to C<object>.
12063 Break the argument checking loop on first error.
12065 2008-05-02 Atsushi Enomoto <atsushi@ximian.com>
12067 * icall.c : base64_to_byte_array() needs some more strict
12068 check for sequence of '=' characters. Patch by Santa
12069 Marta (http://deee.g.hatena.ne.jp/santamarta).
12071 Contributed under MIT/X11 license.
12072 (see http://www.lingr.com/room/mono-jp/archives/2008/04/20)
12074 2008-05-02 Jonathan Chambers <joncham@gmail.com>
12076 * domain.c: Disable LoadLibrary support to fix Win32 build.
12078 Code is contributed under MIT/X11 license.
12080 2008-05-02 Zoltan Varga <vargaz@gmail.com>
12082 * sgen-gc.c: Add support for clearing nursery memory when a tlab is allocated,
12083 to help with cache behaviour.
12085 2008-05-01 Miguel de Icaza <miguel@novell.com>
12087 * appdomain.c (mono_domain_from_appdomain): Add new accessor
12090 2008-05-01 Zoltan Varga <vargaz@gmail.com>
12092 * sgen-gc.c: Implement thread-local allocation and a managed allocation routine.
12094 2008-05-01 Dick Porter <dick@ximian.com>
12096 * process.c (process_get_fileversion): Only pass 16 bits of
12097 language ID to VerLanguageName. Fixes bug 381204.
12099 2008-04-30 Rodrigo Kumpera <rkumpera@novell.com>
12101 * verify.c (mono_method_verify): Fix the comparison
12102 operator for code bounds check.
12104 2008-04-30 Rodrigo Kumpera <rkumpera@novell.com>
12106 * verify.c (mono_method_verify): Check the bounds of
12107 all access of the code array.
12109 2008-04-29 Kornél Pál <kornelpal@gmail.com>
12111 * appdomain.c: Use HAVE_SYS_UTIME_H that fixes MSVC build.
12113 2008-04-28 Zoltan Varga <vargaz@gmail.com>
12115 * image.c (mono_image_strong_name_position): Fix return value when the rva is
12118 2008-04-28 Kornél Pál <kornelpal@gmail.com>
12120 * loader.c (mono_get_method_from_token, mono_method_signature): Add
12121 support for METHOD_IMPL_ATTRIBUTE_NATIVE.
12122 * domain.c (mono_init_internal): Load and fixup mscoree.dll on startup and
12123 fixup main EXE images when using mono.exe for mixed-mode assembly support.
12124 * domain-internals.h: Add MonoLoadFunc, mono_install_runtime_load and
12126 * appdomain.c: Add mono_install_runtime_load, mono_runtime_load to support
12127 runtime initialization from metadata.
12128 * assembly.c: Remove obsolete ceGetModuleFileNameA.
12129 (mono_set_rootdir): Use mono_get_module_file_name.
12130 (mono_assembly_load_from_full): Call mono_image_fixup_vtable for module
12132 * cil-coff.h: Add MonoVTableFixup. Update mono_cli_rva_image_map signature.
12133 * metadata-internals.h: Add is_module_handle to _MonoImage on Windows.
12134 * image.c (mono_cli_rva_image_map): Use MonoImage instead of
12135 MonoCLIImageInfo. Add support for module handles.
12136 (load_cli_header): Update mono_cli_rva_image_map signature.
12137 (load_metadata_ptrs): Update mono_cli_rva_image_map signature.
12138 (mono_image_strong_name_position): Use mono_cli_rva_image_map.
12139 (mono_image_rva_map): Add support for module handles.
12140 (mono_image_ensure_section_idx): Add support for module handles.
12141 (mono_image_close): Add support for module handles.
12142 (do_load_header): Add support for module handles.
12143 (mono_image_open_from_module_handle): New function for internal use.
12144 (mono_image_open_full): Load normal images using LoadLibrary on Windows.
12145 (mono_image_load_module): Call mono_image_fixup_vtable for module handles.
12146 (mono_image_load_file_for_image): Call mono_image_fixup_vtable for module
12148 (mono_image_fixup_vtable): New function for mixed-mode assembly support.
12149 * image.h: Add mono_image_fixup_vtable.
12150 * coree.c: New file for mscoree.dll functions and mixed-mode assembly
12152 * coree.h: New file.
12153 * marshal.c (mono_marshal_get_native_wrapper): Throw exception for
12154 unsupported native code.
12155 (mono_marshal_set_callconv_from_modopt): New function splitted from
12156 mono_marshal_get_managed_wrapper.
12157 (mono_marshal_get_managed_wrapper): Use
12158 mono_marshal_set_callconv_from_modopt.
12159 (mono_marshal_get_vtfixup_ftnptr): New function for mixed-mode assembly support.
12160 * marshal.h: Add mono_marshal_get_vtfixup_ftnptr.
12161 * gc.c (mono_gc_init): Don't wait for the finalizer thread on Windows because
12162 that results in a deadlock when the runtime is loaded in _CorDllMain.
12163 * Makefile.am: Add coree.c and coree.h.
12165 Contributed under MIT/X11 license.
12167 2008-04-28 Mark Probst <mark.probst@gmail.com>
12169 * generic-sharing.c: Search for type arguments in array element
12172 2008-04-28 Mark Probst <mark.probst@gmail.com>
12174 * class-internals.h, generic-sharing.c: New, small runtime generic context.
12176 * metadata-internals.h, domain.c, image.c: Less bookkeeping is required for the new RGCTX.
12178 * object.c: Don't setup the RGCTX when the vtable is created,
12179 because we're setting it up lazily now.
12181 2008-04-26 Zoltan Varga <vargaz@gmail.com>
12183 * sgen-gc.c: Make the 'desc' variables an mword instead of a guint32 to fix
12186 2008-04-24 Rodrigo Kumpera <rkumpera@novell.com>
12188 * verify.c (verify_class_for_overlapping_reference_fields):
12189 If class is under fulltrust allow reference types to overllap
12190 if they have the same RVA.
12192 2008-04-24 Rodrigo Kumpera <rkumpera@novell.com>
12194 * pedump.c: Added new flag valid-only, that makes the verifier
12195 behaves just like --security=validil. It won't fail type load
12196 due to unverifiable restrictions.
12198 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
12200 * class-internals.h (struct MonoMethod): Added a verification_success
12201 field to cache verifier executions. Reduced MonoMethod:slot size by
12204 2008-04-23 Zoltan Varga <vargaz@gmail.com>
12206 * sgen-gc.c (OBJ_RUN_LEN_SIZE): Make this and other macros take a 'desc' argument
12207 instead of a 'vt' argument to save an indirection and to allow these to be used
12209 (scan_vtype): New helper function to scan an area using a gc descriptor.
12210 (mono_gc_wbarrier_value_copy): Implement this.
12211 (handle_remset): Add support for REMSET_VTYPE.
12212 (find_in_remset_loc): Ditto.
12213 (mono_gc_base_init): Allow some debugging options to be controlled through the
12214 use of the MONO_GC_DEBUG env variable.
12215 (mono_gc_alloc_obj): Add support the 'collect-before-allocs' debug option.
12216 (collect_nursery): Add support for the 'check-at-minor-collection' debug option.
12218 2008-04-23 Martin Baulig <martin@ximian.com>
12220 * domain.c (mono_domain_create): Move the call to
12221 mono_debug_domain_create() down, after allocating the domain id.
12223 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
12225 verify.c (verify_class_for_overlapping_reference_fields): Skip
12226 static fields while verifying for overlapping fields as they
12227 don't matter at all.
12229 2008-04-23 Marek Habersack <mhabersack@novell.com>
12231 * domain-internals.h: added a declaration of
12232 mono_make_shadow_copy.
12234 * assembly.c (mono_assembly_open_full): shadow copying of
12235 assemblies moved to here, so that all the assemblies within the
12236 application domain's private binary directories can be
12237 processed. Fixes bug #380546
12239 * appdomain.c (mono_make_shadow_copy): make_shadow_copy renamed to
12240 mono_make_shadow_copy and made non-static. The decision whether
12241 to shadow-copy an assembly is made based on its location - it's
12242 copied if it's in one of the private application domain binary
12243 directories and its different to the target file in the shadow
12244 directory. Fixes bug #380546
12246 2008-04-22 Zoltan Varga <vargaz@gmail.com>
12248 * reflection.c (fixup_method): Handle {Method|Constructor}OnTypeBuilderInst.
12250 * object-internals.h: Add MonoReflection{Method|Constructor}OnTypeBuilderInst
12253 * reflection.c (mono_image_create_token): Handle
12254 Method/ConstructorOnTypeBuilderInst.
12255 (resolve_object): Ditto.
12256 (inflate_mono_method): Receive the inflated class instead of a MonoGenericClass
12257 so it can be called from resolve_object. Also handle the case when the inflated
12258 class already has its methods setup.
12260 2008-04-21 Martin Baulig <martin@ximian.com>
12262 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 69.
12264 2008-04-20 Geoff Norton <gnorton@novell.com>
12266 * icall.c: Fix the _NSGetEnviron define to prevent an impropoer
12267 pointer dereference.
12269 2008-04-15 Marek Habersack <mhabersack@novell.com>
12271 * appdomain.c (try_load_from): if IOMAP is in effect, call the
12272 portability API to look up the assembly file. Fixes behavior in
12273 situations when the application has a bin/ directory, but the
12274 assembly search patch refers to Bin/ (and thus the requested file
12275 name is Bin/SomeLibrary.dll). Fixes bug #379888
12277 2008-04-15 Rodrigo Kumpera <rkumpera@novell.com>
12279 verify.c (mono_type_is_generic_argument): Extracted this check
12280 from a dozen places to here.
12282 verify.c: Fixed all issues related to boxing generic arguments
12283 and their constraints.
12285 2008-04-14 Rodrigo Kumpera <rkumpera@novell.com>
12287 verify.c (mono_class_interface_implements_interface): Fix win32 build.
12289 2008-04-14 Zoltan Varga <vargaz@gmail.com>
12291 * reflection.c (mono_custom_attrs_construct): Fix crash when the cattr type
12292 isn't finished yet. Fixes #363447.
12294 2008-04-13 Zoltan Varga <vargaz@gmail.com>
12296 * class.c (mono_bounded_array_class_get): Fix the name of bounded array types.
12299 2008-04-13 Jb Evain <jbevain@novell.com>
12301 * domain.c: update the 2.1 profile versions.
12302 Merged from the Moonlight 2 branch.
12304 2008-04-12 Zoltan Varga <vargaz@gmail.com>
12306 * assembly.c (mono_assembly_load_from_full): Do the check for loading other
12307 mscorlibs for the non-refonly case as well.
12309 * image.c (do_mono_image_load): Remove the mscorlib check, it is already done
12310 in mono_assembly_load_from_full (). Fixes #378924.
12312 2008-04-11 Geoff Norton <gnorton@novell.com>
12314 * icall.c: The global extern environ doesn't exist on Mac. We
12315 need to call NSGetEnviron instead.
12317 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
12319 verify.c: Add generic method constraint verification.
12321 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
12323 class.c (mono_class_inflate_generic_method_full): Add a long
12324 explanation to the is_mb_open hack. Remove the FIXME.
12326 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
12328 * verify.c (mono_method_verify): Mark all unknown opcodes
12329 as invalid. Mark jmp as unverifiable.
12331 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
12333 * verify.c: Add code to do type constraint verification on class instances.
12335 * verify.c (mono_verifier_verify_class): Use the type constraint
12338 2008-04-10 Rodrigo Kumpera <rkumpera@novell.com>
12340 * class.c (mono_class_get_field_default_value): Don't pass cindex
12341 as hint to mono_metadata_get_constant_index. The local is not initialized
12342 and should contain garbage most of the time. This could only work
12343 with a lot of luck.
12345 2008-04-09 Rodrigo Kumpera <rkumpera@novell.com>
12347 * tokentype.h: Add MONO_TOKEN_GENERIC_PARAM.
12349 2008-04-09 Rodrigo Kumpera <rkumpera@novell.com>
12351 * class-internals.h: Add generic_param_token to MonoClass::sizes union.
12353 * class.c (mono_class_from_generic_parameter): Save the token of the
12354 generic param in MonoClass::sizes.generic_param_token.
12356 * reflection.c (mono_custom_attrs_from_class): If the class type is
12357 VAR or MVAR retrieve the attributes of the generic param.
12359 2008-04-08 Rodrigo Kumpera <rkumpera@novell.com>
12361 * class.c (mono_class_init): Do class verification if the verifier
12364 2008-04-08 Rodrigo Kumpera <rkumpera@novell.com>
12366 * verify-internal.h: Added mono_verifier_verify_class.
12368 * verify.c: Added mono_verifier_verify_class. It checks for
12369 classes with explicit layout that have overlapping reference fields.
12371 * pedump.c: Init the verifier state prior to verification. Fixed
12372 command line arguments.
12374 2008-04-08 Rodrigo Kumpera <rkumpera@novell.com>
12376 * Makefile.am: Added verify-internals.h, hopefully fix the build.
12378 2008-04-08 Zoltan Varga <vargaz@gmail.com>
12380 * verify-internals.h: Fix a warning.
12382 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
12384 * verify-internals.h: New header with the verifier configuration
12385 extracted from mini.c.
12387 * verify.c: Implemented the new functions exported by verify-internals.h.
12389 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
12391 * verify.c: Add proper verification of ckfinite.
12393 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
12395 * verify.c (do_conversion): Improved error message to something
12398 * verify.c (check_is_valid_type_for_field_ops): Fix to work
12399 with primitive types.
12401 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
12403 * verify.c: Added tail prefix checking. Marked icall
12406 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
12408 * verify.c: Fix the detection of branches to the middle
12411 2008-04-03 Rodrigo Kumpera <rkumpera@novell.com>
12413 * verify.c: Implemented verification of volatile. and
12414 unaligned. prefix. Check if a type is valid after retrieving it.
12416 2008-04-01 Dick Porter <dick@ximian.com>
12418 * process.c (process_get_fileversion): If there's no string block,
12419 set the file language to en_US. Fixes the other new part of bug
12422 2008-03-29 Rodrigo Kumpera <rkumpera@novell.com>
12424 * class.c: New functions mono_method_can_access_field_full and
12425 mono_method_can_access_method_full. They perform type visibility
12426 and type site check.
12428 * class-internal.h: Added exported functions.
12430 * verify.c: Use new functions to implement proper visibility checks.
12432 2008-03-29 Zoltan Varga <vargaz@gmail.com>
12434 * mono-config.h: Add missing G_BEGIN_DECLS/G_END_DECLS. Fixes #375188.
12436 2008-03-28 Dick Porter <dick@ximian.com>
12438 * process.c (process_get_fileversion): Use the first language ID
12439 we see, rather than insisting on an invariant language. Fixes bug
12442 2008-03-28 Zoltan Varga <vargaz@gmail.com>
12444 * reflection.c (calc_section_size): Use add_stream_zero to align the size of
12445 the streams to fix reading of invalid memory later.
12447 * metadata.h (MonoType): Use 'MonoTypeEnum' instead of int for the 'type' field
12450 2008-03-26 Zoltan Varga <vargaz@gmail.com>
12452 * marshal.c (signature_dup): Use mono_metadata_signature_alloc ().
12453 (cominterop_method_signature): Ditto. Fix the size passed to memcpy.
12455 2008-03-26 Massimiliano Mantione <massi@ximian.com>
12456 * threads.h: Added MonoThreadManageCallback type and
12457 mono_thread_set_manage_callback prototype
12458 * object-internals.h: In _MonoThread, renamed unused6 to manage_callback
12459 (used to store the mono_thread_manage callback).
12460 * threads.c: Added mono_thread_set_manage_callback, and handle
12461 "MonoThread->manage_callback" in build_wait_tids.
12463 2008-03-26 Dick Porter <dick@ximian.com>
12465 * process.c (process_get_fileversion): Set FileVersionInfo strings
12466 to Empty when the resource doesn't have the particular info.
12469 2008-03-25 Rodrigo Kumpera <rkumpera@novell.com>
12471 * verify.c (mono_method_verify): Proper prefix validation.
12473 2008-03-25 Zoltan Varga <vargaz@gmail.com>
12475 * icall.c (ves_icall_InternalInvoke): Return exceptions thrown by the icall
12476 itself in a separate argument instead of throwing them. Fixes #373448.
12478 * appdomain.c: Bump corlib version.
12480 2008-03-24 Rodrigo Kumpera <rkumpera@novell.com>
12482 * verify.c: Implemented readonly prefix and verify controled mutability pointers.
12484 2008-03-20 Kornél Pál <kornelpal@gmail.com>
12486 * file-io.c, filewatcher.c, threadpool.c, threads.c: Removed Windows
12489 2008-03-20 Mark Probst <mark.probst@gmail.com>
12491 * generic-sharing.c, class-internals.h: Code for putting
12492 reflection types into the runtime generic context.
12494 2008-03-19 Rodrigo Kumpera <rkumpera@novell.com>
12496 * icall.c (ves_icall_get_method_info): Return correct values for the call convention.
12500 2008-03-17 Rodrigo Kumpera <rkumpera@novell.com>
12502 * verify.c (VerifyContext): Added instruction prefix data to the struct.
12504 * verify.c (is_compatible_boxed_valuetype): Don't check if the type is a valuetype, been boxed is enough.
12506 * verify.c (do_invoke): Support constrained callvirt form. Grouped similar checks together.
12508 * verify.c (do_cast): Let the result value keep the boxed status.
12510 * verify.c (mono_method_verify): Add proper support for prefixed and implement contrained.
12512 2008-03-17 Jb Evain <jbevain@novell.com>
12514 * reflection.c: when running on a 2.0 runtime, emit
12515 unconditionally the #~ header version as 2.0, and the
12516 CLI header version as 2.5, for symmetry's sake with csc.
12518 2008-03-16 Zoltan Varga <vargaz@gmail.com>
12520 * class.c: Remove the unused cache_interface_offsets stuff.
12522 * class.c loader.c domain.c verify.c metadata.c debug-helpers.c threadpool.c
12523 profiler.c: Fix warnings.
12525 2008-03-16 Mark Probst <mark.probst@gmail.com>
12527 * generic-sharing.c, class-internals.h: Support for putting
12528 methods into the runtime generic context.
12530 2008-03-16 Zoltan Varga <vargaz@gmail.com>
12532 * class.c (mono_class_setup_fields): Ignore calls made to this function for
12533 classes which are generic instances of not-yet finished typebuilders. Fixes
12536 * reflection.c (fixup_method): Add support for FieldOnTypeBuilderInst.
12538 2008-03-15 Zoltan Varga <vargaz@gmail.com>
12540 * metadata-internals.h (MonoDynamicImage): Add 'generic_def_objects' hash table.
12542 * class-internals.h (MonoMethodInflated): Remove the rarely used reflection_info
12543 field, replace it with a hash table in MonoDynamicImage.
12545 * reflection.c (inflate_mono_method): Access the generic definition object from
12546 image->generic_def_objects instead of imethod->reflection_info.
12548 * reflection.c (mono_reflection_bind_generic_method_parameters): Ditto.
12550 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition): Ditto.
12552 * image.c (mono_image_close): Move the dynamic image freeing code to a separate
12553 function in reflection.c so it is easier to keep in sync with the dynamic image
12556 * reflection.c (mono_dynamic_image_free): New internal function, extracted from
12557 mono_image_close ().
12559 2008-03-15 Mark Probst <mark.probst@gmail.com>
12561 * class.c (mono_class_generic_sharing_enabled): Disable generic
12562 sharing for all architectures except AMD64 and x86 to fix build.
12564 2008-03-14 Rodrigo Kumpera <rkumpera@novell.com>
12566 * verify.c: Use the generic definition MonoGenericContext when available.
12567 Remove code for checking generics instance compatibility in favor of
12568 mono_class_is_assignable_from.
12570 2008-03-14 Mark Probst <mark.probst@gmail.com>
12572 * marshal.c, marshal.h, metadata-internals.h, image.c,
12573 wrapper-types.h: New wrapper for invoking a shared static method
12574 without having to pass the runtime generic context argument.
12576 2008-03-14 Rodrigo Kumpera <rkumpera@novell.com>
12578 * icall-def.h: Add missing function PerformanceCounterCategory::GetInstanceNames.
12580 2008-03-14 Zoltan Varga <vargaz@gmail.com>
12582 * reflection.c (mono_image_get_field_on_inst_token): Add caching.
12584 * reflection.c (mono_image_get_field_on_inst_token): New helper function to
12585 create a token from a FieldOnTypeBuilderInst.
12586 (mono_image_create_token): Handle FieldOnTypeBuilderInst.
12587 (resolve_object): Ditto.
12589 * object-internals.h (MonoReflectionFieldOnTypeBuilderInst): New structure
12590 mirroring System.Reflection.Emit.FieldOnTypeBuilderInst.
12592 2008-03-14 Martin Baulig <martin@ximian.com>
12594 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 68.
12596 * debug-mono-symfile.h
12597 (MONO_SYMBOL_FILE_VERSION): Bump to 41.
12598 (MONO_SYMBOL_FILE_COMPATIBILITY_VERSION): New #define.
12600 2008-03-10 Martin Baulig <martin@ximian.com>
12602 * debug-mono-symfile.h
12603 (MonoSymbolFileMethodAddress): Removed `num_lexical_blocks' and
12604 `lexical_block_table_offset'.
12605 (MonoDebugMethodInfo): Removed `num_lexical_blocks' and
12607 (MonoSymbolFile): Added `version'.
12610 (MonoDebugLexicalBlockEntry): Removed.
12611 (MonoDebugMethodJitInfo): Removed `num_lexical_blocks' and
12614 * mono-debug.c (mono_debug_add_method): Don't compute lexical
12615 blocks here; the debugger now does this internally.
12617 2008-02-27 Martin Baulig <martin@ximian.com>
12619 * object.c (mono_runtime_exec_main): Call
12620 `mono_debugger_event (MONO_DEBUGGER_EVENT_REACHED_MAIN)' and
12621 `mono_debugger_event (MONO_DEBUGGER_EVENT_MAIN_EXITED)' here.
12623 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
12625 * verify.c (verify_type_compatibility_full): Allow native int to be converted
12626 to native pointer in non-strict mode. Required to "(IntPtr)null" work.
12628 2008-03-12 Rodrigo Kumpera <rkumpera@novell.com>
12630 * verify.c (verify_ldftn_delegate): Accept a sealed type when using
12631 ldftn with a virtual method.
12633 2008-03-13 Geoff Norton <gnorton@novell.com>
12635 * decimal.c: Only include memory.h if the platform has it.
12637 Wed Mar 12 12:11:06 CET 2008 Paolo Molaro <lupus@ximian.com>
12639 * assembly.c, class.c, metadata-internals.h: make sure public key
12640 tokesns are compared in a case-insensitive way. Also, all
12641 the lookups in the GAC use a lowercase public key token
12642 (gaacutil already does the lowercasing on install). Fixes
12645 2008-03-11 Rodrigo Kumpera <rkumpera@novell.com>
12647 * verify.c (mono_delegate_signature_equal): Do proper variance check on arguments
12650 Tue Mar 11 17:41:38 CET 2008 Paolo Molaro <lupus@ximian.com>
12652 * image.c: when someone loads a mscorlib from a file, return the
12653 currently loaded mscorlib (fixes bug #369253).
12655 Tue Mar 11 16:47:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12657 * class.c: handle types with no parents by forcing them to have
12658 System.Object as a parent and marking them as broken (this currently
12659 allows the first part of bug #369173 to work as well, likely because
12660 we don't check for typeload exceptions everywhere yet).
12662 Tue Mar 11 15:23:54 CET 2008 Paolo Molaro <lupus@ximian.com>
12664 * class.c: more complete check that types belong to corlib
12665 (fixes second part of bug #369173).
12667 2007-03-10 Bill Holmes <billholmes54@gmail.com>
12669 * generic-sharing.c: Including glib.h for the MSVC builds to define
12670 "inline" to "__inline" before including mono-membar.h.
12672 * mono-perfcounters.c: Adding HAVE_SYS_TIME_H check for MSVC builds.
12673 Rename "Unknown" to "CatTypeUnknown" to avoid name collisions for
12676 Contributed under MIT/X11 license.
12678 2008-03-10 Rodrigo Kumpera <rkumpera@novell.com>
12680 * verify.c (do_invoke_method): Remove return type validation.
12682 * verify.c (do_ret): Do return type validation at return site instead of
12685 2008-03-10 Rodrigo Kumpera <rkumpera@novell.com>
12687 * verify.c (do_invoke_method): Mark callvirt to static methods unverifiable.
12689 * verify.c: Some todos cleaned and improved a few error messages.
12691 2008-03-08 Zoltan Varga <vargaz@gmail.com>
12693 * class.c (mono_class_setup_mono_type): Improve the test for corlib.
12695 2008-03-07 Zoltan Varga <vargaz@gmail.com>
12697 * class.c (mono_class_setup_mono_type): Handle types whose name clashes with
12698 system types correctly.
12700 * exception.h exception.c (mono_exception_from_token_two_strings): New helper
12703 2008-03-06 Zoltan Varga <vargaz@gmail.com>
12705 * assembly.c (build_assembly_name): Fix a warning.
12707 Thu Mar 6 19:43:41 CET 2008 Paolo Molaro <lupus@ximian.com>
12709 * marshal.c: ldfld_remote and stfld_remote needs just one wrapper as
12710 the called function takes an object type argument. Fixes storing or
12711 valuetypes across remoting as well as reducing memory usage.
12712 * image.c, metadata-internals.h: remove now unused ldfld_remote and
12713 stfld_remote wrapper caches.
12715 2008-03-06 Zoltan Varga <vargaz@gmail.com>
12717 * icall.c (mono_lookup_internal_call): Update the exception message when an icall
12720 * reflection.c (mono_image_register_token): New helper function to save
12721 a token->object mapping.
12723 * icall.c (ves_icall_ModuleBuilder_RegisterToken): New icall to access it from
12726 * reflection.c (_mono_reflection_parse_type): Distinguish between vectors and
12727 one dimension arrays. Fixes #367670.
12728 (mono_reflection_get_type_internal): Ditto.
12730 Tue Mar 4 19:04:02 CET 2008 Paolo Molaro <lupus@ximian.com>
12732 * marshal.c: mono_load_remote_field_new() always returns object.
12733 so use the proper signature (fixes bug #366445).
12735 2008-03-04 Zoltan Varga <vargaz@gmail.com>
12737 * class-internals.h (MonoMethod): Remove unused uses_this flag,
12738 add an 'inline_failure' flag instead.
12740 2008-03-04 Mark Probst <mark.probst@gmail.com>
12742 * domain-internals.h, domain.c: Replaced MonoGenericSharingContext
12743 with a new structure, MonoGenericJitInfo, in the MonoJitInfo. It
12744 contains the location of "this", used for exception handling.
12746 2008-03-04 Zoltan Varga <vargaz@gmail.com>
12748 * class.c (mono_class_layout_fields): Set the min alignment of small structs to
12749 their size on all platforms for perf reasons.
12751 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
12753 * reflection.h: Move mono_reflection_is_valid_dynamic_token to
12756 * object-internal.h: Same.
12758 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
12760 * reflection.h: Fix the build I just broke.
12762 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
12764 * reflection.c (mono_reflection_is_valid_dynamic_token): New function,
12765 Test if a token is valid, this remove explicit usage of
12766 MonoDynamicImage::tokens from the verifier code.
12768 * reflection.h: Added mono_reflection_is_valid_dynamic_token.
12770 * verify.c (token_bounds_check): Use mono_reflection_is_valid_dynamic_token
12771 instead of direct access to MonoDynamicImage::tokens.
12773 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
12775 * verify.c (token_bounds_check): Fix the build I just broke.
12777 2008-03-03 Rodrigo Kumpera <rkumpera@novell.com>
12779 * verify.c (token_bounds_check): Fix bounds check for dynamic images.
12781 * verify.c (verifier_load_method): Fixed the errors message.
12783 * verify.c (mono_method_verify): Fixed a debug message.
12785 Thu Feb 28 19:49:45 CET 2008 Paolo Molaro <lupus@ximian.com>
12787 * icall-def.h, domain.c, mono-perfcounters-def.h, mono-perfcounters.c,
12788 mono-perfcounters.h, class-internals.h: support for predefined
12789 writable counters, query of categories and counters, bugfixes.
12791 2008-02-28 Rodrigo Kumpera <rkumpera@novell.com>
12793 * verify.c (do_refanytype): Verify the refanytype opcode.
12795 * verify.c (mono_method_verify): Use do_refanytype.
12797 2008-02-28 Rodrigo Kumpera <rkumpera@novell.com>
12799 * verify.c (do_mkrefany): Verify the mkrefany opcode.
12801 * verify.c (mono_method_verify): Use do_mkrefany.
12803 Wed Feb 27 19:49:16 CET 2008 Paolo Molaro <lupus@ximian.com>
12805 * Makefile.am, icall-def.h, icall.c, mono-perfcounters-def.h,
12806 mono-perfcounters.c, mono-perfcounters.h: basic performance counter
12809 2008-02-27 Zoltan Varga <vargaz@gmail.com>
12811 * marshal.c (mono_marshal_get_synchronized_wrapper): Fix the code which throws
12812 the type load exception.
12814 2008-02-27 Rodrigo Kumpera <rkumpera@novell.com>
12816 * verify.c: Added a few FIXME for method signatures
12818 * verify.c (do_invoke_method): Use mono_method_get_signature_full instead
12819 of mono_method_get_signature and get vararg call working. Removed unused
12820 checks for return value.
12822 * verify.c (do_refanyval): Verify the refanyval opcode.
12824 * verify.c (mono_method_verify): Implemented verification of arglist and
12827 2008-02-27 Zoltan Varga <vargaz@gmail.com>
12829 * class.c (mono_class_setup_methods): Move the check for synchronized methods on
12830 vtypes to marshal.c.
12832 * marshal.c (mono_marshal_get_synchronized_wrapper): Do the vtype check here so
12833 it works for AOT as well.
12835 Tue Feb 26 17:46:32 CET 2008 Paolo Molaro <lupus@ximian.com>
12837 * monitor.c, threads.c, threadpool.c: replace the use of GetTickCount ()
12838 with mono_msec_ticks () which is monotonic and doesn't cause bugs when
12839 the system time is adjusted.
12841 Tue Feb 26 17:40:10 CET 2008 Paolo Molaro <lupus@ximian.com>
12843 * icall.c, icall-def.h: use the new time functions (fixes the
12844 non-monotonic behaviour of TickCount).
12846 2008-02-26 Zoltan Varga <vargaz@gmail.com>
12848 * reflection.c (mono_custom_attrs_from_builders): Revert the last change as
12849 it breaks the build.
12851 * reflection.c (mono_custom_attrs_from_builders): Assert instead of a crash if the
12852 cattr is not finished yet.
12854 2008-02-25 Rodrigo Kumpera <rkumpera@novell.com>
12856 * verify.c: Proper token validation for field, method and type.
12858 2008-02-25 Rodrigo Kumpera <rkumpera@novell.com>
12860 * loader.c (field_from_memberref): Generate a loader error if the type is not found.
12862 * loader.c (method_from_memberref): Generate type load error instead of method missing
12863 if the type is not found.
12865 2008-02-23 Zoltan Varga <vargaz@gmail.com>
12867 * marshal.c (mono_marshal_emit_managed_wrapper): Avoid generating invalid IL if
12868 some of the conversions caused the generation of a marshal directive exception.
12870 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
12872 verify.c: Report which exception should be thrown by the JIT.
12873 Added a lot of FIXME notes.
12875 2008-02-22 Mark Probst <mark.probst@gmail.com>
12877 * generic-sharing.c: Runtime generic context slots are not
12878 instantiated on init anymore. Instead, provide function to do the
12879 instantiating on demand.
12881 * class-internals.h: Added vtable to runtime generic context.
12882 Macros for encoding direct and indirect slot offsets in one
12885 2008-02-21 Mark Probst <mark.probst@gmail.com>
12887 * object.c, generic-sharing.c: Moved some generic sharing code
12888 from object.c to generic-sharing.c.
12890 * generic-sharing.c: Added support for extensible runtime generic
12893 * metadata-internals.h: Two new hash tables in MonoImage for
12894 extensible runtime generic context support.
12896 * domain.c: Unregister generic vtables upon domain unloading.
12898 * image.c: Destroy new hash tables upon image unloading.
12900 * metadata.c: Unregister generic subclasses upon image unloading.
12902 * class-internals.h: New data structure for runtime generic
12903 context template. New fields in the runtime generic context for
12906 * Makefile.am: Added generic-sharing.c.
12908 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
12910 icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): If
12911 there is a pending loader exception, raise it.
12913 icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken):
12916 icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken):
12921 2008-02-20 Zoltan Varga <vargaz@gmail.com>
12923 * icall.c (ves_icall_Type_GetPacking): Handle dynamic types.
12925 * assembly.c (mono_assembly_load_from_full): Fix a leak in the previous patch.
12927 * assembly.c (mono_assembly_load_from_full): Return the non-refonly corlib for
12928 ref-only requests for compatibility with MS.
12930 2008-02-20 Raja R Harinath <harinath@hurrynot.org>
12932 * reflection.c (mono_custom_attrs_from_method): Don't silently
12933 return an empty list for generic method instances.
12934 (mono_custom_attrs_from_param): Likewise.
12936 2008-02-20 Rodrigo Kumpera <rkumpera@novell.com>
12937 Raja R Harinath <harinath@hurrynot.org>
12940 * class-internals.h (struct _MonoMethodInflated.is_mb_open): Add.
12941 * class.c (mono_class_inflate_generic_method_full): Initialize it
12942 when a fully-open method is instantiated.
12943 * metadata.c (inflated_method_equal, inflated_method_hash): Update
12945 * reflection.c (inflate_mono_method): Don't create a temporary context.
12947 2008-02-20 Raja R Harinath <harinath@hurrynot.org>
12949 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
12950 Compute correct value, to prepare for imethod->reflection_info going away.
12952 2008-02-19 Zoltan Varga <vargaz@gmail.com>
12954 * class.c (mono_class_setup_vtable_general): Ignore static methods in interfaces.
12956 2008-02-18 Rodrigo Kumpera <rkumpera@novell.com>
12958 * verify.c: Implement skip visibility flag.
12960 2008-02-18 Rodrigo Kumpera <rkumpera@novell.com>
12962 * verify.h: Added MONO_VERIFY_SKIP_VISIBILITY and struct MonoVerifyInfoExtended
12963 which contains an extra field to tell the kind of exception that should be thrown.
12965 * verify.c: Use MonoVerifyInfoExtended instead of MonoVerifyInfo.
12967 2008-02-17 Raja R Harinath <harinath@hurrynot.org>
12969 * loader.c (mono_method_get_param_names): Initialize 'klass' after
12970 'method' is updated.
12972 2008-02-11 Zoltan Varga <vargaz@gmail.com>
12974 * class.c (mono_class_layout_fields): Set class->min_align for classes using
12975 explicit layout as well. Fixes #360375.
12977 2008-02-11 Geoff Norton <gnorton@novell.com>
12979 * loader.c: Guard and dereference against inflated generic methods
12981 2008-02-10 Gert Driesen <drieseng@users.sourceforge.net>
12983 * class.c: Include Retargetable spec in assembly name.
12984 * assembly.c: Always include PublicKeyToken spec in assembly name
12985 (with value "null" if assembly is not signed), and include
12987 * icall-def.h: Added icall for Assembly.get_fullname.
12988 * icall.c: Added icall returning the fullname of an assembly.
12990 2008-02-09 Zoltan Varga <vargaz@gmail.com>
12992 * class.c (mono_class_setup_vtable_general): Add a missing call to
12993 mono_class_setup_methods () which is needed in the AOT case.
12995 2008-02-08 Rodrigo Kumpera <rkumpera@novell.com>
12997 * verify.c (mono_type_get_stack_name): Added. Return the name for the
12998 stack type of the given MonoType.
13000 * verify.c (verify_type_compatibility_full): Handle the void type.
13002 * verify.c (is_compatible_boxed_valuetype): Changed to fit the
13003 way stack merging works.
13005 * verify.c (store_local): Improved verification message.
13007 * verify.c (do_branch_op): If the merging is invalid, the method
13008 is unverifiable and not invalid. Improved error message.
13010 * verify.c (merge_stacks): Properly merge a boxed valuetype and
13011 a reference type diferent than System.Object. Improved error
13014 2008-02-07 Rodrigo Kumpera <rkumpera@novell.com>
13016 * verify.c (mono_type_is_enum_type): Added. Test if a type is an enum.
13018 * verify.c (mono_type_get_underlying_type_any): Added. Return the underlying
13019 type of an enum even if the argument is byref.
13021 * verify.c: Replace all explicit uses of enumtype and enum_basetype
13022 to calls to mono_type_is_enum_type and mono_type_get_underlying_type_any.
13024 * verify.c: Check for an enum in all cases of MONO_TYPE_GENERICINST.
13026 *verify.c (verify_type_compatibility_full): Make enum types
13027 compatible with their base types.
13029 * verify.c (is_compatible_boxed_valuetype): Added. Check if both
13030 types are compatible for the special case of a boxed valuetype and
13033 * verify.c (verify_stack_type_compatibility): The function
13034 is_compatible_boxed_valuetype was extracted from here.
13036 * verify.c (push_arg): Only set ctx->has_this_store if the method
13039 * verify.c (do_ldelem): Fixed a typo in an error message and added
13040 strict check for mixing int32 and native int as the array type
13043 * verify.c (merge_stacks): Consider boxed valuetypes in the
13044 compatibility checks.
13046 2008-02-07 Massimiliano Mantione <massi@ximian.com>
13047 * profiler.h: (MonoGCEvent): Added start-stop the world events.
13049 2008-02-06 Massimiliano Mantione <massi@ximian.com>
13050 *class.c: use_new_interface_vtable_code: renamed the env var to have
13051 a "MONO_" prefix, and fix the logic to enable it by default.
13053 2008-02-06 Massimiliano Mantione <massi@ximian.com>
13055 mono_class_setup_vtable_general: rewrote the way in which interface
13056 methods are added to vtables. Makes bug-77127.exe pass, and hopefully
13057 makes the code more maintainable.
13058 For now the old code is still there, and can be activated setting
13059 the env var "USE_NEW_INTERFACE_VTABLE_CODE".
13061 2008-02-06 Rodrigo Kumpera <rkumpera@novell.com>
13063 * verify.c: guarded some debug functions around and #ifdef.
13065 * verify.c (merge_stacks): implement proper PIII 1.8.1.3 stack state merging.
13067 2008-02-06 Zoltan Varga <vargaz@gmail.com>
13069 * marshal.c (mono_marshal_get_runtime_invoke): Revert the direct_wrapper
13070 changes for now since they seem to break too many things.
13072 2008-02-05 Mark Probst <mark.probst@gmail.com>
13074 * marshal.c, marshal.h (mono_marshal_find_bitfield_offset,
13075 mono_marshal_find_nonzero_bit_offset): Added macro and function
13076 for finding the byte- and bit-offset of a bitfield within a
13079 2008-02-05 Zoltan Varga <vargaz@gmail.com>
13081 * marshal.c (mono_marshal_get_ptr_to_struct): Make the signature non-pinvoke.
13082 (mono_marshal_get_struct_to_ptr): Ditto.
13084 * marshal.c (mono_marshal_get_runtime_invoke): Fix the signature of
13087 2008-02-03 Zoltan Varga <vargaz@gmail.com>
13089 * marshal.c (mono_marshal_get_runtime_invoke): Fix sharing of runtime wrappers
13090 between methods for non-corlib types.
13092 2008-02-02 Geoff Norton <gnorton@novell.com>
13094 * loader.c (mono_method_get_param_names): Populate the parameter name for
13095 generic parameters as well. (Fixes #342536)
13097 2008-01-31 Rodrigo Kumpera <rkumpera@novell.com>
13099 * verify.c (is_valid_bool_arg): Allow boxed values and null literals as well.
13101 * verify.c (do_invoke_method): Fix for calling with byref structs.
13103 * verify.c (do_cast): push a boxed value type based on the type token and not
13106 2008-01-31 William Holmes <billholmes54@gmail.com>
13108 * process.c (process_module_string_read): Check the size returned form
13109 VerQueryValue to avoid out of memory exception.
13111 2008-01-30 Zoltan Varga <vargaz@gmail.com>
13113 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
13114 Handle properly modules which are not in the moduleref table. Fixes
13117 2008-01-29 Zoltan Varga <vargaz@gmail.com>
13119 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Remove
13120 the dynamic case which is now in managed code.
13121 (ves_icall_System_Reflection_Assembly_GetTypes): Ditto.
13123 * marshal.c (mono_string_to_bstr): Fix a warning.
13124 (init_com_provider_ms): Ditto.
13126 * appdomain.c (ves_icall_System_AppDomain_createDomain): Add some FIXMEs.
13128 * exception.c (mono_get_exception_out_of_memory): New helper function.
13130 2008-01-28 Jonathan Chambers <joncham@gmail.com>
13132 * marshal.c: Add support for BSTR marshalling
13133 using other COM systems.
13135 Code is contributed under MIT/X11 license.
13137 2008-01-28 Rodrigo Kumpera <rkumpera@novell.com>
13139 * object.c (mono_runtime_invoke_array): reverted previous
13140 commit as it breaks the build.
13142 2008-01-28 Rodrigo Kumpera <rkumpera@novell.com>
13144 * object.c (mono_runtime_invoke_array): Verify arguments for
13145 invalid types. Fixes #348522.
13147 2008-01-28 Rodrigo Kumpera <rkumpera@novell.com>
13149 * verify.c: added IL_CODE_CALL_NONFINAL_VIRTUAL to track calls to
13150 non-final virtual calls using call.
13152 * verify.c (do_invoke): fixed some TODOs.
13154 * verify.c (push_arg): set has_this_store for "ldarga 0".
13156 2008-01-27 Zoltan Varga <vargaz@gmail.com>
13158 * reflection.c (reflection_methodbuilder_to_mono_method): Allow DynamicMethods
13159 which belong to an inflated class. Fixes #356531.
13161 2008-01-26 Robert Jordan <robertj@gmx.net>
13163 * file-io.c: Implement and use wrappers for GetFileAttribute|Ex ()
13164 which resort to FindFirstFile when a certain error condition
13165 (ERROR_SHARING_VIOLATION) occured. Fixes bug #325212.
13166 Code is contributed under MIT/X11 license.
13168 2008-01-24 Jonathan Chambers <joncham@gmail.com>
13170 * marshal.c (emit_marshal_string): Fix out string marshalling
13171 to use specified encoding. Fixes #323900.
13173 Code is contributed under MIT/X11 license.
13175 2008-01-24 Raja R Harinath <harinath@hurrynot.org>
13177 * class.c (mono_class_inflate_generic_method_full): Don't modify
13178 iresult->context after cache check.
13180 2008-01-23 Zoltan Varga <vargaz@gmail.com>
13182 * class.c (mono_class_inflate_generic_method_full): Change the
13183 struct assignments to memcpy for better visibility and add some comments.
13185 2008-01-23 Dick Porter <dick@ximian.com>
13187 * threads.c (mono_threads_set_shutting_down): Simplify shutdown
13188 procedure, and make it work on windows.
13190 2008-01-22 Zoltan Varga <vargaz@gmail.com>
13192 * object-internals.h (MonoReflectionGenericClass): Make the 'generic_type' field
13193 a MonoReflectionTypeBuilder since it is always of that type.
13195 * reflection.c (mono_type_get_object): Remove an unneccesary check.
13197 * reflection.c (mono_generic_class_get_object): Simplify this a bit.
13199 * reflection.c (mono_reflection_bind_generic_parameters): Ditto.
13201 * icall.c (ves_icall_MonoGenericClass_GetParentType): Ditto.
13203 * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Ditto.
13205 * reflection.c (mono_reflection_create_runtime_class): Remove already created
13206 instantiations from the type cache.
13208 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
13210 * verify.c (do_ldstr): fixed token verification. previous code was 100% broken.
13212 * verify.c (do_unbox_value): push a controled mutability managed pointer.
13214 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
13216 * verify.c (do_ldstr): added, verifies if the #US token is valid.
13218 * verify.c (mono_method_verify): removed old TODO
13220 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
13222 * verify.c (do_newobj): add visibility check.
13224 2008-01-21 Rodrigo Kumpera <rkumpera@novell.com>
13226 * verify.c (do_load_function_ptr): add visibility check.
13228 2008-01-21 Massimiliano Mantione <massi@ximian.com>
13230 mono_generic_class_get_class: hook profiler events.
13231 mono_field_get_offset: added to support heap-shot in the new profiler.
13232 *class.h: exported mono_field_get_offset.
13234 mono_reflection_setup_internal_class: hook profiler events.
13236 2008-01-20 Zoltan Varga <vargaz@gmail.com>
13238 * marshal.c (mono_marshal_emit_native_wrapper): Add a 'check_exceptions'
13239 argument here too and use it to avoid checking for pending exceptions if
13242 2008-01-20 Gert Driesen <drieseng@users.sourceforge.net>
13244 * assembly.c (build_assembly_name): add arg for passing the assembly
13245 flags. Do not consider a PublicKey with value "null" valid.
13246 (mono_assembly_name_parse_full): added boolean argument that will be
13247 set if the assembly name contains a PublicKeyToken spec. Added support
13248 for the Retargetable spec for which only Yes or No are allowed as valid
13249 value. Consider assembly name invalid if Retargetable spec is set, but
13250 either version, culture or public key (token) are not specified.
13251 * metadata-internals.h: sync signature of mono_assembly_name_parse_full
13252 with implementation in assembly.c.
13253 * icall.c (fill_reflection_assembly_name): also copy assembly flags
13254 from MonoAssemblyName.
13255 (ves_icall_System_Reflection_AssemblyName_ParseName): use newly
13256 introduced argument for mono_assembly_name_parse_full to know if the
13257 assembly name has a PublicKeyToken spec, and if it has instruct
13258 fill_reflection_assembly_name to use default value for keyToken (if
13259 PublicKeyToken is null).
13261 2008-01-18 Rodrigo Kumpera <rkumpera@novell.com>
13263 * verify.c (mono_method_verify): fixed ovf ops with
13264 float values. They are unverifiable now.
13266 2008-01-18 Rodrigo Kumpera <rkumpera@novell.com>
13268 * class.c (set_failure_from_loader_error): add BadImageException to the
13269 list of exceptions that can cause a type to fail to load.
13271 * class.c (mono_class_get_exception_for_failure): same.
13273 2008-01-17 Rodrigo Kumpera <rkumpera@novell.com>
13275 * verify.c (in_any_exception_block): added, check if offset
13276 is part of any exception handling clause.
13278 * verify.c (get_stack_type): added VAR and MVAR types.
13280 * verify.c (do_stobj): better error messages.
13282 * verify.c (do_cpobj): added, check cpobj.
13284 * verify.c (do_initobj): added, check initobj.
13286 * verify.c (do_sizeof): added, check sizeof.
13288 * verify.c (do_localloc): added, check localloc.
13290 * verify.c: adde proper verification for cpobj, initobj, sizeof and localloc.
13292 2008-01-17 Zoltan Varga <vargaz@gmail.com>
13294 * method-builder.c (mono_mb_emit_native_call): Get rid of the unused
13295 save_lmf/restore_lmf opcodes.
13297 * threads.c (mono_threads_install_notify_pending_exc): New function to
13298 install a callback notifying the JIT there is a pending exception on a thread.
13299 (mono_thread_request_interruption): Call the new callback.
13300 (mono_thread_get_and_clear_pending_exception): New function to return the
13301 exception pending on a thread.
13303 * marshal.c (mono_marshal_get_icall_wrapper): Add a check_exceptions argument
13304 to turn off checking for pending exceptions.
13305 (mono_marshal_get_native_wrapper): Ditto.
13307 2008-01-16 Zoltan Varga <vargaz@gmail.com>
13309 * threads-types.h: Get rid of the unnecessary extern declarations.
13311 2008-01-16 Gert Driesen <drieseng@users.sourceforge.net>
13313 * icall.c (ves_icall_Type_GetField): if NonPublic flag is set, only
13314 return field from parent class if not private.
13315 (ves_icall_Type_GetFields_internal): if NonPublic flag is set, only
13316 returns fields from parent class if they are not private.
13317 (method_nonpublic): added function to determine if a given method
13318 should be considered non-public. Returns false for private methods
13319 on parent class, and internal methods from parent on the 1.0 profile.
13320 (ves_icall_Type_GetMethodsByName): if NonPublic flag is set, then
13321 use method_nonpublic function to determine whether method should be
13323 (property_accessor_public): use newly introduced method_nonpublic
13324 function to determine whether accessor is non-public.
13325 (ves_icall_MonoType_GetEvent): If NonPublic flag is set, only return
13326 event from parent class if not private. Only return static event if
13327 Static flag is set, and only return static event from parent class if
13328 FlattenHierarchy flag is set.
13329 (ves_icall_Type_GetEvents_internal): If NonPublic flag is set, only
13330 include non-private events from parent class.
13332 2008-01-16 Zoltan Varga <vargaz@gmail.com>
13334 * icall.c (ves_icall_System_NumberFormatter_GetFormatterTables): Fix a
13337 2008-01-16 Wade Berrier <wberrier@novell.com>
13339 * security.c: Add assembly.h header to appease some warnings
13341 2008-01-16 Dick Porter <dick@ximian.com>
13343 * process.c (process_module_string_read): Remove trailing null
13344 when saving string.
13346 2008-01-16 Mark Probst <mark.probst@gmail.com>
13348 * class-internals.h: A new data structure describing the layout of
13349 a runtime generic context (MonoRuntimeGenericContextTemplate).
13351 * metadata-internals.h: Added a hash table to MonoDomain that maps
13352 from open generic classes to their runtime generic context
13355 * object.c: Building of the runtime generic context, including
13356 proper handling of generic type arguments of superclasses.
13357 Building of the runtime generic context according to the template.
13359 2008-01-15 Zoltan Varga <vargaz@gmail.com>
13361 * class.c (mono_class_setup_fields): Set field.count for generic instances.
13364 * image.c (do_mono_image_open): Pass TRUE as last_exists to
13365 mono_portability_find_file (). Fixes #325466.
13366 (mono_image_get_public_key): Fix a warning.
13368 2008-01-14 Zoltan Varga <vargaz@gmail.com>
13370 * class.c (mono_class_from_name): Fix comments for NULL-ness of image parameter.
13372 (mono_class_from_name_case): Ditto.
13374 2008-01-13 Eyal Alaluf <eyala@mainsoft.com>
13376 * icall-def.h number-formatter.h icall.c: Implemented a cross app-domain
13377 common storage for the tables used in the System/NumberFormatter class.
13379 2008-01-13 Zoltan Varga <vargaz@gmail.com>
13381 * marshal.c (mono_marshal_get_runtime_invoke): Fix a typo.
13383 2008-01-11 Rodrigo Kumpera <rkumpera@novell.com>
13385 * verify.c (get_boxable_mono_type): check if the token is valid.
13387 * verify.c (set_stack_value): changed to add an error if an
13388 invalid type is set on stack. Changed all callers due to signature change.
13390 * verify.c (do_stobj): implement stobj validation.
13392 2008-01-11 Zoltan Varga <vargaz@gmail.com>
13394 * reflection.c (reflection_methodbuilder_to_mono_method): No need to
13395 set container->is_method, it was set earlier.
13397 * metadata.c (type_in_image): Handle MVARs which belong to not finished
13400 * reflection.c (mono_reflection_initialize_generic_parameter): Set
13401 is_method of the generic container to TRUE for methods.
13403 2008-01-10 Zoltan Varga <vargaz@gmail.com>
13405 * metadata.c (type_in_image): Handle type parameters properly.
13407 * class-internals.h (MonoGenericParam): Add an 'image' argument to track
13408 memory ownership of this structure.
13410 2008-01-10 Rodrigo Kumpera <rkumpera@novell.com>
13412 * verify.c (get_boxable_mono_type): make typedref types been just
13413 unverifiable. check for void type.
13415 * verify.c (do_unbox_any): added, verify opcode unbox.any.
13417 * verify.c (do_load_function_ptr): accept method spec tokens.
13419 2008-01-10 Zoltan Varga <vargaz@gmail.com>
13421 * marshal.c (mono_class_native_size): Always set *align even if this is called
13424 2008-01-09 Zoltan Varga <vargaz@gmail.com>
13426 * verify.c (mono_verify_corlib): Remove this as it was not used and was
13429 2008-01-09 Rodrigo Kumpera <rkumpera@novell.com>
13431 * verify.c: removed some old unused tables. A huge bunch of small fixes
13432 to things found while testing the verifier with mono basic.
13434 * verify.c (dump_stack_value): dump null literal flag to.
13436 * verify.c (verify_type_compatibility_full): fix comparison
13437 for types that have a generic super type.
13439 * verify.c (verify_stack_type_compatibility): fix compatibility
13440 between null literals and reference types. fix compatibility between
13441 boxed valuetypes and object. fix corner case test for enums.
13443 * verify.c (do_cmp_op): proper verification of cgt.un in case
13444 of reference types.
13446 * verify.c (do_invoke_method): fix error message.
13448 * verify.c (do_store_indirect
13450 * verify.c (check_is_valid_type_for_field_ops): proper verification
13451 of managed pointers to valuetypes and boxed valuetypes. proper verification
13454 * verify.c (do_unbox_value): expect valuetypes to be always boxed. don't
13455 allow token to be a reference type.
13457 * verify.c (do_cast): proper handling of boxes valuetypes.
13459 * verify.c (do_stelem): proper handling of storing a boxed valuetype
13462 * verify.c (mono_method_verify): pass the opcode to do_cmp_op
13463 to handle cgt.un properly. Implement add/mul/sub ovf opcodes.
13464 fixed the decoding of unbox_any
13466 2008-01-08 Zoltan Varga <vargaz@gmail.com>
13468 * boehm-gc.c (mono_gc_deregister_root): Fix the size passed to libgc.
13470 2008-01-08 Rodrigo Kumpera <rkumpera@novell.com>
13472 * verify.c (do_newobj): do delegate verification.
13474 * verify.c (verify_delegate_compatibility): perform delegate
13477 * verify.c (verify_ldftn_delegate): perform tests related to
13480 * verify.c (mono_delegate_signature_equal): perform the
13481 slightly diferent signature comparison required by delegates.
13483 * metadata.c (mono_metadata_type_equal_full): added and exported
13484 as MONO_INTERNAL. This is a version of mono_metadata_type_equal that
13485 allows signature only comparison.
13487 * metadata-internal.h (mono_metadata_type_equal_full): added and exported
13490 2008-01-07 Rodrigo Kumpera <rkumpera@novell.com>
13492 * verify.c: added a bunch of stack_slot_* functions to
13493 make access to stack slot type easier. This is required to
13494 allow optional flags, like null literal, boxed value and
13496 All access paths to IlStackDesc::stype have been changed
13497 to use these new funcions.
13498 Removed a bunch of unused functions and cleared all warnings.
13499 This patch introduces the usage of the this pointer and
13502 2008-01-07 Zoltan Varga <vargaz@gmail.com>
13504 * boehm-gc.c (mono_gc_deregister_root): Fix win32 build.
13506 2008-01-06 Zoltan Varga <vargaz@gmail.com>
13508 * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Change signature to
13509 match managed version.
13511 * appdomain.c: Bump corlib version.
13513 * appdomain.c (ves_icall_System_AppDomain_ExecuteAssembly): Check for a null
13516 2008-01-06 Gert Driesen <drieseng@users.sourceforge.net>
13518 * icall.c (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies)
13519 Set public key token to zero-length byte array if assembly is not
13522 2008-01-05 Zoltan Varga <vargaz@gmail.com>
13524 * icall.c (ves_icall_System_Array_SetValueImpl): Use a write barrier when
13525 writing a vtype array elem.
13527 2007-01-05 Gert Driesen <drieseng@users.sourceforge.net>
13529 * assembly.c (build_assembly_name): return FALSE if length of token is
13530 not 16 (if not "null").
13531 (mono_assembly_name_parse_full): return FALSE if value of version,
13532 culture, token or key is 0.
13533 * icall.c (fill_reflection_assembly_name): add boolean arguments to
13534 specify whether public key and public key token must be set to default
13535 value (zero-length byte array) if not available. Set versioncompat to
13536 SameMachine. If public key is available or the default is set, then
13537 set PublicKey flag.
13538 (ves_icall_System_Reflection_Assembly_FillName): if no public key
13539 is available, use empty byte array as default value. On the 2.0
13540 profile, use default value for public key token if not set.
13541 (ves_icall_System_Reflection_InternalGetAssemblyName): on the 1.0
13542 profile, use default value for public key if not set. On the 2.0
13543 profile, use default value for public key token if not set.
13544 (ves_icall_System_Reflection_AssemblyName_ParseName): do not set
13545 default values for public key and public key token.
13547 2008-01-05 Zoltan Varga <vargaz@gmail.com>
13549 * object-internals.h (MonoReflectionAssemblyName): Add 'processor_architecture'
13550 field to keep it in synch with the managed object.
13552 * marshal.c (emit_marshal_object): Add support for byref marshalling of
13553 delegates. Fixes #351520.
13555 * sgen-gc.c (conservatively_pin_objects_from): Tell valgrind that the pin queue
13556 contains defined memory.
13558 * sgen-gc.c: Fix 64 bit warnings. Fix some typos. Update GC stats in mono_stats.
13560 * sgen-gc.c (build_nursery_fragments): Handle half-constructed objects correctly.
13562 * sgen-gc.c (check_consistency): New helper function to do a consistency check
13563 of the GC data structures.
13565 * gc-internal.h: Moved the REGISTER/UNREGISTER macros here from os/gc_wrapper.h.
13567 * *.c: Include metadata/gc-internal.h instead of os/gc_wrapper.h.
13569 * object.c (mono_array_full_copy): Fix detection of whenever to use a write
13571 (mono_array_clone_in_domain): Ditto.
13572 (mono_array_clone_in_domain): Ditto.
13574 * threads.c (start_wrapper): Register the thread start argument as a GC root.
13575 (cache_culture): Use a write barrier.
13577 * icall.c (ves_icall_System_Array_SetValueImpl): Call a write barrier.
13578 (ves_icall_get_property_info): Ditto.
13580 * object.h (MONO_STRUCT_SETREF): New macro.
13582 * class-internals.h (MonoStats): Add some GC statistics.
13584 * boehm-gc.c null-gc.c: Define mono_gc_deregister_root ().
13586 2008-01-04 Andreas Faerber <andreas.faerber@web.de>
13588 * exception.c (mono_exception_from_name_two_strings):
13589 Break from loop after method is found.
13591 2008-01-04 Dick Porter <dick@ximian.com>
13593 * process.c (process_module_string_read): Rename variable to
13594 reflect correct usage, after fixing bug 345972.
13596 2008-01-03 Rodrigo Kumpera <rkumpera@novell.com>
13598 * verify.c (mono_type_create_fnptr_from_mono_method):
13599 created a MonoType function pointer instance to be used during
13600 verification. The verifier releases this memory at end.
13602 * verify.c (mono_method_is_constructor): extracted repeated
13603 checks for constructor into a single class.
13605 * verify.c (do_push_field): use new extracted method
13606 for constructor check.
13608 * verify.c (do_newobj): same.
13610 * verify.c (do_ldftn): renamed to do_load_function_ptr
13611 and make it verify ldvirtftn too.
13613 * verify.c (mono_method_verify: proper verification
13614 of ldvirtftn. release created MonoMethod instances.
13616 2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
13618 * verify.c (token_bounds_check): added.
13620 * verify.c (do_ldftn): added.
13622 * verify.c (mono_method_verify): proper verificartion of ldftn.
13624 2007-12-31 Rodrigo Kumpera <rkumpera@novell.com>
13626 * metadata.c (mono_metadata_decode_row): Assert if index is bigger
13627 than the table row count. It's the resposibility of the caller to
13628 make the bounds check and raise the correct error.
13630 * metadata.c (mono_metadata_decode_row_col): Same.
13632 * loader.c (mono_get_method_from_token): perform bounds check
13633 on token for methoddef table.
13635 2007-12-29 Miguel de Icaza <miguel@novell.com>
13638 (ves_icall_System_CurrentSystemTimeZone_GetTimeZoneData): Turn the
13639 assert into a negative result, the managed code already coped with
13642 Some folks on Windows reported this error.
13644 2007-12-28 Gert Driesen <drieseng@users.sourceforge.net>
13646 * appdomain.c: Bump corlib version.
13648 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies): Use
13649 CultureInfo.CreateCulture to create CultureInfo for name.
13650 (fill_reflection_assembly_name): Use CultureInfo.CreateCulture to
13651 create CultureInfo for name. Fixes bug #347174.
13653 2007-12-27 Rodrigo Kumpera <rkumpera@novell.com>
13655 * verify.c: added IL_CODE_FLAG_STACK_INITED and IL_CODE_STACK_MERGED
13658 * verify.c (is_valid_branch_instruction): allow branching to the
13659 first instruction of the protected block.
13661 * verify.c (is_valid_cmp_branch_instruction): same.
13663 * verify.c (stack_init): use IL_CODE_FLAG_STACK_INITED flag to
13664 avoid double initialization.
13666 * verify.c (merge_stacks): use IL_CODE_STACK_MERGED to
13667 detect which cases the eval stack should just be copied.
13669 * verify.c (mono_method_verify): check if the eval stack
13670 is empty when entering a protected block.
13672 2007-12-27 Rodrigo Kumpera <rkumpera@novell.com>
13674 * verify.c: added is_clause_in_range, is_clause_inside_range,
13675 is_clause_nested and verify_clause_relationship. They perform
13676 the verifications stated in P1 12.4.2.7.
13678 * verify.c (mono_method_verify): remove some unused variables,
13679 add the new exception clause checks, add instruction border
13680 checks for protected block start/end, improved some error
13681 messages and fixed a bug in the way invalid instruction access
13684 2007-12-26 Zoltan Varga <vargaz@gmail.com>
13686 * boehm-gc.c (mono_gc_register_thread): Use the new GC_register_my_thread () routine
13687 from GC 7.0 if available.
13689 * object.c: Remove an unused define.
13691 * object.c (mono_class_compute_gc_descriptor): Fix a warning.
13693 * boehm-gc.c (mono_gc_make_descr_for_array): Implement.
13695 * null-gc.c (mono_gc_make_descr_for_array): Implement.
13697 * object.c (mono_class_compute_gc_descriptor): Remove an #ifdef SGEN_GC.
13699 * gc-internal.h: Change the signature of mono_gc_make_descr_for_string ()
13700 to take the same arguments as the other make_descr functions.
13702 * boehm-gc.c null-gc.c: Add implementation for make_descr functions.
13704 * objects.c: Get rid of the MAKE_DESCRIPTOR macros, call make_descr functions
13707 * boehm-gc.c (mono_gc_base_init): Moved the setting of GC_stackbottom here from
13710 * object.c (mono_class_compute_gc_descriptor): Move the GC_init_gcj_malloc ()
13711 call to boehm-gc.c.
13713 * boehm-gc.c (mono_gc_register_root): Fix a warning.
13715 * null-gc.c (mono_gc_register_root): Fix a warning.
13717 * reflection.c (ALLOC_REFENTRY): Use mono_gc_alloc_fixed for boehm as well.
13719 * boehm-gc.c (mono_gc_register_root): Moved definition here from gc_wrapper.h.
13720 (mono_gc_base_init): Call GC_init ().
13722 * null-gc.c: Define mono_gc_register_root () as a no-op.
13724 * domain.c appdomain.c: Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
13726 2007-12-24 Rodrigo Kumpera <rkumpera@novell.com>
13728 * verify.c: add prototype for merge_stacks at top
13730 * verify.c (do_switch): added.
13732 * verify.c (merge_stacks): on some cases the stack merging
13733 was not happening properly. Unequal stack sizes at merge
13734 points should be invalid.
13736 * verify.c (mono_method_verify): added more debug info on stack state.
13737 verify switch properly.
13739 2007-12-24 Zoltan Varga <vargaz@gmail.com>
13741 * method-builder.h: New file, moved the mono_mb_ declarations here from
13744 * boehm-gc.c marshal.c: Include method-builder.h.
13746 * marshal.c: Use mono_mb_emit_branch_label () in a few places.
13748 * marshal.c: Remove some code which is now in method-builder.c.
13750 2007-12-23 Zoltan Varga <vargaz@gmail.com>
13752 * method-builder.c: New file, extraction of the method builder functionality
13755 * marshal.c: Move the mb functions into method-builder.c.
13757 * marshal.h marshal.c: Export some mono_mb_... functions.
13759 * marshal.c: Use mono_mb_get_label () and mono_mb_patch_branch () in all places.
13761 * loader.c (field_from_memberref): Remove the dynamic case, it is handled in
13764 * class.c (mono_class_get_full): Check the token type in the dynamic case.
13766 * loader.c (mono_field_from_token): Ditto.
13768 * loader.c (mono_get_method_from_token): Change the check so it checks memberref
13771 * loader.c (mono_get_method_from_token): Check the token type in the dynamic case.
13774 * class-internals.h: Add new loader error type MONO_EXCEPTION_BAD_IMAGE plus
13775 a helper function for setting it.
13777 * loader.c (mono_loader_error_prepare_exception): Handle MONO_EXCEPTION_BAD_IMAGE.
13780 * assembly.c: Significally simplify code now that referenced assemblies are
13781 loaded lazily. Get rid of the 'loading' hashtables. Hopefully fixes #347629.
13783 * threads.h: Don't include the internal threads-types.h header file. Fixes
13786 2007-12-21 Rodrigo Kumpera <rkumpera@novell.com>
13788 * verify.c: added enum value IL_CODE_FLAG_WAS_TARGET, to represent
13789 instructions that were target of branches or are at protected block boundaries.
13791 * verify.c (in_same_block): handle filter clauses.
13793 * verify.c (is_valid_branch_instruction): added. checks the target of
13794 instructions br or brtrue/false.
13796 * verify.c (is_valid_cmp_branch_instruction): added. checks the target of
13797 binary branch instructions such as beq and bge.
13799 * verify.c (init_stack_with_value): renamed to init_stack_with_value_at_exception_boundary
13800 and made it pin the instruction as been part of the exception block.
13802 * verify.c (do_boolean_branch_op): use is_valid_branch_instruction instead
13805 * verify.c (do_branch_op): use is_valid_cmp_branch_instruction instead
13808 * verify.c (do_ret): ret from a protected block is unverifiable and
13811 * verify.c (do_static_branch): verify br and br.s instructions.
13813 * verify.c (merge_stacks): add extra param to support detection
13814 of branches in the middle of instructions.
13816 * verify.c (mono_method_verify): verify branches and exception blocks
13817 that target the middle of instructions. Proper verification of br and br.s.
13819 2007-12-21 Zoltan Varga <vargaz@gmail.com>
13821 * reflection.c (reflection_methodbuilder_from_ctor_builder): Initialize
13822 skip_visibility field.
13823 (reflection_methodbuilder_from_dynamic_method): Ditto.
13825 * object.c (mono_class_compute_gc_descriptor): Remove more unused icall
13826 registrations. Fixes #348193.
13828 * threads.h: Move the internal mono_thread_get_pending_exception () to
13829 threads-types.h and rename it to mono_thread_get_undeniable_exception ().
13831 2007-12-20 Zoltan Varga <vargaz@gmail.com>
13833 * object.c (mono_class_compute_gc_descriptor): Remove unused GC_gcj_fast_malloc
13834 icall registration. Fixes #348193.
13836 * marshal.c (mono_marshal_get_runtime_invoke): Put all runtime invoke wrappers
13837 for corlib classes into object. Fixes #349621.
13839 2007-12-20 Gert Driesen <drieseng@users.sourceforge.net>
13841 * icall.c (property_accessor_nonpublic): new function to determine
13842 whether an accessor allows a property to be considered non-public.
13843 Returns false for private accessor(s) from parent class, and internal
13844 accessor(s) from parent on 2.0 profile (and higher).
13845 (ves_icall_Type_GetPropertiesByName): Use newly introduced function
13846 to determine whether property should be included if NonPublic flag
13847 is set. Fixes bug #349078.
13849 2007-12-20 Rodrigo Kumpera <rkumpera@novell.com>
13851 * verify.c (init_stack_with_value): added.
13853 * verify.c (mono_method_verify): extracted common
13854 code for exception initialization into init_stack_with_value.
13856 * verify.c (mono_method_verify): initialize the exception
13857 for handler clauses as well.
13859 * verify.c (mono_method_verify): fix the exception clause
13860 ordering rules, it should use handler end offset and not
13863 Thu Dec 20 12:27:24 CET 2007 Paolo Molaro <lupus@ximian.com>
13865 * rawbuffer.c: remove useless warning.
13867 Thu Dec 20 12:10:38 CET 2007 Paolo Molaro <lupus@ximian.com>
13869 * threads.h, threads-types.h: move functions to the correct header
13870 (fixes bug#349952).
13872 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
13874 * verify.c (mono_method_verify): proper verification
13875 of exception handling clauses ranges and fallthru in
13876 and out of protected blocks.
13878 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
13880 * verify.c (mono_method_verify): fixed compilation issue.
13882 2007-12-19 Rodrigo Kumpera <rkumpera@novell.com>
13884 * verify.c (mono_method_verify): a printf slipped in, changed
13885 to use verifier debug macro.
13887 2007-12-18 Rodrigo Kumpera <rkumpera@novell.com>
13889 * verify.c (is_correct_leave): check for filter clauses.
13891 * verify.c (do_filter): added.
13893 * verify.c (mono_method_verify): property verification of leave.
13896 2007-12-18 Mark Probst <mark.probst@gmail.com>
13898 * threads.c: Disable calls to _wapi_thread_signal_self() to fix
13899 Win32 build, until we figure out how to do the proper thing on
13902 2007-12-17 Zoltan Varga <vargaz@gmail.com>
13904 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Fix a crash introduced
13905 by the previous patch.
13907 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Avoid calling
13908 the assembly resolve handler for refonly assemblies.
13910 2007-12-17 Mark Probst <mark.probst@gmail.com>
13912 * threads.c, thread-types.h, icall.c: New shutdown safeguards.
13913 Make sure only one thread is allowed to commence shutdown, and
13914 don't allow new threads to be started once shutdown is in
13917 2007-12-14 Rodrigo Kumpera <rkumpera@novell.com>
13919 * verify.c (is_correct_endfilter): added.
13921 * verify.c (is_unverifiable_endfilter): added.
13923 * verify.c (do_endfilter): added.
13925 * verify.c (mono_method_verify): property verification of endfilter
13926 and fixed a corner case or endfinally.
13928 2007-12-13 Rodrigo Kumpera <rkumpera@novell.com>
13930 * verify.h: new flags to support fail fast of unverifiable code and
13931 do non-strict verification. Non-strict verification is required to
13932 have MS runtime compatibility. There are a huge amount of unverifiable
13933 code that it accepts as verifiable. The strict mode verifies the code
13935 Non-strict mode will be required in cases where code needs to be
13936 accepted as verifiable but fails under strict mode.
13938 * pedump.c: added support to fail fast and non-strict verification.
13940 * verify.c: added support for both fail fast and non-strict verification.
13942 2007-12-12 Rodrigo Kumpera <rkumpera@novell.com>
13944 * verify.c (is_correct_endfinally): added.
13946 * verify.c (mono_method_verify): property verification of endfinally.
13948 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
13950 * verify.c (in_any_block): check for filter clauses.
13952 * verify.c (is_correct_rethrow): added.
13954 * verify.c (mono_method_verify): property verification of rethrow.
13956 * metadata.h: added MONO_OFFSET_IN_FILTER macro.
13958 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
13960 * verify.c (do_throw): added.
13962 * verify.c (mono_method_verify): property verification of throw
13964 2007-12-11 Zoltan Varga <vargaz@gmail.com>
13966 * assembly.c (mono_assembly_load_reference): Try an assembly resolve for ref-only
13967 assemblies. Fixes #346425.
13969 2007-12-10 Zoltan Varga <vargaz@gmail.com>
13971 * reflection.c (mono_reflection_get_token): Call mono_image_create_token () for
13974 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Fix a warning.
13976 * class.c (mono_lookup_dynamic_token_class): Add a 'valid token' argument to
13977 prevent asserts when this is called with a token which might not be valid.
13979 * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Call
13980 lookup_dynamic_token_class with valid_token == FALSE.
13982 * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
13984 * icall.c (ves_icall_System_Reflection_Module_ResolveStringToken): Ditto.
13986 * icall.c (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
13988 2007-12-10 Mark Probst <mark.probst@gmail.com>
13990 * gc.c: Don't delay threadpool thread finalization unless Mono is
13993 Mon Dec 10 11:06:23 CET 2007 Paolo Molaro <lupus@ximian.com>
13995 * threads.c: turn an assert into a non-fatal warning.
13997 2007-12-09 Robert Jordan <robertj@gmx.net>
13999 * icall.c (GetVirtualMethod): Add missing argument validation.
14001 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
14003 * verify.c (do_cast): added.
14005 * verify.c (mono_method_verify): property verification of castclass and isinst.
14008 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
14010 * verify.c (mono_type_from_opcode): added opcodes for stelem.X.
14012 * verify.c (do_stelem): added.
14014 * verify.c (mono_method_verify): property verification of stelem.X.
14016 2007-12-07 Mark Probst <mark.probst@gmail.com>
14018 * class.c, class-internals.h: Introduce an environment variable
14019 (MONO_GENERIC_SHARING) through which the extent of generic code
14020 sharing can be controlled (share all classes, share only corlib
14021 classes, or share nothing).
14023 * object.c: Only create runtime generic context for classes for
14024 which sharing is enabled.
14026 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
14028 * verify.c (do_ldelem): refactor it to work with ldelem.any.
14030 * verify.c (mono_method_verify): property verification of ldelem.any.
14032 2007-12-06 Rodrigo Kumpera <rkumpera@novell.com>
14034 * verify.c (get_indirect_op_mono_type): renamed to mono_type_from_opcode,
14035 added ldelem.X opcodes.
14037 * verify.c (do_ldelema): fixed possible invalid usage of MonoType.
14039 * verify.c: proper verification of ldelem.X
14041 2007-12-06 Zoltan Varga <vargaz@gmail.com>
14043 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): Allow interface cctors to be called too.
14045 2007-12-05 Rodrigo Kumpera <rkumpera@novell.com>
14047 * verify.c (mono_method_verify): null literal requires special handling,
14048 the value pushed on stack need to be flagged as so.
14050 * verify.c (do_ldelema): Verify ldelema properly.
14052 2007-12-05 Rodrigo Kumpera <rkumpera@novell.com>
14054 * verify.c: Verify ldlen properly.
14056 2007-12-05 Zoltan Varga <vargaz@gmail.com>
14058 * icall.c (ves_icall_MonoField_GetValueInternal): Check that the field belongs
14059 to the target object's type. Fixes #346160.
14061 2007-12-05 Dick Porter <dick@ximian.com>
14063 * threadpool.c (socket_io_add_poll): Asynchronous connect() on
14064 Solaris needs the same workaround as BSD-derived systems. Fixes
14065 bug 323524, patch by Burkhard Linke
14066 <burkhard.linke@CeBiTec.Uni-Bielefeld.DE>
14068 2007-12-04 Gert Driesen <drieseng@users.sourceforge.net>
14070 * process.c: When ProcessStartInfo.ErrorDialog is true, pass window
14071 handle to use when error dialog is shown; otherwise, update mask
14072 to show no error dialog when an error occurs.
14074 2007-12-03 Zoltan Varga <vargaz@gmail.com>
14076 * icall.c (ves_icall_MonoField_GetRawConstantValue): New icall.
14078 * class.c (mono_class_get_field_default_value): New helper function to initialize
14079 field->def_type and field->data.
14081 2007-11-30 Zoltan Varga <vargaz@gmail.com>
14083 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Use the delegate trampoline instead of
14086 * object.c (mono_runtime_create_delegate_trampoline): New helper function.
14088 * marshal.c: Avoid depending on delegate->method_info being set.
14090 * object.c (mono_delegate_ctor): Avoid initializing delegate->method_info.
14092 * object.c (mono_delegate_ctor): Set delegate->method.
14094 * object-internals.h (struct _MonoDelegate): Add 'method' field.
14096 * appdomain.c: Bump corlib version.
14098 2007-11-27 Raja R Harinath <harinath@gmail.com>
14100 * metadata.c (mono_generic_inst_equal_full): Short-circuit
14101 equality check if we're comparing canonicalized MonoGenericInsts.
14103 2007-11-23 Zoltan Varga <vargaz@gmail.com>
14105 * class.c (generic_array_methods): Call mono_class_setup_methods () before
14106 accessing class->methods.
14108 2007-11-22 Dick Porter <dick@ximian.com>
14110 * threads.c: Ensure that the synch_cs is set before trying to use
14113 Thu Nov 22 12:34:04 CET 2007 Paolo Molaro <lupus@ximian.com>
14115 * profiler.c: r89126 broke the statistial profiler, unbreak.
14117 2007-11-22 Martin Baulig <martin@ximian.com>
14119 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 66.
14122 (mono_debug_debugger_version): Bump to 3.
14123 (mono_debug_init): Hook `mono_debugger_class_loaded_methods_func'
14124 -> mono_debugger_class_initialized().
14126 * mono-debug-debugger.c
14127 (mono_debugger_add_type): Renamed into mono_debugger_class_initialized().
14130 (mono_debugger_start_class_init_func): Removed.
14131 (mono_debugger_class_loaded_methods_func): Added.
14132 (mono_class_setup_methods): Call it here.
14134 2007-11-22 Martin Baulig <martin@ximian.com>
14137 (mono_debug_add_delegate_trampoline): New public method.
14138 (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_DELEGATE_TRAMPOLINE'.
14141 (MonoSymbolTable): Added `global_data_table'.
14142 (MonoDebuggerTypeKind): Removed.
14144 2007-11-21 Zoltan Varga <vargaz@gmail.com>
14146 * marshal.c (mono_marshal_get_generic_array_helper): Skip visibility checks for
14149 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
14151 Tue Nov 20 23:10:41 CET 2007 Paolo Molaro <lupus@ximian.com>
14153 * object.c: some fields don't have a valid rva: ignore them (bug #343083).
14155 2007-11-20 Martin Baulig <martin@ximian.com>
14157 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 65.
14159 * mono-debug-debugger.c
14160 (mono_debugger_insert_method_breakpoint): Moved here from debug-mini.c
14161 (mono_debugger_remove_breakpoint): Likewise.
14162 (mono_debugger_check_breakpoints): Likewise.
14163 (mono_debugger_register_class_init_callback): New public method.
14164 (mono_debugger_remove_class_init_callback): Likewise.
14165 (mono_debugger_add_type): Likewise.
14167 * mono-debug-debugger.h
14168 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_CLASS_INITIALIZED'.
14170 Tue Nov 20 20:54:12 CET 2007 Paolo Molaro <lupus@ximian.com>
14172 * class.c: more interface implementations needed for the
14173 array enumerator (fixes bug #341112).
14175 2007-11-18 Gert Driesen <drieseng@users.sourceforge.net>
14177 * icall.c: Renamed arguments for ves_icall_System_Enum_ToObject to
14178 fix ParamName of ArgumentNullExceptions.
14180 2007-11-17 Miguel de Icaza <miguel@novell.com>
14182 * reflection.c (mono_reflection_encode_sighelper): Generate the
14183 modopts and modreqs. I have a useless test that crashes monodis,
14184 but that shows the code working.
14186 2007-11-17 Zoltan Varga <vargaz@gmail.com>
14188 * boehm-gc.c (create_allocator): Fix size calculation for the string allocator.
14189 (mono_gc_get_managed_allocator): Enable the string allocator on amd64.
14191 2007-11-15 Dick Porter <dick@ximian.com>
14193 * threads.c (ves_icall_System_Threading_Thread_Join_internal):
14194 When joining a thread, it's the thread that's calling Join that
14195 gets WaitSleepJoin state not the target. Fixes the standalone
14196 test case in bug 334740, and hopefully the whole bug too.
14198 2007-11-15 Dick Porter <dick@ximian.com>
14200 * process.c: Read file version info from the files pointed at by
14201 process modules, not the current process. Fixes bug 315969.
14203 Use windows typedef names in some places to fix warnings on the
14206 2007-11-15 Mark Probst <mark.probst@gmail.com>
14208 * image.c, metadata-internals.h: Added a generic_class_cache hash
14209 to MonoImage for looking up generic classes when sharing generics.
14211 Thu Nov 15 16:11:30 CET 2007 Paolo Molaro <lupus@ximian.com>
14213 * sgen-gc.c: warning cleanups.
14215 2007-11-15 Zoltan Varga <vargaz@gmail.com>
14217 * icall.c (ves_icall_Type_GetPropertiesByName): Implement proper hiding of
14218 inherited properties.
14220 2007-11-14 Mark Probst <mark.probst@gmail.com>
14222 * object.c, class-internals.h: Added more information to the
14223 runtime generic context.
14225 2007-11-13 Zoltan Varga <vargaz@gmail.com>
14227 * marshal.c (mono_marshal_get_delegate_invoke): Take a delegate as argument
14228 instead of just the target method. Generalize the abstract method handling to
14229 handle any non-static method.
14231 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14232 mono_marshal_get_delegate_invoke () signature change.
14234 2007-11-13 Mark Probst <mark.probst@gmail.com>
14236 * class.c, class-internals.h: Made
14237 mono_type_get_basic_type_from_generic () public. Fixed member
14238 access check for shared generics.
14240 * loader.c: Don't insert field into field cache if it's part of a
14241 non-inflated generic class.
14243 * domain.c, domain-internals.h: The generic sharing context is now
14244 part of the jit info data structure. Added two accessor
14247 2007-11-12 Zoltan Varga <vargaz@gmail.com>
14249 * marshal.c (mono_marshal_get_runtime_invoke): Create a non-shared wrapper for
14250 the array Get/Set/Address methods, since the JIT inlines them.
14252 * metadata-internals.h (MonoImage): Add 'runtime_invoke_direct_cache'.
14254 * image.c (mono_image_close): Free runtime_invoke_direct_cache.
14255 (mono_image_init): Initialize runtime_invoke_direct_cache.
14257 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): Update after
14258 mono_marshal_get_delegate_invoke signature change.
14260 * marshal.c (mono_marshal_get_delegate_invoke): Receive the target_method as
14261 an additional argument. Add support for invoking abstract methods.
14263 * metadata-internals.h (MonoImage): Add 'delegate_abstract_invoke_cache'.
14265 * image.c (mono_image_close): Free delegate_abstract_invoke_cache.
14267 2007-11-09 Mark Probst <mark.probst@gmail.com>
14269 * class.c: Do field layout for open generic classes as well.
14271 2007-11-09 Mark Probst <mark.probst@gmail.com>
14273 * gc.c, gc-internal.h: Don't finalize threadpool threads with
14274 other objects, because the threadpool is still around. Put them
14275 in a list instead and after finalizing all other objects in the
14276 root domain shut down the thread pool and then finalize the
14277 threads. Fixes bug #337383.
14279 * threads.c, thread-types.h: New mono_thread_create_internal()
14280 function for marking a thread with the threadpool flag before it
14281 started. Set synch_cs to NULL after freeing it.
14283 * threadpool.c: Mark threadpool threads before they start.
14285 Thu Nov 8 15:31:21 CET 2007 Paolo Molaro <lupus@ximian.com>
14287 * reflection.h, reflection.c: don't export random functions
14288 and lazy load dbnull and missing objects.
14290 2007-11-07 Jonathan Chambers <joncham@gmail.com>
14292 * class.c: Initialize COM types if COM interfaces
14293 are present (not just COM classes).
14295 Code is contributed under MIT/X11 license.
14297 2007-11-07 Massimiliano Mantione <massi@ximian.com>
14299 create_dynamic_mono_image: hook module profiler events (dynamic case).
14300 mono_image_basic_init: hook assembly profiler events (dynamic case).
14302 2007-11-07 Massimiliano Mantione <massi@ximian.com>
14304 simple_appdomain_unload: completely terminate the profiler
14305 instead of only processing the statistical samples.
14306 simple_shutdown: make sure this is really called exactly once,
14307 even in multithreaded applications, and always listen to
14309 * gc.c (mono_domain_finalize): don't call mono_profiler_appdomain_event
14310 here, the "[un]load" functions will do it.
14311 Fixes bugs #333791 and #325261.
14313 2007-11-07 Geoff Norton <gnorton@novell.com>
14315 * socket-io.c: Use the configure defines for HAVE_SOCKADDR_IN(6)_SIN_LEN
14316 rather than depend on __APPLE__.
14318 2007-11-07 Mark Probst <mark.probst@gmail.com>
14320 * icall.c: Safety checks in InitializeArray. Fixes bug #324535.
14322 2007-11-06 Sebastien Pouliot <sebastien@ximian.com>
14324 * object.c: Fix mono_string_to_utf8 to handle NULL values inside the
14325 UTF16 MonoString. Fix the crash from bug #335488
14327 2007-11-06 Sebastien Pouliot <sebastien@ximian.com>
14329 * marshal.c: Correct (for non-Win32 OS) length != size in
14330 mono_string_from_bstr. Fix #339530.
14332 2007-11-06 Geoff Norton <gnorton@novell.com>
14334 * socket-io.c: Apple requires sin(6)_len to be set for getnameinfo
14337 2007-11-05 Kornél Pál <kornelpal@gmail.com>
14339 * process.c: Added run-time GetProcessId API detection for Windows.
14341 2007-11-04 Miguel de Icaza <miguel@novell.com>
14343 * reflection.c (mono_param_get_objects): If a parameter has the
14344 attribute [System.Runtime.InteropServices.Optional] we should
14345 set the DefaultValue of the ParameterInfo to be
14346 System.Reflection.Missing instead of DBNull.
14350 (mono_get_reflection_missing_object): New method,
14351 returns the System.Reflection.Missing.Value singleton instance.
14353 2007-11-03 Atsushi Enomoto <atsushi@ximian.com>
14355 * culture-info-table.h : regenerated.
14357 2007-11-02 Jonathan Chambers <joncham@gmail.com>
14359 * icall.c: Use GetEnvironmentStrings on windows
14360 so we are using the same environment block as
14361 GetEnvironmentVariable/SetEnvironmentVariable. Fixes
14364 Code is contributed under MIT/X11 license.
14366 2007-10-31 Martin Baulig <martin@ximian.com>
14368 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 64.
14370 * mono-debug-debugger.h
14371 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_TRAMPOLINE'.
14373 2007-10-30 Zoltan Varga <vargaz@gmail.com>
14375 * reflection.c (mono_custom_attrs_from_class): Add support for dynamic inflated
14378 2007-10-30 Atsushi Enomoto <atsushi@ximian.com>
14380 * culture-info-table.h : regenerated.
14382 2007-10-30 Robert Jordan <robertj@gmx.net>
14384 * icall-def.h, icall.c:
14385 Add ves_icall_Remoting_RemotingServices_GetVirtualMethod ().
14387 Code is contributed under MIT/X11 license.
14389 2007-10-29 Zoltan Varga <vargaz@gmail.com>
14391 * class.c (mono_class_setup_vtable): Find the inflated methods in the
14392 inflated class instead of inflating them again.
14394 * class.c (mono_class_setup_vtable): Inflate the override methods in the
14397 * class.c (mono_generic_class_get_class): Set klass->property.count as well.
14398 Call setup_supertypes () after klass->parent is set.
14399 (mono_class_setup_properties): Enable this to work on dynamic generic classes.
14401 * reflection.c (mono_type_get_object): Only return a MonoGenericClass object
14402 for inflated instances of not yet created dynamic generic classes.
14403 (ctorbuilder_to_mono_method): Handle the case when this is called multiple
14404 times from inflated_method.
14405 (methodbuilder_to_mono_method): Ditto.
14407 Mon Oct 29 21:02:53 CET 2007 Paolo Molaro <lupus@ximian.com>
14409 * gc.c: code cleanup and removed old untested option of not creating the
14412 2007-10-29 Zoltan Varga <vargaz@gmail.com>
14414 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Avoid
14415 creating a jump trampoline for dynamic methods.
14417 2007-10-29 Rodrigo Kumpera <rkumpera@novell.com>
14419 * reflection.c (mono_image_create_token): Correctly encode methods and constructors of
14420 generic TypeBuilders when called from another method of the same type (bug #335131).
14423 2007-10-27 Zoltan Varga <vargaz@gmail.com>
14425 * reflection.c (methodbuilder_to_mono_method): Revert the last change as it
14426 doesn't seem to work perfectly.
14428 * reflection.c (ctorbuilder_to_mono_method): Handle the case when this is
14429 called multiple times.
14430 (methodbuilder_to_mono_method): Ditto.
14431 (resolve_object): Inflate FieldBuilder's.
14433 Fri Oct 26 19:38:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14435 * string-icalls.c, string-icalls.h, appdomain.c: patch from
14436 Tyler Larson <mono-devel@tlarson.com> to fix the handling of
14437 RemoveEmptyEntries in the string.Split implementation (bug #322375).
14439 2007-10-26 Dick Porter <dick@ximian.com>
14441 * appdomain.c (MONO_CORLIB_VERSION): Bump version because of
14442 Thread initialisation changes
14444 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
14446 * verify.c: fix compatibility check between arrays and System.Array
14448 2007-10-26 Zoltan Varga <vargaz@gmail.com>
14450 * reflection.c (mono_reflection_get_custom_attrs_info): Handle MonoGenericClass
14451 too. Fixes #336999.
14453 2007-10-25 Zoltan Varga <vargaz@gmail.com>
14455 * object.c (mono_value_box): Use typed allocation here.
14457 2007-10-23 Zoltan Varga <vargaz@gmail.com>
14459 * icall.c (ves_icall_System_Delegate_CreateDelegate_internal): Create a jump
14460 trampoline instead of compiling the method right away.
14462 * class-internals.h object.c: Add a JIT callback to create a jump trampoline.
14464 2007-10-21 Zoltan Varga <vargaz@gmail.com>
14466 * class.c (mono_generic_class_get_class): Avoid setting klass->size_inited and
14467 related fields for dynamic classes. Fixes #334493.
14469 2007-10-20 Zoltan Varga <vargaz@gmail.com>
14471 * class.c (mono_generic_class_get_class): Set klass->field.count as well.
14473 * class.c (mono_class_layout_fields): Use 1 instead of TRUE for consistency.
14475 * class.c (mono_class_layout_fields): Set size_inited for generic classes as well.
14476 (mono_class_setup_vtable): Obtain overrides for dynamic generic classes correctly.
14478 * class.c (mono_class_setup_methods): Handle dynamic inflated classes correctly.
14480 * reflection.c (create_generic_typespec): Initialize klass->generic_container
14482 (reflection_methodbuilder_to_mono_method): Set container->is_method to TRUE.
14484 2007-10-18 Jonathan Chambers <joncham@gmail.com>
14486 * marshal.c: Use correct key when removing item
14489 Code is contributed under MIT/X11 license.
14491 2007-10-17 William Holmes <billholmes54@gmail.com>
14493 *marshal.c: Adding a case to marshal booleans to U1
14495 Code is contributed under MIT/X11 license.
14497 2007-10-18 Zoltan Varga <vargaz@gmail.com>
14499 * class.c (mono_class_from_name): Search the modules compromising dynamic
14500 assemblies. Fixes #331601.
14502 2007-10-16 Zoltan Varga <vargaz@gmail.com>
14504 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Throw an
14505 exception if the type name contains an assembly component. Fixes #334203.
14507 * reflection.c (mono_reflection_get_type_with_rootimage): Search all the
14508 modules inside dynamic assemblies. Fixes #334200.
14510 * reflection.c: Set image->public_key and image->public_key_length;
14512 * metadata-internals.h (MonoDynamicImage): Add public_key and public_key_len
14515 * image.c (mono_image_get_public_key): Handle dynamic assemblies. Fixes #334173.
14517 2007-10-16 Mark Probst <mark.probst@gmail.com>
14519 * metadata.c: Implemented correct comparing of generic classes.
14520 An inflated generic class can be equal to a non-inflated one if it
14521 is inflated with generic type variables as type arguments. Fixes
14524 2007-10-15 Dick Porter <dick@ximian.com>
14526 * monitor.c (mono_monitor_try_enter_internal): Set thread state to
14527 WaitSleepJoin while it is waiting to acquire a lock. Fixes bug
14530 * threads.c: Turn the thread synch_lock into a CRITICAL_SECTION,
14531 instead of a monitor lock. This means that monitor_try_enter and
14532 co can set the thread state safely.
14533 (ves_icall_System_Threading_Thread_Interrupt_internal): Always set
14534 thread_interrupt_requested, so interrupt actually works.
14536 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal,
14537 ves_icall_System_Net_Sockets_Socket_Select_internal): Use thread
14538 state accessor function
14540 2007-10-15 Martin Baulig <martin@ximian.com>
14543 (MONO_DEBUGGER_VERSION): Bump to 63 to make it impossible to use
14544 the debugger with the current runtime.
14546 Mon Oct 15 10:20:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
14548 * object.c, object-internals.h: added the ability to set a single
14549 trampoline for all the slots in a vtable.
14551 Fri Oct 12 17:50:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14553 * marshal.c: deal with a possible race condition during multicast
14554 delegate invocation.
14556 Fri Oct 12 13:31:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14558 * class.c: ensure value type methods don't have the synchronized
14561 Fri Oct 12 08:10:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
14563 * string-icalls.c, string-icalls.h: reverted unapproved patch that
14566 2007-10-11 Joel Reed <joelwreed@comcast.com>
14568 * string-icalls.c, string-icalls.h: modify System_String_InternalSplit
14569 to take an options parameter so that empty entries can be removed during
14570 the split procedure. Patch from: Tyler Larson <mono-devel@tlarson.com>
14572 Thu Oct 11 20:16:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14574 * marshal.c: make sure we don't store the signature from a dynamic
14575 method into the runtime invoke cache (bug #327189).
14577 Thu Oct 11 18:22:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14579 * marshal.c: make sure the wrapper methods are properly initialized.
14581 2007-10-11 Mark Probst <mark.probst@gmail.com>
14583 * metadata.c, metadata-internals.h: Generalized
14584 mono_type_stack_size() to mono_type_stack_size_internal() which
14585 takes an additional argument specifying whether it allows open
14588 2007-10-10 Rodrigo Kumpera <rkumpera@novell.com>
14590 * verify.c (do_invoke_method): handle typedbyref params
14591 correctly and check for unverifiable return values.
14593 * verify.c (do_newobj): fix a warning.
14595 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
14597 * verify.c: don't tread typedbyref as allways unverifable,
14598 so uses, like (ld/st)loc.0 are valid. verify for the cases
14599 that it matters, like boxing related operations.
14601 2007-10-09 Rodrigo Kumpera <rkumpera@novell.com>
14603 * verify.c: add verification of the newobj opcode. verification
14604 of delegate instantation still missing due ldftn and virldftn not
14605 pushing the function type on stack
14607 2007-10-08 Mark Probst <mark.probst@gmail.com>
14609 * class-internals.h: Runtime generic context data structure
14612 * object.c: Initialization of runtime generic context at runtime
14613 vtable creation time.
14615 2007-10-08 Massimiliano Mantione <massi@ximian.com>
14616 * class.c (mono_class_create_from_typedef,
14617 mono_class_from_generic_parameter, mono_ptr_class_get,
14618 mono_fnptr_class_get, mono_bounded_array_class_get)
14619 * domain.c (mono_domain_create, mono_domain_free)
14620 * assembly.c (mono_assembly_load_from_full, mono_assembly_close)
14621 * image.c (do_mono_image_load, mono_image_close):
14622 Hooked up load-unload profiler events.
14624 Mon Oct 8 11:38:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
14626 * domain.c: track statistics about the actual amount of native code
14629 Sat Oct 6 10:01:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
14631 * class.c: the valuetype enumerators don't have the additional
14632 supertypes interfaces.
14634 Fri Oct 5 20:33:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
14636 * class.c: need more interfaces setup for the IEnumerator<T>
14637 object created for arrays (tests/ienumerator-interfaces.2.cs).
14639 2007-10-05 Zoltan Varga <vargaz@gmail.com>
14641 * class.c (mono_ldtoken): Handle methodspec tokens as well. Fixes #331097.
14643 2007-10-05 Alp Toker <alp@atoker.com>
14645 * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
14646 rather than the underlying type. Based on a patch by Ben Maurer. Fixes
14649 2007-10-04 Rodrigo Kumpera <rkumpera@novell.com>
14651 * verify.c (verify_type_compatibility_full): verification of
14652 compatibility improved, validates correctly non-strict checks between
14653 native int and I4 types different than (unsigned)int32.
14655 * verify.c (do_store_indirect): added, do all verification of
14658 * verify.c (get_load_indirect_mono_type): renamed to
14659 get_indirect_op_mono_type, as it now returns the MonoType for
14660 ldind.X and stind.X opcodes.
14662 2007-10-04 Rodrigo Kumpera <rkumpera@novell.com>
14664 * reflection.c: Fix the encoding of generic type definition for
14667 * reflection.c (mono_image_typedef_or_ref_full: do the same thing as
14668 mono_image_typedef_or_ref but allows to specify if typespec lookups should
14669 be made. Typespec check is done prior to typeref cache lookup.
14671 * reflection.c (mono_image_typedef_or_ref): now just delegate to
14672 mono_image_typedef_or_ref_full.
14674 * reflection.c (encode_generic_class): encode the generic class
14675 directly instead of calling encode_type.
14677 * reflection.c (encode_type): encode the generic type definition
14678 MonoClass as a generic instantiation.
14680 * reflection.c (create_typespec): cache typespec tokens in
14681 the assembly->typespec cache. Don't create typespec for a generic
14682 instance MonoClass. Create typespec for the generic type defintion.
14684 * reflection.c (create_generic_typespec): encode the generic
14685 class directly instead of calling encode_type.
14687 * reflection.c (mono_image_create_token): encode the generic
14688 type definition not using a typespec for MonoType instances.
14691 2007-10-04 Raja R Harinath <rharinath@novell.com>
14694 * class.c (mono_image_init_name_cache): Don't return nested
14695 'protected internal' classes.
14696 (mono_class_from_name_case): Likewise.
14698 2007-10-04 Atsushi Enomoto <atsushi@ximian.com>
14700 * icall-def.h, icall.c : get_bundled_machine_config() is now the
14701 common function used by both DefaultConfig in System.dll and
14702 InternalConfigurationHost in System.Configuration.dll.
14704 Wed Oct 3 17:26:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
14706 * class.c: automatically add to vectors only a few essential explicit
14707 generic interfaces. The rest of the interfaces that arrays should
14708 provide are currently implicitly added (but still not lazily, see the
14709 design in the discussion of bug#325495 for the details of what is
14710 needed for that). Additionally, implicit interfaces are assigned the
14711 same vtable slot as the explicit interfaces (as they are compatible):
14712 this enables huge memory savings since we don't need to instantiate
14713 as many memthods and as large vtables anymore. Also, Since
14714 GetEnumerator<T> returns an instance of a type that is required to
14715 support a similarly large set of interfaces as arrays, we add
14716 implicit interfaces and interface offset sharing support to those
14717 types, too. This change adds all the required interfaces so that
14718 the anonarray.cs test case in the bug report works (we don't add
14719 all the interfaces to arrays of arrays 3-level deep and more because
14720 of the memory requirements explained in the bug and since they are much
14721 less common: the lazy-loading support will enabled them to work, too).
14723 2007-10-02 Rodrigo Kumpera <rkumpera@novell.com>
14725 * verify.c (merge_stacks): major clean up, all type compatibility
14726 checks are done by verify_type_compatibility. This fix my earlier lack
14727 of understanding of the CLR type system and merge_stacks no longer looks
14730 * verify.c: fixed some bad spelling.
14732 2007-10-02 Rodrigo Kumpera <rkumpera@novell.com>
14734 * verify.c (mono_type_from_stack_slot): added. returns the MonoType for
14735 a given stack slock.
14737 * verify.c: killed verify_type_compat in favor of verify_type_compatibility and
14738 verify_type_compatibility_full. This removed a near indentical function and fixed
14739 handling of Int32 and IntPtr across all opcodes.
14741 Tue Oct 2 15:24:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
14743 * class.c: only vectors have the additional generic interfaces.
14745 2007-10-01 Jonathan Chambers <joncham@gmail.com>
14747 * mono-config.c: Use g_strcasecmp instead of
14748 strcasecmp like everywhere else to fix
14749 compilation with MSVC.
14751 Code is contributed under MIT/X11 license.
14753 Mon Oct 1 14:39:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
14755 * object.c, object-internals.h: refactored the IMT code to enable
14756 building a single slot at a time and lazily creating the IMT trampolines
14759 2007-09-29 Zoltan Varga <vargaz@gmail.com>
14761 * loader.c (inflate_generic_signature): Allocate inflated signatures from the heap.
14763 * metadata.c (mono_metadata_free_inflated_signature): Free the signature itself too.
14766 2007-09-29 Raja R Harinath <harinath@gmail.com>
14768 * loader.c (method_from_methodspec): Rearrange to avoid
14769 un-necessary exposition. Don't assert out if the method's
14770 declaring type is a generic type definition.
14772 2007-09-28 Martin Baulig <martin@ximian.com>
14774 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 61.
14776 Fri Sep 28 20:15:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
14778 * class-internals.h: optimize field layout of MonoClass to
14779 requires less cachelines at runtime and save a few bytes on 64 bit
14782 2007-09-28 Jb Evain <jbevain@novell.com>
14784 * reflection.c: when encoding type names in custom attributes,
14785 if the type is a closed generic type, its generic arguments
14786 have to be serialized as AssemblyQualifiedName, so that when
14787 they are deserialized, it's possible to re-create them properly.
14791 Fri Sep 28 19:19:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
14793 * object.c, class-internals.h: added delegate-creation counter.
14795 Fri Sep 28 18:07:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
14797 * class.c: cleanup of the code that synthetizes interfaces for
14798 arrays in 2.0: saves quit a bit of corlib mempool memory.
14799 Code to fix bug #325495 ifdeffed out for now until the issues
14800 with memory usage and O(n^2) behaviour are fixed.
14802 Fri Sep 28 17:19:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
14804 * marshal.c: when possible, do not duplicate the name of the methods
14805 in the method builder and in the generated MonoMethod.
14807 2007-09-27 Rodrigo Kumpera <rkumpera@novell.com>
14808 * verify.c: added support for type checking ldind_* opcodes.
14810 2007-09-27 Rodrigo Kumpera <rkumpera@novell.com>
14812 * class-internals.h (struct _MonoGenericClass): new field is_tb_open
14813 which is used to distinguish the fully open instantiation of a TypeBuilder
14814 with the rest. This temporary hack is required to restore the property that
14815 the fully open instantiation is the same type of the generic type definition.
14817 * class-internals.h (mono_generic_class_is_generic_type_definition):
14818 new function as part of the internal API.
14820 * class.c (inflate_generic_type): return NULL when the generic inst is
14821 fully open. The fully open generic type is now the same as the generic type
14822 definition for non TypeBuilder types.
14824 * class.c (mono_generic_class_get_class): removed assert since it is
14825 no longer valid, gklass->cached_class can point to the generic type definition.
14827 * class.c (mono_generic_class_is_generic_type_definition): new.
14829 * metadata.c (mono_generic_class_hash): added is_tb_open field
14830 to the hash calculation.
14832 * metadata.c (free_generic_class): if the generic class is associated
14833 with the generic type definition, its field will come from the mempool and
14836 * metadata.c (mono_metadata_is_type_builder_generic_type_definition):
14837 new, this function identifies the corner case of a TypeBuilder fully open
14840 * metadata.c (mono_metadata_lookup_generic_class): use is_tb_open
14841 for lookup. Set gclass->cached_class to be the container class in case of
14842 the fully open instantiation of non TypeBuilder types.
14844 * metadata.c (_mono_metadata_generic_class_equal): use is_tb_open
14845 to compare generic classes.
14847 * reflection.c (method_encode_methodspec): remove assert that
14848 no longer is valid.
14850 * reflection.c (mono_reflection_generic_class_initialize): add
14851 an aditional assert to ensure the proper type is used.
14853 2007-09-26 Rodrigo Kumpera <rkumpera@novell.com>
14855 * verify.c: disabled all debug spew by default, define MONO_VERIFIER_DEBUG
14858 2007-09-25 Rodrigo Kumpera <rkumpera@novell.com>
14860 * verify.c (push_arg): Fixed support for ldarga
14861 * verify.c (set_stack_value): Removed superfluous parameter, fixed the
14862 MonoType used as first arg in case of instance calls.
14864 2007-09-25 Rodrigo Kumpera <rkumpera@novell.com>
14866 * verify.c: Support for verifying VAR and MVAR types,
14868 2007-09-25 Zoltan Varga <vargaz@gmail.com>
14870 * icall.c (ves_icall_get_property_info): Set the reflected type of the
14871 accessors correctly.
14873 Tue Sep 25 14:56:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
14875 * threads.c: support OSX and other systems in
14876 mono_thread_get_stack_bounds (bug #328026).
14878 2007-09-25 Martin Baulig <martin@ximian.com>
14881 (MonoDebugVarInfo): Replace `MonoClass *klass' with `MonoType *type'.
14883 2007-09-24 Martin Baulig <martin@ximian.com>
14886 (MonoDebugClassEntry): Moved the definition of this struct into
14887 mono-debug.c to make it private.
14890 (MonoDebugClassEntry): Removed `symfile_id'; since we now use one
14891 type table per symbol file, we don't need to store the symfile id
14894 2007-09-24 Martin Baulig <martin@ximian.com>
14896 Create one type table per symbol file, since a `MonoClass *' gets
14897 invalid when its image is unloaded.
14899 * mono-debug.h (MonoSymbolTable): Removed `type_table'.
14900 (MonoDebugHandle): Added `type_table'.
14902 Mon Sep 24 17:25:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
14904 * mempool.c, mempool.h: added mono_mempool_new_size () API
14905 to be able to specify a smaller initial size for the pool.
14906 Adjusted the code to slowly increase pool size before using
14907 the previous default size.
14908 * image.c: use a small initial size for image mempools.
14910 2007-09-23 Zoltan Varga <vargaz@gmail.com>
14912 * marshal.c (emit_marshal_array): Generate valid IL for byref array case.
14915 * icall.c (ves_icall_System_Reflection_Assembly_get_ManifestModuleInternal):
14916 Rename this to ves_icall_System_Reflection_Assembly_GetManifestModuleInternal.
14918 2007-09-22 Zoltan Varga <vargaz@gmail.com>
14920 * metadata.c (mono_type_create_from_typespec): Remove an invalid
14921 free. Fixes #327438.
14923 2007-09-21 Raja R Harinath <harinath@gmail.com>
14925 * metadata.c (type_in_image) <MONO_TYPE_SZARRAY>: Handle arrays of
14926 generic instantiations, etc.
14927 <MONO_TYPE_ARRAY>: Likewise.
14929 2007-09-21 Martin Baulig <martin@ximian.com>
14931 * mono-debug.h (MonoSymbolFilePriv, MonoDebugHandlePriv): Removed;
14932 these structs were never defined.
14933 (MonoDebugHandle): Removed the `_priv' field, it was never used.
14935 2007-09-21 Martin Baulig <martin@ximian.com>
14937 * mono-debug.h (MonoDebugVarInfo): Add `MonoClass *klass'.
14939 Fri Sep 21 14:39:45 CEST 2007 Paolo Molaro <lupus@ximian.com>
14941 * image.c: removed the guid hash tables: we can get the same info
14942 without the additional memory usage hit (partially fixes also bug #327052).
14944 2007-09-10 Massimiliano Mantione <massi@ximian.com>
14946 * profiler.h, profiler-private.h, profiler.c: add a new profiler
14947 event to handle unloading methods. After the event is called, the
14948 corresponding MonoMethod* must be considered invalid.
14949 * loader.c (mono_free_method): call the new mono_profiler_method_free
14952 2007-09-20 Mark Probst <mark.probst@gmail.com>
14954 * domain-internals.h: New flag in MonoJitInfo which marks shared
14955 generic methods. New hash table (shared_generics_hash) in
14956 MonoDomain to keep track of shared generic methods. Prototypes
14957 for functions to register and lookup shared generic methods.
14959 * domain.c: Support for registering and looking up shared generic
14960 methods via a hash table (shared_generics_hash) in MonoDomain.
14962 * class-internals.h: New exception to signal failure of shared
14963 compilation of a generic method. New counters for generics
14964 sharing in MonoStats.
14966 Thu Sep 20 16:59:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
14968 * image.c, metadata-internals.h: don't keep a file descriptor open
14969 for loaded assemblies (bug#325988).
14971 2007-09-19 Raja R Harinath <rharinath@novell.com>
14973 * metadata.c (signature_in_image): New. Carve out of type_in_image.
14974 (ginst_in_image, gclass_in_image): Simplify. Change signature to
14975 use the corresponding datatypes.
14976 (type_in_image): Update to changes.
14977 (CleanForImageUserData): Simplify.
14978 (steal_gclass_in_image): Carved out of old 'gclass_in_image'.
14979 Avoid quadratic behaviour in handling the "stolen" list by
14980 separating the filter predicate out, and by prepending the stolen
14981 items rather than appending them.
14982 (steal_ginst_in_image): Likewise.
14983 (mono_metadata_clean_for_image): Update to changes.
14985 2007-09-19 Martin Baulig <martin@ximian.com>
14987 * domain.c (mono_cleanup): Call mono_debug_cleanup() here.
14989 2007-09-19 Martin Baulig <martin@ximian.com>
14991 * mono-debug.c (mono_debug_cleanup): Don't call
14992 mono_debugger_cleanup(); this is now called earlier from mini_cleanup().
14994 2007-09-19 Raja R Harinath <harinath@gmail.com>
14996 Fix crash on 'make run-test' in mcs/errors
14997 * metadata.c (type_in_image): New. Carve out of ginst_in_image.
14998 Avoid more potential allocations in mono_class_from_mono_type.
14999 (ginst_in_image): Update to changes.
15000 (gclass_in_image): Rearrange slightly.
15002 2007-09-18 Zoltan Varga <vargaz@gmail.com>
15004 * class.c (mono_class_init): Move the code that sets up class->methods to
15005 mono_class_setup_methods () for inflated generic classes too. Ditto for properties.
15007 * metadata.c (mono_metadata_get_inflated_signature): New function to return a
15008 canonical instance of an inflated generic signature.
15009 (mono_type_create_from_typespec): Remove an invalid free.
15011 * loader.c (mono_method_get_signature_full): Use mono_metadata_get_inflated_signature.
15013 2007-09-18 Marek Habersack <mhabersack@novell.com>
15015 * domain-internals.h: added a declaration of the
15016 mono_assembly_load_full_nosearch internal function.
15018 * assembly.c (mono_assembly_load_with_partial_name): use
15019 mono_try_assembly_resolve return value properly.
15020 (mono_assembly_load_full_nosearch): copied the function body from
15021 mono_assembly_load_full, without the code to invoke assembly
15023 (mono_assembly_load_full): calls the above new function and if the
15024 assembly is not resolved, invokes the search hooks.
15026 * appdomain.c (mono_runtime_init): restore the global postload
15027 assembly search handlers.
15029 2007-09-18 Zoltan Varga <vargaz@gmail.com>
15031 * class.c (mono_class_init): Make sure class->methods and class->properties
15032 are never NULL in the generics case.
15034 * metadata.c (free_generic_class): Enable this again, skip the dynamic case.
15036 2007-09-17 Zoltan Varga <vargaz@gmail.com>
15038 * metadata.c (free_generic_class): Disable some code to fix the build.
15040 * domain.c (mono_cleanup): Fix a crash introduced by a previous patch.
15042 * marshal.c (mono_marshal_get_xappdomain_dispatch): Allocate a piece of data
15043 from the image mempool.
15045 * metadata.c (free_generic_class): Free more data from the inflated class.
15047 * class.c (mono_class_from_generic_parameter): Allocate memory from the mempool.
15049 * metadata.c (mono_metadata_parse_generic_param): Allocate memory from the image
15051 (mono_type_create_from_typespec): Ditto.
15053 * domain.c (get_runtimes_from_exe): Add an out parameter to return the opened
15054 MonoImage to the caller.
15055 (mono_init_internal): Save the opened image in a global variable.
15056 (mono_cleanup): Close the image opened in get_runtimes_from_exe.
15058 * reflection.c (resolve_object): Fix a leak.
15060 * metadata.c: Fix the freeing of data in the generics caches.
15062 * metadata.c (free_generic_inst): Comment this out to fix the build.
15063 (free_generic_class): Ditto.
15065 * metadata.c: Free cached generic methods, instantinations and classes when
15066 they are removed from the caches.
15067 (mono_metadata_free_type): Free the type itself.
15069 * class.c: Free the result of mono_class_inflate_generic_type () in a few
15072 Mon Sep 17 16:14:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15074 * boehm-gc.c: restrict managed allocs to __thread supporting
15077 2007-09-16 Zoltan Varga <vargaz@gmail.com>
15079 * class.c (mono_class_inflate_generic_type): Add a comment describing memory ownership.
15080 (mono_generic_class_get_class): Fix a leak.
15082 * metadata.c (do_mono_metadata_parse_type): Remove an unneccesary call to
15083 mono_metadata_free_type ().
15084 (mono_metadata_inflate_generic_inst): Fix a leak.
15086 2007-09-14 Zoltan Varga <vargaz@gmail.com>
15088 * mono-debug.c (free_header_data): Fix a leak missed earlier.
15090 * metadata.c (mono_metadata_parse_array_full): Allocate memory from the image
15093 * mono-debug.c (mono_debug_close_image): Fix call to
15094 g_hash_table_remove ().
15096 Fri Sep 14 19:36:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15098 * icall-def.h: redirect all the string ctor to the managed
15099 CreateString () methods.
15100 * string-icalls.c, string-icalls.h: removed dead code for string
15103 2007-09-14 Zoltan Varga <vargaz@gmail.com>
15105 * mono-debug.c: Fix memory leaks.
15107 2007-09-14 Jonathan Chambers <joncham@gmail.com>
15109 * threads-types.h: Implement mono_hazard_pointer_set and
15110 mono_hazard_pointer_clear macros using do/while(0) to fix
15111 compilation with MSVC.
15113 Code is contributed under MIT/X11 license.
15115 2007-09-14 Zoltan Varga <vargaz@gmail.com>
15117 * gc.c (ves_icall_System_GCHandle_GetAddrOfPinnedObject): Use a return value of
15118 -2 to communicate to managed code that the handle is not pinned. Fixes #82848.
15120 Fri Sep 14 14:04:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15122 * icall-def.h, string-icalls.c: get rid of old, no longer used, string
15125 Fri Sep 14 11:41:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15127 * boehm-gc.c, gc-internal.h, object.c: allow strings to be
15128 managed-code allocated as well.
15130 2007-09-13 Zoltan Varga <vargaz@gmail.com>
15132 * class.c (mono_class_is_assignable_from): Add support for generic variance.
15134 Thu Sep 13 11:55:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
15136 * boehm-gc.c: fixed the build after the AOT changes.
15138 2007-09-13 Zoltan Varga <vargaz@gmail.com>
15140 * wrapper-types.h: Add an ALLOC wrapper type.
15142 * gc-internals.h boehm-gc.c null-gc.c sgen-gc.c: Add functions needed by AOT to
15143 reference managed allocator methods.
15145 2007-09-12 Marek Safar <marek.safar@gmail.com>
15147 * icall.c (ves_icall_MonoType_GetGenericArguments): Create an instance
15148 of Type array and not MonoType, a fix suggested by Hari.
15150 2007-09-12 Jonathan Chambers <joncham@gmail.com>
15152 * domain-internals.h, domain.c : Remove delegate_invoke_impl_with_target_hash
15153 and delegate_invoke_impl_no_target_hash from _MonoDomain struct.
15155 Code is contributed under MIT/X11 license.
15157 2007-09-10 Massimiliano Mantione <massi@ximian.com>
15159 * domain.c, object.c, mono-config.c, object-internals.h: Fixed #82416.
15161 2007-09-12 Marek Habersack <mhabersack@novell.com>
15163 * image.c (do_mono_image_open): if assembly file fails to open and
15164 MONO_IOMAP is in effect, try to find the path in a
15165 case-insensitive way.
15167 * appdomain.c (mono_runtime_init): do not install postload hooks -
15168 tests show that MS.NET doesn't use anything of that sort to
15169 trigger the AppDomain.AssemblyResolve event.
15170 (mono_try_assembly_resolve): renamed from try_assembly_resolve and
15172 (mono_runtime_init): init portability helpers here.
15174 * assembly.c (mono_assembly_load_with_partial_name): if other
15175 attempts fail, trigger the AppDomain.AssemblyResolve event handler
15176 to resolve the assembly.
15178 * domain-internals.h: added mono_try_assembly_resolve and marked
15181 2007-09-11 Jb Evain <jbevain@novell.com>
15183 * object-internals.h (MonoReflectionDynamicMethod): add
15184 a `MonoReflectionType *owner` field. The owner is used
15186 (mono_reflection_create_dynamic_method): use the owner of the dynamic
15187 method as the class declaring the dynamic method.
15188 (reflection_methodbuilder_from_dynamic_method): copy the owner of the
15189 dynamic method to the declaring type of the methodbuilder.
15191 2007-09-11 Mark Probst <mark.probst@gmail.com>
15193 * icall.c (ves_icall_InternalInvoke): Enforce CoreCLR security
15194 rules for calling methods via reflection.
15196 2007-09-11 Zoltan Varga <vargaz@gmail.com>
15198 * reflection.c (resolve_object): Add support for MonoGenericClass.
15199 Inflate MonoType's.
15201 Tue Sep 11 16:08:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
15203 * gc-internal.h, boehm-gc.c, null-gc.c, sgen-gc.c: allow the GC to
15204 provide a managed method that does fast allocations without needing
15205 a managed->unmanaged transition. Boehm GC implementation currently
15206 enabled for ptrfree objects on sane architectures.
15208 Tue Sep 11 16:00:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15210 * marshal.c, marshal.h: exported a couple of useful functions and
15211 added mono_mb_get_label () to easily handle backward branches.
15213 2007-09-10 Zoltan Varga <vargaz@gmail.com>
15215 * reflection.c (resolve_object): Inflate generic methods. Fixes #82782.
15217 2007-09-10 Massimiliano Mantione <massi@ximian.com>
15219 * loader.c (find_method): Fixed the regression introduced while
15222 2007-09-09 Zoltan Varga <vargaz@gmail.com>
15224 * class.c (mono_lookup_dynamic_token_class): Pass along the context here as
15227 * class.c loader.c metadata.c object.c class-internals.h object-internals.h
15228 icall.c reflection.c: Pass a MonoGenericContext argument to
15229 mono_lookup_dynamic_token ().
15231 * reflection.c (resolve_object): Handle GenericTypeParameterBuilder. Fixes
15234 2007-09-09 Robert Jordan <robertj@gmx.net>
15236 * object.c (mono_class_proxy_vtable): Don't create remoting trampolines
15237 for generic methods.
15239 * object.c (mono_object_get_virtual_method): Handle generic methods.
15242 Code is contributed under MIT/X11 license.
15244 Sat Sep 8 18:16:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
15246 * image.c: fix locking in mono_image_load_file_for_image ().
15248 Thu Sep 6 19:48:00 CEST 2007 Paolo Molaro <lupus@ximian.com>
15250 * reflection.c, icall.c, icall-def.h: the methodinfos name field is
15251 used only as a cache: added an icall to fill it.
15253 2007-09-16 Rodrigo Kumpera <rkumpera@novell.com>
15255 * reflection.h: exposed mono_reflection_free_type_info
15256 * reflection.c (mono_reflection_get_type_internal): type_args is always freed
15257 since mono_reflection_bind_generic_parameters makes a copy of it.
15258 * reflection.c (free_type_info): subinfos should be freed.
15259 * reflection.c (free_type_info): renamed to mono_reflection_free_type_info and
15261 * icall.c (type_from_name and ves_icall_System_Reflection_Assembly_InternalGetType):
15262 replaced explicit cleanup of MonoTypeNameParse struct with a call to mono_reflection_free_type_info,
15263 this fixes #82695 and #81726.
15266 2007-09-03 Atsushi Enomoto <atsushi@ximian.com>
15268 * process.h, process.c: added support for user profile/info in
15269 ProcessStartInfo. For now only Windows works.
15271 Fri Aug 31 17:30:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
15273 * metadata.c: consider the generic arguments when comparing
15274 signatures (bug #82614).
15276 Thu Aug 30 18:34:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15278 * cil-coff.h, image.c: updated assembly loader to cope with the
15279 PE32+ 64 bit file format.
15281 Thu Aug 30 16:47:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
15283 * assembly.c, class.c, domain.c, loader.c: remove useless
15284 inclusion of cil-coff.h.
15286 2007-08-29 Jonathan Chambers <joncham@gmail.com>
15288 * marshal.c (cominterop_get_ccw): Walk up interface hierarchy
15289 if interface is marked with CoClassAttribute.
15291 Code is contributed under MIT/X11 license.
15293 Wed Aug 29 19:27:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
15295 * sgen-gc.c: ensure no object from the to space is copied again or finalized
15296 if it's seen twice in major collections.
15298 Wed Aug 29 18:46:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
15300 * sgen-gc.c: big objects are not copied to the gray area, but they
15301 need to be considered for scanning, too, if they are brought alive
15302 by an object ready for finalizations or a survived one.
15304 Wed Aug 29 18:43:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
15306 * sgen-gc.c: properly account the number of disappearing links when
15307 they are nullified.
15309 Wed Aug 29 18:37:37 CEST 2007 Paolo Molaro <lupus@ximian.com>
15311 * sgen-gc.c: share the code to scan the registered roots between the
15312 different types of collections.
15314 2007-08-28 Zoltan Varga <vargaz@gmail.com>
15316 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunModuleConstructor): New icall.
15318 2007-08-28 Zoltan Varga <vargaz@gmail.com>
15320 * object.c (mono_class_proxy_vtable): Use max_interface_id instead of
15321 class->max_interface_id in a one place. Fixes transparentproxy.exe test on ia64.
15323 2007-08-28 Mark Probst <mark.probst@gmail.com>
15325 * security-manager.c (mono_security_manager_get_methods):
15326 LinkDemandSecurityException now has 2 arguments instead of 3.
15328 2007-08-27 Zoltan Varga <vargaz@gmail.com>
15330 * class.c (mono_class_layout_fields): Only do the struct alignment hack on
15331 platforms which need it.
15333 Mon Aug 27 18:29:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15335 * sgen-gc.c: unregister thread data structures with a pthread_key_t
15338 Mon Aug 27 18:27:35 CEST 2007 Paolo Molaro <lupus@ximian.com>
15340 * threads.c: free the thread static data on thread exit.
15342 Mon Aug 27 10:55:54 CEST 2007 Paolo Molaro <lupus@ximian.com>
15344 * class.c: walk the hierarchy to find the generic definition for
15345 a class (fixes runtime part of bug #82498).
15347 2007-08-24 Zoltan Varga <vargaz@gmail.com>
15349 * assembly.c (mono_assembly_close): Move the closing of the referenced assemblies to
15352 * image.c (mono_image_close): Here. Hopefully fixes #82510.
15354 2007-08-24 Mark Probst <mark.probst@gmail.com>
15356 * monodiet.c (handle_cattrs): Fixed a custom attr leak.
15358 2007-08-24 Robert Jordan <robertj@gmx.net>
15360 * appdomain.c: don't perform the ':'->';' substitution on Win32.
15362 2007-08-24 Jb Evain <jbevain@novell.com>
15364 * class.c (mono_type_get_name_recurse): fix AssemblyQualifiedName
15367 2007-08-24 Mark Probst <mark.probst@gmail.com>
15369 * threads.c: Make sure a thread gets cleaned up only once. Fixes
15372 2007-08-24 Zoltan Varga <vargaz@gmail.com>
15374 * assembly.c: Fix a warning.
15376 2007-08-23 Marek Habersack <mhabersack@novell.com>
15378 * appdomain.c: parse the <runtime> section looking for the probing
15379 element with the 'privatePath' attribute, which sets additional
15380 directories in which the runtime should look for assemblies.
15382 2007-08-23 Robert Jordan <robertj@gmx.net>
15384 * marshal.c (Marshal_ReAllocHGlobal) : Fix GlobalReAlloc's flags.
15387 2007-08-23 Martin Baulig <martin@ximian.com>
15389 * mono-debug.[ch]: Rename mono_debug_init_corlib() into
15390 _mono_debug_init_corlib() and remove it from the header file.
15392 2007-08-23 Martin Baulig <martin@ximian.com>
15394 * mono-debug-debugger.c
15395 (mono_debugger_unhandled_exception): Ignore `ThreadAbortException';
15396 don't notify the debugger about it.
15398 * mono-debug-debugger.h
15399 (MonoDebuggerEvent): Removed `THREAD_ABORT'.
15401 2007-08-23 Robert Jordan <robertj@gmx.net>
15403 * icall-def.h, process.*: implemented Get|SetPriorityClass icalls.
15404 Code is contributed under MIT/X11 license.
15406 Wed Aug 22 18:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
15408 * sgen-gc.h, sgen-gc.c: abstracted most of the OS-specific code.
15410 2007-08-22 Martin Baulig <martin@ximian.com>
15412 * mono-debug.c: Store debugging info on a per-domain basis and
15413 free it on domain unload. Add support for unloading symbol files.
15416 (MonoDebugList): New typedef.
15418 - add `data_tables and `type_table'.
15419 - replace 'symbol_files' and `num_symbol_files' with a
15421 (mono_debug_data_table): Removed.
15422 (mono_debug_list_add): New public function.
15423 (mono_debug_list_remove): New public function.
15424 (mono_debug_init_1): Renamed into mono_debug_init_corlib().
15425 (mono_debug_init_2_memory): Renamed into
15426 mono_debug_open_image_from_memory().
15427 (mono_debug_close_image): New public function.
15428 (mono_debug_domain_create): Likewise.
15429 (mono_debug_domain_unload): Likewise.
15430 (MONO_DEBUGGER_VERSION): Bump to 60.
15432 * mono-debug-debugger.h
15433 (MonoDebuggerEvent):
15434 - remove `RELOAD_SYMTABS' and `METHOD_COMPILED'.
15435 - rename `ADD_MODULE' into `LOAD_MODULE'; add `UNLOAD_MODULE'.
15436 - add `DOMAIN_CREATE' and `DOMAIN_UNLOAD'.
15437 - rename `THREAD_CREATED' and `THREAD_EXITED' into
15438 `GC_THREAD_CREATED' and `GC_THREAD_EXITED'.
15439 - re-add `THREAD_CREATED' and `THREAD_EXITED'; with different
15441 (mono_debugger_add_symbol_file): Removed.
15442 (mono_debugger_add_type): Removed.
15443 (mono_debugger_lookup_type): Removed.
15444 (mono_debugger_lookup_assembly): Removed.
15447 (mono_domain_create): Call mono_debug_domain_create().
15448 (mono_init_internal): Call mono_debug_init_corlib().
15451 (mono_assembly_close): Call mono_debug_close_image().
15453 Wed Aug 22 17:26:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
15455 * sgen-gc.c: use the mono-mmap facilitites instead of hard-coding the
15458 Wed Aug 22 17:17:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
15460 * sgen-gc.c: ensure section->pin_queue_end is initialized
15461 correctly when non pinning objects in the section have been found.
15463 2007-08-22 Marek Habersack <mhabersack@novell.com>
15465 * appdomain.c (set_domain_search_path): cope with PrivateBinPath
15466 containing a list of directories separated by ':'. MSDN docs say
15467 the directories should be separated with ';'. Part of a bugfix for
15470 2007-08-21 Rodrigo Kumpera <rkumpera@novell.com>
15472 * class.c (mono_type_retrieve_from_typespec) : fixed the return type
15473 it should MonoType and not MonoClass.
15475 2007-08-21 Atsushi Enomoto <atsushi@ximian.com>
15477 * culture-info-table.h : regenerated.
15479 2007-08-20 William Holmes <billholmes54@gmail.com>
15481 *file-io.c: Added ves_icall_System_IO_MonoIO_ReplaceFile
15482 to call ReplaceFile Kernel32 on windows or in io-layer.
15483 *file-io.h: Added deceleration for ves_icall_System_IO_MonoIO_ReplaceFile
15484 *icall-def.h: Register ves_icall_System_IO_MonoIO_ReplaceFile
15485 as an internal call.
15487 Code is contributed under MIT/X11 license.
15489 2007-08-20 Jb Evain <jbevain@novell.com>
15491 * class-internals: add definitions for MONO_EXCEPTION_METHOD_ACCESS
15492 and MONO_EXCEPTION_FIELD_ACCESS.
15494 * debug-helpers.[c|h]: new mono_field_full_name function.
15496 2007-08-20 Mark Probst <mark.probst@gmail.com>
15498 * class.c: Removed class_security_level() and moved it to
15499 security-core-clr.c.
15501 * security-core-clr.c, security-core-clr.h: class_security_level()
15502 is now public and renamed to mono_security_core_clr_class_level().
15503 It also looks for security attributes in the classes a class is
15506 2007-08-20 Mark Probst <mark.probst@gmail.com>
15508 * security-core-clr.c, security-core-clr.h: CoreCLR security
15511 * Makefile.am: Added security-core-clr.[ch].
15513 * security-manager.c, security-manager.h: Functions and enum for
15514 setting and getting the security mode.
15516 * class.c: CoreCLR security checks.
15518 Mon Aug 20 12:38:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
15520 * icall-def.h, process.c, process.h: implemented icall to get
15521 user/system processor times.
15523 2007-08-17 Mark Probst <mark.probst@gmail.com>
15525 * domain.c, threads.c, class-internals.h, domain-internals.h: New
15526 reader-lock-free jit_info_table.
15528 2007-08-17 Zoltan Varga <vargaz@gmail.com>
15530 * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_CUSTOM.
15532 * marshal.c (mono_marshal_type_size): Ditto. Fixes #82465 and #82466.
15534 * object-internals.h (MonoException): Add missing _data member.
15536 2007-08-08 Massimiliano Mantione <massi@ximian.com>
15538 * loader.c (find_method, find_method_in_class): Fixed bug #81466,
15539 checking that only methods with matching qname or fqname are picked
15540 from implemented interfaces.
15542 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
15544 * verify.c (do_newarr):added, do type verification of
15545 newarr ops, push the right value on the eval stack.
15546 * verify.c (mono_method_verify): use do_newarr
15549 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
15551 * verify.c (do_ldobj_value, do_unbox_value and do_box_value):
15552 factored the common code into get_boxable_mono_type, which
15553 is now using mono_type_get_full, this fixed byref related tests.
15555 2007-08-16 Rodrigo Kumpera <rkumpera@novell.com>
15557 * class.c: added mono_type_get_full, this function has the same
15558 behavior of mono_class_get_full but the returned MonoType has
15559 all metadata of the associated token in case of a typespec token.
15560 * class.c: added mono_type_retrieve_from_typespec, used by
15561 mono_type_get_full to retrieve the token type.
15562 * class.c (mono_class_create_from_typespec): changed to use
15563 mono_type_retrieve_from_typespec.
15564 * class.c (mono_ldtoken): changed to use mono_type_get_full
15565 for MONO_TOKEN_TYPE_(DEF|REF|SPEC).
15566 * class-internals.h: exported mono_type_get_full for internal use.
15568 2007-08-16 Jb Evain <jbevain@novell.com>
15570 * domain.c (supported_runtimes): add entry for
15571 the 'moonlight' runtime version.
15573 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
15575 * verify.c (mono_method_verify): small typo sliped in.
15577 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
15579 * verify.c (do_unbox_value): added, do type verification of
15581 * verify.c (mono_method_verify): use do_unbox_value
15584 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
15586 * verify.c (dump_stack_value): fixed typo, was printing string
15587 instead of object on stack.
15588 * verify.c (do_box_value): moved the byref check up as it leads
15589 to invalid code and should be done earlier.
15590 * verify.c: improved error messages for and ldobj
15592 2007-08-15 William Holmes <billholmes54@gmail.com>
15594 * marshal.c (emit_marshal_custom): Omit the call to
15595 marshal_native_to_managed when calling native to managed
15596 and the argument is specified as an out argument.
15598 Code is contributed under MIT/X11 license.
15600 2007-08-15 Rodrigo Kumpera <rkumpera@novell.com>
15602 * verify.c: fixed the type checks for generics, function pointers and vectors.
15603 Added type verification for ldobj and ldtoken. The verifier
15604 would segfault if header or signature of a method contained references
15605 to non-existant types.
15607 2007-08-15 Jonathan Chambers <joncham@gmail.com>
15609 * marshal.c (cominterop_get_ccw): Patch from
15610 Bill Holmes to no walk up interface hierarchy.
15611 All parent methods should be present in the interface for COM.
15613 Code is contributed under MIT/X11 license.
15615 2007-08-15 Jonathan Chambers <joncham@gmail.com>
15617 * marshal.c (emit_marshal_com_interface): Patch from
15618 Bill Holmes to handle COM Interfaces as return values
15619 for native->managed calls.
15621 Code is contributed under MIT/X11 license.
15623 2007-08-14 Jonathan Chambers <joncham@gmail.com>
15625 * marshal.c (cominterop_get_idispatch_for_object): Implement
15626 for runtime callable wrappers.
15628 Code is contributed under MIT/X11 license.
15630 2007-08-13 Rodrigo Kumpera <rkumpera@novell.com>
15632 * pedump.c (main): changed from mono_init to mono_init_from_assembly
15633 so 2.0 types are accessible
15636 2007-08-13 Miguel de Icaza <miguel@novell.com>
15638 * domain.c (mono_init_internal): Call mono_assembly_load_friends
15639 once we load mscorlib. Due to the order in which we initialize,
15640 the mono_assembly_load_full routine that loads mscorlib did not
15641 load friends. We now load it once we load the
15642 mono_defaults.internals_visible_class class.
15644 * assembly.c: Expose the mono_load_friend_assemblies method.
15646 2007-08-11 Rodrigo Kumpera <rkumpera@novell.com>
15648 * verify.c: improved the handling of boxing, better
15649 type checking for unary ops and conversion. Fix bug
15650 regarding managed pointer compatibility checking
15652 2007-08-11 Zoltan Varga <vargaz@gmail.com>
15654 * icall.c (ves_icall_System_Array_SetGenericValueImpl): New icall.
15656 * threads.c threads-types.h: Export mono_thread_get_stack_bounds.
15658 2007-08-09 Raja R Harinath <rharinath@novell.com>
15660 * reflection.c (dup_type): Remove.
15661 * class.c (dup_type): Remove.
15662 (mono_metadata_signature_deep_dup): Use 'mono_metadata_type_dup'
15663 instead of the dodgy 'dup_type'.
15664 (inflate_generic_type): Likewise. Fix the VAR/MVAR cases to
15665 handle the case where 'dup_type' needed the second argument.
15667 2007-08-08 Zoltan Varga <vargaz@gmail.com>
15669 * domain.c: Fix a warning.
15671 2007-08-08 Massimiliano Mantione <massi@ximian.com>
15673 * class.c (mono_class_setup_vtable_general): Fixed bug #77127,
15674 checking that methods with the same fqname are not overridden
15675 with a method from an ancestor.
15677 2007-08-07 Zoltan Varga <vargaz@gmail.com>
15679 * threads.c (free_thread_static_data_helper): Avoid a crash if
15680 thread->static_data is not yet set.
15682 2007-08-07 Jonathan Chambers <joncham@gmail.com>
15684 * marshal.c: Use correct image when emitting
15685 native wrapper for COM calls.
15687 Code is contributed under MIT/X11 license.
15689 2007-08-07 Atsushi Enomoto <atsushi@ximian.com>
15691 * icall-def.h, security.c, security.h :
15692 added icall wrapper to ProtectedMemory.[Unprotect|Protect]Data().
15694 2007-08-07 Martin Baulig <martin@ximian.com>
15696 * mono-debug-debugger.h
15697 (MonoDebuggerEvent): Add `MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD'.
15699 * domain.c (mono_domain_free): Call
15700 `mono_debugger_event (MONO_DEBUGGER_EVENT_DOMAIN_UNLOAD)'.
15702 2007-08-06 Rodrigo Kumpera <rkumpera@novell.com>
15704 * verify.c (check_underflow, check_overflow): error message now returns IL offset
15705 * verify.c (in_same_block): code should test if either offset is inside the clauses
15706 * verify.c (mono_method_verify): push the exception into the eval stack of exception
15709 2007-08-03 Zoltan Varga <vargaz@gmail.com>
15711 * image.c (mono_image_close): Fix a leak.
15713 * object.c (mono_runtime_invoke_array): Avoid using alloca.
15715 * icall.c (ves_icall_FieldInfo_SetValueInternal): Ditto.
15717 Fri Aug 3 19:54:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
15719 * domain.c, threads.c, threads-types.h: fix memory retention issue
15720 with thread static variables not being cleared on domain unload.
15721 Reuse thread static slots after domain unload.
15723 2007-08-03 Zoltan Varga <vargaz@gmail.com>
15725 * object.c (mono_runtime_invoke_array): Handle the case when the receiver is a
15728 * marshal.c (mono_marshal_get_runtime_invoke): Revert the previous change, it is
15729 now done in mono_runtime_invoke_array.
15731 * marshal.c (mono_marshal_get_runtime_invoke): Handle the case when the
15732 receiver is a nullable type.
15734 * class.c (mono_class_is_assignable_from): Handle the case when klass is a
15737 2007-08-03 Jonathan Chambers <joncham@gmail.com>
15739 * marshal.c: Implement COM Objects as return type for
15740 managed->unmanaged calls. Added Release calls for COM Object
15741 out/return values in managed->unmanaged calls.
15743 Code is contributed under MIT/X11 license.
15745 Fri Aug 3 17:00:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
15747 * threads.h, threads-type.h: move the hazard pointer declarations
15748 to the private header.
15750 Fri Aug 3 13:13:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
15752 * file-io.c, appdomain.c: memory leak fixes.
15754 2007-08-02 Dick Porter <dick@ximian.com>
15757 (ves_icall_System_Net_Sockets_Socket_Socket_internal): Move the
15758 SO_REUSEADDR setting into io-layer/sockets.c.
15760 2007-08-01 Zoltan Varga <vargaz@gmail.com>
15762 * icall.c (ves_icall_Type_GetMethodsByName): Return the members inherited
15763 from Object when called on a generic parameter. Fixes #82211.
15765 2007-08-01 Dick Porter <dick@ximian.com>
15767 * file-io.c (convert_share): Test FileShare values bit-by-bit.
15768 Fixes bug 79250 yet again.
15770 2007-07-30 Martin Baulig <martin@ximian.com>
15772 Merged the `debugger-dublin' branch.
15775 (MonoDebugDataTable): New typedef.
15776 (MonoDebugMethodAddressList): New typedef.
15777 (MonoDebugWrapperData): Removed.
15778 (MonoDebugSymbolTable): Removed `current_data_table',
15779 `current_data_table_size', `current_data_table_offset'.
15780 (MonoDebugDataItemType): Moved into mono-debug.c.
15781 (MonoDebugMethodJitInfo): Remove `address'.
15782 (mono_debug_data_table): New global variable.
15783 (mono_debug_lookup_method_addresses): New public function.
15784 (mono_debug_find_method): Take a `MonoMethod *', not a
15785 `MonoDebugMethodInfo *'.
15787 * mono-debug.c: Drop support for the old symbol tables.
15789 2007-06-28 Martin Baulig <martin@ximian.com>
15791 * mono-debug.c (mono_debug_debugger_version): New public variable.
15793 2007-07-31 William Holmes <billholmes54@gmail.com>
15795 * metadata.c Changed mono_type_create_from_typespec to not insert
15796 the type into the hash map until after
15797 do_mono_metadata_parse_type has completed.
15799 Code is contributed under MIT/X11 license.
15801 2007-07-31 Zoltan Varga <vargaz@gmail.com>
15803 * icall.c (ves_icall_Type_GetMethodsByName): Avoid a crash when called on a
15804 generic parameter. Fixes #82211.
15806 2007-07-27 Jb Evain <jbevain@novell.com>
15808 * pedump.c (dump_metadata, dump_metadata_header): dump
15809 versions contained in the metadata header.
15811 Fri Jul 27 17:07:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
15813 * threads.c: register small_id_table with the GC.
15815 2007-07-27 Mark Probst <mark.probst@gmail.com>
15817 * threads.c, threads.h, class-internals.h, object-internals.h:
15818 Hazard pointers, to be used by lock-free parallel algorithms.
15820 2007-07-26 Dick Porter <dick@ximian.com>
15822 * appdomain.c (mono_runtime_cleanup): Invoke io-layer cleanup
15823 routine on non-windows platforms, as I've not managed to think of
15824 a non-kludgy way of doing this. Finishes off bug 78739.
15826 Wed Jul 25 18:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
15828 * object.c: properly setup interface_bitmap in proxy vtables.
15830 2007-07-25 Marek Habersack <mhabersack@novell.com>
15832 * appdomain.c (get_shadow_assembly_location): do not use TickCount
15833 to create unique shadow copy target directories, use the domain's
15834 serial number instead. Each domain gets a unique target directory
15837 * domain.c (mono_domain_create): added code to increment domain
15838 shadow copy serial number and cache the value in the current
15841 * domain-internals.h (struct _MonoDomain): added a new field -
15842 shadow_serial to hold the serial number used in generation of
15843 shadow-copy directories. This is to make sure that the directory
15844 name is unique for each and every domain created. We avoid a race
15845 condition with overriding assemblies already in use by other app
15848 2007-07-24 Rodrigo Kumpera <rkumpera@novell.com>
15850 * class.c (mono_bounded_array_class_get): fixed memory leak when
15851 binding generic parameters.
15853 2007-07-24 Raja R Harinath <rharinath@novell.com>
15855 * metadata.c (do_mono_metadata_parse_generic_class): Use
15856 mono_metadata_lookup_generic_class. Don't g_assert on a metadata
15859 Tue Jul 24 15:15:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
15861 * loader.c, class-internals.h, reflection.c: removed the per-method
15862 generics hashtable: we use the global one through the call of
15863 mono_class_inflate_generic_method ().
15865 Mon Jul 23 19:43:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
15867 * class.c, metadata.c, class-internals.h: introduce yet another
15868 generics global cache for inflated methods (fixes 98% of the perf
15869 issue in bug #81806).
15871 2007-07-23 Raja R Harinath <rharinath@novell.com>
15873 Fix #81035 -- avoid allocating MonoGenericInsts willy-nilly
15874 * metadata.c (mono_metadata_lookup_generic_inst): Kill.
15875 (mono_metadata_get_generic_inst): New. Given a list of MonoType*,
15876 return a MonoGenericInst containing (a copy) of those types.
15877 (mono_metadata_inflate_generic_inst): Update to changes.
15878 (mono_metadata_parse_generic_inst): Likewise.
15879 (mono_get_shared_generic_inst): Likewise.
15880 * reflection.c (mono_class_bind_generic_parameters): Likewise.
15881 (mono_reflection_bind_generic_method_parameters): Likewise.
15882 * metadata-internals.h: Likewise.
15883 * icall.c (free_generic_context): Kill.
15884 (init_generic_context_from_args): Use mono_metadata_get_generic_inst.
15886 * reflection.c (reflection_methodbuilder_to_mono_method): Use
15887 mono_metadata_type_dup.
15888 * marshal.c (mono_mb_create_method): Likewise.
15890 * metadata.c (mono_metadata_type_dup): Rename from
15891 mono_metadata_type_dup_mp. Take an optional mempool instead of a
15892 MonoImage. Handle a few more cases, esp. when no mempool is given.
15893 * marshal.c, metadata-internals.h: Update to changes.
15895 Mon Jul 23 11:43:31 CEST 2007 Paolo Molaro <lupus@ximian.com>
15897 * class.c: fixed a small leak for array classes and removed warning.
15899 2007-07-22 Zoltan Varga <vargaz@gmail.com>
15901 * loader.c (mono_method_get_param_token): Make this work on generic methods.
15902 Return 0x8000000 for return parameters. Fixes #82161.
15904 2007-07-21 Marek Habersack <grendello@gmail.com>
15906 * appdomain.c (get_shadow_assembly_location): append the current
15907 ticks value to the path. Avoids overwriting the same assemblies by
15908 several threads at the same time.
15910 2007-07-20 Atsushi Enomoto <atsushi@ximian.com>
15911 and Raja R Harinath <rharinath@novell.com>
15913 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
15915 (ves_icall_MonoMethod_GetGenericMethodDefinition): Update
15916 property for testing if a method is a generic method definition.
15918 2007-07-20 Atsushi Enomoto <atsushi@ximian.com>
15920 * domain-internals.h : added 2.0 member fields to MonoAppDomainSetup.
15922 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
15924 * verify.c: used function from private branch, reverted to the one in class.h
15926 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
15928 * verify.c: a typo slipped in and the code wont compile
15930 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
15932 * verify.c: now all code use IS_MANAGED_POINTER and UNMASK_TYPE macros.
15933 disabled box instruction as it is doing the wrong thing
15934 improved stack dump messages, now it is easier to debug type related issues
15937 2007-07-19 Juraj Skripsky <js@hotfeet.ch>
15939 * icall.c (ves_icall_System_MonoType_getFullName): Fix a leak.
15941 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
15943 * verify.c: changed MONO_TYPE_TYPEDBYREF stack type from
15944 TYPE_COMPLEX to TYPE_PTR, it did not make any sense to be
15945 grouped with class and valuetype. This change will simply
15946 the code as it should be handled just like unmanaged pointers.
15948 2007-07-19 Mark Probst <mark.probst@gmail.com>
15950 * class.c (concat_two_strings_with_zero): Fixed a silly bug.
15952 2007-07-19 Rodrigo Kumpera <rkumpera@novell.com>
15954 * verify.c: several stack merge issues fixed, reference comparisons now
15955 check the type size. strict type check now works correctly.
15956 added more uses of IS_MANAGED_POINTER macro.
15957 fixed issues pointed by running the test suite against .net.
15960 2007-07-19 Mark Probst <mark.probst@gmail.com>
15962 * class.c, loader.c, class-internals.h: Removed the
15963 MonoLoaderErrorKind enum and replaced it with the MONO_EXCEPTION_
15966 * icall.c: Better error checking in some internal reflection
15969 2007-07-18 William Holmes <billholmes54@gmail.com>
15971 * filewatcher.c : removed unused variable 'filename' in
15972 ves_icall_System_IO_FSW_SupportsFSW
15974 Mon Jul 16 19:36:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
15976 * reflection.c, class.c, icall.c, loader.c: mono_get_inflated_method () is
15979 2007-07-15 Zoltan Varga <vargaz@gmail.com>
15981 * icall.c (ves_icall_System_Reflection_FieldInfo_GetTypeModifiers): New icall.
15983 * icall.c (ves_icall_System_Reflection_Module_ResolveSignature): New icall.
15985 2007-07-14 Zoltan Varga <vargaz@gmail.com>
15987 * icall.c (ves_icall_System_Reflection_Module_ResolveMethodToken):
15988 Implement generics support.
15989 (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15991 * icall.c (ves_icall_System_Reflection_Module_ResolveTypeToken): Add new
15992 type_args and method_args arguments.
15993 (ves_icall_System_Reflection_Module_ResolveMethodToken): Ditto.
15994 (ves_icall_System_Reflection_Module_ResolveFieldToken): Ditto.
15995 (ves_icall_System_Reflection_Module_ResolveMemberToken): Ditto.
15997 2007-07-13 Rodrigo Kumpera <rkumpera@novell.com>
15999 * reflection.c: patch from Thong Nguyen to fix atribute resolution.
16000 It adds a rootimage parameter to mono_reflection_get_type_internal,
16001 adds new function mono_reflection_get_type_with_rootimage and use
16002 the rootimage to resolve the types instead of the current image
16004 2007-07-13 Rolf Bjarne Kvinge <RKvinge@novell.com>
16006 * culture-info-table.h: Forgot to update after r78304.
16008 2007-07-13 Raja R Harinath <rharinath@novell.com>
16010 * class.c (mono_class_is_open_constructed_type)
16011 <MONO_TYPE_GENERICINST>: Don't recompute a computed field.
16013 2007-07-12 Rodrigo Kumpera <rkumpera@novell.com>
16015 * class.c (mono_bounded_array_class_get): method fails if used with
16016 an incomplete TypeBuilder enum (no basetype field), fixed it by
16017 avoiding calculating the size for such array as it cannot be instantiated.
16020 2007-07-12 Raja R Harinath <rharinath@novell.com>
16022 * class-internals.h (_MonoGenericInst::is_reference): Remove bogus
16024 * metadata.c, reflection.c: Update to changes.
16026 2007-07-11 Rodrigo Kumpera <rkumpera@novell.com>
16028 * class.c, class-internal.h: added mono_type_is_valid_enum_basetype and
16029 mono_class_is_valid_enum, they are used to valide a enum when loading.
16030 * reflection.c: used new functions to throw TypeLoadException when and
16031 invalid enum is build with TypeBuilder. Fixes #82018
16033 Wed Jul 11 14:47:07 CEST 2007 Paolo Molaro <lupus@ximian.com>
16035 * object.c: forgot commit of mono_class_setup_methods () to access
16037 * object-internals.h: added a few more handy fields to
16040 2007-07-11 Zoltan Varga <vargaz@gmail.com>
16042 * object.c (build_imt): Call mono_class_setup_methods () before accessing
16045 Tue Jul 10 16:49:01 CEST 2007 Paolo Molaro <lupus@ximian.com>
16047 * class-internals.h, object-internals.h, object.c: IMT-based
16048 interface invocation core from Massimiliano Mantione
16049 (massi@ximian.com) with a reworked arch-specific interface,
16050 bsearch implementation and a few bugfixes and memory savings by me.
16052 2007-07-10 Rodrigo Kumpera <rkumpera@novell.com>
16054 * class.c (mono_class_create_from_typedef): mono would segfault if
16055 an enum did not have a __value field. It now throws a TypeLoadException
16056 for such cases. Fix bug #82022
16058 2007-07-10 Zoltan Varga <vargaz@gmail.com>
16060 * marshal.c (mono_marshal_string_to_utf16_copy): Fix allocation size.
16062 2007-07-09 Mark Probst <mark.probst@gmail.com>
16064 * class.c (mono_class_init): If a class is already inited but has
16065 an exception_type set, return FALSE, not TRUE. Fixes: 82050.
16067 2007-07-09 Mark Probst <mark.probst@gmail.com>
16069 * class.c: Properly handle the case of an unimplemented interface
16070 method. Fixes: 81673.
16072 Mon Jul 9 16:21:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
16074 * class-internals.h, object.c: cleanup patch from massi: use
16075 MonoVTable->interface_bitmap since the vtable interfaces offset array
16078 2007-07-10 Zoltan Varga <vargaz@gmail.com>
16080 * icall-def.h icall.c: Remove Module:get_MDStreamVersion icall and add a new
16081 GetMDStreamVersion icall instead.
16083 Mon Jul 9 11:34:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
16085 * filewatcher.c: patch from Thong Nguyen <tum@veridicus.com> to
16086 not use mono_dl_build_path() with a full library name: makes
16087 fallbacks to libgaim and libfam work.
16089 2007-07-06 William Holmes <billholmes54@gmail.com>
16091 * assembly.c: Added a continue statement in probe_for_partial_name when
16092 parse_assembly_directory_name fails. Fixes : 82002
16094 2007-07-06 Rodrigo Kumpera <rkumpera@novell.com>
16096 * verify.c (check_unmanaged_pointer_type): renamed to check_unverifiable_type
16097 and added a verification for TYPEDBYREF.
16098 * verify.c (verify_stack_type_compatibility): fix handling of byref types,
16099 make native int interchangeable with int32 and some small cleanup and formating.
16100 * verify.c (push_arg): only ldarg on invalid argument is valid (but not verifiable) and
16101 handle byref of byref.
16102 * verify.c (push_local): handle byref of byref.
16103 * verify.c (do_binop): invalid mix of values is unverifiable
16104 * verify.c (do_invoke_method): fixed the handling of bad params on stack and
16105 added visibility checks
16106 * verify.c (field related method): added visibility checks
16107 * verify.c (do_push_field): cannot take the address of a temporary valuetype field
16109 2007-07-06 Zoltan Varga <vargaz@gmail.com>
16111 * marshal.c (mono_marshal_string_to_utf16_copy): Null terminate the
16114 2007-07-05 Zoltan Varga <vargaz@gmail.com>
16116 * profiler.c (mono_profiler_load): Fix an off-by-one error.
16118 * marshal.c (emit_marshal_string): When returning a string from managed code,
16119 allways make a copy even for unicode strings. Fixes #81990.
16121 Wed Jul 4 11:53:57 CEST 2007 Paolo Molaro <lupus@ximian.com>
16123 * object.c: cleaned up mono_runtime_invoke_array () and fixed handling
16124 of byref generic inst types (bug #81997).
16126 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
16128 * class.c: moved methods mono_method_can_access_field and mono_method_can_access_method from mini/mini.c
16129 * class.h: added declarations of mono_method_can_access_field() and mono_method_can_access_method()
16131 2007-07-02 Zoltan Varga <vargaz@gmail.com>
16133 * marshal.c (emit_marshal_string): Add support for unicode strings in
16134 MARSHAL_ACTION_MANAGED_CONV_RESULT. Fixes #81990.
16136 2007-07-02 Rodrigo Kumpera <rkumpera@novell.com>
16138 * verify.c: field load/store are now verified, missing only access checks now
16140 2007-06-28 Martin Baulig <martin@ximian.com>
16142 * mono-debug.c (mono_debug_debugger_version): New public variable.
16144 2007-06-24 Gert Driesen <drieseng@users.sourceforge.net>
16146 * locales.c: When constructing DateTimeFormat or NumberFormat for
16147 MonoCultureInfo, inherit readonly bit from MonoCultureInfo. The
16148 MonoCultureInfo contructed from the current locale is always
16149 read-only and has UseUserOverride set to true. All MonoCultureInfo
16150 instances returned for GetCultures have both IsReadOnly and
16151 UseUserOverride set to true. Fixes part of bug #81930.
16153 2007-06-22 Jonathan Chambers <joncham@gmail.com>
16155 * icall-def.h: Update System.__ComObject icalls
16156 * marshal.c: Avoid managed transition (and object creation)
16157 when looking up COM interface in RCW.
16158 * marshal.h: Ditto.
16160 Code is contributed under MIT/X11 license.
16162 2007-06-22 Zoltan Varga <vargaz@gmail.com>
16164 * marshal.c (mono_marshal_get_runtime_invoke): Cache in the method image for now
16165 to avoid crashes during assembly unloading.
16167 2007-06-22 Raja R Harinath <rharinath@novell.com>
16169 Fix MethodInfo.IsGenericMethodDefinition
16170 * reflection.c (mono_reflection_bind_generic_method_parameters):
16171 Rearrange code to ensure we always uses a generic method definition.
16172 * class.c (mono_class_inflate_generic_method_full): Set
16173 'generic_container' field only for generic method definitions.
16174 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition):
16175 Use presense of 'generic_container' field as indication of being a
16176 generic method definition.
16178 2007-06-21 Zoltan Varga <vargaz@gmail.com>
16180 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16182 * object-internals.h: Reflect changes in the layout of the managed Delegate
16185 * object-internals.h reflection.c icall-def.h: Applied patch from Robert
16186 Jordan (robertj@gmx.net). Add a dtor to dynamic methods which frees up the
16187 runtime memory used by the dynamic method. Fixes #77146.
16189 2007-06-21 Dick Porter <dick@ximian.com>
16192 * file-io.c (convert_share): Cope with FileShare.Delete. Patch
16193 from Wojtek Krawczyk <krawczyk.wojciech@gazeta.pl>, fixes bug
16196 2007-06-21 Raja R Harinath <rharinath@novell.com>
16198 * reflection.c (method_encode_methodspec): Add a tripwire.
16199 * class.c (inflate_generic_type): The fully open generic type is
16200 not the same as the generic type definition.
16202 2007-06-21 Martin Baulig <martin@ximian.com>
16204 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 59.
16206 * mono-debug-debugger.h
16207 (MonoDebuggerBreakpointInfo): Removed.
16208 (mono_debugger_insert_breakpoint_full): Moved to ../mini/debug-mini.h.
16209 (mono_debugger_remove_breakpoint): Likewise.
16210 (mono_debugger_breakpoint_callback): Likewise.
16211 (mono_debugger_start_add_type): Renamed into mono_debugger_add_type().
16213 2007-06-21 Raja R Harinath <rharinath@novell.com>
16215 * metadata.c (mono_metadata_lookup_generic_class): The fully open
16216 generic type is not the same as the generic type definition.
16217 * class.c (mono_generic_class_get_class): Likewise.
16219 2007-06-20 Geoff Norton <gnorton@customerdna.com>
16221 * icall.c: The second argument to
16222 System.Reflection.MethodBase.GetMethodFromHandleInternalType
16223 is a MonoType not a MonoClass.
16225 2007-06-20 Rodrigo Kumpera <kumpera@gmail.com>
16227 * verify.c: support for function pointers in the verifier
16229 2007-06-20 Rodrigo Kumpera <kumpera@gmail.com>
16231 * verify.c: unmanaged pointer verification checks (loading unmanaged pointers is unverifiable)
16233 Wed Jun 20 10:22:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
16235 * assembly.c: removed Mono.Data.SqliteClient from the list of
16236 forward-compatible assemblies as it breaks the ABI (bug #81899).
16238 2007-06-19 Raja R Harinath <rharinath@novell.com>
16240 * metadata.c (mono_metadata_lookup_generic_class): Protect cache
16241 lookup/update with the loader lock.
16242 * reflection.c (mono_class_bind_generic_parameters): No need to
16243 protect mono_metadata_lookup_* with the loader lock.
16244 * class.c (inflate_generic_type): Likewise.
16246 * metadata.c (ginst_in_image): Avoid mono_class_from_mono_type
16247 on a generic instantiated type.
16249 2007-06-18 Rodrigo Kumpera <kumpera@gmail.com>
16251 *verify.c: produce meanfull error messages on verification error
16252 *verify.c: fixed some cases of verification errors reported as validation errors
16253 *pedump.c: fixed the error name array, now it shows validation errors properly
16254 *verify.h: fixed the contant that should be used for verification errors
16256 Mon Jun 18 17:07:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
16258 * metadata.c, image.c, metadata-internals.h: part of the fixes needed
16259 for bug #77596, 81858 and 80743 (generics data structures on domain
16262 2007-06-15 Raja R Harinath <rharinath@novell.com>
16264 Avoid allocating 'MonoGenericContext' on the heap.
16265 * class-internals (_MonoMethodInflated::context): Make field
16266 inline, not a pointer.
16267 * loader.c (method_from_methodspec): Allocate 'new_context' on the
16268 stack. Use the context embedded within the inflated method as the
16269 hash key, rather than 'new_context'.
16270 * class.c (inflate_generic_context): Simplify. Return a struct
16271 rather than allocating on the heap.
16272 (mono_class_inflate_generic_method_full): Update to changes. Now,
16273 doesn't salt away a copy of the context -- simplifying the
16274 lifetime rules of a 'MonoGenericContext *'.
16275 (mono_method_get_context): Return pointer to embedded context.
16276 (setup_generic_array_ifaces): Allocate temporary context on stack.
16277 * reflection.c (inflate_mono_method): Likewise.
16278 (mono_reflection_bind_generic_method_parameters): Likewise.
16279 Use the context embedded within the inflated method as the hash key.
16281 Avoid a source of allocation of 'MonoGenericContext'.
16282 * class-internals.h (_MonoGenericClass::context): Combine 'inst'
16283 and 'cached_context' fields into embedded 'MonoGenericContext' field.
16284 * class.c: Update to changes.
16285 (mono_generic_class_get_context): Simplify drastically. Now just
16286 returns a pointer to the field.
16287 * metadata-internals.h (mono_metadata_generic_context_hash): Mark
16288 argument as a const pointer.
16289 (mono_metadata_generic_context_equal): Likewise.
16290 * metadata.c, loader.c, icall.c, reflection.c, verify.c:
16293 2007-06-14 Rodrigo Kumpera <kumpera@gmail.com>
16295 * verify.c improved the handling of brtrue/brfalse, factored out common code
16297 2007-06-14 Raja R Harinath <rharinath@novell.com>
16299 Kill MonoGenericMethod.
16300 * class-internals.h (MonoGenericContext::method_inst): Rename from
16301 'gmethod' and convert to a MonoGenericInst.
16302 (MonoGenericMethod): Remove.
16303 * metadata.h (MonoGenericMethod): Note that the name is obsolete.
16304 * loader.c (method_from_methodspec): Update to changes. Use a
16305 MonoGenericContext as the key to the hashtable.
16306 * metadata.c (mono_metadata_generic_context_equal): Rename from
16307 'mono_metadata_generic_method_equal' and take MonoGenericContext.
16308 (mono_metadata_generic_context_hash): Likewise from
16309 'mono_metadata_generic_method_hash'. Change hash function.
16310 (mono_metadata_load_generic_params): Update to changes.
16311 (mono_get_shared_generic_method): Remove.
16312 * metadata-internals.h (mono_get_shared_generic_method): Remove.
16313 * class.c (inflate_generic_type) [MONO_TYPE_MVAR]: Update to changes.
16314 (inflate_generic_context): Likewise.
16315 (mono_class_inflate_generic_method_full): Likewise.
16316 (setup_generic_array_ifaces): Likewise.
16317 (mono_class_create_from_typespec): Likewise.
16318 * reflection.c (encode_generic_method_sig): Take a MonoGenericContext.
16319 (method_encode_methodspec): Update callsite.
16320 (reflection_methodbuilder_to_mono_method): Update to changes.
16321 (mono_reflection_bind_generic_method_parameters): Likewise. Use a
16322 MonoGenericContext as the key to the hashtable.
16323 (inflate_mono_method): Update to changes.
16325 * class-internals.h (MonoGenericMethod::container): Remove.
16326 * class.c, loader.c, metadata.c, reflection.c: Update to changes.
16328 Thu Jun 14 12:40:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
16330 * profiler-private.h, profiler.c, profiler.h: added API to profile
16333 2007-06-13 Rodrigo Kumpera <kumpera@gmail.com>
16335 * verify.c: Fixed pointer type handling, some code and message formating and two invalid assigments
16337 2007-06-13 Rodrigo Kumpera <kumpera@gmail.com>
16339 * verify.c: method invocation is now validated, now we verify parameter types on stack.
16340 Fixed overflow and underflow not aborting the verification process.
16342 2007-06-13 Mark Probst <mark.probst@gmail.com>
16344 * class-internals.h (MonoStats): Added stats entries for dynamic
16347 2007-06-12 Zoltan Varga <vargaz@gmail.com>
16349 * loader.c (mono_free_method): Free header->locals and header->clauses.
16351 * marshal.c (mono_mb_create_method): Make a copy of the locals as well in the
16354 * threads.c (mono_thread_get_stack_bounds): Fix memory leak.
16356 * class.c (setup_interface_offsets): Allocate memory from the image mempool.
16358 2007-06-12 Raja R Harinath <rharinath@novell.com>
16360 * verify.c (TYPE_MAX): Set it to 8 to match the dimensions of all
16363 2007-06-11 Rodrigo Kumpera <kumpera@gmail.com>
16365 *pedump.c (main): return error code 4 if assembly cannot be loaded instead of segfaulting
16367 2007-06-11 Raja R Harinath <harinath@gmail.com>
16369 MonoGenericMethod on a diet
16370 * class-internals.h (_MonoMethodInflated::reflection_info): Move
16372 (_MonoGenericMethod::reflection_info): ... from here.
16373 * icall.c (ves_icall_MonoMethod_GetGenericMethodDefinition):
16375 * reflection.c (inflate_mono_method): Likewise.
16376 (mono_reflection_bind_generic_method_parameters): Likewise.
16378 2007-06-11 Rodrigo Kumpera <kumpera@gmail.com>
16380 *verify.c: all debu printf statements are now guarded by VERIFY_DEBUG
16381 *verify.c: factored long ldarg forms to share code with short forms
16383 2007-06-11 Rodrigo Kumpera <kumpera@gmail.com>
16385 *verify.c: fixed code formating factored some duplicate code
16386 into a new function
16388 *verify.h: fixed binary incompatibility introduced earlier
16390 *pedump.c: fixed formating
16392 2007-06-11 Raja R Harinath <harinath@gmail.com>
16394 Fix assertion when disassembling Mono.C5.dll
16395 * loader.c (method_from_methodspec): Avoid inflating a method
16396 twice with the same context. If the methodref is inflated, use
16397 the declaring method instead.
16399 * class.c (mono_class_from_generic_parameter): Fix case similar to
16400 bug #81830 handled below, but for method containers.
16402 2007-06-10 Raja R Harinath <harinath@gmail.com>
16404 * class.c (inflate_generic_type) [MONO_TYPE_CLASS]: Don't call
16405 get_shared_generic_class. Directly inflate the instance.
16406 [MONO_TYPE_GENERICINST]: Inline inflate_generic_class.
16407 (inflate_generic_class): Delete.
16408 (get_shared_generic_class): Delete. Move setting of
16409 'cached_class' and 'cached_context' ...
16410 * metadata.c (mono_metadata_lookup_generic_class): ... here.
16412 * metadata.c (mono_metadata_lookup_generic_class): Change
16413 signature to take the components of a MonoGenericClass rather than
16414 an allocated MonoGenericClass. Change semantics to be intern-like.
16415 * reflection.c (mono_class_bind_generic_parameters): Update to
16416 changes. Make locking region tighter.
16417 * class.c (inflate_generic_class): Update to changes.
16418 (get_shared_generic_class): Likewise.
16419 * metadata-internals.h: Likewise.
16421 * reflection.c (mono_class_bind_generic_parameters): Take and
16422 return a MonoClass*, not a MonoType*. Add 'is_dynamic' parameter.
16423 (mono_reflection_bind_generic_parameters): Use
16424 'mono_class_bind_generic_parameters' rather than duplicate the code.
16425 * class.c (mono_bounded_array_class_get): Update to changes.
16426 * object-internals.h: Likewise.
16428 * reflection.c (mono_class_bind_generic_parameters): Only support
16429 parameterizing generic type definitions. Remove support for other
16432 2007-06-08 Zoltan Varga <vargaz@gmail.com>
16434 * loader.c (mono_free_method): Free method->signature as well. Fixes #81832.
16436 * marshal.c (mono_marshal_get_managed_wrapper): Allocate the signature using malloc
16437 in the dynamic case.
16439 2007-06-08 Gert Driesen <drieseng@users.sourceforge.net>
16441 * threads.c: When cleaning up thread, reset the Background bit.
16444 2007-06-08 Jonathan Chambers <joncham@gmail.com>
16446 * metadata.c: Move variable declarations to top of scope.
16447 * verify.c: Move variable declarations to top of scope.
16449 Code is contributed under MIT/X11 license.
16451 2007-06-08 Raja R Harinath <rharinath@novell.com>
16453 * reflection.c (mono_class_bind_generic_parameters): Replace
16454 open-coded loop with mono_metadata_inflate_generic_inst.
16456 * class.c (get_shared_generic_class): Don't call
16457 mono_get_shared_generic_inst. Use the container's own
16460 * metadata.c (mono_metadata_load_generic_params): Move
16461 initialization of 'context' field here from ...
16462 * class.c (mono_class_create_from_typedef): ... here, and ...
16463 * loader.c (mono_get_method_from_token): ... here.
16465 * class.c (get_shared_generic_class): Rename from
16466 mono_get_shared_generic_class and make static.
16467 (mono_get_shared_generic_inst): Move to metadata.c.
16468 * loader.c (mono_get_shared_generic_method): Likewise.
16469 * class-internals.h, metadata-internals.h: Update to changes.
16472 * class.c (mono_class_from_generic_parameter): Don't assume a
16473 generic container owner exists. Generic containers from monodis
16476 2007-06-06 Rodrigo Kumpera <kumpera@gmail.com>
16478 * pedump.c: pedump exists with 2 if assembly is not verifiable and 3 if invalid
16479 * verify.h: new typedefs to returns the non-verifiable status
16480 * verify.c: initial implementation of generics, stack merging and object compatibility check
16482 2007-06-06 Mark Probst <mark.probst@gmail.com>
16484 * class.c, image.c, class-internals.h (MonoImage): class_cache is
16485 a MonoInternalHashTable again (fixed bug in internal hash table
16488 2007-06-06 Mark Probst <mark.probst@gmail.com>
16490 * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16491 MonoInternalHashTable again (fixed bug in internal hash table
16494 2007-06-06 Mark Probst <mark.probst@gmail.com>
16496 * class.c, image.c, class-internals.h, domain.c,
16497 domain-internals.h (MonoImage): Reverting MonoInternalHashTable
16498 changes. Have to figure out what makes them break the SWF
16501 2007-06-04 Mark Probst <mark.probst@gmail.com>
16503 * class.c, image.c, class-internals.h (MonoImage): class_cache is
16504 a MonoInternalHashTable now.
16506 2007-06-04 Mark Probst <mark.probst@gmail.com>
16508 * domain.c, domain-internals.h (MonoDomain): jit_code_hash is a
16509 MonoInternalHashTable now.
16511 2007-05-31 Zoltan Varga <vargaz@gmail.com>
16513 * domain-internals.h (MonoDomain): Add two new hash tables to store delegate
16516 * object-internals.h (_MonoDelegate): Reflect changes to managed object layout.
16518 * object.c (mono_delegate_ctor): Initialize invoke_impl field with an arch
16519 dependent trampoline.
16521 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
16523 * icall.c (ves_icall_System_Delegate_SetMulticastInvoke): New icall.
16525 2007-05-29 Robert Jordan <robertj@gmx.net>
16527 * marshal.[c|h]: add mono_win32_compat_* wrappers. Fixes #81754.
16529 2007-05-28 Zoltan Varga <vargaz@gmail.com>
16531 * icall.c (ves_icall_get_method_info): Handle loader errors. Fixes #81724.
16533 2007-05-25 Jonathan Chambers <joncham@gmail.com>
16535 * marshal.c: Fix interface lookup loops for
16536 cominterop_get_com_slot_for_method and
16537 cominterop_get_method_interface. Only need to lookup
16538 if type is a class, else use interface type method is on.
16540 Code is contributed under MIT/X11 license.
16542 2007-05-25 Sebastien Pouliot <sebastien@ximian.com>
16544 * reflection.c: HasSecurity can be present even if no specially
16545 encoded (CAS) attributes are available (e.g. SuppressUnmanagedCode
16546 SecurityAttribute). Fix CAS regression tests on buildbot.
16548 2007-05-24 Jonathan Chambers <joncham@gmail.com>
16550 * appdomain.c: Add configure checks for header files.
16551 * image.c: Add configure checks for header files.
16552 * file-io.c: Add configure checks for header files.
16553 * debug-mono-symfile.c: Add configure checks for header files.
16554 * threadpool.c: Add configure checks for header files.
16555 * console-io.c: Add configure checks for header files.
16556 * profiler.c: Add configure checks for header files.
16557 * rawbuffer.c: Add configure checks for header files.
16558 * icall.c: Add configure checks for header files.
16559 * rand.c: Add configure checks for header files.
16560 * socket-io.c: Add configure checks for header files.
16562 Code is contributed under MIT/X11 license.
16564 2007-05-24 Zoltan Varga <vargaz@gmail.com>
16566 * reflection.c (mono_custom_attrs_from_builders): Remove the
16567 assertion as it breaks the build.
16569 * reflection.c (mono_custom_attrs_from_builders): Add an assertion.
16571 * reflection.c (lookup_custom_attr): Make a copy here too.
16573 * image.c (mono_image_check_for_module_cctor): Avoid accessing metadata in
16576 * class.c (mono_class_init): Avoid accessing the metadata in dynamic
16579 * reflection.c (mono_custom_attrs_from_param): Make a copy of the dynamic attr
16582 2007-05-22 Zoltan Varga <vargaz@gmail.com>
16584 * reflection.c (encode_cattr_value): Fix yet another object cattr encoding issue.
16585 (load_cattr_value): Ditto.
16587 2007-05-20 Zoltan Varga <vargaz@gmail.com>
16589 * marshal.c (mono_marshal_get_delegate_invoke): Improve the generated IL a little.
16591 2007-05-19 Gert Driesen <drieseng@users.sourceforge.net>
16593 * threads.c: In "start_wrapper", set apartment_state to MTA if
16594 apartment_state is Unknown and we're running on 2.0 profile or
16596 * object.c: In "mono_runtime_exec_main", if STAThread is not applied
16597 to main method, then set apartment_state to Unknown on 1.0 profile,
16598 and MTA on 2.0 profile.
16600 2007-05-16 Jb Evain <jb@nurv.fr>
16602 * class-internals.h (MonoDefaults): Add an attribute_class and
16603 customattribute_data_class.
16604 * domain.c (mono_init_internal): Populate them.
16605 * reflection.c: Use them to remove duplicates. Make a vew
16606 MonoClass variables `static'.
16608 2007-05-15 Massimiliano Mantione <massi@ximian.com>
16610 * class-internals.h: Added "MonoVTable.interface_bitmap" as a next
16611 step in implementing IMT, so that all isinst checks now can go
16612 through the bitmap.
16613 This was needed because vtables for TransparentProxy need to look
16614 like the vtable of the "target" class, so they need to point to
16615 its interface bitmap directly.
16617 * object.c: inside "mono_class_create_runtime_vtable" and
16618 "mono_class_proxy_vtable", initialize "MonoVTable.interface_bitmap".
16620 2007-05-15 Atsushi Enomoto <atsushi@ximian.com>
16622 * object-internals.h
16623 culture-info.h : added territory field in MonoCulture and
16624 CultureInfoEntry foreach. Added lcid field in RegionInfoEntry.
16625 * locales.c : fill territory field above too.
16626 * culture-info-table.h : regenerated.
16628 2007-05-12 Zoltan Varga <vargaz@gmail.com>
16630 * class-internals.h (_MonoGenericContainer): Widen type_argc filed to 31 bits.
16633 2007-05-11 Jonathan Chambers <joncham@gmail.com>
16635 * object.c: Always initialize apartment, even if
16636 there is no custom attributes on entry point.
16638 Code is contributed under MIT/X11 license.
16640 2007-05-10 Jonathan Chambers <joncham@gmail.com>
16642 * marshal.c: LPTSTR == LPWSTR on Win32. Fixes #81370.
16643 * metadata.c: If no encoding is set, check for unicode
16646 Code is contributed under MIT/X11 license.
16648 2007-05-09 Jonathan Chambers <joncham@gmail.com>
16650 * threads.c: Handle if mono_thread_current returns NULL
16652 Code is contributed under MIT/X11 license.
16654 2007-05-09 Jonathan Chambers <joncham@gmail.com>
16656 * threads.c: Initialize Thread.AprtmentState and set on Thread.Start
16657 in start_wrapper. Added mono_thread_init_apartment_state and
16658 mono_thread_cleanup_apartment_state.
16659 * object.c: Initialize thread apartment state on main thread
16660 by checking for STAThreadAttribute on entry point.
16661 * object-internals.h: Add apartment_state field to MonoThread.
16662 * threads-types.h: Add unmanaged definition of
16663 System.Threading.ApartmentState, MonoThreadApartmentState.
16665 Code is contributed under MIT/X11 license.
16667 2007-05-08 Jonathan Chambers <joncham@gmail.com>
16669 * class.c: Fix windows build.
16670 * class-internals.h: Fix windows build.
16672 Code is contributed under MIT/X11 license.
16674 2007-05-08 Robert Jordan <robertj@gmx.net>
16676 * process.c (CreateProcess_internal):
16677 Pass CREATE_NO_WINDOW to CreateProcess when ProcessStartupInfo
16678 .CreateNoWindow was specified. Fixes #81496.
16680 2007-05-08 Massimiliano Mantione <massi@ximian.com>
16682 * class-internals.h: Removed "MonoClass.interface_offsets" as a first
16683 step in implementing IMT, replaced it with two compact arrays
16684 (interfaces_packed and interface_offsets_packed) and a bitmap that
16685 is used for isinst checks (interface_bitmap).
16687 * class.c: (compare_interface_ids): compare function to pass to
16688 bsearch when looking for an interface with a given id.
16689 (mono_class_interface_offset): reimplemented using bsearch on
16690 interfaces_packed, getting the offset from interface_offsets_packed.
16691 (print_implemented_interfaces): utility debugging function.
16692 (setup_interface_offsets): reworked to initialize interfaces_packed,
16693 interface_offsets_packed and interface_bitmap.
16695 * object.c: replaced all accesses to "MonoClass.interface_offsets"
16696 with uses of interfaces_packed and interface_offsets_packed.
16698 2007-05-08 Massimiliano Mantione <massi@ximian.com>
16700 * class-internals.h: Added MONO_CLASS_IMPLEMENTS_INTERFACE macro and
16701 mono_class_interface_offset prototype to wrap all accesses to
16702 "MonoClass.interface_offsets".
16704 * class.c: Implemented mono_class_interface_offset, and wrapped all
16705 accesses to "MonoClass.interface_offsets".
16707 * monodiet.c, object.c, marshal.c, icall.c: wrapped all accesses to
16708 "MonoClass.interface_offsets".
16710 Tue May 8 13:02:09 CEST 2007 Paolo Molaro <lupus@ximian.com>
16712 * icall.c, icall-def.h: implemented new GetFieldFromHandle and
16713 GetMethodFromHandle overloads (bug #78637).
16715 Tue May 8 12:22:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
16717 * assembly.c: parse ProcessorArchitecture in assembly name and ignore
16718 it for now (see mono-devel, from Marek Sieradzki <marek.sieradzki@gmail.com>).
16720 2007-05-01 Zoltan Varga <vargaz@gmail.com>
16722 * icall.c (custom_attrs_get_by_type): Handle loading errors gracefully. Fixes
16725 * reflection.c (mono_reflection_get_custom_attrs_by_type): Handle loading errors
16727 (mono_custom_attrs_from_index): Ditto.
16729 * icall.c (ves_icall_InternalInvoke): Allow calling ctors of abstract classes.
16732 2007-04-30 Zoltan Varga <vargaz@gmail.com>
16734 * metadata.c (mono_metadata_parse_type_full): Avoid an invalid free since the type
16735 is now allocated from a mempool.
16737 2007-04-28 Zoltan Varga <vargaz@gmail.com>
16739 * threads.c (build_wait_tids): Do not call mono_monitor_enter () here since the
16740 caller holds threads_lock, leading to deadlocks. Fixes #81476.
16742 2007-04-26 Zoltan Varga <vargaz@gmail.com>
16744 * loader.c (mono_loader_error_prepare_exception): Fix crash caused by calling
16745 mono_loader_clear_error () too late. Fixes #81463.
16747 2007-04-26 Atsushi Enomoto <atsushi@ximian.com>
16749 * culture-info-table.h : regenerated.
16751 2007-04-25 Zoltan Varga <vargaz@gmail.com>
16753 * appdomain.c (add_assemblies_to_domain): Fix crash when an assembly reference
16756 2007-04-25 Dick Porter <dick@ximian.com>
16758 * Makefile.am: Put the mingw enforced-optimisation back into the
16759 PLATFORM_WIN32 section.
16761 2007-04-24 Zoltan Varga <vargaz@gmail.com>
16763 * reflection.c (mono_image_load_module_dynamic): Fix crash introduced by previous
16766 * image.c (mono_image_load_module): New API function to load a module reference.
16768 * image.c (load_modules): Load modules lazily. Fixes #80812.
16770 * class.c (mono_class_from_typeref): Use mono_image_load_module.
16772 * reflection.c (mono_image_load_module_dynamic): Copy image->modules_loaded too.
16774 * object-internals.h reflection.c icall-def.h (mono_image_load_module): Rename this
16775 to mono_image_load_module_dynamic.
16777 2007-04-23 Jonathan Chambers <joncham@gmail.com>
16779 * marshal.c: Fix calling convention for CCW on non-windows
16780 platforms. STDCALL on windows, CDECL everywhere else to work
16781 with XPCOM and MainWin COM.
16783 Code is contributed under MIT/X11 license.
16785 2007-04-23 Martin Baulig <martin@ximian.com>
16790 (method_from_memberref): Added `gboolean *used_context' argument.
16791 (mono_get_method_from_token): Likewise.
16792 (mono_get_method_full): Don't insert the method in the cache when
16793 `used_context' is true.
16795 2007-04-23 Raja R Harinath <rharinath@novell.com>
16797 * monodiet.c (add_types_from_method): Fix "wrong type" warning.
16799 * reflection.c (mono_reflection_bind_generic_parameters): Don't
16800 create new MonoTypes for returned types.
16801 * class.c (mono_generic_class_get_class): Export mono-internal.
16802 * class-internals.h: Update to changes.
16804 Thu Apr 19 16:45:55 CEST 2007 Paolo Molaro <lupus@ximian.com>
16806 * threadpool.c, threadpool.h, icall-def.h: patch from
16807 Robert Jordan to implemnt ThreadPool.SetMaxThreads.
16809 2007-04-18 Zoltan Varga <vargaz@gmail.com>
16811 * threads.c (mono_thread_get_stack_bounds): Fix windows build.
16813 * threads.c (mono_thread_get_stack_bounds): Remove an assert which can be triggered.
16815 * threads.c (mono_thread_get_stack_bounds): New helper function.
16817 * threads.c (mono_thread_attach): Applied patch from horst.reiterer@fabasoft.com.
16818 Correctly compute stack bounds when attaching. Fixes #81394.
16820 Wed Apr 18 18:28:41 BST 2007 Paolo Molaro <lupus@ximian.com>
16822 * reflection.c: fix handling of doubles in custom attributes
16823 for the arm-fpa format (bug #81368).
16825 2007-04-18 Raja R Harinath <rharinath@novell.com>
16827 * reflection.c (assembly_add_win32_resources): Mildly relax an
16828 bounds check to let the end pointer point just past the end of the
16829 allocated buffer. (may fix #81384)
16831 2007-04-17 Atsushi Enomoto <atsushi@ximian.com>
16833 * culture-info-table.h : regenerated.
16835 2007-04-07 Zoltan Varga <vargaz@gmail.com>
16837 * threads.c (start_wrapper): Call push_appdomain_ref () earlier to fix races where
16838 the thread is aborted early.
16840 2007-04-05 Dick Porter <dick@ximian.com>
16842 * file-io.c (ves_icall_System_IO_MonoIO_GetFileSystemEntries): use
16843 FindFirstFile()/FindNextFile() to find entries. This lets the
16844 io-layer versions use MONO_IOMAP compatibility helpers. Fixes bug
16847 * appdomain.c (MONO_CORLIB_VERSION): Increment, as the usage of
16849 ves_icall_System_IO_MonoIO_GetFileSystemEntries() has changed.
16851 2007-04-04 Martin Baulig <martin@ximian.com>
16854 (mono_method_desc_full_match): Add support for nested classes.
16856 2007-04-02 Zoltan Varga <vargaz@gmail.com>
16858 * marshal.c (cominterop_get_managed_wrapper_adjusted): Fix warnings.
16860 2007-04-01 Zoltan Varga <vargaz@gmail.com>
16862 * threads.c (abort_appdomain_thread): Avoid handle leakage if we are
16863 waiting for too many threads.
16865 2007-03-28 Sebastien Pouliot <sebastien@ximian.com>
16867 * environment.c: Fix return value check on uname so we can get the
16868 executing version on Solaris operating systems.
16870 2007-03-28 Jb Evain <jbevain@gmail.com>
16872 * class.c (mono_type_get_name_recurse): Complete the
16873 fix for the creation of assembly qualified names for
16874 pointer types. Fixes #81208.
16876 2007-03-27 Dick Porter <dick@ximian.com>
16878 * appdomain.c (MONO_CORLIB_VERSION): Increment, as the signature
16879 of ves_icall_System_Threading_Mutex_ReleaseMutex_internal() has
16883 (ves_icall_System_Threading_Mutex_ReleaseMutex_internal): Return
16884 the value of ReleaseMutex().
16886 2007-03-27 Dick Porter <dick@ximian.com>
16888 * socket-io.c (ipaddress_to_struct_in_addr): IPAddress is stored
16889 in little-endian order, not network endian, so must be converted
16890 to host endian here. Fixes bug 80593.
16892 2007-03-22 Jb Evain <jbevain@gmail.com>
16894 * class.c (mono_type_get_name_recurse): Fix the creation of assembly
16895 qualified names for pointer types. Fixes #81208.
16897 2007-03-21 Jonathan Chambers <joncham@gmail.com>
16899 * marshal.c: Add support for PreserveSigAttribute.
16901 Code is contributed under MIT/X11 license.
16903 2007-03-14 Zoltan Varga <vargaz@gmail.com>
16905 * process.c: Fix endianness issues. Fixes #81126.
16907 * reflection.c (mono_reflection_create_dynamic_method): Fix the last change so
16908 multiple circular calls made from the same DynamicMethod work. Fixes #81141.
16910 * image.c (mono_image_lookup_resource): Make this work on big-endian
16911 machines.Change API contract so the caller needs to free the return value.
16913 * process.c (process_get_fileversion): Adapt to mono_image_lookup_resource ()
16916 2007-03-14 Martin Baulig <martin@ximian.com>
16918 * debug-helpers.c (mono_type_get_desc): In `MONO_TYPE_ARRAY', use
16919 mono_type_get_desc() as well.
16921 2007-03-13 Jonathan Chambers <joncham@gmail.com>
16923 * icall.c: Fix environ access in VS.
16925 2007-03-13 Alp Toker <alp@atoker.com>
16927 * icall.c (ves_icall_MonoType_GetElementType): For enums, return null
16928 rather than the underlying type. Based on a patch by Ben Maurer. Fixes
16931 2007-03-12 Zoltan Varga <vargaz@gmail.com>
16933 * reflection.c (mono_reflection_create_dynamic_method): Add support for
16934 circular references among dynamic methods. Fixes #81091.
16936 * object-internals.h (MonoReflectionDynamicMethod): Add 'referenced_by' field.
16938 2007-03-09 Martin Baulig <martin@ximian.com>
16940 * reflection.c (encode_constant): Add support for MONO_TYPE_GENERICINST.
16942 2007-03-09 Jonathan Chambers <joncham@gmail.com>
16944 * appdomain.c: Fix shadow copy on Windows. Use g_snprintf instead
16945 of snprintf as it doesn't exist on Win32 (VS build); also for uniformity.
16947 Code is contributed under MIT/X11 license.
16949 2007-03-09 Gert Driesen <drieseng@users.souceforge.net>
16951 * loader.c: Reapply patch for bug #79424.
16953 2007-03-06 Zoltan Varga <vargaz@gmail.com>
16955 * metadata.c (mono_type_to_unmanaged): Only convert object to
16956 MARSHAL_CONV_SAFEHANDLE on the 2.0 profile.
16958 Tue Mar 6 15:39:48 CET 2007 Paolo Molaro <lupus@ximian.com>
16960 * class-internals.h, class.c, metadata.c, reflection.c: removed unused
16961 (and incorrectly set) is_reference field from MonoGenericInst.
16963 2007-03-06 Zoltan Varga <vargaz@gmail.com>
16965 * assembly.c (mono_assembly_load_from_full): Call mono_assemblies_unlock ()
16968 * icall.c (ves_icall_type_Equals): Rename this to ves_icall_System_Type_EqualsInternal.
16970 * icall-def.h: Rename Type:Equals to Type:EqualsInternal.
16972 2007-03-05 Miguel de Icaza <miguel@novell.com>
16974 * file-io.c (ves_icall_System_IO_MonoIO_Open): Use the new
16975 FileOptions.1 value to mean "temporary", map that to
16976 FILE_ATTRIBUTE_TEMPORARY and use that to signal 600 permissions.
16980 2007-03-03 Marek Habersack <mhabersack@novell.com>
16982 * appdomain.c: implement MS .Net style shadow copying. Copies of
16983 the assemblies are made in a subdirectory of the dynamic base
16984 directory, the assembly names are preserved.
16985 Copy .mdb and .config files along with the assemblies being shadowed.
16987 2007-02-28 Zoltan Varga <vargaz@gmail.com>
16989 * marshal.c (emit_object_to_ptr_conv): Emit valid IL for handling HandleRefs.
16990 (emit_marshal_handleref): Ditto.
16992 * profiler.c: Applied patch from Tor Lillqvist (tml@novell.com) to fix output
16993 on Visual C++. Fixes #80671.
16995 Wed Feb 28 16:53:40 CET 2007 Paolo Molaro <lupus@ximian.com>
16997 * boehm-gc.c, null-gc.c, object.h, object.c: sgen gc fixes
16998 for clone operations.
17000 2007-02-28 Zoltan Varga <vargaz@gmail.com>
17002 * marshal.c: Fix warnings.
17004 Fri Feb 23 15:06:57 CET 2007 Paolo Molaro <lupus@ximian.com>
17006 * loader.c: allow case-insensitive matching of the dll name
17007 in dllmap handling when prefixed with "i:".
17009 2007-02-20 Jonathan Chambers <joncham@gmail.com>
17011 * threads.c: Fix #ifdef for dummy_apc function for VS.
17013 Tue Feb 20 11:59:42 CET 2007 Paolo Molaro <lupus@ximian.com>
17015 * threads.c: don't throw in MemoryBarrier (), use lock/unlock.
17017 2007-02-19 Massimiliano Mantione <massi@ximian.com>
17018 * class.c (mono_class_setup_vtable_general): Fix bug 75903,
17019 giving precedence to the methods with a fully qualified name
17020 (InterfaceName.MethodName) when building the interface sections
17023 2007-02-16 Dick Porter <dick@ximian.com>
17025 * threadpool.c (append_job): Fix fast-path array handling, so it's
17026 less likely the array will grow exponentially when the load is
17029 Fri Feb 16 19:17:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17031 * metadata-internals.h, loader.c: fix dllmap lookup order
17032 for non-function maps, too, and prepare for fallback code.
17034 2007-02-12 Robert Jordan <robertj@gmx.net>
17036 * marshal.c, marshal.h, icall-def.h: rename mono_marshal_realloc
17037 to ves_icall_System_Runtime_InteropServices_Marshal_ReAllocHGlobal
17038 and use GlobalReAlloc on WIN32 to be in sync with GlobalAlloc,
17039 GlobalFree. Fixes a part of bug #77075.
17041 Mon Feb 12 21:10:07 CET 2007 Paolo Molaro <lupus@ximian.com>
17043 * loader.c: implemented typedef parent in field memberref.
17045 2007-02-11 Jonathan Chambers <joncham@gmail.com>
17047 * marshal.c: Fix warnings and remember to call Release on
17050 Code is contributed under MIT/X11 license.
17052 2007-02-10 Miguel de Icaza <miguel@novell.com>
17054 * class-internals.h: Add MonoHandleRef definition, and
17055 handleref_class to mono_defaults.
17057 * metadata.c (mono_type_to_unmanaged): If we find HandleRefs in a
17058 structure, use new conversion MONO_MARSHAL_CONV_HANDLEREF.
17060 * marshal.c (emit_ptr_to_object_conv): Add support for HandleRefs
17061 (do nothing on this stage)
17062 (emit_object_to_ptr_conv): Extract the handle from the HandleRef.
17063 (emit_marshal_handleref): New method, used for argument handling
17066 2007-02-08 Jonathan Chambers <joncham@gmail.com>
17068 * class.c (mono_class_setup_parent): Lazily init com types.
17069 * domain.c (mono_init_internal, mono_init_com_types): Lazily
17071 * object.c (mono_remote_class_vtable): Lazily init com types.
17072 * class-internals.h: Add iunknown and idispatch to MonoDefaults.
17073 * object-internals.h: Add MonoComInteropProxy and MonoReflectionGuidAttribute.
17074 * domain-internals.h: Expose mono_init_com_types.
17075 * icall-def.h: Add icalls for ComInteropProxy, __ComObject, and Marshal.
17076 * marshal.c: Add mutex for cominterop use. Init locals for wrapper methods.
17077 Add support for COM Callable Wrapper marshalling.
17078 * marshal.h: Add icall definitions.
17079 * gc.c: Handle freeing of CCWs in finalizer code.
17081 Code is contributed under MIT/X11 license.
17083 Thu Feb 8 12:46:18 CET 2007 Paolo Molaro <lupus@ximian.com>
17085 * reflection.c: changed all the signature encoding code to use
17086 a variable-sized buffer.
17088 Wed Feb 7 20:37:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17090 * marshal.c: locking fixes: never take the loader lock
17091 or other runtime locks when holding the marshal lock
17094 Wed Feb 7 18:49:10 CET 2007 Paolo Molaro <lupus@ximian.com>
17096 * marshal.c: make the delegate function pointer mapping
17097 work for the moving GC.
17099 Mon Jan 29 11:30:46 CET 2007 Paolo Molaro <lupus@ximian.com>
17101 * marshal.c: fix from Robert Jordan (robertj@gmx.net)
17104 Fri Jan 26 12:49:23 CET 2007 Paolo Molaro <lupus@ximian.com>
17106 * image.h, loader.c, metadata-internals.h: use mono-dl instead of
17109 Fri Jan 26 12:00:45 CET 2007 Paolo Molaro <lupus@ximian.com>
17111 * threadpool.c: made the code moving-GC safe.
17113 Thu Jan 25 20:31:41 CET 2007 Paolo Molaro <lupus@ximian.com>
17115 * assembly.c, boehm-gc.c, class-internals.h, class.c,
17116 debug-mono-symfile.c, domain.c, locales.c, marshal.c, metadata.c,
17117 monitor.c, mono-debug.c, mono-debug.h, object.c, profiler.c:
17119 * reflection.c: warning cleanup, some threading and moving GC fixes.
17121 Thu Jan 25 16:22:36 CET 2007 Paolo Molaro <lupus@ximian.com>
17123 * class.c, loader.c: create the needed Set/Get/Address array methods
17124 as well as the .ctors in mono_class_init (), fixes bug #80567.
17126 2007-01-24 Zoltan Varga <vargaz@gmail.com>
17128 * class.c (mono_class_layout_fields): When force-aligning a field, make sure
17129 we doesn't decrease its alignment. Should fix the sparc build.
17131 2007-01-24 Dick Porter <dick@ximian.com>
17134 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
17135 Create the returned object if we need to ignore an unsupported
17136 socket option. Fixes a segfault reported by Atsushi.
17138 Tue Jan 23 18:09:21 CET 2007 Paolo Molaro <lupus@ximian.com>
17140 * class.c, object.c: restrict GC-tracked fields to
17141 UIntPtr fields used inside corlib, so we provide better
17142 type info to the GC and also allow broken packing as in
17145 Mon Jan 22 11:24:27 CET 2007 Paolo Molaro <lupus@ximian.com>
17147 * sgen-gc.c: removed duplicated function.
17149 2007-01-19 Miguel de Icaza <miguel@novell.com>
17151 * socket-io.c (convert_sockopt_level_and_name): return -2 as a
17152 value that means that the value is not supported, but that we
17153 should not return a failure, but instead report this as a
17154 successful operation.
17156 2007-01-19 Raja R Harinath <rharinath@novell.com>
17158 Fix tests/bug79956.2.il
17159 * class.c (mono_type_get_underlying_type): Handle genericinst enums.
17160 (mono_generic_class_get_class): If the generic definition in an
17161 enum, copy over other fields related to it.
17163 Thu Jan 18 18:37:28 CET 2007 Paolo Molaro <lupus@ximian.com>
17165 * metadata.h: fix MONO_TYPE_ISSTRUCT() to not consider
17166 genericinst enums (bug #79215).
17168 2007-01-17 Massimiliano Mantione <massi@ximian.com>
17169 * class.c: Fix bug 80307.
17171 Wed Jan 17 17:09:20 CET 2007 Paolo Molaro <lupus@ximian.com>
17173 * image.c: if the file table is not present, try to load
17174 all the modules, since we don't have info about them
17175 having or not metadata (bug #80517).
17176 * assembly.c: allow mono_assembly_load_references () to
17177 work for netmodules.
17179 Wed Jan 17 14:28:30 CET 2007 Paolo Molaro <lupus@ximian.com>
17181 * image.c, metadata-internals.h, object.c: execute module
17182 cctors when running on the 2 runtime if present (bug #80487).
17184 Tue Jan 16 15:32:53 CET 2007 Paolo Molaro <lupus@ximian.com>
17186 * icall.c: optimized InitializeArray() on bigendian.
17188 Tue Jan 16 13:18:51 CET 2007 Paolo Molaro <lupus@ximian.com>
17190 * icall.c: fix for the broken ARM FPA double format.
17192 Tue Jan 16 12:51:16 CET 2007 Paolo Molaro <lupus@ximian.com>
17194 * icall.c: handle endian issues for r4 and r8 types, too, in
17195 the InitializeArray() icall.
17197 2007-01-15 Miguel de Icaza <miguel@novell.com>
17199 * loader.c (mono_loader_error_prepare_exception): Clear the error
17200 once we have extracted the information from it, do this before we
17201 call into the JIT's class loading mechanisms.
17203 * object.c (mono_class_create_runtime_vtable): Do not clear the
17204 loader error before calling mono_class_get_exception_for_failure
17205 as the loader error is needed inside
17206 mono_class_get_exception_for_failure to throw the error (thinko).
17210 Mon Jan 15 10:27:31 CET 2007 Paolo Molaro <lupus@ximian.com>
17212 * reflection.c: align fields rva data so it's faster to load at
17215 2007-01-12 Raja R Harinath <rharinath@novell.com>
17217 Prepare to simplify GenericMethod handling.
17218 * class-internals.h (mono_method_get_context): New accessor function.
17219 * class.c, icall.c, loader.c, reflection.c, verify.c: Use accessor
17220 rather than directly accessing '->context' field.
17222 * class-internals.h (_MonoGenericParam.method): Move ...
17223 (_MonoGenericContainer): ... here. Add into union with klass field.
17224 * class.c, icall.c, loader.c, metadata.c, reflection.c:
17227 Fri Jan 12 11:58:52 CET 2007 Paolo Molaro <lupus@ximian.com>
17229 * Makefile.am, class-internals.h, debug-helpers.c: consolidate
17230 the wrapper type enum and reduce relocations.
17232 2007-01-12 Raja R Harinath <rharinath@novell.com>
17234 * reflection.c (inflate_mono_method): Reuse method instantiation
17235 from the generic method, if available.
17237 2007-01-11 Jonathan Chambers <joncham@gmail.com>
17239 * marshal.c (emit_marshal_variant): Fix conv_arg
17240 type in last commit, based on whether parameter is byref.
17242 2007-01-11 Jonathan Chambers <joncham@gmail.com>
17244 * marshal.c (emit_marshal_variant): Handle unmanaged->managed
17246 (mono_marshal_emit_managed_wrapper): Convert byref arguments of type
17247 MONO_TYPE_OBJECT back for VARIANT support.
17249 2007-01-11 Jonathan Chambers <joncham@gmail.com>
17251 * marshal.c, marshal.h, icall-def.h: Implement
17252 Marshal.ReAllocCoTaskMem.
17254 Thu Jan 11 19:00:03 CET 2007 Paolo Molaro <lupus@ximian.com>
17256 * marshal.c: memory retention fixes: use the proper
17257 image cache for runtime_invoke method lookups.
17259 Thu Jan 11 18:53:19 CET 2007 Paolo Molaro <lupus@ximian.com>
17261 * mempool.c: added code to help debug mempool allocations.
17263 2007-01-11 Dick Porter <dick@ximian.com>
17265 * socket-io.c (convert_sockopt_level_and_name): Add DontFragment
17266 support (experimenting with faking it with IP_MTU_DISCOVER for
17267 systems that don't have IP_DONTFRAGMENT.)
17268 (ves_icall_System_Net_Sockets_Socket_Disconnect_internal): New
17271 * icall-def.h: new System.Net.Sockets.Disconnect icall.
17273 * socket-io.h: Add new fields to MonoSocketAsyncResult
17274 corresponding to the new ones in Socket.cs.
17276 2007-01-11 Raja R Harinath <rharinath@novell.com>
17278 Fix IronPython regression mentioned in #80249
17279 * metadata.c (do_mono_metadata_parse_generic_class): Clear
17280 'cached_context' field, since it may have been initialized as a
17281 side-effect of metadata parsing.
17283 * class-internals.h (_MonoGenericClass.is_inflated): Remove.
17284 (_MonoGenericClass.cached_class): Move here and rename from lone
17285 remaining field of ...
17286 (_MonoInflatedGenericClass): ... this. Remove.
17287 * metadata.h, class.c, reflection.c, metadata.c, icall.c: Update
17290 Fix mcs/tests/test-128.cs regression.
17291 * reflection.c (encode_cattr_value) [MONO_TYPE_SZARRAY]: Revert
17292 2007-01-10 change below.
17293 [MONO_TYPE_OBJECT]: Recurse into array case.
17295 2007-01-11 Raja R Harinath <harinath@gmail.com>
17297 * class-internals.h (mono_get_inflated_generic_class): Remove.
17298 * class.c (mono_get_inflated_generic_class): Remove.
17299 (mono_generic_class_get_class): Rename from
17300 mono_class_create_generic.
17301 (mono_class_from_mono_type) [GENERICINST]: Use it.
17302 * reflection.c, metadata.c: Update to changes. Use
17303 'mono_class_from_mono_type'.
17305 Wed Jan 10 16:19:54 CET 2007 Paolo Molaro <lupus@ximian.com>
17307 * reflection.c: use passed type when encoding an array element
17308 in custom attributes (patch from David Mitchell, dmitchell@logos.com).
17310 2007-01-09 Robert Jordan <robertj@gmx.net>
17312 * marshal.c (mono_delegate_end_invoke): Add check for unpaired asyc
17313 result arguments (someDelegate.EndInvoke (unrelatedAres)).
17316 2007-01-09 Raja R Harinath <rharinath@novell.com>
17318 * class-internals.h (_MonoInflatedGenericClass.is_initialized): Remove.
17320 * object.c (set_value): Avoid aliasing between type->data.klass
17321 and type->data.generic_class.
17323 * class.c (mono_class_create_generic): Don't use 'is_initialized' field.
17325 2007-01-08 Raja R Harinath <rharinath@novell.com>
17327 * marshal.c (mono_marshal_get_runtime_invoke): Avoid aliasing
17328 between type->data.klass and type->data.generic_class.
17330 2007-01-08 Lluis Sanchez <lluis@ximian.com>
17332 * marshal.c: In MS.NET, StringBuilder objects are not copied by
17333 value in out parameters.
17335 2007-01-08 Raja R Harinath <rharinath@novell.com>
17337 Simplify invariant for MonoGenericClass::klass field.
17338 * class.c (mono_class_create_generic): Verify 'klass' is null.
17339 * metadata.c (do_mono_metadata_parse_generic_class): Don't
17340 initialize 'klass' field.
17342 2007-01-05 Raja R Harinath <rharinath@novell.com>
17344 Ongoing work to avoid redundant data and simplify invariants.
17345 * class-internals.h (_MonoGenericMethod.class_inst): Rename from
17346 'generic_class', and change type to a GenericInst.
17347 (_MonoGenericContext.class_inst): Likewise, rename from 'gclass'.
17348 * class.c, loader.c, metadata.c, reflection.c: Update to changes.
17350 2007-01-05 Atsushi Enomoto <atsushi@ximian.com>
17352 * class.c : skip io-layer under PLATFORM_WIN32.
17354 2007-01-03 Tor Lillqvist <tml@novell.com>
17356 Fix #80305: In a bundled executable, look in the bundled exe
17357 assembly to determine the runtime version. Add the possibility to
17358 bundle also the machine.config file.
17360 * assembly.c (mono_assembly_open_from_bundle): Make
17361 non-static. Allow being called even if we have no bundled
17362 assemblies, and return NULL right away in that case.
17364 * domain-internals.h: Declare mono_assembly_open_from_bundle()
17367 * domain.c (app_config_parse): Take an assembly exe file name as
17368 parameter instead of a config file name. Check for a bundled
17369 config file for that assembly by calling
17370 mono_config_string_for_assembly_file() (see below) before looking
17371 for one in the file system.
17372 (get_runtimes_from_exe): Corrsponding change to call of
17373 app_config_parse().
17374 (get_runtimes_from_exe): Check for bundled assembly exe file first
17375 by calling mono_assembly_open_from_bundle(). If no bundled
17376 assembly exe file is found, call mono_image_open() as before to
17377 look it up in the file system.
17379 * mono-config.c: Add variable bundled_machinec_onfig.
17380 (mono_config_string_for_assembly_file): New function.
17381 (mono_config_for_assembly): Move code snippet that looks for a
17382 bundled assembly .config file into the above new function. Call
17384 (mono_register_machine_config, mono_get_machine_config): New
17385 functions to set and retrieve
17387 * assembly.h: Declare mono_register_machine_config().
17389 * mono-config.h: Declare mono_get_machine_config() and
17390 mono_config_string_for_assembly_file().
17392 * icall.c: No declaration of environ necessary on Win32. It is
17393 declared (as a macro expanding to a function call) in stdlib.h.
17394 (ves_icall_System_Configuration_DefaultConfig_get_bundled_machine_config):
17395 New internal mono function. Returns the value of
17396 mono_get_machine_config() as a Mono string.
17398 * icall-def.h: Add get_bundled_machine_config().
17400 2007-01-04 Raja R Harinath <rharinath@novell.com>
17402 Remove redundant field
17403 * class-internals.h (_MonoGenericContext.container): Remove field.
17404 * loader.c (mono_method_get_signature_full): Don't parse a
17405 "container" for a signature parse when the signature is inflated
17407 (method_from_methodspec): Likewise, for a generic_inst.
17408 * class.c, metadata.c, reflection.c: Update to changes.
17410 2006-01-04 Raja R Harinath <rharinath@novell.com>
17412 * class-internals.h (_MonoGenericClass): Rename 'context' field to
17413 'cached_context', and change semantics -- it starts off NULL, and
17414 is initialized on demand.
17415 * class.c (mono_generic_class_get_context): New accessor to
17416 replace 'context' field accesses.
17417 (mono_class_get_context): New helper.
17418 (*): Update to changes.
17419 * icall.c, loader.c, metadata.c, reflection.c: Update to changes.
17421 2007-01-03 Miguel de Icaza <miguel@novell.com>
17423 * marshal.c (mono_string_to_byvalstr): Fix thinko, shorten len
17424 before the memcpy. Fixes Marshal2 regression.
17426 2007-01-02 Jb Evain <jbevain@gmail.com>
17428 * blob.h: add a MONO_TYPE_ENUM definition
17429 * reflection.c (load_cattr_value, create_custom_attr, create_custom_attr_data):
17430 fix the encoding of arrays of enums in custom attributes.
17434 2007-01-01 Miguel de Icaza <miguel@novell.com>
17436 * marshal.c (mono_string_to_byvalwstr): Fix this routine. The
17437 string is null terminated, but only cut the string short if it
17438 overflows the buffer.
17440 (mono_string_to_byvalstr): Also fix this routine. The code here
17441 was not properly terminating a string (it was only terminated
17442 because of the previous catch-all memset).
17444 I left the memset, because I do not know if applications expect
17445 the runtime to clear this region.
17449 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
17450 Clear the error before returning to unmanaged code to prevent the
17451 runtime from being confused later on (fixes 80420).
17452 (ves_icall_type_from_name): Always call mono_loader_clear_error
17453 after parsing a type that could have failed.
17454 (ves_icall_System_Reflection_Assembly_GetTypes): ditto.
17456 * loader.c (mono_loader_clear_error): Fix indentation.
17458 2006-12-28 Martin Baulig <martin@ximian.com>
17460 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 58.
17462 Fri Dec 22 20:04:57 CET 2006 Paolo Molaro <lupus@ximian.com>
17464 * reflection.c: patch from Rolf Bjarne Kvinge to fix
17465 getting a token for an EnumBuilder.
17467 Fri Dec 22 19:49:07 CET 2006 Paolo Molaro <lupus@ximian.com>
17469 * reflection.c: be more careful in case resource generation
17470 fails to create the data array.
17472 Fri Dec 22 18:17:40 CET 2006 Paolo Molaro <lupus@ximian.com>
17474 * sgen-gc.c: write barrier for clone and fix unregister handles.
17476 Fri Dec 22 18:15:33 CET 2006 Paolo Molaro <lupus@ximian.com>
17478 * reflection.c: some fixes needed in the generics code for the moving GC.
17480 2006-12-22 Robert Jordan <robertj@gmx.net>
17482 * icall.c (ves_icall_System_Array_SetValueImpl): Take enums into
17483 account. Fixes bug #80299.
17485 2006-12-21 Raja R Harinath <rharinath@novell.com>
17487 Fix WaitHandle usage in delegates.
17488 * object-internals.h (mono_wait_handle_get_HANDLE): Declare.
17489 * object.c (mono_wait_handle_new): Use the property set method to
17490 initialize the handle.
17491 (mono_wait_handle_get_handle): New.
17492 * threadpool.c (mono_async_invoke): Use it.
17493 * threads.c (ves_icall_System_Threading_WaitHandle_WaitAll_internal):
17495 (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Likewise.
17497 2006-12-21 Jonathan Chambers <joncham@gmail.com>
17499 * marshal.c (emit_marshal): Call emit_marshal_variant and
17500 emit_marshal_com_interface when applicable.
17501 (emit_marshal_variant, emit_marshal_com_interface): Add
17502 methods for this case and remove if's from emit_marshal_object.
17504 Wed Dec 20 11:03:56 CET 2006 Paolo Molaro <lupus@ximian.com>
17506 * filewatcher.c: updated to use the mono-dl API instead of gmodule.
17508 2006-12-19 Jonathan Chambers <joncham@gmail.com>
17510 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocHGlobal,
17511 ves_icall_System_Runtime_InteropServices_Marshal_FreeHGlobal): Use GlobalAlloc
17512 and GlobalFree on Windows. Remove FIXME.
17514 Tue Dec 19 16:18:16 CET 2006 Paolo Molaro <lupus@ximian.com>
17516 * mono-mlist.h, mono-mlist.c, Makefile.am: linked list
17517 implementation for managed objects.
17519 Tue Dec 19 14:28:03 CET 2006 Paolo Molaro <lupus@ximian.com>
17521 * object.c: implemented code to be used for checking
17522 that no reference field overlaps with non-references.
17524 Tue Dec 19 14:10:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17526 * threadpool.c: fix queue code to be compatible with the
17529 2006-12-18 Miguel de Icaza <miguel@novell.com>
17531 * marshal.c (emit_object_to_ptr_conv): Handle null safehandles
17532 in structures by throwing ArgumentNullException.
17534 (emit_marshal_safehandle): Also when they are null parameters.
17536 (emit_marshal_safehandle): Add support for ref
17537 SafeHandles parameters
17539 Mon Dec 18 19:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
17541 * profiler.c: updated to use the mono-dl API instead of
17544 Mon Dec 18 19:02:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17546 * profiler.c: updated to use the mono-dl dynamic loading
17547 API instead of gmodule.
17549 Mon Dec 18 18:16:22 CET 2006 Paolo Molaro <lupus@ximian.com>
17551 * profiler.c: use readlink, older versions of glib don't have
17552 g_file_read_link ().
17554 Mon Dec 18 16:40:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17556 * profiler.c: try to detect the path to mono if libc fails to provide
17557 a useful name (bug #80286).
17559 2006-12-16 Raja R Harinath <rharinath@novell.com>
17562 * icall.c (ves_icall_Type_GetNestedType): If the type is a generic
17563 instance, use the generic type definition instead.
17564 (ves_icall_Type_GetNestedTypes): Likewise.
17565 * class.c (mono_class_create_generic): Always set the
17566 nested_classes of a generic instance to NULL, even if the generic
17567 type definition has nested types.
17569 2006-12-15 Jonathan Chambers <joncham@gmail.com>
17571 * marshal.c (mono_string_from_bstr): Revert previous Windows change
17574 2006-12-15 Miguel de Icaza <miguel@novell.com>
17576 * marshal.c (mono_string_from_bstr): Jon Chambers pointed out that
17577 my arguments were in the wrong order. I also fixed the Windows
17578 version which seems to have had the same issue.
17580 (mono_free_bstr): On Unix, this is g_free.
17581 (mono_string_from_bstr, mono_string_to_bstr): Implement bstr
17582 conversions (for the tests in corlib to pass).
17584 2006-12-14 Miguel de Icaza <miguel@novell.com>
17586 * marshal.c (emit_ptr_to_object_conv): For now, ignore
17587 MONO_MARSHAL_CONV_SAFEHANDLE on return values (we need to throw an
17588 exception if a ref SafeHandle in a struct has changed).
17590 (emit_struct_conv): Do not perform layout checks for classes
17591 derived from SafeHandle, as those are specially handled.
17593 (emit_object_to_ptr_conv): Add support for
17594 MONO_MARSHAL_CONV_SAFEHANDLE conversion.
17596 (emit_marshal_safehandle): Implement conversion of return values
17597 of safehandles (MARSHAL_ACTION_CONV_RESULT).
17599 * threads.c: WaitHandle now is compiled with two different handles
17600 "IntPtr os_handle" for 1.x and "SafeWaitHandle safe_wait_handle"
17603 (ves_icall_System_Threading_WaitHandle_WaitAll_internal)
17604 (ves_icall_System_Threading_WaitHandle_WaitAny_internal): Adjust
17605 these routines to cope with both kinds of fields.
17607 2006-12-12 Miguel de Icaza <miguel@novell.com>
17609 * metadata.c (mono_type_to_unmanaged): Handle the case where
17610 type->data.klass is a SafeHandle, and in that case, return the
17611 size of a pointer (MONO_NATIVE_INT) and set the conversion to be
17612 MONO_MARSHAL_CONV_SAFEHANDLE.
17614 2006-12-11 Miguel de Icaza <miguel@novell.com>
17616 * marshal.c (emit_marshal): Hook up to the MONO_TYPE_CLASS and
17617 MONO_TYPE_OBJECT cases and check for a SafeHandle here before
17618 calling emit_marshal_object.
17620 (emit_marshal_safehandle): Implement marshalling of
17621 SafeHandle parameters (no ref support yet).
17623 (MarshalAction): Document the defines as I implement
17624 them for SafeHandle.
17626 (emit_marshal_object): indentation police.
17628 * class-internals.h: Define MonoSafeHandle.
17629 Add safehandle_class to MonoDefaults type.
17631 * verify.c: Add System.Runtime.InteropServices.SafeHandle to the
17632 list of classes to check for fields.
17634 * domain.c (mono_init_internal): Add SafeHandle to the list of
17635 mono_defaults loaded.
17637 2006-12-15 Raja R Harinath <rharinath@novell.com>
17640 * reflection.c (mono_reflection_bind_generic_parameters): If the
17641 generic type definition is a type builder, ensure that it is fully
17642 initialized before instantiating it. Kill some dead code.
17644 Thu Dec 14 17:02:59 CET 2006 Paolo Molaro <lupus@ximian.com>
17646 * object.c: clear the loader_error () before loading
17647 more metadata stuff (bug #80258).
17649 Thu Dec 14 12:49:47 CET 2006 Paolo Molaro <lupus@ximian.com>
17651 * icall.c, icall-defs.h: type modifiers icalls for
17652 parameters and properties.
17654 Wed Dec 13 19:29:50 CET 2006 Paolo Molaro <lupus@ximian.com>
17656 * object.c, icall.c: fixed warnings.
17658 Mon Dec 11 11:03:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17660 * marshal.c: fixed a couple of leaks and coding style in a few places.
17662 2006-12-08 Dick Porter <dick@ximian.com>
17664 * process.c: Cope with NULL ProcessStartInfo arguments on windows
17665 too. Patch from Jonathan Chambers <joncham@gmail.com>, fixes bug
17668 Thu Dec 7 15:20:31 CET 2006 Paolo Molaro <lupus@ximian.com>
17670 * process.c: ProcessStartInfo may have only filename set and
17671 arguments can be NULL.
17673 Tue Dec 5 19:19:34 CET 2006 Paolo Molaro <lupus@ximian.com>
17675 * icall.c: fix leak found by Robert Jordan.
17677 Tue Dec 5 17:53:10 CET 2006 Paolo Molaro <lupus@ximian.com>
17679 * marshal.c, marshal.h: generate managed method to access an element
17680 of a multi-dimensional array.
17682 2006-11-30 Paolo Molaro (lupus@ximian.com)
17684 * metadata.c, marshal.c: locking fixes when writing to image->mempool.
17686 Thu Nov 30 11:11:37 CET 2006 Paolo Molaro <lupus@ximian.com>
17688 * icall.c: back out GetFields () fix until the serialization code is
17689 fixed to not depend on the incorrect behaviour.
17691 Wed Nov 29 22:01:46 CET 2006 Paolo Molaro <lupus@ximian.com>
17693 * profiler.c: provide defaults if none are set.
17695 Tue Nov 28 12:54:51 CET 2006 Paolo Molaro <lupus@ximian.com>
17697 * Makefile.am, attrdefs.h: new public header file with
17698 constants for attributes for use by embedders.
17700 Tue Nov 28 11:44:52 CET 2006 Paolo Molaro <lupus@ximian.com>
17702 * icall.c: GetFields () fix for bug #80064.
17704 Tue Nov 28 10:56:01 CET 2006 Paolo Molaro <lupus@ximian.com>
17706 * filewatcher.c, filewatcher.h, icall-def.h, icall.c, locales.c:
17707 removed long unused icalls.
17709 2006-11-27 Jonathan Chambers <joncham@gmail.com>
17712 (mono_marshal_emit_managed_wrapper): Level of indirection for
17713 mono_marshal_get_managed_wrapper so that a wrapper for a managed method
17714 can be generated without a delegate class.
17715 (mono_marshal_get_managed_wrapper): Move wrapper logic to mono_marshal_emit_managed_wrapper.
17717 Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17719 2006-11-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17721 * console-io.c: add the 'signal' call removed by mistake. Fixes bug
17724 Mon Nov 27 19:29:13 CET 2006 Paolo Molaro <lupus@ximian.com>
17726 * boehm-gc.c, null-gc.c, sgen-gc.c, mono-gc.h, icall.c,
17727 icall-def.h: added icalls needed by System.GC.
17729 Thu Nov 23 20:01:12 CET 2006 Paolo Molaro <lupus@ximian.com>
17731 * loader.c: ensure the class in catch clauses is handled
17732 correctly for generics methods (fixes bug#79980).
17734 Thu Nov 23 17:31:58 CET 2006 Paolo Molaro <lupus@ximian.com>
17736 * monitor.h, monitor.c: added mono_locks_dump () function
17737 to help debug deadlocks involving managed locks.
17739 2006-11-13 Dick Porter <dick@ximian.com>
17741 * file-io.c (get_file_attributes): If the file is a symlink try
17742 and get the stat data for the target, but also add the
17743 FILE_ATTRIBUTE_REPARSE_POINT flag. This is an attempt to follow
17744 the specs for the windows symlink support, but will probably have
17745 to be reworked when I have test data from a vista machine. Fixes
17748 2006-11-13 Dick Porter <dick@ximian.com>
17750 * gc.c (mono_domain_finalize):
17751 * marshal.c (mono_delegate_begin_invoke):
17752 * threadpool.c (socket_io_init, mono_thread_pool_init)
17753 (mono_thread_pool_finish):
17754 * monitor.c (mono_monitor_try_enter_internal):
17755 * threads.c (mono_thread_resume, mono_thread_init)
17756 (mono_thread_suspend_all_other_threads)
17757 (mono_thread_execute_interruption):
17758 * appdomain.c (mono_domain_unload): Check for NULL error returns
17759 from CreateThread(), CreateEvent() and CreateSemaphore(). See bug
17762 2006-11-11 Miguel de Icaza <miguel@novell.com>
17765 (ves_icall_System_Diagnostics_Process_CreateProcess_internal):
17766 Only close the handle if the value of the handle is not
17767 INVALID_HANDLE_VALUE. This just makes the process a bit more
17770 Improvement for #75733, so that we do not run into this problem.
17773 * assembly.c (check_path_env, check_extra_gac_path_env): Do not
17774 include empty directories from MONO_PATH or MONO_GAC_PREFIX in our
17775 internal variables. Fixes #79462
17778 2006-11-09 Dick Porter <dick@ximian.com>
17780 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17781 Use poll() not select(). Fixes bug 79397.
17783 2006-11-09 Raja R Harinath <rharinath@novell.com>
17786 * assembly.c (mono_assembly_load_from_full): Check that the given
17787 image has an assembly manifest.
17789 2006-11-09 Ankit Jain <jankit@novell.com>
17791 * tabledefs.h (ASSEMBLYREF_RETARGETABLE_FLAG):
17792 (ASSEMBLYREF_ENABLEJITCOMPILE_TRACKING_FLAG):
17793 (ASSEMBLYREF_DISABLEJITCOMPILE_OPTIMIZER_FLAG): Add AssemblyRef flags.
17795 2006-11-07 Dick Porter <dick@ximian.com>
17797 * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17798 Put the old resolver behaviour back for pre-2.0 profiles.
17800 Tue Nov 7 16:56:24 CET 2006 Paolo Molaro <lupus@ximian.com>
17802 * threadpool.c: precise GC and locking fixes.
17804 Tue Nov 7 11:02:42 CET 2006 Paolo Molaro <lupus@ximian.com>
17806 * class.c: don't load types that have an explicit unaligned
17807 managed reference. Provide better info in the TypeLoad exception.
17808 Part of the fix for bug #79744.
17809 * object.c: use the correct check for class type load issues.
17811 Mon Nov 6 17:07:43 CET 2006 Paolo Molaro <lupus@ximian.com>
17813 * class.c: enforce alignment of fields with managed references
17814 even when Pack=1 is forced by the user (bug #77788).
17816 2006-11-03 Dick Porter <dick@ximian.com>
17818 * socket-io.c (ves_icall_System_Net_Dns_GetHostByAddr_internal):
17819 If the address reverse lookup fails, return it as the hostname
17820 anyway. Fixes bug 79721.
17822 2006-11-03 Dick Porter <dick@ximian.com>
17824 * threads.c (ves_icall_System_Threading_Thread_SpinWait_internal):
17825 Fix build on Windows.
17827 2006-11-02 Dick Porter <dick@ximian.com>
17830 * object-internals.h:
17831 * exception.c (mono_get_exception_thread_interrupted):
17832 * threads.c: Implement Thread.Interrupt and Thread.SpinWait.
17835 * monitor.c (ves_icall_System_Threading_Monitor_Monitor_wait):
17836 Check for pending Thread.Interrupt.
17838 2006-10-27 Massimiliano Mantione <massi@ximian.com>
17839 * loader.c: Fixed bug 79684.
17841 2006-10-27 Dick Porter <dick@ximian.com>
17843 * file-io.c (get_file_attributes): Force symlinks to directories
17844 to be returned as a regular file. Fixes bug 79733.
17845 2006-10-26 Dick Porter <dick@ximian.com>
17847 * file-io.c (ves_icall_System_IO_MonoIO_Open): If we're calling
17848 CreateFile to open a directory then we need to set the
17849 FILE_FLAG_BACKUP_SEMANTICS flag. Fixes bug 75285.
17851 2006-10-23 Zoltan Varga <vargaz@gmail.com>
17853 * reflection.c (mono_method_get_object): Cache the MonoMethod class and its
17856 Mon Oct 23 03:06:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
17858 * sgengc.c: small cleanup of timer code.
17860 Mon Oct 23 02:49:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
17862 * sgen-gc.c: fix some warnings and start adding support for
17863 complete object removal on domain unload.
17865 2006-10-22 Gert Driesen <drieseng@users.sourceforge.net>
17867 * assembly.c: build_assembly_name should not consider a version
17868 number without build or revision number invalid. Fixes bug #79715.
17870 2006-10-18 Jonathan Chambers <joncham@gmail.com>
17872 * icall.c: Have ves_icall_System_Diagnostics_DefaultTraceListener_WriteWindowsDebugString
17873 call kernel32 function OutputDebugString directly.
17875 Signed-off-by: Jonathan Chambers <joncham@gmail.com>
17877 Tue Oct 17 16:59:59 CEST 2006 Paolo Molaro <lupus@ximian.com>
17879 * reflection.c: small cleanup, using a function to insert a MonoString
17880 in the string heap.
17882 Tue Oct 17 16:45:27 CEST 2006 Paolo Molaro <lupus@ximian.com>
17884 * reflection.c: moving GC fixes.
17886 Mon Oct 16 16:53:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
17888 * sgen-gc.c, gc-internal.h, gc.c: added API to collect and remove
17889 all the objects with finalizers belonging to an unloading appdomain.
17891 Mon Oct 16 15:08:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
17893 * sgen-gc.c: added ability to allocate even when the nursery is fully
17894 pinned and fixed a couple of bugs.
17896 2006-10-15 Zoltan Varga <vargaz@gmail.com>
17898 * threads.h: Revert the last change for now.
17900 * threads.h (mono_thread_get_pending_exception): Rename this to
17901 mono_thread_get_undeniable_exception ().
17903 2006-10-15 Gert Driesen <drieseng@users.sourceforge.net>
17905 * appdomain.c: Use mono_get_exception_bad_image_format2 to construct
17906 BadImageFormatException in ves_icall_System_Reflection_Assembly_LoadFrom
17907 when fname does not refer to valid assembly. This result in a more
17908 meaningful error message.
17909 * exception.c: added mono_get_exception_bad_image_format2 which
17910 constructs a BadImageFormatException using the ctor taking a custom
17911 message and the file name. Passing in a NULL msg results in a default
17913 * exception.h: define mono_get_exception_bad_image_format2 function.
17914 * icall.c: in InternalGetAssemblyName, throw BadImageFormatException
17915 when file name pointed to an invalid IL image. Use
17916 mono_get_exception_file_not_found2 to construct FileNotFoundException,
17917 as this results in a more meaningful error message.
17919 2006-10-15 Zoltan Varga <vargaz@gmail.com>
17921 * reflection.c (encode_named_val): Implement proper encoding of arrays. Fixes
17924 2006-10-12 Zoltan Varga <vargaz@gmail.com>
17926 * metadata.c (mono_type_size): Change the align parameter to guint32 for
17927 consistency with the other _size functions.
17928 (mono_type_stack_size): Ditto.
17930 * class.c object.c icall.c: Fix warnings caused by the above change.
17932 * class.c (mono_class_get_method_from_name_flags): Fix a typo.
17934 * image.c (load_metadata_ptrs): Reenable loading of modules with uncompressed metadata.
17936 * metadata.c class.c loader.c: Add proper support for uncompressed metadata.
17938 Wed Oct 11 17:27:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
17940 * console-io.h, filewatcher.h, locales.h, marshal.h, monitor.h,
17941 process.h, rand.h, rawbuffer.h, security-manager.h, security.h,
17942 socket-io.h, string-icalls.h, sysmath.h, threadpool-internals.h,
17943 threadpool.h, threads-types.h: mark more internal functions.
17945 2006-10-11 Dick Porter <dick@ximian.com>
17947 * socket-io.c (ves_icall_System_Net_Sockets_Socket_Poll_internal):
17948 Fix typo spotted by Robert Jordan in bug 79352 (though I can't
17949 reproduce the bug even before applying the fix.)
17951 Tue Oct 10 15:39:39 CEST 2006 Paolo Molaro <lupus@ximian.com>
17953 * reflection.c: allow retrieving attributes for arguments in generic
17954 methods (bug #79241).
17956 Tue Oct 10 11:45:50 CEST 2006 Paolo Molaro <lupus@ximian.com>
17958 * debug-mono-symfile.c: properly check fopen () result (found by
17961 Tue Oct 10 11:30:52 CEST 2006 Paolo Molaro <lupus@ximian.com>
17963 * reflection.c: make error message clearer and fixed two
17964 issuelets found by Coverity.
17966 2006-10-10 Zoltan Varga <vargaz@gmail.com>
17968 * object-internals.h: Remove duplicate definition of mono_method_get_signature_full ().
17970 Mon Oct 9 19:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
17972 * object-internals.h, gc-internal.h, profiler-private.h:
17973 mark internal functions.
17975 Mon Oct 9 19:28:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
17977 * reflection.c: put data in the text section.
17978 * icall.c: recognize more types in type_from_typename ().
17979 * process.c, marshal.c: added some GC FIXMEs.
17981 Mon Oct 9 19:27:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
17983 * loader.c: check for NULL before initializing.
17985 2006-10-09 Zoltan Varga <vargaz@gmail.com>
17987 * gc.c (finalizer_thread): Use a non-alertable wait here.
17989 * class.c loader.c metadata.c: Revert the mono_metadata_decode_table_... changes,
17990 until the correct solution is found.
17992 2006-10-06 Zoltan Varga <vargaz@gmail.com>
17994 * reflection.c (mono_module_get_object): Avoid an assert when operating on
17995 modules with no metadata. Fixes #79596.
17997 * image.c (load_metadata_ptrs): Put back the error message when
17998 the #- heap is encountered since the support is not complete yet.
18000 Fri Oct 6 16:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
18002 * gc.c: do not allow the user to SuppressFinalize () a
18003 delegate because it would leak the trampoline if present.
18005 2006-10-06 Zoltan Varga <vargaz@gmail.com>
18007 * class.c metadata.c row-indexes.h blob.h: Applied patch from Jb. Add support for the
18010 2006-10-05 Zoltan Varga <vargaz@gmail.com>
18012 * loader.c (mono_method_signature): Fix a use of MONO_TABLE_METHOD missed earlier.
18014 * metadata.c (mono_metadata_get_param_attrs): Ditto.
18016 * row-indexes.h: Add definitions for *Ptr tables.
18018 * metadata-internals.h (MonoImage): Add an 'uncompressed_metadata' flag.
18020 * metadata.c (mono_metadata_translate_token_index): New helper function to
18021 translate table indexes used in uncompressed metadata.
18022 (mono_metadata_decode_table_row): Ditto.
18023 (mono_metadata_decode_table_row_col): Ditto.
18025 * metadata.c: Add table schema for *Ptr tables.
18027 * class.c loader.c: Use the new helper function to access the affected metadata
18030 * image.c (load_metadata_ptrs): Allow assemblies with uncompressed metadata. Fixes
18033 2006-10-04 Zoltan Varga <vargaz@gmail.com>
18035 * marshal.c (emit_object_to_ptr_conv): Avoid using short branches around IL
18036 sequences which can be unbounded in size. Fixes #79583.
18038 2006-10-02 Zoltan Varga <vargaz@gmail.com>
18040 * object.c (mono_runtime_class_init): Handle a corner case in handling failure of
18041 static initialization.
18043 * domain-internals.h (MonoDomain): Add a 'type_init_exception_hash' field.
18045 * class-internals.h (MonoVTable): Add an 'init_failed' flag.
18047 * domain.c (mono_domain_free): Free up type_init_exception_hash.
18049 * object.c (mono_runtime_class_init): Implement correct semantics when a static
18050 ctor fails, i.e. throw the same exception on subsequent accesses.
18052 2006-09-0 Jonathan Chambers <joncham@gmail.com>
18054 * domain.c, class-internals.h: Added ComInteropProxy class to MonoDefaults.
18055 * marshal.c: Return correct unmanaged size for object when MarshalAs.Struct.
18056 Emit exception rather than crash in case of COM Callable Wrapper (not yet implemented).
18057 Handle marshalling of interfaces and VARIANTs contained in structs.
18059 Code is contributed under MIT/X11 license.
18061 2006-09-30 Zoltan Varga <vargaz@gmail.com>
18063 * marshal.c (emit_marshal_custom): Fix some corner cases. Fixes #79471.
18065 * marshal.c (mono_marshal_load_type_info): Allocate memory from the image
18068 2006-09-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18070 * console-io.c: ignore previous SIGINT handler.
18072 2006-09-27 Zoltan Varga <vargaz@gmail.com>
18074 * metadata.c class.c: Applied patch from Ricardo Fernandez Pascual
18075 (ricardo.fernandez@st.com). Add some new MonoClass and MonoType accessors. Fixes
18076 #79460, #79461, #79485.
18078 * class.c (mono_class_from_name_case): Fix incorrect comments. Fixes #79504.
18080 * marshal.c (mono_marshal_load_type_info): Fix a typo which caused an assert. Fixes
18083 2006-09-26 Zoltan Varga <vargaz@gmail.com>
18085 * marshal.c (mono_marshal_get_delegate_invoke): Tweak the IL a little so better code
18086 could be generated from it.
18088 Mon Sep 25 13:29:53 CEST 2006 Paolo Molaro <lupus@ximian.com>
18090 * rand.c: fix read loop to correctly handle EINTR.
18092 Mon Sep 25 11:33:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18094 * Makefile.am, icall-def.h, icall.c, verify.c: changed the way
18095 internal calls are defined to keep methods closer to the declaring
18096 type and allow a significant reduction in runtime relocations and
18099 2006-09-21 Gert Driesen <drieseng@users.sourceforge.net>
18101 * appdomain.c: Pass NULL to mono_get_exception_file_not_found2 as
18102 exception message to have FileNotFoundException use the default
18103 assembly load error message. Fixes bug #79426.
18104 * exception.c: Support NULL msg in mono_get_exception_file_not_found2.
18106 2006-09-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18108 * threadpool.c: (start_thread_or_queue) use the root domain when
18109 creating the thread instead of the async object one.
18111 Thu Sep 21 19:30:04 CEST 2006 Paolo Molaro <lupus@ximian.com>
18113 * class.c, object.c, class-internals.h, reflection.c:
18114 for arrays, store element_size inside MonoClass (speedup
18115 for array object creation).
18117 Thu Sep 21 17:06:43 CEST 2006 Paolo Molaro <lupus@ximian.com>
18119 * icall.c: fixed CodeBase to use the file name and not the module
18122 Thu Sep 21 12:09:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18124 * mono-debug.c, mono-debug.h: export find_method as
18125 mono_debug_find_method ().
18127 Wed Sep 20 19:59:06 CEST 2006 Paolo Molaro <lupus@ximian.com>
18129 * debug-helpers.c, class-internals.h: added a few functions useful
18130 when debugging under gdb.
18132 2006-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18134 * console-io.[ch]: trigger the ConsoleCancelEvent and retrieve
18135 characters that need special handling.
18137 Tue Sep 19 18:57:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
18139 * mono-config.c: make the os/cpu specification more flexible,
18140 allowing lists and negation.
18142 2006-09-18 Jonathan Chambers <joncham@gmail.com>
18144 * marshal.c: COM Interop fixes. Handle case where method->klass.
18145 is interface. Handle BSTR/MonoString when null. Use CDECL as
18146 calling convention on non-windows platforms. This is for
18147 compatibility with XPCOM and MainWin COM.
18149 Code is contributed under MIT/X11 license.
18152 2006-09-18 Zoltan Varga <vargaz@gmail.com>
18154 * marshal.c (mono_marshal_load_type_info): Handle concurrent and recursive calls
18155 correctly. Fixes #79217.
18157 * class-internals.h (MonoClass): Remove unused marshal_info_init_pending field.
18159 Mon Sep 18 16:59:54 CEST 2006 Paolo Molaro <lupus@ximian.com>
18161 * mono-config.c: allow both an os and cpu attribute for dllmap
18162 and dllentry elemnets to enable a single config file to be used
18163 for multiple architectures.
18165 2006-09-18 Gert Driesen <drieseng@users.sourceforge.net>
18167 * loader.c: MonoLoaderError was cleared too soon on load failure.
18170 Mon Sep 18 15:37:13 CEST 2006 Paolo Molaro <lupus@ximian.com>
18172 * icall.c: use the defining class vtable when accessing a
18173 static field, not a pobblibly derived class.
18175 2006-09-17 Zoltan Varga <vargaz@gmail.com>
18177 * icall.c string-icalls.c: Remove references to unicode.h.
18179 * unicode.h unicode.c Makefile.am: Remove these unused source files.
18181 * NOTES: Moved to ../../docs and renamed to thread-safety.txt.
18183 * marshal.c (mono_marshal_emit_native_wrapper): Add an 'image' argument,
18184 indicating the image where custom marshaller types should be looked up.
18185 (mono_ftnptr_to_delegate): Use the image of the delegate type to look up
18186 custom marshallers, instead of corlib. Fixes #79425.
18188 2006-09-14 Zoltan Varga <vargaz@gmail.com>
18190 * marshal.c (emit_marshal_object): Fix marshalling of blittable classes and null.
18192 2006-09-14 Jonathan Chambers <joncham@gmail.com>
18194 * environment.c (ves_icall_System_Environment_get_ProcessorCount):
18195 Implement Environment.ProcessorCount.
18197 * environment.h (ves_icall_System_Environment_get_ProcessorCount):
18198 Implement Environment.ProcessorCount.
18201 Add Environment.ProcessorCount icall.
18203 Patch by Jason McFall.
18205 2006-09-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18207 * assembly.c: don't append .exe/.dll when the filename already contains
18208 one of those extensions.
18210 2006-09-12 Martin Baulig <martin@ximian.com>
18212 * class.c (mono_bounded_array_class_get): Also add `IList<object>'
18213 to array interfaces.
18215 2006-09-11 Martin Baulig <martin@ximian.com>
18217 * reflection.c (mono_image_build_metadata): Create the
18218 MethodImpl's after emitting all types and methods, so we don't
18219 need another fixup pass for them.
18221 2006-09-11 Zoltan Varga <vargaz@gmail.com>
18223 * class.c (mono_class_from_name_case): Fix regression introduced by the last
18226 Mon Sep 11 12:57:15 CEST 2006 Paolo Molaro <lupus@ximian.com>
18228 * gc-internal.h, appdomain.c, gc.c: force-destroy GC handles on domain
18231 2006-09-10 Zoltan Varga <vargaz@gmail.com>
18233 * object.c (mono_method_return_message_restore): Avoid a crash if one of the out
18234 args is not set. Fixes #78926.
18236 2006-09-08 Zoltan Varga <vargaz@gmail.com>
18238 * class.c (mono_class_init): Init class->no_special_static_fields from the cached info.
18240 * image.c (load_class_names): Move this to class.c, and rename it to
18241 'mono_image_init_name_cache'.
18242 (load_modules): Fix a warning.
18244 * class.c icall.c image.c: Initialize image->name_cache lazily.
18246 * class-internals.h (MonoGetClassFromName): New hook function to find a class based
18247 on its name using information in the AOT file.
18249 * class.c (mono_class_from_name): Use the new hook function.
18251 2006-09-06 Zoltan Varga <vargaz@gmail.com>
18253 * reflection.c (mono_param_get_objects): Handle enum default parameter values
18256 * marshal.c (emit_marshal_object): Implement [In, Out] byval marshalling of classes.
18259 2006-09-06 Martin Baulig <martin@ximian.com>
18261 * icall.c (mono_lookup_internal_call): Small fix.
18263 2006-09-05 Raja R Harinath <rharinath@novell.com>
18265 * debug-mono-symfile.c (mono_debug_open_mono_symbols): Remove
18268 2006-09-04 Sebastien Pouliot <sebastien@ximian.com>
18270 * debug-mono-symfile.c: Fix *some* memory leaks that happens only
18271 when --debug is specified.
18273 2006-09-04 Zoltan Varga <vargaz@gmail.com>
18275 * class.c (setup_generic_array_ifaces): Fix a warning.
18277 2006-09-04 Miguel de Icaza <miguel@novell.com>
18279 * Temporarily remove the patch to assemly.c that checks the
18280 assembly versions as it breaks our gacutil.
18282 2006-09-03 Zoltan Varga <vargaz@gmail.com>
18284 * metadata.c (mono_metadata_parse_mh_full): Fix an invalid free.
18286 * assembly.c (mono_assembly_load_from_full): Avoid loading net 2.0 assemblies into
18289 * marshal.c (mono_string_builder_to_utf8): Fix marshalling of StringBuilders
18290 created using the default ctor. Fixes #79152.
18291 (mono_string_builder_to_utf16): Ditto.
18293 2006-09-01 Martin Baulig <martin@ximian.com>
18295 Fix handling of the generic array interfaces.
18297 * class-internals.h
18298 (MonoDefaults): Removed `generic_array_class' and added
18299 `generic_ilist' class.
18302 (mono_bounded_array_class_get): Add the new generic array interfaces.
18303 (setup_generic_array_ifaces): New static method; create vtable
18304 entries for each method in the generic array interfaces.
18307 (select_container): Allow "parent-less" generic methods.
18310 (mono_marshal_get_generic_array_helper): New public method.
18313 (ves_icall_System_Array_InternalArray_GetGenericValueImpl):
18314 Renamed into ves_icall_System_Array_GetGenericValueImpl() and
18315 moved the interncall into System.Array.
18317 2006-09-01 Raja R Harinath <rharinath@novell.com>
18319 A few more cases of avoiding work on types with ->byref set.
18320 Has the real fix for #79238
18321 * icall.c (is_generic_parameter): New helper.
18322 (ves_icall_Type_GetGenericParameterPosition): Use it.
18323 (ves_icall_Type_GetGenericParameterAttributes): Likewise.
18324 (ves_icall_MonoType_get_IsGenericParameter): Likewise.
18325 (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
18326 (ves_icall_Type_GetGenericTypeDefinition_impl): Return NULL on
18328 (ves_icall_Type_get_IsGenericTypeDefinition): Return FALSE on
18330 (ves_icall_Type_get_IsGenericInstance): Likewise.
18331 (ves_icall_Type_get_IsGenericType): Likewise.
18333 2006-09-01 Zoltan Varga <vargaz@gmail.com>
18335 * class.c (mono_class_setup_vtable_general): Share identical vtables with the parent
18338 * mempool.h (mono_mempool_get_allocated): New helper function.
18340 * object.c (mono_class_create_runtime_vtable): Fix problem introduced by last
18343 * mempool.c: Fix warnings and the calculation of stats.
18345 * object.c (mono_class_create_runtime_vtable): Fix the AOT optimization.
18347 * class.c (mono_class_setup_vtable): Update generic_vtable_count stat.
18349 * loader.c (mono_get_method_from_token): Update method_count stat.
18351 * class-internals.h (MonoStats): Add some stats.
18353 2006-08-31 Robert Jordan <robertj@gmx.net>
18355 * icall.c: Replace the PtrToStringAuto, StringToHGlobalAuto icalls
18356 with managed variants.
18357 All code is contributed under the MIT/X11 license.
18359 2006-08-31 Zoltan Varga <vargaz@gmail.com>
18361 * reflection.c (reflection_methodbuilder_to_mono_method): Set
18362 method->skip_visibility based up the skipVisibility parameter of DynamicMethods.
18364 * class-internals.h (MonoMethod): Add a 'skip_visibility' field.
18366 * marshal.c (mono_marshal_load_type_info): Revert the last change as it can't cope
18367 with cycles in classes.
18369 * icall.c (ves_icall_MonoType_get_Name): Add a '&' for byref types. Fixes #79110.
18371 * marshal.c (emit_marshal_array): Avoid crash when a parameter with type array is
18372 missing a [MarshalAs] directive. Fixes #79203.
18374 * marshal.c (mono_marshal_load_type_info): Fix a race in initializing
18375 klass->marshal_info. Fixes #79217.
18377 2006-08-30 Martin Baulig <martin@ximian.com>
18379 Committing a patch from Joachim Ante <joe@otee.dk>:
18380 Add support for binary data symbol stores.
18382 * debug-mono-symfile.c
18383 (mono_debug_open_mono_symbol_file): Renamed into
18384 mono_debug_open_mono_symbols() and added `raw_contents' and `size'
18388 (mono_debug_open_image): Added `raw_contents' and `size' args.
18389 (mono_debug_init_2_memory): New public function.
18391 Fri Aug 25 18:25:23 CEST 2006 Paolo Molaro <lupus@ximian.com>
18393 * icall.c: handle TypedReference in GetTypeCode (bug #79150).
18395 2006-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18397 * appdomain.c: implement support for ShadowCopyFiles.
18399 2006-08-22 Sebastien Pouliot <sebastien@ximian.com>
18401 * string-icalls.c: Add shortcut in ves_icall_System_String_ctor_charp
18402 when value is NULL (and should remove CID #51).
18404 2006-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18406 * image.c: moved 2 functions to ../utils.
18408 Tue Aug 22 15:53:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
18410 * gc.c: cope with the target object of a GC handle being NULL
18413 Tue Aug 22 11:10:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
18415 * class.c: recursively check parent's explicit implementations
18416 of interface methods (fixes bug #79125).
18418 2006-08-19 Miguel de Icaza <miguel@novell.com>
18420 * filewatcher.c: Avoid warnings when building, do not redefine
18421 constants that are defined.
18425 2006-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18427 * image.c: don't fail when the link points to an absolute path.
18429 2006-08-18 Sebastien Pouliot <sebastien@ximian.com>
18431 * decimal.c: Remove dead code (unrequired check) in mono_decimalIncr.
18434 2006-08-17 Miguel de Icaza <miguel@novell.com>
18436 * image.c (full_path): A new method used to obtain the actual path
18437 of an assembly even in the presence of symbolic links.
18439 This is necessary for the case where we are running a binary that
18440 has been GACed, but we are using the "published" path name
18441 ($prefix/mono/1.0/blah.exe) which happens to point to the real
18444 This was the source of the failure for the `xsp' command with the
18445 recent AppDomain changes, as far as the runtime was concerned,
18446 there were two different assemblies: $prefix/mono/1.0/blah.exe and
18447 $prefix/mono/gac/blah/version/blah.exe.
18449 (do_mono_image_open): use full path
18451 2006-08-17 Zoltan Varga <vargaz@gmail.com>
18453 * object.c (mono_class_create_runtime_vtable): Add a FIXME.
18455 2006-08-17 Sebastien Pouliot <sebastien@ximian.com>
18457 * marshal.c: Fix mono_marshal_check_domain_image if an invalid
18458 domain_id is supplied. Fix CID #241 and corlib's unit tests.
18460 2006-08-17 Zoltan Varga <vargaz@gmail.com>
18462 * class.c (mono_class_layout_fields): Set min_align to a bigger value for
18463 small structures. Fixes #78990.
18465 2006-08-17 Zoltan Varga <vargaz@gmail.com>
18467 * marshal.c (mono_marshal_get_xappdomain_invoke): Use the new helper functions here.
18469 * appdomain.c (ves_icall_System_AppDomain_createDomain): Fix a warning.
18471 2006-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18474 * marshal.c: don't load all the assemblies from a domain into newly
18475 created ones. The new domains might have different rules and load
18476 assemblies from different locations. Fixes bug #76757.
18478 Patch by Lluis. Conflicts resolved by Brian Crowell.
18480 2006-08-16 Alp Toker <alp@atoker.com>
18482 * socket-io.c: First half of the fix for #79084.
18483 Set sa_size to the length of the content, not that of the struct.
18484 Don't add NULL suffix to the content, this should be done in
18485 managed code if needed.
18487 2006-08-14 Raja R Harinath <rharinath@novell.com>
18490 * metadata.c (do_mono_metadata_parse_generic_class): Don't SEGV if
18491 mono_metadata_parse_type returns NULL.
18493 2006-08-13 Atsushi Enomoto <atsushi@ximian.com>
18495 * normalization-tables.h : new file for string normalization data.
18496 * locales.c, locales.h, icall.c :
18497 added load_normalization_resource() for string normalization,
18499 * Makefile.am : added normalization-tables.h to the sources.
18501 2006-08-13 Zoltan Varga <vargaz@gmail.com>
18503 * marshal.c: Add more helper functions to reduce code duplication and use them
18506 2006-08-12 Zoltan Varga <vargaz@gmail.com>
18508 * marshal.c: Fix non-x86 stdcall warnings.
18510 * marshal.c marshal.h: Add some helper functions to emit/patch branches, and use
18513 2006-08-11 Jonathan Chambers <joncham@gmail.com>
18515 * class.c (mono_bounded_array_class_get): Fix if statement that caused incorrect
18516 type check on multi-dimensional arrays. Fixes #79000.
18518 2006-08-10 Jonathan Chambers <joncham@gmail.com>
18520 * class.c (mono_class_setup_parent): setup is_com_object during class initialization.
18521 * object.c (mono_remote_class_vtable/mono_object_new_specific): Changed checks
18522 to use is_com_object instead of MONO_CLASS_IS_IMPORT() macro.
18523 * class-internals.h: add is_com_object to class structure.
18524 * marshal.c: Fixed marshalling for IDispatch and IUnknown, added
18525 null checks to COM object marshalling. Fix .ctor call on RCW.
18526 * icall.c: Added icall implementation for MonoType.IsCOMObjectImpl.
18528 All code is contributed under the MIT/X11 license.
18530 2006-08-09 Dick Porter <dick@ximian.com>
18532 * monitor.c (mono_monitor_cleanup): mono_monitor_cleanup() is
18533 racing mono_monitor_allocator_lock() somewhere, so don't delete
18534 the critical section for now. Found by running and exiting
18537 2006-08-10 Zoltan Varga <vargaz@gmail.com>
18539 * marshal.c (cominterop_get_native_wrapper): Fix a warning.
18540 (ves_icall_System_ComObject_FindInterface): Ditto.
18541 (ves_icall_System_ComObject_CacheInterface): Ditto.
18543 * metadata.c (do_mono_metadata_type_equal): Applied patch from Roberto Costa
18544 (roberto.costa@st.com). Add support for MONO_TYPE_FNPTR.
18546 2006-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18548 * threadpool.c: treat pipes from process asynchronous reads as sockets
18549 when reading from them, so we get select/poll or epoll to wait for
18552 2006-08-07 Sebastien Pouliot <sebatien@ximian.com>
18554 * loader.c: Fix a typo (CID #233) in the null check.
18556 2006-08-07 Zoltan Varga <vargaz@gmail.com>
18558 * appdomain.c (mono_domain_unload): Close the thread handle of the unload thread.
18559 Hopefully fixes #78949.
18561 * metadata.c (mono_metadata_parse_method_signature_full): Applied patch from
18562 Roberto Costa (roberto.costa@st.com). Handle vararg signatures without SENTINEL
18563 bytes. Fixes #78972.
18565 2006-08-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18567 * filewatcher.c: we need to set errno here.
18569 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18571 * filewatcher.c: let Win32Exception get the error value.
18573 2006-08-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18575 * filewatcher.c: translate errno into win32 errors for Win32Exception
18576 to know what happened.
18578 2006-08-01 Zoltan Varga <vargaz@gmail.com>
18580 * threadpool.c: Fix more warnings.
18582 * assembly.c (search_loaded): Fix warnings.
18584 * threadpool.c (mono_thread_pool_finish): Fix warnings.
18585 (mono_async_invoke): Ditto.
18587 2006-07-28 Jonathan Chambers <joncham@gmail.com>
18589 * object.c (mono_remote_class_vtable): Need to create proxy vtable
18590 entries for __ComObject type in addition to ComImport types.
18591 * marshal.c: Added support for marshalling COM RCWs. Fixed warning
18594 All code is contributed under the MIT/X11 license.
18596 Fri Jul 28 19:04:34 CEST 2006 Paolo Molaro <lupus@ximian.com>
18598 * image.c: avoid tentative loading of modulerefs that contain
18599 no metadata (P/Invoke library names).
18601 2006-07-28 Dick Porter <dick@ximian.com>
18603 * loader.c (mono_loader_cleanup): mono_loader_cleanup() is racing
18604 mono_loader_lock() somewhere, so don't delete the critical section
18605 for now. Found by running and exiting monodevelop.
18607 2006-07-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18609 * filewatcher.c: define the inotify syscalls when we're building on
18610 linux and have sys/syscall.h. The build system might not have support
18611 for inotify but the target system might have it.
18613 2006-07-26 Miguel de Icaza <miguel@novell.com>
18615 * domain.c: Documentation updates.
18617 * loader.c (mono_free_method): Do not release the method
18618 information if we are being profiled, as profilers will use this
18619 information at shut down to present some data to the user.
18621 This is needed so that the profiler does not crash, as the
18622 profiler tends to keep MonoMethods around, and they might become
18623 invalid if we free these.
18625 (mono_get_method_constrained): Return the original CIL stream
18626 method as well, so verification can be performed against it.
18628 2006-07-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18630 * filewatcher.[ch]: support for inotify file system watcher.
18631 * icall.c: add new internal calls for the inotify file system watcher.
18633 2006-07-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18635 * threadpool.c: Windows also misbehaves on async. connects. Fixes bug
18638 2006-07-20 Dick Porter <dick@ximian.com>
18640 * file-io.c (ves_icall_System_IO_MonoIO_Seek): Fix signed/unsigned
18643 2006-07-20 Dick Porter <dick@ximian.com>
18645 * threads.c (start_wrapper): Do the thread cleanup while we still
18646 hold a reference to its object. Fixes bug 78123.
18648 2006-07-18 Kornél Pál <kornelpal@gmail.com>
18650 * class-internals.h: Added MONO_WRAPPER_MANAGED_TO_MANAGED wrapper type.
18651 * debug-helpers.c: Map MONO_WRAPPER_MANAGED_TO_MANAGED to
18652 "managed-to-managed".
18653 * icall.c: Redirect string constructors that take sbyte* to
18654 ves_icall_System_String_ctor_RedirectToCreateString.
18655 * marshal.c: Redirect ves_icall_System_String_ctor_RedirectToCreateString
18656 to CreateString () methods with matching signature.
18657 * reflection.c: Use original security informations for
18658 MONO_WRAPPER_MANAGED_TO_MANAGED.
18659 * security-manager.c: Use original security informations for
18660 MONO_WRAPPER_MANAGED_TO_MANAGED.
18661 * string-icalls.c: Added ves_icall_System_String_ctor_RedirectToCreateString
18662 that is a placeholder and only its address should be used.
18663 * string-icalls.h: Added ves_icall_System_String_ctor_RedirectToCreateString
18664 that is a placeholder and only its address should be used.
18666 2006-07-15 Jonathan Chambers <joncham@gmail.com>
18668 Begin implementing COM Interop.
18669 * appdomain.c: Increment corlib version.
18670 * class.c: Set ComImport classes' parent to __ComObject.
18671 * loader.c: Mark cominterop methods as such.
18672 * domain.c: Add __ComObject class to MonoDefaults structure.
18673 * image.c: Add 2 hashtables to the image for COM Interop related methods
18674 * metadata.c: Added mono_metadata_type_dup_mp to duplicate a type
18675 using the mempool allocator
18677 * metadata-internals.h: Add 2 hashtables to the image for COM Interop related methods
18678 * metadata.h: Added cominterop field to _MonoMethodSignature struct and
18679 declaration for mono_metadata_type_dup_mp.
18681 * debug-helpers.c: Added strings for two additional wrapper types
18682 * object.c: Create proxy objects for ComImport classes
18683 * class-internals.h: Define 2 new method wrapper types, COM Interop remoting target,
18684 and added __ComObject class to MonoDefaults structure.
18686 * object-internals.h: Finish MonoRealProxy definition, and add definition of
18687 MonoComInteropProxy and MonoComObject.
18689 * marshal.c: Added support for COM Interop
18690 (signature_cominterop): Converts managed signature to corresponding
18691 unmanaged COM signature.
18692 (cominterop_get_function_pointer): gets unmanaged function pointer via
18694 (cominterop_get_com_slot_for_method): returns vtable slot in COM interface of method
18695 (cominterop_get_method_interface): returns interface type that method is defined on
18696 (mono_mb_emit_cominterop_call): emits native call to function pointer
18698 (cominterop_get_native_wrapper_adjusted): actual wrapper around unmanaged COM call
18699 that matches signature of unmanaged function.
18700 (cominterop_get_native_wrapper): wrapper around adjusted method call.
18701 (cominterop_get_invoke): forwards call from proxy to __ComObject
18702 (ves_icall_System_Runtime_InteropServices_Marshal_AddRef): Implements Marshal.AddRef
18703 (ves_icall_System_Runtime_InteropServices_Marshal_QueryInterface): Implements Marshal.QueryInterface
18704 (ves_icall_System_Runtime_InteropServices_Marshal_Release): Implements Marshal.Release
18706 * marshal.h: Added Marshal icall declarations.
18707 * icall.c: Added __ComObject icalls. Need to store interfaces in unmanaged code
18708 so we can access them in finalizer
18710 2006-07-14 Dick Porter <dick@ximian.com>
18712 * object.c (mono_type_initialization_cleanup): Fix a race
18713 condition by temporarily commenting out the critical section
18716 2006-07-14 Zoltan Varga <vargaz@gmail.com>
18718 * reflection.c (create_custom_attr): Fix some warnings.
18719 (create_custom_attr_data): Ditto.
18720 (typebuilder_setup_properties): Save custom attrs for properties in dynamic
18721 types. Fixes #78855.
18723 2006-07-11 Zoltan Varga <vargaz@gmail.com>
18725 * class.c (mono_type_get_name_recurse): Fix the name of 1 dimensional non-szarrays.
18727 * reflection.c (mono_custom_attrs_free): Fix freeing of dynamic cattr info.
18729 2006-07-08 Zoltan Varga <vargaz@gmail.com>
18731 * reflection.c (resolve_object): Add support for DynamicMethod.
18733 * domain.c appdomain.c threads.c monitor.c object.c gc.c: Applied patch from
18734 Joachim Ante (joe@otee.dk). Fix some shutdown leaks.
18736 2006-07-06 Sebastien Pouliot <sebastien@ximian.com>
18738 * process.c: In ves_icall_System_Diagnostics_Process_GetModules_internal
18739 don't leak GPtrArray's pdata has we have no use (nor free) for it.
18741 2006-07-01 Zoltan Varga <vargaz@gmail.com>
18743 * marshal.c (mono_marshal_get_runtime_invoke): Fix passing of generic valuetypes.
18746 2006-06-30 Raja R Harinath <rharinath@novell.com>
18748 * icall.c (ves_icall_MonoMethod_get_base_definition): Simplify
18749 slightly: remove a shadow local variable.
18751 2006-06-29 Raja R Harinath <rharinath@novell.com>
18753 * icall.c (ves_icall_MonoMethod_get_base_definition): Return the
18754 definition that introduces the virtual function slot.
18755 Also fix Coverity #105.
18757 2006-06-29 Zoltan Varga <vargaz@gmail.com>
18759 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Fix support
18760 for dynamic assemblies. Fixes #78724.
18762 2006-06-28 Zoltan Varga <vargaz@gmail.com>
18764 * marshal.c (mono_string_to_byvalwstr): Fix this completely broken function.
18767 2006-06-21 Martin Baulig <martin@ximian.com>
18770 (method_encode_clauses): Don't assert on `ex_info->handlers' here;
18773 2006-06-21 Zoltan Varga <vargaz@gmail.com>
18775 * object.h (mono_array_setref): Cast value to (MonoObject*) to fix warnings.
18777 2006-06-20 Raja R Harinath <rharinath@novell.com>
18779 Make 'mono_class_get_full' only inflate TYPESPECs, not TYPEDEFs
18781 * class.c (mono_class_create_from_typespec): Add 'context' argument.
18782 Inflate result if necessary.
18783 (mono_class_get_full): Remove old version. Rename from
18784 'mono_class_get' and add 'context' argument. Pass it to
18785 ..._create_from_typespec.
18786 (mono_class_get): New. Simple wrapper to mono_class_get_full.
18787 (mono_ldtoken): Revert change below.
18789 2006-06-20 Martin Baulig <martin@ximian.com>
18791 * class.c (mono_ldtoken): Don't pass the generic context to
18792 mono_class_get_full() for MONO_TOKEN_TYPE_DEF/REF. Fixes #78053.
18794 2006-06-15 Zoltan Varga <vargaz@gmail.com>
18796 * marshal.c (mono_ftnptr_to_delegate): Avoid allocating signature from mempool
18797 and later freeing it. Fixes #78638.
18799 2006-06-15 Miguel de Icaza <miguel@novell.com>
18801 * icall.c (mono_class_get_throw): Revert over-zealous error
18802 throwing, the caller for mono_class_get_throw will cope with
18803 errors when classes are not properly initialized already.
18805 The code still copes with loader exceptions though.
18807 Fixes the regression in reftype1 and reftype3 from the CAS tests.
18809 2006-06-14 Miguel de Icaza <miguel@novell.com>
18811 Fixes the `make run1' version of RuntimeAbort (to be commited,
18812 source is in Bugzilla).
18814 * metadata.c (mono_metadata_interfaces_from_typedef_full): Return
18815 FALSE on class loading failure instead of returning true.
18817 * class.c (mono_class_create_from_typedef): It is possible for
18818 mono_metadata_interfaces_from_typedef_full to fail if a class is
18819 not found, cope with this.
18822 2006-06-14 Dick Porter <dick@ximian.com>
18825 * process.c: Fix a bunch of signed/unsigned warnings from gcc
18828 2006-06-12 Atsushi Enomoto <atsushi@ximian.com>
18830 * culture-info-table.h : oops, forgot to make it nsync with r61548.
18832 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
18834 * icall.c: Another fix for building mono in Visual Studio.
18836 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
18838 * marshal.c icall.c: Minor fixes for building mono in Visual Studio.
18840 2006-06-09 Martin Baulig <martin@ximian.com>
18842 * debug-mono-symfile.c: Put this back and really fix it this
18843 time. Sorry for all the trouble.
18845 2006-06-08 Zoltan Varga <vargaz@gmail.com>
18847 * icall.c (mono_class_get_throw): Fix a warning.
18848 (ves_icall_System_Reflection_Assembly_GetTypes): Allways throw
18849 ReflectionTypeLoadException if needed. Fixes #78606.
18851 * class.c (mono_class_setup_vtable_general): Handle loader errors a bit better.
18852 (mono_class_init): Ditto.
18854 * loader.c (mono_loader_set_error_assembly_load): Display a separate warning for
18855 ref_only exceptions.
18856 (mono_loader_clear_error): Make this work even if there is no error.
18858 2006-06-08 Jonathan Chambers <jonathan.chambers@ansys.com>
18860 * object-internals.h marshal.c marshal.h icall.c: Implement method
18861 Marshal.GetComSlotForMethodInfo using internal call.
18863 2006-06-07 Zoltan Varga <vargaz@gmail.com>
18865 * class-internals.h: Add a new kind of loader error LOADER_ERROR_ASSEMBLY plus
18866 a function for signalling it.
18868 * class.c (mono_class_from_typeref): Use the new kind of loader error when
18869 a referenced assembly is not found.
18871 * loader.c (mono_loader_error_prepare_exception): Add support for
18872 LOADER_ERROR_ASSEMBLY. Fix formatting.
18874 2006-06-05 Jonathan Chambers <jonathan.chambers@ansys.com>
18876 * domain.c appdomain.c class-internals.h marshal.c: Add support
18877 for VARIANT marshalling on windows and increment corlib version
18878 since Variant struct was added.
18880 2006-06-03 Miguel de Icaza <miguel@novell.com>
18882 * debug-mono-symfile.c: Revert Martin's previous patch which broke
18883 stack trace line information:
18885 (Martin) (mono_debug_symfile_lookup_location): Fix the algorithm:
18886 (Martin) when looking up B which is between A and C, return A not C.
18890 Thanks to Alexander Olk for tracking this down.
18892 2006-06-02 Zoltan Varga <vargaz@gmail.com>
18894 * marshal.c (mono_marshal_set_last_error_windows): Fix build.
18896 * marshal.c (mono_marshal_emit_native_wrapper): Call GetLastError () early and without a wrapper to
18897 avoid clobbering its value.
18898 (mono_string_to_lpstr): Fix a warning on windows.
18900 2006-05-31 Zoltan Varga <vargaz@gmail.com>
18902 * class-internals.h (MonoClass): Removed obsolete 'dummy' flag.
18904 * reflection.c loader.c: Removed references to 'dummy' flag.
18906 * loader.c (mono_loader_error_prepare_exception): Fix a warning.
18908 * threadpool.c: Make ASyncCall a copy of the managed MonoAsyncCall class so
18909 it gets GC tracking.
18911 * object-internals.h (MonoAsyncResult): Add an 'object_data' field which has
18914 * object.c (mono_async_result_new): Add an additional parameter 'object_data'.
18916 * marshal.c threadpool.c: Update callers of mono_async_result_new.
18918 * appdomain.c: Bump corlib version.
18920 2006-05-30 Zoltan Varga <vargaz@gmail.com>
18922 * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18923 CEE_STIND_REF when working with object references.
18925 2006-05-31 Zoltan Varga <vargaz@gmail.com>
18927 * class.c (mono_class_setup_fields): Call mono_class_init () for class->parent.
18930 2006-05-30 Miguel de Icaza <miguel@novell.com>
18932 * loader.c (method_from_memberref): Fix argument value for
18933 mono_loader_set_error_method_load (I was passing the MonoClass
18934 instead of the class name char *).
18936 2006-05-30 Zoltan Varga <vargaz@gmail.com>
18938 * marshal.c: Use mono_mb_emit_stloc in more places. Use CEE_LDIND_REF and
18939 CEE_STIND_REF when working with object references.
18941 2006-05-30 Martin Baulig <martin@ximian.com>
18943 * mono-debug.c (mono_debug_print_stack_frame): Reverted the
18944 mono_method_full_name() change and replace the ':' with a '.'
18947 2006-05-30 Martin Baulig <martin@ximian.com>
18949 * debug-mono-symfile.c
18950 (mono_debug_symfile_lookup_location): Fix the algorithm:
18951 when looking up B which is between A and C, return A not C.
18953 2006-05-29 Martin Baulig <martin@ximian.com>
18956 (MonoDebugMethodInfo): Make the typedef public.
18957 (MonoDebugSourceLocation): New public struct.
18960 (mono_debug_source_location_from_address): Removed.
18961 (mono_debug_source_location_from_il_offset): Removed.
18962 (mono_debug_il_offset_from_address): Removed.
18963 (mono_debug_address_from_il_offset): Removed.
18964 (mono_debug_lookup_method): New public function.
18965 (mono_debug_lookup_source_location): New public function; replaces
18966 the old mono_debug_source_location_from_*() functions; see the
18967 inline documentation.
18968 (mono_debug_free_source_location): New public function.
18969 (mono_debug_print_stack_frame): New public function; see the
18970 inline documentation.
18972 * debug-mono-symfile.c
18973 (mono_debug_find_source_location): Renamed into
18974 mono_debug_symfile_lookup_location(); only take a
18975 `MonoDebugMethodInfo *' and an `offset' argument; added inline
18977 (mono_debug_find_method): Renamed into
18978 mono_debug_symfile_lookup_method().
18980 2006-05-27 Zoltan Varga <vargaz@gmail.com>
18982 * assembly.c (mono_assembly_open_full): Dont overwrite the status
18983 returned by mono_image_open_full ().
18985 * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Convert
18986 MONO_IMAGE_IMAGE_INVALID into a BadImageFormatException. Fixes
18989 * object.c (compute_class_bitmap): Use class->class_size for static fields. Fixes
18992 2006-05-27 Miguel de Icaza <miguel@novell.com>
18994 * class.c (mono_class_from_typeref): handle missing images
18995 earlier, deals with bug #78418. Refactor code;
18997 Fix a warning introduced in my previous commit (some stale code
18998 from before I revisited my patch).
19000 * class.c (mono_class_create_from_typedef): On failure, remove the
19001 class from the MonoImage->class_cache as the class is not
19002 initialized; Fixes the leak pointed out by Paolo.
19004 2006-05-25 Dick Porter <dick@ximian.com>
19006 * threads.c (mono_thread_cleanup): Build fix. Comment out the
19007 DeleteCriticalSections until I figure out which one may still be
19008 sometimes locked when mono_thread_cleanup is called.
19010 2006-05-24 Dick Porter <dick@ximian.com>
19012 * threads.c (mono_thread_cleanup): Move the threading cleanup out
19013 of mono_thread_manage and back into its own function, so it can be
19014 called after the finalizer thread has finished.
19016 * appdomain.c (mono_runtime_cleanup): Call mono_thread_cleanup
19018 2006-05-24 Zoltan Varga <vargaz@gmail.com>
19020 * assembly.c (mono_assembly_open_full): Fix typo introduced by a previous change.
19023 * marshal.c (emit_ptr_to_object_conv): Implement marshalling of byval arrays
19024 with non-blittable elements.
19025 (emit_object_to_ptr_conv): Ditto. Fixes #78492.
19027 2006-05-24 Martin Baulig <martin@ximian.com>
19029 * mono-debug-debugger.h (MonoDebuggerEvent): Added
19030 `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE'.
19032 * mono-debug-debugger.c (mono_debugger_cleanup): Send a
19033 `MONO_DEBUGGER_EVENT_FINALIZE_MANAGED_CODE' and then set
19034 `mono_debugger_event_handler' to NULL.
19036 2006-05-24 Martin Baulig <martin@ximian.com>
19038 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 57.
19040 2006-05-24 Martin Baulig <martin@ximian.com>
19042 * mono-debug-debugger.h
19043 (mono_debugger_create_notification_function): Added
19044 `MonoCodeManager *' argument.
19046 Tue May 23 16:05:47 CEST 2006 Paolo Molaro <lupus@ximian.com>
19048 * boehm-gc.c, null-gc.c: fix compilation on 64 bit systems.
19050 Tue May 23 13:44:11 CEST 2006 Paolo Molaro <lupus@ximian.com>
19052 * Makefile.am, gc-internal.h, reflection.c: updates for the new GC.
19053 * sgen.-gc.c, sgen-gc.h: simple generational compacting GC
19056 Tue May 23 13:40:30 CEST 2006 Paolo Molaro <lupus@ximian.com>
19058 * icall.c: precise GC support: objects can't be stored in unmanaged
19059 memory anymore, even if they are kept alive by other references: since
19060 they can move the GC needs to be able to always find them.
19062 Tue May 23 12:57:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
19064 * object.c: precise GC support for static fields. Support
19065 for moving GCs: write barriers and pinned allocation for interned
19068 Tue May 23 12:41:44 CEST 2006 Paolo Molaro <lupus@ximian.com>
19070 * domain.c, domain-internals.h: precise GC support for the MonoDomain
19073 Tue May 23 12:38:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
19075 * class.c, gc.c: sgen and precise GC updates.
19077 Tue May 23 12:33:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
19079 * marshal.h, marshal.c: added write barrier wrapper and precise type
19082 Tue May 23 12:31:22 CEST 2006 Paolo Molaro <lupus@ximian.com>
19084 * object.h, null-gc.c, boehm-gc.c: more write barrier functions and
19087 Tue May 23 12:27:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
19089 * reflection.c: precise and sgen GC updates.
19091 Tue May 23 12:21:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
19093 * debug-helpers.c, class-internals.h: added write barrier wrapper type.
19095 2006-05-22 Zoltan Varga <vargaz@gmail.com>
19097 * threads.c (start_wrapper): Fix a missed guint32 tid declaration.
19099 2006-05-20 Zoltan Varga <vargaz@gmail.com>
19101 * reflection.c (encode_cattr_value): Fix yet another bug in the encoding of
19102 MONO_TYPE_OBJECT. Fixes #78462.
19104 2006-05-18 Zoltan Varga <vargaz@gmail.com>
19106 * marshal.c (emit_marshal_vtype): Add support for UnmanagedType.LPStruct
19107 and blittable types.
19109 2006-05-17 Miguel de Icaza <miguel@novell.com>
19111 * class.c (mono_class_get_exception_for_failure): Implement parts
19112 of a TODO: if the loader error is set (instead of the class
19113 error), we return a Loader exception that can be properly thrown
19116 This was exposed by some Winforms 2.0 code that I tried to run
19117 (Atsushi pointed me to it).
19119 2006-05-17 Zoltan Varga <vargaz@gmail.com>
19121 * marshal.c (mono_marshal_emit_native_wrapper): Make the marshalling code more
19122 uniform by moving stuff from this function to the proper emit_marshal_XXX functions.
19124 * marshal.c (emit_marshal_vtype): Add limited support for
19125 UnmanagedType.LPStruct. Fixes #78427.
19127 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure):
19128 Applied a patch from kangaroo to fix #77523.
19130 2006-05-17 Martin Baulig <martin@ximian.com>
19133 (debugger_thread_vtable): Moved into ../mini/debug-debugger.c.
19134 (debugger_thread_created): Removed.
19135 (debugger_thread_exited): Removed.
19137 2006-05-15 Zoltan Varga <vargaz@gmail.com>
19139 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19141 * object-internals.h (MonoReflectionResource): Sync with managed version.
19143 2006-05-12 Wade Berrier <wberrier@novell.com>
19145 * threads.c: Define G_GSIZE_FORMAT for systems with glib < 2.6
19147 2006-05-12 Zoltan Varga <vargaz@gmail.com>
19149 * class.c (mono_fnptr_class_get): Set class->image to corlib for now, since other
19150 functions try to allocate from the image mempool.
19152 2006-05-12 Dick Porter <dick@ximian.com>
19154 * threads.c (mono_thread_attach): Fix usage of GetCurrentThread().
19156 2006-05-12 Lluis Sanchez <lluis@ximian.com>
19158 * object.c: The FieldGetter and FieldSetter methods require the full
19159 name of the class, not only the name. Fixes bug #78277.
19161 2006-05-11 Miguel de Icaza <miguel@novell.com>
19163 * loader.c (method_from_memberref): Do not pass the NULL klass to
19164 mono_loader_set_error_() methods. Pass the non-NULL value
19167 2006-05-11 Zoltan Varga <vargaz@gmail.com>
19169 * assembly.c (mono_assembly_load_from_full): Fix a bunch of warnings.
19170 (mono_assembly_close): Null out assembly->image->references after freeing it.
19172 * image.c (mono_image_close): Free image->references.
19174 * reflection.c (mono_image_basic_init): Fix a small memory leak.
19176 2006-05-10 Sebastien Pouliot <sebastien@ximian.com>
19178 * marshal.c: In function mono_mb_add_local don't use the mb pointer
19179 before checking if it's NULL (g_assert).
19181 2006-05-10 Martin Baulig <martin@ximian.com>
19183 * metadata.c (mono_type_size): Kill the g_assert() in MONO_TYPE_GENERICINST;
19184 I thought I already killed that two months ago, but now it somehow reappeared.
19186 2006-05-10 Martin Baulig <martin@ximian.com>
19188 * mono-debug.c (mono_debug_add_method): Allow instantiated generic methods.
19190 2006-05-10 Zoltan Varga <vargaz@gmail.com>
19192 * reflection.c: Allocate memory for dynamically created methods in the image
19195 2006-05-10 Sebastien Pouliot <sebastien@ximian.com>
19197 * appdomain.c: In ves_icall_System_AppDomain_[Get|Set]Data functions,
19198 don't use the ad pointer before checking if it's NULL (g_assert).
19200 2006-05-09 Zoltan Varga <vargaz@gmail.com>
19202 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Remove
19203 a redundant (and incorrect) addref. Hopefully fixes sn.exe on windows.
19205 * marshal.c: Allocate all signatures from mempools.
19207 * marshal.c: Allocate some more signatures from mempools.
19209 2006-05-09 Miguel de Icaza <miguel@novell.com>
19211 * object.c (mono_load_remote_field): The code used to provide a
19212 temporary variable for returning results if the user did not
19213 provide a result pointer. But our temporary variable was allocted
19216 Fix calling code to always pass a result area. Coverity ID 103.
19218 2006-05-06 Zoltan Varga <vargaz@gmail.com>
19220 * threads.c (ves_icall_System_Threading_Interlocked_Add_Int): Return the new
19221 value, not the old. Fixes #78312.
19222 (ves_icall_System_Threading_Interlocked_Add_Long): Ditto.
19224 * class.c (mono_bounded_array_class_get): Allocate data from the image mempool.
19225 (mono_ptr_class_get): Ditto. Also change the cache from a global one to a
19228 * assembly.c (mono_assembly_close): Free image->references.
19230 * assembly.c (mono_assembly_names_equal): Fix a warning.
19231 (mono_assemblies_cleanup): Cleanup more global data.
19233 * metadata-internals.h (MonoImage): Add 'ptr_cache'.
19235 * image.c (mono_image_close): Free up the contents of 'array_cache', free up
19236 ptr_cache and image->modules.
19238 * image.c (mono_image_init): Allocate array_cache lazily.
19240 2006-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19242 * assembly.c: use GetCurrentThreadId for the hash, as GetCurrentThread
19243 behavior was changed recently and has bad side effects.
19245 2006-05-05 Zoltan Varga <vargaz@gmail.com>
19247 * assembly.c (mono_assembly_open_full): Add a missing mono_image_close ().
19249 * assembly.c (mono_assembly_close): Remove a debug printf.
19251 * profiler.c (create_profiler): Use mono_aligned_addr_hash.
19253 * metadata-internals.h image.c assembly.c: Change the reference counting scheme
19254 to also allow for temporary references between mono_image_open ()/close ().
19256 * domain.c (get_runtimes_from_exe): Add a FIXME.
19258 2006-05-04 Zoltan Varga <vargaz@gmail.com>
19260 * marshal.c: Fix support for dynamic methods.
19262 * appdomain.c (mono_runtime_cleanup): Call mono_marshal_cleanup ().
19264 * marshal.c (mono_marshal_cleanup): New cleanup function.
19266 * marshal.c: Rewrite the wrapper code to allocate most of its memory from the
19269 * class.c (mono_class_init): Fix leaking class->nested_classes.
19271 * metadata-internals.h (MonoImage): Add a couple of new wrapper caches.
19273 * image.c (mono_image_init): Initialize the new cashes.
19275 * image.c (mono_image_close): Destroy the new cashes.
19277 * marshal.c: Get rid of most of the static caches in favor of per-image caches.
19279 * mempool.c (mono_mempool_strdup): New helper function.
19281 * class-internals.h: Add prototype for mono_loader_unlock ().
19283 * domain.c (mono_jit_info_table_find): Fix a warning.
19284 (mono_debugger_check_runtime_version): Ditto.
19286 * rawbuffer.h rawbuffer.c metadata-internals.h metadata.c class-internals.h
19287 class.c loader.c image.h image.c assembly.h assembly.c: Add init () and cleanup ()
19288 functions to these modules.
19290 * domain-internals.h domain (mono_cleanup): New internal method to cleanup most
19293 * marshal.c (mono_free_bstr): Fix a warning.
19295 * assembly.c (mono_assembly_open_full): Fix another small leak.
19297 * object.c: Fix some unload leaks in the remoting code.
19299 * object-internals.h object-internal.c (mono_string_to_utf8_mp): New helper
19302 * assembly.c (mono_assembly_close): Fix a leak when unloading dynamic assemblies.
19304 * reflection.c: Fix some unload leaks in dynamic assemblies.
19306 2006-05-02 Jonathan Chambers <jonathan.chambers@ansys.com>
19308 * marshal.c: Add BSTR support on Win32 (all changes under MIT X11)
19309 * marshal.h: Add BSTR support on Win32
19310 * icall.c: Add BSTR icalls
19311 * metadata.h: Add BSTR enums
19313 2006-04-28 Miguel de Icaza <miguel@novell.com>
19315 Work to catch the crash from #76795 and turn it into an
19316 exception. As I stubbed out pieces of the VisualBasic support,
19317 I found a number of places where the code was failing and I added
19318 checks to those places.
19320 * metadata.c (do_mono_metadata_parse_generic_class): Make this
19321 function return a status code. If we fail to parse the signature
19322 from mono_metadata_parse_generic_inst, return FALSE.
19324 * loader.c (mono_get_method_from_token): If we fail to load the
19325 method (mono_class_get) return NULL.
19327 * (method_from_memberref): Return NULL if we are unable to parse
19328 the method signature
19330 (mono_loader_error_prepare_exception): Since we now use the
19331 loader_error flag internally to stop processing, and obtaining
19332 exceptions that might be thrown will walk this code path the
19333 proper way of going from a MonoLoaderError into a
19334 MonoException was convoluted. This new routine encapsulates the
19335 process of turning the error into an exception and *clearing* the
19338 2006-04-27 Miguel de Icaza <miguel@novell.com>
19340 Work to catch the crashes from 75075 (cope in Assembly.GetTypes
19341 with missing assemblies), and to cope with:
19343 * Missing fieldref from a non-existing assembly.
19344 * Missing methodref from a non-existing assembly.
19346 The first batch of work to address *some* of the issues from 76661.
19348 * object.c (mono_class_create_runtime_vtable): If we fail to
19349 initialize the class raise the exception here.
19351 * metadata.c (mono_class_get_overrides_full): If any methods fail
19352 to load return the failure to the caller.
19354 * assembly.c: Use REFERENCE_MISSING instead of (gpointer) -1 for
19355 flagging assemblies that failed to load.
19357 Do not crash if we are unable to load the assembly.
19359 (mono_assembly_close): Do nothing with REFERENCE_MISSING
19362 * loader.c (mono_loader_set_error_type_load): Change the
19363 convention to always pass unallocated strings, so we make our own
19364 copies (I know our own code had duplicated strings before, but
19365 this keeps the normal conventions).
19366 (method_from_memberref): Call mono_loader_set_error_method_load
19367 for all possible failures of loading the class.
19368 Remove assert, turn into a loader error.
19370 (mono_loader_error_to_exception): Move this routine from mini
19371 (mini_loader_error_to_exception) there was no need to have that in
19374 * class.c (mono_class_from_typeref): If we were not able to load
19375 the assembly with mono_assembly_load_reference, call the
19376 mono_loader_set_error_type_load to register the problem.
19378 (mono_class_setup_fields): If we fail to load the type from
19379 mono_metadata_parse_type_full, call mono_class_set_failure and
19380 break from the loop.
19382 If class->exception_type is set, we do not layout the fields as
19383 that might crash the runtime, and instead return (from breaking
19384 from the previous loop).
19386 (mono_class_setup_vtable): This now returns a boolean indicating
19387 whether the table was properly setup. The decision is driven by
19388 mono_class_get_overrides_full which might run into non-existing
19391 (mono_class_init): Returns TRUE on success or FALSE if there was a
19392 problem in loading the type (incorrect assemblies, missing
19393 assemblies, methods, etc).
19395 When we call mono_class_setup_fields we also check for a potential
19396 error inside this call (either a class exception or a general
19399 (mono_class_create_from_typedef): If the parent fails to load
19400 (calling mono_class_get_full) return NULL.
19404 calls to mono_metadata_parse_type_full should be checked
19405 everywhere and set the mono_class_set_failure
19406 (MONO_EXCEPTION_TYPE_LOAD) if we are not able to get the type.
19408 The current patch checks the places where my manually constructed
19409 tests show the errors are showing up, but we should do it
19414 mono_class_init return values should be tested everywhere, like
19415 the previous case this is something that we should audit
19416 everywhere and not only on the cases exposed by the tests I
19419 2006-04-26 Miguel de Icaza <miguel@novell.com>
19421 * file-io.c (ves_icall_System_IO_MonoIO_Open): Remove `async'
19422 boolean parameter and instead pass the information on `options'
19423 parameter (FileOptions).
19425 * icall.c: Register the new signature for MonoIO.Open.
19427 * debug-helpers.c (dis_one): Trying to understand how coverity
19428 works. Fix Run 5, item 78.
19430 2006-04-26 Dick Porter <dick@ximian.com>
19432 * socket-io.c (hostent_to_IPHostEntry2): Explicitly check for NULL
19435 2006-04-25 Martin Baulig <martin@ximian.com>
19437 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 56.
19439 * threads.c (mono_thread_attach): Set `thread->stack_ptr' and call
19440 debugger_thread_created().
19441 (debugger_gc_push_all_stacks): Don't handle the main thread in any
19443 (mono_debugger_init_threads): Removed the `main_thread_stack' arg.
19444 (mono_debugger_finalize_threads): New function; undo the effects
19445 of mono_debugger_init_threads().
19446 (mono_debugger_create_all_threads): Removed.
19448 2006-04-24 Zoltan Varga <vargaz@gmail.com>
19450 * image.c (mono_image_close): Tidy up trace messages.
19452 * assembly.c (mono_assembly_close): Ditto.
19454 * assembly.c (mono_assembly_close): Clear out image->assembly so the image
19455 no longer references an already freed assembly. Fixes #78168.
19457 2006-04-21 Dick Porter <dick@ximian.com>
19459 * threads.c (mono_thread_detach): Fix reference counting when
19462 2006-04-21 Zoltan Varga <vargaz@gmail.com>
19464 * icall.c (ves_icall_System_Enum_ToObject): Improve exception messages. Fixes
19467 2006-04-19 Zoltan Varga <vargaz@gmail.com>
19469 * marshal.c (mono_type_to_ldind): New helper function moved here from mini.c
19470 (mono_type_to_stind): Ditto.
19472 * marshal.c: Use the new helper functions to simplify code.
19474 * image.c (mono_image_close): Add some code for help debug assembly unloading
19477 * metadata.c (mono_metadata_parse_type_full): Allocate MonoType's from the
19480 * assembly.c (mono_assembly_open_full): Invoke the load hook when the
19481 assembly was already loaded in another appdomain. Fixes #78083.
19483 2006-04-13 Zoltan Varga <vargaz@gmail.com>
19485 * assembly.c (mono_assembly_load_reference): Increase the refcount of the
19486 referenced assemblies.
19487 (mono_assembly_close): Decrease the refcount of the referenced assemblies.
19489 * domain.c (mono_domain_free): Add a trace message.
19491 * appdomain.c (add_assemblies_to_domain): Ditto.
19493 * metadata-internals.h: (_MonoAssembly): Modify the meaning of the ref_count
19496 2006-04-12 Zoltan Varga <vargaz@gmail.com>
19498 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): Fix image reference counting.
19500 2006-04-12 Martin Baulig <martin@ximian.com>
19502 * threads.c: Use `MONO_DEBUGGER_SUPPORTED' as the conditional, not
19503 `USE_INCLUDED_LIBGC'.
19505 2006-04-12 Zoltan Varga <vargaz@gmail.com>
19507 * image.c (canonicalize_path): Avoid calling strncpy on overlapping strings if
19508 the patch contains ../ and a small directory name later. Hopefully fixes
19511 2006-04-10 Martin Baulig <martin@ximian.com>
19513 Clean up the debugger's thread-handling code.
19515 The debugger's thread-handling code has been moved from
19516 ../mini/debug-debugger.c to threads.c. We now iterate directly
19517 over the `threads' hash, keep track of exiting threads and also
19518 use proper locking.
19520 We can now debug XSP and XSP based applications with the debugger.
19522 * object-internals.h (MonoThread): Added `gpointer end_stack'.
19525 (MonoThreadCallbacks): Removed; this was only used by the debugger.
19526 (mono_install_thread_callbacks): Likewise.
19528 * threads.c (mono_thread_callbacks): Removed.
19529 (debugger_thread_created, debugger_thread_exited): New static functions.
19530 (start_wrapper): Call debugger_thread_created().
19531 (thread_cleanup): Call debugger_thread_exited().
19532 (mono_gc_stop_world, mono_gc_start_world): Removed; this was never used.
19533 (mono_debugger_init_threads): New public function.
19534 (debugger_thread_vtable): Moved here from debug-debugger.c; we now
19535 iterate directly over the `threads' hash and also use proper locking.
19537 * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped to 55.
19539 * mono-debug-debugger.h
19540 (MonoDebuggerEvent): Added MONO_DEBUGGER_EVENT_THREAD_EXITED.
19542 2006-04-10 Zoltan Varga <vargaz@gmail.com>
19544 * reflection.c (encode_cattr_value): Fix handling of parameter type=object,
19545 argument type=array. Fixes #78057.
19547 2006-04-10 Atsushi Enomoto <atsushi@ximian.com>
19549 * culture-info-table.h : regenerated. Fixed bug #69652.
19551 2006-04-07 Zoltan Varga <vargaz@gmail.com>
19553 * loader.c metadata.c: Reapply a variant r59116.
19555 * loader.c metadata.c: Revert r59116 to see if it fixes the breakage.
19557 * class.c (mono_class_setup_interface_offsets): New internal function.
19559 * reflection.c (ensure_runtime_vtable): Setup interface offsets for dynamic
19560 interfaces too. Fixes #77398.
19562 * reflection.c (encode_cattr_value): Add support for
19563 parameter type=object, argument type=array.
19564 (load_cattr_value): Ditto. Fixes #77916.
19566 * marshal.c (emit_object_to_ptr_conv): Add support for ARRAY_BYVALCHARARRAY.
19567 (emit_ptr_to_object_conv): Ditto. Fixes #77960.
19569 * metadata.c (mono_type_to_unmanaged): Use ARRAY_BYVALCHARARRAY when converting
19570 a byval char array and CharSet is Ansi.
19572 * metadata.h: Add new marshalling conversion ARRAY_BYVALCHARARRAY.
19574 2006-04-06 Zoltan Varga <vargaz@gmail.com>
19576 * metadata.c: Add some locking comments.
19578 * metadata.c (mono_metadata_signature_alloc): Allocate signatures in the image
19580 (mono_metadata_free_method_signature): Don't free the signature itself.
19582 * loader.c (mono_free_method): Don't free the signature in non-dynamic methods.
19584 * assembly.c (mono_assembly_open_full): Avoid the situation where two assemblies
19585 reference the same MonoImage.
19586 (mono_assembly_load_from_full): Add an assert.
19588 2006-04-05 Zoltan Varga <vargaz@gmail.com>
19590 * image.c (mono_image_close): Don't put the image we are about to free into the
19591 loaded_images_guid_hash.
19593 * marshal.c (mono_mb_emit_ptr): Refactor a common code sequence into this function
19594 to reduce code duplication.
19596 * marshal.c: Register the native functions called by this module as icalls, to
19597 somewhat centralize the creation of MonoMethodSignature's.
19599 * loader.c (mono_method_signature): Add a cache for method signatures.
19601 * metadata.c (mono_metadata_get_param_attrs): New helper function to return
19602 the parameter attributes of a method.
19603 (mono_metadata_parse_method_signature_full): Refactored the computation of
19604 parameter attributes into a separate function. Also avoid one allocation in
19607 * assembly.c (mono_assembly_close): Ditto.
19609 * image.c (mono_image_close): Log trace messages with INFO level.
19611 * metadata-internals.h (MonoImage): Add a new 'method_signature' cache.
19613 * image.c reflection.c: Correct reference counting of image modules.
19615 * metadata.c (mono_metadata_interfaces_from_typedef_full): Allocate the result
19616 of this function from the image mempool.
19618 (mono_metadata_parse_type_full): Remove the mode != MONO_PARSE_PARAM restriction
19619 to allow more cached types to be used.
19621 * mono-debug.c (mono_debug_add_method): Appled patch from
19622 David S. Miller <davem@sunset.davemloft.net>: Access
19623 minfo->lexical_blocks[] entry elements using read32().
19625 2006-04-04 Zoltan Varga <vargaz@gmail.com>
19627 * loader.c (mono_free_method): No longer free the method header for non-dynamic
19628 methods as it is allocated from the mempool.
19630 * metadata.c (mono_metadata_parse_mh_full): Allocate method headers from the
19633 * metadata-internals.h: Add comments describing the reference counting scheme
19634 used for MonoImage and MonoAssembly.
19636 * image.c assembly.c reflection.c: Rework reference counting of images and
19637 assemblies so they are freed when the runtime is shut down. Free some
19638 additional memory structures when an image is unloaded.
19640 2006-04-03 Zoltan Varga <vargaz@gmail.com>
19642 * class.c loader.c reflection.c: Allocate more data structures in
19645 2006-03-31 Miguel de Icaza <miguel@novell.com>
19648 (ves_icall_System_Environment_InternalSetEnvironmentVariable): Fix
19649 build on pre glib 2.4 systems.
19651 2006-03-31 Zoltan Varga <vargaz@gmail.com>
19653 * icall.c (ves_icall_System_Environment_InternalSetEnvironmentVariable): New icall.
19655 * icall.c: Fix some warnings.
19657 2006-03-29 Atsushi Enomoto <atsushi@ximian.com>
19659 * culture-info-table.h : regenerated.
19661 Wed Mar 29 18:24:42 CEST 2006 Paolo Molaro <lupus@ximian.com>
19663 * threads.c, object-internals.h, verify.c: changed the culture caching
19664 code to use a normal MonoArray for storage so the GC can keep track of
19665 them easily. Fixed bits of the cache logic, too and simplified the
19668 Wed Mar 29 17:18:16 CEST 2006 Paolo Molaro <lupus@ximian.com>
19670 * gc-internal.h, null-gc.c, boehm-gc.c, gc.c: enable the finalizer
19671 thread for non-Boehm GCs.
19673 Wed Mar 29 17:10:05 CEST 2006 Paolo Molaro <lupus@ximian.com>
19675 * domain.c, object.c, domain-internals.h: reduce the amount of memory
19676 needed to keep track of the data for static fields.
19678 2006-03-29 Raja R Harinath <rharinath@novell.com>
19681 * icall.c (ves_icall_Type_GetMethodsByName): Don't use vtable_size
19682 for interface classes. Use 'num_methods' instead.
19683 (ves_icall_Type_GetPropertiesByName): Likewise. Setup vtable
19684 before using '->vtable_size' field.
19686 Wed Mar 29 12:53:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
19688 * domain.c, object.c, domain-internals.h: proxy_vtable_hash
19689 doesn't contain managed pointers, so use a normal hashtable.
19691 Mon Mar 27 11:15:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
19693 * reflection.c, class-internals.h, domain.c: fixed handling of types
19694 used as values for objects in custom attributes (bug #77915):
19696 2006-03-24 Martin Baulig <martin@ximian.com>
19698 * class.c (mono_class_setup_fields): Added support for generic
19699 instances; fixes #77580.
19701 2006-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19703 * assembly.c: publickeytoken is case insensitive. Fixes bug #77898.
19705 2006-03-24 Dick Porter <dick@ximian.com>
19707 * file-io.c (get_file_attributes): More stat macro breakage.
19710 Fri Mar 24 15:26:00 CET 2006 Paolo Molaro <lupus@ximian.com>
19712 * profiler.c: added the file=filename option in the default profiler
19713 to output the profile data to filename.
19715 2006-03-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19717 * icall.c: CodeBase returns '/' instead of '\\' on windows. Fixes
19720 2006-03-22 Martin Baulig <martin@ximian.com>
19722 * reflection.c (fieldbuilder_to_mono_class_field): Don't store the
19723 allocated `MonoClassField *' in `fb->handle'.
19725 Tue Mar 21 17:19:37 CET 2006 Paolo Molaro <lupus@ximian.com>
19727 * class.c, image.c, metadata-internals.h: implemented new mechanism to
19728 allocate interface ID to save memory and allow better ID reuse on
19729 appdomain unload. setup_generic_vtable () removal from Martin.
19731 Tue Mar 21 15:54:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19733 * object.h, appdomain.c, domain.c, exception.c, icall.c,
19734 locales.c, marshal.c, object.c, reflection.c, threadpool.c,
19735 threads.c: introduced MONO_OBJECT_SETREF() macro to be able to insert
19736 write barriers for reference stores with managed objects accessed with
19737 C structures in the runtime and in embedding programs.
19739 2006-03-20 Raja R Harinath <rharinath@novell.com>
19741 * icall.c (ves_icall_Type_GetInterfaces): Avoid using
19742 'interface_id' and 'max_interface_id' fields of MonoClasses
19743 representing open generic types.
19745 Fri Mar 17 18:06:06 CET 2006 Paolo Molaro <lupus@ximian.com>
19747 * object.h, object.c, icall.c: added functions to deal with
19748 storing valuetypes that contain references in managed objects.
19749 * reflection.c, string-icalls.c, threads.c, marshal.c: small
19750 fixes and comments around uses of mono_array_addr ().
19752 Thu Mar 16 17:16:45 CET 2006 Paolo Molaro <lupus@ximian.com>
19754 * object.h, icall.c, monitor.c: object.GetHashCode ()
19755 implementation that supports the moving garbage collector.
19757 Wed Mar 15 16:31:38 CET 2006 Paolo Molaro <lupus@ximian.com>
19759 * icall.c, threads-types.h, threads.c: implemented finalizer for
19760 LocalDataStoreSlot.
19762 2006-03-15 Zoltan Varga <vargaz@gmail.com>
19764 * metadata.c (mono_type_size): Add a fixme.
19765 (mono_type_stack_size): Ditto.
19767 * object-internals.h (MonoReflectionAssemblyBuilder): Added
19768 'type_forwarders' field.
19770 * tabledefs.h (TYPE_ATTRIBUTE_FORWARDER): Added new (undocumented) type
19771 attribute from net 2.0.
19773 * object.c (mono_vtable_get_static_field_data): Moved this to object.c
19776 * class.c (mono_class_setup_fields): Fix a warning.
19778 * class.c (mono_class_from_name): Add support for assemblyref entries
19779 in the EXPORTEDTYPE table.
19781 * reflection.c: Add support for handling type forwarders under net 2.0.
19783 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
19785 2006-03-14 Zoltan Varga <vargaz@gmail.com>
19787 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Avoid
19788 overwriting entries in ModuleBuild->types, also clean up the code
19789 a little. Fixes #77774.
19791 Tue Mar 14 20:21:18 CET 2006 Paolo Molaro <lupus@ximian.com>
19793 * domain.c, assembly.c, metadata-internals.h, class-internals.h:
19794 load friend assembly info when present.
19796 2006-03-14 Raja R Harinath <rharinath@novell.com>
19798 Fix crasher on gtest-158.cs.
19799 * metadata.c (mono_metadata_parse_type_full): Avoid canonicalizing
19800 the return value if the MonoClass we want is yet in an
19801 inconsistent state.
19802 * class.c (mono_class_create_from_typedef): Add an comment
19803 explaining an order dependency between mono_class_setup_parent and
19804 mono_class_setup_mono_type.
19806 Mon Mar 13 21:13:27 CET 2006 Paolo Molaro <lupus@ximian.com>
19808 * class.c: documentation updates and events bug fix.
19810 Mon Mar 13 17:28:07 CET 2006 Paolo Molaro <lupus@ximian.com>
19812 * class.c: some cleanup, locking fixes.
19814 Mon Mar 13 10:46:17 CET 2006 Paolo Molaro <lupus@ximian.com>
19816 * class.c: fix the generics code to setup nested
19817 type info to the instantiated type (bug #77770).
19819 Sun Mar 12 16:21:31 CET 2006 Paolo Molaro <lupus@ximian.com>
19821 * marshal.c: fixed a few type correctness issues.
19823 Sat Mar 11 20:14:44 CET 2006 Paolo Molaro <lupus@ximian.com>
19825 * loader.c: the Set/Get/Addrtess array methods should be public.
19827 2006-03-11 Zoltan Varga <vargaz@gmail.com>
19829 * icall.c (mono_register_jit_icall_wrapper): Fix a warning.
19831 * icall.c (mono_register_jit_icall_wrapper): Register the argument, not
19834 2006-03-10 Zoltan Varga <vargaz@gmail.com>
19836 * icall.c (mono_register_jit_icall): Allocate the structure using g_new0.
19838 * class-internals.h (MonoJitICallInfo): Add 'trampoline' field used by the JIT.
19840 * mempool.c (mono_mempool_alloc): Speed this up a bit.
19841 (mono_mempool_alloc0): Ditto.
19843 2006-03-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19846 (create_object_from_sockaddr): it was allocating 4 extra bytes
19847 for the AF_UNIX data. Fixes bug #77747.
19849 2006-03-09 Zoltan Varga <vargaz@gmail.com>
19851 * icall.c (ves_icall_System_MonoMethodInfo_get_retval_marshal): New icall.
19853 2006-03-09 Dick Porter <dick@ximian.com>
19855 * file-io.c (get_file_attributes): Use S_ISLNK not "& S_IFLNK".
19856 Fixes bug 76966 again.
19858 2006-03-07 Peter Dennis Bartok <pbartok@novell.com>
19860 * verify.c (dtfinfo_fields): Updated to match new (serializable) field
19862 * appdomain.c: Bumped corlib version to 48 (due to r57532)
19864 2006-03-07 Martin Baulig <martin@ximian.com>
19867 (mono_field_get_value_object): Add support for MONO_TYPE_GENERICINST.
19869 2006-03-07 Martin Baulig <martin@ximian.com>
19872 (mono_class_get_full): Don't inflate TYPEDEF entries; fixes the
19873 regression introduced in r56970; see gtest-252.cs.
19875 * loader.c (mono_get_method_constrained): Correctly handle generic
19876 methods; see gtest-253.cs.
19878 2006-03-04 Zoltan Varga <vargaz@gmail.com>
19880 * icall.c (ves_icall_type_Equals): Handle NULLs. Fixes #77700.
19882 2006-03-04 Martin Baulig <martin@ximian.com>
19884 * icall.c (ves_icall_MonoGenericClass_GetParentType): Dynamically
19885 compute the parent type at runtime, just like we're already doing
19889 (mono_reflection_bind_generic_parameters): Don't compute the
19890 parent type anymore.
19892 * class-internals.h (MonoDynamicGenericClass): Removed `parent'.
19894 2006-03-04 Martin Baulig <martin@ximian.com>
19896 * mono-debug-debugger.h
19897 (mono_debugger_create_notification_function): Allocate memory at
19898 runtime and return a pointer to it.
19900 2006-03-03 Zoltan Varga <vargaz@gmail.com>
19902 * assembly.c: Fix windows build.
19904 * assembly.c: Fix build.
19906 * assembly.c: Move the contents of os/{unix,win32}/util.c to this file.
19908 * gc_wrapper.h: Move the contents of os/gc_wrapper.h to this file.
19910 2006-03-03 Dick Porter <dick@ximian.com>
19913 (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
19914 Check parameters before dereferencing them. Fixes Aaron's part of
19917 2006-03-03 Raja R Harinath <rharinath@novell.com>
19919 Fix performance regression.
19920 * loader.c (find_method_in_class): Add 'from_class' argument.
19921 Rename 'klass' argument to 'in_class'. The signature is compared
19922 against the method in 'in_class', and the corresponding method is
19923 returned from 'from_class'.
19924 (find_method): Walk both 'in_class' and 'from_class' in parallel.
19925 (method_from_memberref) [PARENT_TYPESPEC]: Use it to walk the
19926 type definition and generic instantiation in parallel.
19927 (mono_get_method_constrained): Update to changes.
19929 Thu Mar 2 12:27:41 CET 2006 Paolo Molaro <lupus@ximian.com>
19931 * threads.c: make sure the domain is correct, too when doing
19932 mono_thread_attach ().
19934 2006-03-01 Zoltan Varga <vargaz@gmail.com>
19936 * class.c (mono_class_create_from_typedef): Mark classes using CharSet.Auto as unicode on
19937 windows. Fixes #77683.
19939 Wed Mar 1 20:09:25 CET 2006 Paolo Molaro <lupus@ximian.com>
19941 * object.h, *: introduced specific way to set elements of an array
19942 of references to be used as write barrier. Still need to audit the
19943 uses of mono_array_addr.
19945 2006-03-01 Miguel de Icaza <miguel@novell.com>
19947 * object-internals.h: New field to cache the assmebly name, patch
19948 from Tambet Ingo (tambet@ximian.com)
19950 Wed Mar 1 19:13:30 CET 2006 Paolo Molaro <lupus@ximian.com>
19952 * decimal.h, class-internals.h, metadata-internals.h,
19953 file-io.h: mark a few function declarations as internal, to
19954 reduce the number of PLT entries.
19956 2006-02-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19958 * file-io.c: fix typo in warning message.
19960 Tue Feb 28 17:43:20 CET 2006 Paolo Molaro <lupus@ximian.com>
19962 * loader.c: on unix, lookup the "*A" version of a function
19963 if charset is auto as a second option before failing.
19965 2006-02-28 Raja R Harinath <rharinath@novell.com>
19967 * class.h (mono_class_inflate_generic_method): Revert to two
19969 * class-internals.h (MonoMethodInflated): Remove 'inflated' field.
19970 (mono_class_inflate_generic_method_full): Add.
19971 * class.c (mono_class_inflate_generic_method_full): Rename from
19972 'mono_class_inflate_generic_method'. Don't set 'inflated' field.
19973 (mono_class_inflate_generic_method): New. Wrapper around ..._full.
19974 * loader.c, reflection.c: Update to changes.
19976 Sat Feb 25 17:57:21 CET 2006 Paolo Molaro <lupus@ximian.com>
19978 * icall.c: const fixes and small improvements.
19980 2006-02-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19982 * threadpool.c: for asynchronous connect(), enable the same workaround
19983 for BSD 6 as for the Mac. Fixes bug #77637.
19985 2006-02-24 Zoltan Varga <vargaz@gmail.com>
19987 * marshal.c (mono_marshal_free_asany): Fix handling of blittable
19988 formatted classes. Fixes #77524.
19990 2006-02-24 Raja R Harinath <rharinath@novell.com>
19992 * class.c (inflate_generic_type): Add a couple more
19993 micro-optimizations.
19994 (inflate_generic_context): Don't use the 'gmethod' from
19996 (mono_class_inflate_generic_method): If the method has generic
19997 parameters, but the passed-in context doesn't have a 'gmethod',
19998 create one. Use the possibly simplified generic instantiation
19999 from the declaring class instead of the one passed in.
20001 2006-02-24 Raja R Harinath <harinath@gmail.com>
20003 Make generic method signature and method header handling lazy.
20004 * class.c (mono_class_inflate_generic_signature): Move to loader.c.
20005 (inflate_generic_header): Likewise.
20006 (mono_class_inflate_generic_method): Rewrite. Add a 'klass_hint'
20007 parameter to avoid inflating types.
20008 (mono_get_inflated_method): Empty out.
20009 * class.h (mono_class_inflate_generic_method): Update to changes.
20010 * loader.c (mono_get_method_from_token): Don't parse signature for
20011 generic methods, nor methods of generic classes.
20012 (mono_method_signature): Rename from 'mono_method_signature'.
20013 Inflate signature on demand.
20014 (mono_method_get_header): Inflate method header on demand.
20015 * reflection.c: Update to changes.
20017 2006-02-23 Raja R Harinath <rharinath@novell.com>
20019 * metadata.c (mono_metadata_inflate_generic_inst): If the
20020 instantiation is closed, don't bother expanding it in the new
20022 * class.c (inflate_generic_class): If the generic instantiation
20023 doesn't change after inflation, return the argument itself.
20024 (inflate_generic_type) [MONO_TYPE_MVAR, MONO_TYPE_VAR]:
20026 (inflate_generic_context): If neither the generic class nor the
20027 generic method instantiations change, return the original context.
20028 * reflection.c (mono_method_get_object): Do
20029 'mono_get_inflated_method' before accessing the ->klass field.
20030 (inflate_mono_method): Don't create a MonoGenericMethod unless
20032 (inflate_method): Don't pass a constructed type as the declaring
20033 type of a methodbuilder.
20035 Thu Feb 23 11:57:54 CET 2006 Paolo Molaro <lupus@ximian.com>
20037 * object.c: fix memory overwrite.
20039 2006-02-22 Dick Porter <dick@ximian.com>
20041 * threads.c: Don't use G_GNUC_PRETTY_FUNCTION in debug messages,
20042 it doesn't work any more.
20043 (mono_threads_request_thread_dump): Fix unused variable warnings.
20045 Wed Feb 22 15:08:44 CET 2006 Paolo Molaro <lupus@ximian.com>
20047 * metadata.h, metadata-internals.h, monodiet.c, debug-helpers.c,
20048 mono-debug.c, profiler.c: cleanup: move MonoMethodHeader out of
20049 the public header file.
20051 2006-02-21 Zoltan Varga <vargaz@gmail.com>
20053 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Fix writing past memory. Fixes #77613.
20055 Tue Feb 21 19:55:11 CET 2006 Paolo Molaro <lupus@ximian.com>
20057 * class-internals.h, object.c: reduce the size of MonoVTable
20058 and store the interface_offsets array at negative offsets.
20060 Tue Feb 21 19:53:26 CET 2006 Paolo Molaro <lupus@ximian.com>
20062 * metadata.c: tweak table descriptors data structures to reduce
20063 size and runtime relocations.
20065 Tue Feb 21 14:52:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20067 * marshal.c: fix some types and opcodes to be type-safe
20068 in marshaling wrappers.
20070 2006-02-21 Ankit Jain <jankit@novell.com>
20072 * metadata.h (mono_metadata_decode_signed_value): Add declaration.
20074 2006-02-21 Raja R Harinath <rharinath@novell.com>
20076 * metadata.c (get_constraints): Relax debugging checks for monodis.
20078 2006-02-21 Ankit Jain <jankit@novell.com>
20080 * metadata.c (mono_metadata_load_generic_params): Move the code
20081 checking for ambiguous generic params from here to mono/dis/get.c
20082 * metadata-internals.h (mono_generic_params_with_ambiguous_names): Remove.
20084 2006-02-21 Raja R Harinath <harinath@gmail.com>
20086 Fix assertion triggered when compiling nemerle.
20087 * class.c (mono_get_shared_generic_inst): Rename from
20088 get_shared_inst and make non-static.
20089 * loader.c (mono_get_shared_generic_method): New. Used to create
20090 the MonoGenericContext-equivalent of a MonoGenericContainer.
20091 (mono_get_method_from_token): Initialize the 'context' field of
20092 the created MonoGenericContainer.
20093 * reflection.c (reflection_methodbuilder_to_mono_method): Likewise.
20094 * metadata.c (get_constraints): Add sanity check.
20095 * class-internals.h: Add new internal methods.
20097 * reflection.c (verify_safe_for_managed_space): New sanity check.
20098 Currently checks that owner-less generic parameters aren't allowed
20100 (mono_type_get_object): Use it.
20101 * icall.c (ves_icall_MonoType_GetGenericArguments): Remove checks
20102 that are now in mono_type_get_object.
20103 (ves_icall_MonoMethod_GetGenericArguments): Likewise.
20105 2006-02-19 Raja R Harinath <harinath@gmail.com>
20107 * metadata.c (mono_type_create_from_typespec): Rename from
20108 mono_type_create_from_typespec_full. Remove MonoGenericContainer*
20109 argument and caching of types in the generic container.
20110 (unwrap_arrays, find_generic_param): Remove.
20111 * metadata-internals.h: Update.
20112 * class-internals.h (_MonoGenericContainer): Remove 'types' field.
20114 2006-02-18 Zoltan Varga <vargaz@gmail.com>
20116 * class.c (mono_class_get_exception_for_failure): Fix a warning.
20118 * marshal.c (mono_marshal_emit_native_wrapper): Handle FNPTR args and
20119 return values. Fixes #77581.
20121 * class.c (mono_fnptr_class_get): Switch name and name_space.
20123 * marshal.c (mono_marshal_asany): Fix marshalling of blittable formatted
20124 classes and add support for [In, Out] attributes.
20125 (mono_marshal_free_asany): Ditto. Fixes #77524.
20127 2006-02-18 Raja R Harinath <harinath@gmail.com>
20129 * class.c (mono_class_from_generic_parameter): Make more robust to
20130 incomplete MonoGenericContainers from monodis.
20132 Fri Feb 17 16:10:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20134 * class-internals.h: added some more exception types.
20135 * class.c, metadata.c: added a few checks to handle missing
20138 2006-02-17 Raja R Harinath <rharinath@novell.com>
20140 Use owner-less generic-params some more.
20141 * class.c (my_mono_class_from_generic_parameter): Remove.
20142 (mono_class_from_generic_parameter): Handle null image,
20143 param->name and param->owner.
20144 (mono_class_from_mono_type): Update.
20145 (mono_class_create_from_typespec): Remove 'container' parameter.
20146 If that parameter is non-null, the result is always inflated by
20147 'mono_class_get_full' anyway.
20148 (mono_class_get): Rename from _mono_class_get. Remove 'container'
20150 (mono_class_get_full): Update.
20152 * class.c (inflate_generic_type) [GENERICINST]: If the generic
20153 instance is not open, don't bother inflating.
20154 (mono_class_setup_fields): Hoist some loop-invariants. Don't
20155 parse metadata for inflated classes.
20156 (_mono_class_get): Change GenericContext* parameter to
20158 (mono_class_create_from_typespec): Likewise. Simplify, and
20159 implement trivially. All the cases are handled in
20160 mono_class_from_mono_type. Don't inflate returned class.
20161 (mono_class_get_full): Delegate GENERICINST optimization to
20162 inflate_generic_type.
20163 (mono_ldtoken) [TOKEN_TYPE_SPEC]: Use mono_class_get_full() here too.
20165 2006-02-16 Dick Porter <dick@ximian.com>
20167 * socket-io.c (create_object_from_sockaddr): Fix typo.
20168 (create_sockaddr_from_object): Check array lengths before
20169 potentially accessing items off the end.
20170 (ves_icall_System_Net_Sockets_Socket_Receive_internal)
20171 (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal)
20172 (ves_icall_System_Net_Sockets_Socket_Send_internal)
20173 (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Fix buffer
20174 length checks to avoid wraparound overflows.
20175 (ves_icall_System_Net_Sockets_Socket_Select_internal): Check the
20176 contents of the array of sockets
20177 (hostent_to_IPHostEntry2)
20178 (addrinfo_to_IPHostEntry): IPv6 printed addresses can be 48 bytes.
20179 Check return value of inet_ntop ().
20180 (addrinfo_to_IPHostEntry): Fix typo
20182 2006-02-16 Raja R Harinath <rharinath@novell.com>
20184 Type metadata parsing doesn't use generic-instantiation information.
20185 * metadata.c (mono_metadata_parse_array_full): Change
20186 MonoGenericContext* parameter to MonoGenericContainer*.
20187 (mono_metadata_parse_type_full): Likewise.
20188 (mono_type_create_from_typespec_full): Likewise.
20189 (mono_metadata_parse_mh_full): Likewise.
20190 (mono_metadata_parse_generic_inst): Likewise.
20191 (do_mono_metadata_parse_generic_class): Likewise.
20192 (do_mono_metadata_parse_type): Likewise.
20193 * metadata-internals.h: Update to changes.
20194 * class.c (mono_class_find_enum_basetype): Likewise.
20195 (mono_class_setup_fields): Likewise.
20196 (mono_class_create_from_typespec): Likewise.
20197 * loader.c (method_from_methodspec): Likewise.
20198 (mono_get_method_from_token): Likewise.
20199 (mono_method_get_header): Likewise.
20201 Thu Feb 16 15:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
20203 * marshal.c: handle additional GENERICINST case (patch from
20204 Thong Nguyen <tum@veridicus.com>).
20205 Fix a few cases where LDIND_I/STIND_I was used for references.
20207 2006-02-16 Raja R Harinath <rharinath@novell.com>
20209 * reflection.c (mono_reflection_get_token): Remove unused variable.
20211 2006-02-16 Martin Baulig <martin@ximian.com>
20213 * reflection.c (mono_reflection_get_token): Add support for fields
20214 in instantiated generic types.
20217 (ves_icall_MonoField_Mono_GetGenericFieldDefinition): Removed.
20219 2006-02-15 Martin Baulig <martin@ximian.com>
20222 (ves_icall_MonoMethod_get_HasGenericParameters): Removed.
20223 (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): Removed.
20224 (ves_icall_MonoMethod_get_IsGenericMethod): New icall.
20225 (ves_icall_MonoMethod_get_IsGenericMethodDefinition): New icall.
20227 Wed Feb 15 16:19:24 CET 2006 Paolo Molaro <lupus@ximian.com>
20229 * class.c, metadata.c, metadata.h, object.c, icall.c,
20230 marshal.c: changed mono_type_get_underlying_type () to do
20231 the sensible thing and introduced mono_type_generic_inst_is_valuetype().
20232 Fixed handling of instantiated generic valuetypes (bug #75479).
20234 2006-02-15 Raja R Harinath <rharinath@novell.com>
20236 * metadata.c (mono_metadata_decode_signed_value): Simplify.
20237 Delegate to mono_metadata_decode_value, and work on the returned value.
20239 * icall.c (ves_icall_MonoType_GetGenericArguments):
20240 Add consistency check here too.
20242 2006-02-15 Ankit Jain <jankit@novell.com>
20244 * metadata.c (mono_metadata_decode_signed_value): Use gint* instead of
20247 2006-02-15 Ankit Jain <jankit@novell.com>
20249 * metadata.c (mono_metadata_decode_signed_value): New function to decode
20250 signed values, used only for representing lower bounds of arrays.
20251 (mono_metadata_parse_array_full): Use new
20252 mono_metadata_decode_signed_value to decode lower bounds.
20254 2006-02-14 Martin Baulig <martin@ximian.com>
20257 (mono_reflection_get_token): Support "MonoGenericMethod" and
20258 "MonoGenericCMethod" and allow generic instances / methods.
20260 2006-02-11 Zoltan Varga <vargaz@gmail.com>
20262 * console-io.c (ves_icall_System_ConsoleDriver_GetTtySize): New icall
20263 to obtain the terminal size using an ioctl.
20265 * object.c (mono_nullable_init): Revert this as nullable reference
20266 types are not valid.
20267 (mono_nullable_box): Ditto.
20269 2006-02-09 Dick Porter <dick@ximian.com>
20271 * threads.c (mono_thread_detach): Drop a reference to the thread
20274 2006-02-09 Zoltan Varga <vargaz@gmail.com>
20276 * object.c (mono_nullable_init): Handle nullable reference types.
20277 (mono_nullable_box): Ditto. Fixes #77446.
20279 2006-02-07 Martin Baulig <martin@ximian.com>
20281 * icall.c (ves_icall_MonoMethod_get_IsGenericMethodDefinition): Removed.
20283 2006-02-07 Ankit Jain <jankit@novell.com>
20285 * socket-io.h (MonoSocketFlags): New. Copy of System.Net.Sockets.SocketFlags
20286 * socket-io.c (convert_socketflags): New. Convert SocketFlags to native ones.
20287 (ves_icall_System_Net_Sockets_Socket_Receive_internal): Convert flags using convert_socketflags.
20288 (ves_icall_System_Net_Sockets_Socket_ReceiveFrom_internal): Likewise.
20289 (ves_icall_System_Net_Sockets_Socket_Send_internal): Likewise.
20290 (ves_icall_System_Net_Sockets_Socket_SendTo_internal): Likewise.
20292 2006-02-02 Zoltan Varga <vargaz@gmail.com>
20294 * class.c (mono_class_create_generic): Set type_token as well.
20296 * object.c (mono_runtime_invoke_array): Fix handling of byref vtypes to be
20297 compatible with MS.
20299 2006-02-02 Martin Baulig <martin@ximian.com>
20301 * threads.c, gc.c: Removed the `WITH_INCLUDED_LIBGC' section; it
20302 has never been used so far.
20304 2006-02-02 Martin Baulig <martin@ximian.com>
20306 * mono-debug-debugger.h: Changed comment at the top of this file;
20307 the header is not installed, but it's safe to #include it from
20310 * mono-debug.c: Don't #define _IN_THE_MONO_DEBUGGER.
20311 * mono-debug-debugger.c, debug-mono-symfile.c: Likewise.
20313 2006-02-02 Martin Baulig <martin@ximian.com>
20316 (MonoSymbolTable): Removed the `metadata_info' field.
20319 (mono_debug_init_1): Always set `mono_symbol_table->corlib'.
20321 * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20322 (mono_debugger_add_builtin_types): Removed.
20323 (MonoDebuggerInfo): Moved into ../mini/debug-debugger.h.
20324 (mono_debugger_create_notification_function): We now operate on a
20325 pre-allocated area; take a `gpointer' and return `void'.
20327 * mono-debug-debugger.c
20328 (MonoDebuggerMetadataInfo): Moved into ../mini/debug-debugger.h.
20329 (mono_debugger_add_builtin_types): Removed.
20331 2006-02-02 Martin Baulig <martin@ximian.com>
20333 * threads.c (mono_debugger_create_all_threads): New public method.
20335 Wed Feb 1 18:22:34 CET 2006 Paolo Molaro <lupus@ximian.com>
20337 * gc-internal.h, boehm-gc.c, null-gc.c: back out the patch, since it
20338 breaks on several platforms.
20340 2006-02-01 Sebastien Pouliot <sebastien@ximian.com>
20342 * assembly.c: the VS.NET build doesn't supply default values for
20343 MONO_ASSEMBLIES and MONO_CFG_DIR.
20345 2006-02-01 Zoltan Varga <vargaz@gmail.com>
20347 * gc-internal.h boehm-gc.c null-gc.c (mono_gc_unregister_thread): New
20350 * threads.c (mono_thread_detach): Call mono_gc_unregister_thread ().
20352 * loader.c (method_from_memberref): Fix a warning.
20354 * metadata.c (mono_metadata_load_generic_params): Fix a warning.
20356 * marshal.c (emit_struct_conv): Fix marshalling of embedded structs
20357 with explicit layout. Fixes #77433.
20359 2006-01-31 Zoltan Varga <vargaz@gmail.com>
20361 * icall.c (ves_icall_Type_GetInterfaceMapData): Make sure
20362 max_interface_id is initialized before using it. Fixes #77398.
20363 (ves_icall_Type_GetInterfaces): Ditto.
20365 2006-01-30 Raja R Harinath <rharinath@novell.com>
20367 * metadata.c (mono_metadata_parse_method_signature_full): Don't
20368 allocate memory for parameter attributes when parsing memberref
20370 * loader.c (mono_loader_set_error_method_load): Don't warn.
20371 (method_from_memberref): Ensure MissingMethodException gets thrown
20372 if method is not found. Make warning more informative.
20374 2006-01-29 Raja R Harinath <harinath@gmail.com>
20377 * icall.c (ves_icall_MonoType_get_IsGenericParameter): Don't
20378 return true if is byref.
20379 (ves_icall_TypeBuilder_get_IsGenericParameter): Likewise.
20380 (ves_icall_MonoType_get_DeclaringType): Return NULL on byref classes.
20381 (ves_icall_MonoType_get_DeclaringMethod): Likewise.
20383 2006-01-27 Raja R Harinath <rharinath@novell.com>
20385 Fix tests/find-method.2.il
20386 * loader.c (find_method, find_method_in_class): Remove is_inflated
20387 argument. Revert 2006-01-18 change.
20388 (method_from_memberref) [MONO_MEMBERREF_PARENT_TYPESPEC]: If type
20389 is generic, search for method in its generic definition.
20390 * class.c (mono_class_setup_vtable_general): Print generic
20391 arguments of generic types in debugging printf.
20393 2006-01-26 Zoltan Varga <vargaz@gmail.com>
20395 * object-internals.h (MonoThread): Add 'thread_dump_requested' field.
20397 * threads.c (mono_threads_request_thread_dump): New helper function.
20399 2006-01-25 Raja R Harinath <rharinath@novell.com>
20401 * metadata.c (mono_type_create_from_typespec_full): Fix caching of types.
20403 2006-01-25 Ankit Jain <jankit@novell.com>
20405 * metadata-internals.h (mono_generic_params_with_ambiguous_names): Add declaration and
20406 move definition to ..
20407 * metadata.c (mono_generic_params_with_ambiguous_names): .. here.
20409 2006-01-25 Ankit Jain <jankit@novell.com>
20410 Raja R Harinath <rharinath@novell.com>
20412 * metadata-internals.h (mono_generic_params_with_ambiguous_names): New.
20413 * metadata.c (mono_metadata_load_generic_params): Fill mono_generic_params_with_ambiguous_names
20416 2006-01-25 Martin Baulig <martin@ximian.com>
20418 * mono-debug-debugger.h: Moved `MonoDebuggerManager' and
20419 `MonoDebuggerThread' into debug-debugger.c.
20421 Tue Jan 24 18:53:35 CET 2006 Paolo Molaro <lupus@ximian.com>
20423 * profiler.c: fix printing of data.
20425 2006-01-24 Atsushi Enomoto <atsushi@ximian.com>
20427 * object.c, marshal.c : Fixed runtime part of bug #77315. Reject
20428 invalid surrogate in UTF7/UTF8 bytes and don't return NULL.
20430 Tue Jan 24 09:56:16 CET 2006 Paolo Molaro <lupus@ximian.com>
20432 * object.c: fix deadlock related to string interning.
20434 2006-01-23 Martin Baulig <martin@ximian.com>
20436 * mono-debug-debugger.h (MonoDebuggerIOLayer): Removed.
20438 * mono-debug-debugger.c (mono_debugger_io_layer): Removed.
20440 2006-01-23 Martin Baulig <martin@ximian.com>
20442 * mono-debug.h: Moved the prototypes of some functions which are
20443 used by the JIT here from mono-debug-debugger.h.
20445 2006-01-21 Martin Baulig <martin@ximian.com>
20447 * Makefile.am: Don't install mono-debug-debugger.h.
20449 2006-01-21 Martin Baulig <martin@ximian.com>
20451 * mono-debug-debugger.h: Enforce the private status of this header
20452 file and removed unneccessary #include's in metadata/*.c and mini/*.c.
20453 Moved some stuff from mono-debugger-jit-wrapper.h here.
20455 2006-01-20 Raja R Harinath <rharinath@novell.com>
20457 * class.c (mono_class_from_typeref): Add a sanity test to help
20458 catch lack of assembly load/search hooks.
20460 2006-01-19 Zoltan Varga <vargaz@gmail.com>
20462 * marshal.c (emit_struct_conv): Relax the fields with same offset
20463 check even more. Fixes #77230.
20465 2006-01-18 Martin Baulig <martin@ximian.com>
20467 * loader.c (find_method_in_class): Added `gboolean is_inflated'
20468 argument; if false, we compare the uninstantiated signatures.
20469 (method_from_memberref): Compare the uninstantiated signatures;
20472 2006-01-18 Robert Jordan <robertj@gmx.net>
20474 * boehm-gc.c, null-gc.c (mono_gc_weak_link_remove):
20475 Clear the weak link. Fixes bug #77170.
20477 * gc.c (mono_gchandle_free):
20478 Reflect *-gc.c changes (tiny optimization).
20480 2006-01-18 Zoltan Varga <vargaz@gmail.com>
20482 * metadata.c (mono_metadata_signature_dup): Applied patch from
20483 Aras Pranckevicius (aras@otee.dk). Fix crash when compiled with MSVC.
20486 2006-01-17 Zoltan Varga <vargaz@gmail.com>
20488 * marshal.c (emit_struct_conv): Allow fields with the same offset when
20489 marshalling from native to managed code. Fixes #77230.
20491 2006-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20493 * threadpool.c: fix problem (Mac only) when more than one asynchronous
20494 connect. Fixes bug #77020.
20496 Mon Jan 16 19:20:43 CET 2006 Paolo Molaro <lupus@ximian.com>
20498 * class.c: fixed id assignement for nested interfaces (bug #77275).
20499 Added also better info for --print-vtable debugging.
20501 2006-01-12 Martin Baulig <martin@ximian.com>
20503 * icall.c (ves_icall_MonoGenericClass_GetInterfaces): Inflate the
20504 interfaces on-the-fly; fixes #76625.
20506 * class-internals.h
20507 (MonoDynamicGenericClass): Removed `ifaces' and `count_ifaces'; we
20508 don't need that anymore.
20510 2006-01-12 Miguel de Icaza <miguel@novell.com>
20513 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
20514 To avoid initing the nested_classes when not needed I turned the
20515 PeerCredData as a toplevel internal class, as it has to be shared
20518 Fixes the CASA issue.
20520 2006-01-11 Ben Maurer <bmaurer@andrew.cmu.edu>
20522 * domain.c: Accessors for MonoJitInfo
20524 * profiler-private.h: Add jitinfo to the end jit hook
20526 * profiler.[ch]: Define new hooks, called after jitting which give
20527 the MonoJitInfo that was compiled
20529 2006-01-10 Martin Baulig <martin@ximian.com>
20531 * class.c (mono_class_setup_events): Add support for generic
20532 classes; fixes #76440.
20534 2006-01-06 Raja R Harinath <rharinath@novell.com>
20537 * icall.c (ves_icall_InternalInvoke): Use mono_get_inflated_method
20538 on passed-in method.
20540 2006-01-03 Zoltan Varga <vargaz@gmail.com>
20542 * object.c (mono_runtime_invoke_array): Add Nullable support.
20544 * icall.c (ves_icall_System_Activator_CreateInstanceInternal): Ditto.
20546 2006-01-03 Sebastien Pouliot <sebastien@ximian.com>
20548 * file-io.c: Don't consider sockets as directory and avoid an endless
20549 loop. Fix bug #76966.
20551 2006-01-03 Zoltan Varga <vargaz@gmail.com>
20553 * object.c (mono_nullable_init): New helper function.
20554 (mono_nullable_box): Ditto.
20556 * marshal.c (mono_marshal_get_runtime_invoke): Handle Nullables.
20558 * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle Nullables.
20560 * icall.c (ves_icall_MonoField_GetValueInternal): Handle Nullables.
20562 2006-01-02 Zoltan Varga <vargaz@gmail.com>
20564 * class.c (mono_class_is_assignable_from): Make T assignable to
20567 2005-12-23 Sebastien Pouliot <sebastien@ximian.com>
20569 * appdomain.c: Bump corlib version to 46.
20570 * icalls.c: Renamed CurrentTimeZone to CurrentSystemTimeZone (for
20571 serialization purpose) and changed ves_icall_System_Reflection_
20572 Assembly_get_code_base signature to accept a boolean (to escape, or
20573 not, the assembly code base).
20575 2005-12-23 Dick Porter <dick@ximian.com>
20579 * threads.c: Added OpenMutex, OpenSemaphore and OpenEvent icalls.
20580 CreateEvent icall now returns "created" boolean parameter.
20582 2005-12-22 Zoltan Varga <vargaz@gmail.com>
20584 * marshal.c (mono_mb_emit_restore_result): Add generics support. Fixes
20587 * reflection.c (mono_custom_attrs_construct_by_type): Handle the case
20588 when attr_klass is an interface. Fixes #77045.
20590 2005-12-20 Zoltan Varga <vargaz@gmail.com>
20592 * marshal.c (emit_struct_conv): Fix previous patch.
20594 * marshal.c (emit_struct_conv): Add a check for fields with the same
20597 2005-12-20 Raja R Harinath <rharinath@novell.com>
20599 Fix regression in Mono.C5.
20600 * class.c (mono_class_create_generic): If 'klass' is an interface
20601 set up the interface offsets.
20602 (mono_class_is_assignable_from): Don't throw away generic arguments.
20604 2005-12-19 Raja R Harinath <rharinath@novell.com>
20606 * icall.c (ves_icall_System_MonoType_getFullName): Return NULL for
20609 2005-12-15 Raja R Harinath <rharinath@novell.com>
20611 * metadata.c (mono_metadata_parse_method_signature_full): Remove a
20613 (do_mono_metadata_parse_generic_class): Don't pass the current
20614 generic context when parsing the type being instantiated: it
20615 cannot use it, anyway.
20617 * loader.c (method_from_memberref): Don't inflate a signature if
20618 it doesn't contain any type parameters.
20620 2005-12-15 Zoltan Varga <vargaz@gmail.com>
20622 * class.c (mono_class_setup_vtable): Call mono_reflection_get_dynamic_overrides () to get the overrides in dynamic assemblies.
20624 2005-12-14 Martin Baulig <martin@ximian.com>
20627 (mono_type_get_name_recurse): Don't return null for type
20628 parameters and open generic classes.
20629 (mono_class_setup_methods): Don't exclude generic instances.
20630 (mono_get_unique_iid): Use different IDs for different
20631 instantiations of the same generic type.
20632 (mono_class_setup_vtable): Only use setup_generic_vtable() for
20633 open generic instances; create a normal vtable for closed generic
20635 (mono_class_setup_vtable_general): We're now also called for
20636 closed generic instances.
20639 (mono_reflection_bind_generic_parameters): Correctly use
20640 mono_metadata_lookup_generic_inst() everywhere.
20642 2005-12-14 Zoltan Varga <vargaz@gmail.com>
20644 * object.c (mono_class_create_runtime_vtable): Call
20645 mono_class_setup_vtable ().
20647 * reflection.c (mono_reflection_get_dynamic_overrides): New helper
20649 (ensure_runtime_vtable): Initialize the generic vtable lazily. Fixes
20652 * loader.c (mono_loader_set_error_type_load): Print the type load
20653 warnings to the console so they are more visible to the user.
20654 (mono_loader_set_error_method_load): Ditto.
20656 * reflection.c (ensure_runtime_vtable): Revert the last change as it
20659 * reflection.c (ensure_runtime_vtable): Fix build.
20661 * reflection.c (ensure_runtime_vtable): Disable an optimization which
20662 doesn't work in all cases.
20664 2005-12-13 Zoltan Varga <vargaz@gmail.com>
20666 * object.c (mono_array_new_full): Treat a single dimensional array
20667 with 0 lower bounds as an szarray. Fixes #76973.
20669 * reflection.c (custom_attr_visible): Really fix this.
20671 2005-12-12 Zoltan Varga <vargaz@gmail.com>
20673 * reflection.c (custom_attr_visible): Allow nested public attributes
20676 * class.c (mono_class_setup_vtable_general): Add missing != -1 to an
20679 2005-12-12 Raja R Harinath <harinath@gmail.com>
20681 * class.c (set_generic_param_owner): Delete.
20682 (mono_class_create_from_typedef): Don't set ->owner field of
20683 generic parameters to "param containers" of enclosing classes.
20684 * reflection.c (mono_reflection_initialize_generic_parameter):
20687 2005-12-11 Zoltan Varga <vargaz@gmail.com>
20689 * reflection.c (custom_attr_visible): Fix build.
20691 2005-12-10 Zoltan Varga <vargaz@gmail.com>
20693 * reflection.c (mono_custom_attrs_from_builders): Avoid returning
20694 private attributes.
20696 * reflection.c (reflection_methodbuilder_to_mono_method): Fix
20697 handling of null parameter defaults.
20699 2005-12-09 Raja R Harinath <rharinath@novell.com>
20701 * class.c (mono_class_from_generic_parameter): Don't set
20702 klass->generic_container.
20703 (my_mono_class_from_generic_parameter): Likewise.
20705 2005-12-07 Zoltan Varga <vargaz@gmail.com>
20707 * reflection.c (load_public_key): Fix a warning.
20708 (method_encode_code): Fix unaligned accesses.
20710 2005-12-07 Martin Baulig <martin@ximian.com>
20712 * object-internals.h (MonoReflectionGenericParam): Added `cattrs'.
20715 (write_generic_param_entry): Encode our custom attrs.
20717 * appdomain.c (MONO_CORLIB_VERSION): Bump to 45.
20719 2005-12-07 Martin Baulig <martin@ximian.com>
20721 * reflection.c (encode_new_constraint): Removed; we don't use the
20722 `NewConstraintAttribute' anymore.
20724 2005-12-06 Zoltan Varga <vargaz@gmail.com>
20726 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType): Do
20727 not fire a TypeResolve event when Assembly.GetType () is called.
20729 2005-12-05 Ben Maurer <bmaurer@ximian.com>
20731 Beginning of support for nullable types in the runtime. Parts of
20732 this patch are from Martin.
20734 * appdomain.c (MONO_CORLIB_VERSION): Bump
20736 * domain.c (mono_init_internal): get the nullable type
20738 * class.c (mono_class_is_nullable): New method
20739 (mono_class_get_nullable_param): New mehod
20740 (mono_class_create_generic): In types T? set cast_class to T
20742 * class-internals.h (MonoDefaults): new nullable default class
20743 (mono_class_get_nullable_param, mono_class_get_nullable_param):
20746 2005-12-05 Raja R Harinath <rharinath@novell.com>
20748 * metadata.c (select_container): New. Refactor code to select the
20749 appropriate GenericContainer given the type of generic parameter
20750 we are looking for.
20751 (mono_metadata_parse_generic_param): Take a MonoGenericContainer,
20752 not a MonoGenericContext. Use select_container. Update parameters.
20753 (do_mono_metadata_parse_type): Combine the code for MONO_TYPE_VAR
20754 and MONO_TYPE_MVAR.
20755 (unwrap_arrays): Remove duplicate tests.
20756 (find_generic_param): Rename from 'has_same_context'. Now walks a
20757 generic instantiated class to find any arguments that are generic
20759 (mono_type_create_from_typespec_full): Use find_generic_param to
20760 avoid evicting some generic instantiations from the typespec
20763 Mon Dec 5 15:07:42 GMT 2005 Paolo Molaro <lupus@ximian.com>
20765 * reflection.c: fixed writing of doubles on ARM FPA.
20767 2005-12-02 Robert Jordan <robertj@gmx.net>
20769 * icall.c: Fixed EventInfo.ReflectedType (#76829).
20771 2005-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20773 * filewatcher.c: try loading libgamin-1.so.0 before libfam, since at
20774 least on SUSE 10 they are not the same (on debian, they are just the
20777 2005-12-01 Raja R Harinath <rharinath@novell.com>
20779 * icall.c (ves_icall_MonoType_get_DeclaringType): Implement
20780 DeclaringType for VARs and MVARs.
20781 * class.c (set_generic_param_owner): Fix initialization of owner
20784 Wed Nov 30 15:48:22 CET 2005 Paolo Molaro <lupus@ximian.com>
20786 * icall.c: fixed Enum.ToObject() to correctly convert the values.
20788 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20790 * threadpool.c: workaround for a bug that shows up on the Mac:
20791 select()+connect() on a blocking socket is not like it should
20792 be, so we proceed to connect() in that case, wasting the I/O
20793 threadpool thread until connect succeedes. Fixes bug #75436.
20795 2005-11-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
20797 * threadpool.c: fix typo when setting file descriptor states.
20799 2005-11-28 Raja R Harinath <rharinath@novell.com>
20801 * class-internals.h (MonoGenericContainer.is_signature): Remove.
20802 * metadata.c (mono_metadata_parse_method_signature_full): Don't
20803 create a temporary signature container.
20804 (mono_metadata_parse_generic_param): Update to changes.
20805 (mono_type_create_from_typespec_full): Update to changes.
20806 * loader.c (method_from_memberref): Don't use a
20807 MonoGenericContainer while parsing a memberref signature.
20808 (method_from_methodspec): Remove dead-store of the 'container'
20809 variable. It's overwritten before use.
20811 * metadata.c (mono_type_create_from_typespec_full): Make debugging
20813 (mono_metadata_parse_generic_param): Likewise.
20814 * loader.c (find_method_in_class): Does not need a
20815 MonoGenericContainer. Use 'mono_method_signature' rather than
20816 'mono_method_signature_full'.
20817 (find_method, mono_get_method_constrained, method_from_memberref):
20820 * metadata.c (mono_type_create_from_typespec_full): Ensure that
20821 owner-less generic-parameters are never evicted from the typespec
20824 * loader.c (method_from_memberref): Don't use the current context
20825 when parsing signatures.
20826 (method_from_methodspec, mono_get_method_from_token): Update to changes.
20828 * metadata.c (do_mono_metadata_parse_generic_class): Avoid
20829 side-effects in g_assert.
20830 * loader.c (mono_get_method_from_token): Resolve klass earlier so
20831 that we don't potentially lose information.
20833 2005-11-26 Dick Porter <dick@ximian.com>
20836 * threads.c: icalls to implement basic (ie, not named)
20837 System.Threading.Semaphore.
20839 2005-11-24 Dick Porter <dick@ximian.com>
20842 (ves_icall_System_Diagnostics_Process_ShellExecuteEx_internal):
20843 Use GetProcessId() if it's available.
20845 2005-11-23 Zoltan Varga <vargaz@gmail.com>
20847 * icall.c threads-types.h threads.c: Add Exchange<T> icall.
20849 2005-11-23 Raja R Harinath <rharinath@novell.com>
20850 Ankit Jain <jankit@novell.com>
20852 * loader.c (mono_get_method_from_token): Initialize 'method' field
20853 of all generic parameters before parsing the signature. Remove
20854 code that "fixed"-up MVAR references.
20856 2005-11-23 Ankit Jain <jankit@novell.com>
20858 * metadata.c (mono_metadata_has_generic_params):
20859 (mono_metadata_load_generic_param_constraints):
20860 (mono_metadata_load_generic_params): Move duplicate code ...
20861 (mono_metadata_get_generic_param_row): ... here. Returns the
20862 first row-id in GenericParam table for a given owner (token).
20863 * metadata-internals.h (mono_metadata_get_generic_param_row): Add
20866 2005-11-23 Raja R Harinath <rharinath@novell.com>
20867 Ankit Jain <jankit@novell.com>
20869 * metadata.c (mono_metadata_class_equal): Pass signature_only when
20870 comparing VARs too.
20871 * icall.c (ves_icall_MonoType_get_DeclaringMethod): Look at
20872 type->data.generic_param only if the type is an MVAR.
20873 (ves_icall_MonoMethod_GetGenericArguments): Ensure that we don't
20874 leak owner-less VARs and MVARs into managed space.
20876 2005-11-21 Martin Baulig <martin@ximian.com>
20878 * class-internals.h
20879 (MonoMethod): Moved the `generic_container' here from
20880 `MonoMethodNormal' since we now also need it for
20881 `MonoMethodPInvoke';
20882 (MonoMethodNormal): Moved the `generic_container' to `MonoMethod'.
20883 (MonoMethodInflated): Replaced the `MonoMethodNormal nmethod' with
20884 an union containing both `MonoMethodNormal' and
20885 `MonoMethodPInvoke'.
20888 (mono_get_method_from_token): Allow implementing generic methods
20892 (ves_icall_System_Threading_Interlocked_CompareExchange_T): New
20895 2005-11-17 Dick Porter <dick@ximian.com>
20899 * process.c: Split the Process Start_internal icall into
20900 ShellExecuteEx_internal and CreateProcess_internal, which are
20901 called depending on whether UseShellExecute is true. Fixes bug
20904 * appdomain.c (MONO_CORLIB_VERSION): Incremented
20906 2005-11-17 Zoltan Varga <vargaz@gmail.com>
20908 * marshal.c (emit_ptr_to_object_conv): Get rid of the 'usize' and
20909 'msize' parameters, use the information in 'mspec' instead.
20910 (emit_object_to_ptr_conv): Ditto.
20912 * marshal.c (emit_struct_conv): Handle explicit layout structs with
20913 fields out of order. Fixes #76733.
20915 2005-11-17 Ankit Jain <jankit@novell.com>
20917 * metadata.c (mono_type_create_from_typespec_full): Remove unnecessary g_assert.
20919 2005-11-16 Atsushi Enomoto <atsushi@ximian.com>
20921 * icall.c : renamed MakeGenericMethod -> MakeGenericMethod_impl for
20924 2005-11-16 Zoltan Varga <vargaz@gmail.com>
20926 * object.c (mono_class_compute_gc_descriptor): Disable typed allocation
20927 for types with non-auto layout. Fixes #76717.
20929 2005-11-16 Ankit Jain <jankit@novell.com>
20931 * class.c (my_mono_class_from_generic_parameter): param->owner can be null.
20932 * metadata.c (mono_metadata_parse_generic_param): Create a dummy MonoGenericParam
20933 if generic_context is null.
20934 (mono_metadata_generic_param_equal): param->owner can be null.
20935 (mono_type_create_from_typespec_full): Don't cache the MonoType if param->owner is
20938 2005-11-16 Zoltan Varga <vargaz@gmail.com>
20940 * reflection.c (create_dynamic_mono_image): Set md_version_minor to
20943 2005-11-15 Martin Baulig <martin@ximian.com>
20945 * object.c (set_value): Use mono_class_from_mono_type() instead of
20946 the hack for generic instances; fixes #76136.
20948 2005-11-15 Zoltan Varga <vargaz@gmail.com>
20950 * metadata-internals.h (_MonoImage): Add 'md_version_major/minor'
20953 * image.c (load_metadata_ptrs): Initialize the new fields.
20955 * reflection.c (create_dynamic_mono_image): Ditto.
20957 * reflection.c (build_compressed_metadata): Use the new fields.
20959 * icall.c (ves_icall_System_Reflection_Module_get_MDStreamVersion): New
20962 * icall.c (mono_assembly_icalls): Remove obsolete get_MetadataToken
20965 2005-11-15 Ankit Jain <jankit@novell.com>
20966 Raja R Harinath <harinath@gmail.com>
20968 * class-internals.h (_MonoGenericContainer.types): New. Cache for MonoTypes.
20969 * metadata.c (mono_type_create_from_typespec_full): Use MonoType from the
20970 new per-generic_container cache if the cached MonoType's context matches
20971 the current context.
20972 (has_same_context): New. Check if the VARs or MVARs in a GENERIC_INST refer
20973 to the expected context.
20974 (unwrap_arrays): New. Get the element MonoType for an ARRAY/SZARRAY.
20976 2005-11-14 Carlos Alberto Cortez <calberto.cortez@gmail.com>
20978 * appdomain.c: Update MONO_CORLIB_VERSION to 42, since
20979 we changed the signature of an icall.
20980 * icall.c: Modify to mono_double_ParseImpl return true/false
20981 depending on the success, instead of throwing the exception. This will
20982 help us in Double.TryParse methods.
20984 2005-11-14 Zoltan Varga <vargaz@gmail.com>
20986 * marshal.c (emit_marshal_object): Throw an exception when
20987 marshalling 'object' instead of crashing. Fixes #76696.
20989 2005-11-11 Zoltan Varga <vargaz@gmail.com>
20991 * class-internals.h: Add prototype for mono_type_get_full_name ().
20993 2005-11-11 Dick Porter <dick@ximian.com>
20995 * threads.c (mono_thread_manage): Make sure the main thread has
20996 abandoned all its mutexes when cleaning up. Fixes bug 74680.
20998 2005-11-11 Zoltan Varga <vargaz@gmail.com>
21000 * loader.c (mono_loader_set_error_type_load): Log a warning to the
21001 console about the missing type.
21002 (mono_loader_set_error_method_load): Ditto.
21004 2005-11-09 Miguel de Icaza <miguel@novell.com>
21006 * mono-config.c (mono_get_config_dir): Set the system defaults if
21009 * assembly.c (mono_set_dirs): New API entry point to set the
21010 assembly and the config directory in one call
21012 2005-11-09 Zoltan Varga <vargaz@gmail.com>
21014 * marshal.c (mono_ftnptr_to_delegate): Throw a NotSupportedException if
21015 the ftnptr was created from a delegate in a domain other than the
21016 current domain. Fixes #75377.
21018 * exception.h exception.c: Add mono_get_exception_not_supported ().
21020 2005-11-08 Martin Baulig <martin@ximian.com>
21022 * mono-debug.h (MONO_DEBUGGER_VERSION): Bump to 53.
21024 2005-11-07 Sebastien Pouliot <sebastien@ximian.com>
21026 * security-manager.h: Added definitions to deal with strongname key
21027 pairs bigger (and smaller) than 1024 bits.
21028 * reflection.c: Remove hardcoded strongname size (128 bytes) and
21029 adjust wrt the public key length being used.
21031 2005-11-03 Atsushi Enomoto <atsushi@ximian.com>
21033 * marshal.c, icall.c : reverted sig->pinvoke changes which broke
21034 Windows build (r51396-51397).
21036 2005-11-03 Martin Baulig <martin@ximian.com>
21038 * class.c (mono_class_setup_vtable_general): Also add generic
21039 methods to the vtable; fixes #76581.
21041 2005-11-01 Miguel de Icaza <miguel@novell.com>
21043 * string-icalls.c (ves_icall_System_String_ctor_encoding): Make
21044 sure that we lookup GetString method from the System.Text.Encoding
21045 class, not the derived class or we get an empty method.
21047 Fixed class #76612.
21049 2005-10-25 Miguel de Icaza <miguel@novell.com>
21051 * assembly.c (mono_assemblies_init): Do not set the Mono root dir
21052 if it has been previously set (embedders).
21054 Make mono_set_rootdir available also on Unix.
21056 005-10-24 Robert Jordan <robertj@gmx.net>
21058 * assembly.c: fixed MONO_ASSEMBLIES to be NULL on cygwin as well.
21060 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
21062 * marshal.c icall.c: Clean up the usage of sig->pinvoke flag. Now
21063 only calls which are made to native code use this flag.
21065 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): Remove the check for FieldBuilders as it is now done in managed code.
21067 2005-10-29 Zoltan Varga <vargaz@freemail.hu>
21069 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
21070 Add support for FieldBuilders.
21072 2005-10-29 Martin Baulig <martin@ximian.com>
21075 (mono_debug_using_mono_debugger): New public method; returns
21076 whether we're running inside the debugger.
21078 2005-10-27 Zoltan Varga <vargaz@gmail.com>
21080 * reflection.c (mono_reflection_get_custom_attrs_info): Add support
21081 for Method/Constructor/FieldBuilders.
21083 2005-10-26 Zoltan Varga <vargaz@gmail.com>
21085 * reflection.c (module_add_cattrs): Save custom attributes for global methods
21086 and fields as well.
21088 2005-10-26 Martin Baulig <martin@ximian.com>
21090 * mono-debug-debugger.c
21091 (MonoDebuggerMetadataInfo): Added `klass_parent_offset'.
21093 2005-10-24 Raja R Harinath <harinath@gmail.com>
21095 * icall.c (base64_to_byte_array): Don't pass an out-of-range
21096 integer to isspace.
21098 2005-10-21 Zoltan Varga <vargaz@gmail.com>
21100 * marshal.c (emit_marshal_vtype): Correctly handle [In,Out] modifiers
21101 when passing valuetypes byref. Fixes #76502.
21103 2005-10-19 Jackson Harper <jackson@ximian.com>
21105 * profiler.c: Don't put a . in front of types that are not in a
21108 2005-10-18 Zoltan Varga <vargaz@gmail.com>
21110 * icall.c (ves_icall_Type_GetField): Applied patch from Robert Jordan (robertj@gmx.net). Fixes #75515.
21112 2005-10-15 Zoltan Varga <vargaz@freemail.hu>
21114 * marshal.c: Add generics support to the ldfld/stfld wrappers. Fixes
21116 (mono_marshal_get_ldflda_wrapper): Fix a warning.
21118 2005-10-13 Carlos Alberto Cortez <calberto.cortez@gmail.com>
21120 * assembly.c metadata-internals.h icall.c: Define an additional
21121 parameter for mono_assembly_name_parse_full, so we can avoid creating
21122 S.R.AssemblyName.Version when no version info wasn't passed.
21124 2005-10-09 Miguel de Icaza <miguel@novell.com>
21126 * class.c (mono_type_get_full_name): Reimplement method that was
21129 * image.c: Some docs
21131 2005-10-10 Zoltan Varga <vargaz@gmail.com>
21133 * profiler.c (output_newobj_profile): Fix printing of Total memory
21136 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
21138 * profiler.c: Add support for allocations > 2GB. Fixes #74886.
21140 2005-10-08 Gert Driesen <drieseng@users.sourceforge.net>
21142 * threads.c: remove debug output.
21144 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
21146 * threads.c (mono_thread_manage): Fix crashes if more than 64
21147 threads need to be aborted. Hopefully fixes #75899.
21149 * assembly.c (mono_stringify_assembly_name): New helper function.
21151 * class.c: Use mono_stringify_assembly_name instead of the similar
21154 * assembly.h assembly.c: Add support for calling a postload search
21155 hook if an assembly cannot be loaded.
21157 * appdomain.c: Register new search hooks which call the AssemblyResolve
21158 events in AppDomain. Fixes #75231
21160 2005-10-07 Martin Baulig <martin@ximian.com>
21162 * mono-debug.c (mono_debug_add_method): Create a wrapper entry for
21163 methods without debug info.
21165 2005-10-07 Zoltan Varga <vargaz@gmail.com>
21167 * class-internals.h debug-helpers.c marshal.h marshal.c: Add ldflda
21170 2005-10-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21172 * file-io.c: now that we return symlinks, use lstat and, when the file
21173 is a symbolic link, stat, to get the file attributes. Also avoid the
21174 conversion to/from utf16/external.
21176 2005-10-06 Zoltan Varga <vargaz@gmail.com>
21178 * class.c (mono_class_layout_fields): Compute klass->has_references
21179 correctly if an embedded valuetype is not yet initialized. Fixes
21182 2005-10-04 Martin Baulig <martin@ximian.com>
21185 (mono_metadata_load_generic_param_constraints): New public
21186 function; splitted the constraints loading out from
21187 mono_metadata_load_generic_params().
21189 * class.c (mono_class_create_from_typedef): Call
21190 mono_metadata_load_generic_param_constraints() after setting up
21191 the type and creating our parent; fixes #75329.
21193 2005-10-04 Martin Baulig <martin@ximian.com>
21195 * icall.c (ves_icall_MonoGenericClass_GetParentType): Allow
21196 non-dynamic parent classes.
21198 2005-10-04 Atsushi Enomoto <atsushi@ximian.com>
21200 * file-io.c : win32 build fix (ETXTBSY seems not found).
21202 2005-10-04 Martin Baulig <martin@ximian.com>
21205 (mono_image_get_methodspec_token): Make the cache actually work;
21208 2005-10-04 Martin Baulig <martin@ximian.com>
21210 * class.c (mono_class_name_from_token): Removed the unneccessary
21211 `MonoGenericContext *' argument.
21213 2005-10-04 Martin Baulig <martin@ximian.com>
21216 (method_from_methodspec): Make the caching work again; fixes the
21217 performance regression from #76262.
21219 2005-10-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21223 * icall.c: replace FindFirst/FindNext/FindClose calls with a new
21224 GetFileSystemEntries that performs the same work but without going
21225 into io-layer, locking, etc.
21227 2005-09-30 Zoltan Varga <vargaz@gmail.com>
21229 * threads.c (ves_icall_System_Threading_Thread_Abort): Handle
21230 ThreadState_Stopped as well. Fixes #76047.
21232 2005-09-29 Martin Baulig <martin@ximian.com>
21235 (inflate_generic_context): If the new context has a `gmethod', set
21236 its `container' that that gmethod's `container'.
21239 (mono_metadata_parse_generic_param): Simplify things;
21240 `generic_container = generic_context->container;' is just fine.
21242 * loader.c (method_from_methodspec): Code cleanups.
21244 Wed Sep 28 17:06:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
21246 * decimal.c: fix warning (and let gcc generate correct
21247 code on ARM with optimizations).
21249 2005-09-28 Martin Baulig <martin@ximian.com>
21252 (method_from_memberref): Added `MonoGenericContext *class_context'
21253 argument; this is used when parsing a MONO_MEMBERREF_PARENT_TYPESPEC.
21254 (method_from_methodspec): If we're a memberref, use the enclosing
21255 context when parsing its parent. Fixes #76262; see gtest-206.cs.
21257 2005-09-28 Martin Baulig <martin@ximian.com>
21259 * object.c (mono_runtime_invoke_array): Added support for
21260 MONO_TYPE_GENERICINST; fixes #75917.
21262 2005-09-27 Martin Baulig <martin@ximian.com>
21264 * reflection.c (encode_type): For `MONO_TYPE_CLASS/VALUETYPE', use
21265 `k->byval_arg.type' to determine the actual type.
21267 * loader.c (method_from_methodspec): Removed some hacks.
21269 2005-09-27 Ben Maurer <bmaurer@ximian.com>
21271 * class-internals.h (mono_field_is_deleted): Do the test for
21272 rtspecialname before we check the actual name of the field. This
21273 prevents us from dereferencing a pointer into the string table,
21274 saving us from accessing a few pages
21276 * *.c: Replace the use of {Enter,Leave}CriticalSection with
21277 macros. This will allow a deadlock debugger to easily be plugged
21280 2005-09-27 Martin Baulig <martin@ximian.com>
21282 * loader.c (method_from_methodspec): Create a "signature"
21283 MonoGenericContainer and use mono_get_method_full(). Fixes #75584.
21285 2005-09-27 Martin Baulig <martin@ximian.com>
21288 (inflate_generic_class): Correctly set the new context's
21292 (find_method, find_method_in_class): Take a `MonoGenericContainer *'
21293 instead of a `MonoGenericContext *'.
21294 (mono_method_signature_full): Take a `MonoGenericContainer *'
21295 instead of a `MonoGenericContext *'.
21298 (mono_metadata_parse_signature_full): Take a `MonoGenericContainer *'
21299 instead of a `MonoGenericContext *'.
21300 (mono_metadata_parse_method_signature_full): Likewise.
21302 2005-09-26 Martin Baulig <martin@ximian.com>
21305 (mono_class_from_generic_parameter): Set `klass->generic_container'
21306 (mono_class_from_generic_parameter): Likewise.
21307 (mono_bounded_array_class_get): We inherit the generic container
21308 from the element class.
21311 (find_method, find_method_in_class): Take a `MonoGenericContext *'
21312 argument rather than computing it here.
21313 (method_from_memberref): Correctly set the generic context before
21314 parsing the signature. Fixes #75681.
21316 2005-09-26 Zoltan Varga <vargaz@gmail.com>
21318 * object.c (mono_class_has_special_static_fields): Fix warnings.
21320 2005-09-26 Carlos Alberto Cortez <calberto.cortez@gmail.com>
21322 * assembly.c: Add parse_public_key function, to
21323 par the public keys. Also added mono_assembly_name_parse_full,
21324 to define it the parsed key should be freed or not.
21325 * icall.c: Added ves_icall_System_Reflection_AssemblyName_ParseName,
21326 to parse a long format assembly name.
21327 * metadata-internals.h: Keep mono_assembly_name_parse_full as
21328 private, since calling it to preserve the key requires
21329 freeing it manually.
21331 2005-09-26 Atsushi Enomoto <atsushi@ximian.com>
21333 * locales.c : removed HAVE_ICU part.
21335 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
21337 * object.c (mono_class_create_runtime_vtable): Avoid calling
21338 field_is_special_static if the klass has no special static fields.
21340 * class-internals.h (MonoClass): Add 'no_special_static_fields' flag.
21341 (MonoCachedClassInfo): Likewise.
21343 * object.c (mono_class_has_special_static_fields): New helper function.
21345 2005-09-23 Zoltan Varga <vargaz@gmail.com>
21347 * class.c (mono_class_create_from_typedef): Don't call
21348 interfaces_from_typedef_full for enums.
21349 (mono_class_create_from_typedef): Compute the base types of enums directly
21350 without calling mono_class_setup_fields ().
21351 (mono_class_find_enum_basetype): New helper function.
21353 * reflection.c (mono_image_build_metadata): Emit type names+namespaces at
21354 one place inside the string heap.
21356 Fri Sep 23 19:37:46 CEST 2005 Paolo Molaro <lupus@ximian.com>
21358 * class.c: locking fixes, code cleanups, some docs added.
21359 Allocate some data structures in the image mempool.
21361 2005-09-23 Zoltan Varga <vargaz@gmail.com>
21363 * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21366 Fri Sep 23 18:27:02 CEST 2005 Paolo Molaro <lupus@ximian.com>
21368 * class-internals.h, class.c, reflection.c: reduce memory taken by
21371 Fri Sep 23 17:56:21 CEST 2005 Paolo Molaro <lupus@ximian.com>
21373 * metadata.c, metadata.h, loader.h: documentation updates, code and
21376 2005-09-23 Zoltan Varga <vargaz@gmail.com>
21378 * rawbuffer.c: Remove unneccessary set_n_pagefaults () routine and update
21381 * rawbuffer.h rawbuffer.c: Add code and APIs to help determine the number of
21382 page faults caused by the runtime while reading metadata.
21384 2005-09-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21386 * socket-io.c: the field names were changed 3 months ago and no one
21387 realized until bug #76077 got filed!
21389 2005-09-20 Martin Baulig <martin@ximian.com>
21391 * icall.c (assembly_icalls): Removed some unused debugger icalls.
21393 2005-09-20 Martin Baulig <martin@ximian.com>
21395 * mono-debug.c (mono_debug_add_type): Ignore array types and don't
21396 write the rank into the class entry.
21398 2005-09-20 Martin Baulig <martin@ximian.com>
21400 * mono-debug-debugger.c (MonoDebuggerMetadataInfo): Added some stuff.
21402 2005-09-19 Zoltan Varga <vargaz@gmail.com>
21404 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21406 * icall.c (custom_attrs_defined_internal): New icall.
21408 * reflection.c (mono_reflection_get_custom_attrs_by_type): New helper
21410 (mono_custom_attrs_construct_by_type): New helper function.
21412 2005-09-17 Zoltan Varga <vargaz@freemail.hu>
21414 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): Null
21415 terminate the resulting string. Fixes #76123.
21417 2005-09-16 Martin Baulig <martin@ximian.com>
21420 (mono_debug_add_method): Ignore inflated methods for the moment.
21422 2005-09-14 Martin Baulig <martin@ximian.com>
21424 * debug-mono-symfile.h (MONO_SYMBOL_FILE_VERSION): Bump version to 39.
21426 2005-09-13 Zoltan Varga <vargaz@gmail.com>
21428 * metadata.c (mono_class_get_overrides_full): Modify signature to explicitly
21429 return a success/failure indication.
21430 (mono_metadata_interfaces_from_typedef_full): Ditto.
21431 (get_constraints): Ditto.
21433 2005-09-12 Zoltan Varga <vargaz@gmail.com>
21435 * marshal.c (emit_marshal_array): Fix handling of null arrays.
21437 * marshal.c (emit_marshal_array): Add support for returning string
21438 arrays from delegates. Fixes #76063.
21440 * marshal.c: Use the emit_ldloc/stloc macros where possible.
21442 2005-09-11 Zoltan Varga <vargaz@gmail.com>
21444 * threads.c (ves_icall_System_Threading_Thread_MemoryBarrier): New
21447 2005-09-09 Zoltan Varga <vargaz@gmail.com>
21449 * reflection.c icall.c: Fix after mono_get_exception_type_load
21452 * assembly.c (mono_assembly_get_assemblyref): New helper function.
21453 (mono_assembly_load_reference): Use the new helper.
21455 * class-internals.h (MonoLoaderError): New structure containing
21456 information about type loading errors.
21458 * class-internals.h loader.c: Add APIs to store per-thread loader
21461 * loader.c class.c: Set the loader error if needed.
21463 * exception.h exception.c: Add functions to throw MissingMethod/MissingFieldExceptions.
21465 Thu Sep 8 18:54:07 BST 2005 Paolo Molaro <lupus@ximian.com>
21467 * decimal.c: fixed to handle the broken ARM fp format.
21469 Wed Sep 7 22:17:58 BST 2005 Paolo Molaro <lupus@ximian.com>
21471 * icall.c: on ARM use the libc strtod(), since bsd_strtod() seems
21474 2005-09-06 Martin Baulig <martin@ximian.com>
21476 * domain.c (supported_runtimes): Added v2.0.50727.
21478 Tue Sep 6 11:40:24 CEST 2005 Paolo Molaro <lupus@ximian.com>
21480 * culture-info.h: reduce the size of some structures.
21482 2005-09-05 Martin Baulig <martin@ximian.com>
21484 Reflect latest API changes in the August CTP.
21487 ("Type.BindGenericParameters"): Renamed to "MakeGenericType".
21488 ("MonoType.HasGenericArguments"): Removed.
21489 ("MonoMethod.BindGenericParameters"): Renamed to
21490 "MakeGenericMethod".
21491 ("MethodBuilder.BindGenericParameters"): Renamed to
21492 "MakeGenericMethod".
21494 2005-09-05 Martin Baulig <martin@ximian.com>
21496 * mono-debug-debugger.c: Moved the debugger icalls into icall.c.
21498 2005-09-05 Martin Baulig <martin@ximian.com>
21500 Applying a patch from Michal Moskal <malekith@nemerle.org>.
21502 * icall.c (ves_icall_Type_get_IsGenericType): Return true also if
21503 generic_container is non-NULL.
21505 2005-09-05 Martin Baulig <martin@ximian.com>
21507 Applying a patch from Michal Moskal <malekith@nemerle.org>.
21509 * object.c (set_value): In MONO_TYPE_VALUETYPE, add generics support.
21511 2005-08-29 Michal Moskal <malekith@nemerle.org>
21513 * reflection.c (encode_locals,
21514 mono_reflection_sighelper_get_signature_local): Increase buffer sizes
21515 for large generic types.
21517 2005-09-05 Martin Baulig <martin@ximian.com>
21519 Applying a patch from Michal Moskal <malekith@nemerle.org>.
21521 * class.c (mono_dup_array_type): New public method.
21522 (mono_metadata_signature_deep_dup): New public method.
21523 (dup_type): Correctly duplicate array and function types.
21525 2005-09-05 Martin Baulig <martin@ximian.com>
21527 Applying a patch from Michal Moskal <malekith@nemerle.org>.
21529 * reflection.c (get_default_param_value_blobs): Handle generic types
21530 and generic methods.
21532 2005-09-02 Sebastien Pouliot <sebastien@ximian.com>
21534 * class.c: Fixed error reporting (method/class were inversed) for
21535 inheritance demands.
21536 * security-manager.c|h: Added the AppDomain when calling the managed
21537 System.Security.SecurityManager.InheritanceDemand method.
21539 2005-09-01 Raja R Harinath <rharinath@novell.com>
21541 * reflection.c (encode_marshal_blob): 'marshaltype' and
21542 'marshaltyperef' are alternate sources for the custom marshaler
21545 Wed Aug 31 17:39:54 CEST 2005 Paolo Molaro <lupus@ximian.com>
21547 * class.c: fix creation of array classes with rank == 1
21548 (patch by Ankit Jain <jankit@novell.com>).
21550 Wed Aug 31 17:35:19 CEST 2005 Paolo Molaro <lupus@ximian.com>
21552 * object.c: fix check for creating the bound data for arrays vs
21555 2005-08-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21557 * object.c: configuration file name is now based on the executable name,
21558 not the image name. Fixes bug #75931.
21560 2005-08-29 Zoltan Varga <vargaz@gmail.com>
21562 * marshal.c (emit_thread_interrupt_checkpoint_call): Load the
21563 flag using LDIND_U4 since it leads to smaller and faster code on ia64.
21565 2005-08-25 Zoltan Varga <vargaz@gmail.com>
21567 * rand.c: Use wincrypt.h instead of WinCrypt.h.
21569 2005-08-24 Ankit Jain <jankit@novell.com>
21570 Raja R Harinath <rharinath@novell.com>
21572 * class.c (mono_class_from_typeref): Don't call mono_class_init as we might've been
21573 called by it recursively.
21574 (mono_class_init): Remove special case in pending_init handling, since it's
21575 superseded by the fix to mono_class_from_typeref.
21577 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
21579 * threads.c (ves_icall_System_Threading_Thread_Thread_internal): Remove the
21580 BROKEN_THREAD_START stuff.
21582 2005-08-21 Zoltan Varga <vargaz@freemail.hu>
21584 * class-internals.h object.c: Add a new kind of trampoline called a delegate
21587 * domain-internals.h domain.c: Add a has for delegate trampolines to MonoDomain.
21589 * object.c (mono_delegate_ctor): Replace the original function address with
21590 a delegate trampoline.
21592 2005-08-21 Gert Driesen <drieseng@users.sourceforge.net>
21594 * icall.c: add boolean argument to base64_to_byte_array and
21595 InternalFromBase64String to control whether a whitespace-only string
21596 is allowed (or should casue a FormatException to be thrown). We need
21597 this as the behavior has changed between MS.NET 1.x and 2.0, and we
21598 to match the MS behaviour in both profiles.
21599 * appdomain.c: Bump corlib version.
21601 2005-08-20 Carlos Alberto Cortez <calberto.cortez@gmail.com>
21603 This patch implements a big portion of publisher policy
21604 support, used to bind assembly versions and redirect
21605 one assembly from version A to version B.
21608 New GSList loaded_assembly_bindings, for storing the cached
21610 (assembly_binding_maps_name): New static function for checking if a
21611 assembly binding information maps an assembly name.
21612 (mono_assembly_binding_info_free): New function for freeing
21613 assembly binding information resources.
21614 (get_publisher_policy_info): New static function for retrieving
21615 assembly binding information from a MonoImage.
21616 (compare_versions): New static function for comparing an assembly
21617 binding information data and the version of an assembly name.
21618 (check_policy_versions): New static function for checking if an
21619 assembly binding info mapping an assembly name is valid for it.
21620 (mono_assembly_load_publisher_policy): New static function for
21621 loading the 'policy.major.minor.MyAssembly' image for an assembly
21622 with an assembly name 'aname'.
21623 (mono_assembly_bind_version): New static function for updating
21624 assembly redirection.
21625 (mono_assembly_apply_binding): New static function for applying
21627 (search_binding_loaded): New static function for searching
21628 loaded assembly binding infos in the cache domain.
21629 (mono_assembly_load_full): Don't apply assembly binding for
21630 reflection only assemblies.
21632 * metadata-internals.h: Add MonoAssemblyBindingInfo,
21633 which contains information about assembly binding. Also
21634 declare signature for mono_config_parse_publisher_policy ()
21635 function, used to retrieve pub policy info.
21638 (publisher_policy_start): New static function used to parse publisher
21639 policy config files.
21640 (publisher_policy_parser): New static MonoParseHandler containing
21641 the functions used when parsing config files.
21642 (mono_config_parse_publisher_policy): New function for parsing
21643 publisher policy files.
21645 2005-08-20 Zoltan Varga <vargaz@freemail.hu>
21647 * object.c (mono_delegate_ctor): Add support for IA64 function descriptors.
21649 * marshal.c (mono_delegate_free_ftnptr): Ditto.
21651 * object.c (mono_get_addr_from_ftnptr): New helper function.
21653 * object.h (mono_array_addr): Fix unaligned access warnings on IA64.
21655 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
21657 2005-08-19 Dick Porter <dick@ximian.com>
21659 * threads.c, threads.h, appdomain.c, appdomain.h,
21660 profiler-private.h, monitor.c, object.c, object-internals.h,
21661 profiler.c, mono-debug-debugger.h, profiler.h: Use a gsize to
21662 store the thread ID, so it can hold a 64 bit value if needed.
21664 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
21666 * reflection.c (mono_reflection_create_dynamic_method): Store the
21667 handle class into the method references as well so ldtoken works in
21670 * icall.c (ves_icall_MonoField_GetValueInternal): Add support for generic
21673 2005-08-19 Ankit Jain <jankit@novell.com>
21676 * marshal.c (mono_marshal_get_ptr_to_struct): Build method signature
21677 here rather than using the method signature of a arbitrary function
21678 named 'System.Runtime.InteropServices.Marshal::PtrToStructure' with
21680 Hack done with Harinath.
21682 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21684 * threadpool.c: disable printing stack traces when we get a exception
21685 in a threadpool thread. I need to do more testing to figure out which
21686 cases actually print this. Fixes bug #75828.
21688 2005-08-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21690 * icall.c: there might be ignored whitespace after the last '='. This
21691 fixes length computation and bug #75840.
21693 2005-08-18 Zoltan Varga <vargaz@freemail.hu>
21695 * assembly.c (mono_assembly_load_full): Consider .exe extension as
21696 well. Fixes #75809.
21698 * reflection.c (create_custom_attr): Fix unmanaged memory leak. Fixes
21701 * reflection.c (create_custom_attr_data): Ditto.
21703 2005-08-17 Atsushi Enomoto <atsushi@ximian.com>
21705 * locales.c, culture-info.h : removed RegionLCIDMap.
21706 * culture-info-tables.h : regenerated.
21708 2005-08-16 Martin Baulig <martin@ximian.com>
21710 * class.c (mono_type_get_name_recurse): Small fix.
21712 2005-08-16 Atsushi Enomoto <atsushi@ximian.com>
21714 * locales.c : indentation fixie.
21716 2005-08-15 Atsushi Enomoto <atsushi@ximian.com>
21718 * object-internals.h,
21722 icall.c : added RegionInfo table support.
21723 * culture-info-table.h : regenerated for region support.
21725 2005-08-14 Kamil Skalski <nazgul@nemerle.org>
21727 * reflection.c (resolve_object): handle all kinds of MonoMethod
21728 including generic ones
21730 2005-08-12 Ankit Jain <jankit@novell.com>
21732 * get.c (dis_stringify_variant_type): New. Stringify MonoMarshalVariant.
21733 (dis_stringify_marshal_spec): Add new case for MONO_NATIVE_SAFEARRAY.
21735 2005-09-12 Lluis Sanchez <lluis@ximian.com>
21737 * process.c: Don't close a thread handle when it's NULL. This is a
21738 workaround for bug #75733.
21740 2005-08-11 Zoltan Varga <vargaz@freemail.hu>
21742 * marshal.c (mono_marshal_get_string_encoding): Fix handling of CharSet.Auto. Fixes #75769.
21744 2005-08-10 Zoltan Varga <vargaz@freemail.hu>
21746 * icall.c (ves_icall_Type_get_IsGenericType): New icall.
21748 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
21750 * threadpool.c: if a work item in the thread pool has a callback that
21751 catches a exception, don't propagate it after invoking the callback.
21754 2005-08-08 Zoltan Varga <vargaz@freemail.hu>
21756 * class.c (class_compute_field_layout): Rename this to mono_class_setup_fields.
21758 * class-internals.h (MonoCachedClassInfo): Add some new fields.
21760 * class.c (mono_class_init): Load field info lazily in the AOT case.
21762 * reflection.c (mono_image_load_module): Fix error checking. Fixes #75660.
21764 2005-08-03 Ankit Jain <jankit@novell.com>
21767 * loader.c (mono_method_signature_full): Use MONO_CALL_DEFAULT if
21768 PInvoke calling convention is 0.
21770 2005-08-02 Zoltan Varga <vargaz@freemail.hu>
21772 * socket-io.c (convert_sockopt_level_and_name): Applied patch from
21773 Julien Puydt (julien.puydt@laposte.net). Add check for IPV6_PKTINFO.
21775 Mon Aug 1 16:52:12 CEST 2005 Paolo Molaro <lupus@ximian.com>
21777 * gc-internal.h, threads.c, null-gc.c, boehm-gc.c: added interface
21778 to handle threads not started by the GC (patch by Michael Meeks
21779 <michael.meeks@novell.com>).
21781 2005-07-31 Kamil Skalski <nazgul@omega.pl>
21783 * reflection.c: Make buffer used in emitting types larger for some
21784 big generic types (patch by Michal Moskal).
21786 2005-07-30 Zoltan Varga <vargaz@freemail.hu>
21788 * mono-debug.c: Fix some (not all) alignment problems.
21790 2005-07-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
21792 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw):
21793 Invoke mono_image_load_from_data_full passing the refonly
21797 (mono_assembly_open_from_bundle): Add the refonly argument,
21798 in order to pass it to other methods it calls to.
21799 (do_mono_assembly_open): Add the refonly argument, in order
21800 to pass it to other methods it calls to.
21801 (mono_assembly_open_full): Invoke do_mono_assembly_open passing
21802 the refonly parameter to it.
21804 * image.c: Add loaded_images_refonly_hash and
21805 loaded_images_refonly_guid_hash to cache the reflection
21806 only loaded images.
21807 (mono_images_init): Initialize the hash tables used for
21808 caching the reflection only images.
21809 (load_modules): Invoke mono_image_open_full passing the refonly
21810 parameter to load the modules the correct way.
21811 (build_guid_table): Add the refonly argument, to re-build the
21812 correct hash table.
21813 (do_mono_image_open): Added the refonly argument, in order to
21814 define it for the loaded image.
21815 (mono_image_loaded_full): New function, which receives an
21816 additional parameter to look for the image in the refonly or
21817 non-refonly section.
21818 (mono_image_loaded): Updated, using mono_image_loaded_full.
21819 (mono_image_loaded_by_guid_full): The same case that happens
21820 with mono_image_loaded_full.
21821 (mono_image_loaded_by_guid): Likewise.
21822 (register_image): Use the ref_only variable inside MonoImage
21823 to decide in which hash table store the current image.
21824 (mono_image_open_from_data_full): Rename
21825 mono_image_open_from_data to mono_image_open_from_data_full,
21826 adding the refonly argument, to define the ref_only variable
21828 (mono_image_open_from_data): Return
21829 mono_image_open_from_data_full.
21830 (mono_image_open_full): Rename mono_image_open to
21831 mono_image_open_full, receiving the new refonly argument,
21832 to pass it to inner methods.
21833 (mono_pe_file_open): Update this function, to open
21834 a MonoImage as a non-refonly image.
21835 (mono_image_close): Use the refonly variable inside
21836 MonoImage to remove the image from the correct caches.
21838 * image.h: Add the signatures of mono_image_open_full,
21839 mono_image_open_from_data_full, mono_image_loaded_full,
21840 mono_image_loaded_by_guid_full.
21842 * metadata-internals.h: Add the ref_only field to
21845 2005-07-29 Carlos Alberto Cortez <calberto.cortez@gmail.com>
21847 * icall.c (ves_icall_System_Reflection_GetReferencedAssemblies):
21848 Fix the last behavior, which used to load the assemblies and
21849 extract MonoReflectionAssemblyName information, instead of
21850 extract it from the metadata tables. Needed for Reflection
21853 2005-07-29 Martin Baulig <martin@ximian.com>
21855 * mono-debug-debugger.c
21856 (mono_debugger_lock, mono_debugger_unlock): g_assert() if we're
21860 (mono_debug_address_from_il_offset): Check whether we have
21861 debugging support before attempting to take the lock.
21862 (mono_debug_source_location_from_address): Likewise.
21863 (mono_debug_source_location_from_il_offset): Likewise.
21864 (mono_debug_il_offset_from_address): Likewise.
21865 (mono_debug_address_from_il_offset): Likewise.
21867 2005-07-29 Zoltan Varga <vargaz@freemail.hu>
21869 * class.c (mono_class_from_name_case): Add support for dynamic images.
21872 * object.c (mono_class_compute_gc_descriptor): Add a workaround
21875 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
21877 * reflection.c (mono_method_get_object): Fix warning.
21879 2005-07-28 Martin Baulig <martin@ximian.com>
21882 (mono_debug_add_wrapper): Also write the wrapper type.
21884 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
21886 * class-internals.h (MonoCachedClassInfo): Add has_nested_classes field.
21888 * class.c (mono_class_init): Avoid reading nested classes if the AOT
21889 data indicates the class has none.
21891 2005-07-26 Ben Maurer <bmaurer@ximian.com>
21893 * mono-debug.c, debug-mono-symfile.c: Replace the use of the
21894 loader lock with the debugger lock. Prevents deadlocks for beagle.
21896 Beagle can now run on an smp box for a weekend without any
21899 2005-07-26 Zoltan Varga <vargaz@freemail.hu>
21901 * class.c (mono_bounded_array_class_get): Avoid crash if eclass is
21902 in a module. Fixes #75629.
21904 2005-07-26 Martin Baulig <martin@ximian.com>
21906 * mono-debug.c (mono_debug_add_wrapper): New static method.
21907 (mono_debug_add_method): Call mono_debug_add_wrapper() if we're an
21908 interncall or a wrapper.
21910 * mono-debug.h (MonoDebugWrapperData): New public typedef.
21911 (MonoDebugDataItemType): Added `MONO_DEBUG_DATA_ITEM_WRAPPER'.
21912 (MONO_DEBUGGER_VERSION): Bump to 51.
21914 * mono-debug-debugger.c
21915 (mono_debugger_add_type): Removed this empty function.
21916 (mono_debugger_add_method): Likewise.
21918 2005-07-22 Zoltan Varga <vargaz@freemail.hu>
21920 * icall.c (ves_icall_Type_GetMethodsByName): Call setup_vtable ()
21921 before accessing method->slot.
21923 2005-07-21 Jb Evain <jbevain@gmail.com>
21925 * reflection.c (method_encode_clauses/class): Handle filters clauses.
21928 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
21930 * marshal.c (emit_marshal_custom): Implement byref marshalling. Fixes
21933 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
21935 * image.h image.c: Add mono_image_get_guid () API function.
21937 2005-07-19 Ben Maurer <bmaurer@ximian.com>
21939 There were issues when multiple threads tried to load
21940 assemblies. A deadlock was created between assemblies_mutex and
21941 mono_domain_assemblies_lock. This fixes the issue by making the
21942 assembly ref counting be lock free. See bug 75586.
21944 * image.c (mono_image_close): The add ref function here was using
21945 Interlocked operations while the unref was using a mutex and a
21946 --. I don't think this was ever a bug that would be exposed in a
21947 non-pendantic way (ie, by an embedder doing a ref on one thread
21948 and an unref on another), but for the sake of correctness, this is
21951 * assembly.c (mono_assembly_addref): Use InterlockedIncrement
21952 (mono_assembly_load_reference): Call mono_assembly_addref rather
21953 than touching the refcount ourselves.
21954 (mono_assembly_close): Use InterlockedDecrement to unref the
21955 assembly. Don't acquire the lock unless it is actually needed.
21957 2005-07-12 Zoltan Varga <vargaz@freemail.hu>
21959 * class.c (mono_class_layout_fields): Fix calculation of has_references
21962 2005-07-12 Martin Baulig <martin@ximian.com>
21964 Applying a patch from Michal Moskal <malekith@nemerle.org>.
21967 (mono_type_hash): Provide better hashing for generic instances.
21968 (mono_generic_inst_hash): Improve hashing.
21969 (mono_generic_class_hash): Likewise.
21971 * reflection.c (mymono_metadata_type_hash): Improve hashing for
21974 2005-07-12 Martin Baulig <martin@ximian.com>
21976 * reflection.c (mono_reflection_create_runtime_class): Remove the
21977 hack for generic type definitions and non-`Run' assemblies.
21978 (mono_reflection_bind_generic_parameters): Also use
21979 `klass->wastypebuilder' to check for TypeBuilders.
21981 2005-07-12 Zoltan Varga <vargaz@freemail.hu>
21983 * class.c (mono_class_layout_fields): Fix calculation of has_references
21986 * class.c (inflate_generic_class): Fix a leak.
21987 (mono_class_init): Fix calculation of gchimpl and has_finalize fields
21990 2005-07-11 Martin Baulig <martin@ximian.com>
21992 * icall.c (ves_icall_Type_BindGenericParameters): Don't crash here
21995 2005-07-11 Martin Baulig <martin@ximian.com>
21997 * loader.c (find_method): Also lookup in
21998 `mono_defaults.object_class' if we're an interfaces; fixes #75460.
22000 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
22002 * appdomain.c (mono_domain_unload): Don't free the error message
22003 before passing it to mono_get_exception_...
22005 * reflection.c (CACHE_OBJECT): Fix the race introduced by the previous patch.
22007 Thu Jul 7 19:59:31 CEST 2005 Paolo Molaro <lupus@ximian.com>
22009 * threads.c: try to better guess an available RT signal (bug #75387).
22011 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
22013 * reflection.c (CACHE_OBJECT): Don't hold the domain lock between CHECK_OBJECT
22016 2005-07-07 Martin Baulig <martin@ximian.com>
22018 * class.c (mono_type_get_name_full): Return NULL for
22019 MONO_TYPE_NAME_FORMAT_FULL_NAME if we have any generic parameters;
22022 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
22024 * threads.c (mono_threads_abort_appdomain_threads): Wait for threads to
22025 exit the appdomain as well being aborted.
22027 * threadpool.c: Create all threadpool threads inside the root appdomain, and
22028 change back to the root domain after calling managed code. This enables
22029 appdomains using threadpools to be unloaded.
22031 2005-07-07 Martin Baulig <martin@ximian.com>
22033 * class-internals.h
22034 (MonoInflatedGenericClass): Moved the `MonoType *parent' field
22035 into `MonoDynamicGenericClass' since we only need it for dynamic
22038 * reflection.c (mono_class_bind_generic_parameters): We don't need
22039 to compute the `parent' here.
22041 2005-07-07 Atsushi Enomoto <atsushi@ximian.com>
22043 * culture-info-table.h : regenerated.
22045 2005-07-06 Martin Baulig <martin@ximian.com>
22048 (ves_icall_FieldInfo_SetValueInternal): Add MONO_TYPE_GENERICINST.
22050 * object.c (set_value): Add MONO_TYPE_GENERICINST; fixes #75299.
22052 2005-07-06 Martin Baulig <martin@ximian.com>
22054 * metadata.c (mono_metadata_class_equal): Add MONO_TYPE_SZARRAY if
22055 we're doing a signature-only comparision; fixes #74945.
22057 2005-07-06 Martin Baulig <martin@ximian.com>
22059 * class-internals.h (MonoGenericClass): Moved some things out into
22060 a new `MonoInflatedGenericClass' type.
22061 (MonoInflatedGenericClass): New type; the `klass' of a
22062 `MonoGenericClass' is now computed lazyly in
22063 mono_get_inflated_generic_class().
22065 * class.c (mono_get_inflated_generic_class): New public function.
22066 (mono_class_inflate_generic_method): Removed the unused
22067 `MonoClass *' argument.
22068 (setup_generic_vtable): Don't call mono_get_inflated_method() on
22070 (mono_class_create_generic): Make this static and merge it with
22071 mono_class_create_generic_2(); we're now called automatically from
22072 mono_get_inflated_generic_class().
22074 * loader.c (mono_method_signature): Call
22075 mono_get_inflated_method() here.
22077 2005-07-06 Zoltan Varga <vargaz@freemail.hu>
22079 * object.c (mono_class_create_runtime_vtable): Allow MONO_TYPE_FNPTR as
22080 type of fields with RVA.
22082 * class.c (mono_class_from_generic_parameter): Avoid calling mono_class_init ()
22083 for this pseudo class.
22084 (my_mono_class_from_generic_parameter): Likewise.
22085 (mono_class_init): Allow interfaces to have cctors.
22087 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
22089 * domain-internals.h domain.c: Add functionality to create MonoJitInfo structures
22090 lazily for AOT methods.
22092 2005-07-05 Martin Baulig <martin@ximian.com>
22094 * loader.c (mono_lookup_pinvoke_call): g_ascii_strcasecmp()
22095 returns FALSE for a successful match, not TRUE.
22097 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
22099 * loader.c (mono_method_get_index): Optimize this a bit.
22101 2005-07-04 Martin Baulig <martin@ximian.com>
22104 (class_compute_field_layout): Move the check for generic type
22105 definitions into mono_class_layout_fields(). Fixes #74684.
22106 (mono_class_from_generic_parameter): Correctly compute
22107 `klass->parent'; fixes #75457.
22109 * reflection.c (register_assembly, register_module): Make sure
22110 `domain->rejobject_hash' is already created.
22112 2005-07-02 Martin Baulig <martin@ximian.com>
22114 * class-internals.h
22115 (MonoGenericClass): Move `count_ifaces' and `ifaces' into
22116 `MonoDynamicGenericClass'.
22118 2005-07-01 Lluis Sanchez <lluis@ximian.com>
22120 * icall.c: In ves_icall_InternalExecute() dont't assert if the value
22121 returned by a field getter is null, since null is a valid value.
22123 2005-07-01 Martin Baulig <martin@ximian.com>
22125 * reflection.c (mono_reflection_generic_class_initialize): Update
22126 the `dgclass->fields [i].parent' to the correct class.
22127 (mono_image_get_fieldref_token): Use the declaring type, not the
22130 2005-07-01 Martin Baulig <martin@ximian.com>
22132 * loader.c (find_method): Also look in the interfaces; fixes #75429.
22134 2005-06-30 Ben Maurer <bmaurer@ximian.com>
22136 * threads.c (thread_cleanup): assert that thread != NULL
22137 (wait_for_tids_or_state_change): We were using the wrong variable
22138 when accessing wait->threads. `i' was always out of the bounds of
22141 2005-06-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22143 * loader.c: map user32 and kernel32 to libMonoSupportW
22145 2005-06-28 Zoltan Varga <vargaz@freemail.hu>
22147 * appdomain.c (unload_thread_main): Mark this as WINAPI.
22149 2005-06-28 Martin Baulig <martin@ximian.com>
22151 * loader.c (method_from_methodspec): Fix #75334.
22153 2005-06-28 Martin Baulig <martin@ximian.com>
22155 Fix #74953 - Arrays now implement the generic IList<T> interface
22156 on the 2.0 platform.
22158 * class-internals.h (MonoDefaults): Added `generic_array_class'.
22160 * reflection.c (mono_class_bind_generic_parameters): New public
22161 function; similar to mono_reflection_bind_generic_parameters(),
22162 but operates on a `MonoType *' and not on a `MonoReflectionType *'.
22164 * domain.c (mono_init_internal): Try to initialize.
22165 `mono_defaults.generic_array_class' here; this'll only succeed if
22166 we're using the 2.0 corlib.
22169 (ves_icall_System_Array_InternalArray_GetGenericValueImpl): Added
22170 interncall for "System.Array/InternalArray`1:GetGenericValueImpl".
22171 (mono_lookup_internal_call): Added support for nested classes.
22174 (mono_get_method_from_token): Set `result->signature->pinvoke' if
22175 we're an interncall and have generic arguments.
22178 (mono_class_inflate_generic_methods): Allow interncalls and PInvoke.
22179 (mono_bounded_array_class_get): If we're on the 2.0 corlib, use an
22180 instance of System.Array.InternalArray<T> for arrays, so they
22181 implement the generic IList<T> interface.
22183 2005-06-27 Zoltan Varga <vargaz@freemail.hu>
22185 * marshal.c (emit_marshal_string): Applied patch from Itamar Rogel
22186 (chastamar@yahoo.com). Fixes #75374.
22188 2005-06-27 Atsushi Enomoto <atsushi@ximian.com>
22190 * culture-info-table.h: regenerated.
22192 2005-06-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22194 * icall.c: handle spaces correctly for base64 strings.
22196 2005-06-26 Ben Maurer <bmaurer@ximian.com>
22198 * *.c: Kill some warnings.
22200 2005-06-23 Duncan Mak <duncan@novell.com>
22202 * socket-io.c (is_loopback): Cast 'ptr' to 'struct in6_addr *' so
22203 that this builds on Solaris 10 (x86).
22205 2005-06-23 Martin Baulig <martin@ximian.com>
22208 (mono_type_get_name_recurse): Don't use a duplicate '[', ']' for
22209 generic type definitions.
22211 2005-06-23 Martin Baulig <martin@ximian.com>
22215 * metadata.c (mono_class_get_overrides): Renamed to
22216 mono_class_get_overrides_full() and added a `MonoGenericContext *'.
22217 (method_from_method_def_or_ref): Added `MonoGenericContext *' and
22218 pass it to mono_get_method_full().
22220 2005-06-22 Ben Maurer <bmaurer@ximian.com>
22222 * reflection.c (mono_reflection_create_runtime_class): take the
22223 mono_domain_lock in this method. Prevents deadlocks
22225 2005-06-22 Martin Baulig <martin@ximian.com>
22227 * loader.c (method_from_methodspec): Fix #75330.
22229 2005-06-22 Martin Baulig <martin@ximian.com>
22231 * reflection.c (type_get_qualified_name): Use
22232 mono_type_get_name_full() with MONO_TYPE_NAME_FORMAT_REFLECTION.
22233 (_mono_reflection_get_type_from_info): Added `MonoImage *image'
22234 argument; use it if we don't have an assembly name.
22236 2005-06-22 Lluis Sanchez Gual <lluis@novell.com>
22238 * object.c: In mono_message_init, set "copy out" flag for in
22239 parameters with the [Out] flag.
22241 2005-06-21 Martin Baulig <martin@ximian.com>
22244 (mono_type_get_name_recurse): Correctly handle MONO_TYPE_SZARRAY
22247 2005-06-21 Martin Baulig <martin@ximian.com>
22249 * class.c (mono_class_init): Don't initialize `class->fields' for
22250 generic instances since they're initialized again in
22251 compute_field_layout().
22252 (compute_field_layout): Set the field's `generic_info' here; fix
22255 2005-06-21 Martin Baulig <martin@ximian.com>
22257 * class-internals.h
22258 (MonoGenericMethod): Added `MonoGenericClass *generic_class'.
22260 * metadata.c (mono_metadata_generic_method_equal): Also
22261 distinguish the `generic_class'; fixes #75334.
22263 2005-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22267 * domain-internals.h:
22268 * reflection.c: 'domain_assemblies' field is now protected by its own
22269 lock. Don't call into managed code to run the AssemblyLoad event if we
22270 now there are no registered delegates for it.
22272 2005-06-20 Martin Baulig <martin@ximian.com>
22274 * class.c (mono_class_is_assignable_from): Use a custom version of
22275 mono_class_has_parent() to make things work for generic instances;
22278 2005-06-20 Martin Baulig <martin@ximian.com>
22280 * loader.c (method_from_methodspec): Apply a patch from
22281 Kamil Skalski <nazgul@nemerle.org> to fix #75296.
22283 2005-06-20 Martin Baulig <martin@ximian.com>
22285 * class.c (mono_class_init): Reverted Zoltan's last change; it
22288 2005-06-19 Zoltan Varga <vargaz@freemail.hu>
22290 * threads.c (wait_for_tids_or_state_change): Add missing locking.
22292 2005-06-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22294 * socket-io.c: fix the index in the socket array for writable/error
22295 sockets. Fixes bug #75306.
22297 2005-06-17 Zoltan Varga <vargaz@freemail.hu>
22299 * class.c (mono_class_init): Allow interfaces to have static ctors.
22301 2005-06-17 Martin Baulig <martin@ximian.com>
22303 * loader.c (method_from_methodspec): Use `context->container' when
22304 parsing the `gmethod->inst'.
22306 2005-06-17 Martin Baulig <martin@ximian.com>
22308 * class.c (mono_type_get_name_recurse): Don't add the assembly
22309 name for type arguments.
22311 2005-06-15 Martin Baulig <martin@ximian.com>
22313 * reflection.c (mono_image_get_inflated_method_token): Encode
22314 correct klass; fixes #75260.
22316 2005-06-13 Michal Moskal <malekith@nemerle.org>
22318 * icall.c: Make GetCorrespondingMethod/Constructor take
22319 MonoReflectionMethod method not MonoMethod. Removed
22320 MonoType.GetCorrespondingField, and make
22321 MonoGenericType.GetCorrespondingField take name not
22324 2005-06-13 Michal Moskal <malekith@nemerle.org>
22326 * reflection.c (field_encode_signature, encode_locals):
22327 Make sizes of buffers for types larger (for big generic types).
22328 (create_generic_typespec,
22329 mono_reflection_sighelper_get_signature_local,
22330 mono_reflection_sighelper_get_signature_field):
22331 Add asserts for too small buffers.
22333 2005-06-15 Martin Baulig <martin@ximian.com>
22335 * icall.c (ves_icall_MonoGenericClass_GetParentType): Return NULL
22336 if our parent is not a dynamic type.
22338 2005-06-15 Martin Baulig <martin@ximian.com>
22340 * class-internals.h (MonoTypeNameFormat): New enum.
22343 (mono_class_get_name_full): Renamed to mono_type_get_name_full().
22344 (mono_type_get_full_name): Removed.
22345 (mono_type_get_name_full): Take a `MonoTypeNameFormat format'
22346 argument instead of the boolean's.
22348 * icall.c (ves_icall_System_MonoType_getFullName):
22349 Added `gboolean assembly_qualified'.
22352 (MonoTypeNameParse): Added `GPtrArray *type_arguments'.
22354 * reflection.c (mono_reflection_parse_type): Parse the new type
22357 2005-06-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22359 * icall.c: no need to convert from utf16 to utf8 and then back again
22360 after the call to GetLogicalDrives.
22362 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22364 * icall.c: frombase64. Fix problems exposed by new tests.
22366 2005-06-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22368 * icall.c: added internal calls for converting char [] and strings in
22369 base64 into byte [].
22371 2005-06-10 Martin Baulig <martin@ximian.com>
22373 * class.c (mono_class_create_generic_2): Read the nested classes
22374 from the metadata rather than from `gklass->nested_classes' since
22375 `gklass' might not be initialized yet.
22377 2005-06-09 Duncan Mak <duncan@novell.com>
22379 * *.h: Added G_BEGIN_DECLS and G_END_DECLS where appropriate to
22380 all public headers. Fixes #74919.
22382 2005-06-09 Lluis Sanchez Gual <lluis@novell.com>
22384 * domain.c: The key for proxy_vtable_hash is now a pointer
22385 array. Added new GHashFunc and GCompareFunc functions for this.
22387 * class.h: The list of interfaces in MonoRemoteClass is known in
22388 advance and can't grow (we create a new MonoRemoteClass if needed),
22389 so now the interface array can be allocated together with
22392 * object.c: Added a new method create_remote_class_key.
22393 Fixed mono_remote_class so it does not depend on
22394 mono_upgrade_remote_class.
22395 Removed extend_interface_array.
22396 Added new method clone_remote_class(), which makes a copy of a remote
22397 class and adds a new interface or class to it.
22398 mono_upgrade_remote_class() now creates a new remote class (or gets
22399 it from the cache) if an vtable upgrade is needed. In this way
22400 we make sure that other objects sharing the same remote class
22401 don't get the new vtable with unwanted interfaces.
22403 * object-internals.h:
22404 * object.h: Moved mono_upgrade_remote_class to object-internals.h.
22406 * marshal.c: Track changes in mono_upgrade_remote_class().
22408 2005-06-08 Kamil Skalski <nazgul@nemerle.org>
22409 * icall.c: Add runtime methods for obtaining members of inflated
22410 class, which were created from supplied non-inflated members. It
22411 is used in internal Get{Method,Constructor,Field} methods in
22414 2005-06-09 Martin Baulig <martin@ximian.com>
22417 (mono_reflection_bind_generic_method_parameters): Fix #75169.
22419 2005-06-08 Carlos Alberto Cortez <calberto.cortez@gmail.com>
22420 * reflection.c (mono_image_basic_init): Define
22421 Version in MonoDynamicAssembly.
22423 2005-06-08 Martin Baulig <martin@ximian.com>
22428 (mono_method_signature_full): New public method; takes a
22429 `MonoGenericContext *'.
22430 (find_method): Use mono_method_signature_full() and pass the
22431 klass'es context to it.
22433 * class.c (mono_class_is_inflated_method): Use
22434 mono_method_signature_full() and pass the context to it.
22436 Wed Jun 8 19:26:38 CEST 2005 Paolo Molaro <lupus@ximian.com>
22438 * object.c: add proper locking in mono_remote_class_vtable(),
22439 fixes possible memory corruption.
22441 2005-06-08 Michael Meeks <michael.meeks@novell.com>
22443 * marshal.c (mono_remoting_marshal_init): set
22444 initialized after initialization.
22446 2005-06-08 Atsushi Enomoto <atsushi@ximian.com>
22448 * locales.c : hush.
22450 2005-06-06 Michael Meeks <michael.meeks@novell.com>
22452 * object.c (extend_interface_array): fix really silly
22453 memory corrupting / comparison bug.
22455 2005-06-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
22457 * reflection.c: Functions added to support the creation
22458 of CustomAttributeData, which includes Attribute data
22459 used by ReflectionOnly methods.
22461 * reflection.h: mono_reflection_get_custom_attrs_data and
22462 mono_custom_attrs_data_construct added (functions exposed).
22464 * icall.c: Added mono_reflection_get_custom_attrs_data
22467 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
22469 * Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
22472 2005-06-06 Zoltan Varga <vargaz@freemail.hu>
22474 * icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.
22476 * reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
22477 dynamic DllImportAttribute.
22479 * icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of
22480 dynamic DllImportAttribute.
22482 * Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
22485 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22487 * threads.c: avoid segfault when an unstarted thread is aborted.
22489 2005-06-05 Kornél Pál <kornelpal@hotmail.com>
22491 * icall.c: Added ves_icall_Mono_Runtime_GetDisplayName:
22492 Returns the name and version of the runtime for reporting.
22494 2005-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22496 * appdomain.c: bump corlib version.
22497 * object-internals.h: new field in MonoReflectionAssembly.
22499 2005-06-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22501 * object-internals.h: Carlos forgot to add this field.
22503 2005-06-03 Carlos Alberto Cortez <calberto.cortez@gmail.com>
22505 * icall.c: Added create_version to create instances
22506 of Version of MonoReflectionAssemblyName. This change helps
22507 the AssemblyName tests to keep running fine.
22509 2005-06-03 Lluis Sanchez Gual <lluis@novell.com>
22511 * object.c (mono_method_return_message_restore): A somehow less
22512 intrusive fix for #75138.
22514 2005-06-03 Raja R Harinath <rharinath@novell.com>
22516 * object.c (mono_method_return_message_restore): Fix computation
22517 of expected number of out args.
22519 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
22521 * reflection.c (mono_image_get_method_info): Fix the case when the
22524 2005-06-02 Lluis Sanchez Gual <lluis@novell.com>
22526 * object.c: Added missing null check in
22527 mono_method_return_message_restore.
22529 2005-06-02 Zoltan Varga <vargaz@freemail.hu>
22531 * reflection.c (mono_image_get_method_info): Handle the case when
22534 2005-06-02 Lluis Sanchez Gual <lluis@novell.com>
22536 * object.c: When creating the vtable for a proxy, take into account
22537 all inherited interfaces, not only the ones registered in
22538 iclass->interfaces. This fixs bug #74996.
22539 Also, in mono_method_return_message_restore, verify that the array
22540 of out args has the expected lengh.
22542 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22544 * socket-io.c: update the timeout in Poll when the call is interrupte.
22546 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22548 * socket-io.c: support abort/suspend in Select_internal after last
22551 2005-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22553 * threadpool.c: remove warning.
22555 2005-06-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22558 * socket-io.[ch]: Select_internal uses poll() now when available, thus
22559 removing the 1024 limit from select(). Runtime part of the fix for
22562 2005-05-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22564 * socket-io.c: when resolving the addresses for the same
22565 host returned by gethostname(), get the local IPs from the interface
22566 list. Loopback addresses are discarded if the are interfaces up with
22567 non-loopback ones. Fixes bug #63265.
22569 2005-05-27 Vladimir Vukicevic <vladimir@pobox.com>
22571 * appdomain.c, verify.c, object-internals.h, reflection.c:
22572 bumped corlib number to 36, and added new extra_flags field
22573 to ReflectionMethodBuilder and friends. Fixes #75060.
22575 Fri May 27 14:45:56 CEST 2005 Paolo Molaro <lupus@ximian.com>
22577 * gc.c: register a new weak link only if the object is non-null
22580 2005-05-26 Atsushi Enomoto <atsushi@ximian.com>
22582 * culture-info.h : short time pattern too.
22584 2005-05-26 Atsushi Enomoto <atsushi@ximian.com>
22586 * culture-info.h : expand long time pattern string length.
22588 2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
22590 * culture-info-table.h : update (more French date format; #72788).
22592 2005-05-25 Zoltan Varga <vargaz@freemail.hu>
22594 * icall.c (ves_icall_InternalInvoke): Avoid type checks on this if
22595 the method is static. Fixes #75029.
22597 2005-05-25 Lluis Sanchez Gual <lluis@novell.com>
22599 * reflection.c: Update the table_idx field of method builders after
22600 saving the module, since it can change. This is a workaround for
22603 2005-05-25 Atsushi Enomoto <atsushi@ximian.com>
22605 * culture-info-table.h : update (additional French date format).
22607 2005-05-20 Zoltan Varga <vargaz@freemail.hu>
22609 * icall.c (ves_icall_type_Equals): Revert last change.
22611 * icall.c (ves_icall_type_Equals): Turn the g_print into an assert.
22613 * icall.c (ves_icall_type_GetTypeCode): Rename the icall to GetTypeCodeInternal.
22615 2005-05-20 Sebastien Pouliot <sebastien@ximian.com>
22617 * class-internals.h: Added executioncontext_class field to
22618 MonoDefaults structure.
22619 * domain.c: Cache System.Threading.ExecutionContext class in
22621 * object.c: Capture the ExecutionContext for asynchroneous calls in
22622 mono_async_result_new.
22623 * object-internals.h: Added execution_context and original_context
22624 fields to MonoAsyncResult. Added execution_context to MonoThread.
22625 * security-manager.c|.h: Added mono_get_context_capture_method to
22626 return the capture method (if required by the security manager or by
22627 the framework version used).
22628 * threadpool.c: Apply capture (if present) ExecutionContext in
22629 mono_async_invoke and revert to original context after it completes.
22631 2005-05-19 Atsushi Enomoto <atsushi@ximian.com>
22633 * culture-info-table.h : updated (real hacky solution for zh-CHT).
22635 2005-05-18 Atsushi Enomoto <atsushi@ximian.com>
22637 * culture-info-table.h : zh-CHT related workaround.
22639 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
22641 * marshal.c (emit_marshal_custom): Add some error checking and call the
22642 methods in the ICustomMarshaler interface. Fixes #74875.
22644 * marshal.c (emit_marshal_array): Implement [Out] marshalling in
22645 native->managed wrappers.
22647 2005-05-12 Martin Baulig <martin@ximian.com>
22649 * mono-debug-debugger.cs (mono_debugger_lock/unlock): Always lock
22650 here and use the loader lock.
22652 * mono-debug.c: Properly lock when the debugger is not attached.
22653 (mono_debug_init): Release the initial lock if we're not running
22656 2005-05-12 Zoltan Varga <vargaz@freemail.hu>
22658 * marshal.c (emit_marshal_custom): Pass through NULL values without
22659 calling the custom marshalling routines.
22661 * marshal.c (emit_ptr_to_object_conv): Implement ftnptr->delegate
22662 conversion in structures. Fixes #74882.
22664 2005-05-12 Atsushi Enomoto <atsushi@ximian.com>
22666 * culture-info-table.h : zh-* cultures were missing.
22668 2005-05-12 Lluis Sanchez Gual <lluis@novell.com>
22670 * threads.c: Added a new event background_change_event which is signaled
22671 when a thread changes its background mode.
22672 Moved here several checks previously done in managed code. The checks
22673 require the thread lock, and using the thread lock in managed code
22674 can result in deadlocks.
22675 Merged Start_internal and Thread_internal into a single method. Now
22676 Thread_internal does all work of creating and starting a thread.
22677 Added icalls for setting and getting the state of the object. Moved from
22678 managed code to avoid locking there.
22679 Added wait_for_tids_or_state_change() which is called instad of
22680 wait_for_tids when waiting for non-backround threads to end. This method
22681 will return if one of the threads ends or the background_change_event
22683 * threadpool.c: use ves_icall_System_Threading_Thread_SetState() to set
22684 the background mode. This method signals the background_change_event
22687 * threads-types.h: Added icalls for ClrState, SetState and GetState, and
22688 removed Start_internal.
22690 2005-05-11 Martin Baulig <martin@ximian.com>
22692 * mono-debug.h (MonoSymbolTable, MonoDebugMethodAddress): Changed
22693 to order of some fields to get proper alignment on 64-bit machines.
22695 2005-05-11 Martin Baulig <martin@ximian.com>
22697 * mono-debug.c, mono-debug-debugger.c: Revert Paolo's locking
22698 changes as they're broken and completely fuck up the debugger.
22700 * mono-debug.c (mono_debug_add_method): Properly unlock on error.
22702 2005-05-10 Martin Baulig <martin@ximian.com>
22704 * reflection.c (mono_reflection_generic_class_initialize): Don't
22705 call mono_class_setup_parent() here.
22707 2005-05-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22709 * metadata/socket-io.c: on windows, getsockopt/setsockopt for
22710 send/receive timeout use an integer in milliseconds. We were using a
22713 2005-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22716 (internal_get_cultures): reserve the first slot of the array for the
22717 InvariantCulture, which will be filled in managed code.
22719 2005-05-06 Zoltan Varga <vargaz@freemail.hu>
22721 * reflection.c (mono_image_fill_module_table): Initialize the
22722 GENERATION field as well.
22724 2005-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22726 * monitor.c: ignore calls to Monitor.Exit even if no one ever called
22727 Monitor.Enter on the object.
22729 2005-05-05 Lluis Sanchez Gual <lluis@novell.com>
22731 * threads.c: Enable the wait for running threads when exiting.
22732 * icall.c: Suspend all threads before exiting.
22734 2005-05-05 Zoltan Varga <vargaz@freemail.hu>
22736 * assembly.c (mono_assembly_load_reference): Fix warning.
22738 2005-05-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22740 * threadpool.c: changed the default number of threads per cpu. From now
22741 on, the default will be 20 + (5 * number of cpus) instead of 50.
22743 2005-05-04 Zoltan Varga <vargaz@freemail.hu>
22745 * loader.c (mono_method_get_signature_full): Add locking here.
22747 2005-05-03 Lluis Sanchez Gual <lluis@novell.com>
22749 * appdomain.c: Moved methods for parsing and freeing assembly
22750 names to assembly.c.
22751 * assembly.c, domain-internals.h: Created public methods for parsing
22752 assembly names. Fixed mono_assembly_load_with_partial_name:
22753 it now finds the best match, taking into account the version,
22754 token and culture specified in the partial name. Also return
22755 the latest version if no version information is specified.
22757 Mon May 2 15:47:57 CEST 2005 Paolo Molaro <lupus@ximian.com>
22759 * threadpool.c: replace check for SocketAsyncCall class.
22761 2005-05-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22763 * threadpool-internals.h:
22764 * Makefile.am: added threadpool-internals.h
22766 * threadpool.c: call mono_unhandled_exception on exceptions not handled
22767 that happen in threadpool threads (tested on MS).
22768 (mono_thread_pool_remove_socket): new function that dispatch any pending
22769 AIO call on a socket that is closing. By now only epoll really needs it,
22770 as select/poll wake up when the socket closes.
22773 * socket-io.c: call mono_thread_pool_remove_socket in Close_internal.
22775 2005-05-01 Zoltan Varga <vargaz@freemail.hu>
22777 * marshal.c (mono_marshal_get_managed_wrapper): Handle changing the calling convention.
22779 2005-05-01 Lluis Sanchez Gual <lluis@novell.com>
22781 * gc.c: In mono_gc_cleanup(), wait for 2 seconds, not 2000 seconds.
22783 2005-04-30 Lluis Sanchez Gual <lluis@novell.com>
22785 * threads.c: In mono_thread_suspend_all_other_threads, if a thread
22786 has an abort request, convert it into a suspend request.
22788 2005-04-30 Ben Maurer <bmaurer@ximian.com>
22790 * marshal.c (mono_marshal_get_managed_wrapper): give a friendly
22791 warning for the usage of `UnmanagedFunctionPointerAttribute' which
22792 is not supported yet.
22794 2005-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22796 * image.c: register assemblies loaded from data (bundles) in the loaded
22797 assemblies hash. Fixes bug #74772.
22799 2005-04-29 Martin Baulig <martin@ximian.com>
22801 * class.c (mono_type_get_name_recurse): Update to the new naming
22802 schema from the latest .NET 2.x beta2.
22803 (mono_class_setup_vtable_general): If we're a generic instance,
22804 copy the vtable from our generic type definition and inflate all
22807 * loader.c (find_method): Update to the new naming schema from the
22808 latest .NET 2.x beta2.
22810 2005-04-29 Raja R Harinath <harinath@gmail.com>
22812 * class.c (mono_class_init): Add a mono_loader_unlock to the
22815 2005-04-28 Zoltan Varga <vargaz@freemail.hu>
22817 * icall.c (ves_icall_System_Environment_Exit): Remove the
22818 suspend_all_other_threads () call for the time being, since it can hang.
22820 * threads.c (mono_thread_manage): Similarly, disable the waiting for
22821 the background threads to exit, since it can also hang.
22823 * class.c (mono_class_init): Applied patch from Ankit Jain
22824 (radical@gmail.com). Avoid pending init errors when a field refers
22825 to a nested class using a typeref. Fixes #74734.
22827 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal): Fix
22828 this for dynamic modules.
22830 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22832 * threads.c: don't wait for threads that are in the process of aborting
22833 or aborted. Set the 'shutting_down' flag before cleaning the threadpool
22834 and waiting for background threads to finish. This makes xsp and
22835 mod-mono-server exit without random length delays and/or hangs.
22837 2005-04-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22839 * icall.c: remove duplicate assignment from GetReferencedAssemblies.
22841 2005-04-25 Zoltan Varga <vargaz@freemail.hu>
22843 * class.c (mono_class_is_assignable_from): Call is_assignable_to for
22844 dynamic types to prevent infinite loops. Fixes #74727.
22846 * reflection.c (mono_reflection_call_is_assignable_from): Rename to
22847 ..._is_assignable_to.
22849 2005-04-25 Sebastien Pouliot <sebastien@ximian.com>
22851 * security.c: Fixed #74698 where sysconf returned -1 on FreeBSD.
22853 2005-04-25 Martin Baulig <martin@ximian.com>
22855 Upgrade to the latest .NET 2.x beta (Visual Studio 2005 Beta 2).
22858 (supported_runtimes): Change "v2.0.40607" -> "v2.0.50215".
22860 * row-indexes.h (MONO_GENERICPARAM_KIND): Removed.
22862 * reflection.c (build_compressed_metadata): Set metadata header
22865 2005-04-23 Zoltan Varga <vargaz@freemail.hu>
22867 * sysmath.c (ves_icall_System_Math_Round2): Use modf to decompose the
22868 number into an integral and a decimal part. Fixes #70473.
22870 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): Ignore static fields. Fixes #74703.
22872 2005-04-23 Atsushi Enomoto <atsushi@ximian.com>
22874 * culture-info-table.h : reflected the latest locale-builder output.
22876 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22878 * threadpool.c: check for SuspendRequested too when deciding if
22879 mono_thread_interruption_checkpoint should be called.
22881 2005-04-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22883 * appdomain.[ch]: added function to set the shutting_down flag to TRUE.
22884 * threads.c: remove interruption_mutex and use Interlocked instead. When
22885 suspending all the threads, wait for all the suspended events at once.
22886 If we're shutting down and get an APC that is going to be queued,
22887 call mono_thread_execute_interruption immediately, as the thread might
22888 be sleeping on a pthread condition or mutex.
22890 * icall.c: call mono_runtime_set_shutting_down before suspending the
22893 Fixes bug #74693. And now xsp is happier when exiting.
22895 2005-04-22 Zoltan Varga <vargaz@freemail.hu>
22897 * loader.c (mono_stack_walk): Fix #74690.
22899 2005-04-22 Martin Baulig <martin@ximian.com>
22901 * mono-debug.h (MonoDebugMethodJitInfo): Added
22902 `MonoDebugMethodJitInfo *jit'.
22904 * mono-debug.c (mono_debug_read_method): Cache the
22905 MonoDebugMethodJitInfo in `address->jit'.
22906 (mono_debug_free_method_jit_info): New public method.
22908 2005-04-22 Martin Baulig <martin@ximian.com>
22910 * class.c (mono_class_is_assignable_from): Disallow
22911 type parameter -> interface.
22913 2005-04-21 Dick Porter <dick@ximian.com>
22915 * threads.c (mono_thread_create): Turn an assertion into an error.
22917 2005-04-20 Zoltan Varga <vargaz@freemail.hu>
22919 * threads.c object.c icall.c: Fix some gcc 4.0 warnings.
22921 * threads.c marshal.h marshal.c exceptions.h exceptions.c appdomain.c:
22922 Fix some gcc 4.0 warnings.
22924 Wed Apr 20 16:09:06 CEST 2005 Paolo Molaro <lupus@ximian.com>
22926 * file-io.c: fix alt dir separator char on unix systems
22927 and cleanup (fixes bug #71214).
22929 2005-04-19 Lluis Sanchez Gual <lluis@novell.com>
22931 * marshal.c: Use CALLVIRT instead of CALL when dispatching
22932 a call to a remote domain, since the method may be an
22933 interface method in the client domain. This fixes bug #74192.
22935 2005-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22937 * threadpool.c: recv/send are now performed before going back to managed
22938 code to save one transition.
22940 2005-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22942 * metadata/socket-io.c: fixed semantics in Socket.Blocking icall.
22944 * metadata/threadpool.c: removed hack to workaround the bug above.
22948 2005-04-16 Zoltan Varga <vargaz@freemail.hu>
22950 * reflection.c reflection.h: Fix handling of parameter defaults in
22951 dynamic methods. Also fixes handling of parameter attributes.
22954 * mono-debug.c (mono_debug_close_image): Fix warning.
22956 2005-04-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22958 * socket-io.h: replaced old unused field with new 'blocking'.
22959 * threadpool.c: restore socket blocking state on windows(tm).
22961 2005-04-14 Sebastien Pouliot <sebastien@ximian.com>
22963 * icall.c: don't return the codebase in the AssemblyName[] returned by
22964 ves_icall_System_Reflection_Assembly_GetReferencedAssemblies.
22965 * object-internals.h: Removed FIXME (fields were presents) and fixed
22966 versioncompat declaration.
22968 2005-04-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22970 * threadpool.c: sometimes we get EBADF from epoll but the epollfd is
22971 not closed, so don't cleanup when it happens.
22973 2005-04-13 Chris Toshok <toshok@ximian.com>
22975 * mono-debug-debugger.h: change prototype for
22976 mono_debugger_lookup_type.
22978 * mono-debug-debugger.c (mono_debugger_lookup_type): reinstate
22979 this function, although it should probably be named
22980 mono_debugger_init_type.
22982 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22984 * threadpool.c: fix non-AIO case.
22986 2005-04-13 Zoltan Varga <vargaz@freemail.hu>
22988 * profiler.c (mono_profiler_install_simple): Add a 'jit' option to
22989 the built-in profiler to measure just JIT compilation times.
22991 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22993 * threadpool.c: the epollfd might be closed by another thread at
22994 any time, so ignore EBADF at treat it as a "we're closing" sign.
22996 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
22998 * threadpool.c: release the semaphores with a count equals to the number
22999 of working threads in both IO and regular pools. Fixed typo that messed
23000 up the count of IO pool threads. Don't initialize the pipe handles if
23003 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23005 * threadpool.c: some systems don't like a NULL when deleting the socket
23008 2005-04-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23010 * threadpool.c: fix semaphore allocation.
23012 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23014 * threadpool.c: added epoll() based implementation for asynchronous IO
23015 that is used instead of the default poll() when available.
23016 It can be disabled by setting MONO_DISABLE_AIO.
23018 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23020 * threadpool.c: windows needs 'closesocket' and instead of returning
23021 0 when the stream is closed while in select, it returns -1. Fixes bug
23024 2005-04-12 Zoltan Varga <vargaz@freemail.hu>
23026 * class.c (class_compute_field_layout): Fix the regression caused by
23029 2005-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23031 * threadpool.c: separate pool for socket async. IO.
23032 * threadpool.h: mono_max_worker_threads is not a global any more.
23034 2005-04-10 Zoltan Varga <vargaz@freemail.hu>
23036 * class.c (class_compute_field_layout): Fix #74549.
23038 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23040 * threadpool.c: select() on windows doesn't allow pipe handles, soooo
23041 use 2 connected sockets instead.
23043 2005-04-08 Miguel de Icaza <miguel@novell.com>
23045 * mono-config.c: Add new entry point for mkbundle
23046 mono_config_parse_memory.
23048 2005-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23050 * threadpool.c: removed another unused function.
23052 2005-04-08 Ankit Jain <radical@corewars.org>
23054 * reflection.c (get_default_param_value_blobs): Add 'types'
23055 parameter to get the types encoded in the constant table.
23056 (mono_param_get_objects): Use the type from the constant table,
23057 not the type of the parameter, when creating default values.
23058 Handle null default values correctly.
23060 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23067 * socket-io.c: removed dead code for async IO.
23069 2005-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23071 * socket-io.h: 2 more fields in MonoSocketAsyncResult.
23073 * threadpool.c: intercept socket async. calls and pass them to a thread
23074 that is polling and dispatching the job items to the threadpool as
23075 socket become ready. Fixes bugs #71217, #71933.
23077 * icall.c: Removed AsyncReceive and AsyncSend. Speed up for copies
23078 between char and short/ushort arrays.
23080 * socket-io.c: remove dead code.
23082 2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
23085 icall.c : removed InternalToUpper_Comp() and
23086 InternalToLower_Comp().
23088 2005-04-06 Atsushi Enomoto <atsushi@ximian.com>
23090 * char-conversions.h : The tables were incorrectly generated. Should
23091 be generated against invariant culture.
23093 2005-04-04 Zoltan Varga <vargaz@freemail.hu>
23095 * object.c (mono_runtime_invoke_array): Fix return value when
23096 passing pre-created valuetype objects to ctors.
23098 * gc.c (mono_gchandle_is_in_domain): Applied patch from Jon Larimer
23099 (jlarimer@gmail.com). Avoid crashes when the wrapper object is null.
23102 2005-03-30 Sebastien Pouliot <sebastien@ximian.com>
23104 * domain.c: removed g_assert for runtimesecurityframe_class. This is
23105 only used with --security and hides the wrong corlib version error.
23107 2005-03-30 Joshua Tauberer <tauberer@for.net>
23109 * class.c: Changed mono_class_name_from_token so that types
23110 outside of a namespace don't have an initial period. Improved
23111 the g_warning message used in _mono_class_get when loading
23113 * assembly.c: In mono_assembly_load_reference, when an assembly
23114 can't be found, "No such file or directory" is misleading and
23115 unhelpful because a few paths were checked for the presence of
23116 the assembly. When that happens (ENOENT), display a nicer
23117 message indicating the directories that were searched. In all
23118 cases, the warning is made easier to read for non-hackers.
23120 2005-03-29 Sebastien Pouliot <sebastien@ximian.com>
23122 * assembly.c: Set MONO_ASSEMBLIES to NULL when compiling from a VS.NET
23124 * appdomain.h|domain.c: Removed inline from functions.
23125 * appdomain.c: Reduced warnings when compiling on windows.
23126 * icall.c: Fixed output_debug declaration to gunichar2*.
23127 * mono-config.c: Reduced warnings when compiling on windows.
23128 * rand.c: Added missing "windows.h". Added missing return value.
23129 * rawbuffer.c: Added missing winsock2.h for windows.
23130 * sysmath.h: Added mono-compiler.h header to allow/ease
23131 compilation with non-GCC compilers.
23132 * threads.c: Fixed declarations to compile with VS.NET C compiler.
23133 Removed cast warnings.
23135 Adapted from the work of J Lothian (for VC6).
23137 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
23139 * assembly.c (mono_assembly_load_corlib): Do not try loading corlib
23142 2005-03-27 Zoltan Varga <vargaz@freemail.hu>
23144 * marshal.c (mono_marshal_get_managed_wrapper): Fix bogus assert on
23147 2005-03-27 Raja R Harinath <harinath@gmail.com>
23149 * Makefile.am (assembliesdir): Fix. If it is arch-dependent it
23150 has to be in $(exec_prefix). $(prefix) is for arch-independent
23151 stuff, and it would probably use $(prefix)/share rather than
23154 2005-03-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23156 * console-io.c: added 2 includes that might be missing.
23158 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
23160 * marshal.c (mono_marshal_get_managed_wrapper): Fix crashes in 2.0
23163 * reflection.c (create_custom_attr): Allocate the params array using
23164 alloca so it gets GC tracking.
23166 2005-03-23 Chris Toshok <toshok@ximian.com>
23168 * mono-debug-debugger.c (mono_debugger_runtime_invoke): comment
23171 2005-03-24 Raja R Harinath <rharinath@novell.com>
23173 * Makefile.am (assembly.lo, mono-config.lo): Rebuild when Makefile
23174 changes to pick up any changes in prefix, etc.
23176 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
23178 * marshal.c (mono_marshal_get_managed_wrapper): Remove fixme.
23180 * marshal.c (mono_marshal_get_managed_wrapper): Remove debugging output.
23181 * marshal.c (mono_marshal_get_managed_wrapper): Add support for the modopt(CallConvCdecl).
23183 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
23185 * class-internals.h object-internals.h class.c reflection.c: Extend the
23186 mono_lookup_dynamic_token () function to return the class of the
23189 * class.c (mono_ldtoken): Handle MEMBERREFS in the dynamic case as
23190 well. Fixes #73848.
23192 2005-03-23 Sebastien Pouliot <sebastien@ximian.com>
23194 * security-manager.c: Skip inheritance checks for intra-corlib
23195 class inheritance and method overrides. This skips a lot of checks
23196 and (anyway) permissions cannot work until corlib is loaded.
23198 2005-03-23 Martin Baulig <martin@ximian.com>
23200 * marshal.c (mono_marshal_get_stfld_wrapper): Add support for
23201 MONO_TYPE_GENERICINST.
23203 2005-03-23 Martin Baulig <martin@ximian.com>
23205 * metadata.c (mono_type_to_unmanaged): Add MONO_TYPE_GENERICINST.
23207 Tue Mar 22 16:57:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23209 * class.c: added locking comments to some functions.
23210 Cache the interface offsets arrays (saves about 20 KB
23211 of runtime memory in a typical app).
23212 Reduce the time overhead in mono_class_setup_supertypes ().
23214 Tue Mar 22 16:35:57 CET 2005 Paolo Molaro <lupus@ximian.com>
23216 * icall.c: speedup and fix leaks in GetMethodsByName and
23217 GetPropertiesByName.
23219 Tue Mar 22 16:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23221 * reflection.c: some locking fixes.
23223 Tue Mar 22 15:13:54 CET 2005 Paolo Molaro <lupus@ximian.com>
23225 * metadata.c: added missing break in case statement.
23227 2005-03-22 Zoltan Varga <vargaz@freemail.hu>
23229 * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23230 typedbyref return values. Fixes #73941.
23232 2005-03-17 Sebastien Pouliot <sebastien@ximian.com>
23234 * security-manager.c|h: Added demandunmanaged method and
23235 suppressunmanagedcodesecurity class to MonoSecurityManager.
23236 Renamed aptc class to allowpartiallytrustedcallers.
23238 2005-03-17 Martin Baulig <martin@ximian.com>
23240 * class.c (inflate_generic_type): Add MONO_TYPE_ARRAY.
23242 2005-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23244 * file-io.c: disabled file async. IO using aio_*. It uses the
23245 threadpool now. Workaround for bug #73718.
23247 Wed Mar 16 18:08:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23249 * assembly.h, mono-config.c: added code to deal with bundled configs
23250 for bundled assemblies.
23252 Wed Mar 16 16:34:38 CET 2005 Paolo Molaro <lupus@ximian.com>
23254 * *.c, private.h: cleanup, removing old private.h header file.
23256 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
23258 * reflection.c (mono_image_get_method_info): Encode best_fit_mapping
23259 and throw_on_unmappable_char attributes.
23261 2005-03-13 Sebastien Pouliot <sebastien@ximian.com>
23263 * process.c: Fix buffer length in ves_icall_System_Diagnostics_Process
23264 _ProcessName_internal.
23266 2005-03-13 Zoltan Varga <vargaz@freemail.hu>
23268 * object.c (mono_array_new_full): Fix aligning of array size. Fixes
23271 * icall.c threads.c threads-types.h: Remove slothash icalls as they
23272 are no longer used.
23274 2005-03-11 Zoltan Varga <vargaz@freemail.hu>
23276 * object.c (compute_class_bitmap): Add support for generics. Fixes
23279 2005-03-10 Zoltan Varga <vargaz@freemail.hu>
23281 * reflection.c (mono_reflection_create_runtime_class): Fix 2.0 build.
23283 2005-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23285 * filewatcher.c: commented out the code for windows watcher, as we don't
23286 use it (we use the managed implementation instead).
23288 2005-03-10 Zoltan Varga <vargaz@freemail.hu>
23290 * object-internals.h (MonoThread): Remove 'unused1' field.
23292 * appdomain.c: Bump corlib version.
23294 * marshal.c: Remove calls to Reset/RestoreDataStoreStatus ().
23296 * reflection.c (mono_reflection_create_runtime_class): Remove the
23297 AssemblyBuilder.Save optimization since it causes too many problems.
23299 2005-03-10 Sebastien Pouliot <sebastien@ximian.com>
23301 * exception.c|h: Added mono_get_exception_reflection_type_load to
23302 create a ReflectionTypeLoadException object.
23303 * icall.c: Updated ves_icall_System_Reflection_Assembly_InternalGetType
23304 to return NULL is a InheritanceDemand fails during reflection. Updated
23305 ves_icall_System_Reflection_Assembly_GetTypes to throw a
23306 ReflectionTypeLoadException if an InheritanceDemand fails during
23307 reflection. Added icall mapping for GetLinkDemandSecurity.
23308 * security-manager.c|h: Added ves_icall_System_Security_
23309 SecurityManager_GetLinkDemandSecurity internal call to return the
23310 class and methods permissions set for a LinkDemand. Removed unused
23311 fields in MonoSecurityManager.
23313 2005-03-10 Martin Baulig <martin@ximian.com>
23315 * class.c (mono_bounded_array_class_get): Initialize `eclass' if
23316 it's a generic instance.
23318 2005-03-09 Zoltan Varga <vargaz@freemail.hu>
23320 * reflection.c (mono_get_object_from_blob): Applied patch from
23321 Ankit Jain (radical@gmail.com). Fix enum default values. Fixes #73457.
23323 * class.c (mono_class_is_assignable_from): Another try at fixing
23324 #73469 without breaking anything.
23326 2005-03-08 Zoltan Varga <vargaz@freemail.hu>
23328 * class.c: (mono_class_is_assignable_from): Revert the last changes
23329 since they don't work with generics.
23331 * class.c (mono_class_is_assignable_from): Fix build bustage.
23333 * class.c (mono_class_is_assignable_from): If oklass is dynamic, call
23334 the managed IsAssignableFrom method. Fixes #73469.
23336 * reflection.c (mono_reflection_call_is_assignable_from): New helper
23339 2005-03-04 Zoltan Varga <vargaz@freemail.hu>
23341 * object.c (mono_load_remote_field_new): Fix returning uninitialized
23342 memory when the remoting callback does not sets the out arguments.
23345 * marshal.c (mono_delegate_free_ftnptr): Remove debug array checked in
23348 * string-icalls.c: Return String.Empty where needed. Fixes #73310.
23350 * object-internals.h (MonoStackFrame): Sync with managed object layout.
23352 * appdomain.c: Bump corlib version.
23354 2005-03-03 Zoltan Varga <vargaz@freemail.hu>
23356 * gc-internal.h boehm-gc.c null-gc.c: Add mono_gc_is_gc_thread () API
23359 * threads.c (mono_thread_attach): Detect threads which are not started
23360 by the GC pthread wrappers.
23362 2005-03-03 Sebastien Pouliot <sebastien@ximian.com>
23364 * icall.c: Added new icall for RNG.
23365 * rand.c|h: Added new icall to open the RNG. This allows to share a
23366 single handle on Linux to access /dev/urandom and fix #73183.
23368 Thu Mar 3 17:53:17 CET 2005 Paolo Molaro <lupus@ximian.com>
23370 * object.c: setting the new vtable in a transparent proxy object must
23371 not change the GC descriptor.
23373 Thu Mar 3 12:11:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23375 * object.c: fixed compilation without GCJ support.
23376 * reflection.c: for runtime-created types ensure klass->has_references
23377 is correct (bug #73215).
23379 2005-03-02 Martin Baulig <martin@ximian.com>
23381 * class.c (mono_class_is_assignable_from): Make this work if
23382 `oklass' is a generic instance; fixes #72831.
23384 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
23386 * marshal.c (mono_marshal_get_managed_wrapper): Fix handling of methods
23389 * marshal.c (emit_marshal_array): Emit native->managed marshalling of blittable arrays.
23391 * marshal.c: Reorganize native->managed marshalling code to also use
23392 the emit_marshal_... functions.
23394 Tue Mar 1 16:16:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23396 * object.c: typed allocs have issues with bitmap sizes > 30,
23397 so check for max_set >= 30.
23399 2005-03-01 Zoltan Varga <vargaz@freemail.hu>
23401 * marshal.c (emit_marshal_array): Implement marshalling of arrays to
23402 managed code. Fixes #73012.
23404 * metadata.h (MonoMarshalSpec): Add elem_mult field.
23406 * metadata.c reflection.c: Load/Emit elem_mult as well.
23408 * metadata.h (MonoMarshalSpec): Add comment.
23410 * metadata.h: Add MONO_MARSHAL_CONV_LPTSTR_STR.
23412 * metadata.c (mono_metadata_parse_marshal_spec): Set param_num and
23413 num_elem to -1 if not given.
23415 * object-internals.h (MonoReflectionMarshal): Add has_size field.
23417 * reflection.c (encode_marshal_blob): Differentiate between 0 and not
23420 2005-03-01 Marek Safar <marek.safar@seznam.cz>
23422 * null-gc.c (mono_gc_free_fixed): Was not compilable.
23424 2005-02-28 Zoltan Varga <vargaz@freemail.hu>
23426 * reflection.c (encode_marshal_blob): Encode param_num field as well.
23428 * object-internals.h (MonoReflectionMarshal): Add param_num field.
23430 Mon Feb 28 11:59:42 CET 2005 Paolo Molaro <lupus@ximian.com>
23432 * object.c: generalized the reference bitmap creation
23433 and added hooks for the new GC.
23434 * class-internals.c: removed the gc_bitmap field from MonoClass.
23436 Sat Feb 26 16:06:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23438 * domain.c: help the compiler to produce better code
23439 in mono_jit_info_table_find ().
23441 Fri Feb 25 16:50:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23443 * object.c: make all allocations look typed.
23445 Fri Feb 25 16:18:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23447 * socket-io.c: load Mono.Posix if it's not loaded already
23450 2005-02-24 Martin Baulig <martin@ximian.com>
23452 * class.c (dup_type): Correctly duplicate MONO_TYPE_PTR.
23453 * reflection.c (dup_type): Likewise.
23455 2005-02-24 Zoltan Varga <vargaz@freemail.hu>
23457 * gc.c (run_finalize): Set the domain for finalizing delegates as well.
23458 Thanks to Willibald Krenn and Scott Mohekey for tracking this down.
23460 Thu Feb 24 15:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23462 * domain.c, threads.c, object-internals.h: make the critical thread
23463 local vars use the fast access mode (even when we're compiled in
23464 a lib). Provide accessors to be used by the jit during codegen.
23466 2005-02-24 Carlos Alberto Cortez <calberto.cortez@gmail.com>
23468 * appdomain.c: Changed hook functios behavior to include
23469 support for the reflection only assemblies. Some icalls were changed
23470 to support the mentioned assemblies too. Signatures of static methods
23471 try_assembly_resolve and real_load now have an additional parameter:
23474 * assembly.c: General changes to mono_assembly_ methods to support
23475 reflection only api. Functions mono_assembly_open, mono_assembly_load,
23476 mono_assembly_load_from and mono_assembly_loaded have got a '_full'
23477 suffix, to support an additional gbool parameter to specify whether
23478 the assembli is reflection only or not. Created some new hook functions
23479 to add support for reflection only assemblies. Signatures of static
23480 methods load_in_path, search_loaded, and mono_assembly_load_from_gac
23481 have now an additional parameter: refonly.
23483 * metadata-internals.h: MonoAssembly now has a gbool ref_only flag,
23484 indicating whether the assembly is reflection only or not.
23486 * exception.c: Add mono_get_exception_invalid_operation.
23488 * icall.c: Throw an InvalidOperationException when trying to invoke
23489 a property/method/event, or trying to set/get the value of a field.
23490 Also add an icall to retrieve the ref_only flag to the
23491 MonoReflectionAssembly.
23493 2005-02-23 Chris Toshok <toshok@ximian.com>
23495 Part of fix for #72827.
23496 * mono-debug.c (mono_debug_add_method): add lexical block data to
23497 the info we write. Kind of a hack at the moment - we copy the
23498 lexical block info from the MonoDebugMethodInfo to the
23499 MonoDebugMethodJitInfo here, before writing it.
23500 (mono_debug_read_method): read the lexical block info.
23502 * mono-debug.h (_MonoDebugMethodJitInfo): add lexical block slots.
23504 * debug-mono-symfile.h: add lexical block support.
23506 * debug-mono-symfile.c (mono_debug_find_method): add lexical block
23509 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
23511 * loader.c (mono_lookup_pinvoke_call): Fix warning.
23513 * object.c (mono_runtime_free_method): Call mono_free_method () and
23514 put the TODOs there.
23516 * loader.c (mono_free_method): Free up most memory allocated for
23519 Wed Feb 23 18:54:26 CET 2005 Paolo Molaro <lupus@ximian.com>
23521 * reflection.c: properly flag a Type argument to a
23522 named custom attr value (bug #72248).
23524 Wed Feb 23 18:32:35 CET 2005 Paolo Molaro <lupus@ximian.com>
23526 * reflection.c: reduce code duplication in named custom
23527 attribute encoding.
23529 Wed Feb 23 17:23:52 CET 2005 Paolo Molaro <lupus@ximian.com>
23531 * reflection.c: properly encode custom attrs of type object
23534 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
23536 * marshal.c (mono_delegate_free_ftnptr): Make this thread safe.
23538 Tue Feb 22 21:54:47 CET 2005 Paolo Molaro <lupus@ximian.com>
23540 * socket-io.c: load System.dll if it's not loaded already
23541 (bug #72850 and #70477).
23543 2005-02-21 Martin Baulig <martin@ximian.com>
23545 * marshal.c (mono_marshal_get_runtime_invoke): Add support for
23548 2005-02-21 Martin Baulig <martin@ximian.com>
23550 * reflection.c (mono_image_build_metadata): We also need to
23551 "fixup" the MethodImpl table after we computed the final method
23552 indices. Call fixup_methodimpl() to do that.
23553 (fixup_methodimpl): New private method.
23555 Mon Feb 21 16:17:14 CET 2005 Paolo Molaro <lupus@ximian.com>
23557 * assembly.c: special case mscorlib.dll (bug#72536),
23558 patch from Carlos Alberto Cortez.
23560 2005-02-20 Zoltan Varga <vargaz@freemail.hu>
23562 * threads-types.h threads.c: Fix build bustage.
23564 * threads.c: Use a union for long<->double conversions.
23566 * threads-types.h threads.c icall.c: Implement the net 2.0 interlocked
23567 functions based on a patch by Luca Barbieri (luca.barbieri@gmail.com).
23569 * marshal.c (emit_thread_interrupt_checkpoint_call): Mark the bblock
23570 containing the checkpoint call with NOT_TAKEN.
23572 * marshal.c (mono_marshal_get_managed_wrapper): Emit interrupt
23573 checkpoint before pushing the arguments, so they won't have to be
23576 Sat Feb 19 15:19:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23578 * domain.c, assembly.c, domain-internals.h: make some data
23579 const and relocation-free.
23581 Sat Feb 19 11:12:34 CET 2005 Paolo Molaro <lupus@ximian.com>
23583 * object.c, appdomain.c, class-internals.h: introduce the
23584 MonoClassRuntimeInfo structure to hold the info needed to
23585 use a class at runtime. Made mono_class_vtable() lock-free
23586 for all the appdomains.
23588 Sat Feb 19 11:11:12 CET 2005 Paolo Molaro <lupus@ximian.com>
23590 * metadata-internals.h, image.c: introduce a per-image mempool to
23591 be used for memory that has the same lifetime as the image.
23593 2005-02-18 Lluis Sanchez Gual <lluis@novell.com>
23595 * domain.c: In mono_init_internal(), instead of selecting the first
23596 runtime version supported by an executable, get a list of all
23597 supported versions and select the one for which an mscorlib exists
23598 (since even if the runtime supports a given version, it doesn't mean
23599 that the framework for that version is installed).
23600 Modified get_runtimes_from_exe to support this behavior.
23601 In supported_runtimes, added information about additional system
23604 * assembly.c: Added support for more than one system assembly version
23605 per runtime version. Updated the assembly list.
23606 In mono_assembly_remap_version, removed the initial version check,
23607 since we don't know to which version we need to compare until we
23608 get the version set on which the assembly is based.
23609 Moved the code for loading corlib into the new method
23610 mono_assembly_load_corlib(), so it can be used by the initialization
23613 * domain-internals.h: Updated data structures and added declaration
23614 for mono_assembly_load_corlib.
23616 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
23618 * reflection.c (resolve_object): Fix the creation of the signature in
23619 the SignatureHelper case.
23621 * assembly.c (mono_assembly_remap_version): Fix binary search.
23623 2005-02-17 Sebastien Pouliot <sebastien@ximian.com>
23625 * class.c: Added inheritance check when a method is overloaded (from a
23626 virtual method or when implementing an interface) and when a class is
23627 inherited. Added functions to set a failure for a class and to
23628 retreive the exception from a failure.
23629 * class-internals.h: Added fields to MonoClass to keep the exception
23630 information status for inheritance (or other exceptions) to be thrown
23631 later (i.e. not at load time).
23632 * object.c: Throw the inheritance SecurityException when a type is to
23633 be created with either class or method inheritance violations.
23634 * reflection.c|h: Fix when getting declsec from a class. Removed
23635 unrequired code for class. Improved sanity in parameter naming.
23636 * security-manager.c|h: Added functions to check for class and method
23639 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
23641 * reflection.c (mono_reflection_create_runtime_class): Set has_cctor
23642 and has_finalize in dynamic types as well.
23644 2005-02-17 Atsushi Enomoto <atsushi@ximian.com>
23646 * culture-info-table.h : fixed currency format for en-GB (and so on).
23648 Wed Feb 16 16:28:15 CET 2005 Paolo Molaro <lupus@ximian.com>
23650 * gc.c: ensure the GC handles never have 0 as a value.
23652 2005-02-16 Zoltan Varga <vargaz@freemail.hu>
23654 * marshal.c (emit_marshal_ptr): Raise an exception if trying to pass
23655 a pointer to a struct to unmanaged code. Fixes #72625.
23657 2005-02-16 Martin Baulig <martin@ximian.com>
23659 * mono-debug.c (mono_debug_open_image): Ignore dynamic images.
23661 2005-02-16 Zoltan Varga <vargaz@freemail.hu>
23663 * marshal.c (emit_marshal_array): Only marshal unicode char arrays as [Out].
23665 2005-02-15 Zoltan Varga <vargaz@freemail.hu>
23667 * loader.c (mono_lookup_pinvoke_call): Fix stdcall name mangling.
23669 * marshal.c (mono_ftnptr_to_delegate): If the delegate has the
23670 UnmanagedFunctionPointerAttribute, use it for determining calling convention
23673 * reflection.c (mono_custom_attrs_get_attr): New helper function.
23675 * object-internals.h: Add MonoReflectionUnmanagedFunctionPointerAttribute.
23677 Tue Feb 15 18:03:41 CET 2005 Paolo Molaro <lupus@ximian.com>
23679 * domain.c, appdomain.c, appdomain.h, object-internals.h, object.h:
23680 changes to make the current context a field in MonoThread.
23682 2005-02-15 Zoltan Varga <vargaz@freemail.hu>
23684 * marshal.c (mono_marshal_get_native_wrapper): Fix a crash caused by
23687 * marshal.c (mono_marshal_emit_native_wrapper): New helper function
23688 extracted from mono_marshal_get_native_wrapper.
23690 * marshal.c (mono_marshal_get_native_func_wrapper): New helper function
23691 to create wrappers around native functions.
23693 * marshal.c (mono_ftnptr_to_delegate): Add support for creating
23694 delegates for arbitrary function pointers. Fixes #71472.
23696 Tue Feb 15 11:01:09 CET 2005 Paolo Molaro <lupus@ximian.com>
23698 * threads.c: cleaned up the code a little.
23700 2005-02-15 Martin Baulig <martin@ximian.com>
23702 * mono-debug.h (MonoSymbolTable): Allow variable-length chunks in
23705 * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Set to 32768; we may now
23706 allocate larger chunks if needed.
23708 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
23710 * threads.c (start_wrapper): Remove #ifdef PLATFORM_WIN32 probably left
23713 Mon Feb 14 16:48:24 CET 2005 Paolo Molaro <lupus@ximian.com>
23715 * domain.c: keep the domains in an array and ensure the domain ids
23716 are kept small, so they can be used as indexes to domain-specific data
23717 with a small memory overhead.
23719 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
23721 * icall.c: Handle byref types in Type icalls. Fixes #72544.
23723 Mon Feb 14 15:39:56 CET 2005 Paolo Molaro <lupus@ximian.com>
23725 * Makefile.am: remove libmetadata: we build just libmonoruntime now.
23727 2005-02-13 Zoltan Varga <vargaz@freemail.hu>
23729 * tabledefs.h (MANIFEST_RESOURCE_VISIBILITY_MASK): Add flags for ManifestResource.
23731 * loader.c (mono_lookup_pinvoke_call): Correct the search order used for different CharSet
23734 * marshal.c (mono_marshal_get_string_encoding): CHAR_SET_AUTO means Unicode on windows.
23736 2005-02-12 Ben Maurer <bmaurer@ximian.com>
23738 * domain-internals.h: add the hashtable here.
23740 * class-internals.h: Remove `info' from MonoMethod
23742 * domain.c: Add a new hashtable, jit_trampoline_hash
23744 Fri Feb 11 17:11:20 CET 2005 Paolo Molaro <lupus@ximian.com>
23746 * object.c: don't set the value of static fields
23749 2005-02-11 Martin Baulig <martin@ximian.com>
23751 * mono-debug.c (DATA_TABLE_CHUNK_SIZE): Increase to 131072.
23752 (mono_debug_add_method): Silently ignore the method if it's too big.
23753 (mono_debug_add_type): Likewise.
23755 Fri Feb 11 16:22:10 CET 2005 Paolo Molaro <lupus@ximian.com>
23757 * threads.c, appdomain.c: remove #ifdefs from the code.
23759 2005-02-10 Sebastien Pouliot <sebastien@ximian.com>
23761 * metadata-internals.h: Added flags to MonoAssembly to cache the most
23762 common security informations. This allows us to stay in unmanaged code
23763 when doing LinkDemand and it's special cases (except for the first
23764 time for initialization). The flags a very much used with --security.
23765 * reflection.c|h: Added code to get declarative security attributes
23766 for LinkDemand and InheritanceDemand. This required to refactor the
23767 existing code for Demand.
23768 * security-manager.c|h: Added new method fields for the special cases
23771 2005-02-10 Martin Baulig <martin@ximian.com>
23773 * icall.c (ves_icall_MonoDebugger_MakeArrayType): New interncall.
23774 (ves_icall_MonoDebugger_GetTypeToken): New interncall.
23776 2005-02-10 Martin Baulig <martin@ximian.com>
23778 * mono-debug.c, mono-debug-debugger.c: Completely reworked the
23779 debugging code; this is almost a complete rewrite.
23781 * icall.c (ves_icall_MonoDebugger_GetMethodIndex): New interncall.
23783 Thu Feb 10 15:19:01 CET 2005 Paolo Molaro <lupus@ximian.com>
23785 * domain.c, object.h: expose mono_string_equal () and
23786 mono_string_hash ().
23787 * icall.c, string-icalls.c: remove the string.GetHashCode () icall,
23788 it's implemented in managed code.
23790 Thu Feb 10 15:03:46 CET 2005 Paolo Molaro <lupus@ximian.com>
23792 * icall.c, gc.c, gc-internal.h: make sure gchandles can't be used
23793 lo leak objects between appdomains.
23795 Thu Feb 10 14:25:00 CET 2005 Paolo Molaro <lupus@ximian.com>
23797 * assembly.c: old compilers compilation fix from
23798 robertj@gmx.net (Robert Jordan).
23800 2005-02-09 Ben Maurer <bmaurer@ximian.com>
23802 * class-internals.h: Little reminder for the future.
23804 * debug-helpers.c: Fix up wrapper_type_names
23806 Wed Feb 9 19:34:29 CET 2005 Paolo Molaro <lupus@ximian.com>
23808 * image.c, metadata-internals.h: when loading an image from a file,
23809 mmap all of it and use the same codepaths as when using a
23810 in-memory image: the code is simpler and we use less memory
23811 (both writable and readonly).
23813 Wed Feb 9 18:32:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23815 * gc-internal.h, null-gc.c, boehm-gc.c: added functions to the GC
23816 API to alloc runtime data structures that need to be tracked by the
23817 GC and contain pointers.
23818 * appdomain.c, threads.c, object.c, gc.c: use the above changes to
23819 make the code more readable and eventually use a different GC.
23821 2005-02-09 Zoltan Varga <vargaz@freemail.hu>
23823 * marshal.c (emit_marshal_vtype): Don't do managed->native conversion
23826 2005-02-09 Lluis Sanchez Gual <lluis@novell.com>
23828 * object.c: In release_type_locks(), don't release the cctor lock
23829 if it has already been released. This fixes a crash in the
23832 Tue Feb 8 19:02:59 CET 2005 Paolo Molaro <lupus@ximian.com>
23834 * gc.c, marshal.c, icall.c: register a delegate for finalization
23835 only when the native function pointer has been allocated for it.
23837 Tue Feb 8 18:12:27 CET 2005 Paolo Molaro <lupus@ximian.com>
23839 * object.c: cleaned up some code, allocate objects that are
23840 pointer free with the atomic malloc variant. Allocate memory
23841 for static data from the mempool if it's pointer-free.
23842 Allocate the bounds array at the end of the array data, when needed.
23843 * object-internals.h, object.h: move a private function in a private
23845 * class.c: handle missing case in tracking references in fields.
23847 Tue Feb 8 18:04:51 CET 2005 Paolo Molaro <lupus@ximian.com>
23849 * class.c, class-internals.h: keep track if a type has
23850 reference fields in either the instance or static fields.
23852 2005-02-07 Lluis Sanchez Gual <lluis@novell.com>
23854 * domain.c, domain-internals.h: Moved RuntimeInfo to domain-internals.h,
23855 and renamed to MonoRuntimeInfo. Added fields to store the expected
23856 framework assembly version. Changed mono_get_framework_version and
23857 mono_get_runtime_version for a single mono_get_runtime_info method.
23859 * assembly.c: Added method to remap system assembly versions to the
23860 current executing runtime version. Removed old mapping code.
23861 Remap assembly versions in mono_assembly_load and mono_assembly_loaded.
23863 * icall.c, reflection.c: Track api changes.
23865 2005-02-06 Miguel de Icaza <miguel@novell.com>
23867 * loader.c (method_from_memberref): Improve error reporting,
23868 produce the class name instead of the typeref/typedef index.
23870 2005-02-07 Zoltan Varga <vargaz@freemail.hu>
23872 * marshal.c (mono_marshal_get_stfld_remote_wrapper): Fix wrapper type.
23874 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
23876 * loader.c (mono_lookup_pinvoke_call): Allow for combination of
23877 stdcall and charset name mangling. Reorganize the code and add
23878 some tracing stuff.
23880 2005-02-05 Ben Maurer <bmaurer@ximian.com>
23882 * monodiet.c: More iters!
23884 * marshal.c: Iter usage.
23886 * icall.c: Iter usage.
23888 * object.c: Use iters.
23890 * debug-helpers.c: More iters
23892 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
23894 * loader.c (mono_lookup_pinvoke_call): Add brute-force checking for mangled function names
23897 2005-02-05 Ben Maurer <bmaurer@ximian.com>
23899 * mono-debug-debugger.c: use iters
23901 * class.c, class-internals.h: mono_class_setup_events is static
23904 * All callers: use iters
23906 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
23908 * class.c string-icalls.c marshal.c reflection.c: Applied patch from
23909 Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
23911 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
23913 * object.c (mono_class_proxy_vtable): Add missing _setup () calls.
23915 * marshal.h: Add prototypes for ldfld/stfld_remote.
23917 * appdomain.c (mono_domain_fire_assembly_load): Handle the case when
23918 this is called during startup.
23920 Fri Feb 4 20:27:58 CET 2005 Paolo Molaro <lupus@ximian.com>
23922 * appdomain.c, monitor.c, monitor.h, threads-types.h: made the
23923 MonoThreadsSync struct private in monitor.c. Changed the way
23924 MonoThreadsSync is allocated so it's faster and there is no
23925 need to keep track of it with a finalizer and it uses less memory.
23926 This also finally allows us to allocate mono objects as ptrfree when
23927 there are no reference fields.
23929 Fri Feb 4 20:24:03 CET 2005 Paolo Molaro <lupus@ximian.com>
23931 * gc.c, null-gc.c, boehm-gc.c, gc-internal.h: added functions to deal with
23932 disappearing link to the GC interface and use them to simplify
23933 the gchandles code.
23935 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
23937 * class-internals.h marshal.c: Add two new wrappers, ldfld_remote and
23938 stfld_remote which call mono_load/store_field_new. This allows methods
23939 calling ldfld/stfld wrappers to be AOTed.
23941 * console-io.c: Include sys/filio.h under solaris.
23943 * console-io.c: Include curses.h if needed correctly.
23945 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
23947 * icall.c (ves_icall_MonoMethod_get_base_definition): Initialize
23948 method->klass as well.
23950 * class-internals.h (MonoCachedClassInfo): Add 'finalize_image' field.
23952 * class.c (mono_class_init): Switch on lazy initialization of
23955 * class.c (mono_class_get_finalizer): Handle the case when the
23956 finalizer is inherited.
23958 2005-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
23960 * console-io.c: <curses.h> is needed by term.h on solaris.
23962 2005-02-03 Ben Maurer <bmaurer@ximian.com>
23964 * icall.c, class-internals.h, monodiet.c, class.c: Remove
23965 mono_class_setup_properties where possible. Remove this ftn from
23966 the header file, and make it static.
23968 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
23970 * loader.c: Add missing setup_... call.
23972 * class.c: Add missing setup_... calls.
23974 * class.c (mono_class_init): Switch on lazy initialization of
23975 the generic vtable.
23977 * class.c (mono_class_init): Fix generics broken by the recent changes.
23979 * monodiet.c (handle_type): Add missing setup_... calls.
23981 * class.c: Back out garbage in previous patch.
23983 * class.c: Add missing setup_... calls.
23985 * class.c (mono_class_get_method_from_name_flags): Avoid calling
23986 mono_class_setup_methods () if possible.
23988 * class-internals.h (MonoClass): Add 'has_cctor' flag.
23990 * class-internals.h (MonoCachedClassInfo): New structure.
23992 * class.c: Initialize properties and events fields of MonoClass lazily.
23994 * class.c: Add infrastructure for lazily initializing the methods and
23995 vtable fields of MonoClass. Not yet used.
23997 * class.c (mono_class_get_finalizer): New helper function.
23999 * class.c: Add infrastructure for loading some class related data from
24002 * object.c: Add infrastructure for initializing the vtable from data
24005 * gc.c (run_finalize): Use mono_class_get_finalizer ().
24007 * class.c loader.c object.c icall.c gc.c reflection.c: Call the
24008 appropriate initialization function before accessing parts of the
24009 MonoClass structure.
24011 * marshal.c: Fix warnings.
24013 * marshal.c (emit_marshal_array): Add missing 'break'. Fixes #72169.
24015 * mono-debug-debugger.c (get_exception_message): Use
24016 mono_class_get_method_from_name_flags ().
24018 2005-02-02 Ben Maurer <bmaurer@ximian.com>
24020 * reflection.c, appdomain.c: Replace a few manual searches that
24021 Zoltan missed. (Paolo approved this part of my initial patch).
24023 Wed Feb 2 16:32:08 CET 2005 Paolo Molaro <lupus@ximian.com>
24025 * profiler.c: disable recording statistical events at report time.
24027 Wed Feb 2 14:14:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24029 * icall.c: patch from Geoff Norton <gnorton@customerdna.com>
24030 to byteswap arrays of enum values, too (bug #72080).
24032 2005-02-02 Zoltan Varga <vargaz@freemail.hu>
24034 * appdomain.c (set_domain_search_path): Allow this to be called if
24035 domain->setup is not yet set.
24037 * loader.c (mono_method_get_index): New helper function.
24039 * loader.c reflection.c: Use mono_method_get_index ().
24041 * class.c (mono_class_get_method_from_name_flags): New helper method.
24043 * debug-helpers.h debug-helpers.c (mono_find_method_by_name): Remove
24046 * class.c (mono_class_get_cctor): New helper method.
24048 * string-icalls.c object.c class.c marshal.c reflection.c: Use
24049 mono_class_get_method () to look up methods.
24051 2005-02-01 Miguel de Icaza <miguel@novell.com>
24053 * console-io.c: Fix the build, this should work on Windows.
24055 2005-01-31 Ben Maurer <bmaurer@ximian.com>
24057 * marshal.c (mono_marshal_xdomain_copy_out_value): cached_str must
24058 be set to null to keep things valid
24060 2005-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24062 * icall.c: added Console 2.0 icalls.
24063 * Makefile.am: added console-io.[ch]
24064 * console-io.[ch]: internal calls for Console 2.0 API.
24066 Mon Jan 31 19:01:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24068 * class.c: make sure we consider all the interfaces
24069 when calculating max_interface_id (bug found by
24070 Jeroen Frijters running ikvm).
24072 2005-01-31 Zoltan Varga <vargaz@freemail.hu>
24074 * icall.c (ves_icall_FieldInfo_SetValueInternal): Handle setting of
24075 valuetype fields to null.
24077 * object.c (set_value): Ditto. Fixes #71669.
24079 2005-01-31 Martin Baulig <martin@ximian.com>
24081 * metadata.c (mono_metadata_has_generic_params): New public
24082 function; checks whether something is a generic method.
24084 Sun Jan 30 20:19:48 CET 2005 Paolo Molaro <lupus@ximian.com>
24086 * appdomain.c: fix infinite recursion when adding assemblies.
24088 2005-01-30 Sebastien Pouliot <sebastien@ximian.com>
24090 * object.c: Fix small typo to return all items for Environment.
24091 GetCommandLineArgs.
24093 Sun Jan 30 16:49:01 CET 2005 Paolo Molaro <lupus@ximian.com>
24095 * domain.c, appdomain.c, assembly.c, image.c, domain-internals.h,
24096 reflection.c: more domain and assembly-unload related fixes
24097 and memory leaks plugs.
24099 2005-01-30 Zoltan Varga <vargaz@freemail.hu>
24101 * 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.
24103 2005-01-29 Ben Maurer <bmaurer@ximian.com>
24105 * loader.c (mono_method_signature): Make this method lazy
24106 (mono_get_method_from_token): Don't computate the signature here.
24108 Doing this saves quite a bit of memory. I got 90 kb on starting up
24109 monodoc. It should also save some disk reads on startup.
24111 * *: MonoMethod->signature might be NULL now. You *MUST* use
24112 mono_method_signature.
24114 2005-01-29 Zoltan Varga <vargaz@freemail.hu>
24116 * object.c (mono_runtime_get_main_args): Return an array from the
24117 current domain here. Fixes #71938.
24119 Sat Jan 29 15:59:05 CET 2005 Paolo Molaro <lupus@ximian.com>
24121 * monitor.c: formatting changes to comply with the
24122 mono coding style and remove #ifdefs from the code.
24124 Sat Jan 29 15:18:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24126 * metadata.c, private.h: remove some unneeded data
24127 and use a more compact representation for table schemas.
24129 Fri Jan 28 18:23:44 CET 2005 Paolo Molaro <lupus@ximian.com>
24131 * metadata.c, metadata-internals.h: add mono_aligned_addr_hash()
24132 to get a better distribution in hash tables.
24133 * *.c: use mono_aligned_addr_hash() where appropriate.
24134 * assembly.c: make var static.
24136 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
24138 * domain-internals.h: Put MonoJitInfo on a diet.
24140 * domain.c: Fix a warning.
24142 Wed Jan 26 22:20:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24144 * gc.c: rework the gc handles code to reuse handles
24147 Wed Jan 26 17:34:09 CET 2005 Paolo Molaro <lupus@ximian.com>
24149 * domain.c: fixed long standing bug in mono_string_equal() which
24150 was brought to light with the ldstr changes.
24152 2005-01-26 Sebastien Pouliot <sebastien@ximian.com>
24154 * reflection.c: Remove warning by adding missing include for marshal.h
24156 Tue Jan 25 18:06:00 CET 2005 Paolo Molaro <lupus@ximian.com>
24158 * domain.c, object.c: change the ldstr_table to hold
24159 MonoString* as keys: makes the runtime isinterned lookup
24160 faster and simplifies memory management.
24162 2005-01-25 Sebastien Pouliot <sebastien@ximian.com>
24164 * icall.c: Renamed GetEnvironmentVariable so internal* so it was
24165 possible to add imperative security checks before calling the icall.
24166 * reflection.c: Return security attributes on the original MonoMethod
24167 (and not the wrapped one). This fix permissions on icalls.
24169 2005-01-25 Dick Porter <dick@ximian.com>
24171 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Make
24172 the check for mktime() support actually test the mktime() return
24173 value. "Fixes" bug 71682, though the output is still different to
24176 2005-01-25 Martin Baulig <martin@ximian.com>
24178 * class.c (mono_class_is_assignable_from): Make this work for
24181 2005-01-24 Ben Maurer <bmaurer@ximian.com>
24183 * marshal.c (mono_string_utf8_to_builder)
24184 (mono_string_builder_to_utf16): We might not have ownership of the
24185 string. In thise case, we need to create a new buffer.
24187 * object-internals.h (mono_stringbuilder_capacity): sb->str might
24188 be null, in which case, use the default capacity.
24190 Mon Jan 24 16:42:29 CET 2005 Paolo Molaro <lupus@ximian.com>
24192 * gc-internal.h, null-gc.c, profiler.c, boehm-gc.c: hook the
24193 GC events to the profiler.
24195 Mon Jan 24 15:59:54 CET 2005 Paolo Molaro <lupus@ximian.com>
24197 * gc.c: remove valgrind detection nonsense. Set GC_DONT_GC
24198 if you don't want the GC to run.
24200 Mon Jan 24 15:53:25 CET 2005 Paolo Molaro <lupus@ximian.com>
24202 * Makefile.am, gc.c, mono-gc.h, boehm-gc.c, null-gc.c, gc-internal.h:
24203 start providing a GC API and keeping different implementations in
24205 * profiler.h, profiler.c, profiler-private.h: provide the GC events API.
24207 2005-01-22 Ben Maurer <bmaurer@ximian.com>
24209 * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Use
24210 mmap rather than allocating a huge buffer.
24211 (mono_debug_close_mono_symbol_file): Free the buffer allocated
24214 2005-01-22 Sebastien Pouliot <sebastien@ximian.com>
24216 * icall.c: Add new internal calls for SecurityManager.SecurityEnabled
24217 and CheckExecutionRights.
24218 * reflection.c|h: Keep the index of the declarative security to be
24219 used, instead of the pointer, when AOT compiler is used. Also add
24220 class initialization when requesting demands.
24221 * security-manager.c|h: Implement SecurityManager.SecurityEnabled and
24222 CheckExecutionRights. Both properties are now FALSE by default, and
24223 unmodifiable, unless the --security option is used.
24225 Fri Jan 21 15:29:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24227 * domain.c, appdomain.c, assembly.c, image.c, metadata-internals.h,
24228 reflection.c: properly refcount images and assemblies, many leaks fixed.
24230 2005-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24232 * threadpool.c: increase the timeout for threads in the thread pool to
24233 10s. Fixes bug #67159.
24235 2005-01-20 Bernie Solomon <bernard@ugsolutions.com>
24237 * class-internals.h: Sun's compiler insists on explicit
24238 signed on bit fields to handle then correctly.
24240 2005-01-19 Miguel de Icaza <miguel@ximian.com>
24242 * file-io.c (ves_icall_System_IO_MonoIO_get_InvalidPathChars):
24243 Make the size of the array fit only the number of invalid path
24244 chars that we have.
24246 * class.c (_mono_class_get): Improve the error reporting when a
24247 class referenced is not found, to assist debugging.
24249 Wed Jan 19 19:57:43 CET 2005 Paolo Molaro <lupus@ximian.com>
24251 * threads.c: fix off-by-one error.
24252 * domain.c: free data allocated in the domain.
24254 2005-01-19 Zoltan Varga <vargaz@freemail.hu>
24256 * reflection.c (mono_method_body_get_object): Fill out exception info
24259 * object-internals.h: Add MonoReflectionExceptionHandlingClause
24262 2005-01-19 Martin Baulig <martin@ximian.com>
24264 * loader.c (mono_get_method_constrained): Make this work again.
24266 2005-01-19 Zoltan Varga <vargaz@freemail.hu>
24268 * object-internals.h (_MonoReflectionMethodBody): Make local_index a
24269 guint16 to match the managed side.
24271 * reflection.c (mono_reflection_body_get_object): Fill out local
24274 * reflection.c (mono_method_body_get_object): Fill out local_var_sig_token
24277 * object-internals.h (_MonoReflectionMethodBody): Rename 'sig_token' to
24278 'local_var_sig_token'.
24280 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
24282 * loader.c (mono_lookup_pinvoke_call): Revert the previous patch as it breaks
24285 * reflection.c (mono_method_body_get_object): Handle abstract and
24288 Mon Jan 17 19:22:39 CET 2005 Paolo Molaro <lupus@ximian.com>
24290 * marshal.c, loader.c, class-internals.h, reflection.c:
24291 store the emthod data for a wrapper in an array instead of a list.
24293 Mon Jan 17 18:48:53 CET 2005 Paolo Molaro <lupus@ximian.com>
24295 * marshal.c: change the code to allocate memory more
24296 conservatively for method wrappers.
24298 Mon Jan 17 18:03:30 CET 2005 Paolo Molaro <lupus@ximian.com>
24300 * class-internals.h, marshal.c: move the str_to_ptr and ptr_to_str
24301 fields from MonoClass to the marshal info structure where they belong.
24303 Mon Jan 17 16:14:46 CET 2005 Paolo Molaro <lupus@ximian.com>
24305 * class.c, object.c, class-internals.h, marshal.c: rearrange
24306 some fields and tweak some types to lower memory usage.
24308 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
24310 * threads.c (signal_thread_state_change): Handle the case when the
24311 target thread is the current thread.
24313 * marshal.c (mono_struct_delete_old): Do not free lpwstr fields.
24315 * marshal.c: Rename emit_ptr_to_str_conv and its pair to
24316 emit_ptr_to_object_conv.
24318 * marshal.c (emit_ptr_to_object_conv): Add support for lpwstr->str
24319 marshalling. Fixes #71352.
24321 Mon Jan 17 10:59:20 CET 2005 Paolo Molaro <lupus@ximian.com>
24323 * metadata.h, blob.h: move table enum to blob.h so it can be included
24325 * image.c, metadata.c, metadata-internals.h, pedump.c, reflection.c:
24326 cut the size of MonoImage/MonoDynamicImage.
24328 2005-01-16 Zoltan Varga <vargaz@freemail.hu>
24330 * profiler.c (mono_profiler_install_simple): Fix default arguments.
24332 Sun Jan 16 12:25:22 CET 2005 Paolo Molaro <lupus@ximian.com>
24334 * reflection.c, reflection.h, icall.c: add a function to check
24335 if an attribute type is defined for a metadata object.
24337 2005-01-14 Lluis Sanchez Gual <lluis@novell.com>
24339 * object-internals.h: Added some needed fields from StringBuilder class.
24340 * marshal.c: Set the maxCapacity when creating a StringBuilder.
24342 2005-01-13 Zoltan Varga <vargaz@freemail.hu>
24344 * icall.c (ves_icall_System_Environment_Exit): Suspend all managed
24345 threads before shutting down the runtime.
24347 * threads.c (mono_thread_suspend_all_other_threads): New helper function.
24349 Thu Jan 13 18:16:35 CET 2005 Paolo Molaro <lupus@ximian.com>
24351 * object-internal.h, threads.c: implement stacksize and
24352 parameterized thread start functionality (requires
24353 matching corlib). Marked broken code for later removal.
24355 2005-01-12 Martin Baulig <martin@ximian.com>
24357 * class-internals.h (MonoGenericClass): Moved the `initialized'
24358 flag to MonoDynamicGenericClass, removed `init_pending'.
24359 (MonoGenericInst): Added `is_reference' flag.
24361 2005-01-12 Zoltan Varga <vargaz@freemail.hu>
24363 * reflection.c (mono_image_create_pefile): Only set the pe_offset
24364 inside the MSDOS header. Fixes #71201.
24366 * gc.c (mono_gc_cleanup): Handle the case when this is called from the
24368 (mono_domain_finalize): Ditto.
24370 2005-01-12 Martin Baulig <martin@ximian.com>
24372 * class.c (mono_get_shared_generic_class): Use the cache for
24373 non-dynamic generic classes.
24375 * class-internals.h (mono_class_create_generic_2): Removed
24376 function prototype, this function is now static inside class.c.
24378 * class.c (mono_class_create_generic_2): Made this static, only
24379 call it from mono_class_init() and mono_class_setup_parent().
24380 (collect_implemented_interfaces_aux): Call mono_class_init() on
24381 the interfaces we collect.
24382 (mono_class_setup_vtable): Call mono_class_init (class->parent).
24384 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
24386 * threads.c (mono_thread_attach): Call DuplicateHandle on the thread handle on win32 to make
24387 it a real thread handle.
24389 * domain-internals.h: Move exvar_offset from MonoJitInfo to
24390 MonoJitExceptionInfo, since each catch clause needs its own variable.
24392 2005-01-11 Dick Porter <dick@ximian.com>
24394 * image.c (mono_pe_file_open): New variant on mono_image_open()
24395 that does not set up the CLI metadata; used for FileVersionInfo so
24396 it can get the data for windows binaries too.
24398 * process.c (process_read_string_block): Don't read off the end of
24399 the StringTable block.
24401 These both fix bug 70766.
24403 Tue Jan 11 15:26:00 CET 2005 Paolo Molaro <lupus@ximian.comt>
24405 * gc.c: set some fields to NULL at GC cleanup time.
24406 * threads.c: if we quit the main thread, call exit ().
24408 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
24410 * threads.c (interruption_request_apc): Decore APC callbacks with CALLBACK under win32.
24412 Mon Jan 10 18:47:28 CET 2005 Paolo Molaro <lupus@ximian.com>
24414 * threads.h, threads.c, object.c: added accessor and settor for
24415 main_thread. Handle it specially when exiting from it: wait
24416 for other foreground threads to exit.
24418 Mon Jan 10 12:06:18 CET 2005 Paolo Molaro <lupus@ximian.com>
24420 * process.c, verify.c: remove some bloat.
24422 2005-01-09 Zoltan Varga <vargaz@freemail.hu>
24424 * loader.c (mono_lookup_pinvoke_call): If we found the function without name mangling, change
24425 the calling convention to cdecl under win32.
24427 2005-01-08 Ben Maurer <bmaurer@ximian.com>
24429 * object.c (mono_object_get_size): New function to get the size of
24430 an object instance.
24432 * profiler.c (simple_allocation): Use above.
24434 2005-01-08 Sebastien Pouliot <sebastien@ximian.com>
24436 * appdomain.c: Replaced ves_icall_System_AppDomain_getDomainByID by
24437 ves_icall_System_AppDomain_getRootDomain (as it's not required to
24438 get an appdomain by it's id and we can't assume the root's id is 0).
24439 * domain-internals.h: Change the function prototype to match.
24440 * icall.c: Change the icall table for AppDomain.
24442 2005-01-08 Miguel de Icaza <miguel@ximian.com>
24444 * locales.c (string_invariant_compare_char): Only compute
24445 GUnicodeTypes in the case where we need them. Test for ordinality
24446 first and return if so.
24451 * FIXME: here we must use the information from c1type and c2type
24452 * to find out the proper collation, even on the InvariantCulture, the
24453 * sorting is not done by computing the unicode values, but their
24454 * actual sort order.
24457 Sat Jan 8 19:03:26 CET 2005 Paolo Molaro <lupus@ximian.com>
24459 * loader.c: for P/Invoke methods, allow the "Internal" shared
24460 library name to refer to the calling process symbol namespace.
24462 2005-01-07 Sebastien Pouliot <sebastien@ximian.com>
24464 * Makefile.am: Add the security manager to the build.
24465 * security-manager.c|h: New. Initialization of the security manager.
24467 2005-01-07 Dick Porter <dick@ximian.com>
24470 * monitor.c: Update thread state during Monitor and WaitHandle
24471 waits. Fixes bug 71031.
24473 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
24475 * reflection.c (property_encode_signature): Correctly handle when the
24476 property has no methods.
24478 2005-01-06 Zoltan Varga <vargaz@freemail.hu>
24480 * reflection.c (reflection_methodbuilder_to_mono_method): Remove debug stuff.
24482 * reflection.c (reflection_methodbuilder_from_method_builder): Copy
24483 fields from mb, not rmb. Fixes #71017.
24485 * marshal.c (emit_ptr_to_str_conv): Add support for
24486 ByValTStr -> string conversion. Fixes #71015.
24488 * appdomain.c (mono_domain_owns_vtable_slot): New helper function.
24490 * mempool.c (mono_mempool_contains_addr): New helper function.
24492 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
24494 * metadata.c (mono_metadata_compute_size): Fix size calculation of
24495 HasSematics encoded fields.
24497 * metadata.c (mono_type_to_unmanaged): Improve error message for
24498 invalid string marshalling.
24500 * metadata.c: Fix warnings.
24502 Wed Jan 5 16:17:27 CET 2005 Paolo Molaro <lupus@ximian.com>
24504 * profiler-private.h, profiler.c, profiler.h, gc.c: sample statistical
24507 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
24509 * domain.c object.c domain-internals.h: Revert part of r38077 since the
24510 keys to proxy_vtable_hash are GCd objects. Fixes running the class lib
24513 2005-01-03 Zoltan Varga <vargaz@freemail.hu>
24515 * marshal.c: Use MONO_CLASSCONST instead of MONO_LDPTR in some places,
24516 so methods containing these can be AOTed.
24518 2005-01-03 Martin Baulig <martin@ximian.com>
24520 * loader.c (find_method): Removed the hack for generic instances.
24521 (method_from_memberref): If our parent is a generic instance, pass
24522 its generic type definition to find_method() and then inflate the
24524 (mono_get_method_constrained): Pass the generic type definition to
24525 find_method() and inflate the method later.
24527 * class-internals.h (MonoStats): Added `generic_class_count'.
24529 * icall.c (ves_icall_MonoGenericMethod_get_reflected_type):
24530 Renamed to ves_icall_MonoGenericMethod_get_ReflectedType().
24532 * reflection.c (mono_custom_attrs_from_params): Don't ignore
24533 generic type definitions.
24535 2004-12-30 Zoltan Varga <vargaz@freemail.hu>
24537 * loader.c icall.c: Fix warnings.
24539 2004-12-29 Zoltan Varga <vargaz@freemail.hu>
24541 * marshal.c (mono_marshal_get_managed_wrapper): Fix returning of
24542 blittable types. Fixes #70864.
24544 2004-12-29 Martin Baulig <martin@ximian.com>
24547 (ves_icall_MonoGenericMethod_get_reflected_type): New interncall.
24549 * reflection.c (mono_method_get_object): Create a
24550 "System.Reflection.MonoGenericMethod" for inflated methods; don't
24551 call mono_get_inflated_method().
24553 * class-internals.h (MonoStats): Added `inflated_method_count_2'.
24555 2004-12-27 Martin Baulig <martin@ximian.com>
24557 * class-internals.h (MonoMethod): Added `is_inflated' flag.
24558 (MonoMethodInflated): Added `inflated' field.
24560 * class.c (mono_class_inflate_generic_method): Don't really
24561 inflate the method here; just set the `is_inflated' flag in the
24563 (mono_class_get_inflated_method): Actually inflate the method here
24564 if it's not already inflated; we use the MonoMethodInflated's new
24565 `inflated' field as a cache.
24567 2004-12-26 Martin Baulig <martin@ximian.com>
24570 (inflate_generic_class): Moved some code out of inflate_generic_type().
24571 (mono_class_inflate_generic_method): If we're already inflated,
24572 inflate the context and use the declaring method; ie. make sure
24573 the declaring method of an inflated method is always the generic
24575 (mono_class_create_from_typedef): Create
24576 `class->generic_container->context->gclass'.
24578 2004-12-24 Ben Maurer <bmaurer@ximian.com>
24580 * metadata-internals.h, marshal.c, reflection.c: More
24581 MonoGHashTable->GHashTable.
24583 * domain-internals.h, class.c: Change MonoGHashTable's into
24584 GHashTables for some cases where no gc stuff is used
24586 All users: update apis
24588 2004-12-23 Ben Maurer <bmaurer@ximian.com>
24590 * metadata.c (builtin_types): Make this `const'. Makes this get
24591 put into the shareable section.
24592 (mono_metadata_init): Casts to make gcc happy.
24594 2004-12-22 Zoltan Varga <vargaz@freemail.hu>
24596 * gc.c (mono_gc_init): Add a '\n' to the valgrind warning.
24598 2004-12-21 Sebastien Pouliot <sebastien@ximian.com>
24600 * icall.c: Added an internal call to retrieve the position and length
24601 of assembly-level declarative security attributes (RequestMinimum,
24602 RequestOptional and RequestRefuse). This is used by the Assembly class
24603 to re-create the corresponding permission sets.
24605 Tue Dec 21 14:50:31 CET 2004 Paolo Molaro <lupus@ximian.com>
24607 * marshal.c: fix the stelemref wrapper to be type correct
24610 2004-12-20 Ben Maurer <bmaurer@ximian.com>
24612 * icall.c (ves_icall_System_Object_GetHashCode): There was no need
24613 to do key & 0x7fffffff. Hashtable already does this. It just
24614 results in longer code.
24616 2004-12-20 Sebastien Pouliot <sebastien@ximian.com>
24618 * appdomain.c: Bump corlib version.
24619 * class-internals.h: Added RuntimeSecurityFrame to mono_defaults.
24620 * domain.c: Add RuntimeSecurityFrame to mono_defaults.
24621 * reflection.c|h: Add functions to get declarative security infos
24622 (blob position and length) for assemblies, classes and methods.
24624 Mon Dec 20 15:28:54 CET 2004 Paolo Molaro <lupus@ximian.com>
24626 * reflection.c: sort the constant table (bug #70693).
24628 Mon Dec 20 12:19:37 CET 2004 Paolo Molaro <lupus@ximian.com>
24630 * object-internals.h, threads.c, domain.c: add accessors for
24631 the MonoThread and MonoDomain tls keys.
24633 2004-12-18 Martin Baulig <martin@ximian.com>
24635 * class.c (inflate_generic_type): If we're inflating a generic
24636 instance, set `ngclass->context->container = context->container';
24637 ie. the container we inflated into.
24639 * metadata.c (mono_metadata_parse_generic_param): Reflect above
24640 inflate_generic_type() changes.
24642 2004-12-17 Martin Baulig <martin@ximian.com>
24644 * class-internals.h
24645 (MonoGenericClass): Replaced `MonoType *generic_type' with
24646 `MonoClass *generic_class'. Removed `dynamic_info'; if
24647 `is_dynamic' is true, we're a `MonoDynamicGenericClass'.
24648 (MonoDynamicGenericClass): Derive from `MonoGenericClass'.
24650 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
24652 * exception.c (mono_exception_from_token): New helper function.
24654 2004-12-15 Zoltan Varga <vargaz@freemail.hu>
24656 * assembly.c (mono_assembly_load_with_partial_name): Call
24657 mono_assembly_loaded before invoking the preload hooks. Fixes
24660 * object-internals.h (MonoThread): Change culture_info and
24661 ui_culture_info into an array.
24663 * threads.c: Cache culture info objects from more than one appdomain.
24665 * threads.c threads-types.h icall.c: Add icalls for manipulating the
24666 current UI culture.
24668 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
24670 * threads.h threads.c appdomain.c: Clear the culture_info field of
24671 all threads during unloading if they point to an object in the dying
24674 2004-12-13 Ben Maurer <bmaurer@ximian.com>
24676 * culture-info.h (TextInfoEntry): New struct
24677 * object-internals.h: sync with managed
24678 * locales.c: fill the `text_info_data' field
24679 * culture-info-tables.h: update
24681 Mon Dec 13 18:10:50 CET 2004 Paolo Molaro <lupus@ximian.com>
24683 * Makefile.am, monodiet.c: add monodiet, an IL code garbage
24686 2004-12-12 Ben Maurer <bmaurer@ximian.com>
24688 * icall.c (ves_icall_ModuleBuilder_getToken): Check for null
24689 (ves_icall_ModuleBuilder_getMethodToken): Ditto
24691 2004-12-12 Martin Baulig <martin@ximian.com>
24693 * mono-debug-debugger.c (write_type): If we're an enum and the
24694 builtin types have already been initialized, call mono_class_init().
24696 2004-12-11 Martin Baulig <martin@ximian.com>
24698 * metadata.c (mono_metadata_load_generic_params): Added
24699 `MonoGenericContainer *parent_container' argument; automatically
24700 compute `container->is_method'; pass the correct owner to
24703 * reflection.c (compare_genericparam): Sort the GenericParam table
24704 according to increasing owners.
24706 Fri Dec 10 18:43:46 CET 2004 Paolo Molaro <lupus@ximian.com>
24708 * profiler.c: allow disabling the default profiler.
24710 Fri Dec 10 18:42:11 CET 2004 Paolo Molaro <lupus@ximian.com>
24712 * decimal.c, icall.c: allow disabling System.Decimal support.
24714 2004-12-09 Marek Safar <marek.safar@seznam.cz>
24716 * reflection.c: Add support for null attribute arguments.
24718 2004-12-09 Martin Baulig <martin@ximian.com>
24720 * metadata.h, loader.h: Use `idx' instead of `index' in parameter
24721 names to get rid of compiler warnings.
24723 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
24725 * marshal.c (mono_marshal_get_struct_to_ptr): Call
24726 mono_marshal_load_type_info (). Fixes #69625.
24727 (mono_marshal_get_ptr_to_struct): Likewise.
24729 2004-12-08 Martin Baulig <martin@ximian.com>
24731 * mono-debug.h: Bumped version number to 47.
24733 * mono-debug-debugger.c
24734 (mono_debugger_event_handler, mono_debugger_event): Take two
24735 guint64 arguments insteed of a gpointer and a guint32.
24737 2004-12-08 Martin Baulig <martin@ximian.com>
24739 * debug-mono-symfile.h
24740 (MonoDebugLineNumberEntry): Renamed `offset' to `il_offset' and
24741 `address' to `native_offset'.
24743 2004-12-08 Martin Baulig <martin@ximian.com>
24745 * class.c (mono_class_create_from_typespec): Only inflate if we
24746 either have `context->gclass' or `context->gmethod'.
24748 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
24750 * metadata-internals.h (MonoAssembly): Add 'corlib_internal' field.
24752 * object-internals.h (MonoReflectionAssemblyBuilder): Move 'corlib_internal' field from Assembly to AssemblyBuilder.
24754 * reflection.c (mono_image_basic_init): Initialize assembly->corlib_internal from the assembly builder.
24756 * reflection.c (mono_assembly_get_object): Remove the workaround put
24757 in for the release.
24759 * appdomain.c: Use the corlib_internal field from MonoAssembly.
24761 * appdomain.c: Bump corlib version.
24763 * reflection.c (mono_assembly_get_object): Add a workaround so __MetadataTypes won't
24764 be visible in other appdomains.
24766 2004-12-07 Ben Maurer <bmaurer@ximian.com>
24768 * threads.c: Interlocked inc and dec for longs were messed up,
24769 use a KISS based impl for this. Fixes 70234
24771 2004-12-07 Zoltan Varga <vargaz@freemail.hu>
24773 * threads.c (ves_icall_System_Threading_Thread_GetCachedCurrentCulture): Make this lock-less.
24775 Tue Dec 7 10:47:09 CET 2004 Paolo Molaro <lupus@ximian.com>
24777 * icall.c: fix to follow policy not to allow struct
24778 arguments in icalls.
24780 2004-12-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24782 * process.c: make the patch that handles spaces in file paths work
24783 on mono/windows too.
24785 2004-12-06 Martin Baulig <martin@ximian.com>
24787 * class.c (mono_class_create_generic): Call
24788 mono_class_setup_supertypes() if we're dynamic.
24789 (mono_class_is_subclass_of): `g_assert (klass->idepth > 0)'.
24791 2004-12-06 Zoltan Varga <vargaz@freemail.hu>
24793 * object-internals.h: Add new fields to MonoThread.
24795 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
24797 * icall.c threads-types.h threads.c: Add new icalls.
24799 * object-internals.h (MonoThread): Remove unused 'unmanaged' field.
24801 * object-internals.h (MonoReflectionAssembly): Sync object layout with
24804 * appdomain.c: Bump corlib version.
24806 * appdomain.c (ves_icall_System_AppDomain_GetAssemblies): Skip
24807 internal assemblies. Fixes #69181.
24809 2004-12-05 Martin Baulig <martin@ximian.com>
24811 * class.c (mono_class_inflate_generic_signature): Make this a
24812 no-op if `context' is NULL or we don't have any type parameters;
24813 also copy `sentinelpos'.
24815 2004-12-04 Zoltan Varga <vargaz@freemail.hu>
24817 * image.c: Add unbox_wrapper_cache.
24819 * class-internals.h debug-helpers.c: Add MONO_WRAPPER_UNBOX.
24821 * marshal.h marshal.c (mono_marshal_get_unbox_wrapper): New wrapper
24822 function generator.
24824 * object.c (mono_delegate_ctor): Call unbox wrapper if neccesary.
24827 * metadata-internals.h image.c: Add MonoImage->unbox_wrapper_cache.
24829 2004-12-04 Martin Baulig <martin@ximian.com>
24831 * loader.c (mono_method_get_signature_full): New public function;
24832 like mono_method_get_signature(), but with an additional
24833 `MonoGenericContext *' argument.
24835 * class.c (mono_class_inflate_generic_signature): Formerly known
24836 as inflate_generic_signature(); make this public.
24838 2004-12-04 Martin Baulig <martin@ximian.com>
24841 (mono_metadata_parse_type_full): Take a `MonoGenericContext *'
24842 instead of a `MonoGenericContainer *'.
24843 (mono_metadata_parse_array_full): Likewise.
24844 (mono_metadata_parse_signature_full): Likewise.
24845 (mono_metadata_parse_method_signature_full): Likewise.
24846 (mono_metadata_parse_generic_inst): Likewise.
24847 (mono_metadata_parse_generic_param): Likewise.
24848 (mono_metadata_parse_mh_full): Likewise.
24849 (mono_type_create_from_typespec_full): Likewise.
24851 2004-12-03 Martin Baulig <martin@ximian.com>
24853 * class-internals.h (MonoGenericContainer): Replaced the
24854 `MonoGenericContext * pointer with a `MonoGenericContext'
24855 structure and made it the first element.
24857 2004-12-03 Martin Baulig <martin@ximian.com>
24860 (inflate_generic_type): Set the `context->container' when creating
24861 a new MonoGenericContext.
24862 (mono_class_inflate_generic_method): Likewise.
24863 (mono_class_create_from_typespec): Just use `context->container'
24864 to get the container.
24866 * loader.c (method_from_methodspec): Set `context->parent' from
24867 `context->container' - and if that's a method container, use its
24868 parent. Also set the `context->container' when creating a new
24869 MonoGenericContext.
24870 (mono_get_method_from_token): Use just `context->container' to get
24873 * metadata.c (do_mono_metadata_parse_generic_class): Also set
24874 `gclass->context->container'.
24876 * reflection.c (do_mono_reflection_bind_generic_parameters): Set
24877 the `context->container' when creating a new MonoGenericContext.
24879 2004-12-03 Zoltan Varga <vargaz@freemail.hu>
24881 * reflection.c (compare_genericparam): Sort params with identical
24882 owner by their number. Fixes gen-111 on sparc.
24884 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
24886 * threadpool.c (async_invoke_thread): Call push/pop_appdomain_ref
24887 around the domain changes.
24889 * appdomain.c (mono_domain_unload): Handle the case when the thread
24890 calling Unload is itself being aborted during unloading. Fixes #70022.
24892 * appdomain.h: Add prototype for mono_install_runtime_cleanup.
24894 * marshal.c (emit_thread_interrupt_checkpoint_call): Call
24895 checkpoint_func as an icall so it gets a wrapper.
24896 (mono_marshal_get_xappdomain_invoke): Call push/pop_appdomain_ref ()
24897 in the cross-appdomain wrappers too.
24899 * threads.c (mono_thread_has_appdomain_ref): Make this public.
24901 * assembly.c (mono_assembly_open_from_bundle): Fix warning.
24903 * reflection.c: Fix some memory leaks.
24905 2004-12-02 Martin Baulig <martin@ximian.com>
24907 * metadata-internals.h (MonoImage): Removed `generic_class_cache'.
24909 * metadata.c (generic_class_cache): New static hashtable.
24910 (mono_metadata_lookup_generic_class): New public method.
24912 2004-12-02 Martin Baulig <martin@ximian.com>
24914 * class.c (mono_class_create_from_typedef): Call
24915 mono_class_setup_parent() and mono_class_create_mono_type() before
24916 parsing the interfaces.
24918 2004-12-02 Martin Baulig <martin@ximian.com>
24920 * metadata.c (generic_inst_cache): New static hashtable.
24921 (mono_metadata_lookup_generic_inst): New public function.
24922 (mono_metadata_inflate_generic_inst): New public function.
24923 (mono_metadata_parse_generic_inst): New public function.
24924 (do_mono_metadata_parse_generic_class): Use the new
24925 mono_metadata_parse_generic_inst() for parsing the `gclass->inst'
24926 since this'll also use the cache.
24928 * reflection.c (mono_reflection_bind_generic_method_parameters):
24929 Use mono_metadata_lookup_generic_inst() to use the new cache.
24931 * class.c (inflate_mono_type): Use
24932 mono_metadata_inflate_generic_inst() to inflate a generic
24933 instance; this'll also use the new cache.
24935 * loader.c (method_from_methodspec): Use
24936 mono_metadata_parse_generic_inst() and
24937 mono_metadata_inflate_generic_inst() rather than parsing it
24938 manually, so we can use the new cache.
24940 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
24942 * threads.c (wait_for_tids): Do not incorrectly free threads when
24943 the wait times out.
24945 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
24947 * icall.c (mono_ArgIterator_Setup) : Conditionally compile calculation of
24948 iter->args based on whether parameters are passed in registers (i.e.
24949 MONO_ARCH_REGPARMS is defined)
24951 2004-12-01 Zoltan Varga <vargaz@freemail.hu>
24953 * loader.c (mono_lookup_pinvoke_call): Use the remapped dll name in
24954 the exception message. Fixes #70070.
24955 (method_from_methodspec): Fix warnings.
24957 2004-12-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
24959 * process.c: (complete_path) return the path quoted
24961 2004-12-01 Martin Baulig <martin@ximian.com>
24963 * class-internals.h (MonoGenericInst): New structure.
24964 (MonoGenericClass): Replaced `type_argc', `type_argv' and
24965 `is_open' with `MonoGenericInst *inst'.
24966 (MonoGenericMethod): Replaced `mtype_argc', `mtype_argv' and
24967 `is_open' with `MonoGenericInst *inst'.
24969 2004-11-30 Martin Baulig <martin@ximian.com>
24971 Generics API cleanup: renamed MonoGenericInst -> MonoGenericClass.
24973 * metadata-internals.h (MonoImage): Renamed `generic_inst_cache'
24974 to `generic_class_cache'.
24977 (mono_generic_inst_hash): Renamed to mono_generic_class_hash().
24978 (mono_generic_inst_equal): Renamed to mono_generic_class_equal().
24979 (mono_generic_inst_is_valuetype): Renamed to
24980 mono_generic_class_is_valuetype().
24982 * class-internals.h
24983 (MonoGenericInst): Renamed to MonoGenericClass.
24984 (MonoDynamicGenericInst): Renamed to MonoDynamicGenericClass.
24985 (MonoClass): Renamed `generic_inst' to `generic_class'.
24986 (MonoGenericContext): Renamed `ginst' to `gclass'.
24988 * object-internals.h
24989 (MonoReflectionGenericInst): Renamed to MonoReflectionGenericClass.
24991 * reflection.c (mono_reflection_generic_inst_initialize): Renamed to
24992 mono_reflection_generic_class_initialize().
24994 * icall.c (icall_entries): "System.Reflection.MonoGenericInst" is
24995 now known as "System.Reflection.MonoGenericClass".
24996 (monogenericinst_icalls): Renamed to monogenericclass_icalls.
24998 2004-11-29 Sebastien Pouliot <sebastien@ximian.com>
25000 * class-internals.h: Added a flag field to MonoClass to cache the
25001 declarative security attributes actions associated with the class.
25002 * domain-internals.h: Added booleans to MonoJitInfo to cache the
25003 (class or method level) stack modifiers (Assert, Deny and PermitOnly)
25004 applicable to the JITted method.
25005 * reflection.c|h: Added functions to extract (as flags) which security
25006 actions are available (declaratively) for a method, class or assembly.
25007 * metadata.c|h: Added functions to search the declarative security
25008 table in the metadata.
25010 2004-11-29 Ben Maurer <bmaurer@ximian.com>
25012 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces):
25013 EXPORTEDTYPES are already in the class name cache, so there is no
25014 need to add extra code here to look at them. Just removes a bit of
25017 (ves_icall_System_Environment_get_TickCount): No need for #if
25018 WINDOWS. We already have the code in io-layer.
25020 2004-11-28 Martin Baulig <martin@ximian.com>
25023 (method_from_methodspec): Also inflate the `gmethod->mtype_argv'.
25026 2004-11-27 Miguel de Icaza <miguel@ximian.com>
25028 * assembly.c (do_mono_assembly_open): Instead of having a
25029 conditional WITH_BUNDLE, incorporate support for bundles here, by
25030 having a global `bundles' variable holding a pointer to the actual
25033 (mono_register_bundled_assemblies): New API call used by the
25036 See mkbundle.1 for details.
25038 2004-11-27 Martin Baulig <martin@ximian.com>
25040 * object.c (mono_class_vtable): Store the `MonoMethod *' itself in
25041 the vtable for generic methods.
25043 2004-11-26 Martin Baulig <martin@ximian.com>
25046 (mono_metadata_generic_method_hash): New public function.
25047 (mono_metadata_generic_method_equal): Likewise.
25049 * class-internals.h
25050 (MonoGenericContainer): Added `GHashTable *method_hash'.
25052 * reflection.c (ReflectionMethodBuilder): Added
25053 `MonoGenericContainer *generic_container'.
25054 (reflection_methodbuilder_to_mono_method): Don't create a new
25055 MonoGenericContainer each time we're called.
25056 (mono_reflection_bind_generic_method_parameters): Use
25057 `container->method_hash' to cache the results so we don't create a
25058 different method if we're called several times with the same
25061 * loader.c (method_from_methodspec): Use the new
25062 `container->method_hash' here, too.
25064 2004-11-26 Martin Baulig <martin@ximian.com>
25066 * class.c (inflate_generic_signature): Correctly compute
25067 `res->has_type_parameters'.
25068 (mono_class_vtable): Use the `has_type_parameters' flag to
25069 determine whether we're a generic method.
25071 * metadata.c (mono_metadata_parse_method_signature_full): Likewise.
25073 2004-11-25 Zoltan Varga <vargaz@freemail.hu>
25075 * object.c (mono_runtime_run_main): Fix a small memory leak.
25077 2004-11-25 Martin Baulig <martin@ximian.com>
25079 * class.c (set_generic_param_owner): Fixed the loop.
25081 2004-11-25 Martin Baulig <martin@ximian.com>
25083 * object.c (mono_class_vtable): Don't create any JIT wrappers for
25086 2004-11-24 Zoltan Varga <vargaz@freemail.hu>
25088 * reflection.c: Allow all kinds of whitespace, not just ' ' in type
25089 names. Fixes #69787.
25091 2004-11-24 Martin Baulig <martin@ximian.com>
25093 * class.c (mono_class_create_generic_2): If we don't have a
25094 `ginst->parent', inflate `gklass->parent' to get our parent.
25096 2004-11-24 Martin Baulig <martin@ximian.com>
25098 * reflection.c (compare_genericparam): Correctly sort the
25099 GenericParam table; fixes #69779.
25101 2004-11-23 Ben Maurer <bmaurer@ximian.com>
25103 * reflection.c: When writing a PE file, don't create a huge
25104 buffer in memory. Just write the arrays we have to the file.
25105 This reduces memory usage.
25107 * metadata-internals.h: MonoDynamicStream pefile is no longer used
25110 2004-11-17 Martin Baulig <martin@ximian.com>
25112 * class.c (mono_class_init): Don't setup `class->parent' for
25113 dynamic instances; moved this to mono_class_generic_2().
25114 (mono_class_create_generic): Also set `klass->inited' for dynamic
25116 (mono_class_create_generic_2): Don't do anything for dynamic
25117 generic instances. Set `klass->parent' here and also call
25118 mono_class_setup_parent() here.
25120 * reflection.c (do_mono_reflection_bind_generic_parameters): Added
25121 `MonoType *parent' argument; set `ginst->parent' before calling
25122 mono_class_create_generic_2(), so we set the correct parent.
25124 Thu Nov 18 17:10:32 CET 2004 Paolo Molaro <lupus@ximian.com>
25126 * reflection.c: allow getting attributes from ModuleBuilder
25129 2004-11-17 Martin Baulig <martin@ximian.com>
25131 * class.c (mono_class_create_from_typedef): If a type parameter is
25132 inherited from an outer class, set its owner to that class.
25134 2004-11-17 Atsushi Enomoto <atsushi@ximian.com>
25136 * reflection.c: (mono_image_create_pefile): Don't use NULL argument
25137 for (int*) written size. This fixes bug #69592.
25139 2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
25141 * icall.c: Added IsAuthenticodePresnet internal call.
25142 * image.c|h: New function that check a MonoImage for an Authenticode
25143 signature in the certificate PE data directory.
25144 * security.c|h: New internal call to ask the runtime if an
25145 Authenticode signature seems referenced in the PE header.
25147 2004-11-15 Zoltan Varga <vargaz@freemail.hu>
25149 * icall.c (ves_icall_type_isprimitive): Native int is a primitive type.
25151 * reflection.c (mono_image_create_pefile): Free the assembly streams
25152 after writing out the assembly file.
25154 * object.c (mono_runtime_run_main): Fix small memory leak.
25156 * icall.c (ves_icall_Type_GetPropertiesByName): Add support for
25157 property access modifiers. Fixes #69389.
25159 Mon Nov 15 11:54:22 CET 2004 Paolo Molaro <lupus@ximian.com>
25161 * domain.c, object.c, object-internals.h, domain-internals.h,
25162 object.h, marshal.c: keep dynamic code info per domain.
25164 2004-11-15 Martin Baulig <martin@ximian.com>
25166 * class.c (mono_type_get_name_recurse): Put type arguments in
25167 `[',`]' instead of in `<','>'. Thanks to Atsushi for the patch,
25170 2004-11-15 Martin Baulig <martin@ximian.com>
25172 * class.c (mono_type_get_name_recurse): Added `include_ns' flag.
25173 (mono_class_setup_vtable): When computing `the_cname' for a
25174 generic instance, don't include the namespace since we'd otherwise
25177 2004-11-15 Martin Baulig <martin@ximian.com>
25179 * class.c (mono_class_create_generic): Changed return type to void.
25180 (mono_class_create_generic_2): New public function; setup
25181 `class->method', `class->field' and `class->interfaces' here
25182 instead of in mono_class_init().
25184 * class.h (mono_class_create_generic): Moved to class-internals.h.
25186 2004-11-14 Ben Maurer <bmaurer@ximian.com>
25188 * reflection.c (mono_image_create_pefile): take a file HANDLE.
25189 rather than writing to memory, write to this file. Right now,
25190 we are just writting into a buffer, and copying that. However
25191 we can avoid the buffer later.
25193 (mono_dynamic_stream_reset): new function
25195 * icall.c, object-internals.h: update for the above.
25197 2004-11-13 Ben Maurer <bmaurer@ximian.com>
25199 * reflection.c: Remove *_ATOMIC macros. We really shouldn't
25200 have been using gc'd memory. First it is slower, unlikely
25201 the comment in the source code said, secondly, it increases
25202 our footprint to do it in the gc.
25204 * icall.c (WriteToFile): rename of getDataChunk. Rewrite
25205 the method so that it does not have to copy to managed code.
25207 2004-11-12 Zoltan Varga <vargaz@freemail.hu>
25209 * loader.c (mono_method_get_header): Fix build for older glibs which does not define G_LIKELY.
25211 2004-11-12 Martin Baulig <martin@localhost>
25213 * reflection.c (mono_image_create_token): Allow generic method
25214 definitions here, since they may appear in an `.override'; see
25215 gen-98/gen-99 for an example.
25217 2004-11-11 Zoltan Varga <vargaz@freemail.hu>
25219 * icall.c (ves_icall_Type_GetField): Support BFLAGS_IgnoreCase. Fixes
25222 * marshal.c (mono_string_to_ansibstr): Make g_error messages more
25225 2004-11-11 Martin Baulig <martin@ximian.com>
25227 * class.c (mono_class_setup_vtable): In an explicit interface
25228 implementation, the method name now includes the arity.
25230 2004-11-10 Zoltan Varga <vargaz@freemail.hu>
25232 * object.c (mono_array_full_copy): Fix warning.
25234 2004-11-10 Lluis Sanchez Gual <lluis@novell.com>
25236 * appdomain.c: Removed look_for_method_by_name(). Use the new method
25237 mono_class_get_method_from_name() instead.
25239 * class-internals.h: Added two new types of wrappers.
25240 Added MonoRemotingTarget enum. Added new trampoline function type, which
25241 takes an additional MonoRemotingTarget value as parameter, so it is
25242 possible to request a trampoline for a specific target.
25244 * class.c: Added new mono_class_get_method_from_name() method.
25246 * class.h: In MonoRemoteClass, we can have now to vtables, one for
25247 general remoting sinks and one specific for cross domain calls.
25249 * debug-helpers.c: Added new wrapper names.
25251 * icall.c: Use the new method mono_remote_class_vtable() to get the vtable
25254 * image.c: Porperly delete value objects form the remoting invoke hashtable.
25256 * marshal.c: Added mono_marshal_get_xappdomain_invoke(), which together
25257 with several other methods (mono_marshal_get_xappdomain_dispatch,
25258 mono_marshal_get_xappdomain_target, mono_marshal_get_serialize_exception,
25259 and others) can generate a fast remoting wrapper for cross domain calls.
25260 More information can be found in docs/remoting.
25261 Other changes: Removed mono_find_method_by_name, and used
25262 mono_class_get_method_from_name instead.
25263 Remoting wrappers are now stored in a MonoRemotingMethods struct, which
25264 is stored in the remoting invoke hashtable.
25266 * marshal.h: published the new method for getting the xdomain wrapper,
25267 and also added a method for getting the adequate wrapper for a given
25270 * object-internals.h, object.c: Added a couple of methods for capying and
25272 Modified mono_install_remoting_trampoline, which takes the new remoting
25273 trampoline that has a remoting target as parameter.
25274 mono_class_proxy_vtable now also takes a remoting target as parameter, and
25275 will return the most suitable vtable for the target.
25276 Added mono_remote_class_vtable, which returns the vtable of a remote class
25277 (which can be the normal remoting vtable or the xdomain vtable).
25279 * threads.c: the xdomain invoke and dispatch wrappers must also be
25280 protected against interruptions.
25282 2004-11-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25284 * icall.c: use memmove in BlockCopyInternal when the source and
25285 destination arrays are the same.
25287 2004-11-09 Martin Baulig <martin@ximian.com>
25289 * class-internals.h (MonoGenericContainer): Removed `method' and
25290 `signature', replaced them with `is_method' and `is_signature'
25291 flags. Added `context'.
25293 * loader.c (method_from_methodspec): Take a `MonoGenericContext *'
25294 instead of a `MonoGenericContainer *'.
25296 * metadata.c (mono_metadata_generic_param_equal): Removed the hack
25297 for dynamic type parameters.
25298 (mono_metadata_load_generic_params): Setup `container->context'.
25300 * reflection.c (mono_reflection_setup_generic_class): Setup
25301 `tb->generic_container->context'.
25302 (do_mono_reflection_bind_generic_parameters): Use
25303 mono_class_inflate_generic_type() to correctly inflate types,
25304 rather than using our own hack just for MONO_TYPE_VAR.
25306 2004-11-09 Martin Baulig <martin@ximian.com>
25308 * class.c (mono_class_inflate_generic_method): Small fix; don't
25312 (ves_icall_MonoType_GetGenericArguments): Don't ignore `byref' types.
25313 (ves_icall_Type_get_IsGenericTypeDefinition): Likewise.
25314 (ves_icall_Type_GetGenericTypeDefinition_impl): Likewise.
25315 (ves_icall_Type_BindGenericParameters): Likewise.
25316 (ves_icall_Type_get_IsGenericInstance): Likewise.
25317 (ves_icall_Type_GetGenericParameterPosition): Likewise.
25318 (ves_icall_MonoType_get_HasGenericArguments): Likewise.
25319 (ves_icall_MonoType_get_IsGenericParameter): Likewise.
25320 (ves_icall_MonoType_get_DeclaringMethod): Likewise.
25322 2004-11-09 Zoltan Varga <vargaz@freemail.hu>
25324 * assembly.c (mono_assembly_names_equal): Reenable the comparison of
25325 assembly versions and public key tokens. Fixes #69113.
25327 Tue Nov 9 17:34:05 CET 2004 Paolo Molaro <lupus@ximian.com>
25329 * metadata.c: fix bug introduced with the type cache changes
25332 Tue Nov 9 17:26:29 CET 2004 Paolo Molaro <lupus@ximian.com>
25334 * metadata.h, metadata.c, domain-internals.h, marshal.c: include
25335 the MonoClass pointer instead of the token in exception clauses.
25336 * reflection.c: updates for the above and make the code not depend
25337 on the structure of MonoExceptionClause.
25339 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
25341 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25342 Add support for dynamic assemblies. Fixes #69114.
25344 * loader.c (mono_method_get_header): Handle icalls and pinvoke methods.
25346 2004-11-07 Ben Maurer <bmaurer@ximian.com>
25348 * class-internals.h (MonoMethod): Move addr to MonoMethodPInvoke
25349 since most only those methods use it. the code member of
25350 MonoMethodPInvoke was dead, so that can be removed too. Also,
25351 remove inline_count (again, not used), and move slot so that it
25352 can share bits with some other flags. This saves 8 bytes in the
25353 structure and gives us about 50 kb back for mcs helloworld.cs
25355 * *.[ch]: Do naming changes for the above.
25357 * loader.c (mono_method_get_header): Lazily init the header
25359 (mono_get_method_from_token): don't init the header here
25360 (mono_free_method): the header may never be allocated
25362 Overall, this saves 150 kb of unmanaged allocations
25363 for mcs helloworld.cs. That accounts for 10% of the unmanaged
25366 * loader.c, loader.h (mono_method_get_header): new accessor.
25368 * *.[ch]: use the above method. Prepares us to lazily load
25371 * *.[ch]: Clean up all the pesky warnings. gcc now only gives
25372 three warnings, which are actual bugs (see 69206).
25374 * class-internals.h (MonoMethod): Remove remoting_tramp. It is
25375 unused. Saves a cool 4 bytes / method.
25377 2004-11-06 Ben Maurer <bmaurer@ximian.com>
25379 * metadata.c (builtin_types): Add types for System.Object here.
25380 (mono_metadata_parse_type_full): Cache MonoType*'s that are
25381 for a class or valuetype from klass->this_arg or klass->byval_arg.
25383 On mcs for a hello world, this gets us down from 21836 MonoType's
25386 (mono_metadata_free_type): Account for the above change.
25388 2004-11-06 Zoltan Varga <vargaz@freemail.hu>
25390 * appdomain.c (ves_icall_System_AppDomain_GetData): Throw an
25391 exception instead of asserting if name is null.
25392 (ves_icall_System_AppDomain_GetData): Ditto.
25394 2004-11-05 Zoltan Varga <vargaz@freemail.hu>
25396 (ves_icall_get_enum_info): Avoid crash when called on a non-finished
25399 * icall.c (ves_icall_System_Reflection_Assembly_GetEntryAssembly):
25400 Return NULL when the domain does not have entry_assembly set.
25402 * icall.c (ves_icall_System_Reflection_Assembly_GetFilesInternal):
25403 Add a 'resource_modules' argument.
25404 (ves_icall_type_GetTypeCode): Fix typecode of byref types.
25406 * reflection.c (mono_reflection_create_runtime_class): Move setting
25407 of wastypebuilder here, so mono_get_type_object () returns a MonoType
25410 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi): Return NULL here instead of an empty string to match MS behavior.
25411 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAnsi_len):
25412 Throw an ArgumentNullException if 'ptr' is null.
25414 * appdomain.c (mono_domain_assembly_search): Avoid matching dynamic
25415 assemblies here. Fixes #69020.
25417 2004-11-05 Geoff Norton <gnorton@customerdna.com>
25419 * reflection.c (build_compressed_metadata): Fix the previous patch for
25420 big endian systems. GUINT32_FROM_LE isn't needed on strlen and was overwriting
25423 2004-11-04 Zoltan Varga <vargaz@freemail.hu>
25425 * assembly.c (mono_assembly_names_equal): Allow a match if one of
25426 the cultures is false. Fixes #69090.
25428 * reflection.c (build_compressed_metadata): Fix invalid memory read
25429 detected by valgrind.
25431 * reflection.c (mono_reflection_get_type): Avoid triggering a
25432 TypeResolve multiple times for the same type. Fixes #65577.
25434 2004-11-04 Ben Maurer <bmaurer@ximian.com>
25436 * marshal.c: Avoid using ldftn to call managed functions. It is
25437 much slower than just a call.
25439 * reflection.c (mono_module_get_object): free the basename we
25440 allocate here from glib.
25442 * reflection.c (ensure_runtime_vtable): make sure to free
25443 overrides. Also, we were allocating an array of MonoMethod not an
25444 array of MonoMethod*.
25446 * marshal.c (mono_marshal_get_stelemref): do a mono_mb_free here.
25448 * image.c (mono_image_close): free image->guid here.
25450 2004-11-02 Zoltan Varga <vargaz@freemail.hu>
25452 * reflection.c: Fix some spec conformance issues with the PE file
25453 structures so mcs compiled apps run on the Net 2.0 beta.
25455 2004-11-01 Zoltan Varga <vargaz@freemail.hu>
25457 * string-icalls.c (ves_icall_System_String_ctor_encoding):
25458 Implement this. Fixes #67264.
25460 * debug-helpers.h debug-helpers.c marshal.c: Move
25461 mono_find_method_by_name to debug-helpers.c.
25463 2004-10-31 Zoltan Varga <vargaz@freemail.hu>
25465 * object.c (mono_release_type_locks): type_initialization_hash is
25468 * reflection.c object.c object-internals.h: Fix warnings.
25470 * icall.c (ves_icall_Type_GetPropertiesByName): Handle properties
25471 without accessors. Fixes #61561.
25473 * appdomain.c (ves_icall_System_AppDomain_createDomain): Inherit
25474 application base from the root domain if not set. Fixes #65641.
25475 (mono_runtime_init): Fix warning.
25477 2004-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25479 * appdomain.c: call mono_thread_pool_init.
25480 * threadpool.[ch]: new mono_thread_pool_init that sets the max. number
25481 of worker threads based on the number of CPUs and the environment
25482 variable MONO_THREADS_PER_CPU if present. The defaults are 50 (25)
25483 for non-windows (windows) systems.
25485 2004-10-27 Chris Toshok <toshok@ximian.com>
25487 * mono-debug-debugger.c (write_class): don't call mono_class_init
25488 here, as even with the check for (!klass->init_pending), we get
25489 into a situation where we're hitting cycles in class
25490 initialization. Fixes #68816.
25492 2004-10-25 Zoltan Varga <vargaz@freemail.hu>
25494 * image.c: Avoid overwriting values in the loaded_images_hash when an
25495 assembly is loaded multiple times. Fixes #61152.
25497 * assembly.c (mono_assembly_names_equal): Compare the cultures as well,
25498 so multiple satellite assemblies for the same name can be loaded.
25501 * mono_domain_assembly_preload: Actually return the loaded assembly,
25504 * icall.c (ves_icall_type_is_subtype_of): Fix this for byref types.
25505 (ves_icall_type_is_assignable_from): Ditto. Fixes #68582.
25507 * gc.c (finalize_domain_objects): Call GC_invoke_finalizers () so
25508 pending finalizers are not invoked after the appdomain has been
25509 unloaded. Fixes #67862.
25511 2004-10-22 Martin Baulig <martin@ximian.com>
25513 * mono-debug-debugger.c
25514 (mono_debugger_runtime_invoke): Don't box valuetypes.
25516 2004-10-22 Chris Toshok <toshok@ximian.com>
25518 * mono-debug-debugger.c (do_write_class): handle .cctors too, and
25519 don't hide private methods.
25521 2004-10-22 Sebastien Pouliot <sebastien@ximian.com>
25523 * icall.c: Allows the runtime to "share" (when known) the public key
25524 token of an assembly. This avoid the need to recalculate the token
25525 (from the public key) in managed code.
25527 2004-10-21 Chris Toshok <toshok@ximian.com>
25529 * debug-helpers.c (append_class_name): argh, revert last patch.
25531 2004-10-21 Chris Toshok <toshok@ximian.com>
25533 * debug-helpers.c (append_class_name): use '+' as the delimiter,
25534 not '/', so that it matches what the debugger uses to look up
25537 2004-10-21 Martin Baulig <martin@ximian.com>
25539 * mono-debug-debugger.c (mono_debugger_throw_exception): New
25540 public method; this is called each time an exception is thrown and
25541 allows the debugger to use exception catch points.
25543 2004-10-21 Martin Baulig <martin@ximian.com>
25545 * mono-debug-debugger.c (mono_debugger_handle_exception): Write
25546 the stack pointer and the exception object in some struct and pass
25547 that to the debugger.
25549 2004-10-21 Chris Toshok <toshok@ximian.com>
25551 * mono-debug-debugger.c (do_write_class): add instance/static
25552 event support. We don't expose "raise" or "other" yet.
25553 (event_is_static): new method.
25555 2004-10-20 Bernie Solomon <bernard@ugsolutions.com>
25557 * mono-debug-debugger.c
25558 (mono_debugger_handle_exception): Remove
25559 bogus return value for fussy compilers.
25561 2004-10-20 Martin Baulig <martin@ximian.com>
25563 * mono-debug-debugger.c
25564 (mono_debugger_unhandled_exception): Added `gpointer stack' argument.
25565 (mono_debugger_handled_exception): Likewise.
25567 2004-10-20 Martin Baulig <martin@ximian.com>
25569 * mono-debug-debugger.h (MonoDebuggerEvent): Added
25570 MONO_DEBUGGER_EVENT_EXCEPTION.
25572 * mono-debug-debugger.c (mono_debugger_handle_exception): New
25573 public function to send the debugger a notification for an
25574 exception and inform it about a catch/finally clause.
25576 2004-10-19 Zoltan Varga <vargaz@freemail.hu>
25578 * marshal.c, icall.c: Applied patch from Alexandre Rocha Lima e
25579 Marcondes (alexandremarcondes@psl-pr.softwarelivre.org). Really
25582 * icall.c (ves_icall_InternalExecute): Fix build for gcc-2.95.
25584 2004-10-18 Zoltan Varga <vargaz@freemail.hu>
25586 * marshal.c (emit_marshal_object): Fix freeing of memory when a reference type is
25587 marshalled as [In,Out]. Fixes #58325.
25589 2004-10-14 Zoltan Varga <vargaz@freemail.hu>
25591 * reflection.c (mono_method_body_get_object): Implement some fields.
25593 2004-10-12 Martin Baulig <martin@ximian.com>
25595 * reflection.c (mono_reflection_bind_generic_parameters): Small
25596 fix, correctly retrieve our parent from a generic instance.
25598 2004-10-12 Martin Baulig <martin@ximian.com>
25600 * metadata.c (mono_metadata_generic_param_equal): We always have
25604 (mono_class_from_generic_parameter): We need to have an owner.
25605 (my_mono_class_from_generic_parameter): Likewise.
25607 * reflection.c (mono_reflection_setup_generic_class): Renamed to
25608 mono_reflection_create_generic_class() and added a new
25609 mono_reflection_setup_generic_class().
25610 (mono_reflection_initialize_generic_param): If we're a nested
25611 generic type and inherited from the containing class, set our
25612 owner to the outer class.
25614 2004-10-11 Zoltan Varga <vargaz@freemail.hu>
25616 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodBodyInternal): New icall.
25618 * reflection.c (mono_method_body_get_object): New function to create
25619 a MethodBody object.
25621 * object-internals.h object.h: Add MonoReflectionMethodBody structure.
25623 2004-10-11 Martin Baulig <martin@ximian.com>
25625 * metadata.c (_mono_metadata_type_equal): Renamed to
25626 do_mono_metadata_type_equal() and made static.
25628 2004-10-11 Martin Baulig <martin@ximian.com>
25630 * appdomain.c: Bump corlib version number to 28.
25632 2004-10-10 Martin Baulig <martin@ximian.com>
25634 * class-internals.h
25635 (MonoGenericInst): Added `MonoGenericContainer *container'.
25636 (MonoGenericMethod): Likewise.
25637 (MonoGenericContext): Likewise.
25638 (MonoGenericParam): Added `MonoGenericContainer *owner'.
25641 (do_mono_metadata_parse_type): Added a `MonoGenericContainer *' argument.
25642 (do_mono_metadata_parse_generic_inst): Likewise.
25643 (mono_metadata_parse_type_full): New public method. This is the actual
25644 mono_metadata_parse_type() implementation - with an additional
25645 `MonoGenericContainer *' argument.
25646 (mono_metadata_parse_array_full): Likewise.
25647 (mono_metadata_parse_signature_full): Likewise.
25648 (mono_metadata_parse_method_signature_full): Likewise.
25649 (mono_metadata_parse_mh_full): Likewise.
25650 (mono_type_create_from_typespec): Likewise.
25651 (mono_metadata_interfaces_from_typedef_full): New public method;
25652 this is similar to the other _full() methods, but we take a
25653 `MonoGenericContext *' since we have to pass it to mono_class_get_full().
25654 (mono_metadata_parse_generic_param): Take an additional
25655 `MonoGenericContainer *' argument and lookup the MonoGenericParam
25656 from that container.
25657 (mono_metadata_generic_param_equal): New static method to compare
25658 two type parameters.
25659 (_mono_metadata_type_equal): New static method; takes an
25660 additional `gboolean signature_only' argument - if true, we don't
25661 compare the owners of generic parameters.
25662 (mono_metadata_signature_equal): Call _mono_metadata_type_equal()
25663 with a TRUE argument - do a signature-only comparision.
25665 * loader.c: Use the new _full() methods and pass the
25666 MonoGenericContainer to them.
25668 * object-internals.h (MonoReflectionTypeBuilder): Added
25669 `MonoGenericContainer *generic_container' field.
25670 (MonoReflectionMethodBuilder): Likewise.
25672 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
25674 * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): Special
25675 case initial images of dynamic assemblies.
25677 * reflection.c (mono_image_basic_init): Set 'initial_image' field.
25679 * metadata-internals.h (MonoDynamicImage): Add 'initial_image' field.
25681 * reflection.c (mono_reflection_event_builder_get_event_info): Fix
25682 length of event->other array.
25683 (typebuilder_setup_events): Ditto.
25685 * domain-internals.h (MonoDomain): Rename 'assemblies' hash table to
25686 'assembly_by_name' and add an 'assemblies' list.
25688 * assembly.h assembly.c: Add a new search hook for determining whenever
25689 an assembly is already loaded. Use this instead of searching in the
25690 loaded_assemblies list.
25692 * domain.c appdomain.c: Implement the new search hook so loaded
25693 assemblies are now scoped by appdomain. Fixes #67727.
25695 2004-10-07 Zoltan Varga <vargaz@freemail.hu>
25697 * threads.c (mono_thread_attach): Initialize synch_lock field so
25698 mono_thread_detach works again.
25700 * loader.c (mono_lookup_pinvoke_call): Try the dllname prefixed with
25701 'lib' too. Fixes #63130.
25703 2004-10-06 Jackson Harper <jackson@ximian.com>
25705 * culture-info-tables.h: regenerated.
25707 2004-10-06 Zoltan Varga <vargaz@freemail.hu>
25709 * icall.c (ves_icall_Type_GetInterfaces): Include interfaces
25710 implemented by other interfaces in the result. Fixes #65764.
25712 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25713 Handle unloadable modules without crashing.
25715 * image.c (load_modules): Revert the previous patch since modules must
25716 have a fixed index inside the array.
25718 * image.c (load_modules): Don't include native modules in the modules
25721 2004-10-05 Zoltan Varga <vargaz@freemail.hu>
25723 * reflection.h: Add param_defaults field.
25725 * reflection.c: Add support for parameter defaults in dynamic methods.
25728 * icall.c (ves_icall_MonoType_get_Namespace): Return NULL instead of
25729 an empty string when a type has no namespace. Fixes #64230.
25731 2004-10-04 Sebastien Pouliot <sebastien@ximian.com>
25733 * tabledefs.h: Added "internal" security actions to support non-CAS
25734 permissions NonCasDemand, NonCasLinkDemand and NonCasInheritance.
25735 Note: they do not seems to be used anymore in 2.0 (new metadata format)
25737 2004-10-04 Zoltan Varga <vargaz@freemail.hu>
25739 * icall.c (ves_icall_InternalInvoke): Throw an exception when calling
25740 constructor of abstract class. Fixes #61689.
25742 2004-10-04 Martin Baulig <martin@ximian.com>
25744 * class-internals.h (MonoGenericContainer): New type.
25745 (MonoMethodNormal): Replaced `MonoGenericParam *gen_params' with
25746 `MonoGenericContainer *generic_container'.
25747 (MonoClass): Replaced `gen_params' and `num_gen_params' with
25748 `MonoGenericContainer *generic_container'.
25750 * metadata.c (mono_metadata_load_generic_params): Return a
25751 `MonoGenericContainer *' instead of a `MonoGenericParam *';
25752 removed the `num' argument.
25754 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
25756 * icall.c (ves_icall_System_Reflection_Module_GetPEKind): Add support
25757 for dynamic images.
25759 * object-internals.h (MonoReflectionAssemblyBuilder): Add pe_kind and
25762 * metadata-internals.h (MonoDynamicImage): Add pe_kind and machine fields.
25764 * reflection.c: Save pe_kind and machine values into the generated
25767 * appdomain.c: Bump corlib version number.
25769 * object-internals.h: Reorganize layout of LocalBuilder.
25771 * class-internals.h class.c (mono_class_get_implemented_interfaces):
25772 New helper function.
25774 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Return the
25775 created MonoType for dynamic types. Fixes #66180.
25777 2004-10-02 Ben Maurer <bmaurer@ximian.com>
25779 * threadpool.c: the ares hashtable needs a critical section around it.
25780 this prevents some nasty segfaults
25782 2004-10-02 Massimiliano Mantione <massi@ximian.com>
25784 * process.c: Fixed alignments to 32 bits as casting to unsigned is unsafe
25785 on 64 bits platforms, patch by will@exomi.com (Ville-Pertti Keinonen), see
25788 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
25790 * object-internals.h (MonoReflectionTypeBuilder): Add 'created' field.
25792 2004-09-30 Lluis Sanchez Gual <lluis@novell.com>
25794 * image.c: Always canonicalize image file names, to avoid loading
25795 the same assembly twice when referenced using a relative path.
25797 2004-09-30 Zoltan Varga <vargaz@freemail.hu>
25799 * marshal.h marshal.c icall.c: Fix bugs in previous patch.
25801 * marshal.c marshal.h icall.c: Add GetDelegateForFunctionPointerInternal icall.
25803 * marshal.c: Fix warnings.
25805 2004-09-29 Geoff Norton <gnorton@customerdna.com>
25807 * marshal.c (mono_ftnptr_to_delegate): This method was improperly
25808 attempting to marshal the delegate_trampoline as the method_addr.
25809 This patch has a static hashtable of marshalled delegates so that
25810 we can map delegate_trampoline addresses back to delegates. This
25811 allows a delegate passed to managed code to be passed back into native
25814 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
25816 * icall.c: Add GetFunctionPointerForDelegateInternal icall.
25818 * reflection.c (method_encode_code): Align method headers properly.
25821 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
25823 * marshal.c: In the runtime invoke wrapper, reset the abort
25824 exception if it is cached. This avoids the automatic rethrowal of
25825 the exception after the catch of the wrapper. Also check for pending
25826 interruptions before calling the managed method. This is done using
25827 the new method emit_thread_force_interrupt_checkpoint, since the
25828 normal checkpoint method is ignored when running the invoke wrapper.
25829 * object.c: If the abort exception is rethrown, set the abort_exc
25830 field of the thread, so it will be rethrown aftere every catch.
25831 * threadpool.c: Only run an interruption checkpoint if what has been
25832 requested is a stop of the thread (aborts will be ignored).
25833 * threads.c: By default, a thread will now never be interrumped while
25834 running the runtime invoke wrapper (this ensures that runtime_invoke
25835 will always return to the caller if an exception pointer is provided).
25836 There is a new special method mono_thread_force_interruption_checkpoint()
25837 to force an interruption checkpoint even if running a protected
25838 wrapper, which is used by the same runtime invoke wrapper to do a check
25841 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
25843 * object.c, object-internals.h: Implemented mono_release_type_locks,
25844 which releases the cctor locks held by a thread.
25845 * threads.c, threads.h: In thread_cleanup, release cctor locks held
25846 by a thread. Added mono_thread_exit() method to be used to safely stop
25849 2004-09-28 Raja R Harinath <rharinath@novell.com>
25851 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25852 Move null check before dereference. Avoid indexing beyond the end
25853 of the 'modules' array.
25855 2004-09-28 Raja R Harinath <rharinath@novell.com>
25857 * metadata-internals.h (MonoImage): Add module_count field.
25858 * image.c (load_modules): Set image->module_count.
25859 (mono_image_load_file_for_image): Use image->module_count.
25860 * reflection.c (mono_image_load_module): Append to image->modules array
25861 of dynamic assembly.
25862 (mono_module_get_object): Fix loop to actually increment index.
25863 Use image->module_count.
25864 * assembly.c (mono_assembly_load_references): Use image->module_count.
25865 * icall.c (ves_icall_System_Reflection_Assembly_GetModulesInternal):
25868 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
25870 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal):
25871 Avoid assert on generic types.
25873 2004-09-26 Zoltan Varga <vargaz@freemail.hu>
25875 * icall.c (ves_icall_System_Reflection_FieldInfo_GetUnmanagedMarshal): New icall.
25877 * reflection.c (mono_param_get_objects): Fill out MarshalAsImpl field.
25879 * reflection.c (mono_reflection_marshal_from_marshal_spec): New
25880 function to convert a MarshalSpec structure to its managed counterpart.
25882 * reflection.c: Fix warnings.
25884 * object-internals.h (MonoReflectionParameter): Add MarshalAsImpl
25887 * icall.c (mono_create_icall_signature): Fix build.
25889 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
25891 * icall.c: Add MakePointType icall.
25893 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage): Fix
25896 2004-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25898 * threadpool.c: reuse allocated slots in the queue.
25900 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
25902 * object-internals.h (MonoReflectionDllImportAttribute): New structure.
25904 * icall.c: Add new icalls for GetDllImportAttribute and GetFieldOffset.
25906 * reflection.h reflection.c (mono_reflection_get_custom_attrs): Revert
25909 * tabledefs.h: Add constants for pinvoke attributes BestFit and
25910 ThrowOnUnmappableChar.
25912 * icall.c (ves_icall_Type_GetPacking): New icall.
25914 2004-09-24 Martin Baulig <martin@ximian.com>
25916 * icall.c (ves_icall_Type_GetGenericParameterConstraints): New interncall.
25918 2004-09-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
25921 (mono_domain_set): allow setting a domain that is being unloaded.
25922 (mono_domain_unload): invoke the DomainUnload callbacks in the domain
25925 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
25927 * icall.c reflection.h reflection.c: Add a 'pseudo_attrs' argument to
25928 the GetCustomAttributes icall.
25930 2004-09-23 Martin Baulig <martin@ximian.com>
25932 * object-internals.h (MonoReflectionGenericParam): Replaced
25933 'has_ctor_constraint', `has_reference_type' and `has_value_type'
25934 with `guint32 attrs'.
25936 2004-09-23 Martin Baulig <martin@ximian.com>
25938 * icall.c (ves_icall_Type_GetGenericParameterAttributes): New interncall.
25940 2004-09-23 Martin Baulig <martin@ximian.com>
25942 * object-internals.h (GenericParameterAttributes): New enum.
25944 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
25946 * object-internals.h (MonoEventInfo): Add 'other_methods' field.
25948 * class.c (init_events): Fill out event->other field.
25950 * class.c: Fix warnings.
25952 * icall.c (ves_icall_get_event_info): Fill out 'other_methods' field.
25954 Wed Sep 22 19:04:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
25956 * class-internals.h, icall.c, loader.c, loader.h: added a faster stack
25957 walk which doesn't supply the IL offset.
25959 2004-09-22 Martin Baulig <martin@ximian.com>
25961 * reflection.c (mono_reflection_setup_internal_class): If we're
25962 System.ValueType, System.Object or System.Enum, set
25963 `klass->instance_size' and create the vtable.
25964 (mono_reflection_create_internal_class): If we're an enum type,
25965 get the base class from our current corlib.
25967 2004-09-22 Zoltan Varga <vargaz@freemail.hu>
25969 * reflection.h (MonoResolveTokenError): New type.
25971 * icall.c (ves_icall_System_Reflection_Module_ResolveMemberToken): New
25974 * icall.c: Add an 'error' argument to the ResolveToken icalls.
25976 2004-09-22 Lluis Sanchez Gual <lluis@novell.com>
25978 * icall.c: Support ContextBoundObject proxies in ves_icall_InternalExecute.
25979 Support also calling constructors, but only for already allocated objects.
25981 2004-09-17 Geoff Norton <gnorton@customerdna.com>
25983 * reflection.c (type_get_qualified_name): If the klass is null
25984 return the typename to avoid a NullRefEx.
25985 (encode_cattr_value): Get the qualified name of the boxed type,
25986 not the underlying enumtype. Fixes #62984.
25988 2004-09-21 Zoltan Varga <vargaz@freemail.hu>
25990 * marshal.c: Fix problems with previous checkin.
25992 2004-09-21 <vargaz@freemail.hu>
25994 * marshal.h marshal.c icall.c: Add new icalls for Alloc/FreeHGlobal. Change the
25995 existing mono_marshal_alloc/free functions to use CoTaskMemAlloc/Free under windows.
25997 * marshal.c: Allocate marshaller memory using mono_marshal_alloc/free.
25999 2004-09-21 Geoff Norton <gnorton@customerdna.com>
26001 * icall.c (ves_icall_MonoType_GetElementType): GetElementType
26002 should only return a type for pointers, arrays, and passbyref types.
26005 2004-09-21 Martin Baulig <martin@ximian.com>
26007 * domain.c (mono_debugger_check_runtime_version): New public
26010 * icall.c (ves_icall_MonoDebugger_check_runtime_version): New icall.
26012 2004-09-20 Sebastien Pouliot <sebastien@ximian.com>
26014 * reflection.c: Added missing sort to the declarative security
26015 attributes table. MS implementation stops seeing the attributes if the
26016 token number regress in the table (as shown by ildasm and permview).
26018 2004-09-20 Zoltan Varga <vargaz@freemail.hu>
26020 * object-internals.h (MonoReflectionModule): Add 'token' field.
26022 * reflection.c (mono_reflection_get_token): Add support for Module
26024 (mono_module_get_object): Set 'token' field.
26025 (mono_module_file_get_object): Set 'token' field.
26027 * icall.c: Add new Assembly and Module icalls.
26029 * appdomain.c: Bump corlib version.
26031 2004-09-19 Zoltan Varga <vargaz@freemail.hu>
26033 * loader.h loader.c class.h class.c: Add helper functions for obtaining
26034 tokens of metadata objects.
26036 * reflection.h reflection.c (mono_reflection_get_token): New function
26037 to obtain the token of a metadata object.
26039 * icall.c: Add icalls for MetadataToken and ModuleHandle methods.
26041 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
26043 * loader.c (mono_lookup_pinvoke_call): Try the underscore prefixed name as well.
26045 * loader.c (mono_lookup_pinvoke_call): Add support for stdcall name mangling.
26047 2004-09-16 Sebastien Pouliot <sebastien@ximian.com>
26049 * appdomain.c: Bumped MONO_CORLIB_VERSION to 25.
26050 * object-internals.h: Added 3 MonoArray* members to MonoReflection
26051 AssemblyBuilder to access the permissions set in the class lib.
26052 * reflection.c: Added security attributes encoding step in
26053 mono_image_build_metadata.
26054 * tabledefs.h: Added new security actions defined in 2.0:
26055 LinkDemandChoice, InheritanceDemandChoice and DemandChoice.
26057 2004-09-16 Lluis Sanchez Gual <lluis@novell.com>
26059 * threads.c: Fixed SET_CURRENT_OBJECT macros, they were ignoring the
26062 2004-09-16 Lluis Sanchez Gual <lluis@novell.com>
26064 * locales.c: nullify the ICU_collator member of CompareInfo when it is
26065 finalized. There where random SIGSEVs at program termination, when
26066 an object being finalized was trying to do a string comparison and
26067 the current culture was already finalized.
26069 2004-09-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26071 * threads.c: call thread_cleanup before finishing the thread if we get
26074 2004-09-16 Zoltan Varga <vargaz@freemail.hu>
26076 * appdomain.c (ves_icall_System_AppDomain_createDomain): Load all
26077 assemblies from the parent. Fixes #65665.
26079 2004-09-15 Zoltan Varga <vargaz@freemail.hu>
26081 * metadata.c (mono_metadata_parse_type): Fix parsing of custom
26084 2004-09-14 Bernie Solomon <bernard@ugsolutions.com>
26086 * reflection.h: add prototype for mono_get_dbnull_object
26087 * reflection.c: add prototypes for get_default_param_value_blobs
26088 and mono_get_object_from_blob for fussier compilers
26090 2004-09-14 Lluis Sanchez Gual <lluis@novell.com>
26092 * object.c: Added a "done" flag to TypeInitializationLock. This avoids
26093 false deadlock checks in class initialization.
26095 2004-09-13 Zoltan Varga <vargaz@freemail.hu>
26097 * image.c (mono_image_addref): Fix comment.
26099 * metadata.c (mono_metadata_parse_type): Avoid memory allocations if
26102 2004-09-12 Jambunathan K <kjambunathan@novell.com>
26104 * reflection.c (mono_param_get_objects): Modified to return
26105 ParameterInfo.DefaultValue object.
26107 (get_default_param_value_blobs):
26108 (mono_get_object_from_blob):
26109 (mono_get_dbnull_object): New helper routines.
26111 * object.c (mono_get_constant_value_from_blob): New helper routine
26112 carved out from get_default_field_value ()
26114 * object-internals.h (mono_get_constant_value_from_blob): Added
26115 function declaration.
26117 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
26119 * assembly.c assembly.h icall.c class.c appdomain.c: Lazily load
26120 referenced assemblies. Fixes #62135.
26122 * exception.h exception.c (mono_get_exception_file_not_found2): New
26125 2004-09-10 Zoltan Varga <vargaz@freemail.hu>
26127 * class.h class.c: Add mono_type_get_underlying_type ().
26129 2004-09-09 Geoff Norton <gnorton@customerndna.com>
26131 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes):
26132 Fix GetTypes() to support dynamically created assemblies.
26134 2004-09-09 Zoltan Varga <vargaz@freemail.hu>
26136 * reflection.c (reflection_methodbuilder_to_mono_method): Remove TODO.
26138 * reflection.c (reflection_methodbuilder_to_mono_method): Fix bug in
26141 * reflection.h reflection.c loader.c: Allow dynamic construction of
26142 pinvoke methods. Fixes #65571.
26144 * reflection.c (mono_reflection_get_type): Revert previous change since
26145 it causes regressions.
26147 2004-09-08 Martin Baulig <martin@ximian.com>
26149 * class.c (class_compute_field_layout): Don't call
26150 mono_class_layout_fields() for open generic instances.
26152 2004-09-08 Bernie Solomon <bernard@ugsolutions.com>
26153 * threads.c appdomain.c: fix typo in GC macro
26155 2004-09-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26157 * threads.c: don't call mono_thread_detach() in start_wrapper(),
26158 avoiding a possible hang in GetCurrentThreadId(0). Fixes bug #65379.
26160 2004-09-08 Zoltan Varga <vargaz@freemail.hu>
26162 * image.c (mono_image_close): Applied patch from
26163 vasantha.paulraj@honeywell.com (Vasantha selvi). Fix crash when an
26164 assembly is loaded multiple times from data.
26166 * image.c (mono_image_open): Fix warning.
26168 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
26170 * reflection.h reflection.c icall.c: Only call TypeResolve handlers
26171 once. Fixes #58334.
26173 * reflection.c (mono_reflection_create_runtime_class): Initialize
26174 klass->nested_classes. Fixes #61224.
26176 Tue Sep 7 14:35:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26178 * threads.c: sched_yield() on exit, to allow threads to quit.
26180 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
26182 * object.c (mono_unhandled_exception): Remove leftover debug code.
26184 2004-09-07 Atsushi Enomoto <atsushi@ximian.com>
26186 * appdomain.c, threads.c : don't use GC_CreateThread when with-gc=none
26188 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
26190 * marshal.c (emit_marshal_array): Really null terminate string arrays.
26192 * marshal.c (emit_marshal_string): Fix freeing of unicode strings.
26194 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
26196 * marshal.c (emit_marshal_array): Null terminate string arrays.
26198 * marshal.c (raise_auto_layout_exception): Fix warning.
26200 * reflection.c (mono_param_get_objects): Initialize the default value
26201 with DBNull.Value, not null. Fixes #62123.
26203 2004-09-01 Miguel de Icaza <miguel@ximian.com>
26205 * marshal.c (mono_marshal_get_managed_wrapper): Remove FIXME and
26206 throw an exception with a cute explanation.
26208 2004-09-06 Dick Porter <dick@ximian.com>
26210 * process.c (ves_icall_System_Diagnostics_Process_Start_internal):
26211 Close the new process's thread handle, as we don't use it. The
26212 handle stays around forever otherwise.
26214 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
26216 * object.c (arith_overflow): Fix warning.
26218 * reflection.c (mono_image_get_methodref_token): Do not emit unmanaged
26219 calling conventions in method refs. Fixes #65352.
26221 * reflection.c: Fix warnings.
26223 2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
26225 * icall.c: Add a new icall for Array.Clear
26227 2004-09-06 Ben Maurer <bmaurer@users.sourceforge.net>
26229 * object.c: When allocating an array, we have to throw
26230 an overflow exception if any of the lengths are < 0.
26232 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
26234 * marshal.h marshal.c: Free unmanaged memory allocated by managed code
26235 properly. Also move implementation of string array marshalling to
26236 managed code. Fixes #42316.
26238 2004-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26240 * assembly.c: provide more information when loading an assembly fails.
26242 2004-09-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26244 * filewatcher.c: don't expect the development fam package to be
26247 2004-09-03 Zoltan Varga <vargaz@freemail.hu>
26249 * marshal.c: Make a copy of the signature cookie since it will be
26250 freed by the caller.
26252 * marshal.c (mono_delegate_to_ftnptr): Fix bug in previous patch.
26254 * marshal.c (mono_delegate_to_ftnptr): Fix memory leaks.
26256 * metadata.c (mono_metadata_free_marshal_spec): New function to free
26259 * marshal.c: More refactoring.
26261 * marshal.c: Refactor the mono_marshal_get_native_wrapper function into
26264 2004-09-03 Lluis Sanchez Gual <lluis@novell.com>
26266 * object.c: In mono_message_invoke, fill the output parameter array after
26267 calling the managed method (it was done before the call). This fixes
26270 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
26272 * marshal.c (mono_marshal_alloc): Return a valid pointer on size 0
26275 2004-09-02 Martin Baulig <martin@ximian.com>
26277 * class.c (mono_class_instance_size): Don't allow generic type
26278 definitions or open generic instances.
26279 (mono_class_array_element_size): If we're a value type, call
26280 mono_class_instance_size() on the original class.
26282 * metadata.c (mono_type_size, mono_type_stack_size): Correctly
26283 handle generic instances.
26285 * mono-debug-debugger.c (write_type): Handle generic instances
26288 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
26290 * marshal.c (mono_marshal_alloc): Raise an OutOfMemory exception if
26291 the allocation request fails. Fixes #65089.
26293 * object.c (mono_runtime_free_method): Do not call mono_free_method.
26295 * object.c (mono_runtime_free_method): New function to free a dynamic
26298 * marshal.c (mono_delegate_free_ftnptr): New function to free the
26299 delegate trampoline.
26301 * marshal.c (mono_marshal_get_managed_wrapper): Mark managed wrapper
26302 with hasthis as dynamic,
26304 * icall.c (ves_icall_System_Delegate_FreeTrampoline): New icall.
26306 * domain.c (mono_jit_info_table_remove): New function to remove an
26307 entry from the jit info table.
26309 * class-internals.h (MonoMethod): Add 'dynamic' field.
26311 * loader.c: Fix warnings.
26313 2004-09-01 Martin Baulig <martin@ximian.com>
26315 * mono-debug.c, debug-mono-symfile.c: Use mono_loader_lock()
26316 instead of mono_debugger_lock() because the latter one is a no-op
26317 unless running in the debugger.
26319 2004-09-01 Zoltan Varga <vargaz@freemail.hu>
26321 * class.c (class_compute_field_layout): Classes with auto-layout or
26322 reference fields are not blittable.
26324 2004-09-01 Dick Porter <dick@ximian.com>
26326 * icall.c (ves_icall_System_Reflection_Assembly_get_location): Use
26327 mono_image_get_filename() to get the assembly location.
26330 * metadata.h: Fix compile warnings
26332 2004-09-01 Zoltan Varga <vargaz@freemail.hu>
26334 * class.c (class_compute_field_layout): System.Object is blittable.
26336 * marshal.c (mono_marshal_get_native_wrapper): Pass blittable classes
26337 as in/out. Fixes #59909.
26339 2004-09-01 Martin Baulig <martin@ximian.com>
26341 * metadata.h (MONO_TYPE_ISREFERENCE): Call
26342 mono_metadata_generic_inst_is_valuetype() if we're a generic
26343 instance to check whether our underlying type is a reference type.
26345 2004-09-01 Martin Baulig <martin@ximian.com>
26347 * metadata.c (mono_type_size): If we're a generic instance, call
26348 mono_class_value_size() for value types.
26350 2004-08-31 Zoltan Varga <vargaz@freemail.hu>
26352 * marshal.c: Implement more custom marshalling functionality. Fixes
26355 Tue Aug 31 17:55:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
26357 * mono-debug.c, debug-mono-symfile.c: add some locking love.
26359 2004-08-30 Zoltan Varga <vargaz@freemail.hu>
26361 * domain-internals.h domain.c: Add a per-domain jump trampoline hash.
26363 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): Rename to ...Internal.
26365 * icall.c: Fix some warnings.
26367 * threads.c (abort_appdomain_thread): Fix unref errors.
26368 (mono_thread_current): Fix THREAD_DEBUG define.
26370 2004-08-29 Zoltan Varga <vargaz@freemail.hu>
26372 * metadata.h (MONO_TYPE_ISSTRUCT): Fix warning.
26374 * icall.c (ves_icall_System_Reflection_MethodBase_GetMethodFromHandle): New icall.
26376 2004-08-28 Zoltan Varga <vargaz@freemail.hu>
26378 * marshal.c (mono_marshal_get_native_wrapper): Add support for byref
26381 2004-08-28 Martin Baulig <martin@ximian.com>
26384 (mono_metadata_generic_inst_is_valuetype): New public function.
26386 * metadata.h (MONO_TYPE_ISSTRUCT): Call
26387 mono_metadata_generic_inst_is_valuetype() if we're a generic
26388 instance to check whether our underlying type is a valuetype.
26390 2004-08-26 Zoltan Varga <vargaz@freemail.hu>
26392 * class.c (mono_ptr_class_get): Fix name of pointer classes. Fixes
26395 2004-08-25 Martin Baulig <martin@ximian.com>
26397 * loader.c (mono_get_method_from_token): Abstract methods can also
26398 be generic and thus have type parameters.
26400 * metadata-internals.h
26401 (MonoDynamicImage): Added `GPtrArray *gen_params'.
26403 * reflection.c (mono_image_get_generic_param_info): Don't create a
26404 metadata row, just add an entry to the `gen_params' array.
26405 (build_compressed_metadata): Sort the `gen_params' array and then
26406 actually create the metadata.
26408 2004-08-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26410 * threadpool.c: remove unneeded 'if' around mono_monitor_enter.
26412 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
26414 * debug-helpers.c: Handle MONO_TYPE_GENERICINST.
26416 2004-08-24 Martin Baulig <martin@ximian.com>
26418 * class.cs (mono_class_is_subclass_of): Like an interface, a
26419 generic instance also derives from System.Object.
26421 2004-08-23 Zoltan Varga <vargaz@freemail.hu>
26423 * metadata.c (mono_metadata_parse_type): Alloc pinned, byref and
26424 custom modifiers to be in any order. Fixes #61990.
26426 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
26428 * object.c: Register mono_object_new_fast icall.
26430 * object.c (mono_class_get_allocation_ftn): Return to calling
26431 mono_object_new_fast, since it seems faster to compute the object
26432 size in unmanaged code than passing it as a parameter.
26434 * object.c (mono_class_get_allocation_ftn): Add marshalbyref case.
26436 * gc-internal.h gc.c: Add mono_gc_out_of_memory () function. Register
26437 this function with Boehm as the oom handler, so we don't have to check
26438 the result of GC_malloc.
26440 * object.c: Remove checks for oom.
26442 * object.h object.c (mono_class_get_allocation_ftn): New function to
26443 return the icall which can be used to allocate an instance of a given
26446 * object.c: Handle common allocation requests using GC_gcj_fast_malloc.
26448 * class-internals.h: Add 'enabled' field.
26450 2004-08-19 Zoltan Varga <vargaz@freemail.hu>
26452 * domain.c (mono_init_internal): Call MONO_GC_PRE_INIT ().
26454 2004-08-18 Jambunathan K <kjambunathan@novell.com>
26455 * tabledefs.h: Corretced PARAM_ATTRIBUTE_OPTIONAL to the right
26458 2004-08-18 Ben Maurer <bmaurer@users.sourceforge.net>
26460 * appdomain.c: use the Tls function for appdomain too,
26461 at Zoltan's request. Actually return in mono_context_get
26463 * appdomain.c, profiler.c, threads.c: use __thread
26465 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
26467 * appdomain.c threads.c: Call GC_CreateThread on windows.
26469 * Makefile.am (libmetadata_la_LIBADD): Avoid linking libmonoos into
26470 multiple libraries since this don't work on windows.
26472 2004-08-18 Martin Baulig <martin@ximian.com>
26474 * class-internals.h
26475 (MonoMethodNormal): Moved `MonoGenericParam *gen_params' here from
26478 * metadata.h (MonoMethodHeader): Moved the `gen_params' field to
26479 MonoMethodNormal since we also need it for abstract and interface
26483 (build_compressed_metadata): Sort the GenericParam table.
26484 (mono_image_create_token): Added `gboolean create_methodspec'
26485 argument; this is false when generating a MethodImpl token.
26486 (reflection_methodbuilder_to_mono_method): Abstract and interface
26487 methods may also have generic parameters.
26489 2004-08-17 Ben Maurer <bmaurer@users.sourceforge.net>
26491 * appdomain.c: thread local alloc
26493 2004-08-17 Martin Baulig <martin@ximian.com>
26495 * appdomain.c: Bumped MONO_CORLIB_VERSION to 24.
26498 (ves_icall_System_MonoType_getFullName): Added `gboolean full_name'
26501 * class.c (mono_type_get_full_name): New public function.
26502 (mono_type_get_name): Don't include the type arguments.
26504 2004-08-16 Zoltan Varga <vargaz@freemail.hu>
26506 * Makefile.am: Build static versions of libmetadata and libmonoruntime
26507 for inclusion into the mono executable.
26509 2004-08-16 Martin Baulig <martin@ximian.com>
26511 * metadata.c (do_mono_metadata_parse_generic_inst): Store the
26512 MonoGenericInst, not the MonoType in the `generic_inst_cache'.
26514 2004-08-14 Martin Baulig <martin@ximian.com>
26516 * class.c (dup_type): Also copy the `byref' field.
26518 2004-08-15 Zoltan Varga <vargaz@freemail.hu>
26520 * reflection.c (create_dynamic_mono_image): Revert the last change
26521 since it breaks bootstrap.
26523 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
26525 * reflection.c (create_dynamic_mono_image): Set ref_count to 1.
26527 * image.c (mono_image_close): Dynamic images are GC_MALLOCed, so do
26528 not free them with g_free.
26530 2004-08-11 Martin Baulig <martin@ximian.com>
26532 * reflection.c (mono_reflection_setup_internal_class): Also call
26533 mono_class_setup_mono_type() if we already have a `tb->type.type'.
26535 2004-08-09 Sebastien Pouliot <sebastien@ximian.com>
26537 * appdomain.c: Fix ves_icall_System_AppDomain_getDomainByID when
26538 called during default (first) AppDomain creation. Keep track of
26539 Evidence when loading assemblies.
26541 Mon Aug 9 14:41:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
26543 * opcodes.c, opcodes.h: reduce runtime relocations.
26545 Mon Aug 9 13:30:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
26547 * culture-info.h, locales.c: fixes and chages to sue the new
26548 optimized format of the locale data.
26549 * culture-info-tables.h: regenerated.
26551 2004-08-06 Geoff Norton <gnorton@customerdna.com>
26553 * filewatcher.c: If HAVE_KQUEUE return mode 3 to use the new kqueue watcher
26555 2004-08-05 Sebastien Pouliot <sebastien@ximian.com>
26557 * appdomain.c: Bumped MONO_CORLIB_VERSION to 23. Added new icall
26558 ves_icall_System_AppDomain_getDomainByID to get an AppDomain by Id.
26559 * domain-internals.h: icall declaration.
26560 * icall.c: icall registration.
26561 * object-internals.h: New fields in MonoAssembly for CAS.
26563 2004-08-05 Duncan Mak <duncan@ximian.com>
26565 * verify.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
26568 Thu Aug 5 17:11:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
26570 * reflection.c: fix to deal with object[] arrays in custom ctors
26573 2004-08-05 Martin Baulig <martin@ximian.com>
26575 * class.c (mono_class_array_element_size): Added support for
26576 generic instances and correctly handle "recursive" types.
26578 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
26580 * assembly.c: Fix warnings.
26582 2004-08-04 Martin Baulig <martin@ximian.com>
26585 (mono_type_get_name_recurse): Added `gboolean include_arity'
26586 argument specifying whether or not we should include the generic
26587 arity in the type name.
26588 (_mono_type_get_name): New static function.
26589 (mono_class_setup_vtable): If we're a generic instance, don't
26590 include the generic arity in the names of explicit method
26593 2004-08-03 Martin Baulig <martin@ximian.com>
26595 * class.c (mono_type_get_name_recurse): Enclose the generic type
26596 arguments in `<', '>'.
26598 Tue Aug 3 17:54:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26600 * gc.c: make GC warning messages use the trace API, they are just
26601 noise to most of the users.
26603 2004-08-03 Martin Baulig <martin@ximian.com>
26605 * debug-mono-symfile.c (read_string): Correctly read the string.
26607 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
26609 * marshal.c (signature_dup_add_this): Fix bug in previous patch.
26611 * marshal.c (mono_marshal_get_icall_wrapper): Add support for vararg
26613 (mono_marshal_get_runtime_invoke): Correctly handle valuetype methods.
26615 2004-07-30 Martin Baulig <martin@ximian.com>
26617 * debug-mono-symfile.c, mono-debug.c, mono-debug-debugger.c:
26618 Reflect latest symbol writer changes.
26620 Fri Jul 30 16:49:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26622 * object.c: always create an object if null is passed
26623 to Invoke() where a valuetype is expected.
26625 2004-07-29 Bernie Solomon <bernard@ugsolutions.com>
26627 * marshal.c (mono_marshal_init): make managed
26628 signatures match native ones better for 64bits.
26630 2004-07-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26632 * appdomain.c: hack to build correctly the private bin path on windows.
26635 2004-07-28 Lluis Sanchez Gual <lluis@novell.com>
26637 * assembly.c: Load mscorlib from the correct framework directory
26638 (mono/<version>/mscorlib.dll).
26639 * appdomain.h: Added prototypes for new functions.
26640 * internals.h: Added some prototypes.
26641 * domain.c: When initializing the runtime, get from the executable and
26642 the configuration files the runtime version that the app supports.
26643 Added support methods for reading app.exe.config. Added list of versions
26644 supported by the JIT. Added two new methods: mono_init_from_assembly,
26645 which initializes the runtime and determines the required version from
26646 the provided exe file, and mono_init_version, which initializes
26647 the runtime using the provided version.
26648 * icall.c: Get machine.config from version-specific directory.
26649 * reflection.c: When generating an image, embed the version number
26650 of the current runtime.
26652 2004-07-28 Dick Porter <dick@ximian.com>
26655 (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal): Check
26656 returned sockaddr size before creating the remote address object.
26657 Patch by Nick Vaughan (dev@6wardlaw.freeserve.co.uk), fixes bug
26660 2004-07-28 Dick Porter <dick@ximian.com>
26662 * locales.c (string_invariant_compare_char): Fix invariant char
26663 compares between upper and lower cases. Fixes bug 61458.
26665 2004-07-27 Ben Maurer <bmaurer@ximain.com>
26667 * marshal.c: actually cache stelem.ref wrappers.
26669 Tue Jul 27 16:56:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
26671 * class.c, image.c, loader.c, cil-coff.h: lazily mmap the image
26672 sections and remove the mono_cli_rva_map () function.
26674 Tue Jul 27 15:58:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
26676 * debug-mono-symfile.c: fix one more endianess issue, from a patch
26677 by Geoff Norton (<gnorton@customerdna.com>).
26679 Tue Jul 27 15:47:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
26681 * class.c: fix class loads for pointer types (typeof(int) !=
26684 2004-07-27 Martin Baulig <martin@ximian.com>
26686 * debug-mono-symfile.c (mono_debug_open_mono_symbol_file): Support
26687 reading the debugging information from an external ".mdb" file.
26689 2004-07-24 Martin Baulig <martin@ximian.com>
26691 * reflection.c (mono_image_get_type_info): Only write a class
26692 layout entry if we actually have a size or a packing size.
26694 2004-07-21 Bernie Solomon <bernard@ugsolutions.com>
26696 * reflection.c (type_get_fully_qualified_name):
26697 insert cast to get type checking of ?: with non-gcc compilers
26699 2004-07-21 Bernie Solomon <bernard@ugsolutions.com>
26701 * rand.c: use g_getenv for both lookups of
26704 2004-07-17 Martin Baulig <martin@ximian.com>
26706 * reflection.c (mono_reflection_bind_generic_method_parameters):
26707 Set `gmethod->reflection_info'.
26709 2004-07-17 Martin Baulig <martin@ximian.com>
26711 * class.c (mono_class_create_from_typedef): Insert the newly
26712 created class into the hash table before computing the interfaces
26713 since we could be called recursively.
26715 2004-07-16 Ben Maurer <bmaurer@ximain.com>
26717 * marshal.[ch] (mono_marshal_get_stelemref): a new wrapper
26718 function to implement stelem.ref in managed code
26719 * class-internals.h, debug-helpers.c: a new wrapper type
26722 Wed Jul 14 19:26:05 CEST 2004 Paolo Molaro <lupus@ximian.com>
26724 * gc.c: allow GC handles to work even when no GC is compiled in.
26725 Fix part of bug #61134 (GetAddrOfPinnedObject).
26727 2004-07-13 Peter Williams <peter@newton.cx>
26729 * process.c (complete_path): Make sure we don't attempt to execute
26732 2004-07-12 Geoff Norton <gnorton@customerdna.com>
26734 * DateTime.cs: Patch for bug #61112. Our DateTime wasn't roundtripping over timezone
26735 boundaries properly. This patch checkes ToLocalTime() to see if we're tripping over a boundary
26736 and will add/subtract the hour if needed
26738 2004-07-12 Martin Baulig <martin@ximian.com>
26740 * reflection.c (mono_field_get_object): If we have
26741 `field->generic_info', take the attributes from
26742 `field->generic_info->generic_type'.
26744 2004-07-12 Martin Baulig <martin@ximian.com>
26746 * mono-debug.c (mono_debug_init): Don't take a `MonoDomain *'.
26747 This function must be called before initializing the runtime.
26748 (mono_debug_init_1): New function; call this after initializing
26749 the runtime, but before loading the assembly. It tells the
26750 debugger to load corlib and the builtin types.
26752 * mono-debug-debugger.c: Did some larger changes in the debugging
26753 code; support recursive class declarations, make sure we actually
26756 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26758 * debug-helpers.c: undo my previous patch and fixed the real issue in
26759 ../mini/exceptions-x86.c
26761 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26763 * debug-helpers.c: prevent SIGSEGV. It happened running xsp on monodoc
26764 when no HOME env. variable was set and a NullRef was thrown in a .cctor
26765 called from other .cctors.
26767 2004-07-09 Miguel de Icaza <miguel@ximian.com>
26769 * loader.c: Removed the mono_loader_wine_init hack now that we are
26770 doing a managed version of Windows.Forms.
26772 2004-07-09 Ben Maurer <bmaurer@ximian.com>
26774 * domain.c, gc.c, marshal.c, mono-debug-debugger.c,
26775 threadpool.c, threads.c: remove static data from rootset.
26777 2004-07-09 Dick Porter <dick@ximian.com>
26779 * locales.c (ves_icall_System_String_InternalReplace_Str_Comp):
26780 Don't do any more processing if the matched length was 0. It was
26781 increasing the size of the string before. Fixes bug 61167.
26783 2004-07-09 Dick Porter <dick@ximian.com>
26787 (ves_icall_System_Net_Sockets_Socket_GetSocketOption_obj_internal):
26788 Add support for SO_PEERCRED if its available.
26790 2004-07-09 Peter Bartok <pbartok@novell.com>
26791 * loader.c: winelib.exe.so error message is now only displayed if
26792 MONO_DEBUG is set. To help us avoid questions when people are trying
26793 out the new Managed.Windows.Forms.
26795 2004-07-08 Zoltan Varga <vargaz@freemail.hu>
26797 * class-internals.h debug-helpers.c marshal.c: Add new wrapper types
26798 for isinst and castclass wrappers.
26800 * class-internals.h icall.c: Move registration and lookup of JIT icalls
26801 to libmetadata from the JIT, so they could be used by the marshalling
26802 code and the interpreter.
26804 * marshal.c: Register marshalling related JIT icalls here instead of
26805 in mini.c. Use CEE_MONO_ICALL instead of the family of
26806 CEE_MONO_PROC<x> opcodes to call marshalling functions.
26808 * metadata.h: Remove unneeded marshalling conversions.
26810 * opcodes.c: Update for new opcodes.
26812 2004-07-08 Martin Baulig <martin@ximian.com>
26814 * mono-debug.c: Check for `handle->symfile' being non-NULL everywhere.
26815 (mono_debug_get_domain_data): Make this function static.
26817 Wed Jul 7 12:32:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26819 * gc.c, object.h: add nice GC handle API for embedders.
26821 2004-07-06 Ben Maurer <bmaurer@ximian.com>
26823 * reflection.c: more changes for the new api
26825 * object.c: When we reflect on a field w/ a constant value, it
26826 will not have a memory location, so we must access metadata. Also,
26827 allow easier reading of strings so that we can read them from
26830 * class.c (mono_class_layout_fields): no need for literal fields here.
26832 * class-internals.h: api changes for const fields
26834 * icall.c (ves_icall_get_enum_info): use new apis for const fields
26836 2004-07-06 Martin Baulig <martin@ximian.com>
26838 * mono-debug.h: Increment version number to 44.
26840 * mono-debug.c (mono_debug_add_wrapper): The second argument is
26841 now a gpointer, rewrote this whole method.
26843 * mono-debug-debugger.c (mono_debugger_add_wrapper): New
26844 function. Add information about the wrapper in a new "misc table".
26846 * mono-debug-debugger.h (MonoDebuggerSymbolTable): Added fields
26847 for the new misc table.
26849 2004-07-05 Zoltan Varga <vargaz@freemail.hu>
26851 * metadata-internals.h image.c: Add a cache for helper signatures.
26853 * monosn.c: Applied patch from "grompf" (grompf@sublimeintervention.com). Fix compilation under OSX.
26855 2004-07-03 Zoltan Varga <vargaz@freemail.hu>
26857 * marshal.c (mono_marshal_get_managed_wrapper): Handle returning
26858 delegates from a delegate. Fixes #61033.
26860 * marshal.c: Fix managed->native stringbuilder marshalling. Implement
26861 marshalling of stringbuilder arrays. Fixes #59900.
26863 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
26865 * icall.c: Add EnumBuilder:setup_enum_type icall.
26867 2004-06-30 Ben Maurer <bmaurer@ximian.com>
26869 * icall.c: Added a new icall for the property version of
26870 OffsetOfStringData.
26872 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
26874 * class-internals.h (MonoVTable): Make max_interface_id a guint32 so
26875 it has a constant size across platforms.
26877 * marshal.c (mono_delegate_end_invoke): Avoid crash when there is no
26880 2004-06-29 Martin Baulig <martin@ximian.com>
26882 * mono-debug.c (mono_debug_add_method): Protect the whole function
26883 in mono_debugger_lock(), not just parts of it.
26885 Fri Jun 25 21:36:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
26887 * reflection.c: make sure padding bytes in heaps are zeroed.
26889 2004-06-24 David Waite <mass@akuma.org>
26891 * appdomain.c, class.c, domain.c, file-io.c, gc.c, icall.c,
26892 image.c, loader.c, locales.c, marshal.c, metadata.c,
26893 mono-debug.[ch], object.c, reflection.c, security.c, socket-io.c,
26894 string-icalls.c, threads.c: change to C90-style comments from C99 /
26897 2004-06-24 Dick Porter <dick@ximian.com>
26900 (ves_icall_System_Threading_Mutex_CreateMutex_internal): Correctly
26901 return createdNew. Fixes bug 60412.
26904 * icall.c: Add createdNew parameter to CreateMutex icall
26906 Thu Jun 24 16:06:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
26908 * reflection.c, object-internals.h: save default value in params.
26910 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26912 * appdomain.c: for paths in PrivateBinPath that are absolute, there's
26913 no need to build a new path combining that with the application base.
26916 Wed Jun 23 18:36:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
26918 * reflection.c: fixed minor standard compliance issues.
26920 Wed Jun 23 17:59:29 CEST 2004 Paolo Molaro <lupus@ximian.com>
26922 * reflection.c: fixed issue with encoding some custom attributes
26923 (arrays in properties and fields, bug #60411).
26925 2004-06-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
26927 * reflection.c: fix start address when copying the public key token.
26929 2004-06-23 Martin Baulig <martin@ximian.com>
26931 * mono-debug-debugger.c (mono_debugger_unhandled_exception): Store
26932 the `exc' object in a static object to put it into the GC's root set.
26934 Wed Jun 23 15:37:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
26936 * reflection.c: make mono_reflection_setup_internal_class ()
26937 callable a second time to setup a new parent class.
26939 2004-06-23 Dick Porter <dick@ximian.com>
26941 * threads.c: Check for WAIT_IO_COMPLETION return values.
26943 2004-06-22 Sebastien Pouliot <sebastien@ximian.com>
26945 * appdomain.c: Removed the g_free on the public key token. Now copy
26946 the pk token string into the MonoAssemblyName buffer using g_strlcpy.
26947 * assembly.c: Added public key token string value when loading
26948 assemblies. Fix bug #60439.
26949 * icall.c: Added missing informations (like public key) in
26950 GetReferencedAssemblies. Fix #60519.
26951 * image.h: Changed definition for public key token from const char*
26952 public_tok_value to guchar public_key_token [17];
26953 * reflection.c: Updated for changes to public key token.
26955 2004-06-22 Lluis Sanchez Gual
26957 * icall.c: In ves_icall_InternalExecute, when setting a filed, also look
26958 for the field in base classes.
26960 Tue Jun 22 16:48:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
26962 * mono-debug.h, mono-debug-debugger.h, debug-mono-symfile.h:
26963 mark headers as not supported, they are installed only for use by the
26966 Tue Jun 22 16:32:03 CEST 2004 Paolo Molaro <lupus@ximian.com>
26968 * *.c, *.h: avoid namespace pollution in public headers.
26970 2004-06-21 Martin Baulig <martin@ximian.com>
26972 * exception.c (mono_get_exception_security): It's in
26973 "System.Security", not in "System".
26975 * mono-debug-debugger.c (mono_debugger_add_builtin_types): Add all
26976 the exception classes.
26978 2004-06-21 Martin Baulig <martin@ximian.com>
26980 * mono-debug-debugger.c (mono_debugger_unhandled_exception):
26981 Protect the exception object from being finalized.
26983 2004-06-21 Martin Baulig <martin@ximian.com>
26985 * mono-debug-debugger.h (mono_debugger_unhandled_exception): New
26988 2004-06-21 Sebastien Pouliot <sebastien@ximian.com>
26990 * reflection.c: Load the assembly in mono_reflection_type_from_name,
26991 if it was not loaded before. Fix parts of #60439.
26993 Mon Jun 21 16:04:43 CEST 2004 Paolo Molaro <lupus@ximian.com>
26995 * marshal.c, icall.c, object.c, image.c: fix the runtime_invoke ()
26996 code that was broken since Ben's change: wrappers are now
26997 dependent on the method signature only again.
26999 2004-06-21 Martin Baulig <martin@ximian.com>
27001 * mono-debug-debugger.c (write_class): Cleaned this up a bit and
27002 added interface support.
27004 2004-06-21 Martin Baulig <martin@ximian.com>
27006 * class.c (mono_vtable_get_static_field_data): New public method.
27008 2004-06-20 Atsushi Enomoto <atsushi@ximian.com>
27010 * filewatcher.c : Windows build fix to be compliant with API changes.
27012 Sat Jun 19 19:04:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27014 * class.h, class.c: more accessors.
27015 * metadata.h, metadata.c: prepare for hiding MonoType and
27016 MonoMethodSignature: people should use the accessors from now on
27017 outside of the tree.
27019 Sat Jun 19 17:56:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
27021 * *.c, *.h: more API cleanups.
27023 2004-06-18 Jackson Harper <jackson@ximian.com>
27025 * assembly.c: Trace loading assemblies.
27026 * loader.c: Trace loading native libraries.
27027 * mono-config.c: Trace loading config files.
27029 2004-06-18 Dick Porter <dick@ximian.com>
27031 * locales.c: Tell ICU the lengths of strings, it can cope with
27032 embedded \0 then. Fixes bug 59274, and doesn't break bug 55822.
27034 Fri Jun 18 11:59:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
27036 * image.c: swapped name/filename;
27038 2004-06-18 Martin Baulig <martin@ximian.com>
27040 * mono-debug-debugger.c (write_class): Write the parent class at
27041 the end of the header.
27043 Thu Jun 17 16:50:44 CEST 2004 Paolo Molaro <lupus@ximian.com>
27045 * *.c, *.h, Makefile.am: more API cleanups and bugfixes.
27047 2004-06-17 Raja R Harinath <rharinath@novell.com>
27049 * Makefile.am (PLATFORM_LIB): New. Possibly refer to ../os/libmonoos.la.
27050 (bundle_obj): New conditional define.
27051 (BUILT_SOURCES): Remove.
27052 ($(bundle_srcs)): Make parallel-make safe.
27053 (libmonoruntime_la_LIBADD): Make unconditional.
27054 (libmetadata_la_LIBADD): Make unconditional. Refer to $(bundle_obj).
27055 (libmetadata_la_SOURCES): Don't refer to $(bundle_srcs).
27057 2004-06-17 Atsushi Enomoto <atsushi@ximian.com>
27059 * culture-info-tables.h: It was inconsistent with the latest
27062 2004-06-17 Zoltan Varga <vargaz@freemail.hu>
27064 * assembly.c (mono_assembly_open): Fix crash when the assembly can't
27067 * threads.c (ves_icall_System_Threading_Thread_Resume): Fix compilation
27070 Wed Jun 16 18:23:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
27072 * threads.h, icall.c, object.c, threadpool.c, threads-types.h:
27073 cleaned up public header threads.h.
27075 Wed Jun 16 18:11:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
27077 * Makefile.am, *.c, *.h: more API cleanups.
27079 Wed Jun 16 14:33:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
27081 * Makefile.am: removed monosn from compilation.
27082 * appdomain.c, assembly.c, assembly.h, blob.h, class.c,
27083 debug-helpers.c, debug-mono-symfile.c, domain.c, icall.c,
27084 image.c, image.h, loader.c, marshal.c, metadata-internals.h,
27085 metadata.c, metadata.h, mono-config.c, mono-debug-debugger.c,
27086 mono-debug.c, object.c, opcodes.c, opcodes.h, pedump.c, process.c,
27087 reflection.c, reflection.h, verify.c: more API cleanups and fixes.
27089 2004-06-15 Jackson Harper <jackson@ximian.com>
27091 * assembly.c: Make locales lower case when searching the GAC for
27092 assemblies. gacutil will always make locales lowercase when
27093 installing so this effectively makes them case insensitive.
27095 2004-06-15 Lluis Sanchez Gual <lluis@ximian.com>
27097 * locales.c, threadpool.c: use mono_monitor_enter instead of mono_monitor_try_enter.
27098 * monitor.c: New method mono_monitor_try_enter_internal, which takes a new
27099 parameter which allows to choose whether the wait can be interrupted or
27100 not. Also added the method mono_monitor_enter(), which locks the monitor
27101 using an infinite wait and without allowing interruption.
27102 In the Monitor.Enter and Wait icalls, retry the lock if the wait is
27104 * object.h: Added new fields in MonoThread. suspend_event holds the event
27105 used to susped/resume the thread. synch_lock is the lock object to use for
27106 modifying the thread state.
27107 * threads.c: Use the new synch_lock object for locking, instead of "this",
27108 which can generate deadlocks.
27109 Moved thread state change in Thread.Sleep and Thread.Join from managed
27110 to unmanaged code. This avoids a deadlock when the thread was suspended
27111 just after acquiring the thread lock.
27112 In general, use mono_monitor_enter instead of mono_monitor_try_enter.
27113 Implemented Thread.Suspend using an event instead of ThreadSuspend,
27114 which is not fully implemented in the io-layer.
27115 * socket-io.c: Only try IPv6 DNS lookup if IPv4 fails.
27117 Tue Jun 15 18:34:21 CEST 2004 Paolo Molaro <lupus@ximian.com>
27119 * Makefile.am, monitor.h, object.h, threadpool.c, threadpool.h,
27120 threads-types.h: more API cleanups.
27122 Tue Jun 15 16:40:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
27124 * domain-internals.h, Makefile.am, appdomain.c, appdomain.h,
27125 domain.c, gc.c, icall.c, mono-debug.c, object.c, reflection.c,
27126 threadpool.c, threads.c: first pass at the exported API cleanup.
27128 Tue Jun 15 15:29:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
27130 * icall.c: fix signatures of some VolatileRead and VolatileWrite icalls.
27132 2004-06-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27134 * icall.c: added internalGetHome.
27136 2004-06-14 Dick Porter <dick@ximian.com>
27138 * file-io.c (ves_icall_System_IO_MonoIO_FindFirstFile): It was
27139 possible to return successfully when '.' or '..' were the only
27140 entries in a directory, but were skipped. The MonoIOStat was not
27141 filled in in that case. Now return ERROR_NO_MORE_FILES instead.
27144 Mon Jun 14 00:27:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
27146 * reflection.c: make binaries run on .Net 1.1 by default.
27148 Sun Jun 13 18:22:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
27150 * threadpool.c, threadpool.h: use the correct return type in SetMinThreads ().
27152 Sun Jun 13 16:44:39 CEST 2004 Paolo Molaro <lupus@ximian.com>
27154 * marshal.c: keep track of struct size with explicit layout
27157 2004-06-12 Martin Baulig <martin@ximian.com>
27159 * mono-debug-debugger.c: Comment out a debugging g_message().
27161 Sat Jun 12 14:15:02 CEST 2004 Paolo Molaro <lupus@ximian.com>
27163 * reflection.c, reflection.h: do not free custom attrs that are cached.
27164 * icall.c: use braces to make code clearer.
27166 2004-06-11 Martin Baulig <martin@ximian.com>
27168 * class.h (MonoInflatedField): New type.
27169 (MonoClassField): Replaced `MonoType *generic_type' with
27170 `MonoInflatedField *generic_info'.
27173 (ves_icall_MonoField_Mono_GetGenericFieldDefinition): New icall.
27175 2004-06-11 Martin Baulig <martin@ximian.com>
27177 * reflection.c (mono_image_create_method_token): Correctly encode
27180 2004-06-11 Martin Baulig <martin@ximian.com>
27182 * metadata.c (mono_metadata_parse_method_signature): When parsing
27183 a MethodDef which has VarArgs, also set sentinelpos if we don't
27184 have any parameters.
27186 2004-06-11 Martin Baulig <martin@ximian.com>
27188 * verify.c (mono_method_verify): In CEE_CALL, use
27189 mono_method_get_signature() to get the method's signature, unless
27190 we're a PInvoke method.
27192 2004-06-10 Jackson Harper <jackson@ximian.com>
27194 * assembly.c: Use <path>/lib/mono/gac for the extra paths
27195 lookup. Rename MONO_GAC_PATH to MONO_GAC_PREFIX, this is a more
27196 logical name as the supplied path is just a prefix to the gac not
27197 the direct path to it.
27199 Thu Jun 10 20:10:16 CEST 2004 Paolo Molaro <lupus@ximian.com>
27201 * reflection.c: make the token for a created method match
27202 the token of the MethodBuilder it was created from
27203 (IKVM requires this behaviour now).
27205 Thu Jun 10 16:02:27 CEST 2004 Paolo Molaro <lupus@ximian.com>
27207 * image.c, image.h, appdomain.c, assembly.c, loader.c, metadata.c,
27208 reflection.c, socket-io.c: leak fixes.
27210 Wed Jun 9 18:23:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
27212 * icall.c: handle sentinel pos in vararg methods in position different
27215 2004-06-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27217 * culture-info-tables.h: freshly generated.
27219 2004-06-09 Martin Baulig <martin@ximian.com>
27221 * loader.c (mono_get_method_constrained): Call `mono_class_init
27222 (constrained_class)'.
27224 2004-06-08 Gert Driesen <drieseng@users.sourceforge.net>
27226 * icall.c (ves_icall_MonoType_GetEvent): Handle events without
27227 any methods. Fixes #59629.
27229 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
27231 * culture-info-tables.h: reflecting locale-builder updates.
27233 2004-06-08 Dick Porter <dick@ximian.com>
27236 * locales.c: Fixed compile warnings, including a real bug in
27237 CompareInfo_internal_compare.
27239 2004-06-08 Dick Porter <dick@ximian.com>
27242 (ves_icall_System_Globalization_CompareInfo_internal_index):
27243 (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27244 Double-check the resuls of usearches, because ICU currently
27245 ignores most of the collator settings here. Fixes bug 59720.
27247 2004-06-08 Dick Porter <dick@ximian.com>
27250 (ves_icall_System_Globalization_CompareInfo_internal_index_char):
27251 Fix memory leak and segfault-causing typo. No idea how this one
27252 lasted so long without being noticed.
27254 2004-06-09 Zoltan Varga <vargaz@freemail.hu>
27256 * icall.c (ves_icall_Type_GetEvents_internal): Handle events without
27257 any methods. Fixes #59629.
27259 2004-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27262 (mono_assembly_load): search_loaded -> mono_assembly_loaded (we didn't
27263 own the critical section before). Removed dead code (that's done
27264 in the preload hook).
27266 (mono_assembly_load_with_partial_name): call the preload hook.
27268 2004-06-08 Martin Baulig <martin@ximian.com>
27270 * metadata.c (mono_metadata_signature_alloc): Default
27271 `sentinelpos' to -1.
27273 * reflection.c (mono_image_get_array_token): Likewise.
27275 2004-06-08 Martin Baulig <martin@ximian.com>
27277 * icall.c (ves_icall_ModuleBuilder_getMethodToken): New icall.
27279 * metadata.c (mono_metadata_parse_method_signature): When parsing
27280 a MethodDef which has VarArgs, set sentinelpos.
27282 * metadata.h (MonoMethodSignature): Make `sentinalpos' a signed
27283 `gint16' since we're using -1 for non-varargs methods.
27286 (ReflectionMethodBuilder): Added `MonoArray *opt_types'.
27287 (method_encode_signature): Added varargs support.
27288 (method_builder_encode_signature): Likewise.
27289 (mono_image_get_varargs_method_token): New static method.
27290 (mono_image_create_method_token): New public method; this is
27291 called via an icall instead of mono_image_create_token() when
27292 calling a varargs method.
27294 2004-06-08 Lluis Sanchez Gual <lluis@ximian.com>
27296 * locales.c: Fixed memory leak in Char.ToLower/ToUpper.
27298 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
27300 * culture-info-tables.h : Reflecting the latest locale-builder that
27301 fixed empty array representation ({} to {0}).
27303 2004-06-07 Jackson Harper <jackson@ximian.com>
27305 * assembly.c: It should be <MONO_GAC_PATH>/lib/mono/gac when
27306 looking up extra gac paths. This allows MONO_GAC_PATH to act
27307 exactly like a prefix.
27309 2004-06-08 Zoltan Varga <vargaz@freemail.hu>
27311 * reflection.c (mono_reflection_type_from_name): Make a copy of the
27312 type name before modifying it. Fixes #59405.
27314 2004-06-08 Atsushi Enomoto <atsushi@ximian.com>
27316 * culture-info.h: added fields for "all datetime patterns".
27317 * locales.c: ( ves_icall_System_Globalization_CultureInfo
27318 _construct_datetime_format ()): fill xxx_patterns fields.
27319 * object.h: added fields for "all datetime patterns" to
27320 MonoDateTimeFormatInfo.
27321 * culture-info-tables.h: reflecting locale-builder updates.
27323 2004-06-08 Zoltan Varga <vargaz@freemail.hu>
27325 * icall.c (ves_icall_Type_GetEvents_internal): Handle the case when
27326 the event has no add and remove methods. Fixes #59629.
27328 2004-06-05 Sebastien Pouliot <sebastien@ximian.com>
27330 * object.c: Fixed possible integer overflow when allocating large
27333 2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
27335 * culture-info-tables.h: reflecting locale-builder updates.
27337 2004-06-05 Atsushi Enomoto <atsushi@ximian.com>
27339 * culture-info-tables.h: reflecting locale-builder updates.
27341 2004-06-03 Atsushi Enomoto <atsushi@ximian.com>
27343 * culture-info-tables.h: reflecting locale-builder updates.
27345 2004-06-03 Lluis Sanchez Gual <lluis@ximian.com>
27347 * threads.c: Made Thread.Sleep abortable.
27349 2004-06-02 Martin Baulig <martin@ximian.com>
27351 * mono-debug.h (MONO_DEBUGGER_VERSION): Bumped version to 41.
27353 * debug-mono-symfile.h: Bumped symbol file version number to 37.
27355 2004-05-31 Zoltan Varga <vargaz@freemail.hu>
27357 * marshal.c (mono_marshal_get_runtime_invoke): Fix CR/LFs.
27359 2004-05-30 Jackson Harper <jackson@ximian.com>
27361 * reflection.c: Do not hardcode assembly versions or public key
27362 tokens anymore. All of this except the corlib section was dead
27365 2004-05-29 Zoltan Varga <vargaz@freemail.hu>
27367 * object.c (mono_runtime_invoke_array): Automatically create boxed
27368 objects for byref valuetypes if needed. Fixes #59300.
27370 * object.c (mono_method_return_message_restore): Handle
27371 MONO_TYPE_OBJECT as well.
27373 2004-05-28 Jackson Harper <jackson@ximian.com>
27375 * reflection.c: The modified type encoding was causing build
27376 problems. Reverted for now.
27378 2004-05-28 Jackson Harper <jackson@ximian.com>
27380 * reflection.c/h: Take an assembly ref so that we dont create
27381 fully qualified names when encoding types in the same assembly as
27382 the custom attribute being emitted.
27383 * appdomain.c: Increment version number.
27385 2004-05-26 Duncan Mak <duncan@ximian.com>
27388 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
27389 Set the full version number (major, minor, build, revision).
27391 2004-05-28 Vladimir Vukicevic <vladimir@pobox.com>
27393 * marshal.c (emit_struct_conv): increment src/dst after blit
27394 (mono_marshal_get_managed_wrapper,
27395 mono_marshal_get_native_wrapper): make sure we have marshalling
27396 info before marshalling params (info computation affects
27399 * class.c (class_compute_field_layout): correctly deal with
27401 (mono_class_layout_fields): Don't do gc_aware_layout for AUTO
27402 value types (as per what windows dows by default)
27403 (mono_class_setup_mono_type): System.ValueType is blittable
27404 (mono_ptr_class_get, mono_fnptr_class_get): Pointer classes are
27407 * marshal.c (mono_marshal_load_type_info): flag types as
27408 non-blittable if the native layout doesn't match the managed
27411 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27413 * appdomain.c: don't add stuff in the private search path that is
27414 above the application base. If application base is not set, there's
27415 no private search path.
27417 2004-05-28 Zoltan Varga <vargaz@freemail.hu>
27419 * marshal.c (mono_marshal_get_managed_wrapper): Add proper support for
27420 byref struct arguments in native->managed marshalling.
27422 2004-05-28 Patrik Torstensson <totte@hiddenpeaks.com>
27424 * marshal.c (mono_marshal_get_runtime_invoke): correctly
27425 cache methods using signature (special case for methods
27426 that are value type or string class)
27428 * image.c (mono_image_close): clean up allocated GSList's
27429 in runtime_invoke_cache.
27431 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27433 * mono-config.c: set the correct path for mono_cfg_dir on windows when
27434 there's no MONO_CFG_DIR environment variable defined.
27436 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27438 * threads.c: windows version must be >= 0x0500 to include OpenThread.
27440 2004-05-28 Lluis Sanchez Gual <lluis@ximian.com>
27442 * threadpool.c: Really wait for 500ms after the async call, even if the wait
27444 * threads.c: In mono_thread_manage, call OpenThread to ref each handle
27445 before waiting for it, and call CloseHandle after the wait to unref it.
27446 This will make sure that handles are not disposed too early.
27448 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27453 ves_icall_System_AppDomainSetup_InitAppDomainSetup as it's not
27456 * object.c: se the application_base only for the domain that runs
27457 Main. Fixes bug #59216,
27459 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27462 * object.c: only the domain in which Main is run have
27463 SetupInformation.ConfigurationFile set, so moved a few lines from
27464 appdomain.c to object.c.
27466 2004-05-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27468 * appdomain.c: we tried to load [name].(dll|exe), but according
27469 to bug #57710, we must also try [culture]/[name].(dll|exe) and
27470 [culture]/[name]/[name](dll|exe). This patch fixes the bug.
27471 There's a test case attached to bug #58922.
27473 2004-05-27 Dick Porter <dick@ximian.com>
27476 * file-io.c: Implemented icalls for locking and unlocking regions
27478 (ves_icall_System_IO_MonoIO_FindNextFile): FindNextFile() returns
27479 FALSE on error (fixes both compiler warning and real bug.)
27481 2004-05-27 Atsushi Enomoto <atsushi@ximian.com>
27483 * culture-info-tables.h: reflecting locale-builder updates.
27485 (Added missing ChangeLog entry for 05/26)
27487 2004-05-27 Jackson Harper <jackson@ximian.com>
27489 * locales.c: Fix some cut and paste errors.
27491 2004-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27493 * mono-config.c: set the correct path for config. directory on windows.
27495 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
27497 * icall.c : Fixed ves_icall_System_DateTime_GetNow() to return utc
27500 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
27502 * marshal.c (mono_marshal_get_native_wrapper): Free strings returned
27503 from pinvoke functions.
27505 * marshal.c (mono_ftnptr_to_delegate): Implement this.
27507 2004-05-26 Atsushi Enomoto <atsushi@ximian.com>
27509 * culture-info-tables.h: reflecting locale-builder updates.
27511 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
27513 * profiler.c (simple_allocation): Skip icall wrapper methods. Fixes
27516 2004-05-26 Sebastien Pouliot <sebastien@ximian.com>
27518 * appdomain.cs: Bumped MONO_CORLIB_VERSION to 20.
27519 * icall.c: Modified icalls for RNG.
27520 * rand.c|h: Changed RNG interface to allow thread-safe usage under
27521 Windows (CryptoAPI).
27523 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
27525 * locales.c: Fix build.
27527 2004-05-25 Atsushi Enomoto <atsushi@ximian.com>
27529 * culture-info-tables.h: reflecting locale-builder updates.
27531 2004-05-25 Jackson Harper <jackson@ximian.com>
27533 * locales.c: When creating the current culture use the $LANGs
27534 specific culture. So DateTimeFormat and NumberFormat entries are created.
27536 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
27538 * string-icalls.{h,c} icalls.c: Add new icalls for Strcpy which take
27539 a char array as parameter.
27541 2004-05-24 Lluis Sanchez Gual <lluis@ximian.com>
27543 * image.c: In mono_image_open(), always use an absolute path name to
27544 look for already loaded images.
27546 2004-05-24 Sebastien Pouliot <sebastien@ximian.com>
27548 * icall.c: Added define for CSIDL_FLAG_CREATE (0x8000) in case it is
27549 missing in the windows build (like older cygwin include files).
27551 2004-05-23 Sebastien Pouliot <sebastien@ximian.com>
27553 * icall.c: Fixed check for possible integer overflow in Buffer_
27554 BlockCopy icall. Replaced comments style // by /* */.
27556 2004-05-22 Zoltan Varga <vargaz@freemail.hu>
27558 * marshal.c (mono_ftnptr_to_delegate): Fix warning.
27560 * marshal.c (mono_marshal_get_proxy_cancast): Move thread interrupt
27561 check after MONO_VTADDR. Fixes pinvoke2.exe.
27563 * marshal.h marshal.c metadata.h: Add beginnings of support for
27564 ftnptr -> delegate marshalling.
27566 2004-05-21 Zoltan Varga <vargaz@freemail.hu>
27568 * threads.c (ves_icall_System_Threading_Thread_ResetAbort): Fix compilation on gcc-2.95.
27569 * threads.c: Fix warnings.
27571 2004-05-20 Lluis Sanchez Gual <lluis@ximian.com>
27573 * appdomain.c, gc.c: Make use of the new WaitForSingleObjectEx.
27574 * icall.c: Registered icalls for Suspend and Resume.
27575 * locales.c: Beware, mono_monitor_try_enter can now be interrupted by
27577 * monitor.c: Use WaitForSingleObjectEx. Added some interruption checkpoints.
27578 * mono-debug-debugger.c: Use WaitForSingleObjectEx et al.
27579 * process.c: Use WaitForSingleObjectEx.
27580 * threadpool.c: Use WaitForSingleObjectEx. Added some interruption
27582 * threads.c, threads.h: Make use of new Ex wait methods. Improved
27583 implementation of Thread.Abort and Thread.ResetAbort icalls. Added icalls
27584 for Suspend and Resume. Added new mono_thread_stop, used for stoping
27585 background threads. Added basic support for Abort in Windows.
27586 Start new threads using a managed delegate invoke wrapper. This wrapper
27587 has an interruption checkpoint that is needed since an interruption
27588 can be requested before the thread leaves the unmanaged code that starts
27590 * marshal.c: Added interruption checkpoint after every native call, and
27591 also before managed calls for wrappers called from unmanaged code to
27592 go into managed code.
27593 * object.h: Added new field in MonoThread to keep track of interruption
27596 2004-05-20 Zoltan Varga <vargaz@freemail.hu>
27598 * marshal.c: Insert SAVE_LMF and RESTORE_LMF opcodes around native
27601 2004-05-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27608 * rand.c: getenv -> g_getenv (windows!)
27610 * process.c: complete_path is also used on non-windows platforms.
27612 2004-05-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27614 * icall.c: new signature for Process_Start.
27616 * process.[ch]: new signature for Process_Start. If we're on windows
27617 and UseShellExecute is false, we have to search for the program by
27618 ourselves if we don't get a full path.
27620 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
27622 * marshal.c (mono_marshal_get_native_wrapper): Fix up custom
27623 marshalling and call CleanUpNativeData if needed. Fixes #58646.
27625 2004-05-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27627 * socket-io.c: field value changed for Int32 from 'value' to 'm_value'.
27630 2004-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27632 * process.c: use double quotes to quote program name and arguments on
27633 windows. Fixes bug #58575.
27635 2004-05-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27637 * file-io.c: don't return "." and ".." when using windows Find*File.
27639 2003-05-17 Patrik Torstensson <totte@hiddenpeaks.com>
27641 * marshal.c: Don't pass wrappers to message init because method
27642 addressed used to lookup metadata. part of remoting[2|3] fix.
27644 2004-05-15 Jackson Harper <jackson@ximian.com>
27646 * assembly.c: Remove user gac and implement MONO_GAC_PATH, this
27647 path is essentially the same as MONO_PATH except that it points to
27648 GACs instead of lib directories.
27649 * loader.h: The user gac is gone so we dont need function to
27651 * mono-config.c: user gac option is now gone.
27653 2004-05-15 Jackson Harper <jackson@ximian.com>
27655 * culture-info.h: Make defines more consistent, add calendar data
27656 to the culture info table.
27657 * culture-info-tables.h: Add basic calendar data. Basically
27658 everyone gets default gregorian until all the data is
27660 * locales.c: Use the new consistent defines. Set calendar data for
27661 culture info objects.
27662 * object.h: add a field for calendar data to CultureInfo
27664 2004-05-14 Ben Maurer <bmaurer@users.sourceforge.net>
27666 * image.c: image->runtime_invoke_cache is keyed on signatures now.
27667 * marshal.c (mono_mb_emit_calli): new helper to emit a CEE_CALLI with
27669 (mono_mb_emit_managed_call, mono_mb_emit_native_call): use the above.
27670 (mono_marshal_get_runtime_invoke): The runtime invoke method now takes
27671 an extra param that is the pointer of the method to invoke. The IL for
27672 the invoke method is no longer specific to the method, but to the
27673 signature of the method. Thus, we can share the same code for multiple
27674 methods. This reduces the number of methods that have to be compiled.
27676 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
27678 * icall.c (ves_icall_System_Reflection_Assembly_load_with_partial_name): Fix warning.
27680 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
27682 * icall.c: Optimize Buffer.BlockCopy.
27684 2004-05-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27686 * culture-info-tables.h: seems like Spanish and Portuguese cultures had
27687 DateTimeFormatInfo.YearMonthPattern like "MMMM' yyyy" (note the single
27688 quote). Changed them to "MMMM yyyy".
27690 2004-05-12 Miguel de Icaza <miguel@ximian.com>
27693 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_InternalGetBytes): Always close the file.
27695 2004-05-13 Zoltan Varga <vargaz@freemail.hu>
27697 * reflection.h: Updated after changes to managed structures.
27699 * appdomain.c: Bump corlib version.
27701 2004-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27703 * Makefile.am: also add libmonoos to libmetadata. Fixes the build on
27706 2004-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27708 * Makefile.am: link to ../os/libmonoos.la on windows.
27711 -If MONO_DEBUG, warn about non-existing directories in
27713 -Added mono_assembly_getrootdir() that replaces MONO_ASSEMBLIES
27714 compile time variable.
27715 -Removed init_default_path and call mono_set_rootdir from
27716 libmonoos.a instead (windows only).
27718 * assembly.h: declare mono_assembly_getrootdir().
27721 * icall.c: use mono_assembly_getrootdir() instead of MONO_ASSEMBLIES.
27723 * loader.c: s/getenv/g_getenv/
27725 2004-05-11 Zoltan Varga <vargaz@freemail.hu>
27727 * marshal.{h,c}: Add support for UnmanagedType.AsAny.
27729 * marshal.c: Use mono_metadata_signature_{alloc,dup} where appropriate.
27731 * metadata.h: Add new marshalling conversions.
27733 * metadata.h metadata.c (mono_metadata_signature_dup): New helper
27736 * reflection.c (mono_reflection_get_type): Lookup the type in all
27737 modules of a multi-module assembly. Fixes #58291.
27739 2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
27741 * threads.c: Before aborting a background, set the StopRequested
27742 state. This avoids throwing the Abort exception.
27743 In mono_thread_manage, don't continue with the shutdown until all
27744 aborted threads have actually stopped.
27746 2004-05-10 Jackson Harper <jackson@ximian.com>
27748 * locales.c: Remove the modifier from culture names.
27750 2004-05-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27752 * Makefile.am: monosn is not installed any more. It has been deprecated
27755 2004-05-07 Jackson Harper <jackson@ximian.com>
27758 (ves_icall_System_Globalization_CultureInfo_internal_get_cultures):
27759 Fix array construction, add bailout if the length is 0.
27761 2004-05-07 Dick Porter <dick@ximian.com>
27763 * socket-io.c (addrinfo_to_IPHostEntry): Don't crash if the
27764 machine doesn't have a DNS entry. Patch by Urs Muff
27765 (umuff@quark.com), fixes bug 57928.
27767 2004-05-06 Jackson Harper <jackson@ximian.com>
27769 * reflection.c: Handle null PublicTokens properly. alloc mem for
27770 assembly names culture so we dont crash when freeing it.
27772 2004-05-06 Jackson Harper <jackson@ximian.com>
27774 * assembly.c: Check the usergac when loading with partial names.
27776 2004-05-05 Sebastien Pouliot <sebastien@ximian.com>
27778 * rand.c|h: Added new icall for (optionally) seeding the PRNG. This
27779 does nothing for now (not required for Linux/Windows) but the class
27780 library can call it (and a newer or modified runtime could need it).
27781 * icall.c: Registred icall.
27783 2004-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27785 * loader.c: prints a message on module loading error we set MONO_DEBUG
27786 environment variable.
27788 2004-05-05 Jackson Harper <jackson@ximian.com>
27790 * appdomain.c: Handle PublicKeyToken=null properly.
27792 2004-05-05 Sebastien Pouliot <sebastien@ximian.com>
27794 * environment.c|h: Added icall ves_icall_System_Environment_
27795 GetOSVersionString to get the current OS version as a string.
27796 * icall.c: Registred icall.
27798 2004-05-05 Lluis Sanchez Gual <lluis@ximian.com>
27800 * object.c: in mono_object_get_virtual_method(), take into account that
27801 non-virtual methods don't have a slot in the vtable. Check needed when
27802 the object is a proxy.
27804 2004-05-05 Zoltan Varga <vargaz@freemail.hu>
27806 * marshal.h marshal.c icall.c: Applied patch from vladimir@pobox.com
27807 (Vladimir Vukicevic). Implement UnsafeAddrOfPinnedArrayElement.
27809 * object.c (mono_class_compute_gc_descriptor): Fix warning.
27811 * object.c (mono_runtime_invoke_array): Add an assert so null cannot be
27812 passed when a valuetype is expected.
27814 * object.c (mono_unhandled_exception): Only set the exit code if the
27815 exception happens in the main thread. Fixes thread5.exe.
27817 * appdomain.c (get_info_from_assembly_name): Fix infinite loop on
27818 invalid names. Fixes #58047.
27820 2004-05-03 Jackson Harper <jackson@ximian.com>
27822 * assembly.c: This line was committed accidently and is unneeded.
27824 2004-05-03 Jackson Harper <jackson@ximian.com>
27826 * icall.c: Add new icall for Assembly::LoadWithPartialName
27827 * assembly.c/.h: new function that probes the GAC to load partial
27828 assembly names by Paolo Molaro.
27830 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27832 * appdomain.c: use g_strncasecmp when looking for 'Culture=' et al.
27833 * reflection.c: use g_strncasecmp when looking for 'Culture=' et al.
27834 (type_get_fully_qualified_name): Added PublicKeyToken when building a
27837 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27839 * appdomain.c: fixed check for 'neutral' culture and removed warning.
27840 * reflection.c: fix bug when parsing a full type name and Version is not
27841 the last thing in the string.
27843 2004-05-03 Zoltan Varga <vargaz@freemail.hu>
27845 * appdomain.c (get_info_from_assembly_name): Strdup "" to prevent
27846 crashes when it is freed.
27848 2004-05-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27850 * assembly.c: print the compat warning to stderr.
27852 2004-05-01 Miguel de Icaza <miguel@ximian.com>
27854 * assembly.c (mono_assembly_load_references): Add a compatibility
27855 hack to run old applications that might be still referencing the
27856 3300-based assemblies, only do this for System.xxx.
27858 2004-05-01 Jackson Harper <jackson@ximian.com>
27860 * appdomain.c: If the culture is neutral we set it to "".
27862 2004-04-29 Jackson Harper <jackson@ximian.com>
27864 * locales.c: Add some missing MONO_ARCH_SAVE_REGS'.
27866 2004-04-29 Andreas Nahr <ClassDevelopment@A-SoftTech.com>
27868 * string-icalls.c: added low overhead function for copying chars
27869 * icall.c: added needed icall for the above function
27871 2004-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27873 * icall.c: fix return value of get_global_assembly_cache. Implemented
27874 Environment.GetLogicalDrives.
27876 2004-04-28 Bernie Solomon <bernard@ugsolutions.com>
27878 * rand.c: try and talk to egd or prngd
27879 for random bytes if opening devices fail.
27881 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
27883 * marshal.c (mono_marshal_load_type_info): Calculate the minimum
27884 alignment for the type using the native alignment of its members
27885 instead of using klass->min_align.
27887 * metadata.c (mono_type_stack_size): Fix size of TYPEDBYREF.
27889 2004-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27892 * socket-io.c: added check for sys/aio.h.
27894 2004-04-28 Dick Porter <dick@ximian.com>
27896 * threads.c: Don't abort a thread thats already aborting, when
27897 terminating everything.
27899 2004-04-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27901 * icall.c: added 2 new async calls for Socket.
27903 * socket-io.[ch]: fixed some warnings. Added support for asynchronous
27904 IO on *nix systems.
27906 * threadpool.c: removed unused variable.
27908 2004-04-27 Zoltan Varga <vargaz@freemail.hu>
27910 * marshal.c: Handle null properly in PtrToString* icalls. Fixes #57706.
27912 Tue Apr 27 15:55:17 CEST 2004 Paolo Molaro <lupus@ximian.com>
27914 * locales.c: put back string_invariant_tolower () and
27915 string_invariant_toupper ().
27917 2004-04-26 David Waite <mass@akuma.org>
27922 * unicode.h: remove comma from end of enumeration declarations
27924 2004-04-26 David Waite <mass@akuma.org>
27926 * debug-mono-symfile.h:
27929 * sysmath.c: Define 64 bit constants as long long types (i.e. 10ULL)
27932 2004-04-26 Jackson Harper <jackson@ximian.com>
27934 * appdomain.c: Increment version number.
27936 2004-04-26 Jackson Harper <jackson@ximian.com>
27938 * appdomain.c: Set assembly references public token value when
27939 PublicKeyToken is specified, not the hash_value. Free public token
27940 values when free assembly name data. Previously the public key
27941 token was hex decoded, however we are using hex encoded public key
27942 tokens, so this is not neccasary.
27943 * assembly.c: Lookup assemblies in the gac if their public token
27944 value is set. Add function to allow enabling user gac
27945 lookups. Specify whether or not the assembly was loaded from the
27946 GAC. Compare full assembly names when checking the cache for
27947 assemblies (Temporarily disabled see comment in code). Remove
27948 mscorlib -> corlib mapping cruft. Add trace-loading. When a user
27949 specifies trace-loader they get extra info to stdout on the
27950 loading of assemblies.
27951 * image.h: Add a field for an assembly references public token
27952 value to MonoAssemblyname. Add a field to MonoAssembly to specifiy
27953 whether an assembly has been loaded from the GAC.
27954 * image.c: Remove a corlib -> mscorlib name mapping.
27955 * loader.h: Add function to enable/disable the user gac.
27956 * mono-config.c: Check if the usergac is enabled in the config
27958 * icall.c: New icall to determine whether or not an assembly has
27959 been loaded from the GAC. Remove some mscorlib -> corlib mappings.
27960 * tabldefs.h: Add constant for assemblyref flag that specifies a
27961 full public key is used instead of a public token.
27962 * reflection.c: Remove mscorlib -> corlib mappings. Set
27963 PublicTokenValue instead of hash value. This value is a hex
27964 string so it does not need to be expanded.
27966 2004-04-26 Martin Baulig <martin@ximian.com>
27968 * mono-debug-debugger.c (mono_debugger_initialize): Set
27969 `mono_debugger_initialized' before calling mono_debug_lock().
27971 2004-04-42 Robert Shade <rshade@dvsconsulting.com>
27973 * icall.c: icalls for Char.ToUpper/ToLower are now hooked to
27974 InternalToUpper/InternalToLower.
27975 * locales.c: (ves_icall_System_{Char,String}_InternalTo{Upper,Lower}_Comp)
27976 removed invariant culture shortcut. This is now done in managed code.
27977 * locales.c: (string_invariant_toupper/tolower) removed.
27979 2004-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
27981 * icall.c: added GetSupportsAsync for Socket (same as MonoIO).
27982 Added Poll internal call.
27984 * socket-io.[ch]: _wapi_socket == WSASocket. Added internal
27985 call for Poll. Select was too heavy for polling a single socket.
27987 * threadpool.[ch]: added mono_threadpool_cleanup.
27988 * threads.c: use it. Don't use Thread_Abort on windows.
27990 2004-04-23 Martin Baulig <martin@ximian.com>
27992 * mono-debug-debugger.c (mono_debugger_lookup_assembly): New function.
27994 2004-04-23 Sebastien Pouliot <sebastien@ximian.com>
27996 * icall.c: Registred new icalls for key pair protection and added an
27997 icall for Environment.GetFolderPath on Windows.
27998 * security.c|h: Added new icalls for key pair protection.
28000 2004-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28002 * socket-io.c: don't display the non-supported family warning for known
28003 families. Now this is not displayed on windows when checking support
28006 2004-04-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28008 * class.c: don't display the layout warning for static fields.
28010 2004-04-21 Lluis Sanchez Gual <lluis@ximian.com>
28012 * icall.cs: Registered new icalls for Char.ToLower and Char.ToUpper.
28013 * locales.c, locales.h: Added new icalls for culture-specific
28014 Char.ToLower and Char.ToUpper.
28016 2004-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28018 * threads.c: the 2nd argument when aborting a thread is NULL now. Patch
28021 2004-04-20 Martin Baulig <martin@ximian.com>
28023 * mono-debug-debugger.c (mono_debugger_lookup_type): Make a copy
28024 of the type name before passing it to mono_reflection_type_from_name().
28026 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
28028 * marshal.c (mono_marshal_get_managed_wrapper): Handle different string
28029 encodings here. Fixes #56965.
28031 2004-04-18 Bernie Solomon <bernard@ugsolutions.com>
28033 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28034 fix test on strstr result not that I can see anything that
28035 relies on the result.
28037 2004-04-18 Zoltan Varga <vargaz@freemail.hu>
28039 * metadata.c (mono_type_to_unmanaged): Handle MONO_NATIVE_FUNC as well.
28042 * marshal.c (mono_marshal_get_string_encoding): New helper function.
28044 * marshal.c (mono_marshal_get_native_wrapper): Use the new helper
28045 function to determine which marshalling to use for strings. Fixes
28048 * marshal.c (mono_marshal_string_array_to_unicode): Fix warning.
28050 * reflection.c (encode_marshal_blob): Add support for LPARRAY.
28052 2004-04-15 Bernie Solomon <bernard@ugsolutions.com>
28054 * icall.c: #include mono-config.h
28056 2004-04-15 Jackson Harper <jackson@ximian.com>
28058 * culture-info-tables.h: Fix date formats for en-US culture.
28060 2004-04-15 Lluis Sanchez Gual <lluis@ximian.com>
28062 * icall.c: Registered icalls for ThreadPool.GetMinThreads and
28063 ThreadPool.SetMinThreads.
28064 * threadpool.c: Implemented ThreadPool.GetMinThreads and
28065 ThreadPool.SetMinThreads.
28067 Thu Apr 15 15:36:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
28069 * mono-config.c: also load the .config file in the directory
28070 where the assembly was found.
28072 Thu Apr 15 14:24:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
28074 * assembly.c: load per-assembly config files.
28075 * icall.c: decrapified code to get the config dir and moved to
28077 * image.h, loader.c, loader.h, mono-config.c, mono-config.h: allow
28078 per-assembly config files. When doing a dll map lookup give precedence
28079 to the per-assembly data.
28081 2004-04-14 Martin Baulig <martin@ximian.com>
28083 * mono-debug-debugger.h (MonoDebuggerEvent): Removed
28084 MONO_DEBUGGER_EVENT_TYPE_ADDED and MONO_DEBUGGER_EVENT_METHOD_ADDED
28085 and added MONO_DEBUGGER_EVENT_RELOAD_SYMTABS.
28087 * mono-debugger-debugger.c: While the debugger is locked, remember
28088 whether the symbol tables have changes and send one single
28089 MONO_DEBUGGER_EVENT_RELOAD_SYMTABS when releasing the lock.
28091 2004-04-14 Zoltan Varga <vargaz@freemail.hu>
28093 * metadata.h: Add STRARRAY_STRWLPARRAY marshalling convention.
28095 * marshal.h marshal.c (mono_marshal_string_array_to_unicode): New
28098 * marshal.c (mono_marshal_get_native_wrapper): Take CharSet into
28099 account when marshalling string arrays. Fixes #56965.
28101 2004-04-13 Sebastien Pouliot <sebastien@ximian.com>
28103 * icall.c: Add new icalls mapping for security.
28104 * security.c|h: Add internal calls for WindowsIdentity,
28105 WindowsImpersonationContext and WindowsPrincipal.
28107 2004-04-13 Gert Driesen (drieseng@users.sourceforge.net)
28109 * class.c: Added comment to ensure the System.MonoDummy class
28110 is removed when no longer necessary
28112 2004-04-13 Miguel de Icaza <miguel@ximian.com>
28114 * appdomain.c: Pass arguments to the bootstraping exceptions to
28115 minimize JITed methods at boot
28117 * metadata.c (mono_exception_from_name_two_strings): Allow for the
28118 second string to be null.
28120 * icall.c (ves_icall_System_Text_Encoding_InternalCodePage):
28121 Change the protocol to minimize the JIT methods at startup. Now
28122 it Returns the internal codepage, if the value of "int_code_page"
28123 is 1 at entry, and we can not compute a suitable code page
28124 number, returns the code page as a string.
28126 2004-04-13 Jackson Harper <jackson@ximian.com>
28128 * culture-info-tables.h: Fix number of decimal digits for all
28131 2004-04-13 Jackson Harper <jackson@ximian.com>
28133 * icall.c: Clairfy out of sync error message. It is not always
28134 your corlib that is out of sync.
28136 2004-04-13 Zoltan Varga <vargaz@freemail.hu>
28138 * icall.c (ves_icall_Type_GetPropertiesByName): Avoid duplicate
28139 properties when only the set accessor is overriden. Fixes #55874.
28141 2004-04-09 Zoltan Varga <vargaz@freemail.hu>
28143 * assembly.c (mono_assembly_load_references): Make this thread safe.
28146 2004-04-08 Zoltan Varga <vargaz@freemail.hu>
28148 * monosn.c: Add missing initialization calls.
28150 2004-04-08 Bernie Solomon <bernard@ugsolutions.com>
28153 ves_icall_System_Globalization_CultureInfo_construct_number_format
28154 Fix g_assert so it compiles on fussier compilers re int/ptr
28157 2004-04-08 Dick Porter <dick@ximian.com>
28160 * socket-io.c: Don't set SO_REUSEADDR on windows. Fixes bug
28161 53992. Also rearrange the code so that the internal calls return
28162 an error value and exceptions are thrown from managed code.
28164 * icall.c: Add type info to the socket icalls.
28166 2004-04-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28168 * object.h: synchronize MonoCompareInfo with CompareInfo class. Someone
28171 2004-04-07 Martin Baulig <martin@ximian.com>
28173 * class.c (mono_class_from_generic_parameter): Don't default
28174 `klass->parent' to `mono_defaults.object_type'.
28176 2004-04-07 Martin Baulig <martin@ximian.com>
28178 * reflection.c (mono_reflection_initialize_generic_parameter): Set
28179 `param->pklass->reflection_info'.
28181 2004-04-07 Jackson Harper <jackson@ximian.com>
28183 * culture-info-tables.h: Fix date separator symbol.
28185 2004-04-07 Martin Baulig <martin@ximian.com>
28187 * icall.c (ves_icall_Type_GetGenericArguments): Moved this icall
28188 from System.Type to System.MonoType.
28190 2004-04-07 Martin Baulig <martin@ximian.com>
28193 (MonoReflectionGenericParam): Added `has_reference_type' and
28194 `has_value_type' fields.
28196 * reflection.c (mono_image_get_generic_param_info): Encode the
28197 correct flags if we have the `class' or `struct' constraint.
28199 2004-04-07 Martin Baulig <martin@ximian.com>
28202 (MonoReflectionGenericParam): Added `MonoBoolean has_ctor_constraint'.
28204 2004-04-07 Jackson Harper <jackson@ximian.com>
28206 * appdomain.c: Revert extra patches, just wanted to bump the
28209 2004-04-07 Jackson Harper <jackson@ximian.com>
28211 * Makefile.am: Add culture-info private headers.
28212 * icall.c: Add new icalls for contructing locales.
28213 * locales.c: Construct CultureInfo objects from lookup tables instead of using ICU.
28214 * locales.h: Declare new culture info construction methods.
28215 * object.h: Add new fields used to avoid the CultureMap to
28217 * culture-info.h: Definition of structs used in the culture info
28219 * culture-info-tables.h: Autogenerated tables that contain culture
28220 info data. This file was generated with the locale-builder tool.
28221 * appdomain.c: Incement corlib version number.
28223 2004-04-07 Bernie Solomon <bernard@ugsolutions.com>
28225 * appdomain.c: (mono_runtime_init) move mono_thread_init
28226 to before mono_object_new calls so critical sections
28227 are initialized before use.
28229 2004-04-07 Martin Baulig <martin@ximian.com>
28232 (ves_icall_TypeBuilder_define_generic_parameter): Removed.
28233 (ves_icall_MethodBuilder_define_generic_parameter): Removed.
28234 (ves_icall_MonoGenericParam_initialize): Removed.
28235 (monogenericparam_icalls): Removed.
28236 (generictypeparambuilder_icalls): Added new table for
28237 System.Reflection.Emit.GenericTypeParameterBuilder.
28240 (mono_reflection_define_generic_parameter): Removed.
28241 (mono_reflection_initialize_generic_parameter): This is now called
28242 from GenericTypeParameterBuilder's .ctor.
28244 2004-04-06 Martin Baulig <martin@ximian.com>
28246 * class.c (mono_class_init): Don't inflate nested classes in a
28248 (mono_type_get_name_recurse): Include the generic arguments for
28249 generic instances and generic type declarations.
28250 (inflate_generic_type): Correctly inflate MONO_TYPE_SZARRAY.
28251 (_mono_class_get_instantiation_name): Removed.
28252 (mono_class_create_generic): Always use `gklass->name' as our name.
28254 * class.h (MonoGenericInst): Removed `nested_in', and `nested'.
28256 * icall.c (ves_icall_MonoGenericInst_GetDeclaringType): Removed.
28257 (ves_icall_MonoGenericInst_GetNestedTypes): Removed.
28258 (ves_icall_MonoMethod_GetGenericParameters): Renamed to
28259 ves_icall_MonoMethod_GetGenericArguments() and correctly handle
28260 closed generic methods here.
28263 (mono_reflection_generic_inst_get_nested_types): Removed.
28264 (inflate_mono_method): Copy the generic parameters from the
28265 MonoMethodHeader into out MonoGenericMethod.
28267 2004-04-06 Martin Baulig <martin@ximian.com>
28270 (MONO_GENERICPARAM_DEPRECATED_CONSTRAINT): Removed.
28272 * metadata.c (GenericParamSchema): Removed "DeprecatedConstraint".
28274 * reflection.c (build_compressed_metadata): If we have any entries
28275 in the GenericParam, MethodSpec or GenericParamConstraint tables,
28276 set the header version to 1.1.
28278 2004-04-06 Martin Baulig <martin@ximian.com>
28280 * class.c (mono_class_init): If we're a generic instance,
28281 initialize our nested classes, too.
28282 (_mono_class_get_instantiation_name): Deal with the new `!%d'
28285 2004-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28287 * process.c: quote the argument passed to the shell on windows.
28289 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
28291 * threads.c (mono_alloc_special_static_data): Allow this to be
28292 called during startup.
28294 2004-04-02 Martin Baulig <martin@ximian.com>
28297 (ves_icall_MonoGenericInst_GetDeclaringType): New icall.
28299 2004-04-02 Zoltan Varga <vargaz@freemail.hu>
28301 * icall.c: Fix build.
28303 2004-04-02 Sebastien Pouliot <sebastien@ximian.com>
28305 * Makefile.am: Added security.c|h.
28306 * icall.c: Added icall for get_UserName;
28307 * security.c: New file for security related icalls. Added function
28308 get_UserName for System.Environment (fix #56144).
28309 * security.h: New. Header file for security.c
28311 2004-04-02 Dick Porter <dick@ximian.com>
28313 * icall.c: Deleted the icalls that were obsoleted some time ago
28314 by the ICU string code, and which were mixed into the icall
28315 rearranging. Fixes bug 55969.
28318 * string-icalls.c: Deleted the code that those icalls reference.
28320 2004-04-01 Martin Baulig <martin@ximian.com>
28322 * metadata.h (MONO_CLASS_IS_INTERFACE): New macro.
28324 * class.c (mono_class_from_generic_parameter): Don't set
28325 TYPE_ATTRIBUTE_INTERFACE.
28326 (my_mono_class_from_generic_parameter): Likewise.
28328 2004-04-01 Martin Baulig <martin@ximian.com>
28330 * loader.c (find_method): Added an optional `MonoClass *ic'
28331 argument to search in a specific interface.
28332 (mono_get_method_constrained): New public function.
28334 2004-04-01 Martin Baulig <martin@ximian.com>
28336 * reflection.c (mono_image_get_generic_field_token): Use the
28337 `handleref' cache here.
28339 2004-04-01 Martin Baulig <martin@ximian.com>
28341 * reflection.h (MonoDynamicImage): Added `GHashTable *typespec'.
28343 * reflection.c (create_generic_typespec): Use the `typespec' hash
28344 here, not the `typeref' one.
28346 2004-04-01 Martin Baulig <martin@ximian.com>
28348 * class.c (mono_class_inflate_generic_type): Moved the
28349 functionality into a new static inflate_generic_type() which
28350 returns NULL if it didn't do anything. Only increment the
28351 `mono_stats.inflated_type_count' if we actually inflated
28353 (mono_class_get_full): Check the classes type to see whether we
28354 need to inflate it; also inflate MONO_TYPE_(M)VAR.
28356 2004-04-01 Jackson Harper <jackson@ximian.com>
28358 * reflection.c: Set culture for assembly references.
28360 2004-04-01 Ben Maurer <bmaurer@users.sourceforge.net>
28362 * reflection.[ch], icall.[ch], Fix support for pinning variables.
28364 2004-04-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28367 (do_mono_assembly_open): the critical section also covers
28368 mono_image_open and mono_image_open_from_data. Fixes bug #56327.
28370 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28373 (mono_manage_threads): abort the background threads when finishing.
28376 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28378 * gc.c: only close the done_event handle if there was no timeout.
28381 2004-03-30 Martin Baulig <martin@ximian.com>
28383 * icall.c (icall_entries): It's called "System.Activator", not
28384 "System.Activation".
28386 2004-03-30 Martin Baulig <martin@ximian.com>
28388 * class.c (mono_ldtoken): Added `MonoGenericContext *' argument.
28389 (mono_class_create_from_typespec): Likewise.
28391 2004-03-30 Martin Baulig <martin@ximian.com>
28393 * reflection.h (MonoReflectionGenericParam): Use MonoBoolean for
28394 `has_ctor_constraint' and `initialized'.
28396 2004-03-30 Martin Baulig <martin@ximian.com>
28398 * reflection.c (encode_new_constraint): New static function to add
28399 the constructor constraint attribute to a type parameter.
28400 (encode_constraints): Call encode_new_constraint() if necessary.
28403 (MonoReflectionGenericParam): Added `guint32 has_ctor_constraint'.
28405 * row-indexes.h: Added CUSTOM_ATTR_GENERICPAR.
28407 2004-03-29 Ben Maurer <bmaurer@users.sourceforge.net>
28409 * reflection.c, icall.c: add support for pinning variables.
28411 2004-03-29 Bernie Solomon <bernard@ugsolutions.com>
28413 * marshal.c (mono_marshal_get_managed_wrapper):
28414 init bool local with zero rather than null.
28416 2004-03-29 Martin Baulig <martin@ximian.com>
28418 * icall.c (ves_icall_MonoMethod_get_HasGenericParameters): Show
28419 the "official" behavior here.
28420 (ves_icall_MonoMethod_get_Mono_IsInflatedMethod): New interncall.
28422 2004-03-29 Martin Baulig <martin@ximian.com>
28424 * icall.c: Reflect latest API changes.
28426 2004-03-29 Martin Baulig <martin@ximian.com>
28428 * loader.c (mono_get_method_from_token): Also call
28429 mono_metadata_load_generic_params () for abstract and interface
28430 methods; replace the type arguments in the method signature with
28431 the ones which are loaded from the metadata.
28433 2004-03-29 Lluis Sanchez Gual <lluis@ximian.com>
28435 * monitor.c: In mono_monitor_exit(), don't throw an exception if the owner
28436 of the lock is not the current thread. MS.NET don't do it, in spite of
28437 what the documentation says. See bug #56157.
28439 2004-03-28 Martin Baulig <martin@ximian.com>
28441 * class.c (mono_class_init): Don't call init_properties() and
28442 init_events() for generic instances; set `prop->parent' when
28443 inflating properties.
28445 * reflection.c (mono_generic_inst_get_object): Call
28446 `mono_class_init (ginst->klass)'.
28447 (mono_type_get_object): Only create a MonoGenericInst if your
28448 generic type is a TypeBuilder.
28449 (do_mono_reflection_bind_generic_parameters): Only set
28450 `ginst->is_dynamic' if our generic type is a TypeBuilder.
28452 2004-03-28 Zoltan Varga <vargaz@freemail.hu>
28454 * appdomain.c (unload_thread_main): Do not clear proxy_vtable_hash.
28457 2004-03-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28459 * icall.c: added Kill_internal icall.
28460 * process.[ch]: added Kill_internal icall.
28462 2004-03-25 Martin Baulig <martin@ximian.com>
28464 * class.h (MonoStats): Added `generic_instance_count',
28465 `inflated_method_count', `inflated_type_count' and
28466 `generics_metadata_size'.
28468 2004-03-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28470 * reflection.c: no warnings now.
28472 2004-03-25 Martin Baulig <martin@ximian.com>
28474 * class.c (mono_class_get_full): New public function; does a
28475 mono_class_get(), but also takes a `MonoGenericContext *'.
28477 * loader.c (mono_field_from_memberref): Renamed to
28478 `field_from_memberref', made static and added `MonoGenericContext *'
28480 (mono_field_from_token): Added `MonoGenericInst *' argument.
28481 (method_from_memberef): Likewise.
28482 (mono_get_method_from_token): Likewise.
28483 (mono_get_method_full): New public function; does a
28484 mono_get_method(), but also takes a `MonoGenericContext *'.
28486 * verify.c (mono_method_verify): Get the method's generic context
28487 and pass it to mono_field_from_token(), mono_get_method_full() and
28488 mono_class_get_full().
28490 2004-03-25 Martin Baulig <martin@ximian.com>
28492 * class.c (mono_class_inflate_generic_type): Take a
28493 `MonoGenericContext *' instead of a `MonoGenericInst *' and a
28494 `MonoGenericMethod *'.
28496 2004-03-25 Martin Baulig <martin@ximian.com>
28498 * loader.h (MonoMethodInflated): Store the MonoGenericContext
28499 instead of the MonoGenericMethod here.
28501 2004-03-25 Martin Baulig <martin@ximian.com>
28503 * class.h (MonoGenericInst): Added `MonoGenericContext *context';
28504 each time we create a new MonoGenericInst, we also create a new
28505 context which points back to us.
28507 * class.c (inflate_method): Use `ginst->context' instead of
28508 creating a new context.
28510 * loader.c (method_from_memberref): Use
28511 `klass->generic_inst->context' instead of creating a new context.
28513 2004-03-25 Martin Baulig <martin@ximian.com>
28515 * class.h (MonoGenericContext): New struct.
28516 (MonoGenericMethod): Removed `generic_inst'.
28518 * class.c (mono_class_inflate_generic_method): Take a
28519 `MonoGenericContext *' instead of a `MonoGenericMethod *'.
28521 2004-03-25 Martin Baulig <martin@ximian.com>
28523 * loader.h (MonoMethodInflated): New typedef.
28525 * metadata.h (MonoMethodSignature): Removed `gen_method', make
28526 `generic_param_count' consume just 30 bits, added `is_inflated'
28527 and `has_type_parameters' flags (one bit each).
28529 * class.c (mono_class_inflate_generic_method): Create a
28530 MonoMethodInflated instead of a MonoMethodNormal and set
28531 `is_inflated' in the method signature.
28533 * class.h (MonoGenericMethod): Removed `generic_method'.
28535 2004-03-25 Lluis Sanchez Gual <lluis@ximian.com>
28537 * image.c: Make sure the name of a MonoImage is always an absolute path.
28538 This fixes bug #54415.
28540 2004-03-24 Martin Baulig <martin@ximian.com>
28542 * class.c (mono_class_setup_vtable): If we're a generic instance,
28543 use our generic type's vtable size.
28545 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
28547 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Add
28548 MONO_NO_UNLOAD env var as a temporary workaround for unloading
28551 2004-03-23 Martin Baulig <martin@ximian.com>
28553 * class.h (MonoDynamicGenericInst): Added `int count_events' and
28554 `MonoEvent *events'.
28556 * icall.c (ves_icall_MonoGenericInst_GetEvents): New interncall.
28557 (typebuilder_icalls): Added "get_event_info"; calls
28558 mono_reflection_event_builder_get_event_info().
28560 * reflection.c (mono_reflection_generic_inst_initialize): Added
28561 `MonoArray *events'.
28562 (mono_reflection_event_builder_get_event_info): New function.
28564 2004-03-23 Bernie Solomon <bernard@ugsolutions.com>
28566 * object.h: add mono_type_initialization_init
28568 * object.c (mono_runtime_class_init):
28569 implement class constructor synchronization rules
28570 to cope with threading issues.
28571 add mono_type_initialization_init
28573 * appdomain.c (mono_runtime_init): call
28574 mono_type_initialization_init
28576 * class.h: removing initializing field from MonoVTable
28578 2004-03-23 Martin Baulig <martin@ximian.com>
28580 * class.c (my_mono_class_from_generic_parameter): Use
28581 `param->name' if it's not NULL.
28583 2004-03-22 Ben Maurer <bmaurer@users.sourceforge.net>
28585 * class.c: do not insert non-virtual methods in the vtable.
28586 * icall.c, mono-debug-debugger.c, object.c: if method->slot == -1,
28587 that means the method is non-virtual. This never would have
28590 2004-03-22 Lluis Sanchez Gual <lluis@ximian.com>
28592 * profiler.c: Added lock for accessing coverage_hash.
28594 2004-03-22 Martin Baulig <martin@ximian.com>
28596 * icall.c (ves_icall_MethodInfo_get_IsGenericMethod): Use
28597 `method->method->signature->generic_param_count != 0' to make it
28598 work for interface methods.
28600 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28602 * process.c: quote the string passed to the shell using g_shell_quote.
28604 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28607 (mono_threads_manage): don't remove the finalizer thread and self
28608 from the threads hash table so that mono_thread_manage can be called
28611 2004-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28613 * process.c: quote the arguments when UseShellExecute is true. Fixes
28616 2004-03-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28618 * threads.c: set mono_thread_detach as a cleanup routine for every
28619 thread. This way it's always executed upon thread termination, either
28620 aborted or finished normally. No more xsp hangs!
28622 2004-03-17 Martin Baulig <martin@ximian.com>
28624 * class.h (MonoGenericInst): Replaced the `GList *nested' with an
28625 `int count_nested' and a `MonoType **nested'.
28627 * reflection.c (mono_reflection_bind_generic_parameters): Moved
28628 most of the functionality into a new static
28629 do_mono_reflection_bind_generic_parameters() and don't take a
28630 `MonoType *nested_in' argument any more. Don't compute nested
28632 (mono_reflection_generic_inst_get_nested_types): New public method
28633 to get nested types.
28635 * class.c (mono_class_create_generic): Set `klass->nested_in' if
28636 we're a nested class.
28638 * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): Call
28639 mono_reflection_generic_inst_get_nested_types() to compute the
28642 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
28644 * threads.c (ves_icall_System_Threading_Thread_Abort): Add a more
28645 descriptive error message under windows.
28647 2004-03-17 Martin Baulig <martin@ximian.com>
28649 * class.c (dup_type): Added `const MonoType *original' argument;
28650 copy the attrs from the original type.
28652 2004-03-17 Martin Baulig <martin@ximian.com>
28654 * metadata.c (do_mono_metadata_parse_generic_inst): Use the
28655 `m->generic_inst_cache' here.
28657 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
28659 * exception.h exception.c: Add stack_overflow_exception.
28661 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28664 (overlapped_callback): call SetEvent *after* invoking the callback.
28665 No need to call CloseHandle.
28667 2004-03-16 Martin Baulig <martin@ximian.com>
28669 * reflection.c (mono_image_get_fieldref_token): Take a
28670 `MonoReflectionField *' instead of a `MonoClassField *' and a
28671 `MonoClass *'; store the `MonoReflectionField *' in the hash.
28673 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28675 * appdomain.c: don't add the culture to the filename we're looking for
28676 if it's neutral or NULL. Fixes bug #53788. Removed redundant memset.
28678 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28680 * locales.c: don't ignore symbols when doing case insensitive compares.
28681 Thanks Dick! Fixes bug #54046.
28683 * threads.c: surround 'threads' usage with enter/leave in
28684 mono_thread_manage.
28686 2004-03-16 Zoltan Varga <vargaz@freemail.hu>
28688 * marshal.c (mono_marshal_get_native_wrapper): Char arrays are
28689 implicitly marshalled as [Out]. Fixes #55450.
28691 (mono_marshal_get_runtime_invoke): Zero out the result if there is
28694 2004-03-16 Martin Baulig <martin@ximian.com>
28696 * class.c (mono_class_from_generic_parameter): Use the actual
28699 2004-03-16 Martin Baulig <martin@ximian.com>
28701 * reflection.c (type_get_signature_size): New static function.
28702 Compues the size of the type in a method signature.
28703 (method_get_signature_size): New static function; calls
28704 type_get_signature_size() to compute the actual size of the
28705 method's signature.
28706 (method_encode_signature): Use method_get_signature_size() to get
28707 the signature's size rather than using `nparams * 10'.
28709 2004-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28711 * file-io.h: define here WapiOverlapped on windows. I don't want the
28712 regular OVERLAPPED one.
28715 * threadpool.c: somehow, BindIoCompletionCallback is not found.
28716 Disabling AIO on windows.
28718 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28720 * marshal.c: Marshal.SizeOf throws an exception for AutoLayout. Fixes
28723 2004-03-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28725 * appdomain.c: upgraded corlib version.
28727 * file-io.c: implemented new icalls: GetSupportsAIO, BeginRead
28728 and BeginWrite. Allow opening files for asynchrnous operations.
28730 * file-io.h: new struct that maps FileStreamAsyncResult.
28731 * icall.c: added new icalls.
28732 * process.[ch]: support setting child process environment variables
28733 and use the SHELL or COMSPEC when UseShellExecute is true.
28735 * threadpool.[ch]: fixed warnings, moved ThreadPool icalls here. The
28736 callback for async. IO is here and also BindHandle.
28738 * threads.[ch]: added mono_thread_detach and removed ThreadPool icalls
28741 2004-03-14 Zoltan Varga <vargaz@freemail.hu>
28743 * reflection.c (create_custom_attr): Allow len == 0.
28745 * object.c (mono_class_compute_gc_descriptor): Fix descriptor
28746 computation on big-endian machines.
28748 2004-03-13 Martin Baulig <martin@ximian.com>
28750 * class.h (MonoGenericInst): Added `int count_ifaces'.
28752 * iclass.c (ves_icall_MonoGenericInst_GetInterfaces): Use
28753 `ginst->count_ifaces' instead `klass->interface_count' since we
28754 may get called before the vtable is created.
28756 * loader.c (mono_method_get_param_names): If we're a generic
28757 instance, return and don't initialize the class.
28759 * reflection.c (mono_reflection_setup_generic_class): Don't call
28760 ensure_runtime_vtable().
28761 (mono_reflection_bind_generic_parameters): Set
28762 `ginst->count_ifaces'.
28764 2004-03-11 Jackson Harper <jackson@ximian.com>
28768 * unicode.h: Remove unused System.Char icalls.
28770 2004-03-11 Miguel de Icaza <miguel@ximian.com>
28772 * loader.c (mono_lookup_pinvoke_call): Call the Windows.Forms init
28773 code when we P/Invoke the first library in Windows.Forms, instead
28774 of when we first open the assembly.
28776 * assembly.c: Drop the lookup from here.
28778 2004-03-10 Martin Baulig <martin@ximian.com>
28780 * reflection.c (mono_reflection_get_custom_attrs): Use the correct
28781 class for properties, fields and events. Finally fixes #54945.
28783 2004-03-10 Martin Baulig <martin@ximian.com>
28785 * metadata.c (mono_metadata_class_equal): New static function;
28786 checks whether two generic instances or two generic parameters are
28788 (mono_metadata_type_equal): Use mono_metadata_class_equal() to
28791 2004-03-10 Martin Baulig <martin@ximian.com>
28793 * class.h (MonoGenericMethod): Added `gpointer reflection_info'.
28795 * reflection.c (inflate_mono_method): Added `MonoObject *obj'
28796 argument and write it into the `reflection_info' field.
28799 (ves_icall_MethodBase_GetGenericMethodDefinition): New interncall.
28800 (ves_icall_MethodBase_get_HasGenericParameters): New interncall.
28802 2004-03-09 Jackson Harper <jackson@ximian.com>
28804 * char-conversions.h: use 8 bits for numeric data its all we need
28805 * icall.c: numeric data is only 8 bits now.
28807 2004-03-09 Martin Baulig <martin@ximian.com>
28809 * class.h (MonoProperty, MonoEvent): Added `MonoClass *parent'.
28811 * class.c (init_properties, init_events): Initialize the new
28814 * reflection.c (typebuilder_setup_properties): Likewise.
28815 (typebuilder_setup_events): Likewise.
28817 * reflection.h (MonoEventInfo): Replaced `parent with
28818 `declaring_type' and `reflected_type'.
28820 * icall.c (ves_icall_get_property_info): Distinguish between
28821 declaring and reflected type.
28822 (ves_icall_get_event_info): Likewise.
28824 2004-03-09 Martin Baulig <martin@ximian.com>
28826 * icall.c (ves_icall_Type_GetTypeCode): Added MONO_TYPE_GENERICINST.
28827 (ves_icall_Type_GetField): Correctly set field->klass.
28829 2004-03-09 Zoltan Varga <vargaz@freemail.hu>
28831 * loader.h: Fix warning.
28833 2004-03-08 Miguel de Icaza <miguel@ximian.com>
28835 * loader.c, loader.h (mono_loader_wine_init): Loads the Wine/Lib
28836 library routine if present. Notice that it will still continue
28837 executing even if its missing, for those working on the Gtk#
28838 edition of Windows.Forms.
28840 * assembly.c (do_mono_assembly_open): If loading the
28841 System.Windows.Forms call mono_loader_wini_init.
28843 2004-03-04 Lluis Sanchez Gual <lluis@ximian.com>
28845 * class.h: Added MonoRemoteClass struct.
28846 * domain.c: Changed hash function for proxy_vtable_hash. It now uses a
28847 function for MonoStrings.
28848 * icall.c: In GetTransparentProxy, assign a MonoRemoteClass to the proxy.
28849 Added internal call for getting the proxy type.
28850 * marshal.c: Get the type of transparent proxies from its remote_class.
28851 Added methods that generate the IL for type checks and casts:
28852 mono_marshal_get_isinst, mono_marshal_get_castclass,
28853 mono_marshal_get_proxy_cancast.
28854 * marshal.h: Declaration of the previous new methods.
28855 * object.c: Added new moethods for creating and updating MonoRemoteClass
28856 instances: mono_remote_class, mono_upgrade_remote_class,
28857 * object.h: Added MonoRemoteClass reference in MonoTransparentProxy.
28858 * verify.c: FIx transparent_proxy_fields layout.
28859 * appdomain.c: Bump corlib version.
28861 2004-03-04 Jackson Harper <jackson@ximian.com>
28863 * icall.c: Add icall to access char conversion tables.
28864 * char-conversions.h: Character conversion tables.
28865 * Makefile.am: Add char-conversions.h private header file.
28867 2004-03-04 Zoltan Varga <vargaz@freemail.hu>
28869 * appdomain.c (unload_thread_main): Increase unloading timeout to
28870 10 sec as a temporary workaround for Nant problems.
28872 2004-02-29 Zoltan Varga <vargaz@freemail.hu>
28874 * gc.c: Add checks for GC_enable and GC_disable.
28876 * string-icalls.c locales.c: Applied patch from Jaroslaw Kowalski
28877 (jaak@zd.com.pl). Fix memory corruption in String.Replace
28880 2004-02-27 Martin Baulig <martin@ximian.com>
28882 * reflection.c (mono_reflection_bind_generic_parameters): Take a
28883 `MonoReflectionType *' instead of a `MonoType *'.
28885 2004-02-26 Zoltan Varga <vargaz@freemail.hu>
28887 * gc.c (run_finalize): Avoid finalizing the object representing the
28889 (finalizer_thread): Fix warning.
28891 2004-02-25 Martin Baulig <martin@ximian.com>
28893 * class.c (_mono_class_get_instantiation_name): Added `int offset'
28894 argument for nested types.
28895 (mono_class_create_generic): Added support for nested generictypes.
28897 * class.h (MonoGenericInst): Added `MonoType *nested_in' and
28900 * icall.c (ves_icall_MonoGenericInst_GetNestedTypes): New icall.
28902 * reflection.c (method_encode_signature): Increase the minimum
28903 value of `size' from 10 to 11.
28904 (mono_reflection_bind_generic_parameters): Take `int type_argc'
28905 and `MonoType **types' arguments instead of the `MonoArray
28906 *types'; added `MonoType *nested_in'. Recursively instantiate
28909 2004-02-23 Zoltan Varga <vargaz@freemail.hu>
28911 * appdomain.h (MonoDomain): Add preallocated null_reference_ex and
28912 stack_overflow_ex members which are used by exception handling.
28914 * appdomain.c (mono_runtime_init): Initialize the new members.
28916 * gc.c (mono_gc_enable): New helper function.
28917 * gc.c (mono_gc_disable): New helper function.
28919 2004-02-23 Martin Baulig <martin@ximian.com>
28921 * icall.c: I must have been really stupid - make it actually work
28924 2004-02-23 Martin Baulig <martin@ximian.com>
28926 * loader.c (method_from_memberref): Only inflate the method if
28927 it's in another klass.
28929 2004-02-23 Martin Baulig <martin@ximian.com>
28931 * class.c (mono_class_inflate_generic_type): Fixed two bugs.
28932 (mono_class_init): If we're a generic instance and an interface,
28933 compute `class->interface_id'; also create `class->interfaces'
28934 here and inflate them.
28936 * metadata.c (do_mono_metadata_parse_generic_inst): Compute
28938 (mono_type_stack_size): Fix for MONO_TYPE_GENERICINST.
28940 * reflection.c (mono_image_create_token): Allow "MonoGenericInst".
28942 2004-02-15 Miguel de Icaza <miguel@ximian.com>
28944 * reflection.c (method_encode_code): Improved the error message
28945 generated by the exception.
28947 2004-02-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
28949 * icall.c: Martin did not do what he said in the ChangeLog for
28950 2004-02-18, but put back the changes for properties and events.
28951 Commenting those changes out again and adding comment to bug #54518.
28953 * process.c: removed warning.
28955 2004-02-20 Zoltan Varga <vargaz@freemail.hu>
28957 * marshal.c (emit_struct_conv): Print an error message instead of
28958 asserting when a type does not have the StructLayout attribute.
28960 2004-02-20 Martin Baulig <martin@ximian.com>
28962 * reflection.c (mono_type_get_object): Also use the cache for
28964 (mono_reflection_bind_generic_parameters): Always compute
28967 2004-02-20 Martin Baulig <martin@ximian.com>
28969 * class.h (MonoGenericMethod): Removed `klass'.
28971 * class.c (mono_class_inflate_generic_method): Added `MonoClass
28974 2004-02-20 Martin Baulig <martin@ximian.com>
28976 * reflection.c (method_encode_methodspec): Actually use the
28977 uninflated signature for the memberref.
28979 2004-02-20 Martin Baulig <martin@ximian.com>
28981 * class.h (MonoGenericMethod): Removed `declaring'.
28983 * class.c (mono_class_inflate_generic_method): If `gmethod->klass'
28984 is NULL, compute it here.
28986 2004-02-20 Martin Baulig <martin@ximian.com>
28988 * image.h (MonoImage): Added `GHashTable *generic_inst_cache'.
28990 * metadata.c (mono_metadata_generic_inst_hash): New method.
28991 (mono_metadata_generic_inst_equal): New method.
28993 * reflection.c (mono_reflection_bind_generic_parameters): Use the
28994 `klass->image->generic_inst_cache' cache to avoid creating
28995 duplicate MonoGenericInst's.
28997 * class.c (mono_class_inflate_generic_type): Use the cache.
28999 Thu Feb 19 19:39:09 CET 2004 Paolo Molaro <lupus@ximian.com>
29001 * object.c: fixed gc descriptor calculation for embedded valuetypes.
29003 2004-02-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29005 * icall.c: added Socket.WSAIoctl icall.
29007 * socket-io.[ch]: implemented
29008 ves_icall_System_Net_Sockets_Socket_WSAIoctl.
29010 2004-02-19 Atsushi Enomoto <atsushi@ximian.com>
29012 * icall.c: removed IsDigit, IsSeparator, IsWhiteSpace from char_icalls.
29014 2004-02-18 Urs C Muff <umuff@quark.com>
29016 * debug-mono-symfile.c, mono-debug-debugger.c, mono-debug.c: Make
29017 this work on PPC and other big-endian architectures.
29019 * debug-mono-symfile.h: Prepended the names of all the `guint32'
29020 fields with an underscore to make sure they're only accessed by
29021 the read32() macro.
29023 2004-02-18 Martin Baulig <martin@ximian.com>
29025 * icall.c: Put the klass->refclass changes back for methods and
29026 fields, but not for properties and events. We're currently not
29027 distinguishing between DeclaringType and ReflectedType for
29028 properties and events, that's what caused the regressions.
29030 2004-02-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29033 (mono_async_result_new): the handle can be NULL.
29035 * threadpool.c: Use an event instead of a semaphore, don't initialize
29036 it until needed. This saves quite a few semaphores from being created
29037 when using the threadpool.
29039 2004-02-18 Zoltan Varga <vargaz@freemail.hu>
29041 * object.c (mono_string_is_interned_lookup): Fix interning of long
29042 strings. Fixes #54473.
29044 * domain.c (ldstr_equal): Optimize if the two strings are equal.
29046 * icall.c: Revert the klass->refclass changes since they introduce
29047 regressions (bug #54518).
29049 2004-02-18 Martin Baulig <martin@ximian.com>
29051 * class.c (mono_class_init): If we're a generic instance and don't
29052 come from a TypeBuilder, inflate our members here.
29053 (mono_class_from_generic): Removed; just use `ginst->klass' instead.
29054 (mono_class_create_generic): New public method.
29055 (mono_class_initialize_generic): Removed.
29056 (get_instantiation_name): Renamed to
29057 _mono_class_get_instantiation_name() and made it public.
29059 2004-02-18 Martin Baulig <martin@ximian.com>
29061 * class.c (mono_class_inflate_generic_type): Clear the new
29062 instance's `nginst->klass' when inflating a generic instance.
29063 (mono_class_is_subclass_of): Added (basic) support for generic
29066 Tue Feb 17 21:40:16 CET 2004 Paolo Molaro <lupus@ximian.com>
29068 * appdomain.h, domain.c: use a MonoCodeManager instead of a
29069 MonoMempool to hold compiled native code.
29071 2004-02-17 Martin Baulig <martin@ximian.com>
29073 * class.h (MonoDynamicGenericInst): Added `count_properties' and
29076 * reflection.c (mono_reflection_generic_inst_initialize): Added
29077 `MonoArray *properties' argument.
29079 * icall.c (ves_icall_MonoGenericInst_GetProperties): New interncall.
29081 2004-02-17 Martin Baulig <martin@ximian.com>
29083 * icall.c (ves_icall_Type_GetFields): Renamed to
29084 ves_icall_Type_GetFields_internal() and added a
29085 `MonoReflectionType *rtype' argument; pass it to
29086 mono_field_get_object() to set the field's "reflected" type.
29087 (ves_icall_Type_GetConstructors): Likewise.
29088 (ves_icall_Type_GetEvents): Likewise.
29089 (ves_icall_Type_GetMethodsByName): Added `MonoReflectionType *rtype'
29090 argument; pass it to mono_method_get_object() to set the method's
29093 2004-02-17 Martin Baulig <martin@ximian.com>
29095 * class.h (MonoDynamicGenericInst): New type.
29096 (MonoGenericInst): Added `dynamic_info' and `is_dynamic' fields.
29098 * icall.c (ves_icall_MonoGenericInst_GetMethods): New interncall.
29099 (ves_icall_MonoGenericInst_GetConstructors): New interncall.
29100 (ves_icall_MonoGenericInst_GetFields): New interncall.
29102 * class.c (mono_class_from_generic): Don't call
29103 mono_class_initialize_generic() if this is a dynamic instance;
29104 ie. it's being created from a TypeBuilder.
29105 Use MONO_TYPE_GENERICINST for `class->this_arg.type' and
29106 `class->byval_arg.type'.
29108 * reflection.c (mono_reflection_inflate_method_or_ctor): Renamed
29109 to `inflate_method' and made static.
29110 (mono_reflection_inflate_field): Removed.
29111 (mono_reflection_generic_inst_initialize): New public method.
29113 * reflection.h (MonoReflectionGenericInst): Removed `methods',
29114 `ctors' and `fields'; added `initialized'.
29116 2004-02-14 Zoltan Varga <vargaz@freemail.hu>
29118 * debug-helpers.c (mono_method_full_name): Fix output for empty
29121 2004-02-12 Martin Baulig <martin@ximian.com>
29123 * class.h (MonoClassField): Added `MonoType *generic_type'.
29125 * reflection.c (mono_image_get_fieldref_token): Added support for
29126 instantiated generic types.
29127 (field_encode_inflated_field): Removed.
29128 (mono_image_get_inflated_field_token): Removed.
29129 (mono_reflection_inflate_field): Return a `MonoReflectionField *'.
29131 * reflection.h (MonoReflectionInflatedField): Removed.
29133 2004-02-12 Martin Baulig <martin@ximian.com>
29135 * metadata.h (MonoMethodHeader, MonoMethodSignature): Moved the
29136 `gen_method' field from MonoMethodHeader to MonoMethodSignature.
29138 * reflection.c (mono_image_get_methodspec_token): Take a
29139 `MonoMethod *' instead of a `MonoReflectionInflatedMethod *'.
29140 (mono_image_create_token): Check whether we have a
29141 `method->signature->gen_method' and call
29142 mono_image_get_methodspec_token() if appropriate.
29143 (inflated_method_get_object): Removed.
29144 (mono_reflection_bind_generic_method_parameters): Return a
29145 `MonoReflectionMethod *', not a `MonoReflectionInflatedMethod *'.
29146 (mono_reflection_inflate_method_or_ctor): Likewise.
29148 * reflection.h (MonoReflectionInflatedMethod): Removed.
29150 2004-02-12 Zoltan Varga <vargaz@freemail.hu>
29152 * marshal.c (mono_marshal_get_native_wrapper): Implement proper support
29153 for custom valuetype marshalling.
29155 * icall.c (icall_entries): Diagnostic -> Diagnostics. Fixes #54261.
29157 2004-02-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29159 * icall.c: fixed WSAGetLastError_internal name.
29161 2004-02-11 Zoltan Varga <vargaz@freemail.hu>
29163 * threads.c (mono_thread_attach): Allow this to be called multiple
29164 times for a thread.
29166 * threads.c (build_wait_tids): Do not wait for ourselves.
29168 * threads.c (mono_thread_pop_appdomain_ref): Avoid crash if the
29169 appdomain list is empty.
29171 * marshal.c (mono_marshal_get_native_wrapper): Do not free the
29172 memory returned by mono_string_builder_to_utf16, since it points into
29173 managed memory. Thanks to Bernie Solomon for noticing this.
29175 * icall.c: Add AppDomainSetup icalls.
29177 * reflection.h (MonoReflectionMethodAux): Add 'param_cattr' field.
29179 * reflection.c (mono_custom_attrs_from_param): Add support for dynamic
29182 * reflection.c (reflection_methodbuilder_to_mono_method): Save
29183 custom attributes to the method_aux struct. Also fix array indexes etc.
29185 * loader.c (mono_method_get_param_names): Make dynamic case work again.
29187 Tue Feb 10 17:03:04 CET 2004 Paolo Molaro <lupus@ximian.com>
29189 * icall.c, loader.c: icall cleanup: we save quite a bit of memory
29190 (both static and runtime) and reduce startup time.
29192 2004-02-10 Zoltan Varga <vargaz@freemail.hu>
29194 * marshal.c (mono_marshal_get_native_wrapper): Throw an exception on
29195 AsAny marshalling conversion instead of crashing.
29197 * marshal.c: Fix warnings.
29199 2004-02-09 Martin Baulig <martin@ximian.com>
29201 * class.h (MonoGenericMethod): Added `MonoMethod *declaring'.
29203 * reflection.h (MonoReflectionInflatedMethod): Removed the
29204 `declaring' field, it's now in the unmanaged MonoGenericMethod.
29206 * reflection.c (method_encode_methodspec): Removed the `method'
29207 argument; we get it from `gmethod->declaring'.
29208 (inflated_method_get_object): Removed the `declaring' argument.
29210 2004-02-09 Martin Baulig <martin@ximian.com>
29212 * class.h (MonoGenericMethod): New type.
29213 (MonoGenericInst): Remove `mtype_argc', `mtype_argv' and
29216 * metadata.h (MonoMethodHeader): Replaced the `geninst' field with
29217 a `MonoGenericMethod *gen_method' one.
29219 * class.c (mono_class_inflate_generic_type): Take an additional
29220 `MonoGenericMethod * argument. This is only non-NULL if we're
29221 inflating types for a generic method.
29222 (mono_class_inflate_generic_signature): Renamed to
29223 inflate_generic_signature() and made static; take a
29224 `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29225 (inflate_generic_header): Take a `MonoGenericMethod *' argument
29226 instead of a `MonoGenericInst *' one.
29227 (mono_class_inflate_generic_method): Likewise.
29229 * reflection.c (encode_generic_method_sig): Take a
29230 `MonoGenericMethod *' argument instead of a `MonoGenericInst *'.
29231 (method_encode_methodspec): Likewise.
29232 (inflated_method_get_object): Likewise.
29234 * reflection.h (MonoReflectionGenericInst): Replaced the `ginst'
29235 field with a `MonoGenericMethod *gmethod' one.
29237 2004-02-08 Bernie Solomon <bernard@ugsolutions.com>
29239 * class.h (mono_class_has_parent): add parens to expansion
29242 2004-02-08 Martin Baulig <martin@ximian.com>
29244 * image.h (MonoImage): Removed `generics_cache'.
29246 * class.c (mono_class_from_generic): Take a `MonoGenericInst *'
29247 instead of a `MonoType *' argument; removed the `inflate_methods'
29248 argument. Don't inflate methods here.
29250 * loader.c (find_method): If it's a generic instance, call
29251 mono_class_init() on the `sclass->generic_inst->generic_type'.
29253 * metadata.c (mono_type_size): Make this work on uninitialized
29254 generic instances; call it on the `ginst->generic_type's class.
29256 * reflection.c (mono_reflection_bind_generic_parameters): Call
29257 mono_class_from_generic() to create the `ginst->klass'.
29259 2004-02-08 Martin Baulig <martin@ximian.com>
29261 * class.h (MonoClass): Changed type of `generic_inst' from
29262 `MonoType *' to `MonoGenericInst *'.
29264 2004-02-08 Martin Baulig <martin@ximian.com>
29266 * icall.c (ves_icall_Type_BindGenericParameters): Just call
29267 mono_type_get_object(), this is now creating a `MonoGenericInst'
29268 for MONO_TYPE_GENERICINST.
29269 (ves_icall_MonoGenericInst_GetParentType): Likewise.
29270 (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29272 * reflection.c (mono_type_get_object): Return a `MonoGenericInst'
29273 instead instead of a `MonoType' for MONO_TYPE_GENERICINST.
29274 (inflated_method_get_object): Added `MonoClass *refclass' argument.
29275 (mono_reflection_inflate_method_or_ctor): Correctly set declaring
29276 and reflected type.
29278 * reflection.h (MonoReflectionInflatedMethod): Removed
29279 `declaring_type' and `reflected_type'.
29281 2004-02-08 Martin Baulig <martin@ximian.com>
29283 * class.h (MonoGenericInst): Added `MonoType *parent' and
29284 `MonoType **ifaces'.
29286 * reflection.h (MonoReflectionGenericInst): Removed `klass',
29287 `parent' and `interfaces'.
29289 * reflection.c (mono_reflection_bind_generic_parameters): Take a
29290 `MonoType *' argument and return a `MonoType *'.
29293 (ves_icall_MonoGenericInst_GetParentType): New interncall.
29294 (ves_icall_MonoGenericInst_GetInterfaces): Likewise.
29296 2004-02-06 Zoltan Varga <vargaz@freemail.hu>
29298 * marshal.c (mono_marshal_get_native_wrapper): Add support for custom
29299 valuetype marshalling.
29301 2004-02-06 Martin Baulig <martin@ximian.com>
29304 (mono_class_from_generic_parameter): Added TYPE_ATTRIBUTE_PUBLIC.
29305 (my_mono_class_from_generic_parameter): Likewise.
29307 2004-02-06 Zoltan Varga <vargaz@freemail.hu>
29309 * debug-mono-symfile.c debug-mono-symfile.h mono-debug.c: Read the
29310 contents of the symbol files lazily.
29312 * object.h (MonoThread): Add 'name' and 'name_len' fields.
29314 * threads.h threads.c icall.c: New icalls for getting and setting the
29317 2004-02-05 Zoltan Varga <vargaz@freemail.hu>
29319 * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRefByID):
29320 Raise an exception when the domain is not found.
29322 2004-02-03 Martin Baulig <martin@ximian.com>
29324 * reflection.c (mono_image_get_methodspec_token): Use the
29325 uninflated signature; fixes gen-33.
29327 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
29329 * gc.c threads.c: Make the finalizer thread a normal managed thread so
29330 the finalizer code can use thread functionality.
29332 * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Fix check for
29333 the finalizer thread.
29335 * threads.c: Make some functions more robust.
29337 * loader.c (mono_lookup_pinvoke_call): Another attempt at fixing #22532.
29339 * metadata.h: Add new marshalling conventions.
29341 * marshal.c (mono_marshal_get_native_wrapper): Add support for unicode
29342 stringbuilder marshalling. Fixes #53700.
29344 * reflection.h (MonoReflectionTypeBuilder): Add 'permissions' field.
29346 * reflection.c (mono_image_get_type_info): Save declarative security
29349 * reflection.c (mono_image_get_field_info): Handle uninitialized
29350 unmanaged fields as well.
29352 * appdomain.c: Bump corlib version.
29354 2004-02-01 Martin Baulig <martin@ximian.com>
29356 * loader.c (method_from_methodspec): Use `ginst->mtype_argc/v' for
29357 method type arguments.
29359 2004-01-30 Duncan Mak <duncan@ximian.com>
29361 * marshal.h: Add prototype for
29362 "ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem"
29364 "ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem" to
29367 2004-01-30 Zoltan Varga <vargaz@freemail.hu>
29369 * marshal.c (ves_icall_System_Runtime_InteropServices_Marshal_AllocCoTaskMem): New icall.
29370 (ves_icall_System_Runtime_InteropServices_Marshal_FreeCoTaskMem): New icall.
29372 2004-01-29 Zoltan Varga <vargaz@freemail.hu>
29374 * marshal.c (mono_marshal_get_native_wrapper): Add support for
29375 custom marshalling of valuetypes.
29377 * marshal.c: Fix some warnings.
29379 2004-01-29 Martin Baulig <martin@ximian.com>
29381 * class.h (MonoGenericInst): Added `mtype_argc' and `mtype_argv'
29382 for generic method parameters.
29384 * reflection.c (method_encode_methodspec): Write the uninflated
29385 signature into the methodspec table.
29386 (mono_reflection_inflate_method_or_ctor): Ensure `res->declaring'
29387 is always the uninflated method.
29388 (reflection_methodbuilder_to_mono_method): Copy the generic
29389 parameters from the MethodBuilder into `header->gen_params'.
29391 2004-01-29 Zoltan Varga <vargaz@freemail.hu>
29393 * class.c (mono_class_from_generic_parameter): Fix warning.
29395 2004-01-27 Martin Baulig <martin@ximian.com>
29397 * class.c (mono_class_from_generic_parameter): Don't create
29398 `klass->methods' here.
29400 2004-01-26 Zoltan Varga <vargaz@freemail.hu>
29402 * loader.c (mono_lookup_pinvoke_call): Disable trimming of .dll
29403 extension since it does not work with libraries named lib<FOO>.dll.so.
29405 2004-01-25 Martin Baulig <martin@ximian.com>
29407 * class.c (mono_class_inflate_generic_type): Added support for
29408 MONO_TYPE_GENERICINST.
29410 * reflection.c (mono_reflection_inflate_method_or_ctor): Also
29411 inflate methods on open constructed types.
29413 2004-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29415 * object.c: fire ProcessExit event in the root AppDomain after running
29416 Main. Fixes bug #53299.
29418 Fri Jan 23 21:27:40 CET 2004 Paolo Molaro <lupus@ximian.com>
29420 * socket-io.c: include the new socket-wrappers.h header.
29421 Use the wrappers instead of the unix socket functions to make the code
29424 2004-01-23 Zoltan Varga <vargaz@freemail.hu>
29426 * profiler.c (merge_methods): Fix merging of profile info. Fixes #53010.
29428 * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29431 2004-01-22 Zoltan Varga <vargaz@freemail.hu>
29433 * reflection.c (mono_image_create_pefile): Handle the case when the
29434 entry point is not a MethodBuilder.
29436 * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29437 field to ReflectionMethod since it is not allways a builder.
29439 * reflection.c (type_get_fully_qualified_name): New helper function to
29440 return the fully qualified name of a type.
29442 * reflection.c (encode_marshal_blob): Always emit the fully qualified
29443 type name for custom marshallers.
29445 * reflection.c (mono_marshal_spec_from_builder): Ditto.
29447 * class.c (mono_class_setup_vtable): If a parent class already
29448 implements an interface, use the implementing methods from that class.
29451 2004-01-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29453 * threadpool.c: just return instead of ExitThread to allow for thread
29456 2004-01-21 Zoltan Varga <vargaz@freemail.hu>
29458 * icall.c (ves_icall_System_Reflection_Module_Close): Prevent assertion
29459 when closing resource modules.
29461 * reflection.c (mono_image_create_pefile): Handle the case when the
29462 entry point is not a MethodBuilder.
29464 * reflection.h (MonoReflectionAssemblyBuilder): Change 'entry_point'
29465 field to ReflectionMethod since it is not allways a builder.
29467 2004-01-20 Bernie Solomon <bernard@ugsolutions.com>
29469 * marshal.c (mono_marshal_get_managed_wrapper):
29470 mono_marshal_alloc takes native int so CONV_I
29471 the arg for 64bits.
29473 2004-01-20 Zoltan Varga <vargaz@freemail.hu>
29475 * reflection.c (fixup_cattrs): New function to fixup the methoddef
29476 tokens in the cattr table. Fixes #53108.
29478 2004-01-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29480 * loader.c: don't trim ".dll" before looking up in the config file.
29481 Don't leak orig_scope. Reopened bug #22532 in the meanwhile.
29483 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
29485 * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
29486 Return the module which contains the resource as well.
29487 (ves_icall_System_Reflection_Module_Close): New icall.
29489 * appdomain.c: Bump corlib version number.
29491 * image.c (mono_image_addref): New public function.
29493 * assembly.c: Call mono_image_addref.
29495 * reflection.c (mono_module_get_object): Increase reference count of
29498 * loader.c (mono_lookup_pinvoke_call): Strip .dll from library names.
29501 * exception.h exception.c loader.h loader.c icall.c marshal.h marshal.c:
29502 Applied patch from Bernie Solomon <bernard@ugsolutions.com>. Throw
29503 proper exceptions on DllImport problems.
29505 Mon Jan 19 17:50:27 CET 2004 Paolo Molaro <lupus@ximian.com>
29507 * class.c, metadata.c: eliminate CSIZE macro.
29509 2004-01-19 Lluis Sanchez Gual <lluis@ximian.com>
29511 * icall.c: Added ves_icall_type_IsInstanceOf internal call.
29512 * object.h: Added async_callback field in MonoAsyncResult.
29513 * marshal.c: In mono_delegate_begin_invoke, set the value of async_callback.
29514 * verify.c: Added async_callback in MonoAsyncResult layout.
29516 2004-01-17 Zoltan Varga <vargaz@freemail.hu>
29518 * reflection.c (mono_reflection_get_custom_attrs): Add support
29521 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
29523 * marshal.c (mono_string_builder_to_utf8): Fix stringbuilder
29525 (mono_marshal_method_from_wrapper): Add null pointer check.
29527 2004-01-16 Martin Baulig <martin@ximian.com>
29529 * debug-mono-symfile.h: Set version number to 36 and reflect
29530 latest symbol writer changes.
29532 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
29534 * class.c (mono_bounded_array_class_get): Set 'bounded' to FALSE for
29535 multi-dimensional arrays.
29536 (mono_class_is_assignable_from): Check vectors<->one dim. arrays.
29537 (mono_class_from_mono_type): Use bounded_array_class_get.
29539 * class.c (mono_bounded_array_class_get): New function which takes
29540 a 'bounded' bool argument to distinguish vectors from one dimensional
29543 * icall.c (ves_icall_System_Array_CreateInstanceImpl): Call
29544 bounded_array_class_get if the array has bounds.
29546 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
29547 Search modules loaded using AssemblyBuilder:AddModule as well.
29549 2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29551 * appdomain.c: increased corlib version.
29552 * filewatcher.c: removed g_print.
29554 (get_property_info): only allocate what is actually requested.
29555 (ves_icall_Type_GetInterfaces): free the bitset in case of early error.
29557 2004-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29559 * Makefile.am: added filewatcher.[ch]
29560 * filewatcher.[ch]: FileSystemWatcher runtime support.
29561 * icall.c: added new FSW icalls.
29563 Tue Jan 13 20:03:17 CET 2004 Paolo Molaro <lupus@ximian.com>
29565 * string-icalls.c: fix stringbuilder regression as suggested by
29566 Iain McCoy <iain@mccoy.id.au>.
29568 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
29570 * process.c (process_read_stringtable_block): Recognize '007f' as
29571 a language neutral stringtable block.
29573 2004-01-12 Patrik Torstensson
29575 * object.h (MonoStringBuilder) : Changed layout to support our
29576 new stringbuilder class.
29577 * marshal.c: Change marshalling to support the new layout of
29579 * appdomain.c: increased version number because new layout of
29582 2004-01-12 Zoltan Varga <vargaz@freemail.hu>
29584 * appdomain.c (ves_icall_System_AppDomain_LoadAssembly): Receive the
29585 assembly name as an string instead of an AssemblyName, since it is
29586 easier to extract info from it.
29588 * appdomain.c (mono_domain_assembly_preload): Look for assemblies in
29589 the culture subdirectories too. Fixes #52231.
29591 2004-01-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29593 * icall.c: renamed ves_icall_Type_GetMethods to GetMethodsByName.
29594 It takes 2 new parameters with an optional name for the method to look
29595 for and case ignoring info.
29597 * threadpool.c: removed unused variable.
29599 2004-01-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29601 * icall.c: renamed ves_icall_Type_GetProperties to GetPropertiesByName.
29602 It takes 2 new parameters with an optional name for the property to look
29603 for and case ignoring info.
29606 2004-01-09 Zoltan Varga <vargaz@freemail.hu>
29608 * reflection.c: Applied patch from Benjamin Jemlich (pcgod@gmx.net).
29611 2004-01-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29614 * assembly.c: escape the uri before passing it to g_filename_from_uri.
29617 2004-01-07 Zoltan Varga <vargaz@freemail.hu>
29619 * reflection.c: Add support for more than one unmanaged resource.
29621 * icall.c (ves_icall_get_enum_info): Store the value of the enum fields
29622 in field->def_value, as done in all other cases.
29624 * reflection.c (mono_reflection_get_custom_attrs): Add support for
29627 * reflection.c (mono_reflection_create_runtime_class): Remove
29628 errorneous assignment to klass->element_class, since it is already
29629 done in mono_reflection_setup_internal_class.
29631 2004-01-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29633 * gc.c: added missing LeaveCriticalSection.
29634 * icall.c: indented a couple of lines.
29635 * threadpool.c: remove dangling LeaveCriticalSection. Don't wait forever
29636 if we call EndInvoke inside a callback. Fixes bug #52601.
29638 2004-01-07 Martin Baulig <martin@ximian.com>
29640 * mono-debug-debugger.h
29641 (MonoDebuggerIOLayer): Added `GetCurrentThreadID'.
29643 2004-01-06 Miguel de Icaza <miguel@ximian.com>
29645 * appdomain.c: Use messages in NotImplementedException.
29647 * exception.c (mono_get_exception_not_implemented): Now this takes
29648 a message argument.
29650 * marshal.c (emit_str_to_ptr_conv): g_warning and throw an
29651 exception instead of g_asserting an aborting when something is not
29654 Add some inline docs.
29656 2004-01-05 Zoltan Varga <vargaz@freemail.hu>
29658 * reflection.h: Update after changes to object layout.
29660 * reflection.c: Implement saving of unmanaged aka win32 resources.
29662 * appdomain.c: Bump version number.
29664 * appdomain.c (ves_icall_System_AppDomain_InternalSetDomainByID):
29665 Handle missing domains gracefully.
29667 2004-01-05 Atsushi Enomoto <atsushi@ximian.com>
29669 * file-io.c : On Windows, there are much more invalid_path_chars.
29671 Fri Jan 2 13:35:48 CET 2004 Paolo Molaro <lupus@ximian.com>
29673 * class.h, object.c: prepare for GetType () speedup.
29675 2003-12-24 Atsushi Enomoto <atsushi@ximian.com>
29677 * profiler.c: workaround for --profile null reference exception on
29678 cygwin. Patch by Patrik Torstensson.
29680 2003-12-22 Bernie Solomon <bernard@ugsolutions.com>
29682 * marshal.c: (ves_icall_System_Runtime_InteropServices_Marshal_Read/WriteXXX)
29683 make work for unaligned access.
29685 Mon Dec 22 18:37:02 CET 2003 Paolo Molaro <lupus@ximian.com>
29687 * class.c: small cleanup (class->fields [i] -> field).
29688 * image.c: check address of metadata is valid.
29690 2003-12-22 Zoltan Varga <vargaz@freemail.hu>
29692 * assembly.h assembly.c (mono_assembly_loaded): New public function to
29693 search the list of loaded assemblies.
29695 * reflection.c (mono_reflection_type_from_name): Use
29696 mono_assembly_loaded instead of mono_image_loaded.
29698 * reflection.c: Fix warnings.
29700 2003-12-20 Zoltan Varga <vargaz@freemail.hu>
29702 * image.h (MonoImage): Add a new 'dynamic' field to denote that the image
29703 is dynamic. This is needed since an assembly can contain both dynamic and
29704 non-dynamic images.
29706 * class.c loader.c metadata.c object.c: Use image->dynamic instead of
29709 * icall.c reflection.c: Add new AssemblyBuilder:AddModule icall.
29711 * reflection.h (MonoReflectionAssemblyBuilder): Add 'loaded_modules' field
29712 to store modules loaded using AddModule.
29714 * reflection.c (mono_image_fill_file_table): Generalize this so it works
29717 * reflection.c (mono_image_fill_export_table_from_class): New helper function.
29719 * reflection.c (mono_image_fill_export_table_from_module): New function to
29720 fill out the EXPORTEDTYPES table from a module.
29722 * reflection.c (mono_image_emit_manifest): Refactor manifest creation code
29723 into a separate function. Also handle loaded non-dynamic modules.
29725 * reflection.c (mono_image_basic_init): Fix memory allocation.
29727 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29729 * assembly.c (mono_assembly_load_references): Make this public.
29731 2003-12-19 Martin Baulig <martin@ximian.com>
29733 * class.c (mono_class_initialize_generic): Made this static, take
29734 a `MonoGenericInst *' instead of a `MonoClass *'.
29735 (mono_class_from_generic): Call mono_class_initialize_generic()
29736 unless we're already initialized or being called from
29737 do_mono_metadata_parse_generic_inst().
29739 * class.h (MonoGenericInst): Added `initialized' and
29740 `init_pending' flags.
29742 * metadata.c (do_mono_metadata_parse_generic_inst): Don't call
29743 `mono_class_init (gklass)' or mono_class_initialize_generic()
29744 here; set `generic_inst->init_pending' while parsing the
29747 2003-12-19 Bernie Solomon <bernard@ugsolutions.com>
29749 * locales.c: include string.h for memxxx prototypes
29751 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
29753 * icall.c (ves_icall_MonoField_GetValueInternal): Do not run the class
29754 constructor when accessing literal fields.
29756 2003-12-17 Zoltan Varga <vargaz@freemail.hu>
29758 * appdomain.c (MONO_CORLIB_VERSION): Bump corlib version.
29760 * reflection.c (assembly_add_resource_manifest): New function to fill
29761 the MANIFESTRESOURCE table.
29763 * reflection.c (mono_image_build_metadata): Emit MANIFESTRESOURCE table.
29765 * reflection.h: Update to changes in class layout.
29767 * icall.c (ves_icall_System_Environment_get_HasShutdownStarted):
29768 Reenable call to mono_runtime_is_shutting_down ().
29770 * appdomain.c (mono_runtime_is_shutting_down): New helper function to
29771 determine if the runtime is shutting down.
29773 2003-12-16 Jackson Harper <jackson@ximian.com>
29775 * icall.c: comment out call to mono_runtime_is_shutting_down to
29778 2003-12-16 Zoltan Varga <vargaz@freemail.hu>
29780 * icall.c (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal): Add support for loading resources from modules.
29781 (ves_icall_System_Environment_get_HasShutdownStarted): New icall.
29783 2003-12-15 Bernie Solomon <bernard@ugsolutions.com>
29785 * reflection.c: move definition of swap_with_size
29786 to before its first call
29788 2003-12-15 Zoltan Varga <vargaz@freemail.hu>
29790 * appdomain.c (mono_runtime_is_shutting_down): New public function.
29792 * icall.c (ves_icall_System_Environment_get_HasShutdownStarted): New
29795 * object.c: Fix warnings.
29797 * icall.c (ves_icall_Type_Get...): Only consider inherited static
29798 members if FlattenHierarchy is set.
29800 * reflection.c (mono_image_add_decl_security): New function to emit
29801 declarative security.
29803 * reflection.h reflection.c: Add support for declarative security.
29805 * appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29807 2003-12-13 Zoltan Varga <vargaz@freemail.hu>
29809 appdomain.c (MONO_CORLIB_VERSION): Bump version number.
29811 * appdomain.c verify.c: Moved corlib version checking into its own
29812 function in appdomain.c since it needs to create vtables etc.
29814 2003-12-13 Patrik Torstensson <p@rxc.se>
29816 * marshal.c (mono_remoting_wrapper): Fix bug 48015, using TP as this
29817 instead of unwrapped server.
29819 2003-12-12 Zoltan Varga <vargaz@freemail.hu>
29821 * verify.c (check_corlib): Fix field index.
29823 2003-12-10 Zoltan Varga <vargaz@freemail.hu>
29825 * icall.c: Applied patch from Todd Berman (tbermann@gentoo.org). New
29828 2003-12-10 Bernie Solomon <bernard@ugsolutions.com>
29830 * process.c: (ves_icall_System_Diagnostics_Process_GetWorkingSet_internal
29831 ves_icall_System_Diagnostics_Process_SetWorkingSet_internal):
29832 cope with sizeof(size_t) != sizeof(guint32).
29834 2003-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
29836 * process.[ch]: the 'pid' field in MonoProcInfo stores GetLastError
29837 in case of failure.
29839 2003-12-10 Mark Crichton <crichton@gimp.org>
29841 * icall.c: removed the GetNonZeroBytes. We now handle this case
29844 * rand.c, rand.h: Same here. Also cleaned up the clode slightly.
29846 Tue Dec 9 15:36:18 CET 2003 Paolo Molaro <lupus@ximian.com>
29848 * class.h, class.c, icall.c, marshal.c, object.c: ignore fields
29851 2003-12-09 Zoltan Varga <vargaz@freemail.hu>
29853 * verify.c (check_corlib): Handle the case when the version field is
29854 initialized by a static constructor.
29856 2003-12-08 Patrik Torstensson <p@rxc.se>
29858 * rand.c (InternalGetBytes): Implemented win32 version with cryptapi
29860 2003-12-08 Martin Baulig <martin@ximian.com>
29862 * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Return
29863 a MonoReflectionGenericParameter, also take the parameter index
29864 and name as arguments.
29865 (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
29866 (ves_icall_MonoGenericParam_initialize): New interncall.
29867 (ves_icall_Type_make_byref_type): New interncall.
29869 * reflection.h (MonoReflectionGenericParam): Derive from
29870 MonoReflectionType, not just from MonoObject. Added `refobj' and
29873 * reflection.c (mono_reflection_define_generic_parameter): Create
29874 and return a new MonoReflectionGenericParam; don't initialize the
29876 (mono_reflection_initialize_generic_parameter): New public method;
29877 initializes the constraints and creates the `param->pklass'.
29879 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
29881 * reflection.h reflection.c: Use the new fields 'num_types',
29882 'num_fields' and 'num_methods' to track the number of types etc.
29884 * verify.c (check_corlib): Check corlib version number.
29886 2003-12-07 Zoltan Varga <vargaz@freemail.hu>
29888 * marshal.c (mono_marshal_method_from_wrapper): Remove assert so this
29889 function works on all methods.
29891 2003-12-07 Lluis Sanchez Gual <lluis@ximian.com>
29893 * domain.c, loader.h: Added IRemotingTypeInfo interface in MonoDefaults.
29894 * icall.c: in, ves_icall_Remoting_RealProxy_GetTransparentProxy set
29895 the custom_type_info flag of the transparent proxy.
29896 * object.c: Added method mono_object_isinst_mbyref for casting mbyref
29897 objects that supports IRemotingTypeInfo.
29898 * object.h: Added custom_type_info field in transparent proxy.
29900 2003-12-06 Martin Baulig <martin@ximian.com>
29902 * class.c (mono_class_create_from_generic): Removed.
29903 (mono_class_from_generic): Check `ginst->klass' before doing
29904 anything else. This is important to fully support "recursive"
29907 * metadata.c (do_mono_metadata_parse_generic_inst): Create an
29908 empty `generic_inst->klass' before doing anything else.
29910 2003-12-06 Dick Porter <dick@ximian.com>
29915 * locales.c: Use C structs to access class fields. Don't do a
29916 conversion between MonoString and UChar because both are
29917 platform-endian UTF-16. Compare now takes startindex and count
29918 parameters. Add a char overload for IndexOf. Speed up the
29919 invariant string IndexOf.
29921 2003-12-05 Zoltan Varga <vargaz@freemail.hu>
29923 * Makefile.am (monosn_LDADD): Fix parallel build.
29925 2003-12-04 Martin Baulig <martin@ximian.com>
29928 (ves_icall_type_GetTypeCode): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
29929 (ves_icall_Type_make_array_type): New interncall.
29931 2003-12-04 Martin Baulig <martin@ximian.com>
29933 * locales.c: also change it in the !HAVE_ICU case.
29935 2003-12-04 Dick Porter <dick@ximian.com>
29938 * locales.c: construct_compareinfo is now in CompareInfo, not
29941 2003-12-04 Zoltan Varga <vargaz@freemail.hu>
29943 * image.c (mono_image_load_file_for_image): Cache loaded images in the
29944 image->files array.
29946 * image.c (load_class_name): Load class names from the EXPORTEDTYPES
29949 * assembly.c (mono_assembly_load_references): Only load references
29952 * class.c (mono_class_from_name): Avoid linear search of the
29953 EXPORTEDTYPE table.
29955 * loader.c (mono_field_from_token): Cache lookups of fieldrefs as well.
29957 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
29959 * image.h (MonoImage): Add 'field_cache' field.
29961 * loader.c (mono_field_from_token): Cache field lookups.
29963 * reflection.c (mono_module_get_object): Fix name property.
29965 * icall.c (ves_icall_get_enum_info): Update after changes to
29966 mono_metadata_get_constant_index ().
29968 * icall.c: Get rid of get_type_info icall, use a separate icall for
29969 each type property to avoid needless memory allocations. Fixes #51514.
29971 * metadata.c (mono_metadata_get_constant_index): Add a 'hint' parameter
29972 to avoid needless binary searches.
29974 * class.c (class_compute_field_layout): Move the initialization of
29975 field->def_value to mono_class_vtable ().
29977 * class.c (mono_class_layout_fields): Enable GC aware auto layout for
29980 * object.c (mono_object_allocate): Make it inline.
29982 * object.c (mono_object_allocate_spec): Make it inline.
29984 2003-12-02 Dick Porter <dick@ximian.com>
29986 * locales.c (create_NumberFormat): NumberFormatInfo construction.
29987 Patch by Mohammad DAMT (mdamt@cdl2000.com).
29989 2003-12-01 Dick Porter <dick@ximian.com>
29991 * threads.c: Fix signature and call in CreateMutex and
29994 2003-12-01 Dick Porter <dick@ximian.com>
29997 * locales.c: Implement string compares and searching
29999 * object.h: Add extra Thread field
30001 2003-11-30 Zoltan Varga <vargaz@freemail.hu>
30003 * reflection.c (fixup_method): Add support for MonoCMethod.
30005 2003-11-28 Zoltan Varga <vargaz@freemail.hu>
30007 * gc.c: Fix hangs and error messages when GC_DONT_GC is set.
30009 * reflection.c (assembly_name_to_aname): Allow extra characters in
30010 assembly names. Fixes #51468.
30012 2003-11-26 Zoltan Varga <vargaz@freemail.hu>
30014 * exception.c (mono_exception_from_name_domain): New helper function.
30016 * appdomain.c (ves_icall_System_AppDomain_createDomain): Create the
30017 exception object in the correct domain.
30019 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix
30020 formatting + make a copy a the input data.
30022 * loader.c (mono_get_method_from_token): Methods which contain
30023 native code do not have entries in the ImplMap.
30025 (ves_icall_System_AppDomain_LoadAssemblyRaw): Fix exception throw.
30026 Thanks to Gonzalo for spotting this.
30028 * appdomain.c (ves_icall_System_AppDomain_LoadAssemblyRaw): Applied
30029 patch from ztashev@openlinksw.co.uk (Zdravko Tashev). New icall.
30031 * assembly.h (mono_assembly_load_from): Split the second part of
30032 assembly loading into a new public function.
30034 * exception.h (mono_get_exception_bad_image_format): New function.
30036 2003-11-24 Zoltan Varga <vargaz@freemail.hu>
30038 icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
30039 Enumerate all modules inside a dynamic assembly. Fixes #51293.
30041 * icall.c: Add new icall for creating dynamic methods.
30043 * loader.h debug-helpers.c: Add new wrapper type for dynamic methods.
30045 * reflection.h (MonoReflectionDynamicMethod): Fix type of bool fields.
30047 * reflection.c (mono_reflection_create_dynamic_method): New icall to
30048 create a dynamic method.
30050 * reflection.c (resolve_object): New helper function.
30052 * reflection.c: Generalize ReflectionMethodBuilder and the functions
30053 which manipulate it so they can also work on dynamic methods.
30055 * reflection.c (reflection_method_builder_to_mono_method): Avoid
30056 creating the MonoReflectionMethodAux structure if it is not needed.
30058 * reflection.h verify.c: Update after changes to object layout.
30060 * reflection.c (method_builder_encode_signature): Fix compilation on
30063 2003-11-21 Lluis Sanchez Gual <lluis@ximian.com>
30065 * appdomain.h: Added support for context static fields. Added static_data
30066 field to MonoAppContext and renamed thread_static_fields to a more
30067 generic special_static_fields in MonoAppDomain, since it can now contain
30068 context static fields.
30069 * domain.c: Updated hashtable name.
30070 * object.c: Replaced field_is_thread_static() for a more generic
30071 field_is_special_static() which also checks for context static attribute.
30072 In mono_class_vtable(), added support for static context fields.
30073 * threads.c: Changed methods that manage thread static fields to more
30074 generic methods so they can be reused both for thread and context static
30076 * threads.h: Declared some new methods.
30078 2003-11-21 Zoltan Varga <vargaz@freemail.hu>
30080 * reflection.h: Update after changes to the managed types.
30082 * reflection.c (encode_custom_modifiers): New helper function.
30084 * reflection.c (method_encode_signature): Emit custom modifiers.
30086 * reflection.c (field_encode_signature): Emit custom modifiers.
30088 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
30090 * reflection.h (MonoReflectionAssemblyName): Applied patch from Laurent Morichetti (l_m@pacbell.net). Fix type of 'flags' field.
30092 * icall.c (ves_icall_System_ValueType_Equals): New optimized
30095 * icall.c (ves_icall_System_ValueType_InternalGetHashCode): New
30098 * object.c (mono_field_get_value_object): New function.
30100 * object.c appdomain.h appdomain.c: Make out_of_memory_ex domain
30103 2003-11-17 Zoltan Varga <vargaz@freemail.hu>
30105 * appdomain.c (mono_runtime_get_out_of_memory_ex): New function to
30106 return a preallocated out-of-memory exception instance.
30108 * object.c (out_of_memory): Use the new function.
30110 * metadata.c (mono_metadata_parse_type): Handle the case when the byref
30111 flag is before the custom modifiers. Fixes #49802.
30113 2003-11-16 Martin Baulig <martin@ximian.com>
30115 * class.c (mono_class_is_open_constructed_type): Implemented the
30116 MONO_TYPE_GENERICINST case.
30118 2003-11-16 Zoltan Varga <vargaz@freemail.hu>
30120 * assembly.c (mono_assembly_fill_assembly_name): New function to
30121 fill out the MonoAssemblyName structure.
30122 (mono_assembly_open): Use the new function.
30124 * icall.c (fill_reflection_assembly_name): New helper function.
30126 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Use the
30129 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetAssemblyName): New icall.
30131 2003-11-15 Martin Baulig <martin@ximian.com>
30133 * class.c (mono_class_is_open_constructed_type): New public
30134 function; checks whether a type is an open constructed type,
30135 ie. whether it still contains type parameters.
30136 (mono_class_inflate_generic_type): If we're a type parameter and
30137 the inflated type is also a MONO_TYPE_(M)VAR, return the original
30140 * class.h (MonoGenericInst): Added `guint32 is_open'.
30142 * loader.c (method_from_methodspec): Check whether we're an open
30143 or closed constructed type and set `ginst->is_open'.
30145 * reflection.c (mono_reflection_bind_generic_parameters): Check
30146 whether we're an open or closed constructed type and set
30148 (mono_reflection_inflate_method_or_ctor): Don't inflate methods
30149 from open constructed types.
30151 2003-11-15 Martin Baulig <martin@ximian.com>
30153 * reflection.c (mono_reflection_bind_generic_parameters): If we're
30154 a generic instance (instead of a generic type declaration) with
30155 unbound generic parameters, bind them to our actual types.
30157 2003-11-14 Martin Baulig <martin@ximian.com>
30159 * reflection.h (MonoReflectionGenericInst): Added `MonoArray *interfaces'.
30161 * reflection.c (mono_reflection_bind_generic_parameters): If we're
30162 an interface type, populate `res->interfaces' with instantiated
30163 versions of all the interfaces we inherit.
30165 2003-11-13 Aleksey Demakov <avd@openlinksw.com>
30167 * assembly.c (mono_assembly_load): Fixed problem finding mscorlib.dll
30168 when MONO_PATH is set but doesn't contain the install dir.
30170 2003-11-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
30173 (ves_icall_Type_GetInterfaces): don't return an interface twice when
30174 it's also implemented in base classes. Fixes bug #50927.
30176 2003-11-13 Zoltan Varga <vargaz@freemail.hu>
30178 * gc.c (ves_icall_System_GC_WaitForPendingFinalizers): Avoid deadlocks
30179 if this method is called from a finalizer. Fixes #50913.
30181 2003-11-12 Miguel de Icaza <miguel@ximian.com>
30183 * threads.c: Implement VolatileRead/VolatileWrite
30185 * icall.c: Add new icalls for VolatileRead/VolatileWrite
30187 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
30189 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Applied
30190 patch from Danilo Sagan (dsegan@gmx.net). Fix compilation under gcc
30193 * assembly.c (mono_assembly_open): Fix windows build. Applied patch
30194 from Peter Ross (pro@missioncriticalit.com).
30196 2003-11-12 Lluis Sanchez Gual <lluis@ximian.com>
30198 * icall.c: Added internal call for System.Environment::GetMachineConfigPath
30200 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
30202 * assembly.c (mono_assembly_load_references): Disable check because it
30203 triggers on older corlibs which lots of people have.
30205 2003-11-12 Jackson Harper <jackson@ximian.com>
30207 * assembly.c: Change corlib name to mscorlib. Add a temp. hack to
30208 load corlib.dll if mscorlib.dll is not found.
30209 * assembly.h: Remove corlib name define.
30212 * image.c: Change corlib name to mscorlib.
30214 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
30216 * debug-mono-symfile.c: Add patch from FreeBSD ports tree.
30218 2003-11-11 Miguel de Icaza <miguel@ximian.com>
30220 * appdomain.h: Added loader_optimization here to sync with the C#
30221 code, and add disallow_binding_redirects field.
30223 2003-11-11 Zoltan Varga <vargaz@freemail.hu>
30225 * mono-debug.c (mono_debug_add_method): Ignore unknown modules.
30227 * reflection.c (mono_image_build_metadata): Fix crash on modules
30230 * reflection.h (MonoMethodInfo): Track changes to the managed structure.
30232 * icall.c (ves_icall_get_method_info): Return callingConvention as
30235 * icall.c (ves_icall_System_Reflection_Assembly_GetNamespaces): Add
30236 namespaces from the EXPORTEDTYPE table as well.
30238 * icall.c (ves_icall_System_Reflection_Assembly_GetTypes): Merge types
30239 from all modules inside the assembly.
30241 2003-11-11 Martin Baulig <martin@ximian.com>
30243 * reflection.c (mono_reflection_bind_generic_parameters): Make
30244 this work for interfaces.
30246 2003-11-11 Martin Baulig <martin@ximian.com>
30248 * mono-debug.c (mono_debug_add_type): Ignore unknown modules.
30250 2003-11-11 Martin Baulig <martin@ximian.com>
30252 * reflection.c (mono_reflection_inflate_method_or_ctor): Allow
30253 "MonoInflatedMethod" and "MonoInflatedCtor".
30255 2003-11-11 Zoltan Varga <vargaz@freemail.hu>
30257 * reflection.c (resolution_scope_from_image): Use the assembly table
30258 from the manifest module, since other modules don't have it.
30260 * debug-helpers.c (mono_type_full_name): New helper function.
30262 * image.h (MonoAssembly): Change 'dynamic' to a boolean.
30264 * image.c (mono_image_load_file_for_image): New public function which
30265 is a replacement for the load_file_for_image in class.c.
30267 * assembly.c (mono_assembly_load_module): A wrapper for the function
30268 above which does assembly association and reference loading too.
30270 * class.c (mono_class_from_name): Call mono_assembly_load_module.
30272 2003-11-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
30274 * appdomain.c: not all of the attributes for the full assembly name
30275 are required and the order doesn't matter. Fixes bug #50787.
30277 2003-11-10 Dick Porter <dick@ximian.com>
30279 * locales.c: Use platform-endian UTF16
30281 2003-11-10 Zoltan Varga <vargaz@freemail.hu>
30283 * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30285 2003-11-10 Martin Baulig <martin@ximian.com>
30288 (mono_metadata_load_generic_params): Make this actually work.
30290 * reflection.c (mono_reflection_bind_generic_parameters): If our
30291 parent is a generic instance, pass all the `types' to it, no
30292 matter whether it has the same number of type parameters or not.
30294 2003-11-10 Zoltan Varga <vargaz@freemail.hu>
30296 * reflection.c: Emit FILE and EXPORTEDTYPE tables.
30298 * assembly.c (mono_assembly_load_references): Move the image<->assembly
30299 assignment code to this function so it gets called recursively for all
30302 * image.c (load_modules): Remove the assembly assignment since it is
30303 now done by mono_assembly_load_references.
30305 * icall.c (ves_icall_System_Reflection_Assembly_InternalGetType):
30306 Add 'module' argument.
30307 (mono_module_get_types): New helper function.
30308 (ves_icall_System_Reflection_Module_InternalGetTypes): New icall.
30310 2003-11-08 Martin Baulig <martin@ximian.com>
30312 * class.c (mono_class_inflate_generic_method): Interface method
30313 don't have a header.
30315 * reflection.c (mono_image_get_methodspec_token): Take an
30316 additional `MonoGenericInst *' argument instead of reading it from
30317 the header; this is necessary to support interfaces.
30318 (mono_image_create_token): Pass the `MonoGenericInst *' from the
30319 MonoReflectionInflatedMethod to mono_image_get_methodspec_token().
30320 (inflated_method_get_object): Take an additional `MonoGenericInst *'
30323 * reflection.h (MonoReflectionInflatedMethod): Added
30324 `MonoGenericInst *ginst'.
30326 2003-11-07 Zoltan Varga <vargaz@freemail.hu>
30328 * gc.c (mono_domain_finalize): Fix compilation for no GC case.
30330 2003-11-06 Zoltan Varga <zovarga@ws-zovarga2>
30332 * appdomain.c (mono_domain_unload): Add a workaround for bug #27663.
30334 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
30337 (reflection_methodbuilder_from_method_builder):
30338 (reflection_methodbuilder_from_ctor_builder): New helper functions to
30339 initialize a ReflectionMethodBuilder structure.
30340 (mono_image_get_methodbuilder_token):
30341 (mono_image_get_ctorbuilder_token): New functions to emit memberref
30342 tokens which point to types in another module inside the same assembly.
30344 * reflection.c: Use the new helper functions.
30346 * reflection.c (mono_image_basic_init): Initialize basedir and culture.
30348 * icall.c loader.c reflection.c: Use ModuleBuilder->dynamic_image
30349 instead of AssemblyBuilder->dynamic_assembly in the appropriate places.
30351 * reflection.c (resolution_scope_from_image): Emit a moduleref if
30354 * reflection.c (mono_image_build_metadata): Emit metadata only for the
30355 current module. Emit the manifest only for the main module.
30357 * reflection.c (mono_image_create_token): Add assertion when a
30358 memberref needs to be created.
30360 * reflection.c reflection.h (MonoDynamicAssembly): Remove unused fields.
30362 * reflection.c (mono_reflection_get_custom_attrs_blob): Allocate a
30363 larger buffer for the custom attribute blob. Fixes #50637.
30365 2003-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
30367 * threadpool.c: notify listener on async processing handles after
30368 invoking the async callback. Thanks to Zoltan.
30370 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
30372 * reflection.c (create_dynamic_mono_image): Call mono_image_init to
30373 avoid code duplication.
30375 * reflection.h (MonoDynamicImage): New type which is currently unused,
30376 but will be used through the ref.emit code in place of
30377 MonoDynamicAssembly.
30379 * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30382 * reflection.c (create_dynamic_mono_image): Rewrote so it now creates
30383 a MonoDynamicImage instead of just a MonoImage.
30385 * reflection.h reflection.c icall.c: Move nearly all AssemblyBuilder
30386 icalls to ModuleBuilder but keep their semantics, so they will work
30387 with moduleb->assemblyb. This will change later.
30389 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
30391 * reflection.h (MonoReflectionAssemblyBuilder): Track changes to the
30394 * reflection.c (mono_image_build_metadata): Avoid creation of a default
30395 main module, since it is now done by the managed code.
30397 2003-11-03 Martin Baulig <martin@ximian.com>
30399 * reflection.c (mono_reflection_inflate_method_or_ctor): Set
30400 `ginst->klass' here.
30401 (method_encode_methodspec): Don't use the `ginst->generic_method's
30402 klass if it's a generic instance, use `ginst->klass' in this case.
30404 2003-11-03 Martin Baulig <martin@ximian.com>
30406 * reflection.c (mono_image_get_generic_method_param_info):
30407 Removed, use mono_image_get_generic_param_info() instead.
30408 (mono_image_get_type_info): Write the GenericParam table before
30409 the Method table. This is neccessary because in the GenericParam
30410 table, type parameters of the class (ie. '!0' etc.) must come
30411 before the ones from its generic methods (ie. '!!0' etc).
30413 2003-11-03 Zoltan Varga <vargaz@freemail.hu>
30415 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill out AssemblyName->codebase. Fixes #50469.
30417 2003-11-02 Martin Baulig <martin@ximian.com>
30419 * reflection.c (create_generic_typespec): Take a
30420 `MonoReflectionTypeBuilder *' instead of a `MonoType *' and get
30421 the generic parameters from it.
30423 2003-11-02 Martin Baulig <martin@ximian.com>
30425 * reflection.c (fieldref_encode_signature): Take a `MonoType *'
30426 instead of a `MonoClassField *' since we just need the type.
30427 (create_generic_typespec): New static function. Creates a
30428 TypeSpec token for a generic type declaration.
30429 (mono_image_get_generic_field_token): New static function.
30430 (mono_image_create_token): If we're a FieldBuilder in a generic
30431 type declaration, call mono_image_get_generic_field_token() to get
30434 2003-11-02 Martin Baulig <martin@ximian.com>
30437 (MonoReflectionInflatedMethod, MonoReflectionInflatedField): Added
30438 `MonoReflectionGenericInst *declaring_type' and
30439 `MonoReflectionGenericInst *reflected_type' fields.
30441 * reflection.c (mono_reflection_inflate_method_or_ctor): Take a
30442 `MonoReflectionGenericInst *declaring_type' and a
30443 `MonoReflectionGenericInst *reflected_type' argument instead of a
30444 single `MonoReflectionGenericInst *type' one. Set
30445 `res->declaring_type' and `res->reflected_type' from them.
30446 (mono_reflection_inflate_field): Likewise.
30448 2003-11-02 Martin Baulig <martin@ximian.com>
30450 * class.c (mono_class_setup_vtable): Don't store generic methods
30453 2003-11-02 Martin Baulig <martin@ximian.com>
30455 * reflection.h (MonoReflectionGenericInst): Added
30456 `MonoReflectionType *declaring_type'.
30458 * reflection.c (mono_reflection_bind_generic_parameters): Use
30459 `if (tb->parent)' instead of `klass->parent'.
30461 2003-11-01 Zoltan Varga <vargaz@freemail.hu>
30463 * assembly.c (mono_assembly_open): Avoid crash if a module is loaded
30464 with an empty ASSEMBLY table.
30466 * reflection.c (mono_image_build_metadata): Avoid using the same loop
30467 variable in the inner and outer loops.
30469 2003-10-31 Zoltan Varga <vargaz@freemail.hu>
30471 * metadata.h (mono_metadata_make_token): Put parentheses around macro
30474 * appdomain.h appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef): Fix signature.
30476 * appdomain.c appdomain.h icall.c: Get rid of the InvokeInDomain
30477 icalls. Instead, do everything in managed code. This is needed since
30478 it is hard to restore the original domain etc. in unmanaged code in the
30479 presence of undeniable exceptions.
30481 * appdomain.c (ves_icall_System_AppDomain_InternalPushDomainRef):
30482 New icalls to push and pop appdomain refs.
30484 2003-10-31 Martin Baulig <martin@ximian.com>
30486 * class.c (inflate_generic_type): Renamed to
30487 mono_class_inflate_generic_type() and made it public.
30489 * icall.c ("System.Reflection.MonoGenericInst::inflate_field"):
30492 * loader.c (mono_field_from_memberref): Also set the retklass for
30495 * fielder.c (mono_image_get_inflated_field_token): New static
30496 method; creates a metadata token for an inflated field.
30497 (mono_image_create_token, fixup_method): Added support for
30498 "MonoInflatedField".
30499 (fieldbuilder_to_mono_class_field): New static function.
30500 (mono_reflection_inflate_field): New public function.
30503 (MonoReflectionGenericInst): Added `MonoArray *fields'.
30504 (MonoReflectionInflatedField): New typedef.
30506 2003-10-30 Bernie Solomon <bernard@ugsolutions.com>
30508 * socket-io.c (in6_addr ipaddress_to_struct_in6_addr): fix
30509 for Solaris and other platforms without s6_addr16
30511 2003-10-30 Martin Baulig <martin@ximian.com>
30513 * class.c (inflate_generic_type): Take just one `MonoGenericInst *'
30514 argument instead of two.
30515 (mono_class_inflate_generic_signature): Likewise.
30516 (inflate_generic_header): Likewise.
30517 (mono_class_inflate_generic_method): Likewise. In addition, if
30518 `ginst->klass' is set, it becomes the new `method->klass'.
30520 * class.h (MonoGenericInst): Removed the `gpointer mbuilder'
30523 * reflection.c (encode_generic_method_sig): Write a 0xa as the
30524 first byte. [FIXME]
30525 (method_encode_methodspec): If we have generic parameters, create
30526 a MethodSpec instead of a MethodRef.
30527 (fixup_method): Added support for "MonoInflatedMethod" and
30528 "MonoInflatedCtor".
30529 (mono_image_create_token): Added support for "MonoInflatedMethod"
30530 and "MonoInflatedCtor".
30531 (inflated_method_get_object): New static function; returns a
30532 managed "System.Reflection.MonoInflatedMethod" object.
30533 (mono_reflection_bind_generic_method_parameters): Return a
30534 `MonoReflectionInflatedMethod' instead of a `MonoReflectionMethod'.
30535 (mono_reflection_inflate_method_or_ctor): Likewise.
30536 (mono_image_get_generic_method_param_info): Initialize unused
30538 (mono_image_get_generic_param_info): Likewise.
30540 * reflection.h (MonoReflectionInflatedMethod): New public
30541 typedef. Corresponds to the managed "S.R.MonoInflatedMethod" and
30542 "S.R.MonoInflatedCtor" classes.
30544 * loader.c (method_from_memberref): If we're a TypeSpec and it
30545 resolves to a generic instance, inflate the method.
30547 2003-10-28 Dick Porter <dick@ximian.com>
30549 * object.c (mono_runtime_run_main): Convert command-line arguments
30550 into utf8, falling back to the user's locale encoding to do so.
30552 2003-10-27 Zoltan Varga <vargaz@freemail.hu>
30554 * loader.c (mono_get_method_from_token): Avoid looking up the icalls
30557 * marshal.c (mono_marshal_get_native_wrapper): Lookup icalls here.
30559 * reflection.c (reflection_methodbuilder_to_mono_method): Avoid looking
30560 up icalls at method definition time. Partially fixes #33569.
30562 2003-10-25 Zoltan Varga <vargaz@freemail.hu>
30564 * marshal.c (mono_marshal_get_native_wrapper): Add support for [Out]
30565 marshalling of arrays. Fixes #50116.
30567 * appdomain.c (ves_icall_System_AppDomain_InternalIsFinalizingForUnload): New icall.
30569 * appdomain.c (unload_thread_main): Clear class->cached_vtable if it
30570 points to a vtable in the dying appdomain.
30572 * appdomain.c (mono_domain_unload): Move the notification of OnUnload
30573 listeners into unmanaged code inside the lock.
30575 * object.c (mono_class_vtable): Turn off typed allocation in non-root
30576 domains and add some comments.
30578 2003-10-25 Martin Baulig <martin@ximian.com>
30580 * class.h (MonoGenericInst): Added `MonoClass *klass' field.
30582 * image.h (MonoImage): Added `GHashTable *typespec_cache'.
30584 * metadata.c (mono_metadata_parse_generic_inst): Renamed to
30585 `do_mono_metadata_parse_generic_inst'; pass it the MonoType we're
30586 currently parsing. Create the generic class and store it in
30587 `generic_inst->klass' before parsing the type arguments. This is
30588 required to support "recursive" definitions; see mcs/tests/gen-23.cs
30590 (mono_type_create_from_typespec): Use a new `image->typespec_cache'
30591 to support recursive typespec entries.
30593 * class.c (mono_class_setup_parent): If our parent is a generic
30594 instance, we may get called before it has its name set.
30595 (mono_class_from_generic): Splitted into
30596 mono_class_create_from_generic() and mono_class_initialize_generic().
30598 2003-10-25 Martin Baulig <martin@ximian.com>
30600 * icall.c (ves_icall_Type_BindGenericParameters): Return a
30601 `MonoReflectionGenericInst *' instead of a `MonoReflectionType *'.
30602 ("System.Reflection.MonoGenericInst::inflate_method"): New interncall.
30603 ("System.Reflection.MonoGenericInst::inflate_ctor"): New interncall.
30605 * reflection.c (my_mono_class_from_mono_type): Added MONO_TYPE_GENERICINST.
30606 (create_typespec): Likewise.
30607 (mono_reflection_bind_generic_parameters): Return a
30608 `MonoReflectionGenericInst *' instead of a `MonoClass *'.
30609 (mono_reflection_inflate_method_or_ctor): New public function.
30611 * reflection.h (MonoReflectionGenericInst): New typedef.
30613 2003-10-24 Zoltan Varga <vargaz@freemail.hu>
30615 * object.c (mono_class_proxy_vtable): Run the whole vtable construction
30616 inside the domain lock. Fixes #49993.
30618 * object.c (mono_class_vtable): When typed allocation is used,
30619 allocate vtables in the GC heap instead of in the mempool, since the
30620 vtables contain GC descriptors which are used by the collector even
30621 after the domain owning the mempool is unloaded.
30623 * domain.c (mono_domain_set): Rename to mono_domain_set_internal.
30625 * domain.c (mono_domain_unload): Rename to mono_domain_free to better
30626 reflect what it does. Also invalidate mempools instead of freeing
30627 them if a define is set.
30629 * appdomain.h (MonoAppDomainState): New enumeration to hold the state
30632 * appdomain.h (_MonoDomain): New field 'finalizable_object_hash' to
30633 hold the finalizable objects in this domain.
30635 * appdomain.h (_MonoDomain): New field 'state' to hold the state of the
30638 * appdomain.c (mono_domain_set): New function to set the current
30639 appdomain, but only if it is not being unloaded.
30641 * appdomain.c threads.c threadpool.c object.c: Avoid entering an
30642 appdomain which is being unloaded.
30644 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Prevent
30645 unloading of the root appdomain.
30647 * appdomain.c (ves_icall_System_AppDomain_InternalInvokeInDomain): New
30648 icall to execute a method in another appdomain. Intended as a
30649 replacement for InternalSetDomain, which can confuse the code
30650 generation in the JIT.
30652 * appdomain.c (mono_domain_is_unloading): New function to determine
30653 whenever an appdomain is unloading.
30655 * appdomain.c (mono_domain_unload): New function to correctly unload
30658 * assembly.c (mono_assembly_load_references): Check that an assembly
30659 does not references itself.
30661 * gc.c (mono_domain_finalize): Rewrote so instead of finalizing a
30662 domain manually, it asks the finalizer thread to do it, then waits for
30663 the result. Also added a timeout.
30665 * icall.c: Register the new icalls.
30667 * threads.h threads.c: Export the mono_gc_stop_world and
30668 mono_gc_start_world functions.
30670 * mempool.h mempool.c (mono_mempool_invalidate): New debugging
30671 function to fill out the mempool with 0x2a.
30673 2003-10-22 Zoltan Varga <vargaz@freemail.hu>
30675 * reflection.h (MonoReflectionMethodAux): New structure to store
30676 information which is rarely used, thus is not in the MonoMethod
30679 * reflection.h (MonoDynamicAssembly): New field 'method_aux_hash' to
30680 store the aux info.
30682 * reflection.c (mono_methodbuilder_to_mono_method): Store param names
30683 and marshalling info into the aux structure.
30685 * loader.c (mono_method_get_marshal_info): Retrieve the marshal info
30686 from the aux structure.
30688 * loader.c (mono_method_get_param_names): Retrieve the param names from
30691 2003-10-21 Zoltan Varga <vargaz@freemail.hu>
30693 * exception.h exception.c: Add AppDomainUnloadedException && fix
30696 2003-10-21 Dick Porter <dick@ximian.com>
30699 (ves_icall_System_Net_Sockets_Socket_Select_internal): Applied
30700 patch from Laramie Leavitt moving divide out of loop. (Bug 45381).
30702 2003-10-21 Martin Baulig <martin@ximian.com>
30704 * reflection.c (mono_reflection_bind_generic_parameters):
30705 `klass->parent' is NULL for interfaces.
30707 2003-10-21 Martin Baulig <martin@ximian.com>
30709 * reflection.c (create_typespec): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
30711 2003-10-20 Zoltan Varga <vargaz@freemail.hu>
30713 * exception.c (mono_exception_from_name_msg): New helper function for
30714 creating exceptions and initializing their message field.
30716 * exception.c: Simplify functions using the new helper.
30718 * exception.h exception.c (mono_get_exception_cannot_unload_appdomain):
30721 * object.h object.c: Remove G_GNUC_NORETURN from the signature of
30722 mono_raise_exception, since otherwise gcc doesn't generate the function
30723 epilog for raise_exception, confusing the stack unwinding in the JIT.
30726 * rawbuffer.c (mono_raw_buffer_load_mmap): Map mmap-ed memory with
30727 PROT_EXEC. This seems to prevent segmentation faults on Fedora Linux.
30730 2003-10-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
30732 * icall.c: OutputDebugStringW expects 16-bit unicode characters, not
30735 2003-10-18 Lluis Sanchez Gual <lluis@ximian.com>
30737 * icall.c: Removed GetUninitializedObject method because
30738 AllocateUninitializedClassInstance does the same.
30740 2003-10-18 Martin Baulig <martin@ximian.com>
30742 * class.c (inflate_generic_signature): Renamed to
30743 mono_class_inflate_generic_signature() and made it public.
30744 (my_mono_class_from_generic_parameter): New static function; if we
30745 don't already have the generic parameter's MonoClass, create a
30746 very simple one which is just used internally in the runtime and
30747 not passed back to managed code.
30749 * class.h (MonoGenericInst): Added `gpointer mbuilder' field.
30751 * metadata.h (MonoMethodSignature): Moved the
30752 `MonoGenericParam *gen_params' to the MonoMethodHeader.
30753 (MonoMethodHeader): Moved the `MonoGenericParam *gen_params' here.
30755 * icall.c (ves_icall_MethodInfo_GetGenericArguments): Renamed to
30756 ves_icall_MonoMethod_GetGenericArguments(); this is now an
30757 interncall on the MonoMethod class, not on MethodInfo.
30758 (ves_icall_MethodInfo_BindGenericParameters): Removed, we're now
30759 calling mono_reflection_bind_generic_method_parameters() directly.
30761 * loader.c (mono_method_get_signature): If this is a MethodSpec;
30762 return the already computed `method->signature'.
30763 (method_from_methodspec): New static function to load a method
30764 from a MethodSpec entry.
30765 (mono_get_method_from_token): Call the new method_from_methodspec()
30766 for MethodSpec tokens.
30767 (mono_get_method_from_token): If we're a generic method, load the
30770 * reflection.c (mono_image_get_memberref_token): Allow
30771 MEMBERREF_PARENT_TYPEDEF here; this will be used in the MethodSpec
30773 (fixup_method): Added support for MONO_TABLE_METHODSPEC.
30774 (mono_image_create_token): First check whether it's a generic
30775 method (so we'd need to create a MethodSpec), then do the other
30777 (mono_reflection_bind_generic_method_parameters): Return a
30778 `MonoReflectionMethod *' instead of a `MonoMethod *'; we're now
30779 called directly from the interncall.
30781 2003-10-17 Zoltan Varga <vargaz@freemail.hu>
30783 * reflection.c (load_public_key): Move loading of the public key
30786 * image.h (MonoAssemblyName): Add public_key and hash_alg fields.
30788 * assembly.c (mono_assembly_open): Fill in public_key and hash_alg
30791 * icall.c (ves_icall_System_Reflection_Assembly_FillName): Fill in
30792 culture, hash_alg and public_key. Fixes #49555.
30794 2003-10-17 Martin Baulig <martin@ximian.com>
30796 * class.h (MonoGenericInst): Moved this declaration here and added
30797 `MonoMethod *generic_method'.
30800 (ves_icall_MethodInfo_GetGenericArguments): New interncall.
30801 (ves_icall_MethodInfo_BindGenericParameters): New interncall.
30803 * metadata.c (mono_metadata_type_equal): Two types of
30804 MONO_TYPE_VAR or MONO_TYPE_MVAR equals if they have the same
30805 index; ie. don't compare the address of the `MonoGenericParam'
30807 (mono_metadata_load_generic_params): Removed the `MonoMethod
30810 * metadata.h (MonoGenericInst): Moved declaration to class.h.
30811 (MonoMethodHeader): Added `MonoGenericInst *geninst'.
30813 * reflection.c (method_encode_signature): Encode the number of
30814 generic parameters.
30815 (encode_generic_method_sig): New static function.
30816 (method_encode_methodspec): New static function; creates an entry
30817 in the MethodSpec table for a generic method.
30818 (mono_image_get_methodspec_token): New static function.
30819 (mono_image_create_token): Call mono_image_get_methodspec_token()
30820 for generic methods.
30821 (mono_reflection_bind_generic_method_parameters): New public
30822 function. Instantiates a generic method.
30824 2003-10-16 Martin Baulig <martin@ximian.com>
30826 * metadata.h (MonoMethodSignature): Moved `MonoGenericParam
30827 *gen_params' here from MonoMethodHeader.
30829 * metadata.c (mono_metadata_parse_method_signature): If we have
30830 generic parameters, initialize `method->gen_params' and then set
30831 the correct `type->data.generic_param' in all the parameters.
30833 2003-10-16 Zoltan Varga <vargaz@freemail.hu>
30835 * threads.c (mono_threads_get_default_stacksize): New function to
30836 return the default stacksize.
30838 * gc.c (mono_gc_cleanup): Use a separate event for waiting for the
30839 termination of the finalizer thread, since the previous method had
30840 race conditions. Fixes #49628.
30842 * gc.c (mono_gc_init): Use the same stacksize for the finalizer thread
30843 as for the other managed threads.
30845 2003-10-16 Martin Baulig <martin@ximian.com>
30847 * class.c (inflate_generic_signature): Copy `generic_param_count'
30850 * icall.c (ves_icall_MethodInfo_get_IsGenericMethodDefinition):
30853 * metadata.c (mono_metadata_parse_method_signature): Actually set
30854 the `method->generic_param_count' here.
30855 (mono_metadata_load_generic_params): Initialize `pklass' to NULL.
30857 2003-10-15 Zoltan Varga <vargaz@freemail.hu>
30859 * object.h: Add a new field to TypedRef to simplify the implementation
30860 of the REFANY opcodes in the JIT.
30862 * icall.c: Make use of the new field.
30864 * metadata.c (mono_type_size): Compute the size of TYPEDBYREF types
30867 2003-10-15 Martin Baulig <martin@ximian.com>
30869 * class.c (mono_class_from_gen_param): Renamed to
30870 mono_class_from_generic_parameter() and moved most of the
30871 functionality from mono_reflection_define_generic_parameter()
30872 here; ie. we create a "real" class here.
30873 (mono_class_from_mono_type): Only allow MONO_TYPE_VAR and
30874 MONO_TYPE_MVAR if mono_class_from_generic_parameter() has
30875 previously been called.
30877 * class.h (MonoGenericParam): Moved the declaration of this struct
30878 here from metadata.h and added `MonoMethod *method'.
30880 * icall.c (ves_icall_MonoType_get_DeclaringMethod): New
30883 * loader.c (mono_get_method_from_token): If we have any generic
30884 parameters, call mono_metadata_load_generic_params() to read them
30885 from the MONO_TABLE_GENERICPAR.
30887 * metadata.c (mono_metadata_load_generic_params): Added
30888 `MonoMethod *method' argument which is used MONO_TYPE_MVAR.
30890 * metadata.h (MonoMethodSignature): Replaced
30891 `MonoGenericInst *geninst' with `guint16 generic_param_count'.
30892 (MonoMethodHeader): Added `MonoGenericParam *gen_params'.
30894 * reflection.c (mono_reflection_define_generic_parameter): Moved
30895 most of the functionality into the new
30896 mono_class_from_generic_parameter(); set the `method' field if
30897 we're a method parameter.
30899 2003-10-13 Bernie Solomon <bernard@ugsolutions.com>
30901 * marshal.c (emit_struct_conv): if native size is 0
30904 2003-10-14 Martin Baulig <martin@ximian.com>
30906 * icall.c: The generics API has changed in the spec since it was
30907 added to System.Type; these modifications make it match the spec
30909 (ves_icall_Type_GetGenericParameters): Renamed to
30910 `ves_icall_Type_GetGenericArguments'.
30911 (ves_icall_Type_get_IsGenericTypeDefinition): New interncall.
30912 (ves_icall_MonoType_get_HasGenericParameteres): Renamed to
30913 `ves_icall_MonoType_get_HasGenericArguments'.
30914 (ves_icall_MonoType_get_IsUnboundGenericParameter): Renamed to
30915 `ves_icall_MonoType_get_IsGenericParameter'.
30916 (ves_icall_MonoType_get_HasUnboundGenericParameters): Removed;
30917 this is no interncall anymore.
30918 (ves_icall_TypeBuilder_get_IsUnboundGenericParameter): Renamed to
30919 `ves_icall_TypeBuilder_get_IsGenericParameter'.
30921 2003-10-14 Martin Baulig <martin@ximian.com>
30923 * reflection.c (mono_reflection_bind_generic_parameters): Also
30924 inflate generic methods if we're reading the class from IL.
30926 2003-10-13 Martin Baulig <martin@ximian.com>
30928 * reflection.c (mono_reflection_define_generic_parameter): This
30929 method isn't called directly from the icall anymore; take a
30930 `MonoReflectionAssemblyBuilder *' so we can use this for type and
30931 method generic parameters.
30932 (ReflectionMethodBuilder): Added `MonoArray *generic_param'.
30933 (method_builder_encode_signature): Encode generic parameters.
30934 (mono_image_get_method_info): Write generic params to the
30935 MONO_TABLE_GENERICPARAM table.
30937 * reflection.h (MonoReflectionMethodBuilder): Added
30938 `MonoArray *generic_params'.
30940 * metadata.h (MonoMethodSignature): Added `MonoGenericInst *geninst'.
30942 * icall.c (ves_icall_TypeBuilder_define_generic_parameter): Added
30943 wrapper for mono_reflection_define_generic_parameter().
30944 (ves_icall_MethodBuilder_define_generic_parameter): Likewise.
30946 2003-10-13 Zoltan Varga <vargaz@freemail.hu>
30948 * marshal.h: Add missing function to fix build.
30950 * marshal.c (mono_marshal_get_native_wrapper): Add support for
30951 the SetLastError pinvoke attribute.
30953 * marshal.c (mono_marshal_set_last_error): New helper function called
30954 by the generated code.
30956 * marshal.c (mono_mb_emit_branch): New helper function.
30958 * marshal.c (mono_mb_emit_exception): Added exception name parameter.
30960 * marshal.c (mono_marshal_get_managed_wrapper): Added support for
30961 classes as parameters and return values of delegates. Fixes #29256.
30963 2003-10-12 Bernie Solomon <bernard@ugsolutions.com>
30965 * locales.c: use gint32 in non HAVE_ICU case
30967 2003-10-11 Martin Baulig <martin@ximian.com>
30969 * mono-debug.c (mono_debug_add_method): Added a workaround for
30972 2003-10-10 Zoltan Varga <vargaz@freemail.hu>
30974 * marshal.c (mono_marshal_get_managed_wrapper): Under windows,
30975 delegates passed to native code must use the STDCALL calling
30976 convention. Fixes #35987.
30978 2003-10-10 Martin Baulig <martin@ximian.com>
30980 * class.c (inflate_generic_type): If we're inflating for a generic
30981 type instance (and not for a generic method), return
30982 MONO_TYPE_MVAR unchanged.
30984 2003-10-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
30986 * string-icalls.c: Join ignores null strings in the source array.
30987 * threadpool.[ch]: export busy_worker_threads, not mono_worker_threads.
30988 * threads.c: GetAvailableTheads is slightly more accurate.
30990 2003-10-09 Bernie Solomon <bernard@ugsolutions.com>
30992 * threads.h threads.c : add mono_threads_set_default_stacksize
30993 and pass default to CreateThread calls.
30995 2003-10-09 Dick Porter <dick@ximian.com>
30999 * locales.c: Internal calls for constructing CultureInfo and
31000 related objects from libicu (if its available.)
31002 2003-10-09 Zoltan Varga <vargaz@freemail.hu>
31004 * debug-helpers.c (wrapper_type_names): Add 'unknown' wrapper type.
31006 2003-10-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31008 * threadpool.c: added an argument to async_invoke_thread that is the
31009 item to process, pass the MonoAsyncResult to the thread start function
31010 when creating a new thread. This way we don't need to acquire any lock
31011 when we're creating a new thread. Readded a semaphore for faster
31012 response times (instead of that Sleep i added).
31014 2003-10-08 Bernie Solomon <bernard@ugsolutions.com>
31016 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
31017 get daylight change dates better on Windows, fix handling
31018 of platforms without tm_gmtoff.
31020 2003-10-06 Martin Baulig <martin@ximian.com>
31022 * class.c (inflate_generic_method): Renamed to
31023 mono_class_inflate_generic_method() and made public.
31024 (mono_class_init): Don't inflate the generic methods here.
31025 (mono_class_from_generic): Added `gboolean inflate_methods'
31026 argument. Inflate the methods here.
31028 * loader.c (mono_method_get_param_names): Ignore instances of
31029 generic types for the moment.
31031 * reflection.c (fixup_method): Added support for inflated methods.
31032 (mono_image_create_token): Use mono_image_get_methodref_token()
31033 for inflated methods.
31034 (mono_custom_attrs_from_param): Ignore instances of generic types
31036 (mono_reflection_bind_generic_parameters): New public function.
31037 Moved all the functionality from
31038 ves_icall_Type_BindGenericParameters() here and added support for
31040 (mono_reflection_define_generic_parameter): Initialize
31041 `klass->methods' here.
31043 * icall.c (ves_icall_Type_BindGenericParameters): Moved all the
31044 functionality into mono_reflection_define_generic_parameter().
31045 (ves_icall_Type_GetGenericTypeDefinition): If we're coming from a
31046 TypeBuilder, return that TypeBuilder.
31048 2003-10-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31050 * appdomain.c: removed mono_delegate_semaphore.
31053 (mono_thread_pool_add): moved hash table creation inside and the thread
31054 creation outside of the critical region.
31055 (mono_thread_pool_finish): removed obsolete code.
31056 (async_invoke_thread): don't use the semaphore. Use a plain Sleep and
31057 continue or exit the thread depending on the queue.
31059 2003-10-07 Bernie Solomon <bernard@ugsolutions.com>
31061 * metadata.c (mono_type_to_unmanaged): allow bools to marshal as I1
31062 marshal.c (emit_ptr_to_str_conv & mono_marshal_get_native_wrapper):
31063 handle more bool marshalling options
31065 2003-10-07 Zoltan Varga <vargaz@freemail.hu>
31067 * marshal.c (mono_marshal_get_native_wrapper): Fix marshalling of
31068 arrays of structs. Also add a more descriptive error message when
31069 a structure member is marshalled as LPArray.
31071 2003-10-06 Zoltan Varga <vargaz@freemail.hu>
31073 * marshal.c (mono_marshal_get_native_wrapper): Add support for
31074 marshalling arrays of complex types. Fixes #29098. Also remove an
31075 usused and incomplete function.
31077 Mon Oct 6 15:38:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31079 * gc.c: report heap_size - free_bytes as total memory allocated
31082 2003-10-05 Zoltan Varga <vargaz@freemail.hu>
31084 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Finally
31085 fix timezone handling problems on Windows.
31087 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Avoid
31088 asserts when the year is outside the range handled by ms the functions.
31090 * class.c (setup_interface_offsets): If the class is an interface,
31091 fill out its interface_offsets slot.
31093 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31095 * threadpool.c: mark threadpool threads as background.
31097 2003-10-03 Bernie Solomon <bernard@ugsolutions.com>
31099 * decimal.c - define DECINLINE to nothing if not using GCC
31101 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
31103 * assembly.c: More refcount fixes.
31105 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31107 * string-icalls.c: if we're not trimming, return the same string.
31108 When not splitting, don't create a new string.
31110 2003-10-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31113 (mono_image_open): increment the ref_count inside the critical section.
31115 2003-10-02 Zoltan Varga <vargaz@freemail.hu>
31117 * image.c (mono_image_open): Fix reference counting bug.
31119 2003-09-30 Bernie Solomon <bernard@ugsolutions.com>
31121 * marshal.c (mono_marshal_type_size) struct alignment changed for
31122 64bit machines. (emit_ptr_to_str_conv) Fix bool conversions for
31123 64bits. Avoid leak in mono_marshal_get_native_wrapper when
31124 mono_lookup_pinvoke_call throws.
31126 2003-09-30 Zoltan Varga <vargaz@freemail.hu>
31128 * reflection.c (mono_reflection_parse_type): Fix #49114.
31130 * file-io.c (ves_icall_System_IO_MonoIO_GetFileAttributes): Add
31131 temporary workaround for cygwin header problem.
31133 * object.c (mono_object_isinst): Synchronize this with the code
31134 generated by the JIT for casts.
31136 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
31138 * reflection.c (encode_type): Fix #38332.
31140 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
31142 * marshal.c (mono_marshal_method_from_wrapper): New function to return
31143 the original method from the wrapper method.
31145 2003-09-25 Martin Baulig <martin@ximian.com>
31147 * icall.c (ves_icall_Type_IsGenericTypeDefinition): Removed this
31148 interncall since it was identical to `Type.GetGenericTypeDefinition()'.
31149 (ves_icall_Type_get_IsGenericInstance): New interncall.
31151 2003-09-24 Bernie Solomon <bernard@ugsolutions.com>
31153 * object.c: fix cast warning in big endian code.
31155 2003-09-19 Jackson Harper <jackson@latitudegeo.com>
31157 * icall.c: Timezone patch from Zoltan Varga (vargaz@freemail.hu)
31159 2003-09-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31161 * assembly.c: don't call check_env from mono_assembly_load. It's
31162 already done once in mono_assemblies_init and may cause headaches when
31163 multiple threads are loading assemblies.
31165 2003-09-19 Martin Baulig <martin@ximian.com>
31167 * reflection.c (mono_reflection_define_generic_parameter): Don't
31168 allocate `klass->methods', set `klass->flags' to
31169 TYPE_ATTRIBUTE_INTERFACE, not TYPE_ATTRIBUTE_ABSTRACT.
31171 2003-09-18 Martin Baulig <martin@ximian.com>
31173 * class.c (mono_class_init): Don't create `class->methods' if it's
31174 already initialized.
31176 * metadata.c (mono_metadata_load_generic_params): Make this
31179 * reflection.c (mono_reflection_define_generic_parameter): Set
31180 parent class and interfaces from the constraints.
31182 * reflection.h (MonoReflectionGenericParam): Added `guint32 flags'
31183 to keep this struct in sync with the declaration in TypeBuilder.cs.
31185 2003-09-17 Martin Baulig <martin@ximian.com>
31187 * metadata.h (MonoType): Replaced the data's `int type_param'
31188 field with `MonoGenericParam *generic_param'.
31189 (MonoGenericParam): Added `MonoClass *klass'.
31191 * class.c (mono_class_from_gen_param): Removed the
31192 `MonoImage *image' and `int type_num' arguments.
31194 * metadata.c (mono_metadata_parse_generic_param): New static
31195 method; creates a MonoGenericParam which just contains the index.
31196 (do_mono_metadata_parse_type): Call
31197 mono_metadata_parse_generic_param() for MONO_TYPE_VAR and
31200 * reflection.c (mono_image_typedef_or_ref): Generic type
31201 parameters may be in the same assembly, but never use a typedef
31203 (mono_reflection_define_generic_parameter): We're now creating a
31204 "real" class for the type parameter; it's now safe to call
31205 mono_class_from_mono_type() on the class'es type, it'll do the
31208 2003-09-16 Martin Baulig <martin@ximian.com>
31210 * mono-debug-debugger.c (allocate_symbol_file_entry): Initialize
31211 `symfile->range_entry_size' and `symfile->class_entry_size' here;
31212 the `symfile' data structure must be fully initialized before it
31213 gets added to the table.
31215 2003-09-15 Zoltan Varga <vargaz@freemail.hu>
31217 * icall.c (ves_icall_Type_IsArrayImpl): Added MONO_ARCH_SAVE_REGS.
31219 * appdomain.h domain.c (MonoDomain): Added new hashtable to store the
31220 class init trampolines.
31222 2003-09-11 Zoltan Varga <vargaz@freemail.hu>
31224 * profiler.c (mono_profiler_load): Added '-time' and '-alloc' options
31225 to the built-in profiler to turn off time and allocation profiling
31228 2003-09-10 Zoltan Varga <vargaz@freemail.hu>
31230 * profiler.c (mono_profiler_coverage_alloc): Use NULL instead of
31233 * debug-helpers.c (mono_method_full_name): Print the wrapper type
31234 in human readable form.
31236 2003-09-08 Zoltan Varga <vargaz@freemail.hu>
31238 * reflection.c icall.c: Fixed warnings.
31240 * image.c (load_class_names): Use a temporary hash table to hold the
31241 namespaces in order to avoid doing many string comparisons.
31243 * image.h: Fix typo.
31245 * image.c class.c rawbuffer.c reflection.c threads.c verify.c domain.c:
31246 Pass NULL instead of g_direct_equal to the GHashTable constructor
31247 since the NULL case is short-circuited inside g_hash_table_lookup,
31248 leading to better performance.
31250 * metadata.c (mono_metadata_custom_attrs_from_index): New function to
31251 obtain the first custom attribute for a given index. Depends on the
31252 CustomAttribute table being sorted by the parent field.
31254 * reflection.c (mono_custom_attrs_from_index): Use the new function
31255 for better performance.
31257 2003-09-07 Martin Baulig <martin@ximian.com>
31259 * class.c (mono_class_init): If we're a generic instance, inflate
31260 all our methods instead of loading them from the image.
31261 (mono_class_from_generic): Set `class->methods = gklass->methods'.
31263 2003-09-07 Martin Baulig <martin@ximian.com>
31265 * mono-debug-debugger.c: Added support for constructors.
31267 2003-09-06 Martin Baulig <martin@ximian.com>
31269 * icall.c (ves_icall_TypeBuilder_get_IsUnboundGenericParameter):
31272 * reflection.c (mono_reflection_setup_generic_class): Call
31273 ensure_runtime_vtable() to create the vtable.
31275 2003-09-05 Martin Baulig <martin@ximian.com>
31277 * class.c (mono_class_array_element_size): Added MONO_TYPE_VAR and
31280 2003-09-04 Martin Baulig <martin@ximian.com>
31282 * reflection.c (mono_reflection_define_generic_parameter): Generic
31283 parameters start with zero.
31285 2003-09-04 Martin Baulig <martin@ximian.com>
31287 * metadata.c (mono_type_size): Added MONO_TYPE_VAR and MONO_TYPE_MVAR.
31289 * reflection.h (MonoReflectionGenericParam): New typedef.
31290 (MonoReflectionTypeBuilder): Added `generic_params' fields to get
31291 the generic parameters from the managed TypeBuilder.
31293 * reflection.c (mono_reflection_define_generic_parameter): New function.
31294 (mono_reflection_create_runtime_class): Encode generic parameters.
31295 (mono_reflection_setup_generic_class): New function; this is
31296 called after adding adding all generic params to the TypeBuilder.
31297 (encode_type): Added MONO_TYPE_VAR.
31299 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
31301 * class.h class.c (mono_class_needs_cctor_run): Moved this method
31304 * assembly.h assembly.c: Moved the AOT loading code into an assembly
31307 2003-09-03 Zoltan Varga <vargaz@freemail.hu>
31309 * reflection.h reflection.c class.h class.c: Delete duplicate
31310 definition of mono_type_get_name () from reflection.c and export the
31313 * class.c: Class loading fixes from Bernie Solomon
31314 (bernard@ugsolutions.com).
31316 * reflection.c: Endianness fixes from Bernie Solomon
31317 (bernard@ugsolutions.com).
31319 2003-09-01 Zoltan Varga <vargaz@freemail.hu>
31321 * assembly.h assembly.c: Define a file format version for AOT
31324 * assembly.c (mono_assembly_open): Fix leaking of MonoImage-s.
31326 * appdomain.h (MonoJitInfo): New field to determine whenever the
31327 code is domain neutral.
31329 2003-08-31 Miguel de Icaza <miguel@ximian.com>
31331 * marshal.c (emit_struct_conv): Add MONO_TYPE_CHAR
31333 2003-08-30 Zoltan Varga <vargaz@freemail.hu>
31335 * icall.c (ves_icall_System_Web_Util_ICalls_get_machine_install_dir):
31336 (ves_icall_System_Configuration_DefaultConfig_get_machine_config_path):
31337 Avoid caching the result since strings must be domain specific. Fixes
31340 2003-08-29 Zoltan Varga <vargaz@freemail.hu>
31342 * marshal.c (mono_marshal_init): Make this callable multiple times
31343 since it is hard to find a correct place to call it.
31345 * object.c (mono_runtime_class_init): Execute static constructors in
31346 the correct appdomain.
31348 * image.c (build_guid_table): Handle the case when multiple images have
31351 2003-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31353 * icall.c: added a couple of icalls for System.Web.
31355 2003-08-28 Martin Baulig <martin@ximian.com>
31357 * icall.c (ves_icall_Type_BindGenericParameters): Use
31358 `klass->generic_inst' instead of `&klass->byval_arg' in the
31359 mono_type_get_object() call. The returned type must be
31360 MONO_TYPE_GENERICINST and not MONO_TYPE_CLASS.
31362 2003-08-27 Zoltan Varga <vargaz@freemail.hu>
31366 * object.c (mono_class_proxy_vtable): Make it thread safe.
31368 * pedump.c: Fix warning.
31370 * object.c appdomain.h: Get rid of metadata_section.
31371 It is no longer needed and it was causing deadlocks with domain->lock.
31373 * appdomain.c (add_assemblies_to_domain): Make it thread safe.
31375 2003-08-26 Martin Baulig <martin@ximian.com>
31377 * pedump.c (main): Don't call mono_image_close() if `verify_pe'.
31379 2003-08-26 Martin Baulig <martin@ximian.com>
31381 * pedump.c (main): Call mono_metadata_init(),
31382 mono_raw_buffer_init(), mono_images_init(), mono_assemblies_init()
31383 and mono_loader_init().
31385 2003-08-26 Zoltan Varga <vargaz@freemail.hu>
31387 * loader.h: Add missing include to fix build.
31389 * image.h: mono_image_load_references is no more.
31391 * assembly.c: Reworked assembly loading to make it really thread safe.
31392 After these changes, the assembly returned by mono_assembly_open is
31393 fully initialized, i.e. all its references assemblies are loaded.
31395 * assembly.c (mono_image_load_references): Renamed to
31396 mono_assembly_load_references, and made private, since clients no
31397 longer need to call it.
31399 * class.c: Removed calls to mono_assembly_load_references, since it was
31400 a source of deadlocks.
31402 * loader.h loader.c class.h class.c: Protect data structures using a
31403 new lock, the loader lock.
31405 * class.c (mono_class_setup_vtable): Create temporary hash tables and
31406 GPtrArrays only when needed.
31408 * class.c (mono_class_layout_fields): Ignore the dummy field inserted
31409 into empty structures by mcs. Fixes pinvoke7.cs.
31411 * domain.c (mono_init): Call a new initialization function.
31413 * appdomain.c (mono_runtime_init): Call the new initializer function
31414 of the marshal module.
31416 * marshal.c (mono_marshal_load_type_info): Ignore the dummy field
31417 inserted into empty structures by mcs. Fixes pinvoke7.cs.
31419 * marshal.h marshal.c: Added locks around the wrapper caches to make
31420 this module thread safe.
31422 * icall.c (ves_icall_InternalInvoke): Method wrappers doesn't require a
31423 this argument. Fixes pinvoke1.exe.
31425 2003-08-25 Lluis Sanchez <lluis@ximian.com>
31427 * object.h: Added call_type field to MonoMethodMessage and the corresponding
31428 enumeration of values. Removed fields to store remote call output values in
31429 MonoAsyncResult. Not needed any more.
31430 * object.c: Initialize call_type and async_result fields in mono_message_init.
31431 * marshal.c: mono_delegate_begin_invoke(): for proxies, set call_type before
31432 dispatching the message.
31433 mono_delegate_end_invoke (): delegate to the proxy the work of waiting for the
31434 async call to finish. To do it use a message with EndInvoke call type.
31436 2003-08-25 Zoltan Varga <vargaz@freemail.hu>
31438 * loader.h loader.c (mono_method_hash_marhal_info): New function which
31439 determines whenever a method has marshalling info.
31441 2003-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31443 * assembly.c: fix the build on windows.
31445 2003-08-22 Lluis Sanchez <lluis@ximian.com>
31447 * object.cs: Fixed bug #47785.
31449 2003-08-22 Jackson Harper <jackson@latitudegeo.com>
31451 * string-icalls.c (StringReplace): If their are no occurances of
31452 the old string found return a reference to the supplied
31453 string. This saves some memory and matches MS behavoir.
31455 2003-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31457 * socket-io.c: fixed compilation for systems that define AF_INET6
31458 and don't define SOL_IP/SOL_IPV6.
31460 2003-08-21 Zoltan Varga <vargaz@freemail.hu>
31462 * object.c (mono_object_isinst): Fix casts to TransparentProxy in
31463 the interpreter. Patch by Bernie Solomon (bernard@ugsolutions.com).
31465 * rawbuffer.c rawbuffer.h: Make this module thread safe.
31467 * domain.c: Make this module thread safe.
31469 * domain.c (mono_init): Call new initialization function.
31471 * icall.c (ves_icall_System_Array_SetValueImpl): Check types for
31472 reference types too. Fixes #38812.
31474 * image.c (mono_image_init): Fixed warnings.
31476 * class.c (mono_class_from_typeref): Handle assembly load failure
31479 * appdomain.c (add_assemblies_to_domain): Handle the case when
31480 the references of an assembly are not yet loaded.
31482 * metadata.c image.c assembly.c: Moved initialization of global
31483 variables to a separate function called at startup since lazy
31484 initialization of these variables is not thread safe.
31486 * image.c assembly.c: Made this module thread safe by adding locks in
31487 the appropriate places.
31489 * domain.c (mono_init): Call the new initialization functions of the
31492 2003-08-20 Lluis Sanchez Gual <lluis@ximian.com>
31494 * marshal.c: mono_delegate_begin_invoke(): If the target is a proxy,
31495 make a direct call. It is proxy's work to make the call asynchronous.
31496 mono_delegate_end_invoke(): If the targe is a proxy, just collect
31498 * object.cs: mono_method_call_message_new(): read AsyncResult and
31499 state object from parameters list, if this info is requested.
31500 * object.h: Added fields to store remote call output values in
31501 MonoAsyncResult. Added AsyncResult field in MonoMethodMessage.
31503 Wed Aug 20 12:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31505 * object.h: add needed fields to MonoThread.
31506 * threads.c, threads.h: allow registering a function to cleanup data
31507 allocated per thread by the JIT.
31509 Tue Aug 19 18:22:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31511 * loader.h: portability fix by Bernie Solomon
31512 * <bernard@ugsolutions.com>.
31514 2003-08-16 Zoltan Varga <vargaz@freemail.hu>
31516 * reflection.h reflection.c (mono_param_get_objects): Changed this to
31517 return a MonoArray. This simplifies the code and also ensures that
31518 the cache allways contains an object reference as a value.
31520 * icall.c (ves_icall_get_parameter_info): Simplified using the new
31523 2003-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31525 * socket-io.c: patch by Bernie Solomon <bernard@ugsolutions.com> that
31526 fixes a problem with byte ordering when getting the address family for
31529 2003-08-15 Zoltan Varga <vargaz@freemail.hu>
31531 * .cvsignore: Added monosn.
31533 * reflection.h reflection.c loader.c: Added support for parameter
31534 marshalling to dynamically created types. Fixes #47295.
31536 Fri Aug 15 11:42:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
31538 * rand.c: remove useless warnings.
31540 Wed Aug 13 15:49:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31542 * class.c: implemented ldtoken for methods and fieldrefs.
31544 2003-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31546 * threadpool.c: when mono_async_invoke was called, no one took care of
31547 monitoring the queue. So if the method invoked took some time and we
31548 got new async invoke requests after 500 ms (the thread created waited
31549 that long in WaitForSingleObject), the new async invoke was not called
31550 until the previous one finished.
31552 This is fixed now. Thanks to Totte for helping with it.
31554 2003-08-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31556 * threadpool.c: set threadpool_thread to TRUE. Patch by totte.
31558 2003-08-11 Martin Baulig <martin@ximian.com>
31560 * mono-debug-debugger.c (mono_debugger_lookup_type): New function.
31562 2003-08-06 Martin Baulig <martin@ximian.com>
31564 * mono-debug-debugger.c: Added support for static fields,
31565 properties and methods.
31567 2003-08-06 Martin Baulig <martin@ximian.com>
31569 * mono-debug-debugger.c: Don't store the MonoString's vtable to
31570 make this work for applications with multiple application domains.
31572 2003-08-04 Martin Baulig <martin@ximian.com>
31574 * mono-debug-debugger.c: Completely reworked the type support; the
31575 most important thing is that we're now just using one single
31576 `MonoType' instance per type.
31578 Sat Aug 2 13:05:27 BST 2003 Malte Hildingson <malte@amy.udd.htu.se>
31580 * mono-endian.h, mono-endian.c, icall.c: Added icall
31581 ves_icall_System_Double_AssertEndianity to assert double word endianity
31582 on ARM (FPA). The icall uses a macro defined in mono-endian.h.
31584 Fri Aug 1 16:51:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31586 * class.c, class.h, reflection.c, metadata.c, icall.c: more generics
31587 support, icalls and fixes.
31589 2003-07-31 Miguel de Icaza <miguel@ximian.com>
31591 * unicode.c (ves_icall_System_Char_IsPunctuation): The set of
31592 classes that are a punctuation character in .NET is not the same a
31595 Tue Jul 29 18:07:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
31597 * socket-io.c: ipv6 portability fixes from Felix Ortga (guile@lared.es).
31599 2003-07-29 Miguel de Icaza <miguel@ximian.com>
31601 * icall.c: Add new MemCopy internalcall.
31602 (ves_icall_System_Reflection_Assembly_GetManifestResourceInternal):
31603 Simplified code; It is not necessary to handle all the cases here,
31604 as the C# code takes care of it. Only handle the case of the name
31605 resource embedded into the assembly.
31607 Changed signature to return the data pointer and the size of the
31610 2003-07-26 Miguel de Icaza <miguel@ximian.com>
31612 * reflection.c (mono_image_get_method_info): Allow for 0x40 to be
31613 encoded. (Partition II.22.1.7: PInvokeAttribute:SupportsLastErr).
31615 2003-07-29 Lluis Sanchez Gual <lluis@ximian.com>
31617 * socket-io.c: ignore EINTR error in select.
31619 Tue Jul 29 15:25:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
31621 * class.h, class.c: removed unused subclasses field in MonoClass.
31623 2003-07-29 Lluis Sanchez Gual <lluis@ximian.com>
31625 * icall.c: improve fix of get_base_definition(). If the parent class
31626 doesn't have the mehod, look at the parent of the parent.
31627 * object.c: mono_message_init(): use the attribute PARAM_ATTRIBUTE_OUT
31628 to check if a parameter is an in or out parameter
31629 (PARAM_ATTRIBUTE_IN is not set by default).
31630 mono_method_return_message_restore(): Use mono_class_value_size to
31631 get the size of a value type. mono_type_stack_size (parameterType)
31632 does not return the correct value if parameterType is byRef.
31633 mono_load_remote_field(), mono_load_remote_field_new(),
31634 mono_store_remote_field(), mono_store_remote_field_new():
31635 raise exception if the remote call returns an exception.
31637 2003-07-28 Martin Baulig <martin@ximian.com>
31639 * mono-debug-debugger.c (mono_debugger_runtime_invoke): New
31640 method. This is a wrapper around mono_runtime_invoke() which
31641 boxes the instance object if neccessary.
31643 Fri Jul 25 19:14:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31645 * class.c, class.h, image.c, image.h, loader.c, metadata.c,
31646 metadata.h, row-indexes.h, verify.c: first cut of generics support.
31648 Thu Jul 24 11:34:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31650 * icall.c: disable mcs bug workaround.
31652 2003-07-21 Miguel de Icaza <miguel@ximian.com>
31654 * object.c (mono_runtime_class_init): Take the metadata_section
31655 mutex before obtaining the domain mutex.
31657 * appdomain.h: Added definition of metadata_section mutex here.
31659 * object.c: define metadata_mutex here.
31661 2003-07-24 Ravi Pratap <ravi@ximian.com>
31663 * icall.c: Remove the FIXED_MCS_45127 workarounds - this has been
31666 2003-07-24 Lluis Sanchez Gual <lluis@ximian.com>
31668 * reflection.c: Fix bug #46669
31670 2003-07-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31675 * object.h: fill in the type name for TypeLoadException.
31677 2003-07-23 Ravi Pratap <ravi@ximian.com>
31679 * class.c: Fixes from Paolo in response to bug #45415 (Subclass
31680 relationship between TypeBuilders while compiling corlib) and bug
31681 45993 (Array types returned from the runtime while compiling
31682 corlib were from the loaded corlib).
31684 2003-07-22 Martin Baulig <martin@ximian.com>
31686 * mono-debug-debugger.c: Reworked the type support a bit more;
31687 distinguish between types and classes.
31689 Tue Jul 22 15:48:50 CEST 2003 Paolo Molaro <lupus@ximian.com>
31691 * icall.c: add IsArrayImpl icall.
31693 2003-07-22 Zoltan Varga <vargaz@freemail.hu>
31695 * class.c (mono_class_layout_fields): Fix gc aware auto layout by
31696 initializing real_size only once. Also fix bug #46602.
31698 2003-07-21 Jerome Laban <jlaban@wanadoo.fr>
31700 * object.c: Renamed mono_metadata_section to metadata_section.
31702 2003-07-21 Lluis Sanchez Gual <lluis@ximian.com>
31704 * icall.c: in MS.NET ves_icall_Type_GetInterfaces returns an
31705 empty array if the type is an array. Fixed.
31706 ves_icall_MonoMethod_get_base_definition: if the base method
31707 is abstract, get the MethodInfo from the list of methods of
31709 * reflection.c: ParameterInfo.PositionImpl should be zero-based
31710 and it was 1-based. Fixed in mono_param_get_objects.
31712 2003-07-20 Martin Baulig <martin@ximian.com>
31714 * mono-debug.h: Set version number to 31.
31715 (mono_debug_init): Added `MonoDomain *' argument.
31717 * mono-debug-debugger.c: Reworked the type support; explicitly
31718 tell the debugger about builtin types; pass the `klass' address to
31721 2003-07-20 Jackson Harper <jackson@latitudegeo.com>
31723 * image.c: Allow new metadata tables to be loaded without a
31724 warning. Also update the warning message to give the new constant value.
31726 Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
31728 * class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c,
31729 metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c:
31730 array type representation changes.
31732 Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31734 * icall.c, appdomain.h, appdomain.c: support full runtime shutdown
31735 on Environment.Exit () call.
31737 Thu Jul 17 17:21:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
31739 * icall.c, reflection.h, reflection.c, verify.c: cleanups,
31740 requires a matching corlib.
31742 2003-07-17 Lluis Sanchez Gual <lluis@ximian.com>
31744 * Changelog: My editor decided to add a CR to each line. Sorry about that.
31745 Committed again without the CRs.
31747 2003-07-17 Lluis Sanchez Gual <lluis@ximian.com>
31749 * socket-io.c: Get system_assembly using mono_image_loaded(), instead
31750 getting it from the "this" socket instance. Did not work
31751 if the socket is a subclass of Socket.
31752 Also fixed bug #35371.
31754 Thu Jul 17 13:39:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31756 * metadata.c: fixed size for TypedByRef.
31757 * loader.c: when searching for a method, consider the vararg amrker.
31758 * unicode.c, decimal.c: constify some arrays.
31760 2003-07-15 Dick Porter <dick@ximian.com>
31762 * socket-io.c: Fixed compilation for gcc < 3.2.
31764 Fixed compilation for machines that don't have AF_INET6 (thanks to
31765 Bernie Solomon <bernard@ugsolutions.com> for that part.)
31767 Fixed compile warnings.
31769 Fixed formatting and line endings.
31771 2003-07-14 Jerome Laban <jlaban@wanadoo.fr>
31774 * socket-io.c: Added IPv6 support.
31776 2003-07-13 Zoltan Varga <vargaz@freemail.hu>
31778 * class.c (mono_class_is_assignable_from): New function to implement
31779 the is_assignable_from logic. Used by mono_object_isinst,
31780 Type::IsAssignableFrom () and the interpreter.
31782 * class.c (mono_class_is_subclass_of): Make all classes a subclass of
31783 Object, even interfaces.
31785 * object.c (mono_object_isinst): Implement in terms of
31786 is_assignable_from.
31788 * icall.c (ves_icall_type_is_assignable_from): New icall.
31790 2003-07-11 Zoltan Varga <vargaz@freemail.hu>
31792 * domain.c (foreach_domain): fix compiler warning.
31794 2003-07-11 Dietmar Maurer <dietmar@ximian.com>
31796 * image.c (load_metadata_ptrs): use g_strndup because strndup is
31797 not available on all plattforms
31799 2003-07-10 Zoltan Varga <vargaz@freemail.hu>
31801 * image.h image.c: Store the metadata version string in MonoImage.
31802 * icall.c: New icall to retrieve the image version.
31803 * reflection.c (create_dynamic_image): Fill in the image version field
31804 * reflection.c (build_compressed_metadata): Use the image version
31805 from the image structure.
31807 2003-07-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31809 * appdomain.c: modified comment.
31810 * gc.c: finalizer_thread can call finalizers even when finished == TRUE.
31811 That will be its last iteration when mono_gc_cleanup is called from
31812 mono_runtime_cleanup and before the domain is unloaded.
31816 2003-07-04 Dietmar Maurer <dietmar@ximian.com>
31818 * marshal.c (mono_marshal_get_native_wrapper): fixes for [out]
31821 Thu Jul 3 17:22:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31823 * object.c, file-io.c, metadata.c, mono-endian.h, reflection.c,
31824 rawbuffer.c: more 64 bit and picky (or old) compiler fixes from
31825 Bernie Solomon <bernard@ugsolutions.com>.
31827 Thu Jul 3 17:17:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
31829 * object.c, object.h: provide mono_object_new_fast() for faster
31830 allocation in some special cases.
31832 Wed Jul 2 13:21:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
31834 * object.h, reflection.h, verify.c: fixes for some 64bit issues,
31835 mostly from a patch by Laramie Leavitt <lar@leavitt.us>.
31837 Tue Jul 1 21:24:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
31839 * threadpool.c: fix leaks.
31841 2003-07-01 Dick Porter <dick@ximian.com>
31843 * threadpool.c (mono_async_invoke): Use mono_g_hash_table_remove when
31844 using MonoGHashTables. Fixes threadpool bug posted to list.
31846 Tue Jul 1 11:45:40 CEST 2003 Paolo Molaro <lupus@ximian.com>
31848 * image.h, image.c: added support to load an assembly from a byte array.
31849 * Makefile.am, assembly.c, make-bundle.pl, sample-bundle: added
31850 assembly bundle support.
31852 2003-06-27 Dietmar Maurer <dietmar@ximian.com>
31854 * threadpool.c (mono_thread_pool_add): keep a reference to the
31855 AsyncResult to prevent GC
31857 Thu Jun 26 12:13:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
31859 * class.c: leak fix.
31861 2003-06-25 Dick Porter <dick@ximian.com>
31863 * threadpool.c (mono_thread_pool_add): Don't set up a finaliser
31864 for the async object, the WaitHandle object will close the handle.
31867 Wed Jun 25 18:12:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
31869 * class.c: in mono_array_class_get (), lookup from the hash with the
31870 same type we insert: this works around a bug in
31871 mono_metadata_type_hash() with SZARRAY and fixes a leak reported by
31872 lluis. The real fix will have to wait for after the release.
31874 Wed Jun 25 13:14:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
31876 * icall.c: fix memory leak when getting type members.
31878 Mon Jun 23 16:12:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31880 * reflection.c: added more pubtoken special cases.
31882 Mon Jun 23 15:29:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
31884 * class.c: handle field offset correctly when class size
31885 is set (bug# 45182, partially from a patch by jlaban@wanadoo.Fr (Jerome Laban)).
31887 2003-06-20 Martin Baulig <martin@ximian.com>
31889 * mono-debug-debugger.h (MonoDebuggerSymbolFile): Added `MonoImage
31892 2003-06-20 Martin Baulig <martin@ximian.com>
31894 * image.h, mono-debug-debugger.h: Fixed compiler warnings.
31896 2003-06-20 Martin Baulig <martin@ximian.com>
31898 * mono-debug.h (MONO_DEBUG_VAR_ADDRESS_MODE_STACK): Removed. We
31899 just distinguish between variables in registers and variables at
31900 an offset relative to a register.
31902 2003-06-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
31904 * icall.c: #ifdef out latest changes until mcs is fixed.
31906 Thu Jun 19 11:03:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
31908 * icall.c: return members in metadata order.
31910 Wed Jun 18 15:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
31912 * icall.c: avoid infinite loop in GetTimeZoneData.
31914 Wed Jun 18 12:47:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
31916 * icall.c: added Marshal.Prelink/All icalls.
31918 Wed Jun 18 12:17:48 CEST 2003 Paolo Molaro <lupus@ximian.com>
31920 * object.c, object.h: fix warnings and do some overflow checking
31921 when creating arrays.
31923 2003-06-17 Dick Porter <dick@ximian.com>
31926 * file-io.c: File attributes need to be tweaked slightly when
31927 passed from the managed to the w32 world.
31929 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
31930 * profiler.h profiler-private.h profiler.c: Rework last patch
31931 based on suggestion by Paolo.
31933 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
31935 * profiler.h profiler-private.h profiler.c: Added infrastructure for
31936 instruction level coverage data collection.
31937 * profiler.h profiler.c (: Added new callback function which can be
31938 used by the profiler to limit which functions should have coverage
31940 * profiler.c (mono_profiler_load): Call g_module_build_path to
31941 generate the file name of the profiler library.
31943 Mon Jun 16 18:11:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
31945 * profiler.c, profiler.h, profiler-private.h: added basic block
31946 coverage profiling API.
31948 2003-06-15 Zoltan Varga <vargaz@freemail.hu>
31950 * reflection.c (mono_reflection_create_runtime_class): Add support
31951 for events in dynamically generated code.
31953 * gc.c: Start GCHandle indexes from 1, since 0 means the handle is
31956 Sat Jun 14 19:01:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
31958 * icall.c: when getting timezone info, return reasonable values if we
31959 can't get the actual data.
31961 2003-06-14 Dick Porter <dick@ximian.com>
31963 * threads.c (start_wrapper): Remove the reference to the thread
31964 object in the TLS data, so the thread object can be finalized.
31965 This won't be reached if the thread threw an uncaught exception,
31966 so those thread handles will stay referenced :-( (This is due to
31967 missing support for scanning thread-specific data in the Boehm GC
31968 - the io-layer keeps a GC-visible hash of pointers to TLS data.)
31970 Sat Jun 14 13:16:17 CEST 2003 Paolo Molaro <lupus@ximian.com>
31972 * reflection.c: ensure streams and tables are first allocated with
31973 ALLOC_ATOMIC (GC_realloc uses plain GC_malloc otherwise).
31975 Sat Jun 14 13:13:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
31977 * icall.c: fixed GetElementType for byrefs (bug# 44792).
31979 2003-06-13 Zoltan Varga <vargaz@freemail.hu>
31981 * reflection.c (mono_reflection_create_runtime_class): Add support for
31982 properties to dynamically created classes.
31983 * reflection.c: Fix a few places where non-MonoObjects were inserted
31984 into the tokens hashtable.
31986 Fri Jun 13 19:10:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
31988 * object.c: some support to handle out of memory exceptions.
31990 2003-06-12 Dietmar Maurer <dietmar@ximian.com>
31992 * marshal.c (mono_marshal_get_native_wrapper): support reference
31995 Wed Jun 11 18:32:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
31997 * object.h, object.c: more portability stuff from Bernie Solomon.
31998 Unexport mono_object_allocate(). Added mono_object_unbox ().
31999 Set exitcode when an unhandled exception is thrown.
32001 2003-06-11 Dietmar Maurer <dietmar@ximian.com>
32003 * marshal.c (mono_marshal_get_native_wrapper): use custom
32004 marshaler for return types.
32006 2003-06-10 Dick Porter <dick@ximian.com>
32008 * socket-io.c: Don't assume that one of struct ip_mreqn or struct
32009 ip_mreq is available
32011 Tue Jun 10 17:35:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
32013 * debug-mono-symfile.c, marshal.c, metadata.c, monitor.c,
32014 mono-debug-debugger.c, mono-debug.c, process.c: portability fixes
32015 by Bernie Solomon <bernard@ugsolutions.com>.
32017 2003-06-10 Zoltan Varga <vargaz@freemail.hu>
32019 * gc.c (mono_gc_init): Avoid error message on shutdown when
32020 GC_DONT_GC=1 is used.
32022 * icall.c (ves_icall_System_Reflection_Module_GetGuidInternal):
32023 New icall to return the GUID of a module.
32025 Mon Jun 9 19:33:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
32027 * class.c: ensure instance size always includes the parent's size
32028 even whem class size is set explicitly (fixes bug#44294).
32030 Thu Jun 5 19:51:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32032 * profiler.h, profiler.c: made the simple profiler thread-safe,
32033 get more accurate timing info. Allow the loading of an
32034 externally-developed profiler module.
32036 2003-06-05 Dietmar Maurer <dietmar@ximian.com>
32038 * marshal.c (mono_marshal_get_native_wrapper): improved
32039 class/byref arguments.
32040 (mono_marshal_get_native_wrapper): better string marshaling support.
32042 Wed Jun 4 18:01:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
32044 * class.c: ensure .pack and .size are handled correctly and
32045 simplified layout of static fields.
32047 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
32050 (ves_icall_System_AppDomainSetup_InitAppDomainSetup): fix for bug 42934
32052 * loader.c (mono_lookup_pinvoke_call): look for modules in the
32053 current directory (fix bug 44008)
32055 2003-06-03 Dietmar Maurer <dietmar@ximian.com>
32057 * marshal.c (mono_marshal_get_native_wrapper): started support for
32059 (mono_delegate_to_ftnptr): consider marshalling specifications
32061 Tue Jun 3 11:17:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
32063 * reflection.c, reflection.h: emit custom marshal info.
32065 2003-06-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32067 * object.c: free the GError.
32068 * icall.c: added CloseEvent_internal.
32070 (ves_icall_System_Threading_Events_CloseEvent_internal): new internal
32073 2003-06-01 Zoltan Varga <vargaz@freemail.hu>
32075 * loader.c (mono_method_get_signature): Add support for dynamic
32078 Sat May 31 15:22:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
32080 * reflection.c: fixed bug #43905.
32082 Fri May 30 12:56:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
32084 * class.c, domain.c, icall.c, metadata.h, object.h: support for
32085 handling TypedReference and ArgIterator.
32086 * loader.c, loader.h: added function to get signature at call site.
32088 Thu May 29 11:34:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32090 * metadata.c, metadata.h, private.h, tokentype.h, loader.c: make more
32091 data readonly. Buglets and warning fixes. Some MethodSpec support.
32093 Tue May 27 16:34:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
32095 * class.h, class.c, object.c: remove relative numbering support.
32097 2003-05-26 Miguel de Icaza <miguel@ximian.com>
32099 * marshal.c (mono_marshal_get_native_wrapper): For now, do not
32100 free the string, until we get a chance to fix Gtk#
32102 2003-05-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32104 * marshal.c: revert last patch.
32106 Mon May 26 20:21:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
32108 * icall.c: updates for new mono_class_vtable() not calling
32109 the type constructor anymore.
32111 Mon May 26 12:10:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32113 * object.h, object.c: separate vtable creation from type
32114 initialization. Make running the .cctor thread safe.
32116 2003-05-26 Dietmar Maurer <dietmar@ximian.com>
32118 * marshal.c (mono_marshal_get_native_wrapper): free string return values.
32120 2003-05-21 Dietmar Maurer <dietmar@ximian.com>
32122 * loader.c (mono_get_method): consider calling convention
32124 2003-05-21 Zoltan Varga <vargaz@freemail.hu>
32126 * icall.c (ves_icall_System_Reflection_Module_GetGlobalType): New icall
32127 to return the invisible global type for a module.
32129 * reflection.c (mono_image_build_metadata): Emit global fields too.
32131 2003-05-20 Peter Williams <peterw@ximian.com>
32133 * loader.c (mono_lookup_internal_call): Add a few newlines.
32135 2003-05-20 Zoltan Varga <vargaz@freemail.hu>
32137 * reflection.c (mono_reflection_lookup_dynamic_token): Intern dynamic
32140 * appdomain.c (set_domain_search_path): Recalculate search path when
32141 AppDomainSetup.PrivateBinPath changes.
32143 * object.c (mono_class_compute_gc_descriptor): It turns out some
32144 parts of the class libs (like System.Thread) holds pointers to
32145 GC_MALLOC()-d memory in IntPtrs, which is wrong. The workaround is
32146 to treat native int a pointer type here.
32148 Tue May 20 17:18:16 CEST 2003 Paolo Molaro <lupus@ximian.com>
32150 * appdomain.h, domain.c: add hashtable for jump target resolution.
32152 2003-05-19 Zoltan Varga <vargaz@freemail.hu>
32154 * reflection.h reflection.c icall.c: Added new icalls
32155 GetManifestResourceInfoInternal, GetModulesInternal and support
32158 2003-05-16 Dick Porter <dick@ximian.com>
32162 * file-io.c: Implement System.IO.MonoIO::GetTempPath
32164 2003-05-14 Lluis Sanchez Gual <lluis@ideary.com>
32166 * object.c: mono_store_remote_field: little fix to previous patch.
32168 Wed May 14 18:10:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
32170 * class.c: add constructors to array classes.
32171 * icall.c: special case array construction for InternalInvoke (),
32173 2003-05-14 Zoltan Varga <vargaz@freemail.hu>
32175 * class.h class.c reflection.c object.c: Added support for field
32176 defaults in dynamically generated classes.
32178 Wed May 14 13:35:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
32180 * reflection.c: properly encode charset for ddlimport.
32182 Wed May 14 11:14:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
32184 * threads.c: allow compiling without GC.
32186 Tue May 13 16:41:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
32188 * appdomain.h, object.c, object.h, threads.c, threads.h: added
32189 handling of thread static data.
32191 Tue May 13 16:36:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
32193 * reflection.h, reflection.c: added mono_custom_attrs_free ().
32195 2003-05-13 Dietmar Maurer <dietmar@ximian.com>
32197 * class.c (mono_array_class_get): always set the serializable flags
32198 (mono_array_class_get): always set the SEALED attribute for array types
32200 2003-05-12 Dietmar Maurer <dietmar@ximian.com>
32202 * loader.c (mono_lookup_pinvoke_call): consider Ansi/Unicode
32203 attributes (fix for bug 42021).
32205 2003-05-12 Dick Porter <dick@ximian.com>
32207 * gc.c: Don't run finalizers when the finalizer thread is
32208 finishing up, because the default domain has already been
32211 2003-05-11 Miguel de Icaza <miguel@ximian.com>
32213 * string-icalls.c (ves_icall_System_String_ctor_chara_int_int): if
32214 value is null, we should throw an exception. This is slightly
32215 different than the other conventions used for the constructor.
32217 2003-05-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32219 * socket-io.c: fixed windows build.
32221 2003-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32223 * socket-io.c: patch by Jerome Laban that fixes bug #42393.
32225 2003-05-10 Zoltan Varga <vargaz@freemail.hu>
32227 * object.c (mono_string_new_wrapper): Compatibility fix for MS
32230 2003-05-09 Zoltan Varga <vargaz@freemail.hu>
32232 * class.c (mono_class_layout_fields): Add experimental GC aware
32233 auto layout facility. Requires class library changes to work correctly.
32235 (mono_class_setup_vtable): Avoid overriding explicit interface
32236 method implementations. Fixes iface3.exe test.
32238 * object.c (mono_class_compute_gc_descriptor): Type I can't hold an
32240 (mono_array_new_specific): Add MONO_ARCH_SAVE_REGS.
32241 (mono_string_new_wrapper): Add MONO_ARCH_SAVE_REGS.
32243 * metadata.h: Add new type classification macro which determines
32244 whenever the type holds an object reference.
32246 2003-05-08 Dietmar Maurer <dietmar@ximian.com>
32248 * marshal.c (mono_marshal_get_native_wrapper): cleanups
32250 2003-05-07 Zoltan Varga <vargaz@freemail.hu>
32252 * gc.c (finalizer_thread): Work around a GC bug.
32254 2003-05-07 Dietmar Maurer <dietmar@ximian.com>
32256 * marshal.c (emit_struct_conv): allow unions
32258 * class.c (class_compute_field_layout): added patches from Jerome Laban <jlaban@wanadoo.fr>
32260 2003-05-06 Dietmar Maurer <dietmar@ximian.com>
32262 * marshal.c (mono_marshal_get_native_wrapper): free strings after pinvoke
32264 2003-05-06 Martin Baulig <martin@ximian.com>
32266 * mono-debug-debugger.h: #include <mono/io-layer/io-layer.h>.
32268 2003-05-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32271 (Select_internal): allow NULLs, don't create arrays if not needed.
32272 Coupled with Socket.cs changes.
32275 (mono_thread_pool_add): use GC_MALLOC to allocate the ASyncCall and
32276 register a finalizer for it that will close the semaphore handle. This
32277 fixes the leak and make Lupus' test run with > 4080 loops.
32279 2003-05-05 Dietmar Maurer <dietmar@ximian.com>
32281 * marshal.c (mono_marshal_get_struct_to_ptr): added fixes from
32282 Jerome Laban (bug #42287)
32284 2003-05-02 Martin Baulig <martin@ximian.com>
32286 * debug-mono-symfile.h
32287 (MonoSymbolFile): Moved declaration into mono-debug.h.
32288 (MonoDebugMethodJitInfo): Likewise.
32289 (mono_debug_open_mono_symbol_file): Take the MonoDebugHandle as
32291 (_mono_debug_address_from_il_offset): Take a
32292 MonoDebugMethodJitInfo instead of a MonoDebugMethodInfo.
32295 (MonoDebugDomainData): New struct.
32296 (mono_debug_get_domain_data): New function.
32297 (mono_debug_add_method): Take an additional `MonoDomain *'
32299 (mono_debug_source_location_from_address): Likewise.
32300 (mono_debug_il_offset_from_address): Likewise.
32301 (mono_debug_address_from_il_offset): Likewise.
32303 Thu May 1 19:40:37 CEST 2003 Paolo Molaro <lupus@ximian.com>
32305 * reflection.c: one more check for null type in custom attrs.
32307 2003-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32309 * reflection.c: avoid warning (comparison is always false due to limited
32310 range of data type).
32312 2003-05-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32314 * icall.c: throw an exception in Type.GetField if the argument 'name'
32317 Wed Apr 30 10:53:09 CEST 2003 Paolo Molaro <lupus@ximian.com>
32319 * reflection.c: fixed handling of enums in named arguments to custom
32320 attributes (bug #42123).
32322 Tue Apr 29 19:15:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
32324 * reflection.c: use the right array element type and handle
32325 a null for a Type argument, too.
32327 Tue Apr 29 15:46:00 CEST 2003 Paolo Molaro <lupus@ximian.com>
32329 * reflection.c: handle arrays as arguments to custom attributes.
32331 Tue Apr 29 11:43:01 CEST 2003 Paolo Molaro <lupus@ximian.com>
32333 * reflection.c: handle a string value in a custom attr
32334 ctor that takes an object.
32336 2003-04-29 Dietmar Maurer <dietmar@ximian.com>
32338 * marshal.c (mono_mb_emit_restore_result): support MONO_TYPE_PTR
32341 2003-04-28 Zoltan Varga <vargaz@freemail.hu>
32343 * icall.c (ves_icall_Type_GetNestedType): Fixed warnings.
32345 2003-04-27 Martin Baulig <martin@ximian.com>
32347 * mono-debug-debugger.h (MonoDebuggerEvent): Renamed
32348 MONO_DEBUGGER_EVENT_BREAKPOINT_TRAMPOLINE to
32349 MONO_DEBUGGER_EVENT_BREAKPOINT.
32350 (mono_breakpoint_trampoline_code): Removed.
32351 (mono_debugger_event_handler): The last argument is now a
32353 (mono_debugger_insert_breakpoint_full): Removed the
32354 `use_trampoline' argument.
32355 (mono_debugger_method_has_breakpoint): Likewise.
32356 (mono_debugger_trampoline_breakpoint_callback): Renamed to
32357 mono_debugger_breakpoint_callback(); take the method and
32358 breakpoint number as arguments.
32360 Sat Apr 26 19:25:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
32362 * metadata.c: fix off by one when loading parameters attributes.
32364 2003-04-24 Martin Baulig <martin@ximian.com>
32366 * mono-debug-debugger.c (mono_debugger_io_layer): Put this back.
32368 2003-04-24 Martin Baulig <martin@ximian.com>
32370 * mono-debug-debugger.c: Moved all code which interacts with the
32371 Mono Debugger here.
32373 * debug-mono-symfile.c: This code now just deals with the symbol
32374 file itself, the debugger code is now in mono-debug-debugger.c.
32376 2003-04-23 Martin Baulig <martin@ximian.com>
32378 * mono-debug.c (mono_debug_source_location_from_il_offset):
32379 New method; like mono_debug_source_location_from_address(), but
32380 takes an IL offset instead of a machine address.
32382 2003-04-23 Martin Baulig <martin@ximian.com>
32384 * debug-mono-symfile.h (MonoDebugLineNumberEntry): Removed the
32385 `line' field; this is now computed by the debugger.
32387 2003-04-23 Martin Baulig <martin@ximian.com>
32389 * mono-debug.[ch]: New files. This is the new debugging interface.
32391 * mono-debug-debugger.[ch]: New files. Moved all code which
32392 interacts with the Mono Debugger here.
32394 2003-04-22 Dietmar Maurer <dietmar@ximian.com>
32396 * domain.c (mono_init): initialize mono_defaults.monitor_class
32398 2003-04-21 Miguel de Icaza <miguel@ximian.com>
32400 * reflection.c (method_encode_code): Add a spicy exception to help
32401 future compiler authors.
32403 2003-04-21 Martin Baulig <martin@ximian.com>
32406 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
32407 Make this work with relative pathnames; g_filename_to_uri() needs
32408 an absolute filename.
32410 2003-04-18 Zoltan Varga <vargaz@freemail.hu>
32412 * icall.c: Track name changes in Object and ValueType.
32414 2003-04-18 Dietmar Maurer <dietmar@ximian.com>
32416 * metadata.c (mono_type_stack_size): size should be a multiple of
32419 2003-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32422 (internal_domain_finalize): moved into mono_domain_finalize. No need
32423 to create another thread because the finalizers will be run in the
32426 (ves_icall_System_GC_WaitForPendingFinalizers): implemented.
32427 (finalizer_notify): if shutting down, wait 2 seconds for the finalizers
32428 to be run (MS does this too).
32430 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
32432 * object.c (mono_class_compute_gc_descriptor): Update comment.
32434 * loader.h marshal.h marshal.c: Added synchronized method wrappers.
32436 * image.h: Add synchronized wrapper cache.
32438 * image.c (do_mono_image_open): Initialize cache.
32440 * reflection.c (create_dynamic_mono_image): Initialize cache.
32442 2003-04-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32444 * icall.c: patch by Jerome Laban <jlaban@wanadoo.fr> that fixes
32445 ves_icall_System_Buffer_ByteLengthInternal.
32447 Tue Apr 15 13:56:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
32449 * reflection.c: setup klass->nested_in earlier. Allow
32450 a dash in the assembly name.
32452 2003-04-15 Dietmar Maurer <dietmar@ximian.com>
32454 * metadata.c (mono_type_to_unmanaged): dont access
32455 type->data.klass for MONO_TYPE_OBJECT
32456 (mono_type_to_unmanaged): consider System.Delegate class
32458 Tue Apr 15 11:16:05 CEST 2003 Paolo Molaro <lupus@ximian.com>
32460 * class.c: just setup supertypes in the proper place instead of
32461 initializing the full element class for arrays.
32463 Tue Apr 15 11:03:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
32465 * class.c: ensure the element class of arrays is initialized.
32466 Setup the supertype info for array classes, too.
32468 2003-04-14 Miguel de Icaza <miguel@ximian.com>
32470 * icall.c (ves_icall_Type_GetNestedType): Add new internal call.
32472 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32474 * Makefile.am: re-added -m option when running cygpath. This way,
32475 MONO_ASSEMBLIES and MONO_CFG_DIR will contain '/' as directory
32477 * mono-config.c: same codepath for locating mono config file for WIN32
32479 * assembly.c: if mono_assembly_setrootdir is called, don't override
32482 2003-04-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32484 * Makefile.am: patch by Urs Muff <umuff@quark.com> that fixes
32485 MONO_ASSEMBLIES variable.
32487 Fri Apr 11 12:44:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
32489 * icall.c: added Assembly::GetNamespaces() icall.
32491 2003-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32493 * reflection.c: fix from Jaak <jaak@zd.com.pl>.
32495 2003-04-10 Lluis Sanchez Gual <lluis@ideary.com>
32497 * appdomain.c,appdomain.h,icall.c: Added internal method that returns the process guid
32498 * object.c: fixed bug in the construction of vtable for proxies
32500 2003-04-10 Zoltan Varga <vargaz@freemail.hu>
32502 * object.c (mono_array_new): Mark mono_array_new as an icall.
32504 2003-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32506 * class.c: fixed test for public method when overriding interfaces.
32509 Wed Apr 9 15:19:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
32511 * appdomain.h, domain.c: added mono_domain_foreach() to
32512 be able to access the currently loaded appdomains.
32513 * object.c: make string interning work across sppdomains.
32514 Mark some functions for use as icalls.
32516 2003-04-09 Zoltan Varga <vargaz@freemail.hu>
32518 * class.c reflection.c: Fix memory leaks reported by ccmalloc.
32520 * reflection.h reflection.c: Allocate long living data using
32521 GC_MALLOC_ATOMIC so the collector does not need to scan it.
32523 * reflection.c: Double the allocation size in streams instead of
32524 increasing it, to prevent unneccesary copying on large assemblies.
32526 * reflection.c (mono_reflection_create_runtime_class): Avoid vtable
32527 creation if the assembly does not have the Run flag set.
32529 Tue Apr 8 11:19:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
32531 * class.h: avoid the C++ keywords in header files (Jerome Laban
32532 spotted and fixed this).
32534 2003-04-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32537 (mono_unhandled_exception): fill in the arguments for the
32538 UnhandledException event. Only trigger that event for the default
32539 domain (as MS does).
32541 2003-04-04 Zoltan Varga <vargaz@freemail.hu>
32543 * object.c: Improve typed allocation stuff based on suggestions from
32544 Paolo. Also turn it on if the GC library supports it.
32546 2003-04-03 Zoltan Varga <vargaz@freemail.hu>
32548 * object.c object.h class.h: Added experimental typed allocation
32549 facility using the interfaces in gc_gcj.h.
32551 * os/gc_wrapper.h: Added new include files.
32553 2003-04-03 Martin Baulig <martin@ximian.com>
32555 All the following changes are conditional to `WITH_INCLUDED_LIBGC'
32556 which is not yet enabled by default.
32558 * gc.c (mono_gc_init): Set the gc_thread_vtable to our thread
32560 (mono_gc_lock, mono_gc_unlock): New static functions.
32562 * threads.c (mono_gc_stop_world, mono_gc_start_world): New public
32563 functions; stop/start the world for the garbage collector. This
32564 is using the windows API; we need to complete the SuspendThread()/
32565 ResumeThread() implementation in the io-layer to make this work on Unix.
32566 (mono_gc_push_all_stacks): New public function; tells the garbage
32567 collector about the stack pointers from all managed threads.
32569 2003-04-03 Martin Baulig <martin@ximian.com>
32571 * object.h (MonoThread): Added `gpointer stack_ptr'.
32573 * threads.c (start_wrapper): Save the stack pointer in `stack_ptr'.
32575 2003-04-03 Martin Baulig <martin@ximian.com>
32577 * Makefile.am: It's called `cygpath -w', not `cygpath -m'.
32579 2003-04-03 Zoltan Varga <vargaz@freemail.hu>
32581 * reflection.c (typebuilder_setup_fields): Initialize field.first and
32584 2003-04-02 Miguel de Icaza <miguel@ximian.com>
32586 * loader.c (mono_lookup_internal_call): Report the corlib that is
32589 2003-03-05 Aleksey Demakov <avd@openlinksw.com>
32591 * icall.c (ves_icall_type_GetTypeCode): fixed check for
32592 System.DBNull (it's class not valuetype).
32594 Wed Apr 2 18:37:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
32596 * reflection.c: set table_idx in MonoReflectionArrayMethod object even
32597 if the array method was already assigned a token (fixes bug#40646).
32599 2003-04-02 Zoltan Varga <vargaz@freemail.hu>
32601 * reflection.c (mono_reflection_get_type): Attempt type resolve even
32602 if no assembly is given.
32604 2003-04-01 Miguel de Icaza <miguel@ximian.com>
32606 * metadata.h: Added the new tables.
32608 * row-indexes.h: Added definitions for new tables.
32610 * metadata.c: Add schemas for new tables, and add support for
32611 computing the sizes of them.
32613 * class.c: Update for handling the new type cases.
32615 2003-04-01 Dietmar Maurer <dietmar@ximian.com>
32617 * metadata.h (MONO_TYPE_IS_VOID): new macro
32619 2003-03-31 Martin Baulig <martin@ximian.com>
32621 * threads.h (MonoThreadCallbacks): Added `thread_created'.
32623 * threads.c (mono_thread_new_init): Call `thread_created' in the
32624 mono_thread_callbacks.
32626 2003-03-31 Lluis Sanchez Gual <lluis@ideary.com>
32628 * loader.h: added marshalbyrefobject_class to mono_defaults
32629 * domain.c: added initialization of mono_defaults.marshalbyrefobject_class
32630 * icall.c: ves_icall_InternalExecute: fixed bug in field setter and in the
32631 generation of output parameters.
32632 ves_icall_Remoting_RealProxy_GetTransparentProxy: added support for interfaces.
32633 * marshal.c: mono_remoting_wrapper(): avoided call through proxy when the type is
32634 contextbound and the target object belongs to the context of the caller.
32635 * object.h: added context and unwrapped_server variables in MonoRealProxy.
32636 * object.c: Implemented support for interfaces and abstract classes
32637 in mono_class_proxy_vtable. Fixed several methods to avoid unneeded calls through
32638 proxy. Fixed problem when dealing with output parameters in mono_runtime_invoke_array.
32640 2003-03-30 Zoltan Varga <vargaz@freemail.hu>
32642 * class.h class.c (mono_class_is_subclass_of): New function.
32644 * icall.c (ves_icall_System_Array_FastCopy): Added optimized copy
32645 routines for most common case (calls from ArrayList::ToArray).
32647 * icall.c (ves_icall_System_Environment_Exit): Call profiler shutdown
32648 routine so programs which call Environment::Exit() can be profiled.
32650 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32651 Added MONO_ARCH_SAVE_REGS.
32653 * icall.c (ves_icall_type_is_subtype_of): Use new function.
32655 2003-03-29 Miguel de Icaza <miguel@ximian.com>
32657 * blob.h: Add a couple of new MonoType types definitions.
32659 * tabledefs.h: Add a couple of new call convs.
32661 2003-03-27 Zoltan Varga <vargaz@freemail.h>
32663 * reflection.h (MonoReflectionDynamicAssembly): track changes in
32664 the layout of the class.
32666 * reflection.c (alloc_table): double the size on overflow to avoid
32667 unnecessary copying.
32669 * reflection.h reflection.c: If AssemblyBuilderAccess is Run, then
32670 avoid filling out metadata tables and blobs. Also set mb->ilgen to
32671 null so it can be garbage collected.
32673 2003-03-27 Zoltan Varga <vargaz@freemail.hu>
32675 * reflection.c (mono_reflection_get_type): Return the resolved type
32676 only if it is in the assembly we searched.
32678 * reflection.c (ensure_runtime_vtable): Initialize method slots.
32680 * class.c (mono_class_setup_vtable): Set the slot of the overriding
32683 2003-03-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32686 (set_domain_search_path): allow 'file://blah'. It's an invalid URI,
32687 the right one is 'file:///blah', but MS allows it.
32689 (mono_assembly_open): allow 'file://blah'
32691 Fixes bug #40306. Thanks to Mitko Iliev (imitko@openlinksw.co.uk).
32693 2003-03-26 Aleksey Demakov <avd@openlinksw.com>
32695 * socket-io.c: fixes bug #40310.
32697 2003-03-25 Zoltan Varga <vargaz@freemail.hu>
32699 * reflection.c (mono_reflection_parse_type): handle deeply nested
32702 * reflection.c (mono_image_create_token): Use unique token values
32703 since they will be put into a hash table.
32705 * class.c (mono_class_setup_vtable): If a method occurs in more than
32706 one place in the vtable, and it gets overriden, then change the
32707 other occurances too.
32709 * marshal.c (mono_marshal_get_managed_wrapper): Added support for
32710 object as return type.
32712 2003-03-22 Pedro Mart?nez Juli? <yoros@wanadoo.es>
32714 * icall.c: Deleted "ToString" implementation for double and float
32715 because they are full implemented in managed code.
32717 Wed Mar 19 18:05:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32719 * reflection.c, reflection.h: implemented and exported functions
32720 to retrieve info about custom attributes.
32722 2003-03-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32724 * appdomain.c: moved Uri handling to assembly.c
32725 * assembly.c: use g_filename_from_uri (). This makes assembly.LoadFrom
32726 work when using a file Uri in *nix and windows.
32728 * icall.c: fixed Assembly.CodeBase to return a valid Uri. The same for
32729 GetReferencedAssemblies.
32731 2003-03-18 Dick Porter <dick@ximian.com>
32733 * icall.c: Rename a couple of internal calls
32735 * threads.c: Set the thread state to Stopped when a thread exits.
32738 2003-03-17 Zoltan Varga <vargaz@freemail.hu>
32740 * icall.c (ves_icall_System_Reflection_FieldInfo_internal_from_handle):
32743 * object.c (mono_class_vtable): fix warning.
32745 2003-03-17 Zoltan Varga <vargaz@freemail.hu>
32747 * icall.c (ves_icall_type_is_subtype_of): Avoid vtable creation.
32749 * reflection.c (mono_blob_entry_hash): Avoid reading uninitialized
32751 (method_encode_clauses): Create exception info structures in the right
32753 (mono_reflection_setup_internal_class): Initialize supertypes field.
32755 * class.c object.c: Handle interfaces which implement other interfaces
32758 * class.h class.c: Move the supertypes array initialization code into
32759 a separate function so it can be used for dynamic types too. Also call
32760 it earlier, in mono_class_init(), since it can be used before the
32761 type is initialized.
32763 2003-03-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32767 * icall.c: make MONO_ASSEMBLIES and MONO_CFG_DIR work on windows.
32772 * object.c: remove warnings.
32774 2003-03-13 Martin Baulig <martin@ximian.com>
32776 * debug-mono-symfile.h (MonoSymbolFileLexicalBlockEntry): New type.
32777 (MonoDebugLexicalBlockEntry): New types.
32779 * debug-mono-symfile.c
32780 (_mono_debug_address_from_il_offset): Moved here from ../jit/debug.c.
32782 2003-03-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32784 * process.c: ret can be any non-zero value accroding to MS doc.
32786 2003-03-07 Miguel de Icaza <miguel@ximian.com>
32788 * class.c (mono_marshal_load_type_info): Fix buglet: Noticed when
32789 fixing a warning for a miss-used prototype, would have cause
32790 random memory corruption.
32792 2003-03-07 Martin Baulig <martin@ximian.com>
32794 * marshal.c (mono_marshal_free_array): That "TESTFREE %p" was
32795 getting really annoying ....
32797 2003-03-07 Zoltan Varga <vargaz@freemail.hu>
32799 * reflection.c (fixup_method): added support for array methods.
32801 Tue Mar 4 18:03:27 CET 2003 Paolo Molaro <lupus@ximian.com>
32803 * socket-io.c: handle case when AF_INET6 and AF_IPX are not defined
32804 (pointed out by Michael Adams).
32806 2003-03-04 Dick Porter <dick@ximian.com>
32808 * icall.c: Temporarily reverted the Double and Single ToString()
32809 change, because it broke nunit.
32811 Tue Mar 4 12:40:58 CET 2003 Paolo Molaro <lupus@ximian.com>
32813 * object.h, threads.h: make include files compatible with C++
32814 (patch by Jerome Laban <jlaban@wanadoo.fr>).
32816 2003-03-04 Pedro Mart?nez Juli? <yoros@wanadoo.es>
32818 * icall.c: Erased ToString helper functions for Double and Single.
32819 Now, that implementations ar all in managed code (Double and Single
32822 2003-03-03 Lluis Sanchez Gual <lluis@ideary.com>
32824 * appdomain.c: Added method for initializing the default context of
32825 a domain. Added internal call for getting the default context.
32826 * appdomain.h: Added context variable in MonoDomain struct.
32827 * domain.c: mono_domain_set also sets the default context of the domain
32828 * icall.c: Mapped internal method InternalGetDefaultContext.
32829 * object.c: mono_object_get_virtual_method returns always a remoting
32830 wrapper if the object is a transparent proxy.
32831 mono_runtime_invoke_array: when creating an object by calling the
32832 constructor, if the created object is a proxy, then the constructor should
32833 be called using the a remoting wrapper.
32835 2003-03-03 Dick Porter <dick@ximian.com>
32837 * socket-io.c (create_sockaddr_from_object): Rename sockaddr_un
32838 variable so it compiles on solaris. Problem spotted by
32839 Christopher Taylor <ct@cs.clemson.edu>
32841 2003-03-01 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32844 (get_info_from_assembly_name): don't leak value.
32847 (ves_icall_System_Reflection_Assembly_GetFilesInternal): initialize
32850 Sat Mar 1 15:32:56 CET 2003 Paolo Molaro <lupus@ximian.com>
32852 * assembly.c: export mono_image_load_references ().
32853 * class.c: handle function pointers. mono_class_from_name() now
32854 supports nested type names directly.
32856 2003-02-28 Zoltan Varga <vargaz@freemail.hu>
32858 * reflection.h reflection.c: Encode already created dynamic methods
32859 and fields correctly as a DEF instead of a REF.
32861 * reflection.c: Get rid of the force_ref argument to
32862 mono_image_typedef_or_ref since it was wrong in the first place.
32864 * string-icalls.c: add error checking to string constructors according
32867 * reflection.c: Emit types in the order their TypeBuilders were
32868 created. Previously, a new table index was assigned to each type before
32869 the tables were emitted. This was wrong because the signature blob
32870 might already refer to a type by its original table index.
32872 2003-02-27 Zoltan Varga <vargaz@freemail.hu>
32874 * metadata.c (mono_metadata_nesting_typedef): fix bug in previous
32877 2003-02-27 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32879 * Makefile.am: make assemblies dir have \ instead of / on windows.
32881 2003-02-27 Zoltan Varga <vargaz@freemail.hu>
32883 * metadata.c metadata.h (mono_metadata_nesting_typedef): changed to
32884 iterate over the NESTEDCLASS table using a linear search since the
32885 table is not guaranteed to be sorted by the secondary key.
32887 * class.c (mono_class_create_from_typedef): fixed up call to
32888 mono_metadata_nesting_typedef.
32890 2003-02-27 Dietmar Maurer <dietmar@ximian.com>
32892 * marshal.c (mono_string_to_byvalstr): clear the memory as
32893 suggested by Jerome Laban <jlaban@wanadoo.fr>
32895 2003-02-26 Dick Porter <dick@ximian.com>
32897 * process.c: Cope with padding in .rsrc blocks
32899 2003-02-26 Dietmar Maurer <dietmar@ximian.com>
32901 * metadata.h: reverted the filter_len change, it breaks reflection
32903 2003-02-26 Dietmar Maurer <dietmar@ximian.com>
32905 * metadata.h: added a new field to store the filter_len
32908 Tue Feb 25 10:56:16 CET 2003 Paolo Molaro <lupus@ximian.com>
32910 * reflection.c: handle custom attributes for types and members
32911 created with Reflection.Emit (bug#38422).
32913 2003-02-22 Zoltan Varga <vargaz@freemail.hu>
32915 * reflection.c: define RTSpecialName automatically for constructors for
32916 compatibility with MS.NET.
32918 * reflection.c (mono_reflection_create_runtime_class): initialize
32919 nested_in field of dynamically created classes.
32921 2003-02-22 Martin Baulig <martin@ximian.com>
32923 * debug-mono-symfile.h: Incremented version number.
32925 2003-02-21 Zoltan Varga <vargaz@freemail.hu>
32927 * object.h icall.c process.c: fix warnings.
32929 2003-02-21 Zoltan Varga <vargaz@freemail.hu>
32931 * appdomain.h appdomain.c:
32932 (mono_domain_try_type_resolve): split the
32933 name_or_tb argument into a name and a tb argument.
32934 (mono_domain_has_type_resolve): new function to check whenever the
32935 application has registered a TypeResolve event handler.
32937 * icall.c reflection.h reflection.c: move the type resolve logic into
32938 mono_reflection_get_type () so it will be invoked when
32939 Assembly::GetType () is called.
32942 (mono_reflection_get_type): renamed to get_type_internal.
32943 (mono_reflection_get_type): fixed type name generation so it works
32944 for nested types too.
32945 (mono_reflection_get_type): call has_type_resolve () to avoid the
32946 costly type name generation if there is no resolve event handler.
32948 Fri Feb 21 11:36:57 CET 2003 Paolo Molaro <lupus@ximian.com>
32950 * class.c, image.c: load exported types from file references.
32952 2003-02-19 Lluis Sanchez Gual <lluis@ideary.com>
32954 * appdomain.h: Added in MonoDomain a couple of MonoMethod* variables
32955 used to cache the managed methods used to create proxies and make
32956 remote invocation of methods.
32957 * class.h: Added in MonoVTable a flag to indicate that a class needs
32958 to be remotely created.
32959 * object.c: Modified the method mono_class_vtable(). It now initializes
32960 the remote flag of the vtable. Modified mono_object_new_specific(),
32961 so now it checks the remote flag.
32962 * icall.c: Added a couple of internal methods, one for enabling instance
32963 creation interception for a type, and one for creating objects bypassing
32966 2003-02-18 Martin Baulig <martin@ximian.com>
32968 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethodToken):
32969 New interncall to get a method's metadata token.
32971 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethodToken"):
32972 New interncall for the debugger.
32974 2003-02-18 Dietmar Maurer <dietmar@ximian.com>
32976 * class.c (mono_class_setup_vtable): allocate supertype array
32978 2003-02-18 Martin Baulig <martin@ximian.com>
32980 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Added `has_this'.
32982 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
32985 (assembly_name_to_aname): jump over unknown properties (i've found
32986 something like: 'type, assembly, version=xxx, custom=null, public...',
32987 so now will ignore custom=null and still get the rest of the values).
32989 2003-02-17 Dick Porter <dick@ximian.com>
32991 * threads.c: Have Thread.Start() wait for a semaphore to signal
32992 that the thread has set up all its local data. This fixes bug
32993 34323, where Abort() raced the new thread's TLS data.
32995 Also removes the handle_store() call from start_wrapper, because
32996 threads are now always created suspended and there is no longer a
32997 race between the parent and child threads to store the info.
32999 Mon Feb 17 13:13:31 CET 2003 Paolo Molaro <lupus@ximian.com>
33001 * image.c: explain the #- heap issue in a message, hopefully
33002 avoiding FAQs on mono-list.
33004 2003-02-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33007 (GetEntryAssembly): if the domain has not invoked
33008 AppDomain.ExecuteAssembly yet, return the assembly of the default
33011 2003-02-16 Zoltan Varga <vargaz@freemail.hu>
33013 * class.c (mono_ldtoken): make it work in dynamic assemblies.
33015 Sun Feb 16 13:10:06 CET 2003 Paolo Molaro <lupus@ximian.com>
33017 * metadata.c, reflection.c: simple speedup to type hash
33020 Sat Feb 15 15:15:03 CET 2003 Paolo Molaro <lupus@ximian.com>
33022 * image.c, image.h, class.c, assembly.c: move module loading
33023 to MonoImage. When loading metadata, consider alignemnet from
33024 the start of metadata, not from the metadata address in memory.
33026 2003-02-13 Zoltan Varga <vargaz@freemail.hu>
33028 * reflection.c (mono_reflection_get_custom_attrs): Added support for
33029 AssemblyBuilder objects. Factored out custom attribute creation into
33030 a separate function.
33031 (create_custom_attr): new function to create custom attributes.
33033 2003-02-12 Miguel de Icaza <miguel@ximian.com>
33035 * Makefile.am: Got tired of typing the full pathname to pedump.
33036 Until there is another option, am installing this.
33038 2003-02-12 Dietmar Maurer <dietmar@ximian.com>
33040 * class.c (class_compute_field_layout): always set field->parent
33041 (mono_ldtoken): use mono_defaults.fieldhandle_class;
33043 2003-02-11 Dick Porter <dick@ximian.com>
33046 * monitor.c: Rewrote Monitor, making lock much faster and
33047 Pulse/Wait work as specified. Also uses much fewer handles, and only
33048 creates them as needed.
33050 * exception.c: Added SynchronizationLockException
33052 * threads.c: Deleted old Monitor implementation. The new one is
33055 Mon Feb 10 17:54:10 CET 2003 Paolo Molaro <lupus@ximian.com>
33057 * class.c: handled TypedReference type code. Set the correct size for
33058 class data. Setup interface_offsets for interface classes, too.
33060 2003-02-09 Martin Baulig <martin@ximian.com>
33062 * debug-mono-symfile.h: Reflect latest symbol writer changes.
33064 Sun Feb 9 18:37:01 CET 2003 Paolo Molaro <lupus@ximian.com>
33066 * loader.c: implemented MEMBERREF_PARENT_TYPEDEF.
33067 * metadata.c, reflection.c: missing MONO_TYPE_TYPEDBYREF handling.
33068 * object.c: fixed mono_object_get_virtual_method () for interfaces.
33069 * verify.c: check for code that runs after the end of the method.
33071 2003-02-08 Pedro Mart?nez Juli? <yoros@wanadoo.es>
33073 * icall.c: Added "System.Math::Floor", "System.Math::Round" and
33074 "System.Math::Round2".
33075 * sysmath.h: Added Floor, Round and Round2 definitions.
33076 * sysmath.c: Modified certain functions that were not 100% compliant
33077 with MS.NET (math precision) and added the implementation of Floor,
33080 2003-02-07 Martin Baulig <martin@ximian.com>
33082 * debug-mono-symfile.c (mono_debug_symfile_add_method): Ignore interncalls.
33084 2003-02-07 Martin Baulig <martin@ximian.com>
33086 * debug-mono-symfile.c: Reflected latest symwriter changes.
33087 (mono_debug_create_mono_symbol_file): Removed.
33088 (mono_debug_open_mono_symbol_file): Take an argument which
33089 specifies whether to create a dynamic symbol file.
33091 2003-02-07 Dietmar Maurer <dietmar@ximian.com>
33093 * class.c (mono_class_from_mono_type): added MONO_TYPE_TYPEDBYREF
33095 2003-02-05 Martin Baulig <martin@ximian.com>
33097 * reflection.c (mono_image_build_metadata): Make this public,
33098 protect it against being called multiple times, don't create
33099 resources and don't build the compressed metadata here.
33100 (mono_image_create_pefile): Do this here.
33103 ("System.Reflection.Emit.AssemblyBuilder::build_metadata"): Added.
33105 2003-02-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33107 * socket-io.c: fixed bug #36322.
33109 2003-02-06 Piers Haken <piersh@friskit.com>
33113 * debug-mono-symfile.c:
33119 * socket-io.c: warning cleanups
33121 2003-02-06 Dietmar Maurer <dietmar@ximian.com>
33123 * marshal.c (mono_marshal_get_remoting_invoke_with_check): new
33124 function. works like remoting invoke, but does a check for the Proxy first.
33126 2003-02-05 Miguel de Icaza <miguel@ximian.com>
33128 * appdomain.c (ves_icall_System_AppDomain_InternalUnload): Make it compiler.
33130 2003-02-05 Dietmar Maurer <dietmar@ximian.com>
33132 * marshal.c (mono_marshal_get_native_wrapper): only allocate an
33134 (mono_marshal_get_ldfld_wrapper): only generate necessary ldfld wrappers.
33135 (mono_marshal_get_stfld_wrapper): only generate necessary stfld wrappers.
33137 * object.c (mono_store_remote_field_new): used by the new jit
33138 instead of mono_store_remote_field
33139 (mono_load_remote_field_new): used by the new jit
33140 instead of mono_load_remote_field
33142 2003-02-05 Patrik Torstensson
33144 * appdomain.c: changed unload to take the domain id instead
33147 * icall.c: changed icall for AppDomain.Unload to AppDomain.InternalUnload
33150 2003-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33152 * appdomain.c: don't look for assemblies in ApplicationBase if
33153 PrivateBinPathProbe is set.
33155 2003-02-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33157 * object.c: make the first argument in main_args contain the absolute
33158 path to the assembly. Fixes bug #37511.
33160 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33162 * icall.c: get correct UTC offset for countries not using daylight
33163 time saving. Fixes bug #30030.
33165 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33167 * socket-io.c: support AF_UNIX and use the same layout as MS (bytes 0
33168 and 1 are the family).
33170 2003-02-04 Dietmar Maurer <dietmar@ximian.com>
33172 * icall.c (ves_icall_InternalExecute): removed wrong assertion
33174 * marshal.c (mono_marshal_get_remoting_invoke): generate valid IL
33176 2003-02-04 Zoltan Varga <vargaz@freemail.hu>
33178 * reflection.c: added support for SignatureHelper tokens, which is
33179 needed by the Calli opcode.
33181 * reflection.h: track changes to SignatureHelper class.
33183 * metadata.c (mono_metadata_parse_signature): handle dynamic tokens.
33185 2003-02-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33187 * appdomain.c: fixed loading assemblies from PrivateBinPath.
33189 2003-02-03 Patrik Torstensson
33190 * appdomain.[c|h], domain.c :
33191 - Added support for getting a domain via domain id
33192 - Support for setting and getting domain from System.AppDomain
33193 (used in cross appdomain channel)
33194 - Added support for get/set for a MonoAppContext on a thread
33195 (Context class in System.Runtime.Remoting.Contexts),
33196 - Removed hack in Get/SetData and ExecuteAssembly.
33198 * icall.c : renamed GetTransparantProxy to InternalGetTransparantProxy to allow
33199 the managed world to get control when a proxy is created.
33201 * icall.c (ves_icall_InternalExecute) : bug fix, must return empty array
33203 2003-02-03 Miguel de Icaza <miguel@ximian.com>
33206 (ves_icall_System_Reflection_Assembly_GetReferencedAssemblies):
33207 Populate the codebase field as well.
33209 2003-02-02 Martin Baulig <martin@ximian.com>
33211 * debug-mono-symfile.c
33212 (MonoSymbolFileMethodAddress): Added `wrapper_address' field.
33213 (mono_debug_symfile_add_method): Allow interncalls.
33215 2003-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33217 * icall.c: throw parse exception if strtod fails or the string is empty.
33219 Fri Jan 31 16:09:48 CET 2003 Paolo Molaro <lupus@ximian.com>
33221 * marshal.c: handle object type separately from defined
33224 Fri Jan 31 16:01:20 CET 2003 Paolo Molaro <lupus@ximian.com>
33226 * marshal.c: handle NATIVE_LPSTR for strings when it's
33227 explicitly specified.
33229 Fri Jan 31 11:51:43 CET 2003 Paolo Molaro <lupus@ximian.com>
33231 * reflection.c, reflection.h, icall.c: setup the reflection
33232 handle cache for ModuleBuilders and AssemblyBuilders.
33234 2003-01-30 Dietmar Maurer <dietmar@ximian.com>
33236 * reflection.c (reflection_methodbuilder_to_mono_method): set
33239 2003-01-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33241 * icall.c: implemented ves_icall_MonoMethod_get_base_definition.
33243 2003-01-29 Dick Porter <dick@ximian.com>
33245 * threads.c: No need for the fake_thread kludge now that Thread
33246 doesn't run a class constructor
33248 2003-01-29 Dick Porter <dick@ximian.com>
33250 * threads.c: Use g_direct_hash instead of the rather bogus
33253 2003-01-29 Dietmar Maurer <dietmar@ximian.com>
33255 * marshal.c (mono_marshal_get_native_wrapper): add check for null
33256 (fix pinvoke12.exe)
33257 (mono_marshal_get_struct_to_ptr): generate valid IL code
33258 (mono_marshal_get_ptr_to_struct): generate valid IL code
33259 (*): correctly set sig->pinvoke, we need to memdup the signature
33262 Tue Jan 28 22:57:57 CET 2003 Paolo Molaro <lupus@ximian.com>
33264 * marshal.c, marshal.h: use larger integers in mono_mb_emit_add_to_local()
33265 to avoid overflows (bug spotted and fixed by Jerome Laban <jlaban@wanadoo.fr>).
33267 Tue Jan 28 18:55:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33269 * profiler.c: provide more callers information.
33271 2003-01-28 Dietmar Maurer <dietmar@ximian.com>
33273 * marshal.c (mono_marshal_get_managed_wrapper): generate valid IL code
33275 * appdomain.h:added fix from Patrik: _MonoAppDomain is a MBR object
33277 * marshal.c (mono_marshal_get_native_wrapper): generate valid IL code
33279 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
33281 * icall.c: (ves_icall_System_CurrentTimeZone_GetTimeZoneData): raise an
33282 exception instead of going into an infinite loop on dates which it
33285 * string-icalls.c (ves_icall_System_String_get_Chars): raise
33286 out-of-range exception if needed.
33288 * class.c (mono_class_setup_vtable): allow a virtual method to provide
33289 an implementation for an interface method and to override an inherited
33290 method at the same time.
33291 Imagine a scenario when a virtual method is used to override a
33292 virtual abstract method in a parent class, and this same method
33293 provides an implementation for an method inherited from an interface.
33294 In this case, the interface resolution code will set im->slot, which
33295 means that the virtual method override pass will skip this method
33296 which means a pointer to the abstract method inherited from the parent
33297 will remain in the vtable of this non-abstract class.
33299 * class.c: (mono_class_setup_vtable): continue search for a real
33300 method if only an abstract method is found.
33302 Mon Jan 27 17:12:19 CET 2003 Paolo Molaro <lupus@ximian.com>
33304 * reflection.c: add size to encoding for ByValStr and ByValArray
33305 marshal blob (from "Jerome Laban" <jlaban@wanadoo.fr>).
33307 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
33309 * class.c (mono_class_setup_vtable): pass the override info as an
33312 * class.c (mono_class_setup_vtable): set the slot of overriding methods
33315 * reflection.c (ensure_runtime_vtable); add support for method
33318 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
33320 * reflection.c (resolution_scope_from_image): Hack to work to work with
33321 dynamic assemblies.
33323 * reflection.c (mono_image_typedef_or_ref): renamed to ..._aux and
33324 added a 'force_ref' argument to force this function to allways return
33325 a TypeRef. This is needed by mono_image_get_memberref_token ().
33327 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
33329 * reflection.c (mono_image_get_type_info): interfaces really don't have
33332 * reflection.c (mono_image_basic_init): fill out missing fields of
33335 * reflection.c (mono_image_basic_init): Invoke assembly load hooks for
33336 dynamic assemblies. This is required so dynamic assemblies show up in
33337 AppDomain.GetAssemblies (), emit an AssembyLoadEvent, gets searched by
33338 Type::GetType() etc. This is consistent with MS behaviour.
33340 * image.c image.h reflection.c: add newly created classes to the name
33341 cache so mono_class_get () will find them.
33343 2003-01-27 Zoltan Varga <vargaz@freemail.hu>
33345 First part of changes to get IKVM.NET running under mono.
33347 * appdomain.h, appdomain.c: added new function
33348 mono_domain_try_type_resolve() which will emit TypeResolve events.
33349 This function will call AppDomain::DoTypeResolve to do the actual work.
33351 * class.h, class.c, loader.c, object.c, reflection.h, reflection.c:
33352 moved existing code dealing with dynamic tokens to a new function
33353 called mono_reflection_lookup_dynamic_token (). This function will
33354 raise TypeResolve events when appropriate. Since reflection.c is not
33355 part of libmetadata, a new hook function called
33356 mono_lookup_dynamic_token() is added to class.c which will call this.
33358 * assembly.h assembly.c: make the invoke_load_hook function public,
33359 so it can be called for dynamic assemblies.
33361 * icall.c (ves_icall_System_Runtime_CompilerServices_RuntimeHelpers_RunClassConstructor): skip interfaces since they do not have initializers.
33363 * icall.c (ves_icall_type_from_name): emit a TypeResolve event if the
33366 * reflection.c reflection.h: change MonoDynamicAssembly.tokens to a
33367 MonoGHashTable, since it contains pointers to objects which the GC
33370 * assembly.c (search_loaded): remove unused variable.
33372 Mon Jan 27 12:18:45 CET 2003 Paolo Molaro <lupus@ximian.com>
33374 * object.c: fixed issue exposed by gcc-generated IL programs
33375 that use RVA data for pointers.
33377 2003-01-25 Martin Baulig <martin@ximian.com>
33379 * threads.c (start_wrapper): Moved the initialization of
33380 `start_func' above the mono_new_thread_init() call to which we
33381 pass it as argument.
33383 2003-01-24 Martin Baulig <martin@ximian.com>
33385 * threads.h (MonoThreadCallbacks): Pass the thread ID instead of
33386 the MonoThread pointer.
33388 2003-01-21 Miguel de Icaza <miguel@ximian.com>
33390 * icall.c: Rename `PowImpl' to Pow.
33392 2003-01-23 Dick Porter <dick@ximian.com>
33394 * threads.c (start_wrapper): Create a Thread object if needed, so
33395 the Main() thread can do the class initialisation in a subthread
33396 that has been set up to allow managed code execution.
33398 Pass the thread ID instead of the MonoThread pointer to the thread
33399 start and attach callbacks. This change is required, because the
33400 jit thread start callback must be called _before_ the Thread
33401 object can be created.
33403 (mono_thread_init): Removed much object creation code that is no
33404 longer needed. No managed code is called from here now.
33406 * object.c (mono_runtime_exec_managed_code): Create a subthread
33407 for Main, and call back to the runtime to use it.
33408 Set the exit code when Main exits.
33410 * gc.c: Make sure domain finalisation happens in a subthread.
33411 Re-enable threaded GC, fixing bug 31333 (again).
33413 * environment.c: System.Environment internall calls (so far just
33414 ExitCode is here, the others are still in icall.c)
33416 * appdomain.c (mono_runtime_cleanup): All threads running managed
33417 code should have finished before mono_runtime_cleanup() is
33418 reached, so no need to clean up threads.
33420 2003-01-22 Martin Baulig <martin@ximian.com>
33422 * appdomain.h (MonoThreadStartCB): Added `MonoThread *thread' and
33423 `gpointer func' arguments.
33424 (MonoThreadAttachCB): New typedef; like the old MonoThreadStartCB,
33425 but added `MonoThread *thread' argument.
33426 (mono_runtime_init): The last argument is now a MonoThreadAttachCB.
33428 * threads.c (mono_new_thread_init): Added `gpointer func' argument
33429 and pass it to the mono_thread_start_cb callback.
33430 (mono_install_thread_callbacks): New public function to install a
33431 set of callbacks which are set by the debugger.
33432 (mono_thread_init): The last argument is now a MonoThreadAttachCB.
33434 2003-01-22 Martin Baulig <martin@ximian.com>
33436 * Makefile.am: Install debug-mono-symfile.h.
33438 2003-01-21 Aleksey Demakov <avd@openlinksw.com>
33440 * marshal.c: fixed copy_from_managed and copy_to_unmanaged for 0 length.
33442 2003-01-21 Dietmar Maurer <dietmar@ximian.com>
33444 * added the following fix from Jackson Harper <jackson@latitudegeo.com>
33445 * class.c (mono_ptr_class_get): correctly set access levels of pointers
33446 (mono_array_class_get): correctly set access levels of arrays
33448 2003-01-20 Patrik Torstensson
33449 * image.h (MonoAssemblyName): changed major, minor, build, revision
33450 from signed to unsigned.
33452 2003-01-20 sean kasun <skasun@azstarnet.com>
33454 * reflection.c (load_cattr_value): Now this handles
33455 MONO_TYPE_SZARRAY. Fixes bug #35629
33457 2003-01-20 Miguel de Icaza <miguel@ximian.com>
33459 * marshal.c (emit_struct_conv): Handle MONO_TYPE_PTR as an
33462 2003-01-18 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33464 * decimal.c: fixed bug #26056.
33466 2003-01-17 Martin Baulig <martin@ximian.com>
33468 * gc.c: Raise an ExecutionEngineException instead of using g_error().
33470 2003-01-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33473 (mono_get_exception_type_initialization): new function.
33475 * object.c: throw a TypeInitializationException when an exception is
33476 thrown invoking the class constructor.
33478 2003-01-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33480 * reflection.c: fixed attribute reading.
33482 2003-01-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33485 (ves_icall_type_from_name): make it work as MS. Ie, if no assembly name
33486 provided, look for the type in the calling assembly and then in
33487 mscorlib; if the assembly name is provided, only try that one.
33489 Tue Jan 14 14:52:52 CET 2003 Paolo Molaro <lupus@ximian.com>
33491 * object.c: register the vtable before there is a chance it's
33492 queried again recursively.
33494 2003-01-13 Duncan Mak <duncan@ximian.com>
33496 * Makefile.am (libmonoruntime_la_SOURCES): Change gc.h to
33499 2003-01-12 Patrik Torstensson <totte@race-x-change.com>
33501 * string-icall.[c|h], icall.c: Added support for CompareOrdinal mode
33503 2003-01-11 Martin Baulig <martin@ximian.com>
33505 * debug-mono-symfile.h (MONO_SYMBOL_FILE_DYNAMIC_VERSION): Incremented
33506 this to 20 for the release.
33508 2003-01-10 Dietmar Maurer <dietmar@ximian.com>
33510 * marshal.c (emit_struct_conv): added support for EXPLICIT_LAYOUT
33512 * loader.c (mono_method_get_marshal_info): bug fix
33514 * marshal.c (mono_marshal_get_ptr_to_struct): don't convert
33515 structures with explicit layout
33517 Fri Jan 10 15:58:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33519 * profiler.c: made the output more readable (and sorted).
33520 Added caller information for the allocation profiler.
33522 2003-01-09 Sebastien Pouliot <spouliot@videotron.ca>
33524 * icall.c, rand.c, rand.h: Prepended RNG functions with Internal.
33526 2003-01-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33528 * icall.c: added ves_icall_System_Activator_CreateInstanceInternal. Used
33529 to get value types.
33531 Thu Jan 9 19:43:11 CET 2003 Paolo Molaro <lupus@ximian.com>
33533 * object.c, profiler.h, profiler.c, profiler-private.h:
33534 Added object allocation profiler.
33536 Thu Jan 9 16:17:00 CET 2003 Paolo Molaro <lupus@ximian.com>
33538 * reflection.h, reflection.c: handle global methods.
33539 Compress blob entries.
33541 Thu Jan 9 15:54:53 CET 2003 Paolo Molaro <lupus@ximian.com>
33543 * marshal.c: fix compilation.
33545 2003-01-09 Dietmar Maurer <dietmar@ximian.com>
33547 * loader.c (mono_method_get_marshal_info): impl.
33549 * metadata.c (mono_metadata_field_info): use mono_metadata_get_marshal_info
33551 2003-01-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33553 * icall.c: applied fix from Zoltan Varga that fixes Type.IsPrimitive
33554 for reference types.
33556 Wed Jan 8 20:11:46 CET 2003 Paolo Molaro <lupus@ximian.com>
33558 * loader.c: fixed off by one error in loaded parameter names.
33560 2003-01-08 Dietmar Maurer <dietmar@ximian.com>
33562 * marshal.c (mono_marshal_get_icall_wrapper): like
33563 mono_marshal_get_native_wrapper, but simpler and use a MonoMethodSignature
33564 instead of a MonoMethod.
33566 2003-01-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33568 * decimal.c: fixed bug #36537.
33570 Mon Jan 6 19:37:59 CET 2003 Paolo Molaro <lupus@ximian.com>
33572 * marshal.c: throw a missing method exception if a
33573 P/Invoke method is not found.
33575 Sun Jan 5 11:57:09 CET 2003 Paolo Molaro <lupus@ximian.com>
33577 * icall.c: allow a null this for constructors.
33579 Sat Jan 4 18:28:42 CET 2003 Paolo Molaro <lupus@ximian.com>
33581 * icall.c: raise the proper exceptions if the arguments to the
33582 internal Invoke are incorrect.
33584 2003-01-03 Dietmar Maurer <dietmar@ximian.com>
33586 * marshal.c (mono_marshal_get_ptr_to_struct): code cleanups
33588 2003-01-03 Martin Baulig <martin@ximian.com>
33590 * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33592 2002-12-31 Martin Baulig <martin@ximian.com>
33594 * debug-mono-symfile.c: Completely rewrote the type section.
33595 Instead of using individual malloc()ed fields, we use one big
33596 continuous memory area and offsets into this area.
33597 See the comments in the source code for details.
33599 2002-12-30 Martin Baulig <martin@ximian.com>
33601 * debug-mono-symfile.h (MonoDebugTypeInfo): Renamed to MonoDebugClassInfo.
33603 2002-12-30 Martin Baulig <martin@ximian.com>
33605 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Include the
33606 line number table in this data blob instead of using an external
33609 2002-12-28 Martin Baulig <martin@ximian.com>
33611 * debug-mono-symfile.h: Increment MONO_SYMBOL_FILE_DYNAMIC_VERSION.
33613 2002-12-22 Rachel Hestilow <hestilow@ximian.com>
33615 * marshal.c (mono_marshal_get_runtime_invoke): Support MONO_TYPE_CHAR
33616 as a boxed return type.
33618 2002-12-21 Miguel de Icaza <miguel@ximian.com>
33621 (ves_icall_System_AppDomainSetup_InitAppDomainSetup): Use
33622 g_build_filename to properly get separators on the filename created.
33624 * object.h: Small change, introduce MonoMarshalByRefObject to
33625 track the layout of that structure in the C# universe as we make
33628 Thu Dec 19 16:23:19 CET 2002 Paolo Molaro <lupus@ximian.com>
33630 * object.c: removed assert to allow static fields on interfaces.
33631 * loader.c: a TypeSpec may be used for any type, not just arrays.
33633 Thu Dec 19 14:19:42 CET 2002 Paolo Molaro <lupus@ximian.com>
33635 * class.c, class.h: added mono_class_array_element_size ().
33636 Ignore static methods in interfaces.
33638 2002-12-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33640 * threads.c: fixed the build under cygwin.
33642 Wed Dec 18 18:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
33644 * reflection.c: handle nullref constants. Allocate keys for
33645 reflection handles with the GC.
33647 Wed Dec 18 11:34:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33649 * threads.c, threads.h: added mono_thread_get_abort_signal()
33650 to get a suitable signal for thread abort.
33652 Wed Dec 18 11:26:18 CET 2002 Paolo Molaro <lupus@ximian.com>
33654 * metadata.c: fix handling of ExportedType table.
33656 2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33658 * icall.c: added WriteWindowsDebugString internal call.
33660 2002-12-15 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33662 * reflection.h: added fields to match C# implementation.
33664 2002-12-14 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33666 * icall.c: patch from Jaroslaw Kowalski to fix Environment.MachineName.
33668 2002-12-12 Juli Mallett <jmallett@FreeBSD.org>
33670 * gc.h, gc-internal.h: Rename header for GC internal calls to
33671 gc-internal.h from gc.h as to not clash with Boehm GC having its
33672 header installed as <gc.h> in outside include paths.
33673 * appdomain.c, gc.c, icall.c, object.c: Account for aforementioned.
33674 * threads.c: If SIGRTMIN is not defined, fall back to SIGUSR1.
33676 2002-12-12 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33678 * icall.c: assign minor, build and revision in FillName.
33680 2002-12-11 Zoltan Varga <vargaz@freemail.hu>
33682 * image.h reflection.h reflection.c class.h class.c loader.c object.c:
33683 Added support for running code generated by Reflection.Emit.
33685 2002-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33687 * appdomain.c: check for NULL argument in LoadFrom.
33689 2002-12-10 Dick Porter <dick@ximian.com>
33691 * threads.c: WaitHandle fixes from Tum <tum@veridicus.com>
33693 2002-12-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33695 * appdomain.c: fix buglet when building exe file name. Handle full
33696 assembly name (needed after latest changes to AssemblyName).
33698 (mono_image_close): free some hashtables.
33700 2002-12-05 Dietmar Maurer <dietmar@ximian.com>
33702 * threads.c (ves_icall_System_Threading_Thread_Abort): we use SIGRTMIN
33703 instead of SIGUSR1, because SIGUSR1 is used by the pthread implementation
33704 on some systems (redhat 7.3)
33706 Thu Dec 5 16:13:40 CET 2002 Paolo Molaro <lupus@ximian.com>
33708 * threads.c: delete the critical section of a sync block,
33709 spotted and fixed by tum@veridicus.com (Thong (Tum) Nguyen).
33711 Thu Dec 5 12:52:52 CET 2002 Paolo Molaro <lupus@ximian.com>
33713 * pedump.c, cil-coff.h, monosn.c: add strong name cli header flag.
33715 2002-12-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33717 * appdomain.[ch]: handle the assembly preload event to try loading the
33718 assemblies using the paths we have in the current domain.
33720 * assembly.[ch]: created an assembly preload hook that is called to try
33721 loading the assembly by other means that the ones provided here.
33723 * domain.c: initialize the domain search path.
33725 From now on, assemblies (TODO: except corlib and System) are loaded
33726 according to these rules when using mono_assembly_load ():
33728 1. It tries to load the assembly from the ApplicationBase
33729 of the current domain appending .dll and .exe (TODO: have to
33730 try loading from name/name.dll and name/name.exe).
33732 2. It tries the search path specified in PrivateBinPath for the
33733 current domain (if any).
33735 3. Previous behavior.
33737 Wed Dec 4 16:02:25 CET 2002 Paolo Molaro <lupus@ximian.com>
33739 * icall.c: implemented GetInterfaceMap() related icall.
33740 * domain.c, loader.h: load MethodInfo in mono_defaults.
33742 Wed Dec 4 11:02:30 CET 2002 Paolo Molaro <lupus@ximian.com>
33744 * gc.c: disable the finalizer thread for now, untill all the issues
33745 with it are resolved.
33747 Wed Dec 4 10:44:01 CET 2002 Paolo Molaro <lupus@ximian.com>
33749 * string-icalls.c: handle embedded nulls in string ctor when the
33750 length is specified.
33752 Tue Dec 3 19:29:20 CET 2002 Paolo Molaro <lupus@ximian.com>
33754 * class.c: look for explicit interface implementation in parent
33757 2002-12-03 Dietmar Maurer <dietmar@ximian.com>
33759 * gc.c (run_finalize): dont run the finalizer (strange behaviour on rh7.3)
33761 Tue Dec 3 12:40:06 CET 2002 Paolo Molaro <lupus@ximian.com>
33763 * gc.c: protect handles with a critical section.
33765 2002-12-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33768 (ves_icall_type_from_name): it now has throwOnError and ignoreCase
33769 parameters. If no assembly specified, try getting the type from all
33770 the assemblies in the current domain, else, load the assembly and get
33773 2002-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33775 * marshal.c: applied patch from Aleksey Demakov that fixes
33776 ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringUni.
33778 2002-11-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33780 * icall.c: fixed get_location.
33782 2002-11-28 Dietmar Maurer <dietmar@ximian.com>
33784 * icall.c: moved MONO_ARCH_SAVE_REGS to the end of the
33785 declarations to make it work with older gcc.
33787 * loader.c (mono_get_method): set signature->pinvoke for native calls
33789 2002-11-20 Dick Porter <dick@ximian.com>
33791 * threads.c (mono_thread_init): Set the main thread's handle
33793 Tue Nov 19 14:15:34 CET 2002 Paolo Molaro <lupus@ximian.com>
33795 * gc.c: allow compilation without GC support. Changed to match the
33798 Mon Nov 18 18:41:51 CET 2002 Paolo Molaro <lupus@ximian.com>
33800 * gc.c: don't start the finalizer thread if the env var GC_DONT_GC is set.
33802 Mon Nov 18 16:35:22 CET 2002 Paolo Molaro <lupus@ximian.com>
33804 * reflection.c: set a public key token on the core assemblies.
33806 2002-11-18 Dick Porter <dick@ximian.com>
33808 * threads.c: Split out some thread initialisation so that other
33809 files can set the start callback function.
33811 * gc.c: Run finalisers in a separate thread, to avoid stack
33812 overflow. Fixes bug 31333.
33814 * appdomain.c: Set up GC finalisation thread.
33818 * domain.c: Use gc.h macros for GC_malloc
33820 2002-11-15 Dick Porter <dick@ximian.com>
33824 * appdomain.c: Removed mono_runtime_init_with_attach(),
33825 mono_thread_create_arg(), and mono_thread_init_with_attach(), by
33826 merging the extra parameter with the existing function. Removed
33827 unneeded code in mono_thread_attach().
33829 2002-11-14 Dietmar Maurer <dietmar@ximian.com>
33831 * image.c (mono_image_loaded_by_guid): a method to get loaded
33833 (load_metadata_ptrs): we store the guid as string.
33835 2002-11-11 Dietmar Maurer <dietmar@ximian.com>
33837 * assembly.c (mono_assembly_open): check the guid of aot compiled lib.
33839 * metadata.c (mono_guid_to_string): imported method form Zoltan
33840 Varga (slightly modified)
33842 * assembly.c (mono_assembly_open): load precompiled code
33844 * loader.h (MonoMethod): we store the method token for use in the
33847 2002-11-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33849 * appdomain.c: insert the loaded assemblies in the domain->assemblies in
33850 the hook function called when an assembly is loaded.
33852 * domain.c: Modified file.
33853 (mono_domain_assembly_load): removed hash table insertion of assemblies.
33857 2002-11-07 Miguel de Icaza <miguel@ximian.com>
33859 * reflection.c: Map PEFileKind to the value expected by the WinNT
33862 2002-11-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33864 * rand.c: use /dev/urandom. If it fails to open, use the previous one.
33865 Read until the buffer is filled completely.
33867 2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33869 * icall.c: implemented MonoType.InternalGetEvent ().
33871 2002-11-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33873 * appdomain.c: implemented InitAppDomainSetup. Delayed
33874 AppDomain.SetupInformation until mono_runtime_exec_main, where we get
33875 the entry_assembly.
33877 * assembly.c: base_dir is now an absolute path ending with
33880 * icall.c: modified get_location according to the above changes.
33882 * object.c: init AppDomain.SetupInformation for the default domain after
33883 we have the entry assembly.
33885 * domain.c: when unloading a domain, setup = NULL.
33887 2002-11-04 Dietmar Maurer <dietmar@ximian.com>
33889 * marshal.c (emit_ptr_to_str_conv): try to fix bug 29548
33891 Sun Nov 3 15:39:28 CET 2002 Paolo Molaro <lupus@ximian.com>
33893 * object.h, object.c: introduced mono_object_get_virtual_method ()
33894 to lookup the method invoked on an object when a callvirt is done on
33896 * icall.c: make MethodInfo::Invoke() always do a virtual call.
33898 2002-11-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33900 * appdomain.c: invoke AssemblyLoad and AsemblyResolve events in the
33901 current domain when loaded an assembly and failed to load it.
33903 * icall.c: changed ...Assembly_GetType to Assembly_InternalGetType.
33905 2002-10-31 Dick Porter <dick@ximian.com>
33909 * file-io.c: Return the error status in a parameter, as the
33910 GetLastError() value has long since been blown away if we try and
33911 look it up in a subsequent internal call invocation. Delete the
33912 GetLastError() internal call, because it's useless.
33914 2002-10-31 Dietmar Maurer <dietmar@ximian.com>
33916 * class.[ch]: added cast_class to fix bug 29517
33918 Wed Oct 30 19:37:32 CET 2002 Paolo Molaro <lupus@ximian.com>
33920 * marshal.c: create valid IL code in the filter clause:
33921 the new JIT is less forgiving:-)
33923 2002-10-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33925 * icall.c: removed get_property internal call.
33927 2002-10-25 Zoltan Varga <vargaz@freemail.hu>
33929 * appdomain.h domain.c: Added an ID to appdomains.
33931 * threads.c threads.h icall.c: Implement icall
33932 Thread:GetDomainID(), and remove unused icall
33933 CurrentThreadDomain_internal.
33935 2002-10-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
33937 * icall.c: Don't recurse through the base types in GetConstructor.
33940 Thu Oct 24 16:56:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
33942 * mempool.h, mempool.c: added mono_mempool_empty() and
33943 mono_mempool_stats().
33945 2002-10-23 Dick Porter <dick@ximian.com>
33949 * icall.c: Added MonoIO.GetFileType internal call
33951 2002-10-17 Dick Porter <dick@ximian.com>
33953 * appdomain.c (mono_runtime_cleanup): Don't signal the async
33954 delegate semaphore before waiting for all threads to finish,
33955 because new threads can also call async delegates. Fixes bug
33958 * threadpool.c (async_invoke_thread): Only wait for 500ms instead
33959 of 3 seconds, in case another async job is queued. (This part is
33960 needed because the bug fix reintroduced the 3s exit lag.) This
33961 makes the mono_runtime_shutdown flag superfluous.
33963 Thu Oct 17 13:11:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
33965 * reflection.c: include ehader size in method section headers.
33966 Really check for suplicated modules entries.
33968 2002-10-17 Martin Baulig <martin@gnome.org>
33970 * debug-mono-symfile.c: Added back support for locals.
33972 2002-10-14 Martin Baulig <martin@gnome.org>
33974 * debug-mono-symfile.c: Added MONO_TYPE_I, MONO_TYPE_U and
33977 2002-10-14 Martin Baulig <martin@gnome.org>
33979 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetType): Use
33980 mono_class_get() instead of looking in the class cache.
33982 2002-10-13 Martin Baulig <martin@gnome.org>
33984 * debug-mono-symfile.c: Set version number to 28, include the
33985 signature in method names.
33987 2002-10-13 Martin Baulig <martin@gnome.org>
33989 * debug-mono-symfile.h: Set version number to 27.
33991 2002-10-11 Martin Baulig <martin@gnome.org>
33993 * gc.c: Don't register/unregister NULL pointers as disappearing links.
33995 Thu Oct 10 14:56:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
33997 * metadata.c, metadata.h: added helper function to allocate signatures.
33999 2002-10-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34001 * icall.c: added internal call to get the location of machine.config.
34003 2002-10-08 Martin Baulig <martin@gnome.org>
34005 * debug-mono-symfile.c: Ignore classes with a pending init for the
34008 2002-10-03 Dick Porter <dick@ximian.com>
34010 * threads.c: Freebsd pthread_t is a pointer
34012 2002-10-03 Dick Porter <dick@ximian.com>
34014 * socket-io.c: Implemented GetHostName_internal
34016 2002-10-02 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34019 (mono_config_parse_file): don't leak the text.
34021 2002-10-02 Martin Baulig <martin@gnome.org>
34023 * debug-mono-symfile.c: Added support for methods.
34025 2002-10-01 Martin Baulig <martin@gnome.org>
34027 * debug-mono-symfile.c: Don't emit methods and line numbers for
34028 the dynamic symbol file, just write the type table. We can easily
34029 have an external helper program which creates a symbol file for an
34032 2002-10-01 Dick Porter <dick@ximian.com>
34034 * threads.c (ves_icall_System_Threading_Thread_Start_internal):
34035 Only add the handle to the cleanup array when we're about to
34036 launch the thread. Bug 31425 deadlocked when the test was run on
34039 2002-10-01 Martin Baulig <martin@gnome.org>
34041 * debug-mono-symfile.c: Added support for properties.
34043 Fri Sep 27 18:55:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34045 * reflection.c: unaligned store fix from Mark Crichton
34046 <crichton@gimp.org>.
34048 2002-09-27 Martin Baulig <martin@gnome.org>
34050 * icall.c ("System.Reflection.Assembly::GetReferencedAssemblies"):
34053 Fri Sep 27 15:38:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
34055 * assembly.h, assembly.c: use a sane API to hook into the assembly
34056 loading process instead of a useless special-purpouse hack
34057 (ngen needs a hook, too, for example).
34059 2002-09-27 Dick Porter <dick@ximian.com>
34061 * threads.c (mono_thread_init): Call GetCurrentProcess() so
34062 io-layer can set up some process handle info. Not needed on w32,
34063 but doesn't hurt either.
34065 * process.c: Pass the program name in the second parameter to
34066 CreateProcess, so the path is searched. Include the working
34067 directory. Implemented process name, process enumeration, and some
34068 process detail internal calls.
34070 * icall.c: Added internal calls for process lookup, and some
34073 2002-09-26 Martin Baulig <martin@gnome.org>
34075 * assembly.c (mono_install_open_assembly_hook): New global
34076 function to install a function to be invoked each time a new
34077 assembly is loaded.
34078 (mono_assembly_open): Run this callback function if set.
34080 * debug-mono-symfile.c: Put back line numbers for the dynamic
34081 symbol file and also record the .il file as source file. This
34082 allows us to install the temporary symbol file as `file.dbg' just
34083 like a compiler-generated one.
34085 2002-09-26 Nick Zigarovich <nick@chemlab.org>
34087 * Corrected typo in gc.c (BOHEM vs BOEHM).
34089 2002-09-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34091 * icall.c: fixed bug #31235 by copying a few lines from GetMethods to
34092 GetProperties. Also avoid calling g_slist_length in GetProperties and
34095 Wed Sep 25 22:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34097 * reflection.c: avoid unaligned stores (bug spotted by
34098 Mark Crichton <crichton@gimp.org>).
34100 2002-09-25 Martin Baulig <martin@gnome.org>
34102 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Use pointers
34103 instead of guint64 for addresses and added prologue/epilogue info.
34105 2002-09-25 Martin Baulig <martin@gnome.org>
34107 * debug-mono-symfile.h (MonoDebugLineNumberEntry): New type to
34108 store line number info. For the dynamic symbol file, we only need
34109 to provide the JIT generated dynamic line number info for the dynamic
34112 2002-09-25 Martin Baulig <martin@gnome.org>
34114 * debug-mono-symfile.h: Incremented version number.
34116 2002-09-24 Martin Baulig <martin@gnome.org>
34118 * class.c (mono_debugger_class_init_func): New global function
34120 (mono_class_init): If mono_debugger_class_init_func is non-NULL,
34123 * debug-mono-symfile.c (mono_debug_symfile_add_type): New
34124 function. This is called via the mono_debugger_class_init_func
34125 hook to add all types to the dynamic type table.
34126 (ves_icall_MonoDebugger_GetType): New interncall to get a class
34127 from its metadata token.
34129 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetType"):
34130 New interncall for the debugger.
34132 2002-09-24 Nick Drochak <ndrochak@gol.com>
34134 * icall.c (ves_icall_System_Enum_ToObject): validate the type parameter
34135 before using it in case it is null.
34137 Tue Sep 24 13:24:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
34139 * metadata.c: allow custom modifiers in local var signatures
34140 (bug spotted by Zoltan Varga).
34142 Tue Sep 24 12:12:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
34144 * class.c: deal with the <Module> class that may have a NULL vtable.
34145 Eliminate warnings.
34147 Tue Sep 24 11:28:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34149 * image.c, image.h: more strong name helpers.
34150 * monosn.c: more work: convert pem keys to cryptoapi format.
34152 Tue Sep 24 11:27:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34154 * string-icalls.c: speedup IndexOf.
34156 Tue Sep 24 11:17:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34158 * icall.c: updates from Zoltan.2.Varga@nokia.com.
34160 Tue Sep 24 11:09:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34162 * icall.c: cleanup: use mono_object_domain ().
34164 2002-09-23 Martin Baulig <martin@gnome.org>
34166 * debug-mono-symfile.c: Improved type support.
34168 2002-09-22 Martin Baulig <martin@gnome.org>
34170 * debug-mono-symfile.c: Added support for reference types and strings.
34172 2002-09-22 Martin Baulig <martin@gnome.org>
34174 * debug-mono-symfile.c: Started to work on the type table.
34176 2002-09-21 Martin Baulig <martin@gnome.org>
34178 * debug-mono-symfile.c: Largely reworked the symbol table format.
34179 The symbol table is now incrementally updated each time a new
34180 method is added. We're now also using our own magic and version
34181 so that you don't need to recompile all your classes if the
34182 dynamic table changes.
34183 (mono_debug_update_mono_symbol_file): Removed.
34184 (mono_debug_symfile_add_method): New function to add a method.
34186 2002-09-21 Martin Baulig <martin@gnome.org>
34189 ("System.Reflection.Assembly::MonoDebugger_GetLocalTypeFromSignature"):
34192 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetLocalTypeFromSignature):
34193 New interncall to get a method from its metadata token.
34195 2002-09-21 Martin Baulig <martin@gnome.org>
34197 * debug-mono-symfile.c: Create type table.
34199 2002-09-20 Martin Baulig <martin@gnome.org>
34201 * debug-mono-symfile.c: Reflect latest Mono.CSharp.Debugger changes.
34203 2002-09-20 Martin Baulig <martin@gnome.org>
34205 * debug-mono-symfile.c: Provide information about params and locals.
34207 2002-09-20 Martin Baulig <martin@gnome.org>
34209 * icall.c ("System.Reflection.Assembly::MonoDebugger_GetMethod"):
34212 * debug-mono-symfile.c (ves_icall_MonoDebugger_GetMethod): New
34213 interncall to get a method from its metadata token.
34215 2002-09-20 Martin Baulig <martin@gnome.org>
34217 * debug-mono-symfile.c: Added a few checks for method->header
34218 being non-NULL. This should never happen, but for the moment
34219 let's use a g_warning() rather than a g_assert().
34221 2002-09-19 Mark Crichton <crichton@gimp.org>
34223 * gc.c: ves_icall_System_GCHandle_FreeHandle made a call to libgc
34224 even if support for it isn't present. Added an #ifdef to fix this.
34226 * socket-io.c: Added checks back for Solaris support.
34228 2002-09-19 Martin Baulig <martin@gnome.org>
34230 * debug-mono-symfile.c (read_string, write_string): Reflect latest
34231 changes in the symbol file format.
34233 2002-09-18 Martin Baulig <martin@gnome.org>
34235 * debug-mono-symfile.c: Set version number to 21.
34237 2002-09-18 Dick Porter <dick@ximian.com>
34239 * threads.c (mon_new): Use the GC_MALLOC macro to hide differences
34240 on netbsd. Fixes bug 30051.
34242 2002-09-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34245 (set_version_from_string): little fix.
34247 Mon Sep 16 18:57:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34249 * monosn.c, Makefile.am: added strong name utility.
34250 * reflection.h, reflection.c: implemented delayed signing,
34251 locale, version and hash id assembly attributes.
34253 Mon Sep 16 18:51:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
34255 * loader.c, metadata.c: load param attributes in signatures.
34257 2002-09-16 Martin Baulig <martin@gnome.org>
34259 * debug-mono-symfile.c: Added string table with all method names.
34261 2002-09-14 Martin Baulig <martin@gnome.org>
34263 * debug-mono-symfile.h (MonoSymbolFile): Added method range table for
34264 fast method lookup.
34266 Fri Sep 13 16:04:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34268 * reflection.c: record the public key token of referenced assemblies.
34270 Fri Sep 13 15:41:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
34272 * image.c, image.h: added functions to get the strong name and the
34273 public key of an assembly.
34274 * pedump.c: use them.
34276 2002-09-12 Dietmar Maurer <dietmar@ximian.com>
34278 * marshal.c (emit_str_to_ptr_conv): support marshalling of delegates.
34280 2002-09-12 Miguel de Icaza <miguel@ximian.com>
34282 * marshal.c (mono_marshal_get_managed_wrapper): Added
34285 2002-09-11 Martin Baulig <martin@gnome.org>
34287 * gc.c: Call GC_unregister_disappearing_link() on all links when
34288 finalizing them, this is necessary to aviod a crash in boehm's
34291 Wed Sep 11 17:06:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34293 * gc.c: handle GetTarget for finalized objects spotted and fixed by
34296 Wed Sep 11 15:27:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
34298 * icall.c: implemented MonoType::Module.
34299 * reflection.c, reflection.h: mono_module_get_object () from
34300 Tomi Pakarinen <tomi.pakarinen@welho.com>.
34302 Wed Sep 11 12:53:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
34304 * icall.c: ignore overridden methods in GetMethods ().
34305 Fix for FieldInfo::SetValue().
34306 * object.c: handle float/double in runtime invoke.
34308 Tue Sep 10 15:51:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
34310 * object.c: allow a constructor to be called again on an object.
34312 Tue Sep 10 11:58:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34314 * class.h, class.c: move field layout code to it's own function and
34315 export it. Get an interface id earlier. Move fields in MonoClass
34316 so they are more cache friendly and align the bitfields.
34317 * loader.c: temporary handle get_param_names() for a runtime method.
34318 * reflection.c, reflection.h: more code to handle runtime creation of
34321 2002-09-09 Martin Baulig <martin@gnome.org>
34323 * marshal.c (mono_marshal_get_native_wrapper): We need to use a special
34324 signature with the pinvoke field being set for the actual call.
34326 Sat Sep 7 10:12:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34328 * icall.c: removed some unused icalls. Start of map of glib charsets
34329 to corlib names. Implemented RuntimeMethod::GetFunctionPointer ().
34331 Fri Sep 6 16:08:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34333 * debug-helpers.c: break infinite loop (found and fixed by
34334 Holger Arnold <harnold@gmx.de>).
34336 Thu Sep 5 18:50:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
34338 * icall.c: target may be null in create_delegate.
34340 Thu Sep 5 17:42:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
34342 * marshal.c: handle a boolean return type.
34344 Thu Sep 5 13:09:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
34346 * gc.c: put HIDE_POINTER/REVEAL_POINTER only here.
34348 Wed Sep 4 19:23:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34350 * gc.c: fix weakreferences.
34352 Wed Sep 4 13:59:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
34354 * icall.c: added icall to get default codepage.
34356 2002-09-03 Dick Porter <dick@ximian.com>
34359 * threads.c: Use MonoThread instead of MonoObject where
34362 Store running thread objects in a hash table, so that we have all
34363 the info to hand when waiting for them to finish
34364 (means we don't need OpenThread() any more, so mingw builds should
34365 be fully functional again.)
34368 * object.h: Added thread ID to MonoThread
34370 2002-09-03 Martin Baulig <martin@gnome.org>
34372 * icall.c (System.Reflection.Assembly::get_location): New interncall.
34374 2002-09-03 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34376 * icall.c: fixed leak in get_temp_path. Thanks lupus.
34378 2002-09-03 Martin Baulig <martin@gnome.org>
34380 * debug-helpers.c (mono_disasm_code_one): Added `const guchar **endp'
34381 argument to store the end address of the disassembled instruction.
34383 * debug-mono-symfile.h (MonoDebugMethodInfo, MonoDebugVarInfo): Moved
34384 here from debug-symfile.h.
34385 (MonoDebugMethodJitInfo): Moved all fields which are filled out by the
34386 JIT into this struct.
34387 (MonoSymbolFile): Added `char *image_file' field.
34388 (MonoDebugGetMethodFunc): Removed.
34389 (mono_debug_update_mono_symbol_file): Removed the hash table argument.
34390 (mono_debug_create_mono_symbol_file): Removed the `source_file' argument.
34391 (mono_debug_find_method): New method.
34393 * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): Always
34394 create a full symbol file.
34395 (mono_debug_update_mono_symbol_file): Don't distinguish between dynamic
34396 and static symbol files.
34397 (mono_debug_find_method): The symbol file keeps an internal method hash,
34398 call this to get a MonoDebugMethodInfo from a MonoMethod.
34400 * debug-symfile.[ch]: Removed.
34402 2002-08-29 Miguel de Icaza <miguel@ximian.com>
34404 * image.c (do_mono_image_open): Remove linker version check.
34406 2002-08-29 Dietmar Maurer <dietmar@ximian.com>
34408 * marshal.c (mono_marshal_get_managed_wrapper): don't cache
34409 wrappers for instance methods.
34411 2002-08-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34413 * icall.c: added ves_icall_System_IO_Path_get_temp_path.
34415 2002-08-28 Dick Porter <dick@ximian.com>
34417 * Makefile.am: Export HOST_CC for w32 builds
34419 Tue Aug 27 18:34:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
34421 * file-io.c process.c: MonoString are null terminated, no
34422 need for mono_string_to_utf16() anymore.
34424 Tue Aug 27 17:51:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34426 * icall.c, unicode.h, unicode.c: removed unused iconv stuff.
34428 Tue Aug 27 16:38:58 CEST 2002 Paolo Molaro <lupus@ximian.com>
34430 * icall.c, reflection.h: speedup System.MonoType.
34432 Tue Aug 27 16:37:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
34434 * reflection.c: allow null as the value of a string argument in
34435 custom attributes constructors.
34437 2002-08-27 Martin Baulig <martin@gnome.org>
34439 * debug-mono-symfile.h (MonoSymbolFileMethodAddress): Removed the
34440 `trampoline_address' field.
34442 2002-08-27 Dietmar Maurer <dietmar@ximian.com>
34444 * marshal.c (mono_marshal_get_native_wrapper): removed wrong null
34445 check (fixes bug #29486)
34447 2002-08-27 Martin Baulig <martin@gnome.org>
34449 * debug-mono-symfile.c: Changed the file format in a way that allows us
34450 open it read-only and to use a specially malloced area for all the
34451 dynamic data. We can now also generate a symbol file on-the-fly if we're
34452 debugging IL code and there is no MCS generated symbol file for it.
34454 Mon Aug 26 16:47:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
34456 * object.c: added a define for a good string and array
34457 creation speedup (not enabled by default because we need to deal with
34460 2002-08-26 Martin Baulig <martin@gnome.org>
34462 * debug-mono-symfile.c (mono_debug_create_mono_symbol_file): New
34463 function to create a dynamic symbol file. This is used by the
34464 debugger to create a symbol file for IL code on-the-fly.
34466 2002-08-26 Martin Baulig <martin@gnome.org>
34468 * loader.c (mono_lookup_pinvoke_call): Include the error message
34469 from g_module_error() in the error message.
34471 2002-08-24 Martin Baulig <martin@gnome.org>
34473 * debug-mono-symfile.c (mono_debug_update_mono_symbol_file): New
34474 function to update the symbol file. The symbol file is mmap()ed
34475 writable, but private. This allows us to install the symbol file
34476 together with the assembly.
34478 2002-08-24 Martin Baulig <martin@gnome.org>
34480 * debug-mono-symfile.[ch]: New files. Similar to debug-symfile.[ch]
34481 but they can read the new symbol file format which mcs is now creating.
34483 * debug-symfile.c (mono_debug_find_source_location): Moved to
34484 debug-mono-symfile.c; this is now operating on the new symbol file.
34486 2002-08-23 Martin Baulig <martin@gnome.org>
34488 * debug-helpers.c (mono_method_desc_from_method): New function to get
34489 a MonoMethodDesc from a MonoMethod.
34491 Fri Aug 23 15:54:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
34493 * object.c: fixes assertion failure caused by multiple ExecuteAssembly
34494 calls for same domain (patch by Tomi Pakarinen <Tomi.Pakarinen@iki.fi>).
34496 Fri Aug 23 12:14:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
34498 * string-icalls.[ch]: make helper methods static.
34500 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34502 * icall.c: re-applied patch to GetValueInternal. Also added R4 and R8
34503 types to it and to SetValueInternal.
34505 * object.c: Moved handle_enum label to its proper place. This was the
34508 This time i compiled mcs and gtk-sharp and they both work.
34510 2002-08-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34512 * icall.c: reverted partially my previous patch until
34513 object.c:set_value handles enums correcly.
34515 2002-08-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34518 (ves_icall_MonoField_GetValue): changed to use mono_field_get_value.
34519 (ves_icall_System_Environment_get_MachineName): removed warning when
34520 compiling under cygwin.
34522 Thu Aug 22 18:49:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
34524 * object.c: fixed field_get_value() for reference types.
34526 2002-08-22 Dick Porter <dick@ximian.com>
34528 * socket-io.c (ves_icall_System_Net_Sockets_Socket_RecvFrom_internal):
34529 Don't free a buffer while it's still needed. Patch from Jonathan
34530 Liger <Jonathan.liger@wanadoo.fr>
34532 2002-08-21 Miguel de Icaza <miguel@ximian.com>
34534 * icall.c (ves_icall_System_Environment_get_Platform): Add new
34537 2002-08-21 Dietmar Maurer <dietmar@ximian.com>
34539 * icall.c (ves_icall_get_method_info): s/MonoMethod/MonoReflectionMethod/
34540 (ves_icall_get_parameter_info): s/MonoMethod/MonoReflectionMethod/
34542 * marshal.c (mono_marshal_get_remoting_invoke): save lmf, because
34543 we call unmanaged code which throws exceptions.
34545 Wed Aug 21 12:56:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34547 * appdomain.h: added per-domain entry_assembly.
34548 * appdomain.c: ensure mono_runtime_exec_main () gets non-null
34550 * icall.c: Assembly::GetEntryAssembly icall.
34551 * object.c: set domain->entry_assembly in mono_runtime_exec_main().
34552 Changes above from a patch by Tomi Pakarinen <tomi.pakarinen@welho.com>.
34554 Tue Aug 20 15:42:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34556 * appdomain.h, gc.c: added mono_domain_finalize ().
34558 2002-08-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34561 (mono_print_unhandled_exception): changed g_warning by g_printerr
34562 because g_log has a 1024 characters limit (yeah, i got a big stack
34563 trace). Don't print exception name, that should be in ToString
34566 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34568 * icall.c: added ves_icall_FieldInfo_SetValueInternal.
34569 * object.c: added missing MONO_TYPE_ARRAY in mono_runtime_invoke_array.
34571 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34574 (mono_print_unhandled_exception): after previous commit, i realized
34575 that MS calls ToString on the exception. I changed this function to
34576 do that. This way we get stack_trace for free.
34578 2002-08-19 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34581 (mono_print_unhandled_exception): invoke Message property instead of
34582 getting 'message' field from Exception. Don't allocate memory for
34583 'trace' and 'message' if not needed.
34585 2002-08-18 Dick Porter <dick@ximian.com>
34587 * unicode.c: Fix asserts to match Encoder.cs checks
34589 Fri Aug 16 21:42:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34591 * marshal.c: fix unaligned store issue and a few wrong
34592 opcode argument types.
34594 2002-08-16 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34596 * icall.c: added GetUninitializedObjectInternal internal call.
34598 2002-08-16 Dietmar Maurer <dietmar@ximian.com>
34600 * appdomain.c (mono_runtime_invoke_in_domain): transfer Exception
34601 to the right domain.
34603 2002-08-14 Dietmar Maurer <dietmar@ximian.com>
34605 * marshal.c (mono_marshal_get_runtime_invoke): unbox value types
34607 * class.c (class_compute_field_layout): set blittable to false for Strings
34609 * appdomain.c (mono_domain_transfer_object): added support for ISerializable
34611 Wed Aug 14 17:26:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34613 * appdomain.h, reflection.c, icall.c, object.c, reflection.h:
34614 first chunk of code to create types at runtime. Code to
34615 handle ReflectedType/DeclaringType. Make reflection handles
34618 Wed Aug 14 17:24:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
34620 * class.c: set correct name in arrays.
34622 2002-08-13 Dietmar Maurer <dietmar@ximian.com>
34624 * appdomain.c (mono_domain_transfer_object): make it work with
34625 valuetypes. bug fixes.
34627 2002-08-12 Dick Porter <dick@ximian.com>
34629 * object.h: Rename some parameters to avoid c++ keywords (Patch
34630 from Joseph Wenninger <kde@jowenn.at>)
34632 Thu Aug 8 13:04:18 CEST 2002 Paolo Molaro <lupus@ximian.com>
34634 * icall.c: added icall to implement Assembly.GetFile*.
34636 Thu Aug 8 10:18:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34638 * reflection.h, reflection.c: code to embed managed resources.
34640 Tue Aug 6 17:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
34642 * class.c: move all the type size stuff into
34643 class_compute_field_layout().
34645 Tue Aug 6 11:20:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
34647 * class.c: ensure enums have always the correct instance size.
34648 * unicode.c: remove wrong assert.
34650 Mon Aug 5 19:30:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
34652 * assembly.c: fix mem corruption issue.
34653 * image.h, image.c: added mono_image_get_resource () to access
34655 * icall.c: implemented Assembly.EntryPoint property and some
34656 Managed Resources related internalcalls.
34659 Mon Aug 5 18:18:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
34661 * image.c, image.h: impemented mono_image_get_entry_point ().
34662 * appdomain.c: use mono_image_get_entry_point.
34664 Mon Aug 5 13:08:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34666 * reflection.c: support the object type argument when loading
34669 2002-08-05 Dietmar Maurer <dietmar@ximian.com>
34671 * marshal.c (mono_marshal_get_managed_wrapper): add suppport for
34672 String as return type.
34674 Fri Aug 2 21:15:42 CEST 2002 Paolo Molaro <lupus@ximian.com>
34676 * reflection.c: fix encoding of named args for custom attrs to match
34677 the ms implementation. Read them back when instantiating custom
34680 2002-08-02 Radek Doulik <rodo@ximian.com>
34682 * marshal.c (mono_mb_add_data): convert ret value to LE, suggested
34683 by Dietmar as quick fix
34684 (mono_marshal_get_delegate_begin_invoke): use sig->param_count +
34685 16 as stack size, used on more places as quick fix before Dietmar
34686 will fix it properly
34688 Fri Aug 2 17:48:17 CEST 2002 Paolo Molaro <lupus@ximian.com>
34690 * object.h, object.c: added accessors for fields and properties.
34692 Fri Aug 2 17:45:15 CEST 2002 Paolo Molaro <lupus@ximian.com>
34694 * class.c, class.h: made mono_class_get_field_from_name ()
34695 loop on parent types.
34696 Added mono_class_get_property_from_name ().
34698 Fri Aug 2 11:40:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
34700 * class.c, class.h: move the code to setup the type vtable in its own
34701 function so that it can be reused also for types created at runtime.
34702 Eliminate the "class" identifier from the header file.
34703 * reflection.c: setup the vtable for enums so that we can create
34704 objects for use in SetConstant ().
34706 2002-08-02 Dietmar Maurer <dietmar@ximian.com>
34708 * marshal.c (mono_delegate_to_ftnptr): pass delegate->target
34709 instead of the delegate itself as this pointer (bug #28383)
34711 2002-08-01 Dietmar Maurer <dietmar@ximian.com>
34713 * marshal.c (mono_marshal_get_managed_wrapper): added return type
34716 Wed Jul 31 16:49:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34718 * loader.c: don't set the pinvoke bit on icalls.
34720 2002-07-31 Dietmar Maurer <dietmar@ximian.com>
34722 * debug-helpers.c (mono_method_full_name): only print a number to
34723 indicate wrapper type (so that the output is more readable in traces).
34725 2002-07-30 Dietmar Maurer <dietmar@ximian.com>
34727 * class.c (mono_class_init): include method override patch from Paolo
34729 Tue Jul 30 15:20:08 CEST 2002 Paolo Molaro <lupus@ximian.com>
34731 * icall.c: fixed GetTypeCode().
34733 2002-07-29 Dietmar Maurer <dietmar@ximian.com>
34735 * threads.c (ves_icall_System_Threading_Thread_Thread_internal):
34736 use real delegate invoke function to make it work with multicast
34737 delegates (fix bug# 28291).
34739 Fri Jul 26 11:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
34741 * object.c: load constant strings.
34743 Fri Jul 26 11:36:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
34745 * reflection.c: no magic numbers.
34746 * tabledefs.h: security action enum.
34748 Fri Jul 26 11:22:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
34750 * assembly.c: fix possible memory corruption.
34752 Thu Jul 25 13:58:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
34754 * reflection.h, reflection.c: added support for linking resources.
34755 * verify.c: check we have an updated corlib.
34757 2002-07-25 Dietmar Maurer <dietmar@ximian.com>
34759 * marshal.c (mono_marshal_get_native_wrapper): correctly marshal
34761 (mono_marshal_string_array): null terminate unmanaged string arrays.
34762 (mono_marshal_get_managed_wrapper): print warning for arrays (not implemented)
34764 Wed Jul 24 13:32:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
34766 * icall.c: Type.GetType () can now return also types from the
34769 Wed Jul 24 13:04:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34771 * loader.h, loader.c: stack walking support.
34772 * icall.c: implemented GetCurrentMethod, GetExecutingAssembly,
34773 GetCallingAssembly.
34775 2002-07-24 Dietmar Maurer <dietmar@ximian.com>
34777 * marshal.c: added optimisations for blittable types
34779 * class.c (mono_array_class_get): do not set blittable attribute on arrays
34780 (mono_class_setup_mono_type): set blittable attribute for single
34783 * marshal.c (mono_string_utf8_to_builder): impl.
34784 (mono_string_builder_to_utf8): impl.
34785 (mono_marshal_get_native_wrapper): impl. StringBuilder marshaling
34787 2002-07-23 Dietmar Maurer <dietmar@ximian.com>
34789 * marshal.c (mono_marshal_get_native_wrapper): impl. byref types
34790 (mono_marshal_get_managed_wrapper): impl. byref types
34792 2002-07-23 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34795 (search_method): don't display debug message.
34797 2002-07-22 Dietmar Maurer <dietmar@ximian.com>
34799 * metadata.c (mono_type_stack_size): removed temporary fix for new gcc
34801 Mon Jul 22 18:17:05 CEST 2002 Paolo Molaro <lupus@ximian.com>
34803 * appdomain.c: set the missing filename when throwing exception.
34805 2002-07-22 Dietmar Maurer <dietmar@ximian.com>
34807 * metadata.c (mono_type_size): code cleanup
34808 (mono_type_stack_size): removed some test code
34810 2002-07-21 Miguel de Icaza <miguel@ximian.com>
34812 * appdomain.c (ves_icall_System_Reflection_Assembly_LoadFrom): Use
34813 mono_get_exception_file_not_found now.
34815 * exception.c (mono_exception_from_name_two_strings): New version
34816 that will call a constructor with two string arguments.
34817 (mono_get_exception_file_not_found): New helper routine, used to
34818 report file-not-found errors.
34820 2002-07-20 Dick Porter <dick@ximian.com>
34823 * process.c: Pass file handles to CreateProcess
34827 * file-io.c: Implemented CreatePipe
34829 2002-07-19 Dietmar Maurer <dietmar@ximian.com>
34831 * metadata.c (mono_get_param_info): set alignment for value types
34833 Fri Jul 19 18:58:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
34835 * appdomain.h, domain.c, threads-types.h: don't include config.h in headers.
34836 Constify mono_domain_assembly_open().
34837 * loader.c: handle null namespace in icalls.
34839 2002-07-19 Dietmar Maurer <dietmar@ximian.com>
34841 * marshal.c (emit_ptr_to_str_conv): marshal object as structs
34842 (emit_str_to_ptr_conv): marshal object as structs
34844 * metadata.c (mono_type_to_unmanaged): marshal object as structs
34846 * marshal.c (mono_marshal_get_runtime_invoke): support value types
34848 2002-07-18 Dietmar Maurer <dietmar@ximian.com>
34850 * marshal.c (mono_marshal_get_runtime_invoke): use exception filters
34851 (mono_marshal_get_native_wrapper): we an now return value types
34853 Wed Jul 17 18:21:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
34855 * verify.c: more checks implemented.
34857 2002-07-17 Dietmar Maurer <dietmar@ximian.com>
34859 * marshal.c (mono_delegate_to_ftnptr): invoke the right method
34861 (mono_marshal_get_native_wrapper): allow byref arguments
34862 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringXXX):
34863 impl. PtrToStringXXX methods
34864 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStructure_type): impl.
34865 (ves_icall_System_Runtime_InteropServices_Marshal_OffsetOf): impl.
34866 (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalAnsi): impl.
34867 (ves_icall_System_Runtime_InteropServices_Marshal_StringToHGlobalUni): impl.
34868 (ves_icall_System_Runtime_InteropServices_Marshal_DestroyStructure): impl.
34870 Tue Jul 16 19:00:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34872 * reflection.c: fix buglet in parsing an assembly name.
34874 2002-07-16 Dietmar Maurer <dietmar@ximian.com>
34876 * marshal.c (emit_ptr_to_str_conv): first impl.
34878 Tue Jul 16 12:39:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
34880 * object.c, class.h: cache the vtable in the class as suggested by
34881 vargaz@freemail.hu (Zoltan Varga).
34883 Tue Jul 16 11:27:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
34885 * class.h, loader.c: added mono_field_from_token().
34886 * verify.c: first cut of type checking code.
34888 2002-07-16 Dietmar Maurer <dietmar@ximian.com>
34890 * marshal.c (mono_marshal_get_native_wrapper): support valuetypes
34892 2002-07-15 Dietmar Maurer <dietmar@ximian.com>
34894 * marshal.c (mono_marshal_get_native_wrapper): handle enum types
34896 (mono_marshal_get_remoting_invoke): impl.
34897 (mono_delegate_begin_invoke): impl.
34898 (mono_mb_emit_save_args): impl.
34899 (mono_delegate_end_invoke): impl.
34900 (mono_marshal_get_delegate_begin_invoke):
34901 (mono_marshal_get_delegate_end_invoke):
34902 (mono_marshal_get_delegate_invoke): generate a special name for
34903 those methods (including the signature) and associate them whith
34904 the delegate class.
34906 2002-07-13 Gonzalo Paniagua Javier <gonzalo@gnome-db.org>
34909 (mono_reflection_type_from_name): now it has a MonoImage parameter
34910 which is used as the default image to search the type in. If the image
34911 is NULL or getting the type from it fails, it defaults to corlib.
34913 * icall.c: changed 1 call to mono_reflection_type_from_name to match
34916 Sat Jul 13 19:32:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
34918 * reflection.c: update the parameter table index.
34920 Sat Jul 13 17:34:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34922 * domain.c: don't include the mark byte in the string hash.
34924 Sat Jul 13 15:06:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
34926 * icall.cs: icall for Type.GetTypeCode ().
34927 * verify: a couple of fixes and disabled local initialization checks.
34929 2002-07-12 Dietmar Maurer <dietmar@ximian.com>
34931 * marshal.c: better debugging support (DEBUG_RUNTIME_CODE)
34933 * debug-helpers.c (mono_method_full_name): print the type of the
34936 * metadata.c (mono_signature_hash): a hash function for signatures
34937 (mono_signature_hash): better hash algorithm
34939 * marshal.c (mono_marshal_get_delegate_invoke): cache methods by signature
34941 * debug-helpers.c (mono_method_full_name): this can now generate
34942 method names with signatures
34944 * marshal.c (mono_marshal_get_managed_wrapper): bug fix: unmanaged
34945 method dont have this pointers.
34947 Fri Jul 12 11:35:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
34949 * reflection.c: fixup typebuilder tokens.
34950 * image.c: fix buglet.
34951 * marshal.h: remove whitespace.
34952 * metadata.h, metadata.c: reinstate code that was removed.
34953 * verify.c: handle catch directives and fix another couple of bugs.
34955 2002-07-11 Dietmar Maurer <dietmar@ximian.com>
34957 * marshal.c (mono_marshal_get_native_wrapper): support BOOLEAN
34958 (mono_marshal_get_native_wrapper): make it comp. with the old code
34959 (mono_marshal_get_native_wrapper): support boolean
34960 (mono_marshal_get_managed_wrapper): support more types
34962 2002-06-25 Dietmar Maurer <dietmar@ximian.com>
34964 * class.c (class_compute_field_layout): compute class->blittable attribute.
34966 2002-07-09 Dick Porter <dick@ximian.com>
34968 * threads.c: Make the thread cleaning up cope with threads that
34971 2002-07-08 Radek Doulik <rodo@ximian.com>
34973 * reflection.c (method_encode_code): use non-translated values to
34974 compute finally_start, this fixes exception handling on ppc, yay!
34976 * decimal.h (struct signscale): fix endianess
34978 2002-07-07 Radek Doulik <rodo@ximian.com>
34980 * reflection.c: swap box_val and not val
34982 Mon Jul 8 15:18:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
34984 * reflection.c, reflection.h: handle full assembly info in type name.
34985 Handle Type arguments when loading custom attributes.
34986 * icall.c: updated to use new mono_reflection_type_from_name () method.
34988 2002-07-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34991 (method_from_memberref): also print assembly name when method not found.
34993 2002-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
34996 (ves_icall_TypeGetProperties): fixed bug #27473.
34998 2002-07-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35000 * reflection.c: display image name and token when cannot find the
35001 .ctor for an attribute.
35003 2002-07-05 Martin Baulig <martin@gnome.org>
35005 * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35007 2002-07-04 Dick Porter <dick@ximian.com>
35009 * threads.c (mono_thread_cleanup): Nasty kludge to get this to
35010 compile on mingw. This will cause mingw builds to not wait for
35011 subthreads to terminate after the main thread does. I've lodged a
35012 bug with the mingw developers for them to wrap OpenThread().
35014 2002-07-03 Dick Porter <dick@ximian.com>
35016 * threads.c: Store thread IDs instead of handles, because
35017 GetCurrentThread() returns a pseudohandle and therefore stores
35018 useless values. mono_thread_cleanup() continues checking the
35019 array of threads until it is empty, to cope with subthreads
35020 spawning new threads after the main thread has finished.
35024 * profiler-private.h: Pass the thread ID to thread profiler
35025 functions, instead of a handle
35027 Wed Jul 3 17:43:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35029 * verify.c: fixes to make it more usable.
35030 * pedump.c: added --verify code to verify IL code in an assembly.
35032 Tue Jul 2 20:40:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35034 * reflection.c: turn errors into warnings to allow compiling corlib.
35036 Tue Jul 2 19:33:20 CEST 2002 Paolo Molaro <lupus@ximian.com>
35038 * reflection.c: add special cases to compile corlib.
35040 Mon Jul 1 18:00:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35042 * reflection.c: handle properties with only a set method.
35044 Mon Jul 1 17:11:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35046 * opcodes.h: add enum with opcodes in opval order.
35048 2002-07-01 Dick Porter <dick@ximian.com>
35051 * object.c (mono_runtime_run_main): Removed unneeded argument
35053 2002-06-28 Martin Baulig <martin@gnome.org>
35055 * debug-symfile.c: Reflect latest MonoDwarfFileWriter changes.
35057 2002-06-27 Dick Porter <dick@ximian.com>
35059 * threads.c: Store the handle in both the parent thread and in the
35060 subthread, to minimise the time between starting a new thread and
35063 2002-06-26 Dick Porter <dick@ximian.com>
35065 * appdomain.c (mono_runtime_cleanup): Close the socket library
35066 after all the threads have finished, not before
35068 2002-06-26 Martin Baulig <martin@gnome.org>
35070 * debug-symfile.c (mono_debug_find_source_location): Added
35071 `guint32 *line_number' argument. If it's not NULL, store the line number
35072 there and return the file name without the line number.
35074 2002-06-25 Dick Porter <dick@ximian.com>
35078 * process.c: Process forking and other support functions
35080 2002-06-25 Dick Porter <dick@ximian.com>
35082 * image.c (do_mono_image_open): Set ref_count to 1, so that bad
35083 things dont happen when the image is closed.
35084 (mono_image_lookup_resource): Walk the resource section looking
35085 for a particular entry
35087 * cil-coff.h: PE resource section decoding
35089 2002-06-25 Dick Porter <dick@ximian.com>
35093 (mono_assembly_foreach): Accessor functions to walk the list of
35095 (mono_assembly_set_main):
35096 (mono_assembly_get_main): Process methods need to know which
35097 assembly is the "main" one
35099 * object.c (mono_runtime_run_main): Record the main assembly
35101 * debug-helpers.c: Fix typo
35103 2002-06-24 Dietmar Maurer <dietmar@ximian.com>
35105 * icall.c (ves_icall_System_Runtime_InteropServices_Marshal_copy_to_unmanaged): impl.
35106 (ves_icall_System_Runtime_InteropServices_Marshal_copy_from_unmanaged): impl.
35108 Sat Jun 22 11:37:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35110 * icall.c: fix off-by-one in Assembly.GetTypes() reported by bob@karr.ath.cx.
35112 2002-06-21 Miguel de Icaza <miguel@ximian.com>
35114 * image.c (do_mono_image_open): Initialize reference count,
35115 otherwise we leak the MonoImage.
35117 Fri Jun 21 19:16:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35119 * reflection.c: small tweak to handle self-hosting.
35121 Thu Jun 20 23:28:13 CEST 2002 Paolo Molaro <lupus@ximian.com>
35123 * reflection.c: fix type name parse code.
35125 Thu Jun 20 19:24:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35127 * reflection.c: break out of the loop.
35128 * image.c: special case corlib.
35130 Thu Jun 20 16:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35132 * reflection.c: add all the custom attrs at the end to ensure the
35133 ctors have been properly initialized when the attributes are defined
35134 in the current assembly.
35136 Thu Jun 20 13:46:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35138 * reflection.c: handle correctly multiple-nested types.
35140 Thu Jun 20 11:49:00 CEST 2002 Paolo Molaro <lupus@ximian.com>
35142 * row-indexes.h: fix typos.
35143 * reflection.c: adjust for typos and fix method_def_or_ref
35144 encoding in MethodImpl table.
35146 Wed Jun 19 21:57:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35148 * reflection.c: fix entry point patching (thanks Serge!).
35150 2002-06-18 Dietmar Maurer <dietmar@ximian.com>
35152 * verify.c: add check for System.Exception
35154 Mon Jun 17 20:23:23 CEST 2002 Paolo Molaro <lupus@ximian.com>
35156 * image.c, class.c: minifix for code just c&p'ed.
35157 * reflection.c: warning fix.
35158 * object.h, loader.h, domain.c: load also StringBuilder.
35160 Mon Jun 17 17:29:40 CEST 2002 Paolo Molaro <lupus@ximian.com>
35162 * marshal.h, marshal.c: some support code to handle complex marshaling.
35164 Mon Jun 17 16:32:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35166 * class.h, class.c, reflection.c: handle ignorecase in GetType ().
35167 Better signatures with vtable error dump.
35169 Mon Jun 17 16:13:35 CEST 2002 Paolo Molaro <lupus@ximian.com>
35171 * reflection.c, reflection.h, icall.c: fixes for multiple-nested types.
35173 2002-06-17 Dietmar Maurer <dietmar@ximian.com>
35175 * icall.c (ves_icall_Type_GetField): impl.
35177 Mon Jun 17 16:08:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35179 * metadata.h, metadata.c: added mono_metadata_get_marshal_info()
35180 to retrieve a marshal description blob for a field or param.
35182 Mon Jun 17 14:57:03 CEST 2002 Paolo Molaro <lupus@ximian.com>
35184 * reflection.h, reflection.c: change order of nested type emission
35185 to avoid table corruption. The NestedTypes table is sorted.
35186 * icall.c: change order of GetConstructor results to workaround mcs bug.
35188 Fri Jun 14 16:24:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35190 * reflection.h, reflection.c: handle field and param marshal
35193 Wed Jun 12 16:30:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35195 * icall.c, marshal.c marshal.h: more Marshal class implementation.
35197 Tue Jun 11 17:29:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35199 * reflection.c: fix call convention.
35201 Tue Jun 11 16:52:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35203 * reflection.h, reflection.c: mono_image_get_memberref_token()
35204 takes a type instead of a class, now. Added
35205 mono_image_get_array_token() to create tokens for the special
35206 multi-dim array methods.
35208 Tue Jun 11 13:21:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35210 * assembly.c: handle modules (no assembly table). Split
35211 loading references in its own function.
35212 * class.c: handle moduleref resolution scope.
35213 * image.c, image.h: cache module name in image.
35215 2002-06-07 Martin Baulig <martin@gnome.org>
35217 * reflection.c (mono_image_get_type_info): Only add a class layout entry
35218 if we actually have a `tb->class_size' (ie. it's not UnspecifiedTypeSize).
35220 Fri Jun 7 22:07:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35222 * icall.c: more signature fixes that used uint instead of int.
35224 Fri Jun 7 20:41:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35226 * reflection.c: fixed signature of field refs.
35228 Fri Jun 7 19:41:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35230 * class.c, reflection.c: handle typerefs of nested types
35231 (both on read and when writing files).
35233 Fri Jun 7 17:46:50 CEST 2002 Paolo Molaro <lupus@ximian.com>
35235 * icall.c: fix method signatures that tried to workaround the previous
35238 Fri Jun 7 17:36:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35240 * debug-helpers.c: fix typo.
35242 Fri Jun 7 17:00:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35244 * cil-coff.h, icall.c, image.c, reflection.c, reflection.h:
35245 rewrote the PE/COFF writing code (our programs are understood by the
35248 Tue Jun 4 18:10:47 CEST 2002 Paolo Molaro <lupus@ximian.com>
35250 * gc.c, gc.h, icall.c: weakreference support.
35252 Tue Jun 4 16:06:19 CEST 2002 Paolo Molaro <lupus@ximian.com>
35254 * Makefile.am, mono-config.c: use $(sysconfdir).
35256 Mon Jun 3 13:13:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35258 * icall.c: changed default precision of Double.ToString() to 15.
35259 Fixed memory leak. Unified with Single.ToString.
35261 Sat Jun 1 14:26:45 CEST 2002 Paolo Molaro <lupus@ximian.com>
35263 * sysmath.c: workaround systems missing NAN and/or HUGE_VAL.
35265 Sat Jun 1 13:46:54 CEST 2002 Paolo Molaro <lupus@ximian.com>
35267 * pedump.c, appdomain.c, appdomain.h, assembly.c, domain.c,
35268 gc.c, icall.c, image.c, mono-config.c, reflection.c: killed
35269 warnings and compilation fixes from Dennis Haney (davh@davh.dk)
35272 Fri May 31 16:58:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35274 * debug-symfile.c, sysmath.c: yet more compilation fixes.
35276 Fri May 31 16:35:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35278 * reflection.c, socket-io.c: more compilation fixes.
35280 Fri May 31 15:58:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35282 * appdomain.c, class.c, class.h, debug-symfile.c, decimal.c,
35283 domain.c, loader.c, object.c, object.h, reflection.c, string-icalls.h,
35284 unicode.c: warning and compiler compatibility fixes.
35286 Fri May 31 15:36:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35288 * class.h, metadata.c: fixed warnings/compilation errors.
35290 Fri May 31 13:08:25 CEST 2002 Paolo Molaro <lupus@ximian.com>
35292 * Makefile.am, mono-config.c, mono-config.h: configuration file
35294 * loader.c, loader.h: make Dll mapping configurable at runtime in the
35295 config file. Export methods to insert and lookup mappings.
35297 Fri May 31 12:45:38 CEST 2002 Paolo Molaro <lupus@ximian.com>
35299 * reflection.c: handle types and boxed objects in custom attr
35302 2002-05-30 Martin Baulig <martin@gnome.org>
35305 (ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token): Removed.
35307 Thu May 30 14:15:02 CEST 2002 Paolo Molaro <lupus@ximian.com>
35309 * metadata.c, metadata.h: added mono_metadata_implmap_from_method()
35310 to lookup the implmap row for a P/Invoke method.
35311 * loader.c: added mono_lookup_pinvoke_call(): we only lookup a
35312 P/Invoke method from the runtime on an as needed basis.
35314 2002-05-28 Dietmar Maurer <dietmar@ximian.com>
35316 * metadata.c (mono_metadata_parse_signature): impl.
35318 Tue May 28 16:02:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35320 * class.c: handle .pack directive.
35322 Tue May 28 11:04:46 CEST 2002 Paolo Molaro <lupus@ximian.com>
35324 * object.c: initialize static fields with RVA data.
35326 2002-05-25 Martin Baulig <martin@gnome.org>
35329 (ves_icall_Debugger_DwarfFileWriter_get_type_token): Removed.
35331 2002-05-24 Martin Baulig <martin@gnome.org>
35334 (ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig): Removed.
35335 (ves_icall_Debugger_MonoSymbolWriter_method_from_token): Renamed to
35336 `ves_icall_Debugger_MonoSymbolWriter_method_builder_from_token'.
35338 Thu May 23 18:44:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35340 * object.c: special case string ctros in invoke.
35341 * gc.c: silly whitespace changes.
35343 2002-05-23 Dietmar Maurer <dietmar@ximian.com>
35345 * threadpool.[ch]: impl. a threadpool that can
35346 be used by mint and mono.
35348 2002-05-22 Martin Baulig <martin@gnome.org>
35350 * debug-symfile.c (ves_icall_Debugger_MonoSymbolWriter_method_from_token):
35351 The first argument is now a `MonoReflectionModuleBuilder *', the return
35352 value is a `MonoReflectionModuleBuilder *'. Use the AssemblyBuilder's
35353 `methods' field to get the method builder. The `token' argument is the
35356 * unicode.c (iconv_get_length, iconv_convert): Silently ignore all
35357 invalid characters instead of g_assert_not_reached()ing. This seems
35358 to be the behaviour of mscorlib.
35360 2002-05-22 Dietmar Maurer <dietmar@ximian.com>
35362 * object.c (mono_runtime_invoke_array): applied patch from Rachel
35363 Hestilow to fix bug #25104
35365 2002-05-21 Martin Baulig <martin@gnome.org>
35367 * debug-symfile.c (mono_debug_find_source_location): New function.
35368 Looks up an IL offset in the line number table and returns the source
35369 location as a string.
35371 2002-05-21 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35374 (mono_double_ToStringImpl): changed %f by %g until we have something
35377 2002-05-21 Nick Drochak <ndrochak@gol.com>
35379 * icall.c : Use different name for Math.Pow's icall. Needed to check
35380 parameters first in C#.
35382 Mon May 20 17:36:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35384 * icall.c, reflection.h: added icall to get info about an event.
35386 2002-05-20 Radek Doulik <rodo@ximian.com>
35388 * object.c (mono_value_box): don't use memcpy for boxing on BIG
35390 (mono_value_box): don't use memcpy for small sizes on
35391 architectures with unaligned access
35393 2002-05-20 Martin Baulig <martin@gnome.org>
35395 * reflection.c (mono_reflection_setup_internal_class): Don't crash
35396 if `tb->parent == NULL'.
35397 (mono_reflection_create_internal_class): New function. This is
35398 called from TypeBuilder.CreateType() and sets `klass->enum_basetype'
35401 * icall.c ("System.Reflection.Emit.TypeBuilder::create_internal_class"):
35404 2002-05-19 Martin Baulig <martin@gnome.org>
35406 * unicode.c (ves_icall_iconv_get_bytes): Actually use the `charCount'
35407 argument to get the length, don't default to the array length.
35409 2002-05-18 Miguel de Icaza <miguel@ximian.com>
35411 * assembly.c (mono_assembly_setrootdir): New function used to
35412 override the MONO_ASSEMBLIES directory.
35414 Fri May 17 20:39:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35416 * icall.c: ValueType_GetHashCode() initialize local var.
35418 Thu May 16 17:20:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35420 * reflection.c: sort custom attributes table.
35422 Thu May 16 16:08:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35424 * reflection.c: support named args in custom attributes (write support).
35426 Thu May 16 13:04:59 CEST 2002 Paolo Molaro <lupus@ximian.com>
35428 * reflection.c: fix finally position calculation.
35430 2002-05-15 Radek Doulik <rodo@ximian.com>
35432 * reflection.c: fixed endianess at many places
35434 * icall.c (ves_icall_InitializeArray): comment out debug msg
35436 2002-05-15 Dietmar Maurer <dietmar@ximian.com>
35438 * object.c (mono_unhandled_exception): new function to handle
35439 unhandled exceptions.
35440 (mono_unhandled_exception): call the UnhandledException event.
35441 (mono_runtime_delegate_invoke): impl.
35443 Wed May 15 15:59:55 CEST 2002 Paolo Molaro <lupus@ximian.com>
35445 * metadata.h, metadata.c, class.c: mono_metadata_field_info ()
35446 returns the RVA, not the direct pointer to the data. Handle the case
35447 when the class size is fixed.
35449 Tue May 14 16:59:44 CEST 2002 Paolo Molaro <lupus@ximian.com>
35451 * reflection.c: fix some endianess issues.
35453 2002-05-14 Dietmar Maurer <dietmar@ximian.com>
35455 * object.c (mono_runtime_invoke): is now able to catch exceptions.
35457 * threads.c (mono_thread_init): added a callback which is invoked
35460 2002-05-14 Dan Lewis <dihlewis@yahoo.co.uk>
35462 * icall.c: make GetHashCode return non-negative values.
35464 2002-05-14 Dan Lewis <dihlewis@yahoo.co.uk>
35466 * object.c, icall.c, gc.c: revert to address-based hashcode.
35468 2002-05-13 Miguel de Icaza <miguel@ximian.com>
35470 * icall.c (mono_double_ParseImpl): Added ParseImpl method.
35472 Mon May 13 16:40:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35474 * icall.c, class.c: special case <Module>.
35476 2002-05-13 Dan Lewis <dihlewis@yahoo.co.uk>
35478 * icall.c: fix bug in GetNow().
35480 2002-05-11 Dietmar Maurer <dietmar@ximian.com>
35482 * object.c (mono_runtime_class_init): make sure that we call all
35483 static class constructors.
35485 Fri May 10 18:14:51 CEST 2002 Paolo Molaro <lupus@ximian.com>
35487 * reflection.c: sort methodsemantics table.
35489 Fri May 10 16:31:49 CEST 2002 Paolo Molaro <lupus@ximian.com>
35491 * reflection.h, reflection.c: honour init locals setting.
35493 Thu May 9 18:50:00 EDT 2002 Daniel Morgan <danmorg@sc.rr.com>
35495 * icall.c: copied Double ToStringImpl for Single ToStringImpl
35497 Wed May 8 12:28:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35499 * reflection.c: support ContructorBuilders in attribute blob creation.
35501 Wed May 8 12:06:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35503 * reflection.c: some changes to build a binary that can be run
35504 directly in windows.
35506 Mon May 6 13:10:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35508 * loader.c: print a big message when an icall can't be found.
35510 2002-05-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35512 * string-icalls.c: fix bug 24248.
35514 Sat May 4 14:03:21 CEST 2002 Paolo Molaro <lupus@ximian.com>
35516 * appdomain.c, appdomain.h, assembly.c, assembly.h, image.h,
35517 icall.c, reflection.h: separate assembly loading by pathname and by
35518 assembly name. Use the MONO_PATH env var to search for assemblies.
35520 Thu May 2 17:56:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35522 * assembly.c, image.h: add some support for assemblies
35523 with multiple modules.
35524 * class.c, class.h: export mono_class_from_typeref().
35525 * loader.c: remove duplicated code and use mono_class_from_typeref(),
35528 Thu May 2 15:51:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35530 * unicode.c: Char.IsNumber doesn't include hex digits as the ms
35531 documentation says (the ECMA one is correct).
35533 2002-05-02 Dick Porter <dick@ximian.com>
35535 * threads.c: Use GC_debug_register_finalizer with GC_debug_malloc.
35536 Don't name the synchronisation mutex.
35538 2002-04-30 Jeffrey Stedfast <fejj@ximian.com>
35541 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetBytes):
35542 Make the prototypes match.
35543 (ves_icall_System_Security_Cryptography_RNGCryptoServiceProvider_GetNonZeroBytes):
35547 (ves_icall_System_CurrentTimeZone_GetTimeZoneData): Fixed for
35548 systems that use 'timezone' rather than tm.tm_gmtoff. Also, not
35549 all systems have tm.tm_zone, so use strftime() with %Z to print
35550 the timezone abreviation into a temp string.
35552 * object.c (mono_ldstr): Fixed to use mono_string_chars() macro
35553 rather than mono_array_addr() on a MonoString on Big Endian
35556 2002-04-30 Dietmar Maurer <dietmar@ximian.com>
35558 * string-icalls.c (ves_icall_System_String_InternalReplace_Str):
35561 2002-04-30 Dick Porter <dick@ximian.com>
35563 * socket-io.c: Cope with SOCKET being an integer rather than a
35566 * threads.c: Added Thread_free_internal, to deal with thread
35567 handle cleanup. Moved calls to handle_store() and handle_remove()
35568 to start_wrapper(), so each can only be called once. Allocate
35569 synchronisation blocks with GC_malloc(), and use GC finalisation
35570 to close the handles.
35572 * icall.c: added System.Threading.Thread::Thread_free_internal
35574 Mon Apr 29 15:33:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35576 * icall.c: support Environment.Exit, CommandLineArgs().
35578 Mon Apr 29 15:15:57 CEST 2002 Paolo Molaro <lupus@ximian.com>
35580 * object.c, object.h: added mono_runtime_run_main () and
35581 mono_runtime_get_main_args () for use in System.Environment.
35583 Mon Apr 29 13:45:11 CEST 2002 Paolo Molaro <lupus@ximian.com>
35585 * gc.c: fix thinko, enable actual finalization since the jit is now
35588 Mon Apr 29 12:47:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35590 * gc.c, object.c: take into account that an object may be offset wrt the address
35591 returned by GC_malloc().
35593 Mon Apr 29 12:14:39 CEST 2002 Paolo Molaro <lupus@ximian.com>
35595 * image.c: handle files without entries in the assembly table (modules).
35597 2002-04-28 Patrik Torstensson <patrik.torstensson@intel.com>
35599 * reflection.c (mono_reflection_setup_internal_class): remove g_assert_not_reached() to allow
35600 mcs selfhosting again (build breaker) and did move the check to class instead. parent is
35601 allowed to be null when it's System.Object class setup.
35603 2002-04-27 Martin Baulig <martin@gnome.org>
35605 * reflection.c (mono_reflection_setup_internal_class): g_assert_not_reached()
35606 if `tb->parent == NULL' rather than crashing.
35608 2002-04-28 Nick Drochak <ndrochak@gol.com>
35610 * sysmath.c (ves_icall_System_Math_Asin): Fix copy-paste error. Was
35611 calling acos() where asin() should have been called.
35613 2002-04-26 Martin Baulig <martin@gnome.org>
35615 * assembly.c (default_assembly_name_resolver): Use G_FILE_TEST_IS_REGULAR
35616 instead of G_FILE_TEST_EXISTS - if you're in mcs/class/corlib/System/Test,
35617 there's a subdirectory called `System', but we don't want to read that
35618 subdirectory as an assembly.
35620 2002-04-25 Martin Baulig <martin@gnome.org>
35622 * debug-symfile.c: Reflect latest MonoString changes.
35624 Thu Apr 25 16:38:01 CEST 2002 Paolo Molaro <lupus@ximian.com>
35626 * rand.c, rand.h: instance method icalls need to have an explicit
35627 this pointer as first argument in the C implementation.
35629 2002-04-25 Nick Drochak <ndrochak@gol.com>
35631 * icall.c: Fix typo in map for GetNonZeroBytes
35633 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
35635 * string-icalls.c : String does now passes unit tests without any
35636 errors, the following changes has been made:
35638 Implemented replace methods.
35639 Renaming of methods to (try) follow the standard.
35640 Fixed compare ordinal
35641 Made all memory allocated directly to function instead of via icall function.
35642 Small performance fix in is_in_array function
35644 (2002-04-23) Changes from Duncan Mak <duncan@ximian.com>
35646 c (mono_string_Internal_ctor_charp_int_int):
35647 (mono_string_Internal_ctor_sbytep_int_int): Removed check for
35648 sindex < 0, throw ArgumentOutOfRangeException instead of
35649 ArgumentNullException.
35651 Added new check for length == 0, however
35652 I need to make it return String.Empty from the C code.
35654 (mono_string_Internal_ctor_sbytep): Use mono_string_new, and let
35655 that calculate the length for us here.
35657 (mono_string_Internal_ctor_sbytep_int_int): Replaced
35658 mono_string_new_utf16 with mono_string_new, since value is utf8.
35660 Wed Apr 24 18:43:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35662 * object.c: register the object for finalization if needed.
35663 Allocate one more char in the string for the terminating 0 char.
35665 Wed Apr 24 18:22:27 CEST 2002 Paolo Molaro <lupus@ximian.com>
35667 * class.c, class.h, image.c: check if a type implemenst a destructor.
35668 Use the proper key for array class lookups.
35669 * icall.c: register the icalls in the System.GC class.
35670 * gc.c, gc.h: GC-related functions and icalls.
35672 2002-04-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35676 * unicode.c: free some strings gotten from mono_string_to_utf8 and
35677 changed a couple of free () by g_free ().
35679 * decimal.c: one-liner in the comments for decimal2string ().
35681 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
35683 * object.c (mono_runtime_invoke_array) : Bug because of my incompetence.
35685 2002-04-24 Patrik Torstensson <patrik.torstensson@labs2.com>
35687 * reflection.c (mono_reflection_get_custom_attrs) : fixed image bug (crash)
35688 * object.c (mono_runtime_invoke_array) : handle null in params
35690 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
35692 * string-icalls.c: fixed bug in split (one off bug)
35694 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
35696 * string-icalls.c: fixed bug in remove and lastindexofany, add equals icall.
35697 * icalls.c: added String::Equals as internal method
35699 2002-04-23 Patrik Torstensson <patrik.torstensson@labs2.com>
35701 * threads.c: fixed bug in the double interlocked functions
35703 2002-04-22 Patrik Torstensson <patrik.torstensson@labs2.com>
35705 * threads.c: implemented all of the new interlocked icalls.
35706 * string-icalls.c: fix a bug in insert.
35707 * icalls.c: added the icalls for interlocked, removed old string functions.
35709 Mon Apr 22 19:44:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35711 * loader.c: fix off-by-one error when reading argument names.
35713 Mon Apr 22 19:28:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35715 * profiler.c: win32 counter implementation (untested).
35716 * icall.cs: win32 GetNow() and GetTimeZoneData() implementations
35717 (the latter needs testing and more complete impl. from win32 folks).
35719 2002-04-21 Dan Lewis <dihlewis@yahoo.co.uk>
35721 * object.c: mono_array_new_full workaround mono_array_class_get
35724 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
35726 * string-icalls.c (mono_string_InternalRemove): Fixed overwrite bug.
35727 * object.h (mono_string_chars): Changed casting type.
35729 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
35731 * string-icalls.c: Fixed trim method, added the constructors done by Duncan, fixed
35732 method signatures to use gunichar2 instead of gint16.
35734 2002-04-20 Dan Lewis <dihlewis@yahoo.co.uk>
35736 * object.h, object.c: domain-specific versions of mono_object_new and
35739 2002-04-20 Dietmar Maurer <dietmar@ximian.com>
35741 * object.c: changed String layout
35743 * string-icalls.c (mono_string_Internal_ctor_chara): added
35744 internal string constructors.
35746 Sat Apr 20 13:33:07 CEST 2002 Paolo Molaro <lupus@ximian.com>
35748 * threads.c: pass 'this' to the thread start routine.
35750 2002-04-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35752 * string-icalls.c: fix IndexOf and LastIndexOf. Now
35753 InternalCompareStr don't call twice mono_string_cmp_char for the last
35754 character. Improved performance in mono_string_cmp_char.
35756 Fri Apr 19 19:26:28 CEST 2002 Paolo Molaro <lupus@ximian.com>
35758 * Makefile.am, appdomain.c, class.c, object.c: split runtime-depended
35759 code into its own library: libmonoruntime.
35761 2002-04-19 Dan Lewis <dihlewis@yahoo.co.uk>
35763 * object.h, object.c: changed array format so that szarrays do not
35764 require a bounds structure.
35765 * icall.c, appdomain.c: support for new szarray format.
35767 Fri Apr 19 18:04:34 CEST 2002 Paolo Molaro <lupus@ximian.com>
35769 * metadata.c: compare also the retuns type when comparing signatures:
35770 we didn't do this as an optimization since really overloaded methods
35771 must differ also in the arguments, but this doesn't work with
35772 low-level IL code (or when using explicit conversion operators: see
35773 bug#23498 for an example).
35775 Fri Apr 19 16:14:52 CEST 2002 Paolo Molaro <lupus@ximian.com>
35777 * loader.c: SZARRAY types can be saved as TYPESPEC, too.
35779 Thu Apr 18 17:15:09 CEST 2002 Paolo Molaro <lupus@ximian.com>
35781 * icall.c: make MonoType::GetElementType its own icall.
35783 Thu Apr 18 16:41:30 CEST 2002 Paolo Molaro <lupus@ximian.com>
35785 * icall.c: remove MonoMethod_get_Name().
35786 * reflection.c, reflection.h, verify: cache the method name in the MonoMethod
35789 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
35791 * string-icalls.c: optimized a few methods.
35793 2002-04-17 Patrik Torstensson <patrik.torstensson@labs2.com>
35795 * icall.c: added all new string internal calls
35796 * string-icalls.c: added, new string internal call implementation.
35797 * object.c: added mono_string_new_size for allocating a string a size
35799 2002-04-17 Dietmar Maurer <dietmar@ximian.com>
35801 * object.c (mono_object_isinst): use the same code as in the
35802 optimized x86 version.
35804 Wed Apr 17 14:14:36 CEST 2002 Paolo Molaro <lupus@ximian.com>
35806 * profiler.c: TSC-based timer code (faster and more accurate).
35807 Not hooked up in configure, yet (set USE_X86TSC to 1).
35809 Wed Apr 17 12:33:10 CEST 2002 Paolo Molaro <lupus@ximian.com>
35811 * profiler.c, profiler.h: track time spent compiling methods.
35812 * threads.c: track thread creation/destruction.
35814 Tue Apr 16 20:08:43 CEST 2002 Paolo Molaro <lupus@ximian.com>
35816 * profiler.c, profiler.h, profiler-private.h: profiling interface
35817 and sample implementation. Moved here so that it can be used also by
35820 Tue Apr 16 12:58:12 CEST 2002 Paolo Molaro <lupus@ximian.com>
35822 * reflection.c, reflection.h: keep types and other handles separate in
35823 the hash tables for referred tokens. Add guid for modules.
35825 Mon Apr 15 11:37:33 CEST 2002 Paolo Molaro <lupus@ximian.com>
35827 * assembly.c: fix bugs found with valgrind.
35828 * metadata.h, metadata.c: added mono_metadata_guid_heap().
35830 2002-04-14 Patrik Torstensson <patrik.torstensson@labs2.com>
35832 * threads: added icall support for getting current domain for
35835 2002-04-13 Martin Baulig <martin@gnome.org>
35837 * debug-symfile.h (MonoDebugLocalInfo): Renamed to MonoDebugVarInfo.
35838 (MonoDebugVarInfo): Added `index' field for register based addresses.
35839 (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 9.
35840 (MonoDebugMethodInfo): Replaced `guint32 *param_offsets' with
35841 `MonoDebugVarInfo *params' and `guint32 this_offset' with
35842 `MonoDebugVarInfo *this_var'.
35844 * debug-symfile.c (relocate_variable): New static function to write
35845 a location description for a local variable or method parameter.
35847 2002-04-12 Martin Baulig <martin@gnome.org>
35849 * debug-symfile.h (MonoDebugLocalInfo): New type. This contains the
35850 stack offset and begin/end scope address of a local variable.
35851 (MonoDebugMethodInfo): Replaced `guint32 *local_offsets' with
35852 'MonoDebugLocalInfo *locals', added `prologue_end' and `epilogue_begin'.
35853 (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 8.
35855 * debug-symfile.c (MRT_variable_start_scope, MRT_variable_end_scope):
35856 Added new relocation types for start/end scope of a local variable.
35858 Fri Apr 12 18:30:29 CEST 2002 Paolo Molaro <lupus@ximian.com>
35860 * object.h: add mono_object_domain() macro.
35861 * reflection.c: handle typespecs.
35862 * icall.c: MonoMethod::get_Name() implementation.
35864 Thu Apr 11 12:29Ni:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35866 * icall.c: String::GetHashCode() icall implementation.
35868 Wed Apr 10 21:16:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35870 * icall.c: String::IndexOfAny icall.
35871 * object.c, object.h: make array->max_length more useful.
35872 Intrduced mono_object_class() and mono_string_length() macros.
35874 2002-04-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
35876 * unicode.c (ves_icall_System_Char_IsNumber): use g_unichar_isxdigit
35877 instead of g_unichar_isdigit.
35879 2002-04-11 Nick Drochak <ndrochak@gol.com>
35881 * icall.c: Implement a simple Double.ToString().
35883 Tue Apr 9 21:31:16 CEST 2002 Paolo Molaro <lupus@ximian.com>
35885 * appdomain.h: only io-layer.h is supposed to be included.
35886 * icall.c: explicitly import environ. Fix warning.
35888 2002-04-10 Nick Drochak <ndrochak@gol.com>
35890 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData) :
35891 return true even if it's not Daylight Savings time.
35892 Only return false for the case where the function isn't
35893 implemented for a plaform (read Windows).
35895 Tue Apr 9 13:05:56 CEST 2002 Paolo Molaro <lupus@ximian.com>
35897 * appdomain.h, appdomain.c, class.c, object.c: protect MonoDomain
35900 2002-04-09 Dietmar Maurer <dietmar@ximian.com>
35902 * mempool.c (mono_mempool_alloc): only use g_malloc when
35903 absolutely necessary.
35905 2002-04-08 Dietmar Maurer <dietmar@ximian.com>
35907 * mempool.c (MEM_ALIGN): hardcode MEM_ALIGN to 8
35909 * class.c (mono_class_vtable): use domain mempool to allocate vtable
35910 (mono_class_proxy_vtable): use domain mempool
35912 Mon Apr 8 17:17:04 CEST 2002 Paolo Molaro <lupus@ximian.com>
35914 * appdomain.h, appdomain.c: split initialization that requires the
35915 execution engine support into mono_runtime_init().
35917 2002-04-08 Dietmar Maurer <dietmar@ximian.com>
35919 * class.c (mono_class_init): don't include vtable inside MonoClass
35920 to save some memory, gather some statistics.
35921 (mono_class_vtable): use g_malloc instead of GC_malloc when possible
35923 Sat Apr 6 20:07:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35925 * icall.c: internalcall implementation for ValueType.Equals().
35927 2002-04-06 Dietmar Maurer <dietmar@ximian.com>
35929 * object.c (mono_message_init): moved
35930 (mono_runtime_exec_main): new arch. independent impl.
35931 (mono_runtime_invoke_array): new method - like
35932 mono_runtime_invoke, but you can pass an array of objects.
35933 (mono_remoting_invoke): new arch. independent impl.
35934 (mono_message_invoke): new arch. independent impl.
35935 (mono_runtime_class_init): new arch. independent impl.
35936 (mono_runtime_object_init): new arch. independent impl.
35938 Fri Apr 5 18:29:14 CEST 2002 Paolo Molaro <lupus@ximian.com>
35940 * metadata.c, object.c, reflection.c: documented the exported
35943 Fri Apr 5 15:42:31 CEST 2002 Paolo Molaro <lupus@ximian.com>
35945 * icall.c: simpler code to pass the assembly builder data to corlib.
35946 Implement GetNestedTypes() internalcall.
35948 Thu Apr 4 21:46:48 CEST 2002 Paolo Molaro <lupus@ximian.com>
35950 * class.c: warn if a type can't be loaded.
35952 2002-04-04 Dietmar Maurer <dietmar@ximian.com>
35954 * image.h: typedef MonoImageOpenStatus
35955 * types.h: removed unused file
35957 2002-04-04 Dan Lewis <dihlewis@yahoo.co.uk>
35959 * icall.c: Enum_ToObject accepts enum value arguments.
35961 Thu Apr 4 11:35:37 CEST 2002 Paolo Molaro <lupus@ximian.com>
35963 * class.c: move initialization of properties, events and nested
35964 classes, so that they happen for interfaces, too.
35966 Wed Apr 3 20:03:32 CEST 2002 Paolo Molaro <lupus@ximian.com>
35968 * icall.c: cleanup some ugly casts in Array_SetValue*.
35970 Wed Apr 3 19:49:53 CEST 2002 Paolo Molaro <lupus@ximian.com>
35972 * icall.c: the values array fro enums is of the correct type, now.
35973 Implement (correctly) getFullName instead of assQualifiedName for
35975 * reflection.h, reflection.c: added mono_type_get_name ().
35977 Wed Apr 3 17:56:22 CEST 2002 Paolo Molaro <lupus@ximian.com>
35979 * assembly.c, image.h: for each MonoImage, record from wich assembly
35981 * reflection.h, icall.c: added System_Reflection_Assembly_GetTypes().
35982 Make Type.Assembly work.
35984 2002-04-03 Dietmar Maurer <dietmar@ximian.com>
35986 * debug-symfile.h: use char* instead of gpointer to avoid
35989 * appdomain.c (mono_jit_info_table_find): use char* instead of gpointer
35991 * icall.c (ves_icall_InternalExecute): impl. FielSetter
35992 (ves_icall_System_Array_SetValueImpl): removed strange MonoArray cast
35994 2002-03-30 Dietmar Maurer <dietmar@ximian.com>
35996 * icall.c (mono_message_init): impl. (code cleanup)
35997 (ves_icall_InternalExecute): impl. FieldGetter
35999 * class.c (mono_class_init): added exerimental EXT_VTABLE_HACK, if
36000 defined we call all (non-static)methods through the vtable.
36002 Fri Mar 29 18:09:08 CET 2002 Paolo Molaro <lupus@ximian.com>
36004 * class.c: it seems GC_debug_malloc() makes the Boehm GC call the
36005 finalizer even though the memory is still referenced (and the chunk of
36006 memory is not freed).
36008 Fri Mar 29 17:43:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36010 * assembly.c: fix brokeness.
36012 Fri Mar 29 16:09:54 CET 2002 Paolo Molaro <lupus@ximian.com>
36014 * class.c: kill some warnings. Check explicit interface method
36015 implementation also without considering the namespace.
36016 Load also literal strings in static class data.
36018 2002-03-29 Miguel de Icaza <miguel@ximian.com>
36020 * assembly.c (default_assembly_name_resolver): Kill memory leak.
36021 (default_assembly_name_resolver): Make the resolver take the
36022 "base" directory where the assembly was originally defined, so we
36023 can load DLLs that are in the same directory as the assembly that
36024 is being referenced.
36026 2002-03-28 Dick Porter <dick@ximian.com>
36032 * unicode.c: Warning cleanups
36034 Thu Mar 28 18:06:14 CET 2002 Paolo Molaro <lupus@ximian.com>
36036 * object.h, reflection.h: use the correct type instead of MonoObject.
36038 2002-03-28 Martin Baulig <martin@gnome.org>
36040 * debug-symfile.c (mono_debug_class_get): Don't look in referenced assemblies.
36041 (mono_debug_update_symbol_file): Initialize classes if necessary.
36043 Thu Mar 28 15:58:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36045 * assembly.c, debug-helpers.c, image.c, image.h, metadata.c, pedump.c,
36046 rawbuffer.c, reflection.c, verify.c: mare warning cleanups.
36048 Thu Mar 28 15:20:39 CET 2002 Paolo Molaro <lupus@ximian.com>
36050 * assembly.h: fix function prototype.
36051 * metadata.h, metadata.c, object.h, private.h: get rid of warnings.
36052 * mono-endian.h: use const cast.
36054 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
36056 * icall.c (ves_icall_MonoMethodMessage_InitMessage): moved from message.c
36058 Thu Mar 28 12:32:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36060 * loader.c: don't assert when a typeref can't be loaded, give
36061 a chance to the runtime to trow an exception instead.
36062 * loader.h: fix warning.
36064 2002-03-28 Dietmar Maurer <dietmar@ximian.com>
36066 * class.c (mono_class_proxy_vtable): added proxy support
36068 2002-03-27 Dan Lewis <dihlewis@yahoo.co.uk>
36070 * icall.c: removed last of PAL calls, added System.Environment
36071 * file-io.h, file-io.c: MonoIO implementation
36072 * object.h, object.c: mono_string_to_utf16() now returns gunichar2*
36074 Tue Mar 26 19:56:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36076 * appdomain.c: do not use the byte marker in ldstr table lookup.
36077 * debug-helpers.c: allow two ':' to separate class and method name.
36078 * object.c: allocate arrays bounds with the GC, too.
36079 * verify: add a few more checks.
36081 Tue Mar 26 18:45:46 CET 2002 Paolo Molaro <lupus@ximian.com>
36083 * reflection.c: output also literal strings. Allocate parameter data
36084 with GC_malloc() (thanks, Martin, for catching this!).
36086 2002-03-26 Martin Baulig <martin@gnome.org>
36088 * debug-symfile.h (MonoDebugMethodInfo): Added `this_offset', don't
36089 include the `this' offset in the `param_offsets'.
36091 2002-03-25 Martin Baulig <martin@gnome.org>
36093 * debug-symfile.c (mono_debug_update_symbol_file): Use a new
36094 mono_debug_get_class() function to get the classes. Added new
36095 relocation types for arrays and strings.
36096 (mono_debug_get_class): New static function to search in all
36097 referenced assemblies for a metadata token.
36099 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 7.
36101 Mon Mar 25 13:08:18 CET 2002 Paolo Molaro <lupus@ximian.com>
36103 * reflection.h, reflection.c: use a gc-safe hash for hash tables that
36104 hold gc-allocated objects. Make the string heap a stream like the
36105 others. Removed duplicated code when writing stream info.
36106 Added asserts to catch possible buffer overflows. Set the sorted map
36107 for tables that need sorting. Added some documentation.
36109 Mon Mar 25 13:04:56 CET 2002 Paolo Molaro <lupus@ximian.com>
36111 * appdomain.h, appdomain.c, class.c, object.c: use a GC-safe hash table
36112 for interned strings and vtables.
36114 2002-03-24 Martin Baulig <martin@gnome.org>
36116 * icall.c (ves_icall_Type_GetFields): Reverse the list before storing
36117 it in the array since it was created with g_slist_prepend().
36119 2002-03-24 Martin Baulig <martin@gnome.org>
36121 * debug-symfile.c (mono_debug_local_type_from_signature): Renamed
36122 to ves_icall_Debugger_MonoSymbolWriter_get_local_type_from_sig().
36123 (mono_debug_method_from_token): Renamed to
36124 ves_icall_Debugger_MonoSymbolWriter_method_from_token().
36125 (ves_icall_Debugger_DwarfFileWriter_get_type_token): New interncall.
36127 * debug-symfile.c (MRT_type_sizeof, MRT_type_field_offset): New
36130 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 6.
36132 2002-03-24 Martin Baulig <martin@gnome.org>
36134 * debug-symfile.c (mono_debug_local_type_from_signature): New func.
36135 (mono_debug_method_from_token): New func.
36137 * icall.c (Mono.CSharp.Debugger.MonoSymbolWriter::get_local_type_from_sig):
36138 New interncall, calls mono_debug_local_type_from_signature().
36139 (Mono.CSharp.Debugger.MonoSymbolWriter::get_method): New interncall,
36140 calls mono_debug_method_from_token().
36142 2002-03-23 Martin Baulig <martin@gnome.org>
36144 * unicode.c (ves_icall_iconv_get_char_count): The `count' argument
36145 specifies the number of bytes to be converted, not the array size.
36146 Return the number of chars, not the number of bytes.
36147 (ves_icall_iconv_get_chars): The `byteCount' argument
36148 specifies the number of bytes to be converted, not the array size.
36150 2002-03-23 Martin Baulig <martin@gnome.org>
36152 * reflection.h (MonoReflectionSigHelper): New type.
36154 * reflection.c (mono_reflection_sighelper_get_signature_local),
36155 (mono_reflection_sighelper_get_signature_local): New functions.
36157 * icall.c (System.Reflection.Emit.SignatureHelper::get_signature_local),
36158 (System.Reflection.Emit.SignatureHelper::get_signature_field): New
36161 2002-03-23 Martin Baulig <martin@gnome.org>
36163 * rawbuffer.c (mono_raw_buffer_load_mmap): Use MAP_SHARED when
36164 is_writeable is set.
36165 (mono_raw_buffer_update): New function to write the modified map
36168 * debug-symfile.h (MonoDebugSymbolFile): Added `raw_contents_size'.
36170 * debug-symfile.c (mono_debug_update_symbol_file): Call
36171 mono_raw_buffer_update() when done writing.
36173 2002-03-23 Martin Baulig <martin@gnome.org>
36175 * debug-symfile.h (MONO_DEBUG_SYMBOL_FILE_VERSION): Increased to 5.
36177 * debug-symfile.c: Added support for arguments and local variables.
36179 2002-03-23 Dick Porter <dick@ximian.com>
36181 * debug-symfile.c: Remove extraneous 'include <elf.h>' that wasn't
36182 protected by ifdefs, hence breaking the w32 build.
36184 Thu Mar 21 17:35:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36186 * object.c: implement is_interned() the right way.
36188 2002-03-21 Martin Baulig <martin@gnome.org>
36190 * debug-symfile.[ch]: New files to handle debugging information
36191 files. There's also support to dynamically update these symbol
36192 files to include machine dependent information.
36194 2002-03-20 Dietmar Maurer <dietmar@ximian.com>
36196 * threads.c (mono_thread_create): new function to create thread
36199 2002-03-20 Martin Baulig <martin@gnome.org>
36201 * icall.c (ves_icall_InternalInvoke): Create a new object if the
36202 method is a constructor.
36203 (icall_map): Added "System.Reflection.MonoCMethod::InternalInvoke",
36204 points to ves_icall_InternalInvoke().
36206 2002-03-20 Dan Lewis <dihlewis@yahoo.co.uk>
36208 * file-io.c: Flush shouldn't throw exceptions.
36210 2002-03-19 Dan Lewis <dihlewis@yahoo.co.uk>
36212 * file-io.c: FileStream flush support; FileSetLength now
36213 restores file pointer.
36215 Tue Mar 19 18:17:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36217 * class.c: set image for pointer classes.
36219 2002/03/19 Nick Drochak <ndrochak@gol.com>
36221 * sysmath.c: Forgot one.
36223 2002-03-18 Miguel de Icaza <miguel@ximian.com>
36225 * sysmath.c: Avoid redefining existing names.
36227 2002-03-18 Dan Lewis <dihlewis@yahoo.co.uk>
36229 * sysmath.c, sysmath.h, icall.c, Makefile.am: math routines now
36230 handled by runtime as icall rather than dllimport from libm.so
36231 * file-io.c, file-io.h: fixed handle argument type.
36233 2002-03-18 Dick Porter <dick@ximian.com>
36235 * reflection.c (mono_image_get_type_info): rename interface to
36236 iface, because of "#define interface struct" on windows.
36238 Sat Mar 16 19:18:38 CET 2002 Paolo Molaro <lupus@ximian.com>
36240 * class.c, class.h: rename and export mono_ptr_class_get().
36241 * metadata.c: support MONO_TYPE_ARRAY in MonoType compare.
36242 * reflection.c, reflection.h, icall.c: better/saner type name
36243 parsing and MonoType creation. Handle MONO_TYPE_ARRAY in
36246 2002-03-14 Dietmar Maurer <dietmar@ximian.com>
36248 * class.c (mono_class_init): removed hardcoded GHC_SLOT
36250 * icall.c (ves_icall_InternalInvoke): impl.
36252 Wed Mar 13 00:27:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36254 * reflection.c: output the interface map table, too.
36256 2002-03-12 Dietmar Maurer <dietmar@ximian.com>
36258 * class.c (class_compute_field_layout): separate computation of
36259 static field layout
36261 2002-03-12 Dan Lewis <dihlewis@yahoo.co.uk>
36263 * icall.c: added System.Buffer support.
36264 * file-io.c: moved file icalls from PAL to FileStream.
36266 2002-03-12 Dietmar Maurer <dietmar@ximian.com>
36268 * icall.c (ves_icall_System_Object_GetHashCode): impl.
36270 2002-03-11 Dietmar Maurer <dietmar@ximian.com>
36272 * icall.c (ves_icall_System_ValueType_GetHashCode): impl.
36274 Mon Mar 11 14:45:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36276 * verify.c, verify.h: moved here the corlib/runtime consistency checks.
36278 Mon Mar 11 11:12:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36280 * debug-helpers.{c,h}: moved here from monograph some useful functions
36281 to locate a method by name/signature in a class or image. Included
36282 also a small and flexible IL disassembler.
36284 Fri Mar 8 16:29:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36286 * reflection.c: fixup tokens in methods with small header size, too.
36288 2002-03-08 Dietmar Maurer <dietmar@ximian.com>
36290 * object.c (mono_string_to_utf8): remove assert(!error), instead
36293 Thu Mar 7 18:55:15 CET 2002 Paolo Molaro <lupus@ximian.com>
36295 * icall.c: update to the new mono_Array_class_get interface.
36297 Thu Mar 7 17:23:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36299 * appdomain.c, object.c: Boehm-GC enable.
36300 * icall.c: make get_data_chunk() support split data requests.
36301 Ensure a class is initialized in more cases. Return only the first
36302 property found in GetProperties() or the compiler gets confused.
36303 Implemented GetEvents(). Temporary fix to GetType(), needs rewriting.
36304 * reflection.h, reflection.c: add fixup mechanism for field and method
36305 tokens. Initialize assembly->typeref in a single place. Output
36306 properties after events. Support custom attributes for events, too.
36307 Typo fix for paramter custom attrs.
36309 2002-03-07 Martin Baulig <martin@gnome.org>
36311 * icall.c (ves_icall_System_Array_FastCopy): Small fix.
36313 2002-03-07 Dietmar Maurer <dietmar@ximian.com>
36315 * class.c (mono_array_class_get): fix. for multi. dim. arrays
36317 2002-03-06 Martin Baulig <martin@gnome.org>
36319 * icall.c (ves_icall_System_Array_CreateInstanceImpl): Make this work with
36320 non-zero lower bounds. See testcases #F10-#F13.
36322 2002-03-05 Martin Baulig <martin@gnome.org>
36324 * exception.c (mono_get_exception_argument_out_of_range): New exception.
36326 * icall.c (ves_icall_System_Array_GetValue): Moved actual implementation to
36327 ves_icall_System_Array_GetValue(), only calculate the absolute array position
36329 (ves_icall_System_Array_SetValue): Likewise.
36330 (ves_icall_System_Array_GetValueImpl): New interncall. Takes an array position
36331 as argument and does the actual work. This function is used when copying a
36332 multi-dimensional array.
36333 (ves_icall_System_Array_SetValueImpl): Almost completely rewrote this. It can
36334 now do all the widening conversions of value types.
36335 (ves_icall_System_Array_CreateInstanceImpl): Implemented.
36337 Tue Mar 5 18:14:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36339 * class.c: remove some magic numbers and use the smbolic names,
36340 instead. Added init_events() to load event info at class init time.
36341 * metadata.h, metadata.c: added mono_metadata_events_from_typedef()
36342 and mono_metadata_methods_from_event().
36343 * reflection.h, reflection.c: added support for writing out the evnets
36344 related information.
36346 Mon Mar 4 20:32:43 CET 2002 Paolo Molaro <lupus@ximian.com>
36348 * reflection.h, icall.c: use a different method (GetInterfaces)
36349 to gather interface info and add isbyref, isprimitive and
36350 ispointer to the ves_icall_get_type_info() return value.
36352 Mon Mar 4 11:22:26 CET 2002 Paolo Molaro <lupus@ximian.com>
36354 * class.h: stared adding support for events.
36355 * icall.c: split find_members implementation. Added debug icall to get
36356 the address of an object.
36357 * reflection.c: handle TypeBuilders in mono_type_get_object().
36359 2002-03-01 Martin Baulig <martin@gnome.org>
36361 * icall.c (ves_icall_System_Array_GetLength): This must throw an
36362 ArgumentOutOfRangeException(), not an ArgumentException().
36363 (ves_icall_System_Array_GetLowerBound): Likewise.
36364 (ves_icall_System_Array_GetValue): Improved argument checking.
36365 (ves_icall_System_Array_SetValue): Improved argument checking.
36367 2002-03-01 Martin Baulig <martin@gnome.org>
36369 * icall.c (ves_icall_System_Array_GetValue): Raise an exception when
36370 called with invalid arguments rather than just dying with g_assert().
36371 (ves_icall_System_Array_SetValue): Likewise.
36372 (ves_icall_System_Array_CreateInstanceImpl): Don't g_assert_not_reached(),
36373 raise a NotImplementedException instead.
36374 (ves_icall_System_Array_GetLength): Added argument checking.
36375 (ves_icall_System_Array_GetLowerBound): Added argument checking.
36377 2002-03-01 Dietmar Maurer <dietmar@ximian.com>
36379 * object.h (mono_assert): new macros mono_assert and
36380 mono_assert_not_reached
36382 2002-02-28 Martin Baulig <martin@gnome.org>
36384 * icall.c: Rename "System::String::Intern" to "System::String::_Intern"
36385 and "System::String::IsInterned" to "System::String::_IsInterned".
36387 Thu Feb 28 19:19:35 CET 2002 Paolo Molaro <lupus@ximian.com>
36389 * icall.c: remove hacks for typebuilder. Added icall to create a
36390 modified type from a tybebuilder.
36391 * reflection.c: removed hacks for TypeBuilder. Create also a MonoImage
36392 in mono_image_basic_init (). Added mono_reflection_setup_internal_class ()
36393 to create a backing MonoClass for a TypeBuilder.
36395 Thu Feb 28 15:35:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36397 * class.c, class.h: more refactoring of class init.
36398 Export mono_class_setup_mono_type() and mono_class_setup_parent().
36400 Thu Feb 28 12:33:41 CET 2002 Paolo Molaro <lupus@ximian.com>
36402 * marshal.c, marshal.h: start of marshaling interface.
36404 Wed Feb 27 22:15:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36406 * icall.c: fix order in assembly qualified name icall.
36408 Wed Feb 27 18:45:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36410 * class.c: do not free str, since we store it in the hash table.
36411 * reflection.h: add label field to MonoILExceptionInfo.
36412 * reflection.c: handle references to more than one assembly. Handle
36413 case when there isn't a module created in the assembly.
36415 Wed Feb 27 12:35:10 CET 2002 Paolo Molaro <lupus@ximian.com>
36417 * class.c: Fix typo. Start refactoring of class init code.
36419 Wed Feb 27 12:23:00 CET 2002 Paolo Molaro <lupus@ximian.com>
36421 * appdomain.c: exit with 1 on error.
36422 * class.c: we already have the name in MonoClassField.
36423 * image.c, image.h, metadata.c, pedump.c: use directly a pointer in
36424 MonoStreamHeader instead of an offset of image->raw_metadata.
36426 2002-02-26 Miguel de Icaza <miguel@ximian.com>
36428 * appdomain.c (mono_init): Be even more descriptive about the error.
36430 Tue Feb 26 16:18:07 CET 2002 Paolo Molaro <lupus@ximian.com>
36432 * appdomain.c: give the user an informative message when corlib can't
36435 2002-02-26 Martin Baulig <martin@gnome.org>
36437 * icall.c (ves_icall_System_CurrentTimeZone_GetTimeZoneData):
36438 New icall to get the time zone data.
36440 Mon Feb 25 15:51:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36442 * reflection.c: set virtual and raw size of section correctly.
36443 * threads.c: transfer domain information to newly created threads.
36445 Fri Feb 22 18:55:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36447 * class.c: when instancing a class in a domain, load the default
36448 vaules for static fields from the constant table. Fix System.Enum to
36450 * icall.c: implement Object::GetType() internalcall. Implemented
36451 MonoField::GetValue() internalcall. Avoid SEGV in search_method().
36452 Fixed checking of binding flags in find_members().
36453 * metadata.c, metadata.h: introduce mono_metadata_type_hash().
36454 * reflection.c: handle enumerations when writing to the constant
36455 table. Use a different object cache for types.
36458 2002-02-22 Dietmar Maurer <dietmar@ximian.com>
36460 * object.c (mono_object_isinst): fix for arrays
36462 * icall.c (ves_icall_type_is_subtype_of): fix for 2 interfaces
36464 Thu Feb 21 21:00:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36466 * object.c: don't use mprotect () and fix intern pool hash table
36467 lookup for big endian systems.
36469 Thu Feb 21 19:30:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36471 * icall.c: change type_is_subtype_of () signature.
36473 2002-02-21 Mark Crichton <crichton@gimp.org>
36475 * rand.c, rand.h: Added random number generator for
36476 System.Security.Cryptography classes.
36478 * exception.c, exception.h: Added mono_get_exception_not_implemeted.
36480 * icall.c: Added System.Security.Cryptography calls.
36482 Thu Feb 21 16:45:34 CET 2002 Paolo Molaro <lupus@ximian.com>
36484 * class.c, icall.c, metadata.c: better support for pointer types.
36485 Create a class for them as suggested by dietmar. Fix TYPE_ARRAY class.
36486 * reflection.c: Add support for getting custom attrs for properties
36487 and simplify some code.
36489 Wed Feb 20 22:20:29 CET 2002 Paolo Molaro <lupus@ximian.com>
36491 * icall.c: change getToken () and add custom attribute GetBlob()helper
36493 * reflection.h: add custom attrs array to the reflection builder structures.
36494 * reflection.c: encode and emit custom attributes for all the relevant
36495 reflection objects. Cache fieldref and methodref tokens. Change
36496 mono_image_create_token() interface to take a MonoDynamicAssembly.
36497 More complete custom attributes decoder. Load custom attributes for
36498 Assembly, Field, Method and Constructor objects, too. Make the
36499 returned array an Attribute[] one, not object[]. Added
36500 mono_reflection_get_custom_attrs_blob() to encode the arguments of a
36501 custom attribute constructor.
36503 2002-02-20 Dick Porter <dick@ximian.com>
36507 * socket-io.c: Windows portability fixes (sometimes just ifdeffing
36508 problem code out for now).
36510 2002-02-19 Radek Doulik <rodo@ximian.com>
36512 * object.c (mono_ldstr): use hash table to avoid multiple swapping
36514 Tue Feb 19 20:23:11 CET 2002 Paolo Molaro <lupus@ximian.com>
36516 * icall.c: register the GetCustomAttributes method.
36517 * object.c, object.h: add mono_string_new_len ().
36518 * reflection.h, reflection.c: added mono_runtime_invoke(),
36519 mono_install_runtime_invoke(). Added
36520 mono_reflection_get_custom_attrs () to load custom attributes and
36521 create the attribute objects.
36523 2002-02-19 Dick Porter <dick@ximian.com>
36524 * threads-dummy-types.c:
36525 * threads-dummy-types.h:
36528 * threads-pthread-types.c:
36529 * threads-pthread-types.h:
36530 * threads-pthread.c:
36531 * threads-pthread.h: Deleted obsolete files
36533 2002-02-19 Dietmar Maurer <dietmar@ximian.com>
36535 * class.c (mono_class_vtable): runtime init the class when we
36536 allocate static class data.
36538 * icall.c (ves_icall_System_Array_SetValue): check for null values.
36540 * appdomain.c (mono_domain_transfer_object): impl. hack for Arrays
36541 and String - but we will need generic marshalling support in the
36543 (mono_init): set the domain name in a ms compatible way
36545 * object.c (mono_string_new_utf16): bug fix: use char[] instead of
36548 2002-02-18 Dietmar Maurer <dietmar@ximian.com>
36550 * object.c (mono_array_clone): use alloca() instead of g_malloc
36553 * appdomain.c (mono_domain_unload): impl.
36555 Mon Feb 18 15:52:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36557 * appdomain.c, object.c: fix intern pool implementation.
36558 * class.c: fix alignment code.
36560 2002-02-16 Radek Doulik <rodo@ximian.com>
36562 * icall.c (ves_icall_System_Enum_ToObject): in case of big endian
36563 and s2 > s1, just copy lower bytes to be compatible with little
36564 endian (i.e. 64bit value & 0xffffffff --> 32bit value)
36565 (ves_icall_System_Enum_ToObject): and likewise for s1 > s2
36567 * unicode.c (ves_icall_iconv_new_encoder): decide on big_endian,
36568 force big_endian to be 1 for big endian machines
36569 (ves_icall_iconv_new_decoder): ditto
36571 2002-02-16 Jeffrey Stedfast <fejj@ximian.com>
36573 * socket-io.c (convert_sockopt_level_and_name): If the system
36574 doesn't define SOL_IP or SOL_TCP, get them by hand using
36575 getprotobyname() and caching the values (because this could be a
36577 (ves_icall_System_Net_Sockets_Socket_SetSocketOption_internal):
36578 Use the appropriate struct when the system does support it. Ie,
36579 not all systems have struct ip_mreqn so use struct ip_mreq when
36582 Fri Feb 15 18:15:44 CET 2002 Paolo Molaro <lupus@ximian.com>
36584 * reflection.c: handle finally clauses.
36586 Fri Feb 15 15:06:33 CET 2002 Paolo Molaro <lupus@ximian.com>
36588 * socket-io.c: use g_snprintf() instead of snprintf.
36590 2002-02-14 Jeffrey Stedfast <fejj@ximian.com>
36592 * reflection.c (mono_param_get_objects): Cast second argument to
36593 mono_method_get_param_names to a const char** to silence the
36596 * appdomain.c (mono_domain_assembly_open): Put parens around the
36597 truth statement in the for-loop.
36599 * unicode.c (iconv_convert): Got rid of a compiler warning about
36600 int i being unused when the system has a new iconv.
36601 (iconv_get_length): Same.
36603 * image.c (load_class_names): Cast the second argument to
36604 g_hash_table_insert() to char* to hush compiler warnings about the
36606 (mono_image_open): Same here.
36608 * socket-io.c: Don't conditionally include sys/filio.h or
36609 sys/sockio.h here anymore since we now get them from
36610 io-layer/io-layer.h
36611 (inet_pton): If the system doesn't support inet_aton, implement
36612 using inet_addr and also #define INADDR_NONE if it isn't defined
36615 Thu Feb 14 19:01:06 CET 2002 Paolo Molaro <lupus@ximian.com>
36617 * metadata.c, metadata.h: added function to get packing and size info
36619 * reflection.h, reflection.c: handle field RVA data. Save info about
36620 the table layout if needed. Assign typedef indexes to all the types
36621 before dumping the info about them to avoid forward reference problems.
36623 2002-02-14 Dietmar Maurer <dietmar@ximian.com>
36625 * socket-io.c (convert_sockopt_level_and_name): ifdef
36626 SO_ACCEPTCONN because it is not defined on my system (old debian)
36628 Thu Feb 14 11:49:30 CET 2002 Paolo Molaro <lupus@ximian.com>
36630 * opcode.c: use stddef.h to get NULL.
36632 2002-02-14 Jeffrey Stedfast <fejj@ximian.com>
36634 * socket-io.c: conditionally include sys/filio.h and sys/sockio.h
36635 for FIONBIO, FIONREAD and SIOCATMARK.
36636 (ves_icall_System_Net_Dns_GetHostByAddr_internal): SunOS doesn't
36637 define INADDR_NONE and besides, inet_addr() is deprecated and
36638 should not be used. Use inet_pton() instead - it also has the
36639 added bonus that it can easily handle IPv6 addresses as well.
36640 (inet_pton): Implement using inet_aton() ifndef HAVE_INET_PTON.
36642 Wed Feb 13 23:00:21 CET 2002 Paolo Molaro <lupus@ximian.com>
36644 * decimal.c: remove _MSC_VER conditional.
36646 2002-02-13 Dick Porter <dick@ximian.com>
36649 * icall.c: Internal calls for Blocking, Select, Shutdown,
36650 GetSocketOption and SetSocketOption
36652 Wed Feb 13 19:20:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36654 * assembly.cs: better resolver: use it instead of some kludgy
36657 Wed Feb 13 18:25:55 CET 2002 Paolo Molaro <lupus@ximian.com>
36659 * reflection.c: the best way to speed-up the compiler is to avoid
36662 2002-02-13 Dietmar Maurer <dietmar@ximian.com>
36664 * class.c (mono_class_vtable): changed the object layout
36665 (obj->vtable->class).
36666 (mono_class_create_from_typespec): consider MONO_TYPE_PTR
36668 Tue Feb 12 20:06:01 CET 2002 Paolo Molaro <lupus@ximian.com>
36670 * assembly.c: look for assemblies in the assembly dir, too.
36672 Tue Feb 12 14:03:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36674 * class.c: fix thinko in mono_class_from_type().
36676 Mon Feb 11 19:43:51 CET 2002 Paolo Molaro <lupus@ximian.com>
36678 * exception.h, exception.c: added TypeLoadException.
36679 * object.h, object.c: added mono_array_clone ().
36680 * icall.c: handle throwOnError in AssemblyGetType().
36681 Added Array.Clone().
36682 * opcode.h, opcode.c: use a single value for the opcode val.
36683 Compile fix for non-gcc compilers.
36685 Fri Feb 8 12:26:37 CET 2002 Paolo Molaro <lupus@ximian.com>
36687 * opcodes.c, opcodes.h: export interesting info about opcodes.
36689 2002-02-05 Dietmar Maurer <dietmar@ximian.com>
36691 * object.h (MONO_CHECK_ARG, MONO_CHECK_ARG_NULL): new macro for
36694 * class.c (class_compute_field_layout): set element_class for enums
36695 (mono_class_create_from_typedef): set element_class for normal classes
36697 * icall.c (ves_icall_System_Enum_get_value): impl.
36699 * class.c (mono_class_create_from_typedef): do not set valuetype
36700 flag for System.ValueType and System.Enum
36702 2002-02-04 Dietmar Maurer <dietmar@ximian.com>
36704 * unicode.c (iconv_convert): fix big endian problem.
36706 Fri Feb 1 16:13:20 CET 2002 Paolo Molaro <lupus@ximian.com>
36708 * class.c: add asserts if we are ever going to scribble over memory.
36709 * socket-io.c: not all systems have AF_IRDA defined.
36711 2002-01-31 Dietmar Maurer <dietmar@ximian.com>
36713 * class.c (class_compute_field_layout): do not consider static
36714 fields to compute alignment
36716 2002-01-25 Dietmar Maurer <dietmar@ximian.com>
36718 * appdomain.c (mono_appdomain_get): impl.
36719 (ves_icall_System_AppDomain_ExecuteAssembly): impl.
36721 Thu Jan 24 12:59:23 CET 2002 Paolo Molaro <lupus@ximian.com>
36723 * icall.c: ignore "file://" prefix when loading an assembly.
36725 2002-01-23 Dick Porter <dick@ximian.com>
36729 * Makefile.am: Added socket support
36731 2002-01-23 Miguel de Icaza <miguel@ximian.com>
36733 * icall.c (ves_icall_appdomain_get_default_assemblies): put this
36734 code back. This should return the assemblies that are loaded by
36735 the runtime on behalf of an application domain.
36737 The current implementation is still broken, it just returns every
36738 assembly loaded, but until we get real applications domain this
36741 2002-01-23 Dietmar Maurer <dietmar@ximian.com>
36743 * icall.c (ves_icall_appdomain_get_cur_domain): runtime_init the
36746 2002-01-23 Miguel de Icaza <miguel@ximian.com>
36748 * icall.c (ves_icall_appdomain_get_cur_domain): Cache the value of
36749 the mono_class_from_name lookup.
36750 (ves_icall_get_parameter_info): ditto.
36751 (ves_icall_appdomain_get_assemblies, add_assembly): Implement new internal
36753 (ves_icall_System_Reflection_Assembly_get_code_base): Another new call.
36755 Tue Jan 22 22:43:47 CET 2002 Paolo Molaro <lupus@ximian.com>
36757 * class.c: load also nested classes on class init.
36758 System.ValueType instance methods gets passed boxed
36759 values, unless methods in derived classed that get a pointer to the
36761 * icall.c: use better name parsing code in GetType().
36762 * image.c, image.h: add mono_image_loaded ().
36763 * metadata.c, metadata.h: add mono_metadata_nesting_typedef ().
36764 * reflection.c, reflection.h: added mono_reflection_parse_type().
36766 2002-01-22 Veronica De Santis <veron78@interfree.it>
36768 * icall.c : Added mapping of internal calls for Manual and Auto reset events
36769 * threads.c : Added the implementation of internal calls for events
36770 * threads.h : Added prototypes of internal calls for events
36772 2002-01-21 Radek Doulik <rodo@ximian.com>
36774 * icall.c (ves_icall_InitializeArray): swap bytes on big endians
36776 2002-01-21 Dietmar Maurer <dietmar@ximian.com>
36778 * class.c (mono_class_init): set min_align to 1 (instead of 0)
36779 (mono_class_value_size): use min_align
36781 2002-01-20 Dick Porter <dick@ximian.com>
36784 * threads.c: Replaced all instances of WapiHandle * with HANDLE,
36785 so it compiles on w32.
36787 2002-01-17 Dietmar Maurer <dietmar@ximian.com>
36789 * metadata.c (mono_type_stack_size): impl.
36791 * class.c (mono_class_get_field): impl. memberref token
36793 2002-01-16 Veronica De Santis <veron78@@interfree.it>
36795 * icall.h : Added the internal calls mapping for CreateMutex_internal
36796 and ReleaseMutex_internal.
36797 * threads.h : Added the prototype of mutexes internal calls.
36798 * threads.c : Added the implementations of mutexes internal calls.
36800 Tue Jan 15 22:47:57 CET 2002 Paolo Molaro <lupus@ximian.com>
36802 * metaparse.h: removed unused file.
36803 * reflection.c, reflection.h: added stream_data_align () function
36804 to align data in streams and keep stream aligned. Add support for
36805 exception support in method headers.
36807 Tue Jan 15 19:42:50 CET 2002 Paolo Molaro <lupus@ximian.com>
36809 * unicode.c: make iconv_convert () return the number of bytess written
36810 in the output buffer.
36812 2002-01-15 Dick Porter <dick@ximian.com>
36813 * threads.c: Make the runtime's idea of infinite timeouts coincide
36814 with the class library's
36816 Fix a particularly egregious bug in mono_thread_cleanup(). That
36817 code was so utterly bogus it must have been written on a Monday.
36819 Mon Jan 14 17:01:03 CET 2002 Paolo Molaro <lupus@ximian.com>
36821 * reflection.h: add subtypes field to TypeBuilder.
36822 * reflection.c: encode constants for literal fields.
36823 Handle subtypes. Fix user string token (and add a zero byte)
36826 2002-01-14 Dietmar Maurer <dietmar@ximian.com>
36828 * class.c (mono_class_init): bug fix: assign slot numbers for
36831 Fri Jan 11 18:54:42 CET 2002 Paolo Molaro <lupus@ximian.com>
36833 * reflection.c: don't try to output a code RVA for abstract methods.
36834 Small fixes for method header format. Output parameter info to the
36835 ParamDef table. Save method overriding info to MethodImpl table.
36836 Fix property support. Allow typedef.extends to be a type in the
36838 * verify.c: fix off-by-one error.
36840 Thu Jan 10 19:36:27 CET 2002 Paolo Molaro <lupus@ximian.com>
36842 * class.c: fix mono_class_from_mono_type () for szarray types.
36843 Remove unused cache check in mono_class_from_type_spec().
36844 * icall.c: *type_from_name () functions handle simple arrays and byref.
36845 * reflection.c: handle byref and szarray types. Handle methods without
36846 body (gets P/Invoke compilation working). Handle types and fields in
36848 * reflection.h: add rank to MonoTypeInfo.
36850 2002-01-10 Dick Porter <dick@ximian.com>
36852 * threads.c: Implemented WaitAll(), WaitAny() and WaitOne()
36855 Wed Jan 9 19:27:13 CET 2002 Paolo Molaro <lupus@ximian.com>
36857 * icall.c: initialize class in type_from_handle ().
36858 Loop also in parent classes for get_method ().
36859 * reflection.c: properly encode class and valuetype types.
36860 Start on encoding TypeBuilder types. Handle fieldrefs.
36861 Use correct length when registering a user string.
36862 Handle ConstructorBuilder and MonoMethod in get_token ().
36863 Make mono_type_get_object () aware of cached types.
36864 * object.c: back out change to mono_string_new ().
36866 Tue Jan 8 22:47:44 EST 2002 Matt Kimball <matt@kimball.net>
36867 * object.c: mono_string_new should return a NULL when the string
36868 passed in is NULL -- not try to deference it.
36870 Sat Jan 5 15:48:04 CET 2002 Paolo Molaro <lupus@ximian.com>
36872 * icall.c: hack to make IsSubType work for TypeBuilders.
36873 * reflection.c: emit constructors before methods.
36874 Retrieve param names in mono_param_get_objects().
36876 2002/01/05 Nick Drochak <ndrochak@gol.com>
36878 * Makefile.am: fix list of headers and sources so automake 1.5
36879 doesn't complain. Removed \# at end of list.
36881 Thu Jan 3 23:17:17 CET 2002 Paolo Molaro <lupus@ximian.com>
36883 * reflection.c: get token for a method ref. Set return type of
36884 constructor to void.
36885 * loader.c: debug message.
36886 * class.c: typo fix.
36888 Mon Dec 24 17:18:10 CET 2001 Paolo Molaro <lupus@ximian.com>
36890 * icall.c: fix array init with rank > 1. FindMembers
36891 loops in parent class as well.
36892 * image.c: do not insert nested types in name cache.
36893 * reflection.c: warning fix.
36894 * reflection.h: add override method (for interface impl).
36896 Mon Dec 24 16:16:56 CET 2001 Paolo Molaro <lupus@ximian.com>
36898 * metadata.c: fix customattr decoding.
36900 2001-12-21 Miguel de Icaza <miguel@ximian.com>
36902 * rawbuffer.cs: Added native Win32 implementation, avoids using
36903 mmap on Cygwin. This patch is from Dan Lewis (dihlewis@yahoo.co.uk)
36905 Thu Dec 20 20:11:26 CET 2001 Paolo Molaro <lupus@ximian.com>
36907 * class.c: make the low-level routines handle the cache.
36909 Thu Dec 20 15:20:35 CET 2001 Paolo Molaro <lupus@ximian.com>
36911 * image.c: fopen (file, "rb") ("David Dawkins" <david@dawkins.st>).
36913 Tue Dec 18 18:50:00 CET 2001 Paolo Molaro <lupus@ximian.com>
36915 * class.c: fix mono_array_element_size() for objects.
36916 * class.h, class.c: add properties to MonoClass and load them
36918 * icall.c: check with isinst() when assigning a value to an array
36919 instead of requiring the classes to match exactly.
36920 Implemented icall for System.Type::GetType().
36921 Implemented icalls to get ParameterInfo, ProprtyInfo and info about
36922 enums. Handle bindingflags when looking for methods and fields.
36923 * metadata.h, metadata.c: implemented mono_metadata_properties_from_typedef()
36924 and mono_metadata_methods_from_property().
36925 * reflection.h, reflection.c: added structures for propreties,
36926 parameters and enums. Implemented mono_property_get_object() and
36927 mono_param_get_objects().
36929 2001-12-18 Dick Porter <dick@ximian.com>
36931 * file-io.c: Use mono_string_to_utf16() instead of
36932 mono_string_chars()
36934 * object.c: Added mono_string_to_utf16(), which copies the non
36935 NULL-terminated MonoString into a new double-null-terminated
36938 2001-12-17 Dietmar Maurer <dietmar@ximian.com>
36940 * icall.c (ves_icall_System_DateTime_GetNow): added EPOCH adjustment
36942 2001-12-16 Dietmar Maurer <dietmar@ximian.com>
36944 * file-io.c: raise exceptions if handle is invalid.
36946 Thu Dec 13 20:27:08 CET 2001 Paolo Molaro <lupus@ximian.com>
36948 * assembly.c: yet another check for mscorlib.
36949 * class.c, class.h: load nesting info for classes.
36950 * icall.c: many new functions to support the Reflection classes.
36951 * metadata.c, metadata.h: mono_metadata_nested_in_typedef() added.
36952 * reflection.h, reflection.c: mono_image_create_token(),
36953 mono_assembly_get_object(), mono_type_get_object(),
36954 mono_method_get_object(), mono_field_get_object(): methods to return
36955 objects that parallel the C representation of assemblies, types,
36958 2001-12-11 Dick Porter <dick@ximian.com>
36961 * file-io.c: Internal calls for file IO.
36963 Thu Dec 6 16:21:30 CET 2001 Paolo Molaro <lupus@ximian.com>
36965 * tabledefs.h: missing FileAttributes.
36966 * verify.h, verify.c: use is_valid_string () to simplify and check for
36967 valid strings more correctly. Fix warnings and speeling.
36968 Check more tables: Filed, File, ModuleRef, StandAloneSig.
36969 Check code: branches, maxstack, method calls.
36971 2001-12-04 Dietmar Maurer <dietmar@ximian.com>
36973 * object.c (mono_object_allocate): removed static, so that the jit
36974 can allocate value types.
36976 * icall.c (ves_icall_System_DateTime_GetNow): impl.
36978 Mon Dec 3 17:02:01 CET 2001 Paolo Molaro <lupus@ximian.com>
36980 * class.c: init enum types right away and register the
36981 token->MonoClass map in mono_class_create_from_typedef ().
36982 * verify.h, verify.c: first cut of the verifier.
36983 * pedump.c: add --verify switch to verify metadata tables.
36984 * tabledefs.h: add some missing enums.
36986 2001-11-30 Dietmar Maurer <dietmar@ximian.com>
36988 * class.c (mono_install_runtime_class_init): impl.
36989 (mono_class_init): renamed mono_class_metadata_init to
36990 mono_class_init, also removed the metadata_inited flag
36992 * object.c (mono_object_isinst): use faster algorithm
36994 2001-11-30 Radek Doulik <rodo@ximian.com>
36996 * mono-endian.h: reverted last change
36997 added function prototypes
36999 * Makefile.am (libmetadata_a_SOURCES): reverted my last change and
37000 add mono-endian.c back
37002 * mono-endian.c: returned back, as Paolo pointed out, it's needed
37003 for unaligned access, I've mistaked it with endianess. I am
37005 (mono_read16): fix reverted endianess
37006 (mono_read64): ditto
37007 (mono_read32): ditto
37009 2001-11-30 Dick Porter <dick@ximian.com>
37011 * exception.c: Implement mono_exception_from_name()
37013 Fri Nov 30 12:01:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37015 * metadata.h, metadata.c: remove params_size and locals_size and their
37016 calculation from the metadata code: they are only usefult to the
37019 2001-11-29 Radek Doulik <rodo@ximian.com>
37021 * object.c (mono_ldstr): swap bytes here, it's probably not the
37022 best place, but works for me now, I'll redo it once I know mono
37023 better, also note that I add PROT_WRITE and don't reset back, also
37024 note that it's only affects big endians, so x86 should be OK
37026 * mono-endian.h (read16): use just glib macros for both endians
37028 * mono-endian.c: removed as glib macros are used in in
37029 mono-endian.h so we don't need to care about endianess for read
37030 macros as glib does that for us already
37032 Thu Nov 29 18:20:58 CET 2001 Paolo Molaro <lupus@ximian.com>
37034 * class.h, class.h: take minimum alignment into consideration so
37035 that the fields of a class remain aligned also when in an array.
37037 Tue Nov 27 16:39:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37039 * loader.h, loader.c: add mono_method_get_param_names().
37040 * class.c: 0-init class fields.
37042 2001-11-26 Dick Porter <dick@ximian.com>
37046 * threads.c: New file that handles System.Threading on all platforms
37049 * object.h: Remove the synchronisation struct from MonoObject,
37050 replace it with a pointer that gets initialised on demand
37052 * Makefile.am: Replace all the system-specific threading code with
37053 a single file that uses the new wrapper library
37055 Mon Nov 19 11:37:14 CET 2001 Paolo Molaro <lupus@ximian.com>
37057 * class.c, class.h: add mono_install_trampoline() so that the runtime
37058 can register a function to create a trampoline: removes the ugly
37059 requirement that a runtime needed to export arch_create_jit_trampoline.
37060 * object.h, object.c: added mono_install_handler() so that the runtime
37061 can install an handler for exceptions generated in C code (with
37062 mono_raise_exception()). Added C struct for System.Delegate.
37063 * pedump.c: removed arch_create_jit_trampoline.
37064 * reflection.c: some cleanups to allow registering user strings and
37065 later getting a token for methodrefs and fieldrefs before the assembly
37067 * row-indexes.h: updates and fixes from the new ECMA specs.
37069 Thu Nov 15 17:44:49 CET 2001 Paolo Molaro <lupus@ximian.com>
37071 * class.h, class.c: add enum_basetype field to MonoClass.
37072 * metadata.h, metadata.c: add mono_metadata_get_constant_index()
37073 to get index in the constant table reated to a field, param or
37075 * reflection.h, reflection.c: handle constructors. Set public-key and
37076 version number of the built assembly to 0.
37077 * row-indexes.h: update from new ECMA spec.
37079 Wed Nov 14 19:26:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37081 * class.h, class.c: add a max_interface_id to MonoClass.
37082 * icall.c: rename my_mono_new_object() to my_mono_new_mono_type()
37083 since it's used to do that. Added mono_type_type_from_obj().
37084 Make GetType() return NULL instead of segfaulting if the type was not
37085 found. Handle simple arrays in assQualifiedName.
37086 * object.h: add a struct to represent an Exception.
37087 * reflection.c: output call convention in method signature.
37088 Add code to support P/Invoke methods and fixed offsets for fields.
37090 Mon Nov 12 12:41:32 CET 2001 Paolo Molaro <lupus@ximian.com>
37092 * decimal.c, decimal.h: mono_double2decimal() get the sign bit from
37094 * icall.c: use mono_array_addr instead of array->vector: fixes the
37095 reflection image writing.
37096 * reflection.c: init call convention byte to 0 in method signature.
37097 Encode the property signature. Don't output property-related methods
37098 twice. Really process the properties for a type (don't cast a field to
37099 a property, my mom always told me that).
37100 Fix 64 bit issues in pointer alignment in a different and more
37103 2001-11-10 Sean MacIsaac <macisaac@ximian.com>
37105 * loader.h: Removed type class from MonoDefaults, added monotype
37107 * loader.c: Loaded MonoType, removed loading of Type
37109 * icall.c (my_mono_new_object): Now returns a System.MonoType,
37110 and fills in System.Type._impl with a RuntimeTypeHandle rather
37111 than the actual MonoClass *
37113 (ves_icall_type_from_handle): change from type_class to
37116 (ves_icall_System_Runtime_InteropServices_Marshal_ReadIntPtr):
37119 (ves_icall_System_Runtime_InteropServices_Marshal_PtrToStringAuto):
37122 (ves_icall_System_Reflection_Assembly_LoadFrom): implemented
37124 (ves_icall_System_Reflection_Assembly_GetType): implemented
37126 (ves_icall_System_MonoType_assQualifiedName): implemented
37128 (ves_icall_System_PAL_OpSys_GetCurrentDirecotry): implemented
37130 2001-11-09 Miguel de Icaza <miguel@ximian.com>
37132 * assembly.c (mono_assembly_open): Implement a cache for the
37135 (mono_assembly_close): only destroy the assembly when the last
37138 2001-11-09 Dick Porter <dick@ximian.com>
37140 * Makefile.am (pedump_LDADD): Don't need THREAD_LIBS any more
37142 2001-11-09 Dietmar Maurer <dietmar@ximian.com>
37144 * class.c (mono_class_metadata_init): bug fix: compute the right slot
37146 Fri Nov 9 15:48:02 CET 2001 Paolo Molaro <lupus@ximian.com>
37148 * icall.c, decimal.h, decimal.c: integrated decimal internalcalls
37149 from Martin Weindel.
37150 * object.h: add mono_string_chars ().
37152 2001-11-07 Miguel de Icaza <miguel@ximian.com>
37154 * reflection.c (build_compressed_metadata): Eliminates warnings
37155 and uses 64-bit clean code.
37157 * metadata.c (mono_type_hash): Change signature to eliminate warnings.
37158 (mono_type_equal): Change signature to eliminate warnings.
37160 Wed Nov 7 15:40:01 CET 2001 Paolo Molaro <lupus@ximian.com>
37162 * icall.c, loader.c: remove the internalcall array constructors.
37163 Changes to match the new MonoArray structure.
37164 * object.h, object.c: an array object doesn't allocate an extra
37165 vector. Add mono_array_new_full () to create jagged arrays easily.
37167 Mon Nov 5 19:51:06 CET 2001 Paolo Molaro <lupus@ximian.com>
37169 * metadata.h, metadata.c: add mono_metadata_field_info () to
37170 retreive all the info about a field from vairous tables.
37171 * icall.c: implement S.Runtime.CServices::InitializeArray () icall.
37172 * class.h, class.c: augment MonoClassField with more info.
37173 Implemented mono_ldtoken for fields. Implemented ExplicitLayout
37174 policy and load a field's RVA if needed.
37176 2001-11-05 Dietmar Maurer <dietmar@ximian.com>
37178 * class.c (mono_class_metadata_init): create a trampoline for all
37179 virtual functions instead of actually compiling them.
37181 Fri Nov 2 19:37:51 CET 2001 Paolo Molaro <lupus@ximian.com>
37183 * class.h, class.c: include name in MonoClassField.
37184 * class.c: fix fundamental type of System.Object and System.String.
37185 Set the right fundamental type for SZARRAY, too. Handle TypeSpec
37187 * icall.c: remove internalcalls for the Reflection stuff that is now
37189 * loader.c: mono_field_from_memberref () implementation.
37190 * mono-endian.c: thinko (s/struct/union/g).
37191 * object.c, object.h: make the mono_string_* prototypes actually use
37192 MonoString instead of MonoObject.
37193 * reflection.c, reflection.h: updates for changes in the reflection
37194 code in corlib: we use C structures that map to the actual C# classes.
37195 Handle SZARRAYs when encoding types. Handle locals in methods. Use a
37196 fat method header if needed and use the info from the ILGenerator for
37197 methods. Handle fields in types. Misc fixes.
37199 2001-10-17 Dietmar Maurer <dietmar@ximian.com>
37201 * class.c (mono_class_metadata_init): bug fix: always allocate
37202 space for static class data
37204 2001-10-25 Dietmar Maurer <dietmar@ximian.com>
37206 * class.c (mono_compute_relative_numbering): use relative
37207 numbering to support fast runtime type checks.
37209 2001-10-17 Sean MacIsaac <macisaac@ximian.com>
37211 * class.c (mono_class_create_from_typeref): added debugging output
37212 to print class name when MonoDummy is returned instead of real class
37214 2001-10-15 Dietmar Maurer <dietmar@ximian.com>
37216 * class.c (mono_class_metadata_init): interface offset table now
37217 contains pointers into the vtable - this is more efficient for the jit
37219 2001-10-12 Dietmar Maurer <dietmar@ximian.com>
37221 * class.c (mono_class_metadata_init): use a temporary vtable (the
37222 old algorithm only worked for the interpreter, but not for the jit)
37224 2001-10-11 Dietmar Maurer <dietmar@ximian.com>
37226 * loader.c (method_from_memberref): use mono_class_get to get the
37227 class of an array instead of using System.Array directly.
37228 (mono_get_method): also add MEMBERREF methods to the method cache
37229 which usefull for arrays.
37231 2001-10-10 Dietmar Maurer <dietmar@ximian.com>
37233 * pedump.c (arch_compile_method): added to compute vtable entry
37235 * metadata.c (mono_metadata_interfaces_from_typedef): also return the
37236 number of interfaces.
37238 * class.h: merged MonoArrayClass into MonoClass
37240 * class.c (mono_class_create_from_typedef): compute the vtable size and
37241 allocate space to include the vtable inside MonoClass
37242 (mono_class_metadata_init): initialize the vtable
37244 Mon Oct 8 16:12:38 CEST 2001 Paolo Molaro <lupus@ximian.com>
37246 * metadata.c, metadata.h: use MonoArrayType to describe the shape of an array.
37247 Guard against calling bsearch with a NULL pointer (pointed out by Laurent Rioux, smoux).
37248 * image.c: endian fixes by Laurent Rioux.
37249 * object.h, object.c: rename MonoStringObject to MonoString and
37250 MonoArrayObject to MonoArray. Change some function names to conform to
37251 the style mono_<object>_<action>. mono_string_new_utf16 () takes a
37252 guint16* as first argument, so don't use char*.
37253 Provide macros to do the interesting things on arrays in a portable way.
37254 * threads-pthread.c: updates for the API changes and #include <sched.h>
37255 (required for sched_yield()).
37256 * icall.c: updates for the API changes above.
37257 * Makefile.am, mono-endian.c. mono-endian.h: include unaligned read routines for
37258 platforms that need them.
37260 Mon Oct 8 10:43:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37262 * class.c: set the correct type for all the fundamental
37263 type when loading the class.
37265 2001-10-05 Dick Porter <dick@ximian.com>
37267 * threads-pthread.c (pthread_mutex_timedlock): Simple
37268 compatibility version for C libraries that lack this call.
37270 Thu Oct 4 19:10:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37272 * class.c: MonoTypes stored in MonoClass are stored as
37273 fundamental MonoTypes when the class represents a
37274 fundamental type (System.Int32, ...).
37275 The TypeHandle return by ldtoken is a MonoType*.
37276 * icall.c: ves_icall_get_data_chunk () write out all the
37277 PE/COFF stuff. Implement ves_icall_define_method (),
37278 ves_icall_set_method_body (), ves_icall_type_from_handle ().
37279 * image.c: properly skip unknown streams.
37280 * loader.h, loader.c: add type_class to mono_defaults.
37281 * metadata.c, metadata.h: export compute_size () as
37282 mono_metadata_compute_size () with a better interface.
37283 Typo and C&P fixes.
37284 * pedump.c: don't try to print the entry point RVA if there is no entry point.
37285 * reflection.c, reflection.h: many cleanups, fixes, output method
37286 signatures and headers, typedef and typeref info, compress the metadata
37287 tables, output all the heap streams, cli header etc.
37288 * row-indexes.h: typo fixes.
37290 2001-10-04 Dick Porter <dick@ximian.com>
37292 * object.h: Add a synchronisation mutex struct to MonoObject
37294 * object.c (mono_new_object): Initialise the object
37295 synchronisation mutexes
37297 * icall.c: System.Threading.Monitor internal calls
37299 * threads-pthread.h:
37300 * threads-pthread.c: System.Threading.Monitor internal calls
37302 * threads-types.h: New file, includes the system-specific thread
37305 * threads-pthread-types.h:
37306 * threads-pthread-types.c: New files, handle pthread-specific
37307 synchronisation types
37309 * threads-dummy-types.h:
37310 * threads-dummy-types.c: New files of dummy support for
37311 thread-specific types
37315 * pedump.c: include mono-endian.h not endian.h
37317 * Makefile.am: More threads files.
37318 Name mono-endian.h not endian.h
37320 Tue Oct 2 20:33:48 CEST 2001 Paolo Molaro <lupus@ximian.com>
37322 * Makefile.am, reflection.h, reflection.c: move here the reflection related
37323 stuff and implement a few more bits.
37324 * icall.c: a field needs to be dereferenced twice. Do not use the same
37325 name for two variables in the same scope.
37326 * image.c, image.h: cleanups.
37328 2001-10-02 Dietmar Maurer <dietmar@ximian.com>
37330 * class.c (mono_class_metadata_init): bug fix: compute the right size
37332 Mon Oct 1 20:43:57 CEST 2001 Paolo Molaro <lupus@ximian.com>
37334 * icall.c: implemented some of the Reflection internalcalls.
37335 * image.c, image.h: start writing out the PE/COFF image.
37336 * metadata.h, metadata.c: implement mono_metadata_encode_value ()
37337 that does the reverse than decode_blob_size ().
37338 * object.c: use mono_metadata_encode_value (). Move here
37339 temporary implementation of mono_string_to_utf8 ().
37340 * rawbuffer.c: make malloc_map static.
37342 Fri Sep 28 19:26:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37344 * metadata.c: fix type comparison for arrays.
37345 * loader.h, loader.c: half-assed fix to get more tests work in cygwin.
37346 Added a couple of new classes to monodefaults.
37347 * icall.c: added a couple of Reflection-related internalcalls.
37348 * class.h, class.c: implemented mono_ldtoken () for RuntimeTypeHandles.
37349 Added a byval_arg MonoType to MonoClass.
37351 2001-09-28 Dick Porter <dick@ximian.com>
37354 * threads-pthread.h:
37355 * threads-pthread.c: Implemented internal calls for
37356 LocalDataStoreSlot operations. Applied mutexes around all shared
37357 data. Reworked the thread creation and Start() operations to
37358 avoid a race condition.
37361 * threads-dummy.c: Dummy calls for the LocalDataStoreSlot operations
37363 Thu Sep 27 21:45:55 CEST 2001 Paolo Molaro <lupus@ximian.com>
37365 * rawbuffer.c: disable mmap on cygwin since it seems to be broken there.
37367 Thu Sep 27 19:52:11 CEST 2001 Paolo Molaro <lupus@ximian.com>
37369 * class.c, loader.c: warn and return NULL instead of erroring out.
37370 * icall.c: added System.AppDomain::getCurDomain().
37371 * loader.c: we don't need to lookup the typedef again for p/invoke calls.
37373 2001-09-25 Dick Porter <dick@ximian.com>
37375 * threads-pthread.h:
37376 * threads-pthread.c: Implemented timed thread joining and added
37377 System.Threading.Thread::Join_internal internal call
37379 * icall.c: Added System.Threading.Thread::Join_internal internal call
37382 * threads-dummy.c: Dummy calls for System.Thread.Thread::Join_internal
37384 Mon Sep 24 18:56:59 CEST 2001 Paolo Molaro <lupus@ximian.com>
37386 * object.c, object.h: added mono_ldstr (), mono_string_is_interned () and
37387 mono_string_intern () to implement the semantics of the ldstr opcode
37388 and the interning of System.Strings.
37389 * icall.c: provide hooks to make String::IsIntern and String::Intern
37392 2001-09-23 Dick Porter <dick@ximian.com>
37395 * threads-dummy.h: New files of dummy threading routines
37397 * Makefile.am (THREAD_SOURCE): Arrange to compile different thread
37398 support code based on system specifics
37400 Rename PTHREAD_LIBS to THREAD_LIBS
37402 2001-09-23 Dick Porter <dick@ximian.com>
37404 * threads-pthread.c: Implement the System.Threading.Thread::Sleep,
37405 Schedule (called when asked to Sleep for 0 ms) and CurrentThread
37407 (mono_thread_init): Set up a Thread object instance to return when
37408 the main thread calls Thread.CurrentThread
37409 (mono_thread_cleanup): Wait for all subthreads to exit
37411 * icall.c: New internal calls for System.Threading.Thread::Sleep
37412 (including Schedule) and CurrentThread
37414 * threads.h: New file, to insulate thread-specific stuff from the
37417 2001-09-21 Dick Porter <dick@ximian.com>
37419 * threads-pthread.h:
37420 * threads-pthread.c: New file, for handling pthreads-style
37421 threading support. Start() now starts a new thread and executes
37422 the ThreadStart delegate instance.
37424 * icall.c: Added the internalcall for
37425 System.Threading.Thread::Start_internal
37427 * Makefile.am: Added new files, and PTHREADS_LIBS to the link line
37429 Thu Sep 20 19:37:39 CEST 2001 Paolo Molaro <lupus@ximian.com>
37431 * loader.c: work around the different signatures for delegates
37432 constructors csc generates in compiled code vs the ones compiled in mscorlib.
37434 Tue Sep 18 13:16:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37436 * class.h, class.c: add mono_class_get_field_from_name ().
37437 * *: Fix C comments and other ANSI C issues.
37439 Mon Sep 10 20:21:34 CEST 2001 Paolo Molaro <lupus@ximian.com>
37441 * endian.h, assembly.c: fix some endianness issues.
37443 Fri Sep 7 18:40:40 CEST 2001 Paolo Molaro <lupus@ximian.com>
37445 * loader.h, load.c: add delegate_class to mono_defaults.
37446 Handle runtime provided methods in mono_get_method ().
37448 2001-08-29 Dietmar Maurer <dietmar@ximian.com>
37450 * loader.c (mono_get_method): use pinvoke for internal call
37452 * icall.c: use pinvoke for internal call
37454 * loader.c (method_from_memberref): set the method name
37456 Wed Aug 29 12:43:41 CEST 2001 Paolo Molaro <lupus@ximian.com>
37458 * metadata.c: help the compiler generate better code for
37459 mono_class_from_mono_type ().
37461 2001-08-28 Dietmar Maurer <dietmar@ximian.com>
37463 * class.c (mono_class_metadata_init): delayed computing of the
37464 class size to mono_class_metadata_init ()
37466 Tue Aug 28 15:47:15 CEST 2001 Paolo Molaro <lupus@ximian.com>
37468 * class.c, class.h: add an interfaces member to MonoClass.
37469 * image.c, image.h: add assembly_name field to MonoImage
37470 from the assembly table.
37471 * metadata.c, metadata.h: add mono_metadata_interfaces_from_typedef ().
37473 Mon Aug 27 20:12:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37475 * class.c: Handle Array in mono_class_from_mono_type ().
37476 * metadata.c, pedump.c: some endian fixes.
37478 Mon Aug 27 15:23:23 CEST 2001 Paolo Molaro <lupus@ximian.com>
37480 * class.c, loader.c, loader.h: More types handled in mono_class_from_mono_type ().
37481 * metadata.c: fix small problem introduced with the latest commit.
37483 Mon Aug 27 12:17:17 CEST 2001 Paolo Molaro <lupus@ximian.com>
37485 * loader.c, metadata.c, metadata.h: Export mono_metadata_type_equal().
37486 We don't need a MonoMetadata pointer anymore to compare signatures in
37487 mono_metadata_signature_equal (), update callers.
37488 Reduced memory usage an number of allocations for MonoMethodHeader and
37489 MonoMethodSignature.
37491 Sun Aug 26 23:03:09 CEST 2001 Paolo Molaro <lupus@ximian.com>
37493 * metadata.c: added compare for szarray.
37495 Sun Aug 26 11:34:24 CEST 2001 Paolo Molaro <lupus@ximian.com>
37497 * class.h, class.c, loader.h, loader.c: export mono_class_from_mono_type ()
37498 and add a couple more types to it and mono_defaults. Give an hint on
37499 classes that need implementing in our corlib and are referenced
37502 Sat Aug 25 12:52:54 CEST 2001 Paolo Molaro <lupus@ximian.com>
37504 * class.h, class.c: keep track if a class is also an Enum.
37505 * loader.c: Implement a couple more types for use in libffi
37506 marshalling. Gives better diagnostics when failing to dlopen
37507 a library. Set method->klass for P/Invoke methods, too.
37509 Fri Aug 24 19:30:25 CEST 2001 Paolo Molaro <lupus@ximian.com>
37511 * class.c, class.h: add a MonoType this_arg to MonoClass that
37512 represents a pointer to an object of the class' type that
37513 can be used by the interpreter and later the type cache.
37514 Add best guess alignment info for valuetype objects.
37516 Fri Aug 24 15:50:31 CEST 2001 Paolo Molaro <lupus@ximian.com>
37518 * metadata.h, metadata.c, class.h, class.c: squeezed MonoParam
37519 into MonoType: one less level of indirection and allocation and
37520 simplifies quite a bit of code. Added cache for MonoTypes that are
37521 used frequently, so that we don't need to allocate them all the time.
37523 2001-08-24 Dietmar Maurer <dietmar@ximian.com>
37525 * class.c (mono_class_create_from_typedef): System.Enum is also a
37526 value type, although it does not derive from System.ValueType
37527 (maybe a bug in the ms compiler?)
37529 * metadata.c (mono_type_size): return the right size for value types
37531 * loader.c (mono_get_method): only initialize method header if not abstract
37533 * class.c (mono_class_from_mono_type): use mono_default values.
37535 2001-08-23 Dietmar Maurer <dietmar@ximian.com>
37537 * *: use MonoClass pointers instead of <type_tokens>
37539 * class.h: new flag: metadata_inited.
37541 * class.c (mono_class_metadata_init): impl.
37542 (mono_class_instance_size): impl.
37543 (mono_class_data_size): impl.
37545 Wed Aug 22 16:27:30 CEST 2001 Paolo Molaro <lupus@ximian.com>
37547 * metadata.c, loader.h, loader.c, image.h, image.c, class.h, class.c:
37548 MonoClass now has the name and name_space fields.
37549 MonoMethod has a pointer to its MonoClass, instead of MonoImage.
37550 mono_get_method () takes and optional MonoClass as argument.
37551 Removed mono_typedef_from_name() and added mono_class_token_from_name()
37552 instead that takes advantage of a map from class names to typedef
37553 tokens in MonoImage.
37555 Tue Aug 21 18:54:58 CEST 2001 Paolo Molaro <lupus@ximian.com>
37557 * metadata.c: zero is not a valid alignment boundary.
37558 Merge MONO_TYPE_VOID in default decoding code.
37560 2001-08-21 Dietmar Maurer <dietmar@ximian.com>
37562 * image.h: merged MonoMetadata into MonoImage
37564 * class.h: cleanup of MonoArrayClass, use a MonoClass pointer to
37565 identify the type of elements.
37567 Mon Aug 20 19:39:00 CEST 2001 Paolo Molaro <lupus@ximian.com>
37569 * blob.h: fix MONO_TYPE_TYPEDBYREF value.
37570 * cil-coff.h: split MonoMSDOSHeader and add size info.
37571 * image.c: add some consistency checks.
37572 * metadata.c: fix row size computation: one programmer
37573 error and one LAMESPEC. Handle MONO_TYPE_TYPEDBYREF.
37574 add explanation for the locator routine.
37575 Fix decoding of size in method header.
37577 2001-08-20 Miguel de Icaza <miguel@ximian.com>
37579 * assembly.c (g_concat_dir_and_file): Use _S for string concat.
37580 (g_concat_dir_and_file): Bring g_concat_dir_and_file
37581 function from gnome-libs. This uses the right path separator
37582 based on the OS, and also works around a bug in some systems where
37583 a double slash is not allowed.
37584 (default_assembly_name_resolver): Use g_concat_dir_and_file
37585 (mono_assembly_open): ditto.
37587 2001-08-20 Dietmar Maurer <dietmar@ximian.com>
37589 * metadata.c (mono_metadata_signature_equal): impl.
37591 * *: void is now a realy MonoType (instead of using NULL)
37593 * metadata.c (do_mono_metadata_parse_type): use
37594 mono_metadata_parse_type to parse void value.
37596 Sat Aug 18 12:51:28 CEST 2001 Paolo Molaro <lupus@ximian.com>
37598 * metadata.c, metadata.h: in the signature and method header store
37599 only the space required for holding the loca vars and incoming arguments.
37601 2001-08-15 Dietmar Maurer <dietmar@ximian.com>
37603 * metadata.c (do_mono_metadata_parse_type): treat void like any
37604 other type (instead of assigning NULL);
37606 2001-08-14 Dietmar Maurer <dietmar@ximian.com>
37608 * metadata.c (mono_metadata_parse_mh): fixxed pinned/byref value
37610 2001-08-09 Dietmar Maurer <dietmar@ximian.com>
37612 * image.c (do_mono_image_open): added a cache for arrays.
37614 Sat Aug 4 12:46:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37616 * metadata.h, metadata.c: add mono_metadata_decode_row_col () to
37617 decode a single column from a row in a metadata table and changes
37618 to take advantage of it in the typedef locator (gives a nice speed up).
37619 Store offset info for function params.
37621 2001-08-02 Dietmar Maurer <dietmar@ximian.com>
37623 * image.h (MONO_IMAGE_IS_CORLIB): removed
37625 Wed Aug 1 22:54:08 CEST 2001 Paolo Molaro <lupus@ximian.com>
37627 * assembly.c: how could mono_assembly_close () had ever worked?
37628 * metadata.c, metadata.h: provide offset info for local vars.
37629 Implement mono_type_size () to take care of alignment as well
37630 as size (it was mono_field_type_size in cli/class.c before).
37632 2001-08-01 Dietmar Maurer <dietmar@ximian.com>
37634 * image.h (MONO_IMAGE_IS_CORLIB): new macro to check root image
37636 * assembly.h (CORLIB_NAME): set to corlib.dll
37638 * assembly.c (mono_assembly_open): replaced strcmp() with !strcmp()
37640 Tue Jul 31 17:54:02 CEST 2001 Paolo Molaro <lupus@ximian.com>
37642 * metadata.h, metadata.c, Makefile.am, private.h, assembly.c, blob.h,
37643 cil-coff.h, image.c, image.h, pedump.c, rawbuffer.c, rawbuffer.h, row-indexes.h,
37644 tokentype.h: massive namespace cleanup.
37646 Mon Jul 30 20:11:01 CEST 2001 Paolo Molaro <lupus@ximian.com>
37648 * metadata.h, metadata.c: decode exception clauses when parsing method header.
37650 2001-07-27 Dietmar Maurer <dietmar@ximian.com>
37652 * metadata.c (mono_metadata_free_type): added check for type !=
37653 NULL (void) before calling mono_metadata_free_type()
37655 Thu Jul 26 19:11:19 CEST 2001 Paolo Molaro <lupus@ximian.com>
37657 * metadata.h, row_indexes.h: added header with enumerations to use
37658 to index in the columns from tables in metadata and to decode coded
37659 tokens: we should start using this instead of embedding magic numbers
37662 Thu Jul 26 13:03:27 CEST 2001 Paolo Molaro <lupus@ximian.com>
37664 * assembly.c, cil-coff.h, image.c, image.h, pedump.c, typedef.c:
37665 Move metadata_t info from cli_image_info_t to MonoImage, where
37666 it's easily accessible. Changed all the uses accordingly.
37667 Added the method and class caches to MonoImage.
37668 * metadata.c, metadata.h: Changed mono_metadata_decode_blob_size ()
37669 and mono_metadata_decode_value () signature to be more consistent
37670 with the other parse functions (and simplify code). Taken advantage
37671 of zero-length array allocation with GCC. Removed reduntant (and
37672 wrong) MonoFieldType struct and use MonoParam instead. Changed
37673 mono_metadata_parse_field_type () to use common code for parsing.
37674 Added mono_metadata_typedef_from_field () and
37675 mono_metadata_typedef_from_method () to lookup a typedef index from a
37676 field or method token.
37677 Pack the MonoRetType structure more tightly (fits in 8 bytes now).
37679 2001-07-23 Miguel de Icaza <miguel@ximian.com>
37681 * metadata.c (mono_metadata_parse_field_type): Implement.
37682 (do_mono_metadata_parse_type): Split engine from
37683 mono_metadata_parse_type, so that we can create smaller structures
37684 for things that just have one pointer to the MonoType (look at
37687 2001-07-20 Miguel de Icaza <miguel@ximian.com>
37689 * metadata.c (mono_metadata_parse_mh): Correct the implementation,
37690 as Jan Gray found out, it is incorrect.
37692 2001-07-18 Miguel de Icaza <miguel@ximian.com>
37694 * assembly.c: Implement asssembly loading. This loads an image
37695 and loads all the referenced assemblies. Come to think of it, we
37696 could always do lazy loading of the assemblies.
37698 * image.c (mono_image_open): Keep loaded images in a hashtable.
37700 * image.h (MonoImage): Add reference count.
37702 2001-07-17 Miguel de Icaza <miguel@ximian.com>
37704 * assembly.c (mono_assembly_open): Keep track of the file name in
37705 case the assembly has no ASSEMBLY table.
37707 * metadata.h: Fixed Paolo's quick hack. Put the documnentation
37710 Sun Jul 15 19:39:06 CEST 2001 Paolo Molaro <lupus@ximian.com>
37712 * metadata.c, metadata.h: decode local vars in method header
37713 parse function. Change callers accordingly.
37715 Sun Jul 15 17:40:47 CEST 2001 Paolo Molaro <lupus@ximian.com>
37717 * metadata.h, cil-coff.h: protect against multiple inclusion.
37718 Added some new structures to hold information decoded from metadata:
37719 MonoType, MonoParam, MonoArray, MonoMethod, MonoMethodSignature
37720 and relevant decoding/free functions.
37721 * metadata.c: implement decoding functions. Add warning for out of bounds
37722 index in mono_metadata_locate(). Implement mono_get_method () to retreive
37723 all the info about a method signature and invocation. Remove check on
37724 uninitialized local var in parse_mh() and fix memory leak.
37726 2001-07-12 Miguel de Icaza <miguel@ximian.com>
37728 * metadata.h: More macros.
37730 * tokentype.h: New file.
37732 Fri Jul 6 11:30:53 CEST 2001 Paolo Molaro <lupus@ximian.com>
37734 * assembly.c: added a consistency check and initialize
37735 some structures with g_new0().
37736 * metadata.c: fixed a couple more bugs in table size computation
37737 and add other checks for out-of bound access to metadata.
37739 Thu Jul 5 22:34:21 CEST 2001 Paolo Molaro <lupus@ximian.com>
37741 * metatada.c: fix bugs computing table sizes. Spew a
37742 warning when index in string heap is out of bounds.
37744 2001-07-04 Miguel de Icaza <miguel@ximian.com>
37746 * metadata.h: Add a couple of macros to manipulate tokens.
37748 Tue Jul 3 18:33:32 CEST 2001 Paolo Molaro <lupus@ximian.com>
37750 * assembly.c: g_free(ii->cli_sections) (and avoid double free of
37751 cli_section_tables).
37753 2001-07-01 Miguel de Icaza <miguel@ximian.com>
37755 * metadata.c (mono_metadata_user_string): New function, provides
37756 access to the UserString heap.
37758 2001-06-27 Miguel de Icaza <miguel@ximian.com>
37760 * metadata.c: Add inline documentation.
37762 2001-06-26 Miguel de Icaza <miguel@ximian.com>
37764 * propertyattr.h, paramattr.h, methodsem.h, methodattr.h: New
37767 2001-06-22 Miguel de Icaza <miguel@ximian.com>
37769 * typeattr.h: New file, TypeAttribute flags.
37771 2001-06-21 Miguel de Icaza <miguel@ximian.com>
37773 * mono/metadata/assembly.c (mono_assembly_ensure_section_idx,
37774 mono_assembly_ensure_section): Section loading code.
37775 (load_section_tables): Load the sections.
37777 * mono/metadata/metadata.c (mono_metadata_locate_token,
37778 mono_metadata_locate): Functions to locate the information
37779 definition given a token or a table and an index.
37780 (mono_metadata_compute_table_bases): New.
37781 (compute_size): New function to compute the sizes of the various
37784 * mono/metadata/metadata.h: Finish listing the different index
37787 * mono/metadata/pedump.c: Improve to dump new information.
37789 2001-06-19 Miguel de Icaza <miguel@ximian.com>
37791 * mono/metadata/metadata.c: Entered all the tables matching
37794 * mono/metadata/assembly.c (load_metadata_ptrs): Fix for Beta2