1 2009-03-11 Zoltan Varga <vargaz@gmail.com>
3 * mini-amd64.c (mono_arch_output_basic_block): Fix % 1. Fixes #484323.
5 * basic.cs: Add a test.
7 2009-03-11 Mark Probst <mark.probst@gmail.com>
9 * mini-x86.c (mono_arch_output_basic_block): Use different
10 registers in case the ones we want to overwrite are used by the
11 other operand. Fixes regression in #480807.
13 2009-03-10 Zoltan Varga <vargaz@gmail.com>
15 * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
17 * dwarfwriter.c (emit_line_number_info): The line number info for
18 IL code was off by one. Fix that.
20 * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
23 2009-03-09 Mark Probst <mark.probst@gmail.com>
25 Contributed under the terms of the MIT/X11 license by Steven
26 Munroe <munroesj@us.ibm.com>.
28 * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
31 2009-03-08 Zoltan Varga <vargaz@gmail.com>
33 * dwarfwriter.c (token_handler): Decode method references in non-wrappers
36 2009-03-06 Zoltan Varga <vargaz@gmail.com>
38 * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
39 the delegate ctor handling code. Fixes #482638.
41 * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
44 * iltests.il.in: Add a test.
46 * mini-darwin.c (mono_chain_signal): Remove this, it is already in
49 2009-03-05 Mark Probst <mark.probst@gmail.com>
51 * mini-trampolines.c (mono_create_jump_trampoline): If the method
52 is shared generic code, return the trampoline, even if the method
53 has already been compiled. Fixes #479763.
55 * mini.c, mini.h: New function
56 mono_jit_find_compiled_method_with_jit_info() which is the same as
57 mono_jit_find_compiled_method() but also returns the jit info.
59 2009-03-05 Mark Probst <mark.probst@gmail.com>
61 * method-to-ir.c (mono_method_to_ir): Only force the vtable var
62 for methods which actually have one. For all other methods, make
63 sure the this argument var is live the whole method.
65 * mini.c (mini_method_compile): Every shared method has a
66 this/vtable/mrgctx info. Fixes #480807.
68 2009-03-05 Mark Probst <mark.probst@gmail.com>
70 * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
71 generic/imt thunks where some entries branch through the vtable,
72 while other entries branch directly.
74 2009-03-05 Zoltan Varga <vargaz@gmail.com>
76 * mini-darwin.c (mono_chain_signal): Define this to fix the build.
78 * mini-windows.c: Ditto.
80 * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
83 2009-03-04 Zoltan Varga <vargaz@gmail.com>
85 * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
88 2009-03-04 Mark Probst <mark.probst@gmail.com>
90 * method-to-ir.c: Don't inline methods that use JMP. Fixes
93 2009-03-04 Mark Probst <mark.probst@gmail.com>
95 * exceptions-x86.c: Include debug-mini.h - fixes build.
97 2009-03-04 Martin Baulig <martin@ximian.com>
99 * debug-mini.c: Clean up the exception API and add documentation.
100 (mono_debugger_handle_exception): New public method; this is
101 called when throwing an exception or encountering an unhandled one.
102 (mono_debugger_call_exception_handler): Formerly known as
103 mono_debugger_handle_exception(); this is used to tell the
104 debugger that we're about to invoke an exception handler.
106 2009-03-04 Martin Baulig <martin@ximian.com>
108 * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
109 ../metadata/mono-debug-debugger.c; save and reset exception state.
111 2009-03-02 Martin Baulig <martin@ximian.com>
113 * debug-mini.c: Moved the debugger exception handling here from
114 ../metadata/mono-debug-debugger.c.
117 (MonoDebuggerExceptionAction): New exception typedef.
120 (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
123 (mono_amd64_throw_exception): Use the new debugger exception
127 (mono_handle_exception_internal): Don't call
128 mono_debugger_unhandled_exception() here.
130 2009-03-03 Zoltan Varga <vargaz@gmail.com>
132 * mini.c aot-compiler.c: Update after the changes to
133 mono_marshal_get_runtime_invoke ().
135 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot):
136 Virtual generic methods might not have method->slot set, work around
139 * generics.cs: Add a test.
141 2009-03-02 Geoff Norton <gnorton@novell.com>
144 * driver.c: Allow signal chaining of SIGFPE as well.
146 2009-03-02 Zoltan Varga <vargaz@gmail.com>
148 * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
149 this since it now receives the method not its generic context in the
152 * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
153 generic/imt thunks where some entries branch through the vtable, while
154 other entries branch directly.
156 * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
158 * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call
159 support for interface methods as well.
161 * mini-trampolines.c: Add support for virtual generic methods in interfaces
162 using the normal IMT thunks.
164 generics.cs: Add new tests.
166 * method-to-ir.c (mono_method_to_ir): Pass the method instead of
167 the generic inst to the generic imt thunks. This fixes AOT support,
168 improves consistency with the normal IMT thunks, and makes it easier to
169 add support for interface generic virtual methods later.
171 * mini-trampolines.c (mono_magic_trampoline): Ditto.
173 2009-02-28 Zoltan Varga <vargaz@gmail.com>
175 * driver.c (mono_set_signal_chaining): New public API function to enable
176 signal chaining on POSIX platforms.
178 * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland
179 (si@lindenlab.com) to implement signal chaining. The original patch was
180 contributed under the MIT X/11 license:
181 https://bugzilla.novell.com/show_bug.cgi?id=318894
183 2009-02-27 Zoltan Varga <vargaz@gmail.com>
185 * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
186 too until it can be made to run on amd64.
188 2009-02-26 Zoltan Varga <vargaz@gmail.com>
190 * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
191 to get_generic_context_from_code () + get_call_info () if possible.
193 2009-02-25 Zoltan Varga <vargaz@gmail.com>
195 * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
196 suspend-on-sigsegv functionality.
198 * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
199 to suspend when a native SIGSEGV is received. This is useful for debugging
200 crashes which don't happen under gdb, since a live process contains more
201 information than a core file.
203 * mini-exceptions.c (mono_print_thread_dump): Use
204 MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
206 * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
208 * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
210 * basic-float.cs: Disable the tests which currently fail on amd64.
212 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null
213 value to mono_arch_patch_callsite () to fix crashes.
215 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
217 2009-02-23 Zoltan Varga <vargaz@gmail.com>
219 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
220 nop code by patching the call address to point to the nullified class init
221 trampoline, as the former does not seem to be safe on SMP machines.
223 2009-02-23 Mark Probst <mark.probst@gmail.com>
225 * mini-ops.h: Fix the argument types for a few x86 opcodes where
228 2009-02-23 Zoltan Varga <vargaz@gmail.com>
230 * basic-float.cs basic-calls.cs: Fix warnings.
232 2009-02-22 Mark Probst <mark.probst@gmail.com>
234 * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
235 correct frame pointer in the LMF. Should fix #478394.
237 2009-02-22 Zoltan Varga <vargaz@gmail.com>
239 * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
241 * image-writer.c: Make the binary writer less verbose.
243 2009-02-21 Zoltan Varga <vargaz@gmail.com>
245 * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
246 are called from runtime invoke wrappers.
248 2009-02-20 Zoltan Varga <vargaz@gmail.com>
250 * cpu-ppc.md (store_memindex): Increase the size of this.
252 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
254 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
256 * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
258 * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
261 Last fix for of #467201.
264 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
266 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
268 * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
269 and long_conv_to_r8_2:
271 Fixed part of #467201.
273 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
275 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
277 * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
278 conversion to 32 bits.
280 * cpu-x86.md: Increase the size of int_conv_to_r4.
282 * basic-float.cs: Add a test for this.
284 Fixed part of #467201.
286 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
288 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
290 * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
291 conversion to 64 bits.
293 * basic-float.cs: Add a test for this.
295 Fixed part of #467201.
297 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
299 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
301 * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
302 This behavior is compatible with MS.
304 * iltest.il.in: Add a test for this.
306 Fixed part of #467201.
308 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
310 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
312 * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
313 change the precision of the value.
315 * cpu-x86.md: Define len for float_conv_to_r4.
317 * basic-float.cs: Add a test for this.
319 Fixed part of #467201.
321 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
323 * mini.c: Adjust locking order to the new semantics where the loader lock
326 2009-02-18 Rodrigo Kumpera <rkumpera@novell.com>
335 * mini-trampolines.c:
348 * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
350 2009-02-18 Zoltan Varga <vargaz@gmail.com>
352 * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
355 2009-02-17 Zoltan Varga <vargaz@gmail.com>
357 * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
358 for cctors if needed.
360 2009-02-17 Mark Probst <mark.probst@gmail.com>
362 * mini-ppc.c: Fix build on Darwin.
364 2009-02-17 Zoltan Varga <vargaz@gmail.com>
366 * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
367 version instead of 3 as valgrind doesn't like version 3.
369 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
371 * aot-compiler.c (mono_aot_method_hash): New function to return a hash
372 usable for hashing methods.
373 (emit_extra_methods): Use the new hash to avoid putting every method in the
376 * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
378 * aot-runtime.c (can_method_ref_match_method): New function to quickly check
379 whenever a method ref could match a method.
381 * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
384 * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded
387 * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
389 * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
392 * method-to-ir.c (mono_method_check_inlining): Avoid calling
393 mono_method_get_header () on inflated methods as an optimization.
395 2009-02-16 Zoltan Varga <vargaz@gmail.com>
397 * ssa.c (fold_ins): Fix another crash if the instruction following the
398 switch was optimized away.
400 2009-02-16 Mark Probst <mark.probst@gmail.com>
402 Contributed under the terms of the MIT/X11 license by Steven
403 Munroe <munroesj@us.ibm.com>.
405 * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
407 2009-02-16 Zoltan Varga <vargaz@gmail.com>
409 * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
410 around the mono_domain_alloc calls, it is now done by the functions
413 * aot-compiler.c (compile_method): Only add wrappers referenced by
414 the method if compiling with full AOT.
415 (mono_compile_assembly): Error out if --aot=full is specified on
416 a platform where it is not supported.
418 * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
421 * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
424 * aot-runtime.c (load_named_code): Handle
425 mono_arm_throw_exception_by_token.
427 * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
429 * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
432 * Makefile.am (fullaotcheck): Exit if a test fails.
434 * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
436 (mono_compile_assembly): Handle the assembler failing.
438 * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
439 accepting subsections of .bss.
441 * ssa.c (visit_inst): Fix a crash if the instruction following a switch
444 * aot-compiler.c: Remove some unused includes.
446 * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
447 now in MonoImageWriter.
449 * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
450 code sequence which matches a non-virtual call. Fixes #472654.
452 2009-02-15 Zoltan Varga <vargaz@gmail.com>
454 * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
457 * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
458 use the image/dwarf writers directly.
460 * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
463 * aot-compiler.c (MonoAotCompile): Remove fields which are now in
466 * image-writer.h: Fix some typos.
468 * dwarfwriter.h dwarfwriter.c: New files.
470 * aot-compiler.c: Extract the DWARF info writing functionality into a
473 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
474 argument to return unwind info.
476 * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
478 * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
480 * aot-runtime.c (decode_method_ref): Add a case for
481 MONO_AOT_METHODREF_WRAPPER_NAME.
483 * mini.h: Add constants for the magic numbers used in encode_method_ref ()
486 * aot-compiler.c (encode_method_ref): Use the new constants.
488 * aot-runtime.c (decode_method_ref): Ditto.
490 * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
491 be compiled, not the icall itself.
493 2009-02-14 Zoltan Varga <vargaz@gmail.com>
495 * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
496 using decode_method_ref ().
498 * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
499 convert it to an in32. Fixes #475859.
501 * arrays.cs: Add a test.
503 2009-02-12 Zoltan Varga <vargaz@gmail.com>
505 * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in
508 * basic-long.cs: Add a test.
510 2009-02-12 Mark Probst <mark.probst@gmail.com>
512 * mini-x86.c, mini-x86.h: Very simple frame pointer removal. We
513 remove the frame pointer in leaf methods which don't receive any
514 arguments, don't throw exceptions and don't do dynamic stack
517 2009-02-12 Zoltan Varga <vargaz@gmail.com>
519 * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
520 the fail_tramp changes. Hopefully fixes #475132.
522 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
524 * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
525 instead of mono_metadata_signature_dup_full.
527 2009-02-12 Zoltan Varga <vargaz@gmail.com>
529 * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
530 for processing jump tables. Fixes #473787.
532 2009-02-11 Mark Probst <mark.probst@gmail.com>
534 * mini-generic-sharing.c: mini_method_get_context() just calls
535 mono_method_get_context_general() now.
537 * mini.c, mini.h: Moved get_object_generic_inst(),
538 construct_object_context_for_method() and
539 mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
541 2009-02-11 Zoltan Varga <vargaz@gmail.com>
543 * branch-opts.c (mono_if_conversion): Handle the case where the merged
544 basic block fell through to its successor bblock without a branch. Fixes
547 * iltests.il.in: Add a test.
549 * aot-compiler.c (encode_method_ref): Encode methods of array types.
550 (can_encode_patch): We can now handle arrays of generic parameters and
553 * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
555 * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
556 the AOT file to avoid some #ifdefs in aot-runtime.c
558 * mini.h: Bump AOT file format version.
560 2009-02-10 Zoltan Varga <vargaz@gmail.com>
562 * Makefile.am (fullaotcheck): Make this run the tests.
564 * aot-compiler.c: Make the printing of skipped methods runtime configurable.
566 2009-02-10 Mark Probst <mark.probst@gmail.com>
568 * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
569 individually. Fixes #473482.
571 2009-02-10 Zoltan Varga <vargaz@gmail.com>
573 * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
575 2009-02-09 Jeffrey Stedfast <fejj@novell.com>
577 * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
578 (mono_compile_assembly): Hush compile warnings about
579 uninitialized [tmp_]outfile_name variables in the !use_bin_writer
582 2009-02-10 Zoltan Varga <vargaz@gmail.com>
584 * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
586 * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
588 * aot-compiler.c: Fix arm support.
590 * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
591 img_writer_emit_unset_mode () function.
593 * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
594 (mono_unwind_get_dwarf_pc_reg): Ditto.
596 * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
597 Move almost all platform specific code to a set of arch_ functions,
598 and document them to ease porting.
600 * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
602 * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
604 * aot-compiler.c: Extract the image writing functionality into a separate
605 module to reduce the size of this file.
607 2009-02-09 Geoff Norton <gnorton@novell.com>
609 * mini-s390.c: Fix the signature of emit_sig_cookie.
611 2009-02-09 Zoltan Varga <vargaz@gmail.com>
613 * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
615 * aot-runtime.c (is_shared_got_patch): Ditto.
617 * aot-runtime.c (load_named_code): Cope with the fact that
618 decode_got_entry () won't decode the patch fully if its corresponding got
619 entry is already filled.
621 * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full):
623 (mono_arch_create_monitor_exit_trampoline_full): Ditto.
625 * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
626 as the moving pointer instead of 'buf' for consistency with the rest of the
628 (mono_arch_create_monitor_exit_trampoline): Ditto.
630 * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
631 generic_class_init trampolines.
632 (add_generic_class): Extract some code from add_generic_instances () into a
633 separate function so it can be called from other places too.
634 (compile_method): Call add_generic_class () for the classes of inflated methods
635 referenced by the method.
636 (can_encode_patch): Allow references to generic parameters.
638 * aot-runtime.c: Add support the patches required by the new trampolines.
640 * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
643 * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
646 * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
647 this from get_throw_pending_exception, make the signature full aot compatible.
649 * Makefile.am (fullaotcheck): New target to run full-aot tests.
651 * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
653 * exceptions.cs: Add a test.
655 2009-02-07 Zoltan Varga <vargaz@gmail.com>
657 * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
658 use the DWARF_DATA_ALIGN constant instead.
660 * exception-<ARCH>.c: Update after the above change.
662 * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
665 * mini-arm.c: Enable the dwarf unwinder.
667 * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
668 instead of mono_class_setup_vtable ().
670 2009-02-07 Zoltan Varga <vargaz@gmail.com>
672 * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
675 * mini-x86.h: Enable the dwarf unwinder.
677 2009-02-06 Raja R Harinath <harinath@hurrynot.org>
679 Fix mcs/tests/test-7.cs
680 * mini-amd64.c (mono_arch_allocate_vars): Revert change from
683 2009-02-06 Zoltan Varga <vargaz@gmail.com>
685 * mini.c (print_jit_stats): Remove some unused statistics.
687 2009-02-05 Zoltan Varga <vargaz@gmail.com>
689 * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
691 2009-02-05 Mark Probst <mark.probst@gmail.com>
693 * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
694 the method we get from mono_object_get_virtual_method() because
695 that function does it properly, now.
697 2009-02-05 Zoltan Varga <vargaz@gmail.com>
699 * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
700 opcodes. Fixes #472775.
702 2009-02-05 Mark Probst <mark.probst@gmail.com>
704 * mini-exceptions.c (ves_icall_get_frame_info): Account for the
705 fact that mono_find_jit_info() sometimes returns the context
706 corresponding to the jit info in new_ctx. Fixes #472600.
708 2009-02-05 Zoltan Varga <vargaz@gmail.com>
710 * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
711 mini-s390.c: Use mono_class_enum_basetype () instead of accessing
712 klass->enum_basetype directly.
714 * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
717 * unwind.c: Avoid 0 sized arrays.
719 2009-02-04 Zoltan Varga <vargaz@gmail.com>
721 * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
722 size on systems with 64k pages. Fixes #471389.
724 2009-02-04 Mark Probst <mark.probst@gmail.com>
726 Contributed under the terms of the MIT/X11 license by Steven
727 Munroe <munroesj@us.ibm.com>.
729 * mini-ppc.c (mono_arch_output_basic_block): Generate better code
730 for LOADI4_MEMBASE. Use addi instead of addic if it's not
733 2009-02-04 Mark Probst <mark.probst@gmail.com>
735 Contributed under the terms of the MIT/X11 license by Steven
736 Munroe <munroesj@us.ibm.com>.
738 * exceptions-ppc.c (mono_arch_get_restore_context): Code size
741 * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
742 The trampoline can be longer on PPC64.
744 2009-02-04 Mark Probst <mark.probst@gmail.com>
746 Contributed under the terms of the MIT/X11 license by Steven
747 Munroe <munroesj@us.ibm.com>.
749 * mini-ppc.c: Compiler warning fixes and trivial code
752 2009-02-04 Zoltan Varga <vargaz@gmail.com>
754 * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
755 ins->dreg which could be a hardware register, not a vreg.
757 * aot-compiler.c (emit_method_dwarf_info): Ditto.
759 * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
760 (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
762 * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
764 * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
765 ->dreg, that is not the vreg we are looking for.
767 * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
769 * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
772 * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
775 2009-02-03 Zoltan Varga <vargaz@gmail.com>
777 * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
779 * aot-compiler.c (emit_line_number_info): Fix line number emission when
782 * aot-compiler.c: Add xdebug support on x86.
784 * unwind.c: Add x86 support.
786 * aot-compiler.c (emit_exception_debug_info): Control the emission of
787 unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
789 * mini.c (mini_method_compile): Ditto.
791 * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
794 * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
795 which mimic .push_section/.pop_section in GAS.
797 * aot-compiler.c: Emit precise live range information for variables.
799 * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
801 * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
802 the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
805 * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
806 the live ranges of variables.
808 * mini.h (struct MonoMethodVar): Add two fields containing the live range
809 of the variable in terms of native offsets.
811 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
813 * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
815 2009-02-02 Mark Probst <mark.probst@gmail.com>
817 Contributed under the terms of the MIT/X11 license by Steven
818 Munroe <munroesj@us.ibm.com>.
820 * exceptions-ppc.c (restore_regs_from_context): Correct operand
821 order (offset then base reg) for ppc_load_multiple_regs.
822 (emit_save_saved_regs) Correct operand order for
823 ppc_store_multiple_regs.
824 (mono_arch_get_call_filter): Correct operand order for
825 ppc_load_multiple_regs.
827 * mini-ppc.c (emit_memcpy): Fix operand order for
828 ppc_load_reg_update and ppc_store_reg_update.
829 (mono_arch_output_basic_block): Correct operand order for ppc_lha.
830 (mono_arch_emit_epilog): Correct operand order for
831 ppc_load_multiple_regs.
833 * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
834 order for ppc_store_multiple_regs and ppc_load_multiple_regs.
836 2009-02-02 Mark Probst <mark.probst@gmail.com>
838 * cpu-ppc64.md: Fixed storer4_memindex length.
840 2009-02-02 Zoltan Varga <vargaz@gmail.com>
842 * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
845 * aot-compiler.c (emit_line_number_info): Optimize this.
847 2009-02-01 Zoltan Varga <vargaz@gmail.com>
849 * aot-compiler.c: Disassemble tokens in the IL disassembly.
851 * aot-compiler.c: Add debug info for methods without debug info by
852 emitting an IL file and having the line number info referencing that file.
854 * aot-compiler.c: Optimize the size of the generated line number info.
856 * aot-compiler.c: Emit line number info in xdebug mode.
858 * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
861 2009-01-31 Zoltan Varga <vargaz@gmail.com>
863 * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
865 * driver.c (mono_main): Enable debugging support automatically if XDEBUG
868 2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
870 * basic-calls.cs: Test for the weird crash found on arm.
872 2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
874 * cpu-arm.md: Increase the size of storer8_membase_reg and
875 loadr8_membase_reg to 24 bytes to accomodate the extra add.
877 * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
878 OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
879 reg to LR otherwise we'll be loading/storing from just the offset.
881 2009-01-30 Miguel de Icaza <miguel@novell.com>
883 Question: if we are storing gint32's inside the "*native_offset",
884 should we change the signature to "gint32 *native_offset" to
885 ensure that we do not have type definition problems?
887 * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
888 an int * as this is what the other function expects, causes
889 problems with Freescale's compiler that defined int32_t to be a
890 long and makes int incompatible
892 2009-01-30 Miguel de Icaza <miguel@novell.com>
894 * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
895 filename conflict with bjam.
897 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
899 * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
900 as it might use decomposed ops.
902 2009-01-30 Zoltan Varga <vargaz@gmail.com>
904 * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
906 * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
909 * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
911 * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
914 * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
915 way registers are stored in MonoContext on arm.
917 * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
918 instead of locking so mono_get_cached_unwind_info () becomes signal safe.
920 * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
922 * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
924 * mini.c (mini_init): Register mono_isfinite.
926 * jit-icalls.c (mono_isfinite): New jit icall.
928 * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
930 * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
931 set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
934 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
936 * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
937 separate frame and stack pointers, so we must use FP to find the register
939 The FP reg is retrieved from the MonoContext::regs array.
941 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
943 * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
946 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
948 * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
949 return R4 and R8 when not running under softfloat.
951 Fixes basic-calls.exe
953 2009-01-30 Zoltan Varga <vargaz@gmail.com>
955 * mini-arm.c: Implement some overflow opcodes.
957 2009-01-29 Miguel de Icaza <miguel@novell.com>
959 * ssa.c: handle another alloca.h
961 * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
962 PLATFORM_WIN32 for detecting if we have sigaction. Instead use
963 MONO_ARCH_USE_SIGACTION.
965 * aot-runtime.c, mini-exceptions.c: Replace platform define with
968 * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
970 * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
971 PPC targets as sigaction does not exist on all platforms, define
972 this on a per-platform basis.
974 Instead of erroring out if the platform is not defined, include
975 mini-ppc-os.h, and expect that the OS specific setting provides
976 the required information.
978 2009-01-30 Zoltan Varga <vargaz@gmail.com>
980 * aot-compiler.c: Fix --enable-minimal=aot.
982 2009-01-30 Zoltan Varga <vargaz@gmail.com>
984 * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
987 2009-01-29 Zoltan Varga <vargaz@gmail.com>
989 * exceptions-arm.c: Fix warnings.
991 * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
994 * mini-x86.c: Fix --enable-minimal=jit build.
996 * mini.c: Really fix --enable-minimal=jit build.
998 * mini.c (construct_object_context_for_method): Move this outside
999 the DISABLE_JIT block to fix the --enable-minimal=jit build.
1001 "Backported" of r124984 from 2.0 branch.
1003 * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
1005 "Backport" of r124977 + r124978 from 2.0 branch.
1007 * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
1008 to avoid calling mono_exception_from_token () from the throw trampoline.
1009 (mono_arch_get_throw_exception_generic): call throw_exception_by_token
1010 for throwing corlib exceptions, this fixes full-aot support for corlib
1013 * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
1015 2009-01-29 Miguel de Icaza <miguel@novell.com>
1017 * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
1018 part of the changes to split the code in mini into operating
1019 system specific files.
1021 This patch was done by copying mini.c to the respective files to
1022 preserve SVN history.
1024 2009-01-29 Zoltan Varga <vargaz@gmail.com>
1026 * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
1028 2009-01-28 Zoltan Varga <vargaz@gmail.com>
1030 * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
1031 remoting-invoke-with-check wrappers of shared methods.
1033 * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
1035 2009-01-27 Mark Probst <mark.probst@gmail.com>
1037 * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
1038 optimization if the top of stack is the last instruction in the
1039 bblock. Otherwise it might have been used after its definition.
1042 2009-01-27 Zoltan Varga <vargaz@gmail.com>
1044 * mini-trampolines.c (mono_magic_trampoline): Print out the caller
1045 method as well when get_vcall_slot () fails to match a code sequence.
1047 * mini-arm.c: Fix the android build, which doesn't have
1050 2009-01-26 Zoltan Varga <vargaz@gmail.com>
1052 * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
1055 2009-01-26 Rodrigo Kumpera <rkumpera@novell.com>
1057 * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
1059 2009-01-26 Zoltan Varga <vargaz@gmail.com>
1061 * mini.c (mini_method_compile): Save the unwind info generated by the JIT
1062 and put its id into jinfo->used_regs. This is only used on amd64,
1063 which is currently the only platform generating unwind info.
1065 * exceptions-amd64.c: Instead of unwinding based on a register mask, use
1066 the dwarf unwinder. This is required to correctly handle async exceptions
1067 like thread abort and stack overflows, which can happen while a method
1068 is in the middle of its prolog or epilog.
1070 * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
1071 the unwind info belonging to an AOTed method.
1073 * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
1074 into cfg->unwind_ops.
1076 * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
1078 * mini.c (mini_init): Call mono_unwind_init ().
1079 (mini_cleanup): Call mono_unwind_cleanup ().
1081 * unwind.c: Add functions for managing a set of unwind info entries, allowing
1082 unwind info to be shared between methods.
1084 * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
1087 * exceptions-amd64.c (mono_arch_exceptions_init): Call
1088 get_throw_pending_exception () to avoid initialization races.
1090 * mini-exceptions.c (mono_exceptions_init): Call an arch specific
1091 mono_arch_exceptions_init () function.
1093 * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
1095 2009-01-25 Zoltan Varga <vargaz@gmail.com>
1097 * mini.c (mono_get_domain_intrinsic): New helper function.
1098 (mono_get_thread_intrinsic): Ditto.
1100 * mini-arm.c mini-ia64.c: Use the new helper functions.
1102 * method-to-ir.c (mono_method_to_ir): Fix the comment for
1103 the last constrained_call change, since it is needed in the non-AOT
1106 * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
1108 * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of
1109 mono_get_lmf_addr () on arm eabi linux.
1111 2009-01-24 Zoltan Varga <vargaz@gmail.com>
1113 * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
1114 code sequence which matches a non-virtual call.
1116 2009-01-23 Mark Probst <mark.probst@gmail.com>
1118 * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
1121 2009-01-23 Zoltan Varga <vargaz@gmail.com>
1123 * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
1124 runtime-invoke wrappers, since they are also shared based on signature.
1126 2009-01-22 Mark Probst <mark.probst@gmail.com>
1128 * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
1129 info from the (correct) context.
1131 2009-01-22 Zoltan Varga <vargaz@gmail.com>
1133 * unwind.c (mono_unwind_frame): Remove a stray g_free ().
1135 * unwind.c (mono_unwind_frame): New function to unwind through a frame
1136 using dwarf unwinding info. Not yet used.
1138 * mini.c (mini_init): When using xdebug, disable freeing of domains.
1140 2009-01-21 Mark Probst <mark.probst@gmail.com>
1142 * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
1145 * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
1146 special case and handle mono_arch_delegate_invoke_impl() returning
1147 function descriptors.
1149 * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
1150 trampolines return function descriptors, too.
1152 2009-01-21 Zoltan Varga <vargaz@gmail.com>
1154 * method-to-ir.c (handle_alloc): Avoid generic instances in the
1155 out_of_line optimization.
1157 2009-01-21 Martin Baulig <martin@ximian.com>
1160 (MonoCompile): Added `disable_deadce_vars' to disable removing
1164 (mini_method_compile): Set `cfg->disable_deadce_vars' when running
1165 inside the debugger.
1167 * liveness.c (mono_analyze_liveness): Don't remove any unused
1168 variables if `cfg->disable_deadce_vars' is set.
1170 2009-01-21 Mark Probst <mark.probst@gmail.com>
1172 * method-to-ir.c: Only apply exception constructor optimization if
1173 the the method actually belongs to an exception class. Fixes
1176 2009-01-21 Zoltan Varga <vargaz@gmail.com>
1178 * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
1179 change inside a #ifdef __mono_ppc64__.
1181 * aot-compiler.c (compile_method): Remove the previous limitation.
1183 * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
1184 on type variables in AOTed code.
1186 * aot-compiler.c (compile_method): Skip generic methods having type
1187 constraints on their generic parameters.
1189 * aot-compiler.c (compile_method): Check for methods which cannot be
1190 encoded inside RGCTX_FETCH patches as well.
1192 * mini-exceptions.c (mono_print_thread_dump): Fix the windows
1195 2009-01-20 Mark Probst <mark.probst@gmail.com>
1197 * method-to-ir.c: Force the vtable variable in shared generic code
1198 for the case that they might show up on a stack trace where they
1201 * mini-exceptions.c: Save and use generic sharing info as well as
1202 IP in stack traces to resolve shared generic instantiations.
1204 2009-01-20 Zoltan Varga <vargaz@gmail.com>
1206 * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
1207 added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
1209 2009-01-20 Mark Probst <mark.probst@gmail.com>
1211 * method-to-ir.c: Do generic sharing for array constructors.
1213 2009-01-20 Rodrigo Kumpera <rkumpera@novell.com>
1215 * mini-exceptions.c (mono_print_thread_dump): Add information
1216 about the thread state using wapi_current_thread_desc.
1218 2009-01-19 Rodrigo Kumpera <rkumpera@novell.com>
1220 * basic-simd.cs: Tests for the new constructors.
1222 2009-01-19 Rodrigo Kumpera <rkumpera@novell.com>
1224 * mini-ops.h: Added OP_EXPAND_*
1228 * mini-x86.c (mono_arch_output_basic_block): Same.
1230 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
1232 2009-01-19 Zoltan Varga <vargaz@gmail.com>
1234 * iltests.il.in: Add a test for #467385.
1236 2009-01-18 Rodrigo Kumpera <rkumpera@novell.com>
1238 * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
1239 thread been cleaned up is not the same currently in execution.
1241 Fixes appdomain-unload crashes on windows, osx and linux variants
1242 without the __thread keyword.
1244 2009-01-18 Zoltan Varga <vargaz@gmail.com>
1246 * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
1247 (koush@koushikdutta.com). Implement this for android.
1249 * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
1250 begins with a digit.
1252 * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
1253 mono_marshal_get_write_barrier ().
1255 2009-01-17 Rodrigo Kumpera <rkumpera@novell.com>
1257 * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
1258 of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
1259 that pass them on a register pair.
1261 This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
1262 test was crashing due to that.
1264 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
1266 * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
1267 trampoline code. Include ucontext.h only if available.
1269 2009-01-15 Mark Probst <mark.probst@gmail.com>
1271 * mini.c: mono_domain_lookup_shared_generic() takes an open method
1272 and doesn't check whether it's sharable, like it was before
1273 removing the shared generics hash. This brings IronPython
1274 performance back to what it was before that change.
1276 2009-01-14 Mark Probst <mark.probst@gmail.com>
1278 * method-to-ir.c: Handle delegate invocation optimization earlier,
1279 otherwise it would be handled (much more slowly) by the
1280 final/sealed optimization.
1282 2009-01-13 Zoltan Varga <vargaz@gmail.com>
1284 * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
1285 domain is not set. Fixes #465864.
1287 2009-01-12 Mark Probst <mark.probst@gmail.com>
1289 * method-to-ir.c: Don't stop sharing of generic methods with catch
1290 clauses - we already handle those.
1292 2009-01-12 Mark Probst <mark.probst@gmail.com>
1294 * mini.c, mini.h: lookup_generic_method() is now
1295 mono_domain_lookup_shared_generic() and uses the jit_code_hash,
1296 making the shared_generics_hash obsolete.
1298 2009-01-12 Mark Probst <mark.probst@gmail.com>
1300 * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
1301 use the red zone. Make room on the stack first and then use it,
1302 not the other way around.
1304 2009-01-12 Zoltan Varga <vargaz@gmail.com>
1306 * mini.c (mini_init): Call mono_xdebug_init ().
1308 * aot-compiler.c (mono_xdebug_init): Make this non-static.
1310 2009-01-11 Zoltan Varga <vargaz@gmail.com>
1312 * TestDriver.cs: Add an --iter argument to run tests multiple times.
1314 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
1317 * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
1318 debug+unwind info for trampolines.
1320 * mini.c (mono_create_unwind_op): New helper function.
1322 * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
1324 2009-01-10 Zoltan Varga <vargaz@gmail.com>
1326 * aot-compiler.c: Fix the build.
1328 2009-01-09 Zoltan Varga <vargaz@gmail.com>
1330 * Makefile.am: Update dtrace-prelink.sh location.
1332 2009-01-08 Zoltan Varga <vargaz@gmail.com>
1334 * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr
1335 optimization. Fixes #464520.
1337 2009-01-07 Bill Holmes <billholmes54@gmail.com>
1339 * mini-amd64.c : Adding code to save/restore non-volatile registers
1342 * exceptions-amd64.c : Adding code to save/restore non-volatile
1343 registers on Winx64.
1345 Contributed under MIT/X11 license.
1347 2009-01-07 Zoltan Varga <vargaz@gmail.com>
1349 * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
1350 __GNUC_MINOR__ which can break when the major version changes.
1352 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
1354 * basic-simd.cs: Add tests for usage of the sizeof opcode.
1356 2009-01-07 Geoff Norton <gnorton@novell.com>
1358 * helpers.c: Allow mono -v -v -v to work on darwin.
1360 2009-01-05 Bill Holmes <billholmes54@gmail.com>
1362 * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
1365 Contributed under MIT/X11 license.
1367 2009-01-05 Zoltan Varga <vargaz@gmail.com>
1369 * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
1370 instead of directly accessing type->data.klass. Fixes #462016.
1371 (mono_allocate_stack_slots_full): Ditto.
1373 * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio
1374 <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
1376 * aot-compiler.c (emit_plt): Fix ARM build.
1378 2009-01-04 Zoltan Varga <vargaz@gmail.com>
1380 * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
1382 * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
1385 * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
1386 instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
1389 * iltests.il.in: Add a regression test.
1391 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1393 * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
1395 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1397 * basic-simd.cs: Add a regression test for #462457.
1399 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1401 * mini-ops.h: Add a definition of XPHI.
1403 * mini.h (MONO_IS_PHI): Make is aware of simd instrincs.
1405 * ssa.c (op_phi_to_move): Handle XPHI.
1407 * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
1411 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1413 * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
1415 2008-12-31 Geoff Norton <gnorton@novell.com>
1417 * mini-ppc.c: The prolog size allocated can be too small for darwin
1418 ppc32 under certain circumstances. Also fix a small logic bug.
1420 2008-12-29 Zoltan Varga <vargaz@gmail.com>
1422 * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
1423 while loading AOT methods.
1425 * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
1426 since only the former is nulled out after a successful cast. This prevents
1427 crashes with rethrown exceptions when using --debug=casts.
1429 2008-12-24 Mark Probst <mark.probst@gmail.com>
1431 * mini.h: New macro for checking whether a method is final,
1432 i.e. whether the method or its class is marked final.
1434 * method-to-ir.c: Use the new macro for all final-checks
1435 consistently. Fixes the crash in the System.ServiceModel tests.
1437 2008-12-23 Mark Probst <mark.probst@gmail.com>
1439 * mini-exceptions.c (get_exception_catch_class): Corrected another
1440 overly strict assertion.
1442 2008-12-23 Mark Probst <mark.probst@gmail.com>
1444 * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
1445 Clobbering it is not allowed because the caller might use it as
1446 the vtable register in the interface call.
1448 2008-12-19 Mark Probst <mark.probst@gmail.com>
1450 * mini-exceptions.c (get_exception_catch_class): Corrected an
1451 overly strict assertion.
1453 2008-12-18 Mark Mason <mmason@upwardaccess.com>
1455 * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
1457 * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
1459 * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
1461 * cpu-mips.md: correct lengths for certain long_ opcodes.
1463 * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
1465 * mini-mips.c: Add support for more long operations. Fix issues with stack frame layout for n32 (still not perfect yet). Add mips_emit_load_const().
1467 2008-12-17 Mark Mason <mmason@upwardaccess.com>
1469 * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
1471 2008-12-17 Mark Mason <mmason@upwardaccess.com>
1473 * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
1475 2008-12-16 Rodrigo Kumpera <rkumpera@novell.com>
1477 * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
1480 2008-12-16 Mark Mason <mmason@upwardaccess.com>
1482 * mini.h: Allow MonoInst 'p' field to alias with the low-order bits of the 'const_val' fields correctly on big-endian systems when SIZEOF_VOID_P < SIZEOF_REGISTER
1484 * ir-emit.h: Change SIZEOF_VOID_P to SIZEOF_REGISTER, init instruction through inst_c* fields instead of inst_p* fields in case sizeof(inst_p) < sizeof(inst_c)
1486 2008-12-15 Mark Mason <mmason@upwardaccess.com>
1488 * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
1490 2008-12-14 Zoltan Varga <vargaz@gmail.com>
1492 * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
1493 gshared code. Fixes #458947.
1495 * generics.cs: Add a test.
1497 2008-12-12 Mark Mason <mmason@upwardaccess.com>
1499 * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1501 * mini-mips.c: first pass n32 code generation.
1503 * mini-mips.h: datatypes and defines for n32 support.
1505 * exceptions-mips.c: first pass n32 code generation.
1507 * tramp-mips.c: first pass n32 code generation.
1509 * cpu-mips.md: add long_ opcodes.
1511 2008-12-12 Mark Mason <mmason@upwardaccess.com>
1513 * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1515 * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1517 * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1519 * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1521 * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1523 * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1525 * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1527 * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1529 * helpers.c: for mips/n32, don't pass -mips32 to objdump
1531 2008-12-12 Zoltan Varga <vargaz@gmail.com>
1533 * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
1535 2008-12-12 Andrés G. Aragoneses <aaragoneses@novell.com>
1537 * driver.c: Sync --help-trace with man page (EXPR,EXPR).
1539 2008-12-12 Mark Probst <mark.probst@gmail.com>
1541 * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
1542 descriptors for helper functions directly in front of the code.
1544 2008-12-11 Mark Probst <mark.probst@gmail.com>
1546 * method-to-ir.c: Removed an unnecessary assertion.
1548 2008-12-10 Zoltan Varga <vargaz@gmail.com>
1550 * method-to-ir.c: Merge SGEN changes from the old JIT.
1552 2008-12-10 Zoltan Varga <vargaz@gmail.com>
1554 * driver.c (compile_all_methods_thread_main): Handle failure of
1557 2008-12-10 Mark Probst <mark.probst@gmail.com>
1559 * mini-ppc.c: Merged with mini-ppc64.c.
1561 * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
1563 * Makefile.am: Use the same sources for PPC and PPC64.
1565 * mini-ppc64.c: Removed.
1567 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
1569 * branch-opts.c (remove_block_if_useless): Extract fall through detection
1570 code to mono_bb_is_fall_through.
1572 * branch-opts.c (mono_remove_critical_edges): Same.
1574 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
1576 * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
1577 expect that an OP_BR_REG will be there.
1579 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
1581 * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
1582 for the many branch ops. The original check miss OP_BR_REG.
1586 2008-12-09 Mark Mason <mmason@upwardaccess.com>
1588 * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
1590 2008-12-09 Zoltan Varga <vargaz@gmail.com>
1592 * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
1593 while holding the aot lock.
1595 2008-12-09 Mark Mason <mmason@upwardaccess.com>
1597 * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
1599 2008-12-09 Bill Holmes <billholmes54@gmail.com>
1601 * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws
1602 to release all runtime callable wrappers held by the runtime.
1604 Contributed under MIT/X11 license.
1606 2008-12-09 Bill Holmes <billholmes54@gmail.com>
1608 * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
1611 Contributed under MIT/X11 license.
1613 2008-12-09 Zoltan Varga <vargaz@gmail.com>
1615 * aot-runtime.c (decode_exception_debug_info): Acquire the domain
1616 lock when calling mono_domain_alloc (). Hopefully fixes #415608.
1618 2008-12-09 Mark Mason <mmason@upwardaccess.com>
1620 * cpu-mips.md: fix ckfinite length
1622 * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
1623 (mono_arch_lowering_pass): cleanup, rearrange for clarity
1624 (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
1626 2008-12-08 Mark Mason <mmason@upwardaccess.com>
1628 * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
1630 2008-12-08 Geoff Norton <gnorton@novell.com>
1632 * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
1633 size by 8 bytes as well.
1635 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1637 * basic-simd.cs: Fix method names for Vector16b.
1639 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1641 * basic-simd.cs: Fix method names for Vector16sb.
1643 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1645 * basic-simd.cs: Fix method names for Vector8us.
1647 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1649 * basic-simd.cs: Fix method names for Vector8s.
1651 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1653 * basic-simd.cs: Fix method names for Vector4ui.
1655 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1657 * basic-simd.cs: Fix method names for Vector2l.
1659 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1661 * basic-simd.cs: Fix method names for Vector2d.
1663 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1665 * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
1666 that are extension methods.
1668 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1670 * basic-simd.cs: Fix method names for Vector4f.
1672 2008-12-08 Zoltan Varga <vargaz@gmail.com>
1674 * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
1675 as such. Fixes #456669.
1677 2008-12-07 Mark Mason <mmason@upwardaccess.com>
1679 * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
1681 2008-12-07 Mark Mason <mmason@upwardaccess.com>
1683 * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
1684 (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
1685 (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
1686 (mips_adjust_stackframe): handle FP spills
1688 * mini-ops.h: add mips_mtc1_s2
1690 * cpu-mips.md: add mips_mtc1_s2
1692 2008-12-07 Zoltan Varga <vargaz@gmail.com>
1694 * unwind.c: New file, move the unwind info encoding functions here from
1695 aot-compiler.c, so they could be used at runtime too.
1697 2008-12-05 Mark Mason <mmason@upwardaccess.com>
1699 * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
1700 (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
1702 2008-12-05 Mark Mason <mmason@upwardaccess.com>
1704 * mini-mips.c: cleanup warnings
1705 (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
1706 (mips_adjust_stackframe): handle case of taking the address of stack locals
1708 2008-12-05 Zoltan Varga <vargaz@gmail.com>
1710 * aot-compiler.c: Implement a few functions missing from the asm writer.
1711 (emit_method_code): Only write symbols for methods when using the bin
1712 writer, since the assembler can't deal with the characters in our method
1715 * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
1717 * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
1720 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
1721 a bit to also restore %rax.
1723 2008-12-05 Mark Probst <mark.probst@gmail.com>
1725 * mini-ppc.c: Some simple merges from mini-ppc64.c.
1727 2008-12-05 Zoltan Varga <vargaz@gmail.com>
1729 * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
1732 2008-12-05 Mark Probst <mark.probst@gmail.com>
1734 * exceptions-ppc.c: Merged with exceptions-ppc64.c.
1736 * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
1737 MONO_ARCH_FRAME_ALIGNMENT. Struct for PPC64 function descriptors.
1739 * exceptions-ppc64.c: Removed.
1741 * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
1743 2008-12-05 Mark Probst <mark.probst@gmail.com>
1745 * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
1748 * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
1750 * tramp-ppc64.c: Removed.
1752 2008-12-05 Zoltan Varga <vargaz@gmail.com>
1754 * aot-compiler.c (add_generic_instances): Skip non-generic classes in
1757 2008-12-05 Mark Probst <mark.probst@gmail.com>
1759 * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
1761 * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
1762 mini-ppc.h instead of mini-ppc64.h.
1764 * mini-ppc64.h: Removed.
1766 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1768 * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
1770 * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
1772 2008-12-05 Mark Probst <mark.probst@gmail.com>
1774 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
1775 Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
1778 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1780 * basic-simd.cs: Tests for operator == and != on Vector8us and Vector16b.
1782 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1784 * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
1786 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1788 * basic-simd.cs: Tests for operator == and != on Vector4f.
1790 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1792 * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
1794 * simd-intrinsics.c: Kill useless enum.
1796 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1798 * cpu-mips.md: add long_conv_to_ovf_i4_2
1799 * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
1801 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1803 * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
1805 * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
1807 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1809 * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
1811 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
1813 * basic-simd.cs: Add tests for new methods.
1815 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
1817 * simd-intrinsics.c: Add support for operator == and !=
1820 * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
1822 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
1824 * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
1826 2008-12-04 Zoltan Varga <vargaz@gmail.com>
1828 * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
1830 * mini.c (mono_resolve_patch_target): Allow pinvoke methods in
1831 MONO_PATCH_INFO_ICALL_ADDR.
1833 * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
1835 * aot-compiler.c: Resurrect full-aot support.
1837 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1839 * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
1841 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1843 * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
1845 2008-12-03 Rodrigo Kumpera <rkumpera@novell.com>
1847 * basic-simd.cs: Fix tests to work under ppc.
1848 Remove tests for methods that will be removed.
1850 2008-12-03 Mark Probst <mark.probst@gmail.com>
1852 * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
1853 generic type (via a typedef or typeref) correctly.
1855 2008-12-03 Zoltan Varga <vargaz@gmail.com>
1857 * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
1858 diagnose an assertion failure.
1860 2008-12-02 Mark Probst <mark.probst@gmail.com>
1862 * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
1863 Fix trampoline size.
1865 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
1866 conversion opcodes are implemented natively instead via emulation.
1868 2008-12-01 Mark Mason <mmason@upwardaccess.com>
1870 * cpu-mips.md: remove mips_xori
1872 * mini-ops.h: remove mips_xori
1874 * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
1876 * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
1878 * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
1880 2008-12-01 Mark Mason <mmason@upwardaccess.com>
1882 * cpu-mips.md: fix instruction lengths.
1884 * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
1886 * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
1888 * mini-ops.h: fix slti / sltiu op profiles.
1890 2008-12-02 Martin Baulig <martin@ximian.com>
1892 * method-to-ir.c (mono_method_to_ir): Disable debugging
1893 information for the init locals block to make the debugger stop
1894 after all locals have been initalized.
1896 2008-12-02 Martin Baulig <martin@ximian.com>
1898 * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
1899 running inside the debugger.
1901 2008-12-01 Zoltan Varga <vargaz@gmail.com>
1903 * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
1906 * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the
1907 alu->alu imm optimization which only shows if deadce is disabled.
1909 * aot-compiler.c: Rename the function names for the binary and asm writers
1910 so they can coexist in the same process. Rework the xdebug code to use the
1911 asm writer. This avoids the need to call into the runtime to dump the
1912 debugging info. Add more debugging info for types.
1914 * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
1916 * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
1917 cpu description tables, they can't occur in cpu-<ARCH>.md.
1919 * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
1920 the stack in CEE_LDFLDA. Fixes #450542.
1922 * generics.cs: Add a new test.
1924 2008-12-01 Mark Mason <mmason@upwardaccess.com>
1926 * mini-ops.h: updated MIPS opcodes
1927 * mini-mips.c: decompose long opts
1928 * mini-mips.h: decompose long opts
1930 2008-11-29 Mark Mason <mmason@upwardaccess.com>
1932 * cpu-mips.md: fix length on int_rem_un
1933 * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
1935 2008-11-29 Zoltan Varga <vargaz@gmail.com>
1937 * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
1939 * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
1941 2008-11-29 Martin Baulig <martin@ximian.com>
1943 * mini-exceptions.c (mono_handle_native_sigsegv): Check
1944 mono_debug_using_mono_debugger() in addition to the
1945 `no_gdb_backtrace' flag in the `MonoDebugOptions'.
1947 2008-11-28 Mark Mason <mmason@upwardaccess.com>
1949 * mini-ops.h: updated more MIPS opcodes
1950 * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
1951 * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
1953 2008-11-28 Mark Probst <mark.probst@gmail.com>
1955 * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
1957 2008-11-28 Mark Mason <mmason@upwardaccess.com>
1959 * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
1960 * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
1961 * mini-ops.h: correct selected mips opcode entries
1963 2008-11-28 Mark Probst <mark.probst@gmail.com>
1965 * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
1968 2008-11-28 Mark Probst <mark.probst@gmail.com>
1970 * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
1972 2008-11-28 Mark Mason <mmason@upwardaccess.com>
1974 * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
1975 * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
1976 * mini-mips.h: disable IMT
1977 * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
1979 2008-11-28 Mark Probst <mark.probst@gmail.com>
1981 * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
1983 2008-11-28 Mark Probst <mark.probst@gmail.com>
1985 * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
1987 2008-11-28 Zoltan Varga <vargaz@gmail.com>
1989 * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
1992 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
1994 * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
1995 for Set/GetVector aligned versions.
1997 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
1999 * basic-simd.cs: Add tests for Get/SetVector.
2001 2008-11-27 Mark Probst <mark.probst@gmail.com>
2003 * mini.c: Removed g_slist_append_mempool(). Now in
2006 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
2008 * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
2009 size properly and make the bounds check optional.
2011 * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
2012 for SetVector and IsAligned.
2014 2008-11-27 Zoltan Varga <vargaz@gmail.com>
2016 * mini.c: Remove unused mono_normalize_opcodes () function.
2018 2008-11-26 Mark Probst <mark.probst@gmail.com>
2020 * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
2021 using the new atomic add ops now.
2023 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
2026 2008-11-26 Mark Probst <mark.probst@gmail.com>
2028 * mini-ppc64.c: Several fixes.
2030 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2032 * cpu-mips.md: added jump_table
2033 * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.
2035 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2037 * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
2039 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2041 * mini-ops.h: corrected a handful of MIPS opcodes.
2043 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2045 * aot-compiler.c: MIPS to use ELF writer
2047 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2049 * mini-codegen.c: remove MIPS specific assert.
2051 2008-11-25 Mark Probst <mark.probst@gmail.com>
2053 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
2054 fixes. PPC64 now passes most of the runtime regressions.
2056 2008-11-24 Zoltan Varga <vargaz@gmail.com>
2058 * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
2059 volatile intervals a bit.
2061 2008-11-24 Mark Probst <mark.probst@gmail.com>
2063 * basic-long.cs: New test case.
2065 2008-11-23 Zoltan Varga <vargaz@gmail.com>
2067 * mini.c (mini_method_compile): Disable globalra for large methods for
2070 * regalloc2.c (order_moves): Add fp support.
2072 * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
2073 source bblock ends with an OP_BR_REG.
2075 * ratests.cs: Add a new test.
2077 2008-11-23 Mark Probst <mark.probst@gmail.com>
2079 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
2080 sharing. PPC64 now passes generics.exe.
2082 2008-11-23 Mark Probst <mark.probst@gmail.com>
2084 * mini-ppc64.c: Several fixes. PPC64 now runs iltests.exe.
2086 2008-11-23 Zoltan Varga <vargaz@gmail.com>
2088 * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
2089 memory when mono_jit_info_table_find () can't find the method in the
2092 * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
2095 * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
2098 2008-11-23 Mark Probst <mark.probst@gmail.com>
2100 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
2101 Several fixes. PPC64 now runs exceptions.exe and
2102 devirtualization.exe.
2104 2008-11-22 Mark Probst <mark.probst@gmail.com>
2106 * mini-ppc64.c, tramp-ppc64.c: Small fixes. PPC64 now runs
2107 arrays.exe and basic-math.exe.
2109 2008-11-22 Mark Probst <mark.probst@gmail.com>
2111 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
2112 cpu-ppc64.md: Several fixes. PPC64 now runs objects.exe.
2114 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
2116 * simd-intrinsics.c: Add support ArrayExtension intrinsics.
2118 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
2120 * method-to-ir.c: Move bounds checking macros to ir-emit.h
2122 * ir-emit.h: Move macros from method-to-ir.c to here.
2124 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
2126 * mini-ops.h: Correct the long simd ops to use LREG.
2128 2008-11-21 Zoltan Varga <vargaz@gmail.com>
2130 * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
2132 * mini-ops.h: Correct the dreg type of a few long opcodes.
2134 * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
2137 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
2139 * mini-ppc.c: remove negative stack references in epilog
2140 for platforms that don't support the red zone.
2142 2008-11-21 Mark Probst <mark.probst@gmail.com>
2144 * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
2145 point regs. Now PPC64 passes basic-calls.exe.
2147 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2149 * basic-simd.cs: Add tests for accessors of Vector2l.
2151 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2153 * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
2155 * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
2157 * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
2159 2008-11-21 Mark Probst <mark.probst@gmail.com>
2161 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes. Now
2162 PPC64 passes basic-long.exe.
2164 2008-11-20 Mark Probst <mark.probst@gmail.com>
2166 * decompose.c: Decompose carry and overflow add on PPC64 like on
2167 other 64 bit archs. Don't decompose sub at all on PPC64.
2169 * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
2170 Several fixes and new opcodes. Now PPC64 runs (but doesn't pass)
2173 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2175 * basic-simd.cs: Add tests for accessors of Vector2d.
2177 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2179 * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
2183 * mini-x86.c (mono_arch_output_basic_block): Same.
2185 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
2187 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2189 * basic-simd.cs: Add tests for accessors of Vector4f.
2191 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2193 * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
2197 * mini-x86.c (mono_arch_output_basic_block): Same.
2199 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
2201 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2203 * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
2205 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2207 * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
2211 * mini-x86.c (mono_arch_output_basic_block): Same.
2213 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
2215 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2217 * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
2219 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2221 * simd-intrinsics.c: Enable setters for Vector16sb.
2223 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2225 * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
2229 * mini-x86.c (mono_arch_output_basic_block): Same.
2231 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
2233 2008-11-19 Rodrigo Kumpera <rkumpera@novell.com>
2235 * simd-intrinsics.c: Implement setter for Vector8us.
2237 2008-11-19 Zoltan Varga <vargaz@gmail.com>
2239 * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
2242 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2244 * mini-ppc.c: remove references to the red zone in the prolog
2245 (for systems that don't support it).
2247 2008-11-19 Mark Probst <mark.probst@gmail.com>
2249 * cpu-ppc64.md: Fixed a few instruction lengths.
2251 * mini-ppc64.c: Don't emit SETLRET. PPC64 passes basic-float.exe,
2254 2008-11-19 Mark Probst <mark.probst@gmail.com>
2256 * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes. PPC64 passes
2259 2008-11-19 Zoltan Varga <vargaz@gmail.com>
2261 * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
2263 2008-11-18 Rodrigo Kumpera <rkumpera@novell.com>
2265 * mini-ops.h: Added OP_INSERT_I2.
2269 * mini-x86.c (mono_arch_output_basic_block): Same.
2271 * simd-intrinsics.c: Implement setter for Vector8s.
2273 * simd-methods.h: Add the names of get setters of Vector8s.
2275 2008-11-18 Zoltan Varga <vargaz@gmail.com>
2277 * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
2279 * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
2282 * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2284 2008-11-18 Mark Probst <mark.probst@gmail.com>
2286 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
2287 for PPC64. An empty program runs now.
2289 2008-11-18 Zoltan Varga <vargaz@gmail.com>
2291 * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2293 * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
2294 a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
2295 info for JITted code is emitted into a shared library, loadable into gdb.
2297 2008-11-18 Mark Probst <mark.probst@gmail.com>
2299 * Makefile.am: Changes to build PPC64.
2301 * mini-arch.h: Include mini-ppc64.h on PPC64.
2303 2008-11-18 Mark Probst <mark.probst@gmail.com>
2305 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
2306 in PPC code up to r119147.
2308 2008-11-18 Mark Probst <mark.probst@gmail.com>
2310 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2311 cpu-ppc64.md: Changes for PPC64.
2313 Based on code submitted by andreas.faerber@web.de at
2314 https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
2317 2008-11-18 Mark Probst <mark.probst@gmail.com>
2319 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2320 cpu-ppc64.md: Copied from the corresponding PPC files from
2323 2008-11-18 Scott Peterson <lunchtimemama@novell.com>
2325 * mini-ops.h: Added OP_ROUND.
2327 * cpu-x86.md: Added round.
2329 * mini-x86.c: Added support for intrinsicing Math.Round (double).
2331 * basic-math.cs: Added test_0_round to test rounding.
2333 Contributed under MIT/X11 license.
2335 2008-11-17 Bill Holmes <billholmes54@gmail.com>
2337 * aot-compiler.c : Fix the Winx64 build.
2339 Contributed under MIT/X11 license.
2341 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
2343 * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
2344 in OP_EXTRACT_R8 to avoid possible stack corruption.
2346 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
2348 * mini-ops.h: Added OP_EXTRACT_R8/I8.
2350 * cpu-x86.md: Added extract_r8.
2352 * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
2354 * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
2355 a couple of OP_EXTRACT_I4.
2357 * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
2359 * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
2361 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
2363 * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
2366 2008-11-17 Zoltan Varga <vargaz@gmail.com>
2368 * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
2369 trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
2371 * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
2372 are not needed any more.
2374 * mini.h: Remove the unused INS_LIST macros.
2376 * mini.c (mini_method_compile): Remove a disable globalra case which is no
2379 * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
2382 * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
2383 mono_alloc_ireg () instead.
2385 * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
2388 * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
2391 * aot-runtime.c (load_aot_module): Disable AOT when running under
2394 * mini-amd64.h: Change the monitor fastpath defines to check for
2395 !PLATFORM_WIN32 so they work on *bsd too.
2397 * mini.h mini.c mini-hhpa.c: Remove more unused code.
2399 * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
2401 * mini.h (MonoCompile): Remove new_ir flag.
2403 * regalloc.h regalloc.c: Remove unused code.
2405 * cpu-*.md: Remove more unused opcodes.
2407 * simple-cee-ops.h simple-mini-ops.h: Removed.
2409 * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
2411 2008-11-17 Zoltan Varga <vargaz@gmail.com>
2413 * aliasing.h: Removed.
2415 * *.c: Remove references to aliasing.h and inssel.h.
2417 * mini.c: Remove additional unused functions.
2419 * mini-ops.h cpu-*.md: Remove unused opcodes.
2421 2008-11-16 Zoltan Varga <vargaz@gmail.com>
2423 Remove the old JIT code.
2425 * inssel*.brg: Removed.
2427 * ssa.c abcremoval.c aliasing.c: Removed.
2429 * ssa2.c: Renamed to ssa.c.
2431 * abcremoval2.c: Renamed to abcremoval.c.
2433 * *.c: Removed all !cfg->new_ir code.
2435 * mini-<ARCH>.c: Removed mono_arch_call_opcode (),
2436 mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
2438 * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
2440 2008-11-16 Zoltan Varga <vargaz@gmail.com>
2442 * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
2443 to simplify the code and cut back on the number of global symbols in the AOT
2446 * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
2448 2008-11-15 Zoltan Varga <vargaz@gmail.com>
2450 * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
2451 with the got/got_info tables.
2453 * mini.h: Bump AOT file format version.
2455 * unwind.h: New file, contains definitions for stack unwinding.
2457 * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
2460 * aot-compiler.c: Generalize the emitting of unwind information to use the
2461 information in cfg->unwind_ops.
2463 * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
2465 * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
2466 AOT method frames. Enable writing symbols for methods by default.
2468 2008-11-14 Rodrigo Kumpera <rkumpera@novell.com>
2470 * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
2471 and make it work with vectors of element sizes 1, 2 and 4.
2473 * simd-intrinsics.c: Enable getter for all vectors with element size
2476 * simd-methods.h: Add the names of other getters.
2478 * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
2484 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
2486 * mini-ppc.h: portability fix.
2488 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2490 * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
2491 buggy and will overwrite it.
2493 2008-11-14 Zoltan Varga <vargaz@gmail.com>
2495 * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
2496 Use it to emit local symbols for all methods so AOTed methods show up with
2497 their full name in gdb/valgrind output.
2499 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
2501 * mini-ppc.c: portability fixes.
2503 2008-11-14 Zoltan Varga <vargaz@gmail.com>
2505 * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
2506 entries out of the if (!generic_shared...) code so it is always done.
2507 (mono_class_init_trampoline): Do the patching when running under valgrind
2508 too, newer versions of valgrind have no problems with it.
2510 2008-11-13 Zoltan Varga <vargaz@gmail.com>
2512 * aot-compiler.c (emit_writeout): Rework this to make it easier to add
2515 2008-11-13 Mark Probst <mark.probst@gmail.com>
2517 * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
2520 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2522 * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui.
2524 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2526 * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
2532 * simd-intrinsics.c: Same.
2534 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2536 * simd-intrinsics.c: Enable constructor intrinsics for all types.
2538 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2540 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
2541 to work with more Vector types.
2543 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2545 * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
2546 store the elemens directly instead of using and intermediate.
2548 2008-11-13 Zoltan Varga <vargaz@gmail.com>
2550 * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
2552 * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
2553 to preserve %eax for aot plt trampolines.
2555 * aot-compiler.c (compile_method): Don't skip synchronized methods.
2556 (encode_method_ref): Flag synchronized methods so they won't go through
2559 * aot-compiler.c: Additional work to support AOTing synchronized methods/
2562 * cpu-ia64.md (jmp): Increase max length.
2564 2008-11-12 Zoltan Varga <vargaz@gmail.com>
2566 * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
2567 open generic classes.
2569 * aot-compiler.c: Enable the ELF writer on ELF platforms.
2571 * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
2572 box+brtrue optimization since it causes test failures on x86.
2574 2008-11-12 Rodrigo Kumpera <rkumpera@novell.com>
2576 * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
2582 * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
2583 for simd ctor values.
2585 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
2586 instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
2588 2008-11-12 Rodrigo Kumpera <rkumpera@novell.com>
2590 * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
2593 * simd-instrincs.c: Same.
2595 * basic-simd.cs: Same.
2597 2008-11-12 Zoltan Varga <vargaz@gmail.com>
2599 * ratests.cs: Add more tests.
2601 * regalloc2.c (add_spill_code): Handle more corner cases.
2603 2008-11-11 Zoltan Varga <vargaz@gmail.com>
2605 * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
2606 (update_liveness): Avoid holes in the liveness ranges of hregs if they are
2607 both the source an destination of an instruction.
2609 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2611 * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
2612 wapihandles.c: more portability changes.
2614 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
2616 * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
2617 * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
2618 safe to execute in a signal handler and the kernel provides better
2619 the info in /proc/self/smaps. Avoid the assert on sigaction during
2622 2008-11-11 Zoltan Varga <vargaz@gmail.com>
2624 * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
2625 do the bblock linking hack if it is actually needed.
2627 * Makefile.am (patch-libtool): New helper target to patch libtool to speed
2630 * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
2631 crash problem is fixed.
2633 * branch-opts.c (mono_remove_critical_edges): Link up newly added
2636 * mini.c (mini_method_compile): Compute unreachable bblocks properly even
2638 (mini_method_compile): Set the starting value of next_vreg to
2639 MAX_IREGS + MAX_FREGS when using globalra.
2641 * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
2642 filter clauses with BB_EXCEPTION_HANDLER.
2644 * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
2646 2008-11-10 Mark Probst <mark.probst@gmail.com>
2648 * mini-x86.c (mono_arch_get_argument_info): Don't align argument
2649 space for stdcall. Fixes regressions on Win32.
2651 2008-11-10 Zoltan Varga <vargaz@gmail.com>
2653 * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
2655 (linear_scan): Remove an assert which doesn't seem to be needed.
2657 * local-propagation.c (mono_local_deadce): Avoid a call to
2658 MONO_DELETE_INS which would screw up the instruction linking.
2660 * mini.c (mono_decompose_op_imm): Make this work with globalra.
2662 * regalloc2.c: Upgrade to work the current JIT code.
2664 2008-11-09 Zoltan Varga <vargaz@gmail.com>
2666 * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
2669 * aot-runtime.c: Remove some dead code.
2671 * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
2673 (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
2675 * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
2676 trampolines using sscanf since atoi doesn't work on large unsigned values.
2678 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full):
2679 Initialize code_size.
2681 2008-11-08 Mark Probst <mark.probst@gmail.com>
2683 * method-to-ir.c (mini_emit_inst_for_method): Make
2684 Interlocked.CompareExchange work for Int arguments on 32 bit
2687 2008-11-07 Mark Probst <mark.probst@gmail.com>
2689 * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
2691 2008-11-06 Bill Holmes <billholmes54@gmail.com>
2693 * main.c Fix MSVC build.
2695 Contributed under MIT/X11 license.
2697 2008-11-06 Mark Probst <mark.probst@gmail.com>
2699 * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
2700 alignment larger than 8 bytes are aligned correctly, too.
2702 * mini.c: Honor the min_align field of MonoClass when laying out
2705 2008-11-06 Zoltan Varga <vargaz@gmail.com>
2707 * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
2709 * aot-compiler.c (emit_plt): Fix a warning.
2711 * aot-compiler.c: Implement ARM support in the binary writer.
2713 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2715 * basic-simd.cs: Add test for getter with byref arg.
2716 Fix the naming of a few tests.
2717 Add missing checks to a test.
2719 2008-11-05 Zoltan Varga <vargaz@gmail.com>
2721 * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
2723 * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
2724 most of the full-aot support for monitor enter/exit trampolines.
2726 * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
2727 enter/exit trampoline creation functions.
2729 * Makefile.am: Fix the generation of buildver.h so it is not invoked during
2732 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
2734 * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
2735 incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
2736 implement the needed functionality without adding crap to the runtime.
2738 2008-11-05 Zoltan Varga <vargaz@gmail.com>
2740 * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
2743 * mini.c (mono_build_date): New global version holding the build date in
2746 * Makefile.am (buildver.c): Generate a file containing the build date.
2748 * main.c: Set the build date from the generated file.
2750 * mini.c (mono_get_runtime_build_info): New helper function returning build
2751 information in a string format.
2753 * driver.c (mono_main): Print the build date in --version.
2755 * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
2756 file when the bind-to-runtime-version option is used.
2758 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2760 * simd-intrinsics.c: Fix bug when using getters and byref args.
2762 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2764 * simd-methods.h: Rename prefetch methods.
2766 * simd-intrinsics.c: Same.
2768 2008-11-05 Mark Probst <mark.probst@gmail.com>
2770 * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
2773 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2775 * aot-compiler.c: Use the bundled elf header files instead of depending on
2778 * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
2781 * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
2784 2008-11-04 Rodrigo Kumpera <rkumpera@novell.com>
2786 * cpu-x86.md: Add store nta ops.
2792 * mini.h: Add an enum for simd prefetch modes.
2794 * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
2795 of store. Use the changed code to support store nta.
2797 * simd-intrinsics.c: Add prefetch ops for all vector types.
2799 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2801 * aot-compiler.c: Add an option for JIT compiling the methods by multiple
2804 * aot-compiler.c: Use statically allocated buffers for constructing symbol
2807 * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
2810 2008-11-04 Mark Probst <mark.probst@gmail.com>
2812 * mini-x86.c: Fixed commit.
2814 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2816 * aot-compiler.c (emit_plt): Align the plt section only on x86.
2818 2008-11-04 Mark Probst <mark.probst@gmail.com>
2820 * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
2821 and MONITOR_EXIT, for the ASM fastpaths.
2823 * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
2826 * mini.c, patch-info.h: Signature and patch infos for
2827 Monitor.Enter/Exit trampolines.
2829 * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
2831 * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
2832 Monitor.Enter/Exit ASM fastpath for Linux.
2834 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2836 * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
2838 * objects.cs: Add a new test.
2840 * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
2842 * aot-runtime.c (load_method): Run class initialization in the PLT case even
2843 if MONO_LOG_LEVEL is set.
2845 * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
2847 * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
2849 * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
2851 * aot-compiler.c: Change the relocation code to use virtual addresses instead
2852 of file offsets. Align the sections belonging to the data segment to
2855 2008-11-03 Zoltan Varga <vargaz@gmail.com>
2857 * aot-compiler.c: Simplify the elf writer by depending on the definitions in
2858 elf.h. Port it to amd64.
2860 2008-11-03 Rodrigo Kumpera <rkumpera@novell.com>
2862 * driver.c: Enable SIMD by default.
2864 2008-11-03 Rodrigo Kumpera <rkumpera@novell.com>
2866 * cpu-x86.md: Add prefetch op.
2872 * mini.h: Add an enum for simd prefetch modes.
2874 * simd-methods.h: Add prefetch function names.
2876 * simd-intrinsics.c: Add prefetch ops for all vector types.
2878 2008-11-03 Zoltan Varga <vargaz@gmail.com>
2880 * aot-compiler.c (emit_bytes): Speed this up a little.
2882 2008-11-02 Zoltan Varga <vargaz@gmail.com>
2884 * aot-compiler.c: Add JIT time etc. statistics.
2886 * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
2888 * mini.h (MonoCompile): Add 'got_offset' field.
2890 * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
2891 method_got_offsets array.
2893 * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
2896 * aot-compiler.c (compile_method): Add generic method instances referenced
2897 by the method to the list of methods to be compiled, this is required so if
2898 A<T> references B<T>, and another assembly references A<int>, then it will
2899 also get a copy of B<int>.
2901 * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
2902 when checking for monitor enter/exit.
2904 2008-10-30 Mark Probst <mark.probst@gmail.com>
2906 * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
2907 for Monitor.Enter and Monitor.Exit if enabled.
2909 * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
2912 2008-10-30 Zoltan Varga <vargaz@gmail.com>
2914 * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
2915 of an OP_MOVE. Fixes #440046.
2917 * basic-long.cs: Add a new test.
2919 2008-10-29 Rodrigo Kumpera <rkumpera@novell.com>
2921 * mini.h: Add synchronization note for the managed counter-part.
2923 * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
2924 returns the simd caps of the current cpu.
2926 2008-10-29 Rodrigo Kumpera <rkumpera@novell.com>
2928 * basic-simd.cs: Remove Console.WriteLine.
2930 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2932 * basic-simd.cs: New tests for Vector2ul.
2934 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2936 * simd-intrinsics.c: Add new vector type Vector2ul.
2938 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2940 * basic-simd.cs: New tests for Vector2l.
2942 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2944 * cpu-x86.md: Add long version of most packed int ops.
2950 * simd-intrinsics.c: Add new vector type Vector2l.
2952 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2954 * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
2956 * simd-methods.h: Remove SN_op_BitwiseXor.
2958 2008-10-28 Zoltan Varga <vargaz@gmail.com>
2960 * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
2963 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2965 * basic-simd.cs: Test for Vector2d.
2967 * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
2970 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2972 * cpu-x86.md: Add double version of all packed float ops.
2978 * simd-intrinsics.c: Add new vector type Vector2d.
2980 * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
2982 * simd-methods.h: Add Duplicate.
2984 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2986 * basic-simd.cs: Test for packing with signed saturation.
2988 2008-10-28 Zoltan Varga <vargaz@gmail.com>
2990 * aot-compiler.c (add_generic_instances): Add all methods of generic instances
2991 found in the TYPESPEC table.
2993 2008-10-26 Zoltan Varga <vargaz@gmail.com>
2995 * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
2998 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
3000 * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
3001 instead of the RVA, since the RVA can be changed by tools like the cil
3004 * method-to-ir.c (mono_method_to_ir2): Ditto.
3006 * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
3007 (deserialize_variable): Ditto.
3009 2008-10-25 Martin Baulig <martin@ximian.com>
3011 * debug-mini.c (write_variable): Use
3012 `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
3014 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3016 * cpu-x86.md: Add unsigned variants of packd and packw.
3020 * mini-x86.h: Emit the right instruction for packd and packw.
3021 Add unsigned variants of packd and packw.
3023 * simd-intrinsics.c: Packd and packw were used in place of their
3024 unsigned variants. Change that.
3025 Add intrinsics for (Signed)PackWithSignedSaturation.
3027 * simd-methods.h: Add (Signed)PackWithSignedSaturation.
3029 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3031 * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
3033 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3035 * mini-ops.h: Remove dword packed add/sub with saturation ops.
3037 * cpu-x86.md: Remove dword packed add/sub with saturation ops.
3039 * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
3042 * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
3044 2008-10-24 Mark Probst <mark.probst@gmail.com>
3046 * method-to-ir.c, mini.c: Special casing for the synchronized
3047 wrapper for the ldtoken+GetTypeFromHandle case.
3049 2008-10-24 Zoltan Varga <vargaz@gmail.com>
3051 * mini.c (mono_replace_ins): Move this to branch-opts.c.
3053 * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
3054 created/split bblocks.
3056 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3058 * mini-ops.h: Add packed signed mul high.
3062 * mini-x86.c (mono_arch_output_basic_block): Same.
3064 * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
3066 * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
3068 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3070 * basic-simd.cs: Tests for Vector16sb.
3072 2008-10-24 Zoltan Varga <vargaz@gmail.com>
3074 * inssel.brg (stmt): Fix OP_HARD_NOP rule.
3076 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
3078 * mini-ops.h: Add packed signed min, max and compare greater.
3082 * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
3085 * simd-methods.h: Add CompareGreaterThan.
3087 * simd-methods.h: Remove CompareEquals.
3089 * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
3091 * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
3093 * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
3096 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
3098 * basic-simd.cs: Fix tests due to change in the API.
3100 2008-10-21 Zoltan Varga <vargaz@gmail.com>
3102 * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
3104 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3106 * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
3108 * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
3109 inst_offset as this has invalid values for LDADDR.
3111 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3113 * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3115 * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
3117 2008-10-21 Zoltan Varga <vargaz@gmail.com>
3119 * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
3120 for accessing field->data.
3122 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3124 * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3126 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3128 * simd-methods.h: Add SignedPackWithUnsignedSaturation.
3130 * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
3132 2008-10-21 Zoltan Varga <vargaz@gmail.com>
3134 * dominators.c (mono_compute_natural_loops): Allocate GList enties
3135 from the cfg mempool.
3137 2008-10-20 Rodrigo Kumpera <rkumpera@novell.com>
3139 * basic-simd.cs: Tests for new methods in Vector8us.
3141 2008-10-20 Rodrigo Kumpera <rkumpera@novell.com>
3143 * mini-ops.h: Add multiply and store high.
3147 * mini-x86.c (mono_arch_output_basic_block): Same.
3149 * simd-methods.h: Same.
3151 * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
3154 2008-10-19 Zoltan Varga <vargaz@gmail.com>
3156 * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
3157 mono_class_setup_vtable ().
3159 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
3160 mono_class_get_vtable_entry () for accessing klass->vtable.
3162 * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
3164 * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
3167 * method-to-ir.c (mono_save_token_info): Don't save references made from
3170 * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
3171 of generic instances.
3173 * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
3175 2008-10-19 Mark Probst <mark.probst@gmail.com>
3177 * cpu-ppc.md, mini-ppc.c: The length of the code generated for
3178 OP_JMP depends on the method signature. Calculate it properly.
3180 2008-10-19 Zoltan Varga <vargaz@gmail.com>
3182 * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
3185 * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
3187 (emit_extra_methods): Add another table mapping method indexes to
3188 offsets in the extra_method_info table.
3190 * mini.h: Bump AOT file format version.
3192 * aot-runtime.c: Merge most of the code from mono_aot_get_method
3193 and mono_aot_get_method_from_token () into one function.
3195 2008-10-19 Mark Probst <mark.probst@gmail.com>
3197 * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
3200 2008-10-18 Zoltan Varga <vargaz@gmail.com>
3202 * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
3205 * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
3208 * mini.c (mono_patch_info_equal): Compare the generic context as well.
3210 * mini.h: Bump aot file format version.
3212 * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
3213 AOT file can contain native code for methods which are not in the METHOD
3214 table. Generate code for non-sharable generic instances of generic methods
3215 found in the METHODSPEC table.
3217 * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
3218 encoding generic type handles.
3220 * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
3221 (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
3223 * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
3224 macros + MONO_ADD_INS.
3226 * mini.c (mono_jump_info_token_new2): New function which takes a generic
3229 * mini.h (MonoJumpInfoToken): Include fields for a generic context.
3231 * mini.h: Bump aot file format version.
3233 * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
3235 2008-10-17 Mark Probst <mark.probst@gmail.com>
3237 * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
3238 platforms, with definable stack alignment value. Set to 16 now
3241 * mini.c, mini.h, driver.c: Command line option for disabling
3244 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
3246 * basic-simd.cs: Tests for new methods in Vector4ui.
3248 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
3250 * mini-ops.h: Add packed int shuffle.
3254 * mini-x86.c (mono_arch_output_basic_block): Same.
3256 * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
3257 extract mask, max, min, shuffle.
3259 * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
3261 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
3263 * basic-simd.cs: Tests for new methods in Vector8us.
3265 2008-10-17 Mark Probst <mark.probst@gmail.com>
3267 * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
3268 RuntimeTypeHandle, not a TypedReference.
3270 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
3272 * simd-intrinsics.c: remove relocations.
3274 2008-10-17 Zoltan Varga <vargaz@gmail.com>
3276 * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM
3277 optimizations from the x86 backend.
3279 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
3281 * simd-methods.h, simd-intrinsics.c: debloat method names and
3282 prepare for no relocations.
3284 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3286 * mini-ops.h: Add packed min/equal and sum of absolute differences.
3290 * mini-x86.c (mono_arch_output_basic_block): Same.
3292 * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
3293 extract mask, max, min and sum of absolute differences.
3295 * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
3298 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3300 * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
3301 Renamed one test for consistency.
3303 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3305 * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
3306 fix to the code that deal with other blocks.
3308 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3310 * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
3312 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3314 * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
3315 that deals with vreg interference. Explicitly check for OP_LDADDR to be
3316 able to process the source reg.
3318 2008-10-16 Martin Baulig <martin@ximian.com>
3320 * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
3322 * inssel.brg: Add `OP_HARD_NOP'.
3324 * mini.h (MonoCompile): Added `keep_cil_nops' flag.
3326 * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
3327 `OP_HARD_NOP' instruction when running inside the debugger.
3329 * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
3330 `OP_HARD_NOP' instruction when running inside the debugger.
3332 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3334 * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
3335 now works. The issue with the regalloc tripping up no longer
3338 * simd-intrinsics.c (load_simd_vreg): Same.
3340 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3342 * basic-simd.cs: Tests for new Vector8ui methods.
3344 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3346 * simd-intrinsics.c (get_simd_vreg): Simplify code and test
3347 only for type. This fixes crashes where MonoInst::klass is checked
3348 for ops of type != VTYPE or OBJ.
3350 * simd-intrinsics.c (load_simd_vreg): Same.
3352 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3354 * mini-ops.h: Add ops for packed shuffle/max/avg and
3359 * mini-x86.c (mono_arch_output_basic_block): Same.
3361 * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
3364 * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
3365 to emit extract mask op.
3367 * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
3368 to emit word shuffles.
3370 2008-10-15 Mark Probst <mark.probst@gmail.com>
3372 * mini.c (mono_allocate_stack_slots_full): Align stack frame to
3373 the largest alignment needed by a variable, but at least
3376 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3378 * basic-simd.cs: Tests for the fixes in the last commit.
3380 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3382 * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
3383 no longer handles STACK_PTR input.
3385 * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
3387 * simd-intrinsics.c (load_simd_vreg): New function that works like
3388 get_simd_vreg but handles STACK_PTR input.
3390 * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
3391 as the input can be an arbitrary pointer.
3393 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
3394 LDADDR local optimization directly otherwise use a store op.
3396 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3398 * basic-simd.cs: Tests for dup low and dup high.
3400 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3402 * mini-ops.h: Add dup low and dup high ops.
3406 * mini-x86.c (mono_arch_output_basic_block): Same.
3408 * simd-intrinsics.c (vector4f_intrinsics): Same.
3410 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
3412 * basic-simd.cs: Tests for recently added functionality.
3414 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
3416 * mini-ops.h: Add remaining sse1 fp ops.
3418 * cpu-x86.md: Add remaining sse1 fp ops.
3420 * mini-x86.c (mono_arch_output_basic_block): Same.
3422 * mini.h: Add enum for simd FP compare conditions.
3424 * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
3426 * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
3427 so the backed can generate the appropriate op.
3429 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
3430 This patch squeese one more byte from the SimdIntrinsc struct.
3432 * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
3433 a a shift amount intead of simply or'ing it.
3435 * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
3437 * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
3438 byte so we can have an aditional flags field without increasing struct size.
3440 * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
3441 against the simd_supported_versions bitmask.
3443 * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
3445 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
3447 * mini.c: remove rawbuffer code (the only use here is unsafe because
3448 it takes locks during signal handling and the kernel now provides much
3449 better info in proc/pid/smaps these days).
3451 2008-10-13 Zoltan Varga <vargaz@gmail.com>
3453 * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
3454 OP_X86_PUSH_OBJ. Fixes #434620.
3456 * objects.cs: Add a test.
3458 2008-10-12 Rodrigo Kumpera <rkumpera@novell.com>
3460 * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
3461 that the packuswb/packusdw don't work with unsigned numbers for what
3462 would be negative numbers in signed format.
3464 * cpu-x86.md: Add doubleword forms of many ops and packing ones.
3465 Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
3467 * mini-ops.h: Add doubleword forms of many ops and packing ones.
3469 * mini-x86.c: Emit doubleword forms of many ops and packing ones.
3471 * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
3473 * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
3475 * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
3478 * simd-intrinsics.c (simd_version_name): New function, returns the name of the
3479 version as the enum in mini.h.
3481 * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
3482 for sse3 ops, check the simd_version field if present. This way the code
3483 works with all versions of sse.
3485 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3487 * simd-intrinsics.c: Fixed intrinsic name typo.
3489 * mini.h: Added missing simd exported function.
3491 * basic-simd.cs: Added tests for Vector4ui.
3492 Fixed broken test for Vector16b.
3494 2008-10-10 Zoltan Varga <vargaz@gmail.com>
3496 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
3497 the max length to 64.
3499 2008-10-10 Mark Probst <mark.probst@gmail.com>
3501 * method-to-ir.c: Only do the fast virtual generic method call for
3502 non-wrapper methods.
3504 * mini.h, mini-trampolines.c: The new generic virtual remoting
3505 trampoline handles virtual method calls via the vtable (as done by
3506 the fast virtual generic method calls) to remoting proxies.
3508 * mini.c (mono_jit_create_remoting_trampoline): For generic
3509 methods reate a generic virtual remoting trampoline.
3511 * mini-amd64.h: Enable fast virtual generic method calls again.
3513 2008-10-10 Mark Probst <mark.probst@gmail.com>
3515 * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
3516 restore registers when doing tail calls.
3518 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3520 * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
3523 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3525 * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
3527 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3529 * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
3531 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3533 * basic-simd.cs: Retrofit for API changes.
3535 2008-10-10 Mark Probst <mark.probst@gmail.com>
3537 * mini-ppc.c: Handle integer stack arguments for tail calls.
3539 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3541 * optflags-def.h: Removed sse3 optimization.
3545 * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
3548 * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
3550 * mini.h: Added enumeration with simd versions.
3552 * simd-intrinsics.c (emit_intrinsics): Use the new static var
3555 * simd-intrinsics.c: Added mono_simd_intrinsics_init.
3557 * mini.c (mini_init): Call mono_simd_intrinsics_init.
3559 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
3561 * basic-simd.cs: Added tests for Vector8u and Vector16u.
3563 * basic-simd.cs: Fixed test naming.
3565 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
3567 * mini-ops.h: Added ops for packed and saturated math, shifts
3568 and packing/unpacking.
3570 * cpu-x86.md: Added descriptors for the above ops.
3572 * mini-x86.c: Added code to emmit the above ops.
3574 * simd-intrinsics.c: Added support for Vector16u and Vector8u.
3576 2008-10-08 Zoltan Varga <vargaz@gmail.com>
3578 * aot-compiler.c (compile_method): Enable AOT for generic code.
3580 * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
3582 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
3584 * mini.c: add a workaround for a common screwup that ends up blamed
3585 to mono (other processes blocking signal delivery).
3587 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3589 * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
3590 in the LDFLD/STFLD opcodes. Fixes #432673.
3592 * iltests.il.in: Add a new test.
3594 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
3596 * mini-arm.c: attach the thread in unmanaged->managed transitions
3597 using delegates (bug #433148).
3599 2008-10-07 Rodrigo Kumpera <rkumpera@novell.com>
3601 * basic-simd.cs: Use new ShuffleSel constants.
3603 2008-10-07 Rodrigo Kumpera <rkumpera@novell.com>
3605 * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
3607 * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
3608 only disable simd intrinsics if no sse2 is detected.
3610 * optflags-def.h: Added sse3.
3612 * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
3615 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3617 * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
3618 when adding delegate-invoke wrappers.
3620 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3622 * Makefile.am: Reenable the simd tests.
3624 2008-10-07 Bill Holmes <billholmes54@gmail.com>
3626 * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
3627 add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
3628 other vreg is allocated to that hreg.
3630 Contributed under MIT/X11 license.
3632 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3634 * Makefile.am: Disable the simd tests for now as Mono.Simd is not
3637 2008-10-06 Rodrigo Kumpera <rkumpera@novell.com>
3639 * basic-simd.cs: New test suite for SIMD intrinsics.
3641 * Makefile.am: Added new tests.
3643 2008-10-06 Rodrigo Kumpera <rkumpera@novell.com>
3645 * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
3649 * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
3651 * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
3652 using SSE2 aware opcodes.
3654 * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
3655 is enabled, this code path is only reachable if conversion ops are emmited after
3658 * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
3660 This optimization saves 6 bytes per conversion against the old version.
3662 2008-10-06 Zoltan Varga <vargaz@gmail.com>
3664 * aot-compiler.c (compile_method): Don't skip methods referencing
3665 generic methods without a corresponding entry in token_info_hash, since
3666 encode_method_ref () can handle all generic methods now.
3668 * method-to-ir.c (mono_save_token_info): Don't save the token info if a
3669 generic context is set.
3671 * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
3672 generic sharing of LDTOKEN.
3674 2008-10-06 Mark Probst <mark.probst@gmail.com>
3676 * mini-amd64.h: Temporarily disabled fast virtual generic method
3677 calls because it breaks the System.Runtime.Remoting tests.
3679 2008-10-06 Zoltan Varga <vargaz@gmail.com>
3681 * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
3683 * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
3684 so inlining actually works.
3685 (check_inline_caller_method_name_limit): Ditto.
3687 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
3689 * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
3690 64 bit safety (from Olaf Hering and Andreas Färber).
3692 2008-10-06 Zoltan Varga <vargaz@gmail.com>
3694 * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
3695 mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
3696 unused virtual call support code.
3698 * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
3700 * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
3701 which can't use aot trampolines.
3702 (decode_patch): Don't create aot trampolines for methods which can't use
3705 * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
3706 use aot trampolines.
3708 * mini.h: Bump AOT image format version.
3710 2008-10-05 Zoltan Varga <vargaz@gmail.com>
3712 * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
3713 to save_token_info () since cmethod is inflated for constrained calls.
3715 * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
3717 2008-10-04 Andreas Färber <andreas.faerber@web.de>
3719 * Makefile.am: Add build rules for ppc64.
3720 This avoids the build failing at pedump with unresolved symbols
3721 due to lack of arch_sources. Instead it will now fail earlier
3722 due to lack of cpu-ppc64.md.
3724 Contributed under MIT/X11 license.
3726 2008-10-04 Mark Probst <mark.probst@gmail.com>
3728 * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
3731 * iltests.il.in: Add test case for tail call with many arguments.
3733 2008-10-03 Zoltan Varga <vargaz@gmail.com>
3735 * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
3736 to the fast virtual generic method code until the aot case is fixed.
3738 2008-10-03 Mark Probst <mark.probst@gmail.com>
3740 * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
3742 2008-10-03 Mark Probst <mark.probst@gmail.com>
3744 * mini-amd64.c, mini-amd64.h: Implement generic virtual method
3747 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
3749 * simd-intrinsics.c: Forgot to add this one.
3751 * mini-codegen.c: Fix macro in case SIMD is not supported.
3753 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
3755 This patch land initial JIT support for simd intrinsics.
3757 * mini-x86.h: Added new define to make --enable_minimal work on x86.
3759 * Makefile.am: Added simd-intrinsics.c
3761 * simd-intrinsics.c: New file with simd instrinsic related
3764 * cfold.c (mono_constant_fold_ins2): Fold XZERO.
3766 * cpu-x86.md: Add simd related instructions.
3768 * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
3770 * driver.c: Added two new --regression variants.
3772 * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
3774 * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
3776 * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
3777 extract some complicated logic to helper functions.
3779 * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
3781 * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
3783 * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
3784 the specialized simplification pass.
3786 * method-to-ir.c (mono_spill_global_vars): Use new macro.
3788 * mini-codegen.c: Added SIMD constants to all regbanks arrays.
3790 * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
3793 * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
3794 if MONO_ARCH_NEED_SIMD_BANK is defined.
3796 * mini-ops.h: Added the new simd ops.
3798 * mini-x86.c: Added mono_arch_xregname.
3800 * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
3802 * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
3804 * mini-x86.h: Define simd related MONO_ARCH macros.
3806 * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
3808 * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
3810 * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
3811 MONO_CLASS_IS_SIMD to deal with simd related IR.
3813 * mini.h (MonoInst): Added spill_var to the backend union.
3815 * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
3817 * mini.h: Added forward declarations of the new simd fuctions.
3819 * optflags-def.h: Added new optimization names SIMD.
3821 * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
3823 * regalloc.h: Added support for working with 3 register banks.
3825 * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
3827 * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
3829 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
3831 * mini-exceptions.c: remove 64 bit related ifdef clutter.
3833 2008-10-03 Zoltan Varga <vargaz@gmail.com>
3835 * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
3836 instead of one on 64 bit systems.
3838 * method-to-ir.c: Remove unused includes.
3840 2008-10-02 Zoltan Varga <vargaz@gmail.com>
3842 * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
3843 cfg->used_int_regs, since the two are different on arm.
3845 2008-10-02 Mark Probst <mark.probst@gmail.com>
3847 * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
3848 mono_method_get_vtable_index() to get the vtable index.
3850 2008-10-02 Mark Probst <mark.probst@gmail.com>
3852 * method-to-ir.c (mono_method_to_ir2): Don't create native
3853 wrappers for array methods, because they're never called (and if
3854 they were called they wouldn't work).
3856 2008-10-02 Mark Probst <mark.probst@gmail.com>
3858 * method-to-ir.c (mono_method_to_ir2): Array methods are
3859 special-cased and must not be invoked indirectly via the (M)RGCTX
3860 when generic sharing is turned on. Fixes #431413.
3862 2008-10-01 Mark Probst <mark.probst@gmail.com>
3864 * method-to-ir.c: When generic sharing is active, call
3865 non-interface virtual generic methods via the standard trampoline.
3867 * mini-trampolines.c: Handle virtual generic shared methods.
3869 * mini.h, mini-x86.c, mini-x86.h: New argument for
3870 mono_arch_build_imt_thunk() which is non-NULL for virtual generic
3871 method thunks and which is the trampoline to call if the lookup
3872 fails. Enable the virtual generic method thunk for x86.
3874 * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
3875 mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
3876 argument but assert that it's NULL, because these archs don't yet
3877 implement the virtual generic method thunk. Changes in the IMT
3878 thunk data structures.
3880 2008-10-01 Zoltan Varga <vargaz@gmail.com>
3882 * aot-compiler.c (emit_globals): Avoid invalid characters in
3883 the static linking symbol.
3885 * objects.cs: Add a test for the range check optimization. Fix warnings.
3887 * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
3888 optimization from the current JIT.
3890 * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
3891 later in decompose_array_access_opts () to allow more optimizations.
3893 * method-to-ir.c (mono_handle_soft_float): Rename this to
3894 mono_decompose_soft_float () for consistency.
3896 * mini-ops.h: Fix arguments of OP_STRLEN.
3898 * method-to-ir.c (save_cast_details): Extract the cast details saving code
3899 into a separate function.
3900 (reset_cast_details): Ditto.
3901 (handle_unbox): Save cast details. Fixes #431254.
3903 * method-to-ir.c: Remove some obsolete FIXMEs.
3905 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3907 * ir-emit.h (alloc_dreg): Write a warning before crashing.
3909 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3911 * mini-codegen.c: More work on macros to make them
3912 ready for multiple regbanks.
3914 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3916 * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
3918 * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
3920 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3922 * mini-codegen.c (mono_spillvar_offset): Proper support for
3925 2008-09-30 Zoltan Varga <vargaz@gmail.com>
3927 * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
3928 the stack overflow changes.
3930 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3932 * mini-codegen.c: Make all bank macros depend on reg_bank.
3934 * mini-codegen.c (mono_local_regalloc): Make free mask
3935 initialization regbank aware.
3937 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3939 * mini-codegen.c (mono_local_regalloc): Extract callee
3940 mask selection to a function and make it regbank aware.
3942 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3944 * mini-codegen.c (mono_local_regalloc): Changed the cloberring
3945 code to deal with many regbanks.
3947 2008-09-30 Zoltan Varga <vargaz@gmail.com>
3949 * mini-codegen.c: More fp->regbank changes.
3951 2008-09-29 Rodrigo Kumpera <rkumpera@novell.com>
3953 * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
3954 of a hardcoded constant.
3956 2008-09-29 Rodrigo Kumpera <rkumpera@novell.com>
3958 * method-to-ir.c (type_from_stack_type): Fix typo.
3960 2008-09-29 Zoltan Varga <vargaz@gmail.com>
3962 * mini-ia64.c (emit_move_return_value): Convert float return values to
3965 * objects.cs: Add a new test.
3967 * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
3968 VARARG methods to fix an assert later.
3970 * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
3971 end so it at least compiles.
3973 2008-09-28 Zoltan Varga <vargaz@gmail.com>
3975 * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
3977 2008-09-28 Rodrigo Kumpera <rkumpera@novell.com>
3979 * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
3980 optimization to a new function (emit_optimized_ldloca_ir) and enable
3981 it for both ldloca and ldloca_s.
3983 2008-09-28 Zoltan Varga <vargaz@gmail.com>
3985 * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
3986 gshared CASTCLASS code.
3988 * driver.c (mono_main): Add a workaround for shutdown crashes seen on
3989 amd64, where the libc stack unwinder encounters stack frames referring to
3990 native code in unmapped memory.
3992 * method-to-ir.c (mini_emit_check_array_type): Add support for generic
3995 * generics.cs: Add new test.
3997 2008-09-27 Zoltan Varga <vargaz@gmail.com>
3999 * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
4000 add a check that one of the ARM_FPU_ constants is defined.
4002 * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
4004 * mini-exceptions.c: Fix build on non-altstack platforms.
4006 * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
4009 * ir-emit.h: Add a comment to NEW_PCONST.
4011 * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
4013 * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
4015 * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
4016 after the changes to MonoJitDomainInfo.
4018 2008-09-27 Mark Probst <mark.probst@gmail.com>
4020 * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
4022 2008-09-27 Mark Probst <mark.probst@gmail.com>
4024 * mini-ppc.c: Compiler warning fixes.
4026 2008-09-27 Mark Probst <mark.probst@gmail.com>
4028 * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
4031 2008-09-27 Mark Probst <mark.probst@gmail.com>
4033 * exceptions-ppc.c, mini-ppc.h: Compile
4034 mono_arch_handle_altstack_exception() on Darwin, too.
4036 2008-09-27 Mark Probst <mark.probst@gmail.com>
4038 * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
4039 work on archs which don't have generic sharing implemented, only
4040 without the vtable_arg.
4042 2008-09-26 Mark Probst <mark.probst@gmail.com>
4044 * mini.c: Added comment explaining why delegate ctor icall
4045 wrappers are compiled.
4047 2008-09-26 Mark Probst <mark.probst@gmail.com>
4049 * mini.c: Don't produce trampolines to delegate ctor icall
4050 wrappers but compile them upfront.
4052 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
4054 * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
4055 runtime-set function when going back to managed code. Currently this
4056 is used to set back the protection on the soft ovf pages and/or to
4057 throw the stack overflow exception that happened in unmanaged code.
4059 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
4061 * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
4062 runtime-set function when going back to managed code. Currently this
4063 is used to set back the protection on the soft ovf pages and/or to
4064 throw the stack overflow exception that happened in unmanaged code.
4066 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
4068 * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
4069 the support code for restoring stack protection after stack overflows
4070 that happen in unmanaged code. Don't set the exec permission on the
4073 2008-09-26 Zoltan Varga <vargaz@gmail.com>
4075 * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
4076 delegate->method_ptr is set. Fixes #428054.
4078 2008-09-25 Zoltan Varga <vargaz@gmail.com>
4080 * tests.cs: Rename to ratests.cs.
4082 * method-to-ir.c: Merge the emit_get_rgctx () calls into the
4083 emit_get_rgctx_... functions.
4085 2008-09-25 Mark Probst <mark.probst@gmail.com>
4087 * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
4089 2008-09-25 Mark Probst <mark.probst@gmail.com>
4091 * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
4092 before asserting that method is sharable.
4094 2008-09-25 Mark Probst <mark.probst@gmail.com>
4096 * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
4097 whether method needs a static RGCTX wrapper used instead of
4100 * generic-sharing.c, mini.h: A few functions moved to
4101 metadata/generic-sharing.c.
4103 2008-09-25 Mark Probst <mark.probst@gmail.com>
4105 * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
4106 Generic code sharing for value types, which essentially means
4107 treating value type methods like static methods. The RGCTX is
4108 passed in the same way.
4110 2008-09-25 Zoltan Varga <vargaz@gmail.com>
4112 * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
4113 opcode when creating multi-dimensional arrays of open types.
4115 * generic-sharing.c (mono_method_check_context_used): Handle arrays of
4118 * generics.cs: Add a test.
4120 * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
4122 2008-09-24 Zoltan Varga <vargaz@gmail.com>
4124 * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
4126 * mini.c (mini_method_compile): Set it when running under the debugger.
4128 * method-to-ir.c (mono_handle_global_vregs): Disable global->local
4129 vreg optimization if the flag is set.
4131 * driver.c (mono_main): Add --attach= option to pass options to
4134 * mini.c (sigquit_signal_handler): Start the attach agent.
4136 * ssapre.c: Disable this to save space since it is not yet ported to
4139 * regalloc2.c: Disable this to save space.
4141 * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
4143 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
4145 * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
4146 the -v option useful again.
4148 2008-09-24 Zoltan Varga <vargaz@gmail.com>
4150 * mini-amd64.c (mono_arch_output_basic_block): Add support for
4153 * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
4154 arrays of arrays. Fixes #428406.
4156 * method-to-ir.c (mini_emit_castclass): Ditto.
4158 * objects.cs: Add new test.
4160 2008-09-23 Rodrigo Kumpera <rkumpera@novell.com>
4162 * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
4163 was wrong at it choked against target_type_is_incompatible for byref types.
4165 2008-09-23 Zoltan Varga <vargaz@gmail.com>
4167 * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most
4170 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
4172 * mini-exceptions.c: update a few more exceptions-related counters.
4174 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
4176 * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
4177 new functions to allocate from persistent mempools.
4179 2008-09-23 Zoltan Varga <vargaz@gmail.com>
4181 * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow
4182 multiple register banks in the future.
4184 * mini-codegen.c (mono_local_regalloc): Fix a warning.
4186 2008-09-22 Rodrigo Kumpera <rkumpera@novell.com>
4188 * mini.c (type_to_eval_stack_type): Remove duplicated function.
4190 * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
4192 * mini.h: Export type_to_eval_stack_type.
4194 This function was nearly duplicated in method-to-ir.c and mini.c. The difference
4195 is only ins->klass of byref types.
4197 2008-09-22 Zoltan Varga <vargaz@gmail.com>
4199 * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
4200 (mini_emit_memcpy2): Ditto.
4202 * mini-amd64.c: Fix a warning.
4204 2008-09-21 Mark Probst <mark.probst@gmail.com>
4206 * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
4209 2008-09-19 Rodrigo Kumpera <rkumpera@novell.com>
4211 * method-to-ir.c: Extract stloc micro-optimization to a
4212 function and apply it to all cases.
4214 2008-09-19 Mark Probst <mark.probst@gmail.com>
4216 * method-to-ir.c: Don't fail generic code sharing in cases we
4219 2008-09-18 Mark Probst <mark.probst@gmail.com>
4221 * mini-ppc.c: Handle structs in tailcalls on Darwin.
4223 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
4225 * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
4228 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
4230 * trace.c: make tracing more useful and correct, with per-thread
4233 2008-09-15 Mark Probst <mark.probst@gmail.com>
4235 * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
4236 doing a method call and the argument is an R4.
4238 2008-09-14 Zoltan Varga <vargaz@gmail.com>
4240 * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
4243 2008-09-13 Mark Probst <mark.probst@gmail.com>
4245 * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
4247 2008-09-12 Zoltan Varga <vargaz@gmail.com>
4249 * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
4250 (MONO_JUMP_TABLE_FROM_INS): Ditto.
4252 2008-09-11 Zoltan Varga <vargaz@gmail.com>
4254 * driver.c: Add a --agent argument (not supported yet) to load managed
4255 agent assemblies before loading the main assembly, similarly to how the
4256 Java VM handles agents.
4258 2008-09-11 Mark Probst <mark.probst@gmail.com>
4260 * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
4261 function to do stack layout of local variables.
4263 2008-09-11 Mark Probst <mark.probst@gmail.com>
4265 * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
4268 2008-09-11 Zoltan Varga <vargaz@gmail.com>
4270 * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
4271 abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
4272 JIT if DISABLE_JIT is defined.
4274 * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
4277 2008-09-10 Mark Probst <mark.probst@gmail.com>
4279 * iltests.il.in: Disable the fconv test on PPC (the result is
4280 undefined according to ECMA).
4282 2008-09-10 Mark Probst <mark.probst@gmail.com>
4284 * iltests.il.in: Enable tail call tests for PPC.
4286 * mini.h: Add variable for storing incoming valuetype argument
4287 addresses for tail calls.
4289 * mini-ppc.c: Implement valuetype arguments and return values for
4292 2008-09-09 Mark Probst <mark.probst@gmail.com>
4294 * mini-ppc.c: Partially implement tail calls (struct arguments and
4295 return values not supported).
4297 * method-to-ir.c: Enable tail calls on PPC.
4299 2008-09-08 Zoltan Varga <vargaz@gmail.com>
4301 * aot-compiler.c (emit_wrapper_info): Omit the klass name from
4302 runtime-invoke wrappers to work around the problem of them getting
4303 assigned to a random class.
4305 * aot-runtime.c (mono_aot_get_method): Ditto.
4307 2008-09-07 Zoltan Varga <vargaz@gmail.com>
4309 * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
4310 the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
4312 2008-09-07 Mark Probst <mark.probst@gmail.com>
4314 * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
4315 until they're implemented properly.
4317 * exceptions-ppc.c: Use arch-independent exception-handling code
4318 instead of custom one.
4320 * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
4323 * tramp-ppc.c, mini-ppc.c: Fixed warnings.
4325 * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
4326 applies when __powerpc__ is defined.
4328 2008-09-06 Zoltan Varga <vargaz@gmail.com>
4330 * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
4331 methods to their code to avoid computing the full name of wrappers and
4332 doing a lookup in a string hash table.
4334 2008-09-05 Zoltan Varga <vargaz@gmail.com>
4336 * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
4337 we identify bblocks before method_to_ir () is ran.
4339 * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
4340 Also avoid optimizing branches pointing to themselves.
4342 * mini.c (mini_method_compile): Ditto. Fixes #422947.
4344 2008-09-05 Rodrigo Kumpera <rkumpera@novell.com>
4346 * driver.c (mono_main): Enable the new verifier under core-clr and cas.
4348 2008-09-05 Zoltan Varga <vargaz@gmail.com>
4350 * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
4351 (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
4352 (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
4355 * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all
4356 jumped to the same entry in plt_jump_table.
4358 2008-09-02 Rodrigo Kumpera <rkumpera@novell.com>
4360 * method-to-ir.c (initialize_array_data): Handle field with RVA from
4363 2008-08-31 Zoltan Varga <vargaz@gmail.com>
4365 * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
4366 other assignment can be if converted. Saves 1.5% on corlib size and fixes
4369 2008-08-29 Geoff Norton <gnorton@novell.com>
4371 * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
4372 segment, and doesn't properly handle .space as .text. Fixes
4375 2008-08-29 Geoff Norton <gnorton@novell.com>
4377 * mini.c: Disable the mach exception handler when running on
4380 2008-08-29 Geoff Norton <gnorton@novell.com>
4382 * aot-compiler.c: Patch from Renaldas Zioma to properly register
4383 globals on Darwin/ARM
4385 2008-08-28 Zoltan Varga <vargaz@gmail.com>
4387 * mini.c: Avoid not initializing the runtime when doing AOT compilation,
4388 since too many things depend on it. Instead, call
4389 mono_runtime_set_no_exec ().
4391 * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
4394 * aot-compiler.c: Add an 'asm-only' AOT option.
4396 * mini.c: Avoid initializing the runtime when doing AOT compilation.
4398 * aot-compiler.c (compile_method): Disable gshared support for now as it
4401 2008-08-27 Bill Holmes <billholmes54@gmail.com>
4403 * mini-amd64.h : Fix a compiler warning.
4405 * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
4406 Changed to use a callback function to retrieve the unwind info.
4407 This avoids problems observed when code blocks were removed by
4408 unloading an app domain.
4410 * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole
4411 and branch excludes for Winx64. The fix in exceptions-amd64.c allows them
4414 Contributed under MIT/X11 license.
4416 2008-08-27 Bill Holmes <billholmes54@gmail.com>
4418 * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
4419 case to keep the stack aligned to 8.
4421 Contributed under MIT/X11 license.
4423 2008-08-26 Zoltan Varga <vargaz@gmail.com>
4425 * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
4426 avoid repeated linear searches.
4428 2008-08-25 Zoltan Varga <vargaz@gmail.com>
4430 * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
4431 methods it can't handle.
4433 * aot-compiler.c (add_method): Avoid adding a method twice.
4434 (add_wrappers): Add runtime invoke wrappers for all methods.
4436 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
4437 function to create an aot-compatible version of this trampoline.
4439 * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
4441 2008-08-24 Zoltan Varga <vargaz@gmail.com>
4443 * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
4445 * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
4446 with a generic sharing failure.
4448 * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
4450 * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
4451 CEE_RETHROW. Fixes #419634.
4453 * mini.c (mono_method_to_ir): Ditto.
4455 * exceptions.cs: Add a new test.
4457 * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
4458 to mono_type_stack_size_internal () since some callers might not pass in
4461 * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
4462 instrument_prolog. Fixes #419878.
4464 * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
4465 doubles in soft float mode volatile.
4467 2008-08-23 Zoltan Varga <vargaz@gmail.com>
4469 * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
4471 * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
4472 to handle soft float correctly.
4474 * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
4477 * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
4479 * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
4480 to sp, since the generics catch code requires it.
4482 * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
4485 * method-to-ir.c (emit_imt_argument): Pass imt_arg to
4486 mono_arch_emit_imt_argument ().
4488 * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
4490 * mini-arm.c tramp-arm.c: Generic sharing updates.
4492 2008-08-22 Zoltan Varga <vargaz@gmail.com>
4494 * mini-arm.c: Fix the arm build.
4496 * generic-sharing.c (mini_type_get_underlying_type): New helper function
4497 handling enums, generic instances and generic sharing.
4498 (mini_type_stack_size_full): Ditto.
4500 * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
4502 * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
4504 * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
4506 * tramp-arm.c: Implement the rgctx fetch and the generic class init
4509 * mini-arm.c: Various small generic sharing changes.
4511 * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
4513 (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
4516 * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
4517 helper function to return a generic class init trampoline.
4519 * method-to-ir.c mini.c: Use it.
4521 * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
4522 arch-specfic function to return a generic class init trampoline.
4524 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
4525 the GENERIC_CLASS_INIT custom code.
4527 * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
4528 a fatal error, not a sharing failure.
4530 * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
4533 * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
4534 trampoline argument from MONO_ARCH_VTABLE_REG.
4536 * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4537 order of the arguments to the C trampoline: pass 'slot' as the trampoline
4538 argument, and pass the vtable in VTABLE_REG.
4540 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4541 order of the arguments to the C trampoline: pass 'slot' as the trampoline
4542 argument, and pass the vtable in VTABLE_REG.
4543 (mono_arch_create_trampoline_code_full): Remove some special casing for
4544 the rgctx fetch trampoline.
4546 * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
4549 * iltests.il: Add a test for it.
4551 2008-08-21 Zoltan Varga <vargaz@gmail.com>
4553 * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
4555 * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
4558 * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
4559 use mono_jit_info_table_find () to avoid recursion.
4560 (mono_delegate_trampoline): Add a sync wrapper here.
4562 * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
4565 * mini.c (mono_method_to_ir): Ditto.
4567 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
4568 add_sync_wrapper argument. Don't add a sync wrapper here.
4569 (mono_create_jump_trampoline): Don't add a sync wrapper here.
4571 * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
4573 2008-08-20 Bill Holmes <billholmes54@gmail.com>
4575 * exceptions-amd64.c (seh_handler): For Winx64 adding missing copy
4576 of nonvolatile registers back from MonoContext to CONTEXT.
4578 Contributed under MIT/X11 license.
4580 2008-08-20 Bill Holmes <billholmes54@gmail.com>
4582 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): When shifting the
4583 arguments on Winx64 there are only 4 argument registers. For this
4584 logic to work the last argument must be pulled from the stack.
4586 Contributed under MIT/X11 license.
4588 2008-08-20 Zoltan Varga <vargaz@gmail.com>
4590 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4592 * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
4593 MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
4594 encode/decode_method_ref ().
4596 * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
4598 * aot-runtime.c (decode_patch): Ditto.
4600 * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
4601 MONO_PATCH_INFO_METHOD.
4603 * aot-runtime.c (decode_exception_debug_info): Decode the contents of
4606 * aot-compiler.c (emit_exception_debug_info): Emit the contents of
4609 * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
4611 * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
4612 one from the caller.
4614 * aot-runtime.c (decode_generic_inst): New function to decode and
4615 return a interned generic inst.
4616 (decode_klass_ref): Use it.
4617 (decode_method_ref): Ditto.
4619 * aot-compiler.c (emit_exception_debug_info): Save
4620 jinfo->has_generic_jit_info too.
4622 2008-08-19 Zoltan Varga <vargaz@gmail.com>
4624 * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
4626 * iltests.il.in: Add a test for fconv_to_i.
4628 * liveness.c: Disable the liveness2 pass for now to save space.
4630 * regalloc2.c: Include mempool-internals.h to fix warnings.
4632 * aot-compiler.c (encode_method_ref): Encode the context of generic
4635 * aot-runtime.c (decode_method_ref): Inflate generic methods using
4636 the context saved in the aot file.
4638 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4640 * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4642 * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
4643 volatile so they won't be optimized away.
4645 2008-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4651 * dominators.c: Remove duplicated functions that now are in
4652 mempool-internals.h.
4654 2008-08-19 Zoltan Varga <vargaz@gmail.com>
4656 * aot-compiler.c: Fix warnings.
4658 * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
4660 * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
4662 * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
4665 * mini.c (mono_resolve_patch_target): Ditto.
4667 * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
4668 (encode_klass_ref): Add support for encoding VARs/MVARs.
4670 * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
4672 * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
4673 the handling of the got entries into a separate 'decode_got_entry' function.
4674 Add support for RGCTX_FETCH.
4676 * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
4677 clobbered by the trampoline code.
4679 * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
4680 not clobbered by the indirect calling code.
4682 2008-08-18 Zoltan Varga <vargaz@gmail.com>
4684 * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
4687 2008-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4689 * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
4690 signature using the compilation mempool otherwise we would leak it.
4692 2008-08-18 Zoltan Varga <vargaz@gmail.com>
4694 * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
4695 mono_emit_abs_call ().
4697 * patch-info.h: Add GENERIC_CLASS_INIT.
4699 * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
4701 * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
4702 as their target as a near call.
4704 * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
4706 (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
4708 * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
4709 call to a runtime function described by a patch.
4711 * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
4712 mono_emit_abs_call, this has the advantage that the ABS handling code in
4713 mono_codegen () can handle them both, and can handle other stuff in the
4714 future without additional code.
4716 * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
4718 (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
4721 * mini.h: Add missing bblock related prototypes.
4723 * mini.h (MonoCompile): Remove unused reverse_inst_list and
4724 reverse_inst_list_len fields.
4726 * mini.c: Refactor this file a bit by moving branch optimizations to
4729 * method-to-ir.c: Merge generic sharing changes missed earlier.
4731 * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
4733 * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
4734 shared patches. Process METHODCONST as a shared patch.
4736 * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
4737 as it crashes on the 2.0 mscorlib.
4739 * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
4742 * aot-compiler.c: Use is_plt_patch () in a few additional places.
4743 (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
4746 * aot-compiler.c: Reorganize the got handling code to be a bit more
4749 2008-08-17 Zoltan Varga <vargaz@gmail.com>
4751 * aot-compiler.c: Make the patch_to_plt_offset hash table use
4752 mono_patch_info_equals/hash, and use it to massively simplify
4755 * mini.c (mono_patch_info_hash): Simplify this and add support for
4758 * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
4760 * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
4761 handling code, since an offset is not enough to identify a trampoline.
4763 * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
4765 2008-08-17 Mark Probst <mark.probst@gmail.com>
4767 * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
4769 * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
4771 * mini-ops.h: Argument and result types for OVF_CARRY ops.
4773 * decompose.c: PPC decompositions for various ops.
4775 * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
4777 2008-08-17 Zoltan Varga <vargaz@gmail.com>
4779 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
4780 call the generic trampoline code using a call, instead of a jump, to
4781 remove some special casing from the generic trampoline code.
4783 * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
4784 (mono_codegen): Ditto.
4786 * aot-compiler.c aot-runtime.c: Ditto.
4788 * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
4790 * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
4791 helper function to find the offset corresponding to a lazy fetch trampoline.
4793 * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
4794 when doing generic sharing.
4796 * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
4799 * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
4800 mini-trampolines.c to be with the other trampoline creation functions.
4802 * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
4803 as it is equal to method->signature in most cases, add a
4804 mono_emit_method_call_full variant which takes a signature and an imt
4807 2008-08-16 Zoltan Varga <vargaz@gmail.com>
4809 * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
4810 to this function, since it could be computed easily from the method
4812 (mono_helper_compile_generic_method_wo_context): Removed, not needed any
4815 * method-to-ir.c mini.c: Remove references to
4816 compile_generic_method_wo_context.
4818 * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
4819 generic method calls.
4821 * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
4822 dimensional non-szarrays.
4824 * mini.c (mini_init): Register mono_array_new_1.
4826 * jit-icalls.c (mono_array_new_1): New jit icall.
4828 * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
4829 pointing to the method.
4831 * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
4832 method addresses belonging to METHOD_JUMP patches in the
4833 jump_target_got_slot_hash.
4834 (mono_aot_load_method): Ditto.
4836 * aot-compiler.c (compile_method): Allow AOT compilation of methods with
4837 METHOD_JUMP patches.
4839 * mini.c (mini_create_jit_domain_info): New helper function which
4840 initializes/frees domain->runtime_info.
4841 (mini_free_jit_domain_info): Ditto.
4842 (mini_init): Install the domain hook functions with the runtime.
4844 * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
4845 information maintained by the JIT.
4847 * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
4848 insertion into jump_table_hash into mono_codegen (), also implement proper
4851 * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
4852 tail calls, it is already done by the aot code.
4854 * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
4857 * iltests.il.in: Make the jmp test a bit more complex.
4859 * aot-compiler.c (encode_method_ref): Handle references to normal methods of
4860 generic instances which doesn't have a token.
4862 * aot-runtime.c (decode_method_ref): Ditto.
4864 * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
4865 can handle this case now.
4866 (handle_box): Ditto.
4868 2008-08-15 Geoff Norton <gnorton@novell.com>
4870 * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
4873 2008-08-15 Zoltan Varga <vargaz@gmail.com>
4875 * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
4876 calling generic methods.
4878 * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
4880 * aot-runtime.c (decode_patch_info): Ditto.
4882 * mini.c (mono_resolve_patch_target): Ditto.
4884 * patch-info.h: Add METHOD_RGCTX.
4886 * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
4888 2008-08-14 Zoltan Varga <vargaz@gmail.com>
4890 * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
4891 arguments in registers.
4893 * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
4894 OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
4896 * mini.c (mini_method_compile): Abort aot compilation for generic
4897 methods if generic sharing is disabled.
4899 * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
4902 * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls
4903 requiring an mrgctx.
4905 * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
4906 store instructions when converting a vcall to a normal call.
4908 * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
4909 mono_arch_find_jit_info.
4911 2008-08-13 Zoltan Varga <vargaz@gmail.com>
4913 * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
4914 avoid calling mono_method_full_name () for every method even if the
4916 (check_inline_caller_method_name_limit): Ditto.
4918 2008-08-12 Zoltan Varga <vargaz@gmail.com>
4920 * driver.c (main_thread_handler): Allow AOT compilation of multiple
4921 assemblies in one run.
4923 * aot-compiler.c (mono_compile_assembly): Only print out a count of
4924 skipped methods if it is not 0.
4926 * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
4928 2008-08-12 Bill Holmes <billholmes54@gmail.com>
4930 * mini.c (mono_codegen): Changing a preprocessor check from WIN64 to
4931 MONO_ARCH_HAVE_UNWIND_TABLE.
4933 Contributed under MIT/X11 license.
4935 2008-08-12 Bill Holmes <billholmes54@gmail.com>
4937 * mini-amd64.c (mono_arch_cpu_optimizazions): Remove peephole and branch
4938 from default optimizaton list on Winx64.
4940 * mini-amd64.c (emit_tls_get): Added Winx64 specific implementation for GetTLS.
4942 * mini-amd64.c (mono_arch_emit_prolog): Adding an offset on Winx64 to get
4943 the LMF from the MonoJitTlsData structure.
4945 * mini-amd64.c (mono_arch_setup_jit_tls_data): Added Winx64 implementation.
4947 Contributed under MIT/X11 license.
4949 2008-08-12 Zoltan Varga <vargaz@gmail.com>
4951 * mini.c (sigsegv_signal_handler): Fix the build.
4953 * mini-amd64.c (emit_call_body): Use image->aot_module instead of
4954 assembly->aot_module.
4956 * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
4957 hash table. This simplifies and speeds up a lot of code, and fixes support
4960 * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
4963 * mini-exceptions.c: Ditto.
4965 * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
4966 'native_offset' argument, since these are computed in the
4967 mono_find_jit_info () function.
4969 * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
4970 is used by exceptions-ppc.c.
4972 * exceptions-ppc.c: Call mono_find_jit_info () instead of
4973 mono_arch_find_jit_info ().
4975 * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
4976 mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
4977 generic code in mini-exceptions.c.
4979 2008-08-11 Zoltan Varga <vargaz@gmail.com>
4981 * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
4983 * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
4985 * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
4986 the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
4987 called while holding the loader lock. Fixes #415608.
4988 (mono_aot_get_method_from_token_inner): Ditto.
4990 2008-08-09 Zoltan Varga <vargaz@gmail.com>
4992 * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
4993 to reduce differences between this and the generic implementation in
4995 (ves_icall_get_frame_info): Ditto.
4997 * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
4999 * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
5002 * exceptions-ppc.c (arch_get_call_filter): Rename this to
5003 mono_arch_get_call_filter () and make it non-static, for consistency with the
5004 other architectures.
5006 2008-08-09 Rodrigo Kumpera <rkumpera@novell.com>
5009 * local-propagation.c:
5010 * mini-x86.c: Correct the name of arch defines.
5012 2008-08-09 Zoltan Varga <vargaz@gmail.com>
5014 * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
5015 NO_EMULATE_LONG_SHIFT_OPS define.
5017 2008-08-08 Zoltan Varga <vargaz@gmail.com>
5019 * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
5020 now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
5022 * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
5023 MACH fixes. Merged from the 2.0 branch.
5025 * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
5027 * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
5028 (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
5030 * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
5032 * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
5033 mono_marshal_get_native_wrapper () signature changes.
5035 2008-08-07 Rodrigo Kumpera <rkumpera@novell.com>
5037 * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
5038 conversion bug under arm.
5040 2008-08-06 Rodrigo Kumpera <rkumpera@novell.com>
5042 * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
5044 * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
5045 with overflow checking.
5047 2008-08-05 Marek Habersack <mhabersack@novell.com>
5049 * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
5050 to the genmdesc.pl file
5052 2008-08-05 Zoltan Varga <vargaz@gmail.com>
5054 * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
5055 arg_array in the soft-float versions of the LOAD/STORE macros.
5057 * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
5060 * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
5062 2008-08-02 Zoltan Varga <vargaz@gmail.com>
5064 * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
5065 a float HFA. Fixes #413621.
5067 2008-08-02 Gert Driesen <drieseng@users.sourceforge.net>
5069 * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
5070 frame_size to args_size. Fixes build.
5072 2008-08-02 Zoltan Varga <vargaz@gmail.com>
5074 * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
5075 and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
5077 * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
5078 the stack are not unaligned. Fixes #413247.
5080 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
5082 * mini.c: update jitted methods performance counters.
5084 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
5086 * mini-exceptions.c: increase the exceptions thrown performance
5087 counter in mono_handle_exception ().
5089 2008-07-29 Zoltan Varga <vargaz@gmail.com>
5091 * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
5092 can work with netmodules.
5094 2008-07-28 Geoff Norton <gnorton@novell.com>
5096 * mini-x86.h: Correct the frame alignment on OSX. Fixes the jit
5099 2008-07-28 Zoltan Varga <vargaz@gmail.com>
5101 * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
5104 2008-07-28 Bill Holmes <billholmes54@gmail.com>
5106 * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5107 The float param registers and other param registers must be the
5108 same index on Windows x64.
5110 * mini-amd64.c (mono_arch_allocate_vars) : Implementing the
5111 ArgValuetypeAddrInIReg argument case. Setting the argument
5112 op to OP_VTARG_ADDR (OP_REGOFFSET)).
5114 * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix. Use the size
5115 variable computed above as the copy length for arguments of storage
5116 type ArgValuetypeAddrInIReg.
5118 * mini-amd64.c (mono_arch_emit_call) : Implementing the
5119 ArgValuetypeAddrInIReg argument case. This case will rely on
5120 mono_arch_emit_outarg_vt to emit the correct code later in the process.
5122 * mini-amd64.c (mono_arch_emit_call) : On Winx64 there always needs to be
5123 a 32 byte stack allocation for all calls. We will omit the adjustment for
5124 jump and tail call instructoins as they do not follow the typical call behavior.
5126 * mini-amd64.c (mono_arch_emit_outarg_vt) : Implementing the case for
5127 ArgValuetypeAddrInIReg. The code emitted will copy the argument to a
5128 local variable and pass the local variable by reference to the called method.
5130 * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
5131 Implementing the ArgValuetypeAddrInIReg argument case. When the address
5132 of a struct is passed in a register it must be saved with the other
5133 volatile argument on the stack.
5135 * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix. When omitting the
5136 frame pointer the stack adjustment value must be saved to the unwind
5139 Contributed under MIT/X11 license.
5141 2008-07-28 Zoltan Varga <vargaz@gmail.com>
5143 * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
5144 which got lost in the merge.
5146 2008-07-27 Zoltan Varga <vargaz@gmail.com>
5148 * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
5151 * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
5153 * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
5154 icalls, since they won't be patched.
5156 * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
5157 different code sequence when running under valgrind to prevent some valgrind
5160 * iltests.il.in: Add new regression test.
5162 * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
5165 * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
5166 accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
5168 * iltests.il.in: Add new test.
5170 * aot-compiler.c: Fix some warnings.
5172 * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
5175 2008-07-27 Zoltan Varga <vargaz@gmail.com>
5177 * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
5178 (mini_usage_jitdeveloper): Add a missing --wapi option.
5180 2008-07-25 Zoltan Varga <vargaz@gmail.com>
5182 * mini-codegen.c: Simplify the is_fp macros.
5183 (free_up_ireg): Remove, use free_up_reg instead.
5184 (free_up_reg): Fix the fp case.
5186 2008-07-26 Zoltan Varga <vargaz@gmail.com>
5188 * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
5191 * exceptions-x86.c: Merge some changes which seemed to have got lost
5192 in the linear-ir merge.
5194 * liveness.c: Disable the liveness2 pass on 32 bit platforms.
5196 * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
5197 long vreg volatile even if the variable was already created.
5199 * liveness.c (update_liveness2): Avoid eliminating dead definitions of
5202 2008-07-26 Zoltan Varga <vargaz@gmail.com>
5204 * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
5206 * mini.c (mono_jit_compile_method_inner): Add support for
5207 MONO_EXCEPTION_BAD_IMAGE.
5209 * method-to-ir.c (mono_method_to_ir2): Avoid a crash if
5210 mini_method_get_context () returns NULL. Fixes #356531.
5212 * mini.c (mono_method_to_ir): Ditto.
5214 * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
5215 accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
5217 2008-07-25 Zoltan Varga <vargaz@gmail.com>
5219 * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
5220 in the LDFTN implementation.
5222 2008-07-25 Mark Probst <mark.probst@gmail.com>
5224 * mini-trampolines.c (mono_magic_trampoline): When sharing generic
5225 code, patch calls to icalls, too, even if they're not in the
5226 shared generic code hash. Fixes #411962.
5228 2008-07-25 Zoltan Varga <vargaz@gmail.com>
5230 * cpu-x86.md: Increase the length of the fcall opcodes.
5232 * mini-x86.c (emit_move_return_value): Avoid some precision issues for
5233 calls returning floats.
5235 * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
5238 * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
5241 * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
5242 into the domain->method_code_hash.
5244 * aot-compiler.c: Fix win32 build.
5246 * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
5248 * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
5249 gshared NEWARR implementation.
5251 * cpu-sparc.md: Remove duplicate localloc_imm opcode.
5253 * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
5254 can be used outside of method_to_ir.
5256 * mini.h (MonoCompile): Add arg_types field.
5258 * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
5260 * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
5261 the values of the local arg_array and param_types array.
5263 2008-07-24 Zoltan Varga <vargaz@gmail.com>
5265 * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
5266 got accesses might only get generated later when NEWOBJ is decomposed.
5268 * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
5269 looking up the native code of the target method when a delegate is called
5272 * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
5275 * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
5277 * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
5278 AOT work on platforms without a working dlsym implementation.
5280 * mini.h: Bump AOT image format version.
5282 2008-07-24 Mark Probst <mark.probst@gmail.com>
5284 * mini-exceptions.c: Free a MonoType with
5285 mono_metadata_free_type() instead of g_free().
5287 * aot-runtime.c: Free a MonoType.
5289 2008-07-24 Zoltan Varga <vargaz@gmail.com>
5291 * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
5294 * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
5297 2008-07-23 Massimiliano Mantione <massi@ximian.com>
5298 * mini.c (sigprof_signal_handler): call the new "runtime initialized"
5301 2008-07-23 Zoltan Varga <vargaz@gmail.com>
5303 * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
5304 NEWOBJ calls on valuetypes.
5306 * iltests.il.in: Add new test.
5308 * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
5310 2008-07-22 Zoltan Varga <vargaz@gmail.com>
5312 * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
5313 is no longer needed.
5315 * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
5316 non register sized integer arguments.
5317 (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
5318 (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to
5321 * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
5324 * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
5325 two a binop with different sized arguments is emitted.
5327 * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
5328 instruction in the ins==NULL case.
5330 2008-07-23 Zoltan Varga <vargaz@gmail.com>
5332 * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
5334 * mini-x86.c: Fix osx build.
5336 * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
5339 * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
5340 instruction for non int sized variables.
5342 * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
5345 2008-07-23 Robert Jordan <robertj@gmx.net>
5347 * method-to-ir.c: Fix MSVC build.
5349 2008-07-22 Zoltan Varga <vargaz@gmail.com>
5351 * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
5352 a non int sized type, widen it to an int since newer versions of gcc seem to
5353 generate code which needs this.
5355 * ssa2.c abcremoval2.c: Fix warnings.
5357 * *: Merge the Linear IR branch.
5359 The original branch is at trunk/branches/vargaz/mini-linear-il, and
5360 the ChangeLog file there describes all the changes done over the years.
5361 Further documentation can be found at www.mono-project.com/Linear_IL.
5363 2008-07-21 Bill Holmes <billholmes54@gmail.com>
5365 * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5366 The float param registers and other param registers must be the
5367 same index on Windows x64.
5369 Contributed under MIT/X11 license.
5371 2008-07-21 Rodrigo Kumpera <rkumpera@novell.com>
5373 * mini.c: Make the previous fix GC safe.
5375 2008-07-21 Raja R Harinath <harinath@hurrynot.org>
5377 * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
5379 2008-07-21 Bill Holmes <billholmes54@gmail.com>
5381 * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
5382 on Winx64. This type will not be passed on the stack (ArgOnStack), but
5383 ArgValuetypeAddrInIReg instead.
5385 Contributed under MIT/X11 license.
5387 2008-07-21 Zoltan Varga <vargaz@gmail.com>
5389 * mini-codegen.c (get_register_spilling): Fix a warning.
5391 2008-07-17 Rodrigo Kumpera <rkumpera@novell.com>
5393 * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
5394 for types which the initialization fails. Raises the provided exception
5395 at the right stop after cleanup.
5397 2008-07-16 Zoltan Varga <vargaz@gmail.com>
5399 * aot-compiler.c: Free most of the memory allocated during compilation.
5401 * mini.c (mini_parse_debug_options): Fix a leak.
5403 * mini.c (mini_method_compile): Don't add the method to the jit info tables
5404 during aot compilation.
5406 2008-07-14 Zoltan Varga <vargaz@gmail.com>
5408 * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as
5409 it has too much register pressure.
5411 2008-07-13 Zoltan Varga <vargaz@gmail.com>
5413 * inssel.brg (CEE_CASTCLASS): Remove some dead code.
5415 2008-07-12 Zoltan Varga <vargaz@gmail.com>
5417 * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5420 * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5421 on amd64 similar to the way it is done on arm.
5423 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5425 * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for
5426 consistency, normalize error messages, avoid loading aot-only modules in
5429 * driver.c (mono_main): Rename --aot-only command line option to --full-aot
5432 * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
5434 2008-07-11 Martin Baulig <martin@ximian.com>
5437 (MonoDebuggerInfo): Add `interruption_request'.
5439 2008-07-12 Zoltan Varga <vargaz@gmail.com>
5441 * aot-compiler.c (emit_plt): Remove some dead code.
5443 * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
5445 * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
5446 return the plt info offset belonging to a given plt entry.
5448 * mini-trampolines.c (mono_aot_plt_trampoline): Use
5449 mono_aot_get_plt_info_offset.
5451 * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
5452 similar to the amd64 code by makeing jumps through a separate jump table
5453 instead of embedding the jump addresses into the code.
5455 2008-07-11 Zoltan Varga <vargaz@gmail.com>
5457 * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
5460 2008-07-10 Martin Baulig <martin@ximian.com>
5462 * mini.c (mini_method_compile): Disable generics sharing when
5463 running in the debugger.
5465 2008-07-10 Zoltan Varga <vargaz@gmail.com>
5467 * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
5469 * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
5470 the local register allocator from running out of registers on x86 when
5473 2008-07-10 Bill Holmes <billholmes54@gmail.com>
5475 * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when
5476 expressing IntMin for the VS Compiler. See Compiler Warning (level 2)
5479 Contributed under MIT/X11 license.
5481 2008-07-10 Zoltan Varga <vargaz@gmail.com>
5483 * aot-compiler.c: Get rid of whitespace in the generated assembly file to
5484 speed up the assembler.
5486 2008-07-09 Zoltan Varga <vargaz@gmail.com>
5488 * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
5491 * mini.c: Move the soft float handling macros a bit earlier, add
5492 NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
5495 * mini.h: Add prototype for mono_arch_fixup_jinfo.
5497 * mini.c (mini_init): In aot-only mode, set the root domain code manager to
5498 read-only to help catch code allocation requests.
5500 * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
5501 and turn it off when using --aot-only or when compiling with --aot=full.
5503 * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
5504 jump table for switches from the normal domain mempool, not the code
5507 * mini-trampolines.c (get_unbox_trampoline): New function to return an
5508 unbox trampoline which handles aot-only mode too.
5510 * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
5511 an AOTed unbox trampoline.
5513 * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
5515 2008-07-09 Bill Holmes <billholmes54@gmail.com>
5517 * wapihandles.c: Fixing MSVC builds. Include statement changed from <> to
5520 Contributed under MIT/X11 license.
5522 2008-07-09 Bill Holmes <billholmes54@gmail.com>
5524 * mini.c (mono_codegen): Allocate space at the end of the code block and store
5525 the unwind information for the method at the end of the allocated block.
5527 * mini-amd64.h: Added declarations for the unwind routines and adding field to
5528 MonoCompileArch to hold the unwind info for SEH on Winx64
5530 * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
5531 frame pointer info for the method being compiled.
5533 * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
5534 the call to mono_exception_from_token.
5536 * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations. This code is responsible
5537 storing the method prolog information in a format that the Winx64 SEH can understand. This
5538 information is stored a the end of the method block because it is all 32-bit offset based.
5540 Contributed under MIT/X11 license.
5542 2008-07-09 Zoltan Varga <vargaz@gmail.com>
5544 * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
5546 * wapihandles.c: Fix warnings.
5548 * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
5551 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling
5552 mono_jit_compile_method in aot-only mode since that calls the type
5555 * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
5556 get_delegate_invoke_impl in aot-only mode.
5558 * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
5560 2008-07-08 Zoltan Varga <vargaz@gmail.com>
5562 * trace.c (mono_trace_enter_method): Fix printing of Type instances.
5564 * aot-compiler.c (compile_method): Disable the check for GSHARED since it
5567 * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
5569 * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
5570 init trampoline from the AOT file as well.
5572 * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
5573 mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
5576 * mini.c (mini_init): Move the call to mono_exceptions_init () after
5579 * exceptions-amd64.c: Add _full variants for the remaining exception code
5580 creation functions as well, allow emission of relocatable code, remove
5581 caching since that is now done by the caller.
5583 * mini-exceptions.c: Add _full variants for the remaining exception code
5584 creation functions as well, add aot-only support.
5586 * aot-compiler.c (compile_method): Allow calls to methods of constructed types
5587 if we can determine a proper token for them.
5588 (add_wrappers): Add a few more wrappers.
5589 (emit_method_code): Remove some dead code.
5590 (emit_trampolines): Emit exception code too.
5592 * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
5594 * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
5595 mono_array_new_va which avoids varargs.
5597 * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
5599 * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
5600 mono_arch_create_specific_trampoline () in all places.
5602 * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
5603 a bit so it can be used for other things as well.
5605 * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
5608 * exceptions-amd64.c: Rename the caching from the exception code creation
5609 functions, it is done by the caller instead.
5611 * exceptions-amd64.c: Change the signature of the exception code creation
5612 functions to allow the creation of relocatable code later.
5614 * mini-exceptions.c: Add a set of functions to query the various
5615 runtime-generated exception functions.
5617 * mini.c mini-exceptions.c: Use the newly added functions instead of the
5618 mono_arch_.. () functions.
5620 2008-07-07 Zoltan Varga <vargaz@gmail.com>
5622 * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
5624 * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
5626 * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
5627 (mini_get_vtable_trampoline): Ditto.
5629 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
5630 code in the AOT case by returning the code size and a list of relocations to
5633 * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
5635 2008-07-07 Bill Holmes <billholmes54@gmail.com>
5637 * mini-amd64.c: On Winx64 the calling convention always requires the caller to
5640 Contributed under MIT/X11 license.
5642 2008-07-07 Zoltan Varga <vargaz@gmail.com>
5644 * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
5645 so the buffer size can be computed correctly. Fixes #404735.
5647 * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
5648 normally as cfg->debug_info is already freed.
5650 2008-07-06 Zoltan Varga <vargaz@gmail.com>
5652 * mini-amd64.c: For calls returning vtypes in registers, don't store
5653 the return address on the stack, instead allocate a separate local for
5656 2008-07-05 Mark Probst <mark.probst@gmail.com>
5658 * mini-trampolines.c, mini.h: Add an argument to
5659 mono_create_jit_trampoline_in_domain() for turning off the adding
5660 of the sync wrapper.
5662 * mini.c: Use the JIT trampoline without sync instead of
5663 ldftn_nosync in static RGCTX invoke wrappers so that the call can
5666 2008-07-04 Mark Probst <mark.probst@gmail.com>
5668 * driver.c: Turn on GSHARED optimization by default.
5670 2008-07-04 Zoltan Varga <vargaz@gmail.com>
5672 * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
5673 to MONO_TRAMPOLINE_JIT since it better reflects what it does.
5675 * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
5676 create a variant of the generic trampoline code callable from AOTed trampolines.
5678 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
5679 trampoline code callable from AOTed trampolines.
5681 * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
5683 2008-07-04 Mark Probst <mark.probst@gmail.com>
5685 * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
5686 pass-through manner.
5688 * mini.c: Generic method sharing. Pass MRGCTX to generic methods
5689 and don't fail sharing for them anymore.
5691 * mini-exceptions.c: Handle exceptions in shared generic methods.
5693 * generic-sharing.c: When checking the context of a generic
5694 method, also check its class's context. Don't treat wrappers as
5697 * mini-trampolines.c: Some code factored out to
5698 metadata/generic-sharing.c. Handle the MRGCTX case.
5700 * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
5701 we must deal with the method being of another instantiation of the
5702 class. Add static rgctx invoke wrappers to generic methods.
5704 2008-07-04 Mark Probst <mark.probst@gmail.com>
5706 * mini.c: Provide all jit infos of generic shared methods with a
5709 * mini-exceptions.c: Handle the new situation that a generic info
5710 might be available, but not info about the this/vtable/mrgctx
5713 2008-07-03 Mark Probst <mark.probst@gmail.com>
5715 * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
5718 2008-07-03 Zoltan Varga <vargaz@gmail.com>
5720 * dominators.c (check_dominance_frontier): Fix a warning.
5722 * mini.h: Add some missing prototypes.
5724 * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
5726 * driver.c (mono_jit_init_version): Correct the comments since the first
5727 argument should be the name of the root domain, not a filename.
5729 * aot-runtime.c (make_writable): Error out if this is called while running
5731 (load_aot_module): Ditto.
5733 * aot-compiler.c: Really fix the computation of method indexes.
5735 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous
5736 optimizations as this is no longer called frequently.
5738 * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
5739 method and the invoke impl code and pass it to the delegate trampoline instead of
5740 just the delegate class.
5742 2008-07-02 Zoltan Varga <vargaz@gmail.com>
5744 * aot-compiler.c: Fixup the computation of method indexes.
5745 (add_wrappers): Create the base methods of the runtime invoke wrappers using
5746 the method builder infrastructure.
5748 * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
5751 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
5752 mode, load the method right away instead of creating a trampoline.
5754 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
5756 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
5759 2008-07-01 Zoltan Varga <vargaz@gmail.com>
5761 * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
5762 (mono_aot_load_method): Use method_index instead of method->token.
5764 * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
5765 can handle icalls etc. properly.
5767 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5769 * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
5771 * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
5772 (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
5773 JIT_ICALL_ADDR patch type.
5775 * patch-info.h: Add JIT_ICALL_ADDR patch type.
5777 * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
5779 (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
5781 * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
5783 2008-06-30 Zoltan Varga <vargaz@gmail.com>
5785 * mini.c: Use domain->jit_code_hash_lock for controlling access to
5786 domain->jit_code_hash.
5788 2008-06-29 Zoltan Varga <vargaz@gmail.com>
5790 * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
5792 2008-06-27 Zoltan Varga <vargaz@gmail.com>
5794 * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
5795 get_this_arg_from_call, let it compute it when needed.
5797 * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
5798 gsctx from code only when needed.
5800 * mini-trampolines.c (get_generic_context): Rename this to
5801 mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
5802 it can be called by the arch backends.
5804 * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
5806 2008-06-26 Zoltan Varga <vargaz@gmail.com>
5808 * driver.c (mono_main): Add experimental --aot-only command line option.
5810 * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
5813 2008-06-26 Kornél Pál <kornelpal@gmail.com>
5815 * driver.c (DllMain): Remove mono_module_handle.
5817 Contributed under MIT/X11 license.
5819 2008-06-25 Zoltan Varga <vargaz@gmail.com>
5821 * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
5822 for emitting methods which are not in the source assembly. Detect and report
5823 failure of assembling+linking.
5825 * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
5827 * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
5829 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5831 * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
5833 2008-06-24 Zoltan Varga <vargaz@gmail.com>
5835 * mini.h: Remove some obsolete prototypes.
5837 * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
5839 2008-06-24 Mark Probst <mark.probst@gmail.com>
5841 * mini.c (get_object_generic_inst): Variable-sized arrays are not
5842 supported by Visual Studio, so use alloca().
5844 2008-06-23 Zoltan Varga <vargaz@gmail.com>
5846 * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
5849 2008-06-23 Mark Probst <mark.probst@gmail.com>
5851 * mini.c: Fail sharing of a generic method if it contains an open
5852 catch clause (because we don't pass MRGCTXs yet).
5854 2008-06-23 Mark Probst <mark.probst@gmail.com>
5856 * mini.c: When compiling a method with generic sharing, insert the
5857 method instantiated with an all-Object generic context into the
5858 jit info table, instead of the context of the first instantiation
5859 of the method we happen to compile.
5861 2008-06-18 Martin Baulig <martin@ximian.com>
5863 * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
5864 `major_version' and `minor_version'.
5866 2008-06-17 Mark Probst <mark.probst@gmail.com>
5868 * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
5869 mono_method_is_generic_sharable_impl() takes an additional
5870 argument specifying whether to treat type variables as reference
5873 2008-06-17 Mark Probst <mark.probst@gmail.com>
5875 * mini.h: Removed obsolete prototypes.
5877 2008-06-17 Mark Probst <mark.probst@gmail.com>
5879 * mini.c: Don't fail generic sharing for initobj and sizeof - we
5880 already handle them.
5882 2008-06-17 Mark Probst <mark.probst@gmail.com>
5884 * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
5885 tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
5886 tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
5887 tramp-x86.c: Added a MonoGenericContext* argument to
5888 mono_arch_get_unbox_trampoline() so that it can call other
5889 functions which require it.
5891 2008-06-17 Mark Probst <mark.probst@gmail.com>
5893 * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
5894 mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
5895 mono_arch_get_this_arg_from_call() takes a
5896 MonoGenericSharingContext* as well.
5898 2008-06-17 Mark Probst <mark.probst@gmail.com>
5900 * mini.c: Factor out code for emitting unbox into emit_unbox() and
5901 implement generic sharing of unbox.
5903 2008-06-17 Mark Probst <mark.probst@gmail.com>
5905 * mini.c: Don't compute the vtable to determine whether a field is
5906 special static, because it might not work for open types.
5908 2008-06-17 Mark Probst <mark.probst@gmail.com>
5910 * mini.c: Removed the unused token_type and token_source arguments
5911 from get_runtime_generic_context_ptr().
5913 2008-06-17 Marek Habersack <mhabersack@novell.com>
5915 * mini.c (ADD_BINOP): fix the build
5917 2008-06-16 Zoltan Varga <vargaz@gmail.com>
5919 * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
5922 2008-06-16 Mark Probst <mark.probst@gmail.com>
5924 * mini.h: Removed class relations enum that's not used anymore.
5926 2008-06-16 Mark Probst <mark.probst@gmail.com>
5928 * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
5930 * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
5931 the lazy fetch trampoline access code.
5933 2008-06-15 Zoltan Varga <vargaz@gmail.com>
5935 * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
5937 2008-06-14 Zoltan Varga <vargaz@gmail.com>
5939 * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
5941 * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
5943 * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
5945 2008-06-13 Zoltan Varga <vargaz@gmail.com>
5947 * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
5950 * mini-ops.h: Add MIN/MAX_UN opcodes.
5952 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
5955 * basic-math.cs: Add more min/max tests.
5957 * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5959 2008-06-13 Mark Probst <mark.probst@gmail.com>
5961 * mini.c: Small fix in the prologue of emit_castclass.
5963 2008-06-13 Zoltan Varga <vargaz@gmail.com>
5965 * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5967 * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
5968 do not work even for unsigned types. Fixes #400014.
5970 * basic-math.cs: Add regression tests for unsigned Min/Max.
5972 2008-06-13 Mark Probst <mark.probst@gmail.com>
5974 * mini.c: Added additional context_used argument to several
5975 functions, which will be needed for sharing generic methods. Use
5976 GET_RGCTX macro wherever appropriate. Declare only one
5977 context_used in mono_method_to_ir().
5979 2008-06-13 Mark Probst <mark.probst@gmail.com>
5981 * mini.c, generic-sharing.c: Removed generic class relations.
5983 * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
5984 functions due to MRGCTX changes.
5986 2008-06-13 Mark Probst <mark.probst@gmail.com>
5988 * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
5989 graph.c, local-propagation.c, aliasing.c: New opcodes for calls
5990 with calculated IMT.
5992 * mini.c: Generic sharing of calls via generic interfaces.
5994 * jit-icalls.c, jit-icalls.h: Helper function for compiling a
5995 generic method with non-constant MonoGenericContext*. Instead,
5996 the context is taken out of the method itself.
5998 2008-06-13 Mark Probst <mark.probst@gmail.com>
6000 * mini.c: Generic sharing of ldvirtftn.
6002 2008-06-13 Mark Probst <mark.probst@gmail.com>
6004 * mini.c: Generic sharing of ldftn.
6006 2008-06-13 Mark Probst <mark.probst@gmail.com>
6008 * mini.c: Do pass VTable/RGCTX argument to static generic methods.
6010 2008-06-13 Mark Probst <mark.probst@gmail.com>
6012 * mini.c: Generic sharing of the special case of ldtoken followed
6013 by a call to GetTypeFromHandle.
6015 2008-06-13 Mark Probst <mark.probst@gmail.com>
6017 * mini.c: Generic sharing of box for nullable types.
6019 2008-06-13 Zoltan Varga <vargaz@gmail.com>
6021 * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
6022 are passed on the stack. Fixes #324807.
6024 2008-06-12 Bill Holmes <billholmes54@gmail.com>
6026 * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
6027 for the ArgValuetypeAddrInIReg case.
6029 * mini-amd64.c:mono_arch_allocate_vars: Adding a case for
6030 ArgValuetypeAddrInIReg to avoid asserts. Code needs to be added here.
6032 * mini-amd64.c: mono_arch_call_opcode: Adding Winx64 code for an ArgInfo of
6033 type ArgValuetypeAddrInIReg. The code emitted will copy the argument to a
6034 local variable and pass the local variable by reference to the called method.
6036 * mini-amd64.c: mono_arch_emit_prolog: Adjust the stack for calls to
6037 mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
6039 Contributed under MIT/X11 license.
6041 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
6043 * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
6045 * debug-mini.c (mono_debug_print_vars): Release memory after printing
6048 2008-06-10 Martin Baulig <martin@ximian.com>
6051 (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
6053 2008-06-09 Kornél Pál <kornelpal@gmail.com>
6055 * main.c: Add and set argv [argc] to NULL to match C specification that fixes
6056 possible error when no arguments are passed.
6058 Contributed under MIT/X11 license.
6060 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
6062 * mini-exceptions.c (ves_icall_get_trace): Skip source locations
6063 where the file name is NULL.
6065 2008-06-09 Zoltan Varga <vargaz@gmail.com>
6067 * mini.c: Fix s390 build.
6069 2008-06-08 Zoltan Varga <vargaz@gmail.com>
6071 * trace.c (mono_trace_parse_options): Fix warnings.
6073 * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
6075 2008-06-07 Zoltan Varga <vargaz@gmail.com>
6077 * mini.c (remove_block_if_useless): Avoid printing the method name.
6079 * mini.c: Remove needless setting of ins->cil_code which is now done by
6082 * mini-amd64.c: Add some code to avoid saving callee saved registers in the
6085 * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
6086 translated code after it has been patched.
6088 2008-06-06 Zoltan Varga <vargaz@gmail.com>
6090 * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
6091 avoid problems during code patching on SMP systems.
6092 (emit_call): Avoid adding a patch info which is already added by
6094 (mono_arch_emit_exceptions): Ditto.
6096 2008-06-05 Zoltan Varga <vargaz@gmail.com>
6098 * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
6099 MONO_TYPE_ISSTRUCT already checks for it.
6101 2008-06-05 Bill Holmes <billholmes54@gmail.com>
6103 * mini-amd64.c:merge_argument_class_from_type: When marshaling
6104 structs with floats on Winx64 the float registers are not used.
6105 The integer registers are always used..
6106 * mini-amd64.c:add_valuetype: When marshaling structs on Winx64
6107 only one register will be used and only if the size of the struct
6108 is 1,2,4, or 8 bytes.
6110 * tramp-amd64.c : Adjusting size used for mono_global_codeman_reserve
6113 Contributed under MIT/X11 license.
6115 2008-06-05 Martin Baulig <martin@ximian.com>
6117 * debug-debugger.c (debugger_lookup_class): Also call
6118 mono_class_setup_methods() here; we're only called from RTI.
6120 2008-06-05 Andreas Färber <andreas.faerber@web.de>
6122 * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
6123 (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
6124 * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
6125 Post-process object files and add dtrace-generated object, if necessary.
6127 Contributed under MIT/X11 license.
6129 2008-06-04 Mark Probst <mark.probst@gmail.com>
6131 * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
6134 * mini.c: Generic sharing for unbox.any and castclass.
6136 2008-06-04 Mark Probst <mark.probst@gmail.com>
6138 * mini.c: Ignore tailcall prefix in shared generic code and when
6139 doing calls which require a vtable/rgctx argument.
6141 2008-06-04 Mark Probst <mark.probst@gmail.com>
6143 * mini.c: Don't free the JIT info.
6145 * driver.c: Changes in the JIT info table testing code.
6147 2008-06-03 Zoltan Varga <vargaz@gmail.com>
6149 * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread
6150 interruption. Fix some warnings.
6152 * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
6153 interruption_checkpoint.
6155 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6157 * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
6158 from embedding applications.
6160 2008-06-02 William Holmes <billholmes54@gmail.com>
6162 * mini-amd64.c : Correcting some of the issues for Winx64 dealing with
6163 reserving 32 bytes on the stack when making calls.
6165 Contributed under MIT/X11 license.
6167 2008-06-01 Zoltan Varga <vargaz@gmail.com>
6169 * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
6170 the linear IL branch.
6172 * driver.c: Print out more information for --version on arm.
6174 2008-05-30 Zoltan Varga <vargaz@gmail.com>
6176 * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
6177 bb_exit instead, since out of line bblocks might not actually be emitted
6180 * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
6181 maximum epilog size for out of line bblocks if tracing is enabled.
6183 * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
6185 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
6187 * arrays.cs: Regression tests for allocating arrays with negative sizes.
6189 2008-05-28 Zoltan Varga <vargaz@gmail.com>
6191 * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
6192 CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE
6195 2008-05-27 Zoltan Varga <vargaz@gmail.com>
6197 * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
6198 the 'value' to store is a constant.
6200 * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
6202 * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
6203 of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
6205 2008-05-26 Zoltan Varga <vargaz@gmail.com>
6207 * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
6208 for accessing method->generic_container.
6210 2008-05-24 Zoltan Varga <vargaz@gmail.com>
6212 * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
6214 * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
6216 * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
6218 * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
6221 2008-05-23 Zoltan Varga <vargaz@gmail.com>
6223 * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
6225 * mini.c: Handle the case when mono_class_vtable () fails.
6227 2008-05-23 Massimiliano Mantione <massi@ximian.com>
6228 * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
6231 2008-05-22 Mark Probst <mark.probst@gmail.com>
6233 * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
6234 together with domain sharing.
6236 2008-05-22 Mark Probst <mark.probst@gmail.com>
6238 * mini.c: Treat callvirts to final methods like non-virtual calls
6239 when doing generic sharing, i.e. look them up in the runtime
6242 2008-05-22 Mark Probst <mark.probst@gmail.com>
6244 * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
6245 with computed types (for generic sharing).
6247 * mini.c: Generic sharing for mkrefany and refanyval.
6249 2008-05-22 Zoltan Varga <vargaz@gmail.com>
6251 * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
6254 * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
6255 the generic sharing code.
6257 * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
6260 2008-05-21 Zoltan Varga <vargaz@gmail.com>
6262 * mini.h: Remove the declaration of mono_aot_init_vtable ().
6264 2008-05-21 C.J. Adams-collier <cjac@colliertech.org>
6266 * driver.c: updated copyright date
6268 2008-05-21 Zoltan Varga <vargaz@gmail.com>
6270 * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
6273 2008-05-19 Martin Baulig <martin@ximian.com>
6275 * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
6276 pointing to the new `_mono_debug_using_mono_debugger' variable.
6279 (mono_main): Check mono_debug_using_mono_debugger() rather than
6280 the `MONO_INSIDE_MDB' environment variable to check whether we're
6281 inside the debugger.
6283 2008-05-19 Zoltan Varga <vargaz@gmail.com>
6285 * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
6288 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
6290 * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
6292 * mini.c: Added mini_assembly_can_skip_verification. This
6293 function checks if the assembly requested to skip verification.
6294 Fixes part of #387274.
6296 2008-05-07 Zoltan Varga <vargaz@gmail.com>
6298 * mini.c (mini_get_method): Disable the check for open generic classes when
6299 using generic sharing.
6301 * generics.cs: Add a test for #387034.
6303 * mini.c (mini_get_method): Check whenever the method class is an open generic
6304 type, and return NULL in that case, causing a verification error. Fixes
6307 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6309 * driver.c (mono_main): Revert r102623. The right
6310 thing to do is to enable the verifier under verifiable
6311 unless a --security flag was passed.
6313 We need this non-trivial behavior for --verify-all otherwise
6314 mcs-compileall won't be able to use it. As it needs everything to
6315 be verified under validil.
6317 2008-05-06 Martin Baulig <martin@ximian.com>
6321 * debug-mini.c (mono_debugger_thread_created): Add proper locking.
6322 (mono_debugger_thread_cleanup): Likewise.
6323 (mono_debugger_extended_notification): Likewise.
6325 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6327 * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
6328 against both inflated and non-inflated methods. We need to check against the
6329 generic definition for cases where the instantiated method is not visible.
6330 We need to check against the inflated types for cases where the instantiation
6331 changes any super type. This fixes #382986.
6333 Note that this doesn't need to be applied to other parts of mono_method_to_ir
6334 that check for visibiliy as generic params only appears as the type subject
6335 of tokens on call opcodes. Field manipulation and ldftn must always
6336 target an exact type.
6338 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6340 * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
6341 if no related --security flag is passed.
6343 2008-05-05 Andreas Färber <andreas.faerber@web.de>
6345 * mini-arch.h: Prepare support for ppc64.
6347 Contributed under MIT/X11 license.
6349 2008-05-05 Andreas Färber <andreas.faerber@web.de>
6351 * aot-runtime.c: Prepare support for ppc64.
6353 Contributed under MIT/X11 license.
6355 2008-05-05 Andreas Färber <andreas.faerber@web.de>
6357 * mini-ops.h: Prepare support for ppc64.
6359 Contributed under MIT/X11 license.
6361 2008-05-04 Andreas Färber <andreas.faerber@web.de>
6363 * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
6365 Contributed under MIT/X11 license.
6367 2008-05-03 Zoltan Varga <vargaz@gmail.com>
6369 * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
6370 assemblies, since aot_name is not a full path, causing us to load MS.NET
6371 assemblies on windows.
6373 2008-04-28 Kornél Pál <kornelpal@gmail.com>
6375 * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
6376 for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
6377 * main.c: Use UTF-8 encoded command line instead of Windows default code
6378 page on Windows to support Unicode.
6379 * driver.c (DllMain): New function for mixed-mode assembly support.
6380 * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
6381 export __stdcall functions without decoration.
6383 Contributed under MIT/X11 license.
6385 2008-04-28 Mark Probst <mark.probst@gmail.com>
6387 * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
6388 saving it very early.
6390 2008-04-28 Mark Probst <mark.probst@gmail.com>
6392 * mini.h, mini.c: Lots of code for accessing the old RGCTX
6393 deleted. The only way to access the new RGCTX is via the
6396 * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
6397 vtable instead of the RGCTX to static methods.
6399 * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
6400 accessing the new RGCTX.
6402 * generic-sharing.c: There is no separation between self, type
6403 arguments and other types in the RGCTX anymore.
6405 2008-04-25 Jonathan Chambers <joncham@gmail.com>
6407 * mini-amd64.c (add_general): Remove previous stack adjustment.
6408 (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
6409 adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
6410 for 32 bytes of stack space reserved for all calls.
6412 * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
6413 (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack
6416 Code contributed under MIT/X11 license.
6418 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
6420 * mini.c (mini_method_verify): Only verify non-inflated methods, check
6421 against the root definition, peeling out method and type instantiations.
6422 Cache verify success results, code that fails verification is still
6423 checked multiple times.
6425 2008-04-23 Zoltan Varga <vargaz@gmail.com>
6427 * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
6429 2008-04-23 Jonathan Chambers <joncham@gmail.com>
6431 * mini-amd64.c (add_general): Always increment stack on Win64.
6432 (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
6435 * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for
6436 stack based argument handling on Win64.
6438 Code contributed under MIT/X11 license.
6440 2008-04-23 Raja R Harinath <harinath@hurrynot.org>
6442 * Makefile.am (version.h): Add support for git-svn.
6444 2008-04-22 Zoltan Varga <vargaz@gmail.com>
6446 * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
6447 so instead of calling g_spawn_command_line_sync, we do everything by hand,
6448 avoiding allocations and libc functions which might deadlock.
6450 * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
6451 'no-gdb-backtrace' option is set.
6453 * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
6455 * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
6457 2008-04-21 Martin Baulig <martin@ximian.com>
6459 * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
6460 and `get_lmf_addr'; `notification_address' is no longer a pointer.
6462 2008-04-21 Martin Baulig <martin@ximian.com>
6464 * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
6465 `thread_vtable', `event_handler_ptr' and `event_handler'.
6467 2008-04-21 Martin Baulig <martin@ximian.com>
6469 * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
6470 allows delayed initialization of the `executable_code_buffer' when
6473 2008-04-21 Martin Baulig <martin@ximian.com>
6475 * mini.h (mono_debugger_create_notification_function): Removed.
6476 * tramp-*.c (mono_debugger_create_notification_function): Removed.
6478 * mdb-debug-info64.s
6479 (MONO_DEBUGGER__notification_function): Added this in the .text section.
6481 * mdb-debug-info32.s
6482 (MONO_DEBUGGER__notification_function): Added this in the .text section.
6484 * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
6485 currently only works on x86 and x86_64, so don't create it on ppc.
6487 2008-04-21 Martin Baulig <martin@ximian.com>
6489 * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
6492 (mini_method_compile): In the fp elimination check, check
6493 `debug_options.mdb_optimizations' in addition to
6494 mono_debug_using_mono_debugger().
6496 * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
6497 disable some JIT optimizations which are only disabled when
6498 running inside the debugger.
6499 Added `--help-debug' option to describe the debugging options.
6500 (parse_debug_options): New static function to parse the `--debug'
6501 options, so we can easily add more stuff in future.
6503 2008-04-20 Zoltan Varga <vargaz@gmail.com>
6505 * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
6506 the method has no body.
6508 2008-04-19 Jonathan Chambers <joncham@gmail.com>
6510 * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
6511 assembly is not allowed in MSVC 64-bit compiler.
6512 (mono_arch_cpu_init): Don't set floating point precision on MSVC build
6513 as we get floating point exceptions everywhere.
6515 * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
6516 correctly align arguments for call to throw_exception.
6517 (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
6519 Code contributed under MIT/X11 license.
6521 2008-04-19 Zoltan Varga <vargaz@gmail.com>
6523 * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
6525 2008-04-17 Zoltan Varga <vargaz@gmail.com>
6527 * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
6529 * mini-amd64.c (NEW_INS): Set cil_code.
6531 * mini.c (mini_method_compile): Move the disabling of fp elimination to here
6532 from mini-amd64.c so all debugger related logic is in one place.
6534 * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
6535 later won't have a random ip assigned to them.
6537 2008-04-16 Zoltan Varga <vargaz@gmail.com>
6539 * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
6540 the arch specific function initializes code_size.
6541 (mono_create_delegate_trampoline): Ditto.
6543 * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
6544 tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
6547 * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if
6548 running under the debugger.
6550 * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
6553 * mini.c (mini_method_compile): Set a few flags in cfg if running under the
6554 debugger. Also move the disabling of optimizations here from driver.c.
6555 (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
6558 * mini.h (MonoCompile): Add a few new flags.
6560 2008-04-15 Zoltan Varga <vargaz@gmail.com>
6562 * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
6563 so the cil_code field of created MonoInst's is properly set.
6564 (mini_select_instructions): Ditto.
6566 * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
6567 (MONO_INST_NEW_CALL): Ditto.
6569 * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
6570 in many places so the ins->cil_code field is properly initialized.
6572 * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
6575 2008-04-14 Zoltan Varga <vargaz@gmail.com>
6577 * mini.c (mini_method_compile): Print a different message when compiling a
6580 * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
6583 2008-04-11 Zoltan Varga <vargaz@gmail.com>
6585 * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
6588 * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
6590 2008-04-11 Zoltan Varga <vargaz@gmail.com>
6592 * mini.c (handle_stack_args): Make this return void since its return value was
6593 never used. Also set cfg->unverifiable for invalid IL instead of calling
6596 2008-04-10 Mark Probst <mark.probst@gmail.com>
6598 * mini.c: Make sure "this" is live in catch clauses with type
6599 variables in shared generic code.
6601 2008-04-08 Mark Probst <mark.probst@gmail.com>
6603 * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
6604 generic_class_is_reference_type() to ensure the proper behaviour
6605 when sharing generic code and the type in question is a type
6608 2008-04-08 Zoltan Varga <vargaz@gmail.com>
6610 * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
6611 race conditions when printing thread dumps. Fixes #377738.
6613 2008-04-08 Massimiliano Mantione <massi@ximian.com>
6615 aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
6616 shows up when both MonoInst arguments can cause aliasig.
6617 There is likely no way in the current JIT to trigger this problem, but
6618 it showed up in the development of generics sharing, when in a new
6619 opcode both args of an OP_GROUP can be aliases (addresses of a local).
6620 When the generics sharing code will be committed, its tests will be
6621 valid also for this bug.
6623 2008-04-08 Zoltan Varga <vargaz@gmail.com>
6625 * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
6628 * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
6631 2008-04-07 Zoltan Varga <vargaz@gmail.com>
6633 * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
6634 use a more detailed exception message for InvalidCastException.
6636 * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
6638 * driver.c (mono_main): Add --debug=casts option to turn on better
6639 InvalidCastException message details.
6641 * mini.c (mini_get_debug_options): New helper function to return the address of
6642 the debug_options variable.
6644 * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
6645 the jit_tls TLS variable.
6647 * mini.c (mono_jit_tls): New TLS variable.
6649 * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
6652 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
6654 * mini.h: Removed verifer related stuff. This code was moved to verify.c
6656 * mini.c: Removed verifer related stuff, code moved to verify.c.
6658 * driver.c: Using code from verify.c instead of mini.c.
6660 2008-04-05 Zoltan Varga <vargaz@gmail.com>
6662 * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
6665 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
6667 * mini.c (check_for_method_verify): Enabling verification of
6668 corlib if mono_verify_all is set. Bugs in the verifier preventing that
6671 2008-04-04 Zoltan Varga <vargaz@gmail.com>
6673 * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
6674 caller saved registers as well.
6676 * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
6677 saved registers as well.
6679 2008-03-30 Zoltan Varga <vargaz@gmail.com>
6681 * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
6683 * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
6686 2008-03-27 Zoltan Varga <vargaz@gmail.com>
6688 * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
6690 (get_call_info): Take a gsctx argument instead of 'cfg'.
6692 2008-03-26 Zoltan Varga <vargaz@gmail.com>
6694 * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
6695 mono_verify_all is set.
6697 * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
6699 * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
6701 2008-03-25 Zoltan Varga <vargaz@gmail.com>
6703 * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
6706 * driver.c mini.c mini.h: Add a --verify-all development option to test the
6707 verifier and the code generated by the compiler.
6709 2008-03-25 Mark Probst <mark.probst@gmail.com>
6711 * mini.c: Generic sharing of the non-nullable case of the box
6714 2008-03-24 Zoltan Varga <vargaz@gmail.com>
6716 * inssel.brg: Fix the build.
6718 * iltests.il.in: Add a test for lconv.ovf.u8.un.
6720 2008-03-24 Rodrigo Kumpera <rkumpera@novell.com>
6722 * mini.c (mono_method_to_ir): Implement readonly for ldelema and
6723 Array:Address. Fixes #372410.
6725 * iltests.il.in: New tests for readonly prefix.
6727 2008-03-23 Zoltan Varga <vargaz@gmail.com>
6729 * mini.h mini.c mini-trampolines.c: Move trampoline related code to
6732 * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to
6735 * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
6737 * mini.c (mono_decompose_op_imm): New helper function.
6739 * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
6740 with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6743 * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in
6744 mono_arch_output_basic_block. Fix warnings.
6746 * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
6749 2008-03-22 Zoltan Varga <vargaz@gmail.com>
6751 * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
6752 since the extra frame is now detected automatically inside the loop.
6754 * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole
6755 opts which are now in mono_peephole_ins ().
6757 * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
6759 * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
6760 frames and skip duplicate managed-to-native frames. Fixes #367665.
6762 * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6763 opts which are now in mono_peephole_ins ().
6764 (mono_arch_peephole_pass_2): Ditto.
6766 * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
6768 * mini-codegen.c (mono_peephole_ins): New helper function containing the
6769 arch independent peephole optimizations.
6771 * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6772 opts which are now in mono_peephole_ins ().
6774 * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
6776 * mini-s390.c (mono_arch_output_basic_block): Fix build.
6778 * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
6781 * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
6782 CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
6785 2008-03-21 Zoltan Varga <vargaz@gmail.com>
6787 * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
6788 with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6791 * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in
6792 mono_arch_output_basic_block. Fix warnings.
6794 2008-03-20 Zoltan Varga <vargaz@gmail.com>
6796 * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6799 2008-03-20 Zoltan Varga <vargaz@gmail.com>
6801 * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6804 * iltests.il: Add new tests.
6806 2008-03-20 Kornél Pál <kornelpal@gmail.com>
6808 * mini.c: Removed Windows version macros.
6810 2008-03-20 Mark Probst <mark.probst@gmail.com>
6812 * generic-sharing.c: Put reflection types in the extensible part
6813 of the runtime generic context.
6815 * mini.c: Generic sharing of the GetTypeHandle special case of the
6816 ldtoken instruction.
6818 2008-03-20 Zoltan Varga <vargaz@gmail.com>
6820 * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
6822 * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
6824 * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for
6825 consistency with the other version on the linear IR branch.
6827 * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
6829 * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
6831 * iltests.il.in: Add new tests.
6833 2008-03-19 Zoltan Varga <vargaz@gmail.com>
6835 * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
6837 * iltests.il.in: Add new tests.
6839 2008-03-19 Mark Probst <mark.probst@gmail.com>
6841 * mini.c: Two variables with the same name were declared in
6842 nesting contexts and one wasn't initialized. Fixed.
6844 2008-03-19 Mark Probst <mark.probst@gmail.com>
6846 * mini.c: Generic sharing of the initobj instruction.
6848 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6850 * mini.c: make the test to optimize ldtoken from typeof() more
6853 2008-03-18 Mark Probst <mark.probst@gmail.com>
6855 * mini.c: Generic sharing of the initobj instruction for reference
6858 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6860 * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
6861 the mono_breakpoint_clean_code() code to perform bound checks.
6863 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
6865 * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
6866 mono_arch_patch_callsite() to include the start of the managed method
6867 to be able to perform bound checks.
6869 2008-03-17 Mark Probst <mark.probst@gmail.com>
6871 * mini.c: Generic sharing for the isinst instruction.
6873 2008-03-17 Mark Probst <mark.probst@gmail.com>
6875 * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6876 inssel-long32-mips.brg: Added opcodes for doing indirect calls
6877 with the runtime generic context argument.
6879 * mini.c: Share calls to several types of unsharable methods by
6880 putting the address of the method code in the runtime generic
6881 context and doing an indirect call.
6883 * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6886 2008-03-16 Mark Probst <mark.probst@gmail.com>
6888 * generic-sharing.c: Change due to a change in the runtime genric
6891 2008-03-15 Martin Baulig <martin@ximian.com>
6894 (mono_arch_nullify_class_init_trampoline): Add call to
6895 mono_breakpoint_clean_code() to make things work when running
6896 inside the debugger.
6899 (mono_arch_nullify_class_init_trampoline): Add call to
6900 mono_breakpoint_clean_code() to make things work when running
6901 inside the debugger.
6903 2008-03-14 Zoltan Varga <vargaz@gmail.com>
6905 * inssel-long.brg (reg): Fix 64 bit build.
6907 2008-03-14 Mark Probst <mark.probst@gmail.com>
6909 * mini.c, mini.h: Share static generic code by passing it an
6910 implicit argument pointing to the runtime generic context.
6912 * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6913 inssel-long32-mips.brg: New opcodes for calling shared static,
6914 which need to be passed the runtime generic context.
6916 * mini-amd64.c, mini-x86.c: Save the runtime generic context
6917 argument on the stack in the prologue if needed. New function for
6918 finding the runtime generic context argument from the registers
6919 saved by the trampoline.
6921 * mini-amd64.h, mini-x86.h: Specify which register to use for the
6922 runtime generic context argument.
6924 * tramp-amd64.c: Also restore the register used for the runtime
6925 generic context argument.
6927 * mini-trampoline.c: Resolve shared static calls by consulting the
6928 runtime generic context via the new argument.
6930 * generic-sharing.c: Add an argument to sharability-checking
6931 functions that specifies whether type variables should be treated
6932 as sharable type arguments.
6934 * inssel-x86.brg: Removed a superfluous, buggy rule.
6936 * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6939 2008-03-14 Martin Baulig <martin@ximian.com>
6941 * debug-debugger.c (main_thread_handler): Call
6942 mono_runtime_run_main() without sending any notifications.
6944 * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
6946 2008-03-14 Zoltan Varga <vargaz@gmail.com>
6948 * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
6950 2008-03-14 Mark Probst <mark.probst@gmail.com>
6952 * tramp-x86.c: Fixed register restore offsets in the trampoline
6953 code for ECX and EDX.
6955 2008-03-12 Geoff Norton <gnorton@novell.com>
6957 * mini-arm.h: Add some #defines for locating sp, pc, r4 with
6958 different ucontext_t implementations.
6959 * exceptions-arm.c: Use the above defines to get exceptions working on
6960 iPhone (based on a patch by Luke Howard lukeh@padl.com)
6961 * mini-arm.c: Implement iPhone icache support (based on a patch by
6962 Luke Howard lukeh@padl.com)
6964 2008-03-12 Mark Probst <mark.probst@gmail.com>
6966 * mini.c: Enable generic sharing of calls to non-static
6967 non-interface non-generic non-value-type methods.
6969 * mini-trampolines.c: Resolve calls from shared generic code.
6971 2008-03-11 Zoltan Varga <vargaz@gmail.com>
6973 * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
6975 * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
6977 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
6979 * mini.c: some fixes for the AOT compiler.
6981 2008-03-07 Zoltan Varga <vargaz@gmail.com>
6983 * cpu-amd64.md: Add clob:1 to some float opcodes.
6985 2008-03-07 Rodrigo Kumpera <rkumpera@novell.com>
6987 * mini.h: Added MiniVerifierMode enumeration.
6989 * mini.c: Added mini_verifier_set_mode to control
6990 the usage of the new verifier.
6992 * mini.c (mono_method): Integrated the new verifier.
6994 * driver.c: Extended --security option with validil and
6995 verifiable options to activate the new verifier.
6997 2008-03-07 Zoltan Varga <vargaz@gmail.com>
6999 * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation
7000 optimization to ctors taking 0 or 2 arguments too.
7002 * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
7005 * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
7007 * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
7009 2008-03-06 Zoltan Varga <vargaz@gmail.com>
7011 * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
7012 non-aot case as well.
7014 * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
7016 * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
7019 * aot-compiler.c (encode_patch): Ditto.
7021 * mini.h (G_MININT32): Fix the definition of this.
7023 2008-03-05 Zoltan Varga <vargaz@gmail.com>
7025 * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
7027 * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
7029 2008-03-04 Zoltan Varga <vargaz@gmail.com>
7031 * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for
7032 methods returning vtypes in registers.
7033 (mono_arch_allocate_vars): Ditto.
7035 * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
7037 * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().
7039 * generics.cs: Add a test from the linear IR branch.
7041 * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
7043 * mini.c (inline_method): Cache failed inline attempts.
7045 2008-03-04 Mark Probst <mark.probst@gmail.com>
7047 * mini.c: For shared methods of generic classes put the location
7048 of "this" into the MonoGenericJitInfo.
7050 * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
7051 register out of a MonoContext by register number. Add the generic
7052 sharing context as an argument to mono_arch_find_this_argument().
7054 * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
7055 mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
7056 for new arch function.
7058 * mini-exception.c: Handle open exception clauses in shared
7061 * mini-trampolines.c: Supply additional argument to
7062 mono_arch_find_this_argument().
7064 2008-03-04 Zoltan Varga <vargaz@gmail.com>
7066 * Makefile.am (regtests): Run the bench.exe tests last.
7068 2008-03-03 Zoltan Varga <vargaz@gmail.com>
7070 * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
7073 2008-03-02 Zoltan Varga <vargaz@gmail.com>
7075 * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
7078 * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
7080 * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
7082 * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
7083 whose class has no cctor.
7085 * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
7087 2008-03-01 Zoltan Varga <vargaz@gmail.com>
7089 * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
7092 2008-02-29 Zoltan Varga <vargaz@gmail.com>
7094 * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
7095 to be in sync with the code on the linear IR branch.
7097 * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
7099 * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
7101 2008-02-27 Zoltan Varga <vargaz@gmail.com>
7103 * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
7105 * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
7107 * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
7109 * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
7111 * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
7113 * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
7116 2007-11-14 Yoichi NAKAYAMA <nakayama@pixela.co.jp>
7118 * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
7119 OP_LOADR4_MEMBASE emission.
7121 * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
7122 (mono_spillvar_offset_float): Ditto.
7124 * mini-mips.c (mono_arch_emit_prolog): Ditto.
7126 * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
7129 * basic-long.cs: Add regression tests for them.
7131 * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
7133 (mono_arch_allocate_vars): Fix representation of single-precision float
7135 (mono_arch_output_basic_block): Ditto.
7137 * inssel-mips.brg: Ditto, remove duplicate items.
7139 * mini-mips.c (emit_load_volatile_arguments): New function to handle
7140 arguments of tail calls as on other platforms.
7141 (mono_arch_output_basic_block): Handle tail calls.
7143 * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
7146 * objects.cs (test_5_pass_static_struct): Add test for it.
7148 Contributed under MIT/X11 license.
7150 2008-02-26 Zoltan Varga <vargaz@gmail.com>
7152 * Makefile.am: Use gmcs for compiling the regression tests.
7154 * *.2.cs *.2.il: Rename to *.cs and *.il.
7156 2008-02-24 Zoltan Varga <vargaz@gmail.com>
7158 * regalloc.h: Make the vassign array smaller.
7160 * mini.c (mini_method_compile): Remove an unused field in cfg.
7162 * mini-codegen.c: Add a bunch of micro optimizations.
7164 2008-02-23 Zoltan Varga <vargaz@gmail.com>
7166 * regalloc.h: Remove some unused fields.
7168 2008-02-22 Zoltan Varga <vargaz@gmail.com>
7170 * mini-amd64.c (mono_arch_patch_code): Fix a warning.
7172 * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
7174 2008-02-22 Mark Probst <mark.probst@gmail.com>
7176 * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
7178 * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
7179 trampoline: Fetch an entry from the runtime generic context. If
7180 it's NULL, jump to the actual trampoline to fill the runtime
7181 generic context. Otherwise, return it.
7183 * mini.c: Call the lazy fetch trampoline to get entries out of the
7184 runtime generic context.
7186 * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
7187 tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
7188 tramp-sparc.c: Stubs for the lazy fetch trampoline.
7190 2008-02-21 Mark Probst <mark.probst@gmail.com>
7192 * mini.c: Fetch data out of the extensible part of the runtime
7193 generic context instead of calling a helper function.
7195 * generic-sharing.c: Some functions moved into
7196 metadata/generic-sharing.c. Helper function for fetching other
7197 types now checks and asserts against extensible rgctx (just for
7198 debugging purposes - the helper function isn't called anymore
7199 unless for debugging).
7201 2008-02-21 Zoltan Varga <vargaz@gmail.com>
7203 * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
7204 for tail calls up to the point that the tests in iltests.exe run. Also add a
7205 dummy CKFINITE implementation.
7206 (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
7207 needed for trampoline LMF frames.
7209 * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for
7210 trampoline LMF frames.
7212 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
7214 * mini.c (inline_method): clean any pending loader error when inlining fail.
7215 Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
7217 2008-02-21 Zoltan Varga <vargaz@gmail.com>
7219 * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
7221 * aot-runtime.c (decode_patch_info): Ditto.
7223 * mini.c (mono_resolve_patch_target): Ditto.
7225 * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
7228 * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
7230 * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
7231 if it references an icall address.
7233 2008-02-20 Zoltan Varga <vargaz@gmail.com>
7235 * cpu-s390x.md: Remove some more unused opcodes.
7237 * cpu-s390x.md: Remove some unused opcodes.
7239 * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
7240 mono_op_imm_to_op ().
7242 * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
7243 instead of a switch statement.
7245 * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
7246 the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
7248 * mini-codegen.c: Eliminate rassign macro which is no longer needed.
7250 * mini-codegen.c: Remove unused mono_regstate2_... functions.
7252 * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
7255 2008-02-19 Zoltan Varga <vargaz@gmail.com>
7257 * driver.c (mono_main): Improve error reporting when an assembly cannot be
7258 opened. Fixes #362607.
7260 * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
7262 * iltests.il.in: Add a test for static methods in interfaces.
7264 2008-02-18 Zoltan Varga <vargaz@gmail.com>
7266 * genmdesc.c (build_table): Fix a crash on older glib versions.
7268 * cpu-sparc.md: Remove some unused opcodes.
7270 * genmdesc.c: Error out if the .md contains CEE_ opcodes if
7271 MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
7273 * cpu-amd64.md: Remove some unused opcodes.
7275 * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
7276 like the other opcodes.
7278 2008-02-17 Zoltan Varga <vargaz@gmail.com>
7280 * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
7282 * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
7284 * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
7285 variables 'cfg' instead of 'm' for consistency.
7287 * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
7289 * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
7290 argument holding the vtype return address, to avoid the ambigious use of
7291 cfg->ret for this purpose.
7293 * mini.c (NEW_RETLOADA): Use vret_addr if set.
7295 * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
7297 * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
7298 new mono_print_ins () function which only takes one argument.
7300 2008-02-15 Zoltan Varga <vargaz@gmail.com>
7302 * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
7305 2008-02-14 Zoltan Varga <vargaz@gmail.com>
7307 * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
7309 * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
7311 * mini-x86.c: Sync with the version on the linear IR branch by adding new
7312 opcodes and other small changes.
7314 * mini-ops.h: Add some new opcodes from the linear IR branch.
7316 * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
7318 * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
7319 opcodes, use the REG_MEMBASE opcodes instead.
7321 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
7322 opcodes, use the REG_MEMBASE opcodes instead.
7324 * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
7327 * mini.c (mono_op_imm_to_op): New helper function.
7329 * mini-ops.h: Add some opcodes from linear IR branch.
7331 2008-02-13 Zoltan Varga <vargaz@gmail.com>
7333 * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov
7336 2008-02-12 Zoltan Varga <vargaz@gmail.com>
7338 * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to
7341 * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
7343 2008-02-09 Zoltan Varga <vargaz@gmail.com>
7345 * aot-compiler.c (emit_method_code): Add an assert.
7347 * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
7348 the IMT code so it is AOT friendly. Enable AOT for methods which call interface
7351 2008-02-08 Zoltan Varga <vargaz@gmail.com>
7353 * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for
7354 some load/store opcodes so they are consistent.
7355 (mono_arch_emit_prolog): Simplify some code.
7357 * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
7359 * objects.cs: Add tests for large argument offsets on ARM.
7361 * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large
7362 stack offsets. Fixes #359651.
7364 * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
7366 * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
7368 * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
7370 * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
7372 * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
7374 * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
7375 rid of CEE_CONV_R_UN.
7377 * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
7379 2008-02-07 Zoltan Varga <vargaz@gmail.com>
7381 * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
7383 * mini.c (mono_normalize_opcodes): Add some more opcodes.
7385 * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
7387 * cpu-amd64.md: Remove some unused opcodes.
7389 * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
7391 * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
7393 * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make
7394 arch specific functions for its parts. Call the peephole pass after local
7395 regalloc so the prolog can compute a more accurate max_offset.
7397 * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
7398 the corresponding OP_I/OP_L opcodes.
7400 * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
7402 * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
7404 2008-02-06 Zoltan Varga <vargaz@gmail.com>
7406 * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
7407 as they are handled in mini.c.
7409 * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
7411 * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
7412 case since it is handled in mini.c.
7414 * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
7416 * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
7418 * *.c: Use the new opcodes in the IR and back end code.
7420 * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
7422 * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
7424 2008-02-06 Mark Probst <mark.probst@gmail.com>
7426 * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
7427 an assert because it has a race condition.
7429 2008-02-06 Zoltan Varga <vargaz@gmail.com>
7431 * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
7433 * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
7435 * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
7437 * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
7438 use OP_MOVE/OP_FMOVE/OP_ICONST instead.
7440 2008-02-05 Zoltan Varga <vargaz@gmail.com>
7442 * cpu-amd64.md (move): Correct the maximum size of move.
7444 2008-02-05 Mark Probst <mark.probst@gmail.com>
7446 * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
7447 the generic class init trampoline to return quickly if the class
7450 2008-02-04 Zoltan Varga <vargaz@gmail.com>
7452 * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
7453 issues where an 32 bit callsite cannot be patched by a 64 bit address.
7455 2008-02-03 Zoltan Varga <vargaz@gmail.com>
7457 * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
7460 2008-01-31 Zoltan Varga <vargaz@gmail.com>
7462 * objects.cs: Add some soft-float tests.
7464 * mini.c: Fix a couple more soft-float issues.
7466 * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
7468 * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
7471 2008-01-30 Zoltan Varga <vargaz@gmail.com>
7473 * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
7474 exception happens while compiling a virtual method.
7476 2008-01-29 Zoltan Varga <vargaz@gmail.com>
7478 * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
7480 * mini-sparc.c: Fix build.
7482 * mini-sparc.c (get_call_info): Add support for generic sharing.
7484 * mini-exceptions.c: Add a FIXME.
7486 2008-01-27 Zoltan Varga <vargaz@gmail.com>
7488 * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
7489 altstack handling code.
7491 * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
7493 * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
7495 * mini-s390.c: Add support for generic sharing.
7497 * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame):
7499 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7501 * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
7503 * mini-s390x.c: Add support for generic sharing.
7505 * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame):
7507 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7509 * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
7510 can be used since it takes a 16 bit signed immediate.
7512 * inssel-s390x.brg: Fix OP_SETRET.
7514 * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
7516 * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
7518 * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
7520 * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
7522 * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
7525 * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline
7528 * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
7529 of the unused mono_arch_patch_delegate_trampoline stuff.
7531 2008-01-26 Zoltan Varga <vargaz@gmail.com>
7533 * basic-long.cs: Move the fp related tests to basic-float.cs.
7535 * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
7537 * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
7539 * basic-calls.cs: Add a test for proper float argument passing.
7541 * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
7542 if the context corresponds to an exception received through a signal.
7544 * exceptions.cs: Add a test for nullref handling at the start of a try
7547 * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
7549 * jit-icalls.c (mono_break): New JIT icall.
7551 * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
7553 * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
7555 2008-01-25 Zoltan Varga <vargaz@gmail.com>
7557 * cpu-*.md: Get rid of unused opcodes.
7559 * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
7561 * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
7564 * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
7567 * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
7568 the arch independent trampoline code in mini-trampolines.c.
7570 * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
7572 * mini.c (get_runtime_generic_context_ptr): Fix a warning.
7574 * mini-s390.h: Remove an unused define.
7576 * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
7577 the arch independent trampoline code in mini-trampolines.c.
7579 * mini-arm.c (mono_arch_emit_prolog): Fix build.
7581 2008-01-24 Zoltan Varga <vargaz@gmail.com>
7583 * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
7585 * mini-s390.c (mono_arch_emit_prolog): Fix build.
7587 * mini-s390x.c (mono_arch_emit_prolog): Fix build.
7589 * mini-ppc.c (mono_arch_emit_prolog): Fix build.
7591 * cpu-amd64.md: Use smaller sizes for int opcodes.
7593 * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
7595 * *.cs: Add some tests from the linear-ir branch. Move structs tests to
7598 * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
7601 * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
7602 instead of though a pointer to save an indirection when accessing elements of
7605 * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
7607 (NOT_IMPLEMENTED): New helper macro.
7608 (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
7611 * *.c: Use the new helper macro.
7613 2008-01-21 Zoltan Varga <vargaz@gmail.com>
7615 * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
7617 2008-01-20 Zoltan Varga <vargaz@gmail.com>
7619 * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
7622 2008-01-18 Zoltan Varga <vargaz@gmail.com>
7624 * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
7625 profiling is enabled.
7627 * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
7629 (mono_arch_emit_prolog): Add more first bblock optimizations.
7631 * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
7632 in order if possible.
7633 (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
7634 bblock, since the arguments are still in their original registers.
7636 * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
7638 2008-01-17 Zoltan Varga <vargaz@gmail.com>
7640 * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
7643 * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
7646 * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
7648 * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to
7649 process async exceptions received while in unmanaged code.
7651 * mini.c (mini_init): Install a callback with the runtime which will be called
7652 when a thread receives an async exception while in unmanaged code.
7654 * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
7656 * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
7658 2008-01-16 Wade Berrier <wberrier@novell.com>
7665 2008-01-16 Zoltan Varga <vargaz@gmail.com>
7667 * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
7668 compilation with sun cc.
7670 * cpu-*.md: Fix the build.
7672 * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
7674 * mini-amd64.h: Add some comments to the MonoLMF structure.
7676 * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
7678 * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
7679 in the LMF structure if possible. This saves two instructions in the
7680 managed->native wrappers.
7682 * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
7684 2008-01-16 Mark Probst <mark.probst@gmail.com>
7686 * generic-sharing.c: New type argument lookup code which uses the
7687 runtime generic context template.
7689 2008-01-15 Zoltan Varga <vargaz@gmail.com>
7691 * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
7693 * mini-arm.c (add_general): Fix arm eabi parameter passing.
7694 (mono_arch_output_basic_block): Fix localloc implementation.
7696 * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
7698 * mini-ia64.c (peephole_pass): Fix ia64 build.
7700 * mini-amd64.c (peephole_pass): Fix a warning.
7702 * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
7703 at a constant offset from sp/fp.
7705 * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
7706 instead of obtaining it from *lmf in the managed method case.
7708 2008-01-14 Zoltan Varga <vargaz@gmail.com>
7710 * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
7712 Mon Jan 14 12:33:06 CET 2008 David S. Miller <davem@davemloft.net>
7714 * mini.h (MonoInstList): New type.
7715 (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
7716 __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
7717 MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
7718 __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
7719 MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
7720 MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
7721 MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
7722 MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
7723 MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
7724 MONO_INST_LIST_FOR_EACH_PREV_SAFE,
7725 MONO_INST_LIST_FOR_EACH_ENTRY,
7726 MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
7727 MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
7728 mono_inst_list_first, mono_inst_list_last,
7729 mono_inst_list_next, mono_inst_list_prev): New instruction
7730 list handling interfaces.
7731 (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
7732 list head 'ins_list'.
7733 (MonoInst): Replace next pointer with list head 'node'.
7734 (MonoCallInst): Make 'out_args' a MonoInstList.
7735 (MONO_INST_NEW_CALL): Explicitly init ->out_args.
7736 (MonoCompile): Delete reverse_inst_list and
7737 reverse_inst_list_len.
7738 * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
7739 mono_arch_lowering_pass, mono_arch_local_regalloc,
7740 mono_arch_output_basic_block, mono_arch_emit_prolog):
7741 Convert to new instruction lists.
7742 (insert_after_ins): Delete.
7743 * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
7745 * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
7746 * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
7747 split_bblock, mono_add_ins_to_end, mono_emit_call_args,
7748 mono_emulate_opcode, mono_emit_load_got_addr,
7749 inline_method, mono_method_to_ir, mono_print_bb_code,
7750 print_dfn, decompose_pass, nullify_basic_block,
7751 replace_out_block_in_code, remove_block_if_useless,
7752 merge_basic_blocks, move_basic_block_to_end,
7753 try_unsigned_compare, optimize_branches, mono_print_code,
7754 mini_select_instructions, remove_critical_edges): Likewise.
7755 * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
7756 peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
7757 mono_arch_output_basic_block, mono_arch_emit_prolog):
7759 * mini-mips.c (mono_arch_call_opcode, peephole_pass,
7760 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7761 mono_arch_output_basic_block): Likewise.
7762 (inst_list_prepend, insert_after_ins): Delete.
7763 * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
7764 MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
7766 * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
7767 peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
7768 mono_arch_emit_prolog): Likewise.
7769 * cfold.c (mono_constant_fold): Likewise.
7770 * liveness.c (visit_bb, mono_analyze_liveness,
7771 optimize_initlocals): Likewise.
7772 * ssapre.c (dump_code, process_bb, code_motion): Likewise.
7773 * graph.c (mono_draw_code_cfg): Likewise.
7774 * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
7775 mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
7776 mono_ssa_cprop): Likewise.
7777 * abcremoval (get_relations_from_previous_bb, process_block):
7779 * local-propagation (mono_cprop_invalidate_values,
7780 mono_local_cprop_bb): Likewise.
7781 * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
7782 peephole_pass, mono_arch_output_basic_block,
7783 mono_arch_emit_prolog): Likewise.
7784 * mini-arm.c (mono_arch_call_opcode, peephole_pass,
7785 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7786 mono_arch_emit_prolog): Likewise.
7787 (insert_after_ins): Delete.
7788 * aliasing.c (print_code_with_aliasing_information,
7789 mono_build_aliasing_information, mono_aliasing_deadce):
7790 Convert to new instruction lists.
7791 * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
7792 peephole_pass, NEW_INS, mono_arch_lowering_pass,
7793 mono_arch_local_regalloc, mono_arch_output_basic_block):
7795 (insert_after_ins): Delete.
7796 * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
7797 peephole_pass, mono_arch_output_basic_block): Convert to
7798 new instruction lists.
7799 * mini-codegen (InstList, inst_list_prepend,
7800 insert_after_ins): Delete.
7801 (insert_before_ins, get_register_force_spilling,
7802 get_register_spilling, free_up_ireg, free_up_reg,
7803 create_copy_ins, create_spilled_store, alloc_int_reg,
7804 alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
7805 to new instruction lists.
7806 * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
7807 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7808 mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
7809 (insert_after_ins): Delete.
7810 * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
7811 mono_arch_local_regalloc, mono_arch_output_basic_block,
7812 mono_arch_call_opcode): Convert to new instruction lists.
7813 (insert_after_ins): Delete.
7814 * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
7815 peephole_pass, mono_arch_output_basic_block,
7816 mono_arch_emit_prolog): Convert to new instruction lists.
7818 2008-01-11 Zoltan Varga <vargaz@gmail.com>
7820 * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
7822 * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
7825 * Makefile.am (version.h): Make this work with non-bash shells.
7827 2008-01-10 Zoltan Varga <vargaz@gmail.com>
7829 * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
7831 2008-01-08 Zoltan Varga <vargaz@gmail.com>
7833 * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in
7834 the InitializeArray optimization.
7836 2008-01-06 Zoltan Varga <vargaz@gmail.com>
7838 * mini.c driver.c: Don't include os/gc_wrapper.h.
7840 2008-01-05 Zoltan Varga <vargaz@gmail.com>
7842 * mini.c (print_jit_stats): Print GC statistics if available.
7844 2008-01-04 Zoltan Varga <vargaz@gmail.com>
7846 * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
7848 2007-12-29 Zoltan Varga <vargaz@gmail.com>
7850 * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
7852 2007-12-26 Zoltan Varga <vargaz@gmail.com>
7854 * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
7856 * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7858 * driver.c (mono_main): Ditto.
7860 2007-12-23 Zoltan Varga <vargaz@gmail.com>
7862 * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
7864 * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
7865 in the vtable can't be encoded.
7866 (compile_method): Ditto.
7868 2007-12-21 Zoltan Varga <vargaz@gmail.com>
7870 * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
7873 * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to
7876 * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
7877 the top LMF entry belongs to the current method.
7879 * mini.c: Update after renaming of mono_thread_get_pending_exception ().
7881 2007-12-20 Zoltan Varga <vargaz@gmail.com>
7883 * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
7885 * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
7887 * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
7889 * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
7891 * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
7893 * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double
7896 * basic-float.cs: Add an ulong->double cast test.
7898 2007-12-15 Zoltan Varga <vargaz@gmail.com>
7900 * mini.c (mono_method_to_ir): Fix a warning.
7902 2007-12-14 Zoltan Varga <vargaz@gmail.com>
7904 * mini-ops.h: Add OP_SWITCH.
7906 * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
7907 CEE_SWITCH in back-end code, use OP_SWITCH instead.
7909 2007-12-11 Geoff Norton <gnorton@novell.com>
7911 * mini-s390x.c: Minor change to the MAX() define to allow
7912 it to compile with other gcc versions.
7914 2007-12-11 Geoff Norton <gnorton@novell.com>
7917 * mini-s390x.c: Implement sext_i4 to fix the build on s390x
7919 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
7921 exceptions-arm.c (mono_arch_get_restore_context): Restore
7924 exceptions-arm.c (throw_exception): Save the frame pointer.
7925 This is a partial fix for #323747. Only the client side is
7928 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
7930 * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
7931 was using an unrelated variable to log the class which
7932 needed the cctor to be called. This was crashing on arm.
7934 2007-12-09 Robert Jordan <robertj@gmx.net>
7936 * mini-x86.c (mono_arch_emit_epilog):
7937 Consider all kinds of 64-bit types. Fixes #323114.
7939 2007-12-08 Zoltan Varga <vargaz@gmail.com>
7941 * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
7943 2007-12-07 Zoltan Varga <vargaz@gmail.com>
7945 * mini-amd64.c (peephole_pass): Add a missing instruction check.
7947 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7949 * mini.c: run type ctor before allocating an object, not only
7950 when running it's constructor method (fixes at least part of bug #342507).
7952 2007-12-07 Zoltan Varga <vargaz@gmail.com>
7954 * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
7956 * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
7957 * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable ()
7960 * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
7961 mono_generic_class_init_trampoline () the same as it is done with the other
7964 * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md
7965 aot-runtime.c aot-compiler.c: Implement AOT support.
7967 2007-12-07 Mark Probst <mark.probst@gmail.com>
7969 * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
7970 build for archs which don't have the vtable trampoline defined
7973 2007-12-07 Zoltan Varga <vargaz@gmail.com>
7975 * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
7977 * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
7979 * mini-trampolines.c (mono_get_trampoline_func): New helper function.
7981 * tramp-<ARCH>.c: Use the new helper function.
7983 2007-12-07 Mark Probst <mark.probst@gmail.com>
7985 * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
7986 trampoline call, which takes a vtable argument.
7988 * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
7989 OP_TRAMPCALL_VTABLEs like other calls.
7991 * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
7992 register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
7993 call. Implemented a support function which fetches the vtable
7994 from a register set.
7996 * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
7997 Implemented a generic class init trampoline, using the
7998 OP_TRAMPCALL_VTABLE opcode.
8000 * mini.c: Implemented static field access when sharing generic
8001 code. This implies initing the class using the new
8002 OP_TRAMPCALL_VTABLE call.
8004 2007-12-07 Mark Probst <mark.probst@gmail.com>
8006 * mini.c: Don't compile methods with sharing enabled if their
8007 classes are disabled for sharing.
8009 2007-12-06 Zoltan Varga <vargaz@gmail.com>
8011 * inssel.brg: Add a missing sign extension to the GETCHR and array access
8012 opcodes. Fixes #346563.
8014 * objects.cs: Add a new test.
8016 * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
8018 * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
8019 HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
8021 2007-12-06 Zoltan Varga <vargaz@gmail.com>
8023 * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
8025 2007-12-03 Zoltan Varga <vargaz@gmail.com>
8027 * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
8030 2007-12-02 Zoltan Varga <vargaz@gmail.com>
8032 * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
8034 * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation
8035 optimization in the AOT case.
8037 2007-11-30 Zoltan Varga <vargaz@gmail.com>
8039 * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
8041 * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
8043 * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
8045 * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
8047 * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
8048 is created by the inlined delegate ctor.
8050 * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
8052 * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
8054 2007-11-29 Zoltan Varga <vargaz@gmail.com>
8056 * cpu-x86.md: Fix the length of ckfinite.
8058 2007-11-28 Zoltan Varga <vargaz@gmail.com>
8060 * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
8062 * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
8063 (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
8065 * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
8067 * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the
8068 OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
8070 2007-11-28 Martin Baulig <martin@ximian.com>
8073 (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
8074 after creating the trampoline.
8076 2007-11-27 Zoltan Varga <vargaz@gmail.com>
8078 * aot-runtime.c (load_aot_module): Check runtime version if needed.
8080 * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
8083 * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
8084 instead of the calling method to help AOT.
8086 * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
8088 2007-11-26 Zoltan Varga <vargaz@gmail.com>
8090 * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
8093 2007-11-23 Zoltan Varga <vargaz@gmail.com>
8095 * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
8097 * aot-compiler.c (compile_method): Correct check for generic method definitions.
8098 (encode_method_ref): No need to handle generic method definitions specially.
8100 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
8102 * aot-runtime.c (decode_klass_ref): Clean this up and rename from
8105 * aot-compiler.c (encode_klass_ref): Clean this up and rename from
8107 (compile_method): Enable generic sharing.
8109 2007-11-22 Zoltan Varga <vargaz@gmail.com>
8111 * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
8112 (mini_method_compile): Add preliminary support for AOTing shared generic code.
8114 * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
8117 * mini-trampolines.c: Fix a warning.
8119 * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
8121 (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
8122 (generic_class_is_reference_type): Remove unused function.
8124 * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
8125 in the generic vtable trampoline case.
8127 * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
8129 * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
8130 return an AOT method based on a vtable slot.
8132 * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
8134 * mini.c (mini_get_vtable_trampoline): Export this.
8136 2007-11-22 Martin Baulig <martin@ximian.com>
8139 (MonoDebuggerInfo): Move `debugger_version' up.
8141 2007-11-22 Martin Baulig <martin@ximian.com>
8144 (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
8146 * mini-trampolines.c
8147 (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
8148 after compiling the method.
8150 2007-11-20 Martin Baulig <martin@ximian.com>
8153 (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
8154 (mono_debugger_remove_breakpoint): Likewise.
8155 (mono_debugger_check_breakpoints): Likewise.
8157 * debug-debugger.c: Implement the new breakpoint interface here.
8159 2007-11-18 Zoltan Varga <vargaz@gmail.com>
8161 * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
8162 CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
8164 * mini-x86.c (mono_arch_output_basic_block): Ditto.
8166 2007-11-17 Zoltan Varga <vargaz@gmail.com>
8168 * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
8170 * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
8173 * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
8176 * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
8177 returning a vtype in a register.
8179 * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
8180 here from the arch specific code.
8182 * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
8185 * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
8186 (mono_arch_emit_prolog): Increment maximum prolog size.
8188 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
8189 START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
8191 * mini-x86.c (get_call_info): Receive a MonoCompile instead of a
8192 MonoGenericSharingContext.
8194 * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a
8195 MonoGenericSharingContext. Allocate memory from the cfg mempool.
8197 2007-11-15 Mark Probst <mark.probst@gmail.com>
8199 * mini.c, mini.h, generic-sharing.c: Functions for producing code
8200 which extract fields out of the runtime generic context. Full
8201 sharing of the NEWARR opcode.
8203 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8205 * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
8206 --enable-minimal=ssa.
8208 2007-11-13 Zoltan Varga <vargaz@gmail.com>
8210 * mini-trampolines.c (mono_delegate_trampoline): Update after
8211 mono_marshal_get_delegate_invoke () signature change.
8213 2007-11-13 Mark Probst <mark.probst@gmail.com>
8215 * mini.c: Removed the shared context in favor of the generic
8216 sharing context. Allocate the MonoJitInfo structure with room for
8217 the generic sharing context if it's needed.
8219 * mini.h: Remove MonoGenericSharingContext declaration. It's in
8220 domain-internals.h now.
8222 * mini-x86.c: Pass the generic sharing context to get_call_info ().
8224 * generic-sharing.c: Several changes for working without a shared
8225 context and instead operating on open types instead.
8227 2007-11-12 David S. Miller <davem@davemloft.net>
8229 * inssel-sparc.brg: Fix double instruction emit.
8231 2007-11-12 Zoltan Varga <vargaz@gmail.com>
8233 * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array
8234 Get/Set/Address methods.
8236 * mini.c debug-debugger.c mini-trampolines.c: Update after
8237 mono_marshal_get_delegate_invoke signature change.
8239 2007-11-12 Rodrigo Kumpera <rkumpera@novell.com>
8241 * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
8242 This can happens with dynamic methods. Fixes the other bug in #322722.
8244 2007-11-12 Rodrigo Kumpera <rkumpera@novell.com>
8246 * tramp-arm.c (mono_arch_patch_callsite): Support patching
8249 * mini-arm.c (arm_patch): Implement patching of BX call
8250 sequence. Fixes one of the bugs in #322722.
8252 2007-11-03 David S. Miller <davem@huronp11.davemloft.net>
8254 * mini-sparc.c (mono_arch_flush_icache): Make more efficient
8255 under Linux. We only need to flush every 32-byte cache line.
8257 2007-11-07 Massimiliano Mantione <massi@ximian.com>
8260 move_basic_block_to_end: Add branches when needed, eventually creating
8262 optimize_branches: added a parameter that tells if it's ok to create
8263 new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
8264 and avoid calling move_basic_block_to_end when it's not ok.
8267 2007-11-07 Mark Probst <mark.probst@gmail.com>
8269 * mini.c: Abort inlining call to InitializeArray if something
8270 looks wrong. Let the icall handle it, which now has proper safety
8273 2007-11-05 Rodrigo Kumpera <rkumpera@novell.com>
8275 * mini.c (mono_spill_call): add support for soft-float.
8277 * mini.c (mono_method_to_ir): add support for soft-float
8278 to inlined functions that return float.
8280 * mini.c (mono_method_to_ir): add support for soft-float
8281 to cee_stsfld opcode on float fields.
8283 2007-11-05 Geoff Norton <gnorton@novell.com>
8285 * mini-x86.h: Fix the structure access for X86 Leopard.
8288 2007-11-05 Martin Baulig <martin@ximian.com>
8290 * mini-trampolines.c
8291 (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
8292 after compiling the method to notify the debugger.
8294 2007-11-05 Martin Baulig <martin@ximian.com>
8296 * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
8298 2007-11-02 Zoltan Varga <vargaz@gmail.com>
8300 * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
8301 David Miller <davem@davemloft.net>. Allow larger offsets in branches.
8303 2007-11-01 Zoltan Varga <vargaz@gmail.com>
8305 * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
8306 native-to-managed wrappers.
8308 2007-11-01 Geoff Norton <gnorton@novell.com>
8310 * mini-ppc.h, mini-x86.h: Handle Leopards renaming of some structure
8313 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
8315 * mini.c, mini-x86.c: when getting back from unmanaged code
8316 to managed via a marshaled delegate we also need to set the
8319 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
8321 * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
8324 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8326 * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
8327 let the debugger or other external agents to tell the JIT when
8328 a sw breakpoint has been inserted in the code that the JIT needs
8329 to be able to inspect.
8331 2007-10-31 Martin Baulig <martin@ximian.com>
8334 (MonoDebuggerInfo): Remove `runtime_class_init'.
8336 2007-10-30 Martin Baulig <martin@ximian.com>
8339 (mono_debugger_thread_created): Added `MonoThread *' argument.
8340 (mono_debugger_extended_notification): New public method.
8341 (mono_debugger_trampoline_compiled): New public method.
8344 (MonoDebuggerThreadInfo): Added `thread' and
8345 `extended_notifications' fields.
8348 (debugger_executable_code_buffer): New static variable.
8351 (MonoDebuggerInfo): Added `executable_code_buffer',
8352 `executable_code_buffer_size', `breakpoint_info_area',
8353 `breakpoint_table' and `breakpoint_table_size'.
8355 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
8357 * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
8358 that IP either is an unused value or the vtable pointer. IMT
8359 calls use vtable + offset now. Reduced by almost half the size
8362 2007-10-26 Jonathan Chambers <joncham@gmail.com>
8364 * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
8365 defines to access param registers. Replace long usage with
8366 gsize as sizeof(long) != sizeof(void*) on Win64.
8368 * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
8369 on Win64. Fix intrinsic, use _AddressOfReturnAddress
8370 instead of non-existant _GetAddressOfReturnAddress.
8372 * tramp-amd64.c: Use AMD64_ARG_REG# defines to access
8373 param registers. Save/restore %rdi and %rsi in MonoLMF.
8375 * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access
8376 param registers. Modify (throw_exception) signature to take
8377 %rdi and %rsi on Win64.
8379 Code is contributed under MIT/X11 license.
8381 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8383 * helpers.c: unlink debugging output files.
8385 2007-10-25 Zoltan Varga <vargaz@gmail.com>
8387 * mini.c: Move mono_create_ftnptr () to object.c.
8389 2007-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8391 * helpers.c (mono_disassemble_code): MonoCompile parameter is now
8392 optional. This function can now be used to disassemble code generated
8393 outside the JIT such as trampolines and IMT thunks.
8395 * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
8397 * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
8398 vtable pointer from a ldr instruction.
8400 * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
8401 new IMT call sequence.
8403 * mini-arm.c (mono_arch_output_basic_block): emit the IMT
8404 call sequence for interface invocations.
8406 * mini-arm.c (mono_arch_emit_imt_argument): added, required
8407 for imt support. This function is empty since IMT on ARM requires no
8408 special handling on the IR side.
8410 * mini-arm.c (mono_arch_find_imt_method): added, required for
8413 * mini-arm.c (mono_arch_find_this_argument): added, required
8416 * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
8417 a ldr instruction to load a value stored in the code stream.
8419 * mini-arm.c (mono_arch_build_imt_thunk):added, required
8423 2007-10-23 Zoltan Varga <vargaz@gmail.com>
8425 * mini.c (mini_init): Install the jump trampoline callback.
8427 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8429 * mini-trampolines.c: handle synchronized methods with the common
8430 vtable trampoline (bug #335601).
8432 2007-10-17 Zoltan Varga <vargaz@gmail.com>
8434 * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
8436 * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
8439 * mini-ia64.h mini-ia64.c: Add support for IMT.
8441 * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
8442 prolog. Fixes #331958.
8444 2007-10-15 Zoltan Varga <vargaz@gmail.com>
8446 * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
8448 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8450 * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
8453 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8455 * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
8458 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
8460 * mini-x86.c, mini-x86.h: x86 support for the common vtable
8463 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
8465 * mini-trampolines.c: changed the magic rampoline to understand
8466 the common vtable trampoline method: the method to invoke is
8467 determined by the vtable displacement of the call.
8469 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8471 * mini.c, mini.h: register the common vtable trampoline if the
8472 architecture supports it.
8474 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8476 * cpu-amd64.md: use the correct max length for tls_get.
8478 2007-10-14 Zoltan Varga <vargaz@gmail.com>
8480 * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
8481 CEE_STELEM_ANY. Fixes #333696.
8483 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
8485 * exceptions-x86.c: provide more graceful handling of the case where
8486 we followed a bogus function pointer from managed code (bug #332866).
8488 2007-10-11 Mark Probst <mark.probst@gmail.com>
8490 * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
8491 replaces the generic_shared flag and will carry more information
8494 * generic-sharing.c: Added mini_type_stack_size() which allows
8495 allows open types if given a generic sharing context.
8496 mini_get_basic_type_from_generic() takes a
8497 MonoGenericSharingContext* instead of a MonoCompile* now.
8499 * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
8500 mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
8501 mini-sparc.c, mini-x86.c: Trivial changes required by the two
8502 changes above. Just passing arguments through to the right
8505 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8507 * mini-arm.c: unify the call emission to emit_code_seq().
8509 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
8511 * tramp-arm.c: reduced the trampoline size.
8513 2007-10-10 Mark Probst <mark.probst@gmail.com>
8515 * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
8516 variable handling out of arch-specific code.
8518 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
8520 * mini-arm.c: implemented fast delegate dispatch.
8522 2007-10-09 Zoltan Varga <vargaz@gmail.com>
8524 * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
8525 that fp elimination is turned off if the space required by locals is too
8528 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8530 * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
8531 ARM to the new style trampoline.
8533 2007-10-09 Zoltan Varga <vargaz@gmail.com>
8535 * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
8537 * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
8539 2007-10-09 Martin Baulig <martin@ximian.com>
8542 (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
8543 `field_info_offset_offset'.
8545 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
8547 * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
8548 removed more internal usage of the r11 register and made it available
8549 to the register allocator.
8551 2007-10-08 Mark Probst <mark.probst@gmail.com>
8553 * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
8554 when sharing generics and treat type variables as references.
8556 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8558 * mini-ppc.c: started removing the internal uses of register r11
8559 to eventually allow the register allocator to manage it as an
8560 additional available register.
8562 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
8564 * tramp-amd64.c: fixed memory corruption in the trampoline generation.
8566 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
8568 * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
8569 specific trampolines as they are not performance critical as a jump
8570 target (maybe align as before only for AOT code?). This saves about
8571 200 KB of native code on x86 for monodevelop startup.
8573 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8575 * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
8576 monodevelop startup.
8578 2007-10-06 Zoltan Varga <vargaz@gmail.com>
8580 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
8582 * mini-sparc.h mini-sparc.c: Implement IMT support.
8584 * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
8585 its smaller and doesn't clobber sparc_g1.
8587 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
8589 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8591 * mini-ppc.c: optimized the size of the IMT thunks a bit.
8593 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
8595 * mini-ppc.c: implemented fast delegate invocation.
8597 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8599 * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
8601 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8603 * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
8604 code to the new style trampoline in preparation for IMT support.
8606 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8608 * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
8609 systems already. This also reduces the specific trampiline sizes and
8610 prepares for the use of r12 as the IMT identifier register.
8612 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8614 * mini-mips.h: endianess fix (simplified from a patch by
8615 Thomas Kunze <thommy@tabao.de>, bug #323737).
8617 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8619 * exceptions-ppc.c, mini-ppc.h: refactor to use macros
8620 to access ucontext fields and enable netbsd support
8621 (partially from Magnus Henoch <mange@freemail.hu>).
8623 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8625 * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
8626 use the preprocessor from the CPP env var if it is set.
8628 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8630 * mini-trampolines.c: fixed an assertion and moved it earlier in the
8631 code, before interface_offset gets used.
8633 2007-10-02 Zoltan Varga <vargaz@gmail.com>
8635 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
8636 mono_class_setup_vtable () before accessing klass->vtable.
8638 2007-10-01 Zoltan Varga <vargaz@gmail.com>
8640 * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
8643 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8645 * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
8646 IMT slots (this saves hundreds of KB of memory in programs like
8647 IronPython and Monodevelop).
8649 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8651 * mini.c: print the delegate counter.
8653 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
8655 * mini-x86.c: make it easier to enable the debugging code for IMT
8658 2007-09-28 Martin Baulig <martin@ximian.com>
8661 (MonoDebuggerMetadataInfo): Add `klass_image_offset',
8662 `mono_method_klass_offset' and `mono_method_token_offset'.
8664 2007-09-20 Mark Probst <mark.probst@gmail.com>
8666 * mini.c: First generics sharing implementation. Can only share
8667 in very simple cases. If sharing doesn't work it falls back to
8668 dedicated compilation.
8670 * mini.h: Flag in MonoCompile to specify whether generic
8671 compilation is shared. Flags enum for marking which generic inst
8672 of a context is used. Prototypes for helper functions.
8674 * generic-sharing.c: Helper functions for generic method sharing.
8676 * optflags-def.h: Optimization flag (gshared) for enabling generic
8677 method sharing added.
8679 * Makefile.am: generic-sharing.c added.
8681 2007-09-19 Daniel Nauck <dna@mono-project.de>
8683 * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
8685 2007-09-19 Massimiliano Mantione <massi@ximian.com>
8686 * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
8689 2007-09-19 Martin Baulig <martin@ximian.com>
8691 * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
8692 mono_debug_cleanup() is now part of mono_cleanup().
8694 2007-09-18 Zoltan Varga <vargaz@gmail.com>
8696 * driver.c (mono_main): Fix a warning.
8698 2007-09-17 Zoltan Varga <vargaz@gmail.com>
8700 * aot-compiler.c: Optimize various parts when processing large assemblies.
8703 * mini.c (mono_patch_info_hash): Improve hash function.
8705 2007-09-14 Jonathan Chambers <joncham@gmail.com>
8707 * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
8709 Code is contributed under MIT/X11 license.
8711 2007-09-14 Zoltan Varga <vargaz@gmail.com>
8713 * mini.c (mini_init): Fix a leak.
8715 * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
8717 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8719 * mini.c: redirect string.InternalAllocStr() to the managed allocator.
8721 2007-09-14 Zoltan Varga <vargaz@gmail.com>
8723 * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
8725 2007-09-13 Zoltan Varga <vargaz@gmail.com>
8727 * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
8730 * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
8732 * mini.c (handle_alloc): Enable managed allocators in AOT code.
8734 * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
8736 * aot-runtime.c (decode_patch_info): Ditto.
8738 2007-09-12 Jonathan Chambers <joncham@gmail.com>
8740 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
8741 static case. Cache delegates in architecture specific code,
8742 based on number of parameters.
8744 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
8745 in architecture specific code, based on number of parameters.
8747 * mini-trampolines.c (mono_delegate_trampoline): Architecture specific
8748 caching happen in architecture specific code now.
8750 Code is contributed under MIT/X11 license.
8752 2007-09-12 Jonathan Chambers <joncham@gmail.com>
8754 * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
8755 mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
8756 mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
8758 Code is contributed under MIT/X11 license.
8760 2007-05-15 Massimiliano Mantione <massi@ximian.com>
8761 * mini.c: (mono_thread_abort) Fixed bug #82416.
8763 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8765 * mini.: hook the new managed GC allocation feature into the JIT.
8767 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
8769 * mini.c: implementation for the new runtime tls opcode.
8771 2007-09-11 Martin Baulig <martin@ximian.com>
8774 (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
8775 `mono_method_inflated_offset'.
8777 2007-09-07 Zoltan Varga <vargaz@gmail.com>
8779 * driver.c mini.h mini.c: Add a new devel command line option for injecting
8780 async exceptions into a method.
8782 * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
8783 purpose of testing whenever the unwinder works at every instruction.
8785 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8787 * mini.c: check accessibility of method used in ldftn (fixes
8790 2007-09-04 Zoltan Varga <vargaz@gmail.com>
8792 * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
8794 * inssel.brg: Fix a warning.
8796 2007-09-03 Martin Baulig <martin@ximian.com>
8798 * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
8799 now takes the `main_method' as argument.
8801 2007-09-02 Zoltan Varga <vargaz@gmail.com>
8803 * cpu-sparc.md (endfilter): Add missing src1:i argument.
8805 2007-08-30 Jonathan Chambers <joncham@gmail.com>
8807 * driver.c: include the cil-coff.h header on Windows.
8809 Code is contributed under MIT/X11 license.
8811 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
8813 * mini.c, driver.c: don't include the cil-coff.h header.
8815 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8817 * mini.c: flag places that needs fixes fo soft-float support.
8819 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
8821 * mini.h, inssel-float.brg: fix soft-float constant loads on big
8822 endian systems (partially from Dean Jenkins, bug #81924).
8824 2007-08-28 Mark Probst <mark.probst@gmail.com>
8826 * mini.c (check_linkdemand): Remove embedded reference object in
8827 call to LinkDemandSecurityException.
8828 (mono_jit_compile_method_inner): Call LinkDemandSecurityException
8829 with an IntPtr instead of a reference object.
8831 2007-08-28 Zoltan Varga <vargaz@gmail.com>
8833 * mini.c (handle_initobj): Handle alignment properly.
8835 * inssel.brg (mini_emit_memset): Ditto.
8837 * inssel.brg (mini_emit_memcpy): Ditto.
8839 * inssel-sparc.brg: Ditto.
8841 * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
8843 2007-08-26 Zoltan Varga <vargaz@gmail.com>
8845 * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
8846 exceptions raised in unmanaged code. Fixes part of #82594.
8848 2007-08-24 Mark Probst <mark.probst@gmail.com>
8850 * mini.c (mono_method_to_ir), declsec.c
8851 (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
8853 2007-08-22 Martin Baulig <martin@ximian.com>
8856 (MonoDebuggerThreadInfo): New typedef.
8857 (mono_debugger_thread_table): New global variable.
8858 (mono_debugger_thread_created): New public function.
8859 (mono_debugger_thread_cleanup): New public function.
8863 - removed `get_current_thread' and `lookup_assembly'.
8864 - removed `data_table'.
8865 - added `thread_table'.
8868 (mono_thread_start_cb): Call mono_debugger_thread_created().
8869 (mono_thread_attach_cb): Likewise.
8870 (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
8871 (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
8874 * driver.c (mono_main): Move mono_debug_init() up, before calling
8875 mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
8877 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8879 * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
8880 together when passing several arguments of type double (gives a small
8881 speedup and saves a few bytes of generated code).
8883 2007-08-20 Jb Evain <jbevain@novell.com>
8885 * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
8887 2007-08-20 Jb Evain <jbevain@novell.com>
8889 * mini.c (mono_method_to_ir): throw MethodAccessException
8890 and FieldAccessException instead of InvalidProgramException.
8892 2007-08-20 Mark Probst <mark.probst@gmail.com>
8894 * mini.c: CoreCLR security checks.
8896 * mini.h: Removed MonoSecurityMode (moved to
8897 metadata/security-manager.h) and mono_security_mode global var
8898 (replaced by set/get functions in security-manager.h).
8900 * driver.c: Added "core-clr-test" security mode for testing. Used
8901 set-function for setting security mode.
8903 2007-08-17 Mark Probst <mark.probst@gmail.com>
8905 * mini.c: MonoJitInfo's are freed hazardously now. Statistics for
8906 the new jit_info_table.
8908 * driver.c: Test code for the new jit_info_table (enabled by the
8909 define MONO_JIT_INFO_TABLE_TEST).
8911 2007-08-14 Zoltan Varga <vargaz@gmail.com>
8913 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
8914 detection of call <REG> instruction sequence. Fixes build on freebsd.
8916 2007-08-13 Zoltan Varga <vargaz@gmail.com>
8918 * mini-exceptions.c: Fix a warning.
8920 2007-08-11 Zoltan Varga <vargaz@gmail.com>
8922 * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
8923 stack overflow handling code on amd64 too.
8925 * mini-exceptions.c (mono_setup_altstack): Make this use
8926 mono_thread_get_stack_bounds ().
8928 * mini-x86.h: Disable sigaltstack on solaris x86.
8930 2007-08-10 Zoltan Varga <vargaz@gmail.com>
8932 * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
8934 2007-08-10 Geoff Norton <gnorton@customerdna.com>
8936 * tramp-x86.c: Remove some unneeded alignment changes on Apple. Fixes #82387.
8938 2007-08-08 Zoltan Varga <vargaz@gmail.com>
8940 * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
8942 * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
8944 2007-08-03 Neale Ferguson <neale@sinenomine.net>
8946 * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
8949 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
8951 * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
8952 to be emitted (bug #82281).
8954 2007-08-01 Martin Baulig <martin@ximian.com>
8956 Merged the `debugger-dublin' branch.
8958 * debug-debugger.h (MonoDebuggerInfo):
8959 Removed the `old_*' compatibility entries.
8960 Added `debugger_version' and `data_table'.
8961 Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
8962 Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
8965 (MiniDebugMethodBreakpointInfo): Add `address_list'.
8966 (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
8967 instead of a `gconstpointer'.
8968 (mono_debugger_insert_method_breakpoint): Return a
8969 `MonoDebugMethodAddressList *'.
8971 2007-06-28 Martin Baulig <martin@ximian.com>
8973 * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
8975 2007-08-01 Zoltan Varga <vargaz@gmail.com>
8977 * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using
8978 __builtin_frame_address () since it is broken on older gcc versions.
8980 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8982 * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
8983 on the stack overflow handling and made the managed stack overflows
8984 catchable in most cases using soft guard pages.
8985 * exceptions-x86.c: added code to restore the protection in the soft
8986 guard pages at the end of exception handling.
8988 2007-07-31 Zoltan Varga <vargaz@gmail.com>
8990 * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
8992 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8994 * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
8997 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8999 * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
9000 signal handling support until it has been ported to the new mechanism.
9001 * mini.c: fixed stack overflow detection and use the new
9002 architecture code to handle signals on the altstack.
9004 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9006 * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
9007 stack overflows on the alt stack.
9009 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
9011 * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
9012 stack overflows on the alt stack.
9014 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
9016 * exceptions-ppc.c: cleanup preparing for altstack support.
9018 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9020 * exceptions-arm.c: cleanup preparing for altstack support.
9022 2007-07-27 Mark Probst <mark.probst@gmail.com>
9024 * mini.c (print_jit_stats): Output hazard pointer stats.
9026 2007-07-26 Mark Probst <mark.probst@gmail.com>
9028 * driver.c, mini.c: Replaced security mode flags with a single
9031 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9033 * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
9035 2007-07-25 Mark Probst <mark.probst@gmail.com>
9037 * mini.c, mini.h, driver.c (mono_main): Added command-line flag
9038 (which doesn't do anything yet) for activating Core CLR
9039 (Silverlight) security.
9041 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
9043 * mini-codegen.c: work around a possible gcc bug on arm.
9045 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9047 * driver.c, mini-x86.h, mini-amd64.h: print a nice error
9048 message for platforms that don't support AOT compilation.
9050 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
9052 * mini.h, mini.c, driver.c: temporary smcs hack.
9054 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
9056 * mini-arm.h, mini-arm.c: arm EABI fixes.
9058 2007-07-22 Zoltan Varga <vargaz@gmail.com>
9060 * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
9063 * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
9064 trampolines taking a method argument.
9066 * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
9068 * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
9069 * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
9071 * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
9072 JIT compilation throws an exception. Fixes #82050.
9074 2007-07-19 Mark Probst <mark.probst@gmail.com>
9076 * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
9077 with the MONO_EXCEPTION_ defines.
9079 2007-07-17 Zoltan Varga <vargaz@gmail.com>
9081 * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
9084 * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
9085 the cause of an assertion.
9087 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
9089 * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
9092 2007-07-15 Zoltan Varga <vargaz@gmail.com>
9094 * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
9095 assert. Should fix #82103.
9097 2007-07-14 Zoltan Varga <vargaz@gmail.com>
9099 * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
9100 here too. Fixes #82095.
9102 * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
9105 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
9107 * mini-amd64.h: Enable IMT for amd64.
9109 * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
9111 2007-07-12 Zoltan Varga <vargaz@gmail.com>
9113 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
9115 2007-07-12 Mark Probst <mark.probst@gmail.com>
9117 * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
9118 as soon as check_linkdemand sets an exception_type.
9120 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9122 * mini-x86.c: fixed offsets for IMT call sequence.
9123 * mini-x86.h: enable IMT again.
9125 2007-07-11 Zoltan Varga <vargaz@gmail.com>
9127 * trace.c (mono_trace_enter_method): Decode MonoType too.
9129 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
9131 * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
9133 * mini-amd64.c: Add preliminary IMT implementation.
9135 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
9137 * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
9138 understand the new IMT-base interface invocation (thanks to
9139 Daniel Nauck for the report and the remote debugging session).
9141 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9143 * mini-x86.c: size and speed optimizations for the IMT bsearch.
9145 2007-07-11 Zoltan Varga <vargaz@gmail.com>
9147 * Makefile.am (aotcheck): Make this actually use the AOTed code.
9149 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
9151 * mini-trampolines.c: implement AOT IMT support.
9152 * mini-x86.h: enable IMT support for wider testing.
9154 2007-07-10 Zoltan Varga <vargaz@gmail.com>
9156 * inssel.brg (emit_imt_argument): Add aot support here.
9158 * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
9160 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9162 * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
9163 of the IMT implementation, partially from massi, with my
9164 implementation of the bsearch sequence. Disabled by default until
9165 the AOT code is implemented.
9167 2007-07-10 Zoltan Varga <vargaz@gmail.com>
9169 * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
9171 * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
9173 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9175 * inssel.brg, mini.c, mini.h, mini-trampolines.c:
9176 arch-independent IMT JIT code from Massimiliano
9177 Mantione (massi@ximian.com) with small cleanups from me.
9179 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9181 * Makefile.am: fix svn invocation to get the svn revision to be
9182 independent of the local language (build fix).
9184 2007-07-09 Mark Probst <mark.probst@gmail.com>
9186 * mini.c (inline_method): Reset cfg->exception_type if the
9187 inlining is aborted. Fixes: 82049.
9189 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
9191 * mini.c: remove assert from exception handling code when exception_ptr
9194 2007-07-05 Zoltan Varga <vargaz@gmail.com>
9196 * mini.c (mono_codegen): Add an assert.
9198 * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method
9199 enter and leave code.
9200 * mini-amd64.c (mono_arch_emit_prolog): Likewise.
9202 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9204 * mini-ppc.c: fixed memory corruption for localloc(0)
9207 2007-07-05 Zoltan Varga <vargaz@gmail.com>
9209 * mini.c: Fix warnings.
9211 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9213 * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
9214 to emit better double->int conversions.
9216 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9218 * mini.c: the provided Min/Max optimizations are valid for unisgned
9221 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
9223 * mini.c (can_access_method, can_access_field): methods moved to metadata/class.c and renamed to mono_method_can_access_method and mono_method_can_acesss_field
9225 2007-06-28 Miguel de Icaza <miguel@novell.com>
9227 * mini.c (mono_running_on_valgrind): Add support for reporting the
9228 method and its boundaries to valgrind.
9230 2007-06-28 Martin Baulig <martin@ximian.com>
9232 * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
9234 2007-06-25 Zoltan Varga <vargaz@gmail.com>
9236 * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
9238 * generic.2.cs: Add new test case.
9240 2007-06-25 Martin Baulig <martin@ximian.com>
9242 Merged the `debugger-dublin' branch.
9245 (mono_debugger_insert_method_breakpoint): New public method.
9246 (mono_debugger_remove_method_breakpoint): Likewise.
9247 (mono_debugger_check_breakpoints): New static method.
9248 (mono_debug_close_method): Call mono_debugger_check_breakpoints().
9250 * debug-debugger.h (MonoDebuggerInfo):
9251 Renamed (to keep backward compatibility in the vtable):
9252 `insert_breakpoint' -> `old_insert_breakpoint'.
9253 `remove_breakpoint' -> `old_remove_breakpoint'.
9254 `create_string' -> `old_create_string'.
9255 `lookup_class' -> `old_lookup_class'.
9256 `lookup_type' -> removed; changed into a dummy field.
9257 `lookup_assembly' -> `old_lookup_assembly'.
9258 Added (same functionality, but different signature):
9259 `create_string', `lookup_class', `lookup_assembly'
9261 `get_method_addr_or_bpt', `remove_method_breakpoint',
9262 `runtime_class_init'.
9264 * debug-debugger.c: Merged the `debugger-dublin' branch.
9266 2007-06-23 Zoltan Varga <vargaz@gmail.com>
9268 * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
9270 (peephole_pass): Likewise.
9272 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9274 * driver.c: hopefully make setaffinity work also for ancient
9277 2007-06-22 Atsushi Enomoto <atsushi@ximian.com>
9279 * driver.c : win32 build fix.
9281 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
9283 * driver.c: check for the MONO_NO_SMP env var and bind to a single
9284 processor if it is set.
9286 2007-06-21 Martin Baulig <martin@ximian.com>
9288 * debug-mini.h: New file.
9291 (mono_debugger_insert_breakpoint_full): Moved here from
9292 ../metadata/mono-debug-debugger.c.
9293 (mono_debugger_remove_breakpoint): Likewise.
9294 (mono_debugger_breakpoint_callback): Likewise.
9296 2007-06-15 Raja R Harinath <rharinath@novell.com>
9298 * jit-icalls.c (mono_helper_compile_generic_method): Update to
9299 changes in MonoGenericClass.
9301 2007-06-14 Zoltan Varga <vargaz@gmail.com>
9303 * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
9305 2007-06-14 Raja R Harinath <rharinath@novell.com>
9307 * jit-icalls.c (mono_helper_compile_generic_method): Update to
9308 removal of MonoGenericMethod.
9310 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9312 * mini-exceptions.c: hooks for the exception events profiling API.
9314 2007-06-14 Randolph Chung <tausq@debian.org>
9316 * Makefile.ma: Add hppa target.
9317 * mini-arch.h: Include mini-hppa.h
9318 * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
9319 mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
9320 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9322 2007-06-14 Randolph Chung <tausq@debian.org>
9324 * inssel.brg: Add rules for "chained" compare-branch operations so that
9325 a single compare op can affect multiple branches. Adjust cost for
9326 OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
9327 * inssel-long32.brg: Update rules to use compare-branch macros. Adjust
9328 cost for some rules so that they can more easily be overridden by
9329 per-arch rules (with fixes from lupus).
9330 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9332 2007-06-13 Randolph Chung <tausq@debian.org>
9334 * mini-ops.h: Reorder branch ops so that they match the order of the
9335 corresponding CEE_* ops. The code expects them this way.
9336 Add new ops for HPPA target.
9337 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9339 2007-06-13 Randolph Chung <tausq@debian.org>
9341 * mini-exceptions.c: Handle cases where the stack grows towards
9343 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9345 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9347 * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
9349 * driver.c: explain where a non-matching corlib is found.
9351 2007-06-13 Mark Probst <mark.probst@gmail.com>
9353 * mini.c (print_jit_stats): Output dynamic code allocation stats.
9355 2007-06-10 Sanghyeon Seo <sanxiyn@gmail.com>
9357 * mini-exceptions.c: Generate a method profile leave event during
9358 an exception to ensure that the profiler gets notified.
9360 2007-06-07 Zoltan Varga <vargaz@gmail.com>
9362 * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir
9365 * cpu-amd64.md: Add long_and/or/xor opcodes.
9367 2007-06-06 Wade Berrier <wberrier@novell.com>
9369 * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
9370 (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction
9371 length of instruction shr_imm (expected 8, got 10)
9373 2007-06-06 Zoltan Varga <vargaz@gmail.com>
9375 * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
9377 2007-06-06 Mark Probst <mark.probst@gmail.com>
9379 * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9380 MonoInternalHashTable again (fixed bug in the internal hash table
9383 2007-06-06 Mark Probst <mark.probst@gmail.com>
9385 * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
9386 Have to figure out what makes it crash the SWF regression.
9388 2007-06-05 Zoltan Varga <vargaz@gmail.com>
9390 * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
9392 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9394 * mini.c: optimize out the type check when storing null in a
9397 2007-06-04 Mark Probst <mark.probst@gmail.com>
9399 * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9400 MonoInternalHashTable.
9402 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9404 * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
9405 signed integer methods.
9407 2007-06-02 Zoltan Varga <vargaz@gmail.com>
9409 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case
9410 permanently since the current approach doesn't work.
9412 2007-06-02 Zoltan Varga <vargaz@gmail.com>
9414 * inssel.brg (stmt): Only call delegate->invoke_impl if
9415 MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
9417 2007-06-01 Zoltan Varga <vargaz@gmail.com>
9419 * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
9420 the sreg2==rdx case.
9422 * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
9423 account if it contains a rex prefix.
9424 (peephole_pass): Handle OP_FMOVE as well.
9426 2007-06-01 Zoltan Varga <vargaz@gmail.com>
9428 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
9429 as it causes regressions.
9431 2007-05-31 Zoltan Varga <vargaz@gmail.com>
9433 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
9434 static case as well.
9436 * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
9438 * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9439 (mono_arch_get_this_arg_from_call): Ditto.
9441 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
9443 * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
9446 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9447 (mono_arch_get_this_arg_from_call): Ditto.
9449 * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
9451 * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
9452 try to create optimized invoke code and use that for further invocations.
9453 Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
9455 * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
9457 2007-05-29 Rodrigo Kumpera <kumpera@gmail.com>
9459 * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
9460 sealed classes or methods.
9461 *devirtualization.cs: tests for the new optimization
9463 2007-05-29 Zoltan Varga <vargaz@gmail.com>
9465 * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
9466 by the update_volatile () function.
9468 2007-05-27 Zoltan Varga <vargaz@gmail.com>
9470 * driver.c (mono_main): Call g_thread_init () early since newer glib versions
9473 * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
9475 2007-05-24 Jonathan Chambers <joncham@gmail.com>
9477 * mini.c: Add configure checks for header files.
9478 * mini-x86.c: Add configure checks for header files.
9479 * trace.c: Add configure checks for header files.
9480 * aot-runtime.c: Add configure checks for header files.
9481 * aot-compiler.c: Add configure checks for header files.
9482 * driver.c: Add configure checks for header files.
9483 * mini-codegen.c: Add configure checks for header files.
9485 Code is contributed under MIT/X11 license.
9487 2007-05-22 Zoltan Varga <vargaz@gmail.com>
9489 * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
9490 icompare_imm -128 + op_iclt. Fixes #81703.
9492 2007-05-19 Zoltan Varga <vargaz@gmail.com>
9494 * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
9496 2007-05-15 Massimiliano Mantione <massi@ximian.com>
9498 * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
9499 inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
9500 so that all isinst checks now use "interface_bitmap".
9502 2007-05-15 Zoltan Varga <vargaz@gmail.com>
9504 * cpu-amd64.md (jmp): Fix a warning.
9506 * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
9508 * basic.cs: Add new regression test.
9510 * basic.cs: Remove test which is now in basic-long.cs.
9512 * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
9514 * basic-long.cs: Add new test.
9516 2007-05-13 Zoltan Varga <vargaz@gmail.com>
9518 * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
9520 2007-05-12 Zoltan Varga <vargaz@gmail.com>
9522 * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
9524 * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
9527 * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception
9528 throwing code a bit.
9530 * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of
9531 the exception throwing code a bit.
9533 * mini-x86.c (get_call_info): Allocate result from a mempool.
9535 2007-05-11 Zoltan Varga <vargaz@gmail.com>
9537 * aot-compiler.c (find_typespec_for_class): Fix the assert.
9539 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
9541 * mini.h (MonoCompile): Add 'token_info_hash' field.
9543 * mini.c: Save token->method associations during compilation so the AOT
9544 compiler can use it.
9546 * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
9547 which reference generic classes and methods.
9549 2007-05-10 Zoltan Varga <vargaz@gmail.com>
9551 * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
9553 * aot-compiler.c (compile_method): Fix a typo in a comment.
9555 * aot-runtime.c (decode_cached_class_info): Skip generic types.
9557 * aot-compiler.c: Add minimal support for AOTing generic code by skipping
9560 * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
9562 2007-05-09 Zoltan Varga <vargaz@gmail.com>
9564 * mini.h (MonoCompile): Add 'args' field.
9566 * mini.c (mono_compile_create_vars): Store variables representing the arguments
9569 * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
9571 2007-05-08 Zoltan Varga <vargaz@gmail.com>
9573 * mini.c (mono_compile_get_interface_var): Remove this unused function.
9575 * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
9577 * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
9578 opcodes for some opcodes.
9580 * mini.h *.brg *.c: Use the new opcodes.
9582 2007-05-08 Massimiliano Mantione <massi@ximian.com>
9584 * mini.h: Bumped aot revision.
9586 * inssel.brg: modified code generation of type checks for interfaces
9587 to use the new "MonoClass.interface_bitmap" instead of the old
9588 "MonoClass.interface_offsets".
9590 2007-04-30 Zoltan Varga <vargaz@gmail.com>
9592 * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
9594 2007-04-29 Zoltan Varga <vargaz@gmail.com>
9596 * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
9599 2007-04-27 Neale Ferguson <neale@sinenomine.net>
9601 * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
9603 2007-04-27 Wade Berrier <wberrier@novell.com>
9605 * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in
9606 mini.h) to fix build.
9608 2007-04-26 Zoltan Varga <vargaz@gmail.com>
9610 * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
9612 * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
9613 causes the corlib unit tests to fail.
9615 2007-04-25 Zoltan Varga <vargaz@gmail.com>
9617 * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
9619 * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
9621 * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional
9622 opcodes to the comparison relations.
9624 * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional
9625 opcodes to their types.
9627 * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
9629 * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache
9630 it in cfg->arch.cinfo.
9632 * local-propagation.c (mono_local_cprop_bb): Fix a warning.
9634 * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in
9635 cfg->cil_offset_to_bb.
9637 2007-04-24 Zoltan Varga <vargaz@gmail.com>
9639 * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
9640 created becase of initlocals.
9642 2007-04-23 Zoltan Varga <vargaz@gmail.com>
9644 * mini-alpha.c cpu-alpha.md: More alpha port work from
9645 Sergey Tikhonov <tsv@solvo.ru>.
9647 2007-04-21 Andreas Faerber <andreas.faerber@web.de>
9649 * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
9651 2007-04-19 Zoltan Varga <vargaz@gmail.com>
9653 * cpu-s390.md (break): Correct the length of break instruction.
9655 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9657 * mini.c: fix a couple of soft-float issues and comments.
9659 2007-04-15 Miguel de Icaza <miguel@novell.com>
9661 * trace.c (is_filenamechar): - is also a filename char.
9663 2007-04-15 Neale Ferguson <neale@sinenomine.net>
9665 * mini-s390.c: Correct checking for enum type in return value processing.
9667 2007-04-14 Raja R Harinath <rharinath@novell.com>
9669 * Makefile.am (BUILT_SOURCES): Add 'version.h'.
9670 (version.h): Makefile is in the build directory.
9672 2007-04-06 Andreas Faerber <andreas.faerber@web.de>
9674 * mini-amd64.h: fix for assertion failure on Solaris/amd64
9676 2007-04-11 Martin Baulig <martin@ximian.com>
9678 * mini.c (can_access_member): Fix handling of generic classes;
9681 2007-04-10 Zoltan Varga <vargaz@gmail.com>
9683 * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
9685 2007-04-05 Zoltan Varga <vargaz@gmail.com>
9687 * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
9689 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
9691 * mini-codegen.c: make sure the right spill amount is
9692 used for fp or integer registers (fixes the float_sub_spill() on ppc).
9694 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
9696 * mini-ppc.c: fixes for the fp_branch_nan test.
9698 2007-03-23 Zoltan Varga <vargaz@gmail.com>
9700 * basic.cs: Comment out new test which still fails on ia64.
9702 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9704 * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
9706 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9708 * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
9710 2007-03-22 Zoltan Varga <vargaz@gmail.com>
9712 * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
9713 on 64 bit machines. Fixes part of #80738.
9715 * basic.cs: Add regression test.
9717 2007-03-17 Zoltan Varga <vargaz@gmail.com>
9719 * inssel.brg basic.cs: Revert previous change to fix build.
9721 * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
9724 * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
9726 * basic.cs: Add new regression test.
9728 2007-03-17 Zoltan Varga <vargaz@gmail.com>
9730 * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
9733 2007-03-16 Neale Ferguson <neale@sinenomine.net>
9735 * cpu-s390x.md: Correct length of break instruction.
9737 2007-03-16 Neale Ferguson <neale@sinenomine.net>
9739 * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
9740 * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
9742 2007-03-15 Jonathan Chambers <joncham@gmail.com>
9744 * *.c: Begin WIN64 port.
9745 * mini.c: Use correct register in profiler.
9746 * mini-amd64.c: No inline assembly on Win64.
9747 * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
9748 Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
9749 * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
9750 is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
9751 mono_arch_ip_from_context for Win64.
9753 Contributed under MIT/X11 license.
9755 2007-03-15 Zoltan Varga <vargaz@gmail.com>
9757 * exceptions-amd64.c (seh_handler): Ditto.
9759 * exceptions-x86.c (seh_handler): Fix a memory leak.
9761 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
9763 * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
9764 mini-s390x.c: fixed peephole optimizations to deal
9765 correctly with 1 and 2 byte reload avoidance.
9767 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9769 * cpu-s390.md, cpu-s390x.md: update localloc length.
9771 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9773 * cpu-g4.md: added missing descriptions.
9775 2007-03-14 Miguel de Icaza <miguel@novell.com>
9777 * Makefile.am: Add support so the tail tests are not executed on
9778 PowerPC as that is a known limitation of the PowerPC port.
9780 2007-03-13 Jonathan Chambers <joncham@gmail.com>
9782 * runmdesc.bat: Move to msvc directory.
9784 2007-03-13 Jonathan Chambers <joncham@gmail.com>
9786 * runmdesc.bat: Run executable that was produced by the current
9787 target and sent via an argument.
9789 2007-03-11 Zoltan Varga <vargaz@gmail.com>
9791 * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
9794 * generics.2.cs: Add regression test.
9796 2007-03-09 Wade berrier <wberrier@novell.com>
9798 * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
9800 2007-03-09 Zoltan Varga <vargaz@gmail.com>
9802 * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
9803 AOT code depends on this.
9805 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
9807 * mini.c: more precise tracking of types in the eval stack
9808 (part of fix for bug #81044).
9810 2007-03-07 Zoltan Varga <vargaz@gmail.com>
9812 * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
9814 * aot-compiler.c (encode_patch): Remove an obsolete comment.
9816 2007-03-06 Zoltan Varga <vargaz@gmail.com>
9818 * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
9820 * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
9822 2007-02-22 Zoltan Varga <vargaz@gmail.com>
9824 * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
9825 a pointer on 64 bit systems. Fixes #80190.
9827 * iltests.il: Add new regression test.
9829 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9831 * mini.c: inline a constant for Environment.IsRunningOnWindows.
9833 2007-02-19 Geoff Norton <gnorton@customerdna.com>
9835 * trace.c: Remove an erroneous alignemnt check when tracing.
9836 Fixes --trace on OSX86.
9838 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
9840 * mini-$(arch).h: initialize SP in context for all the archs.
9842 2007-02-14 Sebastien Pouliot <sebastien@ximian.com>
9844 * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
9845 regressions in the thread tests.
9847 2007-02-14 Zoltan Varga <vargaz@gmail.com>
9849 * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
9850 - fixed implementation of LOCALLOC opcode
9851 - implemented non-un compare for floats
9853 - implementation of FDIV and CKFINITE opcodes
9854 - fixes for latest mono updates
9855 - additional arch opcodes
9857 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
9859 * Makefile.am: simplify and merge rules for cross-compilation.
9861 2007-02-07 Massimiliano Mantione <massi@ximian.com>
9863 * local-propagation.c: Actually *apply* the fix for bug 80591...
9865 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9867 * mini-exceptions.c: backuot part of the last change
9868 (fixes cas tests on amd64 related to GetExecutingAssembly ()).
9870 2007-02-06 Massimiliano Mantione <massi@ximian.com>
9871 * inssel.brg: Fix bug 59286.
9874 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
9876 * mini-exceptions.c: patch from Zoltan to correctly check for
9877 stack boundaries (using the stack register, not the frame register),
9878 fixes bugs #80724, #79717.
9880 2007-02-03 Zoltan Varga <vargaz@gmail.com>
9882 * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
9883 OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
9885 * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
9886 presence of frame pointer elimination.
9888 2007-02-01 Geoff Norton <gnorton@customerdna.com>
9890 * mini-x86.h: NetBSD UCONTEX_REG defines.
9892 2007-02-01 Zoltan Varga <vargaz@gmail.com>
9894 * inssel-amd64.brg: Fix amd64 build.
9896 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
9898 * mini.h: remove extern to workaround what looks likes gcc bug 26905
9901 2007-01-31 Zoltan Varga <vargaz@gmail.com>
9903 * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
9906 * mini-<ARCH>.c: Use mono_is_regsize_var ().
9908 2007-01-30 Mark Mason <mason@broadcom.com>
9910 * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
9911 * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
9912 * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
9913 beginning support for CEE_JMP [not quite working yet]
9914 * tramp-mips.c: LMF handling now works
9916 2007-01-30 Zoltan Varga <vargaz@gmail.com>
9918 * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
9920 * mini.h (NULLIFY_INS): New macro.
9922 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
9924 * mini.c: statistical profiler fix for windows, patch
9925 from Tor Lillqvist (tml@novell.com).
9927 2007-01-30 Massimiliano Mantione <massi@ximian.com>
9928 * local-propagation.c: Fix bug 80591.
9930 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
9932 * Makefile.am: put back the --export-dynamic option as with
9933 the previous gmodule flags (thanks to Robert Jordan).
9935 2007-01-28 Zoltan Varga <vargaz@gmail.com>
9937 * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
9939 mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
9940 simplify and speed up the local register allocator. Also rename some fields
9941 like iassign->vassign.
9943 * regalloc.c: Remove some functions which are no longer used since their
9944 inlined version is in mini-codegen.c.
9946 * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
9948 * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
9950 2007-01-27 Zoltan Varga <vargaz@gmail.com>
9952 * mini-amd64.c (peephole_pass): Remove optimizations which omit a
9953 narrowing. Fixes #80622.
9955 * iltests.il: Add new regresssion test.
9957 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
9959 * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
9960 debug-debugger.c, debug-debugger.h: warning fixes.
9961 * driver.c: updated copyright year and made it fit in one line.
9963 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
9965 * aot-runtime.c: updated to use mono-dl instead of gmodule.
9967 2007-01-25 Zoltan Varga <vargaz@gmail.com>
9969 * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
9971 * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
9973 * iltests.il: Add new test for bug #80507.
9975 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9977 * mini-arm.h: use soft-float also on vfp for now.
9979 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
9981 * mini.c: fix some more soft-float issues.
9983 2007-01-24 Zoltan Varga <vargaz@gmail.com>
9985 * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
9987 2007-01-24 Massimiliano Mantione <massi@ximian.com>
9988 * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
9989 mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
9990 MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
9992 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
9994 * mini-arm.c: typo fix.
9996 2007-01-23 Neale Ferguson <neale@sinenomine.net>
9998 * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
10000 2007-01-21 Zoltan Varga <vargaz@gmail.com>
10002 * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
10003 Share stack slots for scalar types. Avoid expensive g_list_free () calls.
10005 * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
10007 * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto.
10009 * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
10011 * inssel.brg: Fix a warning.
10013 * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
10015 * abcremoval.c ssa.c ssapre.c: Update after this change.
10017 * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
10019 * dominators.c (df_set): Use mono_bitset_union_fast.
10021 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10023 * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
10024 mini-codegen.c: reduce relocations and memory usage for the cpu
10027 2007-01-20 Zoltan Varga <vargaz@gmail.com>
10029 * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
10031 * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
10032 to reduce their size.
10034 2007-01-19 Mark Mason <mason@broadcom.com>
10036 * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
10037 * mini-mips.c: more configuration macros, support long conditional branches, additional
10038 asserts, fix epilog instrumentation.
10039 * mini-mips.h: use standard stack walk
10040 * cpu-mips.md: increase size of div, rem and conditional branches
10042 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
10044 * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
10047 2007-01-19 Zoltan Varga <vargaz@gmail.com>
10049 * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
10050 (compile_method): Ditto.
10052 * aot-runtime.c (decode_klass_info): Ditto.
10054 * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
10055 needed by the code generated by inssel.brg. Also fix a warning.
10057 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
10059 * mini.c: deal with enums that become genericinsts by
10060 being nested in a generic class (bug #79956).
10062 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
10064 * mini.c: match the generic definition to check for
10065 private access with generic types (bug #78431).
10067 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
10069 * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
10070 to make life easier for people cross-compiling that insist on not
10073 2007-01-17 Mark Mason <mason@broadcom.com>
10075 * inssel-long.brg: patch to deal with mips missing flags
10076 * inssel-long32-mips.brg: implement overflow checks
10077 * insset-mips.brg: implement overflow checks
10078 * mini-mips.h: implement conditional exception handling
10079 * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
10080 Remove unused code, minor cleanups.
10081 * exceptions-mips.c: minor cleanups
10082 * mini-ops.h: add mips conditional exception ops
10083 * cpu-mips.md: add mips conditional exception ops
10086 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
10088 * inssel.brg: patch from Mark Mason <mason@broadcom.com>
10089 to deal with mips missing of flags.
10091 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10093 * exceptions-ppc.c: execute fault handlers.
10095 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
10097 * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
10099 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
10101 * mini.c: handle also floating point values in initialize_array.
10103 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10105 * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
10106 array initialization and make it conditional on the intrins option.
10108 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10110 * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
10111 relocations and put the patch info names close to the enum definition.
10113 2007-01-15 Mark Mason <mason@broadcom.com>
10115 * basic.cs, exceptions.cs: break up large tests to increase debugability.
10117 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
10119 * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
10121 2007-01-12 Raja R Harinath <rharinath@novell.com>
10123 * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
10125 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10127 * Makefile.am: distribute the mips sources.
10129 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
10131 * mini-codegen.h: handle bug #80489 here, by excluding ecx
10134 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
10136 * cpu-x86.md: back out for now as this triggers other regressions.
10138 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
10140 * cpu-x86.md: force src1 and dest regpair for long shift instructions
10141 to eax:edx, so ecx can't get allocated to them (bug #80489).
10143 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
10145 * mini.c, mini-exceptions.c: enabled running fault handlers
10148 2007-01-03 Miguel de Icaza <miguel@novell.com>
10150 * driver.c: If nothing fail, do not use the string "failed",
10151 because it makes it very annoying to view test result logs on the
10154 2006-12-30 Miguel de Icaza <miguel@novell.com>
10156 * debug-debugger.c (mono_debugger_main): Rename "main" to
10157 "main_method" to prevent a warning.
10159 Remove a warning for unused field.
10161 2006-12-28 Martin Baulig <martin@ximian.com>
10164 (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
10166 2006-12-22 Martin Baulig <martin@ximian.com>
10168 * mdb-debug-info32.s, mdb-debug-info64.s: New files.
10169 Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
10170 seperate `.mdb_debug_info' section, so we can access it from the
10171 debugger even if the binary is stripped.
10173 * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
10174 from the `.mdb_debug_info' here to prevent the linker from
10175 removing that section.
10177 * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
10178 mdb-debug-info64.s.
10180 2006-12-19 Robert Jordan <robertj@gmx.net>
10182 * mini-x86: enable the code to return small structures in
10183 registers for FreeBSD as well. Fixes bug #80278.
10184 * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
10186 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10188 * mini-x86.c: align the stack when calling the profiler
10189 function instrumenting the prolog (on OSX).
10191 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10193 * mini.c: emit a break opcode where Debugger.Break () is called.
10195 2006-12-13 Miguel de Icaza <miguel@novell.com>
10197 * mini.c (mono_method_to_ir): Provide useful information on this
10198 assert, to prevent others from debugging like I did.
10200 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10202 * mini.c: enable code which was incorrectly commented
10205 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10207 * mini-x86.c: enable on OSX, too, the code to return small
10208 structures in registers.
10210 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
10212 * mini-x86.c: remove the use of the dynamic code manager here, too.
10214 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
10216 * mini.h, debug-debugger.c, tramp-*.c: fixed
10217 mono_debugger_create_notification_function() to use
10218 mono_global_codeman_reserve () instead of a dynamic code manager.
10220 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
10222 * mini.c, jit-icalls.h, jit-icalls.c: remove the
10223 ves_array_element_address() jit icall and use a generated
10224 managed method instead (which is about 4 times faster for a rank 3
10227 2006-11-29 Mark Mason <mason@broadcom.com>
10229 * basic-calls.cs: additional tests for passing
10230 structures as function arguments.
10232 2006-11-29 Mark Mason <mason@broadcom.com>
10234 * mini-mips.h: disable custom exception handling
10235 * mini-mips.c: throw/rethrow should use jalr to call
10236 exception stubs. Fixed bug with passing structures
10237 by value. More support for tracing floating point
10240 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10242 * mini.c: fixed typo in the soft-float ldind.r4 handling
10245 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10247 * mini.c, mini.h, driver.c: added --runtime command line
10248 option to select a different runtime than the autodetected one.
10249 * jit.h: added API for embedders to initialize with a specific
10252 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
10254 * mini.c: handle also boxing of r4 values (bug #80024).
10256 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10258 * mini-ppc.c: force indirect calls until we reserve
10259 enough address space for all the generated code.
10261 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
10263 * exceptions-arm.c: workaround bugs in the libc definition
10264 of struct ucontext.
10266 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10268 * inssel.brg: fixes from me and Mark Mason.
10270 2006-11-23 Dick Porter <dick@ximian.com>
10272 * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
10273 semaphore display now we've fixed the initial value
10275 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10277 * inssel.brg: partially revert the last change to fix the build.
10279 2006-11-21 Mark Mason <mason@broadcom.com>
10281 * inssel.brg: Add and use compare-and-branch macros to support
10282 architectures that do not have condition code registers (ie. MIPS).
10283 * *-mips.{c,brg,md}: Fix copyright statements
10285 2006-11-20 Mark Mason <mason@broadcom.com>
10287 * Makefile.am: remove mini-codegen.c from list of MIPS sources
10288 * mini.c: Allow GET_CONTEXT to be specified by the arch port
10289 * mini.h: Added declaration for mono_print_ins()
10290 * mini-codegen.c: added ins_spec initializer for MIPS
10291 * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
10292 vreg to be virtual and hreg to be non-virtual.
10293 * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
10294 is not yet working/implemented correctly.
10295 * mini-codegen.c (print_ins): rename to mono_print_ins(), make
10296 non-static, fixup calls to print_ins() from other parts in the file.
10298 2006-11-20 Mark Mason <mason@broadcom.com>
10300 * basic-calls.cs: added tests for passing structures as arguments
10303 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10305 * inssel-long32.brg: optimize signed division by power of two.
10307 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
10309 * mini-arm.c: added support for interworking with thumb code
10310 (mono must be still be built using the ARM instruction encoding).
10312 2006-11-19 Miguel de Icaza <miguel@novell.com>
10314 * mini.c (type_from_op): Separate the conditions for OP_EQ as the
10315 verifier has different rules for it. Fixes a few verifier issues
10318 * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
10319 at the end, so people know what happened.
10321 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10323 * brach-opts.c: in optimize_exception_target() make sure we
10324 are in a catch clause (fixes bug #79871).
10326 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10328 * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
10329 more soft-float support fixes.
10331 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
10333 * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
10334 that are passed half on the stack and half in registers.
10336 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10338 * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
10339 more mips integration work from Mark E Mason
10340 <mark.e.mason@broadcom.com>.
10342 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10344 * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
10345 cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
10346 tramp-mips.c: added sources for the mips port, not
10347 integrated in the build yet. Contributed by
10348 Mark E Mason <mark.e.mason@broadcom.com>.
10350 2006-11-14 Neale Ferguson <neale@sinenomine.net>
10352 * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
10354 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10356 * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
10357 put the soft-float rules in its own file since it seems to
10358 break s390 compilation.
10360 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10362 * mini-arm.c: fixed wrnings.
10364 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
10366 * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
10367 inssel-arm.brg: ARM support for soft-float.
10369 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10371 * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
10372 loads and stores of 32 bit fp values.
10374 2006-11-10 Zoltan Varga <vargaz@gmail.com>
10376 * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
10378 * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
10379 works. Fixes #79852 and #79463.
10381 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10383 * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
10384 more soft-float support WIP and fixes.
10386 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
10388 * mini-arm.c: some VFP updates.
10390 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
10392 * mini-exceptions.c: 0 is a valid local var offset in some
10393 architectures, don't assert (bug #78508).
10395 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
10397 * exceptions-arm.c: fixed off by one error in stack walk code.
10399 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10401 * mini.h, mini.c: more precise tracking of type load exceptions.
10403 2006-11-03 Robert Jordan <robertj@gmx.net>
10405 * Makefile.am: [WIN32] Add monow.exe target.
10406 * driver.c: [WIN32] Don't detach the console when debugging.
10409 2006-10-30 Miguel de Icaza <miguel@novell.com>
10411 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
10413 2006-10-23 Zoltan Varga <vargaz@gmail.com>
10415 * aot-compiler.c (emit_method_info): Add a case missed earlier.
10417 * driver.c (mini_regression): Fix --regression with AOT.
10419 * aot-compiler.c (emit_method_info): Fix AOT on amd64.
10421 2006-10-17 Zoltan Varga <vargaz@gmail.com>
10423 * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
10425 * mini-sparc.h: Don't use sigaction on sparc/linux.
10427 * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
10429 * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
10431 * mini-exceptions.c: Add proper include files for getpid ().
10433 2006-10-16 Zoltan Varga <vargaz@gmail.com>
10435 * aot-runtime.c (mono_aot_get_method): Change this to return the native code
10436 address instead of a MonoJitInfo* to avoid decoding the exception info for the
10439 * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
10440 name cache to reduce its size.
10442 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10444 2006-10-15 Zoltan Varga <vargaz@gmail.com>
10446 * mini-x86.c: Save/restore the current LMF structure more efficiently using
10447 the mono_lmf TLS variable.
10449 * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in
10450 trampoline lmf frames.
10452 * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
10454 2006-10-14 Zoltan Varga <vargaz@gmail.com>
10456 * mini-amd64.c: Save/restore the current LMF structure more efficiently using
10457 the mono_lmf TLS variable.
10459 * mini-exceptions.c: Access the LMF structure through accessors.
10461 * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS
10462 variable instead of in jit_tls->lmf.
10464 * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
10466 * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in
10467 trampoline lmf frames.
10469 * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
10471 2006-10-12 Zoltan Varga <vargaz@gmail.com>
10473 * mini.c trace.c mini-x86.c: Revert these too.
10475 * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
10478 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
10480 * genmdesc.c: removed now dead code.
10482 2006-10-09 Robert Jordan <robertj@gmx.net>
10484 * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
10486 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
10488 * mini.h: do not leave gaps in the opcode values.
10490 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
10492 * jit-icalls.h: flag functions as internal here, too.
10494 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
10496 * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
10497 functions with the internal attribute.
10499 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
10501 * aot-compiler.c: fclose the file descriptor in the profile read loop.
10503 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10505 * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
10508 2006-10-05 Zoltan Varga <vargaz@gmail.com>
10510 * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
10511 tail calls as on other platforms.
10513 * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
10515 * iltests.il: Add a few tailcall tests.
10517 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10519 * driver.c: fix loop for old compilers (bug #79521).
10521 2006-10-02 Zoltan Varga <vargaz@gmail.com>
10523 * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
10525 * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
10527 * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
10528 metadata without any code.
10530 * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
10531 more precise debugging information using gdb.
10533 2006-09-30 Zoltan Varga <vargaz@gmail.com>
10535 * inssel-ia64.brg: Make the helper methods static.
10537 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10539 * inssel-x86.brg: make the helper methods static.
10541 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
10543 * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
10545 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10547 * mini.c: updates for monoburg changes.
10548 * inssel.brg: make a few helper functions static as they should.
10550 2006-09-27 Zoltan Varga <vargaz@gmail.com>
10552 * Makefile.am: Move mini-codegen.c to common_sources.
10554 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10556 * mini.h: instroduce inst_call in MonoInst for use in OUTARG
10558 * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
10559 mini-ppc.h: port to use the common local register allocator.
10561 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10563 * mini.h: Remove the comment too then.
10565 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
10567 * mini.h: put back backend.data which is to be used shortly and
10568 doesn't increase the size of MonoInst. If any 64 bit arch aligned
10569 pointers on 4 byte boundaries it'd have much bigger issues running
10570 and you can ifdef it out anyway.
10572 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10574 * mini.h (MonoInst): Remove backend.data field since it is unused and increases
10575 MonoInst size by 4 bytes on 64 bit machines.
10577 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10579 * *.{c,h,brg}: long due removal of the unused field in MonoInst and
10580 replacement with more meaningful field names. Arch maintainers, please
10581 check the assigned names are good enough for your arch.
10583 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10585 * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the
10586 OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
10588 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10590 * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
10591 relocations and memory requirements, put the optimization flags
10592 definitions in their own file.
10594 2006-09-24 Zoltan Varga <vargaz@gmail.com>
10596 * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
10598 * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
10600 2006-09-22 Zoltan Varga <vargaz@gmail.com>
10602 * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
10604 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
10606 * inssel.brg: use the correct function to get the size of an item
10607 in an array, given an element class.
10608 * aot-compiler.c: do not access class->class_size directly.
10610 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10612 * mini.h, debug-mini.c: added a debugging function to print
10613 info about local variables and arguments in a jitted method.
10615 2006-09-20 Zoltan Varga <vargaz@gmail.com>
10617 * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10619 * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
10621 2006-09-19 Zoltan Varga <vargaz@gmail.com>
10623 * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
10624 inner and outer loops when passing vtypes.
10626 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
10628 * mini-ppc.c: take into account the cpu errata for cache flushing
10629 which caused some random errors (bug #79381).
10631 2006-09-19 Zoltan Varga <vargaz@gmail.com>
10633 * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to
10634 mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
10636 2006-09-17 Zoltan Varga <vargaz@gmail.com>
10638 * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
10641 * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
10642 freebsd ports tree.
10644 * mini-amd64.c (emit_call): Avoid near calls on freebsd.
10645 (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
10647 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
10650 2006-09-13 Zoltan Varga <vargaz@gmail.com>
10652 * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
10654 2006-09-12 Zoltan Varga <vargaz@gmail.com>
10656 * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this
10657 macro does not have to be changed during debugging.
10659 * cpu-alpha.md inssel-alpha.brg mini-alpha.h mini-alpha.c exceptions-alpha.c tramp-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10661 * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
10663 * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
10665 * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if
10666 MONO_ARCH_NO_EMULATE_MUL is defined.
10668 * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
10670 * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
10672 * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
10674 * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
10676 2006-09-11 Zoltan Varga <vargaz@gmail.com>
10678 * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
10679 stuff to mini-exceptions.c where it is used.
10681 * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
10682 setup code, the real one is in mini-exceptions.c.
10684 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
10685 layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
10686 some changes from the freebsd ports tree.
10688 * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
10691 * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
10693 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
10695 * mini.c: on Linux, check for /proc to be mounted
10696 (bug# 79351, novell bug#201204).
10698 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
10700 * mini.c: handle cases where pthread_attr_getstack() behaves
10701 incorrectly (bug #78096).
10703 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
10705 * mini-arm.c: support larger stack frames (bug #79272).
10707 2006-09-08 Zoltan Varga <vargaz@gmail.com>
10709 * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
10711 * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef
10714 * aot-runtime.c (mono_aot_get_class_from_name): New function used by
10715 mono_class_from_name () to find a class from its name.
10717 * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
10719 2006-09-07 Zoltan Varga <vargaz@gmail.com>
10721 * mini-amd64.c (emit_call): Avoid strstr () call if possible.
10723 2006-09-05 Kornél Pál <kornelpal@gmail.com>
10725 * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
10727 2006-09-04 Zoltan Varga <vargaz@gmail.com>
10729 * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
10730 callinfo->trampoline.
10732 * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
10734 (mono_arch_patch_code): Add some debug code to help track down similar failures in the
10737 2006-09-03 Zoltan Varga <vargaz@gmail.com>
10739 * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
10741 2006-09-02 Zoltan Varga <vargaz@gmail.com>
10743 * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
10744 stats.method_trampolines, it is already done by the generic trampoline code.
10746 * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
10748 2006-09-01 Zoltan Varga <vargaz@gmail.com>
10750 * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
10752 * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
10754 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
10756 * mini.c (print_jit_stats): Print mscorlib mempool size too.
10758 * mini.c (print_jit_stats): Print new stats.
10760 * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10762 2006-08-31 Zoltan Varga <vargaz@gmail.com>
10764 * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
10765 Address on two dimensional arrays. Fixes #78729.
10767 * mini.h (MonoCompile): Add a 'skip_visibility' field.
10769 * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
10772 * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
10774 * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
10777 * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
10779 (mini_get_ldelema_ins): Ditto.
10781 2006-08-30 Zoltan Varga <vargaz@gmail.com>
10783 * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
10784 (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation.
10787 2006-08-29 Neale Ferguson <neale@sinenomine.net>
10789 * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
10790 mono_arch_get_patch_offset as a dummy entry point to allow successful link.
10792 * exceptions-s390x.c: Cosmetic change.
10794 * tramp-s390.c: Fix warning.
10796 * cpu-s390.md: Correct length of mul_imm.
10798 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10800 * aot-compiler.c: added binary writer with ELF backend
10801 implementation (only on Linux/x86 for now).
10803 2006-08-18 Zoltan Varga <vargaz@gmail.com>
10805 * Makefile.am: Don't run net 2.0 AOT tests.
10807 * aot-compiler.c (compile_method): Skip methods with tail calls as well.
10808 (mono_compile_assembly): Skip net 2.0 assemblies as well.
10810 * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
10812 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10814 * aot-compiler.c: simplified and refactored the asm-writing code
10815 to allow different backends.
10817 2006-08-18 Zoltan Varga <vargaz@gmail.com>
10819 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
10821 * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a
10822 little. Share patches of type TYPE_FROM_HANDLE as well.
10824 * mini.c (mono_patch_info_equal): New helper function.
10825 (mono_patch_info_hash): Ditto.
10827 * aot-compiler.c (emit_method_code): Fix s390 build.
10829 * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
10830 is not handled because it is stored as a flag and not as a type ctor. Fixes
10833 2006-08-17 Zoltan Varga <vargaz@gmail.com>
10835 * aot-compiler.c: Fix computation of GOT slot statistics.
10837 * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
10838 Also remove support for not PIC AOT.
10840 * mini.h: Bump AOT file format version.
10842 * objects.cs: Add a test for #78990.
10844 * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
10845 (peter.dettman@iinet.net.au). Fixes #79087.
10847 * basic-long.cs: Add a test for the above.
10849 2006-08-16 Zoltan Varga <vargaz@gmail.com>
10851 * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
10853 * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
10856 2006-08-15 Zoltan Varga <vargaz@gmail.com>
10858 * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
10861 2006-08-10 Jonathan Chambers <joncham@gmail.com>
10863 * mini.c: Don't verify COM proxy invoke calls
10866 2006-08-10 Dick Porter <dick@ximian.com>
10868 * wapihandles.c (mini_wapi_seminfo): More info, to help track down
10869 which process is holding semaphores locked.
10871 2006-08-08 Zoltan Varga <vargaz@gmail.com>
10873 * mini-ia64.c mini-amd64.c: Fix #79027.
10875 * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
10877 * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
10879 * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
10880 implicit arguments in a vararg call. Fixes #79027.
10882 2006-08-07 Zoltan Varga <vargaz@freemail.hu>
10884 * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
10885 (mono_get_array_new_va_signature): Ditto.
10887 2006-08-05 Zoltan Varga <vargaz@gmail.com>
10889 * aot-runtime.c: Call init_plt lazily.
10891 * inssel-long.brg: Fix unsigned long->int conversion.
10893 * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
10895 * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
10896 that most data is now in the .rss/.data section.
10898 2006-08-04 Zoltan Varga <vargaz@gmail.com>
10900 * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.
10902 * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
10904 * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
10906 * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
10908 * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
10909 virtual call. Fixes #79010.
10911 * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method
10912 and use the result as the this argument in the real call.
10914 * generics.2.cs: Add a new test for #79010.
10916 2006-08-03 Zoltan Varga <vargaz@gmail.com>
10918 * mini-x86.c: Fix a warning.
10920 * aot-compiler.c: Add a bunch of statistics.
10922 * mini.c (inline_method): Disable inlining in out-of-line bblocks.
10924 2006-08-02 Zoltan Varga <vargaz@gmail.com>
10926 * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
10928 2006-08-01 Zoltan Varga <vargaz@gmail.com>
10930 * cpu-alpha.md inssel-alpha.brg mini-alpha.h mini-alpha.c exceptions-alpha.c tramp-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10932 2006-07-13 Miguel de Icaza <miguel@novell.com>
10934 * mini.c (mono_method_to_ir): Obtain the original method in the
10935 CIL stream and use this to perform validation.
10939 2006-07-19 Zoltan Varga <vargaz@gmail.com>
10941 * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
10942 (mono_arch_call_opcode): Ditto.
10944 * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
10947 * mini.c (mono_patch_info_dup_mp): New helper function.
10949 * aot-compiler.c (compile_method): Fix some of the memory allocated during
10950 compilation. Fixes #78827.
10952 2006-07-18 Kornél Pál <kornelpal@gmail.com>
10954 * declsec.c: Use original security informations for
10955 MONO_WRAPPER_MANAGED_TO_MANAGED.
10957 2006-07-15 Jonathan Chambers <joncham@gmail.com>
10959 * mini.c: Allow Com Interop methods/classes and
10960 don't verify COM wrapper calls
10963 2006-07-13 Zoltan Varga <vargaz@gmail.com>
10965 * inssel-long32.brg: Fix long->i4 checked conversion.
10967 * exceptions.cs: Add a test for the above.
10969 2006-07-08 Zoltan Varga <vargaz@gmail.com>
10971 * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
10973 * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown
10976 * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
10979 2006-07-03 Zoltan Varga <vargaz@gmail.com>
10981 * mini.c: Fix solaris/x86 exception handling.
10983 * Makefile.am: Get rid of $(ICU_LIBS).
10985 2006-07-02 Zoltan Varga <vargaz@gmail.com>
10987 * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
10988 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
10989 (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
10991 * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
10993 * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
10994 this function causes a SIGSEGV.
10996 2006-06-22 Zoltan Varga <vargaz@gmail.com>
10998 * mini.c: Remove unused solaris/x86 includes.
11000 2006-06-21 Zoltan Varga <vargaz@gmail.com>
11002 * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
11004 2006-06-20 Jb Evain <jbevain@gmail.com>
11006 * cpu-g4.md: fix max length of start_handler instruction.
11008 2006-06-20 Massimiliano Mantione <massi@ximian.com>
11009 * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
11011 2006-06-16 Massimiliano Mantione <massi@ximian.com>
11012 * ssa.c: Fixed bug 78653 for SSA based deadce.
11013 * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
11014 MonoInst.flags, used in SSA based deadce.
11015 * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
11016 * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
11018 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
11020 * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
11021 it can end up using non executable memory on ppc64 systems
11022 running ppc32 userspace (fix from Johannes Berg).
11024 2006-06-14 Dick Porter <dick@ximian.com>
11026 * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
11029 2006-06-13 Massimiliano Mantione <massi@ximian.com>
11030 * mini.c: Made so that inline is locally disabled if it would
11031 trigger a .cctor, because too many apps depend on this behavior
11032 (which seems to be also the one of the MS CLR).
11034 2006-06-13 Zoltan Varga <vargaz@gmail.com>
11036 * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
11037 No idea why this worked before.
11039 * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
11040 which branch to outer exception clauses since they could skip the
11041 inner finally clauses. Fixes #78633.
11043 * exceptions.cs: Add a test for the above.
11045 * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
11048 * iltests.il: Add a test for the above.
11050 2006-06-12 Zoltan Varga <vargaz@gmail.com>
11052 * mini.c (remove_block_if_useless): Do not remove the bblock immediately
11053 after the end of a try bblock, to prevent asserts in mini_method_compile ().
11055 * iltests.il: Add a test for the above.
11057 2006-06-10 Zoltan Varga <vargaz@gmail.com>
11059 * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
11061 * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
11062 methods as instrinsics.
11064 2006-06-09 Wade Berrier <wberrier@novell.com>
11066 * Makefile.am: Fix sources list for svn rename so that make dist succeeds
11067 (simple-cee-ops.h ssapre-mini-ops.h)
11069 2006-06-09 Neale Ferguson <neale@sinenomine.net>
11071 * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
11072 * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
11074 * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
11075 * cpu-s390x.md: Fix max. length values for a couple of instructions.
11077 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
11079 * mini-exceptions.c: Minor fix for building mono in Visual Studio.
11081 2006-06-08 Massimiliano Mantione <massi@ximian.com>
11083 * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
11084 * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
11085 * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
11086 * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
11087 * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
11088 of opcodes, so that bug 78549 should not happen again.
11089 * ssapre.c: Updated to use the renamed files.
11091 2006-06-08 Zoltan Varga <vargaz@gmail.com>
11093 * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move
11094 in OP_ATOMIC_EXCHANGE_I4.
11096 2006-06-07 Wade Berrier <wberrier@novell.com>
11098 * tramp-s390.c: Fix s390 build (add missing pointer declarations
11099 in mono_debugger_create_notification_function)
11101 2006-06-06 Zoltan Varga <vargaz@gmail.com>
11103 * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
11105 * mini.c (type_from_stack_type): Disable some changes which do not
11108 * driver.c: Reenable opts.
11110 * mini.h (MonoStackSlot): New structure to keep track of the verification state
11111 of the evaluation stack.
11113 * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
11114 evaluation stack trace at entry to the bblock.
11116 * mini.c (merge_stacks): New function to perform verification of stack merges.
11117 Turned off by default.
11119 * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
11122 2006-06-06 Massimiliano Mantione <massi@ximian.com>
11124 * local-propagation.c: Fixed bug 78549.
11126 2006-06-04 Zoltan Varga <vargaz@gmail.com>
11128 * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
11130 2006-06-02 Miguel de Icaza <miguel@novell.com>
11132 * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
11133 tramp-arm.c, tramp-ia64.c
11134 (mono_debugger_create_notification_function): Update signature to
11135 new signature and use new protocol for creating the notification
11138 Should fix the build.
11140 2006-06-02 Geoff Norton <gnorton@customerdna.com>
11142 * exceptions-ppc.c (mono_jit_walk_stack)
11143 (ves_icall_get_frame_info): Fix the build
11145 2006-06-02 Zoltan Varga <vargaz@gmail.com>
11147 * mini.c (mono_set_defaults): Fix the handling of -O=-all.
11149 2006-05-31 Raja R Harinath <rharinath@novell.com>
11151 * il2tests.2.il: New file for generics CIL tests. Add test for
11153 * Makefile.am: Update.
11156 * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
11159 2006-05-30 Massimiliano Mantione <massi@ximian.com>
11161 * aliasing.c: Fixed bug 78311.
11163 2006-05-29 Martin Baulig <martin@ximian.com>
11165 * mini-exceptions.c (mono_find_jit_info): When computing the
11166 native offset, check whether we're actually inside the method's
11167 code; call mono_debug_print_stack_frame() to format the frame.
11168 (ves_icall_System_Exception_get_trace): Call
11169 mono_debug_print_stack_frame() to format the stack frame.
11170 (ves_icall_get_trace): Update to the new debugging API.
11171 (mono_jit_walk_stack_from_ctx): Likewise.
11172 (ves_icall_get_frame_info): Likewise.
11174 * mini.c (get_method_from_ip): Use the new debugging API.
11175 (mono_print_method_from_ip): Likewise.
11178 (mono_jit_walk_stack): Use the new debugging API.
11179 (ves_icall_get_frame_info): Likewise.
11181 2006-05-27 Zoltan Varga <vargaz@gmail.com>
11183 * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
11185 2006-05-25 Massimiliano Mantione <massi@ximian.com>
11187 * mini.c: Added "limitator" to inline for debugging.
11189 2006-05-24 Martin Baulig <martin@ximian.com>
11191 * debug-debugger.c (mono_debugger_init): Create a private,
11192 malloc()-based code manager for the notification function and
11193 intentionally leak it on exit. This fixes the crash-on-exit race
11197 (mono_debugger_create_notification_function): Added
11198 `MonoCodeManager *' argument.
11201 (mono_debugger_create_notification_function): Added
11202 `MonoCodeManager *' argument.
11204 2006-05-23 Massimiliano Mantione <massi@ximian.com>
11206 * aliasing.c: Fixed 64 bit issue.
11207 * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11208 default since all known bugs are fixed (one more time!).
11210 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11212 * mini.c: write barrier support.
11214 2006-05-23 Martin Baulig <martin@ximian.com>
11216 * debug-debugger.c: Revert Paolo's change. Add comment and #error
11217 check at the top of the file.
11219 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
11221 * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
11222 reverting changes without reason and without changelog entries.
11224 2006-05-18 Zoltan Varga <vargaz@gmail.com>
11226 * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
11227 to a few opcodes. Fixes #78439.
11229 * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
11230 consistency with other archs.
11232 * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
11234 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11236 * debug-debugger.c: fix the build.
11238 2006-05-17 Martin Baulig <martin@ximian.com>
11241 (debugger_thread_vtable): Moved here from ../metadata/threads.c.
11242 (debugger_init_threads): Formerly known as mono_debugger_init_threads().
11243 (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
11244 (debugger_attach): Call GC_mono_debugger_add_all_threads().
11246 2006-05-11 Zoltan Varga <vargaz@gmail.com>
11248 * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
11250 2006-05-10 Zoltan Varga <vargaz@gmail.com>
11252 * mini-x86.c (mono_arch_instrument_epilog): Fix handling of
11253 MONO_TYPE_GENERICINST.
11255 * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of
11256 MONO_TYPE_GENERICINST.
11258 2006-05-09 Zoltan Varga <vargaz@gmail.com>
11260 * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
11263 2006-05-08 Zoltan Varga <vargaz@gmail.com>
11265 * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
11267 (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
11269 2006-05-06 Zoltan Varga <vargaz@gmail.com>
11271 * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
11272 mono_trace_cleanup ().
11274 * iltests.il: Fix problem with the newly added test.
11276 * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
11277 due to register constraints, free up the previous hreg. Fixes #78314.
11279 * iltests.il: Add new test for #78314.
11281 * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
11282 Interlocked.Add. Fixes #78312.
11284 * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
11286 2006-05-05 Zoltan Varga <vargaz@gmail.com>
11288 * inssel.brg (mini_emit_virtual_call): Fix a warning.
11290 2006-05-05 Martin Baulig <martin@ximian.com>
11292 * debug-mini.c (mono_debug_open_block): New method.
11295 (mono_arch_output_basic_block): Call mono_debug_open_block() at
11296 the beginning of each basic block.
11299 (mono_arch_output_basic_block): Call mono_debug_open_block() at
11300 the beginning of each basic block.
11302 2006-05-04 Massimiliano Mantione <massi@ximian.com>
11304 * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11305 default until I understand why they break the build on amd64.
11307 2006-05-04 Zoltan Varga <vargaz@gmail.com>
11309 * mini.c (mini_cleanup): Call mono_cleanup ().
11311 * mini.c (UNVERIFIED): New macro to make it easier to track down verification
11314 2006-05-04 Massimiliano Mantione <massi@ximian.com>
11316 * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
11317 * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11318 default since all known bugs are fixed, and I cannot reproduce bug
11319 77944... I'm asking Matt Hargett to test again after this commit.
11321 2006-04-28 Massimiliano Mantione <massi@ximian.com>
11323 * mini-codegen.c: Fixed typo that thrashed inline.
11325 2006-04-28 Zoltan Varga <vargaz@gmail.com>
11327 * dominators.c (compute_dominators): Avoid using a worklist since
11328 it is not correct in some cases. Instead, iterate over all bblocks as
11329 in the original paper. Fixes --compile-all -O=all System.Xml.dll.
11331 2006-04-28 Miguel de Icaza <miguel@novell.com>
11333 * mini.c (mono_jit_compile_method_inner): Use
11334 mono_prepare_exception_from_error that resets the value
11337 2006-04-27 Miguel de Icaza <miguel@novell.com>
11339 * mini.c: Move the mini_loader_error_to_exception to metadata.
11341 2006-04-27 Massimiliano Mantione <massi@ximian.com>
11343 * aliasing.c: Fixed bug 78210.
11345 2006-04-27 Massimiliano Mantione <massi@ximian.com>
11347 * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11348 default until all their problems (or the ones they trigger) are fixed.
11350 2006-04-26 Zoltan Varga <vargaz@gmail.com>
11352 * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
11354 * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
11355 as loaded only after resolving patches since that could invoke the same method.
11357 * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
11359 * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
11362 * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
11365 * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
11368 * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
11369 made from AOT code through the PLT table.
11371 * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
11372 holding the plt offset when a call is made to the aot plt trampoline.
11374 2006-04-25 Zoltan Varga <vargaz@gmail.com>
11376 * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the
11379 * Makefile.am (common_sources): Fix build breakage.
11381 * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
11382 calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
11383 intra-assembly calls if possible.
11385 * tramp-*.c: Add new functions for patching/nullifying PLT entries.
11387 * mini-trampolines.c: Handle PLT entries.
11389 * mini.c: Avoid creating a GOT var for calls.
11391 * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
11392 from mscorlib code.
11394 * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
11395 from mscorlib code.
11397 * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
11400 * mini.h: Bump AOT file format version.
11402 * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
11405 2006-04-25 Martin Baulig <martin@ximian.com>
11407 * driver.c: Disable copyprop, consprop and inline when running
11408 inside the debugger.
11410 2006-04-25 Martin Baulig <martin@ximian.com>
11412 * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
11413 with `get_current_thread' and added `detach'.
11414 (MonoDebuggerMetadataInfo): Added `thread_size',
11415 `thread_tid_offset', `thread_stack_ptr_offset' and
11416 `thread_end_stack_offset'.
11418 2006-04-25 Zoltan Varga <vargaz@gmail.com>
11420 * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and
11423 * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
11424 ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
11426 * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
11428 * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
11430 * aot.c: Add support for ADJUSTED_IID.
11432 2006-04-24 Zoltan Varga <vargaz@gmail.com>
11434 * aot.c (emit_method_order): Don't align method_order_end.
11436 * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
11437 the interface ID changes.
11439 2006-04-21 Dick Porter <dick@ximian.com>
11441 * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
11442 cleaning up a thread. Fixes the new part of bug 77470.
11444 2006-04-20 Geoff Norton <gnorton@customerdna.com>
11446 * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
11447 to managed wrapper.
11449 2006-04-19 Zoltan Varga <vargaz@gmail.com>
11451 * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
11453 * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
11454 SIGSEGV. Fixes #78072.
11456 * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
11457 unregister our SIGABRT handler.
11459 2006-04-19 Massimiliano Mantione <massi@ximian.com>
11461 * mini.c: Disabled inline where it can alter the call stack in a
11462 way visible from managed code.
11463 * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
11466 2006-04-16 Zoltan Varga <vargaz@gmail.com>
11468 * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
11469 on other platforms. Fixes #78089.
11471 2006-04-13 Martin Baulig <martin@ximian.com>
11473 * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
11474 determine whether we're inside the debugger.
11477 (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
11479 2006-04-12 Zoltan Varga <vargaz@gmail.com>
11481 * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
11482 handler clauses. Fixes #78024.
11484 * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
11485 in the CALL_MEMBASE opcodes. Fixes #78088.
11486 (mono_arch_get_vcall_slot_addr): Ditto.
11488 2006-04-10 Martin Baulig <martin@ximian.com>
11490 * debug-debugger.c: The thread handling code has now been moved
11491 into ../metadata/threads.c.
11493 2006-04-10 Zoltan Varga <vargaz@gmail.com>
11495 * driver.c (mono_main): Fix --with-gc=none build.
11497 * mini-codegen.c (mono_spillvar_offset): Improve alignment.
11498 (mono_spillvar_offset_float): Ditto.
11499 (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
11500 hreg, not when its !global, since on ia64, there is a third category: stacked
11503 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
11505 * mini.c: set MonoInst->klass for load field address and a few other
11508 2006-04-10 Zoltan Varga <vargaz@gmail.com>
11510 * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
11512 2006-04-07 Zoltan Varga <vargaz@gmail.com>
11514 * dominators.c (compute_dominators): Fix yet another bug which surfaced after
11515 the branch opt changes.
11517 2006-04-06 Dick Porter <dick@ximian.com>
11519 * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
11521 * wapihandles.c (mini_wapi_seminfo):
11522 * driver.c (mono_main): Add semaphore info option
11524 2006-04-05 Zoltan Varga <vargaz@gmail.com>
11526 * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
11527 branch optimization changes. Fixes #78009.
11529 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11531 * mini.c: ignore accessibility of methods in managed->native wrappers.
11533 2006-04-04 Zoltan Varga <vargaz@gmail.com>
11535 * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
11537 * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
11539 2006-04-03 Zoltan Varga <vargaz@gmail.com>
11541 * mini.c: Modify the branch optimizations to preserve the invariant that
11542 the entries inside the in_bb and out_bb arrays are unique.
11543 (mono_unlink_bblock): Avoid creation of new arrays.
11545 2006-04-02 Zoltan Varga <vargaz@gmail.com>
11547 * mini.c (mono_unlink_bblock): Fix regression caused by previous
11550 2006-04-01 Zoltan Varga <vargaz@gmail.com>
11552 * mini.c (optimize_branches): Remove the "optimizations" in
11553 the cbranch1/cbranch2 -> branch cases which were causing several
11554 problems in the past. Fixes #77986.
11556 2006-03-31 Chris Toshok <toshok@ximian.com>
11558 * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
11559 default optimizations :(
11561 2006-03-31 Zoltan Varga <vargaz@gmail.com>
11563 * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
11566 2006-03-31 Massimiliano Mantione <massi@ximian.com>
11568 * local-propagation.c: Added comments to structs and removed
11569 "Mono" prefixes from local tree mover types.
11571 2006-03-30 Zoltan Varga <vargaz@gmail.com>
11573 * Makefile.am (arch_sources): Define this for each architecture so
11574 libmono_la_SOURCES is defined in one place.
11576 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
11578 * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
11581 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
11583 * driver.c: print the GC name supplied by configure.
11585 2006-03-29 Massimiliano Mantione <massi@ximian.com>
11587 * local-propagation.c: Added tree mover, and moved here all the
11588 local propagation code from mini.c
11589 * mini.c: Added support for treeprop, and moved all the local
11590 propagation code to local-propagation.c
11591 * mini.h: Added support for treeprop
11592 * driver.c: Added support for treeprop, enabled consprop, copyprop,
11593 treeprop, inline and deadce by default
11594 * Makefile.am: Added local-propagation.c
11596 2006-03-25 Zoltan Varga <vargaz@gmail.com>
11598 * exceptions-sparc.c: Applied patch from David S. Miller <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
11600 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
11602 * debug-debugger.c: make it compile without the Boehm GC.
11604 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11606 * mini.c: fixed issue with mismatch when an icall is registered
11607 with multiple names but same address.
11609 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11611 * declsec.c, mini-exceptions.c: use write barrier to set reference
11612 fields of managed objects.
11614 2006-03-19 Zoltan Varga <vargaz@gmail.com>
11616 * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
11617 (can_access_internals): Fix a warning.
11619 * mini.c (print_method_from_ip): Rename this to
11620 mono_print_method_from_ip so it gets exported.
11622 * trace.c: Deal with strings inside StringBuilder's containing garbage
11623 and fix memory leaks. Fixes #77848.
11625 2006-03-19 Zoltan Varga <vargaz@gmail.com>
11627 * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
11630 2006-03-16 Neale Ferguson <neale@sinenomine.net>
11632 * mini-s390.c: Remove OP_X86_TEST_NULL.
11634 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11636 * mini.c: use the correct GetHashCode() for the moving collector.
11638 2006-03-16 Massimiliano Mantione <massi@ximian.com>
11640 * liveness.c: Regalloc spill cost tuning.
11642 2006-03-15 Neale Ferguson <neale@sinenomine.net>
11644 * mini-s390x.h: Correct S390_LONG macro.
11646 * mini-s390x.c: Cleanup unused code.
11648 2006-03-15 Zoltan Varga <vargaz@gmail.com>
11650 * jit-icalls.h: New file.
11652 * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
11653 icalls and include that instead of including jit-icalls.c.
11655 * mini-ppc.c (mono_arch_output_basic_block): Remove references to
11658 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
11660 * mini.c: when checking for member accessibility, also check for
11661 friend assemblies and for explicit interface implementations.
11663 2006-03-14 Zoltan Varga <vargaz@gmail.com>
11665 * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
11667 * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
11669 * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11670 common cases are done first.
11672 * mini-ops.h: Only define platform specific opcodes on the given platform.
11674 * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
11677 2006-03-14 Martin Baulig <martin@ximian.com>
11679 Revert Paolo's change from r57348:
11681 * mini.h: don't use gboolean for bitfields.
11682 * mini.c: verifier changes for fields and methods accessibility.
11684 2006-03-13 Neale Ferguson <neale@sinenomine.net>
11686 * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
11688 * mini-s390x.c: Fix conv_r_un.
11690 * cpu-s390, cpu-s390x.md: Fix lengths.
11692 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11694 * mini.c: nested types have access to all the nesting
11695 levels, not just the enclosing types.
11697 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11699 * mini.c: added a few more verification checks.
11701 2006-03-12 Zoltan Varga <vargaz@gmail.com>
11703 * liveness.c: Merge optimizations from the linear-il branch.
11705 2006-03-11 Zoltan Varga <vargaz@gmail.com>
11707 * mini-ia64.c (emit_call): Add a comment.
11709 * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
11711 * tramp-ia64.c: Fix some warnings.
11713 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11715 * mini.h: don't use gboolean for bitfields.
11716 * mini.c: verifier changes for fields and methods accessibility.
11718 2006-03-11 Zoltan Varga <vargaz@gmail.com>
11720 * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
11721 lazy icall wrapper changes.
11723 * dominators.c: Replace all the dominator algorithms with faster
11724 ones from the linear-il branch.
11726 * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
11729 * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11730 common cases are done first.
11732 * mini-amd64.c: Fix some warnings.
11734 * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
11737 * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
11740 * mini.h: Add a missing prototype.
11742 2006-03-10 Zoltan Varga <vargaz@gmail.com>
11744 * mini.c: Compile icall wrappers lazily.
11746 * mini-codegen.c: Use printf instead of g_print since its much faster.
11748 * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
11751 * mini.c (optimize_branches): Cache the negative result from
11752 remove_block_if_useless ().
11754 * mini.c (optimize_branches): Avoid restarting the iteration after each change.
11755 Also fix some bblock linking issues.
11757 * helpers.c (mono_disassemble_code): Reduce the size of the temporary
11760 * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
11762 * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
11763 accessed fields first, for better cache behavior.
11765 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11767 * mini.c: speedup IList<T> array accesses.
11769 2006-03-09 Zoltan Varga <vargaz@gmail.com>
11771 * mini.c (mono_method_to_ir): Handle large methods overflowing the
11772 inline_costs counter. Fixes #77190.
11774 2006-03-06 Zoltan Varga <vargaz@gmail.com>
11776 * mini-exceptions.c: Call mono_trace_is_enabled () before printing
11777 trace messages. Fixes #77706.
11779 2006-03-04 Martin Baulig <martin@ximian.com>
11781 * tramp-amd64.c, tramp-x86.c
11782 (mono_debugger_create_notification_function): Use
11783 mono_global_codeman_reserve() to allocate a buffer at runtime and
11786 * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
11788 * debug-debugger.c (mono_debugger_init): Dynamically allocate the
11789 notification function at runtime and then call `initialize' in the
11790 `MONO_DEBUGGER__debugger_info' vtable.
11792 2006-03-04 Zoltan Varga <vargaz@gmail.com>
11794 * iltests.il: Fix a visibility problem.
11796 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11798 * driver.c, mini.c: add hooks for the counters API.
11800 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11802 * driver.c: show disabled options.
11804 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11806 * linear-scan.c: always use cost-driven selection.
11808 2006-02-28 Raja R Harinath <rharinath@novell.com>
11810 * jit-icalls.c (helper_compile_generic_method): Revert change from
11813 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
11815 * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
11817 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11819 * inssel.brg: style fixes, mostly to force the updated monoburg
11820 to run for people using svn.
11822 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11824 * mini.c: match monoburg changes.
11826 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11828 * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
11829 ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
11830 declaration in the header file.
11832 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11834 * helpers.c: reduce relocations and mem usage.
11836 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11838 * mini.h, mini-codegen.c: disable logging features if
11839 requested by configure.
11841 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
11843 * mini.c: tiny verifier changes.
11845 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11847 * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
11848 cpu-pentium.md: stack alignment changes for osx/x86,
11849 partially from Geoff Norton <gnorton@customerdna.com>.
11851 2006-02-24 Raja R Harinath <harinath@gmail.com>
11853 * jit-icalls.c (helper_compile_generic_method): Update to changes
11854 in metadata/class.c.
11856 2006-02-24 Zoltan Varga <vargaz@gmail.com>
11858 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
11860 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
11861 interface calls with large offsets.
11863 2006-02-23 Raja R Harinath <rharinath@novell.com>
11865 * jit-icalls.c (helper_compile_generic_method): Document the
11866 special-case we depend on so that we can inflate the method twice
11867 with the same context with no bad side-effects.
11869 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11871 * mini-x86.c, mini-amd64.c: fix for case when xen support
11874 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11876 * mini-x86.c, mini-amd64.c: generate code to access tls items
11877 in a faster way for Xen systems.
11879 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11881 * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
11882 updates and compilation fixes for the OSX/x86 port, mostly from
11883 Geoff Norton <gnorton@customerdna.com>.
11885 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
11887 * inssel.brg: faster interface call implementation
11888 to sync with the interface_offsets MonoVTable changes.
11890 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11892 * mini.c: more verification checks.
11894 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
11896 * mini.c: added a few more verification checks.
11898 2006-02-17 Neale Ferguson <neale@sinenomine.net>
11900 * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
11901 facility on the processor and use it if available.
11903 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11905 * driver.c, aot.c, mini.c: throw exception if the IL code is
11906 invalid or unverifiable.
11908 2006-02-17 Raja R Harinath <rharinath@novell.com>
11910 * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
11913 2006-02-16 Zoltan Varga <vargaz@gmail.com>
11915 * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
11917 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11919 * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
11920 mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
11921 handling of instantiated generic valuetypes.
11923 2006-02-11 Zoltan Varga <vargaz@gmail.com>
11925 * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of
11926 MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
11929 * generics.2.cs: Revert the nullable reftypes tests.
11931 2006-02-10 Zoltan Varga <vargaz@gmail.com>
11933 * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
11934 using __builtin_frame_address (1) as it doesn't work in the presence
11935 of optimizations. Hopefully fixes #77273.
11937 * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
11938 -> generics.cs change as it doesn't work with some automake versions.
11940 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11942 * mini.c: handle systems that sue a different way to
11943 retrieve the stack address of the current thread.
11945 2006-02-09 Zoltan Varga <vargaz@gmail.com>
11947 * Makefile.am generics.2.cs: Rename this to generics.cs and handle
11948 it specially in the makefile.
11950 * generics.2.cs: Add tests for nullable reference types.
11952 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11954 * mini.c: always handle the case when mono_jit_init()
11955 is called in a thread different from the main thread,
11956 confusing libgc (bug #77309).
11958 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
11960 * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
11962 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11964 * mini.c: change optimize_branches () to use a single loop
11965 and introduce a new optimization to simplify some range checks.
11967 2006-02-03 Martin Baulig <martin@ximian.com>
11969 * debug-debugger.c (debugger_thread_manager_thread_created): Removed
11970 and merged with debugger_thread_manager_add_thread().
11971 (mono_debugger_main): Call debugger_thread_manager_add_thread() to
11972 inform the debugger about the main thread.
11974 2006-02-03 Zoltan Varga <vargaz@gmail.com>
11976 * basic.cs: Add test for div.un/rem.un constant folding.
11978 2006-02-03 Neale Ferguson <neale@sinenomine.net>
11980 * cpu-s390x.md: correct int_xor_imm length
11982 2006-02-03 Zoltan Varga <vargaz@gmail.com>
11984 * generics.2.cs: New test for #77442.
11986 * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
11989 2006-02-02 Martin Baulig <martin@ximian.com>
11991 * tramp-x86.c, tramp-amd64.c: It's now safe to #include
11992 <mono/metadata/mono-debug-debugger.h>
11994 * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
11996 2006-02-02 Martin Baulig <martin@ximian.com>
11998 * debug-debugger.h: New header file for debug-debugger.c.
12000 * debug-debugger.c: Big API cleanup; don't run the managed Main()
12001 function is a separate thread anymore; add support for attaching.
12003 2006-02-01 Zoltan Varga <vargaz@gmail.com>
12005 * tramp-x86.c: Fix a warning.
12007 2006-01-31 Zoltan Varga <vargaz@gmail.com>
12009 * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
12010 on very large methods.
12012 * aot.c (load_patch_info): Fix a warning.
12014 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
12016 * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
12017 mini-ops.h: alu membase optimizations.
12019 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
12021 * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
12022 to speedup StringBuilder.
12024 2006-01-27 Zoltan Varga <vargaz@gmail.com>
12026 * dominators.c (mono_compute_natural_loops): Fix detection of
12027 loop body start blocks.
12029 * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
12031 2006-01-26 Zoltan Varga <vargaz@gmail.com>
12033 * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
12036 2006-01-25 Massimiliano Mantione <massi@ximian.com>
12038 * aliasing.c: Fixed aliasing issue on 64 bit archs.
12040 2006-01-25 Martin Baulig <martin@ximian.com>
12042 * debug-debugger.c: Moved the `MonoDebuggerManager' and
12043 `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
12044 started to cleanup this file a little bit.
12046 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
12048 * mini.c: optimize a codepath frequently happening in generics code.
12050 2006-01-23 Martin Baulig <martin@ximian.com>
12052 * Makefile.am: Only compile debug-debugger.c on supported platforms.
12054 * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
12055 functions directly.
12057 * driver.c: debug-debugger.c is only available if
12058 `MONO_DEBUGGER_SUPPORTED' is defined.
12060 2006-01-23 Martin Baulig <martin@ximian.com>
12062 * debug-debugger.c: Only enable this on platforms where the Mono
12063 Debugger is working (x86 and x86_64).
12065 2006-01-21 Martin Baulig <martin@ximian.com>
12067 The Mono Debugger is now using the normal `mono' instead of the
12068 `mono-debugger-mini-wrapper' when executing managed code.
12070 * debug-debugger.c: New file; previously known as
12071 debugger/wrapper/wrapper.c.
12073 * debug-mini.c (mono_init_debugger): Removed.
12075 * driver.c (mono_main): Added new `--inside-mdb' command line
12076 argument which is used when running inside the debugger.
12078 2006-01-20 Zoltan Varga <vargaz@gmail.com>
12080 * liveness.c (mono_analyze_liveness): Remove some unused data
12083 2006-01-17 Zoltan Varga <vargaz@gmail.com>
12085 * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
12087 2006-01-16 Zoltan Varga <vargaz@gmail.com>
12089 * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
12090 depends on implementation details of monobitset.
12092 * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
12095 2006-01-15 Zoltan Varga <vargaz@gmail.com>
12097 * liveness.c: Update after monobitset changes.
12099 2006-01-14 Zoltan Varga <vargaz@gmail.com>
12101 * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
12103 2006-01-11 Neale Ferguson <neale@sinenomine.net>
12105 * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
12107 * mini-s390x.c: Remove warning messages.
12109 2006-01-11 Ben Maurer <bmaurer@andrew.cmu.edu>
12111 * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
12113 2006-01-10 Zoltan Varga <vargaz@gmail.com>
12115 * generics.2.cs: Add ldelem/stelem_any test.
12117 2006-01-10 Neale Ferguson <neale@sinenomine.net>
12119 * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
12121 2006-01-07 Zoltan Varga <vargaz@gmail.com>
12123 * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
12125 2006-01-06 Zoltan Varga <vargaz@gmail.com>
12127 * generics.2.cs: Reenable vtype tests.
12129 * inssel-x86.brg: Remove an icorrect valuetype rule.
12131 2006-01-06 Neale Ferguson <neale@sinenomine.net>
12133 * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
12134 initial support for OP_ABS.
12136 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12138 * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
12140 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12142 * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int
12143 conversion and implement LADD/LSUB.
12145 * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
12148 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12150 * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
12152 * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
12155 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12157 * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when
12158 localloc is encountered. Fixes crash in test-183.cs when using gmcs
12159 (stack walk problem).
12161 2006-01-04 Zoltan Varga <vargaz@gmail.com>
12163 * aot.c (mono_aot_load_method): Fix a warning.
12165 2006-01-03 Neale Ferguson <neale@sinenomine.net>
12167 * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
12169 2006-01-03 Zoltan Varga <vargaz@gmail.com>
12171 * iltests.il: Add test for #77148.
12173 * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
12176 2006-01-03 Neale Ferguson <neale@sinenomine.net>
12178 * mini-s390x.c, inssel-s390x.brg: Remove debug statements
12180 2006-01-03 Neale Ferguson <neale@sinenomine.net>
12182 * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
12183 cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
12185 * basic-long.cs: Add lconv-to-r4/r8 tests.
12187 2006-01-03 Zoltan Varga <vargaz@gmail.com>
12189 * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
12191 * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
12192 here as on other archs.
12194 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12196 * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
12198 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12200 * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
12202 * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
12204 * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
12205 instrument_prolog; Add memory_barrier instruction.
12207 2005-12-26 Zoltan Varga <vargaz@gmail.com>
12209 * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
12211 2005-12-23 Zoltan Varga <vargaz@gmail.com>
12213 * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
12215 * aliasing.c inssel.brg: Fix warnings.
12217 * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
12218 could skip initialization of some parts of memory.
12220 * mini.c mini-ia64.c: Fix warnings.
12222 * inssel-sparc.brg: Add an implementation of lneg which actually works.
12224 2005-12-22 Zoltan Varga <vargaz@gmail.com>
12226 * aliasing.c (mono_build_aliasing_information): Add a workaround for
12227 a crash seen on sparc.
12229 * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
12231 * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
12233 2005-12-21 Neale Ferguson <neale@sinenomine.net>
12235 * mini-ops.h: Add s390_backchain instruction
12237 * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
12239 * cpu-s390.md: Add s390_backchain instruction
12241 * mini-s390.c: Significant ABI changes
12243 * mini-s390.h: Cater for zero length structures
12245 2005-12-20 Neale Ferguson <neale@sinenomine.net>
12247 * mini-s390.c: ABI fixes
12249 * inssel-s390.brg: Remove debug statements
12251 * cpu-s390.md: Fix length of ATOMIC_xx operations
12253 2005-12-19 Zoltan Varga <vargaz@gmail.com>
12255 * basic-float.cs: Add float<->long conversion tests.
12257 2005-12-16 Neale Ferguson <neale@sinenomine.net>
12259 * mini-s390.c: Fix LOCALLOC processing.
12261 * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
12263 2005-12-15 Zoltan Varga <vargaz@gmail.com>
12265 * iltests.il: Add tests for some opcodes not covered by the other
12268 2005-12-15 Neale Ferguson <neale@sinenomine.net>
12270 * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct
12271 register loading for Tail processing; Correct trace output.
12273 * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
12275 * cpu-s390.md: Correct size of jmp instruction.
12277 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12279 * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
12281 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12283 * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
12284 Bring s390 up to current level.
12286 2005-12-12 Zltan Varga <vargaz@gmail.com>
12288 * generics.2.cs: Disable the newly added tests as they do not work yet.
12290 * generics.2.cs: Add valuetype tests.
12292 2005-12-09 Zoltan Varga <vargaz@gmail.com>
12294 * basic-long.cs: Add i4->u8 test.
12296 * objects.cs: Add tests for JIT intrinsic.
12298 * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
12299 optimizations lost by a mistake.
12301 2005-12-07 Zoltan Varga <vargaz@gmail.com>
12303 * basic-long.cs: Remove a test moved to objects.cs.
12305 * arrays.cs: Add more array tests.
12307 2005-12-06 Zoltan Varga <vargaz@gmail.com>
12309 * arrays.cs: Add new tests for multi-dimensional arrays.
12311 2005-12-06 Raja R Harinath <rharinath@novell.com>
12313 * Makefile.am (test_sources2): Add generics.2.cs.
12314 (EXTRA_DIST): Add test_sources2.
12316 2005-12-05 Ben Maurer <bmaurer@ximian.com>
12318 Support for boxing and unboxing nullable types as well as the
12319 isinst operation on nullables, per the CLI ammendment.
12321 * inssel.brg (CEE_ISINST): Special case for nullable
12323 * mini.c (handle_unbox_nullable): new method
12324 (handle_box): Special case for nullable types
12325 (mono_method_to_ir): Call handle_unbox_nullable in correct
12328 * generics.2.cs: New test suite
12330 * Makefile.am: Support for regression tests with generics.
12332 2005-12-03 Zoltan Varga <vargaz@gmail.com>
12334 * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
12335 allocated to registers. Fixes #76800.
12337 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
12339 * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
12341 2005-11-30 Zoltan Varga <vargaz@gmail.com>
12343 * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot
12346 2005-11-29 Zoltan Varga <vargaz@gmail.com>
12348 * objects.cs basic-calls.cs: Move a test depending on valuetypes to
12351 * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
12353 * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
12354 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
12356 * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
12357 single precision before storing to a single precision location.
12359 2005-11-28 Raja R Harinath <rharinath@novell.com>
12361 * Makefile.am (ILASM): Use profile-dependent location of ilasm.
12363 2005-11-27 Zoltan Varga <vargaz@gmail.com>
12365 * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
12368 * basic.cs: Remove test_0_byte_compares test which was moved to
12369 objects.cs a long time ago.
12371 2005-11-22 Massimiliano Mantione <massi@ximian.com>
12373 * aliasing.c: Fixed aliasing issue on 64 bit archs.
12375 2005-11-20 Zoltan Varga <vargaz@gmail.com>
12377 * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
12378 handlers are called.
12380 * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
12383 * mini-ia64.c: Add support for the throw->branch exception
12386 * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
12388 2005-11-18 Massimiliano Mantione <massi@ximian.com>
12390 * mini.c: Enabled "fastpath" deadce :-)
12392 2005-11-18 Massimiliano Mantione <massi@ximian.com>
12394 * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
12395 alias analysis pass to support it.
12396 * mini.h: Likewise.
12398 * liveness.c: Likewise (liveness computation can use aliasing
12399 information to be more accurate).
12400 * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
12401 moreover made so that "--compile-all" uses the given optimization
12402 flags and not the default ones.
12403 * aliasing.c: Alias analysis (new file).
12404 * aliasing.h: Likewise.
12405 * Makefile.am: added "aliasing.c" and "aliasing.h".
12407 2005-11-17 Zoltan Varga <vargaz@gmail.com>
12409 * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
12412 2005-11-13 Zoltan Varga <vargaz@gmail.com>
12414 * mini-exceptions.c (mono_handle_exception_internal): Remove the
12415 fp >= end_of_stack exit condition, as it is not needed, and it might
12416 become true for fp eliminated frames.
12418 2005-11-11 Zoltan Varga <vargaz@gmail.com>
12420 * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
12423 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
12425 * mini-arm.c: fixed alignment of doubles/longs to match
12426 the C ABI (bug #76635).
12428 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
12430 * aot.c: fix compilation with --enable-minimal=aot.
12432 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
12434 * mini-arm.c: fixed compatibility with the new
12435 floating point emulator package for compares.
12437 2005-11-03 Atsushi Enomoto <atsushi@ximian.com?
12439 * mini.c : reverted sig->pinvoke changes (r51396-51397).
12441 2005-11-01 Zoltan Varga <vargaz@freemail.hu>
12443 * mini-exceptions.c (print_stack_frame): Output to stderr.
12444 (mono_handle_native_sigsegv): Ditto.
12446 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
12448 * mini-amd64.c (mono_arch_output_basic_block): Remove unused
12449 OP_LCONV_TO_OVF_I implementation.
12451 * mini-amd64.c: Add support for the throw->branch exception
12454 * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
12455 when the catch clause catches a more general exception, i.e. Object.
12457 2005-10-30 Zoltan Varga <vargaz@gmail.com>
12459 * cpu-ia64.md: Remove unused opcodes.
12461 * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
12462 specific defines for architectures defining USE_SIGACTION.
12464 * mini-ia64.c: Fix some warnings.
12466 * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
12467 version seemed to skip a frame.
12469 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
12471 * mini.c: Clean up the usage of sig->pinvoke flag. Now
12472 only calls which are made to native code use this flag.
12474 2005-10-29 Zoltan Varga <vargaz@freemail.hu>
12476 * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
12477 varargs methods as well.
12479 * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
12480 which have save_lmf set. Reorganize methods prologs a bit.
12482 * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
12483 debugger to the proper place.
12485 2005-10-29 Martin Baulig <martin@ximian.com>
12487 * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
12488 when running inside the debugger until the debugger has support
12491 2005-10-26 Zoltan Varga <vargaz@gmail.com>
12493 * mini.h: Fix a warning.
12495 2005-10-24 Miguel de Icaza <miguel@novell.com>
12497 * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
12498 we expose publicly, this returns the string.
12500 2005-10-22 Zoltan Varga <vargaz@freemail.hu>
12502 * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
12503 with fp elimination.
12505 2005-10-21 Zoltan Varga <vargaz@gmail.com>
12507 * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
12508 native stacktrace using the glibc 'backtrace' function if available.
12510 2005-10-20 Zoltan Varga <vargaz@gmail.com>
12512 * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
12514 * mini-exceptions.c (mono_handle_native_sigsegv): New function to
12515 handle SIGSEGVs received while in native code.
12517 * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
12518 code, call mono_handle_native_sigsegv which will abort the runtime
12519 after printing some diagnostics, instead of converting it into a
12520 confusing NullReferenceException.
12522 2005-10-18 Zoltan Varga <vargaz@gmail.com>
12524 * cpu-pentium.md: Remove unused opcodes.
12526 2005-10-18 Zoltan Varga <vargaz@freemail.hu>
12528 * mini-amd64.h (MonoLMF): Add rsp field.
12530 * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
12533 2005-10-17 Zoltan Varga <vargaz@gmail.com>
12535 * mini-codegen.c (get_register_spilling): Fix some warnings.
12537 2005-10-16 Zoltan Varga <vargaz@freemail.hu>
12539 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
12540 elimination during exception handling. Enable fp elimination by
12543 * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
12546 2005-10-16 Martin Baulig <martin@ximian.com>
12548 * mini-exceptions.c
12549 (mono_debugger_run_finally): New public method for the debugger.
12551 2005-10-10 Zoltan Varga <vargaz@gmail.com>
12553 * debug-mini.c (mono_debug_init_method): Fix warning.
12555 * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
12556 the 'exname' parameter const to fix some warnings.
12558 2005-10-09 Zoltan Varga <vargaz@freemail.hu>
12560 * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
12561 introduced by the previous patch.
12563 2005-10-08 Zoltan Varga <vargaz@gmail.com>
12565 * basic-float.cs: Add test for precision of float arithmetic.
12567 * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
12568 when loading/storing single values from/to memory.
12570 * mini.c (mono_jit_compile_method_with_opt): Create the function
12571 pointers in the correct domain.
12573 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
12575 * mini-exceptions.c (mono_handle_exception_internal): Fix bug
12576 introduced by previous patch.
12578 * mini-exceptions.c (mono_handle_exception_internal): Handle the case
12579 when out_filter_idx is NULL.
12581 * mini-exceptions.c: Don't run filter clauses twice during exception
12582 handling. Fixes #75755.
12584 2005-10-07 Zoltan Varga <vargaz@gmail.com>
12586 * aot.c: Add support for ldflda wrappers.
12588 * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
12591 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
12593 * mini.c, mini.h: do not consider exception handlers blocks when
12594 setting up interface variables.
12596 2005-10-04 Zoltan Varga <vargaz@freemail.hu>
12598 * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
12600 2005-10-03 Zoltan Varga <vargaz@gmail.com>
12602 * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
12603 causes a regression.
12605 * mini.c (mini_thread_cleanup): Fix reading of freed memory.
12607 2005-10-02 Zoltan Varga <vargaz@freemail.hu>
12609 * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
12610 of the OP_P definitions.
12612 * TODO: Add a proposal for dealing with the CEE/OP mess.
12614 * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm
12615 optimizations from the x86 port.
12617 * cpu-amd64.md: Ditto.
12619 * basic.cs basic-long.cs: Add tests.
12621 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
12623 * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
12624 Patrik Torstensson's implementation of my exception-handling
12625 optimization idea, when the exception object is not used
12628 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
12630 * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
12631 of the mul_imm optimizations from the old jit.
12633 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
12635 * mini.c, liveness.c: patch by Patrik Torstensson and
12636 Zoltan Varga to improve performance in methods with
12639 2005-09-30 Zoltan Varga <vargaz@gmail.com>
12641 * driver.c: Remove 'Globalization' entry from --version.
12643 2005-09-28 Zoltan Varga <vargaz@gmail.com>
12645 * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
12646 there is a profiler interested in JIT events.
12648 * aot.c: Load profile files produced by the AOT profiling module, and
12649 reorder methods based on the profiling info. Add a 'method_order' table
12650 to the AOT file to make mono_aot_find_jit_info work with the reordered
12653 * mini.h: Bump AOT file version info.
12655 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
12657 * mini-arm.h: work around what looks like a gcc bug when optimizations
12660 2005-09-28 Raja R Harinath <rharinath@novell.com>
12662 * Makefile.am (AM_CFLAGS): Don't use += to append inside
12663 conditionals. Use ...
12664 (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
12666 2005-09-27 Zoltan Varga <vargaz@freemail.hu>
12668 * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
12669 to determine the amount of memory to copy when passing valuetypes.
12671 * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
12672 4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
12674 2005-09-27 Zoltan Varga <vargaz@gmail.com>
12676 * mini.h mini.c aot.c: Add infrastructure to collect pagefault
12677 information about aot.
12679 2005-09-27 Ben Maurer <bmaurer@ximian.com>
12681 * *.c: Replace the use of {Enter,Leave}CriticalSection with
12682 macros. This will allow a deadlock debugger to easily be plugged
12685 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
12687 * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
12689 2005-09-27 Raja R Harinath <rharinath@novell.com>
12691 * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
12692 (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
12693 (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
12694 ($(arch_built)) [CROSS_COMPILING]: Error out.
12696 2005-09-26 Zoltan Varga <vargaz@gmail.com>
12698 * aot.c: Add support for the no_special_static flag for classes.
12700 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
12702 * Reapply reverted patches.
12704 * *: Revert r50174 as well.
12706 * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
12708 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
12710 * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
12712 2005-09-23 Miguel de Icaza <miguel@novell.com>
12714 * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
12715 part of the SIG_HANDLER_SIGNATURE.
12717 2005-09-23 Zoltan Varga <vargaz@gmail.com>
12719 * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
12722 * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention
12723 introduced by previous patch.
12725 2005-09-21 Zoltan Varga <vargaz@gmail.com>
12727 * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
12728 saved registers too.
12730 * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based
12731 upon the information returned by get_call_info ().
12733 * mini-x86.c (add_float): Fix stack size calculation.
12734 (mono_arch_call_opcode): Rewrite this so it works based up the
12735 information returned by get_call_info ().
12736 (mono_arch_get_this_vret_args): Ditto.
12738 2005-09-21 Zoltan Varga <vargaz@freemail.hu>
12740 * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
12741 in cinfo to determine the registers which need to be used.
12743 2005-09-20 Miguel de Icaza <miguel@novell.com>
12745 * driver.c (mono_main): Add --server and --desktop flags.
12747 2005-09-16 Zoltan Varga <vargaz@gmail.com>
12749 * mini-ia64.h: Make register masks 64 bit. Don't treat argument
12750 registers as global registers.
12752 * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no
12753 longer needed with the new register allocator.
12755 * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
12757 * cpu-ia64.md: Remove unused opcodes.
12759 * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
12761 2005-09-16 Zoltan Varga <vargaz@freemail.hu>
12763 * cpu-amd64.md: Remove unused opcodes.
12765 * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
12766 needed with the new register allocator.
12768 * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
12771 2005-09-16 Raja R Harinath <rharinath@novell.com>
12773 * Makefile.am (check-local): Don't invoke semdel-wrapper.
12775 2005-09-16 Martin Baulig <martin@ximian.com>
12777 * exceptions-amd64.c
12778 (throw_exception): Don't call mono_debugger_throw_exception() if
12779 we're a rethrow - see the FIXME in the code.
12781 2005-09-15 Geoff Norton <gnorton@customerdna.com>
12783 * mini.c (mono_init_exceptions): This only works on some architectures.
12785 2005-09-15 Zoltan Varga <vargaz@gmail.com>
12787 * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
12790 * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
12792 * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
12793 now in mini-exceptions.c.
12795 2005-09-15 Zoltan Varga <vargaz@freemail.hu>
12797 * mini-amd64.h mini-am64.c: Remove the altstack support code which is
12798 now in mini-exceptions.c.
12800 2005-09-15 Zoltan Varga <vargaz@gmail.com>
12802 * exceptions-x86.c: Applied patch from Patrik Torstensson
12803 <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
12805 * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
12806 code into mini-exceptions.c. Add some assertions to it.
12808 2005-09-12 Zoltan Varga <vargaz@gmail.com>
12810 * aot.c (emit_section_change): Applied patch from "The Software Team"
12811 (<software@solmersa.com>). Fix as errors on windows.
12813 2005-09-11 Zoltan Varga <vargaz@freemail.hu>
12815 * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
12816 method info into the LMF.
12818 2005-09-11 Zoltan Varga <vargaz@gmail.com>
12820 * mini-ia64.c: Add proper unwind info for method epilogs.
12822 * exceptions-ia64.c: Add some code to help debugging.
12824 * mini-ia64.c mini-ia64.h: Add sigaltstack support.
12826 * mini-exceptions.c: Fix warning.
12828 2005-09-11 Zoltan Varga <vargaz@freemail.hu>
12830 * mini.c: Really fix build.
12832 * mini-x86.c mini-amd64.c: Fix build.
12834 2005-09-11 Zoltan Varga <vargaz@gmail.com>
12836 * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
12838 * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
12839 some Interlocked methods as intrinsics.
12841 * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
12842 for Thread methods as well.
12844 * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
12846 * inssel.brg: Add rule for OP_MEMORY_BARRIER.
12848 * mini-ia64.c mini-x86.c mini-amd64.c
12849 cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of
12852 * mini.c (mono_init_exceptions): Fix build breakage.
12854 2005-09-10 Zoltan Varga <vargaz@gmail.com>
12856 * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
12857 of instructions. Use the new ia64_unw_op macros for emitting unwind
12860 * mini.c (mono_init_exceptions): Initialize exception handling
12861 related trampolines at startup.
12863 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
12865 * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
12867 2005-09-09 Zoltan Varga <vargaz@gmail.com>
12869 * mini.c: Handle type loading errors gracefully during compilation and
12870 throw the appropriate exception.
12872 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
12874 * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
12875 for the mono binary.
12877 2005-09-09 Martin Baulig <martin@ximian.com>
12879 * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
12882 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12884 * mini-arm.h: use emulation for conv.r.un for the release.
12886 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12888 * mini-arm.c, objects.cs: more fixes and tests for them.
12890 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12892 * mini-arm.c: align structures to at least 4 bytes to be able
12893 to keep our current optimized memcpy.
12895 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
12897 * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
12899 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12901 * mini.c: ignore SIGPIPE.
12903 2005-09-04 Zoltan Varga <vargaz@gmail.com>
12905 * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
12907 * mini-ia64.h mini-ia64.c: Add some minor optimizations.
12909 2005-09-02 Zoltan Varga <vargaz@gmail.com>
12911 * mini.h: Add prototype for mono_allocate_stack_slots_full.
12913 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12915 * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
12916 exception handling support.
12917 * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
12918 patch by Brian Koropoff <briank@marakicorp.com>).
12920 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
12922 * mini.c: revert another 'optimization' which breaks when
12923 items on the eval stack need to be saved at a basic block end
12926 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
12928 * jit-icalls.c: for arrays, ensure we always provide
12931 2005-08-30 Zoltan Varga <vargaz@gmail.com>
12933 * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
12935 * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
12937 2005-08-29 Zoltan Varga <vargaz@gmail.com>
12939 * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
12940 arguments in their original register.
12942 2005-08-28 Zoltan Varga <vargaz@gmail.com>
12944 * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
12947 * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
12948 when ssapre is enabled.
12950 * inssel-long.brg: Fix bug in previous patch.
12952 * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize
12953 multiplication by a constant.
12955 2005-08-27 Zoltan Varga <vargaz@gmail.com>
12957 * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
12960 * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
12963 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
12965 * inssel-arm.brg: apply changes tested by Brian Koropoff
12966 <briank@marakicorp.com>.
12968 2005-08-25 Zoltan Varga <vargaz@gmail.com>
12970 * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
12972 2005-08-24 Zoltan Varga <vargaz@gmail.com>
12974 * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
12975 to the same register if dreg is just a base register.
12976 (print_ins): Improve printing of membase opcodes.
12978 * inssel-x86.brg: Add optimized ldind(reg) rules.
12980 * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
12982 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
12984 * mini.c: when running under valgrind, set the stack bottom for
12985 the GC at the actual approximate stack for the app (fixes running
12986 mono with valgrind).
12988 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
12990 * mini.c: do no break at the first valuetype to init found
12991 (fixes bug #75791).
12993 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
12995 * cpu-arm.md, mini-arm.c: more fixes and LMF support.
12997 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
12999 * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
13001 2005-08-23 Zoltan Varga <vargaz@freemail.hu>
13003 * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
13005 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
13007 * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
13009 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
13012 * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
13015 * mini.c (optimize_branches): Don't quit after 1000 iterations on large
13018 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
13020 * tramp-arm.c: allocate less memory for the trampoline and fix typo.
13022 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
13024 * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
13025 in the tail recursion optimization.
13027 * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as
13028 debug info into the assembly file.
13030 * iltests.il: Add test for filter regions.
13032 * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
13033 initial stack of filter regions. Fixes #75755.
13035 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
13037 * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
13038 stack requirements.
13040 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
13042 * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
13043 the check for an already compiled method on non-ia64 platforms.
13044 (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
13047 * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
13049 * inssel-x86.brg: Add some optimized call rules.
13051 2005-08-21 Zoltan Varga <vargaz@freemail.hu>
13053 * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
13056 * mini.h mini-trampolines.c: Pass the trampoline argument to
13057 mono_arch_patch_delegate_trampoline.
13059 * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
13061 * mini-trampolines.c: Fix build.
13063 * mini-amd64.h: Add delegate trampolines.
13065 * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
13067 * inssel-amd64.brg: Add optimized call rules.
13069 * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
13071 * inssel-ia64.brg: Add optimized ldind(reg) rules.
13073 2005-08-20 Zoltan Varga <vargaz@freemail.hu>
13075 * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
13078 * mini-ia64.c: Remove LMF fixmes.
13080 * mini-ia64.h: Remove most fields from LMF.
13082 * inssel-ia64.brg (stmt): Fix unaligned access errors.
13084 * mini-trampolines.c: Add support for IA64 function descriptors.
13086 * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
13087 for IA64 function descriptors.
13089 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
13091 * tramp-arm.c: patch the vtable for virtual calls. Added
13092 support code to register/unregister the LMF.
13093 * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
13096 2005-08-19 Dick Porter <dick@ximian.com>
13098 * mini.c: Use a gsize to store the thread ID, so it can hold a 64
13099 bit value if needed.
13101 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
13103 * mini.c (mini_get_method): Move handling of wrapper data here.
13105 * mini.c (mono_method_to_ir): Add support for dynamic methods.
13107 * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
13110 * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so
13111 bblock->code does not remain empty.
13113 2005-08-17 Zoltan Varga <vargaz@freemail.hu>
13115 * arrays.cs: Add regression test for #75832.
13117 * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
13118 rules. Fixes #75832.
13120 * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
13121 instruction scheduling.
13123 2005-08-12 Zoltan Varga <vargaz@freemail.hu>
13125 * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
13127 2005-08-11 Zoltan Varga <vargaz@freemail.hu>
13129 * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
13131 * mini-codegen.c: Fix VC build.
13133 * cpu-pentium.md: Increase length of atomic_exhange_i4.
13135 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13137 * mini.h: fix signature for mono_register_opcode_emulation.
13139 2005-08-09 Zoltan Varga <vargaz@freemail.hu>
13141 * mini.c: Get rid of most of the helper_sig_... constants using
13142 mono_create_icall_signature ().
13144 2005-08-08 Zoltan Varga <vargaz@freemail.hu>
13146 * jit-icalls.c (helper_ldstr): New helper function.
13148 * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
13150 * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
13151 throw, load the string using a helper call instead of creating a string object.
13153 * aot.c: Update after LDSTR changes.
13155 * mini.h: Bump AOT file version.
13157 * aot.c: Save class size info into the AOT file. Print more statistics during
13160 * mini.h: Bump AOT file version.
13162 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
13163 ordering of disasm cases. Fixes #74957.
13165 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
13167 * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
13168 jit-icalls.c, mini-codegen.c, Makefile.am: changes in
13169 the generic code needed for the ARM port.
13171 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
13173 * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
13174 inssel-arm.brg: more ARM features and fixes.
13176 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
13178 * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
13179 ARM port work in progress.
13181 2005-07-30 Zoltan Varga <vargaz@freemail.hu>
13183 * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
13185 * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
13187 * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
13189 * inssel.brg (mini_emit_memset): Add support for unaligned access.
13191 * *-ia64.*: Ongoing IA64 work.
13193 * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
13195 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
13197 * TODO: Remove out-of-data todo stuff.
13199 * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
13202 * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
13204 * mini.h: Bump corlib version.
13206 2005-07-27 Martin Baulig <martin@ximian.com>
13209 (create_copy_ins): Added `const unsigned char *ip' argument; set
13210 `copy->cil_code' from it.
13212 2005-07-27 Martin Baulig <martin@ximian.com>
13214 * mini-exceptions.c (mono_handle_exception): Don't call
13215 mono_debugger_handle_exception() for filters.
13217 2005-07-27 Zoltan Varga <vargaz@freemail.hu>
13219 * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
13222 2005-07-26 Martin Baulig <martin@ximian.com>
13224 Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
13226 * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
13227 helper_compile_generic_method() if the method is actually virtual
13230 2005-07-26 Martin Baulig <martin@ximian.com>
13233 (trampoline_code): Renamed to `mono_trampoline_code' and made it
13234 public; this is now accessed directly by the debugger.
13235 (mono_generic_trampoline_code): Removed.
13238 (mono_debug_init_method): Also add interncalls and wrappers.
13240 2005-07-23 Zoltan Varga <vargaz@freemail.hu>
13242 * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
13244 2005-07-22 Zoltan Varga <vargaz@freemail.hu>
13246 * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
13248 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
13250 * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
13252 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
13254 * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
13255 getting TLS offsets on AMD64 too.
13257 2005-07-20 Kornél Pál <kornelpal@hotmail.com>
13259 * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
13261 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
13263 * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
13264 inssel-arm.brg, mini-arm.h: ARM port work in progress.
13266 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
13268 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
13270 * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
13273 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call
13274 mono_sparc_is_virtual_call ().
13276 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
13278 * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
13279 trampoline parameters.
13281 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
13283 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
13284 to mono_arch_get_vcall_slot_addr.
13286 * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
13289 * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
13291 2005-07-19 Zoltan Varga <vargaz@freemail.hu>
13293 * mini-ia64.h mini-ia64.c: Finish pinvoke support.
13295 2005-07-19 Martin Baulig <martin@ximian.com>
13297 * exceptions-amd64.c (throw_exception): Call
13298 mono_debugger_throw_exception() here like we're doing it on i386.
13300 2005-07-19 Zoltan Varga <vargaz@freemail.hu>
13302 * mini-ia64.c: Add optimized TLS access support.
13304 2005-07-18 Zoltan Varga <vargaz@freemail.hu>
13306 * mini-exceptions.c: Ongoing IA64 work.
13308 * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
13310 * mini.c: Use the default optimization set when embedding. Fixes
13313 2005-07-11 Zoltan Varga <vargaz@freemail.hu>
13315 * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts
13316 of trampolines to a separate file.
13318 * mini-trampolines.c: New file.
13320 * mini.h tramp-x86.c: Move arch independent parts of trampolines to a
13323 * tramp-x86.c: Reorganize the trampoline code to be similar to the
13326 * mini-codegen.c: Fix cygwin build.
13328 2005-07-10 Zoltan Varga <vargaz@freemail.hu>
13330 * mini.c: Add some minor changes needed by the IA64 port.
13332 * *-ia64.*: Ongoing IA64 work.
13334 2005-07-09 Zoltan Varga <vargaz@freemail.hu>
13336 * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split
13337 trampolines into arch-independent and arch-dependent parts.
13339 * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
13341 2005-07-08 Zoltan Varga <vargaz@freemail.hu>
13343 * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
13345 * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
13346 the xp-regalloc-branch for amd64.
13348 * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
13349 xp-regalloc-branch for x86.
13351 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
13353 * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
13355 2005-07-06 Martin Baulig <martin@ximian.com>
13358 (mono_jit_compile_method_inner): Call mono_get_inflated_method().
13359 (mono_jit_runtime_invoke): Likewise.
13361 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
13363 * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
13366 * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
13367 without loading their metadata. Reorganize the file format so exception handling+
13368 debug info is kept separate from normal method info. Create MonoJitInfo
13369 structures for methods lazily.
13371 * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
13373 (x86_class_init_trampoline): Patch AOT class init trampolines too.
13375 * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
13377 * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
13380 * mini.h: Bump AOT file version.
13382 2005-07-04 Zoltan Varga <vargaz@freemail.hu>
13384 * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13386 2005-07-01 Raja R Harinath <rharinath@novell.com>
13388 * Makefile.am (check-local): Call semdel-wrapper.
13390 2005-06-29 Zoltan Varga <vargaz@freemail.hu>
13392 * mini-x86.c: Revert the last change as it seems to break the build..
13394 2005-06-28 Zoltan Varga <vargaz@freemail.hu>
13396 * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13398 * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
13400 2005-06-27 Ben Maurer <bmaurer@ximian.com>
13402 * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
13403 outside of the macro, so strange stuff doesn't happen with gcc4
13404 (NEW_AOTCONST_TOKEN): Likewise.
13406 2005-06-28 Martin Baulig <martin@ximian.com>
13408 * mini.c (mini_class_is_system_array): New static method; use this
13409 instead of `klass->parent == mono_defaults.array_class' everywhere
13410 since this also works for the new generic array class.
13412 2005-06-26 Ben Maurer <bmaurer@ximian.com>
13414 * inssel.brg: Remove warnings.
13416 2005-06-24 Zoltan Varga <vargaz@freemail.hu>
13418 * mini-ia64.c: Ongoing IA64 work.
13420 * basic-float.cs: Add float->i1 conversion test.
13422 * iltests.il: Add conv.u4 test.
13424 2005-06-23 Zoltan Varga <vargaz@freemail.hu>
13426 * inssel-long.brg: Fix bug caused by last change.
13428 2005-06-23 Geoff Norton <gnorton@customerdna.com>
13430 * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other
13431 BSDs. Allows the x86 JIT to work on OSX86
13433 2005-06-22 Zoltan Varga <vargaz@freemail.hu>
13435 * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
13438 * mini-ia64.c: Ongoing IA64 work.
13440 2005-06-19 Zoltan Varga <vargaz@freemail.hu>
13442 * mini-ia64.c: Ongoing IA64 work.
13444 * driver.c: Clean up jit_code_hash as well when using --regression.
13446 * inssel-long.brg: Fix long->i4/u4 conversion rules.
13448 * basic-long.cs: Add tests for long->u4 conversion.
13450 2005-06-18 Ben Maurer <bmaurer@ximian.com>
13452 * mini.c: Take mono_get_domainvar out of macros. This makes sure
13453 that we do not depend on undefined C behavior: the order stuff
13454 gets evaluated within an expression. Fixes mono when compiled on
13457 2005-06-18 Zoltan Varga <vargaz@freemail.hu>
13459 * *-ia64.*: Ongoing IA64 work.
13461 * aot.c: Lower memory usage while loading AOT methods.
13463 * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
13465 * mini.h: Bump AOT file format version.
13467 2005-06-17 Zoltan Varga <vargaz@freemail.hu>
13469 * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
13471 2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
13473 * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
13474 not on callee assembly). Fixed some comments.
13476 2005-06-16 Zoltan Varga <vargaz@freemail.hu>
13478 * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
13479 it gets proper disassembly.
13480 (emit_method_info): Remove some dead code.
13482 * mini.c (mini_method_compile): Allways allocate the GOT var in
13483 mono_method_to_ir for emulating opcodes.
13485 2005-06-13 Zoltan Varga <vargaz@freemail.hu>
13487 * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
13488 before freeing the code memory. Fixes #74990.
13490 * objects.cs: Add regression test for #74992.
13492 * liveness.c: Extend live ranges of arguments to the beginning of the
13493 method. Fixes #74992.
13495 * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
13496 so it points into the faulting instruction.
13498 2005-06-12 Zoltan Varga <vargaz@freemail.hu>
13500 * jit-icalls.c (mono_imul_ovf): Add exception handling.
13502 * *-ia64.*: Ongoing IA64 work.
13504 * mini.c (mini_init): Fix signature of mono_delegate_ctor.
13506 2005-06-11 Zoltan Varga <vargaz@freemail.hu>
13508 * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
13510 * *-ia64.*: Ongoing IA64 work.
13512 2005-06-10 Zoltan Varga <vargaz@freemail.hu>
13514 * basic-long.cs: Add tests for add/sub.ovf.
13516 * basic.cs: Add tests for sub.ovf.
13518 * *-ia64.*: Ongoing IA64 work.
13520 2005-06-09 Zoltan Varga <vargaz@freemail.hu>
13522 * *-ia64.*: Ongoing IA64 work.
13524 * basic.cs: Add conv.ovf.i4.un test.
13526 2005-06-09 Massimiliano Mantione <massi@ximian.com>
13528 * mini.c: (remove_block_if_useless) Fixed bug 75061.
13530 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13532 * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
13534 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
13536 * *-ia64.*: Ongoing IA64 work.
13538 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13541 * mini.c: added the ability to toggle trace on/off using SIGUSR2.
13543 2005-06-04 Zoltan Varga <vargaz@freemail.hu>
13545 * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
13547 2005-06-03 Zoltan Varga <vargaz@freemail.hu>
13549 * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
13551 * mini-amd64.c (amd64_patch): Add an assert to check that the destination
13552 of a call is callable by a near call.
13554 2005-05-31 Zoltan Varga <vargaz@freemail.hu>
13556 * mini-ia64.c: Ongoing IA64 work.
13558 2005-05-29 Zoltan Varga <vargaz@freemail.hu>
13560 * genmdesc.c: Make the generated array non-static.
13562 * inssel-long.brg: Fix LSHR_IMM rule.
13564 * *-ia64.*: Ongoing IA64 work.
13566 * *-ia64.*: Ongoing IA64 work.
13568 2005-05-28 Zoltan Varga <vargaz@freemail.hu>
13570 * *-ia64.*: Ongoing IA64 work.
13572 * *-ia64.*: Ongoing IA64 work.
13574 * mini-ia64.c: Ongoing IA64 work.
13576 * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
13578 2005-05-28 Zoltan Varga <vargaz@freemail.hu>
13580 * objects.cs basic-calls.cs: Move some tests to objects.cs.
13582 * objects.cs basic-long.cs: Move some tests to objects.cs.
13584 2005-05-26 Zoltan Varga <vargaz@freemail.hu>
13586 * *-ia64.*: Ongoing IA64 work.
13588 * iltests.il: Add a new test.
13590 * mini.c (mono_method_to_ir): Initialize valuetypes when created using
13591 newobj. Fixes #75042.
13593 2005-05-22 Zoltan Varga <vargaz@freemail.hu>
13595 * *-ia64.*: Ongoing IA64 work.
13597 * *-ia64.*: Ongoing IA64 work.
13599 * *-ia64.*: Ongoing IA64 work.
13601 * basic.cs objects.cs: Move tests accessing static variables as well.
13603 * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
13605 2005-05-21 Zoltan Varga <vargaz@freemail.hu>
13607 * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
13609 * driver.c: Always print failed tests.
13611 * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
13614 * *ia64*: Ongoing IA64 work.
13616 2005-05-20 Zoltan Varga <vargaz@freemail.hu>
13618 * basic.cs: Add tests for add.ovf. Fix warnings.
13620 2005-05-18 Miguel de Icaza <miguel@novell.com>
13622 * driver.c (mono_main): Avoid crash if no argument is passed to
13623 --break; Do not use g_error, but f_printf. And fix all other
13624 ocurrences of the same crash.
13626 2005-05-17 Zoltan Varga <vargaz@freemail.hu>
13628 * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
13629 and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
13632 2005-05-14 Zoltan Varga <vargaz@freemail.hu>
13634 * *-ia64.*: Add beginnings of IA64 backend.
13636 * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.
13638 2005-05-13 Zoltan Varga <vargaz@freemail.hu>
13640 * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
13643 * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
13645 * mini-amd64.c: Fix a warning.
13647 2005-05-10 Zoltan Varga <vargaz@freemail.hu>
13649 * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
13650 in float_neg. Fixes #74897.
13652 * mini-amd64.c (emit_call): Fix another near call bug.
13654 2005-05-06 Sebastien Pouliot <sebastien@ximian.com>
13656 * declsec.c: Keep the appdomain information in the structure. Added a
13657 missing "return FALSE" for Unmanaged if FullTrust is set (or else the
13658 value gets overwritten).
13659 * declsec.h: Set the default MonoArray for the the stack to 6. Added
13660 an MonoAppDomain member to MonoSecurityFrame.
13661 * mini-exceptions.c: Do not use a glist to keep GC allocated objects
13662 used in the stack walk. Now use a MonoArray which grow (double) when
13665 2005-05-05 Lluis Sanchez Gual <lluis@novell.com>
13667 * mini.c: Re-enabled runtime cleanup, since running threads should
13668 now properly stop when exiting.
13670 2005-05-05 Zoltan Varga <vargaz@freemail.hu>
13672 * mini-codegen.c: New file contaning the arch-independent local
13673 register allocator. Not used by any architectures yet.
13675 * mini.h linear-scan.c: Merge some changes from the
13676 mini-xp-local-regalloc branch.
13678 2005-04-28 Zoltan Varga <vargaz@freemail.hu>
13680 * mini-amd64.c (emit_call): Fix calls to native functions when the
13681 runtime is compiled as a shared library. Fixes #74756.
13683 * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
13684 on a literal field. Fixes #74751.
13686 2005-04-25 Raja R Harinath <rharinath@novell.com>
13688 * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
13690 2005-04-23 Zoltan Varga <vargaz@freemail.hu>
13692 * objects.cs: Add missing null casting test.
13694 2005-04-22 Zoltan Varga <vargaz@freemail.hu>
13696 * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
13697 in wrapper methods. Also rename 'address' variable to 'offset'.
13699 2005-04-20 Zoltan Varga <vargaz@freemail.hu>
13701 * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
13704 * Makefile.am (MCS): Use -unsafe instead of --unsafe.
13706 * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
13709 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
13711 * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
13713 2005-04-17 Zoltan Varga <vargaz@freemail.hu>
13715 * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
13716 just the last bytes.
13718 2005-04-17 Zoltan Varga <vargaz@freemail.hu>
13720 * aot.c (mono_compile_assembly): Fix warning.
13722 * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
13723 by the _MSC_VER stuff.
13725 2005-04-16 Zoltan Varga <vargaz@freemail.hu>
13727 * inssel-long.brg: Fix #74588.
13729 * cpu-amd64.md: Fix #74591.
13731 * iltests.il: Add new regression tests.
13733 2005-04-13 Zoltan Varga <vargaz@freemail.hu>
13735 * trace.c (mono_trace_enter_method): Print enums as an int, not as a
13738 2005-04-11 Zoltan Varga <vargaz@freemail.hu>
13740 * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
13742 * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches
13743 from Bill Middleton <flashdict@gmail.com>.
13745 2005-04-10 Zoltan Varga <vargaz@freemail.hu>
13747 * arrays.cs: Add new regression test. Fix warnings.
13749 2005-04-09 Zoltan Varga <vargaz@freemail.hu>
13751 * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
13752 and leakage in CKFINITE.
13754 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
13755 this to a null op since it is called on amd64 too.
13757 * exceptions-amd64.c (get_throw_trampoline): Align stack.
13759 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
13760 body since this is not used on amd64.
13762 * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
13764 * mini-amd64.c: Remove obsolete fixmes.
13766 * mini.c (print_method_from_ip): Fix debugging support.
13768 2005-2-1 Massimiliano Mantione <massi@ximian.com>
13770 * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
13771 so that expressions that don't give much gain are not reduced.
13772 * ssapre.h: Likewise.
13774 2005-04-04 Zoltan Varga <vargaz@freemail.hu>
13776 * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
13778 * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
13780 * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
13782 2005-04-01 Zoltan Varga <vargaz@freemail.hu>
13784 * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
13786 * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
13788 2005-03-31 Zoltan Varga <vargaz@freemail.hu>
13790 * mini-x86.c: If sigaltstack support is enabled, perform win32 style
13793 * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
13795 * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
13797 * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
13799 * mini-x86.h mini-x86.c exceptions-x86.c: Add support for
13800 MONO_ARCH_USE_SIGACTION. Fixes #74252.
13802 * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
13804 * mini-x86.c: Fix up stack overflow handling.
13806 * exceptions.cs: Add new regression test.
13808 2005-03-30 Zoltan Varga <vargaz@freemail.hu>
13810 * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
13811 mono_jit_thread_attach.
13813 * mini.c (mono_method_to_ir): Verify called method is not abstract.
13815 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
13817 * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
13818 avoid calling constructors using callvirt.
13820 * inssel.brg: Fix #74073.
13822 2005-03-29 Sebastien Pouliot <sebastien@ximian.com>
13824 * aot.c, mini.h: Added mono-compiler.h header to allow/ease
13825 compilation with non-GCC compilers.
13826 * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
13827 possible using VS.NET. Adapted from the work of J Lothian (for VC6).
13829 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
13831 * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
13832 klass->interface_offsets (will likely fix bug#74073).
13834 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
13836 * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
13838 2005-03-28 Zoltan Varga <vargaz@freemail.hu>
13840 * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
13841 to amd64_div_reg_size ().
13843 * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
13845 2005-03-27 Zoltan Varga <vargaz@freemail.hu>
13847 * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
13849 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
13851 * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
13853 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
13855 * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
13857 * mini.c (mono_precompile_assembly): Load and precompile referenced
13858 assemblies as well. Fixes #74015.
13860 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
13862 * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
13864 2005-03-23 Sebastien Pouliot <sebastien@ximian.com>
13866 * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
13867 a lot of checks and (anyway) permissions cannot work until corlib is
13870 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
13872 * mini-ppc.c: fixed ABI issue on sysv/ppc.
13874 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13876 * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
13877 calls (fixes bug#72824).
13879 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
13881 * mini.c: fix tail recursion elimination (see test in bug#73936).
13883 2005-03-21 Zoltan Varga <vargaz@freemail.hu>
13885 * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
13886 some fp functions in sse2 mode.
13888 2005-03-20 Zoltan Varga <vargaz@freemail.hu>
13890 * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
13892 2005-03-19 Zoltan Varga <vargaz@freemail.hu>
13894 * mini.h mini.c: Add mono_get_jit_tls_key ().
13896 * mini-x86.c: Enable fast TLS support on windows.
13898 2005-03-17 Sebastien Pouliot <sebastien@ximian.com>
13900 * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
13901 * mini.c: Check for p/invoke method when generating code. If a
13902 p/invoke method, or it's class, isn't decorated with [Suppress
13903 UnmanagedCodeSecurity] then generate code to call System.Security.
13904 UnmanagedDemand (only if the security manager is active).
13906 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
13908 * tramp-amd64.c (create_specific_trampoline): Revert parts of the
13909 last change as it seems to cause strange crashes.
13911 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
13913 * *.c: handle unsafe function pointers where needed.
13915 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
13917 * mini.c (mono_jit_free_method): Remove the fixme too.
13919 2005-03-15 Miguel de Icaza <miguel@novell.com>
13921 * mini.c: As discussed, make the code actually free the delegate
13922 thunk now, to enable the debugging of delegate problems, use
13923 MONO_DEBUG=1 when running Mono.
13925 This takes also care of parts of the leaks as seen by Joe.
13927 2005-03-15 Zoltan Varga <vargaz@freemail.hu>
13929 * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable
13930 thread_tls_offset calculation.
13932 2005-03-14 Sebastien Pouliot <sebastien@ximian.com>
13934 * declsec.c: Reworked linkdemand checks for icall. The previous code
13935 was using the declaration code (untrusted) and didn't work as expected
13936 with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
13939 2005-03-13 Zoltan Varga <vargaz@freemail.hu>
13941 * iltests.il: Add new localloc test.
13943 * mini-amd64.c: Handle large stack allocations the same way as on
13944 windows if stack overflow handling is working.
13946 * mini-amd64.c: Allocate the signal stack using mmap.
13948 * mini.c (sigsegv_signal_handler): Fix reading of context.
13950 * mini-exceptions.c: Fix up stack overflow handling.
13952 * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
13954 * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
13956 * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
13958 * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
13960 * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
13961 tramp_init functions as they are no longer needed.
13963 2005-03-12 Zoltan Varga <vargaz@freemail.hu>
13965 * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
13967 * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
13969 * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
13971 * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
13974 * mini-ops.h: Add OP_LMUL_IMM.
13976 * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
13977 long mul/div opcodes as intrinsic.
13979 * mini-amd64.c (emit_call): Handle the case when the callee might be
13982 2005-03-11 Zoltan Varga <vargaz@freemail.hu>
13984 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
13987 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
13989 * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
13991 2005-03-09 Ben Maurer <bmaurer@ximian.com>
13993 * mini.c (mono_codegen): Don't leak here, to help people running
13996 2005-03-08 Zoltan Varga <vargaz@freemail.hu>
13998 * mini-amd64.c (mono_arch_output_basic_block): Fix int->float
13999 conversions in sse2 mode.
14001 * basic-float.cs: Add regression test.
14003 * mini-amd64.c: Reenable sse2.
14005 2005-03-07 Zoltan Varga <vargaz@freemail.hu>
14007 * mini-amd64.c: Disable sse2 until some regressions are fixed.
14009 2005-03-07 Joerg Rosenkranz <joergr@voelcker.com>
14011 * driver.c: Copyright text should include 2005.
14013 2005-03-07 Zoltan Varga <vargaz@freemail.hu>
14015 * cpu-amd64.md (load_membase): Fix more max lengths.
14017 2005-03-06 Zoltan Varga <vargaz@freemail.hu>
14019 * cpu-amd64.md (load_membase): Fix max length.
14021 * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
14023 * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
14025 * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
14026 support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
14028 * basic-float.cs: Add rounding regression test.
14030 * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
14032 2005-03-04 Neale Ferguson <NealeFerguson@earthlink.net>
14034 * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
14035 structures in registers for pinvoke wrappers.
14037 2005-03-04 Zoltan Varga <vargaz@freemail.hu>
14039 * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
14041 2005-03-03 Zoltan Varga <vargaz@freemail.hu>
14043 * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
14044 wrapper to mono_jit_thread_attach.
14046 * mini.c (mini_jit_thread_attach): New jit icall.
14048 * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in
14049 native->managed wrappers.
14051 * exceptions.cs: Add new regression test.
14053 * mini.c (optimize_branches): Check regions in the cbranch to throw
14054 block case as well. Fixes #73242.
14056 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14058 * mini.c: thread safety fixes.
14060 2005-02-27 Zoltan Varga <vargaz@freemail.hu>
14062 * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
14063 patching stuff, since delegates use jump trampolines so there is
14066 * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in
14069 * tramp-amd64.c: Fix build.
14071 * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
14072 it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
14074 * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
14075 Rename this to mono_arch....
14076 (mono_amd64_get_delegate_method_ptr_addr): Ditto.
14078 * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
14080 * mini-amd64.c (emit_call): If both the caller and the callee is
14081 guaranteed to have 32 bit addresses, emit a normal call.
14083 * tramp-amd64.c: Adapt to changes in mini-amd64.c.
14085 * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines.
14086 * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
14087 method_ptr inside delegates.
14089 2005-02-26 Zoltan Varga <vargaz@freemail.hu>
14091 * mini.c (mono_jit_free_method): Free the method info even if the native code is
14092 invalidated. Fixes #73001.
14094 * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
14096 * mini-x86.c: Only use stdcall for pinvokes on windows.
14098 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14100 * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
14101 * mini-x86.c: remove unreliable __thread var offset detection,
14102 use the correct accessors and enable by default.
14104 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
14106 * mini.c (mono_jit_free_method): Fix memory leak.
14108 2005-02-22 Zoltan Varga <vargaz@freemail.hu>
14110 * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW.
14112 2005-02-21 Zoltan Varga <vargaz@freemail.hu>
14114 * cpu-amd64.md: Fix lengths of atomic opcodes.
14116 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14118 * driver.c: try to not imply using ICU is any good.
14120 2005-02-20 Zoltan Varga <vargaz@freemail.hu>
14122 * mini-amd64.c (mono_arch_get_inst_for_method): Implement more
14123 functions as inline ops.
14125 * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
14126 some Interlocked functions as inline ops.
14128 * mini.c (move_basic_block_to_end): Fix bug in last patch.
14130 * mini.h (MonoBasicBlock): Reorganize fields a bit.
14132 * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
14134 * mini.c: Add support for OP_NOT_TAKEN.
14136 * mini-amd64.h mini-amd64.c: Add support for passing/returning small
14137 structures in registers for pinvoke wrappers.
14139 * mini-amd64.c: Fix warnings.
14141 2005-02-19 Zoltan Varga <vargaz@freemail.hu>
14143 * mini.h (MonoCompile): Add 'ret_var_is_local' field.
14145 * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
14147 * mini.c (NEW_RETLOADA): If the ret variable is a local, use its
14148 address instead of loading the address from it.
14150 * mini-x86.c: Add support for returning small structs in registers
14151 on Win32. Fixes part of #70864.
14153 2005-02-18 Zoltan Varga <vargaz@freemail.hu>
14155 * trace.c (get_token): Improve error checking.
14157 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
14159 * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
14161 2005-02-17 Sebastien Pouliot <sebastien@ximian.com>
14163 * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
14164 it can be reused for MonoClass.
14165 * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
14168 2005-02-15 Sebastien Pouliot <sebastien@ximian.com>
14170 * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code
14171 instead of a MonoReflectionMethod. The method information wasn't used
14172 when displaying SecurityException details (but will be now).
14174 2005-02-15 Atsushi Enomoto <atsushi@ximian.com>
14176 * Makefile.am : windows build fix.
14178 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
14180 * iltests.il: Add new regression test.
14182 * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
14185 2004-02-13 Sebastien Pouliot <sebastien@ximian.com>
14187 * mini.c: Moved linkdemand check into helper function check_linkdemand
14188 to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP,
14191 2004-02-13 Sebastien Pouliot <sebastien@ximian.com>
14193 * declsec.c: Added statistics counter for different kinds of
14195 * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
14196 (and commented) declaration.
14197 * mini.c: Added statistics counter for security Demand code
14198 generation. Added display of security statistics.
14200 2005-02-13 Zoltan Varga <vargaz@freemail.hu>
14202 * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
14203 Fix compilation errors under gcc-2.95.
14205 2005-02-12 Ben Maurer <bmaurer@ximian.com>
14207 * mini.c, driver.c: Use the new jit trampoline hashtable
14209 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14211 * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
14213 2005-02-11 Martin Baulig <martin@ximian.com>
14215 * debug-mini.c (mono_debug_close_method): Free the line number array.
14217 2005-02-10 Zoltan Varga <vargaz@freemail.hu>
14219 * aot.c: Break up large methods into smaller ones. Share GOT slots for
14222 * mini.h: Bump AOT file format version.
14224 2005-02-10 Sebastien Pouliot <sebastien@ximian.com>
14226 * declsec.c: Added LinkDemand support and it's special cases for ECMA,
14228 * declsec.h: Added macros to get/set lazyly initialized security
14229 informations about assemblies. Added new enum for different type of
14230 possible LinkDemand violation. Added function to check LinkDemands.
14231 * mini.h: Added a field to MonoCompile to hold any security violation
14232 detected when JITting a method (so it can be thrown later).
14233 * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL
14234 and CEE_CALLVIRT. Added code to throw exception at the end of
14235 mini_method_compile (note: the exception is unhandled right now).
14237 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14239 * mini.c, jit-icalls.c: use the managed implementation of
14240 memset for initobj and memset, to avoid managed <-> unmanaged
14243 2005-02-10 Zoltan Varga <vargaz@freemail.hu>
14245 * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
14246 optimization if it would need a GOT var.
14248 * basic.cs: Add tests for constant propagation and switch statements.
14250 * ssa.c: Fix out-of-range constant propagation and switch statements.
14252 2005-02-09 <vargaz@freemail.hu>
14254 * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
14256 2005-02-08 Zoltan Varga <vargaz@freemail.hu>
14258 * cpu-amd64.md (load_membase): Fix max length of load_membase.
14260 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14262 * mini.c: update to new signature of mono_class_get_allocation_ftn().
14264 2005-02-06 Neale Ferguson <NealeFerguson@earthlink.net>
14266 * cpu-s390.md, mini-s390.c: Correct bug with register usage on certain
14267 arithmetic operations.
14269 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
14271 * mini-ppc.c: add a workaround for broken user code that
14272 DllImports vararg functions with non-vararg signatures.
14274 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
14276 * mini.c (mono_jit_compile_method_inner): Add detection and a
14277 meaningfull error message for assemblies written in Managed C++.
14279 * tramp-amd64.c mini-amd64.h: Add support for
14280 create_trampoline_from_token ().
14282 * aot.c mini-x86.c abcremoval.c: Applied patch from
14283 Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14285 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
14287 * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline
14288 which takes a MonoImage/token as parameter instead of a MonoMethod.
14290 * aot.c: Use the new trampoline for initializing vtables.
14292 * aot.c: Add support for ldfld/stfld_remote wrappers.
14294 * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
14295 rules for compare <MEM>, IMM.
14297 * mini.h (MONO_AOT_FILE_VERSION): Bump it.
14299 * aot.c: Handle inherited finalizers correctly.
14301 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
14303 * inssel.brg (stmt): Add a missing _setup_... ().
14305 * aot.c: Save some parts of the class state to the AOT file and use it
14306 to recompute that state when a class is initialized.
14308 * mini.c: Install AOT hooks into the runtime.
14310 * mini.h: Bump AOT file format version.
14312 * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
14315 * iltests.il: Add new test.
14317 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14319 * mini.c: fix typo.
14321 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
14323 * mini.c: setup the statistical profiler in the thread attach
14324 callback to cope with the new single thread code.
14326 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14328 * mini-ppc.c: ensure we have enough room for the profiler
14329 calls (fixed bug#72084).
14331 2005-02-02 Zoltan Varga <vargaz@freemail.hu>
14333 * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding
14336 2005-2-1 Massimiliano Mantione <massi@ximian.com>
14338 * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
14340 2005-2-1 Massimiliano Mantione <massi@ximian.com>
14342 * ssapre.c: Fixed an issue with down safety (this allows IronPython
14343 to succesfully execute parrotbench).
14344 * ssapre.h: Likewise.
14346 2005-2-1 Massimiliano Mantione <massi@ximian.com>
14348 * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
14349 variable for stores to method arguments (fixes a SSAPRE issue).
14351 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14353 * mini.c: handle value types in dup, fixes gen-112.cs.
14355 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
14357 * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
14358 sequence for calls in dynamic methods to avoid thunks.
14360 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14362 * mini.c: correctly remove dynamic methods from the hashtable.
14364 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14366 * driver.c: Disabled SSAPRE until fix the bug that appears
14367 in IronPython's parrotbench.
14369 2005-01-31 Zoltan Varga <vargaz@freemail.hu>
14371 * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
14373 * mini.c (mono_method_to_ir): Revert the previous change.
14375 * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
14376 when AOT compiling.
14378 * tramp-x86.c (x86_magic_trampoline): Avoid calls to
14379 mono_jit_info_table_find () etc. when running under valgrind.
14381 * inssel.brg: Fix warnings.
14383 * mini-exceptions.c: Fix warnings.
14385 2005-01-31 Martin Baulig <martin@ximian.com>
14387 * driver.c (compile_all_methods_thread_main): Don't try to compile
14388 generic methods or anything which has type parameters.
14390 2005-01-30 Zoltan Varga <vargaz@freemail.hu>
14392 * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
14394 * TestDriver.cs: Add --verbose flags.
14396 * graph.c ssa.c: Fix 64 bit warnings.
14398 * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c
14399 trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
14400 Fix 64 bit warnings.
14402 * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
14403 variable not spotted by gcc.
14405 * mini-amd64.c inssel-amd64.brg: Applied patch from
14406 Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of
14407 X86_COMPARE_MEMBASE opcodes.
14409 * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
14411 2005-01-29 Ben Maurer <bmaurer@ximian.com>
14413 * *: MonoMethod->signature might be NULL now. You *MUST* use
14414 mono_method_signature.
14416 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
14418 * driver.c (compile_all_methods_thread_main): Compile the methods
14419 without invoking cctors.
14421 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14423 * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
14424 * basic-calls.cs: test for the above.
14426 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
14428 * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after
14429 MonoJitInfo changes.
14431 2005-01-27 Zoltan Varga <vargaz@freemail.hu>
14433 * mini-exceptions.c (mono_handle_exception): Compute the stack trace
14434 eagerly if it contains dynamic methods.
14436 * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
14438 * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
14439 trace, it is now computed by an icall from trace_ips.
14441 * mini-exceptions.c: Fix a warning.
14443 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14445 * mini-exceptions.c: don't bother getting stack trace info if
14446 it's not going to be used.
14448 2005-01-27 Raja R Harinath <rharinath@novell.com>
14450 * Makefile.am (common_sources): Add ssapre-cee-ops.h and
14453 2005-01-26 Zoltan Varga <vargaz@freemail.hu>
14455 * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
14457 * aot.c: Avoid calling mono_method_get_header () if not needed.
14459 * mini.h: Bump AOT file format version.
14461 * mini.c (mono_emit_native_call): Allocate a GOT var here.
14463 * mini.c (mono_print_tree): Print more info for calls.
14465 2005-01-26 Sebastien Pouliot <sebastien@ximian.com>
14467 * declsec.h: Remove warning by adding missing include for marshal.h
14469 2005-01-26 Martin Baulig <martin@ximian.com>
14471 * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
14474 2005-01-25 Zoltan Varga <vargaz@freemail.hu>
14476 * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
14479 * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
14481 * aot.c (mono_compile_assembly): Fix a warning.
14483 2005-01-25 Sebastien Pouliot <sebastien@ximian.com>
14485 * declsec.c: Look for security attributes on the original MonoMethod
14486 (and not the wrapped one). This fix permissions on icalls.
14488 2005-01-23 Zoltan Varga <vargaz@freemail.hu>
14490 * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14492 * mini.c (mono_allocate_stack_slots): Add a fixme.
14494 * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14496 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14498 * inssel.brg: optimize casts of sealed types (more
14499 optimizations waiting for fixes in remoting).
14501 2005-01-23 Zoltan Varga <vargaz@freemail.hu>
14503 * inssel.brg (stmt): Add another dummy rule.
14505 * driver.c: Fix warnings.
14507 * driver.c (mono_main): If running under valgrind, instruct glib to use
14508 the system allocation functions so valgrind can track the memory
14509 allocated by the g_... functions.
14511 * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
14513 * mini-ops.h: Add OP_DUMMY_STORE opcode.
14515 * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
14517 * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
14518 variables in try regions.
14520 * mini.c (mini_method_compile): Don't disable optimizations on large
14521 methods when AOT compiling.
14523 * mini.c (mono_allocate_stack_slots): New arch independent method to
14524 allocate stack slots. Not yet used.
14526 2005-01-22 Ben Maurer <bmaurer@ximian.com>
14528 * debug-mini.c (mono_debug_close_method): Plug some leaks.
14530 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
14532 * mini-ppc.c: make the branch info relative as the code
14533 buffer can be reallocated.
14535 2005-01-22 Sebastien Pouliot <sebastien@ximian.com>
14537 * aot.c: Allow decoding of the new MONO_PATCH_INFO_DECLSEC.
14538 * driver.c: Removed the AOT/security restriction. Now initialize the
14539 security manager (in metadata) if --security is used.
14540 * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
14541 rather than the pointer to declarative security, when AOT is used.
14543 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
14545 * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
14546 basic blocks, reduced intrinsic exception throwing code size.
14548 2005-01-22 Miguel de Icaza <miguel@ximian.com>
14550 * driver.c (mini_usage): Reorder the usage screen.
14552 2005-01-21 Zoltan Varga <vargaz@freemail.hu>
14554 * mini.c (mono_resolve_patch_target): Fix warning.
14556 2005-01-20 Zoltan Varga <vargaz@freemail.hu>
14558 * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
14561 * mini-amd64.c (mono_arch_local_regalloc): Ditto.
14563 * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
14564 breaks the amd64 build.
14566 * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem
14567 register allocation. Fixes #71454.
14569 * mini-amd64.c (mono_arch_local_regalloc): Ditto.
14571 * arrays.cs: Add new regression test.
14573 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14575 * ssapre.c: Turned usage of snprintf to GString.
14576 * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
14577 (I left it on by mistake in my previous commit).
14579 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
14581 * mini.c, cfold.c, basic-calls.cs: preserve side effects
14582 on cond branch optimization (fixes bug# 71515).
14584 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14586 * abcremoval.c: Fixed bug 71062.
14587 * abcremoval.h: Likewise.
14589 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14591 * mini.c: Added a new functionality to optimize_branches, the removal
14592 of useless basic blocks, and fixed some problem in the removal of
14593 critical edges; some utility functions added for both purposes.
14594 * ssapre.c: Added complex expression support, and fixed bug 70637.
14595 * ssapre.h: Likewise.
14596 * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
14598 * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
14599 * driver.c: Re-enabled SSAPRE.
14601 2005-01-19 Martin Baulig <martin@ximian.com>
14603 * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
14604 the result of mono_get_method_constrained().
14606 2005-01-18 Neale Ferguson <NealeFerguson@earthlink.net>
14608 * exceptions-s390.c tramp-s390.c: Allocate code using the global code
14611 2005-01-18 Geoff Norton <gnorton@customerdna.com>
14613 * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
14614 be detected. Fixes #59296.
14616 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
14618 * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
14619 which can happen. Fixes #71361.
14621 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
14623 * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
14626 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
14628 * mini.c (mono_create_jump_trampoline): Revert last change as it causes
14629 appdomain-unload.exe to fail.
14631 * mini.c: Fix some memory leaks.
14633 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
14635 * inssel.brg: handle the new size of rank, idepth, max_interface_id.
14636 Fixed bug and sped up some codepaths.
14638 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
14640 * mini.c: Fix some memory leaks.
14642 * exceptions.cs basic-long.cs: Add test for checked ulong->int
14645 * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
14647 * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
14650 * iltests.il: Add regression test for #71320.
14652 2005-01-16 Zoltan Varga <vargaz@freemail.hu>
14654 * mini.c (mono_codegen): Fix installation of profiler hooks.
14656 * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
14658 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14660 * mini.h, mini.c, cfold.c: optimize access to enum
14661 readonly fields, too. Eval conditional branches if possible
14662 to perform unreachable code removal in more cases.
14664 2005-01-15 Zoltan Varga <vargaz@freemail.hu>
14666 * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
14668 * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
14671 * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
14672 WinXP DEP. Fixes #71244.
14674 2005-01-14 Zoltan Varga <vargaz@freemail.hu>
14676 * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
14678 2005-01-13 Zoltan Varga <vargaz@freemail.hu>
14680 * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
14682 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
14684 * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo
14687 * mini.h: Bump AOT version.
14689 * mini.h (MonoCompile): Change exvar to a hash table.
14691 * mini.c: Allocate a separate exvar for each handler block.
14693 * mini.c: Get rid of the computation of filter_lengths, its not needed.
14695 * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
14696 ex var with the pending exception and only throw if the two are equal.
14699 * exceptions.cs: Add tests for rethrow and nested catch clauses.
14701 * mini-x86.c: Fix warnings.
14703 * Makefile.am (common_sources): Move mini-exceptions.c here as it is
14704 used by all the ports now.
14706 * aot.c: Add write-symbols and save-temps options.
14708 2005-01-10 Zoltan Varga <vargaz@freemail.hu>
14710 * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
14712 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
14714 * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx
14717 * tramp-s390.c: Check vtable slot belongs to the domain.
14719 * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
14720 as per other platforms.
14722 * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
14724 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14726 * driver.c: we don't run the Main() code in a subthread anymore.
14728 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
14730 * mini.c: added experimental rtc support in the statistical
14731 profiler: if the user has the permission, more accurate statistics
14732 are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
14733 The MONO_RTC value must be restricted to what the linux rtc allows:
14734 power of two from 64 to 8192 Hz.
14736 2005-01-10 Zoltan Varga <vargaz@freemail.hu>
14738 * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
14740 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
14742 * mini-ppc.c: better icache flush for smp.
14744 2005-01-09 Zoltan Varga <vargaz@freemail.hu>
14746 * mini-amd64.c (emit_move_return_value): Fix memory leak.
14748 * mini-x86.c (get_call_info): Add the get_call_info () code from the
14749 amd64 port, not yet used.
14751 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
14753 * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
14756 2005-01-07 Sebastien Pouliot <sebastien@ximian.com>
14758 * driver.c: Added --security option to activate the security manager.
14759 Right now this will allow code generation for declarative demands and
14760 is disabled when AOT is specified.
14761 * mini.c: Add code generation for declarative security demands.
14762 * mini.h: Add mono_use_security_manager as an extern gboolean.
14764 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
14766 * aot.c (mono_compile_assembly): Speed up compilation a bit by
14767 emitting more dense assembly code.
14769 * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
14770 exception throwing stuff.
14772 2005-01-06 Zoltan Varga <vargaz@freemail.hu>
14774 * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
14777 * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
14778 left in by mistake.
14780 * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is
14783 * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
14785 * tramp-*.c: Only patch vtable slots if the object is in the current
14786 domain. Fixes appdomain-unload.exe.
14788 * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
14790 * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
14793 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
14795 * mini.c (reverse_branch_op): New helper function.
14797 * mini.c (optimize_branches): Run the new optimization only on
14798 platforms which support it. Also reverse all kinds of branches.
14800 * mini.h (MonoBasicBlock): Add 'out_of_line' field.
14802 * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
14805 * mini.c (optimize_branches): Reverse not-equals branches if the false
14806 bblock is a throw. This happens a lot of time with argument checking in
14809 * mini.c (mono_codegen): Add support for placing basic blocks after
14810 the function epilogue.
14812 * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
14815 2005-01-05 Miguel de Icaza <miguel@ximian.com>
14817 * mini.c (setup_stat_profiler): Only set this up if the platform
14818 supports ITIMER_PROF.
14820 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
14822 * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
14825 * inssel.brg: Fix a warning.
14827 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
14829 * mini.c: added support for statistical profiler
14830 (run with: --profile=default:stat).
14832 2005-01-04 Zoltan Varga <vargaz@freemail.hu>
14834 * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
14836 * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
14838 * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes
14839 related to global registers from the amd64 port.
14841 2005-01-03 Zoltan Varga <vargaz@freemail.hu>
14843 * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
14845 * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
14846 with global registers.
14847 (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
14849 * aot.c (emit_method_code): Fix the 'method emitted as' messages.
14851 2004-12-31 Zoltan Varga <vargaz@freemail.hu>
14853 * debug-mini.c (encode_value): Fix off-by-one.
14855 * aot.c (encode_value): Likewise.
14857 * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
14859 2004-12-30 Zoltan Varga <vargaz@freemail.hu>
14861 * mini.c linear-scan.c: Add a workaround for the mcs crash when using
14864 * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
14866 * aot.c (emit_method_info): Increase size of temp buffer.
14868 * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in
14871 2004-12-28 Zoltan Varga <vargaz@freemail.hu>
14873 * aot.c (emit_method_info): Fix build.
14875 * aot.c: Further rework of the AOT file format to reduce the size of
14876 the method info data.
14878 * mini.h: Bump AOT file format version.
14880 2004-12-27 Martin Baulig <martin@ximian.com>
14882 * mini.c (mini_get_method): New static method; call
14883 mono_get_method_full() and mono_get_inflated_method().
14884 (mono_method_to_ir): Use mini_get_method() instead of
14885 mono_get_method_full().
14887 2004-12-26 Patrik Torstensson <patrik.torstensson@gmail.com>
14889 * mini-x86.c (atomic ops): fixed bug interlocked bug #70784.
14891 2004-12-25 Zoltan Varga <vargaz@freemail.hu>
14893 * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
14895 * inssel-amd64.brg: Add some optimization rules.
14897 2004-12-24 Ben Maurer <bmaurer@ximian.com>
14899 * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
14900 standard not GC'd stuff is fine.
14902 2004-12-24 Zoltan Varga <vargaz@freemail.hu>
14904 * aot.c: Rework the AOT file format to get rid of most of the global
14905 symbols. This reduces the size of the mscorlib.dll.so by 1MB.
14907 * mini.h: Bump AOT file format version.
14909 2004-12-23 Zoltan Varga <vargaz@freemail.hu>
14911 * mini.h: Bump AOT file format version.
14913 * aot.c (mono_aot_is_got_entry): New function to determine if an
14914 address is inside a GOT.
14916 * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
14918 * cpu-pentium.md: Increase the maximum size of some instructions which
14919 might involve a got access.
14921 * mini.c (get_method_from_ip): Another debug helper function.
14923 * mini.c: Call mono_get_got_var () in a couple places. Handle the case
14924 when got var accesses are created during the decompose phase.
14926 * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
14928 * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
14929 argument mini_compile_method and to MonoCompile, and use this to
14930 determine whenever a given method is compiled for AOT. This allows the
14931 other methods compiled during AOT compilation to be free of AOT stuff,
14932 so the backends does not need to add special support for them by
14933 creating a fake GOT etc.
14935 * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
14938 2004-12-21 Ben Maurer <bmaurer@ximian.com>
14940 * mini.c (mono_method_to_ir): It turns out that some of the
14941 x-appdomain wrappers are lax with types, so just ignore this for
14944 * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
14945 at the vtable->klass. If it is non-shared code we can just use the
14948 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
14950 * mini-ppc.c: access MonoDomain from tls, too.
14952 2004-12-21 Sebastien Pouliot <sebastien@ximian.com>
14954 * declsec.c: Removed unused variable (and related warning ;-)
14956 2004-12-21 Ben Maurer <bmaurer@ximian.com>
14958 * iltests.il: New test for LDELEMA on an array of ref types.
14960 * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
14961 all ldelema's on reftypes.
14962 (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
14963 it was the wrong place to put it.
14965 * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
14966 register to pop to make this cleaner, at the request of Paolo.
14968 2004-12-20 Ben Maurer <bmaurer@ximian.com>
14970 * mini-ops.h (OP_GETHASHCODE): New op.
14972 * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
14974 * mini.c (mini_get_inst_for_method): Create the intrinsic hash
14977 For a microbenchmark, this reduces the cost of Hashtable.get_Item
14980 * mini-x86.c (mono_arch_output_basic_block): Rather than
14988 The first is 3 bytes while the second is 1. This saves 36 kb on
14989 mscorlib, quite a big saving. When bootstraping mcs, I was able to
14990 see a small boost because of icache locality.
14992 * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
14994 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
14996 * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
14997 started code sharing with the generic code.
14999 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
15001 * mini-ppc.c, cpu-g4.md: added code for direct access to
15004 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
15006 * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
15007 mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
15010 2004-12-20 Sebastien Pouliot <sebastien@ximian.com>
15012 * declsec.c|h: Added functions to cache the declarative stack modifiers
15013 in MonoJitInfo and to create a security frame from a MonoJitInfo
15015 * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
15016 created. Register internal calls for System.Security.SecurityFrame::
15017 _GetSecurityFrame and _GetSecurityStack.
15018 * mini.h: Added definition for new icalls (in mini-exceptions.c) and
15019 the definitions for the new stack walk/callback mechanism.
15020 * mini-exceptions.c: Added internal call GetSecurityFrame (to get the
15021 first security frame for LinkDemands and InheritanceDemands) and
15022 GetSecurityStack for Demands. Both use the new mono_walk_stack code
15024 * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
15025 walk initialization (lupus).
15027 2004-12-20 Ben Maurer <bmaurer@ximian.com>
15029 * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
15031 (handle_loaded_temps): Do not create a temporary variable for
15032 things that we know are temps. They will never be modified.
15033 (mono_spill_call): Set MONO_INST_IS_TEMP
15034 (mono_emulate_opcode): ditto
15036 (mono_method_to_ir.CEE_DUP): ditto
15038 2004-12-19 Ben Maurer <bmaurer@ximian.com>
15040 * mini.c (type_to_eval_stack_type): Make this handle the void type
15041 (mono_emit_call_args): set the call->type with type_to_eval_stack_type
15042 (emit_tree): use ip_in_bb to special case some common idioms
15043 Update all callers to pass in the IP.
15044 (mono_method_to_ir): Make CEE_CALL* do the above as well.
15046 This gives us a nice 2% speedup in mcs bootstrap.
15048 * mini-x86.c (peephole_pass): Peephole pass to make
15057 * mini.c (ip_in_bb): new method.
15058 (mono_method_to_ir): use this method rather than doing the hash
15061 * linear-scan.c (mono_linear_scan): When expiring actives, you
15062 don't need to keep around variables that expire on this
15063 instruction. This makes it so that:
15066 store (ebx add (ebx, 1))
15070 2004-12-19 Zoltan Varga <vargaz@freemail.hu>
15072 * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc
15073 combination to avoid doing two copies. Fix up problems with previous
15076 * mini.c: Fix 64 bit warnings.
15078 * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
15080 2004-12-17 Zoltan Varga <vargaz@freemail.hu>
15082 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
15083 changes from the x86 code.
15085 * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
15087 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
15089 * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
15090 throwing code to reduce its size, unify the AOT and non-aot code and
15091 get rid of relocations in the AOT case.
15093 * mini-x86.h mini.c exceptions-x86.c
15094 (mono_arch_get_throw_corlib_exception): New arch specific function to
15095 raise corlib exceptions which doesn't require relocations in the
15098 * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
15100 2004-12-15 Zoltan Varga <vargaz@freemail.hu>
15102 * mini.c (mono_emit_method_call): Only allocate the got var when it is
15105 * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
15108 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
15110 * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
15111 with add function when used from Inc/dec atomic
15112 functions. Re-enabled optimization on x86.
15113 * mini-ops.h: renamed atomic_add functions to
15114 allow _add to match the Interlocked::Add and
15115 _add_next to match Interlocked::Inc/Dec.
15117 2004-12-15 Massimiliano Mantione <massi@ximian.com>
15119 * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
15120 linking of BBs to the end BB, and enabled SSAPRE also with
15121 consprop and copyprop (which was prevented by that bug).
15123 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
15125 * mini-x86.c: disabling the Interlocked optimizing code.
15127 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
15129 * aot.c (load_aot_module): Move reading of got_addr after the AOT
15130 file version check.
15132 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
15134 * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm
15135 interlocked optimization due lack of support on x86, rewrote
15136 exchange to take into account that base may be in eax.
15138 xsp works again; activated Interlocked optimizing code.
15140 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
15142 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15144 2004-12-13 Zoltan Varga <vargaz@freemail.hu>
15146 * mini-ops.h: Add new opcodes.
15148 * mini.h: Add new patch types. Add got_var to MonoCompile.
15150 * mini.h mini-x86.c mini-amd64.c aot.c: Rename
15151 mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
15152 make it work with all kinds of patchable code.
15154 * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
15155 address of the GOT, and referencing entries in the GOT.
15157 * mini.c: Add code to load the GOT address if needed by an opcode.
15159 * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position
15160 independent AOT code on the x86 using an elf-style Global Offset Table.
15162 2004-12-14 Raja R Harinath <rharinath@novell.com>
15164 * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
15166 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15168 * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
15171 2004-12-13 Patrik Torstensson <patrik.torstensson@gmail.com>
15173 * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
15174 of Interlocked:Increment/Decrement/Add as inline ops.
15175 (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
15177 2004-12-12 Geoff Norton <gnorton@customerdna.com>
15179 * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
15180 * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
15182 2004-12-12 Duncan Mak <duncan@ximian.com>
15184 * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
15185 again. `patch_info->table_size' is no longer valid after Zoltan's
15188 2004-12-12 Martin Baulig <martin@ximian.com>
15190 * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
15191 if we are the "real" method, ie. not an inlined method inside it.
15193 2004-12-11 Ben Maurer <bmaurer@ximian.com>
15195 * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
15196 before we look in the special fields table. This fixes
15197 ../tests/thread-static-init.cs.
15199 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15201 * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
15202 for Array get_Rank and get_Length. Fixes bug #70465.
15204 2004-12-11 Zoltan Varga <vargaz@freemail.hu>
15206 * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
15207 separate structure to reduce the size of MonoJumpInfo.
15209 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15211 * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
15213 2004-12-10 Patrik Torstensson <patrik.torstensson@gmail.com>
15215 * mini.c (mini_get_inst_for_method): Changed to allow ports
15216 to return a MonoInst instead of opcode
15217 (renamed mini_get_opcode_for_method to better reflect the new functionality)
15219 * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method):
15220 Allow ports to return a created MonoInst instead of op-code, will enable
15222 (renamed mini_get_opcode_for_method to better reflected the functionality)
15224 2004-12-09 Zoltan Varga <vargaz@freemail.hu>
15226 * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
15228 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
15230 * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
15233 2004-12-08 Martin Baulig <martin@ximian.com>
15235 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
15236 if we're a CEE_CONSTRAINED call. Fixes gen-118.cs.
15238 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
15240 * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
15243 * exceptions.cs: Disable some tests which depend on properties of x86 fp
15246 2004-12-08 Raja R Harinath <rharinath@novell.com>
15248 * Makefile.am (CLEANFILES): Add *.exe, *.dll.
15250 2004-12-07 Zoltan Varga <vargaz@freemail.hu>
15252 * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
15253 bug introduced by the previous patch.
15255 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15257 * mini-ppc.c, objectc.cs: handle large structs passed by value
15258 (fixes bug #69972).
15260 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15262 * mini-ppc.c: OP_ARGLIST implementation from
15263 Geoff Norton <gnorton@customerdna.com>.
15265 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
15267 * inssel-x86.brg, inssel-ppc.brg: fix reference to register
15268 in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
15270 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15272 * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
15274 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15276 * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
15279 2004-12-06 Zoltan Varga <vargaz@freemail.hu>
15281 * mini-sparc.c: Zero out localled-ed memory.
15283 * iltests.il: Add tests for zeroing out localloc-ed memory.
15285 2004-12-04 Martin Baulig <martin@ximian.com>
15287 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
15288 mono_method_get_signature_full().
15290 2004-12-03 Massimiliano Mantione <massi@ximian.com>
15292 * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
15293 and some utility functions (always for SSAPRE), integrated SSAPRE.
15294 * mini.h: Likewise.
15295 * driver.c: Added ssapre option.
15296 * ssa.c: Small fix on OP_ARG handling.
15297 * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
15298 * Makefile.am: Likewise.
15300 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
15302 * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
15303 now in the xp code.
15305 * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
15308 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15310 * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
15312 * cpu-s390.md : Increase instruction length of oparglist.
15314 * mini-s390.c : Implement vararg and TYPEDEBYREF support.
15316 2004-11-30 Martin Baulig <martin@ximian.com>
15318 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
15319 virtual generic methods. We call a special helper_compile_generic_method()
15320 icall to retrieve the method from the vtable, inflate and compile
15321 it and then do a CEE_CALLI. Thanks a lot to Paolo for this idea.
15323 * jit-icalls.c (helper_compile_generic_method): New JIT icall.
15325 2004-11-30 Zoltan Varga <vargaz@freemail.hu>
15327 * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
15329 2004-11-29 Zoltan Varga <vargaz@freemail.hu>
15331 * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
15334 2004-11-27 Ben Maurer <bmaurer@ximian.com>
15336 * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
15337 platforms with PIC aot.
15339 2004-11-28 Martin Baulig <martin@ximian.com>
15341 * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
15344 2004-11-28 Martin Baulig <martin@ximian.com>
15346 * mini-x86.c (mono_arch_call_opcode): Use the original type, not
15347 the result of mono_type_get_underlying_type() to check whether
15350 2004-11-26 Martin Baulig <martin@ximian.com>
15353 (mono_method_to_ir): Use `!method->signature->has_type_parameters'
15356 2004-11-26 Zoltan Varga <vargaz@freemail.hu>
15358 * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
15359 the same way as the other arguments so they won't get clobbered.
15361 * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual
15362 calls through R11 since it is clobbered by the trampoline code.
15364 2004-11-26 Raja R Harinath <rharinath@novell.com>
15366 * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
15367 pick up in-tree mscorlib.dll.
15369 2004-11-25 Zoltan Varga <vargaz@freemail.hu>
15371 * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
15373 * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to
15374 runtime data/code are now stored in a table similar to the GOT in ELF.
15375 This allows the code itself to be position independent.
15377 * aot.c: Fix loading of referenced assemblies after the lazy assembly
15380 * aot.c: Attach ELF type (object/function) directives to all global
15383 * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
15385 * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
15387 * mini-amd64.h: Turn on PIC AOT code.
15389 * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
15390 returning the offset within an OP_AOTCONST instruction where the GOT
15391 offset needs to be added.
15393 * mini.h: Bump AOT file format version.
15395 2004-11-25 Martin Baulig <martin@ximian.com>
15397 * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
15398 uninflated generic methods.
15400 2004-11-25 Martin Baulig <martin@ximian.com>
15402 * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
15404 2004-11-24 Martin Baulig <martin@ximian.com>
15406 * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
15407 original klass (this only applies for generic instances).
15409 2004-11-24 Martin Baulig <martin@ximian.com>
15411 * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
15412 `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
15415 2004-11-24 Zoltan Varga <vargaz@freemail.hu>
15417 * mini.c (mono_method_to_ir): Disable inlining for methods containing
15418 localloc. Fixes #69678.
15420 * iltests.il (test_0_localloc_inline): Add regression test for #69678.
15422 2004-11-23 Zoltan Varga <vargaz@freemail.hu>
15424 * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
15425 used SSE registers on pinvoke calls. Fixes #69774.
15427 2004-11-23 Geoff Norton <gnorton@customerdna.com>
15429 * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
15430 vt->inst_vtype->data.klass. This fixes generic structs and bug #69766
15432 2004-11-23 Raja R Harinath <rharinath@novell.com>
15434 * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
15435 Refer directly to the mcs/ tree.
15437 2004-11-19 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15439 * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
15440 Check if a trampoline for a synchronized method is required.
15442 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
15444 * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
15445 with localloc if needed. Throe arithmetric exception in
15446 div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
15447 Adapted from a patch by Geoff Norton <gnorton@customerdna.com>.
15449 2004-11-19 Geoff Norton <gnorton@customerdna.com>
15451 * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
15452 types before switching on type. Fixes #69622.
15454 2004-11-19 Raja R Harinath <rharinath@novell.com>
15456 * Makefile.am (check-local): New. Integrate into 'make check'.
15457 (MCS,RUNTIME): Define using in-tree mono and mcs.
15459 (%.exe): Use $(ILASM).
15461 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
15463 * mini-ppc.c: adjust initial prolog size (bug #69691).
15465 2004-11-18 Zoltan Varga <vargaz@freemail.hu>
15467 * cpu-pentium.md (localloc): Increase max instruction len. Fixes
15470 2004-11-17 Raja R Harinath <rharinath@novell.com>
15472 * Makefile.am (clean-local): Rename from 'clean'.
15474 2004-11-15 Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15476 * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
15477 to mono_arch_is_int_overflow.
15478 * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
15481 2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
15483 * declsec.c|h: New files to support declarative security attributes.
15484 Added function to check if a method has (applicable) security.
15485 * mini.c|h: Add check for declarative security attributes in
15486 mono_method_check_inlining.
15487 * Makefile.am: Added declsec.c and declsec.h to the build.
15489 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15491 * mini.c, mini.h: update to keep dynamic code info per-domain.
15493 2004-11-12 Zoltan Varga <vargaz@freemail.hu>
15495 * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
15496 (mini_init): Get rid of it from here too.
15498 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
15500 * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
15501 implemented OP_RETHROW (patch by Geoff Norton
15502 <gnorton@customerdna.com>).
15504 2004-11-10 Geoff Norton <gnorton@customerdna.com>
15506 * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
15507 between appdomains. Fixes appdomain-unload on PPC.
15509 2004-10-26 Lluis Sanchez Gual <lluis@novell.com>
15511 * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15512 mini-exceptions.c: handle the new wrapper types.
15513 * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
15514 token value as a MonoClass* when compiling a wrapper.
15515 mono_jit_create_remoting_trampoline now takes an additional
15516 MonoRemotingTarget parameter.
15518 2004-11-10 Martin Baulig <martin@localhost>
15520 * mini.c (mono_method_to_ir): Use `generic_container->context'
15521 rather than creating a new one.
15523 2004-11-09 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15525 * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
15527 * inssel-390.md, mini-s390.c: Correct register allocation for globals.
15529 2004-11-09 Zoltan Varga <vargaz@freemail.hu>
15531 * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
15532 the experimental aot cache stuff.
15534 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
15536 * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15537 mini-exceptions.c: update to exception clause structure changes.
15539 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
15541 * exceptions-x86.c (throw_exception): Fix warnings.
15543 * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support
15546 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
15548 * exceptions-sparc.c (get_throw_exception): Really fix this.
15550 2004-11-07 Ben Maurer <bmaurer@ximian.com>
15552 * tramp-*.c: we no longer support icalls without wrappers, so
15553 a bit of code can be removed here
15555 2004-11-07 Zoltan Varga <vargaz@freemail.hu>
15557 * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
15560 * cpu-sparc.md: Add op_rethrow.
15562 * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
15564 * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
15566 * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
15567 * mini-ops.h: Add OP_RETHROW.
15569 * mini.c inssel.brg: Distinguish between THROW and RETHROW.
15571 * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
15573 2004-11-05 Geoff Norton <gnorton@customerdna.com>
15575 * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
15576 Makes the output much easier to read
15578 2004-11-05 Ben Maurer <bmaurer@ximian.com>
15580 * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
15581 prevents another huge leak when compiling with ssa. Secondly, the
15582 performance of doing this rather than freeing the lists is much
15583 better. GList does a lock every time you allocate a list link,
15584 so that it can use a memory pool. So, it is better to just use
15585 a memory pool of our own.
15587 * ssa.c, linear-scan.c: replace g_list_remove_link with
15588 g_list_delete. The remove one does not free the GList, so we were
15589 leaking memory. On -O=all --compile-all with corlib, this cut down
15590 3 MB of allocations.
15592 2004-11-05 Zoltan Varga <vargaz@freemail.hu>
15594 * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
15596 * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
15598 * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
15599 into a new function mono_create_jit_trampoline ().
15601 2004-11-02 Zoltan Varga <vargaz@freemail.hu>
15603 * trace.c (get_spec): Allow tracing of classes without a namespace.
15605 2004-11-02 Sebastien Pouliot <sebastien@ximian.com>
15607 * mini.c: Fix pointer overwrite in mini_method_compile.
15609 2004-11-2 Geoff Norton <gnorton@customerdna.com>
15611 * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
15612 The darwin ABI needs some special handling for 1 and 2 byte structs
15613 Lets use lbz/lhz instead of lwz everywhere.
15614 * mini-ppc.c (calculate_sizes): The Darwin ABI needs from special handling
15615 for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
15616 Use stb/sth for the former, and put the latter always on stack instead of in
15617 argument registers.
15619 2004-10-30 Zoltan Varga <vargaz@freemail.hu>
15621 * trace.c (is_filenamechar): Add '_'.
15623 2004-10-29 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15625 * mini-s390.c: Fix prolog length to allow for large trace requirements.
15627 * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
15629 2004-10-29 Zoltan Varga <vargaz@freemail.hu>
15631 * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
15632 depends on libmonogc. Fixes #68805.
15634 2004-10-26 Miguel de Icaza <miguel@ximian.com>
15636 * mini.c (mono_jit_free_method): Provide extra information for
15637 this error. Currently this leaks, but will be turned into a
15638 developer option in the future.
15640 2004-10-26 Zoltan Varga <vargaz@freemail.hu>
15642 * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
15644 2004-10-25 Zoltan Varga <vargaz@freemail.hu>
15646 * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte
15647 boundary. Fixes reading of PATCH_INFO_R4 and R8.
15648 (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
15650 2004-10-24 Zoltan Varga <vargaz@freemail.hu>
15652 * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
15653 trampolines for AOT code.
15655 2004-10-22 <vargaz@freemail.hu>
15657 * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
15658 constructed types. Fixes #68136.
15660 2004-10-21 Martin Baulig <martin@ximian.com>
15662 * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
15663 if it returns true, unwind the stack to the call instruction.
15665 2004-10-21 <vargaz@freemail.hu>
15667 * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
15669 * mini.h: Bump AOT version number.
15671 * objects.cs: Add another test for unbox trampolines.
15673 * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for
15676 2004-10-20 <vargaz@freemail.hu>
15678 * driver.c: Add SHARED to the set of optimizations tested.
15680 * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
15682 * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
15683 used by CEE_NEWARR.
15685 * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
15687 2004-10-20 Martin Baulig <martin@ximian.com>
15689 * mini-exceptions.c (mono_handle_exception): Call
15690 mono_debugger_handle_exception() to tell the debugger about
15691 catch/finally clauses.
15693 2004-10-18 Zoltan Varga <vargaz@freemail.hu>
15695 * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
15697 * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
15700 2004-10-15 Geoff Norton <gnorton@customerdna.com>
15702 * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
15703 methods as their native size, fixed bug #57543, #57545.
15704 * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
15705 This saves a temporary register and mullw call down into 1 (minor perf
15706 increase for cases like sum = sum * 5; This use to translate into:
15709 It now translates to
15712 2004-10-15 Zoltan Varga <vargaz@freemail.hu>
15714 * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
15717 2004-10-11 Martin Baulig <martin@ximian.com>
15719 * mini.c (mono_method_to_ir): If we're a generic method, get the
15720 MonoGenericContainer from our MonoMethodNormal and create a
15721 MonoGenericContext from it.
15723 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
15725 * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
15727 * basic-long.cs: Add test for checked i8->i2 cast.
15729 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
15731 * inssel-ppc.brg: added a couple of speedup rules.
15733 2004-10-05 Zoltan Varga <vargaz@freemail.hu>
15735 * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
15736 to speed up rebuilds.
15738 2004-10-04 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15740 * mini-s390.c: Minor fix to OP_OR_IMM.
15742 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
15744 * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
15745 better. Fixes appdomain-unload.exe on sparc.
15747 2004-10-02 Massimiliano Mantione <massi@ximian.com>
15749 * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
15750 simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
15753 2004-10-02 Zoltan Varga <vargaz@freemail.hu>
15755 * jit-icalls.c: Handle a nonexisting trunc function more correctly.
15757 2004-09-30 Lluis Sanchez Gual <lluis@novell.com>
15759 * mini.c: Always generate a field read/write wrapper for members
15760 of the class MarshalByRefObject since the actual instance could
15763 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
15765 * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
15767 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
15769 * driver.c mini.h trace.c: Move the setting of the main assembly into
15770 a separate function called mono_trace_set_assembly () and call it after
15771 actually loading the main assembly. Fixes #66872.
15773 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
15775 * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
15776 using the code manager.
15778 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
15780 * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
15782 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
15784 * cpu-amd64.md: Fix bug in previous patch.
15786 * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
15789 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
15791 * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15792 mini-exceptions.c: updates for changed stack walk interface.
15794 2004-09-21 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15796 * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
15798 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
15800 * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
15802 2004-09-13 Zoltan Varga <vargaz@freemail.hu>
15804 * driver.c (mini_regression_list): Do not call mono_assembly_close
15805 since assemblies can't be unloaded.
15807 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
15809 * cpu-amd64.md: Fix more instruction lengths.
15811 * cpu-amd64.md: Fix lengths of some instructions.
15813 2004-09-11 Ben Maurer <bmaurer@users.sourceforge.net>
15815 * inssel.brg: Make the array ldelema check aot friendly.
15817 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
15819 * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
15821 * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
15823 2004-09-10 Zoltan Varga <vargaz@freemail.hu>
15825 * mini-x86.c: Fix build.
15827 * mini-sparc.c mini-x86.c mini-amd64.c: Use the new
15828 mono_type_get_underlying_type () helper function to simplify code.
15830 2004-09-09 Martin Baulig <martin@ximian.com>
15832 * mini-amd64.c: Don't access `type->data.klass' directly, call
15833 mono_class_from_mono_type() instead since the type may be a
15836 2004-09-09 Martin Baulig <martin@ximian.com>
15838 * mini-amd64.c (get_call_info): Fix support for generic instances.
15839 (add_valuetype): Use mono_class_from_mono_type() to get the class
15840 since we can be a generic instance.
15842 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
15844 * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
15846 2004-09-07 Ben Maurer <bmaurer@users.sourceforge.net>
15848 * liveness.c: reset spill costs on each scan: bug 62107
15850 2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
15852 * exceptions-sparc.c (mono_arch_find_jit_info): remove
15853 unnecessary line that doesn't compile
15855 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
15857 * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
15858 trampolines, make them call an error function so people can fix their
15861 2004-09-06 Martin Baulig <martin@ximian.com>
15863 * mini.c (mono_method_to_ir): When initializing locals, handle a
15864 generic instances like a valuetype if it's a valuetype and like a
15865 class if it's a class.
15867 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
15869 * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
15870 stack. Fixes #64674.
15872 * exceptions.cs: Add test for unwinding of call arguments.
15874 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
15876 * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
15877 OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
15878 set the carry/borrow flag). The sparc and s390 implementations
15879 can now use optimized versions (and simplify the code). ppc bugfixes.
15881 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
15883 * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
15885 2004-09-05 Zoltan Varga <vargaz@freemail.hu>
15887 * inssel-amd64.brg: Remove leftover 32 bit rule.
15889 * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
15891 2004-09-04 Zoltan Varga <vargaz@freemail.hu>
15893 * mini-exceptions.c (mono_find_jit_info): Refactor common code from
15894 mono_arch_find_jit_info functions into a new function. Fix a memory
15897 * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
15900 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
15902 * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
15905 * exceptions.cs: Add array size tests.
15907 * mini.c: Allocate a separate icall wrapper for each arity of
15908 mono_array_new_va. Fixes #59509.
15910 * exceptions.cs: Add testcase for 64578.
15912 * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
15914 * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
15916 2004-09-02 Martin Baulig <martin@ximian.com>
15918 * mini.c (mono_method_to_ir): When initializing the locals, call
15919 handle_initobj() on the generic instance itself, not its
15922 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
15924 * mini.h (MonoJitDynamicMethodInfo): New structure, extension of
15925 MonoJitInfo for dynamic methods.
15927 * mini.c: Rename trampoline_hash_mutex to jit_mutex.
15929 * mini.c: Add support for freeing JIT data for dynamic methods.
15931 2004-09-01 Martin Baulig <martin@ximian.com>
15933 * mini-x86.c (is_regsize_var): Added support for generic
15935 (mono_arch_emit_prolog): Make this compile again, use
15936 `x86_push_imm_template (code)'.
15938 2004-08-30 Ben Maurer <bmaurer@users.sourceforge.net>
15940 * mini-x86.c: make all push_imm instructions that get
15941 patched always emit the long form
15943 2004-08-30 Zoltan Varga <vargaz@freemail.hu>
15945 * mini.c (mono_create_jump_trampoline): Store the jump trampolines
15946 in a per-domain hash.
15948 * mini-amd64.c (merge_argument_class_from_type): Handle generic
15951 2004-08-29 Zoltan Varga <vargaz@freemail.hu>
15953 * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
15956 * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
15959 * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
15960 Beginnings of SSE2 support.
15962 * exceptions.cs: Add more tests for checked int<->uint casts.
15964 2004-08-28 Martin Baulig <martin@ximian.com>
15966 * mini-x86.c (mono_arch_instrument_epilog): Added support for
15970 (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
15971 Handle generic instances recursively.
15973 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
15975 * iltests.il: test for conv.u8 on a constant
15977 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
15979 * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
15980 LCONV_x4 (shrun_32 (membase)).
15982 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
15984 * inssel-x86.brg: c&p rules for push/setret of long
15986 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
15988 * inssel-x86.brg: c&p rules for compare (base, regvar) and
15989 compare (regvar, base)
15991 * inssel-x86.brg: more burg love
15993 * inssel.brg: more cleanup
15995 * inssel-x86.brg, inssel-long32.brg: burg cleanup.
15997 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
15999 * basic-long.cs, basic-calls.cs: new tests for optimization.
16001 2004-08-26 Zoltan Varga <vargaz@freemail.hu>
16003 * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
16006 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
16008 * mini-amd64.c (read_tls_offset_from_method): Add another case.
16010 2004-08-25 Bernie Solomon <bernard@ugsolutions.com>
16012 * inssel.brg (mini_emit_memcpy): use
16013 NO_UNALIGNED_ACCESS to disable memcpy optimization
16015 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
16017 * mini-amd64.c: Handle generic types in various places.
16019 * mini.c (mono_method_to_ir): Handle generic types in init locals.
16021 2004-08-24 Zoltan Varga <vargaz@freemail.hu>
16023 * mini.c (handle_box): Fix warning.
16025 * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
16027 * mini-amd64.h: Enable the emit_state optimization.
16029 * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
16031 * mini-amd64.c: Add some new 64 bit peephole opts.
16033 * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
16035 * cpu-amd64.md: sreg1 of div instructions must be %rax.
16037 * mini-amd64.c: Register allocator fixes.
16039 * mini.c: Add an optimization to emit_state to avoid allocation of new
16040 registers on some platforms.
16042 2004-08-23 Zoltan Varga <vargaz@freemail.hu>
16044 * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
16046 * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
16047 allocation. Fixes #63085.
16049 * basic-long.cs: Add new regression test.
16051 * mini-amd64.c: Register allocator improvements.
16053 2004-08-21 Zoltan Varga <vargaz@freemail.hu>
16055 * mini-amd64.c (read_tls_offset_from_method): Add another code
16058 * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
16059 instruction sequence for nullifying class init trampolines.
16061 * objects.cs: Add new regalloc test.
16063 * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
16065 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
16067 * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
16069 * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
16072 * driver.c: Fix profiling after TLS changes.
16074 * driver.c (mono_main): Set mono_stats.enabled if needed.
16076 * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
16079 2004-08-20 Ben Maurer <bmaurer@users.sourceforge.net>
16081 * mini-x86.c: use a 1 op rather than a 2 op tls access
16082 instruction -> faster.
16084 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
16086 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16089 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
16091 * exceptions-sparc.c (throw_exception): fix typo
16093 2004-08-19 Ben Maurer <bmaurer@users.sourceforge.net>
16095 * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
16096 set tree->dreg correctly with tls. Allow any
16097 register to be used.
16099 * mini-x86.c (read_tls_offset_from_method): add new code
16100 generation pattern seen with GCC.
16103 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
16105 * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
16106 exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
16107 exceptions-sparc.c: fix some performance issues in exception
16108 handling and setting of the stack trace for exceptions that were
16111 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
16113 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16116 * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible
16119 2004-08-18 Ben Maurer <bmaurer@users.sourceforge.net>
16121 This patch inlines tls access, when possible.
16123 * mini.h: new arch functions for TLS intrinsics.
16124 All platforms updated with a stub.
16126 * mini.c: use the new intrinsics
16128 * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
16129 arch specific intrinsic for tls variables
16131 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
16133 * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
16136 2004-08-17 Ben Maurer <bmaurer@users.sourceforge.net>
16138 * mini.c: thread local allocation
16140 2004-08-16 Zoltan Varga <vargaz@freemail.hu>
16142 * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
16144 * Makefile.am: Link against the static version of libmonogc.
16146 * Makefile.am: Link the static versions of the convenience libraries
16147 into the mono executable.
16149 * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
16151 2004-08-15 Zoltan Varga <vargaz@freemail.hu>
16153 * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
16154 on integer overflow.
16156 * mini-amd64.c: Reorganize function call code.
16158 * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
16160 2004-08-14 Ben Maurer <bmaurer@ximian.com>
16162 * inssel-x86.brg: use xor eax,eax.
16164 * basic.cs: new tests
16166 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
16168 * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
16169 in exception throwing code.
16171 2004-08-14 Ben Maurer <bmaurer@ximian.com>
16173 * inssel-x86.brg: use xor esi,esi.
16175 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
16177 * driver.c (mono_main): Call mono_trace_parse_options earlier so it
16178 can trace methods compiled during mini_init () too.
16180 * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle
16183 2004-08-14 Ben Maurer <bmaurer@ximian.com>
16185 * Makefile.am: static link on x86 (r=zoltan)
16187 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
16189 * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
16190 code since it causes some programs to fail.
16192 2004-08-12 Zoltan Varga <vargaz@freemail.hu>
16194 * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
16196 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
16198 * mini.c: ovfops_op_map - add STACK_OBJ case for
16200 * basic.cs: add test_0_pin_string as test
16203 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
16205 * Makefile.am: build C# if srcdir != builddir
16207 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
16209 * dominators.c, mini.h, mini-x86.c: fix loop alignment with
16210 fall-through blocks.
16212 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16214 * driver.c: enable loop by default again and include abcrem in -O=all.
16216 2004-08-08 Zoltan Varga <vargaz@freemail.hu>
16218 * iltests.il: Add some localloc tests.
16220 * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
16222 * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly.
16225 * inssel-amd64.brg: Add some optimizations.
16227 * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
16230 * Makefile.am: Statically link mono against libmono on AMD64.
16232 * mini-amd64.c inssel-amd64.brg: Optimizations.
16234 2004-08-07 Zoltan Varga <vargaz@freemail.hu>
16236 * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
16238 * tramp-amd64.c: Patch calling code in trampolines.
16240 2004-08-06 Zoltan Varga <vargaz@freemail.hu>
16242 * mini-amd64.c: pinvoke struct passing fixes.
16244 2004-08-05 Bernie Solomon <bernard@ugsolutions.com>
16246 * mini-sparc.c: redo change, make mono_arch_cpu_init call
16247 mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
16249 2004-08-05 Duncan Mak <duncan@ximian.com>
16251 * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16254 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
16256 * mini-amd64.c (emit_move_return_value): Move return value for normal
16259 2004-08-05 Martin Baulig <martin@ximian.com>
16261 * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
16262 `type->type'; just modify `type' itself when dealing with enums
16263 and generic instances.
16264 (check_call_signature): Make `simple_type' a `MonoType *'.
16266 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
16268 * mini.c: Use OP_PADD to add offsets to addresses.
16270 * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
16272 2004-08-04 Bernie Solomon <bernard@ugsolutions.com>
16274 * mini-sparc.c (mono_arch_emit_epilog): fix check
16275 for folding last op into restore instruction
16277 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
16279 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
16280 helper methods using the code manager.
16282 * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
16284 * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
16286 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16288 * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
16289 cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
16291 * mini-s390.c: fix tail processing
16293 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
16295 * mini-ppc.c: mul.ovf.un exception name fix.
16297 2004-08-03 Martin Baulig <martin@ximian.com>
16299 * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
16300 instances; before jumping to `handle_enum', also modify `ptype'.
16302 2004-08-02 Bernie Solomon <bernard@ugsolutions.com>
16304 * cpu-sparc.md: fcall maximal length too small.
16306 2004-08-02 Zoltan Varga <vargaz@freemail.hu>
16308 * mini-amd64.c mini.h: Add initial support for passing/returning
16309 structures to/from pinvoked methods.
16311 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
16313 * mini-ppc.c: reg allocator fix.
16315 2004-07-31 Zoltan Varga <vargaz@freemail.hu>
16317 * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
16319 * inssel.brg: Optimize memset on 64 bit machines.
16321 * mini-amd64.c: Fix some vararg cases.
16323 2004-07-30 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16325 * mini-s390.c: Corrected macro in emit_float_to_int
16327 * s390-abi.cs: Tests to exercise the s390 ABI
16329 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
16331 * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
16334 * basic.cs: Add a test for add.ovf.un.
16336 2004-07-30 Bernie Solomon <bernard@ugsolutions.com>
16338 * mini-sparc.c: add case for OP_IDIV_UN
16340 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
16342 * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
16344 * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
16346 2004-07-30 Ben Maurer <bmaurer@ximian.com>
16348 * basic.cs: regression tests.
16350 * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
16353 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
16355 * basic.cs: Add a new test.
16357 * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling
16358 and AOT. Various fixes and optimizations.
16360 * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
16362 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16364 * mini-ppc.c: make sure temp regs are not used for global reg
16367 2004-07-29 Bernie Solomon <bernard@ugsolutions.com>
16369 * cpu-sparc.md: conv_i8 fix for 64bits
16371 * mini-sparc.c: add cases for OP_IXXX codes for 64bits
16373 2004-07-29 Ben Maurer <bmaurer@ximian.com>
16375 * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
16376 add opcode for cmp BYTE PTR [eax], imm.
16378 * inssel.brg: Make memcpy and memset takes bases.
16380 2004-07-28 Zoltan Varga <vargaz@freemail.hu>
16382 * *-amd64.*: More AMD64 work.
16384 2004-07-28 Ben Maurer <bmaurer@ximian.com>
16386 * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
16387 add a compare-not-equal opcode.
16389 2004-07-28 Lluis Sanchez Gual <lluis@novell.com>
16391 * mini.c: Use mono_init_from_assembly instead of mono_init.
16393 2004-07-28 Zoltan Varga <vargaz@freemail.hu>
16395 * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
16397 * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
16399 * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
16401 * inssel.brg: 64 bit fixes.
16403 * mini.h (MonoCallInst): Add some AMD64 specific data.
16405 * mini.h: Add some OP_P opcodes.
16407 2004-07-28 Ben Maurer <bmaurer@ximian.com>
16409 * basic.cs: tests for 61797 and 61740
16411 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16413 * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
16414 numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
16416 2004-07-24 Zoltan Varga <vargaz@freemail.hu>
16418 * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
16420 * *-amd64*.*: Ongoing AMD64 work.
16422 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
16424 * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
16426 * *-amd64*: Ongoing AMD64 work.
16428 * mini-arch.h: Add AMD64 support.
16430 * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
16432 * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
16434 * mini-ops.h: Add new opcodes.
16436 * Makefile.am: Add AMD64 support.
16438 * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
16439 rules into the inssel-long*.brg files.
16441 * *-amd64.*: Add beginnings of AMD64 backend.
16443 2004-07-22 Ben Maurer <bmaurer@ximian.com>
16445 * mini.c (print_dfn): commenting out the code that prints
16446 the cil. With -O=deadce, this makes -v -v crash.
16448 * cpu-pentium.md: make checkthis have a length of 2
16450 2004-04-21 Bernie Solomon <bernard@ugsolutions.com>
16452 * mini-sparc.h: fix implementations of __builtin
16453 functions for Sun compiler for V9.
16455 2004-07-16 Ben Maurer <bmaurer@ximain.com>
16457 * mini.c: use the new stelem.ref wrapper
16458 * exceptions.cs, arrays.cs: new stelem.ref tests
16460 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16462 * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
16463 new XSP should work with these changes).
16465 2004-07-14 Ben Maurer <bmaurer@ximain.com>
16467 * inssel-{long32,x86,}.brg: trivial optimizations.
16469 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
16471 * mini.c: load value when emitting box operation in
16474 2004-07-12 Ben Maurer <bmaurer@ximian.com>
16476 * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
16477 is one byte shorter than cmp DWORD PTR [eax], 0.
16479 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
16481 * inssel-ppc.brg: arguments on the stack are always
16482 relative to the stack pointer (spotted by Neale Ferguson).
16484 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16486 * exceptions-x86.c: delay appending the method name to the trace until
16487 after mono_jit_info_table_find is called, as this gets the real
16490 2004-07-09 Ben Maurer <bmaurer@ximian.com>
16492 * aot.c: register roots
16494 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
16496 * aot.c : I could just use PLATFORM_WIN32 flag.
16498 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
16500 * aot.c : Reverting the previous fix. This time it broke linux build.
16502 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
16504 * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
16506 2004-07-08 Zoltan Varga <vargaz@freemail.hu>
16508 * mini.c (handle_stack_args): Remove some more debugging code.
16510 * mini.c (handle_stack_args): Remove debug output left in by mistake.
16512 * driver.c mini.h aot.c: Allow additional options to be specified with
16513 --aot and pass them to mono_compile_assembly.
16515 * aot.c: Add experimental code to AOT compile all loaded assemblies
16516 on demand and save the code into a cache in the filesystem.
16518 * aot.c: Add support for more wrapper methods.
16520 * mini.c (handle_stack_args): Handle some corner cases. Fixes
16523 * cpu-*.md: Remove removed opcodes.
16525 * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
16526 CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
16527 related icalls to marshal.c.
16529 2004-07-06 Zoltan Varga <vargaz@freemail.hu>
16531 * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
16533 * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
16535 * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
16537 2004-07-06 Ben Maurer <bmaurer@ximian.com>
16538 * liveness.c: If liveness is recomputated we need to reset the information
16539 for each variable. This way, if the liveness range has been narrowed
16540 by optimizations that happened after the last computation, we can return
16543 For example, if you have
16548 // Tons of code that does not affect i
16554 i = 0 is dead code and will be removed by SSA. However, when
16555 linear scan gets to the code, i will still appear to be live
16556 throughout the entire block. This prevents good register allocation.
16558 2004-07-06 Martin Baulig <martin@ximian.com>
16560 * debug-mini.c (mono_debug_init_method): Allow
16561 MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
16562 (mono_debug_add_icall_wrapper): New method.
16564 * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
16566 2004-07-05 Zoltan Varga <vargaz@freemail.hu>
16568 * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
16571 2004-07-03 Zoltan Varga <vargaz@freemail.hu>
16573 * aot.c (mono_aot_load_method): Fix loading of debug info.
16575 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
16577 * aot.c: Add logging support.
16579 2004-07-01 Zoltan Varga <vargaz@freemail.hu>
16581 * mini.h: Add prototype for mono_print_method_from_ip.
16583 * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
16585 * inssel.brg: 64 bit fixes.
16587 * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to
16590 * Makefile.am: Add SPARC64 support.
16592 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
16594 * aot.c: Fix alignment problems on 32 bit platforms.
16596 2004-07-01 Zoltan Varga <vargaz@freemail.hu>
16598 * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
16601 * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
16604 * mini.h: Bump AOT file version. Some 64 bit fixes.
16606 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
16608 * inssel-sparc.brg: Add new rule to avoid register moves.
16610 * inssel.brg: Add ldind_to_load_membase helper function.
16612 2004-06-30 Ben Maurer <bmaurer@ximian.com>
16614 * mini.c: OffsetToStringData intrinsic.
16616 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
16618 * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
16620 * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
16623 * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
16624 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
16626 * mini.c: reinstated mono_compile_get_interface_var()
16627 on x86, too, since the change breaks the Gtk# build there as well.
16629 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16631 * driver.c: remove loop from the default optimizations: it seems to
16632 interact badly with some of the other options (see bug #60613).
16634 2004-06-25 Zoltan Varga <vargaz@freemail.hu>
16636 * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann
16637 (fld@informatik.uni-bremen.de): Add Solaris x86 support.
16639 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
16641 * mini-ppc.c, cpu-g4.md: small updates to be able to compile
16642 vararg-using methods.
16644 2004-06-21 Martin Baulig <martin@ximian.com>
16646 * mini/mini-exceptions.c
16647 (mono_handle_exception): Added `gpointer original_ip' argument.
16648 After calling mono_unhandled_exception(), call
16649 mono_debugger_unhandled_exception() and if that returns true,
16650 restore the context and return.
16652 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16654 * mini-ppc.c: prefer the use of relative branches so
16655 they won't need to be patched in aot code (patch from Patrick Beard).
16657 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16659 * aot.c: patch from Patrick Beard to make the output assembly
16660 more correct for the MacOSX assembler. Small tweak to
16661 generate sane images on Linux/PPC, too.
16663 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16665 * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
16666 case until bug #59509 is fixed (shows up in #60332).
16668 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16670 * mini.c: make sure the needed wrappers are compiled, too, with
16673 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
16675 * driver.c: remove NPTL reference in --version output.
16677 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16679 * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
16680 generate valid assembly for the Mach-O assembler.
16682 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
16684 * driver.c: don't include abcrem in the all optimization specifier
16685 since it slows down jit compilation too much for now.
16687 2004-06-12 Ben Maurer <bmaurer@users.sourceforge.net>
16689 * mini.c: use BIGMUL only if both operands have the same signage.
16690 * iltests.il: Test for bug 60056. (errors related to signage in
16695 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
16697 * mini.c, aot.c: memory leak fixes.
16699 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16701 * inssel-long32.brg: implemented a few missing ulong cast opcodes.
16703 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
16705 * Makefile.am: remove the -static hack completely, it links in
16706 statically glib as well.
16708 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
16710 * iltests.il, mini.c: fixed bug#59580 in branch optimization.
16711 * exceptions.cs: make it compile with new mcs/csc.
16713 2004-06-03 Massimiliano Mantione <massi@ximian.com>
16714 * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
16715 and added relevant test case.
16717 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16719 * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
16720 regressions in gtk-sharp.
16722 2004-05-29 Zoltan Varga <vargaz@freemail.hu>
16724 * exceptions.cs: New regression tests.
16726 * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
16728 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
16730 * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
16732 2004-05-28 Zoltan Varga <vargaz@freemail.hu>
16734 * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
16736 * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
16738 2004-05-28 Patrik Torstensson <totte@hiddenpeaks.com>
16740 * mini.c (mono_jit_runtime_invoke): Init class in this
16741 method instead of trusting mono_jit_compile_method to
16742 do the work (because wrappers can be in object class)
16744 2004-05-27 Zoltan Varga <vargaz@freemail.hu>
16746 * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
16748 * basic-long.cs: New regression test.
16750 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
16752 * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
16753 and div/rem checks.
16755 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16757 * Makefile.am: fix miguel's change to build mono statically against
16758 libmono (track build dependencies).
16760 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
16762 * cfold.c: Some glib versions do not have G_MININT32.
16764 2004-05-26 Massimiliano Mantione <massi@ximian.com>
16766 * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
16767 with precision of tan, atan, sin and cos, and implemented related
16768 regressions tests (fixes bug 54467, but one new problem appeared and
16771 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
16773 * cfold.c (FOLD_BINOPZ): Avoid division by zero.
16775 * exceptions.cs: Add test for constant folding && division by zero.
16777 * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
16778 since driver.c is in libmono too, so the optimization was useless.
16780 * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS
16781 variable to driver.c so the compiler can emit more efficient code to
16784 2004-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16786 * Makefile.am: don't distribute generated inssel.[ch] files.
16788 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
16790 * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
16791 into the default appdomain. Fixes #58707.
16793 * jit-icalls.c: Remove the broken approximation for truncl, doing
16794 no conversion is better.
16796 * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
16799 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
16801 * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
16802 of the mcrxr instruction which is not available on some processors
16803 even if it's documented to be. Implement add and sub overflow correctly
16804 (still not complete for long unsigned). Speed up icalls a bit.
16806 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
16808 * mini.c (mono_jit_compile_method_with_opt): Make sure that
16809 we run .cctor in the current domain instead of target_domain.
16811 Fixes bug #58558, .cctor not being called in -O=shared.
16813 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16815 * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
16817 2004-05-24 Ben Maurer <bmaurer@users.sourceforge.net>
16819 * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
16820 which can be done with an imm8, do it that way.
16821 (mono_arch_output_basic_block): ditto for a jmp
16822 (mono_arch_emit_prolog): Computate maximum offset of a label.
16824 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
16826 * mini-x86.c (mono_arch_local_regalloc): the reg allocator
16827 now tries to allocate prefered physical reg's for virtual
16828 regs. This reduces the number of emited spills/loads with
16829 20-30% on our core assemblies.
16831 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16833 * jit-icalls.c: truncl() is not needed and trunc() is
16834 the correct thing to do anyway (bug #58287).
16836 2004-05-24 Zoltan Varga <vargaz@freemail.hu>
16838 * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
16841 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16843 * driver.c: enable loop optimizations by default.
16845 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16847 * mini-x86.c: fix calc of max loop size when aligning loops start.
16849 2004-05-23 Zoltan Varga <vargaz@freemail.hu>
16851 * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
16854 2004-05-22 Zoltan Varga <vargaz@freemail.hu>
16856 * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
16859 * basic-long.cs: Add tests for add/subtract of immediates with carry.
16861 * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
16863 * mini.c (inline_method): Allways inline some wrappers even if the cost
16864 is too large. Fixes #58785.
16866 * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
16868 2004-05-21 Zoltan Varga <vargaz@freemail.hu>
16870 * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
16871 (crichton@gimp.org). Beginning of support for sparc/linux.
16873 * mini-sparc.c: Optimize retrieval of LMF address.
16875 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
16877 * exceptions-ppc.c: handle alloca in methods with clauses.
16879 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
16881 * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
16883 2004-05-20 Lluis Sanchez Gual <lluis@ximian.com>
16885 * mini.c: Delegate most of the abort signal work to
16886 mono_thread_request_interruption, which also handles Stop and Suspend
16889 2004-05-20 Zoltan Varga <vargaz@freemail.hu>
16891 * mini.c mini.h: Allow inlining of icall wrappers if the backend
16892 supports the save/restore lmf opcodes.
16894 2004-05-19 Zoltan Varga <vargaz@freemail.hu>
16896 * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
16897 by gcc-3.4 as well.
16899 * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
16901 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
16903 * mini.h mini.c (mini_method_compile): Only run abc removal pass on
16904 methods which contain array accesses.
16906 * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
16907 boundaries. Fixes #58537.
16909 * iltests.il: Add regression test for #58537.
16911 2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
16913 * mini-x86.c (mono_arch_local_regalloc): Last part of
16914 fix for bug #58633 (releasing register to early).
16916 2004-05-18 Miguel de Icaza <miguel@ximian.com>
16918 * basic-long.cs: Add new regression test.
16920 2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
16922 * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
16923 register too early on the chain.
16925 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
16927 * mini.c (create_helper_signature): Use a helper function to reduce
16928 the code which needs to be written. Also set the calling convention of
16929 icalls on windows. Fixes #57840.
16931 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16933 * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
16934 exceptions-ppc.c: added helper function to get the instruction address
16935 from a signal handler context.
16937 2004-05-17 Ben Maurer <bmaurer@users.sourceforge.net>
16939 * helpers.c: use g_get_tmp_dir. Invokes happyness
16942 2004-05-17 Ben Maurer <bmaurer@users.sourceforge.net>
16944 * helpers.c: Add new env variable to pass args to objdump.
16945 Specifically for those of us who love -Mintel. r=miguel, gonzalo.
16947 2004-05-17 Radek Doulik <rodo@ximian.com>
16949 * Makefile.am (common_sources): added abcremoval.h so it get
16950 disted and daily mono packages on go-mono.com will build again
16952 2004-05-17 Massimiliano Mantione <massi@ximian.com>
16954 * abcremoval.c: Fixed coding style, added copyright header.
16956 * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
16958 * mini.h: Added prototype for abc removal main function.
16960 * build_relations_propagation_table.pl: Added copyright header.
16962 2004-05-16 Patrik Torstensson <totte@hiddenpeaks.com>
16964 * basic-long.cs: reg test for complex ceq_long bug.
16966 2004-05-16 Patrik Torstensson <totte@hiddenpeaks.com>
16968 * mini-x86.c (mono_arch_local_regalloc): Correctly free
16969 reg in long and clob case (bug #58343). Fixed/added comments.
16971 2004-05-14 Ben Maurer <bmaurer@users.sourceforge.net>
16973 * mini.c (mono_jit_runtime_invoke): Follow new convention
16974 of calling the invoke method with an function pointer.
16976 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
16978 * ChangeLog: Fix author of memory leak patch.
16980 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
16982 * Makefile.am: fix make dist as well...
16985 2004-05-14 Massimiliano Mantione <massi@ximian.com>
16987 * cfold.c: Made so that conversions from pointer to int4 are no-ops
16988 on archs where pointers are 4 bytes long.
16990 * Makefile.am: Added abcremoval.c source file.
16992 * abcremoval.c: Added abcremoval.c.
16994 * abcremoval.h: Added abcremoval.h.
16996 * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
16998 * inssel.brg: Enabled bounds check removal.
17000 * mini.c: Added support for abcrem optimization.
17002 * mini.h: Added abcrem optimization label.
17004 * driver.c: Added support for abcrem optimization.
17006 * propagated_relations_table.def: Added propagated_relations_table.def.
17008 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
17010 * mini.c, cfold.c: fix style.
17012 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17014 * mini.c: handle issue with the low-level implementation of
17015 some long opcodes (bug #54209).
17017 2004-05-13 Ben Maurer <bmaurer@users.sourceforge.net>
17019 * basic.cs: test for my new cmov stuff.
17021 2004-05-13 Patrik Torstensson
17023 * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
17024 opt and added peephole documentation.
17026 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
17028 * tramp-ppc.c: rewrote the generic trampoline code.
17030 2004-05-11 Patrik Torstensson
17032 * mini-x86.c: optimize long shl/shr asm code (one less branch)
17034 2004-05-11 Zoltan Varga <vargaz@freemail.hu>
17036 * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
17038 * mini.h mini.c dominators.c: Applied patch from Derek Woo
17039 (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
17041 * mini.c: Add new icalls for AsAny marshalling.
17043 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
17045 * tramp-ppc.c, mini-ppc.c: more cleanups.
17047 2004-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17049 * mini.c: no warnings.
17051 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17053 * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
17055 2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
17057 * mini.c: In the thread abort signal handler, if the thread is in the
17058 process of being stoped, don't throw the Abort exception, just stop the
17061 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
17063 * tramp-ppc.c: removed old code.
17065 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17067 * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
17068 do some simple speed optimizations on ppc.
17070 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
17072 * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
17073 and large offsets in load/store.
17075 2004-05-07 Zoltan Varga <vargaz@freemail.hu>
17077 * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
17078 it causes regressions.
17080 2004-05-07 Zoltan Varga <vargaz@freemail.hu>
17082 * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
17085 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17087 * jit-icalls.c: remove warnings.
17088 * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
17089 speedups for unsafe code.
17091 2004-05-07 Ben Maurer <bmaurer@users.sourceforge.net>
17093 * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
17095 2004-05-06 Zoltan Varga <vargaz@freemail.hu>
17097 * basic-calls.cs: Add new regression test.
17099 * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
17102 * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
17104 * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
17107 2004-05-06 Patrik Torstensson
17109 * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
17110 long reg allocation in any reg (not only eax:edx) and implemented
17111 long shl/shr ops in asm instead of helpers.
17113 2004-05-05 Zoltan Varga <vargaz@freemail.hu>
17115 * mini-sparc.h: Fix warnings.
17117 * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
17120 * mini-exceptions.c (mono_handle_exception): Call the filter in a
17121 separate statement for clarity.
17123 * mini-sparc.c: Update status.
17125 2004-05-04 Zoltan Varga <vargaz@freemail.hu>
17127 * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
17130 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17132 * inssel-ppc.brg: another small pre-release workaround:
17133 we don't do overflow detection for long_sub_un.
17135 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17137 * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
17138 (also works around a weird ppc bug: 57957).
17140 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
17142 * tramp-ppc.c: trampoline fixes.
17144 Fri Apr 30 15:54:26 EDT 2004 Paolo Molaro <lupus@ximian.com>
17146 * mini-ppc.c: fixed typos.
17148 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17150 * mini-ppc.c, exceptions-ppc.c: more code saves registers
17151 at the top of the stack. Fixed typos. Use a frame registers
17152 for all the methods with exception clauses.
17154 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17156 * exceptions-ppc.c: restore fp registers.
17158 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
17160 * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
17161 order from the stack top (moved the stack room to save the
17162 return value for trace after the param area). Fixed corruption
17163 in restoring registers on unwind.
17165 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17167 * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
17169 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17171 * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
17172 and prolog/epilog for methods that use it. Allow
17173 enough param area room for varargs methods. Fix miguel's
17174 breakage in exception handling.
17176 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17178 * Makefile.am: run genmdesc only on current arch.
17180 2004-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17182 * exceptions-x86.c:
17183 * mini-x86.h: fix the build on windows.
17185 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
17187 * Makefile.am mini.h mini-exceptions.c mini-x86.h mini-sparc.h exceptions-sparc.c: Move parts of the sparc exception handling code to XP code.
17189 * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
17191 * mini-exceptions.c: New file.
17193 * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
17194 Move some parts of the x86 exception handling code to an
17195 arch-independent file so it can be shared with other ports.
17197 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17199 * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
17201 2004-04-26 David Waite <mass@akuma.org>
17203 * driver.c: remove comma from end of enumeration declaration
17205 2004-04-26 Jackson Harper <jackson@ximian.com>
17207 * driver.c: parse config file before loading first assembly. This
17208 allows the user gac to be enabled/disabled.
17210 2004-04-23 Miguel de Icaza <miguel@ximian.com>
17212 * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
17213 simpler mechanism: we do not care what is encoded initially
17214 (branch absolute or relative), we care about the code and its
17215 target. I kept the old code for reference for now.
17217 The new code tries first to determine if the jump is anywhere in
17218 the -/+32 absolute meg range, if it succeeds, it encodes using the
17219 absolute branch; If not, it tried to find something in the
17220 relative range, if not, it uses the handle_thunk code.
17222 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
17224 * exceptions-ppc.c: use the correct ip register on macosx.
17226 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
17228 * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
17230 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
17232 * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
17233 Raise exception on integer divide by zero by hand since the hw
17234 doesn't support it. Handle NaNs in FP compares.
17236 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17238 * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
17239 code reducing duplication between the platforms and enabled
17240 signal exception handling (on linux for now).
17242 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
17244 * exceptions-ppc.c: more macosx support.
17246 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17248 * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
17250 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17252 * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
17254 2004-04-19 Ben Maurer <bmaurer@users.sourceforge.net>
17256 * iltests.il: more tests.
17258 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
17260 * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
17263 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17265 * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
17267 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
17269 * liveness.c: Mark variables as volatile in all basic blocks reachable
17270 from exception clauses.
17272 2004-04-18 Zoltan Varga <vargaz@freemail.hu>
17274 * exceptions.cs (test_0_rethow_stacktrace): Make this work with
17277 2004-04-18 Ben Maurer <bmaurer@users.sourceforge.net>
17279 * iltests.il, basic.cs: more tests for regalloc.
17281 2004-04-17 Ben Maurer <bmaurer@users.sourceforge.net>
17283 * iltests.il: Some tests for register allocation modifications
17286 2004-04-16 Zoltan Varga <vargaz@freemail.hu>
17288 * exceptions.cs: Add regression test for bug #56782.
17290 * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
17291 original stack trace if an exception is rethrown. Fixes #56782. Oh,
17292 the beauty of fixing the same thing in 5 different files...
17294 2004-04-15 Zoltan Varga <vargaz@freemail.hu>
17296 * mini.c (mono_method_to_ir): Do not compute coverage for inlined
17299 2004-04-14 Zoltan Varga <vargaz@freemail.hu>
17301 * mini.c: Add support for STRWLPARRAY marshalling convention.
17303 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17305 * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
17306 to init the context to setup the regs pointer).
17308 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17310 * exceptions-ppc.c: more exceptions work.
17312 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17314 * mini.c: avoid reusing the same MonoInst on multiple trees: this is
17317 2004-04-13 Miguel de Icaza <miguel@ximian.com>
17319 * inssel-x86.brg (reg): Add new rules for add, sub and mul that
17320 can use the memory directly.
17322 * cpu-pentium.md: Update documentation from a post from Zoltan.
17324 add x86_add_membase, x86_sub_membase, x86_mul_membase
17326 2004-04-13 Miguel de Icaza <miguel@ximian.com>
17328 * mini-ppc.c: Remove unused definitions FLOAT_REGS and
17329 GENERAL_REGS they were also hardcoded for all PPC ports.
17331 (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
17333 Remove hard-coded limit for floating point registers, use
17334 PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
17336 Notice that in MacOS X calling conventions you can fit a lot more
17337 floating point values in registers, so I should update the PInvoke
17338 test to excercise the passing of floating point values on the
17339 stack (currently broken).
17341 2004-04-06 Miguel de Icaza <miguel@ximian.com>
17343 * tramp-ppc.c (create_trampoline_code): Added
17344 JUMP_TRAMPOLINE_SIZE.
17345 (ppc_magic_trampoline): Follow the pattern from
17346 x86_magic_trampoline: if code is set to zero, return.
17347 (create_trampoline_code): Always pass MonoMethod to the jump
17348 trampoline, before it was passing a null.
17349 (mono_arch_create_jump_trampoline): Implement the jump stub, could
17350 share the code with mono_arch_create_jit_trampoline.
17352 * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
17354 (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
17357 * cpu-g4.md: Added length for jmp instruction, the worst case
17358 scenario is 92 bytes (4 mandatory bytes, potential 19 registers
17361 2004-04-08 Zoltan Varga <vargaz@freemail.hu>
17363 * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
17365 2004-04-07 Zoltan Varga <vargaz@freemail.hu>
17367 * mini.c: Only set bblock->real_offset when adding a new bblock, and
17368 before each IL instruction.
17370 * mini.c (CEE_BOX): Fix warnings.
17372 2004-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17374 * mini.c: removed a few unused vars and extra whitespace.
17376 2004-04-05 Ben Maurer <bmaurer@users.sourceforge.net>
17378 * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
17380 (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
17382 (OP_GETCHR): use the above
17383 (CEE_LDELEMA): use the above.
17385 * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
17386 version of the generic impl.
17387 (MONO_EMIT_BOUNDS_CHECK_IMM): the same
17388 (CEE_LDELEMA): use the above.
17390 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
17392 * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
17395 * iltests.il: Added new regression test for #56317.
17397 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
17399 * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
17400 under NetBSD. Fixes #56450.
17402 * liveness.c (update_gen_kill_set): Fix previous patch.
17404 2004-04-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17406 * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
17408 2004-04-02 Zoltan Varga <vargaz@freemail.hu>
17410 * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
17411 ldsfld and ldsflda.
17413 * inssel-sparc.brg: Add more optimizations.
17415 * mini-sparc.c: Replace multiply/divide with shifts if possible.
17417 2004-04-01 Martin Baulig <martin@ximian.com>
17419 * mini.c (handle_box): New static function; moved the
17420 implementation of CEE_BOX here.
17421 (mono_method_to_ir): Added `constrained_call' variable.
17422 (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
17423 (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
17424 mono_method_get_constrained() to get the method.
17426 2004-04-01 Martin Baulig <martin@ximian.com>
17428 * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
17429 (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
17430 (mono_method_to_ir): We don't need these macros anymore since
17431 mono_class_get_full() already takes care of it.
17433 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17435 * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
17436 use @function (as doesn't accept #function here) and check the return
17437 value of system and stop if fails.
17439 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17441 * mini.c: set the timeout to 2s when calling mono_domain_finalize.
17443 2004-03-31 Zoltan Varga <vargaz@freemail.hu>
17445 * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
17447 * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
17449 * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
17452 * basic-long.cs: Add test for negation of Int64.MinValue.
17454 2004-03-30 Zoltan Varga <vargaz@freemail.hu>
17456 * mini-sparc.c: Update status.
17458 * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
17460 * exceptions-sparc.c: Fix return value in filters.
17462 * inssel-sparc.brg: Fix register allocation in some rules.
17464 2004-03-28 Martin Baulig <martin@ximian.com>
17466 * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
17469 2004-03-28 Zoltan Varga <vargaz@freemail.hu>
17471 * mini-x86.c (mono_arch_patch_code): Fix warnings.
17473 * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if
17474 dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
17475 remove unused conv_u4 opcode.
17477 * mini-x86.c: Remove valgrind workaround since it slows down things
17478 even when mono is not run under valgrind.
17480 2004-03-26 Zoltan Varga <vargaz@freemail.hu>
17482 * mini-sparc.c: Update status.
17484 * inssel-sparc.brg: Add some optimizations.
17486 * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
17487 future delay slot filling. Add support for varargs, tail calls and JMP.
17489 * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of
17490 CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
17492 * inssel.brg: Fix register allocation in OP_ARGLIST.
17494 * inssel.brg: Fix warnings.
17496 2004-03-25 Martin Baulig <martin@ximian.com>
17498 * mini.c (inflate_generic_field): Removed.
17499 (mini_get_method): Removed, use mono_get_method_full(),
17500 (mini_get_class): Removed, use mono_class_get_full().
17501 (mono_method_to_ir): Pass our generic context to
17502 mono_field_from_token().
17504 2004-03-25 Martin Baulig <martin@ximian.com>
17506 * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
17507 of a `MonoMethod *'.
17508 (mini_get_method): Take a `MonoGenericContext *' instead
17509 of a `MonoMethod *'.
17510 (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
17511 a new local variable called `generic_context' which holds the
17512 current `MonoGenericContext *'; use it to lookup things.
17514 2004-03-24 Martin Baulig <martin@ximian.com>
17516 * mini.c (mini_get_class): New static method; if we're inside a
17517 generic instance, inflate the class if neccessary.
17518 (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
17520 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
17522 * iltests.il: New regression test for #55976.
17524 * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
17527 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
17529 * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
17532 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
17534 * liveness.c: Consider SSA stores as well as loads when making vars
17537 * exceptions.cs: New regression tests for register allocation.
17539 2004-03-22 Lluis Sanchez Gual <lluis@ximian.com>
17541 * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
17542 * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
17543 domain lock only to protect puntual access to data structures.
17544 Added access lock for sighash, jit_icall_hash_name,
17545 jit_icall_hash_addr and domain->code_mp.
17547 2004-03-20 Zoltan Varga <vargaz@freemail.hu>
17549 * driver.c: Print SIGSEGV handling method.
17551 * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
17553 * mini.c (setup_jit_tls_data): Handle case when this is called
17554 multiple times for a thread.
17556 * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx
17557 is different from fbxx_un. Fixes #54303. Also use constants instead of
17558 magic numbers in a lot of places.
17560 2004-03-19 Zoltan Varga <vargaz@freemail.hu>
17562 * exceptions.cs: Fix cctor test when --regression is used.
17564 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
17566 * mini-ppc.c, exceptions-ppc.c: basic exceptions support
17569 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17571 * inssel-ppc.brg: fixed register assignments for some rules.
17573 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
17575 * exceptions.cs: Add test for exceptions in static constructors.
17577 * mini.c (mono_jit_compile_method_with_out): Move the calling of
17578 static constructors outside the domain lock. Fixes #55720.
17580 2004-03-17 Martin Baulig <martin@ximian.com>
17582 * mini.c (get_generic_field_inst): Removed, this'll never happen.
17583 (inflate_generic_field): Take the `MonoMethod *' instead of the
17584 `MonoClass *' and added support for generic method.
17585 (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
17586 have a `field->parent->gen_params', only inflate the field if it's
17587 an open constructed type.
17589 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
17591 * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
17592 exception object instead of the preconstructed ones.
17594 2004-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17596 * mini.c: reverted changed to sigsegv_signal_handler commited
17597 accidentally in the previous patch.
17599 2004-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17602 (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
17603 running --aot with an old assembly.
17605 2004-03-16 Zoltan Varga <vargaz@freemail.hu>
17607 * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
17610 * mini-sparc.c: Add support for v9 branches with prediction.
17612 2004-03-15 Bernie Solomon <bernard@ugsolutions.com>
17614 * mini.c (mini_init): #warning is GNUC only
17616 * mini-sparc.h: implement __builtin_frame_address
17617 and __builtin_return_address for Sun C compiler
17619 2004-03-15 Zoltan Varga <vargaz@freemail.hu>
17621 * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
17623 2004-03-14 Zoltan Varga <vargaz@freemail.hu>
17625 * basic-calls.cs: Add test for unaligned byref long argument passing.
17627 * mini-ops.h: Add sparcv9 compare and branch instructions.
17629 * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
17630 v9 instructions if we have a v9 cpu.
17632 * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
17633 registers for global allocation.
17635 * exceptions-sparc.c: Fixes.
17637 2004-03-11 Zoltan Varga <vargaz@freemail.hu>
17639 * liveness.c (mono_analyze_liveness): Optimized version.
17641 * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
17643 * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
17646 * basic-float.cs basic-calls.cs: New regression tests.
17648 2004-03-10 Zoltan Varga <vargaz@freemail.hu>
17650 * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
17651 sigaltstack implementation.
17653 * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
17655 * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
17656 stuff if SIGSEGV_ON_ALTSTACK is not defined.
17658 2004-03-09 Zoltan Varga <vargaz@freemail.hu>
17660 * mini.c: Fix warnings.
17662 * mini.c (mono_resolve_patch_target): New function which contains the
17663 arch independent part of the patching process.
17665 * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
17666 patching code to a separate function.
17668 2004-03-09 Bernie Solomon <bernard@ugsolutions.com>
17670 * mini.c (add_signal_handler): ifdef out on Windows
17672 2004-03-08 Zoltan Varga <vargaz@freemail.hu>
17674 * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c
17675 cpu-sparc.md: Add exception handling support + other fixes.
17677 * driver.c: Print --help output to stdout. Fixes #55261. Also fix
17678 typed GC detection in --version.
17680 * basic.cs exceptions.cs: New regression tests.
17682 * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
17683 the arch specific code can store data during a compilation.
17685 * mini-ops.h: Add OP_SETFRET.
17687 * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
17688 function, register a separate icall for each arity, so the icalls can
17691 * mini.c (mono_print_tree): Print negative offsets in a more readable
17694 * mini.c: Make signal handling work on sparc.
17696 * mini.c (mini_init): Add emulation for lconv_to_r8_un.
17698 * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
17700 * jit-icalls.c: Emulate truncl by aintl on solaris.
17702 * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
17704 2004-03-05 Zoltan Varga <vargaz@freemail.hu>
17706 * mini.c (mini_init): fconv_to_ovf can raise exceptions.
17708 2004-03-04 Lluis Sanchez Gual <lluis@ximian.com>
17710 * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
17711 a MarshalByRef type, inline a method that performs the check, taking into
17712 account that the object can be a proxy. Also implemented tow new opcodes:
17713 CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17714 * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and
17715 OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17717 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17719 * mini-ppc.c: if a relative branch displacement is too big
17720 but it points to and area reachable with an absolute branch,
17723 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17725 * mini.c: optimize small copies in cpblk.
17727 2004-03-01 Zoltan Varga <vargaz@freemail.hu>
17729 * basic-calls.cs basic-float.cs: New regression tests.
17731 * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at
17732 negative offsets from %fp. Implement localloc. Fix local register
17733 allocation. Fix the case when the this argument needs to be saved to
17734 the stack. Implement some missing opcodes.
17736 2004-02-26 Zoltan Varga <vargaz@freemail.hu>
17738 * mini.c (mini_method_compile): Reenable global regalloc in methods
17739 with exception handlers.
17741 * linear-scan.c (mono_varlist_sort): Fix warning.
17743 * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
17745 * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
17748 * liveness.c: Make all variables uses in exception clauses volatile, to
17749 prevent them from being allocated to registers. Fixes #42136.
17751 2004-02-25 Zoltan Varga <vargaz@freemail.hu>
17753 * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
17754 causes regressions.
17756 * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
17757 argument to mono_arch_regalloc_cost.
17759 * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs
17762 2004-02-24 Zoltan Varga <vargaz@freemail.hu>
17764 * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c:
17765 Make the cost of allocating a variable to a register arch dependent.
17767 * basic-calls.cs: Fix compilation of tests.
17769 * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
17770 helper function to cut back on the number of #ifdefs needed.
17772 * mini-ppc.c: Fix compilation.
17774 * basic-calls.cs: New regression tests.
17776 * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
17778 * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
17779 of l0 since that is callee saved.
17781 * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
17784 * mini-sparc.c: Ongoing work + flag virtual calls with a special kind
17785 of delay instruction.
17787 * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
17789 * mini.h (MonoCallInst): Add 'virtual' flag.
17791 * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
17793 2004-02-23 Zoltan Varga <vargaz@freemail.hu>
17795 * *.cs: New regression tests.
17797 * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc
17800 * mini.c (mono_runtime_install_handlers): Fix build.
17802 * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
17803 'signal_stack_size' members.
17805 * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an
17806 alternate signal stack.
17808 * exceptions-x86.c: Add stack overflow handling.
17810 * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing
17811 functions to arch independent code.
17813 * mini.c (mono_print_tree): Print more detailed info for load_membase
17816 2004-02-23 Martin Baulig <martin@ximian.com>
17818 * mini.c (mini_get_method): Set `gmethod->generic_inst'.
17820 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17822 * mini-x86.c: fixed reg allocation for div/rem.
17824 2004-02-22 Miguel de Icaza <miguel@ximian.com>
17826 * driver.c (mono_main): Report some configuratio options on --version.
17828 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
17830 * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
17831 low in the address space. Correctly flush memory in thunks where we
17832 output native code.
17834 2004-02-20 Martin Baulig <martin@ximian.com>
17836 * mini.c (mini_get_method): New static method; inflate all generic
17837 methods and methods in open generic instances.
17838 (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
17839 (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
17841 2004-02-19 Zoltan Varga <vargaz@freemail.hu>
17843 * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
17845 * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
17847 2004-02-19 Bernie Solomon <bernard@ugsolutions.com>
17849 * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
17851 * mini-sparc.c (flushi mono_arch_output_basic_block): make
17852 it compile using Sun's compiler.
17854 2004-02-19 Zoltan Varga <vargaz@freemail.hu>
17856 * mini-ops.h inssel-sparc.brg cpu-sparc.md mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Sparc port, part I.
17858 * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
17860 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
17862 * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
17864 * mini-ppc.c: handle calls outside of the allowed range with thunks
17865 allocated using the code manager.
17866 * tramp-ppc.c: use the code manager to hold generated native code.
17867 Fixed the magic trampoline to just patch vtable entries.
17869 2004-02-17 Zoltan Varga <vargaz@freemail.hu>
17871 * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
17874 2004-02-16 Zoltan Varga <vargaz@freemail.hu>
17876 * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
17879 * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
17880 if we have a working __thread implementation.
17882 * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove
17883 OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
17885 2004-02-15 Zoltan Varga <vargaz@freemail.hu>
17887 * mini-x86.c: Fix compilation under gcc 2.
17889 2004-02-14 Zoltan Varga <vargaz@freemail.hu>
17891 * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
17892 contains a call to the wrapped function.
17894 * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add
17895 OP_<CALL>_IMM opcodes, and use them under X86.
17897 * mini.c (mono_jit_find_compiled_method): Fix warning.
17899 * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
17901 * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
17903 * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
17904 functionality to mini.c.
17906 * mini.c (mono_create_jump_trampoline): New function to create a jump
17907 trampoline. Return a compiled method instead of a trampoline if it
17908 exists. Add a cache for jump trampolines.
17910 * mini.c (mono_jit_find_compiled_method): New function to return a
17911 compiled method if it exists.
17913 * mini-x86.c: Call mono_create_jump_trampoline instead of
17914 mono_arch_create_jit_trampoline.
17916 * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
17917 a jump trampoline. Fixes #52092.
17919 2004-02-11 Zoltan Varga <vargaz@freemail.hu>
17921 * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
17922 which is not up-to-date. Add check_corlib_version () instead.
17924 * mini.c (mini_init): Call mono_thread_attach () so embedders do not
17927 * mini.c (mono_runtime_install_handlers): Remove check for valgrind
17928 since newer valgrind versions do not need it.
17930 * mini.c (mono_jit_compile_method_with_opt): New helper function to
17931 compile a method with a given set of optimizations.
17933 * mini.c: Compile icall wrappers on-demand instead of at startup.
17935 * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
17936 wrapper for an icall.
17938 2004-02-10 Zoltan Varga <vargaz@freemail.hu>
17940 * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
17943 * iltests.il: Add test for non-empty stack before switch instruction.
17945 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
17947 * mini.c: Add support for new stringbuilder marshalling conventions.
17949 * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
17951 2004-02-01 Martin Baulig <martin@ximian.com>
17953 * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
17954 in `ginst->mtype_argv'.
17956 2004-01-31 Miguel de Icaza <miguel@ximian.com>
17958 * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
17959 facilitate grepping.
17961 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
17963 * mini.c: fixed buglet in initobj generic implementation for references.
17965 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
17967 * Makefile.am: make the version script conditional.
17968 * jit-icalls.c: handle missing truncl().
17970 2004-01-23 Zoltan Varga <vargaz@freemail.hu>
17972 * exceptions.cs: Add more tests for double->int conversion.
17974 * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
17975 we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
17977 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
17979 * driver.c: make --verbose --version emit an error
17980 if the loaded corlib doesn't match the runtime version.
17982 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
17984 * mini-ppc.h: export ppc_patch().
17985 * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
17986 * tramp-ppc.c: call convention fixes: Linux/PPC support should be
17987 on par or better than on MacOSX.
17989 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
17991 * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
17992 mono_lookup_pinvoke_call.
17994 * mini-x86.c: Under windows, the default pinvoke calling convention is
17995 stdcall. Fixes #52834.
17997 * mini.c (optimize_branches): Add an upper bound to the number of
17998 iterations to prevent infinite loops on strange loops. Fixes #53003.
18000 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
18002 * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
18003 and ISINST. Fixes #52093.
18005 * objects.cs (test_0_vector_array_cast): New tests.
18007 2004-01-15 Zoltan Varga <vargaz@freemail.hu>
18009 * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
18010 checking in Array.Set ().
18012 * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
18015 * object.cs (test_0_multi_array_cast): New regression test.
18017 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
18019 * exceptions-ppc.c: fix build on Linux/PPC.
18021 2004-01-14 Zoltan Varga <vargaz@freemail.hu>
18023 * tramp-x86.c (x86_magic_trampoline): Disable code patching when
18024 running under valgrind.
18025 (x86_magic_trampoline): Fix build bustage.
18027 * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
18028 negative values as well. This is needed for the encoding of the line number
18029 info, since sometimes the line numbers are not in increasing order.
18031 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
18033 * cpu-pentium.md (localloc): Increase the size of the localloc
18034 instruction since it is a loop under Win32.
18036 * debug-mini.c (record_line_number): Get rid of unneccesary memory
18039 2004-01-09 Zoltan Varga <vargaz@freemail.hu>
18041 * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c
18042 tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from
18043 Max Horn (max@quendi.de). Fix file names in comments.
18045 2004-01-03 Zoltan Varga <vargaz@freemail.hu>
18047 * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
18048 avoid stack overflow.
18049 (replace_usage): Avoid uninitialized variable warnings.
18051 * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
18052 and taking the address of valuetype variables.
18054 2004-01-03 Patrik Torstensson
18056 * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
18057 for other purposes than FP later on.
18059 2004-01-02 Zoltan Varga <vargaz@freemail.hu>
18061 * mini.c (mono_method_to_ir): Prevent register allocation for arguments
18064 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
18066 * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
18068 2003-12-30 Patrik Torstensson <p@rxc.se>
18070 * mini-x86.h: Decreased number of availiable fp regs.
18071 Solves corner cases with FP spilling.
18073 2003-12-23 Patrik Torstensson <p@rxc.se>
18075 * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
18076 for floating point stack tracking / spilling on x86.
18079 * basic-float.cs: added float mul overflow test.
18081 2003-12-23 Zoltan Varga <vargaz@freemail.hu>
18083 * mini.c (mono_method_to_ir): Add workaround for bug #51126.
18085 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18087 * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
18088 supports for cond branches that overflow the immediate
18089 overflow offset. mcs can compile simple programs.
18091 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18093 * exceptions-ppc.c: exception handling support wip:
18094 finally handlers get run on exception.
18096 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
18098 * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while
18101 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18103 * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
18104 initial support for stack walking and unwinding.
18106 2003-12-18 Zoltan Varga <vargaz@freemail.hu>
18108 * driver.c (mono_main): Make corlib-out-of-sync message more
18109 descriptive. Also remove verify_corlib call.
18111 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18113 * mini.c: make CEE_NEWARR calls and other emulated opcodes
18114 not overlap with other call's arguments, too.
18116 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
18118 * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c:
18119 move to arch-specific code the choice of arch-specific
18120 intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
18121 * mini.c: ensure emulation calls will not interleave
18124 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
18126 * tramp-ppc.c, basic-calls.cs: rework trampolines so that
18127 the magic trampoline stack frame is dropped before executing
18130 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18132 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
18133 and integer to fp conversions. Added support for overflowing
18134 arguments on the stack. Reserve a couple more registers as temps.
18135 Added support for aot compilation (as output still needs to be
18138 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18140 * mini-ppc.c, basic-long.cs: fix jumps to known labels.
18141 Don't overwrite return register in some corner cases.
18143 2003-12-13 Zoltan Varga <vargaz@freemail.hu>
18145 * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
18146 static constructors when AOT compiling.
18148 * driver.c (mono_main): Call mono_check_corlib_version.
18150 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18152 * cpu-g4.md, basic.cs: fixed div target register.
18154 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18156 * mini-ppc.c, basic.cs: shl_imm fix with test.
18158 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18160 * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing
18161 structures by value. Misc fixes.
18162 * objects.cs: more tests.
18164 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
18166 * mini-ppc.c: lconv.ovf.i implemented.
18168 2003-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18171 (mini_init): don't error out if someone already called g_thread_init.
18173 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18175 * exceptions-x86.c, exceptions-ppc.c: allow the exception object
18176 to be any type per the spec. Fix abnormal memory usage when
18177 the same object is repeatedly thrown.
18179 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
18181 * mini.c: check for overruns in IL code.
18183 2003-12-09 Zoltan Varga <vargaz@freemail.hu>
18185 * TODO: Add/remove some todo entries.
18187 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
18189 * driver.c (mono_main): Call mono_verify_corlib.
18191 2003-12-07 Lluis Sanchez Gual <lluis@ximian.com>
18193 * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy.
18194 This has been moved to mini.c
18195 * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
18196 type being casted is marshalbyref it could be a proxy, so instead of
18197 emitting the type check code, emit a call to a runtime method that will
18198 perform the check by calling CanCastTo if needed.
18200 2003-12-06 Zoltan Varga <vargaz@freemail.hu>
18202 * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
18203 methods with large stack frames under Win32.
18205 2003-12-04 Zoltan Varga <vargaz@freemail.hu>
18207 * Makefile.am: Distribute regression tests.
18209 * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
18210 at the end instead of inserting each variable into the sorted list.
18212 * linear-scan.c (mono_varlist_sort): New helper function.
18214 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18216 * mini.c: ensure arguments and locals are within bounds.
18218 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18220 * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and
18223 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
18225 * mini.c (mono_cprop_copy_values): Fix crash.
18227 * aot.c: Set verbosity back to 0.
18229 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18231 * regalloc.c: complete memory leak fix by Laurent Morichetti
18234 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
18236 * driver.c (main_thread_handler): Revert the previous patch.
18238 * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
18241 * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
18242 memory from the memory pool.
18244 * driver.c (main_thread_handler): Turn on all optimizations when
18247 * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
18248 an array for better performance.
18250 * regalloc.c (mono_regstate_assign): Fix memory leak.
18252 * debug-mini.c (mono_debug_serialize_debug_info): New function to
18253 serialize the debug info.
18255 * debug-mini.c (mono_debug_add_aot_method): New function to load the
18256 debug info from the serialized representation.
18258 * aot.c: Save debug info into the generated file and load it when
18261 * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18263 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18265 * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
18266 More FP-related fixes.
18268 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18270 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
18271 and register allocation buglet. Hello world now runs.
18273 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18275 * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
18276 * tramp-ppc.c: fixed class init trampoline.
18277 * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
18279 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18281 * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
18282 mini.c: more ppc changes/fixes.
18284 2003-11-27 Zoltan Varga <vargaz@freemail.hu>
18286 * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
18287 Also optimize the case when the arguments are the same in the caller
18290 * iltests.il: Add tests for tail calls with valuetype arguments.
18292 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18294 * mini-ppc.c: fixes for struct return type.
18296 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
18298 * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18299 mono_spillvar_offset() to arch-specific code.
18301 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18303 * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
18305 2003-11-27 Zoltan Varga <vargaz@freemail.hu>
18307 * exceptions-x86.c: Fix stack space leaks.
18309 * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
18310 registers from the lmf if the method has save_lmf set.
18312 2003-11-26 Zoltan Varga <vargaz@freemail.hu>
18314 * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
18315 of icall wrappers into InvokeInDomain, since these are now per-domain.
18317 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
18319 * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
18320 make some opcode emulation and intrinsic ops enabled/disabled
18321 according to the architecture. More fixes.
18323 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18325 * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
18327 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18329 * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18330 arch-specific handling for 'this' and struct return type to
18331 arch-specific code.
18333 2003-11-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18335 * aot.c: prevent divide by zero error when reporting (it happened with
18336 Accessibility.dll).
18338 2003-11-25 Zoltan Varga <vargaz@freemail.hu>
18340 * mini.h (inst_switch): Remove unused macro.
18342 2003-11-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18345 (load_aot_module): free 'info->methods' and 'info' properly. No more
18346 "free(): invalid pointer blah" messages when you have an old aot
18349 2003-11-21 Lluis Sanchez Gual <lluis@ximian.com>
18351 * jit-icalls.c, mini.c: Added support for context static fields.
18353 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
18355 * mini.c (mono_method_blittable): Methods which set LastError are not
18356 blittable either. Fixes #51108.
18358 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18360 * mini.c: flush icache.
18361 * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
18363 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
18365 * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
18367 2003-11-17 Zoltan Varga <vargaz@freemail.hu>
18369 * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
18372 * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with
18375 * inssel.brg (CEE_MKREFANY): Fix AOT case.
18377 2003-11-16 Zoltan Varga <vargaz@freemail.hu>
18379 * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div
18380 instruction when the result is discarded.
18382 * iltests.il (test_0_div_regalloc): New regression test.
18384 * arrays.cs: Fix compilation error.
18386 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18388 * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
18389 float rules to inssel-x86.brg: sane architectures with FP registers
18390 don't need to implement these rules.
18392 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18394 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
18396 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18398 * mini.h, inssel-long32.brg: fixed endianess issues in int64
18399 implementation of 32 bit systems.
18401 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18403 * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
18404 (Jeroen Zwartepoorte).
18406 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
18408 * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
18409 the caller and the callee matches.
18411 * mini.c (mono_method_to_ir): Add comment.
18413 * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
18414 signbit is missing on some platforms.
18416 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
18418 * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
18420 * mini.c (setup_jit_tls_data): Call the new function.
18422 * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
18424 * mini-x86.c: Add experimental support for fast access to the lmf
18425 structure under NPTL/Linux 2.6.x.
18427 2003-11-06 Martin Baulig <martin@ximian.com>
18429 * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
18430 `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
18433 2003-11-02 Martin Baulig <martin@ximian.com>
18435 * mini.c (inflate_generic_field): New static method.
18436 (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
18437 generic instance and the field is declared in a generic type, call
18438 inflate_generic_field() to inflate it. Fixes gen-28.cs.
18440 2003-10-31 Zoltan Varga <vargaz@freemail.hu>
18442 * mini.h mini.c (mono_method_same_domain): New function to return
18443 whenever the caller and the callee are in the same domain.
18445 * tramp-x86.c (x86_magic_trampoline): Use the new function.
18447 2003-10-30 Martin Baulig <martin@ximian.com>
18449 * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
18450 similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
18452 (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
18453 MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS().
18455 2003-10-29 Zoltan Varga <vargaz@freemail.hu>
18457 * mini.c mini-ops.h inssel.brg: Implement undeniable exception
18460 * mini.c (sigusr1_signal_handler): Move creation of the thread abort
18461 object here, so it is in the correct appdomain etc.
18463 2003-10-27 Zoltan Varga <vargaz@freemail.hu>
18465 * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
18467 (mono_method_to_ir): Avoid freeing the type created returned from
18468 mono_type_create_from_typespec, since it is put into an internal cache
18469 by the function. Fixes pointer.exe.
18471 * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal
18472 trampolines for icalls and pinvokes as well. Fixes #33569.
18474 2003-10-24 Zoltan Varga <vargaz@freemail.hu>
18476 * mini.c: Update after appdomain changes.
18478 * mini.c (mono_jit_compile_method_inner): Allways compile native
18479 method wrappers in the root domain, since there can only be one
18480 instance of them, whose address is stored in method->info.
18482 2003-10-16 Zoltan Varga <vargaz@freemail.hu>
18484 * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
18485 environment variable. Instead detect automatically whenever running
18486 under valgrind using the magic macro RUNNING_ON_VALGRIND from
18489 2003-10-16 Miguel de Icaza <miguel@ximian.com>
18491 * trace.c, trace.h: New files that implement the new trace option
18494 * driver.c: Document new --trace options.
18496 * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
18499 - if (mono_jit_trace_calls)
18500 + if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
18502 * mini.h: prototypes.
18504 2003-10-15 Zoltan Varga <vargaz@freemail.hu>
18506 * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
18508 * mini.c inssel.brg: Implement typedefbyref opcodes.
18510 * mini.c (mono_jit_compile_method): Remove unused local variable.
18512 * mini.c (mono_jit_compile_method_inner): Ditto.
18514 2003-10-12 Zoltan Varga <vargaz@freemail.hu>
18516 * tramp-x86.c (x86_class_init_trampoline): Fix build.
18518 * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
18520 2003-10-10 Zoltan Varga <vargaz@freemail.hu>
18522 * mini.c (mono_no_aot): Remove unused global variable.
18524 * mini.c: Thread safety fixes.
18526 2003-10-09 Zoltan Varga <vargaz@freemail.hu>
18528 * mini.c (mono_create_class_init_trampoline): Add a lock around
18529 class_init_hash_addr.
18531 * arrays.cs (test_0_newarr_emulation): Add new regression test for
18534 * mini.c: Decompose the NEWARR instruction before decomposing its
18535 arguments. Fixes #30073.
18537 2003-10-08 Zoltan Varga <vargaz@freemail.hu>
18539 * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
18542 2003-10-06 Zoltan Varga <vargaz@freemail.hu>
18544 * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
18546 * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
18548 * driver.c: Add support for compiling icall wrappers to --compile.
18550 2003-10-05 Zoltan Varga <vargaz@freemail.hu>
18552 * inssel.brg: The empty value in class->interface_offsets is -1, not
18555 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
18557 * objects.cs: New test for 'is' operator on an array of interfaces.
18559 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
18561 * tramp-ppc.c: update trampoline code to support jumps
18562 and class initialization.
18564 2003-09-30 Zoltan Varga <vargaz@freemail.hu>
18566 * mini.c (mono_jit_compile_method): Fix reading of freed memory.
18568 * inssel.brg (OP_UNBOXCAST): Fix #46027.
18570 * inssel.brg (OP_UNBOX): Remove unused rule.
18572 * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
18573 region instead of one for each method. Fixes #47813.
18575 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
18577 * exceptions.cs (test_0_nested_finally): New regression test for
18578 nested exception handlers.
18580 * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
18582 * mini.c (mono_method_to_ir): Avoid inlining tail calls.
18584 * mini.c (mono_method_to_ir): Fix tail recursion in the presence of
18587 * mini.c (mono_method_check_inlining): Make the inlining limit
18588 configurable by an environment variable.
18590 * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
18592 * mini.h: Bump AOT file version.
18594 * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a
18595 token, store the image along with the token, since the token might not
18596 refer to the same image as the method containing the relocation,
18597 because of inlining.
18599 2003-09-27 Zoltan Varga <vargaz@freemail.hu>
18601 * mini.c (mono_precompile_assemblies): New function to compile
18602 all methods in all loaded assemblies.
18604 * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
18606 * regalloc.h regalloc.c (MonoRegState): Change the type of
18607 iassign and fassign to int*, since they can contain large negative
18608 values if the register is spilled. Also added some comments. Fixes
18611 * exceptions-x86.c (seh_handler): Fix handling of system exceptions
18612 under Win32. Fixes #42964.
18614 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
18616 * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
18618 * aot.c: Added support for AOT compiling methods which contain calls
18619 to wrappers. Currently, only remoting-invoke-with-check wrappers are
18622 * driver.c (compile_all_methods): Run the compilation in a thread
18623 managed by mono. Fixes #44023.
18625 * mini.c (mono_codegen): Print full method name in verbose output.
18627 * mini-x86.c (mono_arch_patch_code): Fix warning.
18629 * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
18630 jumps, since the method we are jumping to might be domain-specific.
18632 * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
18634 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
18636 * inssel.brg: string chars are unsigned.
18638 2003-09-15 Zoltan Varga <vargaz@freemail.hu>
18640 * TODO: New todo item.
18642 * tramp-x86.c (x86_class_init_trampoline): New trampoline function
18643 which calls mono_runtime_class_init and patches the call site to
18644 avoid further calls.
18645 (mono_arch_create_class_init_trampoline): New arch specific function
18646 to create a class init trampoline.
18647 (create_trampoline_code): Generalized so it can create
18648 class init trampolines as well.
18650 * mini.c (helper_sig_class_init_trampoline): New helper variable.
18651 (mono_create_class_init_trampoline): New function to create and cache
18652 class init trampolines.
18653 (mono_find_class_init_trampoline_by_addr): New function to lookup the
18654 vtable given the address of a class init trampoline. Used by the
18656 (mono_codegen): Generate a call to a trampoline instead of
18657 mono_runtime_class_init in LDSFLD[A].
18658 (mono_codegen): Add relocations for the new trampoline.
18660 * mini.h mini-x86.c aot.c: Added a new relocation type:
18661 MONO_PATCH_INFO_CLASS_INIT.
18663 * mini.h: Bump AOT version number.
18665 * aot.c: Create a copy of the loaded code instead of using the original
18666 so methods which call each other will be close in memory, improving
18669 * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
18670 patch since it breaks the regression tests.
18672 * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
18673 for the register saving instruction sequence since the
18674 frame_state_for function in glibc 2.3.2 don't seem to detect it.
18676 2003-09-14 Zoltan Varga <vargaz@freemail.hu>
18678 * TODO: Fix todo item && remove another.
18680 2003-09-12 Zoltan Varga <vargaz@freemail.hu>
18682 * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
18685 * aot.c: Moved the check for MONO_LASTAOT into the initialization
18686 function of the module.
18688 * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
18689 turning on/off the usage of AOT code. Got rid of mono_no_aot and the
18690 --no-aot command line option.
18692 2003-09-11 Zoltan Varga <vargaz@freemail.hu>
18694 * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
18695 by Bernie Solomon (bernard@ugsolutions.com).
18697 * inssel.brg: Refactor the interface offset table related code into
18698 its separate functions and add support for the AOT case.
18700 2003-09-10 Zoltan Varga <vargaz@freemail.hu>
18702 * aot.c (mono_aot_get_method_inner): Fix memory leak.
18704 * aot.c: Added mono_aot_verbose variable and made all debugging
18705 output depend on the value of this variable.
18707 * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
18708 method_label and info_label.
18710 * mini.h mini-x86.c aot.c: Added a new relocation type
18711 MONO_PATCH_INFO_IID for klass->interface_id.
18713 * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
18714 the MonoJitInfo structure.
18716 * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
18717 a non-root appdomain in shared mode.
18719 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
18721 * aot.c: make aot loader less verbose. Remove free of unused variable.
18723 2003-09-08 Zoltan Varga <vargaz@freemail.hu>
18725 * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
18727 * .cvsignore: Added *.dll.
18729 * mini.c (mono_print_tree_nl): New function callable while debugging.
18731 * mini.c (mono_print_code): Export this.
18733 * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
18736 2003-09-05 Zoltan Varga <vargaz@freemail.hu>
18738 * mini.h (MonoCompile): Added 'jit_info' field.
18740 * mini.c (mini_method_compile): Save the generated MonoJitInfo into
18741 the cfg structure, since it is needed by the AOT compiler.
18743 * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18745 * aot.c: A major rewrite. Changes include:
18746 - save exception tables for methods which have them.
18747 - cache failed lookups in aot_get_method () to avoid the (slow) calls
18748 to g_module_symbol.
18749 - reworked the file format so it is now much smaller and needs
18750 fewer relocation entries.
18752 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
18754 * aot.c (load_aot_module): Fix build bustage on platforms without
18757 2003-09-04 Martin Baulig <martin@ximian.com>
18759 * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
18761 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
18763 * TODO: Some new optimization ideas.
18765 * aot.c: Move AOT module loading logic here from mono_assembly_open.
18767 * aot.c: Save the optimization flags used to compile the code into
18770 * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
18771 support emitting domain specific code.
18773 * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is
18774 no longer domain neutral. It can be made domain neutral by compiling
18775 with --optimize=shared.
18777 * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
18778 between appdomains.
18780 * driver.c mini.h mini.c: New --no-aot debugging option which disables
18781 loading of AOT code.
18783 * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
18785 * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
18786 if there is no domain neutrality information.
18788 2003-09-01 Zoltan Varga <vargaz@freemail.hu>
18790 * aot.c (mono_compile_assembly): Emit a symbol containing the file
18791 format version into the generated library.
18793 * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
18794 callee method into the caller since one of them could be shared.
18796 * mini.h mini-x86.c aot.c: Added two new relocations so throwing
18797 system exceptions from AOT code now works.
18799 * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling
18800 method if it is domain neutral and the callee is not.
18802 * graph.c (cfg_emit_one_loop_level): Fix warning.
18804 2003-08-30 Zoltan Varga <vargaz@freemail.hu>
18806 * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
18809 2003-08-29 Zoltan Varga <vargaz@freemail.hu>
18811 * mini.c (mini_init): Call mono_marshal_init () explicitly since it
18812 is needed by code which is executed before mono_runtime_init ().
18813 Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
18815 * mini.c (mono_thread_abort): Fix warning.
18816 (mono_jit_compile_method): Call static constructor in the AOT case too.
18818 * aot.c (mono_compile_assembly): Fix warning.
18820 2003-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18822 * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
18824 2003-08-28 Zoltan Varga <vargaz@freemail.hu>
18826 * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
18828 * cpu-pentium.md: Fix the length of call opcodes so they include the
18829 ESP restoring instruction. Fixes #47968.
18831 2003-08-28 Martin Baulig <martin@ximian.com>
18833 * mini-x86.c (mono_arch_call_opcode): Added support for
18834 MONO_TYPE_GENERICINST.
18836 * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.
18838 2003-08-27 Zoltan Varga <vargaz@freemail.hu>
18840 * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
18841 a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
18843 * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
18846 2003-08-26 Martin Baulig <martin@ximian.com>
18848 * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
18849 when reporting an error, set this to the actual error location.
18850 (mono_method_to_ir): Report the correct error location if
18851 get_basic_blocks() returned an error.
18853 2003-08-25 Zoltan Varga <vargaz@freemail.hu>
18855 * mini.c (mono_type_blittable): OBJECT is not blittable.
18856 (mono_method_blittable): Methods which have marshalling descriptors
18857 are not blittable either. Fixes #47842.
18859 2003-08-22 Zoltan Varga <vargaz@freemail.hu>
18861 * driver.c mini.c: Use an environment variable instead of a global
18862 variable. Also fix the build.
18864 * mini.c (mini_init): Call g_thread_init () to make glib thread-safe.
18865 Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for
18868 * driver.c mini.c: Added --with-valgrind option to turn off some
18869 code which prevents mono from running under valgrind.
18871 * mini.c (mono_emit_call_args): Fixed warning.
18873 * mini.c (mono_emulate_opcode): Fixed warning.
18875 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18877 * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
18878 * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
18879 regalloc.c, regalloc.h: specify available registers in arch-specific
18880 code and support floats in the regallocator (patch by Laurent Morichetti
18883 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
18885 * mini.c: mono_thread_current() can be called only after
18886 mono_runtime_init(): rearrange code to not call it early on.
18888 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18890 * mini.c: allocate jump tables in the code mempools.
18892 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
18894 * mini.c, mini.h: make sure per-thread data allocated by the jit is
18897 2003-08-10 Miguel de Icaza <miguel@ximian.com>
18899 * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
18900 12 to 16. This fixes bug #47453.
18903 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18905 * mini-ppc.c: fixed indexed load and unsigned compares.
18907 2003-08-06 Lluis Sanchez Gual <lluis@ximian.com>
18909 * mini.c: reenabled installation of handler for
18910 thread abort signal.
18912 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18914 * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
18915 by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
18916 until it's fixed and actually useful.
18918 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
18920 * inssel-long32.brg: couple more opcodes implemented.
18922 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18924 * mini-sparc.c: Even more opcodes implemeted.
18926 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
18928 * mini-sparc.c: More opcodes implemented.
18930 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
18932 * mini-sparc.c: More opcodes implemented.
18934 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18936 * inssel-sparc.brg: Add some needed rules. Direct
18938 * Makefile.am: Use inssel-sparc.brg
18939 * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
18940 an assert happy for now.
18942 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
18944 * mini-sparc.c: Fixed compile errors.
18945 * exceptions-sparc.c: Same. We now produce a mono binary
18946 on sparc-linux. Yea.
18948 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
18950 * mini-sparc.c: Renamed registers. Also some macro cleanups.
18951 * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
18952 They compile, but do not work.
18954 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18956 * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
18957 mini-sparc.h, tramp-sparc.c: Beginning of sparc support
18958 from Mark Crichton <crichton@gimp.org> and Christopher Taylor
18961 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18963 * mini.c: more opcodes implemented and better support for generics.
18965 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
18967 * cpu-g4.md, cpu-pentium.md: updates for new instructions.
18968 * mini.c, mini.h: first cut at generics support: some new instructions
18969 added and changed the behaviour of some of the existing ones.
18971 2003-07-21 Miguel de Icaza <miguel@ximian.com>
18973 * mini.c: Removed definition of metadata_shared mutex here.
18975 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
18977 * mini-x86.c: make vararg calls work for instance methods.
18979 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
18981 * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
18982 returns the arguments in a separte list, now.
18984 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
18986 * aot.c, mini.c: updates for array type representation changes.
18988 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
18990 * mini.c: register function to perform jit shutdown.
18992 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18994 * mini.c: use a faster allocator if possible.
18996 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
18998 * aot.c: some cleanups and portability changes.
19000 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19002 * mini.c: use faster allocation for CEE_BOX if possible.
19004 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19006 * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
19007 Moved inlined mempcy code to its own function so that is can be
19008 reused. Added an inline memset function as well (optimized initobj).
19009 * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
19011 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19013 * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
19015 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19017 * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
19018 arch code can setup the cpu for CLR execution, if needed.
19019 We use it on x86 to set the precision of FP operations.
19021 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19023 * mini.c: disable some optimizations if we can guess they'll cost too
19024 much for a given method.
19026 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
19028 * mini.h mini.c: Rework last patch based on suggestions by Paolo.
19030 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
19031 * mini.h mini.c mini-x86.c: Added instruction level coverage
19032 info collection support.
19034 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19036 * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
19037 is now implemented in the profiling API. Get rid of a couple of
19038 unnecessary global variables.
19040 2003-06-15 Nick Drochak <ndrochak@gol.com>
19042 * basic-long.cs: tests for negative values for bigmul, and unsigned.
19043 * cpu-g4.md: add op_bigmul and op_bigmul_un
19044 * cpu_pentium.md: add op_bigmul_un
19045 * inssel-long32.brg: add rule for unsigned bigmul
19046 * mini-ops.h: define OP_BIGMUL_UN
19047 * mini-x86.c: THE BUG: handle (un)signed properly
19048 * mini.c: choose unsigned opcode if needed.
19049 This set of patches fixes bug #44291
19051 2003-06-13 Dietmar Maurer <dietmar@ximian.com>
19053 * mini.c (optimize_branches): improved to handle all kinds of
19054 conditional branches.
19056 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19058 * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
19059 don't raise exceptions.
19061 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19063 * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
19064 to arch-specific files.
19066 2003-06-09 Martin Baulig <martin@ximian.com>
19068 * Makefile.am (libs): Added $(LIBGC_LIBS).
19070 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
19072 * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
19073 and OP_ATAN (fixes bug#44293).
19075 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
19077 * Makefile.am, mini-x86.c: rename cpu description array to
19078 pentium_desc, since some compilers define the 'pentium' preprocessor
19081 2003-05-28 Dietmar Maurer <dietmar@ximian.com>
19083 * mini.c (mini_select_instructions): add explicit branch if the
19084 following block is not the false target of a conditional branch -
19085 we need this with any optimization that reorder or remove bblocks
19087 * mini.c (optimize_branches): bug fixes
19089 2003-06-06 Dietmar Maurer <dietmar@ximian.com>
19091 * mini.c (mono_method_to_ir): inline static readonly fields
19093 * ssa.c (fold_tree): start cfold support for long (very simple
19096 * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
19098 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19100 * inssel.brg: fixed memcpy (bug #44219).
19102 2003-06-05 Dick Porter <dick@ximian.com>
19104 * driver.c: Set the glib log levels to not abort if g_message
19107 g_set_prgname() has to happen before mini_init() so that the
19108 process handle gets the info.
19110 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19112 * driver.c: add intrins to the default optimizations to get wider
19115 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19117 * mini.h: some large basic blocks will overflow a 16-bit
19118 integers for symbolic registers.
19120 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
19122 * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
19123 (mono_arch_output_basic_block): fix bug 43499
19125 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19127 * mini.c: kill duplicated definition of mono_debug_format.
19129 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19131 * mini-x86.c, arrays.cs: fixed register allocation bug.
19133 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
19135 * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
19137 * mini.c (mini_get_opcode_for_method): inline IEEERemainder
19139 2003-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19142 (print_method_from_ip): also print source location information if
19145 2003-06-02 Dietmar Maurer <dietmar@ximian.com>
19147 * mini.c (mono_find_block_region): bug fix in region code
19148 (mini_method_compile): enable removing unreachable code again, but
19149 only in methods without exception clauses.
19151 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
19153 * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
19154 Implemented arglist opcode and handling of TypedReference type.
19155 Fixed x86 call convention when a structure is returned.
19156 Minimal support for calling static vararg methods.
19158 2003-05-30 Dietmar Maurer <dietmar@ximian.com>
19160 * mini.c (mini_method_compile): always remove unreachable code,
19161 because the code in them may be inconsistent (access to dead
19162 variables for example).
19164 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19166 * driver.c, debug-mini.c: warning fixes.
19168 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19170 * Makefile.am, jit.h, mini.h: install header for embedding mono.
19172 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
19174 * mini.c: thread-static fields are registered in mono_class_vtable(),
19175 so ensure the function is called before checking for them.
19177 2003-05-27 Dietmar Maurer <dietmar@ximian.com>
19179 * mini.c (optimize_branches): fix for bug 43586
19181 * jit-icalls.c (mono_llmult_ovf): added an additional check for
19182 overflow (fixes Bug #43639)
19184 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19186 * mini.c, objects.cs: allow the use of stobj for primitive types.
19188 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19190 * mini.c: be less strict about argument checking until we support
19191 running the verifier.
19193 2003-05-27 Nick Drochak <ndrochak@gol.com>
19195 * basic-long.cs: tests for (ulong)int * (ulong)int also
19196 * mini.c: use the same trick for (ulong)int * (ulong)int
19198 2003-05-27 Nick Drochak <ndrochak@gol.com>
19200 * basic-long.cs: add regression test for (long)int * (long)int
19201 * cpu-pentium.md: add op_bigmul specification
19202 * inssel-long32.brg: add OP_BIGMUL rule
19203 * mini-ops.h: add OP_BIGMUL
19204 * mini-x86.c: register allocator: handle case where src1 needs to be
19206 * mini.c: substitute special BIGMUL opcode in the tree for
19207 (long)int * (long)int
19209 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19211 * jit-icalls.c: call the type ctor on field access if needed.
19213 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19215 * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
19216 to a method (including results of ldelema, bug#43207).
19218 2003-05-26 Dietmar Maurer <dietmar@ximian.com>
19220 * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
19221 colors to show exception handler blocks.
19223 * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
19224 (fix for pinvoke7.cs).
19226 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19228 * mini.h, mini.c: ensure correct initialization order for types that
19229 require it. Prepare for lazy compilation of jit icall wrappers.
19230 Provide a name for opcode emulation to reduce unneeded mallocing.
19232 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19234 * mini-x86.c: better register restoring code and profiling
19235 support for tail calls.
19237 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19239 * mini.h, driver.c: prepare for leaf methods optimization.
19241 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19243 * mini.c: get targets of branches before converting a method.
19245 2003-05-23 Dietmar Maurer <dietmar@ximian.com>
19247 * mini.c (optimize_branches): added some experimental code (disbaled)
19249 2003-05-22 Dietmar Maurer <dietmar@ximian.com>
19251 * mini.c (optimize_branches): fix branch to branch optimization
19253 * exceptions-x86.c (mono_arch_handle_exception): bug fix.
19255 * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
19257 * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
19259 * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
19262 2003-05-21 Dietmar Maurer <dietmar@ximian.com>
19264 * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
19265 enable use of interface variables again.
19267 * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
19268 I1 to registers because there is no simply way to sign extend 8bit
19269 quantities in caller saved registers on x86.
19271 * inssel-float.brg: set costs of some rules to 2 so
19272 that monobure always select the arch. specific ones if supplied,
19273 regardless of the order we pass the files to monoburg.
19275 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19277 * mini.c, mini-x86.c: since the magic trampoline for jumps
19278 can't patch the code directly, we do it as soon as the
19279 method gets compiled.
19281 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19283 * mini-x86.c, mini.h: introduce a new patching method
19284 to support CEE_JMP and tail calls.
19285 * mini.c: obey tail.call. Don't precompile methods target
19287 * tramp-x86.c: new trampoline code to handle methods
19288 reached through a jump.
19290 2003-05-20 Dietmar Maurer <dietmar@ximian.com>
19292 * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
19293 bit values to registers
19295 2003-05-19 Dietmar Maurer <dietmar@ximian.com>
19297 * mini.c (mono_compile_get_interface_var): share interface
19298 variables if possible.
19300 2003-05-16 Martin Baulig <martin@ximian.com>
19302 * debug-mini.c (mono_init_debugger): New function to initialize
19303 the debugger. This is not in the debugger since it needs to
19304 access some of mini's internals.
19306 2003-05-16 Dietmar Maurer <dietmar@ximian.com>
19308 * mini.c (mono_method_to_ir): inlining fixes/cleanups
19310 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
19312 * mini.c, mini-opts.h, inssel.brg: inline small memcpy
19313 for value type handling.
19315 2003-05-16 Dietmar Maurer <dietmar@ximian.com>
19317 * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
19318 (mono_method_check_inlining): enable inlining of all kinds of wrappers
19320 2003-05-15 Lluis Sanchez Gual <lluis@ideary.com>
19322 * mini.c: fixed little bug in CEE_NEWOBJ case when calling
19323 the constructor through a proxy.
19325 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19327 * jit-icalls.c, inssel.brg: fixes to array element address
19330 2003-05-15 Dietmar Maurer <dietmar@ximian.com>
19332 * mini-x86.c (is_regsize_var): allocate pointer to registers
19334 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19336 * driver.c: fixed typo, added intrins to the set of optimizations
19337 tested with regressions.
19339 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19341 * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
19342 * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
19345 2003-05-14 Dietmar Maurer <dietmar@ximian.com>
19347 * inssel.brg: remove some common pop instructions without side effects
19349 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19351 * inssel-x86.brg: fixed thinko in int to double conversions.
19353 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19355 * mini.c, jit-icalls.c: added runtime thread-static variable support.
19357 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19359 * inssel-long32.brg: two more missing instructions.
19361 2003-05-13 Dietmar Maurer <dietmar@ximian.com>
19363 * mini.c (mono_emit_call_args): set the cil_code for all arguments
19364 if not already set.
19366 2003-05-12 Zoltan Varga <vargaz@freemail.hu>
19368 * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
19371 * basic-float.cs: Added tests for negative zero.
19373 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19375 * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
19376 a couple of missing operations for long casts, with test cases.
19378 2003-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19380 * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
19382 2003-05-09 Dietmar Maurer <dietmar@ximian.com>
19384 * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
19385 code size estimation.
19387 2003-05-08 Dietmar Maurer <dietmar@ximian.com>
19389 * mini.c (mono_jit_create_remoting_trampoline): make it work with
19390 abstract methods (fix bug 42542)
19392 * aot.c: add ability to handle array types
19394 2003-05-08 Zoltan Varga <vargaz@freemail.hu>
19396 * mini.c: Call the _specific versions of the object allocation
19397 functions if possible.
19399 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19401 * driver.c: call setlocale ().
19403 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19405 * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
19408 2003-05-05 Dietmar Maurer <dietmar@ximian.com>
19410 * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
19412 * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
19413 wrappers (fix bug 42122)
19415 2003-05-04 Martin Baulig <martin@ximian.com>
19417 * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
19419 * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
19420 s/mini_set_defaults/mono_set_defaults/g.
19422 2003-05-04 Martin Baulig <martin@ximian.com>
19424 * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
19426 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19428 * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
19429 (reported by Don Roberts).
19431 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
19433 * mini.c: temporarily work around two bugs for this release.
19435 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19437 * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
19438 that contains -export-dynamic and it makes using the ld script
19440 * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
19442 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19444 * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
19447 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19449 * mini.c: make sure leave calls all the needed finally blocks,
19450 even when the target jumps out of multiple exception clauses.
19452 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19454 * ldscript, Makefile.am: add linker script to reduce the number of
19455 exported symbols (should also fix the issues with libwine defining
19456 some of the same symbols in io-layer).
19458 2003-05-01 Zoltan Varga <vargaz@freemail.hu>
19460 * driver.c (mini_main): Avoid assertion when no file name is given on
19463 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
19465 * driver.c: added --version/-V command line option.
19466 Added the inline optimization in the regression tests.
19468 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19470 * mini.c, basic-calls.cs: when inlining, save arguments to locals according
19471 to the type in the method signature (fixes bug#42134).
19473 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
19475 * mini.c: when inlining, check this is not null only when needed (bug #42135).
19477 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
19479 * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
19481 2003-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19483 * driver.c: fixed bug #42100.
19485 2003-04-29 Dietmar Maurer <dietmar@ximian.com>
19487 * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
19489 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19491 * mini.c: moved most of the code required to do inlining to its own
19492 function so it can be reused. Inline also ctors if appropriate.
19494 2003-04-28 Zoltan Varga <vargaz@freemail.hu>
19496 * Makefile.am: Link with -export-dynamic so shared libs loaded by
19497 the runtime can call mono API functions.
19499 2003-04-27 Martin Baulig <martin@ximian.com>
19501 * debug-mini.c (mono_debug_init_method): Added
19502 `guint32 breakpoint_id' argument; if the method has a breakpoint,
19503 send a notification to the debugger.
19505 * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
19506 running in the Mono Debugger, just pass the breakpoint number to
19507 mono_debug_init_method().
19509 * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
19511 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
19513 * mini.c: allow some more unsafe compares.
19515 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19517 * mini-x86.c, Makefile.am: make distcheck works (partially from
19518 a patch by Richard Lee <r.h.lee@attbi.com>).
19519 * regset.c, regset.h: removed, they are unused.
19521 2003-04-25 Dick Porter <dick@ximian.com>
19523 * driver.c: Usage reports the name as 'mono' not 'mini'
19524 * exceptions-x86.c: Build and run on freebsd
19526 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19528 * Makefile.am: install the program with the 'mono' name and
19529 the library as libmono instead of mini and libmini.
19531 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19533 * driver.c: provide the APIs for the embedding interface of the old jit.
19535 2003-04-23 Dietmar Maurer <dietmar@ximian.com>
19537 * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
19539 2003-04-23 Martin Baulig <martin@ximian.com>
19541 * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
19543 * driver.c: Added `--debug' command line argument to enable
19546 2003-04-23 Martin Baulig <martin@ximian.com>
19548 * debug.[ch]: Removed. The code is now in
19549 ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
19551 * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
19554 2003-04-22 Dietmar Maurer <dietmar@ximian.com>
19556 * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
19558 2003-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19561 (mini_cleanup): moved mono_runtime_cleanup call after the call to
19562 mono_domain_finalize.
19563 (mini_method_compile): use mono_method_profile* if the the option is
19566 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
19568 * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19569 methods with their wrapper.
19571 * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19572 methods with their wrapper.
19574 * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
19577 * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
19580 * mini.c (mono_method_check_inlining): Avoid inlining synchronized
19583 2003-04-17 Dietmar Maurer <dietmar@ximian.com>
19585 * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
19587 2003-04-16 Dietmar Maurer <dietmar@ximian.com>
19589 * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
19590 of the mempool. This is slightly faster and uses less memory
19592 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19594 * mini.c: avoid O(n) allocation for variables.
19596 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19598 * mini.c: handle items on the stack after inlining methods.
19600 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19602 * mini.c: make the method->opcode optimization dependent
19603 on MONO_OPT_INSTRINS and do it lazily.
19605 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19607 * driver.c: print overall results at the end of regression run.
19609 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19611 * inssel.brg: don't overwrite symbolic registers.
19613 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19615 * inssel-x86.brg: fix conversion from long to float.
19617 2003-04-11 Dietmar Maurer <dietmar@ximian.com>
19619 * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
19621 2003-04-10 Zoltan Varga <vargaz@freemail.hu>
19623 * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
19625 * driver.c: Added --print-vtable option as in the old JIT.
19627 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19629 * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
19631 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19633 * inssel.brg, basic.cs: fixed checked conversions to byte and short.
19635 2003-04-09 Zoltan Varga <vargaz@freemail.hu>
19637 * mini.c regalloc.c regalloc.h: Fix memory leak.
19639 2003-04-09 Dietmar Maurer <dietmar@ximian.com>
19641 * aot.c (mono_aot_get_method): register all used strings
19643 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19645 * mini.c: always intern strings references with ldstr at compile time.
19647 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19649 * Makefile.am: add BUILT_SOURCES.
19651 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19653 * driver.c: give a better error message when the assembly to execute
19654 doesn't have an entry point.
19656 2003-04-07 Dietmar Maurer <dietmar@ximian.com>
19658 * Makefile.am: added hack for automake
19660 * mono/mini/mini.c (mono_save_args): always copy arguments to keep
19663 * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
19665 22003-04-07 Martin Baulig <martin@ximian.com>
19667 * Makefile.am: Added Makefile.am.
19669 * debugger-main.c: Removed, this is now in the debugger where it
19672 * mini.pc.in: Call this package `mini' for the moment.