1 2009-03-11 Mark Probst <mark.probst@gmail.com>
3 * mini-x86.c (mono_arch_output_basic_block): Use different
4 registers in case the ones we want to overwrite are used by the
5 other operand. Fixes regression in #480807.
7 2009-03-10 Zoltan Varga <vargaz@gmail.com>
9 * aot-compiler.c (mono_compile_assembly): Make the output less verbose.
11 * dwarfwriter.c (emit_line_number_info): The line number info for
12 IL code was off by one. Fix that.
14 * mini-s390x.c: Fix support for vtypes whose addresses are passed on the
17 2009-03-09 Mark Probst <mark.probst@gmail.com>
19 Contributed under the terms of the MIT/X11 license by Steven
20 Munroe <munroesj@us.ibm.com>.
22 * mini-ppc.c: Correct handling of OP_LOADI4_MEMINDEX for ppc64.
25 2009-03-08 Zoltan Varga <vargaz@gmail.com>
27 * dwarfwriter.c (token_handler): Decode method references in non-wrappers
30 2009-03-06 Zoltan Varga <vargaz@gmail.com>
32 * method-to-ir.c (mono_method_to_ir): Check for type load exceptions in
33 the delegate ctor handling code. Fixes #482638.
35 * method-to-ir.c (mini_emit_memset): Fix the handling of size '3'. Fixes
38 * iltests.il.in: Add a test.
40 * mini-darwin.c (mono_chain_signal): Remove this, it is already in
43 2009-03-05 Mark Probst <mark.probst@gmail.com>
45 * mini-trampolines.c (mono_create_jump_trampoline): If the method
46 is shared generic code, return the trampoline, even if the method
47 has already been compiled. Fixes #479763.
49 * mini.c, mini.h: New function
50 mono_jit_find_compiled_method_with_jit_info() which is the same as
51 mono_jit_find_compiled_method() but also returns the jit info.
53 2009-03-05 Mark Probst <mark.probst@gmail.com>
55 * method-to-ir.c (mono_method_to_ir): Only force the vtable var
56 for methods which actually have one. For all other methods, make
57 sure the this argument var is live the whole method.
59 * mini.c (mini_method_compile): Every shared method has a
60 this/vtable/mrgctx info. Fixes #480807.
62 2009-03-05 Mark Probst <mark.probst@gmail.com>
64 * mini-ppc.c (mono_arch_build_imt_thunk): Add support for mixed
65 generic/imt thunks where some entries branch through the vtable,
66 while other entries branch directly.
68 2009-03-05 Zoltan Varga <vargaz@gmail.com>
70 * mini-darwin.c (mono_chain_signal): Define this to fix the build.
72 * mini-windows.c: Ditto.
74 * mini.c (mono_jit_runtime_invoke): Speed up the invoking of parameterless
77 2009-03-04 Zoltan Varga <vargaz@gmail.com>
79 * dwarfwriter.c (emit_line_number_info): Add some debug code to help track
82 2009-03-04 Mark Probst <mark.probst@gmail.com>
84 * method-to-ir.c: Don't inline methods that use JMP. Fixes
87 2009-03-04 Mark Probst <mark.probst@gmail.com>
89 * exceptions-x86.c: Include debug-mini.h - fixes build.
91 2009-03-04 Martin Baulig <martin@ximian.com>
93 * debug-mini.c: Clean up the exception API and add documentation.
94 (mono_debugger_handle_exception): New public method; this is
95 called when throwing an exception or encountering an unhandled one.
96 (mono_debugger_call_exception_handler): Formerly known as
97 mono_debugger_handle_exception(); this is used to tell the
98 debugger that we're about to invoke an exception handler.
100 2009-03-04 Martin Baulig <martin@ximian.com>
102 * debug-mini.c (mono_debugger_runtime_invoke): Moved here from
103 ../metadata/mono-debug-debugger.c; save and reset exception state.
105 2009-03-02 Martin Baulig <martin@ximian.com>
107 * debug-mini.c: Moved the debugger exception handling here from
108 ../metadata/mono-debug-debugger.c.
111 (MonoDebuggerExceptionAction): New exception typedef.
114 (MonoDebuggerThreadInfo): Added `MonoObject *last_exception'.
117 (mono_amd64_throw_exception): Use the new debugger exception
121 (mono_handle_exception_internal): Don't call
122 mono_debugger_unhandled_exception() here.
124 2009-03-03 Zoltan Varga <vargaz@gmail.com>
126 * mini.c aot-compiler.c: Update after the changes to
127 mono_marshal_get_runtime_invoke ().
129 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot):
130 Virtual generic methods might not have method->slot set, work around
133 * generics.cs: Add a test.
135 2009-03-02 Geoff Norton <gnorton@novell.com>
138 * driver.c: Allow signal chaining of SIGFPE as well.
140 2009-03-02 Zoltan Varga <vargaz@gmail.com>
142 * mini-trampolines.c (mono_generic_virtual_remoting_trampoline): Update
143 this since it now receives the method not its generic context in the
146 * mini-amd64.c (mono_arch_build_imt_thunk): Add support for mixed
147 generic/imt thunks where some entries branch through the vtable, while
148 other entries branch directly.
150 * mini-x86.c (mono_arch_build_imt_thunk): Ditto.
152 * method-to-ir.c (mono_method_to_ir): Enable fast virtual generic call
153 support for interface methods as well.
155 * mini-trampolines.c: Add support for virtual generic methods in interfaces
156 using the normal IMT thunks.
158 generics.cs: Add new tests.
160 * method-to-ir.c (mono_method_to_ir): Pass the method instead of
161 the generic inst to the generic imt thunks. This fixes AOT support,
162 improves consistency with the normal IMT thunks, and makes it easier to
163 add support for interface generic virtual methods later.
165 * mini-trampolines.c (mono_magic_trampoline): Ditto.
167 2009-02-28 Zoltan Varga <vargaz@gmail.com>
169 * driver.c (mono_set_signal_chaining): New public API function to enable
170 signal chaining on POSIX platforms.
172 * mini-posix.c mini.c: Applied a variant of a patch by Simon Rowland
173 (si@lindenlab.com) to implement signal chaining. The original patch was
174 contributed under the MIT X/11 license:
175 https://bugzilla.novell.com/show_bug.cgi?id=318894
177 2009-02-27 Zoltan Varga <vargaz@gmail.com>
179 * iltests.il.in (test_0_implicit_float_to_double_conversion): Disable this
180 too until it can be made to run on amd64.
182 2009-02-26 Zoltan Varga <vargaz@gmail.com>
184 * mini-x86.c (mono_arch_get_this_arg_from_call): Avoid expensive calls
185 to get_generic_context_from_code () + get_call_info () if possible.
187 2009-02-25 Zoltan Varga <vargaz@gmail.com>
189 * mini-exceptions.c (mono_handle_native_sigsegv): Implement the
190 suspend-on-sigsegv functionality.
192 * mini.c (mini_parse_debug_options): Add a new 'suspend-on-sigsegv' option
193 to suspend when a native SIGSEGV is received. This is useful for debugging
194 crashes which don't happen under gdb, since a live process contains more
195 information than a core file.
197 * mini-exceptions.c (mono_print_thread_dump): Use
198 MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX instead of platform defines.
200 * mini-x86.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): New define.
202 * mini-amd64.h (MONO_ARCH_HAVE_SIGCTX_TO_MONOCTX): Ditto.
204 * basic-float.cs: Disable the tests which currently fail on amd64.
206 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Pass a non-null
207 value to mono_arch_patch_callsite () to fix crashes.
209 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix a warning.
211 2009-02-23 Zoltan Varga <vargaz@gmail.com>
213 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Replace the
214 nop code by patching the call address to point to the nullified class init
215 trampoline, as the former does not seem to be safe on SMP machines.
217 2009-02-23 Mark Probst <mark.probst@gmail.com>
219 * mini-ops.h: Fix the argument types for a few x86 opcodes where
222 2009-02-23 Zoltan Varga <vargaz@gmail.com>
224 * basic-float.cs basic-calls.cs: Fix warnings.
226 2009-02-22 Mark Probst <mark.probst@gmail.com>
228 * tramp-ppc.c (mono_arch_create_trampoline_code): Store the
229 correct frame pointer in the LMF. Should fix #478394.
231 2009-02-22 Zoltan Varga <vargaz@gmail.com>
233 * Makefile.am (fullaotcheck): Copy Mono.Simd.dll as well.
235 * image-writer.c: Make the binary writer less verbose.
237 2009-02-21 Zoltan Varga <vargaz@gmail.com>
239 * method-to-ir.c (mono_method_to_ir): Don't assert if string ctors
240 are called from runtime invoke wrappers.
242 2009-02-20 Zoltan Varga <vargaz@gmail.com>
244 * cpu-ppc.md (store_memindex): Increase the size of this.
246 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
248 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
250 * cpu-x86.md: Fix the sizes for long_conv_to_r_un and long_conv_to_r_un_2.
252 * mini-x86.c (mono_arch_output_basic_block): Use only 64bits of precision for
255 Last fix for of #467201.
258 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
260 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
262 * cpu-x86.md: Fix the sizes for fcall(_reg,_membase), long_conv_to_r4_2
263 and long_conv_to_r8_2:
265 Fixed part of #467201.
267 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
269 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
271 * mini-x86.c (mono_arch_output_basic_block): Adjust precision of int to float
272 conversion to 32 bits.
274 * cpu-x86.md: Increase the size of int_conv_to_r4.
276 * basic-float.cs: Add a test for this.
278 Fixed part of #467201.
280 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
282 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
284 * mini-x86.c (mono_arch_output_basic_block): Adjust precision of long to double
285 conversion to 64 bits.
287 * basic-float.cs: Add a test for this.
289 Fixed part of #467201.
291 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
293 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
295 * mini-x86.c (emit_move_return_value): Don't reduce precision of functions returning float.
296 This behavior is compatible with MS.
298 * iltest.il.in: Add a test for this.
300 Fixed part of #467201.
302 2009-02-20 Rodrigo Kumpera <rkumpera@novell.com>
304 Extracted from a patch by Kornél Pál <kornelpal@gmail.com>.
306 * mini-x86.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_R4, it must
307 change the precision of the value.
309 * cpu-x86.md: Define len for float_conv_to_r4.
311 * basic-float.cs: Add a test for this.
313 Fixed part of #467201.
315 2009-02-19 Rodrigo Kumpera <rkumpera@novell.com>
317 * mini.c: Adjust locking order to the new semantics where the loader lock
320 2009-02-18 Rodrigo Kumpera <rkumpera@novell.com>
329 * mini-trampolines.c:
342 * tramp-x86.c: Use mono_domain_code_* functions instead of using MonoDomain::code_mp directly.
344 2009-02-18 Zoltan Varga <vargaz@gmail.com>
346 * mini-codegen.c (mono_local_regalloc): Remove a ! from if (!dest_sreg1)
349 2009-02-17 Zoltan Varga <vargaz@gmail.com>
351 * aot-compiler.c (add_generic_class): Only add rgctx invoke wrappers
352 for cctors if needed.
354 2009-02-17 Mark Probst <mark.probst@gmail.com>
356 * mini-ppc.c: Fix build on Darwin.
358 2009-02-17 Zoltan Varga <vargaz@gmail.com>
360 * dwarfwriter.c (mono_dwarf_writer_emit_base_info): Use 2 as the DWARF
361 version instead of 3 as valgrind doesn't like version 3.
363 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
365 * aot-compiler.c (mono_aot_method_hash): New function to return a hash
366 usable for hashing methods.
367 (emit_extra_methods): Use the new hash to avoid putting every method in the
370 * aot-runtime.c (find_extra_method_in_amodule): Use the new hash.
372 * aot-runtime.c (can_method_ref_match_method): New function to quickly check
373 whenever a method ref could match a method.
375 * aot-runtime.c (load_image): Revert the previous change, it causes an AOT
378 * aot-runtime.c (find_extra_method_in_amodule): Add a cache for decoded
381 * aot-runtime.c (load_image): Pass our basedir to mono_assembly_load.
383 * aot-compiler.c (emit_exception_debug_info): Bump the maximum size of
386 * method-to-ir.c (mono_method_check_inlining): Avoid calling
387 mono_method_get_header () on inflated methods as an optimization.
389 2009-02-16 Zoltan Varga <vargaz@gmail.com>
391 * ssa.c (fold_ins): Fix another crash if the instruction following the
392 switch was optimized away.
394 2009-02-16 Mark Probst <mark.probst@gmail.com>
396 Contributed under the terms of the MIT/X11 license by Steven
397 Munroe <munroesj@us.ibm.com>.
399 * mini-ppc.c, mini-ppc.h: Implement TLS for PPC64.
401 2009-02-16 Zoltan Varga <vargaz@gmail.com>
403 * mini.c method-to-ir.c mini-trampolines.c aot-runtime.c: Remove locking
404 around the mono_domain_alloc calls, it is now done by the functions
407 * aot-compiler.c (compile_method): Only add wrappers referenced by
408 the method if compiling with full AOT.
409 (mono_compile_assembly): Error out if --aot=full is specified on
410 a platform where it is not supported.
412 * aot-compiler.c (emit_trampolines): Emit generic class init trampolines
415 * tramp-arm.c (mono_arch_create_generic_class_init_trampoline_full): Add
418 * aot-runtime.c (load_named_code): Handle
419 mono_arm_throw_exception_by_token.
421 * mini-arm.h: Add declaration of mono_arm_throw_exception_by_token.
423 * image-writer.c (asm_writer_emit_pointer_unaligned): Make this really
426 * Makefile.am (fullaotcheck): Exit if a test fails.
428 * aot-compiler.c (mono_compile_assembly): Use the ASM writer for full aot
430 (mono_compile_assembly): Handle the assembler failing.
432 * image-writer.c (asm_writer_emit_section_change): Handle ARM gas not
433 accepting subsections of .bss.
435 * ssa.c (visit_inst): Fix a crash if the instruction following a switch
438 * aot-compiler.c: Remove some unused includes.
440 * aot-compiler.c (MonoAotCompile): Remove some unused fields which are
441 now in MonoImageWriter.
443 * mini-x86.c (mono_arch_get_vcall_slot): Handle yet another
444 code sequence which matches a non-virtual call. Fixes #472654.
446 2009-02-15 Zoltan Varga <vargaz@gmail.com>
448 * aot-compiler.c: Use xdebug_lock ()/unlock () macros for locking in the
451 * aot-compiler.c: Make the xdebug code not depend on the AOT compiler,
452 use the image/dwarf writers directly.
454 * image-writer.c (struct _MonoImageWriter): Remove the unused 'image'
457 * aot-compiler.c (MonoAotCompile): Remove fields which are now in
460 * image-writer.h: Fix some typos.
462 * dwarfwriter.h dwarfwriter.c: New files.
464 * aot-compiler.c: Extract the DWARF info writing functionality into a
467 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add a 'out_unwind_ops'
468 argument to return unwind info.
470 * tramp-arm.c (mono_arch_create_trampoline_code_full): Ditto.
472 * aot-compiler.c: Emit unwind info for trampolines in full-aot mode.
474 * aot-runtime.c (decode_method_ref): Add a case for
475 MONO_AOT_METHODREF_WRAPPER_NAME.
477 * mini.h: Add constants for the magic numbers used in encode_method_ref ()
480 * aot-compiler.c (encode_method_ref): Use the new constants.
482 * aot-runtime.c (decode_method_ref): Ditto.
484 * aot-compiler.c (compile_method): For generic icalls, queue the wrapper to
485 be compiled, not the icall itself.
487 2009-02-14 Zoltan Varga <vargaz@gmail.com>
489 * aot-runtime.c (find_extra_method_in_amodule): Avoid decoding wrapper names
490 using decode_method_ref ().
492 * method-to-ir.c (mini_emit_ldelema_1_ins): If the array index is a long,
493 convert it to an in32. Fixes #475859.
495 * arrays.cs: Add a test.
497 2009-02-12 Zoltan Varga <vargaz@gmail.com>
499 * mini-s390x.c (mono_arch_output_basic_block): Fix the shift amounts in
502 * basic-long.cs: Add a test.
504 2009-02-12 Mark Probst <mark.probst@gmail.com>
506 * mini-x86.c, mini-x86.h: Very simple frame pointer removal. We
507 remove the frame pointer in leaf methods which don't receive any
508 arguments, don't throw exceptions and don't do dynamic stack
511 2009-02-12 Zoltan Varga <vargaz@gmail.com>
513 * mini-amd64.c (mono_arch_build_imt_thunk): Fix size calculation after
514 the fail_tramp changes. Hopefully fixes #475132.
516 2009-02-12 Rodrigo Kumpera <rkumpera@novell.com>
518 * method-to-ir.c (mono_emit_method_call_full): Use mono_metadata_signature_dup_mempool
519 instead of mono_metadata_signature_dup_full.
521 2009-02-12 Zoltan Varga <vargaz@gmail.com>
523 * ssa.c (fold_ins): Use MONO_IS_JUMP_TABLE () and MONO_JUMP_TABLE_FROM_INS ()
524 for processing jump tables. Fixes #473787.
526 2009-02-11 Mark Probst <mark.probst@gmail.com>
528 * mini-generic-sharing.c: mini_method_get_context() just calls
529 mono_method_get_context_general() now.
531 * mini.c, mini.h: Moved get_object_generic_inst(),
532 construct_object_context_for_method() and
533 mono_domain_lookup_shared_generic() to metadata/generic-sharing.c.
535 2009-02-11 Zoltan Varga <vargaz@gmail.com>
537 * branch-opts.c (mono_if_conversion): Handle the case where the merged
538 basic block fell through to its successor bblock without a branch. Fixes
541 * iltests.il.in: Add a test.
543 * aot-compiler.c (encode_method_ref): Encode methods of array types.
544 (can_encode_patch): We can now handle arrays of generic parameters and
547 * aot-runtime.c (decode_method_ref_2): Handle methods of array types.
549 * aot-compiler.c aot-runtime.c: Emit the size of specific trampolines into
550 the AOT file to avoid some #ifdefs in aot-runtime.c
552 * mini.h: Bump AOT file format version.
554 2009-02-10 Zoltan Varga <vargaz@gmail.com>
556 * Makefile.am (fullaotcheck): Make this run the tests.
558 * aot-compiler.c: Make the printing of skipped methods runtime configurable.
560 2009-02-10 Mark Probst <mark.probst@gmail.com>
562 * mini-x86.c (mono_arch_context_get_int_reg): Handle all registers
563 individually. Fixes #473482.
565 2009-02-10 Zoltan Varga <vargaz@gmail.com>
567 * mini-arm.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
569 2009-02-09 Jeffrey Stedfast <fejj@novell.com>
571 * aot-compiler.c (arch_emit_plt_entry): Fixed to compile.
572 (mono_compile_assembly): Hush compile warnings about
573 uninitialized [tmp_]outfile_name variables in the !use_bin_writer
576 2009-02-10 Zoltan Varga <vargaz@gmail.com>
578 * exceptions-arm.c (mono_arch_find_jit_info): Fix aot support.
580 * mini-arm.c: Checkin unwind related changes missing from an earlier commit.
582 * aot-compiler.c: Fix arm support.
584 * image-writer.c: Move the R_ARM constants to image-writer.h. Export a
585 img_writer_emit_unset_mode () function.
587 * unwind.c (mono_unwind_get_dwarf_data_align): New helper function.
588 (mono_unwind_get_dwarf_pc_reg): Ditto.
590 * aot-compiler.c (emit_dwarf_abbrev): Another large reorganization.
591 Move almost all platform specific code to a set of arch_ functions,
592 and document them to ease porting.
594 * aot-compiler.c (mono_xdebug_init): Fix xdebug support.
596 * image-writer.h image-writer.c: New files, extracted from aot-compiler.c.
598 * aot-compiler.c: Extract the image writing functionality into a separate
599 module to reduce the size of this file.
601 2009-02-09 Geoff Norton <gnorton@novell.com>
603 * mini-s390.c: Fix the signature of emit_sig_cookie.
605 2009-02-09 Zoltan Varga <vargaz@gmail.com>
607 * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_IMAGE.
609 * aot-runtime.c (is_shared_got_patch): Ditto.
611 * aot-runtime.c (load_named_code): Cope with the fact that
612 decode_got_entry () won't decode the patch fully if its corresponding got
613 entry is already filled.
615 * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full):
617 (mono_arch_create_monitor_exit_trampoline_full): Ditto.
619 * tramp-amd64.c (mono_arch_create_monitor_enter_trampoline_full): Use 'code'
620 as the moving pointer instead of 'buf' for consistency with the rest of the
622 (mono_arch_create_monitor_exit_trampoline): Ditto.
624 * aot-compiler.c (emit_trampolines): Add throw_pending_exception/
625 generic_class_init trampolines.
626 (add_generic_class): Extract some code from add_generic_instances () into a
627 separate function so it can be called from other places too.
628 (compile_method): Call add_generic_class () for the classes of inflated methods
629 referenced by the method.
630 (can_encode_patch): Allow references to generic parameters.
632 * aot-runtime.c: Add support the patches required by the new trampolines.
634 * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Add full-aot
637 * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline_full): Add
640 * exceptions-amd64.c (mono_arch_get_throw_pending_exception_full): Rename
641 this from get_throw_pending_exception, make the signature full aot compatible.
643 * Makefile.am (fullaotcheck): New target to run full-aot tests.
645 * method-to-ir.c (inline_method): Save/Restore cfg->ret_var_set too.
647 * exceptions.cs: Add a test.
649 2009-02-07 Zoltan Varga <vargaz@gmail.com>
651 * unwind.c (mono_unwind_frame): Eliminate the data_align_factor argument,
652 use the DWARF_DATA_ALIGN constant instead.
654 * exception-<ARCH>.c: Update after the above change.
656 * exceptions-arm.c (mono_arch_find_jit_info): Transition this to use the
659 * mini-arm.c: Enable the dwarf unwinder.
661 * mini-trampolines.c (mono_magic_trampoline): Use mono_class_get_vtable_entry ()
662 instead of mono_class_setup_vtable ().
664 2009-02-07 Zoltan Varga <vargaz@gmail.com>
666 * exceptions-x86.c (mono_arch_find_jit_info): Transition this to use the
669 * mini-x86.h: Enable the dwarf unwinder.
671 2009-02-06 Raja R Harinath <harinath@hurrynot.org>
673 Fix mcs/tests/test-7.cs
674 * mini-amd64.c (mono_arch_allocate_vars): Revert change from
677 2009-02-06 Zoltan Varga <vargaz@gmail.com>
679 * mini.c (print_jit_stats): Remove some unused statistics.
681 2009-02-05 Zoltan Varga <vargaz@gmail.com>
683 * aot-compiler.c (emit_klass_info): Update after MonoClass changes.
685 2009-02-05 Mark Probst <mark.probst@gmail.com>
687 * jit-icalls.c (mono_helper_compile_generic_method): Don't inflate
688 the method we get from mono_object_get_virtual_method() because
689 that function does it properly, now.
691 2009-02-05 Zoltan Varga <vargaz@gmail.com>
693 * unwind.c (mono_unwind_ops_encode): Handle offsets greater than 32 between
694 opcodes. Fixes #472775.
696 2009-02-05 Mark Probst <mark.probst@gmail.com>
698 * mini-exceptions.c (ves_icall_get_frame_info): Account for the
699 fact that mono_find_jit_info() sometimes returns the context
700 corresponding to the jit info in new_ctx. Fixes #472600.
702 2009-02-05 Zoltan Varga <vargaz@gmail.com>
704 * method-to-ir.c mini-hppa.c mini.c trace.c mini-s390x.c aot-compiler.c
705 mini-s390.c: Use mono_class_enum_basetype () instead of accessing
706 klass->enum_basetype directly.
708 * aot-compiler.c (emit_class_dwarf_info): Add support for all possible
711 * unwind.c: Avoid 0 sized arrays.
713 2009-02-04 Zoltan Varga <vargaz@gmail.com>
715 * mini-exceptions.c (mono_setup_altstack): Use a more reasonable altstack
716 size on systems with 64k pages. Fixes #471389.
718 2009-02-04 Mark Probst <mark.probst@gmail.com>
720 Contributed under the terms of the MIT/X11 license by Steven
721 Munroe <munroesj@us.ibm.com>.
723 * mini-ppc.c (mono_arch_output_basic_block): Generate better code
724 for LOADI4_MEMBASE. Use addi instead of addic if it's not
727 2009-02-04 Mark Probst <mark.probst@gmail.com>
729 Contributed under the terms of the MIT/X11 license by Steven
730 Munroe <munroesj@us.ibm.com>.
732 * exceptions-ppc.c (mono_arch_get_restore_context): Code size
735 * tramp-ppc.c (mono_arch_create_generic_class_init_trampoline):
736 The trampoline can be longer on PPC64.
738 2009-02-04 Mark Probst <mark.probst@gmail.com>
740 Contributed under the terms of the MIT/X11 license by Steven
741 Munroe <munroesj@us.ibm.com>.
743 * mini-ppc.c: Compiler warning fixes and trivial code
746 2009-02-04 Zoltan Varga <vargaz@gmail.com>
748 * method-to-ir.c (mono_spill_global_vars): Fix problems caused by reading
749 ins->dreg which could be a hardware register, not a vreg.
751 * aot-compiler.c (emit_method_dwarf_info): Ditto.
753 * mini.h (MonoCompile): Remove vreg_to_var_num array, it is no longer used.
754 (struct MonoMethodVar): Add a vreg field, holding the vreg of variable.
756 * mini.c (mono_compile_create_var_for_vreg): Set var->vreg.
758 * mini-amd64.c (mono_arch_output_basic_block): Avoid reading cfg->varinfo[..]
759 ->dreg, that is not the vreg we are looking for.
761 * mini-amd64.h mini-x86.h: Enable MONO_ARCH_LIVENESS_OPS again.
763 * mini-x86.c (mono_arch_output_basic_block): Add support for LIVERANGE_START/
766 * method-to-ir.c (mono_spill_global_vars): Add an assert to help track down
769 2009-02-03 Zoltan Varga <vargaz@gmail.com>
771 * mini-x86.c (mono_arch_emit_prolog): Emit unwind info.
773 * aot-compiler.c (emit_line_number_info): Fix line number emission when
776 * aot-compiler.c: Add xdebug support on x86.
778 * unwind.c: Add x86 support.
780 * aot-compiler.c (emit_exception_debug_info): Control the emission of
781 unwind info using a new MONO_ARCH_HAVE_XP_UNWIND define.
783 * mini.c (mini_method_compile): Ditto.
785 * mini-amd64.c (mono_arch_allocate_vars): Avoid setting cfg->ret->dreg to
788 * aot-compiler.c: Add emit_push_section ()/emit_pop_section () helper functions
789 which mimic .push_section/.pop_section in GAS.
791 * aot-compiler.c: Emit precise live range information for variables.
793 * mini-amd64.c (mono_arch_output_basic_block): Add OP_LIVERANGE_START/END.
795 * method-to-ir.c (mono_spill_global_vars): Compute the instructions marking
796 the live ranges of variables, and emit OP_LIVERANGE_START/END opcodes for
799 * mini-ops.h: Add OP_LIVERANGE_START/END opcodes to mark
800 the live ranges of variables.
802 * mini.h (struct MonoMethodVar): Add two fields containing the live range
803 of the variable in terms of native offsets.
805 2009-02-03 Rodrigo Kumpera <rkumpera@novell.com>
807 * arrays.cs: Test for Get/SetValue of array with negate lower bounds.
809 2009-02-02 Mark Probst <mark.probst@gmail.com>
811 Contributed under the terms of the MIT/X11 license by Steven
812 Munroe <munroesj@us.ibm.com>.
814 * exceptions-ppc.c (restore_regs_from_context): Correct operand
815 order (offset then base reg) for ppc_load_multiple_regs.
816 (emit_save_saved_regs) Correct operand order for
817 ppc_store_multiple_regs.
818 (mono_arch_get_call_filter): Correct operand order for
819 ppc_load_multiple_regs.
821 * mini-ppc.c (emit_memcpy): Fix operand order for
822 ppc_load_reg_update and ppc_store_reg_update.
823 (mono_arch_output_basic_block): Correct operand order for ppc_lha.
824 (mono_arch_emit_epilog): Correct operand order for
825 ppc_load_multiple_regs.
827 * tramp-ppc.c (mono_arch_create_trampoline_code): Correct operand
828 order for ppc_store_multiple_regs and ppc_load_multiple_regs.
830 2009-02-02 Mark Probst <mark.probst@gmail.com>
832 * cpu-ppc64.md: Fixed storer4_memindex length.
834 2009-02-02 Zoltan Varga <vargaz@gmail.com>
836 * aot-compiler.c (emit_line_number_info): Optimize the size of the emitted
839 * aot-compiler.c (emit_line_number_info): Optimize this.
841 2009-02-01 Zoltan Varga <vargaz@gmail.com>
843 * aot-compiler.c: Disassemble tokens in the IL disassembly.
845 * aot-compiler.c: Add debug info for methods without debug info by
846 emitting an IL file and having the line number info referencing that file.
848 * aot-compiler.c: Optimize the size of the generated line number info.
850 * aot-compiler.c: Emit line number info in xdebug mode.
852 * aot-compiler.c (mono_save_xdebug_info): Receive a MonoCompile instead of a
855 2009-01-31 Zoltan Varga <vargaz@gmail.com>
857 * aot-compiler.c (emit_method_dwarf_info): Emit names for local variables.
859 * driver.c (mono_main): Enable debugging support automatically if XDEBUG
862 2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
864 * basic-calls.cs: Test for the weird crash found on arm.
866 2009-01-31 Rodrigo Kumpera <rkumpera@novell.com>
868 * cpu-arm.md: Increase the size of storer8_membase_reg and
869 loadr8_membase_reg to 24 bytes to accomodate the extra add.
871 * mini-arm.c (mono_arch_output_basic_block): Under FPA, when emitting
872 OP_STORER8_MEMBASE_REG and OP_LOADR8_MEMBASE_REG, add the original
873 reg to LR otherwise we'll be loading/storing from just the offset.
875 2009-01-30 Miguel de Icaza <miguel@novell.com>
877 Question: if we are storing gint32's inside the "*native_offset",
878 should we change the signature to "gint32 *native_offset" to
879 ensure that we do not have type definition problems?
881 * mini-exceptions.c (ves_icall_get_frame_info): Cast the gint32 to
882 an int * as this is what the other function expects, causes
883 problems with Freescale's compiler that defined int32_t to be a
884 long and makes int incompatible
886 2009-01-30 Miguel de Icaza <miguel@novell.com>
888 * Rename generic-sharing.c to mini-generic-sharing.c to avoid the
889 filename conflict with bjam.
891 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
893 * cpu-arm.md: Increase the size of storer8_membase_reg to 20 bytes
894 as it might use decomposed ops.
896 2009-01-30 Zoltan Varga <vargaz@gmail.com>
898 * jit-icalls.c (mono_imul_ovf): Fix one of the literals.
900 * mini.c (mini_init): Emulate mul.ovf opcodes if MONO_ARCH_EMULATE_MUL_OVF
903 * mini-arm.h (MONO_ARCH_EMULATE_MUL_OVF): New define.
905 * mini-arm.c (mono_arch_build_imt_thunk): Rewrite this to allow large vtable
908 * mini-arm.c (mono_arch_context_get_int_reg): Adapt this to the "clever"
909 way registers are stored in MonoContext on arm.
911 * unwind.c: Rewrite the handling of the cached_info array to use hazard pointers
912 instead of locking so mono_get_cached_unwind_info () becomes signal safe.
914 * mini.c (mini_init): Emuate OP_FCONV_TO_I when using soft float.
916 * mini-arm.c (emit_load_volatile_arguments): Avoid an unneccesary assert.
918 * mini.c (mini_init): Register mono_isfinite.
920 * jit-icalls.c (mono_isfinite): New jit icall.
922 * method-to-ir.c (mono_decompose_soft_float): Add support for OP_CKFINITE.
924 * exceptions-arm.c (mono_arch_find_jit_info): When unwinding using the LMF,
925 set esp to ARMREG_FP instead of R12, since R12 stores the value of sp for
928 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
930 * exceptions-arm.c (mono_arch_find_jit_info): The frame layout on arm have
931 separate frame and stack pointers, so we must use FP to find the register
933 The FP reg is retrieved from the MonoContext::regs array.
935 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
937 * mini-arm.c (mono_arch_output_basic_block): Emit two cond ops for OP_FBGE
940 2009-01-30 Rodrigo Kumpera <rkumpera@novell.com>
942 * mini-arm.c (mono_arch_emit_setret): Emit OP_FMOVE for methods that
943 return R4 and R8 when not running under softfloat.
945 Fixes basic-calls.exe
947 2009-01-30 Zoltan Varga <vargaz@gmail.com>
949 * mini-arm.c: Implement some overflow opcodes.
951 2009-01-29 Miguel de Icaza <miguel@novell.com>
953 * ssa.c: handle another alloca.h
955 * mini-exceptions.c (mono_handle_native_sigsegv): Do not use
956 PLATFORM_WIN32 for detecting if we have sigaction. Instead use
957 MONO_ARCH_USE_SIGACTION.
959 * aot-runtime.c, mini-exceptions.c: Replace platform define with
962 * method-to-ir.c (mono_method_to_ir): Type cast fix on some platforms.
964 * mini-ppc.h (MONO_ARCH_USE_SIGACTION): Do not define this for all
965 PPC targets as sigaction does not exist on all platforms, define
966 this on a per-platform basis.
968 Instead of erroring out if the platform is not defined, include
969 mini-ppc-os.h, and expect that the OS specific setting provides
970 the required information.
972 2009-01-30 Zoltan Varga <vargaz@gmail.com>
974 * aot-compiler.c: Fix --enable-minimal=aot.
976 2009-01-30 Zoltan Varga <vargaz@gmail.com>
978 * exceptions-arm.c (mono_arch_get_throw_exception_generic): Fix the
981 2009-01-29 Zoltan Varga <vargaz@gmail.com>
983 * exceptions-arm.c: Fix warnings.
985 * tramp-arm.c aot-compiler.c unwind.h unwind.c: Implement xdebug support for
988 * mini-x86.c: Fix --enable-minimal=jit build.
990 * mini.c: Really fix --enable-minimal=jit build.
992 * mini.c (construct_object_context_for_method): Move this outside
993 the DISABLE_JIT block to fix the --enable-minimal=jit build.
995 "Backported" of r124984 from 2.0 branch.
997 * aot-compiler.c aot-runtime.c: Add full-aot support delegate BeginInvoke/EndInvoke.
999 "Backport" of r124977 + r124978 from 2.0 branch.
1001 * exceptions-arm.c (mono_arm_throw_exception_by_token): New helper function
1002 to avoid calling mono_exception_from_token () from the throw trampoline.
1003 (mono_arch_get_throw_exception_generic): call throw_exception_by_token
1004 for throwing corlib exceptions, this fixes full-aot support for corlib
1007 * aot-compiler.c (compile_method): Make a copy of cfg->locals to fix the build.
1009 2009-01-29 Miguel de Icaza <miguel@novell.com>
1011 * mini-darwin.c, mini-windows.c, mini-posix.c: Commit the first
1012 part of the changes to split the code in mini into operating
1013 system specific files.
1015 This patch was done by copying mini.c to the respective files to
1016 preserve SVN history.
1018 2009-01-29 Zoltan Varga <vargaz@gmail.com>
1020 * aot-compiler.c (emit_method_dwarf_info): Add minimal support for locals.
1022 2009-01-28 Zoltan Varga <vargaz@gmail.com>
1024 * method-to-ir.c (mono_method_to_ir): Avoid generic sharing for calls made to
1025 remoting-invoke-with-check wrappers of shared methods.
1027 * mini.c (print_jit_stats): Print out major gc count/time for libgc too.
1029 2009-01-27 Mark Probst <mark.probst@gmail.com>
1031 * method-to-ir.c (emit_stloc_ir): Only apply the reg-reg move
1032 optimization if the top of stack is the last instruction in the
1033 bblock. Otherwise it might have been used after its definition.
1036 2009-01-27 Zoltan Varga <vargaz@gmail.com>
1038 * mini-trampolines.c (mono_magic_trampoline): Print out the caller
1039 method as well when get_vcall_slot () fails to match a code sequence.
1041 * mini-arm.c: Fix the android build, which doesn't have
1044 2009-01-26 Zoltan Varga <vargaz@gmail.com>
1046 * mini-s390x.c: Remove a stray declaration of emit_sig_cookie () to fix
1049 2009-01-26 Rodrigo Kumpera <rkumpera@novell.com>
1051 * unwind.c (mono_unwind_cleanup): Don't crash if cached_info is NULL.
1053 2009-01-26 Zoltan Varga <vargaz@gmail.com>
1055 * mini.c (mini_method_compile): Save the unwind info generated by the JIT
1056 and put its id into jinfo->used_regs. This is only used on amd64,
1057 which is currently the only platform generating unwind info.
1059 * exceptions-amd64.c: Instead of unwinding based on a register mask, use
1060 the dwarf unwinder. This is required to correctly handle async exceptions
1061 like thread abort and stack overflows, which can happen while a method
1062 is in the middle of its prolog or epilog.
1064 * aot-runtime.c (mono_aot_get_unwind_info): New helper function to obtain
1065 the unwind info belonging to an AOTed method.
1067 * aot-compiler.c aot-runtime.c: Save/Load the unwind info emitted by the JIT
1068 into cfg->unwind_ops.
1070 * unwind.c (mono_unwind_frame): Use <= instead of < for the loop exit check.
1072 * mini.c (mini_init): Call mono_unwind_init ().
1073 (mini_cleanup): Call mono_unwind_cleanup ().
1075 * unwind.c: Add functions for managing a set of unwind info entries, allowing
1076 unwind info to be shared between methods.
1078 * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info for the registers
1081 * exceptions-amd64.c (mono_arch_exceptions_init): Call
1082 get_throw_pending_exception () to avoid initialization races.
1084 * mini-exceptions.c (mono_exceptions_init): Call an arch specific
1085 mono_arch_exceptions_init () function.
1087 * mini.h (MONO_INST_NEW): Remove duplicate setting of cil_code.
1089 2009-01-25 Zoltan Varga <vargaz@gmail.com>
1091 * mini.c (mono_get_domain_intrinsic): New helper function.
1092 (mono_get_thread_intrinsic): Ditto.
1094 * mini-arm.c mini-ia64.c: Use the new helper functions.
1096 * method-to-ir.c (mono_method_to_ir): Fix the comment for
1097 the last constrained_call change, since it is needed in the non-AOT
1100 * mini-arm.c: Implement OP_TLS_GET on arm eabi linux.
1102 * mini-arm.c (mono_arch_emit_prolog): Add an inlined version of
1103 mono_get_lmf_addr () on arm eabi linux.
1105 2009-01-24 Zoltan Varga <vargaz@gmail.com>
1107 * mini-amd64.c (mono_arch_get_vcall_slot): Handle yet another
1108 code sequence which matches a non-virtual call.
1110 2009-01-23 Mark Probst <mark.probst@gmail.com>
1112 * mini-ppc.c (mono_arch_context_get_int_reg): Allow access to the
1115 2009-01-23 Zoltan Varga <vargaz@gmail.com>
1117 * aot-compiler.c aot-runtime.c: Treat delegate-invoke wrappers similarly to
1118 runtime-invoke wrappers, since they are also shared based on signature.
1120 2009-01-22 Mark Probst <mark.probst@gmail.com>
1122 * mini-exceptions.c (ves_icall_get_frame_info): Fetch the generic
1123 info from the (correct) context.
1125 2009-01-22 Zoltan Varga <vargaz@gmail.com>
1127 * unwind.c (mono_unwind_frame): Remove a stray g_free ().
1129 * unwind.c (mono_unwind_frame): New function to unwind through a frame
1130 using dwarf unwinding info. Not yet used.
1132 * mini.c (mini_init): When using xdebug, disable freeing of domains.
1134 2009-01-21 Mark Probst <mark.probst@gmail.com>
1136 * mini-ppc.c (mono_arch_delegate_invoke_impl): Return function
1139 * mini-trampolines.c (mono_delegate_trampoline): Remove the PPC64
1140 special case and handle mono_arch_delegate_invoke_impl() returning
1141 function descriptors.
1143 * tramp-ppc.c (mono_arch_create_trampoline_code): Delegate
1144 trampolines return function descriptors, too.
1146 2009-01-21 Zoltan Varga <vargaz@gmail.com>
1148 * method-to-ir.c (handle_alloc): Avoid generic instances in the
1149 out_of_line optimization.
1151 2009-01-21 Martin Baulig <martin@ximian.com>
1154 (MonoCompile): Added `disable_deadce_vars' to disable removing
1158 (mini_method_compile): Set `cfg->disable_deadce_vars' when running
1159 inside the debugger.
1161 * liveness.c (mono_analyze_liveness): Don't remove any unused
1162 variables if `cfg->disable_deadce_vars' is set.
1164 2009-01-21 Mark Probst <mark.probst@gmail.com>
1166 * method-to-ir.c: Only apply exception constructor optimization if
1167 the the method actually belongs to an exception class. Fixes
1170 2009-01-21 Zoltan Varga <vargaz@gmail.com>
1172 * mini-trampolines.c (mono_delegate_trampoline): Put back the previous
1173 change inside a #ifdef __mono_ppc64__.
1175 * aot-compiler.c (compile_method): Remove the previous limitation.
1177 * method-to-ir.c (method-to-ir.c): Add support for the constrained prefix
1178 on type variables in AOTed code.
1180 * aot-compiler.c (compile_method): Skip generic methods having type
1181 constraints on their generic parameters.
1183 * aot-compiler.c (compile_method): Check for methods which cannot be
1184 encoded inside RGCTX_FETCH patches as well.
1186 * mini-exceptions.c (mono_print_thread_dump): Fix the windows
1189 2009-01-20 Mark Probst <mark.probst@gmail.com>
1191 * method-to-ir.c: Force the vtable variable in shared generic code
1192 for the case that they might show up on a stack trace where they
1195 * mini-exceptions.c: Save and use generic sharing info as well as
1196 IP in stack traces to resolve shared generic instantiations.
1198 2009-01-20 Zoltan Varga <vargaz@gmail.com>
1200 * mini-trampolines.c (mono_delegate_trampoline): Revert the change which
1201 added a mono_get_addr_from_ftnptr () as it breaks the ia64 build.
1203 2009-01-20 Mark Probst <mark.probst@gmail.com>
1205 * method-to-ir.c: Do generic sharing for array constructors.
1207 2009-01-20 Rodrigo Kumpera <rkumpera@novell.com>
1209 * mini-exceptions.c (mono_print_thread_dump): Add information
1210 about the thread state using wapi_current_thread_desc.
1212 2009-01-19 Rodrigo Kumpera <rkumpera@novell.com>
1214 * basic-simd.cs: Tests for the new constructors.
1216 2009-01-19 Rodrigo Kumpera <rkumpera@novell.com>
1218 * mini-ops.h: Added OP_EXPAND_*
1222 * mini-x86.c (mono_arch_output_basic_block): Same.
1224 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for single element constructors.
1226 2009-01-19 Zoltan Varga <vargaz@gmail.com>
1228 * iltests.il.in: Add a test for #467385.
1230 2009-01-18 Rodrigo Kumpera <rkumpera@novell.com>
1232 * mini.c (mini_thread_cleanup): Don't cleanup TLS storage if the
1233 thread been cleaned up is not the same currently in execution.
1235 Fixes appdomain-unload crashes on windows, osx and linux variants
1236 without the __thread keyword.
1238 2009-01-18 Zoltan Varga <vargaz@gmail.com>
1240 * mini-arm.c (mono_arch_flush_icache): Applied patch from Koushik Dutta
1241 (koush@koushikdutta.com). Implement this for android.
1243 * helpers.c (mono_disassemble_code): Avoid assembler errors if the id
1244 begins with a digit.
1246 * method-to-ir.c: Call mono_gc_get_write_barrier () instead of
1247 mono_marshal_get_write_barrier ().
1249 2009-01-17 Rodrigo Kumpera <rkumpera@novell.com>
1251 * decompose.c (mono_decompose_vtype_opts): Fix the decomposition
1252 of OP_VCALL_* ops for 8 bytes vtypes on 32 bits archs and platorms
1253 that pass them on a register pair.
1255 This affects windows, OSX and FreeBSD. The mono/tests/handleref.exe
1256 test was crashing due to that.
1258 Fri Jan 16 15:21:21 CET 2009 Paolo Molaro <lupus@ximian.com>
1260 * exceptions-ppc.c: tweaks from malc (OV-Soft) to fix the size of the
1261 trampoline code. Include ucontext.h only if available.
1263 2009-01-15 Mark Probst <mark.probst@gmail.com>
1265 * mini.c: mono_domain_lookup_shared_generic() takes an open method
1266 and doesn't check whether it's sharable, like it was before
1267 removing the shared generics hash. This brings IronPython
1268 performance back to what it was before that change.
1270 2009-01-14 Mark Probst <mark.probst@gmail.com>
1272 * method-to-ir.c: Handle delegate invocation optimization earlier,
1273 otherwise it would be handled (much more slowly) by the
1274 final/sealed optimization.
1276 2009-01-13 Zoltan Varga <vargaz@gmail.com>
1278 * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes when the current thread or
1279 domain is not set. Fixes #465864.
1281 2009-01-12 Mark Probst <mark.probst@gmail.com>
1283 * method-to-ir.c: Don't stop sharing of generic methods with catch
1284 clauses - we already handle those.
1286 2009-01-12 Mark Probst <mark.probst@gmail.com>
1288 * mini.c, mini.h: lookup_generic_method() is now
1289 mono_domain_lookup_shared_generic() and uses the jit_code_hash,
1290 making the shared_generics_hash obsolete.
1292 2009-01-12 Mark Probst <mark.probst@gmail.com>
1294 * mini-ppc.c, exceptions-ppc.c, cpu-ppc.md, cpu-ppc64.md: Don't
1295 use the red zone. Make room on the stack first and then use it,
1296 not the other way around.
1298 2009-01-12 Zoltan Varga <vargaz@gmail.com>
1300 * mini.c (mini_init): Call mono_xdebug_init ().
1302 * aot-compiler.c (mono_xdebug_init): Make this non-static.
1304 2009-01-11 Zoltan Varga <vargaz@gmail.com>
1306 * TestDriver.cs: Add an --iter argument to run tests multiple times.
1308 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Emit debug info for
1311 * aot-compiler.c (mono_save_trampoline_xdebug_info): New function to emit
1312 debug+unwind info for trampolines.
1314 * mini.c (mono_create_unwind_op): New helper function.
1316 * unwind.h: Add macros for emitting unwind ops without a MonoCompile.
1318 2009-01-10 Zoltan Varga <vargaz@gmail.com>
1320 * aot-compiler.c: Fix the build.
1322 2009-01-09 Zoltan Varga <vargaz@gmail.com>
1324 * Makefile.am: Update dtrace-prelink.sh location.
1326 2009-01-08 Zoltan Varga <vargaz@gmail.com>
1328 * method-to-ir.c (mono_method_to_ir): Fix the check for the mscorlib ldstr
1329 optimization. Fixes #464520.
1331 2009-01-07 Bill Holmes <billholmes54@gmail.com>
1333 * mini-amd64.c : Adding code to save/restore non-volatile registers
1336 * exceptions-amd64.c : Adding code to save/restore non-volatile
1337 registers on Winx64.
1339 Contributed under MIT/X11 license.
1341 2009-01-07 Zoltan Varga <vargaz@gmail.com>
1343 * mini-arm.c (mono_arch_flush_icache): Use __GNUC_PREREQ instead of checking
1344 __GNUC_MINOR__ which can break when the major version changes.
1346 2009-01-07 Rodrigo Kumpera <rkumpera@novell.com>
1348 * basic-simd.cs: Add tests for usage of the sizeof opcode.
1350 2009-01-07 Geoff Norton <gnorton@novell.com>
1352 * helpers.c: Allow mono -v -v -v to work on darwin.
1354 2009-01-05 Bill Holmes <billholmes54@gmail.com>
1356 * mini-amd64.c (mono_arch_get_vcall_slot) : Handle an additional instruction
1359 Contributed under MIT/X11 license.
1361 2009-01-05 Zoltan Varga <vargaz@gmail.com>
1363 * mini.c (mono_allocate_stack_slots_full2): Use mono_class_from_mono_type
1364 instead of directly accessing type->data.klass. Fixes #462016.
1365 (mono_allocate_stack_slots_full): Ditto.
1367 * mini-arm.c (mono_arch_flush_icache): Applied patch from Riku Voipio
1368 <novell@kos.to>. Fix cache flush on kernels without OLDABI compat option.
1370 * aot-compiler.c (emit_plt): Fix ARM build.
1372 2009-01-04 Zoltan Varga <vargaz@gmail.com>
1374 * branch-opts.c (mono_if_conversion): Optimize this using ins->prev.
1376 * branch-opts.c (mono_if_conversion): Fix an assert introduced by the last
1379 * branch-opts.c (mono_if_conversion): Use branch->inst_true_bb/inst_false_bb
1380 instead of bblock->out_bb [0]/[1], the two might not be the same. Fixes
1383 * iltests.il.in: Add a regression test.
1385 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1387 * mini-codegen.c (mono_print_ins_index): Pretty print XPHI and VPHI.
1389 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1391 * basic-simd.cs: Add a regression test for #462457.
1393 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1395 * mini-ops.h: Add a definition of XPHI.
1397 * mini.h (MONO_IS_PHI): Make is aware of simd instrincs.
1399 * ssa.c (op_phi_to_move): Handle XPHI.
1401 * ssa.c (mono_ssa_compute): Generate a XPHI for simd intrinsics instead of VPHI.
1405 2009-01-04 Rodrigo Kumpera <rkumpera@novell.com>
1407 * method-to-ir.c (mono_emit_rgctx_calli): Fix a warning.
1409 2008-12-31 Geoff Norton <gnorton@novell.com>
1411 * mini-ppc.c: The prolog size allocated can be too small for darwin
1412 ppc32 under certain circumstances. Also fix a small logic bug.
1414 2008-12-29 Zoltan Varga <vargaz@gmail.com>
1416 * mini.c (mono_jit_compile_method_inner): Avoid holding the domain lock
1417 while loading AOT methods.
1419 * mini-exceptions.c: Check jit_tls->class_cast_from instead of class_cast_to
1420 since only the former is nulled out after a successful cast. This prevents
1421 crashes with rethrown exceptions when using --debug=casts.
1423 2008-12-24 Mark Probst <mark.probst@gmail.com>
1425 * mini.h: New macro for checking whether a method is final,
1426 i.e. whether the method or its class is marked final.
1428 * method-to-ir.c: Use the new macro for all final-checks
1429 consistently. Fixes the crash in the System.ServiceModel tests.
1431 2008-12-23 Mark Probst <mark.probst@gmail.com>
1433 * mini-exceptions.c (get_exception_catch_class): Corrected another
1434 overly strict assertion.
1436 2008-12-23 Mark Probst <mark.probst@gmail.com>
1438 * mini-ppc.c (mono_arch_build_imt_thunk): Save and restore r11.
1439 Clobbering it is not allowed because the caller might use it as
1440 the vtable register in the interface call.
1442 2008-12-19 Mark Probst <mark.probst@gmail.com>
1444 * mini-exceptions.c (get_exception_catch_class): Corrected an
1445 overly strict assertion.
1447 2008-12-18 Mark Mason <mmason@upwardaccess.com>
1449 * method-to-ir.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P or sizeof(gpointer) when appropriate.
1451 * mini.h: Move typedef to mgreg_t up above include of mini-arch.h
1453 * local-propogation.c: use SIZEOF_REGISTER instead of SIZEOF_VOID_P when appropriate
1455 * cpu-mips.md: correct lengths for certain long_ opcodes.
1457 * mini-mips.h: Only emulate long operations when SIZEOF_REGISTER==4. Add missing func decl.
1459 * 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().
1461 2008-12-17 Mark Mason <mmason@upwardaccess.com>
1463 * exceptions-mips.c (mono_arch_find_jit_info): decode sd instructions as well when looking for registers.
1465 2008-12-17 Mark Mason <mmason@upwardaccess.com>
1467 * mini-mips.c (mono_arch_output_basic_block): OP_JUMP_TABLE stores patch type in inst_c1, not inst_i1.
1469 2008-12-16 Rodrigo Kumpera <rkumpera@novell.com>
1471 * branch-opts.c (remove_block_if_useless): Even if BB0 falls through, don't add a br to the
1474 2008-12-16 Mark Mason <mmason@upwardaccess.com>
1476 * 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
1478 * 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)
1480 2008-12-15 Mark Mason <mmason@upwardaccess.com>
1482 * trace.c (mono_trace_enter_method): correctly handle arguments smaller than the stack slot size on big endian systems.
1484 2008-12-14 Zoltan Varga <vargaz@gmail.com>
1486 * liveness.c (mono_analyze_liveness): Avoid eliminating the 'this' var in
1487 gshared code. Fixes #458947.
1489 * generics.cs: Add a test.
1491 2008-12-12 Mark Mason <mmason@upwardaccess.com>
1493 * method-to-ir.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1495 * mini-mips.c: first pass n32 code generation.
1497 * mini-mips.h: datatypes and defines for n32 support.
1499 * exceptions-mips.c: first pass n32 code generation.
1501 * tramp-mips.c: first pass n32 code generation.
1503 * cpu-mips.md: add long_ opcodes.
1505 2008-12-12 Mark Mason <mmason@upwardaccess.com>
1507 * liveness.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1509 * cfold.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1511 * local-propogation.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1513 * regalloc2.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1515 * mini.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1517 * mini-codegen.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1519 * ssa.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1521 * decompose.c: replace SIZEOF_VOID_P with SIZEOF_REGISTER where needed.
1523 * helpers.c: for mips/n32, don't pass -mips32 to objdump
1525 2008-12-12 Zoltan Varga <vargaz@gmail.com>
1527 * mini-arm.c tramp-arm.c: Fix calls to mono_arch_flush_icache.
1529 2008-12-12 Andrés G. Aragoneses <aaragoneses@novell.com>
1531 * driver.c: Sync --help-trace with man page (EXPR,EXPR).
1533 2008-12-12 Mark Probst <mark.probst@gmail.com>
1535 * mini-ppc.h, exceptions-ppc.c, tramp-ppc.c: Create function
1536 descriptors for helper functions directly in front of the code.
1538 2008-12-11 Mark Probst <mark.probst@gmail.com>
1540 * method-to-ir.c: Removed an unnecessary assertion.
1542 2008-12-10 Zoltan Varga <vargaz@gmail.com>
1544 * method-to-ir.c: Merge SGEN changes from the old JIT.
1546 2008-12-10 Zoltan Varga <vargaz@gmail.com>
1548 * driver.c (compile_all_methods_thread_main): Handle failure of
1551 2008-12-10 Mark Probst <mark.probst@gmail.com>
1553 * mini-ppc.c: Merged with mini-ppc64.c.
1555 * mini-ppc.h: Define PPC_MINIMAL_PARAM_AREA_SIZE on all targets.
1557 * Makefile.am: Use the same sources for PPC and PPC64.
1559 * mini-ppc64.c: Removed.
1561 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
1563 * branch-opts.c (remove_block_if_useless): Extract fall through detection
1564 code to mono_bb_is_fall_through.
1566 * branch-opts.c (mono_remove_critical_edges): Same.
1568 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
1570 * ssa.c (fold_ins): branch opt can kill dummy switch ops so we can't
1571 expect that an OP_BR_REG will be there.
1573 2008-12-09 Rodrigo Kumpera <rkumpera@novell.com>
1575 * branch-opts.c (remove_block_if_useless): Use MONO_IS_BRANCH_OP instead of checking
1576 for the many branch ops. The original check miss OP_BR_REG.
1580 2008-12-09 Mark Mason <mmason@upwardaccess.com>
1582 * mini-mips.h mini-mips.c exceptions-mips.c tramp-mips.c: first round of changes necessary to eventually support n32.
1584 2008-12-09 Zoltan Varga <vargaz@gmail.com>
1586 * aot-runtime.c (load_method): Avoid calling decode_exception_debug_info
1587 while holding the aot lock.
1589 2008-12-09 Mark Mason <mmason@upwardaccess.com>
1591 * mini-mips.c (mono_arch_output_basic_block): use mfc1/lwc1 instead of mfc1d/ldc1
1593 2008-12-09 Bill Holmes <billholmes54@gmail.com>
1595 * mini.c (mini_cleanup) : Adding a call to cominterop_release_all_rcws
1596 to release all runtime callable wrappers held by the runtime.
1598 Contributed under MIT/X11 license.
1600 2008-12-09 Bill Holmes <billholmes54@gmail.com>
1602 * tramp-amd64.c (mono_arch_create_trampoline_code_full) : Increase the code size for
1605 Contributed under MIT/X11 license.
1607 2008-12-09 Zoltan Varga <vargaz@gmail.com>
1609 * aot-runtime.c (decode_exception_debug_info): Acquire the domain
1610 lock when calling mono_domain_alloc (). Hopefully fixes #415608.
1612 2008-12-09 Mark Mason <mmason@upwardaccess.com>
1614 * cpu-mips.md: fix ckfinite length
1616 * mini-mips.c: at least recognize n32 ABI when used (not yet supported)
1617 (mono_arch_lowering_pass): cleanup, rearrange for clarity
1618 (mono_arch_output_basic_block): implement OP_CKFINITE, add more asserts
1620 2008-12-08 Mark Mason <mmason@upwardaccess.com>
1622 * exceptions-mips.c (mono_arch_find_jit_info): init new_ctx with ctx, dont' call setup_context.
1624 2008-12-08 Geoff Norton <gnorton@novell.com>
1626 * tramp-amd64.c: r120895 stores RAX, so we need to increase the window
1627 size by 8 bytes as well.
1629 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1631 * basic-simd.cs: Fix method names for Vector16b.
1633 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1635 * basic-simd.cs: Fix method names for Vector16sb.
1637 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1639 * basic-simd.cs: Fix method names for Vector8us.
1641 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1643 * basic-simd.cs: Fix method names for Vector8s.
1645 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1647 * basic-simd.cs: Fix method names for Vector4ui.
1649 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1651 * basic-simd.cs: Fix method names for Vector2l.
1653 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1655 * basic-simd.cs: Fix method names for Vector2d.
1657 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1659 * simd-intrinsics.c (mono_emit_simd_intrinsics): Add support for intrinsics
1660 that are extension methods.
1662 2008-12-08 Rodrigo Kumpera <rkumpera@novell.com>
1664 * basic-simd.cs: Fix method names for Vector4f.
1666 2008-12-08 Zoltan Varga <vargaz@gmail.com>
1668 * mini-exceptions.c (mono_print_thread_dump): Mark threadpool threads
1669 as such. Fixes #456669.
1671 2008-12-07 Mark Mason <mmason@upwardaccess.com>
1673 * mini-mips.c (mono_arch_emit_call): narrow float arguments when passing as args.
1675 2008-12-07 Mark Mason <mmason@upwardaccess.com>
1677 * mini-mips.c (mono_arch_lowering_pass): don't handle OP_ICONV_TO_R* or OP_R*CONST
1678 (mono_arch_emit_setret): use OP_MIPS_CVTSD to return SP floats
1679 (mono_arch_output_basic_block): simplify FP load/store, handle OP_MIPS_FBLT_UN
1680 (mips_adjust_stackframe): handle FP spills
1682 * mini-ops.h: add mips_mtc1_s2
1684 * cpu-mips.md: add mips_mtc1_s2
1686 2008-12-07 Zoltan Varga <vargaz@gmail.com>
1688 * unwind.c: New file, move the unwind info encoding functions here from
1689 aot-compiler.c, so they could be used at runtime too.
1691 2008-12-05 Mark Mason <mmason@upwardaccess.com>
1693 * mini-mips.c (mono_arch_lowering_pass): handle OP_IMUL_IMM as well
1694 (mono_arch_output_basic_block): fix OP_LOCALLOC code generation
1696 2008-12-05 Mark Mason <mmason@upwardaccess.com>
1698 * mini-mips.c: cleanup warnings
1699 (mono_arch_lowering_pass): handle OP_LOCALLOC_IMM
1700 (mips_adjust_stackframe): handle case of taking the address of stack locals
1702 2008-12-05 Zoltan Varga <vargaz@gmail.com>
1704 * aot-compiler.c: Implement a few functions missing from the asm writer.
1705 (emit_method_code): Only write symbols for methods when using the bin
1706 writer, since the assembler can't deal with the characters in our method
1709 * aot-compiler.c (is_plt_patch): ICALL_ADDR is also a plt patch.
1711 * method-to-ir.c (mono_method_to_ir): Transform aotconst+calli into a direct
1714 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Rework the code
1715 a bit to also restore %rax.
1717 2008-12-05 Mark Probst <mark.probst@gmail.com>
1719 * mini-ppc.c: Some simple merges from mini-ppc64.c.
1721 2008-12-05 Zoltan Varga <vargaz@gmail.com>
1723 * ssa.c (mono_ssa_compute): Only add an implicit reference at start for
1726 2008-12-05 Mark Probst <mark.probst@gmail.com>
1728 * exceptions-ppc.c: Merged with exceptions-ppc64.c.
1730 * mini-ppc.c, mini-ppc.h: Remove PPC_STACK_ALIGNMENT and use
1731 MONO_ARCH_FRAME_ALIGNMENT. Struct for PPC64 function descriptors.
1733 * exceptions-ppc64.c: Removed.
1735 * Makefile.am: Use exceptions-ppc.c instead of exceptions-ppc64.c.
1737 2008-12-05 Mark Probst <mark.probst@gmail.com>
1739 * tramp-ppc.c, mini-ppc.c, mini-ppc.h: Merged tramp-ppc.c with
1742 * Makefile.am: Use tramp-ppc.c instead of tramp-ppc64.c.
1744 * tramp-ppc64.c: Removed.
1746 2008-12-05 Zoltan Varga <vargaz@gmail.com>
1748 * aot-compiler.c (add_generic_instances): Skip non-generic classes in
1751 2008-12-05 Mark Probst <mark.probst@gmail.com>
1753 * mini-ppc.h: Merged mini-ppc64.h with mini-ppc.h.
1755 * exceptions-ppc64.c, tramp-ppc64.c, mini-arch.h, Makefile.am: Use
1756 mini-ppc.h instead of mini-ppc64.h.
1758 * mini-ppc64.h: Removed.
1760 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1762 * mini-mips.c: introduce USE_LDC_SDC: use ldc1/sdc1 to load/store doubles, disabled by default
1764 * mini-mips.c (mono_arch_emit_outarg_vt): fix offset calculation for memcpy in structure passing.
1766 2008-12-05 Mark Probst <mark.probst@gmail.com>
1768 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c:
1769 Removed FIRST/LAST_[GF]REG macros, to make merging PPC64 with PPC
1772 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1774 * basic-simd.cs: Tests for operator == and != on Vector8us and Vector16b.
1776 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1778 * simd-intrinsics.c: Add support for operator == and != to Vector8(u)s and Vector16(s)b.
1780 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1782 * basic-simd.cs: Tests for operator == and != on Vector4f.
1784 2008-12-05 Rodrigo Kumpera <rkumpera@novell.com>
1786 * simd-intrinsics.c (simd_intrinsic_emit_equality): Adapt to support Vector4f.
1788 * simd-intrinsics.c: Kill useless enum.
1790 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1792 * cpu-mips.md: add long_conv_to_ovf_i4_2
1793 * mini-mips.c: update/add various _OVF_ opcodes to fix test failures
1795 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1797 * mini-mips.c: ifdef protect automatic promotions of R4 to R8.
1799 * mini-mips.c (mono_arch_emit_setret): handle R4 case with FCONV_TO_R4 instead of FMOVE
1801 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1803 * mini-mips.c (mono_arch_output_basic_block): fix codegen for OP_OR_IMM/OP_IOR_IMM
1805 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
1807 * basic-simd.cs: Add tests for new methods.
1809 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
1811 * simd-intrinsics.c: Add support for operator == and !=
1814 * simd-methods.h: Add SN_op_Inequality and SN_op_Equality.
1816 2008-12-04 Rodrigo Kumpera <rkumpera@novell.com>
1818 * simd-intrinsics.c: Remove ExtractByteMask intrinsics.
1820 2008-12-04 Zoltan Varga <vargaz@gmail.com>
1822 * aot-compiler.c (add_wrappers): Add pinvoke wrappers.
1824 * mini.c (mono_resolve_patch_target): Allow pinvoke methods in
1825 MONO_PATCH_INFO_ICALL_ADDR.
1827 * aot-runtime.c (MonoAotFileInfo): Correct order of fields.
1829 * aot-compiler.c: Resurrect full-aot support.
1831 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1833 * mini-mips.c (mono_arch_lowering_pass): handle OP_COMPARE and OP_ICOMPARE
1835 2008-12-04 Mark Mason <mmason@upwardaccess.com>
1837 * mini-mips.c (mono_arch_output_basic_block): fix OP_IREM_UN code generation
1839 2008-12-03 Rodrigo Kumpera <rkumpera@novell.com>
1841 * basic-simd.cs: Fix tests to work under ppc.
1842 Remove tests for methods that will be removed.
1844 2008-12-03 Mark Probst <mark.probst@gmail.com>
1846 * method-to-ir.c (mono_method_to_ir): Handle ldtoken of an open
1847 generic type (via a typedef or typeref) correctly.
1849 2008-12-03 Zoltan Varga <vargaz@gmail.com>
1851 * mini-trampolines.c (mono_magic_trampoline): Add some debugging code to help
1852 diagnose an assertion failure.
1854 2008-12-02 Mark Probst <mark.probst@gmail.com>
1856 * tramp-ppc64.c (mono_arch_create_rgctx_lazy_fetch_trampoline):
1857 Fix trampoline size.
1859 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: A few floating point
1860 conversion opcodes are implemented natively instead via emulation.
1862 2008-12-01 Mark Mason <mmason@upwardaccess.com>
1864 * cpu-mips.md: remove mips_xori
1866 * mini-ops.h: remove mips_xori
1868 * mini-mips.h: replace OP_MIPS_XORI with OP_IXOR
1870 * mini-mips.c (mono_arch_decompose_long_opts): Add ladd_imm, lsub, lsub_imm, lneg, lsub_ovf, lsub_ovf_un.
1872 * mini-mips.c (mono_arch_lowering_pass, mono_arch_output_basic_block): fix IXOR handling
1874 2008-12-01 Mark Mason <mmason@upwardaccess.com>
1876 * cpu-mips.md: fix instruction lengths.
1878 * mini-mips.h: define MONO_ARCH_NO_IOV_CHECK
1880 * mini-mips.c: move most instruction rewriting into decompose_ops. Implement conditional branches and exceptions. Fix jump table patch handling. Implement add/sub OVF.
1882 * mini-ops.h: fix slti / sltiu op profiles.
1884 2008-12-02 Martin Baulig <martin@ximian.com>
1886 * method-to-ir.c (mono_method_to_ir): Disable debugging
1887 information for the init locals block to make the debugger stop
1888 after all locals have been initalized.
1890 2008-12-02 Martin Baulig <martin@ximian.com>
1892 * mini.c (mini_method_compile): Disable MONO_OPT_DEADCE when
1893 running inside the debugger.
1895 2008-12-01 Zoltan Varga <vargaz@gmail.com>
1897 * mini.c (mini_method_compile): Only run local deadce if MONO_OPT_DEADCE
1900 * method-to-ir.c (mono_method_to_ir): Fix invalid code generated by the
1901 alu->alu imm optimization which only shows if deadce is disabled.
1903 * aot-compiler.c: Rename the function names for the binary and asm writers
1904 so they can coexist in the same process. Rework the xdebug code to use the
1905 asm writer. This avoids the need to call into the runtime to dump the
1906 debugging info. Add more debugging info for types.
1908 * mini-<ARCH>.h: Kill MONO_ARCH_HAVE_NORMALIZE_OPCODES define.
1910 * genmdesc.c genmdesc.pl mini.h: Don't put the CEE_ opcodes into the
1911 cpu description tables, they can't occur in cpu-<ARCH>.md.
1913 * method-to-ir.c (mono_method_to_ir): Set the type of the value pushed on
1914 the stack in CEE_LDFLDA. Fixes #450542.
1916 * generics.cs: Add a new test.
1918 2008-12-01 Mark Mason <mmason@upwardaccess.com>
1920 * mini-ops.h: updated MIPS opcodes
1921 * mini-mips.c: decompose long opts
1922 * mini-mips.h: decompose long opts
1924 2008-11-29 Mark Mason <mmason@upwardaccess.com>
1926 * cpu-mips.md: fix length on int_rem_un
1927 * mini-mips.c (mips_stackframe_adjust): fix insertion of spillvars region in MIPS stackframes.
1929 2008-11-29 Zoltan Varga <vargaz@gmail.com>
1931 * mini.h aot-runtime.c: Fix building with DISABLE_AOT.
1933 * mini-codegen.c (mono_print_ins_index): Handle OP_VOIDCALL_MEMBASE.
1935 2008-11-29 Martin Baulig <martin@ximian.com>
1937 * mini-exceptions.c (mono_handle_native_sigsegv): Check
1938 mono_debug_using_mono_debugger() in addition to the
1939 `no_gdb_backtrace' flag in the `MonoDebugOptions'.
1941 2008-11-28 Mark Mason <mmason@upwardaccess.com>
1943 * mini-ops.h: updated more MIPS opcodes
1944 * mini-mips.c: FP compare/branch working again, clean up last of CEE_ -> OP_ mappings
1945 * cpu-mips.md: Added MIPS versions of new FP compare/branch opcodes.
1947 2008-11-28 Mark Probst <mark.probst@gmail.com>
1949 * mini-ppc64.c: Patch the RGCTX fetch trampoline correctly.
1951 2008-11-28 Mark Mason <mmason@upwardaccess.com>
1953 * mini-mips.c (mono_arch_emit_call): adding missing conversion to fp single when passing in integer arg register.
1954 * mini-mips.c (mips_adjust_stackframe): compensate for spill-down logic.
1955 * mini-ops.h: correct selected mips opcode entries
1957 2008-11-28 Mark Probst <mark.probst@gmail.com>
1959 * mini-ppc64.c, mini-ppc64.h: Enable generalized IMT thunks and
1962 2008-11-28 Mark Probst <mark.probst@gmail.com>
1964 * mini-ppc64.h, tramp-ppc64.c: Make generic code sharing work.
1966 2008-11-28 Mark Mason <mmason@upwardaccess.com>
1968 * method-to-ir.c, mini-trampolines.c: protect IMG code with #ifdef MONO_ARCH_HAVE_IMT to fix compile errors.
1969 * mini-mips.c: Fixup stackframe assignments after allocation of spillvars.
1970 * mini-mips.h: disable IMT
1971 * tramp-mips.c (mono_arch_get_vcall_slot): fix offset extraction
1973 2008-11-28 Mark Probst <mark.probst@gmail.com>
1975 * mini-ppc64.c, mini-ppc64.h: Don't emulate long ops.
1977 2008-11-28 Mark Probst <mark.probst@gmail.com>
1979 * mini-ppc64.c, exceptions-ppc64.c: Several fixes.
1981 2008-11-28 Zoltan Varga <vargaz@gmail.com>
1983 * method-to-ir.c (handle_isinst): Use PCONST instead of ICONST for
1986 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
1988 * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
1989 for Set/GetVector aligned versions.
1991 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
1993 * basic-simd.cs: Add tests for Get/SetVector.
1995 2008-11-27 Mark Probst <mark.probst@gmail.com>
1997 * mini.c: Removed g_slist_append_mempool(). Now in
2000 2008-11-27 Rodrigo Kumpera <rkumpera@novell.com>
2002 * simd-intrinsics.c (mono_emit_vector_ldelema): Extract the element
2003 size properly and make the bounds check optional.
2005 * simd-intrinsics.c (emit_array_extension_intrinsics): Add support
2006 for SetVector and IsAligned.
2008 2008-11-27 Zoltan Varga <vargaz@gmail.com>
2010 * mini.c: Remove unused mono_normalize_opcodes () function.
2012 2008-11-26 Mark Probst <mark.probst@gmail.com>
2014 * method-to-ir.c (mini_emit_inst_for_method): Small fix: we're
2015 using the new atomic add ops now.
2017 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Implemented atomic
2020 2008-11-26 Mark Probst <mark.probst@gmail.com>
2022 * mini-ppc64.c: Several fixes.
2024 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2026 * cpu-mips.md: added jump_table
2027 * mini-mips.c: added jump_table. Eliminate compare-imm when lowering. Remove dead function.
2029 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2031 * mini-mips.c, mini-mips.h, tramp-mips.c, cpu-mips.md: Initial upgrade of MIPS port to new IR.
2033 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2035 * mini-ops.h: corrected a handful of MIPS opcodes.
2037 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2039 * aot-compiler.c: MIPS to use ELF writer
2041 2008-11-25 Mark Mason <mmason@upwardaccess.com>
2043 * mini-codegen.c: remove MIPS specific assert.
2045 2008-11-25 Mark Probst <mark.probst@gmail.com>
2047 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Several
2048 fixes. PPC64 now passes most of the runtime regressions.
2050 2008-11-24 Zoltan Varga <vargaz@gmail.com>
2052 * regalloc2.c: Distinguish between use/def positions. Optimize the creation of
2053 volatile intervals a bit.
2055 2008-11-24 Mark Probst <mark.probst@gmail.com>
2057 * basic-long.cs: New test case.
2059 2008-11-23 Zoltan Varga <vargaz@gmail.com>
2061 * mini.c (mini_method_compile): Disable globalra for large methods for
2064 * regalloc2.c (order_moves): Add fp support.
2066 * branch-opts.c (mono_remove_critical_edges): Split non-critical edges whose
2067 source bblock ends with an OP_BR_REG.
2069 * ratests.cs: Add a new test.
2071 2008-11-23 Mark Probst <mark.probst@gmail.com>
2073 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c: Disable generic code
2074 sharing. PPC64 now passes generics.exe.
2076 2008-11-23 Mark Probst <mark.probst@gmail.com>
2078 * mini-ppc64.c: Several fixes. PPC64 now runs iltests.exe.
2080 2008-11-23 Zoltan Varga <vargaz@gmail.com>
2082 * exceptions-x86.c (mono_arch_find_jit_info): Avoid reading uninitialized
2083 memory when mono_jit_info_table_find () can't find the method in the
2086 * aot-compiler.c (mono_save_xdebug_info): Emit complete debug info for
2089 * aot-compiler.c (mono_save_xdebug_info): Make this work with the assembly
2092 2008-11-23 Mark Probst <mark.probst@gmail.com>
2094 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, cpu-ppc64.md:
2095 Several fixes. PPC64 now runs exceptions.exe and
2096 devirtualization.exe.
2098 2008-11-22 Mark Probst <mark.probst@gmail.com>
2100 * mini-ppc64.c, tramp-ppc64.c: Small fixes. PPC64 now runs
2101 arrays.exe and basic-math.exe.
2103 2008-11-22 Mark Probst <mark.probst@gmail.com>
2105 * mini-ppc64.c, mini-ppc64.h, exceptions-ppc64.c, tramp-ppc64.c,
2106 cpu-ppc64.md: Several fixes. PPC64 now runs objects.exe.
2108 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
2110 * simd-intrinsics.c: Add support ArrayExtension intrinsics.
2112 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
2114 * method-to-ir.c: Move bounds checking macros to ir-emit.h
2116 * ir-emit.h: Move macros from method-to-ir.c to here.
2118 2008-11-21 Rodrigo Kumpera <rkumpera@novell.com>
2120 * mini-ops.h: Correct the long simd ops to use LREG.
2122 2008-11-21 Zoltan Varga <vargaz@gmail.com>
2124 * mini-ops.h: Correct the dreg type of OP_LOADI8_MEMBASE.
2126 * mini-ops.h: Correct the dreg type of a few long opcodes.
2128 * mini-amd64.h: Applied patch from Mihai Chelaru <kefren@ngnetworks.ro>.
2131 Fri Nov 21 12:52:23 CET 2008 Paolo Molaro <lupus@ximian.com>
2133 * mini-ppc.c: remove negative stack references in epilog
2134 for platforms that don't support the red zone.
2136 2008-11-21 Mark Probst <mark.probst@gmail.com>
2138 * mini-ppc64.h, cpu-ppc64.md: Fixed caller/callee saved floating
2139 point regs. Now PPC64 passes basic-calls.exe.
2141 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2143 * basic-simd.cs: Add tests for accessors of Vector2l.
2145 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2147 * mini-ops.h: Added OP_INSERTX_I8_SLOW,.
2149 * mini-x86.c (mono_arch_decompose_long_opts): Decompose OP_INSERTX_I8_SLOW.
2151 * simd-intrinsics.c: Add support for Vector2l and Vector2ul.
2153 2008-11-21 Mark Probst <mark.probst@gmail.com>
2155 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Several fixes. Now
2156 PPC64 passes basic-long.exe.
2158 2008-11-20 Mark Probst <mark.probst@gmail.com>
2160 * decompose.c: Decompose carry and overflow add on PPC64 like on
2161 other 64 bit archs. Don't decompose sub at all on PPC64.
2163 * mini-ppc64.c, exceptions-ppc64.c, tramp-ppc64.c, cpu-ppc64.md:
2164 Several fixes and new opcodes. Now PPC64 runs (but doesn't pass)
2167 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2169 * basic-simd.cs: Add tests for accessors of Vector2d.
2171 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2173 * mini-ops.h: Added OP_INSERTX_R8_SLOW,.
2177 * mini-x86.c (mono_arch_output_basic_block): Same.
2179 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector2d.
2181 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2183 * basic-simd.cs: Add tests for accessors of Vector4f.
2185 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2187 * mini-ops.h: Added OP_INSERTX_R4_SLOW,.
2191 * mini-x86.c (mono_arch_output_basic_block): Same.
2193 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4f.
2195 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2197 * basic-simd.cs: Add tests for accessors of Vector4i and Vector4ui.
2199 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2201 * mini-ops.h: Added OP_INSERTX_I4_SLOW,.
2205 * mini-x86.c (mono_arch_output_basic_block): Same.
2207 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector4i and Vector4ui.
2209 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2211 * cpu-x86.md: Use reasonable sizes for extractx_u2 and insertx_u1_slow.
2213 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2215 * simd-intrinsics.c: Enable setters for Vector16sb.
2217 2008-11-20 Rodrigo Kumpera <rkumpera@novell.com>
2219 * mini-ops.h: Added OP_EXTRACTX_U2, OP_INSERTX_U1_SLOW.
2223 * mini-x86.c (mono_arch_output_basic_block): Same.
2225 * simd-intrinsics.c (simd_intrinsic_emit_setter): Add support for Vector16b.
2227 2008-11-19 Rodrigo Kumpera <rkumpera@novell.com>
2229 * simd-intrinsics.c: Implement setter for Vector8us.
2231 2008-11-19 Zoltan Varga <vargaz@gmail.com>
2233 * aot-compiler.c (mono_save_xdebug_info): Emit correct location info
2236 Wed Nov 19 18:27:41 CET 2008 Paolo Molaro <lupus@ximian.com>
2238 * mini-ppc.c: remove references to the red zone in the prolog
2239 (for systems that don't support it).
2241 2008-11-19 Mark Probst <mark.probst@gmail.com>
2243 * cpu-ppc64.md: Fixed a few instruction lengths.
2245 * mini-ppc64.c: Don't emit SETLRET. PPC64 passes basic-float.exe,
2248 2008-11-19 Mark Probst <mark.probst@gmail.com>
2250 * mini-ppc64.c, cpu-ppc64.md: Fixed some opcodes. PPC64 passes
2253 2008-11-19 Zoltan Varga <vargaz@gmail.com>
2255 * aot-compiler.c (mono_save_xdebug_info): Add more parameter types.
2257 2008-11-18 Rodrigo Kumpera <rkumpera@novell.com>
2259 * mini-ops.h: Added OP_INSERT_I2.
2263 * mini-x86.c (mono_arch_output_basic_block): Same.
2265 * simd-intrinsics.c: Implement setter for Vector8s.
2267 * simd-methods.h: Add the names of get setters of Vector8s.
2269 2008-11-18 Zoltan Varga <vargaz@gmail.com>
2271 * aot-compiler.c (mono_save_xdebug_info): Add support for parameters.
2273 * aot-compiler.c (mono_save_xdebug_info): Add preliminary support for
2276 * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2278 2008-11-18 Mark Probst <mark.probst@gmail.com>
2280 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, cpu-ppc64.md: Changes
2281 for PPC64. An empty program runs now.
2283 2008-11-18 Zoltan Varga <vargaz@gmail.com>
2285 * unwind.h (MonoUnwindOp): Change the 'val' to a signed type.
2287 * aot-compiler.c mini.c mini.h: Add a JIT debugging mode modelled after
2288 a similar mode in Kaffe: When the the MONO_XDEBUG env var is set, debugging
2289 info for JITted code is emitted into a shared library, loadable into gdb.
2291 2008-11-18 Mark Probst <mark.probst@gmail.com>
2293 * Makefile.am: Changes to build PPC64.
2295 * mini-arch.h: Include mini-ppc64.h on PPC64.
2297 2008-11-18 Mark Probst <mark.probst@gmail.com>
2299 * mini-ppc64.c, mini-ppc64.h, cpu-ppc64.md: Updated with changes
2300 in PPC code up to r119147.
2302 2008-11-18 Mark Probst <mark.probst@gmail.com>
2304 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2305 cpu-ppc64.md: Changes for PPC64.
2307 Based on code submitted by andreas.faerber@web.de at
2308 https://bugzilla.novell.com/show_bug.cgi?id=324134 under the
2311 2008-11-18 Mark Probst <mark.probst@gmail.com>
2313 * mini-ppc64.c, mini-ppc64.h, tramp-ppc64.c, exceptions-ppc64.c,
2314 cpu-ppc64.md: Copied from the corresponding PPC files from
2317 2008-11-18 Scott Peterson <lunchtimemama@novell.com>
2319 * mini-ops.h: Added OP_ROUND.
2321 * cpu-x86.md: Added round.
2323 * mini-x86.c: Added support for intrinsicing Math.Round (double).
2325 * basic-math.cs: Added test_0_round to test rounding.
2327 Contributed under MIT/X11 license.
2329 2008-11-17 Bill Holmes <billholmes54@gmail.com>
2331 * aot-compiler.c : Fix the Winx64 build.
2333 Contributed under MIT/X11 license.
2335 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
2337 * mini-x86.c (mono_arch_output_basic_block): Use movsd instead of monvups
2338 in OP_EXTRACT_R8 to avoid possible stack corruption.
2340 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
2342 * mini-ops.h: Added OP_EXTRACT_R8/I8.
2344 * cpu-x86.md: Added extract_r8.
2346 * mini-x86.c (mono_arch_output_basic_block): Emmit OP_EXTRACT_R8.
2348 * mini-x86.c: Added mono_arch_decompose_long_opts to break OP_EXTRACT_I8 into
2349 a couple of OP_EXTRACT_I4.
2351 * mini-x86.h: Define MONO_ARCH_HAVE_DECOMPOSE_LONG_OPTS if simd is enabled.
2353 * simd-intrinsics.c: Implement getters for Vector2l/2ul/2d.
2355 2008-11-17 Rodrigo Kumpera <rkumpera@novell.com>
2357 * simd-intrinsics.c (vector2l_intrinsics): CompareGreaterThan requires sse 4.2
2360 2008-11-17 Zoltan Varga <vargaz@gmail.com>
2362 * method-to-ir.c (handle_delegate_ctor): Emit the address of the delegate
2363 trampoline as an AOT const of the proper type instead of MONO_PATCH_INFO_ABS.
2365 * mini.c (mono_codegen): Remove the handling of delegate trampolines, they
2366 are not needed any more.
2368 * mini.h: Remove the unused INS_LIST macros.
2370 * mini.c (mini_method_compile): Remove a disable globalra case which is no
2373 * *.h *.c: Remove duplicate MonoInst emission macros, use the ones in
2376 * regalloc.h *.c: Remove references to mono_regstate_next_int (), use
2377 mono_alloc_ireg () instead.
2379 * mini-<ARCH>.c: Include ir-emit.h. Remove duplicate MonoInst emission
2382 * mini-amd64.c (emit_load_volatile_arguments): Removed, not needed
2385 * aot-runtime.c (load_aot_module): Disable AOT when running under
2388 * mini-amd64.h: Change the monitor fastpath defines to check for
2389 !PLATFORM_WIN32 so they work on *bsd too.
2391 * mini.h mini.c mini-hhpa.c: Remove more unused code.
2393 * mini-s390.c mini-s390x.c: Remove !cfg->new_ir code.
2395 * mini.h (MonoCompile): Remove new_ir flag.
2397 * regalloc.h regalloc.c: Remove unused code.
2399 * cpu-*.md: Remove more unused opcodes.
2401 * simple-cee-ops.h simple-mini-ops.h: Removed.
2403 * mini-ops.h *.c cpu-<ARCH>.md: Remove more unused opcodes.
2405 2008-11-17 Zoltan Varga <vargaz@gmail.com>
2407 * aliasing.h: Removed.
2409 * *.c: Remove references to aliasing.h and inssel.h.
2411 * mini.c: Remove additional unused functions.
2413 * mini-ops.h cpu-*.md: Remove unused opcodes.
2415 2008-11-16 Zoltan Varga <vargaz@gmail.com>
2417 Remove the old JIT code.
2419 * inssel*.brg: Removed.
2421 * ssa.c abcremoval.c aliasing.c: Removed.
2423 * ssa2.c: Renamed to ssa.c.
2425 * abcremoval2.c: Renamed to abcremoval.c.
2427 * *.c: Removed all !cfg->new_ir code.
2429 * mini-<ARCH>.c: Removed mono_arch_call_opcode (),
2430 mono_arch_emit_this_vret_args (), and mono_arch_get_inst_for_method ().
2432 * mini.c: Removed the old mono_method_to_ir () and all the code used by it.
2434 2008-11-16 Zoltan Varga <vargaz@gmail.com>
2436 * aot-compiler.c aot-runtime.c: Emit most of the non-table data in a structure
2437 to simplify the code and cut back on the number of global symbols in the AOT
2440 * aot-compiler.c aot-runtime.c: Get rid of the unused plt_jump_table.
2442 2008-11-15 Zoltan Varga <vargaz@gmail.com>
2444 * aot-runtime.c aot-compiler.c: Unify the plt_jump_table/plt_info tables
2445 with the got/got_info tables.
2447 * mini.h: Bump AOT file format version.
2449 * unwind.h: New file, contains definitions for stack unwinding.
2451 * mini.c (mono_emit_unwind_op): New helper function to append an unwind op
2454 * aot-compiler.c: Generalize the emitting of unwind information to use the
2455 information in cfg->unwind_ops.
2457 * mini-amd64.c (mono_arch_emit_prolog): Emit unwind info.
2459 * aot-compiler.c: Emit dwarf unwind information so gdb can unwind through
2460 AOT method frames. Enable writing symbols for methods by default.
2462 2008-11-14 Rodrigo Kumpera <rkumpera@novell.com>
2464 * simd-intrinsics.c (simd_intrinsic_emit_getter): Generalize this code
2465 and make it work with vectors of element sizes 1, 2 and 4.
2467 * simd-intrinsics.c: Enable getter for all vectors with element size
2470 * simd-methods.h: Add the names of other getters.
2472 * mini-ops.h: Added OP_EXTRACT_I2/U2/I1/U1.
2478 Fri Nov 14 15:54:18 CET 2008 Paolo Molaro <lupus@ximian.com>
2480 * mini-ppc.h: portability fix.
2482 Fri Nov 14 15:39:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2484 * mini-ppc.h, mini-ppc.c: avoid using the red zone as some kernels are
2485 buggy and will overwrite it.
2487 2008-11-14 Zoltan Varga <vargaz@gmail.com>
2489 * aot-compiler.c: Add functionality to emit local symbols to the elf writer.
2490 Use it to emit local symbols for all methods so AOTed methods show up with
2491 their full name in gdb/valgrind output.
2493 Fri Nov 14 12:56:27 CET 2008 Paolo Molaro <lupus@ximian.com>
2495 * mini-ppc.c: portability fixes.
2497 2008-11-14 Zoltan Varga <vargaz@gmail.com>
2499 * mini-trampolines.c (mono_magic_trampoline): Move the patching of plt
2500 entries out of the if (!generic_shared...) code so it is always done.
2501 (mono_class_init_trampoline): Do the patching when running under valgrind
2502 too, newer versions of valgrind have no problems with it.
2504 2008-11-13 Zoltan Varga <vargaz@gmail.com>
2506 * aot-compiler.c (emit_writeout): Rework this to make it easier to add
2509 2008-11-13 Mark Probst <mark.probst@gmail.com>
2511 * mini-ppc.c, cpu-ppc.md: Reserve space for the parameter area in
2514 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2516 * simd-intrinsics.c: Add getter support for Vector4i and Vector4ui.
2518 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2520 * mini-ops.h: Kill diplicated ops OP_SHUFLEPS.
2526 * simd-intrinsics.c: Same.
2528 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2530 * simd-intrinsics.c: Enable constructor intrinsics for all types.
2532 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2534 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Generalize this method
2535 to work with more Vector types.
2537 2008-11-13 Rodrigo Kumpera <rkumpera@novell.com>
2539 * simd-intrinsics.c (simd_intrinsic_emit_ctor): If the target is already a pointer
2540 store the elemens directly instead of using and intermediate.
2542 2008-11-13 Zoltan Varga <vargaz@gmail.com>
2544 * mini-amd64.c (emit_call_body): Avoid aligning call sites in AOTed code.
2546 * tramp-x86.c (mono_arch_create_trampoline_code): Rework the return sequence
2547 to preserve %eax for aot plt trampolines.
2549 * aot-compiler.c (compile_method): Don't skip synchronized methods.
2550 (encode_method_ref): Flag synchronized methods so they won't go through
2553 * aot-compiler.c: Additional work to support AOTing synchronized methods/
2556 * cpu-ia64.md (jmp): Increase max length.
2558 2008-11-12 Zoltan Varga <vargaz@gmail.com>
2560 * aot-runtime.c (load_method): Avoid calling runtime_class_init () for
2561 open generic classes.
2563 * aot-compiler.c: Enable the ELF writer on ELF platforms.
2565 * method-to-ir.c (mono_method_to_ir2): Revert the last change to the
2566 box+brtrue optimization since it causes test failures on x86.
2568 2008-11-12 Rodrigo Kumpera <rkumpera@novell.com>
2570 * mini-ops.h: Remove OP_PUSH_R4 and OP_LOADX_STACK.
2576 * mini.h (struct MonoCompile): Add simd_ctor_var to be used as storage
2577 for simd ctor values.
2579 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Use simd_ctor_var for the constructor
2580 instead of directly pushing the values on stack. This saves about 15 bytes of generated code.
2582 2008-11-12 Rodrigo Kumpera <rkumpera@novell.com>
2584 * simd-methods.h: Rename SubWithSaturation, ArithmeticRightShift and
2587 * simd-instrincs.c: Same.
2589 * basic-simd.cs: Same.
2591 2008-11-12 Zoltan Varga <vargaz@gmail.com>
2593 * ratests.cs: Add more tests.
2595 * regalloc2.c (add_spill_code): Handle more corner cases.
2597 2008-11-11 Zoltan Varga <vargaz@gmail.com>
2599 * regalloc2.c (INS_POS_INTERVAL): Decrease this to 8 to avoid overflows.
2600 (update_liveness): Avoid holes in the liveness ranges of hregs if they are
2601 both the source an destination of an instruction.
2603 Tue Nov 11 19:30:50 CET 2008 Paolo Molaro <lupus@ximian.com>
2605 * jit-icalls.c, local-propagation.c, mini.c, ssa.c, ssapre.c, trace.c,
2606 wapihandles.c: more portability changes.
2608 Tue Nov 11 18:56:33 CET 2008 Paolo Molaro <lupus@ximian.com>
2610 * aot-compiler.c, aliasing.c, abcremoval.c: portability changes.
2611 * mini.c mini.h, aot-runtime.c: the aot segfault-handling code is not
2612 safe to execute in a signal handler and the kernel provides better
2613 the info in /proc/self/smaps. Avoid the assert on sigaction during
2616 2008-11-11 Zoltan Varga <vargaz@gmail.com>
2618 * method-to-ir.c (mono_method_to_ir2): In the box+brtrue optimization, only
2619 do the bblock linking hack if it is actually needed.
2621 * Makefile.am (patch-libtool): New helper target to patch libtool to speed
2624 * liveness.c (ENABLE_LIVENESS2): Reenable this for 64 bit archs as the
2625 crash problem is fixed.
2627 * branch-opts.c (mono_remove_critical_edges): Link up newly added
2630 * mini.c (mini_method_compile): Compute unreachable bblocks properly even
2632 (mini_method_compile): Set the starting value of next_vreg to
2633 MAX_IREGS + MAX_FREGS when using globalra.
2635 * method-to-ir.c (mono_method_to_ir2): Mark bblocks starting
2636 filter clauses with BB_EXCEPTION_HANDLER.
2638 * regalloc2.c (assign_spill_slots): Set cfg->rgctx_var.
2640 2008-11-10 Mark Probst <mark.probst@gmail.com>
2642 * mini-x86.c (mono_arch_get_argument_info): Don't align argument
2643 space for stdcall. Fixes regressions on Win32.
2645 2008-11-10 Zoltan Varga <vargaz@gmail.com>
2647 * regalloc2.c (handle_reg_constraints): Avoid adding code to unreachable
2649 (linear_scan): Remove an assert which doesn't seem to be needed.
2651 * local-propagation.c (mono_local_deadce): Avoid a call to
2652 MONO_DELETE_INS which would screw up the instruction linking.
2654 * mini.c (mono_decompose_op_imm): Make this work with globalra.
2656 * regalloc2.c: Upgrade to work the current JIT code.
2658 2008-11-09 Zoltan Varga <vargaz@gmail.com>
2660 * method-to-ir.c (inline_method): Merge more basic blocks to help the AOT
2663 * aot-runtime.c: Remove some dead code.
2665 * tramp-arm.c: Use 'code' as the runnning pointer in code generation for
2667 (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Implement aot support.
2669 * aot-runtime.c (load_named_code): Decode the offset of lazy fetch
2670 trampolines using sscanf since atoi doesn't work on large unsigned values.
2672 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full):
2673 Initialize code_size.
2675 2008-11-08 Mark Probst <mark.probst@gmail.com>
2677 * method-to-ir.c (mini_emit_inst_for_method): Make
2678 Interlocked.CompareExchange work for Int arguments on 32 bit
2681 2008-11-07 Mark Probst <mark.probst@gmail.com>
2683 * method-to-ir.c (mono_method_to_ir2): Fixed a funny commit error.
2685 2008-11-06 Bill Holmes <billholmes54@gmail.com>
2687 * main.c Fix MSVC build.
2689 Contributed under MIT/X11 license.
2691 2008-11-06 Mark Probst <mark.probst@gmail.com>
2693 * mini-x86.c (mono_arch_allocate_vars): Make sure locals that need
2694 alignment larger than 8 bytes are aligned correctly, too.
2696 * mini.c: Honor the min_align field of MonoClass when laying out
2699 2008-11-06 Zoltan Varga <vargaz@gmail.com>
2701 * method-to-ir.c (mono_method_to_ir2): Fix AOT support for CEE_SWITCH on arm.
2703 * aot-compiler.c (emit_plt): Fix a warning.
2705 * aot-compiler.c: Implement ARM support in the binary writer.
2707 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2709 * basic-simd.cs: Add test for getter with byref arg.
2710 Fix the naming of a few tests.
2711 Add missing checks to a test.
2713 2008-11-05 Zoltan Varga <vargaz@gmail.com>
2715 * aot-compiler.c (emit_plt): Make the arm code work with the binary writer.
2717 * aot-compiler.c aot-runtime.c mini-trampolines.c tramp-amd64.c: Implement
2718 most of the full-aot support for monitor enter/exit trampolines.
2720 * tramp-x86.c tramp_amd64.c: Add AOT compatible variants of the monitor
2721 enter/exit trampoline creation functions.
2723 * Makefile.am: Fix the generation of buildver.h so it is not invoked during
2726 Wed Nov 5 16:28:53 CET 2008 Paolo Molaro <lupus@ximian.com>
2728 * mini.h, aot-compiler.c, method-to-ir.c, aot-runtime.c: remove the
2729 incorrectly added MONO_WRAPPER_MONITOR_* (in r117651-r117652) and
2730 implement the needed functionality without adding crap to the runtime.
2732 2008-11-05 Zoltan Varga <vargaz@gmail.com>
2734 * mini-trampolines.c (mono_create_monitor_enter_trampoline): Fix the
2737 * mini.c (mono_build_date): New global version holding the build date in
2740 * Makefile.am (buildver.c): Generate a file containing the build date.
2742 * main.c: Set the build date from the generated file.
2744 * mini.c (mono_get_runtime_build_info): New helper function returning build
2745 information in a string format.
2747 * driver.c (mono_main): Print the build date in --version.
2749 * aot-compiler.c aot-runtime.c: Embed the build information into the AOT
2750 file when the bind-to-runtime-version option is used.
2752 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2754 * simd-intrinsics.c: Fix bug when using getters and byref args.
2756 2008-11-05 Rodrigo Kumpera <rkumpera@novell.com>
2758 * simd-methods.h: Rename prefetch methods.
2760 * simd-intrinsics.c: Same.
2762 2008-11-05 Mark Probst <mark.probst@gmail.com>
2764 * tramp-amd64.c: Enlarge the Monitor.Enter/Exit trampoline code
2767 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2769 * aot-compiler.c: Use the bundled elf header files instead of depending on
2772 * aot-compiler.c (emit_symbol_diff): Allocate memory from the acfg
2775 * method-to-ir.c (mono_method_check_inlining): Avoid a getenv () call
2778 2008-11-04 Rodrigo Kumpera <rkumpera@novell.com>
2780 * cpu-x86.md: Add store nta ops.
2786 * mini.h: Add an enum for simd prefetch modes.
2788 * simd-methods.h: Refactor the store_aligned code to handle multiple kinds
2789 of store. Use the changed code to support store nta.
2791 * simd-intrinsics.c: Add prefetch ops for all vector types.
2793 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2795 * aot-compiler.c: Add an option for JIT compiling the methods by multiple
2798 * aot-compiler.c: Use statically allocated buffers for constructing symbol
2801 * aot-runtime.c aot-compiler.c: Add support for the MONITOR_ENTER/EXIT
2804 2008-11-04 Mark Probst <mark.probst@gmail.com>
2806 * mini-x86.c: Fixed commit.
2808 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2810 * aot-compiler.c (emit_plt): Align the plt section only on x86.
2812 2008-11-04 Mark Probst <mark.probst@gmail.com>
2814 * mini-trampolines.c, mini.h: Two new trampolines: MONITOR_ENTER
2815 and MONITOR_EXIT, for the ASM fastpaths.
2817 * method-to-ir.c: Use the ASM fastpath for Monitor.Enter/Exit if
2820 * mini.c, patch-info.h: Signature and patch infos for
2821 Monitor.Enter/Exit trampolines.
2823 * mini-amd64.c, mini-x86.c: Make emit_tls_get() non-static.
2825 * tramp-amd64.c, tramp-x86.c, mini-amd64.h, mini-amd64.h:
2826 Monitor.Enter/Exit ASM fastpath for Linux.
2828 2008-11-04 Zoltan Varga <vargaz@gmail.com>
2830 * mini.c (mono_method_to_ir): Fix soft-float support in Array.Get/Set.
2832 * objects.cs: Add a new test.
2834 * aot-compiler.c: Use mono_100ns_ticks () for computing the profiling info.
2836 * aot-runtime.c (load_method): Run class initialization in the PLT case even
2837 if MONO_LOG_LEVEL is set.
2839 * debug-mini.c (serialize_variable): Fix the encoding of dead variables.
2841 * aot-runtime.c (mono_aot_get_method): Skip out-of-date AOT modules.
2843 * aot-compiler.c (emit_and_reloc_code): Speed this up a little.
2845 * aot-compiler.c: Change the relocation code to use virtual addresses instead
2846 of file offsets. Align the sections belonging to the data segment to
2849 2008-11-03 Zoltan Varga <vargaz@gmail.com>
2851 * aot-compiler.c: Simplify the elf writer by depending on the definitions in
2852 elf.h. Port it to amd64.
2854 2008-11-03 Rodrigo Kumpera <rkumpera@novell.com>
2856 * driver.c: Enable SIMD by default.
2858 2008-11-03 Rodrigo Kumpera <rkumpera@novell.com>
2860 * cpu-x86.md: Add prefetch op.
2866 * mini.h: Add an enum for simd prefetch modes.
2868 * simd-methods.h: Add prefetch function names.
2870 * simd-intrinsics.c: Add prefetch ops for all vector types.
2872 2008-11-03 Zoltan Varga <vargaz@gmail.com>
2874 * aot-compiler.c (emit_bytes): Speed this up a little.
2876 2008-11-02 Zoltan Varga <vargaz@gmail.com>
2878 * aot-compiler.c: Add JIT time etc. statistics.
2880 * aot-compiler.c (compile_method): Fix the copying of the cfgs array.
2882 * mini.h (MonoCompile): Add 'got_offset' field.
2884 * aot-compiler.c: Store the got offset in MonoCompile, get rid of the
2885 method_got_offsets array.
2887 * aot-compiler.c aot-runtime.c: Add support for the monitor enter/exit
2890 * aot-compiler.c (compile_method): Add generic method instances referenced
2891 by the method to the list of methods to be compiled, this is required so if
2892 A<T> references B<T>, and another assembly references A<int>, then it will
2893 also get a copy of B<int>.
2895 * method-to-ir.c (mini_emit_inst_for_method): Use the proper wrapper type
2896 when checking for monitor enter/exit.
2898 2008-10-30 Mark Probst <mark.probst@gmail.com>
2900 * method-to-ir.c (mini_emit_inst_for_method): Use the IL fastpaths
2901 for Monitor.Enter and Monitor.Exit if enabled.
2903 * mini-x86.h, mini-amd64.h: Enable the IL fastpaths for Linux and
2906 2008-10-30 Zoltan Varga <vargaz@gmail.com>
2908 * method-to-ir.c (type_from_op): Convert CEE_CONV_U on OP_ICONV_TO_U instead
2909 of an OP_MOVE. Fixes #440046.
2911 * basic-long.cs: Add a new test.
2913 2008-10-29 Rodrigo Kumpera <rkumpera@novell.com>
2915 * mini.h: Add synchronization note for the managed counter-part.
2917 * simd-intrinsics.c: Add SimdRuntime.get_AccelMode intrinsic that
2918 returns the simd caps of the current cpu.
2920 2008-10-29 Rodrigo Kumpera <rkumpera@novell.com>
2922 * basic-simd.cs: Remove Console.WriteLine.
2924 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2926 * basic-simd.cs: New tests for Vector2ul.
2928 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2930 * simd-intrinsics.c: Add new vector type Vector2ul.
2932 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2934 * basic-simd.cs: New tests for Vector2l.
2936 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2938 * cpu-x86.md: Add long version of most packed int ops.
2944 * simd-intrinsics.c: Add new vector type Vector2l.
2946 2008-10-28 Rodrigo Kumpera <rkumpera@novell.com>
2948 * simd-intrinsics.c: Replace SN_op_BitwiseXor with SN_op_ExclusiveOr.
2950 * simd-methods.h: Remove SN_op_BitwiseXor.
2952 2008-10-28 Zoltan Varga <vargaz@gmail.com>
2954 * mini.c (mono_allocate_stack_slots_full): Align the size of vtypes to their
2957 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2959 * basic-simd.cs: Test for Vector2d.
2961 * basic-simd.cs (test_vector8s_pack_signed_sat): Fixed broken
2964 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2966 * cpu-x86.md: Add double version of all packed float ops.
2972 * simd-intrinsics.c: Add new vector type Vector2d.
2974 * simd-intrinsics.c (vector4f_intrinsics): Fix ordering.
2976 * simd-methods.h: Add Duplicate.
2978 2008-10-27 Rodrigo Kumpera <rkumpera@novell.com>
2980 * basic-simd.cs: Test for packing with signed saturation.
2982 2008-10-28 Zoltan Varga <vargaz@gmail.com>
2984 * aot-compiler.c (add_generic_instances): Add all methods of generic instances
2985 found in the TYPESPEC table.
2987 2008-10-26 Zoltan Varga <vargaz@gmail.com>
2989 * aot-runtime.c (mono_aot_get_method): Log not found methods for extra methods
2992 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
2994 * mini.c (mono_method_to_ir): For MONO_PATCH_INFO_RVA, save field the token
2995 instead of the RVA, since the RVA can be changed by tools like the cil
2998 * method-to-ir.c (mono_method_to_ir2): Ditto.
3000 * debug-mini.c (serialize_variable): Handle ADDRESS_MODE_DEAD.
3001 (deserialize_variable): Ditto.
3003 2008-10-25 Martin Baulig <martin@ximian.com>
3005 * debug-mini.c (write_variable): Use
3006 `MONO_DEBUG_VAR_ADDRESS_MODE_DEAD' for dead variables.
3008 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3010 * cpu-x86.md: Add unsigned variants of packd and packw.
3014 * mini-x86.h: Emit the right instruction for packd and packw.
3015 Add unsigned variants of packd and packw.
3017 * simd-intrinsics.c: Packd and packw were used in place of their
3018 unsigned variants. Change that.
3019 Add intrinsics for (Signed)PackWithSignedSaturation.
3021 * simd-methods.h: Add (Signed)PackWithSignedSaturation.
3023 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3025 * simd-intrinsics.c (vector4i_intrinsics): New table of intrinsic type.
3027 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3029 * mini-ops.h: Remove dword packed add/sub with saturation ops.
3031 * cpu-x86.md: Remove dword packed add/sub with saturation ops.
3033 * simd-intrinsics.c (vector4ui_intrinsics): Remove methods without
3036 * simd-intrinsics.c (vector8s_intrinsics): Fix ordering.
3038 2008-10-24 Mark Probst <mark.probst@gmail.com>
3040 * method-to-ir.c, mini.c: Special casing for the synchronized
3041 wrapper for the ldtoken+GetTypeFromHandle case.
3043 2008-10-24 Zoltan Varga <vargaz@gmail.com>
3045 * mini.c (mono_replace_ins): Move this to branch-opts.c.
3047 * mini.c (mono_replace_ins): Propagate has_array_access flag to the newly
3048 created/split bblocks.
3050 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3052 * mini-ops.h: Add packed signed mul high.
3056 * mini-x86.c (mono_arch_output_basic_block): Same.
3058 * simd-methods.h: Add PackWithUnsignedSaturation and ShiftRightLogic.
3060 * simd-intrinsics.c (vector8s_intrinsics): New table of intrinsic type.
3062 2008-10-24 Rodrigo Kumpera <rkumpera@novell.com>
3064 * basic-simd.cs: Tests for Vector16sb.
3066 2008-10-24 Zoltan Varga <vargaz@gmail.com>
3068 * inssel.brg (stmt): Fix OP_HARD_NOP rule.
3070 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
3072 * mini-ops.h: Add packed signed min, max and compare greater.
3076 * mini-x86.c (mono_arch_output_basic_block): Same. Add packed add/sub with
3079 * simd-methods.h: Add CompareGreaterThan.
3081 * simd-methods.h: Remove CompareEquals.
3083 * simd-intrinsics.c: Add new TODO entry and some cosmetic changes.
3085 * simd-intrinsics.c (vector16sb_intrinsics): New table of intrinsic type.
3087 * simd-intrinsics.c (vector4f_intrinsics): Rename CompareEquals to
3090 2008-10-23 Rodrigo Kumpera <rkumpera@novell.com>
3092 * basic-simd.cs: Fix tests due to change in the API.
3094 2008-10-21 Zoltan Varga <vargaz@gmail.com>
3096 * mini.c method-to-ir.c: Use mono_field_get_name () for accessing field->name.
3098 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3100 * basic-simd.cs: Fix name change in Vector4f::CompareEqual.
3102 * simd-intrinsics.c (simd_intrinsic_emit_store_aligned): Don't use
3103 inst_offset as this has invalid values for LDADDR.
3105 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3107 * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3109 * simd-intrinsics.c (vector4ui_intrinsics): Add SignedPackWithUnsignedSaturation.
3111 2008-10-21 Zoltan Varga <vargaz@gmail.com>
3113 * method-to-ir.c (initialize_array_data): Use mono_field_get_data ()
3114 for accessing field->data.
3116 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3118 * basic-simd.cs: Test for SignedPackWithUnsignedSaturation.
3120 2008-10-21 Rodrigo Kumpera <rkumpera@novell.com>
3122 * simd-methods.h: Add SignedPackWithUnsignedSaturation.
3124 * simd-intrinsics.c (vector8us_intrinsics): Add SignedPackWithUnsignedSaturation.
3126 2008-10-21 Zoltan Varga <vargaz@gmail.com>
3128 * dominators.c (mono_compute_natural_loops): Allocate GList enties
3129 from the cfg mempool.
3131 2008-10-20 Rodrigo Kumpera <rkumpera@novell.com>
3133 * basic-simd.cs: Tests for new methods in Vector8us.
3135 2008-10-20 Rodrigo Kumpera <rkumpera@novell.com>
3137 * mini-ops.h: Add multiply and store high.
3141 * mini-x86.c (mono_arch_output_basic_block): Same.
3143 * simd-methods.h: Same.
3145 * simd-intrinsics.c (vector8us_intrinsics): Add MultiplyStoreHigh
3148 2008-10-19 Zoltan Varga <vargaz@gmail.com>
3150 * method-to-ir.c (mono_emit_method_call_full): Remove a needless call to
3151 mono_class_setup_vtable ().
3153 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Use
3154 mono_class_get_vtable_entry () for accessing klass->vtable.
3156 * aot-runtime.c (load_method): Avoid a crash when using MONO_LOG_LEVEL.
3158 * aot-compiler.c (add_generic_instances): Avoid a crash if a class is not
3161 * method-to-ir.c (mono_save_token_info): Don't save references made from
3164 * aot-compiler.c (add_generic_instances): Add static rgctx wrappers for cctors
3165 of generic instances.
3167 * aot-runtime.c (find_extra_method): Search in all loaded AOT images.
3169 2008-10-19 Mark Probst <mark.probst@gmail.com>
3171 * cpu-ppc.md, mini-ppc.c: The length of the code generated for
3172 OP_JMP depends on the method signature. Calculate it properly.
3174 2008-10-19 Zoltan Varga <vargaz@gmail.com>
3176 * aot-runtime.c (mono_aot_find_jit_info): Handle extra methods which are
3179 * aot-compiler.c (emit_and_reloc_code): Allow direct calling of generic
3181 (emit_extra_methods): Add another table mapping method indexes to
3182 offsets in the extra_method_info table.
3184 * mini.h: Bump AOT file format version.
3186 * aot-runtime.c: Merge most of the code from mono_aot_get_method
3187 and mono_aot_get_method_from_token () into one function.
3189 2008-10-19 Mark Probst <mark.probst@gmail.com>
3191 * mini-ppc.c (emit_load_volatile_arguments): Inner loop needs a
3194 2008-10-18 Zoltan Varga <vargaz@gmail.com>
3196 * aot-compiler.c aot-runtime.c: Fix the hash function used for the extra
3199 * method-to-ir.c (mono_method_to_ir2): Change a !compile_aot assert to
3202 * mini.c (mono_patch_info_equal): Compare the generic context as well.
3204 * mini.h: Bump aot file format version.
3206 * aot-compiler.c aot-runtime.c: Generalize the wrapper handling code so the
3207 AOT file can contain native code for methods which are not in the METHOD
3208 table. Generate code for non-sharable generic instances of generic methods
3209 found in the METHODSPEC table.
3211 * method-to-ir.c (mono_method_to_ir2): Remove the aot restriction when
3212 encoding generic type handles.
3214 * ir-emit.h (NEW_AOTCONST_TOKEN): Add a generic_context argument.
3215 (NEW_TYPE_FROM_HANDLE_CONST): Add a generic_context argument.
3217 * ir-emit.h: Rewrite the EMIT_NEW_XXXCONST macros to use the NEW_XXXCONST
3218 macros + MONO_ADD_INS.
3220 * mini.c (mono_jump_info_token_new2): New function which takes a generic
3223 * mini.h (MonoJumpInfoToken): Include fields for a generic context.
3225 * mini.h: Bump aot file format version.
3227 * aot-compiler.c aot-runtime.c: Update after changes to MonoJumpInfoToken.
3229 2008-10-17 Mark Probst <mark.probst@gmail.com>
3231 * mini-x86.h, mini-x86.c, exceptions-x86.c: Align stack on all
3232 platforms, with definable stack alignment value. Set to 16 now
3235 * mini.c, mini.h, driver.c: Command line option for disabling
3238 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
3240 * basic-simd.cs: Tests for new methods in Vector4ui.
3242 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
3244 * mini-ops.h: Add packed int shuffle.
3248 * mini-x86.c (mono_arch_output_basic_block): Same.
3250 * simd-intrinsics.c (vector4ui_intrinsics): Add compare equal,
3251 extract mask, max, min, shuffle.
3253 * simd-intrinsics.c (vector8us_intrinsics): Add max and min.
3255 2008-10-17 Rodrigo Kumpera <rkumpera@novell.com>
3257 * basic-simd.cs: Tests for new methods in Vector8us.
3259 2008-10-17 Mark Probst <mark.probst@gmail.com>
3261 * method-to-ir.c (mono_method_to_ir2): "refanytype" produces a
3262 RuntimeTypeHandle, not a TypedReference.
3264 Fri Oct 17 14:40:50 CEST 2008 Paolo Molaro <lupus@ximian.com>
3266 * simd-intrinsics.c: remove relocations.
3268 2008-10-17 Zoltan Varga <vargaz@gmail.com>
3270 * mini-amd64.c (mono_arch_output_basic_block): Port the IREM_IMM
3271 optimizations from the x86 backend.
3273 Fri Oct 17 12:00:51 CEST 2008 Paolo Molaro <lupus@ximian.com>
3275 * simd-methods.h, simd-intrinsics.c: debloat method names and
3276 prepare for no relocations.
3278 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3280 * mini-ops.h: Add packed min/equal and sum of absolute differences.
3284 * mini-x86.c (mono_arch_output_basic_block): Same.
3286 * simd-intrinsics.c (vector16b_intrinsics): Add average, compare equal,
3287 extract mask, max, min and sum of absolute differences.
3289 * simd-intrinsics.c: Increase SIMD_INTRINSIC_NAME_MAX due to new huge
3292 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3294 * basic-simd.cs: Test for the other mono_simd_simplify_indirection bug.
3295 Renamed one test for consistency.
3297 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3299 * simd-intrinsics.c (mono_simd_simplify_indirection): Apply the previous
3300 fix to the code that deal with other blocks.
3302 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3304 * basic-simd.cs: Test for the mono_simd_simplify_indirection bug.
3306 2008-10-16 Rodrigo Kumpera <rkumpera@novell.com>
3308 * simd-intrinsics.c (mono_simd_simplify_indirection): Simplify the code
3309 that deals with vreg interference. Explicitly check for OP_LDADDR to be
3310 able to process the source reg.
3312 2008-10-16 Martin Baulig <martin@ximian.com>
3314 * mini-ops.h, cpu-amd64.md, cpu-x86.md: Added new `hard_nop' opcode.
3316 * inssel.brg: Add `OP_HARD_NOP'.
3318 * mini.h (MonoCompile): Added `keep_cil_nops' flag.
3320 * mini.c (mono_method_to_ir): In `CEE_NOP': generate a
3321 `OP_HARD_NOP' instruction when running inside the debugger.
3323 * method-to-ir.c (mono_method_to_ir2): In `CEE_NOP': generate a
3324 `OP_HARD_NOP' instruction when running inside the debugger.
3326 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3328 * simd-intrinsics.c (get_simd_vreg): Using sreg1 of OP_XMOVE
3329 now works. The issue with the regalloc tripping up no longer
3332 * simd-intrinsics.c (load_simd_vreg): Same.
3334 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3336 * basic-simd.cs: Tests for new Vector8ui methods.
3338 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3340 * simd-intrinsics.c (get_simd_vreg): Simplify code and test
3341 only for type. This fixes crashes where MonoInst::klass is checked
3342 for ops of type != VTYPE or OBJ.
3344 * simd-intrinsics.c (load_simd_vreg): Same.
3346 2008-10-15 Rodrigo Kumpera <rkumpera@novell.com>
3348 * mini-ops.h: Add ops for packed shuffle/max/avg and
3353 * mini-x86.c (mono_arch_output_basic_block): Same.
3355 * simd-intrinsics.c (vector8us_intrinsics): Add avg, shuffle and
3358 * simd-intrinsics.c (simd_intrinsic_emit_extract_mask): New function
3359 to emit extract mask op.
3361 * simd-intrinsics.c (simd_intrinsic_emit_shuffle): Retrofic this function
3362 to emit word shuffles.
3364 2008-10-15 Mark Probst <mark.probst@gmail.com>
3366 * mini.c (mono_allocate_stack_slots_full): Align stack frame to
3367 the largest alignment needed by a variable, but at least
3370 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3372 * basic-simd.cs: Tests for the fixes in the last commit.
3374 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3376 * simd-intrinsics.c (get_simd_vreg): Drop the is_this_ptr, this function
3377 no longer handles STACK_PTR input.
3379 * simd-intrinsics.c (get_simd_vreg): Don't crash when MonoInst::klass == -1.
3381 * simd-intrinsics.c (load_simd_vreg): New function that works like
3382 get_simd_vreg but handles STACK_PTR input.
3384 * simd-intrinsics.c (simd_intrinsic_emit_getter): Use load_simd_vreg
3385 as the input can be an arbitrary pointer.
3387 * simd-intrinsics.c (simd_intrinsic_emit_ctor): Try the
3388 LDADDR local optimization directly otherwise use a store op.
3390 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3392 * basic-simd.cs: Tests for dup low and dup high.
3394 2008-10-14 Rodrigo Kumpera <rkumpera@novell.com>
3396 * mini-ops.h: Add dup low and dup high ops.
3400 * mini-x86.c (mono_arch_output_basic_block): Same.
3402 * simd-intrinsics.c (vector4f_intrinsics): Same.
3404 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
3406 * basic-simd.cs: Tests for recently added functionality.
3408 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
3410 * mini-ops.h: Add remaining sse1 fp ops.
3412 * cpu-x86.md: Add remaining sse1 fp ops.
3414 * mini-x86.c (mono_arch_output_basic_block): Same.
3416 * mini.h: Add enum for simd FP compare conditions.
3418 * simd-intrinsics.c (vector4f_intrinsics): Add all new ops.
3420 * simd-intrinsics.c (simd_intrinsic_emit_binary): Set inst_c0 to flags
3421 so the backed can generate the appropriate op.
3423 2008-10-13 Rodrigo Kumpera <rkumpera@novell.com>
3424 This patch squeese one more byte from the SimdIntrinsc struct.
3426 * mini-x86.c (mono_arch_cpu_enumerate_simd_versions: Use the version number
3427 a a shift amount intead of simply or'ing it.
3429 * mini.h: Change SIMD_VERSION_* values to be sequential intead of masks.
3431 * simd-intrinsics.c (struct SimdIntrinsc): Squeese simd_version and simd_emit_mode into a single
3432 byte so we can have an aditional flags field without increasing struct size.
3434 * simd-intrinsics.c (emit_intrinsics): Use the value of simd_version as a shift amount before checking
3435 against the simd_supported_versions bitmask.
3437 * simd-intrinsics.c: Set SIMD_INTRINSIC_NAME_MAX to an appropriate value.
3439 Mon Oct 13 10:58:10 CEST 2008 Paolo Molaro <lupus@ximian.com>
3441 * mini.c: remove rawbuffer code (the only use here is unsafe because
3442 it takes locks during signal handling and the kernel now provides much
3443 better info in proc/pid/smaps these days).
3445 2008-10-13 Zoltan Varga <vargaz@gmail.com>
3447 * mini-amd64.c (mono_arch_output_basic_block): Fix the changes to
3448 OP_X86_PUSH_OBJ. Fixes #434620.
3450 * objects.cs: Add a test.
3452 2008-10-12 Rodrigo Kumpera <rkumpera@novell.com>
3454 * basic-simd.cs: Remove PackWithUnsignedSaturation tests as it turns out
3455 that the packuswb/packusdw don't work with unsigned numbers for what
3456 would be negative numbers in signed format.
3458 * cpu-x86.md: Add doubleword forms of many ops and packing ones.
3459 Fix the len of fconv_to_r8_x and xconv_r8_to_i4.
3461 * mini-ops.h: Add doubleword forms of many ops and packing ones.
3463 * mini-x86.c: Emit doubleword forms of many ops and packing ones.
3465 * simd-intrinsics.c (SimdIntrinsc): Rename the flags field to simd_version.
3467 * simd-intrinsics.c (vector4f_intrinsics): Use simd_version field for sse3 ops.
3469 * simd-intrinsics.c (vector4u_intrinsics): Rename to vector4ui_intrinsics and
3472 * simd-intrinsics.c (simd_version_name): New function, returns the name of the
3473 version as the enum in mini.h.
3475 * simd-intrinsics.c (emit_intrinsics): Instead of having a special emit mode
3476 for sse3 ops, check the simd_version field if present. This way the code
3477 works with all versions of sse.
3479 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3481 * simd-intrinsics.c: Fixed intrinsic name typo.
3483 * mini.h: Added missing simd exported function.
3485 * basic-simd.cs: Added tests for Vector4ui.
3486 Fixed broken test for Vector16b.
3488 2008-10-10 Zoltan Varga <vargaz@gmail.com>
3490 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): Increase
3491 the max length to 64.
3493 2008-10-10 Mark Probst <mark.probst@gmail.com>
3495 * method-to-ir.c: Only do the fast virtual generic method call for
3496 non-wrapper methods.
3498 * mini.h, mini-trampolines.c: The new generic virtual remoting
3499 trampoline handles virtual method calls via the vtable (as done by
3500 the fast virtual generic method calls) to remoting proxies.
3502 * mini.c (mono_jit_create_remoting_trampoline): For generic
3503 methods reate a generic virtual remoting trampoline.
3505 * mini-amd64.h: Enable fast virtual generic method calls again.
3507 2008-10-10 Mark Probst <mark.probst@gmail.com>
3509 * mini-ppc.c: Use SP (r1), not frame_reg (which might be r31) to
3510 restore registers when doing tail calls.
3512 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3514 * simd-intrinsics.c (emit_intrinsics): Vector4u was renamed to
3517 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3519 * basic-simd.cs: Add test for Vecto16b.PackWithUnsignedSaturation.
3521 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3523 * simd-intrinsics.c (emit_intrinsics): Retrofit to new type names.
3525 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3527 * basic-simd.cs: Retrofit for API changes.
3529 2008-10-10 Mark Probst <mark.probst@gmail.com>
3531 * mini-ppc.c: Handle integer stack arguments for tail calls.
3533 2008-10-10 Rodrigo Kumpera <rkumpera@novell.com>
3535 * optflags-def.h: Removed sse3 optimization.
3539 * mini-x86.c (mono_arch_cpu_optimizazions): Remove detection of
3542 * mini-x86.c: Added mono_arch_cpu_enumerate_simd_versions.
3544 * mini.h: Added enumeration with simd versions.
3546 * simd-intrinsics.c (emit_intrinsics): Use the new static var
3549 * simd-intrinsics.c: Added mono_simd_intrinsics_init.
3551 * mini.c (mini_init): Call mono_simd_intrinsics_init.
3553 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
3555 * basic-simd.cs: Added tests for Vector8u and Vector16u.
3557 * basic-simd.cs: Fixed test naming.
3559 2008-10-09 Rodrigo Kumpera <rkumpera@novell.com>
3561 * mini-ops.h: Added ops for packed and saturated math, shifts
3562 and packing/unpacking.
3564 * cpu-x86.md: Added descriptors for the above ops.
3566 * mini-x86.c: Added code to emmit the above ops.
3568 * simd-intrinsics.c: Added support for Vector16u and Vector8u.
3570 2008-10-08 Zoltan Varga <vargaz@gmail.com>
3572 * aot-compiler.c (compile_method): Enable AOT for generic code.
3574 * ir-emit.h (NEW_DOMAINCONST): Use domainvars in AOT code as well.
3576 Wed Oct 8 16:35:43 CEST 2008 Paolo Molaro <lupus@ximian.com>
3578 * mini.c: add a workaround for a common screwup that ends up blamed
3579 to mono (other processes blocking signal delivery).
3581 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3583 * method-to-ir.c (mono_method_to_ir2): Clear ins_flag on all code paths
3584 in the LDFLD/STFLD opcodes. Fixes #432673.
3586 * iltests.il.in: Add a new test.
3588 Tue Oct 7 19:59:07 CEST 2008 Paolo Molaro <lupus@ximian.com>
3590 * mini-arm.c: attach the thread in unmanaged->managed transitions
3591 using delegates (bug #433148).
3593 2008-10-07 Rodrigo Kumpera <rkumpera@novell.com>
3595 * basic-simd.cs: Use new ShuffleSel constants.
3597 2008-10-07 Rodrigo Kumpera <rkumpera@novell.com>
3599 * driver.c (opt_sets): Added combinations of simd, sse2 and sse3.
3601 * mini-x86.c (mono_arch_cpu_optimizazions): Detect sse3 and now
3602 only disable simd intrinsics if no sse2 is detected.
3604 * optflags-def.h: Added sse3.
3606 * simd-intrinsics.c: Avoid generated sse3 intrinsics if the optimization
3609 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3611 * aot-compiler.c (add_wrappers): Fix Delegate/MulticastDelegate classes
3612 when adding delegate-invoke wrappers.
3614 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3616 * Makefile.am: Reenable the simd tests.
3618 2008-10-07 Bill Holmes <billholmes54@gmail.com>
3620 * mini-amd64.c (mono_arch_emit_outarg_vt) : In the ArgValuetypeAddrInIReg case,
3621 add a call to mono_call_inst_add_outarg_reg for the arg->dreg to make sure that no
3622 other vreg is allocated to that hreg.
3624 Contributed under MIT/X11 license.
3626 2008-10-07 Zoltan Varga <vargaz@gmail.com>
3628 * Makefile.am: Disable the simd tests for now as Mono.Simd is not
3631 2008-10-06 Rodrigo Kumpera <rkumpera@novell.com>
3633 * basic-simd.cs: New test suite for SIMD intrinsics.
3635 * Makefile.am: Added new tests.
3637 2008-10-06 Rodrigo Kumpera <rkumpera@novell.com>
3639 * cpu-x86.md: Added new instructions to handle float to int using SSE regs.
3643 * mini-x86.h: Enable mono_arch_decompose_opts if simd intrinsics are enabled.
3645 * mini-x86.c (mono_arch_decompose_opts): Decompose float to int conversion
3646 using SSE2 aware opcodes.
3648 * mini-x86.c (emit_float_to_int): Disable the SSE2 optimization if OPT_SIMD
3649 is enabled, this code path is only reachable if conversion ops are emmited after
3652 * mini.h: Added MonoCompile::fconv_to_r8_x_var to hold the float to int var.
3654 This optimization saves 6 bytes per conversion against the old version.
3656 2008-10-06 Zoltan Varga <vargaz@gmail.com>
3658 * aot-compiler.c (compile_method): Don't skip methods referencing
3659 generic methods without a corresponding entry in token_info_hash, since
3660 encode_method_ref () can handle all generic methods now.
3662 * method-to-ir.c (mono_save_token_info): Don't save the token info if a
3663 generic context is set.
3665 * method-to-ir.c (mono_method_to_ir2): Put back a disable_aot for
3666 generic sharing of LDTOKEN.
3668 2008-10-06 Mark Probst <mark.probst@gmail.com>
3670 * mini-amd64.h: Temporarily disabled fast virtual generic method
3671 calls because it breaks the System.Runtime.Remoting tests.
3673 2008-10-06 Zoltan Varga <vargaz@gmail.com>
3675 * aot-compiler.c (add_wrappers): Add delegate-invoke wrappers.
3677 * method-to-ir.c (check_inline_called_method_name_limit): Return TRUE
3678 so inlining actually works.
3679 (check_inline_caller_method_name_limit): Ditto.
3681 Mon Oct 6 11:04:38 CEST 2008 Paolo Molaro <lupus@ximian.com>
3683 * mini-ppc.c: mono_arch_flush_icache () cast pointer using gsize for
3684 64 bit safety (from Olaf Hering and Andreas Färber).
3686 2008-10-06 Zoltan Varga <vargaz@gmail.com>
3688 * mini-trampolines.c (mono_aot_trampoline): Delegate processing to
3689 mono_magic_trampoline () if aot_get_method_from_token () fails. Remove
3690 unused virtual call support code.
3692 * aot-runtime.c (decode_method_ref): Add a 'no_aot_trampoline' out argument.
3694 * aot-runtime.c (mono_aot_get_method_from_vt_slot): Return NULL for methods
3695 which can't use aot trampolines.
3696 (decode_patch): Don't create aot trampolines for methods which can't use
3699 * aot-compiler.c (encode_method_ref): Add a marker for methods which can't
3700 use aot trampolines.
3702 * mini.h: Bump AOT image format version.
3704 2008-10-05 Zoltan Varga <vargaz@gmail.com>
3706 * method-to-ir.c (mono_method_to_ir2): Pass cil_method instead of cmethod
3707 to save_token_info () since cmethod is inflated for constrained calls.
3709 * mini-<ARCH>.h mini-x86.c: Remove some unused defines.
3711 2008-10-04 Andreas Färber <andreas.faerber@web.de>
3713 * Makefile.am: Add build rules for ppc64.
3714 This avoids the build failing at pedump with unresolved symbols
3715 due to lack of arch_sources. Instead it will now fail earlier
3716 due to lack of cpu-ppc64.md.
3718 Contributed under MIT/X11 license.
3720 2008-10-04 Mark Probst <mark.probst@gmail.com>
3722 * mini-amd64.c (mono_arch_emit_call): Support stack arguments for
3725 * iltests.il.in: Add test case for tail call with many arguments.
3727 2008-10-03 Zoltan Varga <vargaz@gmail.com>
3729 * method-to-ir.c (mono_method_to_ir2): Add an !cfg->compile_aot assert
3730 to the fast virtual generic method code until the aot case is fixed.
3732 2008-10-03 Mark Probst <mark.probst@gmail.com>
3734 * mini-ppc.c, mini-ppc.h: Implement generic virtual method thunks.
3736 2008-10-03 Mark Probst <mark.probst@gmail.com>
3738 * mini-amd64.c, mini-amd64.h: Implement generic virtual method
3741 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
3743 * simd-intrinsics.c: Forgot to add this one.
3745 * mini-codegen.c: Fix macro in case SIMD is not supported.
3747 2008-10-03 Rodrigo Kumpera <rkumpera@novell.com>
3749 This patch land initial JIT support for simd intrinsics.
3751 * mini-x86.h: Added new define to make --enable_minimal work on x86.
3753 * Makefile.am: Added simd-intrinsics.c
3755 * simd-intrinsics.c: New file with simd instrinsic related
3758 * cfold.c (mono_constant_fold_ins2): Fold XZERO.
3760 * cpu-x86.md: Add simd related instructions.
3762 * driver.c: Added MONO_OPT_SIMD to the default set of optimizations.
3764 * driver.c: Added two new --regression variants.
3766 * ir-emit.h (MONO_EMIT_NEW_VZERO): Emit XZERO if the type is a simd intrinsic.
3768 * local-propagation.c (mono_local_cprop2): Eliminate useless XMOVE.
3770 * local-propagation.c (mono_local_deadce): Use new macro MONO_IS_NON_FP_MOVE and
3771 extract some complicated logic to helper functions.
3773 * method-to-ir.c (mono_type_to_regmove): Handle simd intrinsics.
3775 * method-to-ir.c (mini_emit_inst_for_method): Emit simd intrinsics.
3777 * method-to-ir.c (mono_handle_global_vregs): If a simd intrinsic was found, apply
3778 the specialized simplification pass.
3780 * method-to-ir.c (mono_spill_global_vars): Use new macro.
3782 * mini-codegen.c: Added SIMD constants to all regbanks arrays.
3784 * mini-codegen.c: Added reg_bank_table_init to initialize the reg desc -> bank
3787 * mini-codegen.c: Define a version of the reg_bank macro that uses desc_to_reg_type
3788 if MONO_ARCH_NEED_SIMD_BANK is defined.
3790 * mini-ops.h: Added the new simd ops.
3792 * mini-x86.c: Added mono_arch_xregname.
3794 * mini-x86.c (mono_arch_cpu_optimizazions): Disable MONO_OPT_SIMD if SSE3 is not detected.
3796 * mini-x86.c (mono_arch_output_basic_block): Add simd related opcodes.
3798 * mini-x86.h: Define simd related MONO_ARCH macros.
3800 * mini.c (mono_type_to_load_membase): Handle simd intrinsics.
3802 * mini.c (mono_type_to_store_membase): Handle simd intrinsics.
3804 * mini.h: Added new macros MONO_IS_NON_FP_MOVE, MONO_IS_REAL_MOVE, MONO_IS_ZERO and
3805 MONO_CLASS_IS_SIMD to deal with simd related IR.
3807 * mini.h (MonoInst): Added spill_var to the backend union.
3809 * mini.h (MonoCompile): Added uses_simd_intrinsics and iconv_raw_var.
3811 * mini.h: Added forward declarations of the new simd fuctions.
3813 * optflags-def.h: Added new optimization names SIMD.
3815 * regalloc.c (mono_regstate_reset): Set next vreg to be the max value of the 3 reg banks.
3817 * regalloc.h: Added support for working with 3 register banks.
3819 * regalloc.h (MonoRegState): Added xsymbolic field if a third regbank is required.
3821 * ssa2.c (mono_ssa_deadce2): Use new MONO_IS_ZERO macro.
3823 Fri Oct 3 16:03:22 CEST 2008 Paolo Molaro <lupus@ximian.com>
3825 * mini-exceptions.c: remove 64 bit related ifdef clutter.
3827 2008-10-03 Zoltan Varga <vargaz@gmail.com>
3829 * mini-exceptions.c (mono_handle_soft_stack_ovf): Unprotect two pages
3830 instead of one on 64 bit systems.
3832 * method-to-ir.c: Remove unused includes.
3834 2008-10-02 Zoltan Varga <vargaz@gmail.com>
3836 * aot-compiler.c (emit_exception_debug_info): Use jinfo->used_regs instead of
3837 cfg->used_int_regs, since the two are different on arm.
3839 2008-10-02 Mark Probst <mark.probst@gmail.com>
3841 * method-to-ir.c, inssel.brg, mini-trampolines.c: Use
3842 mono_method_get_vtable_index() to get the vtable index.
3844 2008-10-02 Mark Probst <mark.probst@gmail.com>
3846 * method-to-ir.c (mono_method_to_ir2): Don't create native
3847 wrappers for array methods, because they're never called (and if
3848 they were called they wouldn't work).
3850 2008-10-02 Mark Probst <mark.probst@gmail.com>
3852 * method-to-ir.c (mono_method_to_ir2): Array methods are
3853 special-cased and must not be invoked indirectly via the (M)RGCTX
3854 when generic sharing is turned on. Fixes #431413.
3856 2008-10-01 Mark Probst <mark.probst@gmail.com>
3858 * method-to-ir.c: When generic sharing is active, call
3859 non-interface virtual generic methods via the standard trampoline.
3861 * mini-trampolines.c: Handle virtual generic shared methods.
3863 * mini.h, mini-x86.c, mini-x86.h: New argument for
3864 mono_arch_build_imt_thunk() which is non-NULL for virtual generic
3865 method thunks and which is the trampoline to call if the lookup
3866 fails. Enable the virtual generic method thunk for x86.
3868 * mini-amd64.c, mini-arm.c, mini-ia64.c, mini-sparc.c,
3869 mini-ppc.c (mono_arch_build_imt_thunk): Add the additional
3870 argument but assert that it's NULL, because these archs don't yet
3871 implement the virtual generic method thunk. Changes in the IMT
3872 thunk data structures.
3874 2008-10-01 Zoltan Varga <vargaz@gmail.com>
3876 * aot-compiler.c (emit_globals): Avoid invalid characters in
3877 the static linking symbol.
3879 * objects.cs: Add a test for the range check optimization. Fix warnings.
3881 * branch-opts.c (mono_if_conversion): Add back the 'optimize range checks'
3882 optimization from the current JIT.
3884 * method-to-ir.c (mini_emit_inst_for_method): Decompose String.Length
3885 later in decompose_array_access_opts () to allow more optimizations.
3887 * method-to-ir.c (mono_handle_soft_float): Rename this to
3888 mono_decompose_soft_float () for consistency.
3890 * mini-ops.h: Fix arguments of OP_STRLEN.
3892 * method-to-ir.c (save_cast_details): Extract the cast details saving code
3893 into a separate function.
3894 (reset_cast_details): Ditto.
3895 (handle_unbox): Save cast details. Fixes #431254.
3897 * method-to-ir.c: Remove some obsolete FIXMEs.
3899 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3901 * ir-emit.h (alloc_dreg): Write a warning before crashing.
3903 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3905 * mini-codegen.c: More work on macros to make them
3906 ready for multiple regbanks.
3908 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3910 * method-to.ir.c (mono_type_to_regmove): Remove static modifier.
3912 * mini.h: Export mono_type_to_regmove. Fix signature of mono_regname_full.
3914 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3916 * mini-codegen.c (mono_spillvar_offset): Proper support for
3919 2008-09-30 Zoltan Varga <vargaz@gmail.com>
3921 * mini-amd64.c (mono_arch_emit_epilog): Remove some duplicated code from
3922 the stack overflow changes.
3924 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3926 * mini-codegen.c: Make all bank macros depend on reg_bank.
3928 * mini-codegen.c (mono_local_regalloc): Make free mask
3929 initialization regbank aware.
3931 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3933 * mini-codegen.c (mono_local_regalloc): Extract callee
3934 mask selection to a function and make it regbank aware.
3936 2008-09-30 Rodrigo Kumpera <rkumpera@novell.com>
3938 * mini-codegen.c (mono_local_regalloc): Changed the cloberring
3939 code to deal with many regbanks.
3941 2008-09-30 Zoltan Varga <vargaz@gmail.com>
3943 * mini-codegen.c: More fp->regbank changes.
3945 2008-09-29 Rodrigo Kumpera <rkumpera@novell.com>
3947 * mini-codegen.c: Change asserts to use MONO_NUM_REGBANKS instead
3948 of a hardcoded constant.
3950 2008-09-29 Rodrigo Kumpera <rkumpera@novell.com>
3952 * method-to-ir.c (type_from_stack_type): Fix typo.
3954 2008-09-29 Zoltan Varga <vargaz@gmail.com>
3956 * mini-ia64.c (emit_move_return_value): Convert float return values to
3959 * objects.cs: Add a new test.
3961 * mini-ia64.c (mono_arch_allocate_vars): Disable fp elimination for
3962 VARARG methods to fix an assert later.
3964 * mini-mips.h mini-mips.c mini-ops.h cpu-mips.md: Update the mips back
3965 end so it at least compiles.
3967 2008-09-28 Zoltan Varga <vargaz@gmail.com>
3969 * method-to-ir.c (emit_optimized_ldloca_ir): Fix this.
3971 2008-09-28 Rodrigo Kumpera <rkumpera@novell.com>
3973 * method-to-ir.c (mono_method_to_ir2): Extract the ldloca + initobj
3974 optimization to a new function (emit_optimized_ldloca_ir) and enable
3975 it for both ldloca and ldloca_s.
3977 2008-09-28 Zoltan Varga <vargaz@gmail.com>
3979 * method-to-ir.c (mono_method_to_ir2): Remove an unnecessary assert in the
3980 gshared CASTCLASS code.
3982 * driver.c (mono_main): Add a workaround for shutdown crashes seen on
3983 amd64, where the libc stack unwinder encounters stack frames referring to
3984 native code in unmapped memory.
3986 * method-to-ir.c (mini_emit_check_array_type): Add support for generic
3989 * generics.cs: Add new test.
3991 2008-09-27 Zoltan Varga <vargaz@gmail.com>
3993 * mini-arm.h driver.c: Print the fp model when using --version on arm. Also,
3994 add a check that one of the ARM_FPU_ constants is defined.
3996 * mini-exceptions.c (mono_handle_soft_stack_ovf): Really fix the build.
3998 * mini-exceptions.c: Fix build on non-altstack platforms.
4000 * method-to-ir.c (mono_method_to_ir2): Fix aot support for the
4003 * ir-emit.h: Add a comment to NEW_PCONST.
4005 * mini-exceptions.c (mono_altstack_restore_prot): Fix a warning.
4007 * mini.h (MonoJitDomainInfo): Move some fields here from MonoDomain.
4009 * mini.c aot-runtime.c method-to-ir.c driver.c mini-trampolines.c: Update
4010 after the changes to MonoJitDomainInfo.
4012 2008-09-27 Mark Probst <mark.probst@gmail.com>
4014 * mini-ppc.c, tramp-ppc.c, mini-ppc.h: Implement generic code sharing.
4016 2008-09-27 Mark Probst <mark.probst@gmail.com>
4018 * mini-ppc.c: Compiler warning fixes.
4020 2008-09-27 Mark Probst <mark.probst@gmail.com>
4022 * mini-ppc.c: Special handling for 1/2 byte structs on Darwin only
4025 2008-09-27 Mark Probst <mark.probst@gmail.com>
4027 * exceptions-ppc.c, mini-ppc.h: Compile
4028 mono_arch_handle_altstack_exception() on Darwin, too.
4030 2008-09-27 Mark Probst <mark.probst@gmail.com>
4032 * method-to-ir.c (mono_emit_rgctx_method_call_full): Must also
4033 work on archs which don't have generic sharing implemented, only
4034 without the vtable_arg.
4036 2008-09-26 Mark Probst <mark.probst@gmail.com>
4038 * mini.c: Added comment explaining why delegate ctor icall
4039 wrappers are compiled.
4041 2008-09-26 Mark Probst <mark.probst@gmail.com>
4043 * mini.c: Don't produce trampolines to delegate ctor icall
4044 wrappers but compile them upfront.
4046 Fri Sep 26 17:00:46 CEST 2008 Paolo Molaro <lupus@ximian.com>
4048 * mini-amd64.c, mini-amd64.h, tramp-amd64.c: amd64 support code for calling a
4049 runtime-set function when going back to managed code. Currently this
4050 is used to set back the protection on the soft ovf pages and/or to
4051 throw the stack overflow exception that happened in unmanaged code.
4053 Fri Sep 26 16:46:23 CEST 2008 Paolo Molaro <lupus@ximian.com>
4055 * tramp-x86.c, mini-x86.h, mini-x86.c: x86 support code for calling a
4056 runtime-set function when going back to managed code. Currently this
4057 is used to set back the protection on the soft ovf pages and/or to
4058 throw the stack overflow exception that happened in unmanaged code.
4060 Fri Sep 26 16:34:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
4062 * mini.h, mini.c, mini-trampolines.c, mini-exceptions.c: added
4063 the support code for restoring stack protection after stack overflows
4064 that happen in unmanaged code. Don't set the exec permission on the
4067 2008-09-26 Zoltan Varga <vargaz@gmail.com>
4069 * mini-trampolines.c (mono_delegate_trampoline): Add wrappers even if
4070 delegate->method_ptr is set. Fixes #428054.
4072 2008-09-25 Zoltan Varga <vargaz@gmail.com>
4074 * tests.cs: Rename to ratests.cs.
4076 * method-to-ir.c: Merge the emit_get_rgctx () calls into the
4077 emit_get_rgctx_... functions.
4079 2008-09-25 Mark Probst <mark.probst@gmail.com>
4081 * method-to-ir.c: Eliminated macro EMIT_GET_RGCTX.
4083 2008-09-25 Mark Probst <mark.probst@gmail.com>
4085 * mini-trampolines.c (mono_magic_trampoline): Unwrap wrappers
4086 before asserting that method is sharable.
4088 2008-09-25 Mark Probst <mark.probst@gmail.com>
4090 * method-to-ir.c, mini.c, jit-icalls.c: New function for checking
4091 whether method needs a static RGCTX wrapper used instead of
4094 * generic-sharing.c, mini.h: A few functions moved to
4095 metadata/generic-sharing.c.
4097 2008-09-25 Mark Probst <mark.probst@gmail.com>
4099 * method-to-ir.c, mini.c, mini-exceptions.c, mini-trampolines.c:
4100 Generic code sharing for value types, which essentially means
4101 treating value type methods like static methods. The RGCTX is
4102 passed in the same way.
4104 2008-09-25 Zoltan Varga <vargaz@gmail.com>
4106 * method-to-ir.c (mono_method_to_ir2): Avoid an assert in the NEWOBJ
4107 opcode when creating multi-dimensional arrays of open types.
4109 * generic-sharing.c (mono_method_check_context_used): Handle arrays of
4112 * generics.cs: Add a test.
4114 * mini-codegen.c: Use macros everywhere for checking floats instead of == 'f'.
4116 2008-09-24 Zoltan Varga <vargaz@gmail.com>
4118 * mini.h (MonoCompile): Add 'disable_vreg_to_lvreg' flag.
4120 * mini.c (mini_method_compile): Set it when running under the debugger.
4122 * method-to-ir.c (mono_handle_global_vregs): Disable global->local
4123 vreg optimization if the flag is set.
4125 * driver.c (mono_main): Add --attach= option to pass options to
4128 * mini.c (sigquit_signal_handler): Start the attach agent.
4130 * ssapre.c: Disable this to save space since it is not yet ported to
4133 * regalloc2.c: Disable this to save space.
4135 * mini.h (MonoJitStats): Remove unused analyze_stack_repeat.
4137 Wed Sep 24 16:01:49 CEST 2008 Paolo Molaro <lupus@ximian.com>
4139 * decompose.c, method-to-ir.c, mini-codegen.c, regalloc2.c: make
4140 the -v option useful again.
4142 2008-09-24 Zoltan Varga <vargaz@gmail.com>
4144 * mini-amd64.c (mono_arch_output_basic_block): Add support for
4147 * inssel.brg (mini_emit_castclass): Avoid the szarray!=array checks for
4148 arrays of arrays. Fixes #428406.
4150 * method-to-ir.c (mini_emit_castclass): Ditto.
4152 * objects.cs: Add new test.
4154 2008-09-23 Rodrigo Kumpera <rkumpera@novell.com>
4156 * method-to-ir.c (type_to_eval_stack_type): The code path for the new JIT
4157 was wrong at it choked against target_type_is_incompatible for byref types.
4159 2008-09-23 Zoltan Varga <vargaz@gmail.com>
4161 * mini-codegen.c: Use 'bank' macros instead of 'is_fp' macros in most
4164 Tue Sep 23 15:31:45 CEST 2008 Paolo Molaro <lupus@ximian.com>
4166 * mini-exceptions.c: update a few more exceptions-related counters.
4168 Tue Sep 23 15:28:29 CEST 2008 Paolo Molaro <lupus@ximian.com>
4170 * aot-runtime.c, method-to-ir.c, mini.c, mini-trampolines.c: use the
4171 new functions to allocate from persistent mempools.
4173 2008-09-23 Zoltan Varga <vargaz@gmail.com>
4175 * mini.h regalloc.h mini-codegen.c: Generalize the regalloc code to allow
4176 multiple register banks in the future.
4178 * mini-codegen.c (mono_local_regalloc): Fix a warning.
4180 2008-09-22 Rodrigo Kumpera <rkumpera@novell.com>
4182 * mini.c (type_to_eval_stack_type): Remove duplicated function.
4184 * method-to-ir.c (type_to_eval_stack_type): Make this version compatible with both JIT.
4186 * mini.h: Export type_to_eval_stack_type.
4188 This function was nearly duplicated in method-to-ir.c and mini.c. The difference
4189 is only ins->klass of byref types.
4191 2008-09-22 Zoltan Varga <vargaz@gmail.com>
4193 * method-to-ir.c (mini_emit_memset): Use a default alignment of 4.
4194 (mini_emit_memcpy2): Ditto.
4196 * mini-amd64.c: Fix a warning.
4198 2008-09-21 Mark Probst <mark.probst@gmail.com>
4200 * exceptions-ppc.c (mono_arch_get_call_filter): Fixed stack frame
4203 2008-09-19 Rodrigo Kumpera <rkumpera@novell.com>
4205 * method-to-ir.c: Extract stloc micro-optimization to a
4206 function and apply it to all cases.
4208 2008-09-19 Mark Probst <mark.probst@gmail.com>
4210 * method-to-ir.c: Don't fail generic code sharing in cases we
4213 2008-09-18 Mark Probst <mark.probst@gmail.com>
4215 * mini-ppc.c: Handle structs in tailcalls on Darwin.
4217 Tue Sep 16 21:07:11 CEST 2008 Paolo Molaro <lupus@ximian.com>
4219 * *.c, *.md, mini-ops.h: introduced relaxed_nop opcode for spin wait
4222 Tue Sep 16 16:39:16 CEST 2008 Paolo Molaro <lupus@ximian.com>
4224 * trace.c: make tracing more useful and correct, with per-thread
4227 2008-09-15 Mark Probst <mark.probst@gmail.com>
4229 * mini-ppc.c (mono_arch_emit_call): Convert floats to R4 when
4230 doing a method call and the argument is an R4.
4232 2008-09-14 Zoltan Varga <vargaz@gmail.com>
4234 * aot-compiler.c (add_wrappers): Do not generate runtime invoke wrappers for
4237 2008-09-13 Mark Probst <mark.probst@gmail.com>
4239 * mini-ppc.c: Convert result to single for OP_ICONV_TO_R4.
4241 2008-09-12 Zoltan Varga <vargaz@gmail.com>
4243 * mini.h (MONO_IS_JUMP_TABLE): Handle GOT_ENTRY.
4244 (MONO_JUMP_TABLE_FROM_INS): Ditto.
4246 2008-09-11 Zoltan Varga <vargaz@gmail.com>
4248 * driver.c: Add a --agent argument (not supported yet) to load managed
4249 agent assemblies before loading the main assembly, similarly to how the
4250 Java VM handles agents.
4252 2008-09-11 Mark Probst <mark.probst@gmail.com>
4254 * mini-ppc.c (mono_arch_allocate_vars): Use arch-independent
4255 function to do stack layout of local variables.
4257 2008-09-11 Mark Probst <mark.probst@gmail.com>
4259 * mini-ppc.c (calculate_sizes): Bugfix in sigcookie position
4262 2008-09-11 Zoltan Varga <vargaz@gmail.com>
4264 * method-to-ir.c ssa2.c mini.c mini-amd64.c decompose.c ssa.c abcremoval.c
4265 abcremoval2.c branch-opts.c driver.c dominators.c: Disable parts of the
4266 JIT if DISABLE_JIT is defined.
4268 * Makefile.am: Avoid compiling/linking in inssel.c if DISABLE_JIT is
4271 2008-09-10 Mark Probst <mark.probst@gmail.com>
4273 * iltests.il.in: Disable the fconv test on PPC (the result is
4274 undefined according to ECMA).
4276 2008-09-10 Mark Probst <mark.probst@gmail.com>
4278 * iltests.il.in: Enable tail call tests for PPC.
4280 * mini.h: Add variable for storing incoming valuetype argument
4281 addresses for tail calls.
4283 * mini-ppc.c: Implement valuetype arguments and return values for
4286 2008-09-09 Mark Probst <mark.probst@gmail.com>
4288 * mini-ppc.c: Partially implement tail calls (struct arguments and
4289 return values not supported).
4291 * method-to-ir.c: Enable tail calls on PPC.
4293 2008-09-08 Zoltan Varga <vargaz@gmail.com>
4295 * aot-compiler.c (emit_wrapper_info): Omit the klass name from
4296 runtime-invoke wrappers to work around the problem of them getting
4297 assigned to a random class.
4299 * aot-runtime.c (mono_aot_get_method): Ditto.
4301 2008-09-07 Zoltan Varga <vargaz@gmail.com>
4303 * mini-exceptions.c mini-mips.h mini-s390.h exceptions-mips.c: Kill
4304 the CUSTOM_EXCEPTION_HANDLING and CUSTOM_STACK_WALK defines.
4306 2008-09-07 Mark Probst <mark.probst@gmail.com>
4308 * method-to-ir.c (mono_method_to_ir2): Disable tail calls for PPC
4309 until they're implemented properly.
4311 * exceptions-ppc.c: Use arch-independent exception-handling code
4312 instead of custom one.
4314 * exceptions-ppc.c, mini-ppc.c, mini-ppc.h: Bug fixes and changes
4317 * tramp-ppc.c, mini-ppc.c: Fixed warnings.
4319 * decompose.c, aot-runtime.c, aot-compiler.c: PPC code also
4320 applies when __powerpc__ is defined.
4322 2008-09-06 Zoltan Varga <vargaz@gmail.com>
4324 * aot-runtime.c (mono_aot_get_method): Add another cache mapping wrapper
4325 methods to their code to avoid computing the full name of wrappers and
4326 doing a lookup in a string hash table.
4328 2008-09-05 Zoltan Varga <vargaz@gmail.com>
4330 * method-to-ir.c: Remove the CHECK_BBLOCK () stuff it is not needed since
4331 we identify bblocks before method_to_ir () is ran.
4333 * branch-opts.c (mono_optimize_branches): Avoid nullifying the exit bblock.
4334 Also avoid optimizing branches pointing to themselves.
4336 * mini.c (mini_method_compile): Ditto. Fixes #422947.
4338 2008-09-05 Rodrigo Kumpera <rkumpera@novell.com>
4340 * driver.c (mono_main): Enable the new verifier under core-clr and cas.
4342 2008-09-05 Zoltan Varga <vargaz@gmail.com>
4344 * tramp-arm.c (mono_arch_nullify_class_init_trampoline): Implement this.
4345 (mono_arch_patch_plt_entry): Fix the calculation of the jump_entry.
4346 (mono_arch_get_nullified_class_init_trampoline): Return 'code' instead of
4349 * aot-compiler.c (emit_plt): Fix the arm plt entries, previously they all
4350 jumped to the same entry in plt_jump_table.
4352 2008-09-02 Rodrigo Kumpera <rkumpera@novell.com>
4354 * method-to-ir.c (initialize_array_data): Handle field with RVA from
4357 2008-08-31 Zoltan Varga <vargaz@gmail.com>
4359 * method-to-ir.c (handle_isinst): Do the assignment at the beginning, so the
4360 other assignment can be if converted. Saves 1.5% on corlib size and fixes
4363 2008-08-29 Geoff Norton <gnorton@novell.com>
4365 * aot-compiler.c: The Mach/ARM compiler doesn't understand the bss
4366 segment, and doesn't properly handle .space as .text. Fixes
4369 2008-08-29 Geoff Norton <gnorton@novell.com>
4371 * mini.c: Disable the mach exception handler when running on
4374 2008-08-29 Geoff Norton <gnorton@novell.com>
4376 * aot-compiler.c: Patch from Renaldas Zioma to properly register
4377 globals on Darwin/ARM
4379 2008-08-28 Zoltan Varga <vargaz@gmail.com>
4381 * mini.c: Avoid not initializing the runtime when doing AOT compilation,
4382 since too many things depend on it. Instead, call
4383 mono_runtime_set_no_exec ().
4385 * mini.c (mono_create_tls_get): Call mono_alloc_preg (cfg) when running with
4388 * aot-compiler.c: Add an 'asm-only' AOT option.
4390 * mini.c: Avoid initializing the runtime when doing AOT compilation.
4392 * aot-compiler.c (compile_method): Disable gshared support for now as it
4395 2008-08-27 Bill Holmes <billholmes54@gmail.com>
4397 * mini-amd64.h : Fix a compiler warning.
4399 * exceptions-amd64.c (mono_arch_unwindinfo_install_unwind_info) :
4400 Changed to use a callback function to retrieve the unwind info.
4401 This avoids problems observed when code blocks were removed by
4402 unloading an app domain.
4404 * mini-amd64.c (mono_arch_cpu_optimizazions) : Removing the peephole
4405 and branch excludes for Winx64. The fix in exceptions-amd64.c allows them
4408 Contributed under MIT/X11 license.
4410 2008-08-27 Bill Holmes <billholmes54@gmail.com>
4412 * mini-amd64.c (mono_arch_output_basic_block) : Fix the OP_X86_PUSH_OBJ
4413 case to keep the stack aligned to 8.
4415 Contributed under MIT/X11 license.
4417 2008-08-26 Zoltan Varga <vargaz@gmail.com>
4419 * aot-runtime.c (mono_aot_get_method): Add a cache for wrapper names to
4420 avoid repeated linear searches.
4422 2008-08-25 Zoltan Varga <vargaz@gmail.com>
4424 * aot-compiler.c (add_wrappers): Avoid calling get_runtime_invoke with
4425 methods it can't handle.
4427 * aot-compiler.c (add_method): Avoid adding a method twice.
4428 (add_wrappers): Add runtime invoke wrappers for all methods.
4430 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline_full): New
4431 function to create an aot-compatible version of this trampoline.
4433 * aot-compiler.c aot-runtime.c: Add support for AOT rgctx fetch trampolines.
4435 2008-08-24 Zoltan Varga <vargaz@gmail.com>
4437 * aot-compiler.c (compile_method): Skip wrappers of generic icalls.
4439 * method-to-ir.c (mono_method_to_ir2): Replace an assert in UNBOX_ANY
4440 with a generic sharing failure.
4442 * aot-compiler.c (emit_klass_info): Call mono_class_get_nested_types ().
4444 * method-to-ir.c (mono_method_to_ir2): Rethrow the correct exception in
4445 CEE_RETHROW. Fixes #419634.
4447 * mini.c (mono_method_to_ir): Ditto.
4449 * exceptions.cs: Add a new test.
4451 * generic-sharing.c (mini_type_stack_size): Always pass TRUE as allow_open
4452 to mono_type_stack_size_internal () since some callers might not pass in
4455 * mini-x86.c (mono_arch_emit_prolog): Store the rgctx before calling
4456 instrument_prolog. Fixes #419878.
4458 * mini.c (mono_compile_create_var_for_vreg): Make the lvars representing
4459 doubles in soft float mode volatile.
4461 2008-08-23 Zoltan Varga <vargaz@gmail.com>
4463 * ir-emit.h (NEW_ARGSTORE): Use cfg->args and cfg->arg_types to fix the build.
4465 * method-to-ir.c (mono_save_args): Use ARGSTORE instead of TEMPSTORE
4466 to handle soft float correctly.
4468 * tramp-arm.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Implement
4471 * mini.h (struct MonoCallInst): Add dynamic_imt_arg boolean field.
4473 * exceptions-arm.c (mono_arch_find_jit_info): Set ctx->regs [ARMREG_R11]
4474 to sp, since the generics catch code requires it.
4476 * mini-arm.h (MONO_ARCH_VTABLE_REG): Use R0 for this to avoid needless
4479 * method-to-ir.c (emit_imt_argument): Pass imt_arg to
4480 mono_arch_emit_imt_argument ().
4482 * mini-<ARCH>.c (mono_arch_emit_imt_argument): Add an 'imt_arg' argument.
4484 * mini-arm.c tramp-arm.c: Generic sharing updates.
4486 2008-08-22 Zoltan Varga <vargaz@gmail.com>
4488 * mini-arm.c: Fix the arm build.
4490 * generic-sharing.c (mini_type_get_underlying_type): New helper function
4491 handling enums, generic instances and generic sharing.
4492 (mini_type_stack_size_full): Ditto.
4494 * mini-amd64.c mini-x86.c mini-arm.c: Use the new functions.
4496 * mini.h (struct): Add 'uses_rgctx_reg' and 'uses_vtable_reg' fields.
4498 * method-to-ir.c: Set the new fields when using RGCTX_REG/VTABLE_REG.
4500 * tramp-arm.c: Implement the rgctx fetch and the generic class init
4503 * mini-arm.c: Various small generic sharing changes.
4505 * tramp-x86.c (mono_arch_create_generic_class_init_trampoline): Implement
4507 (mono_arch_create_trampoline_code): Remove most of the GENERIC_CLASS_INIT
4510 * mini-trampolines.c (mono_create_generic_class_init_trampoline): New
4511 helper function to return a generic class init trampoline.
4513 * method-to-ir.c mini.c: Use it.
4515 * tramp-amd64.c (mono_arch_create_generic_class_init_trampoline): New
4516 arch-specfic function to return a generic class init trampoline.
4518 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Remove most of
4519 the GENERIC_CLASS_INIT custom code.
4521 * method-to-ir.c (mono_method_to_ir2): If RGCTX_REG is not defined, that is
4522 a fatal error, not a sharing failure.
4524 * tramp-<ARCH>.c (mono_arch_get_rgctx_lazy_fetch_offset): Removed, no longer
4527 * mini-trampolines.c (mono_rgctx_lazy_fetch_trampoline): Get the additional
4528 trampoline argument from MONO_ARCH_VTABLE_REG.
4530 * tramp-x86.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4531 order of the arguments to the C trampoline: pass 'slot' as the trampoline
4532 argument, and pass the vtable in VTABLE_REG.
4534 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Change the
4535 order of the arguments to the C trampoline: pass 'slot' as the trampoline
4536 argument, and pass the vtable in VTABLE_REG.
4537 (mono_arch_create_trampoline_code_full): Remove some special casing for
4538 the rgctx fetch trampoline.
4540 * mini.c (mono_method_to_ir): Fix the STELEM_ANY+null value optimization.
4543 * iltests.il: Add a test for it.
4545 2008-08-21 Zoltan Varga <vargaz@gmail.com>
4547 * aot-compiler.c (compile_method): Enable AOT support for generics sharing.
4549 * method-to-ir.c (mono_method_to_ir2): Remove an aot restriction which is
4552 * mini-trampolines.c (mono_magic_trampoline): Add a sync wrapper here,
4553 use mono_jit_info_table_find () to avoid recursion.
4554 (mono_delegate_trampoline): Add a sync wrapper here.
4556 * method-to-ir.c (mono_method_to_ir2): Don't call mono_ldftn_nosyc
4559 * mini.c (mono_method_to_ir): Ditto.
4561 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Remove
4562 add_sync_wrapper argument. Don't add a sync wrapper here.
4563 (mono_create_jump_trampoline): Don't add a sync wrapper here.
4565 * jit-icalls.c (mono_ldftn_nosync): Removed, no longer needed.
4567 2008-08-20 Bill Holmes <billholmes54@gmail.com>
4569 * exceptions-amd64.c (seh_handler): For Winx64 adding missing copy
4570 of nonvolatile registers back from MonoContext to CONTEXT.
4572 Contributed under MIT/X11 license.
4574 2008-08-20 Bill Holmes <billholmes54@gmail.com>
4576 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): When shifting the
4577 arguments on Winx64 there are only 4 argument registers. For this
4578 logic to work the last argument must be pulled from the stack.
4580 Contributed under MIT/X11 license.
4582 2008-08-20 Zoltan Varga <vargaz@gmail.com>
4584 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4586 * aot-runtime.c aot-compiler.c patch-info.h mini.c: Get rid of
4587 MONO_PATCH_INFO_WRAPPER, encode/decode wrapper methods like the others in
4588 encode/decode_method_ref ().
4590 * aot-compiler.c (encode_patch): Handle STATIC_RGCTX_INVOKE wrappers.
4592 * aot-runtime.c (decode_patch): Ditto.
4594 * mini.c (mono_resolve_patch_target): Handle RGCTX_FETCH sub-patches of type
4595 MONO_PATCH_INFO_METHOD.
4597 * aot-runtime.c (decode_exception_debug_info): Decode the contents of
4600 * aot-compiler.c (emit_exception_debug_info): Emit the contents of
4603 * method-to-ir.c (emit_imt_argument): Fix AOT+gshared support.
4605 * mini-amd64.c (add_valuetype): Use a dummy gsctx if we didn't receive
4606 one from the caller.
4608 * aot-runtime.c (decode_generic_inst): New function to decode and
4609 return a interned generic inst.
4610 (decode_klass_ref): Use it.
4611 (decode_method_ref): Ditto.
4613 * aot-compiler.c (emit_exception_debug_info): Save
4614 jinfo->has_generic_jit_info too.
4616 2008-08-19 Zoltan Varga <vargaz@gmail.com>
4618 * mini-ia64.c (mono_arch_output_basic_block): Add OP_FCONV_TO_I.
4620 * iltests.il.in: Add a test for fconv_to_i.
4622 * liveness.c: Disable the liveness2 pass for now to save space.
4624 * regalloc2.c: Include mempool-internals.h to fix warnings.
4626 * aot-compiler.c (encode_method_ref): Encode the context of generic
4629 * aot-runtime.c (decode_method_ref): Inflate generic methods using
4630 the context saved in the aot file.
4632 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
4634 * mini-x86.c (mono_arch_output_basic_block): Disable AOT for OP_JMP.
4636 * method-to-ir.c (mono_method_to_ir2): When using CEE_JMP, make arguments
4637 volatile so they won't be optimized away.
4639 2008-08-19 Rodrigo Kumpera <rkumpera@novell.com>
4645 * dominators.c: Remove duplicated functions that now are in
4646 mempool-internals.h.
4648 2008-08-19 Zoltan Varga <vargaz@gmail.com>
4650 * aot-compiler.c: Fix warnings.
4652 * aot-runtime.c (decode_klass_ref): Add support for VARs/MVARs.
4654 * aot-compiler.c (encode_klass_ref): Encode is_method too for VARs/MVARs.
4656 * method-to-ir.c (emit_get_rgctx_method): Use MONO_PATCH_INFO_METHODCONST
4659 * mini.c (mono_resolve_patch_target): Ditto.
4661 * aot-compiler.c (encode_patch): Add support for RGCTX_FETCH.
4662 (encode_klass_ref): Add support for encoding VARs/MVARs.
4664 * mini.c (mono_patch_info_dup_mp): Handle RGCTX_FETCH.
4666 * aot-runtime.c (decode_patch_info): Rename to 'decode_patch'. Split out
4667 the handling of the got entries into a separate 'decode_got_entry' function.
4668 Add support for RGCTX_FETCH.
4670 * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RDI since RAX is
4671 clobbered by the trampoline code.
4673 * tramp-amd64.c mini-amd64.h: Change the VTABLE_REG to RAX since that is
4674 not clobbered by the indirect calling code.
4676 2008-08-18 Zoltan Varga <vargaz@gmail.com>
4678 * mini-x86.c (mono_arch_patch_code): Handle RGCTX_FETCH/GENERIC_CLASS_INIT
4681 2008-08-18 Rodrigo Kumpera <rkumpera@novell.com>
4683 * method-to-ir.c (mono_emit_method_call_full): Alloc the constructor
4684 signature using the compilation mempool otherwise we would leak it.
4686 2008-08-18 Zoltan Varga <vargaz@gmail.com>
4688 * method-to-ir.c (mono_method_to_ir2): Emit the generic class inits using
4689 mono_emit_abs_call ().
4691 * patch-info.h: Add GENERIC_CLASS_INIT.
4693 * mini.c (mono_resolve_patch_target): Handle GENERIC_CLASS_INIT.
4695 * mini-amd64.c (emit_call_body): Treat abs calls which have a patch info
4696 as their target as a near call.
4698 * mini.c (mono_codegen): Handle patches stored in cfg->abs_patches in the
4700 (mono_resolve_patch_target): Add support for MONO_PATCH_INFO_RGCTX_FETCH.
4702 * method-to-ir.c (mono_emit_abs_call): New helper function which emits a
4703 call to a runtime function described by a patch.
4705 * method-to-ir.c: Emit rgctx entry fetches and class init trampolines using
4706 mono_emit_abs_call, this has the advantage that the ABS handling code in
4707 mono_codegen () can handle them both, and can handle other stuff in the
4708 future without additional code.
4710 * mini.h (struct MonoJumpInfoRgctxEntry): New structure describing an rgctx
4712 (MonoCompile): Add 'abs_patches' hashtable, which contains patches describing
4715 * mini.h: Add missing bblock related prototypes.
4717 * mini.h (MonoCompile): Remove unused reverse_inst_list and
4718 reverse_inst_list_len fields.
4720 * mini.c: Refactor this file a bit by moving branch optimizations to
4723 * method-to-ir.c: Merge generic sharing changes missed earlier.
4725 * aot-compiler.c (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST.
4727 * aot-runtime.c (decode_patch_info): Refactor the code dealing with the
4728 shared patches. Process METHODCONST as a shared patch.
4730 * liveness.c (mono_analyze_liveness): Disable the liveness2 code for now
4731 as it crashes on the 2.0 mscorlib.
4733 * aot-compiler.c (is_shared_got_patch): Revert the last change as it seems
4736 * aot-compiler.c: Use is_plt_patch () in a few additional places.
4737 (is_shared_got_patch): Add MONO_PATCH_INFO_METHODCONST, which is generated
4740 * aot-compiler.c: Reorganize the got handling code to be a bit more
4743 2008-08-17 Zoltan Varga <vargaz@gmail.com>
4745 * aot-compiler.c: Make the patch_to_plt_offset hash table use
4746 mono_patch_info_equals/hash, and use it to massively simplify
4749 * mini.c (mono_patch_info_hash): Simplify this and add support for
4752 * patch-info.h: Rename RGCTX_LAZY_FETCH_TRAMPOLINE to just RGCTX_FETCH.
4754 * mini.c aot-compiler.c aot-runtime.c: Revert the LAZY_FETCH_TRAMPOLINE
4755 handling code, since an offset is not enough to identify a trampoline.
4757 * method-to-ir.c: Remove some g_assert (!cfg->compile_aot) lines.
4759 2008-08-17 Mark Probst <mark.probst@gmail.com>
4761 * mini.c (mono_op_imm_to_op): Add case for OP_IMUL_IMM.
4763 * method-to-ir.c (mono_method_to_ir2): Decompose OP_CKFINITE.
4765 * mini-ops.h: Argument and result types for OVF_CARRY ops.
4767 * decompose.c: PPC decompositions for various ops.
4769 * cpu-ppc.md, inssel-ppc.brg, mini-ppc.c: PPC changes for Linear IL.
4771 2008-08-17 Zoltan Varga <vargaz@gmail.com>
4773 * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Make this
4774 call the generic trampoline code using a call, instead of a jump, to
4775 remove some special casing from the generic trampoline code.
4777 * mini.c (mono_resolve_patch_target): Handle LAZY_FETCH_TRAMPOLINE.
4778 (mono_codegen): Ditto.
4780 * aot-compiler.c aot-runtime.c: Ditto.
4782 * patch-info.h: Add MONO_PATCH_INFO_RGCTX_LAZY_FETCH_TRAMPOLINE.
4784 * mini-trampolines.c (mono_find_rgctx_lazy_fetch_trampoline_by_addr): New
4785 helper function to find the offset corresponding to a lazy fetch trampoline.
4787 * mini.h (MonoCompile): Add 'orig_method' field to hold the original method
4788 when doing generic sharing.
4790 * aot-compiler.c: Use cfg->orig_method instead of cfg->method in a lot of
4793 * mini.c (mono_create_rgctx_lazy_fetch_trampoline): Move this to
4794 mini-trampolines.c to be with the other trampoline creation functions.
4796 * method-to-ir.c (mono_emit_method_call): Remove the 'signature' argument
4797 as it is equal to method->signature in most cases, add a
4798 mono_emit_method_call_full variant which takes a signature and an imt
4801 2008-08-16 Zoltan Varga <vargaz@gmail.com>
4803 * jit-icalls.c (mono_helper_compile_generic_method): Don't pass the context
4804 to this function, since it could be computed easily from the method
4806 (mono_helper_compile_generic_method_wo_context): Removed, not needed any
4809 * method-to-ir.c mini.c: Remove references to
4810 compile_generic_method_wo_context.
4812 * method-to-ir.c (mono_method_to_ir2): Enable AOT for virtual
4813 generic method calls.
4815 * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_1 for 1
4816 dimensional non-szarrays.
4818 * mini.c (mini_init): Register mono_array_new_1.
4820 * jit-icalls.c (mono_array_new_1): New jit icall.
4822 * mini-trampolines.c (mono_magic_trampoline): For jumps, patch the GOT entries
4823 pointing to the method.
4825 * aot-runtime.c (mono_aot_get_method_from_token): Register GOT slots holding
4826 method addresses belonging to METHOD_JUMP patches in the
4827 jump_target_got_slot_hash.
4828 (mono_aot_load_method): Ditto.
4830 * aot-compiler.c (compile_method): Allow AOT compilation of methods with
4831 METHOD_JUMP patches.
4833 * mini.c (mini_create_jit_domain_info): New helper function which
4834 initializes/frees domain->runtime_info.
4835 (mini_free_jit_domain_info): Ditto.
4836 (mini_init): Install the domain hook functions with the runtime.
4838 * mini.h (MonoJitDomainInfo): New structure which stores the domain specific
4839 information maintained by the JIT.
4841 * mini.c (mono_resolve_patch_target): For PATCH_INFO_METHOD_JUMP, move the
4842 insertion into jump_table_hash into mono_codegen (), also implement proper
4845 * method-to-ir.c (mono_method_to_ir2): Don't disable AOT for CEE_JMP and
4846 tail calls, it is already done by the aot code.
4848 * method-to-ir.c (mono_method_to_ir2): Handle CEE_JMP using the tail call
4851 * iltests.il.in: Make the jmp test a bit more complex.
4853 * aot-compiler.c (encode_method_ref): Handle references to normal methods of
4854 generic instances which doesn't have a token.
4856 * aot-runtime.c (decode_method_ref): Ditto.
4858 * method-to-ir.c (handle_unbox_nullable): Don't disable AOT, the aot code
4859 can handle this case now.
4860 (handle_box): Ditto.
4862 2008-08-15 Geoff Norton <gnorton@novell.com>
4864 * mini-x86.c: Fix alignment on Apple x86, and re-disable the alignment
4867 2008-08-15 Zoltan Varga <vargaz@gmail.com>
4869 * method-to-ir.c (mono_method_to_ir2): Allow AOT compilation of methods
4870 calling generic methods.
4872 * aot-compiler.c (encode_patch): Handle MONO_PATCH_INFO_METHOD_RGCTX.
4874 * aot-runtime.c (decode_patch_info): Ditto.
4876 * mini.c (mono_resolve_patch_target): Ditto.
4878 * patch-info.h: Add METHOD_RGCTX.
4880 * mini-amd64.c (mono_arch_output_basic_block): Optimize LOCALLOC_IMM.
4882 2008-08-14 Zoltan Varga <vargaz@gmail.com>
4884 * mini-amd64.c (mono_arch_emit_call): Nullify call->vret_var if returning
4885 arguments in registers.
4887 * decompose.c (mono_decompose_vtype_opts): Create a var for the vreg in
4888 OP_VCALL too, don't depend on OP_OUTARG_VTRETADDR doing it.
4890 * mini.c (mini_method_compile): Abort aot compilation for generic
4891 methods if generic sharing is disabled.
4893 * mini.c (mono_method_to_ir): Disable AOT for virtual calls requiring
4896 * method-to-ir.c (mono_method_to_ir2): Disable AOT for virtual calls
4897 requiring an mrgctx.
4899 * decompose.c (mono_decompose_vtype_opts): Emit the correct sized
4900 store instructions when converting a vcall to a normal call.
4902 * mini.c (sigprof_signal_handler): Call mono_find_jit_info instead of
4903 mono_arch_find_jit_info.
4905 2008-08-13 Zoltan Varga <vargaz@gmail.com>
4907 * method-to-ir.c (check_inline_called_method_name_limit): Optimize this to
4908 avoid calling mono_method_full_name () for every method even if the
4910 (check_inline_caller_method_name_limit): Ditto.
4912 2008-08-12 Zoltan Varga <vargaz@gmail.com>
4914 * driver.c (main_thread_handler): Allow AOT compilation of multiple
4915 assemblies in one run.
4917 * aot-compiler.c (mono_compile_assembly): Only print out a count of
4918 skipped methods if it is not 0.
4920 * Makefile.am (aotcheck): AOT compile all test assemblies in one run.
4922 2008-08-12 Bill Holmes <billholmes54@gmail.com>
4924 * mini.c (mono_codegen): Changing a preprocessor check from WIN64 to
4925 MONO_ARCH_HAVE_UNWIND_TABLE.
4927 Contributed under MIT/X11 license.
4929 2008-08-12 Bill Holmes <billholmes54@gmail.com>
4931 * mini-amd64.c (mono_arch_cpu_optimizazions): Remove peephole and branch
4932 from default optimizaton list on Winx64.
4934 * mini-amd64.c (emit_tls_get): Added Winx64 specific implementation for GetTLS.
4936 * mini-amd64.c (mono_arch_emit_prolog): Adding an offset on Winx64 to get
4937 the LMF from the MonoJitTlsData structure.
4939 * mini-amd64.c (mono_arch_setup_jit_tls_data): Added Winx64 implementation.
4941 Contributed under MIT/X11 license.
4943 2008-08-12 Zoltan Varga <vargaz@gmail.com>
4945 * mini.c (sigsegv_signal_handler): Fix the build.
4947 * mini-amd64.c (emit_call_body): Use image->aot_module instead of
4948 assembly->aot_module.
4950 * aot-runtime.c: Use image->aot_module instead of searching in the aot_modules
4951 hash table. This simplifies and speeds up a lot of code, and fixes support
4954 * mini.c (SIG_HANDLER_SIGNATURE): Avoid crashes if the thread is not registered
4957 * mini-exceptions.c: Ditto.
4959 * exceptions-*c.c (mono_arch_find_jit_info): Remove unused 'trace' and
4960 'native_offset' argument, since these are computed in the
4961 mono_find_jit_info () function.
4963 * mini-exceptions.c (mono_find_jit_info): Make this non-static, as it
4964 is used by exceptions-ppc.c.
4966 * exceptions-ppc.c: Call mono_find_jit_info () instead of
4967 mono_arch_find_jit_info ().
4969 * mini-ppc.h exceptions-ppc.c mini-mips.h mini-mips.c exceptions-mips.c
4970 mini-exceptions.c: Get rid of the CUSTOM_STACK_WALK stuff, use the
4971 generic code in mini-exceptions.c.
4973 2008-08-11 Zoltan Varga <vargaz@gmail.com>
4975 * mini-ppc.c (mono_arch_flush_register_windows): Add this for ppc.
4977 * aot-runtime.c (mono_aot_get_plt_info_offset): Fix a warning.
4979 * aot-runtime.c (mono_aot_get_method): Avoid doing all the loading inside
4980 the aot lock, to avoid deadlocks when mono_aot_get_class_from_name () is
4981 called while holding the loader lock. Fixes #415608.
4982 (mono_aot_get_method_from_token_inner): Ditto.
4984 2008-08-09 Zoltan Varga <vargaz@gmail.com>
4986 * exceptions-ppc.c (mono_jit_walk_stack): Use MONO_INIT_CONTEXT_FROM_CURRENT
4987 to reduce differences between this and the generic implementation in
4989 (ves_icall_get_frame_info): Ditto.
4991 * mini-ppc.h (MONO_INIT_CONTEXT_FROM_CURRENT): Define this for ppc too.
4993 * mini-exceptions.c (mono_exceptions_init): Remove an #ifdef which is no
4996 * exceptions-ppc.c (arch_get_call_filter): Rename this to
4997 mono_arch_get_call_filter () and make it non-static, for consistency with the
4998 other architectures.
5000 2008-08-09 Rodrigo Kumpera <rkumpera@novell.com>
5003 * local-propagation.c:
5004 * mini-x86.c: Correct the name of arch defines.
5006 2008-08-09 Zoltan Varga <vargaz@gmail.com>
5008 * method-to-ir.c (mono_op_to_op_imm_noemul): Correct name of
5009 NO_EMULATE_LONG_SHIFT_OPS define.
5011 2008-08-08 Zoltan Varga <vargaz@gmail.com>
5013 * method-to-ir.c (mono_method_to_ir2): Remove some code from CEE_MONO_LDPTR
5014 now that aot-ed icall wrappers use CEE_MONO_ICALL_ADDR.
5016 * aot-compiler.c aot-runtime.c: Add support for static aot compilation.
5017 MACH fixes. Merged from the 2.0 branch.
5019 * method-to-ir.c (mono_method_to_ir2): Handle CEE_MONO_ICALL_ADDR.
5021 * mini.c (mono_resolve_patch_target): Error out if an icall is not found.
5022 (mono_method_to_ir): Handle CEE_MONO_ICALL_ADDR.
5024 * exceptions-arm.c (mono_arch_get_throw_exception_generic): Add AOT support.
5026 * method-to-ir.c mini.c driver.c aot-compiler.c: Update after
5027 mono_marshal_get_native_wrapper () signature changes.
5029 2008-08-07 Rodrigo Kumpera <rkumpera@novell.com>
5031 * jit-icalls.c (mono_fconv_ovf_u8): Work around soft-float double to long
5032 conversion bug under arm.
5034 2008-08-06 Rodrigo Kumpera <rkumpera@novell.com>
5036 * cpu-arm.md: Increase long_conv_to_ovf_i4_2 max length to 36.
5038 * mini-arm.c (mono_arch_output_basic_block): Implement long to int conversion
5039 with overflow checking.
5041 2008-08-05 Marek Habersack <mhabersack@novell.com>
5043 * Makefile.am (GENMDESC_PRG): when cross-compiling use full path
5044 to the genmdesc.pl file
5046 2008-08-05 Zoltan Varga <vargaz@gmail.com>
5048 * ir-emit.h (EMIT_NEW_ARGSTORE): Fix the usage of param_types and
5049 arg_array in the soft-float versions of the LOAD/STORE macros.
5051 * method-to-ir.c (mono_method_to_ir2): Fix a warning in the arm switch
5054 * ir-emit.h (NEW_VARLOADA): Handle SOFT_FLOAT correctly.
5056 2008-08-02 Zoltan Varga <vargaz@gmail.com>
5058 * mini-ia64.c (add_valuetype): Only reserve half parameter slot for each member of
5059 a float HFA. Fixes #413621.
5061 2008-08-02 Gert Driesen <drieseng@users.sourceforge.net>
5063 * mini-x86.c (mono_arg_get_argument_info): Rename last occurrence of
5064 frame_size to args_size. Fixes build.
5066 2008-08-02 Zoltan Varga <vargaz@gmail.com>
5068 * mini-x86.c (mono_arch_get_argument_info): Rename frame_size to args_size,
5069 and don't align it to MONO_ARCH_FRAME_ALIGNMENT.
5071 * mini-x86.h: Change MONO_ARCH_FRAME_ALIGNMENT to 8 so doubles stored on
5072 the stack are not unaligned. Fixes #413247.
5074 Fri Aug 1 18:46:42 CEST 2008 Paolo Molaro <lupus@ximian.com>
5076 * mini.c: update jitted methods performance counters.
5078 Fri Aug 1 16:30:37 CEST 2008 Paolo Molaro <lupus@ximian.com>
5080 * mini-exceptions.c: increase the exceptions thrown performance
5081 counter in mono_handle_exception ().
5083 2008-07-29 Zoltan Varga <vargaz@gmail.com>
5085 * aot-runtime.c: Use MonoImage's as keys in the aot_modules hash so the aot
5086 can work with netmodules.
5088 2008-07-28 Geoff Norton <gnorton@novell.com>
5090 * mini-x86.h: Correct the frame alignment on OSX. Fixes the jit
5093 2008-07-28 Zoltan Varga <vargaz@gmail.com>
5095 * mini-x86.c (mono_arch_emit_call): Emi the osx stack alignment at the
5098 2008-07-28 Bill Holmes <billholmes54@gmail.com>
5100 * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5101 The float param registers and other param registers must be the
5102 same index on Windows x64.
5104 * mini-amd64.c (mono_arch_allocate_vars) : Implementing the
5105 ArgValuetypeAddrInIReg argument case. Setting the argument
5106 op to OP_VTARG_ADDR (OP_REGOFFSET)).
5108 * mini-amd64.c (mono_arch_call_opcode) : Winx64 fix. Use the size
5109 variable computed above as the copy length for arguments of storage
5110 type ArgValuetypeAddrInIReg.
5112 * mini-amd64.c (mono_arch_emit_call) : Implementing the
5113 ArgValuetypeAddrInIReg argument case. This case will rely on
5114 mono_arch_emit_outarg_vt to emit the correct code later in the process.
5116 * mini-amd64.c (mono_arch_emit_call) : On Winx64 there always needs to be
5117 a 32 byte stack allocation for all calls. We will omit the adjustment for
5118 jump and tail call instructoins as they do not follow the typical call behavior.
5120 * mini-amd64.c (mono_arch_emit_outarg_vt) : Implementing the case for
5121 ArgValuetypeAddrInIReg. The code emitted will copy the argument to a
5122 local variable and pass the local variable by reference to the called method.
5124 * mini-amd64.c (mono_arch_emit_prolog, emit_load_volatile_arguments) :
5125 Implementing the ArgValuetypeAddrInIReg argument case. When the address
5126 of a struct is passed in a register it must be saved with the other
5127 volatile argument on the stack.
5129 * mini-amd64.c (mono_arch_emit_prolog) : Winx64 fix. When omitting the
5130 frame pointer the stack adjustment value must be saved to the unwind
5133 Contributed under MIT/X11 license.
5135 2008-07-28 Zoltan Varga <vargaz@gmail.com>
5137 * inssel-x86.brg (stmt): Add missing OP_X86_OUTARG_ALIGN_STACK rule
5138 which got lost in the merge.
5140 2008-07-27 Zoltan Varga <vargaz@gmail.com>
5142 * method-to-ir.c: Make the helper_sig variables extern to fix the ppc
5145 * mini-amd64.c (emit_call_body): Add a no_patch case missed earlier.
5147 * mini-amd64.c (emit_call_body): Avoid aligning the call instruction on
5148 icalls, since they won't be patched.
5150 * exceptions-amd64.c (mono_arch_get_restore_context_full): Use a slightly
5151 different code sequence when running under valgrind to prevent some valgrind
5154 * iltests.il.in: Add new regression test.
5156 * method-to-ir.c (mono_method_to_ir2): Fix handling of inlined methods which
5159 * method-to-ir.c (mono_method_to_ir2): Use get_vreg_to_inst () instead of
5160 accessing cfg->vreg_to_inst directly to prevent a crash in LDFLD.
5162 * iltests.il.in: Add new test.
5164 * aot-compiler.c: Fix some warnings.
5166 * decompose.c (mono_decompose_long_opts): Implement OP_ICONV_TO_OVF_I8_UN.
5169 2008-07-27 Zoltan Varga <vargaz@gmail.com>
5171 * driver.c (mono_main): Fix the --gc=none build. Fixes #412482.
5172 (mini_usage_jitdeveloper): Add a missing --wapi option.
5174 2008-07-25 Zoltan Varga <vargaz@gmail.com>
5176 * mini-codegen.c: Simplify the is_fp macros.
5177 (free_up_ireg): Remove, use free_up_reg instead.
5178 (free_up_reg): Fix the fp case.
5180 2008-07-26 Zoltan Varga <vargaz@gmail.com>
5182 * cpu-arm.md (loadr8_membase): Increase the length of this as this is not
5185 * exceptions-x86.c: Merge some changes which seemed to have got lost
5186 in the linear-ir merge.
5188 * liveness.c: Disable the liveness2 pass on 32 bit platforms.
5190 * method-to-ir.c (mono_handle_global_vregs): Make the component vregs of a
5191 long vreg volatile even if the variable was already created.
5193 * liveness.c (update_liveness2): Avoid eliminating dead definitions of
5196 2008-07-26 Zoltan Varga <vargaz@gmail.com>
5198 * cpu-x86.md (fcall_membase): Increase the size of the fcall opcodes.
5200 * mini.c (mono_jit_compile_method_inner): Add support for
5201 MONO_EXCEPTION_BAD_IMAGE.
5203 * method-to-ir.c (mono_method_to_ir2): Avoid a crash if
5204 mini_method_get_context () returns NULL. Fixes #356531.
5206 * mini.c (mono_method_to_ir): Ditto.
5208 * method-to-ir.c (mono_method_to_ir2): Create a variable if needed when
5209 accessing a field of a valuetype in LDFLD/STFLD. Fixes #412399.
5211 2008-07-25 Zoltan Varga <vargaz@gmail.com>
5213 * method-to-ir.c (mono_method_to_ir2): Initialize an uninitialized variable
5214 in the LDFTN implementation.
5216 2008-07-25 Mark Probst <mark.probst@gmail.com>
5218 * mini-trampolines.c (mono_magic_trampoline): When sharing generic
5219 code, patch calls to icalls, too, even if they're not in the
5220 shared generic code hash. Fixes #411962.
5222 2008-07-25 Zoltan Varga <vargaz@gmail.com>
5224 * cpu-x86.md: Increase the length of the fcall opcodes.
5226 * mini-x86.c (emit_move_return_value): Avoid some precision issues for
5227 calls returning floats.
5229 * method-to-ir.c (mono_method_to_ir2): Remove the generic sharing restrictions
5232 * method-to-ir.c (mono_method_to_ir2): Merge some LDFTN gsharing changes
5235 * method-to-ir.c (handle_delegate_ctor): Avoid putting dynamic methods
5236 into the domain->method_code_hash.
5238 * aot-compiler.c: Fix win32 build.
5240 * method-to-ir.c (EMIT_GET_RGCTX): Call EMIT_NEW_LDARG in emit_get_rgctx ().
5242 * method-to-ir.c (mono_method_to_ir2): Use mono_array_new_specific in the
5243 gshared NEWARR implementation.
5245 * cpu-sparc.md: Remove duplicate localloc_imm opcode.
5247 * ir-emit.h (NEW_ARGLOAD): Use cfg->args and cfg->arg_types so this macro
5248 can be used outside of method_to_ir.
5250 * mini.h (MonoCompile): Add arg_types field.
5252 * method-to-ir.c (inline_method): Save/Restore cfg->args and cfg->arg_types.
5254 * method-to-ir.c (mono_method_to_ir2): Set cfg->args and cfg->arg_types to
5255 the values of the local arg_array and param_types array.
5257 2008-07-24 Zoltan Varga <vargaz@gmail.com>
5259 * method-to-ir.c (mono_method_to_ir2): Allocate a GOT var for NEWOBJ, since
5260 got accesses might only get generated later when NEWOBJ is decomposed.
5262 * method-to-ir.c (handle_delegate_ctor): Add an optimization to avoid
5263 looking up the native code of the target method when a delegate is called
5266 * mini-trampolines.c (mono_delegate_trampoline): Add the other half of the
5269 * debug-debugger.c (MONO_DEBUGGER__debugger_info): Fix a warning.
5271 * aot-runtime.c aot-compiler.c: Add a new option 'no-dlsym' which makes
5272 AOT work on platforms without a working dlsym implementation.
5274 * mini.h: Bump AOT image format version.
5276 2008-07-24 Mark Probst <mark.probst@gmail.com>
5278 * mini-exceptions.c: Free a MonoType with
5279 mono_metadata_free_type() instead of g_free().
5281 * aot-runtime.c: Free a MonoType.
5283 2008-07-24 Zoltan Varga <vargaz@gmail.com>
5285 * method-to-ir.c (mono_method_to_ir2): Add a comment for the box+brtrue
5288 * mini-codegen.c (mono_local_regalloc): Remove the remaining items from the
5291 2008-07-23 Massimiliano Mantione <massi@ximian.com>
5292 * mini.c (sigprof_signal_handler): call the new "runtime initialized"
5295 2008-07-23 Zoltan Varga <vargaz@gmail.com>
5297 * method-to-ir.c (mono_method_to_ir2): Set the stack type properly for
5298 NEWOBJ calls on valuetypes.
5300 * iltests.il.in: Add new test.
5302 * mini-x86.c (mono_arch_emit_call): Use mini_type_stack_size ().
5304 2008-07-22 Zoltan Varga <vargaz@gmail.com>
5306 * mini-exceptions.c: Fix some warnings. Remove one ia64 special case as it
5307 is no longer needed.
5309 * mini-ia64.c (mono_arch_emit_prolog): In native-to-managed wrappers, widen
5310 non register sized integer arguments.
5311 (mono_arch_call_opcode): Add support for ArgInFloatRegR4.
5312 (mono_arch_emit_outarg_vt): Pass a more reasonable alignment to
5315 * method-to-ir.c (mono_method_to_ir2): Handle the ret_var_is_local case in
5318 * method-to-ir.c (ADD_WIDEN_OP): New macro to insert a widening op when
5319 two a binop with different sized arguments is emitted.
5321 * mini.c (mono_bblock_insert_after_ins): Properly link up with the next
5322 instruction in the ins==NULL case.
5324 2008-07-23 Zoltan Varga <vargaz@gmail.com>
5326 * mini-ops.h: Add OP_X86_OUTARG_ALIGN_STACK.
5328 * mini-x86.c: Fix osx build.
5330 * mini-amd64.c (mono_arch_output_basic_block): Handle varargs in the CALL_REG
5333 * method-to-ir.c (mono_spill_global_vars): Avoid fusing a load+store into the
5334 instruction for non int sized variables.
5336 * method-to-ir.c (mono_method_to_ir2): Fix an assert in the LDFLD
5339 2008-07-23 Robert Jordan <robertj@gmx.net>
5341 * method-to-ir.c: Fix MSVC build.
5343 2008-07-22 Zoltan Varga <vargaz@gmail.com>
5345 * method-to-ir.c (mono_method_to_ir2): When calling native code which returns
5346 a non int sized type, widen it to an int since newer versions of gcc seem to
5347 generate code which needs this.
5349 * ssa2.c abcremoval2.c: Fix warnings.
5351 * *: Merge the Linear IR branch.
5353 The original branch is at trunk/branches/vargaz/mini-linear-il, and
5354 the ChangeLog file there describes all the changes done over the years.
5355 Further documentation can be found at www.mono-project.com/Linear_IL.
5357 2008-07-21 Bill Holmes <billholmes54@gmail.com>
5359 * mini-amd64.c (get_call_info): Winx64 fix for passing floats.
5360 The float param registers and other param registers must be the
5361 same index on Windows x64.
5363 Contributed under MIT/X11 license.
5365 2008-07-21 Rodrigo Kumpera <rkumpera@novell.com>
5367 * mini.c: Make the previous fix GC safe.
5369 2008-07-21 Raja R Harinath <harinath@hurrynot.org>
5371 * Makefile.am (version.h): Allow a trailing '/' in the repository URL.
5373 2008-07-21 Bill Holmes <billholmes54@gmail.com>
5375 * mini-amd64.c (get_call_info): Correcting the case for MONO_TYPE_TYPEDBYREF
5376 on Winx64. This type will not be passed on the stack (ArgOnStack), but
5377 ArgValuetypeAddrInIReg instead.
5379 Contributed under MIT/X11 license.
5381 2008-07-21 Zoltan Varga <vargaz@gmail.com>
5383 * mini-codegen.c (get_register_spilling): Fix a warning.
5385 2008-07-17 Rodrigo Kumpera <rkumpera@novell.com>
5387 * mini.c: Use mono_runtime_class_init_full to avoid leaking memory
5388 for types which the initialization fails. Raises the provided exception
5389 at the right stop after cleanup.
5391 2008-07-16 Zoltan Varga <vargaz@gmail.com>
5393 * aot-compiler.c: Free most of the memory allocated during compilation.
5395 * mini.c (mini_parse_debug_options): Fix a leak.
5397 * mini.c (mini_method_compile): Don't add the method to the jit info tables
5398 during aot compilation.
5400 2008-07-14 Zoltan Varga <vargaz@gmail.com>
5402 * mini.c (mono_method_to_ir): Disable aot for code using CCASTCLASS on x86 as
5403 it has too much register pressure.
5405 2008-07-13 Zoltan Varga <vargaz@gmail.com>
5407 * inssel.brg (CEE_CASTCLASS): Remove some dead code.
5409 2008-07-12 Zoltan Varga <vargaz@gmail.com>
5411 * mini-x86.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5414 * mini-amd64.h aot-compiler.c aot-runtime.c: Store the plt info offset inline
5415 on amd64 similar to the way it is done on arm.
5417 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5419 * aot-runtime.c (load_aot_module): Rename 'info' to 'amodule' for
5420 consistency, normalize error messages, avoid loading aot-only modules in
5423 * driver.c (mono_main): Rename --aot-only command line option to --full-aot
5426 * aot-compiler.c aot-runtime.c tramp-arm.c: Implement aot-only support.
5428 2008-07-11 Martin Baulig <martin@ximian.com>
5431 (MonoDebuggerInfo): Add `interruption_request'.
5433 2008-07-12 Zoltan Varga <vargaz@gmail.com>
5435 * aot-compiler.c (emit_plt): Remove some dead code.
5437 * exceptions-arm.c (mono_arch_get_call_filter_full): Initialize ji.
5439 * aot-runtime.c (mono_aot_get_plt_info_offset): New helper function to
5440 return the plt info offset belonging to a given plt entry.
5442 * mini-trampolines.c (mono_aot_plt_trampoline): Use
5443 mono_aot_get_plt_info_offset.
5445 * aot-runtime.c aot-compiler.c tramp-arm.c: Change the arm plt code to be
5446 similar to the amd64 code by makeing jumps through a separate jump table
5447 instead of embedding the jump addresses into the code.
5449 2008-07-11 Zoltan Varga <vargaz@gmail.com>
5451 * mini.c (mono_method_to_ir): Disable aot for calling ldtoken in a generic
5454 2008-07-10 Martin Baulig <martin@ximian.com>
5456 * mini.c (mini_method_compile): Disable generics sharing when
5457 running in the debugger.
5459 2008-07-10 Zoltan Varga <vargaz@gmail.com>
5461 * mini.c (mono_method_to_ir): Create the got var in CEE_REFANYVAL.
5463 * inssel.brg (CEE_CASTCLASS): Avoid reusing temporary registers to prevent
5464 the local register allocator from running out of registers on x86 when
5467 2008-07-10 Bill Holmes <billholmes54@gmail.com>
5469 * inssel-long.brg For OP_LCONV_TO_OVF_I4 an int cast is needed when
5470 expressing IntMin for the VS Compiler. See Compiler Warning (level 2)
5473 Contributed under MIT/X11 license.
5475 2008-07-10 Zoltan Varga <vargaz@gmail.com>
5477 * aot-compiler.c: Get rid of whitespace in the generated assembly file to
5478 speed up the assembler.
5480 2008-07-09 Zoltan Varga <vargaz@gmail.com>
5482 * mini-arm.h tramp-arm.c exceptions-arm.c aot-compiler.c: Beginnings of aot-only
5485 * mini.c: Move the soft float handling macros a bit earlier, add
5486 NEW_TEMPSTORE_SOFT_FLOAT macro, fix warnings, add soft-float support in one
5489 * mini.h: Add prototype for mono_arch_fixup_jinfo.
5491 * mini.c (mini_init): In aot-only mode, set the root domain code manager to
5492 read-only to help catch code allocation requests.
5494 * mini.c inssel.brg aot-compiler.c: Make the use of IMT runtime configurable,
5495 and turn it off when using --aot-only or when compiling with --aot=full.
5497 * mini.c (mono_resolve_patch_target): In aot-only mode, allocate the
5498 jump table for switches from the normal domain mempool, not the code
5501 * mini-trampolines.c (get_unbox_trampoline): New function to return an
5502 unbox trampoline which handles aot-only mode too.
5504 * aot-runtime.c (mono_aot_get_unbox_trampoline): New function to lookup
5505 an AOTed unbox trampoline.
5507 * aot-compiler.c (emit_trampolines): Emit unbox trampolines.
5509 2008-07-09 Bill Holmes <billholmes54@gmail.com>
5511 * wapihandles.c: Fixing MSVC builds. Include statement changed from <> to
5514 Contributed under MIT/X11 license.
5516 2008-07-09 Bill Holmes <billholmes54@gmail.com>
5518 * mini.c (mono_codegen): Allocate space at the end of the code block and store
5519 the unwind information for the method at the end of the allocated block.
5521 * mini-amd64.h: Added declarations for the unwind routines and adding field to
5522 MonoCompileArch to hold the unwind info for SEH on Winx64
5524 * mini-amd64.c (mono_arch_emit_prolog): Calls to the unwind routines added to store
5525 frame pointer info for the method being compiled.
5527 * exceptions-amd64.c (mono_arch_get_throw_corlib_exception): Added a stack adjustment before
5528 the call to mono_exception_from_token.
5530 * exceptions-amd64.c: Added mono_arch_unwindinfo* implementations. This code is responsible
5531 storing the method prolog information in a format that the Winx64 SEH can understand. This
5532 information is stored a the end of the method block because it is all 32-bit offset based.
5534 Contributed under MIT/X11 license.
5536 2008-07-09 Zoltan Varga <vargaz@gmail.com>
5538 * mini.h: Remove duplicate definitions of the mini_wapi_ functions.
5540 * wapihandles.c: Fix warnings.
5542 * aot-runtime.c (load_aot_module): Add a missing error message in aot-only
5545 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): Avoid calling
5546 mono_jit_compile_method in aot-only mode since that calls the type
5549 * mini-trampolines.c (mono_create_delegate_trampoline): Avoid calling
5550 get_delegate_invoke_impl in aot-only mode.
5552 * mini.c (mono_global_codeman_reserve): Reenable the aot-only check.
5554 2008-07-08 Zoltan Varga <vargaz@gmail.com>
5556 * trace.c (mono_trace_enter_method): Fix printing of Type instances.
5558 * aot-compiler.c (compile_method): Disable the check for GSHARED since it
5561 * inssel-long.brg (reg): Add a rule for LCALL_REG (OP_I8CONST).
5563 * tramp-amd64.c (mono_arch_nullify_plt_entry): Read the nullified class
5564 init trampoline from the AOT file as well.
5566 * mini-amd64.c (mono_arch_register_lowlevel_calls): Register
5567 mono_amd64_throw_exception as a jit icall since it is needed by the aot-only
5570 * mini.c (mini_init): Move the call to mono_exceptions_init () after
5573 * exceptions-amd64.c: Add _full variants for the remaining exception code
5574 creation functions as well, allow emission of relocatable code, remove
5575 caching since that is now done by the caller.
5577 * mini-exceptions.c: Add _full variants for the remaining exception code
5578 creation functions as well, add aot-only support.
5580 * aot-compiler.c (compile_method): Allow calls to methods of constructed types
5581 if we can determine a proper token for them.
5582 (add_wrappers): Add a few more wrappers.
5583 (emit_method_code): Remove some dead code.
5584 (emit_trampolines): Emit exception code too.
5586 * mini.c (mono_method_to_ir): Call mono_array_new_2 if possible.
5588 * jit-icalls.c (mono_array_new_2): New jit icall, specialized version of
5589 mono_array_new_va which avoids varargs.
5591 * mini-exceptions.c (mono_exceptions_init): Fix the ppc build.
5593 * mini-trampolines.c: Call mono_create_specific_trampoline () instead of
5594 mono_arch_create_specific_trampoline () in all places.
5596 * aot-compiler.c aot-runtime.c: Refactor the trampoline emitting/loading code
5597 a bit so it can be used for other things as well.
5599 * mini-exceptions.c (mono_exceptions_init): Initialize throw_exception_by_name
5602 * exceptions-amd64.c: Rename the caching from the exception code creation
5603 functions, it is done by the caller instead.
5605 * exceptions-amd64.c: Change the signature of the exception code creation
5606 functions to allow the creation of relocatable code later.
5608 * mini-exceptions.c: Add a set of functions to query the various
5609 runtime-generated exception functions.
5611 * mini.c mini-exceptions.c: Use the newly added functions instead of the
5612 mono_arch_.. () functions.
5614 2008-07-07 Zoltan Varga <vargaz@gmail.com>
5616 * mini-trampolines.c (mono_aot_get_trampoline_code): Removed, no longer used.
5618 * aot-runtime.c aot-compiler.c: AOT the generic trampolines in aot-only mode.
5620 * mini.c (mini_get_imt_trampoline): Call mono_create_specific_trampoline ().
5621 (mini_get_vtable_trampoline): Ditto.
5623 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Create relocatable
5624 code in the AOT case by returning the code size and a list of relocations to
5627 * mini-trampolines.c (mono_create_specific_trampoline): New helper function.
5629 2008-07-07 Bill Holmes <billholmes54@gmail.com>
5631 * mini-amd64.c: On Winx64 the calling convention always requires the caller to
5634 Contributed under MIT/X11 license.
5636 2008-07-07 Zoltan Varga <vargaz@gmail.com>
5638 * aot-compiler.c (emit_exception_debug_info): Serialize the debug info first
5639 so the buffer size can be computed correctly. Fixes #404735.
5641 * debug-mini.c (mono_debug_serialize_debug_info): Lookup the debug info
5642 normally as cfg->debug_info is already freed.
5644 2008-07-06 Zoltan Varga <vargaz@gmail.com>
5646 * mini-amd64.c: For calls returning vtypes in registers, don't store
5647 the return address on the stack, instead allocate a separate local for
5650 2008-07-05 Mark Probst <mark.probst@gmail.com>
5652 * mini-trampolines.c, mini.h: Add an argument to
5653 mono_create_jit_trampoline_in_domain() for turning off the adding
5654 of the sync wrapper.
5656 * mini.c: Use the JIT trampoline without sync instead of
5657 ldftn_nosync in static RGCTX invoke wrappers so that the call can
5660 2008-07-04 Mark Probst <mark.probst@gmail.com>
5662 * driver.c: Turn on GSHARED optimization by default.
5664 2008-07-04 Zoltan Varga <vargaz@gmail.com>
5666 * mini-trampolines.c mini.c mini.h tramp-<ARCH>.c: Rename MONO_TRAMPOLINE_GENERIC
5667 to MONO_TRAMPOLINE_JIT since it better reflects what it does.
5669 * mini-trampolines.c (mono_get_aot_trampoline_code): New internal function to
5670 create a variant of the generic trampoline code callable from AOTed trampolines.
5672 * tramp-amd64.c (mono_arch_create_trampoline_code_full): Add support for generic
5673 trampoline code callable from AOTed trampolines.
5675 * aot-compiler.c aot-runtime.c: Add support for AOTing trampolines.
5677 2008-07-04 Mark Probst <mark.probst@gmail.com>
5679 * inssel.brg, mini-ops.h: New opcode for doing CHECK_THIS in a
5680 pass-through manner.
5682 * mini.c: Generic method sharing. Pass MRGCTX to generic methods
5683 and don't fail sharing for them anymore.
5685 * mini-exceptions.c: Handle exceptions in shared generic methods.
5687 * generic-sharing.c: When checking the context of a generic
5688 method, also check its class's context. Don't treat wrappers as
5691 * mini-trampolines.c: Some code factored out to
5692 metadata/generic-sharing.c. Handle the MRGCTX case.
5694 * jit-icalls.c, jit-icalls.h: ldvirtfn icall for generic sharing -
5695 we must deal with the method being of another instantiation of the
5696 class. Add static rgctx invoke wrappers to generic methods.
5698 2008-07-04 Mark Probst <mark.probst@gmail.com>
5700 * mini.c: Provide all jit infos of generic shared methods with a
5703 * mini-exceptions.c: Handle the new situation that a generic info
5704 might be available, but not info about the this/vtable/mrgctx
5707 2008-07-03 Mark Probst <mark.probst@gmail.com>
5709 * mini.c: Don't accept ldftn and ldvirtftn with uninstantiated
5712 2008-07-03 Zoltan Varga <vargaz@gmail.com>
5714 * dominators.c (check_dominance_frontier): Fix a warning.
5716 * mini.h: Add some missing prototypes.
5718 * ssa.c local-propagation.c debug-debuger.c: Fix warnings.
5720 * driver.c (mono_jit_init_version): Correct the comments since the first
5721 argument should be the name of the root domain, not a filename.
5723 * aot-runtime.c (make_writable): Error out if this is called while running
5725 (load_aot_module): Ditto.
5727 * aot-compiler.c: Really fix the computation of method indexes.
5729 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Remove the previous
5730 optimizations as this is no longer called frequently.
5732 * mini-trampolines.c (mono_create_delegate_trampoline): Precompute the invoke
5733 method and the invoke impl code and pass it to the delegate trampoline instead of
5734 just the delegate class.
5736 2008-07-02 Zoltan Varga <vargaz@gmail.com>
5738 * aot-compiler.c: Fixup the computation of method indexes.
5739 (add_wrappers): Create the base methods of the runtime invoke wrappers using
5740 the method builder infrastructure.
5742 * aot-runtime.c (decode_exception_debug_info): Don't crash if the method
5745 * mini-trampolines.c (mono_create_jit_trampoline_in_domain): In aot-only
5746 mode, load the method right away instead of creating a trampoline.
5748 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Eliminate locking.
5750 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Eliminate locking, speed up
5753 2008-07-01 Zoltan Varga <vargaz@gmail.com>
5755 * aot-runtime.c (decode_patch_info): Don't create trampolines in aot_only mode.
5756 (mono_aot_load_method): Use method_index instead of method->token.
5758 * mini.c (mono_jit_compile_method_inner): Move the aot_only check down, so it
5759 can handle icalls etc. properly.
5761 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
5763 * aot-compiler.c aot-runtime.c: Allow AOTing many wrapper types.
5765 * mini.c (mono_resolve_patch_target): Handle JIT_ICALL_ADDR.
5766 (mono_codegen): Convert calls made by JIT icall wrappers to the icalls into
5767 JIT_ICALL_ADDR patch type.
5769 * patch-info.h: Add JIT_ICALL_ADDR patch type.
5771 * mini.c (mono_method_to_ir): Allow AOTing methods which access the interruption
5773 (mono_resolve_patch_target): Handle INTERRUPTION_REQUEST_FLAG.
5775 * patch-info.h: Add INTERRUPTION_REQUEST_FLAG.
5777 2008-06-30 Zoltan Varga <vargaz@gmail.com>
5779 * mini.c: Use domain->jit_code_hash_lock for controlling access to
5780 domain->jit_code_hash.
5782 2008-06-29 Zoltan Varga <vargaz@gmail.com>
5784 * mini.c (mini_parse_debug_options): Add 'dont-free-domains' option.
5786 2008-06-27 Zoltan Varga <vargaz@gmail.com>
5788 * mini-trampolines.c (mono_delegate_trampoline): Don't pass a gsctx to
5789 get_this_arg_from_call, let it compute it when needed.
5791 * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'code' argument, compute
5792 gsctx from code only when needed.
5794 * mini-trampolines.c (get_generic_context): Rename this to
5795 mono_get_generic_context_from_code (), and move it to generic-sharing.c, where
5796 it can be called by the arch backends.
5798 * mini-exceptions.c (mono_print_thread_dump): Allow the argument to be NULL.
5800 2008-06-26 Zoltan Varga <vargaz@gmail.com>
5802 * driver.c (mono_main): Add experimental --aot-only command line option.
5804 * mini.c: Error out when creating trampolines or JIT compiling if --aot-only is
5807 2008-06-26 Kornél Pál <kornelpal@gmail.com>
5809 * driver.c (DllMain): Remove mono_module_handle.
5811 Contributed under MIT/X11 license.
5813 2008-06-25 Zoltan Varga <vargaz@gmail.com>
5815 * aot-compiler.c: Add not-yet-usable 'full' option. Add some infrastructure code
5816 for emitting methods which are not in the source assembly. Detect and report
5817 failure of assembling+linking.
5819 * aot-compiler.c (emit_klass_info): Call mono_class_setup_vtable ().
5821 * aot-compiler.c: Move the contents of the has_glot_slots array to MonoCompile.
5823 2008-06-24 Rodrigo Kumpera <rkumpera@novell.com>
5825 * mini.c: Check if stats is enabled so we don't allocate memory when not needed.
5827 2008-06-24 Zoltan Varga <vargaz@gmail.com>
5829 * mini.h: Remove some obsolete prototypes.
5831 * mini.c: Avoid storing MonoMethod pointers in the JIT stats, store their string format instead.
5833 2008-06-24 Mark Probst <mark.probst@gmail.com>
5835 * mini.c (get_object_generic_inst): Variable-sized arrays are not
5836 supported by Visual Studio, so use alloca().
5838 2008-06-23 Zoltan Varga <vargaz@gmail.com>
5840 * mini-ia64.c (add_valuetype): Increase *gr too when passing a HFA to be in sync with the ABi.
5843 2008-06-23 Mark Probst <mark.probst@gmail.com>
5845 * mini.c: Fail sharing of a generic method if it contains an open
5846 catch clause (because we don't pass MRGCTXs yet).
5848 2008-06-23 Mark Probst <mark.probst@gmail.com>
5850 * mini.c: When compiling a method with generic sharing, insert the
5851 method instantiated with an all-Object generic context into the
5852 jit info table, instead of the context of the first instantiation
5853 of the method we happen to compile.
5855 2008-06-18 Martin Baulig <martin@ximian.com>
5857 * debug-debugger.h (MonoDebuggerInfo): Replaced `version' with
5858 `major_version' and `minor_version'.
5860 2008-06-17 Mark Probst <mark.probst@gmail.com>
5862 * generic-sharing.c, mini.c, mini.h, aot-runtime.c:
5863 mono_method_is_generic_sharable_impl() takes an additional
5864 argument specifying whether to treat type variables as reference
5867 2008-06-17 Mark Probst <mark.probst@gmail.com>
5869 * mini.h: Removed obsolete prototypes.
5871 2008-06-17 Mark Probst <mark.probst@gmail.com>
5873 * mini.c: Don't fail generic sharing for initobj and sizeof - we
5874 already handle them.
5876 2008-06-17 Mark Probst <mark.probst@gmail.com>
5878 * mini.h, mini-trampolines.c, tramp-alpha.c, tramp-amd64.c,
5879 tramp-arm.c, tramp-hppa.c, tramp-ia64.c, tramp-mips.c,
5880 tramp-ppc.c, tramp-s390.c, tramp-s390x.c, tramp-sparc.c,
5881 tramp-x86.c: Added a MonoGenericContext* argument to
5882 mono_arch_get_unbox_trampoline() so that it can call other
5883 functions which require it.
5885 2008-06-17 Mark Probst <mark.probst@gmail.com>
5887 * mini.h, mini-trampolines.c, mini-amd64.c, mini-x86.c,
5888 mini-alpha.c, mini-arm.c, mini-ia64.c, mini-ppc.c:
5889 mono_arch_get_this_arg_from_call() takes a
5890 MonoGenericSharingContext* as well.
5892 2008-06-17 Mark Probst <mark.probst@gmail.com>
5894 * mini.c: Factor out code for emitting unbox into emit_unbox() and
5895 implement generic sharing of unbox.
5897 2008-06-17 Mark Probst <mark.probst@gmail.com>
5899 * mini.c: Don't compute the vtable to determine whether a field is
5900 special static, because it might not work for open types.
5902 2008-06-17 Mark Probst <mark.probst@gmail.com>
5904 * mini.c: Removed the unused token_type and token_source arguments
5905 from get_runtime_generic_context_ptr().
5907 2008-06-17 Marek Habersack <mhabersack@novell.com>
5909 * mini.c (ADD_BINOP): fix the build
5911 2008-06-16 Zoltan Varga <vargaz@gmail.com>
5913 * mini.c (ADD_BINOP): When operating on a native int and an int32, insert
5916 2008-06-16 Mark Probst <mark.probst@gmail.com>
5918 * mini.h: Removed class relations enum that's not used anymore.
5920 2008-06-16 Mark Probst <mark.probst@gmail.com>
5922 * tramp-x86.c, tramp-amd64.c: Slot access code for MRGCTXs.
5924 * mini-trampolines.c: Distinguish between RGCTXs and MRGCTXs in
5925 the lazy fetch trampoline access code.
5927 2008-06-15 Zoltan Varga <vargaz@gmail.com>
5929 * mini-codegen.c (mono_local_regalloc): Add some micro optimizations.
5931 2008-06-14 Zoltan Varga <vargaz@gmail.com>
5933 * mini.c: Fix some soft-float bugs. Fixes #378735 and #398348.
5935 * mini.h (MONO_INST_LIST_ENTRY): Fix warnings on arm.
5937 * mini.c (mono_method_to_ir): Check call signature for NEWOBJ as well.
5939 2008-06-13 Zoltan Varga <vargaz@gmail.com>
5941 * mini-x86.c inssel-x86.brg cpu-x86.md: Implement unsigned min/max
5944 * mini-ops.h: Add MIN/MAX_UN opcodes.
5946 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Implement unsigned min/max
5949 * basic-math.cs: Add more min/max tests.
5951 * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5953 2008-06-13 Mark Probst <mark.probst@gmail.com>
5955 * mini.c: Small fix in the prologue of emit_castclass.
5957 2008-06-13 Zoltan Varga <vargaz@gmail.com>
5959 * inssel.brg: Remove the OP_MIN/OP_MAX rules. Fix a warning.
5961 * mini.c (mini_get_inst_for_method): Remove the Min/Max intrinsics, they
5962 do not work even for unsigned types. Fixes #400014.
5964 * basic-math.cs: Add regression tests for unsigned Min/Max.
5966 2008-06-13 Mark Probst <mark.probst@gmail.com>
5968 * mini.c: Added additional context_used argument to several
5969 functions, which will be needed for sharing generic methods. Use
5970 GET_RGCTX macro wherever appropriate. Declare only one
5971 context_used in mono_method_to_ir().
5973 2008-06-13 Mark Probst <mark.probst@gmail.com>
5975 * mini.c, generic-sharing.c: Removed generic class relations.
5977 * mini.c, tramp-amd64.c, tramp-x86.c: Additional arguments to
5978 functions due to MRGCTX changes.
5980 2008-06-13 Mark Probst <mark.probst@gmail.com>
5982 * inssel.brg, inssel-long.brg, inssel-long32.brg, mini-ops.h,
5983 graph.c, local-propagation.c, aliasing.c: New opcodes for calls
5984 with calculated IMT.
5986 * mini.c: Generic sharing of calls via generic interfaces.
5988 * jit-icalls.c, jit-icalls.h: Helper function for compiling a
5989 generic method with non-constant MonoGenericContext*. Instead,
5990 the context is taken out of the method itself.
5992 2008-06-13 Mark Probst <mark.probst@gmail.com>
5994 * mini.c: Generic sharing of ldvirtftn.
5996 2008-06-13 Mark Probst <mark.probst@gmail.com>
5998 * mini.c: Generic sharing of ldftn.
6000 2008-06-13 Mark Probst <mark.probst@gmail.com>
6002 * mini.c: Do pass VTable/RGCTX argument to static generic methods.
6004 2008-06-13 Mark Probst <mark.probst@gmail.com>
6006 * mini.c: Generic sharing of the special case of ldtoken followed
6007 by a call to GetTypeFromHandle.
6009 2008-06-13 Mark Probst <mark.probst@gmail.com>
6011 * mini.c: Generic sharing of box for nullable types.
6013 2008-06-13 Zoltan Varga <vargaz@gmail.com>
6015 * mini-s390x.c (add_stackParm): Fix computation of offsets when arguments
6016 are passed on the stack. Fixes #324807.
6018 2008-06-12 Bill Holmes <billholmes54@gmail.com>
6020 * mini-amd64.c:add_valuetype: Adding Winx64 code to fill the ArgInfo
6021 for the ArgValuetypeAddrInIReg case.
6023 * mini-amd64.c:mono_arch_allocate_vars: Adding a case for
6024 ArgValuetypeAddrInIReg to avoid asserts. Code needs to be added here.
6026 * mini-amd64.c: mono_arch_call_opcode: Adding Winx64 code for an ArgInfo of
6027 type ArgValuetypeAddrInIReg. The code emitted will copy the argument to a
6028 local variable and pass the local variable by reference to the called method.
6030 * mini-amd64.c: mono_arch_emit_prolog: Adjust the stack for calls to
6031 mono_jit_thread_attach and mono_get_lmf_addr for Winx64.
6033 Contributed under MIT/X11 license.
6035 2008-06-10 Rodrigo Kumpera <rkumpera@novell.com>
6037 * debug-mini.c (mono_debug_free_method_jit_info): Moved to metadata/mono-debug.c.
6039 * debug-mini.c (mono_debug_print_vars): Release memory after printing
6042 2008-06-10 Martin Baulig <martin@ximian.com>
6045 (mono_debug_close_method): Check whether `cfg->epilogue_begin != NULL'.
6047 2008-06-09 Kornél Pál <kornelpal@gmail.com>
6049 * main.c: Add and set argv [argc] to NULL to match C specification that fixes
6050 possible error when no arguments are passed.
6052 Contributed under MIT/X11 license.
6054 2008-06-09 Rodrigo Kumpera <rkumpera@novell.com>
6056 * mini-exceptions.c (ves_icall_get_trace): Skip source locations
6057 where the file name is NULL.
6059 2008-06-09 Zoltan Varga <vargaz@gmail.com>
6061 * mini.c: Fix s390 build.
6063 2008-06-08 Zoltan Varga <vargaz@gmail.com>
6065 * trace.c (mono_trace_parse_options): Fix warnings.
6067 * mini-amd64.c: Revert most of the last patch for now as it breaks the build.
6069 2008-06-07 Zoltan Varga <vargaz@gmail.com>
6071 * mini.c (remove_block_if_useless): Avoid printing the method name.
6073 * mini.c: Remove needless setting of ins->cil_code which is now done by
6076 * mini-amd64.c: Add some code to avoid saving callee saved registers in the
6079 * tramp-amd64.c (mono_arch_patch_callsite): Tell valgrind to discard the
6080 translated code after it has been patched.
6082 2008-06-06 Zoltan Varga <vargaz@gmail.com>
6084 * mini-amd64.c (emit_call_body): Align the call displacement to 4 bytes to
6085 avoid problems during code patching on SMP systems.
6086 (emit_call): Avoid adding a patch info which is already added by
6088 (mono_arch_emit_exceptions): Ditto.
6090 2008-06-05 Zoltan Varga <vargaz@gmail.com>
6092 * tramp-*.c (mono_arch_get_unbox_trampoline): No need to check for ret->byref,
6093 MONO_TYPE_ISSTRUCT already checks for it.
6095 2008-06-05 Bill Holmes <billholmes54@gmail.com>
6097 * mini-amd64.c:merge_argument_class_from_type: When marshaling
6098 structs with floats on Winx64 the float registers are not used.
6099 The integer registers are always used..
6100 * mini-amd64.c:add_valuetype: When marshaling structs on Winx64
6101 only one register will be used and only if the size of the struct
6102 is 1,2,4, or 8 bytes.
6104 * tramp-amd64.c : Adjusting size used for mono_global_codeman_reserve
6107 Contributed under MIT/X11 license.
6109 2008-06-05 Martin Baulig <martin@ximian.com>
6111 * debug-debugger.c (debugger_lookup_class): Also call
6112 mono_class_setup_methods() here; we're only called from RTI.
6114 2008-06-05 Andreas Färber <andreas.faerber@web.de>
6116 * mini.c (mini_init): Add DTrace probes ves-init-{begin,end}.
6117 (mini_method_compile) Add DTrace probes method-compile-{begin,end}.
6118 * Makefile.am (libmono_la_LIBADD,libmono_static_la_LIBADD,mono_LDADD):
6119 Post-process object files and add dtrace-generated object, if necessary.
6121 Contributed under MIT/X11 license.
6123 2008-06-04 Mark Probst <mark.probst@gmail.com>
6125 * inssel.brg, mini-ops.h: Added opcode for unboxcast with computed
6128 * mini.c: Generic sharing for unbox.any and castclass.
6130 2008-06-04 Mark Probst <mark.probst@gmail.com>
6132 * mini.c: Ignore tailcall prefix in shared generic code and when
6133 doing calls which require a vtable/rgctx argument.
6135 2008-06-04 Mark Probst <mark.probst@gmail.com>
6137 * mini.c: Don't free the JIT info.
6139 * driver.c: Changes in the JIT info table testing code.
6141 2008-06-03 Zoltan Varga <vargaz@gmail.com>
6143 * tramp-arm.c (mono_arch_create_trampoline_code): Check for thread
6144 interruption. Fix some warnings.
6146 * tramp-*.c (mono_arch_create_trampoline_code): Call the _force_ variant of
6147 interruption_checkpoint.
6149 Tue Jun 3 13:07:03 CEST 2008 Paolo Molaro <lupus@ximian.com>
6151 * jit.h, mini.h, trace.c, driver.c: introduce an API to enable tracing
6152 from embedding applications.
6154 2008-06-02 William Holmes <billholmes54@gmail.com>
6156 * mini-amd64.c : Correcting some of the issues for Winx64 dealing with
6157 reserving 32 bytes on the stack when making calls.
6159 Contributed under MIT/X11 license.
6161 2008-06-01 Zoltan Varga <vargaz@gmail.com>
6163 * mini-arm.c (mono_arch_output_basic_block): Merge some small fixes from
6164 the linear IL branch.
6166 * driver.c: Print out more information for --version on arm.
6168 2008-05-30 Zoltan Varga <vargaz@gmail.com>
6170 * mini-amd64.c (mono_arch_emit_prolog): Increase max_offset when processing
6171 bb_exit instead, since out of line bblocks might not actually be emitted
6174 * mini-amd64.c (mono_arch_emit_prolog): Increase bb->max_offset by the
6175 maximum epilog size for out of line bblocks if tracing is enabled.
6177 * iltests.il.in: Merge tests/long-shift.regalloc.il into this file.
6179 2008-05-28 Rodrigo Kumpera <rkumpera@novell.com>
6181 * arrays.cs: Regression tests for allocating arrays with negative sizes.
6183 2008-05-28 Zoltan Varga <vargaz@gmail.com>
6185 * mini-x86.h mini-x86.c inssel-x86.brg cpu-x86.md: Add support for
6186 CAS instrinsics. Optimize the implementation of the ATOMIC_EXCHANGE
6189 2008-05-27 Zoltan Varga <vargaz@gmail.com>
6191 * mini.c (mini_get_inst_for_method): Add support for CAS instrinsics when
6192 the 'value' to store is a constant.
6194 * mini-ops.h: Add OP_ATOMIC_CAS_IMM opcodes.
6196 * mini-amd64.c (mono_arch_output_basic_block): Optimize the the implementation
6197 of ATOMIC_EXCHANGE opcodes, add support for the CAS opcodes.
6199 2008-05-26 Zoltan Varga <vargaz@gmail.com>
6201 * mini.c generic-sharing.c jit-icalls.c aot-compiler.c: Use accessor functions
6202 for accessing method->generic_container.
6204 2008-05-24 Zoltan Varga <vargaz@gmail.com>
6206 * mini.c (mono_method_check_inlining): Avoid creating vtables if possible.
6208 * mini.c (SIG_HANDLER_SIGNATURE): Fix sparc build too.
6210 * mini.c (SIG_HANDLER_SIGNATURE): Fix IA64 build.
6212 * mini.c (mono_jit_compile_method_inner): Avoid a crash if mono_class_vtable ()
6215 2008-05-23 Zoltan Varga <vargaz@gmail.com>
6217 * driver.c (mono_main): Set mono_setup_vtable_in_class_init to FALSE.
6219 * mini.c: Handle the case when mono_class_vtable () fails.
6221 2008-05-23 Massimiliano Mantione <massi@ximian.com>
6222 * mini.c (sigprof_signal_handler): Support call chains (backtrace) in
6225 2008-05-22 Mark Probst <mark.probst@gmail.com>
6227 * mini.c, jit-icalls.c, jit-icalls.h: Make generic sharing work
6228 together with domain sharing.
6230 2008-05-22 Mark Probst <mark.probst@gmail.com>
6232 * mini.c: Treat callvirts to final methods like non-virtual calls
6233 when doing generic sharing, i.e. look them up in the runtime
6236 2008-05-22 Mark Probst <mark.probst@gmail.com>
6238 * inssel.brg, mini-ops.h: Added opcodes for mkrefany and refanyval
6239 with computed types (for generic sharing).
6241 * mini.c: Generic sharing for mkrefany and refanyval.
6243 2008-05-22 Zoltan Varga <vargaz@gmail.com>
6245 * inssel.brg (mini_emit_virtual_call): Avoid constructing a generic vtable if
6248 * mini-trampolines.c (mono_magic_trampoline): Avoid calling setup_methods () in
6249 the generic sharing code.
6251 * mini-trampolines.c (mono_magic_trampoline): Call mono_class_setup_methods ()
6254 2008-05-21 Zoltan Varga <vargaz@gmail.com>
6256 * mini.h: Remove the declaration of mono_aot_init_vtable ().
6258 2008-05-21 C.J. Adams-collier <cjac@colliertech.org>
6260 * driver.c: updated copyright date
6262 2008-05-21 Zoltan Varga <vargaz@gmail.com>
6264 * aot-runtime.c mini.c: Remove the AOT init_vtable stuff as it is no longer
6267 2008-05-19 Martin Baulig <martin@ximian.com>
6269 * debug-debugger.h (MonoDebuggerInfo): Add `using_mono_debugger'
6270 pointing to the new `_mono_debug_using_mono_debugger' variable.
6273 (mono_main): Check mono_debug_using_mono_debugger() rather than
6274 the `MONO_INSIDE_MDB' environment variable to check whether we're
6275 inside the debugger.
6277 2008-05-19 Zoltan Varga <vargaz@gmail.com>
6279 * mini.c (mini_method_compile): Use cfg->args [0] for accessing the this
6282 2008-05-08 Rodrigo Kumpera <rkumpera@novell.com>
6284 * declsec.h: Move MONO_SECMAN_FLAG to metadata/metadata-internals.h.
6286 * mini.c: Added mini_assembly_can_skip_verification. This
6287 function checks if the assembly requested to skip verification.
6288 Fixes part of #387274.
6290 2008-05-07 Zoltan Varga <vargaz@gmail.com>
6292 * mini.c (mini_get_method): Disable the check for open generic classes when
6293 using generic sharing.
6295 * generics.cs: Add a test for #387034.
6297 * mini.c (mini_get_method): Check whenever the method class is an open generic
6298 type, and return NULL in that case, causing a verification error. Fixes
6301 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6303 * driver.c (mono_main): Revert r102623. The right
6304 thing to do is to enable the verifier under verifiable
6305 unless a --security flag was passed.
6307 We need this non-trivial behavior for --verify-all otherwise
6308 mcs-compileall won't be able to use it. As it needs everything to
6309 be verified under validil.
6311 2008-05-06 Martin Baulig <martin@ximian.com>
6315 * debug-mini.c (mono_debugger_thread_created): Add proper locking.
6316 (mono_debugger_thread_cleanup): Likewise.
6317 (mono_debugger_extended_notification): Likewise.
6319 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6321 * mini.c (mono_method_to_ir): Verify visibility of call related opcodes
6322 against both inflated and non-inflated methods. We need to check against the
6323 generic definition for cases where the instantiated method is not visible.
6324 We need to check against the inflated types for cases where the instantiation
6325 changes any super type. This fixes #382986.
6327 Note that this doesn't need to be applied to other parts of mono_method_to_ir
6328 that check for visibiliy as generic params only appears as the type subject
6329 of tokens on call opcodes. Field manipulation and ldftn must always
6330 target an exact type.
6332 2008-05-06 Rodrigo Kumpera <rkumpera@novell.com>
6334 * driver.c (mono_main): Using --verify-all enables the verifier under validil mode
6335 if no related --security flag is passed.
6337 2008-05-05 Andreas Färber <andreas.faerber@web.de>
6339 * mini-arch.h: Prepare support for ppc64.
6341 Contributed under MIT/X11 license.
6343 2008-05-05 Andreas Färber <andreas.faerber@web.de>
6345 * aot-runtime.c: Prepare support for ppc64.
6347 Contributed under MIT/X11 license.
6349 2008-05-05 Andreas Färber <andreas.faerber@web.de>
6351 * mini-ops.h: Prepare support for ppc64.
6353 Contributed under MIT/X11 license.
6355 2008-05-04 Andreas Färber <andreas.faerber@web.de>
6357 * helpers.c: Add support for OSX/ppc64 and Linux/ppc64 (dis)assemblers.
6359 Contributed under MIT/X11 license.
6361 2008-05-03 Zoltan Varga <vargaz@gmail.com>
6363 * aot-runtime.c (load_aot_module): Avoid trying to load aot code for dynamic
6364 assemblies, since aot_name is not a full path, causing us to load MS.NET
6365 assemblies on windows.
6367 2008-04-28 Kornél Pál <kornelpal@gmail.com>
6369 * mini.c (mono_jit_compile_method_inner): Use g_warning instead of g_error
6370 for unsupported METHOD_IMPL_ATTRIBUTE_NATIVE.
6371 * main.c: Use UTF-8 encoded command line instead of Windows default code
6372 page on Windows to support Unicode.
6373 * driver.c (DllMain): New function for mixed-mode assembly support.
6374 * Makefile.am: Add -Wl,--kill-at to libmono_la_LDFLAGS on Windows to
6375 export __stdcall functions without decoration.
6377 Contributed under MIT/X11 license.
6379 2008-04-28 Mark Probst <mark.probst@gmail.com>
6381 * tramp-amd64.c, mini-amd64.c: Preserve R11 in the trampoline by
6382 saving it very early.
6384 2008-04-28 Mark Probst <mark.probst@gmail.com>
6386 * mini.h, mini.c: Lots of code for accessing the old RGCTX
6387 deleted. The only way to access the new RGCTX is via the
6390 * mini.c, mini-amd64, mini-x86.c, mini-exceptions.c: Pass the
6391 vtable instead of the RGCTX to static methods.
6393 * mini-tramplines.c, tramp-amd64.c, tramp-x86.c: Trampoline for
6394 accessing the new RGCTX.
6396 * generic-sharing.c: There is no separation between self, type
6397 arguments and other types in the RGCTX anymore.
6399 2008-04-25 Jonathan Chambers <joncham@gmail.com>
6401 * mini-amd64.c (add_general): Remove previous stack adjustment.
6402 (mono_arch_call_opcode): Remove OP_OUTARG_MEMBASE and instead simply
6403 adjust stack pointer after pushing args. Adjust ARGS_OFFSET to account
6404 for 32 bytes of stack space reserved for all calls.
6406 * inssel-amd64.brg (OP_OUTARG_MEMBASE): Remove.
6407 (OP_AMD64_OUTARG_ALIGN_STACK): Take argument to specify size of stack
6410 Code contributed under MIT/X11 license.
6412 2008-04-23 Rodrigo Kumpera <rkumpera@novell.com>
6414 * mini.c (mini_method_verify): Only verify non-inflated methods, check
6415 against the root definition, peeling out method and type instantiations.
6416 Cache verify success results, code that fails verification is still
6417 checked multiple times.
6419 2008-04-23 Zoltan Varga <vargaz@gmail.com>
6421 * mini.c (mono_method_to_ir): Avoid inserting write barriers for stores of null.
6423 2008-04-23 Jonathan Chambers <joncham@gmail.com>
6425 * mini-amd64.c (add_general): Always increment stack on Win64.
6426 (mono_arch_call_opcode): Use OP_OUTARG_MEMBASE instead of OP_OUTARG
6429 * inssel-amd64.brg (OP_OUTARG_MEMBASE): Add OP_OUTARG_MEMBASE for
6430 stack based argument handling on Win64.
6432 Code contributed under MIT/X11 license.
6434 2008-04-23 Raja R Harinath <harinath@hurrynot.org>
6436 * Makefile.am (version.h): Add support for git-svn.
6438 2008-04-22 Zoltan Varga <vargaz@gmail.com>
6440 * mini-exceptions.c (mono_handle_native_sigsegv): Rework the gdb calling code
6441 so instead of calling g_spawn_command_line_sync, we do everything by hand,
6442 avoiding allocations and libc functions which might deadlock.
6444 * mini-exceptions.c (mono_handle_native_sigsegv): Avoid calling gdb if the
6445 'no-gdb-backtrace' option is set.
6447 * mini.c (mini_parse_debug_options): Parse 'no-gdb-backtrace' option.
6449 * mini.h (MonoDebugOptions): Add 'no_gdb_backtrace' option.
6451 2008-04-21 Martin Baulig <martin@ximian.com>
6453 * debug-debugger.h (MonoDebuggerInfo): Removed `attach', `detach'
6454 and `get_lmf_addr'; `notification_address' is no longer a pointer.
6456 2008-04-21 Martin Baulig <martin@ximian.com>
6458 * debug-debugger.h (MonoDebuggerInfo): Added `thread_vtable_ptr',
6459 `thread_vtable', `event_handler_ptr' and `event_handler'.
6461 2008-04-21 Martin Baulig <martin@ximian.com>
6463 * debug-debugger.h (MonoDebuggerInfo): Added `init_code_buffer';
6464 allows delayed initialization of the `executable_code_buffer' when
6467 2008-04-21 Martin Baulig <martin@ximian.com>
6469 * mini.h (mono_debugger_create_notification_function): Removed.
6470 * tramp-*.c (mono_debugger_create_notification_function): Removed.
6472 * mdb-debug-info64.s
6473 (MONO_DEBUGGER__notification_function): Added this in the .text section.
6475 * mdb-debug-info32.s
6476 (MONO_DEBUGGER__notification_function): Added this in the .text section.
6478 * Makefile.am: Fix the mdb-debug-info*.s logic; the debugger
6479 currently only works on x86 and x86_64, so don't create it on ppc.
6481 2008-04-21 Martin Baulig <martin@ximian.com>
6483 * mini.h (MonoDebugOptions): Added `mdb_optimizations'.
6486 (mini_method_compile): In the fp elimination check, check
6487 `debug_options.mdb_optimizations' in addition to
6488 mono_debug_using_mono_debugger().
6490 * driver.c (mono_main): Added `--debug=mdb-optimizations' option to
6491 disable some JIT optimizations which are only disabled when
6492 running inside the debugger.
6493 Added `--help-debug' option to describe the debugging options.
6494 (parse_debug_options): New static function to parse the `--debug'
6495 options, so we can easily add more stuff in future.
6497 2008-04-20 Zoltan Varga <vargaz@gmail.com>
6499 * mini.c (set_exception_type_from_invalid_il): Avoid reading invalid memory when
6500 the method has no body.
6502 2008-04-19 Jonathan Chambers <joncham@gmail.com>
6504 * mini-amd64.c (cpuid): Implement with MSVC intrinsic as inline
6505 assembly is not allowed in MSVC 64-bit compiler.
6506 (mono_arch_cpu_init): Don't set floating point precision on MSVC build
6507 as we get floating point exceptions everywhere.
6509 * exceptions-amd64.c (get_throw_trampoline): Push empty args on stack to
6510 correctly align arguments for call to throw_exception.
6511 (prepare_for_guard_pages): Cast to guint64 instead of unsigned long.
6513 Code contributed under MIT/X11 license.
6515 2008-04-19 Zoltan Varga <vargaz@gmail.com>
6517 * mini-amd64.c (amd64_patch): Make the check for (%rip) addressing more strict.
6519 2008-04-17 Zoltan Varga <vargaz@gmail.com>
6521 * inssel.brg (OP_SWITCH): Use (gint64) instead of (long) to cast a large constant.
6523 * mini-amd64.c (NEW_INS): Set cil_code.
6525 * mini.c (mini_method_compile): Move the disabling of fp elimination to here
6526 from mini-amd64.c so all debugger related logic is in one place.
6528 * mini.c: Set cfg->ip to NULL after passes which set it so instructions created
6529 later won't have a random ip assigned to them.
6531 2008-04-16 Zoltan Varga <vargaz@gmail.com>
6533 * mini-trampolines.c (mono_create_jump_trampoline): Add an assert to check that
6534 the arch specific function initializes code_size.
6535 (mono_create_delegate_trampoline): Ditto.
6537 * mini-mips.h mini-mips.c inssel-mips.brg inssel-long32-mips.brg cpu-mips.md
6538 tramp-mips.c: Resurrect MIPS port and also fix the issues on little-endian
6541 * liveness.c (mono_analyze_liveness): Disable the initlocals optimization if
6542 running under the debugger.
6544 * linear-scan.c (mono_linear_scan): Avoid sharing registers if running under the
6547 * mini.c (mini_method_compile): Set a few flags in cfg if running under the
6548 debugger. Also move the disabling of optimizations here from driver.c.
6549 (mono_allocate_stack_slots_full): Avoid sharing stack slots if running under the
6552 * mini.h (MonoCompile): Add a few new flags.
6554 2008-04-15 Zoltan Varga <vargaz@gmail.com>
6556 * mini.c (mono_method_to_ir): Set cfg->ip before processing an IL instruction
6557 so the cil_code field of created MonoInst's is properly set.
6558 (mini_select_instructions): Ditto.
6560 * mini.h (MONO_INST_NEW): Initialize the cil_code field using cfg->ip.
6561 (MONO_INST_NEW_CALL): Ditto.
6563 * mini.c inssel.brg inssel-x86.brg inssel-amd64.brg: Use MONO_INST_NEW ()
6564 in many places so the ins->cil_code field is properly initialized.
6566 * mini.c (mono_bblock_add_inst): Call MONO_ADD_INS () so the logic is in one
6569 2008-04-14 Zoltan Varga <vargaz@gmail.com>
6571 * mini.c (mini_method_compile): Print a different message when compiling a
6574 * mini.c (GENERIC_SHARING_FAILURE): Print a failure message when verbose_level
6577 2008-04-11 Zoltan Varga <vargaz@gmail.com>
6579 * mini-amd64.c (mono_arch_output_basic_block): Implement OP_ABS directly using
6582 * basic-math.cs: Fix warnings. Add a test for Math.Abs ().
6584 2008-04-11 Zoltan Varga <vargaz@gmail.com>
6586 * mini.c (handle_stack_args): Make this return void since its return value was
6587 never used. Also set cfg->unverifiable for invalid IL instead of calling
6590 2008-04-10 Mark Probst <mark.probst@gmail.com>
6592 * mini.c: Make sure "this" is live in catch clauses with type
6593 variables in shared generic code.
6595 2008-04-08 Mark Probst <mark.probst@gmail.com>
6597 * mini.c: Replaced uses of MONO_TYPE_IS_REFERENCE with calls to
6598 generic_class_is_reference_type() to ensure the proper behaviour
6599 when sharing generic code and the type in question is a type
6602 2008-04-08 Zoltan Varga <vargaz@gmail.com>
6604 * mini-exceptions.c: Applied patch from Mark Spruiell (mes@zeroc.com). Fix
6605 race conditions when printing thread dumps. Fixes #377738.
6607 2008-04-08 Massimiliano Mantione <massi@ximian.com>
6609 aliasing.c (update_aliasing_information_on_inst): Fixed a bug which
6610 shows up when both MonoInst arguments can cause aliasig.
6611 There is likely no way in the current JIT to trigger this problem, but
6612 it showed up in the development of generics sharing, when in a new
6613 opcode both args of an OP_GROUP can be aliases (addresses of a local).
6614 When the generics sharing code will be committed, its tests will be
6615 valid also for this bug.
6617 2008-04-08 Zoltan Varga <vargaz@gmail.com>
6619 * aot-runtime.c (decode_patch_info): Always transform PATCH_INFO_WRAPPER to
6622 * mini.c (mono_resolve_patch_target): Fix a crash in the AOT case if method is
6625 2008-04-07 Zoltan Varga <vargaz@gmail.com>
6627 * mini-exceptions.c (mono_handle_exception_internal): When --debug=casts is used,
6628 use a more detailed exception message for InvalidCastException.
6630 * mini.h (MonoJitTlsData): Add 'class_cast_from' and 'class_cast_to' fields.
6632 * driver.c (mono_main): Add --debug=casts option to turn on better
6633 InvalidCastException message details.
6635 * mini.c (mini_get_debug_options): New helper function to return the address of
6636 the debug_options variable.
6638 * mini.c (mono_get_jit_tls_intrinsic): New helper function to create a load of
6639 the jit_tls TLS variable.
6641 * mini.c (mono_jit_tls): New TLS variable.
6643 * inssel.brg: Save the details of a cast to a TLS variable when the --debug=casts
6646 2008-04-07 Rodrigo Kumpera <rkumpera@novell.com>
6648 * mini.h: Removed verifer related stuff. This code was moved to verify.c
6650 * mini.c: Removed verifer related stuff, code moved to verify.c.
6652 * driver.c: Using code from verify.c instead of mini.c.
6654 2008-04-05 Zoltan Varga <vargaz@gmail.com>
6656 * mini.c (check_for_method_verify): Remove the mscorlib comment since it is no
6659 2008-04-04 Rodrigo Kumpera <rkumpera@novell.com>
6661 * mini.c (check_for_method_verify): Enabling verification of
6662 corlib if mono_verify_all is set. Bugs in the verifier preventing that
6665 2008-04-04 Zoltan Varga <vargaz@gmail.com>
6667 * exceptions-amd64.c (throw_exception): Unify the win32/non-win32 cases, save
6668 caller saved registers as well.
6670 * exceptions-amd64.c (mono_arch_get_restore_context): Restore most caller
6671 saved registers as well.
6673 2008-03-30 Zoltan Varga <vargaz@gmail.com>
6675 * mini-x86.c cpu-x86.md inssel-x86.brg: Add min/max intrinsics.
6677 * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of the non-SSE2 floating point
6680 2008-03-27 Zoltan Varga <vargaz@gmail.com>
6682 * mini-amd64.c (mono_arch_get_this_arg_reg): Add a 'gsctx' argument and pass it
6684 (get_call_info): Take a gsctx argument instead of 'cfg'.
6686 2008-03-26 Zoltan Varga <vargaz@gmail.com>
6688 * mini.c (check_for_method_verify): Avoid verifying mscorlib methods even if
6689 mono_verify_all is set.
6691 * driver.c (compile_all_methods_thread_main): Don't exit at the first error.
6693 * mini.c mini.h: Remove the unused and incomplete stack merge verification code.
6695 2008-03-25 Zoltan Varga <vargaz@gmail.com>
6697 * driver.c (compile_all_methods_thread_main): Error out if compilation fails with
6700 * driver.c mini.c mini.h: Add a --verify-all development option to test the
6701 verifier and the code generated by the compiler.
6703 2008-03-25 Mark Probst <mark.probst@gmail.com>
6705 * mini.c: Generic sharing of the non-nullable case of the box
6708 2008-03-24 Zoltan Varga <vargaz@gmail.com>
6710 * inssel.brg: Fix the build.
6712 * iltests.il.in: Add a test for lconv.ovf.u8.un.
6714 2008-03-24 Rodrigo Kumpera <rkumpera@novell.com>
6716 * mini.c (mono_method_to_ir): Implement readonly for ldelema and
6717 Array:Address. Fixes #372410.
6719 * iltests.il.in: New tests for readonly prefix.
6721 2008-03-23 Zoltan Varga <vargaz@gmail.com>
6723 * mini.h mini.c mini-trampolines.c: Move trampoline related code to
6726 * mini.h mini.c mini-exceptions.c: Move mini_init_exceptions () to
6729 * mini-amd64.c mini-s390.c (mono_arch_lowering_pass): Use mono_decompose_op_imm ().
6731 * mini.c (mono_decompose_op_imm): New helper function.
6733 * mini-s390x.c (calculate_sizes): Rename this to get_call_info for consistency
6734 with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6737 * mini-s390x.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in
6738 mono_arch_output_basic_block. Fix warnings.
6740 * inssel-s390x.brg: Remove the unneccesary OP_LMUL_IMM rule to fix the s390x build
6743 2008-03-22 Zoltan Varga <vargaz@gmail.com>
6745 * mini-exceptions.c (ves_icall_get_frame_info): Remove the ia64/s390 workarounds
6746 since the extra frame is now detected automatically inside the loop.
6748 * mini-s390.c (mono_arch_peephole_pass_2): Remove the arch independent peephole
6749 opts which are now in mono_peephole_ins ().
6751 * mini-s390.c (mono_arch_output_basic_block): Fix OP_FCALL_MEMBASE.
6753 * mini-exceptions.c (ves_icall_get_frame_info): Skip native-to-managed wrapper
6754 frames and skip duplicate managed-to-native frames. Fixes #367665.
6756 * mini-x86.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6757 opts which are now in mono_peephole_ins ().
6758 (mono_arch_peephole_pass_2): Ditto.
6760 * mini-codegen.c (mono_peephole_ins): Fix a problem on 32 bit platforms.
6762 * mini-codegen.c (mono_peephole_ins): New helper function containing the
6763 arch independent peephole optimizations.
6765 * mini-amd64.c (mono_arch_peephole_pass_1): Remove the arch independent peephole
6766 opts which are now in mono_peephole_ins ().
6768 * mini-amd64.c (mono_arch_peephole_pass_2): Ditto.
6770 * mini-s390.c (mono_arch_output_basic_block): Fix build.
6772 * tramp-s390.c (mono_arch_get_vcall_slot): Handle an additional instruction
6775 * mini-s390.c (mono_arch_output_basic_block): Handle big offsets in the
6776 CALL_MEMBASE opcodes. Fix setting of the destination in the OP_LCONV_TO_OVF_I
6779 2008-03-21 Zoltan Varga <vargaz@gmail.com>
6781 * mini-s390.c (calculate_sizes): Rename this to get_call_info for consistency
6782 with the other architectures, add an 'mp' argument, fold 'sz' argument into the
6785 * mini-s390.c: Handle DIV_IMM/REM_IMM in the lowering pass instead of in
6786 mono_arch_output_basic_block. Fix warnings.
6788 2008-03-20 Zoltan Varga <vargaz@gmail.com>
6790 * inssel-long32.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6793 2008-03-20 Zoltan Varga <vargaz@gmail.com>
6795 * inssel-long.brg: Add rules for long conv.ovf.i/conv.ovf.u/conv.ovf.i.un/
6798 * iltests.il: Add new tests.
6800 2008-03-20 Kornél Pál <kornelpal@gmail.com>
6802 * mini.c: Removed Windows version macros.
6804 2008-03-20 Mark Probst <mark.probst@gmail.com>
6806 * generic-sharing.c: Put reflection types in the extensible part
6807 of the runtime generic context.
6809 * mini.c: Generic sharing of the GetTypeHandle special case of the
6810 ldtoken instruction.
6812 2008-03-20 Zoltan Varga <vargaz@gmail.com>
6814 * mini.h (MONO_BB_FOR_EACH_INS_SAFE): New helper macro.
6816 * mini-<ARCH>.c: Use the new macro instead in the peephole/lowering passes.
6818 * mini.h (MONO_DEL_INS): Rename to MONO_DELETE_INS and Add a 'bb' argument for
6819 consistency with the other version on the linear IR branch.
6821 * mini-<ARCH>.c: Update callers of MONO_DEL_INS.
6823 * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i/conv.ovf.u.
6825 * iltests.il.in: Add new tests.
6827 2008-03-19 Zoltan Varga <vargaz@gmail.com>
6829 * inssel-long32.brg inssel-long.brg: Add rules for conv.ovf.i.un/conv.ovf.u.un.
6831 * iltests.il.in: Add new tests.
6833 2008-03-19 Mark Probst <mark.probst@gmail.com>
6835 * mini.c: Two variables with the same name were declared in
6836 nesting contexts and one wasn't initialized. Fixed.
6838 2008-03-19 Mark Probst <mark.probst@gmail.com>
6840 * mini.c: Generic sharing of the initobj instruction.
6842 Tue Mar 18 20:18:02 CET 2008 Paolo Molaro <lupus@ximian.com>
6844 * mini.c: make the test to optimize ldtoken from typeof() more
6847 2008-03-18 Mark Probst <mark.probst@gmail.com>
6849 * mini.c: Generic sharing of the initobj instruction for reference
6852 Tue Mar 18 12:39:27 CET 2008 Paolo Molaro <lupus@ximian.com>
6854 * mini.h, mini-amd64.c, mini-x86.c, tramp-amd64.c, tramp-x86.c: change
6855 the mono_breakpoint_clean_code() code to perform bound checks.
6857 Tue Mar 18 11:50:14 CET 2008 Paolo Molaro <lupus@ximian.com>
6859 * mini.h, mini-trampolines.c, tramp-*.c: change the signature of
6860 mono_arch_patch_callsite() to include the start of the managed method
6861 to be able to perform bound checks.
6863 2008-03-17 Mark Probst <mark.probst@gmail.com>
6865 * mini.c: Generic sharing for the isinst instruction.
6867 2008-03-17 Mark Probst <mark.probst@gmail.com>
6869 * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6870 inssel-long32-mips.brg: Added opcodes for doing indirect calls
6871 with the runtime generic context argument.
6873 * mini.c: Share calls to several types of unsharable methods by
6874 putting the address of the method code in the runtime generic
6875 context and doing an indirect call.
6877 * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6880 2008-03-16 Mark Probst <mark.probst@gmail.com>
6882 * generic-sharing.c: Change due to a change in the runtime genric
6885 2008-03-15 Martin Baulig <martin@ximian.com>
6888 (mono_arch_nullify_class_init_trampoline): Add call to
6889 mono_breakpoint_clean_code() to make things work when running
6890 inside the debugger.
6893 (mono_arch_nullify_class_init_trampoline): Add call to
6894 mono_breakpoint_clean_code() to make things work when running
6895 inside the debugger.
6897 2008-03-14 Zoltan Varga <vargaz@gmail.com>
6899 * inssel-long.brg (reg): Fix 64 bit build.
6901 2008-03-14 Mark Probst <mark.probst@gmail.com>
6903 * mini.c, mini.h: Share static generic code by passing it an
6904 implicit argument pointing to the runtime generic context.
6906 * mini-ops.h, inssel.brg, inssel-long.brg, inssel-long32.brg,
6907 inssel-long32-mips.brg: New opcodes for calling shared static,
6908 which need to be passed the runtime generic context.
6910 * mini-amd64.c, mini-x86.c: Save the runtime generic context
6911 argument on the stack in the prologue if needed. New function for
6912 finding the runtime generic context argument from the registers
6913 saved by the trampoline.
6915 * mini-amd64.h, mini-x86.h: Specify which register to use for the
6916 runtime generic context argument.
6918 * tramp-amd64.c: Also restore the register used for the runtime
6919 generic context argument.
6921 * mini-trampoline.c: Resolve shared static calls by consulting the
6922 runtime generic context via the new argument.
6924 * generic-sharing.c: Add an argument to sharability-checking
6925 functions that specifies whether type variables should be treated
6926 as sharable type arguments.
6928 * inssel-x86.brg: Removed a superfluous, buggy rule.
6930 * graph.c, local-propagation.c, aliasing.c: Added the new opcodes
6933 2008-03-14 Martin Baulig <martin@ximian.com>
6935 * debug-debugger.c (main_thread_handler): Call
6936 mono_runtime_run_main() without sending any notifications.
6938 * debug-debugger.h (MonoDebuggerInfo): Added `get_method_signature.
6940 2008-03-14 Zoltan Varga <vargaz@gmail.com>
6942 * mini-trampolines.c (mono_magic_trampoline): Fix build on platforms without IMT.
6944 2008-03-14 Mark Probst <mark.probst@gmail.com>
6946 * tramp-x86.c: Fixed register restore offsets in the trampoline
6947 code for ECX and EDX.
6949 2008-03-12 Geoff Norton <gnorton@novell.com>
6951 * mini-arm.h: Add some #defines for locating sp, pc, r4 with
6952 different ucontext_t implementations.
6953 * exceptions-arm.c: Use the above defines to get exceptions working on
6954 iPhone (based on a patch by Luke Howard lukeh@padl.com)
6955 * mini-arm.c: Implement iPhone icache support (based on a patch by
6956 Luke Howard lukeh@padl.com)
6958 2008-03-12 Mark Probst <mark.probst@gmail.com>
6960 * mini.c: Enable generic sharing of calls to non-static
6961 non-interface non-generic non-value-type methods.
6963 * mini-trampolines.c: Resolve calls from shared generic code.
6965 2008-03-11 Zoltan Varga <vargaz@gmail.com>
6967 * Makefile.am il2tests.il iltests.il.in: Delete il2tests, merge it into iltests.
6969 * tramp-amd64.c (mono_arch_create_trampoline_code): Correctly save RBP as well.
6971 Mon Mar 10 11:59:34 CET 2008 Paolo Molaro <lupus@ximian.com>
6973 * mini.c: some fixes for the AOT compiler.
6975 2008-03-07 Zoltan Varga <vargaz@gmail.com>
6977 * cpu-amd64.md: Add clob:1 to some float opcodes.
6979 2008-03-07 Rodrigo Kumpera <rkumpera@novell.com>
6981 * mini.h: Added MiniVerifierMode enumeration.
6983 * mini.c: Added mini_verifier_set_mode to control
6984 the usage of the new verifier.
6986 * mini.c (mono_method): Integrated the new verifier.
6988 * driver.c: Extended --security option with validil and
6989 verifiable options to activate the new verifier.
6991 2008-03-07 Zoltan Varga <vargaz@gmail.com>
6993 * mini.c jit-icalls.h jit-icalls.c: Generalize the exception creation
6994 optimization to ctors taking 0 or 2 arguments too.
6996 * mini.c (mono_method_to_ir): Optimalize the size of the exception throwing code
6999 * jit-icalls.h (mono_create_corlib_exception): New JIT icall.
7001 * mini-amd64.c (mono_arch_emit_prolog): Improve the first_bb optimization a bit.
7003 2008-03-06 Zoltan Varga <vargaz@gmail.com>
7005 * mini.c (mono_method_to_ir): Apply one of the ldstr optimizations in the
7006 non-aot case as well.
7008 * cpu-amd64.md: Reduce the max size of some frequently used opcodes.
7010 * aot-runtime.c (decode_patch_info): Update this after the ldfld/stfld wrapper
7013 * aot-compiler.c (encode_patch): Ditto.
7015 * mini.h (G_MININT32): Fix the definition of this.
7017 2008-03-05 Zoltan Varga <vargaz@gmail.com>
7019 * mini.h: Define G_MININT32/G_MAXINT32 if using an older glib version.
7021 * cfold.c: Remove definition of G_MININT32 which is now in mini.h.
7023 2008-03-04 Zoltan Varga <vargaz@gmail.com>
7025 * mini-amd64.c (mono_arch_compute_omit_fp): Don't disable fp elimination for
7026 methods returning vtypes in registers.
7027 (mono_arch_allocate_vars): Ditto.
7029 * mini-amd64.c (mono_arch_get_this_arg_reg): New arch specific helper function.
7031 * tramp-amd64.c (mono_arch_get_unbox_trampoline): Use mono_arch_get_this_arg_reg ().
7033 * generics.cs: Add a test from the linear IR branch.
7035 * mini-amd64.c (emit_load_volatile_arguments): Handle vtypes passed in regs too.
7037 * mini.c (inline_method): Cache failed inline attempts.
7039 2008-03-04 Mark Probst <mark.probst@gmail.com>
7041 * mini.c: For shared methods of generic classes put the location
7042 of "this" into the MonoGenericJitInfo.
7044 * mini-x86.c, mini-amd64.c, mini.h: Added function for fetching a
7045 register out of a MonoContext by register number. Add the generic
7046 sharing context as an argument to mono_arch_find_this_argument().
7048 * mini-alpha.c, mini-arm.c, mini-hppa.c, mini-ia64.c, mini-mips.c,
7049 mini-ppc.c, mini-s390.c, mini-s390x.c, mini-sparc.c: Added stub
7050 for new arch function.
7052 * mini-exception.c: Handle open exception clauses in shared
7055 * mini-trampolines.c: Supply additional argument to
7056 mono_arch_find_this_argument().
7058 2008-03-04 Zoltan Varga <vargaz@gmail.com>
7060 * Makefile.am (regtests): Run the bench.exe tests last.
7062 2008-03-03 Zoltan Varga <vargaz@gmail.com>
7064 * mini-amd64.c (mono_arch_emit_prolog): Improve the first bblock optimization
7067 2008-03-02 Zoltan Varga <vargaz@gmail.com>
7069 * mini.c (mono_method_to_ir): Allow callvirt on static methods for compatibility
7072 * mini-amd64.c (mono_arch_emit_prolog): Fix tracing after the last change.
7074 * mini-amd64.c (mono_arch_emit_prolog): Avoid saving dead arguments.
7076 * mini.c (mono_method_check_inlining): Avoid disabling inlining for methods
7077 whose class has no cctor.
7079 * liveness.c (mono_analyze_liveness): Mark dead arguments with MONO_INST_IS_DEAD.
7081 2008-03-01 Zoltan Varga <vargaz@gmail.com>
7083 * mini.c (mono_method_to_ir): Report calling a static method using callvirt as
7086 2008-02-29 Zoltan Varga <vargaz@gmail.com>
7088 * mini-ops.h: Remove OP_SPARC_INARG_VT, add a new OP_VTARG_ADDR opcode instead
7089 to be in sync with the code on the linear IR branch.
7091 * mini-sparc.c inssel-sparc.brg: Use OP_VTARG_ADDR.
7093 * inssel-s390.brg (OP_SETRET (freg)): Set dreg correctly.
7095 2008-02-27 Zoltan Varga <vargaz@gmail.com>
7097 * mini-mips.c: Use cfg->vret_addr instead of cfg->ret.
7099 * mini-s390x.c: Use cfg->vret_addr instead of cfg->ret.
7101 * mini-s390.c: Use cfg->vret_addr instead of cfg->ret.
7103 * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_VARS define.
7105 * mini-<ARCH>.c (mono_arch_create_vars): Define this for all architectures.
7107 * mini.c (mono_method_to_ir): Avoid invalid memory reads for methods without a
7110 2007-11-14 Yoichi NAKAYAMA <nakayama@pixela.co.jp>
7112 * inssel-mips.brg (OP_OUTARG_MEMBASE (CEE_LDIND_R4 (base))): Add missing
7113 OP_LOADR4_MEMBASE emission.
7115 * mini-codegen.c (mono_spillvar_offset_int): Remove assertion.
7116 (mono_spillvar_offset_float): Ditto.
7118 * mini-mips.c (mono_arch_emit_prolog): Ditto.
7120 * inssel-long32-mips.brg: Fix wrong branching, reduce redundant code
7123 * basic-long.cs: Add regression tests for them.
7125 * mini-mips.c (add_float32_arg): Respect o32 calling convention in gr
7127 (mono_arch_allocate_vars): Fix representation of single-precision float
7129 (mono_arch_output_basic_block): Ditto.
7131 * inssel-mips.brg: Ditto, remove duplicate items.
7133 * mini-mips.c (emit_load_volatile_arguments): New function to handle
7134 arguments of tail calls as on other platforms.
7135 (mono_arch_output_basic_block): Handle tail calls.
7137 * inssel-mips.brg (OP_OUTARG_VT (CEE_LDOBJ (base))): Correct destination
7140 * objects.cs (test_5_pass_static_struct): Add test for it.
7142 Contributed under MIT/X11 license.
7144 2008-02-26 Zoltan Varga <vargaz@gmail.com>
7146 * Makefile.am: Use gmcs for compiling the regression tests.
7148 * *.2.cs *.2.il: Rename to *.cs and *.il.
7150 2008-02-24 Zoltan Varga <vargaz@gmail.com>
7152 * regalloc.h: Make the vassign array smaller.
7154 * mini.c (mini_method_compile): Remove an unused field in cfg.
7156 * mini-codegen.c: Add a bunch of micro optimizations.
7158 2008-02-23 Zoltan Varga <vargaz@gmail.com>
7160 * regalloc.h: Remove some unused fields.
7162 2008-02-22 Zoltan Varga <vargaz@gmail.com>
7164 * mini-amd64.c (mono_arch_patch_code): Fix a warning.
7166 * ssa.c (mono_ssa_remove): Avoid declaring volatile variables dead.
7168 2008-02-22 Mark Probst <mark.probst@gmail.com>
7170 * mini.h: New trampoline type (RGCTX_LAZY_FETCH).
7172 * mini-trampolines.c, tramp-amd64.c, tramp-x86.c: RGCTX lazy fetch
7173 trampoline: Fetch an entry from the runtime generic context. If
7174 it's NULL, jump to the actual trampoline to fill the runtime
7175 generic context. Otherwise, return it.
7177 * mini.c: Call the lazy fetch trampoline to get entries out of the
7178 runtime generic context.
7180 * tramp-ia64.c, tramp-arm.c, tramp-alpha.c, tramp-s390.c,
7181 tramp-s390x.c, tramp-ppc.c, tramp-hppa.c, tramp-mips.c,
7182 tramp-sparc.c: Stubs for the lazy fetch trampoline.
7184 2008-02-21 Mark Probst <mark.probst@gmail.com>
7186 * mini.c: Fetch data out of the extensible part of the runtime
7187 generic context instead of calling a helper function.
7189 * generic-sharing.c: Some functions moved into
7190 metadata/generic-sharing.c. Helper function for fetching other
7191 types now checks and asserts against extensible rgctx (just for
7192 debugging purposes - the helper function isn't called anymore
7193 unless for debugging).
7195 2008-02-21 Zoltan Varga <vargaz@gmail.com>
7197 * mini-arm.c (mono_arch_output_basic_block): Implement proper argument passing
7198 for tail calls up to the point that the tests in iltests.exe run. Also add a
7199 dummy CKFINITE implementation.
7200 (mono_arch_emit_prolog): Avoid saving the method in the LMF since it is only
7201 needed for trampoline LMF frames.
7203 * exceptions-arm.c (mono_arch_find_jit_info): Only read lmf->method for
7204 trampoline LMF frames.
7206 2008-02-21 Rodrigo Kumpera <rkumpera@novell.com>
7208 * mini.c (inline_method): clean any pending loader error when inlining fail.
7209 Otherwise loader errors in mono_method_to_ir leaks and cause spurious errors.
7211 2008-02-21 Zoltan Varga <vargaz@gmail.com>
7213 * aot-compiler.c (encode_patch): Handle ICALL_ADDR patch type.
7215 * aot-runtime.c (decode_patch_info): Ditto.
7217 * mini.c (mono_resolve_patch_target): Ditto.
7219 * aot-compiler.c (compile_method): Add some experimental code for AOT compiling
7222 * patch-info.h (PATCH_INFO): Add 'ICALL_ADDR' patch type.
7224 * mini.c (mono_method_to_ir): Convert a CEE_MONO_LDPTR opcode to an AOT constant
7225 if it references an icall address.
7227 2008-02-20 Zoltan Varga <vargaz@gmail.com>
7229 * cpu-s390x.md: Remove some more unused opcodes.
7231 * cpu-s390x.md: Remove some unused opcodes.
7233 * mini-ia64.c (mono_arch_lowering_pass): Add some more opcodes. Use
7234 mono_op_imm_to_op ().
7236 * mini-sparc.c (opcode_to_sparc_cond): Use the mono_opcode_to_cond () functions
7237 instead of a switch statement.
7239 * mini-sparc.c (mono_arch_allocate_vars): Allocate a stack slot for use by
7240 the int<->float conversion opcodes instead of using mono_spillvar_offset_float ().
7242 * mini-codegen.c: Eliminate rassign macro which is no longer needed.
7244 * mini-codegen.c: Remove unused mono_regstate2_... functions.
7246 * mini-codegen.c (mono_print_ins_index): Avoid printing an index when it is
7249 2008-02-19 Zoltan Varga <vargaz@gmail.com>
7251 * driver.c (mono_main): Improve error reporting when an assembly cannot be
7252 opened. Fixes #362607.
7254 * cpu-ia64.md cpu-s390x.md: Remove some unused opcodes.
7256 * iltests.il.in: Add a test for static methods in interfaces.
7258 2008-02-18 Zoltan Varga <vargaz@gmail.com>
7260 * genmdesc.c (build_table): Fix a crash on older glib versions.
7262 * cpu-sparc.md: Remove some unused opcodes.
7264 * genmdesc.c: Error out if the .md contains CEE_ opcodes if
7265 MONO_ARCH_ENABLE_NORMALIZE_OPCODES is defined.
7267 * cpu-amd64.md: Remove some unused opcodes.
7269 * mini.h mini-ops.h mini.c: Define the OP_Ccc opcodes in mini-ops.h normally
7270 like the other opcodes.
7272 2008-02-17 Zoltan Varga <vargaz@gmail.com>
7274 * mini-ia64.c: Use cfg->vret_addr instead of cfg->ret.
7276 * mini-arm.h mini-arm.c: Use cfg->vret_addr instead of cfg->ret.
7278 * mini-sparc.c: Use cfg->vret_addr instead of cfg->ret. Name the MonoCompile
7279 variables 'cfg' instead of 'm' for consistency.
7281 * mini-x86.c: Use cfg->vret_addr instead of cfg->ret.
7283 * mini.h (MonoCompile): Add new 'vret_addr' field which represents the hidden
7284 argument holding the vtype return address, to avoid the ambigious use of
7285 cfg->ret for this purpose.
7287 * mini.c (NEW_RETLOADA): Use vret_addr if set.
7289 * mini-amd64.c: Use cfg->vret_addr instead of cfg->ret.
7291 * mini-codegen.c (mono_print_ins): Rename to mono_print_ins_index (), Add a
7292 new mono_print_ins () function which only takes one argument.
7294 2008-02-15 Zoltan Varga <vargaz@gmail.com>
7296 * mini-s390.h (MONO_OUTPUT_VTR): Use cfg instead of s, avoid assignments to
7299 2008-02-14 Zoltan Varga <vargaz@gmail.com>
7301 * mini-ops.h: Get rid of OP_SPARC_LOCALLOC_IMM.
7303 * mini-sparc.c inssel-sparc.brg: Use OP_LOCALLOC_IMM instead of OP_SPARC_LOCALLOC_IMM.
7305 * mini-x86.c: Sync with the version on the linear IR branch by adding new
7306 opcodes and other small changes.
7308 * mini-ops.h: Add some new opcodes from the linear IR branch.
7310 * mini-ops.h: Get rid of the OP_X86_..._MEMBASE opcodes.
7312 * mini-x86.c inssel-x86.brg cpu-x86.md: Get rid of the confusing _MEMBASE
7313 opcodes, use the REG_MEMBASE opcodes instead.
7315 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Get rid of the confusing _MEMBASE
7316 opcodes, use the REG_MEMBASE opcodes instead.
7318 * mini-amd64.c (mono_arch_output_basic_block): Sync with the version on the
7321 * mini.c (mono_op_imm_to_op): New helper function.
7323 * mini-ops.h: Add some opcodes from linear IR branch.
7325 2008-02-13 Zoltan Varga <vargaz@gmail.com>
7327 * mini-alpha.h mini-alpha.c tramp-alpha.c: Alpha port updates from Sergey Tikhonov
7330 2008-02-12 Zoltan Varga <vargaz@gmail.com>
7332 * mini.c (mono_normalize_opcodes): Always convert CEE_CONV_R4/R8 to
7335 * mini-ia64.c cpu-ia64.md: Add OP_ICONV_TO_R4/R8.
7337 2008-02-09 Zoltan Varga <vargaz@gmail.com>
7339 * aot-compiler.c (emit_method_code): Add an assert.
7341 * mini-arm.h mini-arm.c exceptions-arm.c: Modify the exception throwing code and
7342 the IMT code so it is AOT friendly. Enable AOT for methods which call interface
7345 2008-02-08 Zoltan Varga <vargaz@gmail.com>
7347 * mini-arm.c (mono_arch_output_basic_block): Fix the ordering of arguments for
7348 some load/store opcodes so they are consistent.
7349 (mono_arch_emit_prolog): Simplify some code.
7351 * aot-runtime.c (mono_aot_get_plt_entry): Fix a warning.
7353 * objects.cs: Add tests for large argument offsets on ARM.
7355 * mini-arm.c (mono_arch_emit_prolog): Fix handling of arguments with large
7356 stack offsets. Fixes #359651.
7358 * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R4/R8 properly.
7360 * cpu-s390x.md: Add OP_LCONV_TO_R4/R8.
7362 * cpu-ia64.md mini-ia64.h mini-ia64.c: Get rid of CEE_ opcodes.
7364 * mini-ops.h: Add OP_ICONV_TO_R_UN opcode.
7366 * mini.c (mono_normalize_opcodes): Remap CEE_CONV_R_UN too.
7368 * cpu-s390x.md cpu-s390.md mini-s390x.c mini-arm.c cpu-arm.md mini-s390.c: Get
7369 rid of CEE_CONV_R_UN.
7371 * mini-s390x.c mini-s390x.h cpu-s390x.md inssel-s390x.brg: Get rid of CEE_ opcodes.
7373 2008-02-07 Zoltan Varga <vargaz@gmail.com>
7375 * mini-s390.c mini-s390.h cpu-s390.md: Get rid of CEE_ opcodes.
7377 * mini.c (mono_normalize_opcodes): Add some more opcodes.
7379 * mini-arm.c mini-arm.h cpu-arm.md: Get rid of CEE_ opcodes.
7381 * cpu-amd64.md: Remove some unused opcodes.
7383 * mini-sparc.c mini-sparc.h cpu-sparc.md: Get rid of CEE_ opcodes.
7385 * mini-x86.c mini-x86.h cpu-x86.md: Get rid of CEE_ opcodes.
7387 * mini.c mini-<ARCH>.c: Remove mono_arch_local_regalloc (), instead make
7388 arch specific functions for its parts. Call the peephole pass after local
7389 regalloc so the prolog can compute a more accurate max_offset.
7391 * mini.c (mono_normalize_opcodes): New mini pass to convert CEE_ opcodes to
7392 the corresponding OP_I/OP_L opcodes.
7394 * mini-amd64.c mini-amd64.h cpu-amd64.md: Get rid of CEE_ opcodes.
7396 * mini-sparc.c (mono_arch_output_basic_block): Fix the sparc build.
7398 2008-02-06 Zoltan Varga <vargaz@gmail.com>
7400 * mini-s390.c (mono_arch_get_inst_for_method): Remove the Interlocked cases
7401 as they are handled in mini.c.
7403 * mini-s390x.c (mono_arch_get_inst_for_method): Ditto.
7405 * mini-<ARCH>.c (mono_arch_get_inst_for_method): Remove the MemoryBarrier
7406 case since it is handled in mini.c.
7408 * cpu-sparc.md (sparc_setfreg_float): Fix the sparc build.
7410 * mini-ops.h: Add new opcodes OP_CALL/OP_CALLVIRT.
7412 * *.c: Use the new opcodes in the IR and back end code.
7414 * mini-ops.h cpu-<ARCH>.md: Correct the name of the bgt_un opcodes.
7416 * mini-amd64.c (emit_call_body): Use a far-call for calling dynamic methods.
7418 2008-02-06 Mark Probst <mark.probst@gmail.com>
7420 * mini-trampolines.c (mono_generic_class_init_trampoline): Removed
7421 an assert because it has a race condition.
7423 2008-02-06 Zoltan Varga <vargaz@gmail.com>
7425 * tramp-amd64.c (mono_arch_patch_callsite): Add more diagnostics.
7427 * inssel.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused CEE_RET opcode.
7429 * mini-<ARCH>.c cpu-<ARCH>.md: Get rid of unused LDIND/STIND opcodes.
7431 * *.brg mini-<ARCH>.c cpu-<ARCH>.md: Get rid of OP_SETREG/OP_SETFREG/OP_SETREGIMM,
7432 use OP_MOVE/OP_FMOVE/OP_ICONST instead.
7434 2008-02-05 Zoltan Varga <vargaz@gmail.com>
7436 * cpu-amd64.md (move): Correct the maximum size of move.
7438 2008-02-05 Mark Probst <mark.probst@gmail.com>
7440 * tramp-amd64.c, tramp-x86.c, mini-trampolines.c: Added a check in
7441 the generic class init trampoline to return quickly if the class
7444 2008-02-04 Zoltan Varga <vargaz@gmail.com>
7446 * tramp-amd64.c (mono_arch_patch_callsite): Add some diagnostics to help debug
7447 issues where an 32 bit callsite cannot be patched by a 64 bit address.
7449 2008-02-03 Zoltan Varga <vargaz@gmail.com>
7451 * generics.2.cs generics-variant-types.2.il: Merge some tests from the linear IR
7454 2008-01-31 Zoltan Varga <vargaz@gmail.com>
7456 * objects.cs: Add some soft-float tests.
7458 * mini.c: Fix a couple more soft-float issues.
7460 * helpers.c (mono_disassemble_code): Fix disassembly on ARM.
7462 * mini-amd64.c (peephole_pass): Use IXOR instead of LXOR for zeroing a register to
7465 2008-01-30 Zoltan Varga <vargaz@gmail.com>
7467 * exceptions-x86.c (mono_arch_find_jit_info): Fix stack unwinding when an
7468 exception happens while compiling a virtual method.
7470 2008-01-29 Zoltan Varga <vargaz@gmail.com>
7472 * mini-sparc.c (mono_arch_emit_epilog): Fix folding of negative return values.
7474 * mini-sparc.c: Fix build.
7476 * mini-sparc.c (get_call_info): Add support for generic sharing.
7478 * mini-exceptions.c: Add a FIXME.
7480 2008-01-27 Zoltan Varga <vargaz@gmail.com>
7482 * mini-exceptions.c (mono_handle_exception_internal): Remove the old style
7483 altstack handling code.
7485 * mini-s390.c (mono_arch_emit_exceptions): Really fix a warning.
7487 * mini-s390.c (mono_arch_emit_exceptions): Fix a warning.
7489 * mini-s390.c: Add support for generic sharing.
7491 * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame):
7493 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7495 * mini-s390x.c (mono_arch_emit_exceptions): Fix a warning.
7497 * mini-s390x.c: Add support for generic sharing.
7499 * mini-exceptions.c (ves_icall_System_Security_SecurityFrame_GetSecurityFrame):
7501 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Ditto.
7503 * mini-s390x.c: Use is_imm16 instead of is_uimm16 when checking whenever s390_aghi
7504 can be used since it takes a 16 bit signed immediate.
7506 * inssel-s390x.brg: Fix OP_SETRET.
7508 * mini-s390x.c (mono_arch_output_basic_block): Fix OP_BREAK.
7510 * mini-codegen.c (mono_opcode_to_cond): Fix a warning.
7512 * mini-s390x.c cpu-s390x.md: Implement sext.i4 properly by sign extension.
7514 * mini.c (mono_create_delegate_trampoline): Don't use mono_create_ftpntr here.
7516 * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_addr_from_ftnptr
7519 * mini-ia64.h mini-ia64.c: Add minimal support for the delegate trampoline
7522 * mini.h inssel-x86.brg inssel-amd64.brg tramp-alpha.c tramp-ia64.c: Get rid
7523 of the unused mono_arch_patch_delegate_trampoline stuff.
7525 2008-01-26 Zoltan Varga <vargaz@gmail.com>
7527 * basic-long.cs: Move the fp related tests to basic-float.cs.
7529 * mini-ops.h (OP_OUTARG_FREG_R4): New opcode.
7531 * mini-ia64.c inssel-ia64.brg: Implement proper R4 argument passing.
7533 * basic-calls.cs: Add a test for proper float argument passing.
7535 * mini-ia64.h (mono_ia64_context_get_ip): Do not substract 1 from the ip
7536 if the context corresponds to an exception received through a signal.
7538 * exceptions.cs: Add a test for nullref handling at the start of a try
7541 * mini-ia64.c (mono_arch_call_opcode): Fix ia64 argument passing.
7543 * jit-icalls.c (mono_break): New JIT icall.
7545 * mini-<ARCH>.c: Use mono_break instead of mono_arch_break.
7547 * mini-arm.c (arm_patch): Add support for patching the blx calling sequence.
7549 2008-01-25 Zoltan Varga <vargaz@gmail.com>
7551 * cpu-*.md: Get rid of unused opcodes.
7553 * cpu-g4.md: Rename this to cpu-ppc.md for consistency with other archs.
7555 * Makefile.am: Move mini-trampolines.c to $(common_sources) since it is now used
7558 * mini-<ARCH>.h mini.c: Get rid of the MONO_ARCH_HAVE_CREATE_SPECIFIC_TRAMPOLINE
7561 * mini-s390x.h tramp-s390x.c Makefile.am: Rework the s390x trampoline code to use
7562 the arch independent trampoline code in mini-trampolines.c.
7564 * aot-runtime.c (mono_aot_init_vtable): Fix a warning.
7566 * mini.c (get_runtime_generic_context_ptr): Fix a warning.
7568 * mini-s390.h: Remove an unused define.
7570 * mini-s390.h tramp-s390.c Makefile.am: Rework the s390 trampoline code to use
7571 the arch independent trampoline code in mini-trampolines.c.
7573 * mini-arm.c (mono_arch_emit_prolog): Fix build.
7575 2008-01-24 Zoltan Varga <vargaz@gmail.com>
7577 * mini-sparc.c (mono_arch_output_basic_block): Remove some unecessary code.
7579 * mini-s390.c (mono_arch_emit_prolog): Fix build.
7581 * mini-s390x.c (mono_arch_emit_prolog): Fix build.
7583 * mini-ppc.c (mono_arch_emit_prolog): Fix build.
7585 * cpu-amd64.md: Use smaller sizes for int opcodes.
7587 * *.c: Get rid of the NOT_IMPLEMENTED define which is now in mini.h.
7589 * *.cs: Add some tests from the linear-ir branch. Move structs tests to
7592 * driver.c (mono_main): Add a --break-at-bb command line argument for JIT
7595 * mini.h *.c: Change cfg->vars to contain the MonoMethodVar entries directly
7596 instead of though a pointer to save an indirection when accessing elements of
7599 * mini.h (MONO_IS_COND_BRANCH_OP): Move these macros here from mini.c. Fix
7601 (NOT_IMPLEMENTED): New helper macro.
7602 (MONO_BB_FOR_EACH_INS): New helper macro to iterate through the instructions
7605 * *.c: Use the new helper macro.
7607 2008-01-21 Zoltan Varga <vargaz@gmail.com>
7609 * mini-x86.h (MONO_ARCH_AOT_SUPPORTED): Disable AOT for apple x86.
7611 2008-01-20 Zoltan Varga <vargaz@gmail.com>
7613 * mini-amd64.c (mono_arch_emit_prolog): Optimize the omit fp case to save two
7616 2008-01-18 Zoltan Varga <vargaz@gmail.com>
7618 * mini-amd64.c (mono_arch_emit_prolog): Disable the new optimization if
7619 profiling is enabled.
7621 * mini-amd64.c (mono_arch_call_opcode): Emit the save_sp_to_lmf instruction at
7623 (mono_arch_emit_prolog): Add more first bblock optimizations.
7625 * mini-amd64.c (mono_arch_call_opcode): Keep assignments to the arg registers
7626 in order if possible.
7627 (mono_arch_emit_prolog): Optimize assignments to arg registers in the first
7628 bblock, since the arguments are still in their original registers.
7630 * mini.c (type_from_op): Calling add.ovf on floats is not valid IL code.
7632 2008-01-17 Zoltan Varga <vargaz@gmail.com>
7634 * mini.c (mono_method_to_ir): Use the no-spilling optimization for CEE_CALLI
7637 * mini-amd64.c (mono_arch_emit_prolog): Save an instruction if the LMF is at
7640 * mini-amd64.h (MONO_ARCH_HAVE_NOTIFY_PENDING_EXC): Turn on this for amd64.
7642 * exceptions-amd64.c (mono_arch_notify_pending_exc): New function to
7643 process async exceptions received while in unmanaged code.
7645 * mini.c (mini_init): Install a callback with the runtime which will be called
7646 when a thread receives an async exception while in unmanaged code.
7648 * mini.c driver.c: Update after mono_get_native_wrapper () signature change.
7650 * mini-s390x.c (mono_arch_output_basic_block): Fix s390x build.
7652 2008-01-16 Wade Berrier <wberrier@novell.com>
7659 2008-01-16 Zoltan Varga <vargaz@gmail.com>
7661 * mini-x86.c (mono_arch_output_basic_block): Remove some gccism which prevents
7662 compilation with sun cc.
7664 * cpu-*.md: Fix the build.
7666 * cpu-x86.md: Fix the length of some load membase opcodes. Fixes #354241.
7668 * mini-amd64.h: Add some comments to the MonoLMF structure.
7670 * mini-ops.h cpu-amd64.c: Add a OP_AMD64_SAVE_SP_TO_LMF opcode.
7672 * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Avoid setting the rip field
7673 in the LMF structure if possible. This saves two instructions in the
7674 managed->native wrappers.
7676 * mini-ops.h *.md: Make some opcodes names uniform by removing the op_ prefix.
7678 2008-01-16 Mark Probst <mark.probst@gmail.com>
7680 * generic-sharing.c: New type argument lookup code which uses the
7681 runtime generic context template.
7683 2008-01-15 Zoltan Varga <vargaz@gmail.com>
7685 * mini.c (mono_method_to_ir): Avoid emitting a write barrier when storing NULL.
7687 * mini-arm.c (add_general): Fix arm eabi parameter passing.
7688 (mono_arch_output_basic_block): Fix localloc implementation.
7690 * mini-amd64.c (peephole_pass): Sync store+load optimizations with the x86 version.
7692 * mini-ia64.c (peephole_pass): Fix ia64 build.
7694 * mini-amd64.c (peephole_pass): Fix a warning.
7696 * mini-amd64.c (mono_arch_allocate_vars): Make sure the LMF is always stored
7697 at a constant offset from sp/fp.
7699 * exceptions-amd64.c (mono_arch_find_jit_info): Compute the LMF address from fp/sp
7700 instead of obtaining it from *lmf in the managed method case.
7702 2008-01-14 Zoltan Varga <vargaz@gmail.com>
7704 * exceptions-amd64.c (mono_arch_find_jit_info): Remove some duplicate code.
7706 Mon Jan 14 12:33:06 CET 2008 David S. Miller <davem@davemloft.net>
7708 * mini.h (MonoInstList): New type.
7709 (MONO_INST_LIST_INIT, MONO_INST_LIST_EMPTY,
7710 __MONO_INST_LIST_ADD, MONO_INST_LIST_ADD,
7711 MONO_INST_LIST_ADD_TAIL, __MONO_INST_LIST_DEL,
7712 __MONO_INST_LIST_SPLICE, MONO_INST_LIST_SPLICE,
7713 MONO_INST_LIST_SPLICE_TAIL, MONO_INST_LIST_SPLICE_INIST,
7714 MONO_INST_LIST_SPLICE_TAIL_INIT, mono_container_of,
7715 MONO_INST_LIST_ENTRY, MONO_INST_LIST_FIRST_ENTRY,
7716 MONO_INST_LIST_LAST_ENTRY, MONO_INST_LIST_FOR_EACH,
7717 MONO_INST_LIST_FOR_EACH_PREV, MONO_INST_LIST_FOR_EACH_SAFE,
7718 MONO_INST_LIST_FOR_EACH_PREV_SAFE,
7719 MONO_INST_LIST_FOR_EACH_ENTRY,
7720 MONO_INST_LIST_FOR_EACH_ENTRY_REVERSE,
7721 MONO_INST_LIST_FOR_EACH_ENTRY_SAFE,
7722 mono_inst_list_first, mono_inst_list_last,
7723 mono_inst_list_next, mono_inst_list_prev): New instruction
7724 list handling interfaces.
7725 (MonoBasicBlock): Remove 'last_ins' and 'code', replace with
7726 list head 'ins_list'.
7727 (MonoInst): Replace next pointer with list head 'node'.
7728 (MonoCallInst): Make 'out_args' a MonoInstList.
7729 (MONO_INST_NEW_CALL): Explicitly init ->out_args.
7730 (MonoCompile): Delete reverse_inst_list and
7731 reverse_inst_list_len.
7732 * mini-hppa.c (mono_arch_call_opcode, NEW_INS,
7733 mono_arch_lowering_pass, mono_arch_local_regalloc,
7734 mono_arch_output_basic_block, mono_arch_emit_prolog):
7735 Convert to new instruction lists.
7736 (insert_after_ins): Delete.
7737 * inssel.brg (MONO_EMIT_NEW_BRANCH_BLOCK): Convert to new
7739 * mini-hppa.h (MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Likewise.
7740 * mini.c (NEW_BBLOCK, ADD_BBLOCK, CHECK_BBLOCK,
7741 split_bblock, mono_add_ins_to_end, mono_emit_call_args,
7742 mono_emulate_opcode, mono_emit_load_got_addr,
7743 inline_method, mono_method_to_ir, mono_print_bb_code,
7744 print_dfn, decompose_pass, nullify_basic_block,
7745 replace_out_block_in_code, remove_block_if_useless,
7746 merge_basic_blocks, move_basic_block_to_end,
7747 try_unsigned_compare, optimize_branches, mono_print_code,
7748 mini_select_instructions, remove_critical_edges): Likewise.
7749 * mini-amd64.c (emit_sig_cookie, mono_arch_call_opcode,
7750 peephole_pass_1, peephole_pass, mono_arch_lowering_pass,
7751 mono_arch_output_basic_block, mono_arch_emit_prolog):
7753 * mini-mips.c (mono_arch_call_opcode, peephole_pass,
7754 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7755 mono_arch_output_basic_block): Likewise.
7756 (inst_list_prepend, insert_after_ins): Delete.
7757 * mini-mips.h (MONO_EMIT_NEW_BRANCH_NONZERO_LABEL,
7758 MONO_EMIT_NEW_COMPARE_BRANCH_BLOCK): Convert to new
7760 * mini-x86.c (emit_sig_cookie, mono_arch_call_opcode,
7761 peephole_pass_1, peephole_pass, mono_arch_output_basic_block,
7762 mono_arch_emit_prolog): Likewise.
7763 * cfold.c (mono_constant_fold): Likewise.
7764 * liveness.c (visit_bb, mono_analyze_liveness,
7765 optimize_initlocals): Likewise.
7766 * ssapre.c (dump_code, process_bb, code_motion): Likewise.
7767 * graph.c (mono_draw_code_cfg): Likewise.
7768 * ssa.c (mono_ssa_rename_vars, mono_ssa_compute,
7769 mono_ssa_remove, mono_ssa_avoid_copies, mono_ssa_create_def_use,
7770 mono_ssa_cprop): Likewise.
7771 * abcremoval (get_relations_from_previous_bb, process_block):
7773 * local-propagation (mono_cprop_invalidate_values,
7774 mono_local_cprop_bb): Likewise.
7775 * mini-s390x.c (mono_arch_call_opcode, emit_sig_cookie,
7776 peephole_pass, mono_arch_output_basic_block,
7777 mono_arch_emit_prolog): Likewise.
7778 * mini-arm.c (mono_arch_call_opcode, peephole_pass,
7779 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7780 mono_arch_emit_prolog): Likewise.
7781 (insert_after_ins): Delete.
7782 * aliasing.c (print_code_with_aliasing_information,
7783 mono_build_aliasing_information, mono_aliasing_deadce):
7784 Convert to new instruction lists.
7785 * mini-ia64.c (emit_sig_cookie, mono_arch_call_opcode,
7786 peephole_pass, NEW_INS, mono_arch_lowering_pass,
7787 mono_arch_local_regalloc, mono_arch_output_basic_block):
7789 (insert_after_ins): Delete.
7790 * mini-sparc.c (emit_sig_cookie, mono_arch_call_opcode,
7791 peephole_pass, mono_arch_output_basic_block): Convert to
7792 new instruction lists.
7793 * mini-codegen (InstList, inst_list_prepend,
7794 insert_after_ins): Delete.
7795 (insert_before_ins, get_register_force_spilling,
7796 get_register_spilling, free_up_ireg, free_up_reg,
7797 create_copy_ins, create_spilled_store, alloc_int_reg,
7798 alloc_float_reg, alloc_reg, mono_local_regalloc): Convert
7799 to new instruction lists.
7800 * mini-ppc.c (mono_arch_call_opcode, peephole_pass,
7801 NEW_INS, mono_arch_lowering_pass, mono_arch_local_regalloc,
7802 mono_arch_output_basic_block, mono_arch_emit_prolog): Likewise.
7803 (insert_after_ins): Delete.
7804 * mini-alpha.c (NEW_INS, peephole_pass, mono_arch_lowering_pass,
7805 mono_arch_local_regalloc, mono_arch_output_basic_block,
7806 mono_arch_call_opcode): Convert to new instruction lists.
7807 (insert_after_ins): Delete.
7808 * mini-s390.c (mono_arch_call_opcode, emit_sig_cookie,
7809 peephole_pass, mono_arch_output_basic_block,
7810 mono_arch_emit_prolog): Convert to new instruction lists.
7812 2008-01-11 Zoltan Varga <vargaz@gmail.com>
7814 * mini-amd64.c (mono_arch_output_basic_block): Use a 4 byte load in OP_CHECK_THIS.
7816 * mini-sparc.c (mono_arch_output_basic_block): Use a byte load in CHECK_THIS.
7819 * Makefile.am (version.h): Make this work with non-bash shells.
7821 2008-01-10 Zoltan Varga <vargaz@gmail.com>
7823 * mini.c (handle_delegate_ctor): Optimize away setting of NULL target.
7825 2008-01-08 Zoltan Varga <vargaz@gmail.com>
7827 * mini.c (mono_method_to_ir): Fix possible reading of invalid memory in
7828 the InitializeArray optimization.
7830 2008-01-06 Zoltan Varga <vargaz@gmail.com>
7832 * mini.c driver.c: Don't include os/gc_wrapper.h.
7834 2008-01-05 Zoltan Varga <vargaz@gmail.com>
7836 * mini.c (print_jit_stats): Print GC statistics if available.
7838 2008-01-04 Zoltan Varga <vargaz@gmail.com>
7840 * mini-amd64.c (mono_arch_allocate_vars): Align argument storage offsets to 8.
7842 2007-12-29 Zoltan Varga <vargaz@gmail.com>
7844 * mini-ppc.c (mono_arch_get_delegate_invoke_impl): Fix flushing of icache.
7846 2007-12-26 Zoltan Varga <vargaz@gmail.com>
7848 * mini.c (mini_init): Move the setting of GC_stackbottom to mono_gc_base_init ().
7850 * mini.c (mini_init): Call mono_gc_base_init () instead of MONO_GC_PRE_INIT ().
7852 * driver.c (mono_main): Ditto.
7854 2007-12-23 Zoltan Varga <vargaz@gmail.com>
7856 * mini-trampolines.c (mono_delegate_trampoline): Use mono_get_delegate_invoke ().
7858 * aot-compiler.c (emit_klass_info): Avoid emitting info if one of the methods
7859 in the vtable can't be encoded.
7860 (compile_method): Ditto.
7862 2007-12-21 Zoltan Varga <vargaz@gmail.com>
7864 * mini.c (setup_jit_tls_data): Use the MONO_ARCH_INIT_TOP_LMF_ENTRY macro if
7867 * mini-amd64.h mini-amd64.c exceptions-amd64.c tramp-amd64.c: Rename lmf->ebp to
7870 * exceptions-amd64.c (mono_arch_find_jit_info): Fix the detection of whenever
7871 the top LMF entry belongs to the current method.
7873 * mini.c: Update after renaming of mono_thread_get_pending_exception ().
7875 2007-12-20 Zoltan Varga <vargaz@gmail.com>
7877 * tramp-ia64.c (mono_arch_create_trampoline_code): Fix a warning.
7879 * tramp-ia64.c (mono_arch_create_trampoline_code): Ditto.
7881 * tramp-sparc.c (mono_arch_create_trampoline_code): Check for thread interruption.
7883 * tramp-amd64.c (mono_arch_create_trampoline_code): Ditto.
7885 * tramp-x86.c (mono_arch_create_trampoline_code): Check for thread interruption.
7887 * cpu-amd64.md mini-amd64.h mini-amd64.c inssel-amd64.brg: Add ulong->double
7890 * basic-float.cs: Add an ulong->double cast test.
7892 2007-12-15 Zoltan Varga <vargaz@gmail.com>
7894 * mini.c (mono_method_to_ir): Fix a warning.
7896 2007-12-14 Zoltan Varga <vargaz@gmail.com>
7898 * mini-ops.h: Add OP_SWITCH.
7900 * mini.c graph.c ssa.c aliasing.c mini-<ARCH>.c inssel-<ARCH>.brg: Avoid using
7901 CEE_SWITCH in back-end code, use OP_SWITCH instead.
7903 2007-12-11 Geoff Norton <gnorton@novell.com>
7905 * mini-s390x.c: Minor change to the MAX() define to allow
7906 it to compile with other gcc versions.
7908 2007-12-11 Geoff Norton <gnorton@novell.com>
7911 * mini-s390x.c: Implement sext_i4 to fix the build on s390x
7913 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
7915 exceptions-arm.c (mono_arch_get_restore_context): Restore
7918 exceptions-arm.c (throw_exception): Save the frame pointer.
7919 This is a partial fix for #323747. Only the client side is
7922 2007-12-11 Rodrigo Kumpera <rkumpera@novell.com>
7924 * mini.c (mono_method_to_ir): Verbose message in CEE_NEWOBJ
7925 was using an unrelated variable to log the class which
7926 needed the cctor to be called. This was crashing on arm.
7928 2007-12-09 Robert Jordan <robertj@gmx.net>
7930 * mini-x86.c (mono_arch_emit_epilog):
7931 Consider all kinds of 64-bit types. Fixes #323114.
7933 2007-12-08 Zoltan Varga <vargaz@gmail.com>
7935 * tramp-amd64.c (mono_arch_create_trampoline_code): Clean up the code a bit.
7937 2007-12-07 Zoltan Varga <vargaz@gmail.com>
7939 * mini-amd64.c (peephole_pass): Add a missing instruction check.
7941 Fri Dec 7 22:08:23 CET 2007 Paolo Molaro <lupus@ximian.com>
7943 * mini.c: run type ctor before allocating an object, not only
7944 when running it's constructor method (fixes at least part of bug #342507).
7946 2007-12-07 Zoltan Varga <vargaz@gmail.com>
7948 * mini-trampolines.c (mono_delegate_trampoline): Fix a warning.
7950 * mini-trampolines.c (mono_generic_class_init_trampoline): Remove a debug printf.
7951 * mini.h mini-amd64.c mini-x86.c: Get rid of the mono_arch_find_vtable ()
7954 * tramp-x86.c tramp-amd64.c mini-trampolines.c: Pass the vtable argument to
7955 mono_generic_class_init_trampoline () the same as it is done with the other
7958 * mini-arm.h mini-arm.c tramp-arm.c inssel-arm.brg cpu-arm.md
7959 aot-runtime.c aot-compiler.c: Implement AOT support.
7961 2007-12-07 Mark Probst <mark.probst@gmail.com>
7963 * mini-trampolines.c (mono_generic_class_init_trampoline): Fixed
7964 build for archs which don't have the vtable trampoline defined
7967 2007-12-07 Zoltan Varga <vargaz@gmail.com>
7969 * tramp-x86.c (mono_arch_create_trampoline_code): Fix the build.
7971 * tramp-ppc.c (mono_arch_create_trampoline_code): Use the new helper function.
7973 * mini-trampolines.c (mono_get_trampoline_func): New helper function.
7975 * tramp-<ARCH>.c: Use the new helper function.
7977 2007-12-07 Mark Probst <mark.probst@gmail.com>
7979 * inssel.brg: Added a pattern for the OP_TRAMPCALL_VTABLE
7980 trampoline call, which takes a vtable argument.
7982 * graph.c, mini-ops.h, local-propagation.c, aliasing.c: Treat
7983 OP_TRAMPCALL_VTABLEs like other calls.
7985 * mini-amd64.c, mini-amd64.h, mini-x86.c, mini-x86.h: Designated a
7986 register to hold the vtable argument to the OP_TRAMPCALL_VTABLE
7987 call. Implemented a support function which fetches the vtable
7988 from a register set.
7990 * mini.c, mini.h, tramp-amd64.c, tramp-x86.c, mini-trampolines.c:
7991 Implemented a generic class init trampoline, using the
7992 OP_TRAMPCALL_VTABLE opcode.
7994 * mini.c: Implemented static field access when sharing generic
7995 code. This implies initing the class using the new
7996 OP_TRAMPCALL_VTABLE call.
7998 2007-12-07 Mark Probst <mark.probst@gmail.com>
8000 * mini.c: Don't compile methods with sharing enabled if their
8001 classes are disabled for sharing.
8003 2007-12-06 Zoltan Varga <vargaz@gmail.com>
8005 * inssel.brg: Add a missing sign extension to the GETCHR and array access
8006 opcodes. Fixes #346563.
8008 * objects.cs: Add a new test.
8010 * aot-compiler.c (emit_method_code): Put back an #ifdef which is needed.
8012 * mini-<ARCH>.h mini.c aot-compiler.c aot-runtime.c: Get rid of the
8013 HAVE_PIC_AOT define and use AOT_SUPPORTED instead.
8015 2007-12-06 Zoltan Varga <vargaz@gmail.com>
8017 * mini-arm.h mini-arm.c: Add support for the common vtable trampoline.
8019 2007-12-03 Zoltan Varga <vargaz@gmail.com>
8021 * mini-arm.c (mono_arch_emit_exceptions): Avoid uninitialized memory in the
8024 2007-12-02 Zoltan Varga <vargaz@gmail.com>
8026 * patch-info.h (PATCH_INFO): Add DELEGATE_TRAMPOLINE.
8028 * mini.c aot-compiler.c aot-runtime.c: Implement the delegate creation
8029 optimization in the AOT case.
8031 2007-11-30 Zoltan Varga <vargaz@gmail.com>
8033 * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings.
8035 * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances.
8037 * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances.
8039 * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination.
8041 * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate
8042 is created by the inlined delegate ctor.
8044 * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
8046 * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too.
8048 2007-11-29 Zoltan Varga <vargaz@gmail.com>
8050 * cpu-x86.md: Fix the length of ckfinite.
8052 2007-11-28 Zoltan Varga <vargaz@gmail.com>
8054 * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX.
8056 * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE.
8057 (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset.
8059 * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations.
8061 * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the
8062 OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c.
8064 2007-11-28 Martin Baulig <martin@ximian.com>
8067 (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline()
8068 after creating the trampoline.
8070 2007-11-27 Zoltan Varga <vargaz@gmail.com>
8072 * aot-runtime.c (load_aot_module): Check runtime version if needed.
8074 * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with
8077 * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class
8078 instead of the calling method to help AOT.
8080 * mini.c (get_runtime_generic_context_other_ptr): Update after the change.
8082 2007-11-26 Zoltan Varga <vargaz@gmail.com>
8084 * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE
8087 2007-11-23 Zoltan Varga <vargaz@gmail.com>
8089 * aot-compiler.c (emit_class_name_table): Properly encode generic class names.
8091 * aot-compiler.c (compile_method): Correct check for generic method definitions.
8092 (encode_method_ref): No need to handle generic method definitions specially.
8094 * mini.h (MONO_AOT_FILE_VERSION): Bump this.
8096 * aot-runtime.c (decode_klass_ref): Clean this up and rename from
8099 * aot-compiler.c (encode_klass_ref): Clean this up and rename from
8101 (compile_method): Enable generic sharing.
8103 2007-11-22 Zoltan Varga <vargaz@gmail.com>
8105 * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here.
8106 (mini_method_compile): Add preliminary support for AOTing shared generic code.
8108 * aot-compiler.c (compile_method): Add preliminary support for AOTing shared
8111 * mini-trampolines.c: Fix a warning.
8113 * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of
8115 (mono_method_to_ir): Use NEW_DOMAINCONST in one place.
8116 (generic_class_is_reference_type): Remove unused function.
8118 * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible
8119 in the generic vtable trampoline case.
8121 * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline.
8123 * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to
8124 return an AOT method based on a vtable slot.
8126 * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now.
8128 * mini.c (mini_get_vtable_trampoline): Export this.
8130 2007-11-22 Martin Baulig <martin@ximian.com>
8133 (MonoDebuggerInfo): Move `debugger_version' up.
8135 2007-11-22 Martin Baulig <martin@ximian.com>
8138 (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline().
8140 * mini-trampolines.c
8141 (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled()
8142 after compiling the method.
8144 2007-11-20 Martin Baulig <martin@ximian.com>
8147 (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c.
8148 (mono_debugger_remove_breakpoint): Likewise.
8149 (mono_debugger_check_breakpoints): Likewise.
8151 * debug-debugger.c: Implement the new breakpoint interface here.
8153 2007-11-18 Zoltan Varga <vargaz@gmail.com>
8155 * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of
8156 CEE_CONV_I1/SEXT_I1 and I2 since they are the same.
8158 * mini-x86.c (mono_arch_output_basic_block): Ditto.
8160 2007-11-17 Zoltan Varga <vargaz@gmail.com>
8162 * mini-amd64.c (mono_arch_output_basic_block): Fix a typo.
8164 * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in
8167 * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in
8170 * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods
8171 returning a vtype in a register.
8173 * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations
8174 here from the arch specific code.
8176 * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in
8179 * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations.
8180 (mono_arch_emit_prolog): Increment maximum prolog size.
8182 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the
8183 START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c.
8185 * mini-x86.c (get_call_info): Receive a MonoCompile instead of a
8186 MonoGenericSharingContext.
8188 * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a
8189 MonoGenericSharingContext. Allocate memory from the cfg mempool.
8191 2007-11-15 Mark Probst <mark.probst@gmail.com>
8193 * mini.c, mini.h, generic-sharing.c: Functions for producing code
8194 which extract fields out of the runtime generic context. Full
8195 sharing of the NEWARR opcode.
8197 Thu Nov 15 14:20:21 CET 2007 Paolo Molaro <lupus@ximian.com>
8199 * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement
8200 --enable-minimal=ssa.
8202 2007-11-13 Zoltan Varga <vargaz@gmail.com>
8204 * mini-trampolines.c (mono_delegate_trampoline): Update after
8205 mono_marshal_get_delegate_invoke () signature change.
8207 2007-11-13 Mark Probst <mark.probst@gmail.com>
8209 * mini.c: Removed the shared context in favor of the generic
8210 sharing context. Allocate the MonoJitInfo structure with room for
8211 the generic sharing context if it's needed.
8213 * mini.h: Remove MonoGenericSharingContext declaration. It's in
8214 domain-internals.h now.
8216 * mini-x86.c: Pass the generic sharing context to get_call_info ().
8218 * generic-sharing.c: Several changes for working without a shared
8219 context and instead operating on open types instead.
8221 2007-11-12 David S. Miller <davem@davemloft.net>
8223 * inssel-sparc.brg: Fix double instruction emit.
8225 2007-11-12 Zoltan Varga <vargaz@gmail.com>
8227 * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array
8228 Get/Set/Address methods.
8230 * mini.c debug-debugger.c mini-trampolines.c: Update after
8231 mono_marshal_get_delegate_invoke signature change.
8233 2007-11-12 Rodrigo Kumpera <rkumpera@novell.com>
8235 * cpu-arm.md: Increase the max size of OP_THROW to 24 bytes.
8236 This can happens with dynamic methods. Fixes the other bug in #322722.
8238 2007-11-12 Rodrigo Kumpera <rkumpera@novell.com>
8240 * tramp-arm.c (mono_arch_patch_callsite): Support patching
8243 * mini-arm.c (arm_patch): Implement patching of BX call
8244 sequence. Fixes one of the bugs in #322722.
8246 2007-11-03 David S. Miller <davem@huronp11.davemloft.net>
8248 * mini-sparc.c (mono_arch_flush_icache): Make more efficient
8249 under Linux. We only need to flush every 32-byte cache line.
8251 2007-11-07 Massimiliano Mantione <massi@ximian.com>
8254 move_basic_block_to_end: Add branches when needed, eventually creating
8256 optimize_branches: added a parameter that tells if it's ok to create
8257 new BBs (doing is "df_visit" has been called is (IMHO) a nightmare),
8258 and avoid calling move_basic_block_to_end when it's not ok.
8261 2007-11-07 Mark Probst <mark.probst@gmail.com>
8263 * mini.c: Abort inlining call to InitializeArray if something
8264 looks wrong. Let the icall handle it, which now has proper safety
8267 2007-11-05 Rodrigo Kumpera <rkumpera@novell.com>
8269 * mini.c (mono_spill_call): add support for soft-float.
8271 * mini.c (mono_method_to_ir): add support for soft-float
8272 to inlined functions that return float.
8274 * mini.c (mono_method_to_ir): add support for soft-float
8275 to cee_stsfld opcode on float fields.
8277 2007-11-05 Geoff Norton <gnorton@novell.com>
8279 * mini-x86.h: Fix the structure access for X86 Leopard.
8282 2007-11-05 Martin Baulig <martin@ximian.com>
8284 * mini-trampolines.c
8285 (mono_magic_trampoline): Call mono_debugger_trampoline_compiled()
8286 after compiling the method to notify the debugger.
8288 2007-11-05 Martin Baulig <martin@ximian.com>
8290 * debug-debugger.h (MonoDebuggerInfo): Use the new breakpoint tables.
8292 2007-11-02 Zoltan Varga <vargaz@gmail.com>
8294 * mini-sparc.c (EMIT_COND_SYSTEM_EXCEPTION_GENERAL): Applied patch from
8295 David Miller <davem@davemloft.net>. Allow larger offsets in branches.
8297 2007-11-01 Zoltan Varga <vargaz@gmail.com>
8299 * mini-amd64.c (mono_arch_emit_prolog): Check the domain as well for
8300 native-to-managed wrappers.
8302 2007-11-01 Geoff Norton <gnorton@novell.com>
8304 * mini-ppc.h, mini-x86.h: Handle Leopards renaming of some structure
8307 Wed Oct 31 20:23:14 CET 2007 Paolo Molaro <lupus@ximian.com>
8309 * mini.c, mini-x86.c: when getting back from unmanaged code
8310 to managed via a marshaled delegate we also need to set the
8313 Wed Oct 31 19:53:33 CET 2007 Paolo Molaro <lupus@ximian.com>
8315 * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support
8318 Wed Oct 31 19:29:30 CET 2007 Paolo Molaro <lupus@ximian.com>
8320 * mini.c, mini.h, mini-x86, tramp-x86.c, mini-x86.h: added API to
8321 let the debugger or other external agents to tell the JIT when
8322 a sw breakpoint has been inserted in the code that the JIT needs
8323 to be able to inspect.
8325 2007-10-31 Martin Baulig <martin@ximian.com>
8328 (MonoDebuggerInfo): Remove `runtime_class_init'.
8330 2007-10-30 Martin Baulig <martin@ximian.com>
8333 (mono_debugger_thread_created): Added `MonoThread *' argument.
8334 (mono_debugger_extended_notification): New public method.
8335 (mono_debugger_trampoline_compiled): New public method.
8338 (MonoDebuggerThreadInfo): Added `thread' and
8339 `extended_notifications' fields.
8342 (debugger_executable_code_buffer): New static variable.
8345 (MonoDebuggerInfo): Added `executable_code_buffer',
8346 `executable_code_buffer_size', `breakpoint_info_area',
8347 `breakpoint_table' and `breakpoint_table_size'.
8349 2007-10-26 Rodrigo Kumpera <rkumpera@novell.com>
8351 * mini-arm.c (mono_arch_build_imt_thunk): Take the advantage
8352 that IP either is an unused value or the vtable pointer. IMT
8353 calls use vtable + offset now. Reduced by almost half the size
8356 2007-10-26 Jonathan Chambers <joncham@gmail.com>
8358 * mini-amd64.c: Begin Win64 port. Use AMD64_ARG_REG#
8359 defines to access param registers. Replace long usage with
8360 gsize as sizeof(long) != sizeof(void*) on Win64.
8362 * mini-amd64.h: Add %rdi and %rsi to MonoLMF structure
8363 on Win64. Fix intrinsic, use _AddressOfReturnAddress
8364 instead of non-existant _GetAddressOfReturnAddress.
8366 * tramp-amd64.c: Use AMD64_ARG_REG# defines to access
8367 param registers. Save/restore %rdi and %rsi in MonoLMF.
8369 * exceptions-amd64.c: Use AMD64_ARG_REG# defines to access
8370 param registers. Modify (throw_exception) signature to take
8371 %rdi and %rsi on Win64.
8373 Code is contributed under MIT/X11 license.
8375 Thu Oct 25 23:06:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
8377 * helpers.c: unlink debugging output files.
8379 2007-10-25 Zoltan Varga <vargaz@gmail.com>
8381 * mini.c: Move mono_create_ftnptr () to object.c.
8383 2007-10-24 Rodrigo Kumpera <rkumpera@novell.com>
8385 * helpers.c (mono_disassemble_code): MonoCompile parameter is now
8386 optional. This function can now be used to disassemble code generated
8387 outside the JIT such as trampolines and IMT thunks.
8389 * mini-arm.h: defined MONO_ARCH_HAVE_IMT.
8391 * mini-arm.c (decode_vcall_slot_from_ldr): added, extract the
8392 vtable pointer from a ldr instruction.
8394 * mini-arm.c (mono_arch_get_vcall_slot_addr): support the
8395 new IMT call sequence.
8397 * mini-arm.c (mono_arch_output_basic_block): emit the IMT
8398 call sequence for interface invocations.
8400 * mini-arm.c (mono_arch_emit_imt_argument): added, required
8401 for imt support. This function is empty since IMT on ARM requires no
8402 special handling on the IR side.
8404 * mini-arm.c (mono_arch_find_imt_method): added, required for
8407 * mini-arm.c (mono_arch_find_this_argument): added, required
8410 * mini-arm.c (arm_emit_value_and_patch_ldr): added, patches
8411 a ldr instruction to load a value stored in the code stream.
8413 * mini-arm.c (mono_arch_build_imt_thunk):added, required
8417 2007-10-23 Zoltan Varga <vargaz@gmail.com>
8419 * mini.c (mini_init): Install the jump trampoline callback.
8421 Tue Oct 23 17:07:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8423 * mini-trampolines.c: handle synchronized methods with the common
8424 vtable trampoline (bug #335601).
8426 2007-10-17 Zoltan Varga <vargaz@gmail.com>
8428 * mini-ia64.h mini-amd64.c: Add support for the common vtable trampoline.
8430 * inssel.brg (mini_emit_virtual_call): Fix the computation of ins->inst_offset on
8433 * mini-ia64.h mini-ia64.c: Add support for IMT.
8435 * mini-x86.c (mono_arch_emit_prolog): Increase the size allocated for the
8436 prolog. Fixes #331958.
8438 2007-10-15 Zoltan Varga <vargaz@gmail.com>
8440 * mini-sparc.h mini-sparc.c: Add support for the common vtable trampoline.
8442 Mon Oct 15 11:18:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8444 * mini-ppc.c, mini-ppc.h: ppc support for the common vtable
8447 Mon Oct 15 10:41:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8449 * mini-amd64.c, mini-amd64.h: amd64 support for the common vtable
8452 Mon Oct 15 10:39:26 CEST 2007 Paolo Molaro <lupus@ximian.com>
8454 * mini-x86.c, mini-x86.h: x86 support for the common vtable
8457 Mon Oct 15 10:37:15 CEST 2007 Paolo Molaro <lupus@ximian.com>
8459 * mini-trampolines.c: changed the magic rampoline to understand
8460 the common vtable trampoline method: the method to invoke is
8461 determined by the vtable displacement of the call.
8463 Mon Oct 15 10:35:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
8465 * mini.c, mini.h: register the common vtable trampoline if the
8466 architecture supports it.
8468 Mon Oct 15 09:50:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
8470 * cpu-amd64.md: use the correct max length for tls_get.
8472 2007-10-14 Zoltan Varga <vargaz@gmail.com>
8474 * mini.c (mono_method_to_ir): Use mini_get_class in CEE_LDELEM_ANY and
8475 CEE_STELEM_ANY. Fixes #333696.
8477 Thu Oct 11 18:04:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
8479 * exceptions-x86.c: provide more graceful handling of the case where
8480 we followed a bogus function pointer from managed code (bug #332866).
8482 2007-10-11 Mark Probst <mark.probst@gmail.com>
8484 * mini.h, mini.c: Introduced the MonoGenericSharingContext, which
8485 replaces the generic_shared flag and will carry more information
8488 * generic-sharing.c: Added mini_type_stack_size() which allows
8489 allows open types if given a generic sharing context.
8490 mini_get_basic_type_from_generic() takes a
8491 MonoGenericSharingContext* instead of a MonoCompile* now.
8493 * mini-alpha.c, mini-amd64.c, mini-arm.c, mini-hppa.c,
8494 mini-ia64.c, mini-mips.c, mini-ppc.c, mini-s390.c, mini-s390x.c,
8495 mini-sparc.c, mini-x86.c: Trivial changes required by the two
8496 changes above. Just passing arguments through to the right
8499 Wed Oct 10 19:44:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8501 * mini-arm.c: unify the call emission to emit_code_seq().
8503 Wed Oct 10 13:05:46 CEST 2007 Paolo Molaro <lupus@ximian.com>
8505 * tramp-arm.c: reduced the trampoline size.
8507 2007-10-10 Mark Probst <mark.probst@gmail.com>
8509 * generic-sharing.c, mini.h, mini-amd64.c, mini-x86.c: Moved type
8510 variable handling out of arch-specific code.
8512 Wed Oct 10 10:49:28 CEST 2007 Paolo Molaro <lupus@ximian.com>
8514 * mini-arm.c: implemented fast delegate dispatch.
8516 2007-10-09 Zoltan Varga <vargaz@gmail.com>
8518 * mini-amd64.c (mono_arch_compute_omit_fp): Add more checks to ensure
8519 that fp elimination is turned off if the space required by locals is too
8522 Tue Oct 9 21:01:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
8524 * Makefile.am, mini-arm.c, mini-arm.h, tramp-arm.c: ported
8525 ARM to the new style trampoline.
8527 2007-10-09 Zoltan Varga <vargaz@gmail.com>
8529 * tramp-amd64.c: Rework the specific trampoline code to make it smaller.
8531 * mini-amd64.h mini-amd64.c: Export amd64_patch as mono_amd64_patch.
8533 2007-10-09 Martin Baulig <martin@ximian.com>
8536 (MonoDebuggerMetadataInfo): Added `field_info_type_offset' and
8537 `field_info_offset_offset'.
8539 Tue Oct 9 09:47:51 CEST 2007 Paolo Molaro <lupus@ximian.com>
8541 * mini-ppc.c, mini-ppc.h, mini-ops.h, inssel-ppc.brg, cpu-g4.md:
8542 removed more internal usage of the r11 register and made it available
8543 to the register allocator.
8545 2007-10-08 Mark Probst <mark.probst@gmail.com>
8547 * mini.c, mini-amd64.c, mini-x86.c: Allow open generic contexts
8548 when sharing generics and treat type variables as references.
8550 Mon Oct 8 10:55:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8552 * mini-ppc.c: started removing the internal uses of register r11
8553 to eventually allow the register allocator to manage it as an
8554 additional available register.
8556 Mon Oct 8 14:25:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
8558 * tramp-amd64.c: fixed memory corruption in the trampoline generation.
8560 Mon Oct 8 12:06:33 CEST 2007 Paolo Molaro <lupus@ximian.com>
8562 * tramp-ppc.c, tramp-x86.c: reduce the alignment requirements for
8563 specific trampolines as they are not performance critical as a jump
8564 target (maybe align as before only for AOT code?). This saves about
8565 200 KB of native code on x86 for monodevelop startup.
8567 Mon Oct 8 10:04:40 CEST 2007 Paolo Molaro <lupus@ximian.com>
8569 * tramp-ppc.c: reduce the size of the trampolines, saves 160KB on
8570 monodevelop startup.
8572 2007-10-06 Zoltan Varga <vargaz@gmail.com>
8574 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Allow signed displacements.
8576 * mini-sparc.h mini-sparc.c: Implement IMT support.
8578 * tramp-sparc.c (mono_arch_create_trampoline_code): Rework the trampoline code so
8579 its smaller and doesn't clobber sparc_g1.
8581 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Update after trampoline changes.
8583 Fri Oct 5 18:28:11 CEST 2007 Paolo Molaro <lupus@ximian.com>
8585 * mini-ppc.c: optimized the size of the IMT thunks a bit.
8587 Fri Oct 5 18:08:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
8589 * mini-ppc.c: implemented fast delegate invocation.
8591 Fri Oct 5 00:01:05 CEST 2007 Paolo Molaro <lupus@ximian.com>
8593 * mini-ppc.h, mini-ppc.c: IMT support for the PPC architecture.
8595 Thu Oct 4 22:04:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8597 * mini-ppc.c, mini-ppc.h, tramp-ppc.c, Makefile.am: port the PPC
8598 code to the new style trampoline in preparation for IMT support.
8600 Thu Oct 4 19:01:59 CEST 2007 Paolo Molaro <lupus@ximian.com>
8602 * mini-ppc.c, tramp-ppc.c: don't use r13 as it's used by the PPC EABI
8603 systems already. This also reduces the specific trampiline sizes and
8604 prepares for the use of r12 as the IMT identifier register.
8606 Thu Oct 4 16:38:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8608 * mini-mips.h: endianess fix (simplified from a patch by
8609 Thomas Kunze <thommy@tabao.de>, bug #323737).
8611 Thu Oct 4 14:43:49 CEST 2007 Paolo Molaro <lupus@ximian.com>
8613 * exceptions-ppc.c, mini-ppc.h: refactor to use macros
8614 to access ucontext fields and enable netbsd support
8615 (partially from Magnus Henoch <mange@freemail.hu>).
8617 Thu Oct 4 12:35:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8619 * genmdesc.pl: patch from Henryk Plötz <henryk@openmoko.org> to
8620 use the preprocessor from the CPP env var if it is set.
8622 Wed Oct 3 17:11:38 CEST 2007 Paolo Molaro <lupus@ximian.com>
8624 * mini-trampolines.c: fixed an assertion and moved it earlier in the
8625 code, before interface_offset gets used.
8627 2007-10-02 Zoltan Varga <vargaz@gmail.com>
8629 * mini-trampolines.c (mono_convert_imt_slot_to_vtable_slot): Call
8630 mono_class_setup_vtable () before accessing klass->vtable.
8632 2007-10-01 Zoltan Varga <vargaz@gmail.com>
8634 * aot-compiler.c (get_plt_index): Rework the handling of wrappers to be not so
8637 Mon Oct 1 15:00:27 CEST 2007 Paolo Molaro <lupus@ximian.com>
8639 * mini.c, mini-trampolines.c, mini.h: enable the lazy filling of the
8640 IMT slots (this saves hundreds of KB of memory in programs like
8641 IronPython and Monodevelop).
8643 Mon Oct 1 14:44:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
8645 * mini.c: print the delegate counter.
8647 Mon Oct 1 14:36:50 CEST 2007 Paolo Molaro <lupus@ximian.com>
8649 * mini-x86.c: make it easier to enable the debugging code for IMT
8652 2007-09-28 Martin Baulig <martin@ximian.com>
8655 (MonoDebuggerMetadataInfo): Add `klass_image_offset',
8656 `mono_method_klass_offset' and `mono_method_token_offset'.
8658 2007-09-20 Mark Probst <mark.probst@gmail.com>
8660 * mini.c: First generics sharing implementation. Can only share
8661 in very simple cases. If sharing doesn't work it falls back to
8662 dedicated compilation.
8664 * mini.h: Flag in MonoCompile to specify whether generic
8665 compilation is shared. Flags enum for marking which generic inst
8666 of a context is used. Prototypes for helper functions.
8668 * generic-sharing.c: Helper functions for generic method sharing.
8670 * optflags-def.h: Optimization flag (gshared) for enabling generic
8671 method sharing added.
8673 * Makefile.am: generic-sharing.c added.
8675 2007-09-19 Daniel Nauck <dna@mono-project.de>
8677 * mini.c (mono_thread_abort): fixed typo in r86014. It should be '==' instead of '!='.
8679 2007-09-19 Massimiliano Mantione <massi@ximian.com>
8680 * mini.c (mono_thread_abort): Correctly handle ThreadAbortException,
8683 2007-09-19 Martin Baulig <martin@ximian.com>
8685 * mini.c (mini_cleanup): Only call mono_debugger_cleanup() here;
8686 mono_debug_cleanup() is now part of mono_cleanup().
8688 2007-09-18 Zoltan Varga <vargaz@gmail.com>
8690 * driver.c (mono_main): Fix a warning.
8692 2007-09-17 Zoltan Varga <vargaz@gmail.com>
8694 * aot-compiler.c: Optimize various parts when processing large assemblies.
8697 * mini.c (mono_patch_info_hash): Improve hash function.
8699 2007-09-14 Jonathan Chambers <joncham@gmail.com>
8701 * mini-exceptions.c: Add HAVE_UNISTD_H check around include.
8703 Code is contributed under MIT/X11 license.
8705 2007-09-14 Zoltan Varga <vargaz@gmail.com>
8707 * mini.c (mini_init): Fix a leak.
8709 * debug-mini.c (mono_debug_free_method_jit_info): Fix a leak.
8711 Fri Sep 14 12:53:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8713 * mini.c: redirect string.InternalAllocStr() to the managed allocator.
8715 2007-09-14 Zoltan Varga <vargaz@gmail.com>
8717 * mini-amd64.c (mono_arch_find_imt_method): Add support for AOT code.
8719 2007-09-13 Zoltan Varga <vargaz@gmail.com>
8721 * Makefile.am generics-variant-types.2.il generics.cs: Add some generics
8724 * inssel.brg: Reorganize the isinst/castclass code to reduce code duplication.
8726 * mini.c (handle_alloc): Enable managed allocators in AOT code.
8728 * aot-compiler.c (encode_patch): Add support for MONO_WRAPPER_ALLOC.
8730 * aot-runtime.c (decode_patch_info): Ditto.
8732 2007-09-12 Jonathan Chambers <joncham@gmail.com>
8734 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement
8735 static case. Cache delegates in architecture specific code,
8736 based on number of parameters.
8738 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): Cache delegates
8739 in architecture specific code, based on number of parameters.
8741 * mini-trampolines.c (mono_delegate_trampoline): Architecture specific
8742 caching happen in architecture specific code now.
8744 Code is contributed under MIT/X11 license.
8746 2007-09-12 Jonathan Chambers <joncham@gmail.com>
8748 * mini.h, mini.c, mini-x86.c, mini-amd64.c, mini-hppa.c, mini-mips.c,
8749 mini-s390x.c, mini-arm.c, mini-ia64.c, mini-sparc.c, mini-ppc.c, mini-alpha.c,
8750 mini-s390.c: Add mono_arch_init and mono_arch_cleanup methods.
8752 Code is contributed under MIT/X11 license.
8754 2007-05-15 Massimiliano Mantione <massi@ximian.com>
8755 * mini.c: (mono_thread_abort) Fixed bug #82416.
8757 Tue Sep 11 16:15:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8759 * mini.: hook the new managed GC allocation feature into the JIT.
8761 Tue Sep 11 16:14:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
8763 * mini.c: implementation for the new runtime tls opcode.
8765 2007-09-11 Martin Baulig <martin@ximian.com>
8768 (MonoDebuggerMetadataInfo): Add `mono_method_flags_offset' and
8769 `mono_method_inflated_offset'.
8771 2007-09-07 Zoltan Varga <vargaz@gmail.com>
8773 * driver.c mini.h mini.c: Add a new devel command line option for injecting
8774 async exceptions into a method.
8776 * mini-amd64.h mini-amd64.c: Implement injecting of async exceptions for the
8777 purpose of testing whenever the unwinder works at every instruction.
8779 Thu Sep 6 12:42:14 CEST 2007 Paolo Molaro <lupus@ximian.com>
8781 * mini.c: check accessibility of method used in ldftn (fixes
8784 2007-09-04 Zoltan Varga <vargaz@gmail.com>
8786 * mini-amd64.c (mono_arch_output_basic_block): Fix a warning.
8788 * inssel.brg: Fix a warning.
8790 2007-09-03 Martin Baulig <martin@ximian.com>
8792 * debug-debugger.c: `MONO_DEBUGGER_EVENT_INITIALIZE_MANAGED_CODE'
8793 now takes the `main_method' as argument.
8795 2007-09-02 Zoltan Varga <vargaz@gmail.com>
8797 * cpu-sparc.md (endfilter): Add missing src1:i argument.
8799 2007-08-30 Jonathan Chambers <joncham@gmail.com>
8801 * driver.c: include the cil-coff.h header on Windows.
8803 Code is contributed under MIT/X11 license.
8805 Thu Aug 30 16:17:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
8807 * mini.c, driver.c: don't include the cil-coff.h header.
8809 Thu Aug 30 14:50:53 CEST 2007 Paolo Molaro <lupus@ximian.com>
8811 * mini.c: flag places that needs fixes fo soft-float support.
8813 Wed Aug 29 18:26:20 CEST 2007 Paolo Molaro <lupus@ximian.com>
8815 * mini.h, inssel-float.brg: fix soft-float constant loads on big
8816 endian systems (partially from Dean Jenkins, bug #81924).
8818 2007-08-28 Mark Probst <mark.probst@gmail.com>
8820 * mini.c (check_linkdemand): Remove embedded reference object in
8821 call to LinkDemandSecurityException.
8822 (mono_jit_compile_method_inner): Call LinkDemandSecurityException
8823 with an IntPtr instead of a reference object.
8825 2007-08-28 Zoltan Varga <vargaz@gmail.com>
8827 * mini.c (handle_initobj): Handle alignment properly.
8829 * inssel.brg (mini_emit_memset): Ditto.
8831 * inssel.brg (mini_emit_memcpy): Ditto.
8833 * inssel-sparc.brg: Ditto.
8835 * mini.h mini.c inssel-*.brg: Pass alignment information to OP_MEMCPY/MEMSET.
8837 2007-08-26 Zoltan Varga <vargaz@gmail.com>
8839 * mini-exceptions.c (mono_handle_exception_internal): Skip the first frame for
8840 exceptions raised in unmanaged code. Fixes part of #82594.
8842 2007-08-24 Mark Probst <mark.probst@gmail.com>
8844 * mini.c (mono_method_to_ir), declsec.c
8845 (mono_declsec_linkdemand_aptc): Fixed custom attr leaks.
8847 2007-08-22 Martin Baulig <martin@ximian.com>
8850 (MonoDebuggerThreadInfo): New typedef.
8851 (mono_debugger_thread_table): New global variable.
8852 (mono_debugger_thread_created): New public function.
8853 (mono_debugger_thread_cleanup): New public function.
8857 - removed `get_current_thread' and `lookup_assembly'.
8858 - removed `data_table'.
8859 - added `thread_table'.
8862 (mono_thread_start_cb): Call mono_debugger_thread_created().
8863 (mono_thread_attach_cb): Likewise.
8864 (mini_thread_cleanup): Call mono_debugger_thread_cleanup().
8865 (mini_cleanup): Move mono_debug_cleanup() down, after free'ing the
8868 * driver.c (mono_main): Move mono_debug_init() up, before calling
8869 mini_init(); mono_debug_init_1() and mono_debug_init_2() are gone.
8871 Tue Aug 21 16:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
8873 * mini-x86.c, inssel-x86.brg: group multiple stack adjustments
8874 together when passing several arguments of type double (gives a small
8875 speedup and saves a few bytes of generated code).
8877 2007-08-20 Jb Evain <jbevain@novell.com>
8879 * mini.c (mono_method_to_ir): fix leak on InvalidProgramException.
8881 2007-08-20 Jb Evain <jbevain@novell.com>
8883 * mini.c (mono_method_to_ir): throw MethodAccessException
8884 and FieldAccessException instead of InvalidProgramException.
8886 2007-08-20 Mark Probst <mark.probst@gmail.com>
8888 * mini.c: CoreCLR security checks.
8890 * mini.h: Removed MonoSecurityMode (moved to
8891 metadata/security-manager.h) and mono_security_mode global var
8892 (replaced by set/get functions in security-manager.h).
8894 * driver.c: Added "core-clr-test" security mode for testing. Used
8895 set-function for setting security mode.
8897 2007-08-17 Mark Probst <mark.probst@gmail.com>
8899 * mini.c: MonoJitInfo's are freed hazardously now. Statistics for
8900 the new jit_info_table.
8902 * driver.c: Test code for the new jit_info_table (enabled by the
8903 define MONO_JIT_INFO_TABLE_TEST).
8905 2007-08-14 Zoltan Varga <vargaz@gmail.com>
8907 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
8908 detection of call <REG> instruction sequence. Fixes build on freebsd.
8910 2007-08-13 Zoltan Varga <vargaz@gmail.com>
8912 * mini-exceptions.c: Fix a warning.
8914 2007-08-11 Zoltan Varga <vargaz@gmail.com>
8916 * exceptions-amd64.c (mono_arch_handle_altstack_exception): Enable the new
8917 stack overflow handling code on amd64 too.
8919 * mini-exceptions.c (mono_setup_altstack): Make this use
8920 mono_thread_get_stack_bounds ().
8922 * mini-x86.h: Disable sigaltstack on solaris x86.
8924 2007-08-10 Zoltan Varga <vargaz@gmail.com>
8926 * mini-exceptions.c (mono_setup_altstack): Enable this to work on solaris x86.
8928 2007-08-10 Geoff Norton <gnorton@customerdna.com>
8930 * tramp-x86.c: Remove some unneeded alignment changes on Apple. Fixes #82387.
8932 2007-08-08 Zoltan Varga <vargaz@gmail.com>
8934 * mini-exceptions.c (mono_print_thread_dump): Enable this on amd64 too.
8936 * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Fix a warning.
8938 2007-08-03 Neale Ferguson <neale@sinenomine.net>
8940 * mini-s390.c (add_general): Adjust offset calculation to take into account of rounding up
8943 Thu Aug 2 17:36:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
8945 * mini-ppc.c: avoid an invalid encoding of unsigned right shift by 0
8946 to be emitted (bug #82281).
8948 2007-08-01 Martin Baulig <martin@ximian.com>
8950 Merged the `debugger-dublin' branch.
8952 * debug-debugger.h (MonoDebuggerInfo):
8953 Removed the `old_*' compatibility entries.
8954 Added `debugger_version' and `data_table'.
8955 Renamed `get_method_addr_or_bpt' -> `insert_breakpoint'.
8956 Renamed `remove_method_breakpoint' -> `remove_breakpoint'.
8959 (MiniDebugMethodBreakpointInfo): Add `address_list'.
8960 (mono_debugger_check_breakpoints): Take a `MonoDebugMethodAddress *'
8961 instead of a `gconstpointer'.
8962 (mono_debugger_insert_method_breakpoint): Return a
8963 `MonoDebugMethodAddressList *'.
8965 2007-06-28 Martin Baulig <martin@ximian.com>
8967 * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
8969 2007-08-01 Zoltan Varga <vargaz@gmail.com>
8971 * mini-amd64.h (MONO_INIT_CONTEXT_FROM_FUNC): Avoid using
8972 __builtin_frame_address () since it is broken on older gcc versions.
8974 Tue Jul 31 17:34:42 CEST 2007 Paolo Molaro <lupus@ximian.com>
8976 * mini.c, mini.h, mini-exceptions.c: added a bit of documentation
8977 on the stack overflow handling and made the managed stack overflows
8978 catchable in most cases using soft guard pages.
8979 * exceptions-x86.c: added code to restore the protection in the soft
8980 guard pages at the end of exception handling.
8982 2007-07-31 Zoltan Varga <vargaz@gmail.com>
8984 * mini.c (SIG_HANDLER_SIGNATURE): Fix a warning.
8986 Mon Jul 30 17:43:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8988 * exceptions-ppc.c, mini-ppc.h: arch-specific stack overflow
8991 Mon Jul 30 17:38:13 CEST 2007 Paolo Molaro <lupus@ximian.com>
8993 * mini-alpha.h, mini-ia64.h, mini-sparc.h: disable the altstack
8994 signal handling support until it has been ported to the new mechanism.
8995 * mini.c: fixed stack overflow detection and use the new
8996 architecture code to handle signals on the altstack.
8998 Mon Jul 30 17:33:02 CEST 2007 Paolo Molaro <lupus@ximian.com>
9000 * exceptions-amd64.c, mini-amd64.h: amd64 code to handle
9001 stack overflows on the alt stack.
9003 Mon Jul 30 17:29:56 CEST 2007 Paolo Molaro <lupus@ximian.com>
9005 * exceptions-x86.c, mini-x86.h, mini.h: new code to handle
9006 stack overflows on the alt stack.
9008 Mon Jul 30 11:50:06 CEST 2007 Paolo Molaro <lupus@ximian.com>
9010 * exceptions-ppc.c: cleanup preparing for altstack support.
9012 Mon Jul 30 11:31:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9014 * exceptions-arm.c: cleanup preparing for altstack support.
9016 2007-07-27 Mark Probst <mark.probst@gmail.com>
9018 * mini.c (print_jit_stats): Output hazard pointer stats.
9020 2007-07-26 Mark Probst <mark.probst@gmail.com>
9022 * driver.c, mini.c: Replaced security mode flags with a single
9025 Thu Jul 26 20:12:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9027 * mini.c, mini-exceptions.c: cleanup the sigaltstack code.
9029 2007-07-25 Mark Probst <mark.probst@gmail.com>
9031 * mini.c, mini.h, driver.c (mono_main): Added command-line flag
9032 (which doesn't do anything yet) for activating Core CLR
9033 (Silverlight) security.
9035 Tue Jul 24 21:16:17 CEST 2007 Paolo Molaro <lupus@ximian.com>
9037 * mini-codegen.c: work around a possible gcc bug on arm.
9039 Tue Jul 24 17:20:19 CEST 2007 Paolo Molaro <lupus@ximian.com>
9041 * driver.c, mini-x86.h, mini-amd64.h: print a nice error
9042 message for platforms that don't support AOT compilation.
9044 Mon Jul 23 10:29:29 CEST 2007 Paolo Molaro <lupus@ximian.com>
9046 * mini.h, mini.c, driver.c: temporary smcs hack.
9048 Mon Jul 23 09:29:34 CEST 2007 Paolo Molaro <lupus@ximian.com>
9050 * mini-arm.h, mini-arm.c: arm EABI fixes.
9052 2007-07-22 Zoltan Varga <vargaz@gmail.com>
9054 * exceptions-x86.c (mono_arch_find_jit_info): Handle the lmf->method == NULL
9057 * tramp-x86.c (mono_arch_create_trampoline_code): Only set lmf->method for
9058 trampolines taking a method argument.
9060 * mini-x86.h (MonoLMF): Add an 'esp' field plus comments.
9062 * mini-x86.c (mono_arch_emit_prolog): Update after changes to the LMF structure.
9063 * tramp-x86.c (mono_arch_create_trampoline_code): Ditto.
9065 * exceptions-x86.c (mono_arch_get_jit_info): Properly clean up the stack after
9066 JIT compilation throws an exception. Fixes #82050.
9068 2007-07-19 Mark Probst <mark.probst@gmail.com>
9070 * mini.c: Removed the MonoLoaderErrorKind enum and replaced it
9071 with the MONO_EXCEPTION_ defines.
9073 2007-07-17 Zoltan Varga <vargaz@gmail.com>
9075 * mini-amd64.c (mono_arch_find_imt_method): Handle mov reg,IMM64 case. Fixes
9078 * mini-amd64.c (mono_arch_find_imt_method): Add some debug code to help find out
9079 the cause of an assertion.
9081 Mon Jul 16 19:31:21 CEST 2007 Paolo Molaro <lupus@ximian.com>
9083 * mini.c, jit-icalls.c: mono_get_inflated_method() is obsolete,
9086 2007-07-15 Zoltan Varga <vargaz@gmail.com>
9088 * mini-amd64.c (mono_arch_build_imt_thunk): Remove the non-32bit MonoMethod
9089 assert. Should fix #82103.
9091 2007-07-14 Zoltan Varga <vargaz@gmail.com>
9093 * mini-exceptions.c (mono_jit_walk_stack_from_ctx): Use MONO_CONTEXT_GET_SP ()
9094 here too. Fixes #82095.
9096 * mini-amd64.c (mono_arch_build_imt_thunk): Add support for non-32bit MonoMethod
9099 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a couple asserts.
9101 * mini-amd64.h: Enable IMT for amd64.
9103 * mini-amd64.c (mono_arch_build_imt_thunk): Optimize IMT thunk size.
9105 2007-07-12 Zoltan Varga <vargaz@gmail.com>
9107 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for IMT call sequences.
9109 2007-07-12 Mark Probst <mark.probst@gmail.com>
9111 * mini.c (check_linkdemand, mono_method_to_ir): Abort compilation
9112 as soon as check_linkdemand sets an exception_type.
9114 Thu Jul 12 12:18:22 CEST 2007 Paolo Molaro <lupus@ximian.com>
9116 * mini-x86.c: fixed offsets for IMT call sequence.
9117 * mini-x86.h: enable IMT again.
9119 2007-07-11 Zoltan Varga <vargaz@gmail.com>
9121 * trace.c (mono_trace_enter_method): Decode MonoType too.
9123 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Handle signed displacements too.
9125 * mini.h mini-x86.h mini-trampolines.c: Change the signature of mono_arch_find_imt_method () to pass the calling code address too.
9127 * mini-amd64.c: Add preliminary IMT implementation.
9129 Wed Jul 11 18:21:30 CEST 2007 Paolo Molaro <lupus@ximian.com>
9131 * mini-x86.c: adjusted mono_arch_get_vcall_slot_addr () to
9132 understand the new IMT-base interface invocation (thanks to
9133 Daniel Nauck for the report and the remote debugging session).
9135 Wed Jul 11 14:54:39 CEST 2007 Paolo Molaro <lupus@ximian.com>
9137 * mini-x86.c: size and speed optimizations for the IMT bsearch.
9139 2007-07-11 Zoltan Varga <vargaz@gmail.com>
9141 * Makefile.am (aotcheck): Make this actually use the AOTed code.
9143 Wed Jul 11 12:41:32 CEST 2007 Paolo Molaro <lupus@ximian.com>
9145 * mini-trampolines.c: implement AOT IMT support.
9146 * mini-x86.h: enable IMT support for wider testing.
9148 2007-07-10 Zoltan Varga <vargaz@gmail.com>
9150 * inssel.brg (emit_imt_argument): Add aot support here.
9152 * aot-runtime.c (decode_patch_info): Fix reading of MONO_PATCH_INFO_METHOD.
9154 Tue Jul 10 17:50:58 CEST 2007 Paolo Molaro <lupus@ximian.com>
9156 * mini-x86.c, mini-x86.h, tramp-x86.c: x86 arch-specific changes
9157 of the IMT implementation, partially from massi, with my
9158 implementation of the bsearch sequence. Disabled by default until
9159 the AOT code is implemented.
9161 2007-07-10 Zoltan Varga <vargaz@gmail.com>
9163 * cpu-x86.md: The source argument of sext_i1/i2 must by a byte reg.
9165 * inssel-x86.brg: Add reg:ldind.i1(regvar) rules. Fixes #82056.
9167 Tue Jul 10 17:33:12 CEST 2007 Paolo Molaro <lupus@ximian.com>
9169 * inssel.brg, mini.c, mini.h, mini-trampolines.c:
9170 arch-independent IMT JIT code from Massimiliano
9171 Mantione (massi@ximian.com) with small cleanups from me.
9173 Tue Jul 10 13:07:24 CEST 2007 Paolo Molaro <lupus@ximian.com>
9175 * Makefile.am: fix svn invocation to get the svn revision to be
9176 independent of the local language (build fix).
9178 2007-07-09 Mark Probst <mark.probst@gmail.com>
9180 * mini.c (inline_method): Reset cfg->exception_type if the
9181 inlining is aborted. Fixes: 82049.
9183 Mon Jul 9 17:26:47 CEST 2007 Paolo Molaro <lupus@ximian.com>
9185 * mini.c: remove assert from exception handling code when exception_ptr
9188 2007-07-05 Zoltan Varga <vargaz@gmail.com>
9190 * mini.c (mono_codegen): Add an assert.
9192 * mini-x86.c (mono_arch_emit_prolog): Allocate space for the profiler method
9193 enter and leave code.
9194 * mini-amd64.c (mono_arch_emit_prolog): Likewise.
9196 Thu Jul 5 20:12:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9198 * mini-ppc.c: fixed memory corruption for localloc(0)
9201 2007-07-05 Zoltan Varga <vargaz@gmail.com>
9203 * mini.c: Fix warnings.
9205 Wed Jul 4 15:30:36 CEST 2007 Paolo Molaro <lupus@ximian.com>
9207 * optflags-def.h, mini-x86.c: added sse2 optimization flag and use it
9208 to emit better double->int conversions.
9210 Tue Jul 3 19:42:16 CEST 2007 Paolo Molaro <lupus@ximian.com>
9212 * mini.c: the provided Min/Max optimizations are valid for unisgned
9215 2007-07-03 Rodrigo Kumpera <rkumpera@novell.com>
9217 * 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
9219 2007-06-28 Miguel de Icaza <miguel@novell.com>
9221 * mini.c (mono_running_on_valgrind): Add support for reporting the
9222 method and its boundaries to valgrind.
9224 2007-06-28 Martin Baulig <martin@ximian.com>
9226 * debug-debugger.h (MonoDebuggerInfo): Added `debugger_version'.
9228 2007-06-25 Zoltan Varga <vargaz@gmail.com>
9230 * ssa.c (visit_inst): Add support for OP_BR. Fixes #81946.
9232 * generic.2.cs: Add new test case.
9234 2007-06-25 Martin Baulig <martin@ximian.com>
9236 Merged the `debugger-dublin' branch.
9239 (mono_debugger_insert_method_breakpoint): New public method.
9240 (mono_debugger_remove_method_breakpoint): Likewise.
9241 (mono_debugger_check_breakpoints): New static method.
9242 (mono_debug_close_method): Call mono_debugger_check_breakpoints().
9244 * debug-debugger.h (MonoDebuggerInfo):
9245 Renamed (to keep backward compatibility in the vtable):
9246 `insert_breakpoint' -> `old_insert_breakpoint'.
9247 `remove_breakpoint' -> `old_remove_breakpoint'.
9248 `create_string' -> `old_create_string'.
9249 `lookup_class' -> `old_lookup_class'.
9250 `lookup_type' -> removed; changed into a dummy field.
9251 `lookup_assembly' -> `old_lookup_assembly'.
9252 Added (same functionality, but different signature):
9253 `create_string', `lookup_class', `lookup_assembly'
9255 `get_method_addr_or_bpt', `remove_method_breakpoint',
9256 `runtime_class_init'.
9258 * debug-debugger.c: Merged the `debugger-dublin' branch.
9260 2007-06-23 Zoltan Varga <vargaz@gmail.com>
9262 * mini-amd64.c (peephole_pass_1): Optimize away moves at the beginning of the bb as
9264 (peephole_pass): Likewise.
9266 Fri Jun 22 09:17:08 CEST 2007 Paolo Molaro <lupus@ximian.com>
9268 * driver.c: hopefully make setaffinity work also for ancient
9271 2007-06-22 Atsushi Enomoto <atsushi@ximian.com>
9273 * driver.c : win32 build fix.
9275 Thu Jun 21 19:24:03 CEST 2007 Paolo Molaro <lupus@ximian.com>
9277 * driver.c: check for the MONO_NO_SMP env var and bind to a single
9278 processor if it is set.
9280 2007-06-21 Martin Baulig <martin@ximian.com>
9282 * debug-mini.h: New file.
9285 (mono_debugger_insert_breakpoint_full): Moved here from
9286 ../metadata/mono-debug-debugger.c.
9287 (mono_debugger_remove_breakpoint): Likewise.
9288 (mono_debugger_breakpoint_callback): Likewise.
9290 2007-06-15 Raja R Harinath <rharinath@novell.com>
9292 * jit-icalls.c (mono_helper_compile_generic_method): Update to
9293 changes in MonoGenericClass.
9295 2007-06-14 Zoltan Varga <vargaz@gmail.com>
9297 * mini-codegen.c (mono_opcode_to_type): Fix ia64 build.
9299 2007-06-14 Raja R Harinath <rharinath@novell.com>
9301 * jit-icalls.c (mono_helper_compile_generic_method): Update to
9302 removal of MonoGenericMethod.
9304 Thu Jun 14 12:42:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9306 * mini-exceptions.c: hooks for the exception events profiling API.
9308 2007-06-14 Randolph Chung <tausq@debian.org>
9310 * Makefile.ma: Add hppa target.
9311 * mini-arch.h: Include mini-hppa.h
9312 * cpu-hppa.md, exceptions-hppa.c, inssel-hppa.brg, mini-hppa.c,
9313 mini-hppa.h, tramp-hppa.c: New files for 32-bit HPPA port.
9314 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9316 2007-06-14 Randolph Chung <tausq@debian.org>
9318 * inssel.brg: Add rules for "chained" compare-branch operations so that
9319 a single compare op can affect multiple branches. Adjust cost for
9320 OP_CEQ/OP_CGT/OP_CGT_UN/OP_CLT/OP_CLT_UN.
9321 * inssel-long32.brg: Update rules to use compare-branch macros. Adjust
9322 cost for some rules so that they can more easily be overridden by
9323 per-arch rules (with fixes from lupus).
9324 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9326 2007-06-13 Randolph Chung <tausq@debian.org>
9328 * mini-ops.h: Reorder branch ops so that they match the order of the
9329 corresponding CEE_* ops. The code expects them this way.
9330 Add new ops for HPPA target.
9331 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9333 2007-06-13 Randolph Chung <tausq@debian.org>
9335 * mini-exceptions.c: Handle cases where the stack grows towards
9337 Contributed under the X11 license (http://bugzilla.ximian.com/show_bug.cgi?id=81866).
9339 Wed Jun 13 19:13:23 CEST 2007 Paolo Molaro <lupus@ximian.com>
9341 * jit-icalls.c, mini.h, mini.c: added virtual generic invoke
9343 * driver.c: explain where a non-matching corlib is found.
9345 2007-06-13 Mark Probst <mark.probst@gmail.com>
9347 * mini.c (print_jit_stats): Output dynamic code allocation stats.
9349 2007-06-10 Sanghyeon Seo <sanxiyn@gmail.com>
9351 * mini-exceptions.c: Generate a method profile leave event during
9352 an exception to ensure that the profiler gets notified.
9354 2007-06-07 Zoltan Varga <vargaz@gmail.com>
9356 * mini-amd64.c (peephole_pass): Merge some small changes from the linear-ir
9359 * cpu-amd64.md: Add long_and/or/xor opcodes.
9361 2007-06-06 Wade Berrier <wberrier@novell.com>
9363 * cpu-s390x.md (shr_imm): Correct the length of shr_imm instruction.
9364 (./class/lib/monolite/mcs.exe:25498): WARNING **: wrong maximal instruction
9365 length of instruction shr_imm (expected 8, got 10)
9367 2007-06-06 Zoltan Varga <vargaz@gmail.com>
9369 * mini-ia64.c (mono_arch_output_basic_block): Really fix the build.
9371 2007-06-06 Mark Probst <mark.probst@gmail.com>
9373 * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9374 MonoInternalHashTable again (fixed bug in the internal hash table
9377 2007-06-06 Mark Probst <mark.probst@gmail.com>
9379 * mini.c, driver.c: Reverted the MonoInternalHashTable changes.
9380 Have to figure out what makes it crash the SWF regression.
9382 2007-06-05 Zoltan Varga <vargaz@gmail.com>
9384 * mini-ia64.c (mono_arch_lowering_pass): Fix ia64 build.
9386 Tue Jun 5 17:40:04 CEST 2007 Paolo Molaro <lupus@ximian.com>
9388 * mini.c: optimize out the type check when storing null in a
9391 2007-06-04 Mark Probst <mark.probst@gmail.com>
9393 * mini.c, driver.c: Changed MonoDomain.jit_code_hash to a
9394 MonoInternalHashTable.
9396 Mon Jun 4 11:29:43 CEST 2007 Paolo Molaro <lupus@ximian.com>
9398 * inssel.brg, mini.c, mini-ops.h: optimized Math.Mini/Max
9399 signed integer methods.
9401 2007-06-02 Zoltan Varga <vargaz@gmail.com>
9403 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case
9404 permanently since the current approach doesn't work.
9406 2007-06-02 Zoltan Varga <vargaz@gmail.com>
9408 * inssel.brg (stmt): Only call delegate->invoke_impl if
9409 MONO_ARCH_HAVE_CREATE_DELEGATE_TRAMPOLINE is defined.
9411 2007-06-01 Zoltan Varga <vargaz@gmail.com>
9413 * mini-amd64.c (mono_arch_output_basic_block): Unify div/rem opcodes and handle
9414 the sreg2==rdx case.
9416 * mini-amd64.c cpu-amd64.md: Correct length of r4const instruction and take into
9417 account if it contains a rex prefix.
9418 (peephole_pass): Handle OP_FMOVE as well.
9420 2007-06-01 Zoltan Varga <vargaz@gmail.com>
9422 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Disable the static case for now
9423 as it causes regressions.
9425 2007-05-31 Zoltan Varga <vargaz@gmail.com>
9427 * mini-x86.c (mono_arch_get_delegate_invoke_impl): Implement support for the
9428 static case as well.
9430 * tramp-ia64.c (mono_arch_create_trampoline_code): Fix ia64 build.
9432 * mini-x86.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9433 (mono_arch_get_this_arg_from_call): Ditto.
9435 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Removed.
9437 * inssel.brg (mini_emit_virtual_call): Call delegate->Invoke through the delegate's
9440 * mini-amd64.c (mono_arch_get_delegate_invoke_impl): New arch dependent function.
9441 (mono_arch_get_this_arg_from_call): Ditto.
9443 * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Removed.
9445 * mini-trampolines.c (mono_delegate_trampoline): Complete rewrite. On first call,
9446 try to create optimized invoke code and use that for further invocations.
9447 Otherwise, use the original mono_marshal_get_delegate_invoke () implementation.
9449 * mini-x86.h mini-ia64.h: Remove MONO_ARCH_HAS_CREATE_DELEGATE_TRAMPOLINE for now.
9451 2007-05-29 Rodrigo Kumpera <kumpera@gmail.com>
9453 * inssel.brg (mini_emit_virtual_call): Statically dispatch virtual calls to
9454 sealed classes or methods.
9455 *devirtualization.cs: tests for the new optimization
9457 2007-05-29 Zoltan Varga <vargaz@gmail.com>
9459 * liveness.c (update_gen_kill_set): No need to set VOLATILE flags here, it is done
9460 by the update_volatile () function.
9462 2007-05-27 Zoltan Varga <vargaz@gmail.com>
9464 * driver.c (mono_main): Call g_thread_init () early since newer glib versions
9467 * abcremoval.c (mono_perform_abc_removal): Avoid using alloca.
9469 2007-05-24 Jonathan Chambers <joncham@gmail.com>
9471 * mini.c: Add configure checks for header files.
9472 * mini-x86.c: Add configure checks for header files.
9473 * trace.c: Add configure checks for header files.
9474 * aot-runtime.c: Add configure checks for header files.
9475 * aot-compiler.c: Add configure checks for header files.
9476 * driver.c: Add configure checks for header files.
9477 * mini-codegen.c: Add configure checks for header files.
9479 Code is contributed under MIT/X11 license.
9481 2007-05-22 Zoltan Varga <vargaz@gmail.com>
9483 * mini-ia64.c (mono_arch_lowering_pass): Fix the handling of
9484 icompare_imm -128 + op_iclt. Fixes #81703.
9486 2007-05-19 Zoltan Varga <vargaz@gmail.com>
9488 * mini-codegen.c (mono_local_regalloc): Fix long-shift-regalloc on amd64.
9490 2007-05-15 Massimiliano Mantione <massi@ximian.com>
9492 * inssel.brg: added "mini_emit_load_intf_bit_reg_vtable", and used it
9493 inside "mini_emit_isninst_iface_cast" and "mini_emit_castclass_iface"
9494 so that all isinst checks now use "interface_bitmap".
9496 2007-05-15 Zoltan Varga <vargaz@gmail.com>
9498 * cpu-amd64.md (jmp): Fix a warning.
9500 * inssel.brg (CEE_SWITCH): Hopefully fix #80738.
9502 * basic.cs: Add new regression test.
9504 * basic.cs: Remove test which is now in basic-long.cs.
9506 * mini-ia64.c (mono_arch_output_basic_block): Sign extend in CEE_CONV_I8/CEE_CONV_I.
9508 * basic-long.cs: Add new test.
9510 2007-05-13 Zoltan Varga <vargaz@gmail.com>
9512 * mini-sparc.c (mono_spillvar_offset_float): Fix sparc build.
9514 2007-05-12 Zoltan Varga <vargaz@gmail.com>
9516 * cpu-x86.md minix-86.c: Add a peephole_pass_1 () as on amd64.
9518 * mini-x86.c (mono_arch_output_basic_block): Use mono_opcode_to_cond () in a few
9521 * mini-x86.c (mono_arch_emit_exceptions): Decrease the size of the exception
9522 throwing code a bit.
9524 * exceptions-x86.c (mono_arch_get_throw_corlib_exception): Decrease the size of
9525 the exception throwing code a bit.
9527 * mini-x86.c (get_call_info): Allocate result from a mempool.
9529 2007-05-11 Zoltan Varga <vargaz@gmail.com>
9531 * aot-compiler.c (find_typespec_for_class): Fix the assert.
9533 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
9535 * mini.h (MonoCompile): Add 'token_info_hash' field.
9537 * mini.c: Save token->method associations during compilation so the AOT
9538 compiler can use it.
9540 * aot-compiler.c aot-runtime.c: Add support for compiling non-generic methods
9541 which reference generic classes and methods.
9543 2007-05-10 Zoltan Varga <vargaz@gmail.com>
9545 * mini.h mini-<ARCH>.h: Get rid of MONO_ARCH_HAS_XP_LOCAL_REGALLOC.
9547 * aot-compiler.c (compile_method): Fix a typo in a comment.
9549 * aot-runtime.c (decode_cached_class_info): Skip generic types.
9551 * aot-compiler.c: Add minimal support for AOTing generic code by skipping
9554 * mini.c (mono_method_to_ir): Disable AOT when calling helper_compile_generic_method.
9556 2007-05-09 Zoltan Varga <vargaz@gmail.com>
9558 * mini.h (MonoCompile): Add 'args' field.
9560 * mini.c (mono_compile_create_vars): Store variables representing the arguments
9563 * mini-<ARCH>.c: Use cfg->args for accessing the method arguments.
9565 2007-05-08 Zoltan Varga <vargaz@gmail.com>
9567 * mini.c (mono_compile_get_interface_var): Remove this unused function.
9569 * mini-ops.h inssel.brg mini-<ARCH>.c: Add a new opcode for ckfinite as well.
9571 * mini-ops.h: Introduce new opcodes used in the IR instead of the original CEE_
9572 opcodes for some opcodes.
9574 * mini.h *.brg *.c: Use the new opcodes.
9576 2007-05-08 Massimiliano Mantione <massi@ximian.com>
9578 * mini.h: Bumped aot revision.
9580 * inssel.brg: modified code generation of type checks for interfaces
9581 to use the new "MonoClass.interface_bitmap" instead of the old
9582 "MonoClass.interface_offsets".
9584 2007-04-30 Zoltan Varga <vargaz@gmail.com>
9586 * cpu-amd64.md (jmp): Increase the maximum size of the jmp opcode to 128.
9588 2007-04-29 Zoltan Varga <vargaz@gmail.com>
9590 * abcremoval.c (summarize_integer_value): Handle OP_LCONV_TO_I4 to fix abcrem on
9593 2007-04-27 Neale Ferguson <neale@sinenomine.net>
9595 * mini-s390x.c: Fix MONO_TYPE_VALUETYPE processing.
9597 2007-04-27 Wade Berrier <wberrier@novell.com>
9599 * mini-s390x.c: Remove redeclaration of CompRelation and CompType (defined in
9600 mini.h) to fix build.
9602 2007-04-26 Zoltan Varga <vargaz@gmail.com>
9604 * mini-amd64.c (peephole_pass_1): Fix and reenable this pass.
9606 * mini-amd64.c (mono_arch_local_regalloc): Disable the new peephole_pass_1 as it
9607 causes the corlib unit tests to fail.
9609 2007-04-25 Zoltan Varga <vargaz@gmail.com>
9611 * mini-codegen.c (mono_opcode_to_type): Fix a bug in the previous patch.
9613 * mini-amd64.c (peephole_pass_1): New pass to perform before local regalloc.
9615 * mini-codegen.c (mono_opcode_to_cond): New helper function to convert conditional
9616 opcodes to the comparison relations.
9618 * mini-codegen.c (mono_opcode_to_type): New helper function to convert conditional
9619 opcodes to their types.
9621 * mini-ia64.c mini-amd64.c: Use mono_opcode_to_cond and mono_opcode_to_type.
9623 * mini-amd64.c (get_call_info): Allocate the result from the cfg mempool and cache
9624 it in cfg->arch.cinfo.
9626 * local-propagation.c (mono_local_cprop_bb): Fix a warning.
9628 * mini.h mini.c branch-opts.c: Change bbhash to be an array and store it in
9629 cfg->cil_offset_to_bb.
9631 2007-04-24 Zoltan Varga <vargaz@gmail.com>
9633 * liveness.c (optimize_initlocals): New mini-pass to optimize away dead assignments
9634 created becase of initlocals.
9636 2007-04-23 Zoltan Varga <vargaz@gmail.com>
9638 * mini-alpha.c cpu-alpha.md: More alpha port work from
9639 Sergey Tikhonov <tsv@solvo.ru>.
9641 2007-04-21 Andreas Faerber <andreas.faerber@web.de>
9643 * Makefile.am (BUILT_SOURCES): Fix for automake 1.6.x. Fixes #81417.
9645 2007-04-19 Zoltan Varga <vargaz@gmail.com>
9647 * cpu-s390.md (break): Correct the length of break instruction.
9649 Thu Apr 19 16:28:52 CEST 2007 Paolo Molaro <lupus@ximian.com>
9651 * mini.c: fix a couple of soft-float issues and comments.
9653 2007-04-15 Miguel de Icaza <miguel@novell.com>
9655 * trace.c (is_filenamechar): - is also a filename char.
9657 2007-04-15 Neale Ferguson <neale@sinenomine.net>
9659 * mini-s390.c: Correct checking for enum type in return value processing.
9661 2007-04-14 Raja R Harinath <rharinath@novell.com>
9663 * Makefile.am (BUILT_SOURCES): Add 'version.h'.
9664 (version.h): Makefile is in the build directory.
9666 2007-04-06 Andreas Faerber <andreas.faerber@web.de>
9668 * mini-amd64.h: fix for assertion failure on Solaris/amd64
9670 2007-04-11 Martin Baulig <martin@ximian.com>
9672 * mini.c (can_access_member): Fix handling of generic classes;
9675 2007-04-10 Zoltan Varga <vargaz@gmail.com>
9677 * aot-runtime.c (mono_aot_plt_resolve): Fix disabling of AOT. Fixes #81316.
9679 2007-04-05 Zoltan Varga <vargaz@gmail.com>
9681 * aot-runtime.c: Fix disabling of AOT. Fixes #81316.
9683 Fri Mar 23 20:25:31 CET 2007 Paolo Molaro <lupus@ximian.com>
9685 * mini-codegen.c: make sure the right spill amount is
9686 used for fp or integer registers (fixes the float_sub_spill() on ppc).
9688 Fri Mar 23 19:43:35 CET 2007 Paolo Molaro <lupus@ximian.com>
9690 * mini-ppc.c: fixes for the fp_branch_nan test.
9692 2007-03-23 Zoltan Varga <vargaz@gmail.com>
9694 * basic.cs: Comment out new test which still fails on ia64.
9696 Fri Mar 23 15:54:23 CET 2007 Paolo Molaro <lupus@ximian.com>
9698 * mini.c: immediate shifted or fix (mono_metadata_user_string assert).
9700 Fri Mar 23 12:53:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9702 * mini-ppc.c, mini-ppc.h: struct passing ABI fix (bug #77968).
9704 2007-03-22 Zoltan Varga <vargaz@gmail.com>
9706 * cfold.c (FOLD_BINOP): Cast the result to gint32 to prevent overflow problems
9707 on 64 bit machines. Fixes part of #80738.
9709 * basic.cs: Add regression test.
9711 2007-03-17 Zoltan Varga <vargaz@gmail.com>
9713 * inssel.brg basic.cs: Revert previous change to fix build.
9715 * inssel.brg (SWITCH): Clean out the upper word of the switch value on 64 bit
9718 * inssel.brg (SWITCH): Use an integer comparison. Fixes #80738.
9720 * basic.cs: Add new regression test.
9722 2007-03-17 Zoltan Varga <vargaz@gmail.com>
9724 * mini-ia64.c (mono_arch_emit_prolog): Fix an assert when a function has too
9727 2007-03-16 Neale Ferguson <neale@sinenomine.net>
9729 * cpu-s390x.md: Correct length of break instruction.
9731 2007-03-16 Neale Ferguson <neale@sinenomine.net>
9733 * mini-s390x.c, cpu-s390x.md: Fix #80507 for s390x.
9734 * mini-s390.c, cpu-s390.md: Fix #80507 for s390.
9736 2007-03-15 Jonathan Chambers <joncham@gmail.com>
9738 * *.c: Begin WIN64 port.
9739 * mini.c: Use correct register in profiler.
9740 * mini-amd64.c: No inline assembly on Win64.
9741 * mini-amd64.h: Implement MONO_INIT_CONTEXT_FROM_FUNC for Win64.
9742 Only define MONO_ARCH_USE_SIGACTION on non-windows platforms.
9743 * exceptions-amd64.c: Only need gregs_from_ucontext if MONO_ARCH_USE_SIGACTION
9744 is defined. Implement mono_arch_sigctx_to_monoctx, mono_arch_monoctx_to_sigctx, and
9745 mono_arch_ip_from_context for Win64.
9747 Contributed under MIT/X11 license.
9749 2007-03-15 Zoltan Varga <vargaz@gmail.com>
9751 * exceptions-amd64.c (seh_handler): Ditto.
9753 * exceptions-x86.c (seh_handler): Fix a memory leak.
9755 Thu Mar 15 13:47:59 CET 2007 Paolo Molaro <lupus@ximian.com>
9757 * mini-arm.c, mini-mips.c, mini-ppc.c, mini-s390.c,
9758 mini-s390x.c: fixed peephole optimizations to deal
9759 correctly with 1 and 2 byte reload avoidance.
9761 Thu Mar 15 10:17:54 CET 2007 Paolo Molaro <lupus@ximian.com>
9763 * cpu-s390.md, cpu-s390x.md: update localloc length.
9765 Wed Mar 14 21:00:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9767 * cpu-g4.md: added missing descriptions.
9769 2007-03-14 Miguel de Icaza <miguel@novell.com>
9771 * Makefile.am: Add support so the tail tests are not executed on
9772 PowerPC as that is a known limitation of the PowerPC port.
9774 2007-03-13 Jonathan Chambers <joncham@gmail.com>
9776 * runmdesc.bat: Move to msvc directory.
9778 2007-03-13 Jonathan Chambers <joncham@gmail.com>
9780 * runmdesc.bat: Run executable that was produced by the current
9781 target and sent via an argument.
9783 2007-03-11 Zoltan Varga <vargaz@gmail.com>
9785 * mini.c (mono_method_to_ir): Fix box+brtrue optimization. Fixes
9788 * generics.2.cs: Add regression test.
9790 2007-03-09 Wade berrier <wberrier@novell.com>
9792 * mini-ppc.h: Undo typo of MONO_CONTEXT_SET_SP (ppc doesn't define this symbol)
9794 2007-03-09 Zoltan Varga <vargaz@gmail.com>
9796 * aot-runtime.c (load_aot_module): Load all dependent assemblies eagerly since all
9797 AOT code depends on this.
9799 Thu Mar 8 19:36:13 CET 2007 Paolo Molaro <lupus@ximian.com>
9801 * mini.c: more precise tracking of types in the eval stack
9802 (part of fix for bug #81044).
9804 2007-03-07 Zoltan Varga <vargaz@gmail.com>
9806 * aot-runtime.c (mono_aot_get_class_from_name): Add a cache.
9808 * aot-compiler.c (encode_patch): Remove an obsolete comment.
9810 2007-03-06 Zoltan Varga <vargaz@gmail.com>
9812 * mini-exceptions.c (mono_handle_native_sigsegv): Fix a warning.
9814 * mini.c (mono_method_to_ir): Add a workaround for bug #80733.
9816 2007-02-22 Zoltan Varga <vargaz@gmail.com>
9818 * mini.c (type_from_op): Convert CEE_CONV_U to OP_LCONV_TO_U when the argument is
9819 a pointer on 64 bit systems. Fixes #80190.
9821 * iltests.il: Add new regression test.
9823 Tue Feb 20 11:33:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9825 * mini.c: inline a constant for Environment.IsRunningOnWindows.
9827 2007-02-19 Geoff Norton <gnorton@customerdna.com>
9829 * trace.c: Remove an erroneous alignemnt check when tracing.
9830 Fixes --trace on OSX86.
9832 Wed Feb 14 19:45:56 CET 2007 Paolo Molaro <lupus@ximian.com>
9834 * mini-$(arch).h: initialize SP in context for all the archs.
9836 2007-02-14 Sebastien Pouliot <sebastien@ximian.com>
9838 * mini-x86.h: Initialize SP in MONO_INIT_CONTEXT_FROM_FUNC. Fix CAS
9839 regressions in the thread tests.
9841 2007-02-14 Zoltan Varga <vargaz@gmail.com>
9843 * *-alpha.*: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>:
9844 - fixed implementation of LOCALLOC opcode
9845 - implemented non-un compare for floats
9847 - implementation of FDIV and CKFINITE opcodes
9848 - fixes for latest mono updates
9849 - additional arch opcodes
9851 Mon Feb 12 11:54:16 CET 2007 Paolo Molaro <lupus@ximian.com>
9853 * Makefile.am: simplify and merge rules for cross-compilation.
9855 2007-02-07 Massimiliano Mantione <massi@ximian.com>
9857 * local-propagation.c: Actually *apply* the fix for bug 80591...
9859 Tue Feb 6 19:03:19 CET 2007 Paolo Molaro <lupus@ximian.com>
9861 * mini-exceptions.c: backuot part of the last change
9862 (fixes cas tests on amd64 related to GetExecutingAssembly ()).
9864 2007-02-06 Massimiliano Mantione <massi@ximian.com>
9865 * inssel.brg: Fix bug 59286.
9868 Tue Feb 6 12:23:50 CET 2007 Paolo Molaro <lupus@ximian.com>
9870 * mini-exceptions.c: patch from Zoltan to correctly check for
9871 stack boundaries (using the stack register, not the frame register),
9872 fixes bugs #80724, #79717.
9874 2007-02-03 Zoltan Varga <vargaz@gmail.com>
9876 * mini-ia64.c inssel-sparc.brg mini-sparc.c cpu-sparc.md: Get rid of OP_SETREG/
9877 OP_SETREGIMM, use OP_MOVE/OP_ICONST instead.
9879 * mini-amd64.c (mono_arch_output_basic_block): Fix ATOMIC_EXCHANGE in the
9880 presence of frame pointer elimination.
9882 2007-02-01 Geoff Norton <gnorton@customerdna.com>
9884 * mini-x86.h: NetBSD UCONTEX_REG defines.
9886 2007-02-01 Zoltan Varga <vargaz@gmail.com>
9888 * inssel-amd64.brg: Fix amd64 build.
9890 Thu Feb 1 14:02:09 CET 2007 Paolo Molaro <lupus@ximian.com>
9892 * mini.h: remove extern to workaround what looks likes gcc bug 26905
9895 2007-01-31 Zoltan Varga <vargaz@gmail.com>
9897 * mini-codegen.c (mono_is_regsize_var): New helper function usable by the back
9900 * mini-<ARCH>.c: Use mono_is_regsize_var ().
9902 2007-01-30 Mark Mason <mason@broadcom.com>
9904 * exceptions-mips.c: Lots of exception handling fixes, LMFs now work, some cleanups.
9905 * mini-mips.h: Add LMF magic numbers, and fix context set/get macros.
9906 * mini-mips.c: Cleanups, LMF handling now works, optimize store of zero, implement localloc
9907 beginning support for CEE_JMP [not quite working yet]
9908 * tramp-mips.c: LMF handling now works
9910 2007-01-30 Zoltan Varga <vargaz@gmail.com>
9912 * mini-amd64.c (peephole_pass): Optimize code common in initlocals blocks.
9914 * mini.h (NULLIFY_INS): New macro.
9916 Tue Jan 30 16:33:33 CET 2007 Paolo Molaro <lupus@ximian.com>
9918 * mini.c: statistical profiler fix for windows, patch
9919 from Tor Lillqvist (tml@novell.com).
9921 2007-01-30 Massimiliano Mantione <massi@ximian.com>
9922 * local-propagation.c: Fix bug 80591.
9924 Mon Jan 29 12:14:34 CET 2007 Paolo Molaro <lupus@ximian.com>
9926 * Makefile.am: put back the --export-dynamic option as with
9927 the previous gmodule flags (thanks to Robert Jordan).
9929 2007-01-28 Zoltan Varga <vargaz@gmail.com>
9931 * mini-sparc.c (peephole_pass): Fix #80622 for sparc as well.
9933 mini.h *.c: Allocate fp vregs from the same pool as the int vregs. Use this to
9934 simplify and speed up the local register allocator. Also rename some fields
9935 like iassign->vassign.
9937 * regalloc.c: Remove some functions which are no longer used since their
9938 inlined version is in mini-codegen.c.
9940 * mini-codegen.c: Rename mono_regstate2_ functions to mono_regstate_.
9942 * basic.cs objects.cs iltests.il: Merge tests from the linear IL branch.
9944 2007-01-27 Zoltan Varga <vargaz@gmail.com>
9946 * mini-amd64.c (peephole_pass): Remove optimizations which omit a
9947 narrowing. Fixes #80622.
9949 * iltests.il: Add new regresssion test.
9951 Fri Jan 26 18:31:45 CET 2007 Paolo Molaro <lupus@ximian.com>
9953 * mini.h, mini-trampolines.c, aliasing.c, mini-codegen.c,
9954 debug-debugger.c, debug-debugger.h: warning fixes.
9955 * driver.c: updated copyright year and made it fit in one line.
9957 Fri Jan 26 12:48:39 CET 2007 Paolo Molaro <lupus@ximian.com>
9959 * aot-runtime.c: updated to use mono-dl instead of gmodule.
9961 2007-01-25 Zoltan Varga <vargaz@gmail.com>
9963 * mini-x86.c (mono_arch_output_basic_block): Fix #80507 for x86.
9965 * mini-amd64.c (mono_arch_output_basic_block): Fix #80507 for amd64.
9967 * iltests.il: Add new test for bug #80507.
9969 Wed Jan 24 19:10:28 CET 2007 Paolo Molaro <lupus@ximian.com>
9971 * mini-arm.h: use soft-float also on vfp for now.
9973 Wed Jan 24 14:54:40 CET 2007 Paolo Molaro <lupus@ximian.com>
9975 * mini.c: fix some more soft-float issues.
9977 2007-01-24 Zoltan Varga <vargaz@gmail.com>
9979 * mini-sparc.h (MONO_ARCH_FRAME_ALIGNMENT): Fix sparc build.
9981 2007-01-24 Massimiliano Mantione <massi@ximian.com>
9982 * mini-arch.h, , inssel-amd64.brg, mini-x86.c, inssel-x86.brg,
9983 mini-ia64.c, mini-sparc.c, mini-alpha.c: Introduced
9984 MONO_ARCH_LOCALLOC_ALIGNMEENT to fix bug 80498.
9986 Wed Jan 24 12:04:39 GMT 2007 Paolo Molaro <lupus@ximian.com>
9988 * mini-arm.c: typo fix.
9990 2007-01-23 Neale Ferguson <neale@sinenomine.net>
9992 * mini-s390x.c: Use lgb instructions for I1 type variables instead of lb.
9994 2007-01-21 Zoltan Varga <vargaz@gmail.com>
9996 * mini.c (mono_allocate_stack_slots_full): Allocate memory from the cfg mempool.
9997 Share stack slots for scalar types. Avoid expensive g_list_free () calls.
9999 * mini-x86.c (mono_arch_allocate_vars): Don't free the result of allocate_stack_slots_full.
10001 * mini-amd64.c mini-ia64.c mini-alpha.c: Ditto.
10003 * mini.h (MonoJitStats): Add a new JIT statistics: locals_stack_size.
10005 * inssel.brg: Fix a warning.
10007 * mini.h (MonoBasicBlock): Make bb->dominated a GSList.
10009 * abcremoval.c ssa.c ssapre.c: Update after this change.
10011 * dominators.c (compute_dominators): Allocate bb->dominated from the cfg mempool.
10013 * dominators.c (df_set): Use mono_bitset_union_fast.
10015 Sat Jan 20 16:59:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10017 * mini.h, genmdesc.c, genmdesc.pl, mini-${arch}.c, cprop.c,
10018 mini-codegen.c: reduce relocations and memory usage for the cpu
10021 2007-01-20 Zoltan Varga <vargaz@gmail.com>
10023 * mini-codegen.c (mono_regstate2_alloc_int): Optimize this using bsfq on amd64.
10025 * genmdesc.c genmdesc.pl mini.h: Remove some unused fields from the mdesc tables
10026 to reduce their size.
10028 2007-01-19 Mark Mason <mason@broadcom.com>
10030 * exceptions-mips.c: fix mono_arch_ip_from_context(), increase exception debug support.
10031 * mini-mips.c: more configuration macros, support long conditional branches, additional
10032 asserts, fix epilog instrumentation.
10033 * mini-mips.h: use standard stack walk
10034 * cpu-mips.md: increase size of div, rem and conditional branches
10036 Fri Jan 19 17:23:32 CET 2007 Paolo Molaro <lupus@ximian.com>
10038 * mini.h, mini-codegen.c, mini-$(arch).h: claenup references
10041 2007-01-19 Zoltan Varga <vargaz@gmail.com>
10043 * aot-compiler.c (encode_klass_info): Allow classes of the form <Type>[][].
10044 (compile_method): Ditto.
10046 * aot-runtime.c (decode_klass_info): Ditto.
10048 * mini.c (mono_method_to_ir): Call mono_get_got_var () in a place where it is
10049 needed by the code generated by inssel.brg. Also fix a warning.
10051 Thu Jan 18 17:55:22 CET 2007 Paolo Molaro <lupus@ximian.com>
10053 * mini.c: deal with enums that become genericinsts by
10054 being nested in a generic class (bug #79956).
10056 Thu Jan 18 16:52:56 CET 2007 Paolo Molaro <lupus@ximian.com>
10058 * mini.c: match the generic definition to check for
10059 private access with generic types (bug #78431).
10061 Thu Jan 18 11:50:13 CET 2007 Paolo Molaro <lupus@ximian.com>
10063 * genmdesc.pl, Makefile.am: perl implementation of genmdesc,
10064 to make life easier for people cross-compiling that insist on not
10067 2007-01-17 Mark Mason <mason@broadcom.com>
10069 * inssel-long.brg: patch to deal with mips missing flags
10070 * inssel-long32-mips.brg: implement overflow checks
10071 * insset-mips.brg: implement overflow checks
10072 * mini-mips.h: implement conditional exception handling
10073 * mini-mips.c: add mips_emit_exc_by_name(), implement conditional exception handling.
10074 Remove unused code, minor cleanups.
10075 * exceptions-mips.c: minor cleanups
10076 * mini-ops.h: add mips conditional exception ops
10077 * cpu-mips.md: add mips conditional exception ops
10080 Wed Jan 17 19:22:34 CET 2007 Paolo Molaro <lupus@ximian.com>
10082 * inssel.brg: patch from Mark Mason <mason@broadcom.com>
10083 to deal with mips missing of flags.
10085 Tue Jan 16 20:01:01 CET 2007 Paolo Molaro <lupus@ximian.com>
10087 * exceptions-ppc.c: execute fault handlers.
10089 Tue Jan 16 19:54:44 CET 2007 Paolo Molaro <lupus@ximian.com>
10091 * mini-ppc.c: handle missing call locationss with FORCE_INDIR_CALL.
10093 Tue Jan 16 13:14:31 CET 2007 Paolo Molaro <lupus@ximian.com>
10095 * mini.c: handle also floating point values in initialize_array.
10097 Tue Jan 16 12:42:40 CET 2007 Paolo Molaro <lupus@ximian.com>
10099 * mini.c, aot-runtime.c, aot-compiler.c: enable aot compilation of
10100 array initialization and make it conditional on the intrins option.
10102 Tue Jan 16 11:28:45 CET 2007 Paolo Molaro <lupus@ximian.com>
10104 * mini.h, patch-info.h, Makefile.am, aot-compiler.c: reduce
10105 relocations and put the patch info names close to the enum definition.
10107 2007-01-15 Mark Mason <mason@broadcom.com>
10109 * basic.cs, exceptions.cs: break up large tests to increase debugability.
10111 Mon Jan 15 18:57:14 CET 2007 Paolo Molaro <lupus@ximian.com>
10113 * mini.c: optimized RuntimeHelpers::InitializeArray () calls.
10115 2007-01-12 Raja R Harinath <rharinath@novell.com>
10117 * mini.c (mono_method_to_ir): Use new MonoGenericContext accessor.
10119 Thu Jan 11 11:16:42 CET 2007 Paolo Molaro <lupus@ximian.com>
10121 * Makefile.am: distribute the mips sources.
10123 Wed Jan 10 19:49:33 CET 2007 Paolo Molaro <lupus@ximian.com>
10125 * mini-codegen.h: handle bug #80489 here, by excluding ecx
10128 Wed Jan 10 19:08:05 CET 2007 Paolo Molaro <lupus@ximian.com>
10130 * cpu-x86.md: back out for now as this triggers other regressions.
10132 Wed Jan 10 18:33:16 CET 2007 Paolo Molaro <lupus@ximian.com>
10134 * cpu-x86.md: force src1 and dest regpair for long shift instructions
10135 to eax:edx, so ecx can't get allocated to them (bug #80489).
10137 Tue Jan 9 12:36:11 CET 2007 Paolo Molaro <lupus@ximian.com>
10139 * mini.c, mini-exceptions.c: enabled running fault handlers
10142 2007-01-03 Miguel de Icaza <miguel@novell.com>
10144 * driver.c: If nothing fail, do not use the string "failed",
10145 because it makes it very annoying to view test result logs on the
10148 2006-12-30 Miguel de Icaza <miguel@novell.com>
10150 * debug-debugger.c (mono_debugger_main): Rename "main" to
10151 "main_method" to prevent a warning.
10153 Remove a warning for unused field.
10155 2006-12-28 Martin Baulig <martin@ximian.com>
10158 (MONO_DEBUGGER__debugger_info): Add `get_lmf_addr'.
10160 2006-12-22 Martin Baulig <martin@ximian.com>
10162 * mdb-debug-info32.s, mdb-debug-info64.s: New files.
10163 Put a pointer to the `MONO_DEBUGGER__debugger_info' into a
10164 seperate `.mdb_debug_info' section, so we can access it from the
10165 debugger even if the binary is stripped.
10167 * debug-debug.c: Reference the `MONO_DEBUGGER__debugger_info_ptr'
10168 from the `.mdb_debug_info' here to prevent the linker from
10169 removing that section.
10171 * Makefile.am (mono_debugger_sources): Add mdb-debug-info32.s /
10172 mdb-debug-info64.s.
10174 2006-12-19 Robert Jordan <robertj@gmx.net>
10176 * mini-x86: enable the code to return small structures in
10177 registers for FreeBSD as well. Fixes bug #80278.
10178 * aot-runtime.c: Include sys/wait.h for WEXITSTATUS/WIFEXITED.
10180 Mon Dec 18 19:47:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10182 * mini-x86.c: align the stack when calling the profiler
10183 function instrumenting the prolog (on OSX).
10185 Thu Dec 14 15:22:43 CET 2006 Paolo Molaro <lupus@ximian.com>
10187 * mini.c: emit a break opcode where Debugger.Break () is called.
10189 2006-12-13 Miguel de Icaza <miguel@novell.com>
10191 * mini.c (mono_method_to_ir): Provide useful information on this
10192 assert, to prevent others from debugging like I did.
10194 Tue Dec 12 17:01:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10196 * mini.c: enable code which was incorrectly commented
10199 Tue Dec 12 16:28:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10201 * mini-x86.c: enable on OSX, too, the code to return small
10202 structures in registers.
10204 Mon Dec 11 19:22:35 CET 2006 Paolo Molaro <lupus@ximian.com>
10206 * mini-x86.c: remove the use of the dynamic code manager here, too.
10208 Mon Dec 11 19:08:33 CET 2006 Paolo Molaro <lupus@ximian.com>
10210 * mini.h, debug-debugger.c, tramp-*.c: fixed
10211 mono_debugger_create_notification_function() to use
10212 mono_global_codeman_reserve () instead of a dynamic code manager.
10214 Tue Dec 5 17:54:50 CET 2006 Paolo Molaro <lupus@ximian.com>
10216 * mini.c, jit-icalls.h, jit-icalls.c: remove the
10217 ves_array_element_address() jit icall and use a generated
10218 managed method instead (which is about 4 times faster for a rank 3
10221 2006-11-29 Mark Mason <mason@broadcom.com>
10223 * basic-calls.cs: additional tests for passing
10224 structures as function arguments.
10226 2006-11-29 Mark Mason <mason@broadcom.com>
10228 * mini-mips.h: disable custom exception handling
10229 * mini-mips.c: throw/rethrow should use jalr to call
10230 exception stubs. Fixed bug with passing structures
10231 by value. More support for tracing floating point
10234 Wed Nov 29 20:28:17 CET 2006 Paolo Molaro <lupus@ximian.com>
10236 * mini.c: fixed typo in the soft-float ldind.r4 handling
10239 Wed Nov 29 11:33:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10241 * mini.c, mini.h, driver.c: added --runtime command line
10242 option to select a different runtime than the autodetected one.
10243 * jit.h: added API for embedders to initialize with a specific
10246 Tue Nov 28 21:24:55 CET 2006 Paolo Molaro <lupus@ximian.com>
10248 * mini.c: handle also boxing of r4 values (bug #80024).
10250 Tue Nov 28 19:45:44 CET 2006 Paolo Molaro <lupus@ximian.com>
10252 * mini-ppc.c: force indirect calls until we reserve
10253 enough address space for all the generated code.
10255 Tue Nov 28 20:04:34 GMT 2006 Paolo Molaro <lupus@ximian.com>
10257 * exceptions-arm.c: workaround bugs in the libc definition
10258 of struct ucontext.
10260 Mon Nov 27 15:13:41 CET 2006 Paolo Molaro <lupus@ximian.com>
10262 * inssel.brg: fixes from me and Mark Mason.
10264 2006-11-23 Dick Porter <dick@ximian.com>
10266 * wapihandles.c (mini_wapi_seminfo): No need to adjust the counter
10267 semaphore display now we've fixed the initial value
10269 Wed Nov 22 11:04:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10271 * inssel.brg: partially revert the last change to fix the build.
10273 2006-11-21 Mark Mason <mason@broadcom.com>
10275 * inssel.brg: Add and use compare-and-branch macros to support
10276 architectures that do not have condition code registers (ie. MIPS).
10277 * *-mips.{c,brg,md}: Fix copyright statements
10279 2006-11-20 Mark Mason <mason@broadcom.com>
10281 * Makefile.am: remove mini-codegen.c from list of MIPS sources
10282 * mini.c: Allow GET_CONTEXT to be specified by the arch port
10283 * mini.h: Added declaration for mono_print_ins()
10284 * mini-codegen.c: added ins_spec initializer for MIPS
10285 * mini-codegen.c (mono_call_inst_add_outarg_reg): added asserts for
10286 vreg to be virtual and hreg to be non-virtual.
10287 * mini-codegen.c (mono_spillvar_offset): assert if MIPS - spilling
10288 is not yet working/implemented correctly.
10289 * mini-codegen.c (print_ins): rename to mono_print_ins(), make
10290 non-static, fixup calls to print_ins() from other parts in the file.
10292 2006-11-20 Mark Mason <mason@broadcom.com>
10294 * basic-calls.cs: added tests for passing structures as arguments
10297 Mon Nov 20 19:40:11 CET 2006 Paolo Molaro <lupus@ximian.com>
10299 * inssel-long32.brg: optimize signed division by power of two.
10301 Mon Nov 20 17:37:58 CET 2006 Paolo Molaro <lupus@ximian.com>
10303 * mini-arm.c: added support for interworking with thumb code
10304 (mono must be still be built using the ARM instruction encoding).
10306 2006-11-19 Miguel de Icaza <miguel@novell.com>
10308 * mini.c (type_from_op): Separate the conditions for OP_EQ as the
10309 verifier has different rules for it. Fixes a few verifier issues
10312 * mini-exceptions.c (mono_handle_native_sigsegv): Put the message
10313 at the end, so people know what happened.
10315 Thu Nov 16 14:07:18 CET 2006 Paolo Molaro <lupus@ximian.com>
10317 * brach-opts.c: in optimize_exception_target() make sure we
10318 are in a catch clause (fixes bug #79871).
10320 Thu Nov 16 12:42:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10322 * jit-icalls.c, jit-icalls.h, mini-arm.c, mini.c:
10323 more soft-float support fixes.
10325 Wed Nov 15 18:45:47 GMT 2006 Paolo Molaro <lupus@ximian.com>
10327 * mini-arm.c, inssel-arm.brg: ABI fix for longs and doubles
10328 that are passed half on the stack and half in registers.
10330 Wed Nov 15 17:00:27 CET 2006 Paolo Molaro <lupus@ximian.com>
10332 * mini-ops.h, mini-arch.h, helpers.c, Makefile.am:
10333 more mips integration work from Mark E Mason
10334 <mark.e.mason@broadcom.com>.
10336 Wed Nov 15 16:34:03 CET 2006 Paolo Molaro <lupus@ximian.com>
10338 * exceptions-mips.c, inssel-mips.brg, mini-mips.h,
10339 cpu-mips.md, inssel-long32-mips.brg, mini-mips.c,
10340 tramp-mips.c: added sources for the mips port, not
10341 integrated in the build yet. Contributed by
10342 Mark E Mason <mark.e.mason@broadcom.com>.
10344 2006-11-14 Neale Ferguson <neale@sinenomine.net>
10346 * mini-s390[x].c (is_regsize_var): Support PTR/FNPTR too.
10348 Tue Nov 14 16:06:37 CET 2006 Paolo Molaro <lupus@ximian.com>
10350 * Makefile.am, inssel-float.brg, inssel-softfloat.brg:
10351 put the soft-float rules in its own file since it seems to
10352 break s390 compilation.
10354 Mon Nov 13 15:54:38 CET 2006 Paolo Molaro <lupus@ximian.com>
10356 * mini-arm.c: fixed wrnings.
10358 Fri Nov 10 19:18:32 CET 2006 Paolo Molaro <lupus@ximian.com>
10360 * mini-arm.c, mini-arm.h, cpu-arm.md, inssel-float.brg,
10361 inssel-arm.brg: ARM support for soft-float.
10363 Fri Nov 10 18:38:15 CET 2006 Paolo Molaro <lupus@ximian.com>
10365 * mini.c, jit-icalls.c, jit-icalls.h: added first cut at handling
10366 loads and stores of 32 bit fp values.
10368 2006-11-10 Zoltan Varga <vargaz@gmail.com>
10370 * mini-sparc.c (is_regsize_var): Support PTR/FNPTR too.
10372 * tramp-sparc.c (mono_arch_patch_callsite): Fix this function so it actually
10373 works. Fixes #79852 and #79463.
10375 Thu Nov 9 16:56:13 CET 2006 Paolo Molaro <lupus@ximian.com>
10377 * mini.c, mini-codegen.c, jit-icalls.c, jit-icalls.h:
10378 more soft-float support WIP and fixes.
10380 Wed Nov 8 16:40:02 CET 2006 Paolo Molaro <lupus@ximian.com>
10382 * mini-arm.c: some VFP updates.
10384 Tue Nov 7 19:45:51 CET 2006 Paolo Molaro <lupus@ximian.com>
10386 * mini-exceptions.c: 0 is a valid local var offset in some
10387 architectures, don't assert (bug #78508).
10389 Tue Nov 7 18:17:52 GMT 2006 Paolo Molaro <lupus@ximian.com>
10391 * exceptions-arm.c: fixed off by one error in stack walk code.
10393 Tue Nov 7 11:27:26 CET 2006 Paolo Molaro <lupus@ximian.com>
10395 * mini.h, mini.c: more precise tracking of type load exceptions.
10397 2006-11-03 Robert Jordan <robertj@gmx.net>
10399 * Makefile.am: [WIN32] Add monow.exe target.
10400 * driver.c: [WIN32] Don't detach the console when debugging.
10403 2006-10-30 Miguel de Icaza <miguel@novell.com>
10405 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Eliminate warning.
10407 2006-10-23 Zoltan Varga <vargaz@gmail.com>
10409 * aot-compiler.c (emit_method_info): Add a case missed earlier.
10411 * driver.c (mini_regression): Fix --regression with AOT.
10413 * aot-compiler.c (emit_method_info): Fix AOT on amd64.
10415 2006-10-17 Zoltan Varga <vargaz@gmail.com>
10417 * mini.c (GET_CONTEXT): Correct the definition of this for sparc/linux.
10419 * mini-sparc.h: Don't use sigaction on sparc/linux.
10421 * exceptions-sparc.c: Call mono_arch_flush_icache () in a couple of places.
10423 * mini-sparc.c (mono_sparc_flushw): Call mono_arch_flush_icache ().
10425 * mini-exceptions.c: Add proper include files for getpid ().
10427 2006-10-16 Zoltan Varga <vargaz@gmail.com>
10429 * aot-runtime.c (mono_aot_get_method): Change this to return the native code
10430 address instead of a MonoJitInfo* to avoid decoding the exception info for the
10433 * aot-runtime.c aot-compiler.c: Use uint16 instead of uint32 entries in the
10434 name cache to reduce its size.
10436 * mini.h (MONO_AOT_FILE_VERSION): Bump aot file format version.
10438 2006-10-15 Zoltan Varga <vargaz@gmail.com>
10440 * mini-x86.c: Save/restore the current LMF structure more efficiently using
10441 the mono_lmf TLS variable.
10443 * exceptions-x86.c (mono_arch_find_jit_info): Only access lmf->method in
10444 trampoline lmf frames.
10446 * mini-sparc.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Define this on sparc as well.
10448 2006-10-14 Zoltan Varga <vargaz@gmail.com>
10450 * mini-amd64.c: Save/restore the current LMF structure more efficiently using
10451 the mono_lmf TLS variable.
10453 * mini-exceptions.c: Access the LMF structure through accessors.
10455 * mini.c: Allow the backends the option for storing the lmf in a dedicated TLS
10456 variable instead of in jit_tls->lmf.
10458 * mini-x86.c mini-amd64.c: Update after lmf->lmf_addr name change.
10460 * exceptions-amd64.c (mono_arch_find_jit_info): Only access lmf->method in
10461 trampoline lmf frames.
10463 * mini-amd64.c (mono_arch_emit_prolog): Do not set lmf->method as it is not needed.
10465 2006-10-12 Zoltan Varga <vargaz@gmail.com>
10467 * mini.c trace.c mini-x86.c: Revert these too.
10469 * mini.c trace.c mini-x86.c: Remove warning workarounds after the mono_type_size ()
10472 Tue Oct 10 11:35:20 CEST 2006 Paolo Molaro <lupus@ximian.com>
10474 * genmdesc.c: removed now dead code.
10476 2006-10-09 Robert Jordan <robertj@gmx.net>
10478 * mini.c: Disable the CrashReporter on MacOS X; Fixes #74869
10480 Mon Oct 9 17:06:41 CEST 2006 Paolo Molaro <lupus@ximian.com>
10482 * mini.h: do not leave gaps in the opcode values.
10484 Mon Oct 9 16:08:51 CEST 2006 Paolo Molaro <lupus@ximian.com>
10486 * jit-icalls.h: flag functions as internal here, too.
10488 Mon Oct 9 15:58:18 CEST 2006 Paolo Molaro <lupus@ximian.com>
10490 * mini.h, aliasing.h, declsec.h, regalloc.h, trace.h: mark internal
10491 functions with the internal attribute.
10493 Mon Oct 9 15:52:45 CEST 2006 Paolo Molaro <lupus@ximian.com>
10495 * aot-compiler.c: fclose the file descriptor in the profile read loop.
10497 Fri Oct 6 16:01:38 CEST 2006 Paolo Molaro <lupus@ximian.com>
10499 * mini.c, jit-icalls.c, inssel-float.brg: beginnings of support
10502 2006-10-05 Zoltan Varga <vargaz@gmail.com>
10504 * mini-x86.c (emit_load_volatile_arguments): New function to handle arguments of
10505 tail calls as on other platforms.
10507 * mini.c (mono_method_to_ir): Fix a few tailcall problems. Fixes #79557.
10509 * iltests.il: Add a few tailcall tests.
10511 Tue Oct 3 16:33:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10513 * driver.c: fix loop for old compilers (bug #79521).
10515 2006-10-02 Zoltan Varga <vargaz@gmail.com>
10517 * mini-exceptions.c (ves_icall_get_trace): Remove debug printf.
10519 * aot-runtime.c (mono_aot_get_class_from_name): Avoid a memory allocation.
10521 * aot-compiler.c: Add a new option 'metadata-only' to only emit the cached
10522 metadata without any code.
10524 * mini-exceptions.c (mono_handle_native_sigsegv): Add some code to print out
10525 more precise debugging information using gdb.
10527 2006-09-30 Zoltan Varga <vargaz@gmail.com>
10529 * inssel-ia64.brg: Make the helper methods static.
10531 Thu Sep 28 16:40:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10533 * inssel-x86.brg: make the helper methods static.
10535 Thu Sep 28 16:31:32 CEST 2006 Paolo Molaro <lupus@ximian.com>
10537 * inssel-amd64.brg, mini-amd64.c: small cleanup, use inst_call.
10539 Thu Sep 28 15:36:07 CEST 2006 Paolo Molaro <lupus@ximian.com>
10541 * mini.c: updates for monoburg changes.
10542 * inssel.brg: make a few helper functions static as they should.
10544 2006-09-27 Zoltan Varga <vargaz@gmail.com>
10546 * Makefile.am: Move mini-codegen.c to common_sources.
10548 Wed Sep 27 15:07:08 CEST 2006 Paolo Molaro <lupus@ximian.com>
10550 * mini.h: instroduce inst_call in MonoInst for use in OUTARG
10552 * Makefile.am, cpu-g4.md, inssel-ppc.brg, mini-codegen.c, mini-ppc.c,
10553 mini-ppc.h: port to use the common local register allocator.
10555 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10557 * mini.h: Remove the comment too then.
10559 Tue Sep 26 14:02:58 CEST 2006 Paolo Molaro <lupus@ximian.com>
10561 * mini.h: put back backend.data which is to be used shortly and
10562 doesn't increase the size of MonoInst. If any 64 bit arch aligned
10563 pointers on 4 byte boundaries it'd have much bigger issues running
10564 and you can ifdef it out anyway.
10566 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10568 * mini.h (MonoInst): Remove backend.data field since it is unused and increases
10569 MonoInst size by 4 bytes on 64 bit machines.
10571 Tue Sep 26 11:57:26 CEST 2006 Paolo Molaro <lupus@ximian.com>
10573 * *.{c,h,brg}: long due removal of the unused field in MonoInst and
10574 replacement with more meaningful field names. Arch maintainers, please
10575 check the assigned names are good enough for your arch.
10577 2006-09-26 Zoltan Varga <vargaz@gmail.com>
10579 * cpu-ia64.md mini-ia64.c inssel-ia64.brg mini-ops.h: Get rid of the
10580 OP_IA64_FETCHADD opcodes, use OP_ATOMIC_ADD_IMM_NEW opcodes instead.
10582 Mon Sep 25 11:05:24 CEST 2006 Paolo Molaro <lupus@ximian.com>
10584 * mini.h, driver.c, optflags-def.h, Makefile.am: reduce runtime
10585 relocations and memory requirements, put the optimization flags
10586 definitions in their own file.
10588 2006-09-24 Zoltan Varga <vargaz@gmail.com>
10590 * jit-icalls.c (mono_helper_stelem_ref): Remove this unused helper function.
10592 * mini.c (mini_init): Remove reference to mono_helper_stelem_ref.
10594 2006-09-22 Zoltan Varga <vargaz@gmail.com>
10596 * mini-amd64.c (add_valuetype): Fix an uninitialized memory issue.
10598 Thu Sep 21 19:06:09 CEST 2006 Paolo Molaro <lupus@ximian.com>
10600 * inssel.brg: use the correct function to get the size of an item
10601 in an array, given an element class.
10602 * aot-compiler.c: do not access class->class_size directly.
10604 Thu Sep 21 12:10:56 CEST 2006 Paolo Molaro <lupus@ximian.com>
10606 * mini.h, debug-mini.c: added a debugging function to print
10607 info about local variables and arguments in a jitted method.
10609 2006-09-20 Zoltan Varga <vargaz@gmail.com>
10611 * mini-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10613 * exceptions-ia64.c: Fix some problems reported by Bill Seurer <seurer@us.ibm.com>.
10615 2006-09-19 Zoltan Varga <vargaz@gmail.com>
10617 * mini-ia64.c (mono_arch_call_opcode): Avoid using the same loop index in the
10618 inner and outer loops when passing vtypes.
10620 Tue Sep 19 17:53:40 CEST 2006 Paolo Molaro <lupus@ximian.com>
10622 * mini-ppc.c: take into account the cpu errata for cache flushing
10623 which caused some random errors (bug #79381).
10625 2006-09-19 Zoltan Varga <vargaz@gmail.com>
10627 * mini-amd64.c (mono_arch_emit_exceptions): Emit the call to
10628 mono_arch_throw_corlib_exception using emit_call () too. Fixes #79271.
10630 2006-09-17 Zoltan Varga <vargaz@gmail.com>
10632 * aot-runtime.c (load_aot_module): Return immeditely if the AOT module was already
10635 * exceptions-amd64.c (gregs_from_ucontext): Apply another patch from the
10636 freebsd ports tree.
10638 * mini-amd64.c (emit_call): Avoid near calls on freebsd.
10639 (mono_arch_patch_code): Remove the unused handling of MONO_PATCH_INFO_CLASS_INIT.
10641 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix check for 32 bitness of
10644 2006-09-13 Zoltan Varga <vargaz@gmail.com>
10646 * aot-runtime.c (load_aot_module_from_cache): Fix PPC build.
10648 2006-09-12 Zoltan Varga <vargaz@gmail.com>
10650 * mini.c (UNVERIFIED): Add a 'break-on-unverified' MONO_DEBUG option so this
10651 macro does not have to be changed during debugging.
10653 * 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>.
10655 * cpu-pentium.md: Rename this to cpu-x86.md for consistency with other platforms.
10657 * Makefile.am mini-x86.c mini-codegen.c: Rename pentium_desc to x86_desc.
10659 * mini.c (mini_get_ldelema_ins): Allow ldelema2d optimization if
10660 MONO_ARCH_NO_EMULATE_MUL is defined.
10662 * mini-ia64.h (MONO_ARCH_CALLEE_FREGS): Reserve f33 for use by instructions.
10664 * mini-ia64.h: Define MONO_ARCH_NO_EMULATE_MUL.
10666 * mini-ia64.c: Implement CEE_MUL based on gcc emitted code.
10668 * mini-ia64.c (mono_arch_lowering_pass): Optimize store_membase_imm with offset==0.
10670 2006-09-11 Zoltan Varga <vargaz@gmail.com>
10672 * mini-x86.h mini-amd64.h mini-exceptions.c: Move the bsd specific MAP_ANON
10673 stuff to mini-exceptions.c where it is used.
10675 * mini-sparc.c (mono_arch_setup_jit_tls_data): Remove the duplicate altstack
10676 setup code, the real one is in mini-exceptions.c.
10678 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Move all dependencies on the
10679 layout of ucontext_t to helper functions in exceptions-amd64.c, as on x86. Add
10680 some changes from the freebsd ports tree.
10682 * mini-amd64.h exceptions-amd64.c: Fix the amd64 build. Get rid of the SC_
10685 * mini-amd64.h: Freebsd has MAP_ANON instead of MAP_ANONYMOUS.
10687 Mon Sep 11 13:18:55 CEST 2006 Paolo Molaro <lupus@ximian.com>
10689 * mini.c: on Linux, check for /proc to be mounted
10690 (bug# 79351, novell bug#201204).
10692 Mon Sep 11 13:10:12 CEST 2006 Paolo Molaro <lupus@ximian.com>
10694 * mini.c: handle cases where pthread_attr_getstack() behaves
10695 incorrectly (bug #78096).
10697 Mon Sep 11 11:31:10 BST 2006 Paolo Molaro <lupus@ximian.com>
10699 * mini-arm.c: support larger stack frames (bug #79272).
10701 2006-09-08 Zoltan Varga <vargaz@gmail.com>
10703 * aot-runtime.c (mono_aot_get_class_from_name): Remove a debug printf.
10705 * aot-compiler.c: Add a hash table to the AOT file mapping class names to typedef
10708 * aot-runtime.c (mono_aot_get_class_from_name): New function used by
10709 mono_class_from_name () to find a class from its name.
10711 * mini.c (mini_init): Register mono_aot_get_class_from_name () with the runtime.
10713 2006-09-07 Zoltan Varga <vargaz@gmail.com>
10715 * mini-amd64.c (emit_call): Avoid strstr () call if possible.
10717 2006-09-05 Kornél Pál <kornelpal@gmail.com>
10719 * Makefile.am: Renamed mono-1.dll to mono.dll. (-avoid-version)
10721 2006-09-04 Zoltan Varga <vargaz@gmail.com>
10723 * mini.c (mono_icall_get_wrapper): Fix a race condition on initializing
10724 callinfo->trampoline.
10726 * mini-amd64.c (emit_call): Special case calls to the vararg array icalls. Hopefully
10728 (mono_arch_patch_code): Add some debug code to help track down similar failures in the
10731 2006-09-03 Zoltan Varga <vargaz@gmail.com>
10733 * aot-runtime.c (mono_aot_plt_resolve): Add an assert.
10735 2006-09-02 Zoltan Varga <vargaz@gmail.com>
10737 * tramp-x86.c (mono_arch_create_specific_trampoline): Don't increase
10738 stats.method_trampolines, it is already done by the generic trampoline code.
10740 * tramp-amd64.c (mono_arch_create_specific_trampoline): Ditto.
10742 2006-09-01 Zoltan Varga <vargaz@gmail.com>
10744 * mini.c: Remove some references to mono_compile_aot, and use cfg->compile_aot instead.
10746 * aot-runtime.c: Add some tweaks to the MONO_AOT_CACHE functionality.
10748 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix a FIXME.
10750 * mini.c (print_jit_stats): Print mscorlib mempool size too.
10752 * mini.c (print_jit_stats): Print new stats.
10754 * *-alpha.c: More alpha port work from Sergey Tikhonov <tsv@solvo.ru>.
10756 2006-08-31 Zoltan Varga <vargaz@gmail.com>
10758 * mini.c (mini_get_ldelema_ins): Fix verifier error when calling
10759 Address on two dimensional arrays. Fixes #78729.
10761 * mini.h (MonoCompile): Add a 'skip_visibility' field.
10763 * mini.c (method_to_ir): Disable visibility checks if skip_visibility is set on
10766 * mini-amd64.c (mono_arch_emit_exceptions): Fix assertion introduced by the last change.
10768 * mini.c (mono_runtime_cleanup_handlers): Clean up signal handlers on unix. Fixes
10771 * mini.c (handle_array_new): Applied patch from "briaeros007". Fix
10773 (mini_get_ldelema_ins): Ditto.
10775 2006-08-30 Zoltan Varga <vargaz@gmail.com>
10777 * mini-amd64.c (mono_arch_emit_exceptions): Align fp constants to 16 bytes.
10778 (mono_arch_output_basic_block): Avoid unaligned accesses in FNEG implementation.
10781 2006-08-29 Neale Ferguson <neale@sinenomine.net>
10783 * mini-s390.c, mini-s390x.c: Fix VARARG case processing with 0 arguments. Add
10784 mono_arch_get_patch_offset as a dummy entry point to allow successful link.
10786 * exceptions-s390x.c: Cosmetic change.
10788 * tramp-s390.c: Fix warning.
10790 * cpu-s390.md: Correct length of mul_imm.
10792 Wed Aug 23 19:24:00 CEST 2006 Paolo Molaro <lupus@ximian.com>
10794 * aot-compiler.c: added binary writer with ELF backend
10795 implementation (only on Linux/x86 for now).
10797 2006-08-18 Zoltan Varga <vargaz@gmail.com>
10799 * Makefile.am: Don't run net 2.0 AOT tests.
10801 * aot-compiler.c (compile_method): Skip methods with tail calls as well.
10802 (mono_compile_assembly): Skip net 2.0 assemblies as well.
10804 * aot-runtime.c (load_patch_info): Fix an uninitialized memory error.
10806 Fri Aug 18 19:38:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
10808 * aot-compiler.c: simplified and refactored the asm-writing code
10809 to allow different backends.
10811 2006-08-18 Zoltan Varga <vargaz@gmail.com>
10813 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file format version.
10815 * aot-compiler.c aot-runtime.c: Reorg the GOT slot allocation code a
10816 little. Share patches of type TYPE_FROM_HANDLE as well.
10818 * mini.c (mono_patch_info_equal): New helper function.
10819 (mono_patch_info_hash): Ditto.
10821 * aot-compiler.c (emit_method_code): Fix s390 build.
10823 * mini.c (mono_allocate_stack_slots_full): Fix yet another place where byref
10824 is not handled because it is stored as a flag and not as a type ctor. Fixes
10827 2006-08-17 Zoltan Varga <vargaz@gmail.com>
10829 * aot-compiler.c: Fix computation of GOT slot statistics.
10831 * aot-compiler.c aot-runtime.c: Implement sharing of GOT slots for classes/fields.
10832 Also remove support for not PIC AOT.
10834 * mini.h: Bump AOT file format version.
10836 * objects.cs: Add a test for #78990.
10838 * mini-x86.c (mono_arch_output_basic_block): Applied patch from Peter Dettman
10839 (peter.dettman@iinet.net.au). Fixes #79087.
10841 * basic-long.cs: Add a test for the above.
10843 2006-08-16 Zoltan Varga <vargaz@gmail.com>
10845 * aot-compiler.c (get_got_offset): Add a cache for GOT entries, not yet used.
10847 * aot-compiler.c (get_plt_index): Add a cache for wrappers too. Simplify the
10850 2006-08-15 Zoltan Varga <vargaz@gmail.com>
10852 * mini.c (mini_init): Fix registration of idiv/imul opcodes which can throw
10855 2006-08-10 Jonathan Chambers <joncham@gmail.com>
10857 * mini.c: Don't verify COM proxy invoke calls
10860 2006-08-10 Dick Porter <dick@ximian.com>
10862 * wapihandles.c (mini_wapi_seminfo): More info, to help track down
10863 which process is holding semaphores locked.
10865 2006-08-08 Zoltan Varga <vargaz@gmail.com>
10867 * mini-ia64.c mini-amd64.c: Fix #79027.
10869 * mini-sparc.c (mono_arch_call_opcode): Fix the previous patch.
10871 * mini-sparc.c (mono_arch_call_opcode): Fix #79027.
10873 * mini-x86.c (mono_arch_call_opcode): Handle the case where there are no
10874 implicit arguments in a vararg call. Fixes #79027.
10876 2006-08-07 Zoltan Varga <vargaz@freemail.hu>
10878 * mini.c (mono_get_element_address_signature): Use CDECL calling convention on windows. Fixes #78969.
10879 (mono_get_array_new_va_signature): Ditto.
10881 2006-08-05 Zoltan Varga <vargaz@gmail.com>
10883 * aot-runtime.c: Call init_plt lazily.
10885 * inssel-long.brg: Fix unsigned long->int conversion.
10887 * aot-runtime.c (init_plt): Remove a redundant make_writable () call.
10889 * aot-compiler.c aot-runtime.c: Reorganize the file structure in the amd64 case so
10890 that most data is now in the .rss/.data section.
10892 2006-08-04 Zoltan Varga <vargaz@gmail.com>
10894 * aot-compiler.c: Correct the computation of the 'direct-calls' statistic.
10896 * aot-compiler.c: Print the number of methods without GOT slots as a statistics.
10898 * aot-compiler.c aot-runtime.c tramp-amd64.c: Resurrect amd64 AOT support.
10900 * tramp-amd64.c (mono_arch_patch_callsite): Fix a warning.
10902 * jit-icalls.c (mono_helper_compile_generic_method): Unbox vtypes since this is a
10903 virtual call. Fixes #79010.
10905 * mini.c (mono_method_to_ir): Pass an additional out arg to compile_generic_method
10906 and use the result as the this argument in the real call.
10908 * generics.2.cs: Add a new test for #79010.
10910 2006-08-03 Zoltan Varga <vargaz@gmail.com>
10912 * mini-x86.c: Fix a warning.
10914 * aot-compiler.c: Add a bunch of statistics.
10916 * mini.c (inline_method): Disable inlining in out-of-line bblocks.
10918 2006-08-02 Zoltan Varga <vargaz@gmail.com>
10920 * mini-arch.h Makefile.am mini-ops.h mini-codegen.c: More alpha updates.
10922 2006-08-01 Zoltan Varga <vargaz@gmail.com>
10924 * 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>.
10926 2006-07-13 Miguel de Icaza <miguel@novell.com>
10928 * mini.c (mono_method_to_ir): Obtain the original method in the
10929 CIL stream and use this to perform validation.
10933 2006-07-19 Zoltan Varga <vargaz@gmail.com>
10935 * mini-x86.c (mono_arch_get_argument_info): Fix a warning.
10936 (mono_arch_call_opcode): Ditto.
10938 * mini.c (mono_method_to_ir): Clear ins_flag at the end of CEE_CALL. Fixes
10941 * mini.c (mono_patch_info_dup_mp): New helper function.
10943 * aot-compiler.c (compile_method): Fix some of the memory allocated during
10944 compilation. Fixes #78827.
10946 2006-07-18 Kornél Pál <kornelpal@gmail.com>
10948 * declsec.c: Use original security informations for
10949 MONO_WRAPPER_MANAGED_TO_MANAGED.
10951 2006-07-15 Jonathan Chambers <joncham@gmail.com>
10953 * mini.c: Allow Com Interop methods/classes and
10954 don't verify COM wrapper calls
10957 2006-07-13 Zoltan Varga <vargaz@gmail.com>
10959 * inssel-long32.brg: Fix long->i4 checked conversion.
10961 * exceptions.cs: Add a test for the above.
10963 2006-07-08 Zoltan Varga <vargaz@gmail.com>
10965 * mini-exceptions.c (mono_setup_altstack): Fix a memory leak.
10967 * mini.c: Applied patch from Joachim Ante (joe@otee.dk). Fix some shutdown
10970 * helpers.c (mono_disassemble_code): Avoid using fixed temporary files. Fixes
10973 2006-07-03 Zoltan Varga <vargaz@gmail.com>
10975 * mini.c: Fix solaris/x86 exception handling.
10977 * Makefile.am: Get rid of $(ICU_LIBS).
10979 2006-07-02 Zoltan Varga <vargaz@gmail.com>
10981 * mini-exceptions.c: Fix handling of unhandled SIGSEGV exceptions on ia64.
10982 (ves_icall_System_Security_SecurityFrame_GetSecurityStack): Use MONO_INIT_CONTEXT_FROM_CURRENT.
10983 (ves_icall_System_Security_SecurityFrame_GetSecurityFrame): Ditto.
10985 * mini-ia64.h (MONO_CONTEXT_SET_FUNC): New macro.
10987 * mini-exceptions.c (mono_handle_native_sigsegv): Prevent infinite loops if
10988 this function causes a SIGSEGV.
10990 2006-06-22 Zoltan Varga <vargaz@gmail.com>
10992 * mini.c: Remove unused solaris/x86 includes.
10994 2006-06-21 Zoltan Varga <vargaz@gmail.com>
10996 * jit.h: Add G_BEGIN_DECLS/G_END_DECLS.
10998 2006-06-20 Jb Evain <jbevain@gmail.com>
11000 * cpu-g4.md: fix max length of start_handler instruction.
11002 2006-06-20 Massimiliano Mantione <massi@ximian.com>
11003 * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78656.
11005 2006-06-16 Massimiliano Mantione <massi@ximian.com>
11006 * ssa.c: Fixed bug 78653 for SSA based deadce.
11007 * mini.h: added MONO_INST_DEFINITION_HAS_SIDE_EFFECTS flag go
11008 MonoInst.flags, used in SSA based deadce.
11009 * aliasing.c: Fixed bug 78653 for "fastpath" deadce.
11010 * simple-cee-ops.h, simple-mini-ops.h: Fixed bug 78653.
11012 Thu Jun 15 16:52:46 CEST 2006 Paolo Molaro <lupus@ximian.com>
11014 * tramp-ppc.c: don't use malloc () for trampoline code, sometimes
11015 it can end up using non executable memory on ppc64 systems
11016 running ppc32 userspace (fix from Johannes Berg).
11018 2006-06-14 Dick Porter <dick@ximian.com>
11020 * wapihandles.c: Fix a bunch of signed/unsigned warnings from gcc
11023 2006-06-13 Massimiliano Mantione <massi@ximian.com>
11024 * mini.c: Made so that inline is locally disabled if it would
11025 trigger a .cctor, because too many apps depend on this behavior
11026 (which seems to be also the one of the MS CLR).
11028 2006-06-13 Zoltan Varga <vargaz@gmail.com>
11030 * mini-amd64.c (mono_emit_stack_alloc): Fix initialization of localloc'ed memory.
11031 No idea why this worked before.
11033 * branch-opts.c (mono_branch_optimize_exception_target): Avoid branches
11034 which branch to outer exception clauses since they could skip the
11035 inner finally clauses. Fixes #78633.
11037 * exceptions.cs: Add a test for the above.
11039 * mini.c (merge_basic_blocks): Nullify the branch at the end of the first bb.
11042 * iltests.il: Add a test for the above.
11044 2006-06-12 Zoltan Varga <vargaz@gmail.com>
11046 * mini.c (remove_block_if_useless): Do not remove the bblock immediately
11047 after the end of a try bblock, to prevent asserts in mini_method_compile ().
11049 * iltests.il: Add a test for the above.
11051 2006-06-10 Zoltan Varga <vargaz@gmail.com>
11053 * mini-ia64.c (mono_arch_lowering_pass): Remove some code duplication.
11055 * mini-ia64.c inssel-ia64.brg: Implement the new net 2.0 Interlocked.Add
11056 methods as instrinsics.
11058 2006-06-09 Wade Berrier <wberrier@novell.com>
11060 * Makefile.am: Fix sources list for svn rename so that make dist succeeds
11061 (simple-cee-ops.h ssapre-mini-ops.h)
11063 2006-06-09 Neale Ferguson <neale@sinenomine.net>
11065 * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on s390/s390x.
11066 * mini-s390x.c, mini-s390.c: Correct ATOMIC operations (incorrect register for CS
11068 * mini-s390x.h, mini-s390.h: Simplify MCONTEXT_GET_BP.
11069 * cpu-s390x.md: Fix max. length values for a couple of instructions.
11071 2006-06-09 Jonathan Chambers <jonathan.chambers@ansys.com>
11073 * mini-exceptions.c: Minor fix for building mono in Visual Studio.
11075 2006-06-08 Massimiliano Mantione <massi@ximian.com>
11077 * ssapre-cee-ops.h: Renamed as "simple-cee-ops.h"
11078 * simple-cee-ops.h: Was "ssapre-cee-ops.h" (renamed).
11079 * ssapre-mini-ops.h: Renamed as "simple-mini-ops.h"
11080 * simple-mini-ops.h: Was "ssapre-mini-ops.h" (renamed).
11081 * local-propagation.c: In mono_cprop_invalidate_values use a whitelist
11082 of opcodes, so that bug 78549 should not happen again.
11083 * ssapre.c: Updated to use the renamed files.
11085 2006-06-08 Zoltan Varga <vargaz@gmail.com>
11087 * mini-amd64.c (mono_arch_output_basic_block): Fix a wrong reg-reg move
11088 in OP_ATOMIC_EXCHANGE_I4.
11090 2006-06-07 Wade Berrier <wberrier@novell.com>
11092 * tramp-s390.c: Fix s390 build (add missing pointer declarations
11093 in mono_debugger_create_notification_function)
11095 2006-06-06 Zoltan Varga <vargaz@gmail.com>
11097 * mini.c (NEW_AOTCONST_TOKEN): Fix amd64 build.
11099 * mini.c (type_from_stack_type): Disable some changes which do not
11102 * driver.c: Reenable opts.
11104 * mini.h (MonoStackSlot): New structure to keep track of the verification state
11105 of the evaluation stack.
11107 * mini.h (MonoBasicBlock): Add a 'stack_state' field to keep track of the
11108 evaluation stack trace at entry to the bblock.
11110 * mini.c (merge_stacks): New function to perform verification of stack merges.
11111 Turned off by default.
11113 * mini.c: Fill up ins->klass for instructions whose type is STACK_OBJ or
11116 2006-06-06 Massimiliano Mantione <massi@ximian.com>
11118 * local-propagation.c: Fixed bug 78549.
11120 2006-06-04 Zoltan Varga <vargaz@gmail.com>
11122 * mini-exceptions.c (ves_icall_get_frame_info): Fix this function on ia64.
11124 2006-06-02 Miguel de Icaza <miguel@novell.com>
11126 * tramp-sparc.c, tramp-ppc.c, tramp-s390.c, tramp-s390x.c,
11127 tramp-arm.c, tramp-ia64.c
11128 (mono_debugger_create_notification_function): Update signature to
11129 new signature and use new protocol for creating the notification
11132 Should fix the build.
11134 2006-06-02 Geoff Norton <gnorton@customerdna.com>
11136 * exceptions-ppc.c (mono_jit_walk_stack)
11137 (ves_icall_get_frame_info): Fix the build
11139 2006-06-02 Zoltan Varga <vargaz@gmail.com>
11141 * mini.c (mono_set_defaults): Fix the handling of -O=-all.
11143 2006-05-31 Raja R Harinath <rharinath@novell.com>
11145 * il2tests.2.il: New file for generics CIL tests. Add test for
11147 * Makefile.am: Update.
11150 * mini.c (mono_method_to_ir): Don't apply box+brtrue optimization
11153 2006-05-30 Massimiliano Mantione <massi@ximian.com>
11155 * aliasing.c: Fixed bug 78311.
11157 2006-05-29 Martin Baulig <martin@ximian.com>
11159 * mini-exceptions.c (mono_find_jit_info): When computing the
11160 native offset, check whether we're actually inside the method's
11161 code; call mono_debug_print_stack_frame() to format the frame.
11162 (ves_icall_System_Exception_get_trace): Call
11163 mono_debug_print_stack_frame() to format the stack frame.
11164 (ves_icall_get_trace): Update to the new debugging API.
11165 (mono_jit_walk_stack_from_ctx): Likewise.
11166 (ves_icall_get_frame_info): Likewise.
11168 * mini.c (get_method_from_ip): Use the new debugging API.
11169 (mono_print_method_from_ip): Likewise.
11172 (mono_jit_walk_stack): Use the new debugging API.
11173 (ves_icall_get_frame_info): Likewise.
11175 2006-05-27 Zoltan Varga <vargaz@gmail.com>
11177 * mini-amd64.c (mono_arch_output_basic_block): Fix MONO_PROFILE_COVERAGE.
11179 2006-05-25 Massimiliano Mantione <massi@ximian.com>
11181 * mini.c: Added "limitator" to inline for debugging.
11183 2006-05-24 Martin Baulig <martin@ximian.com>
11185 * debug-debugger.c (mono_debugger_init): Create a private,
11186 malloc()-based code manager for the notification function and
11187 intentionally leak it on exit. This fixes the crash-on-exit race
11191 (mono_debugger_create_notification_function): Added
11192 `MonoCodeManager *' argument.
11195 (mono_debugger_create_notification_function): Added
11196 `MonoCodeManager *' argument.
11198 2006-05-23 Massimiliano Mantione <massi@ximian.com>
11200 * aliasing.c: Fixed 64 bit issue.
11201 * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11202 default since all known bugs are fixed (one more time!).
11204 Tue May 23 13:47:28 CEST 2006 Paolo Molaro <lupus@ximian.com>
11206 * mini.c: write barrier support.
11208 2006-05-23 Martin Baulig <martin@ximian.com>
11210 * debug-debugger.c: Revert Paolo's change. Add comment and #error
11211 check at the top of the file.
11213 Sun May 21 12:22:29 CEST 2006 Paolo Molaro <lupus@ximian.com>
11215 * debug-debugger.c: fix the build. Again. Hopefully Martin will stop
11216 reverting changes without reason and without changelog entries.
11218 2006-05-18 Zoltan Varga <vargaz@gmail.com>
11220 * mini-sparc.c (mono_arch_output_basic_block): Add support for large stack offets
11221 to a few opcodes. Fixes #78439.
11223 * mini-sparc.c: Rename mono_sparch_break () to mono_arch_break () to improve
11224 consistency with other archs.
11226 * mini-ia64.c (mono_arch_emit_prolog): Remove debug stuff left in by mistake.
11228 Wed May 17 18:07:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11230 * debug-debugger.c: fix the build.
11232 2006-05-17 Martin Baulig <martin@ximian.com>
11235 (debugger_thread_vtable): Moved here from ../metadata/threads.c.
11236 (debugger_init_threads): Formerly known as mono_debugger_init_threads().
11237 (debugger_finalize_threads): Formaly known as mono_debugger_finalize_threads().
11238 (debugger_attach): Call GC_mono_debugger_add_all_threads().
11240 2006-05-11 Zoltan Varga <vargaz@gmail.com>
11242 * mini.c (mini_init): Call pthread_attr_destroy () to fix a small memory leak.
11244 2006-05-10 Zoltan Varga <vargaz@gmail.com>
11246 * mini-x86.c (mono_arch_instrument_epilog): Fix handling of
11247 MONO_TYPE_GENERICINST.
11249 * mini-amd64.c (mono_arch_instrument_epilog): Fix handling of
11250 MONO_TYPE_GENERICINST.
11252 2006-05-09 Zoltan Varga <vargaz@gmail.com>
11254 * mini-x86.c (mono_arch_get_vcall_slot_addr): Add a missing call sequence. Fixes
11257 2006-05-08 Zoltan Varga <vargaz@gmail.com>
11259 * mini.c (mono_create_jump_trampoline): Allocate MonoJitInfo from the domain
11261 (mono_jit_free_method): Remove the method from jump_trampoline_hash as well.
11263 2006-05-06 Zoltan Varga <vargaz@gmail.com>
11265 * mini.c (mini_cleanup): Applied patch from Joachim Ante (joe@otee.dk). Call
11266 mono_trace_cleanup ().
11268 * iltests.il: Fix problem with the newly added test.
11270 * mini-codegen.c (mono_local_regalloc): When changing the dreg of an instruction
11271 due to register constraints, free up the previous hreg. Fixes #78314.
11273 * iltests.il: Add new test for #78314.
11275 * mini-x86.c (mono_arch_get_inst_for_method): Use OP_ATOMIC_ADD_NEW_I4 for
11276 Interlocked.Add. Fixes #78312.
11278 * mini-amd64.c (mono_arch_get_inst_for_method): Ditto.
11280 2006-05-05 Zoltan Varga <vargaz@gmail.com>
11282 * inssel.brg (mini_emit_virtual_call): Fix a warning.
11284 2006-05-05 Martin Baulig <martin@ximian.com>
11286 * debug-mini.c (mono_debug_open_block): New method.
11289 (mono_arch_output_basic_block): Call mono_debug_open_block() at
11290 the beginning of each basic block.
11293 (mono_arch_output_basic_block): Call mono_debug_open_block() at
11294 the beginning of each basic block.
11296 2006-05-04 Massimiliano Mantione <massi@ximian.com>
11298 * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11299 default until I understand why they break the build on amd64.
11301 2006-05-04 Zoltan Varga <vargaz@gmail.com>
11303 * mini.c (mini_cleanup): Call mono_cleanup ().
11305 * mini.c (UNVERIFIED): New macro to make it easier to track down verification
11308 2006-05-04 Massimiliano Mantione <massi@ximian.com>
11310 * aliasing.c: Fixed shameful cut&paste error that caused JIT crashes.
11311 * driver.c: Enabled inline,consprop,copyprop,treeprop,deadce by
11312 default since all known bugs are fixed, and I cannot reproduce bug
11313 77944... I'm asking Matt Hargett to test again after this commit.
11315 2006-04-28 Massimiliano Mantione <massi@ximian.com>
11317 * mini-codegen.c: Fixed typo that thrashed inline.
11319 2006-04-28 Zoltan Varga <vargaz@gmail.com>
11321 * dominators.c (compute_dominators): Avoid using a worklist since
11322 it is not correct in some cases. Instead, iterate over all bblocks as
11323 in the original paper. Fixes --compile-all -O=all System.Xml.dll.
11325 2006-04-28 Miguel de Icaza <miguel@novell.com>
11327 * mini.c (mono_jit_compile_method_inner): Use
11328 mono_prepare_exception_from_error that resets the value
11331 2006-04-27 Miguel de Icaza <miguel@novell.com>
11333 * mini.c: Move the mini_loader_error_to_exception to metadata.
11335 2006-04-27 Massimiliano Mantione <massi@ximian.com>
11337 * aliasing.c: Fixed bug 78210.
11339 2006-04-27 Massimiliano Mantione <massi@ximian.com>
11341 * driver.c: Disabled inline,consprop,copyprop,treeprop,deadce by
11342 default until all their problems (or the ones they trigger) are fixed.
11344 2006-04-26 Zoltan Varga <vargaz@gmail.com>
11346 * aot-runtime.c (mono_aot_get_method_from_token_inner): Fix the previous patch.
11348 * aot-runtime.c (mono_aot_get_method_from_token_inner): Mark the method
11349 as loaded only after resolving patches since that could invoke the same method.
11351 * aot-runtime.c (mono_aot_plt_resolve): Fix ppc etc. builds.
11353 * aot-compiler.c: Refactor mono_aot_compile_aot () into a bunch of smaller
11356 * aot-runtime.c (init_plt): Use a normal trampoline to transfer code to the
11359 * aot-compiler.c (emit_plt): Pass the plt offset in %eax instead of on the
11362 * mini-trampolines.c (mono_aot_plt_trampoline): New trampoline to handle calls
11363 made from AOT code through the PLT table.
11365 * mini-x86.h mini-amd64.h: Define MONO_ARCH_AOT_PLT_OFFSET_REG to the register
11366 holding the plt offset when a call is made to the aot plt trampoline.
11368 2006-04-25 Zoltan Varga <vargaz@gmail.com>
11370 * aot-runtime.c aot-compiler.c cpu-amd64.md mini-amd64.c: Update parts of the
11373 * Makefile.am (common_sources): Fix build breakage.
11375 * aot-runtime.c aot-compiler.c: Reorganize the AOT code yet again: Make all
11376 calls through a jump table similar to the ELF PLT table. Avoid indirect calls for
11377 intra-assembly calls if possible.
11379 * tramp-*.c: Add new functions for patching/nullifying PLT entries.
11381 * mini-trampolines.c: Handle PLT entries.
11383 * mini.c: Avoid creating a GOT var for calls.
11385 * jit-icalls.c (helper_ldstr_mscorlib): New helper function for loading strings
11386 from mscorlib code.
11388 * jit-icalls.c (helper_newobj_mscorlib): New helper function to create objects
11389 from mscorlib code.
11391 * mini.c (mono_method_to_ir): Use the new helper functions in throw bblocks in
11394 * mini.h: Bump AOT file format version.
11396 * mini.c (get_basic_blocks): Fix the calculation of bb->out_of_line so it
11399 2006-04-25 Martin Baulig <martin@ximian.com>
11401 * driver.c: Disable copyprop, consprop and inline when running
11402 inside the debugger.
11404 2006-04-25 Martin Baulig <martin@ximian.com>
11406 * debug-debugger.h (MonoDebuggerInfo): Replaced `get_thread_id'
11407 with `get_current_thread' and added `detach'.
11408 (MonoDebuggerMetadataInfo): Added `thread_size',
11409 `thread_tid_offset', `thread_stack_ptr_offset' and
11410 `thread_end_stack_offset'.
11412 2006-04-25 Zoltan Varga <vargaz@gmail.com>
11414 * aot.c Makefile.am: Split aot.c into two new files aot-compiler.c and
11417 * inssel.brg (mini_emit_load_intf_reg_vtable): Use a new kind of AOT constant
11418 ADJUSTED_IID to avoid the need for adjusting the IID at runtime.
11420 * mini.h (MonoJumpInfoType): Add MONO_PATCH_INFO_ADJUSTED_IID.
11422 * mini.c (mono_resolve_patch_target): Handle ADJUSTED_IID.
11424 * aot.c: Add support for ADJUSTED_IID.
11426 2006-04-24 Zoltan Varga <vargaz@gmail.com>
11428 * aot.c (emit_method_order): Don't align method_order_end.
11430 * inssel.brg (stmt): Fix interface calls in AOT code which got broken by
11431 the interface ID changes.
11433 2006-04-21 Dick Porter <dick@ximian.com>
11435 * mini.c (mini_thread_cleanup): Clear the JIT TLS data when
11436 cleaning up a thread. Fixes the new part of bug 77470.
11438 2006-04-20 Geoff Norton <gnorton@customerdna.com>
11440 * mini-ppc.c: Call mono_jit_thread_attach when transitioning a native
11441 to managed wrapper.
11443 2006-04-19 Zoltan Varga <vargaz@gmail.com>
11445 * mini.h mini.c: Remove mono_type_to_ldind/stind () which are now in marshal.c.
11447 * mini.c (mono_runtime_install_handlers): Handle SIGABRT similarly to
11448 SIGSEGV. Fixes #78072.
11450 * mini-exceptions.c (mono_handle_native_sigsegv): Add a 'signal' argument,
11451 unregister our SIGABRT handler.
11453 2006-04-19 Massimiliano Mantione <massi@ximian.com>
11455 * mini.c: Disabled inline where it can alter the call stack in a
11456 way visible from managed code.
11457 * driver.c: enabled inline,consprop,copyprop,treeprop,deadce by
11460 2006-04-16 Zoltan Varga <vargaz@gmail.com>
11462 * mini-amd64.c (mono_arch_emit_prolog): Attach the thread to the runtime as it is done
11463 on other platforms. Fixes #78089.
11465 2006-04-13 Martin Baulig <martin@ximian.com>
11467 * driver.c: Also check a `MONO_INSIDE_MDB' environment variable to
11468 determine whether we're inside the debugger.
11471 (MonoDebuggerMetadataInfo): Added all offsets from `MonoDefaults'.
11473 2006-04-12 Zoltan Varga <vargaz@gmail.com>
11475 * mini.c (mono_method_to_ir): Handle multiple LEAVE statements inside a single
11476 handler clauses. Fixes #78024.
11478 * mini-sparc.c (mono_arch_output_basic_block): Handle large offsets
11479 in the CALL_MEMBASE opcodes. Fixes #78088.
11480 (mono_arch_get_vcall_slot_addr): Ditto.
11482 2006-04-10 Martin Baulig <martin@ximian.com>
11484 * debug-debugger.c: The thread handling code has now been moved
11485 into ../metadata/threads.c.
11487 2006-04-10 Zoltan Varga <vargaz@gmail.com>
11489 * driver.c (mono_main): Fix --with-gc=none build.
11491 * mini-codegen.c (mono_spillvar_offset): Improve alignment.
11492 (mono_spillvar_offset_float): Ditto.
11493 (mono_local_regalloc): Only do the OP_MOVE optimization if ins->dreg is a local
11494 hreg, not when its !global, since on ia64, there is a third category: stacked
11497 Mon Apr 10 14:39:49 CEST 2006 Paolo Molaro <lupus@ximian.com>
11499 * mini.c: set MonoInst->klass for load field address and a few other
11502 2006-04-10 Zoltan Varga <vargaz@gmail.com>
11504 * helpers.c (mono_disassemble_code): Emit debug info on amd64 as well.
11506 2006-04-07 Zoltan Varga <vargaz@gmail.com>
11508 * dominators.c (compute_dominators): Fix yet another bug which surfaced after
11509 the branch opt changes.
11511 2006-04-06 Dick Porter <dick@ximian.com>
11513 * wapihandles.c (mini_wapi_semdel): Fix parameters in semctl () call.
11515 * wapihandles.c (mini_wapi_seminfo):
11516 * driver.c (mono_main): Add semaphore info option
11518 2006-04-05 Zoltan Varga <vargaz@gmail.com>
11520 * dominators.c (compute_dominators): Fix a bug which surfaced after the recent
11521 branch optimization changes. Fixes #78009.
11523 Wed Apr 5 16:40:33 CEST 2006 Paolo Molaro <lupus@ximian.com>
11525 * mini.c: ignore accessibility of methods in managed->native wrappers.
11527 2006-04-04 Zoltan Varga <vargaz@gmail.com>
11529 * mini.c (mini_cleanup): Call print_jit_stats () earlier since it accesses metadata.
11531 * mini.c (mini_cleanup): Free 'emul_opcode_map' as well.
11533 2006-04-03 Zoltan Varga <vargaz@gmail.com>
11535 * mini.c: Modify the branch optimizations to preserve the invariant that
11536 the entries inside the in_bb and out_bb arrays are unique.
11537 (mono_unlink_bblock): Avoid creation of new arrays.
11539 2006-04-02 Zoltan Varga <vargaz@gmail.com>
11541 * mini.c (mono_unlink_bblock): Fix regression caused by previous
11544 2006-04-01 Zoltan Varga <vargaz@gmail.com>
11546 * mini.c (optimize_branches): Remove the "optimizations" in
11547 the cbranch1/cbranch2 -> branch cases which were causing several
11548 problems in the past. Fixes #77986.
11550 2006-03-31 Chris Toshok <toshok@ximian.com>
11552 * driver.c (DEFAULT_OPTIMIZATIONS): back out the new set of
11553 default optimizations :(
11555 2006-03-31 Zoltan Varga <vargaz@gmail.com>
11557 * inssel-x86.brg mini-codegen.c mini.c: Merge some changes/fixes from linear-il
11560 2006-03-31 Massimiliano Mantione <massi@ximian.com>
11562 * local-propagation.c: Added comments to structs and removed
11563 "Mono" prefixes from local tree mover types.
11565 2006-03-30 Zoltan Varga <vargaz@gmail.com>
11567 * Makefile.am (arch_sources): Define this for each architecture so
11568 libmono_la_SOURCES is defined in one place.
11570 Wed Mar 29 20:51:14 CEST 2006 Paolo Molaro <lupus@ximian.com>
11572 * driver.c, wapihandles.c, Makefile.am: integrate the io-layer utils
11575 Wed Mar 29 17:16:57 CEST 2006 Paolo Molaro <lupus@ximian.com>
11577 * driver.c: print the GC name supplied by configure.
11579 2006-03-29 Massimiliano Mantione <massi@ximian.com>
11581 * local-propagation.c: Added tree mover, and moved here all the
11582 local propagation code from mini.c
11583 * mini.c: Added support for treeprop, and moved all the local
11584 propagation code to local-propagation.c
11585 * mini.h: Added support for treeprop
11586 * driver.c: Added support for treeprop, enabled consprop, copyprop,
11587 treeprop, inline and deadce by default
11588 * Makefile.am: Added local-propagation.c
11590 2006-03-25 Zoltan Varga <vargaz@gmail.com>
11592 * exceptions-sparc.c: Applied patch from David S. Miller <davem@sunset.davemloft.net>: Implement correct support for sparc/linux.
11594 Fri Mar 24 20:07:19 CET 2006 Paolo Molaro <lupus@ximian.com>
11596 * debug-debugger.c: make it compile without the Boehm GC.
11598 Wed Mar 22 18:25:18 CET 2006 Paolo Molaro <lupus@ximian.com>
11600 * mini.c: fixed issue with mismatch when an icall is registered
11601 with multiple names but same address.
11603 Tue Mar 21 15:59:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11605 * declsec.c, mini-exceptions.c: use write barrier to set reference
11606 fields of managed objects.
11608 2006-03-19 Zoltan Varga <vargaz@gmail.com>
11610 * mini.c (mono_print_method_from_ip): Recognize JIT trampolines as well.
11611 (can_access_internals): Fix a warning.
11613 * mini.c (print_method_from_ip): Rename this to
11614 mono_print_method_from_ip so it gets exported.
11616 * trace.c: Deal with strings inside StringBuilder's containing garbage
11617 and fix memory leaks. Fixes #77848.
11619 2006-03-19 Zoltan Varga <vargaz@gmail.com>
11621 * mini.c (mini_init): Disable the setting of GC_stackbottom on ia64. Hopefully
11624 2006-03-16 Neale Ferguson <neale@sinenomine.net>
11626 * mini-s390.c: Remove OP_X86_TEST_NULL.
11628 Thu Mar 16 17:19:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11630 * mini.c: use the correct GetHashCode() for the moving collector.
11632 2006-03-16 Massimiliano Mantione <massi@ximian.com>
11634 * liveness.c: Regalloc spill cost tuning.
11636 2006-03-15 Neale Ferguson <neale@sinenomine.net>
11638 * mini-s390x.h: Correct S390_LONG macro.
11640 * mini-s390x.c: Cleanup unused code.
11642 2006-03-15 Zoltan Varga <vargaz@gmail.com>
11644 * jit-icalls.h: New file.
11646 * Makefile.am mini.c jit-icalls.c: Use a proper include file for the jit
11647 icalls and include that instead of including jit-icalls.c.
11649 * mini-ppc.c (mono_arch_output_basic_block): Remove references to
11652 Tue Mar 14 20:23:53 CET 2006 Paolo Molaro <lupus@ximian.com>
11654 * mini.c: when checking for member accessibility, also check for
11655 friend assemblies and for explicit interface implementations.
11657 2006-03-14 Zoltan Varga <vargaz@gmail.com>
11659 * mini-codegen.c (mono_local_regalloc): Remove incorrect g_free () calls.
11661 * cpu-arm.md cpu-g4.md: Remove x86_ opcodes.
11663 * mini-x86.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11664 common cases are done first.
11666 * mini-ops.h: Only define platform specific opcodes on the given platform.
11668 * mini.h regalloc.h mini-codegen.c: Merge optimizations from the linear-il
11671 2006-03-14 Martin Baulig <martin@ximian.com>
11673 Revert Paolo's change from r57348:
11675 * mini.h: don't use gboolean for bitfields.
11676 * mini.c: verifier changes for fields and methods accessibility.
11678 2006-03-13 Neale Ferguson <neale@sinenomine.net>
11680 * mini-s390.h, mini-s390x.h: Fix calls to mono_call_inst_add_outarg_reg.
11682 * mini-s390x.c: Fix conv_r_un.
11684 * cpu-s390, cpu-s390x.md: Fix lengths.
11686 Sun Mar 12 17:31:22 CET 2006 Paolo Molaro <lupus@ximian.com>
11688 * mini.c: nested types have access to all the nesting
11689 levels, not just the enclosing types.
11691 Sun Mar 12 16:23:11 CET 2006 Paolo Molaro <lupus@ximian.com>
11693 * mini.c: added a few more verification checks.
11695 2006-03-12 Zoltan Varga <vargaz@gmail.com>
11697 * liveness.c: Merge optimizations from the linear-il branch.
11699 2006-03-11 Zoltan Varga <vargaz@gmail.com>
11701 * mini-ia64.c (emit_call): Add a comment.
11703 * tramp-ia64.c (mono_arch_patch_callsite): Handle indirect calls as well.
11705 * tramp-ia64.c: Fix some warnings.
11707 Sat Mar 11 20:15:59 CET 2006 Paolo Molaro <lupus@ximian.com>
11709 * mini.h: don't use gboolean for bitfields.
11710 * mini.c: verifier changes for fields and methods accessibility.
11712 2006-03-11 Zoltan Varga <vargaz@gmail.com>
11714 * mini.c (mono_icall_get_wrapper): Fix an ia64 bug introduced by the
11715 lazy icall wrapper changes.
11717 * dominators.c: Replace all the dominator algorithms with faster
11718 ones from the linear-il branch.
11720 * inssel-*.brg: Allocate call->out_ireg_args and call->out_freg_args from
11723 * mini-amd64.h (MONO_ARCH_INST_FIXED_REG): Reorganize the comparisons so
11724 common cases are done first.
11726 * mini-amd64.c: Fix some warnings.
11728 * mini-codegen.c mini-*.c: Allocate call->out_ireg_args and call->out_freg_args
11731 * mini.c (mono_jit_compile_method_with_opt): Fix a race in the newly
11734 * mini.h: Add a missing prototype.
11736 2006-03-10 Zoltan Varga <vargaz@gmail.com>
11738 * mini.c: Compile icall wrappers lazily.
11740 * mini-codegen.c: Use printf instead of g_print since its much faster.
11742 * mini.h (mono_bitset_foreach_bit): Use the faster mono_bitset_find_start ()
11745 * mini.c (optimize_branches): Cache the negative result from
11746 remove_block_if_useless ().
11748 * mini.c (optimize_branches): Avoid restarting the iteration after each change.
11749 Also fix some bblock linking issues.
11751 * helpers.c (mono_disassemble_code): Reduce the size of the temporary
11754 * mini.h: Define G_LIKELY/G_UNLIKELY macros for older glib versions.
11756 * mini.h (MonoBasicBlock): Reorganize the fields, putting more frequently
11757 accessed fields first, for better cache behavior.
11759 Fri Mar 10 18:21:41 CET 2006 Paolo Molaro <lupus@ximian.com>
11761 * mini.c: speedup IList<T> array accesses.
11763 2006-03-09 Zoltan Varga <vargaz@gmail.com>
11765 * mini.c (mono_method_to_ir): Handle large methods overflowing the
11766 inline_costs counter. Fixes #77190.
11768 2006-03-06 Zoltan Varga <vargaz@gmail.com>
11770 * mini-exceptions.c: Call mono_trace_is_enabled () before printing
11771 trace messages. Fixes #77706.
11773 2006-03-04 Martin Baulig <martin@ximian.com>
11775 * tramp-amd64.c, tramp-x86.c
11776 (mono_debugger_create_notification_function): Use
11777 mono_global_codeman_reserve() to allocate a buffer at runtime and
11780 * debug-debugger.h (MonoDebuggerInfo): Added `initialize'.
11782 * debug-debugger.c (mono_debugger_init): Dynamically allocate the
11783 notification function at runtime and then call `initialize' in the
11784 `MONO_DEBUGGER__debugger_info' vtable.
11786 2006-03-04 Zoltan Varga <vargaz@gmail.com>
11788 * iltests.il: Fix a visibility problem.
11790 Wed Mar 1 15:55:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11792 * driver.c, mini.c: add hooks for the counters API.
11794 Wed Mar 1 12:28:04 CET 2006 Paolo Molaro <lupus@ximian.com>
11796 * driver.c: show disabled options.
11798 Wed Mar 1 12:18:51 CET 2006 Paolo Molaro <lupus@ximian.com>
11800 * linear-scan.c: always use cost-driven selection.
11802 2006-02-28 Raja R Harinath <rharinath@novell.com>
11804 * jit-icalls.c (helper_compile_generic_method): Revert change from
11807 Mon Feb 27 18:58:19 GMT 2006 Paolo Molaro <lupus@ximian.com>
11809 * cpu-arm.md, mini-arm.c: implemented MemoryBarrier.
11811 Sat Feb 25 17:39:21 CET 2006 Paolo Molaro <lupus@ximian.com>
11813 * inssel.brg: style fixes, mostly to force the updated monoburg
11814 to run for people using svn.
11816 Sat Feb 25 17:07:42 CET 2006 Paolo Molaro <lupus@ximian.com>
11818 * mini.c: match monoburg changes.
11820 Sat Feb 25 16:04:33 CET 2006 Paolo Molaro <lupus@ximian.com>
11822 * mini.h, mini.c, abcremoval.c, aliasing.c, liveness.c,
11823 ssapre.c, graph.c, ssa.c: put the mono_burg_arity[]
11824 declaration in the header file.
11826 Sat Feb 25 14:19:31 CET 2006 Paolo Molaro <lupus@ximian.com>
11828 * helpers.c: reduce relocations and mem usage.
11830 Sat Feb 25 11:58:16 CET 2006 Paolo Molaro <lupus@ximian.com>
11832 * mini.h, mini-codegen.c: disable logging features if
11833 requested by configure.
11835 Sat Feb 25 11:54:49 CET 2006 Paolo Molaro <lupus@ximian.com>
11837 * mini.c: tiny verifier changes.
11839 Fri Feb 24 18:17:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11841 * mini-ops.h, inssel-x86.brg, tramp-x86.c, mini-x86.c,
11842 cpu-pentium.md: stack alignment changes for osx/x86,
11843 partially from Geoff Norton <gnorton@customerdna.com>.
11845 2006-02-24 Raja R Harinath <harinath@gmail.com>
11847 * jit-icalls.c (helper_compile_generic_method): Update to changes
11848 in metadata/class.c.
11850 2006-02-24 Zoltan Varga <vargaz@gmail.com>
11852 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add a missing check.
11854 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Add support for
11855 interface calls with large offsets.
11857 2006-02-23 Raja R Harinath <rharinath@novell.com>
11859 * jit-icalls.c (helper_compile_generic_method): Document the
11860 special-case we depend on so that we can inflate the method twice
11861 with the same context with no bad side-effects.
11863 Thu Feb 23 13:45:46 CET 2006 Paolo Molaro <lupus@ximian.com>
11865 * mini-x86.c, mini-amd64.c: fix for case when xen support
11868 Wed Feb 22 19:38:40 CET 2006 Paolo Molaro <lupus@ximian.com>
11870 * mini-x86.c, mini-amd64.c: generate code to access tls items
11871 in a faster way for Xen systems.
11873 Wed Feb 22 10:31:25 CET 2006 Paolo Molaro <lupus@ximian.com>
11875 * exceptions-x86.c, mini-x86.h, driver.c, mini-codegen.c:
11876 updates and compilation fixes for the OSX/x86 port, mostly from
11877 Geoff Norton <gnorton@customerdna.com>.
11879 Tue Feb 21 19:56:55 CET 2006 Paolo Molaro <lupus@ximian.com>
11881 * inssel.brg: faster interface call implementation
11882 to sync with the interface_offsets MonoVTable changes.
11884 Mon Feb 20 10:37:57 CET 2006 Paolo Molaro <lupus@ximian.com>
11886 * mini.c: more verification checks.
11888 Fri Feb 17 19:47:29 CET 2006 Paolo Molaro <lupus@ximian.com>
11890 * mini.c: added a few more verification checks.
11892 2006-02-17 Neale Ferguson <neale@sinenomine.net>
11894 * mini-s390x.c, mini-s390x.h: Check for presence of long displacement
11895 facility on the processor and use it if available.
11897 Fri Feb 17 16:12:52 CET 2006 Paolo Molaro <lupus@ximian.com>
11899 * driver.c, aot.c, mini.c: throw exception if the IL code is
11900 invalid or unverifiable.
11902 2006-02-17 Raja R Harinath <rharinath@novell.com>
11904 * generics.2.cs (test_0_ldfld_stfld_mro): Use m.struct_field, not
11907 2006-02-16 Zoltan Varga <vargaz@gmail.com>
11909 * generics.2.cs: Add some tests for generics ldfld/stfld wrappers.
11911 Wed Feb 15 16:23:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11913 * mini-s390x.c, mini-s390.c, mini.c, mini-amd64.c, mini-arm.c,
11914 mini-ia64.c, mini-sparc.c, mini-x86.c, mini-ppc.c: fixed
11915 handling of instantiated generic valuetypes.
11917 2006-02-11 Zoltan Varga <vargaz@gmail.com>
11919 * mini-exceptions.c mini-x86.h mini-x86.c: Get rid of
11920 MONO_INIT_CONTEXT_FROM_CALLER, and use MONO_INIT_CONTEXT_FROM_FUNC
11923 * generics.2.cs: Revert the nullable reftypes tests.
11925 2006-02-10 Zoltan Varga <vargaz@gmail.com>
11927 * mini-exceptions.c (MONO_INIT_CONTEXT_FROM_CALLER): Avoid
11928 using __builtin_frame_address (1) as it doesn't work in the presence
11929 of optimizations. Hopefully fixes #77273.
11931 * Makefile.am generics.cs generics.2.cs: Revert the generics.2.cs
11932 -> generics.cs change as it doesn't work with some automake versions.
11934 Thu Feb 9 16:24:44 CET 2006 Paolo Molaro <lupus@ximian.com>
11936 * mini.c: handle systems that sue a different way to
11937 retrieve the stack address of the current thread.
11939 2006-02-09 Zoltan Varga <vargaz@gmail.com>
11941 * Makefile.am generics.2.cs: Rename this to generics.cs and handle
11942 it specially in the makefile.
11944 * generics.2.cs: Add tests for nullable reference types.
11946 Wed Feb 8 19:33:17 CET 2006 Paolo Molaro <lupus@ximian.com>
11948 * mini.c: always handle the case when mono_jit_init()
11949 is called in a thread different from the main thread,
11950 confusing libgc (bug #77309).
11952 Mon Feb 6 09:01:24 EST 2006 Paolo Molaro <lupus@ximian.com>
11954 * mini-ppc.c: fix handling of exceptions in large methods (bug #74932).
11956 Fri Feb 3 18:51:35 CET 2006 Paolo Molaro <lupus@ximian.com>
11958 * mini.c: change optimize_branches () to use a single loop
11959 and introduce a new optimization to simplify some range checks.
11961 2006-02-03 Martin Baulig <martin@ximian.com>
11963 * debug-debugger.c (debugger_thread_manager_thread_created): Removed
11964 and merged with debugger_thread_manager_add_thread().
11965 (mono_debugger_main): Call debugger_thread_manager_add_thread() to
11966 inform the debugger about the main thread.
11968 2006-02-03 Zoltan Varga <vargaz@gmail.com>
11970 * basic.cs: Add test for div.un/rem.un constant folding.
11972 2006-02-03 Neale Ferguson <neale@sinenomine.net>
11974 * cpu-s390x.md: correct int_xor_imm length
11976 2006-02-03 Zoltan Varga <vargaz@gmail.com>
11978 * generics.2.cs: New test for #77442.
11980 * jit-icalls.c (helper_compile_generic_method): Check for null. Fixes
11983 2006-02-02 Martin Baulig <martin@ximian.com>
11985 * tramp-x86.c, tramp-amd64.c: It's now safe to #include
11986 <mono/metadata/mono-debug-debugger.h>
11988 * debug-mini.c: Don't #define _IN_THE_MONO_DEBUGGER.
11990 2006-02-02 Martin Baulig <martin@ximian.com>
11992 * debug-debugger.h: New header file for debug-debugger.c.
11994 * debug-debugger.c: Big API cleanup; don't run the managed Main()
11995 function is a separate thread anymore; add support for attaching.
11997 2006-02-01 Zoltan Varga <vargaz@gmail.com>
11999 * tramp-x86.c: Fix a warning.
12001 2006-01-31 Zoltan Varga <vargaz@gmail.com>
12003 * mini-amd64.c (mono_arch_compute_omit_fp): Avoid hitting an assertion
12004 on very large methods.
12006 * aot.c (load_patch_info): Fix a warning.
12008 Mon Jan 30 12:51:10 CET 2006 Paolo Molaro <lupus@ximian.com>
12010 * cpu-pentium.md, mini-x86.c, inssel.brg, inssel-x86.brg,
12011 mini-ops.h: alu membase optimizations.
12013 Fri Jan 27 21:11:08 CET 2006 Paolo Molaro <lupus@ximian.com>
12015 * mini-ops.h, mini.c, inssel.brg, inssel-x86.brg: opcode
12016 to speedup StringBuilder.
12018 2006-01-27 Zoltan Varga <vargaz@gmail.com>
12020 * dominators.c (mono_compute_natural_loops): Fix detection of
12021 loop body start blocks.
12023 * mini-exceptions.c (mono_print_thread_dump): Fix non x86 builds.
12025 2006-01-26 Zoltan Varga <vargaz@gmail.com>
12027 * mini.h mini.c mini-exceptions.c: Add thread dump support. Fixes
12030 2006-01-25 Massimiliano Mantione <massi@ximian.com>
12032 * aliasing.c: Fixed aliasing issue on 64 bit archs.
12034 2006-01-25 Martin Baulig <martin@ximian.com>
12036 * debug-debugger.c: Moved the `MonoDebuggerManager' and
12037 `MonoDebuggerThread' typedefs here from mono-debug-debugger.h and
12038 started to cleanup this file a little bit.
12040 Tue Jan 24 18:20:48 CET 2006 Paolo Molaro <lupus@ximian.com>
12042 * mini.c: optimize a codepath frequently happening in generics code.
12044 2006-01-23 Martin Baulig <martin@ximian.com>
12046 * Makefile.am: Only compile debug-debugger.c on supported platforms.
12048 * debug-debugger.c: Kill the IO_LAYER() hack and use the io-layer
12049 functions directly.
12051 * driver.c: debug-debugger.c is only available if
12052 `MONO_DEBUGGER_SUPPORTED' is defined.
12054 2006-01-23 Martin Baulig <martin@ximian.com>
12056 * debug-debugger.c: Only enable this on platforms where the Mono
12057 Debugger is working (x86 and x86_64).
12059 2006-01-21 Martin Baulig <martin@ximian.com>
12061 The Mono Debugger is now using the normal `mono' instead of the
12062 `mono-debugger-mini-wrapper' when executing managed code.
12064 * debug-debugger.c: New file; previously known as
12065 debugger/wrapper/wrapper.c.
12067 * debug-mini.c (mono_init_debugger): Removed.
12069 * driver.c (mono_main): Added new `--inside-mdb' command line
12070 argument which is used when running inside the debugger.
12072 2006-01-20 Zoltan Varga <vargaz@gmail.com>
12074 * liveness.c (mono_analyze_liveness): Remove some unused data
12077 2006-01-17 Zoltan Varga <vargaz@gmail.com>
12079 * mini.h: Move mono_bitset_test_fast macro to monobitset.h where it belongs.
12081 2006-01-16 Zoltan Varga <vargaz@gmail.com>
12083 * mini.h (mono_bitset_test_fast): Disable the 'fast' implementation which
12084 depends on implementation details of monobitset.
12086 * mini.c (mini_get_ldelema_ins): Fix handling of 1 dimensional arrays.
12089 2006-01-15 Zoltan Varga <vargaz@gmail.com>
12091 * liveness.c: Update after monobitset changes.
12093 2006-01-14 Zoltan Varga <vargaz@gmail.com>
12095 * mini-amd64.c (mono_arch_compute_omit_fp): Fix a leak.
12097 2006-01-11 Neale Ferguson <neale@sinenomine.net>
12099 * inssel-s390x.brg: Fix reg: OP_LDADDR(OP_S390_LOADARG) register setting.
12101 * mini-s390x.c: Remove warning messages.
12103 2006-01-11 Ben Maurer <bmaurer@andrew.cmu.edu>
12105 * mini.c: pass the jitinfo to mono_profiler_method_end_jit.
12107 2006-01-10 Zoltan Varga <vargaz@gmail.com>
12109 * generics.2.cs: Add ldelem/stelem_any test.
12111 2006-01-10 Neale Ferguson <neale@sinenomine.net>
12113 * mini-s390.c: Fix ATOMIC_ADD_I4 operation.
12115 2006-01-07 Zoltan Varga <vargaz@gmail.com>
12117 * inssel-long.brg: Fix int->long ovf conversion rules. Fixes #77172.
12119 2006-01-06 Zoltan Varga <vargaz@gmail.com>
12121 * generics.2.cs: Reenable vtype tests.
12123 * inssel-x86.brg: Remove an icorrect valuetype rule.
12125 2006-01-06 Neale Ferguson <neale@sinenomine.net>
12127 * mini-s390x.c, inssel-s390x.brg, cpu-s390x.md: Fix ATOMIC_I8 operations. Provide
12128 initial support for OP_ABS.
12130 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12132 * mini-s390x.c (emit_float_to_int): Correct r8 to unsigned int algorithm.
12134 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12136 * mini-s390.c, mini-s390.h, inssel-s390.brg, cpu-s390.md: Fix r8 to unsigned int
12137 conversion and implement LADD/LSUB.
12139 * exceptions-s390.c: Standardize mono_arch_find_jit_info to match other
12142 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12144 * mini-s390x.c, mini-s390x.h: Fix r8 to unsigned int conversion.
12146 * exceptions-s390x.c: Standardize mono_arch_find_jit_info to match other
12149 2006-01-05 Neale Ferguson <neale@sinenomine.net>
12151 * mini-s390x.c, mini-s390x.h, mini-s390.c, mini-s390.h: Fix lmf handling when
12152 localloc is encountered. Fixes crash in test-183.cs when using gmcs
12153 (stack walk problem).
12155 2006-01-04 Zoltan Varga <vargaz@gmail.com>
12157 * aot.c (mono_aot_load_method): Fix a warning.
12159 2006-01-03 Neale Ferguson <neale@sinenomine.net>
12161 * mini-s390x.h, exceptions-s390x.c, inssel-s390x.brg: Fix compiler warnings
12163 2006-01-03 Zoltan Varga <vargaz@gmail.com>
12165 * iltests.il: Add test for #77148.
12167 * mini.c (mini_get_ldelema_ins): Handle arrays with rank 1 too. Fixes
12170 2006-01-03 Neale Ferguson <neale@sinenomine.net>
12172 * mini-s390x.c, inssel-s390x.brg: Remove debug statements
12174 2006-01-03 Neale Ferguson <neale@sinenomine.net>
12176 * mini-s390x.c, mini-s390x.h, exceptions-s390x.c, tramp-s390x.c, inssel-s390x.brg,
12177 cpu-s390x.md, mini-codegen.c, Makefile.am: add 64-bit s390 support to JIT.
12179 * basic-long.cs: Add lconv-to-r4/r8 tests.
12181 2006-01-03 Zoltan Varga <vargaz@gmail.com>
12183 * mini.c (mono_method_to_ir): Fix DynamicMethod support in some opcodes.
12185 * mini-sparc.c (mono_arch_call_opcode): Use mono_class_value_size ()
12186 here as on other archs.
12188 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12190 * mini-s390.c (mono_arch_get_inst_for_method): Add memory_barrier support.
12192 2005-12-29 Neale Ferguson <neale@sinenomine.net>
12194 * inssel-s390.brg: Correct register assignment; Rework L[ADD|SUB]_OVF[_UN] for s390.
12196 * cpu-s390.md: Fix lengths of a couple of long instructions; Add memory_barrier.
12198 * mini-s390.c: Fix long add/sub overflow instructions; Fix displacement handling in
12199 instrument_prolog; Add memory_barrier instruction.
12201 2005-12-26 Zoltan Varga <vargaz@gmail.com>
12203 * exceptions-x86.c mini-x86.h: Fix solaris/x86 exception handling.
12205 2005-12-23 Zoltan Varga <vargaz@gmail.com>
12207 * tramp-ia64.c (mono_arch_get_unbox_trampoline): Flush icache.
12209 * aliasing.c inssel.brg: Fix warnings.
12211 * inssel-ia64.brg (OP_MEMSET): Fix an optimization which previously
12212 could skip initialization of some parts of memory.
12214 * mini.c mini-ia64.c: Fix warnings.
12216 * inssel-sparc.brg: Add an implementation of lneg which actually works.
12218 2005-12-22 Zoltan Varga <vargaz@gmail.com>
12220 * aliasing.c (mono_build_aliasing_information): Add a workaround for
12221 a crash seen on sparc.
12223 * mini-sparc.c: Add implementation of Thread.MemoryBarrier.
12225 * cpu-sparc.md: Add memory_barrier opcode. Remove unused opcodes.
12227 2005-12-21 Neale Ferguson <neale@sinenomine.net>
12229 * mini-ops.h: Add s390_backchain instruction
12231 * inssel-s390.brg: Use backchaining instruction for LOADARG/STKARG operations.
12233 * cpu-s390.md: Add s390_backchain instruction
12235 * mini-s390.c: Significant ABI changes
12237 * mini-s390.h: Cater for zero length structures
12239 2005-12-20 Neale Ferguson <neale@sinenomine.net>
12241 * mini-s390.c: ABI fixes
12243 * inssel-s390.brg: Remove debug statements
12245 * cpu-s390.md: Fix length of ATOMIC_xx operations
12247 2005-12-19 Zoltan Varga <vargaz@gmail.com>
12249 * basic-float.cs: Add float<->long conversion tests.
12251 2005-12-16 Neale Ferguson <neale@sinenomine.net>
12253 * mini-s390.c: Fix LOCALLOC processing.
12255 * tramp-s390.c (s390_magic_trampoline): Fix base calculation.
12257 2005-12-15 Zoltan Varga <vargaz@gmail.com>
12259 * iltests.il: Add tests for some opcodes not covered by the other
12262 2005-12-15 Neale Ferguson <neale@sinenomine.net>
12264 * mini-s390.c: Fix ADDCC/SBB bug revealed by test_0_ulong_regress; Correct
12265 register loading for Tail processing; Correct trace output.
12267 * inssel-s390.brg: Reimplement LSUB_OVF due to s390 implementation of signed math.
12269 * cpu-s390.md: Correct size of jmp instruction.
12271 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12273 * mini-s390.c (mono_arch_emit_prolog): Remove some debugging bits.
12275 2005-12-13 Neale Ferguson <neale@sinenomine.net>
12277 * inssel-s390.brg tramp-s390.c cpu-s390.md mini-s390.c mini-s390.h:
12278 Bring s390 up to current level.
12280 2005-12-12 Zltan Varga <vargaz@gmail.com>
12282 * generics.2.cs: Disable the newly added tests as they do not work yet.
12284 * generics.2.cs: Add valuetype tests.
12286 2005-12-09 Zoltan Varga <vargaz@gmail.com>
12288 * basic-long.cs: Add i4->u8 test.
12290 * objects.cs: Add tests for JIT intrinsic.
12292 * mini.c (mini_get_inst_for_method): Resurrect the array Rank/Length
12293 optimizations lost by a mistake.
12295 2005-12-07 Zoltan Varga <vargaz@gmail.com>
12297 * basic-long.cs: Remove a test moved to objects.cs.
12299 * arrays.cs: Add more array tests.
12301 2005-12-06 Zoltan Varga <vargaz@gmail.com>
12303 * arrays.cs: Add new tests for multi-dimensional arrays.
12305 2005-12-06 Raja R Harinath <rharinath@novell.com>
12307 * Makefile.am (test_sources2): Add generics.2.cs.
12308 (EXTRA_DIST): Add test_sources2.
12310 2005-12-05 Ben Maurer <bmaurer@ximian.com>
12312 Support for boxing and unboxing nullable types as well as the
12313 isinst operation on nullables, per the CLI ammendment.
12315 * inssel.brg (CEE_ISINST): Special case for nullable
12317 * mini.c (handle_unbox_nullable): new method
12318 (handle_box): Special case for nullable types
12319 (mono_method_to_ir): Call handle_unbox_nullable in correct
12322 * generics.2.cs: New test suite
12324 * Makefile.am: Support for regression tests with generics.
12326 2005-12-03 Zoltan Varga <vargaz@gmail.com>
12328 * mini-amd64.c (emit_load_volatile_arguments): Add loading of arguments
12329 allocated to registers. Fixes #76800.
12331 Thu Dec 1 12:59:40 EST 2005 Paolo Molaro <lupus@ximian.com>
12333 * mini-ppc.c, inssel-ppc.brg: fix ABI issue (pinvoke3.cs).
12335 2005-11-30 Zoltan Varga <vargaz@gmail.com>
12337 * exceptions.cs: Disable test_0_long_cast () test, since it fails on a lot
12340 2005-11-29 Zoltan Varga <vargaz@gmail.com>
12342 * objects.cs basic-calls.cs: Move a test depending on valuetypes to
12345 * inssel-long32.brg (CEE_CONV_I8): Remove unused labels.
12347 * inssel-long32.brg (CEE_CONV_I8): Convert this to a branchless version.
12348 Tue Nov 29 05:41:34 EST 2005 Paolo Molaro <lupus@ximian.com>
12350 * mini-ppc.c, cpu-g4.md: ensure a fp register is converted to
12351 single precision before storing to a single precision location.
12353 2005-11-28 Raja R Harinath <rharinath@novell.com>
12355 * Makefile.am (ILASM): Use profile-dependent location of ilasm.
12357 2005-11-27 Zoltan Varga <vargaz@gmail.com>
12359 * basic-long.cs basic-calls.cs objects.cs: Move some tests to the
12362 * basic.cs: Remove test_0_byte_compares test which was moved to
12363 objects.cs a long time ago.
12365 2005-11-22 Massimiliano Mantione <massi@ximian.com>
12367 * aliasing.c: Fixed aliasing issue on 64 bit archs.
12369 2005-11-20 Zoltan Varga <vargaz@gmail.com>
12371 * mini-ia64.c exceptions-ia64.c: Simplify the way filters/finally
12372 handlers are called.
12374 * mini-ia64.c (mono_arch_emit_exceptions): Optimize size of exception
12377 * mini-ia64.c: Add support for the throw->branch exception
12380 * driver.c (DEFAULT_OPTIMIZATIONS): Add MONO_OPT_EXCEPTION.
12382 2005-11-18 Massimiliano Mantione <massi@ximian.com>
12384 * mini.c: Enabled "fastpath" deadce :-)
12386 2005-11-18 Massimiliano Mantione <massi@ximian.com>
12388 * mini.c: Added "fastpath" deadce (deadce without SSA), and a simple
12389 alias analysis pass to support it.
12390 * mini.h: Likewise.
12392 * liveness.c: Likewise (liveness computation can use aliasing
12393 information to be more accurate).
12394 * driver.c: Added an "ssa" option go tell the JIT to use SSA, and
12395 moreover made so that "--compile-all" uses the given optimization
12396 flags and not the default ones.
12397 * aliasing.c: Alias analysis (new file).
12398 * aliasing.h: Likewise.
12399 * Makefile.am: added "aliasing.c" and "aliasing.h".
12401 2005-11-17 Zoltan Varga <vargaz@gmail.com>
12403 * mini-ops.h: Add missing OP_I opcodes so it is in synch with the
12406 2005-11-13 Zoltan Varga <vargaz@gmail.com>
12408 * mini-exceptions.c (mono_handle_exception_internal): Remove the
12409 fp >= end_of_stack exit condition, as it is not needed, and it might
12410 become true for fp eliminated frames.
12412 2005-11-11 Zoltan Varga <vargaz@gmail.com>
12414 * mini-x86.c (mono_arch_emit_epilog): Use G_STRUCT_OFFSET instead of hard
12417 Tue Nov 8 11:28:20 GMT 2005 Paolo Molaro <lupus@ximian.com>
12419 * mini-arm.c: fixed alignment of doubles/longs to match
12420 the C ABI (bug #76635).
12422 Mon Nov 7 16:13:21 CET 2005 Paolo Molaro <lupus@ximian.com>
12424 * aot.c: fix compilation with --enable-minimal=aot.
12426 Fri Nov 4 12:34:15 GMT 2005 Paolo Molaro <lupus@ximian.com>
12428 * mini-arm.c: fixed compatibility with the new
12429 floating point emulator package for compares.
12431 2005-11-03 Atsushi Enomoto <atsushi@ximian.com?
12433 * mini.c : reverted sig->pinvoke changes (r51396-51397).
12435 2005-11-01 Zoltan Varga <vargaz@freemail.hu>
12437 * mini-exceptions.c (print_stack_frame): Output to stderr.
12438 (mono_handle_native_sigsegv): Ditto.
12440 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
12442 * mini-amd64.c (mono_arch_output_basic_block): Remove unused
12443 OP_LCONV_TO_OVF_I implementation.
12445 * mini-amd64.c: Add support for the throw->branch exception
12448 * branch-opts.c (mono_branch_optimize_exception_target): Allow the case
12449 when the catch clause catches a more general exception, i.e. Object.
12451 2005-10-30 Zoltan Varga <vargaz@gmail.com>
12453 * cpu-ia64.md: Remove unused opcodes.
12455 * mini.c (GET_CONTEXT): Simplify this somewhat by removing arch
12456 specific defines for architectures defining USE_SIGACTION.
12458 * mini-ia64.c: Fix some warnings.
12460 * exceptions-ia64.c (mono_arch_ip_from_context): Fix this, the previous
12461 version seemed to skip a frame.
12463 2005-10-30 Zoltan Varga <vargaz@freemail.hu>
12465 * mini.c: Clean up the usage of sig->pinvoke flag. Now
12466 only calls which are made to native code use this flag.
12468 2005-10-29 Zoltan Varga <vargaz@freemail.hu>
12470 * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for
12471 varargs methods as well.
12473 * mini-amd64.c exceptions-amd64.c: Allow fp elimination in methods
12474 which have save_lmf set. Reorganize methods prologs a bit.
12476 * mini-amd64.c (mono_arch_compute_omit_fp): Move the check for the
12477 debugger to the proper place.
12479 2005-10-29 Martin Baulig <martin@ximian.com>
12481 * mini-amd64.c (debug_omit_fp): Temporarily disable fp elimination
12482 when running inside the debugger until the debugger has support
12485 2005-10-26 Zoltan Varga <vargaz@gmail.com>
12487 * mini.h: Fix a warning.
12489 2005-10-24 Miguel de Icaza <miguel@novell.com>
12491 * mini.c (mono_pmip): Just a wrapper for get_method_from_ip which
12492 we expose publicly, this returns the string.
12494 2005-10-22 Zoltan Varga <vargaz@freemail.hu>
12496 * exceptions-amd64.c (mono_arch_find_jit_info): Fix some corner cases
12497 with fp elimination.
12499 2005-10-21 Zoltan Varga <vargaz@gmail.com>
12501 * mini-exceptions.c (mono_handle_native_sigsegv): Try to print a
12502 native stacktrace using the glibc 'backtrace' function if available.
12504 2005-10-20 Zoltan Varga <vargaz@gmail.com>
12506 * mini.h (MonoDebugOptions): Remove 'abort_on_sigsegv' option.
12508 * mini-exceptions.c (mono_handle_native_sigsegv): New function to
12509 handle SIGSEGVs received while in native code.
12511 * mini.c (sigsegv_signal_handler): If the SIGSEGV happened in native
12512 code, call mono_handle_native_sigsegv which will abort the runtime
12513 after printing some diagnostics, instead of converting it into a
12514 confusing NullReferenceException.
12516 2005-10-18 Zoltan Varga <vargaz@gmail.com>
12518 * cpu-pentium.md: Remove unused opcodes.
12520 2005-10-18 Zoltan Varga <vargaz@freemail.hu>
12522 * mini-amd64.h (MonoLMF): Add rsp field.
12524 * mini-amd64.c exceptions-amd64.c tramp-amd64.c: Save the sp reg into
12527 2005-10-17 Zoltan Varga <vargaz@gmail.com>
12529 * mini-codegen.c (get_register_spilling): Fix some warnings.
12531 2005-10-16 Zoltan Varga <vargaz@freemail.hu>
12533 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Add support for fp
12534 elimination during exception handling. Enable fp elimination by
12537 * mini-amd64.h mini-amd64.c: Add preliminary support for frame pointer
12540 2005-10-16 Martin Baulig <martin@ximian.com>
12542 * mini-exceptions.c
12543 (mono_debugger_run_finally): New public method for the debugger.
12545 2005-10-10 Zoltan Varga <vargaz@gmail.com>
12547 * debug-mini.c (mono_debug_init_method): Fix warning.
12549 * mini.h branch-opts.c (mono_branch_optimize_exception_target): Make
12550 the 'exname' parameter const to fix some warnings.
12552 2005-10-09 Zoltan Varga <vargaz@freemail.hu>
12554 * mini-exceptions.c (mono_handle_exception_internal): Fix another bug
12555 introduced by the previous patch.
12557 2005-10-08 Zoltan Varga <vargaz@gmail.com>
12559 * basic-float.cs: Add test for precision of float arithmetic.
12561 * mini-ia64.c (mono_arch_output_basic_block): Convert to/from doubles
12562 when loading/storing single values from/to memory.
12564 * mini.c (mono_jit_compile_method_with_opt): Create the function
12565 pointers in the correct domain.
12567 2005-10-08 Zoltan Varga <vargaz@freemail.hu>
12569 * mini-exceptions.c (mono_handle_exception_internal): Fix bug
12570 introduced by previous patch.
12572 * mini-exceptions.c (mono_handle_exception_internal): Handle the case
12573 when out_filter_idx is NULL.
12575 * mini-exceptions.c: Don't run filter clauses twice during exception
12576 handling. Fixes #75755.
12578 2005-10-07 Zoltan Varga <vargaz@gmail.com>
12580 * aot.c: Add support for ldflda wrappers.
12582 * mini.c (mono_method_to_ir): Use ldflda wrappers for CEE_LDFLDA. Fixes
12585 Tue Oct 4 20:23:25 CEST 2005 Paolo Molaro <lupus@ximian.com>
12587 * mini.c, mini.h: do not consider exception handlers blocks when
12588 setting up interface variables.
12590 2005-10-04 Zoltan Varga <vargaz@freemail.hu>
12592 * aot.c (emit_section_change): Fix emitting of sections on win32. Fixes #76322.
12594 2005-10-03 Zoltan Varga <vargaz@gmail.com>
12596 * liveness.c (mono_analyze_liveness): Revert parts of r51051 since it
12597 causes a regression.
12599 * mini.c (mini_thread_cleanup): Fix reading of freed memory.
12601 2005-10-02 Zoltan Varga <vargaz@freemail.hu>
12603 * mini.h (OP_PCONST): Move the definition of OP_PCONST into the rest
12604 of the OP_P definitions.
12606 * TODO: Add a proposal for dealing with the CEE/OP mess.
12608 * mini-amd64.c (mono_arch_output_basic_block): Merge mul_imm
12609 optimizations from the x86 port.
12611 * cpu-amd64.md: Ditto.
12613 * basic.cs basic-long.cs: Add tests.
12615 Fri Sep 30 20:07:20 CEST 2005 Paolo Molaro <lupus@ximian.com>
12617 * Makefile.am, driver.c, mini-x86.c, mini.c, mini.h, branch-opts.c:
12618 Patrik Torstensson's implementation of my exception-handling
12619 optimization idea, when the exception object is not used
12622 Fri Sep 30 19:10:29 CEST 2005 Paolo Molaro <lupus@ximian.com>
12624 * mini-x86.c, cpu-pentium.md: Patrik Torstensson's port
12625 of the mul_imm optimizations from the old jit.
12627 Fri Sep 30 11:37:51 EDT 2005 Paolo Molaro <lupus@ximian.com>
12629 * mini.c, liveness.c: patch by Patrik Torstensson and
12630 Zoltan Varga to improve performance in methods with
12633 2005-09-30 Zoltan Varga <vargaz@gmail.com>
12635 * driver.c: Remove 'Globalization' entry from --version.
12637 2005-09-28 Zoltan Varga <vargaz@gmail.com>
12639 * mini.c (mono_jit_compile_method_inner): Do not load AOT code when
12640 there is a profiler interested in JIT events.
12642 * aot.c: Load profile files produced by the AOT profiling module, and
12643 reorder methods based on the profiling info. Add a 'method_order' table
12644 to the AOT file to make mono_aot_find_jit_info work with the reordered
12647 * mini.h: Bump AOT file version info.
12649 Wed Sep 28 17:12:48 CEST 2005 Paolo Molaro <lupus@ximian.com>
12651 * mini-arm.h: work around what looks like a gcc bug when optimizations
12654 2005-09-28 Raja R Harinath <rharinath@novell.com>
12656 * Makefile.am (AM_CFLAGS): Don't use += to append inside
12657 conditionals. Use ...
12658 (PLATFORM_CFLAGS, ARCH_CFLAGS): ... these.
12660 2005-09-27 Zoltan Varga <vargaz@freemail.hu>
12662 * mini-amd64.c (mono_arch_call_opcode): Use mono_class_value_size ()
12663 to determine the amount of memory to copy when passing valuetypes.
12665 * inssel-amd64.brg: Remove PUSH(LDIND4) rules since they convert an
12666 4 byte load into a 8 byte load. Fix aligning of size in OP_OUTARG_VT.
12668 2005-09-27 Zoltan Varga <vargaz@gmail.com>
12670 * mini.h mini.c aot.c: Add infrastructure to collect pagefault
12671 information about aot.
12673 2005-09-27 Ben Maurer <bmaurer@ximian.com>
12675 * *.c: Replace the use of {Enter,Leave}CriticalSection with
12676 macros. This will allow a deadlock debugger to easily be plugged
12679 Tue Sep 27 09:32:11 EDT 2005 Paolo Molaro <lupus@ximian.com>
12681 * mini-ppc.c, cpu-g4.md: added memory barrier instruction.
12683 2005-09-27 Raja R Harinath <rharinath@novell.com>
12685 * Makefile.am (AM_CFLAGS): Rename from INCLUDES.
12686 (AM_CFLAGS) [PLATFORM_WIN32): Append to it, don't set it.
12687 (AM_CFLAGS) [ARM]: Add arch/arm directory from the build tree.
12688 ($(arch_built)) [CROSS_COMPILING]: Error out.
12690 2005-09-26 Zoltan Varga <vargaz@gmail.com>
12692 * aot.c: Add support for the no_special_static flag for classes.
12694 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
12696 * Reapply reverted patches.
12698 * *: Revert r50174 as well.
12700 * mini-amd64.c cpu-amd64.md inssel-amd64.brg: Revert r50170 as well.
12702 2005-09-24 Zoltan Varga <vargaz@freemail.hu>
12704 * mini-amd64.c: Revert r50342 to see if this fixed buildbot.
12706 2005-09-23 Miguel de Icaza <miguel@novell.com>
12708 * mini.c (SIG_HANDLER_SIGNATURE): Only dereference info if it is
12709 part of the SIG_HANDLER_SIGNATURE.
12711 2005-09-23 Zoltan Varga <vargaz@gmail.com>
12713 * mini.h mini.c: Add a new MONO_DEBUG option to collect metadata pagefault
12716 * mini-x86.c (mono_arch_call_opcode): Fix vararg calling convention
12717 introduced by previous patch.
12719 2005-09-21 Zoltan Varga <vargaz@gmail.com>
12721 * tramp-x86.c (mono_arch_create_trampoline_code): Restore caller
12722 saved registers too.
12724 * mini-x86.c (mono_arch_allocate_vars): Rewrite this so it works based
12725 upon the information returned by get_call_info ().
12727 * mini-x86.c (add_float): Fix stack size calculation.
12728 (mono_arch_call_opcode): Rewrite this so it works based up the
12729 information returned by get_call_info ().
12730 (mono_arch_get_this_vret_args): Ditto.
12732 2005-09-21 Zoltan Varga <vargaz@freemail.hu>
12734 * mini-amd64.c (mono_arch_emit_this_vret_args): Use the information
12735 in cinfo to determine the registers which need to be used.
12737 2005-09-20 Miguel de Icaza <miguel@novell.com>
12739 * driver.c (mono_main): Add --server and --desktop flags.
12741 2005-09-16 Zoltan Varga <vargaz@gmail.com>
12743 * mini-ia64.h: Make register masks 64 bit. Don't treat argument
12744 registers as global registers.
12746 * inssel-ia64.brg (stmt): Remove OP_OUTARG_REG () rules which are no
12747 longer needed with the new register allocator.
12749 * mini-ia64.c: Use OP_MOVE instead of OP_SETREG for reg-reg moves.
12751 * cpu-ia64.md: Remove unused opcodes.
12753 * regalloc.c mini-codegen.c: Make register masks 64 bit on ia64.
12755 2005-09-16 Zoltan Varga <vargaz@freemail.hu>
12757 * cpu-amd64.md: Remove unused opcodes.
12759 * inssel-amd64.brg: Remove OP_OUTARG_REG () rules which are no longer
12760 needed with the new register allocator.
12762 * inssel-amd64.brg mini-amd64.c: Use OP_MOVE instead of OP_SETREG for
12765 2005-09-16 Raja R Harinath <rharinath@novell.com>
12767 * Makefile.am (check-local): Don't invoke semdel-wrapper.
12769 2005-09-16 Martin Baulig <martin@ximian.com>
12771 * exceptions-amd64.c
12772 (throw_exception): Don't call mono_debugger_throw_exception() if
12773 we're a rethrow - see the FIXME in the code.
12775 2005-09-15 Geoff Norton <gnorton@customerdna.com>
12777 * mini.c (mono_init_exceptions): This only works on some architectures.
12779 2005-09-15 Zoltan Varga <vargaz@gmail.com>
12781 * mini.c (mono_method_to_ir): Add OP_LMUL imm -> OP_LMUL_IMM conversion
12784 * inssel-long.brg mini-ia64.c: Add OP_LMUL_IMM rules.
12786 * mini-ia64.h mini-ia64.c: Remove the altstack support code which is
12787 now in mini-exceptions.c.
12789 2005-09-15 Zoltan Varga <vargaz@freemail.hu>
12791 * mini-amd64.h mini-am64.c: Remove the altstack support code which is
12792 now in mini-exceptions.c.
12794 2005-09-15 Zoltan Varga <vargaz@gmail.com>
12796 * exceptions-x86.c: Applied patch from Patrik Torstensson
12797 <patrik.torstensson@gmail.com>. Add stack overflow handling support for win32.
12799 * mini-exceptions.c mini-x86.c mini.c: Move the altstack setup/teardown
12800 code into mini-exceptions.c. Add some assertions to it.
12802 2005-09-12 Zoltan Varga <vargaz@gmail.com>
12804 * aot.c (emit_section_change): Applied patch from "The Software Team"
12805 (<software@solmersa.com>). Fix as errors on windows.
12807 2005-09-11 Zoltan Varga <vargaz@freemail.hu>
12809 * tramp-amd64.c (mono_arch_create_trampoline_code): Fix saving of
12810 method info into the LMF.
12812 2005-09-11 Zoltan Varga <vargaz@gmail.com>
12814 * mini-ia64.c: Add proper unwind info for method epilogs.
12816 * exceptions-ia64.c: Add some code to help debugging.
12818 * mini-ia64.c mini-ia64.h: Add sigaltstack support.
12820 * mini-exceptions.c: Fix warning.
12822 2005-09-11 Zoltan Varga <vargaz@freemail.hu>
12824 * mini.c: Really fix build.
12826 * mini-x86.c mini-amd64.c: Fix build.
12828 2005-09-11 Zoltan Varga <vargaz@gmail.com>
12830 * mini-ia64.c inssel-ia64.brg: Add InterlockedExchange instrinsics.
12832 * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Implement
12833 some Interlocked methods as intrinsics.
12835 * mini.c (mini_get_inst_for_method): Call arch_get_inst_for_method
12836 for Thread methods as well.
12838 * mini-ops.h: Add OP_MEMORY_BARRIER opcode.
12840 * inssel.brg: Add rule for OP_MEMORY_BARRIER.
12842 * mini-ia64.c mini-x86.c mini-amd64.c
12843 cpu-ia64.md cpu-pentium.md cpu-amd64.md: Add implementation of
12846 * mini.c (mono_init_exceptions): Fix build breakage.
12848 2005-09-10 Zoltan Varga <vargaz@gmail.com>
12850 * mini-ia64.c exceptions-ia64.c tramp-ia64.c: Remove 'manual' emitting
12851 of instructions. Use the new ia64_unw_op macros for emitting unwind
12854 * mini.c (mono_init_exceptions): Initialize exception handling
12855 related trampolines at startup.
12857 Fri Sep 9 19:30:37 BST 2005 Paolo Molaro <lupus@ximian.com>
12859 * cpu-arm.md, mini-arm.c: fix for dynamic code (Gtk# apps).
12861 2005-09-09 Zoltan Varga <vargaz@gmail.com>
12863 * mini.c: Handle type loading errors gracefully during compilation and
12864 throw the appropriate exception.
12866 Fri Sep 9 09:49:14 CEST 2005 Paolo Molaro <lupus@ximian.com>
12868 * ldscript.mono, Makefile.am: use anonymous versions in the ldscript
12869 for the mono binary.
12871 2005-09-09 Martin Baulig <martin@ximian.com>
12873 * mini.c (mono_method_to_ir): Comment out the G_BREAKPOINT()'s for
12876 Thu Sep 8 14:53:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12878 * mini-arm.h: use emulation for conv.r.un for the release.
12880 Thu Sep 8 11:28:45 BST 2005 Paolo Molaro <lupus@ximian.com>
12882 * mini-arm.c, objects.cs: more fixes and tests for them.
12884 Wed Sep 7 17:14:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12886 * mini-arm.c: align structures to at least 4 bytes to be able
12887 to keep our current optimized memcpy.
12889 Tue Sep 6 22:51:08 BST 2005 Paolo Molaro <lupus@ximian.com>
12891 * mini-arm.c, cpu-arm.md, inssel-arm.brg: bugfixes.
12893 2005-09-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
12895 * mini.c: ignore SIGPIPE.
12897 2005-09-04 Zoltan Varga <vargaz@gmail.com>
12899 * mini-ia64.c (mono_arch_lowering_pass): Convert 'and_imm 255' to zext1.
12901 * mini-ia64.h mini-ia64.c: Add some minor optimizations.
12903 2005-09-02 Zoltan Varga <vargaz@gmail.com>
12905 * mini.h: Add prototype for mono_allocate_stack_slots_full.
12907 Thu Sep 1 21:05:26 BST 2005 Paolo Molaro <lupus@ximian.com>
12909 * exceptions-arm.c, mini.c, mini-arm.c, mini-arm.h:
12910 exception handling support.
12911 * mini-arm.c, mini-arm.h: bigendian fixes (partially from a
12912 patch by Brian Koropoff <briank@marakicorp.com>).
12914 Thu Sep 1 10:22:44 EDT 2005 Paolo Molaro <lupus@ximian.com>
12916 * mini.c: revert another 'optimization' which breaks when
12917 items on the eval stack need to be saved at a basic block end
12920 Wed Aug 31 17:29:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
12922 * jit-icalls.c: for arrays, ensure we always provide
12925 2005-08-30 Zoltan Varga <vargaz@gmail.com>
12927 * mini.c (mono_allocate_stack_slots_full): Fix ia64 build.
12929 * mini.c (mini_get_inst_for_method): Special case Object:.ctor as well.
12931 2005-08-29 Zoltan Varga <vargaz@gmail.com>
12933 * mini-ia64.h mini-ia64.c: Implement frame pointer elimination. Keep
12934 arguments in their original register.
12936 2005-08-28 Zoltan Varga <vargaz@gmail.com>
12938 * mini-ops.h cpu-ia64.md inssel-ia64.brg mini-ia64.c: Optimize
12941 * mini.c (mono_method_to_ir): Disable the MUL->MUL_IMM optimization
12942 when ssapre is enabled.
12944 * inssel-long.brg: Fix bug in previous patch.
12946 * mini-ia64.c mini-ia64.h mini.c inssel-long.brg: Optimize
12947 multiplication by a constant.
12949 2005-08-27 Zoltan Varga <vargaz@gmail.com>
12951 * mini-ia64.c (mono_arch_setup_jit_tls_data): Add support for intel
12954 * tramp-ia64.c (mono_arch_create_trampoline_code): Use st8.spill for
12957 Fri Aug 26 11:09:28 BST 2005 Paolo Molaro <lupus@ximian.com>
12959 * inssel-arm.brg: apply changes tested by Brian Koropoff
12960 <briank@marakicorp.com>.
12962 2005-08-25 Zoltan Varga <vargaz@gmail.com>
12964 * mini-x86.c (mono_arch_emit_prolog): Fix calling of mono_jit_thread_attach () under windows.
12966 2005-08-24 Zoltan Varga <vargaz@gmail.com>
12968 * mini-codegen.c (mono_local_regalloc): Avoid allocating dreg and sreg1/2
12969 to the same register if dreg is just a base register.
12970 (print_ins): Improve printing of membase opcodes.
12972 * inssel-x86.brg: Add optimized ldind(reg) rules.
12974 * mini-x86.c cpu-pentium.md: Changes required to support the new rules.
12976 Wed Aug 24 19:39:36 CEST 2005 Paolo Molaro <lupus@ximian.com>
12978 * mini.c: when running under valgrind, set the stack bottom for
12979 the GC at the actual approximate stack for the app (fixes running
12980 mono with valgrind).
12982 Tue Aug 23 21:38:50 CEST 2005 Paolo Molaro <lupus@ximian.com>
12984 * mini.c: do no break at the first valuetype to init found
12985 (fixes bug #75791).
12987 Tue Aug 23 16:53:21 BST 2005 Paolo Molaro <lupus@ximian.com>
12989 * cpu-arm.md, mini-arm.c: more fixes and LMF support.
12991 Tue Aug 23 15:11:44 CEST 2005 Paolo Molaro <lupus@ximian.com>
12993 * cpu-g4.md: fixed instruction length exposed by the nemerle compiler.
12995 2005-08-23 Zoltan Varga <vargaz@freemail.hu>
12997 * inssel-amd64.brg inssel-x86.brg: Fix the fcall rules.
12999 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
13001 * inssel-x86.brg: Fix assert in patch_delegate_trampoline.
13003 * tramp-x86.c (mono_arch_patch_delegate_trampoline): Add some debug
13006 * tramp-amd64.c (mono_arch_patch_delegate_trampoline): Add some debug
13009 * mini.c (optimize_branches): Don't quit after 1000 iterations on large
13012 Mon Aug 22 19:16:29 BST 2005 Paolo Molaro <lupus@ximian.com>
13014 * tramp-arm.c: allocate less memory for the trampoline and fix typo.
13016 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
13018 * mini.c (mono_method_to_ir): Remove instructions inserted after a branch
13019 in the tail recursion optimization.
13021 * mini.h helpers.c (mono_disassemble_code): Emit starts of basic blocks as
13022 debug info into the assembly file.
13024 * iltests.il: Add test for filter regions.
13026 * mini.c (mono_method_to_ir): Fix handling of nested FILTER clauses. Fix
13027 initial stack of filter regions. Fixes #75755.
13029 Mon Aug 22 17:49:16 BST 2005 Paolo Molaro <lupus@ximian.com>
13031 * mini-arm.c, cpu-arm.c: fixes and support for methods with bigger
13032 stack requirements.
13034 2005-08-22 Zoltan Varga <vargaz@freemail.hu>
13036 * mini.c (mono_create_delegate_trampoline): Fix memory leak. Put back
13037 the check for an already compiled method on non-ia64 platforms.
13038 (mono_create_jump_trampoline): Store the MonoJitInfo structure into the
13041 * mini-x86.h tramp-x86.c: Add support for delegate trampolines.
13043 * inssel-x86.brg: Add some optimized call rules.
13045 2005-08-21 Zoltan Varga <vargaz@freemail.hu>
13047 * mini.c (mono_create_delegate_trampoline): Do not return an already compiled
13050 * mini.h mini-trampolines.c: Pass the trampoline argument to
13051 mono_arch_patch_delegate_trampoline.
13053 * mini-ia64.h mini-ia64.c tramp-ia64.c: Add support for delegate trampolines.
13055 * mini-trampolines.c: Fix build.
13057 * mini-amd64.h: Add delegate trampolines.
13059 * mini.h mini.c mini-trampolines.c tramp-amd64.c: Add delegate trampolines.
13061 * inssel-amd64.brg: Add optimized call rules.
13063 * mini-ia64.c tramp-ia64.c: Improve instruction scheduling.
13065 * inssel-ia64.brg: Add optimized ldind(reg) rules.
13067 2005-08-20 Zoltan Varga <vargaz@freemail.hu>
13069 * mini.c (mono_create_class_init_trampoline): Fix bug caused by last
13072 * mini-ia64.c: Remove LMF fixmes.
13074 * mini-ia64.h: Remove most fields from LMF.
13076 * inssel-ia64.brg (stmt): Fix unaligned access errors.
13078 * mini-trampolines.c: Add support for IA64 function descriptors.
13080 * mini.h mini.c jit-icalls.c exceptions-ia64.cdriver.c: Add support
13081 for IA64 function descriptors.
13083 Sat Aug 20 16:51:44 BST 2005 Paolo Molaro <lupus@ximian.com>
13085 * tramp-arm.c: patch the vtable for virtual calls. Added
13086 support code to register/unregister the LMF.
13087 * mini-arm.c, mini-arm.h: warning fixes, fixes, speedups,
13090 2005-08-19 Dick Porter <dick@ximian.com>
13092 * mini.c: Use a gsize to store the thread ID, so it can hold a 64
13093 bit value if needed.
13095 2005-08-19 Zoltan Varga <vargaz@freemail.hu>
13097 * mini.c (mini_get_method): Move handling of wrapper data here.
13099 * mini.c (mono_method_to_ir): Add support for dynamic methods.
13101 * mini.c (mono_method_to_ir): Convert nonvirtual calls to abstract methods into
13104 * mini.c (mono_method_to_ir): Emit IR for CEE_NOP as well, so
13105 bblock->code does not remain empty.
13107 2005-08-17 Zoltan Varga <vargaz@freemail.hu>
13109 * arrays.cs: Add regression test for #75832.
13111 * inssel-amd64.brg cpu-amd64.md mini-amd64.c: Fix LDELEMA optimization
13112 rules. Fixes #75832.
13114 * mini-ia64.c tramp-ia64.c exceptions-ia64.c: Implement improved
13115 instruction scheduling.
13117 2005-08-12 Zoltan Varga <vargaz@freemail.hu>
13119 * mini-exceptions.c (ves_icall_get_frame_info): Fix IA64 build.
13121 2005-08-11 Zoltan Varga <vargaz@freemail.hu>
13123 * mini-exceptions.c mini-x86.h: Move VC stuff into macros in mini-x86.h.
13125 * mini-codegen.c: Fix VC build.
13127 * cpu-pentium.md: Increase length of atomic_exhange_i4.
13129 2005-08-09 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13131 * mini.h: fix signature for mono_register_opcode_emulation.
13133 2005-08-09 Zoltan Varga <vargaz@freemail.hu>
13135 * mini.c: Get rid of most of the helper_sig_... constants using
13136 mono_create_icall_signature ().
13138 2005-08-08 Zoltan Varga <vargaz@freemail.hu>
13140 * jit-icalls.c (helper_ldstr): New helper function.
13142 * mini.c (get_basic_blocks): Set out_of_line for bblocks containing a throw.
13144 * mini.c (mono_method_to_ir): If an LDSTR instruction is in a bblock with a
13145 throw, load the string using a helper call instead of creating a string object.
13147 * aot.c: Update after LDSTR changes.
13149 * mini.h: Bump AOT file version.
13151 * aot.c: Save class size info into the AOT file. Print more statistics during
13154 * mini.h: Bump AOT file version.
13156 * tramp-amd64.c (mono_arch_nullify_class_init_trampoline): Fix
13157 ordering of disasm cases. Fixes #74957.
13159 Thu Aug 4 19:47:24 BST 2005 Paolo Molaro <lupus@ximian.com>
13161 * mini-ops.h, mini-arch.h, inssel.brg, mini.c, mini.h,
13162 jit-icalls.c, mini-codegen.c, Makefile.am: changes in
13163 the generic code needed for the ARM port.
13165 Thu Aug 4 19:42:54 BST 2005 Paolo Molaro <lupus@ximian.com>
13167 * exceptions-arm.c, tramp-arm.c, mini-arm.c, mini-arm.h, cpu-arm.md,
13168 inssel-arm.brg: more ARM features and fixes.
13170 Mon Aug 1 18:37:38 BST 2005 Paolo Molaro <lupus@ximian.com>
13172 * tramp-arm.c, mini-arm.c, cpu-arm.md, inssel-arm.brg: more
13173 ARM port work in progress.
13175 2005-07-30 Zoltan Varga <vargaz@freemail.hu>
13177 * mini-ia64.c (mono_arch_call_opcode): Ongoing IA64 work.
13179 * mini-exceptions.c mini-ia64.h: Ongoing IA64 work.
13181 * mini-ia64.c (ia64_emit_bundle): Ongoing IA64 work.
13183 * inssel.brg (mini_emit_memset): Add support for unaligned access.
13185 * *-ia64.*: Ongoing IA64 work.
13187 * mini-ia64.c exceptions-ia64.c: Ongoing IA64 work.
13189 2005-07-28 Zoltan Varga <vargaz@freemail.hu>
13191 * TODO: Remove out-of-data todo stuff.
13193 * mini.h mini.c (mono_create_jit_trampoline_from_token): Remove some
13196 * aot.c: Save/load MonoCachedClassInfo->has_nested_classes.
13198 * mini.h: Bump corlib version.
13200 2005-07-27 Martin Baulig <martin@ximian.com>
13203 (create_copy_ins): Added `const unsigned char *ip' argument; set
13204 `copy->cil_code' from it.
13206 2005-07-27 Martin Baulig <martin@ximian.com>
13208 * mini-exceptions.c (mono_handle_exception): Don't call
13209 mono_debugger_handle_exception() for filters.
13211 2005-07-27 Zoltan Varga <vargaz@freemail.hu>
13213 * mini-trampolines.c (mono_aot_trampoline): Handle AppDomain:InvokeInDomain
13216 2005-07-26 Martin Baulig <martin@ximian.com>
13218 Committing a patch from Michal Moskal <michal.moskal@gmail.com>.
13220 * mini.c (mono_method_to_ir): In `CEE_CALLI', only use
13221 helper_compile_generic_method() if the method is actually virtual
13224 2005-07-26 Martin Baulig <martin@ximian.com>
13227 (trampoline_code): Renamed to `mono_trampoline_code' and made it
13228 public; this is now accessed directly by the debugger.
13229 (mono_generic_trampoline_code): Removed.
13232 (mono_debug_init_method): Also add interncalls and wrappers.
13234 2005-07-23 Zoltan Varga <vargaz@freemail.hu>
13236 * mini-ia64.c mini-ia64.h: Add support for tracing/profiling.
13238 2005-07-22 Zoltan Varga <vargaz@freemail.hu>
13240 * aot.c (mono_aot_get_method_from_token): Fix a potential crash here.
13242 2005-07-21 Zoltan Varga <vargaz@freemail.hu>
13244 * aot.c (load_patch_info): Fix handling of stfld_remote wrapper.
13246 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
13248 * mini-amd64.c (mono_arch_setup_jit_tls_data): Use the nice way of
13249 getting TLS offsets on AMD64 too.
13251 2005-07-20 Kornél Pál <kornelpal@hotmail.com>
13253 * driver.c: Detach console when executing IMAGE_SUBSYSTEM_WINDOWS_GUI on win32
13255 Wed Jul 20 18:05:19 BST 2005 Paolo Molaro <lupus@ximian.com>
13257 * exceptions-arm.c, mini-arm.c, tramp-arm.c, cpu-arm.md,
13258 inssel-arm.brg, mini-arm.h: ARM port work in progress.
13260 2005-07-20 Zoltan Varga <vargaz@freemail.hu>
13262 * tramp-amd64.c (mono_arch_create_specific_trampoline): Fix build.
13264 * mini.h mini.c mini-*.h tramp-*.c: Move more cross platform trampoline code
13267 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Call
13268 mono_sparc_is_virtual_call ().
13270 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix warning.
13272 * tramp-sparc.c (mono_arch_create_trampoline_code): Fix order of
13273 trampoline parameters.
13275 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Fix signature.
13277 * mini-sparc.c (mono_arch_get_vcall_slot_addr): Rename this
13278 to mono_arch_get_vcall_slot_addr.
13280 * Makefile.am tramp-sparc.c: Update the sparc port to use the generic
13283 * *-sparc.*: Merge the mini-xp-regalloc branch for sparc.
13285 2005-07-19 Zoltan Varga <vargaz@freemail.hu>
13287 * mini-ia64.h mini-ia64.c: Finish pinvoke support.
13289 2005-07-19 Martin Baulig <martin@ximian.com>
13291 * exceptions-amd64.c (throw_exception): Call
13292 mono_debugger_throw_exception() here like we're doing it on i386.
13294 2005-07-19 Zoltan Varga <vargaz@freemail.hu>
13296 * mini-ia64.c: Add optimized TLS access support.
13298 2005-07-18 Zoltan Varga <vargaz@freemail.hu>
13300 * mini-exceptions.c: Ongoing IA64 work.
13302 * mini-ia64.c inssel-long.brg: Ongoing IA64 work.
13304 * mini.c: Use the default optimization set when embedding. Fixes
13307 2005-07-11 Zoltan Varga <vargaz@freemail.hu>
13309 * tramp-amd64.c tramp-ia64.c Makefile.am: Move arch independent parts
13310 of trampolines to a separate file.
13312 * mini-trampolines.c: New file.
13314 * mini.h tramp-x86.c: Move arch independent parts of trampolines to a
13317 * tramp-x86.c: Reorganize the trampoline code to be similar to the
13320 * mini-codegen.c: Fix cygwin build.
13322 2005-07-10 Zoltan Varga <vargaz@freemail.hu>
13324 * mini.c: Add some minor changes needed by the IA64 port.
13326 * *-ia64.*: Ongoing IA64 work.
13328 2005-07-09 Zoltan Varga <vargaz@freemail.hu>
13330 * tramp-amd64.c mini-amd64.c: Update after latest AOT changes. Split
13331 trampolines into arch-independent and arch-dependent parts.
13333 * mini-amd64.c (mono_arch_lowering_pass): Fix store_membase_imm -> store_membase_reg rule.
13335 2005-07-08 Zoltan Varga <vargaz@freemail.hu>
13337 * cpu-amd64.md: Merge the xp-regalloc-branch for amd64.
13339 * mini-ops.h mini-amd64.h mini-amd64.c inssel-amd64.brg Makefile.am: Merge
13340 the xp-regalloc-branch for amd64.
13342 * mini-x86.h mini-x86.c cpu-pentium.md Makefile.am: Merge the
13343 xp-regalloc-branch for x86.
13345 2005-07-07 Zoltan Varga <vargaz@freemail.hu>
13347 * inssel.brg (OP_THROW_OR_NULL): Allways rethrow the abort exception.
13349 2005-07-06 Martin Baulig <martin@ximian.com>
13352 (mono_jit_compile_method_inner): Call mono_get_inflated_method().
13353 (mono_jit_runtime_invoke): Likewise.
13355 2005-07-05 Zoltan Varga <vargaz@freemail.hu>
13357 * aot.c (mono_compile_assembly): Allocate the GOT in the .bss segment
13360 * aot.c: Add new mono_aot_get_method_from_token () function to load AOT methods
13361 without loading their metadata. Reorganize the file format so exception handling+
13362 debug info is kept separate from normal method info. Create MonoJitInfo
13363 structures for methods lazily.
13365 * tramp-x86.c (x86_aot_trampoline): Use the new from_token method to avoid
13367 (x86_class_init_trampoline): Patch AOT class init trampolines too.
13369 * mini.c (mini_init): Install the new mono_aot_find_jit_info hook.
13371 * mini.c (mono_method_to_ir): Reduce the number of class init trampoline calls
13374 * mini.h: Bump AOT file version.
13376 2005-07-04 Zoltan Varga <vargaz@freemail.hu>
13378 * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13380 2005-07-01 Raja R Harinath <rharinath@novell.com>
13382 * Makefile.am (check-local): Call semdel-wrapper.
13384 2005-06-29 Zoltan Varga <vargaz@freemail.hu>
13386 * mini-x86.c: Revert the last change as it seems to break the build..
13388 2005-06-28 Zoltan Varga <vargaz@freemail.hu>
13390 * mini-x86.c (peephole_pass): Fix the loadi1/loadi2 rules.
13392 * mini-x86.c (mono_arch_cpu_init): Fix setting of fp precision in the VC build.
13394 2005-06-27 Ben Maurer <bmaurer@ximian.com>
13396 * mini.c (NEW_AOTCONST): make sure to call mono_get_got_var
13397 outside of the macro, so strange stuff doesn't happen with gcc4
13398 (NEW_AOTCONST_TOKEN): Likewise.
13400 2005-06-28 Martin Baulig <martin@ximian.com>
13402 * mini.c (mini_class_is_system_array): New static method; use this
13403 instead of `klass->parent == mono_defaults.array_class' everywhere
13404 since this also works for the new generic array class.
13406 2005-06-26 Ben Maurer <bmaurer@ximian.com>
13408 * inssel.brg: Remove warnings.
13410 2005-06-24 Zoltan Varga <vargaz@freemail.hu>
13412 * mini-ia64.c: Ongoing IA64 work.
13414 * basic-float.cs: Add float->i1 conversion test.
13416 * iltests.il: Add conv.u4 test.
13418 2005-06-23 Zoltan Varga <vargaz@freemail.hu>
13420 * inssel-long.brg: Fix bug caused by last change.
13422 2005-06-23 Geoff Norton <gnorton@customerdna.com>
13424 * mini-x86.h: Add __APPLE__ to the SC_* redefines with the other
13425 BSDs. Allows the x86 JIT to work on OSX86
13427 2005-06-22 Zoltan Varga <vargaz@freemail.hu>
13429 * inssel-long.brg: Use OP_LSHR_UN_IMM instead of OP_SHR_UN_IMM in
13432 * mini-ia64.c: Ongoing IA64 work.
13434 2005-06-19 Zoltan Varga <vargaz@freemail.hu>
13436 * mini-ia64.c: Ongoing IA64 work.
13438 * driver.c: Clean up jit_code_hash as well when using --regression.
13440 * inssel-long.brg: Fix long->i4/u4 conversion rules.
13442 * basic-long.cs: Add tests for long->u4 conversion.
13444 2005-06-18 Ben Maurer <bmaurer@ximian.com>
13446 * mini.c: Take mono_get_domainvar out of macros. This makes sure
13447 that we do not depend on undefined C behavior: the order stuff
13448 gets evaluated within an expression. Fixes mono when compiled on
13451 2005-06-18 Zoltan Varga <vargaz@freemail.hu>
13453 * *-ia64.*: Ongoing IA64 work.
13455 * aot.c: Lower memory usage while loading AOT methods.
13457 * tramp-x86.c: Avoid allocating+freeing MonoJitInfo structures.
13459 * mini.h: Bump AOT file format version.
13461 2005-06-17 Zoltan Varga <vargaz@freemail.hu>
13463 * mini.c (mono_method_to_ir): Allow STACK_PTR as input to SWITCH.
13465 2005-06-16 Sebastien Pouliot <sebastien@ximian.com>
13467 * declsec.c: Fixed APTC to check for FullTrust on caller assembly (and
13468 not on callee assembly). Fixed some comments.
13470 2005-06-16 Zoltan Varga <vargaz@freemail.hu>
13472 * aot.c (mono_compile_assembly): Mark the "methods" symbol as a function so
13473 it gets proper disassembly.
13474 (emit_method_info): Remove some dead code.
13476 * mini.c (mini_method_compile): Allways allocate the GOT var in
13477 mono_method_to_ir for emulating opcodes.
13479 2005-06-13 Zoltan Varga <vargaz@freemail.hu>
13481 * mini.c (mono_jit_free_method): Remove the method from the JitInfo table
13482 before freeing the code memory. Fixes #74990.
13484 * objects.cs: Add regression test for #74992.
13486 * liveness.c: Extend live ranges of arguments to the beginning of the
13487 method. Fixes #74992.
13489 * exceptions-ia64.c mini-ia64.h: Modify ip during exception handling
13490 so it points into the faulting instruction.
13492 2005-06-12 Zoltan Varga <vargaz@freemail.hu>
13494 * jit-icalls.c (mono_imul_ovf): Add exception handling.
13496 * *-ia64.*: Ongoing IA64 work.
13498 * mini.c (mini_init): Fix signature of mono_delegate_ctor.
13500 2005-06-11 Zoltan Varga <vargaz@freemail.hu>
13502 * mini-ia64.h exceptions-ia64.c: Ongoing IA64 work.
13504 * *-ia64.*: Ongoing IA64 work.
13506 2005-06-10 Zoltan Varga <vargaz@freemail.hu>
13508 * basic-long.cs: Add tests for add/sub.ovf.
13510 * basic.cs: Add tests for sub.ovf.
13512 * *-ia64.*: Ongoing IA64 work.
13514 2005-06-09 Zoltan Varga <vargaz@freemail.hu>
13516 * *-ia64.*: Ongoing IA64 work.
13518 * basic.cs: Add conv.ovf.i4.un test.
13520 2005-06-09 Massimiliano Mantione <massi@ximian.com>
13522 * mini.c: (remove_block_if_useless) Fixed bug 75061.
13524 2005-06-08 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13526 * mini.c: no SIGUSR2 on windows. Remove it for PLATFORM_WIN32.
13528 2005-06-07 Zoltan Varga <vargaz@freemail.hu>
13530 * *-ia64.*: Ongoing IA64 work.
13532 2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
13535 * mini.c: added the ability to toggle trace on/off using SIGUSR2.
13537 2005-06-04 Zoltan Varga <vargaz@freemail.hu>
13539 * mini-ia64.c mini-ia64.h: Fix cleanup of memory stack.
13541 2005-06-03 Zoltan Varga <vargaz@freemail.hu>
13543 * mini-amd64.c (emit_call): Fix yet another bug in the near call optimization.
13545 * mini-amd64.c (amd64_patch): Add an assert to check that the destination
13546 of a call is callable by a near call.
13548 2005-05-31 Zoltan Varga <vargaz@freemail.hu>
13550 * mini-ia64.c: Ongoing IA64 work.
13552 2005-05-29 Zoltan Varga <vargaz@freemail.hu>
13554 * genmdesc.c: Make the generated array non-static.
13556 * inssel-long.brg: Fix LSHR_IMM rule.
13558 * *-ia64.*: Ongoing IA64 work.
13560 * *-ia64.*: Ongoing IA64 work.
13562 2005-05-28 Zoltan Varga <vargaz@freemail.hu>
13564 * *-ia64.*: Ongoing IA64 work.
13566 * *-ia64.*: Ongoing IA64 work.
13568 * mini-ia64.c: Ongoing IA64 work.
13570 * *-ia64.* jit-icalls.c mini-codegen.c: Ongoing IA64 work.
13572 2005-05-28 Zoltan Varga <vargaz@freemail.hu>
13574 * objects.cs basic-calls.cs: Move some tests to objects.cs.
13576 * objects.cs basic-long.cs: Move some tests to objects.cs.
13578 2005-05-26 Zoltan Varga <vargaz@freemail.hu>
13580 * *-ia64.*: Ongoing IA64 work.
13582 * iltests.il: Add a new test.
13584 * mini.c (mono_method_to_ir): Initialize valuetypes when created using
13585 newobj. Fixes #75042.
13587 2005-05-22 Zoltan Varga <vargaz@freemail.hu>
13589 * *-ia64.*: Ongoing IA64 work.
13591 * *-ia64.*: Ongoing IA64 work.
13593 * *-ia64.*: Ongoing IA64 work.
13595 * basic.cs objects.cs: Move tests accessing static variables as well.
13597 * basic.cs objects.cs: Move test_0_pin_string to objects.cs.
13599 2005-05-21 Zoltan Varga <vargaz@freemail.hu>
13601 * mini.c (SIG_HANDLER_SIGNATURE): Fix warning.
13603 * driver.c: Always print failed tests.
13605 * mini-codegen.c: Use cfg->frame_reg instead of a macro for the
13608 * *ia64*: Ongoing IA64 work.
13610 2005-05-20 Zoltan Varga <vargaz@freemail.hu>
13612 * basic.cs: Add tests for add.ovf. Fix warnings.
13614 2005-05-18 Miguel de Icaza <miguel@novell.com>
13616 * driver.c (mono_main): Avoid crash if no argument is passed to
13617 --break; Do not use g_error, but f_printf. And fix all other
13618 ocurrences of the same crash.
13620 2005-05-17 Zoltan Varga <vargaz@freemail.hu>
13622 * mini.h mini.c: Generalize the existing uses of the MONO_DEBUG env variable
13623 and add a new one: aborting when a SIGSEGV is raised while in unmanaged code.
13626 2005-05-14 Zoltan Varga <vargaz@freemail.hu>
13628 * *-ia64.*: Add beginnings of IA64 backend.
13630 * Makefile.am mini-arch.h mini-codegen.c: Add IA64 support.
13632 2005-05-13 Zoltan Varga <vargaz@freemail.hu>
13634 * inssel-long.brg: Add missing ulong->{i1, i2} checked conversions.
13637 * basic-long.cs exceptions.cs: Add new tests. Fix some warnings.
13639 * mini-amd64.c: Fix a warning.
13641 2005-05-10 Zoltan Varga <vargaz@freemail.hu>
13643 * mini-amd64.c (mono_arch_output_basic_block): Fix stack space leakage
13644 in float_neg. Fixes #74897.
13646 * mini-amd64.c (emit_call): Fix another near call bug.
13648 2005-05-06 Sebastien Pouliot <sebastien@ximian.com>
13650 * declsec.c: Keep the appdomain information in the structure. Added a
13651 missing "return FALSE" for Unmanaged if FullTrust is set (or else the
13652 value gets overwritten).
13653 * declsec.h: Set the default MonoArray for the the stack to 6. Added
13654 an MonoAppDomain member to MonoSecurityFrame.
13655 * mini-exceptions.c: Do not use a glist to keep GC allocated objects
13656 used in the stack walk. Now use a MonoArray which grow (double) when
13659 2005-05-05 Lluis Sanchez Gual <lluis@novell.com>
13661 * mini.c: Re-enabled runtime cleanup, since running threads should
13662 now properly stop when exiting.
13664 2005-05-05 Zoltan Varga <vargaz@freemail.hu>
13666 * mini-codegen.c: New file contaning the arch-independent local
13667 register allocator. Not used by any architectures yet.
13669 * mini.h linear-scan.c: Merge some changes from the
13670 mini-xp-local-regalloc branch.
13672 2005-04-28 Zoltan Varga <vargaz@freemail.hu>
13674 * mini-amd64.c (emit_call): Fix calls to native functions when the
13675 runtime is compiled as a shared library. Fixes #74756.
13677 * mini.c (mono_method_to_ir): Assert if ldsfld and friends are used
13678 on a literal field. Fixes #74751.
13680 2005-04-25 Raja R Harinath <rharinath@novell.com>
13682 * Makefile.am (RUNTIME): Add MONO_CFG_DIR.
13684 2005-04-23 Zoltan Varga <vargaz@freemail.hu>
13686 * objects.cs: Add missing null casting test.
13688 2005-04-22 Zoltan Varga <vargaz@freemail.hu>
13690 * mini-exceptions.c (mono_find_jit_info): Fix native offset calculation
13691 in wrapper methods. Also rename 'address' variable to 'offset'.
13693 2005-04-20 Zoltan Varga <vargaz@freemail.hu>
13695 * mini.c debug-mini.c aot.c tramp-x86.c driver.c: Fix some gcc 4.0
13698 * Makefile.am (MCS): Use -unsafe instead of --unsafe.
13700 * aot.c: Applied patch from "The Software Team" <software@solmersa.com>. Make AOT compilation
13703 Mon Apr 18 16:20:32 CEST 2005 Paolo Molaro <lupus@ximian.com>
13705 * exceptions-ppc.c: update code to handle stack traces (fixes bug #74452).
13707 2005-04-17 Zoltan Varga <vargaz@freemail.hu>
13709 * mini-x86.c (mono_emit_stack_alloc): Initialize the whole allocated area not
13710 just the last bytes.
13712 2005-04-17 Zoltan Varga <vargaz@freemail.hu>
13714 * aot.c (mono_compile_assembly): Fix warning.
13716 * mini-exceptions.c (ves_icall_get_frame_info): Fix bug introduced
13717 by the _MSC_VER stuff.
13719 2005-04-16 Zoltan Varga <vargaz@freemail.hu>
13721 * inssel-long.brg: Fix #74588.
13723 * cpu-amd64.md: Fix #74591.
13725 * iltests.il: Add new regression tests.
13727 2005-04-13 Zoltan Varga <vargaz@freemail.hu>
13729 * trace.c (mono_trace_enter_method): Print enums as an int, not as a
13732 2005-04-11 Zoltan Varga <vargaz@freemail.hu>
13734 * mini-x86.c (setup_stack): Unconditionally call pthread_attr_init ().
13736 * exceptions-x86.c mini-x86.h mini-x86.c: Applied some freebsd patches
13737 from Bill Middleton <flashdict@gmail.com>.
13739 2005-04-10 Zoltan Varga <vargaz@freemail.hu>
13741 * arrays.cs: Add new regression test. Fix warnings.
13743 2005-04-09 Zoltan Varga <vargaz@freemail.hu>
13745 * mini-amd64.c (mono_arch_output_basic_block): Fix stack alignment
13746 and leakage in CKFINITE.
13748 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Change
13749 this to a null op since it is called on amd64 too.
13751 * exceptions-amd64.c (get_throw_trampoline): Align stack.
13753 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Remove
13754 body since this is not used on amd64.
13756 * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Remove duplicate define.
13758 * mini-amd64.c: Remove obsolete fixmes.
13760 * mini.c (print_method_from_ip): Fix debugging support.
13762 2005-2-1 Massimiliano Mantione <massi@ximian.com>
13764 * ssapre.c: Fix a subtle bug about availability, and limit SSAPRE
13765 so that expressions that don't give much gain are not reduced.
13766 * ssapre.h: Likewise.
13768 2005-04-04 Zoltan Varga <vargaz@freemail.hu>
13770 * exceptions-x86.c (mono_arch_find_jit_info): Remove last SC_EBP reference.
13772 * mini-x86.c (mono_emit_stack_alloc): Fix localloc under windows.
13774 * mini-x86.h exceptions-x86.c: Hopefully fix compilation on *BSD.
13776 2005-04-01 Zoltan Varga <vargaz@freemail.hu>
13778 * mini-sparc.c mini-sparc.h: Add asserts when running with sigaltstack.
13780 * exceptions-x86.c (mono_arch_monoctx_to_sigctx): Fix cygwin build.
13782 2005-03-31 Zoltan Varga <vargaz@freemail.hu>
13784 * mini-x86.c: If sigaltstack support is enabled, perform win32 style
13787 * mini.h (mono_arch_sigctx_to_monoctx): New arch-specific function.
13789 * mini.h (mono_arch_monoctx_to_sigctx): New arch-specific function.
13791 * mini.c: sigaltstack support requires MONO_ARCH_USE_SIGACTION.
13793 * mini-x86.h mini-x86.c exceptions-x86.c: Add support for
13794 MONO_ARCH_USE_SIGACTION. Fixes #74252.
13796 * mini-x86.h: Enable MONO_ARCH_USE_SIGACTION on linux.
13798 * mini-x86.c: Fix up stack overflow handling.
13800 * exceptions.cs: Add new regression test.
13802 2005-03-30 Zoltan Varga <vargaz@freemail.hu>
13804 * mini-x86.c (mono_arch_emit_prolog): Adjust stack after calls to
13805 mono_jit_thread_attach.
13807 * mini.c (mono_method_to_ir): Verify called method is not abstract.
13809 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
13811 * mini.c (mono_method_to_ir): Applied Ben's patch from bug #61441 to
13812 avoid calling constructors using callvirt.
13814 * inssel.brg: Fix #74073.
13816 2005-03-29 Sebastien Pouliot <sebastien@ximian.com>
13818 * aot.c, mini.h: Added mono-compiler.h header to allow/ease
13819 compilation with non-GCC compilers.
13820 * mini-exceptions.c, mini-x86.c|h: Patches to make compilation of mono
13821 possible using VS.NET. Adapted from the work of J Lothian (for VC6).
13823 Tue Mar 29 11:43:01 CEST 2005 Paolo Molaro <lupus@ximian.com>
13825 * inssel.brg, arrays.cs: fix long standing 64 bit issue in access to
13826 klass->interface_offsets (will likely fix bug#74073).
13828 2005-03-29 Zoltan Varga <vargaz@freemail.hu>
13830 * mini-amd64.c (mono_arch_is_int_overflow): Fix rex handling.
13832 2005-03-28 Zoltan Varga <vargaz@freemail.hu>
13834 * mini-amd64.c (mono_arch_output_basic_block): Fix order of parameters
13835 to amd64_div_reg_size ().
13837 * mini-amd64.c (mono_arch_emit_exceptions): Emit a near call here too.
13839 2005-03-27 Zoltan Varga <vargaz@freemail.hu>
13841 * cpu-amd64.md (store_membase_reg): Fix length of storer8 opcodes.
13843 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
13845 * driver.c: Turn off automatic command line globbing under windows. Fixes #73763.
13847 2005-03-24 Zoltan Varga <vargaz@freemail.hu>
13849 * mini.c (mono_method_to_ir): Remove debugging stuff left in by mistake.
13851 * mini.c (mono_precompile_assembly): Load and precompile referenced
13852 assemblies as well. Fixes #74015.
13854 2005-03-23 Zoltan Varga <vargaz@freemail.hu>
13856 * cpu-amd64.md (sin): Fix up maximum lengths of some opcodes.
13858 2005-03-23 Sebastien Pouliot <sebastien@ximian.com>
13860 * declsec.c: Skip linkdemand checks for intra-corlib calls. This skips
13861 a lot of checks and (anyway) permissions cannot work until corlib is
13864 Wed Mar 23 14:29:49 CET 2005 Paolo Molaro <lupus@ximian.com>
13866 * mini-ppc.c: fixed ABI issue on sysv/ppc.
13868 Tue Mar 22 19:03:17 CET 2005 Paolo Molaro <lupus@ximian.com>
13870 * tramp-ppc.c, exceptions-ppc.c: added missing icache flush
13871 calls (fixes bug#72824).
13873 Tue Mar 22 16:28:48 CET 2005 Paolo Molaro <lupus@ximian.com>
13875 * mini.c: fix tail recursion elimination (see test in bug#73936).
13877 2005-03-21 Zoltan Varga <vargaz@freemail.hu>
13879 * mini-amd64.c (mono_arch_output_basic_block): Add inline versions of
13880 some fp functions in sse2 mode.
13882 2005-03-20 Zoltan Varga <vargaz@freemail.hu>
13884 * mini-x86.c (emit_tls_get): Move tls handling into a separate helper function.
13886 2005-03-19 Zoltan Varga <vargaz@freemail.hu>
13888 * mini.h mini.c: Add mono_get_jit_tls_key ().
13890 * mini-x86.c: Enable fast TLS support on windows.
13892 2005-03-17 Sebastien Pouliot <sebastien@ximian.com>
13894 * declsec.c: Renamed aptc to allowpartiallytrustedcallers.
13895 * mini.c: Check for p/invoke method when generating code. If a
13896 p/invoke method, or it's class, isn't decorated with [Suppress
13897 UnmanagedCodeSecurity] then generate code to call System.Security.
13898 UnmanagedDemand (only if the security manager is active).
13900 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
13902 * tramp-amd64.c (create_specific_trampoline): Revert parts of the
13903 last change as it seems to cause strange crashes.
13905 Wed Mar 16 16:24:11 CET 2005 Paolo Molaro <lupus@ximian.com>
13907 * *.c: handle unsafe function pointers where needed.
13909 2005-03-16 Zoltan Varga <vargaz@freemail.hu>
13911 * mini.c (mono_jit_free_method): Remove the fixme too.
13913 2005-03-15 Miguel de Icaza <miguel@novell.com>
13915 * mini.c: As discussed, make the code actually free the delegate
13916 thunk now, to enable the debugging of delegate problems, use
13917 MONO_DEBUG=1 when running Mono.
13919 This takes also care of parts of the leaks as seen by Joe.
13921 2005-03-15 Zoltan Varga <vargaz@freemail.hu>
13923 * mini-amd64.c (mono_arch_setup_jit_tls_data): Enable
13924 thread_tls_offset calculation.
13926 2005-03-14 Sebastien Pouliot <sebastien@ximian.com>
13928 * declsec.c: Reworked linkdemand checks for icall. The previous code
13929 was using the declaration code (untrusted) and didn't work as expected
13930 with the CLR 2.0. We're now more compatible with 2.0 than 1.x for this
13933 2005-03-13 Zoltan Varga <vargaz@freemail.hu>
13935 * iltests.il: Add new localloc test.
13937 * mini-amd64.c: Handle large stack allocations the same way as on
13938 windows if stack overflow handling is working.
13940 * mini-amd64.c: Allocate the signal stack using mmap.
13942 * mini.c (sigsegv_signal_handler): Fix reading of context.
13944 * mini-exceptions.c: Fix up stack overflow handling.
13946 * mini-amd64.h mini-amd64.c: Fix up stack overflow handling.
13948 * tramp-amd64.c (create_specific_trampoline): Optimize trampoline size.
13950 * exceptions-amd64.c (mono_amd64_exceptions_init): Remove this.
13952 * mini.h mini.c tramp-*.c: Move common trampoline code to mini.c.
13954 * mini-x86.h mini-x86.c mini-amd64.h mini-amd64.c: Get rid of the
13955 tramp_init functions as they are no longer needed.
13957 2005-03-12 Zoltan Varga <vargaz@freemail.hu>
13959 * tramp-amd64.c (mono_amd64_tramp_init): Fix typo.
13961 * tramp-amd64.c (mono_amd64_tramp_init): Init AOT trampoline as well.
13963 * mini-amd64.h mini-amd64.c (mono_amd64_exceptions_init): Remove this.
13965 * mini.c mini-*.h: Remove OUT_OF_LINE_BBLOCK defines since all arches
13968 * mini-ops.h: Add OP_LMUL_IMM.
13970 * mini.c jit-icalls.cmini-amd64.h mini-amd64.c cpu-amd64.md: Implement
13971 long mul/div opcodes as intrinsic.
13973 * mini-amd64.c (emit_call): Handle the case when the callee might be
13976 2005-03-11 Zoltan Varga <vargaz@freemail.hu>
13978 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Reorder cases to be
13981 * mini-amd64.c (mono_arch_get_vcall_slot_addr): Fix ordering of cases.
13983 * aot.c (mono_aot_load_method): Get rid of bogus make_writable call.
13985 2005-03-09 Ben Maurer <bmaurer@ximian.com>
13987 * mini.c (mono_codegen): Don't leak here, to help people running
13990 2005-03-08 Zoltan Varga <vargaz@freemail.hu>
13992 * mini-amd64.c (mono_arch_output_basic_block): Fix int->float
13993 conversions in sse2 mode.
13995 * basic-float.cs: Add regression test.
13997 * mini-amd64.c: Reenable sse2.
13999 2005-03-07 Zoltan Varga <vargaz@freemail.hu>
14001 * mini-amd64.c: Disable sse2 until some regressions are fixed.
14003 2005-03-07 Joerg Rosenkranz <joergr@voelcker.com>
14005 * driver.c: Copyright text should include 2005.
14007 2005-03-07 Zoltan Varga <vargaz@freemail.hu>
14009 * cpu-amd64.md (load_membase): Fix more max lengths.
14011 2005-03-06 Zoltan Varga <vargaz@freemail.hu>
14013 * cpu-amd64.md (load_membase): Fix max length.
14015 * mini-ops.h: Add OP_F<xx>_MEMBASE opcodes.
14017 * inssel.brg: Add MONO_EMIT_BIALU_MEMBASE macro.
14019 * cpu-amd64.md inssel-amd64.brg mini-amd64.h mini-amd64.brg: Finish SSE2
14020 support and enable it by default. Also add OP_F<xxx>_MEMBASE opcodes.
14022 * basic-float.cs: Add rounding regression test.
14024 * mini-amd64.c (INST_IGNORES_CFLAGS): Add more instructions.
14026 2005-03-04 Neale Ferguson <NealeFerguson@earthlink.net>
14028 * inssel-s390.brg, mini-s390.c: Add support for passing/returning small
14029 structures in registers for pinvoke wrappers.
14031 2005-03-04 Zoltan Varga <vargaz@freemail.hu>
14033 * mini-exceptions.c (ves_icall_get_trace): Return wrapper info as well.
14035 2005-03-03 Zoltan Varga <vargaz@freemail.hu>
14037 * mini.h mini.c mini-x86.c: Pass the domain of the native->managed
14038 wrapper to mono_jit_thread_attach.
14040 * mini.c (mini_jit_thread_attach): New jit icall.
14042 * mini-x86.c (mono_arch_emit_prolog): Attach to the VM in
14043 native->managed wrappers.
14045 * exceptions.cs: Add new regression test.
14047 * mini.c (optimize_branches): Check regions in the cbranch to throw
14048 block case as well. Fixes #73242.
14050 Tue Mar 1 18:35:27 CET 2005 Paolo Molaro <lupus@ximian.com>
14052 * mini.c: thread safety fixes.
14054 2005-02-27 Zoltan Varga <vargaz@freemail.hu>
14056 * tramp-amd64.c (amd64_magic_trampoline): Disable the method_ptr
14057 patching stuff, since delegates use jump trampolines so there is
14060 * tramp-amd64.c (create_trampoline_code): Pass NULL as 'code' in
14063 * tramp-amd64.c: Fix build.
14065 * mini-x86.c tramp-x86.c: Moved get_vtable_slot_addr into mini-x86.c and rename
14066 it to mono_arch_.... Add get_delegate_method_ptr implementation for x86.
14068 * mini-amd64.h mini.h mini-amd64.c tramp-amd64.c (mono_amd64_get_vcall_slot_addr):
14069 Rename this to mono_arch....
14070 (mono_amd64_get_delegate_method_ptr_addr): Ditto.
14072 * mini-amd64.c (mono_amd64_get_delegate_method_ptr_addr): New helper function.
14074 * mini-amd64.c (emit_call): If both the caller and the callee is
14075 guaranteed to have 32 bit addresses, emit a normal call.
14077 * tramp-amd64.c: Adapt to changes in mini-amd64.c.
14079 * tramp-amd64.c (amd64_magic_trampoline): Remove patching of trampolines.
14080 * tramp-amd64.c (amd64_magic_trampoline): Add support for patching the
14081 method_ptr inside delegates.
14083 2005-02-26 Zoltan Varga <vargaz@freemail.hu>
14085 * mini.c (mono_jit_free_method): Free the method info even if the native code is
14086 invalidated. Fixes #73001.
14088 * mini.c: Add a proper icall wrapper for mono_delegate_ctor.
14090 * mini-x86.c: Only use stdcall for pinvokes on windows.
14092 Thu Feb 24 15:22:30 CET 2005 Paolo Molaro <lupus@ximian.com>
14094 * mini.c, mini.h: make mono_lmf_addr a fast-access thread var.
14095 * mini-x86.c: remove unreliable __thread var offset detection,
14096 use the correct accessors and enable by default.
14098 2005-02-23 Zoltan Varga <vargaz@freemail.hu>
14100 * mini.c (mono_jit_free_method): Fix memory leak.
14102 2005-02-22 Zoltan Varga <vargaz@freemail.hu>
14104 * mini.c (mono_method_to_ir): Allocate a GOT var for THROW and RETHROW.
14106 2005-02-21 Zoltan Varga <vargaz@freemail.hu>
14108 * cpu-amd64.md: Fix lengths of atomic opcodes.
14110 Mon Feb 21 16:52:20 CET 2005 Paolo Molaro <lupus@ximian.com>
14112 * driver.c: try to not imply using ICU is any good.
14114 2005-02-20 Zoltan Varga <vargaz@freemail.hu>
14116 * mini-amd64.c (mono_arch_get_inst_for_method): Implement more
14117 functions as inline ops.
14119 * mini-ops.h inssel-amd64.brg cpu-amd64.md mini-amd64.c: Implement
14120 some Interlocked functions as inline ops.
14122 * mini.c (move_basic_block_to_end): Fix bug in last patch.
14124 * mini.h (MonoBasicBlock): Reorganize fields a bit.
14126 * mini-ops.h inssel.brg: Add OP_NOT_REACHED.
14128 * mini.c: Add support for OP_NOT_TAKEN.
14130 * mini-amd64.h mini-amd64.c: Add support for passing/returning small
14131 structures in registers for pinvoke wrappers.
14133 * mini-amd64.c: Fix warnings.
14135 2005-02-19 Zoltan Varga <vargaz@freemail.hu>
14137 * mini.h (MonoCompile): Add 'ret_var_is_local' field.
14139 * mini.h mini.c (mono_arch_create_vars): Add new arch specific hook.
14141 * mini.c (NEW_RETLOADA): If the ret variable is a local, use its
14142 address instead of loading the address from it.
14144 * mini-x86.c: Add support for returning small structs in registers
14145 on Win32. Fixes part of #70864.
14147 2005-02-18 Zoltan Varga <vargaz@freemail.hu>
14149 * trace.c (get_token): Improve error checking.
14151 2005-02-17 Zoltan Varga <vargaz@freemail.hu>
14153 * jit-icalls.c (mono_ldvirtfn): Explicitly check for a NULL obj here.
14155 2005-02-17 Sebastien Pouliot <sebastien@ximian.com>
14157 * mini.h: Moved MONO_EXCEPTION_* enum to metadata/class-internals.h so
14158 it can be reused for MonoClass.
14159 * mini.c: Renamed MONO_EXCEPTION_SECURITY to MONO_EXCEPTION_SECURITY
14162 2005-02-15 Sebastien Pouliot <sebastien@ximian.com>
14164 * mini.c: Fixed 2 cases where I sent a MonoMethod to managed code
14165 instead of a MonoReflectionMethod. The method information wasn't used
14166 when displaying SecurityException details (but will be now).
14168 2005-02-15 Atsushi Enomoto <atsushi@ximian.com>
14170 * Makefile.am : windows build fix.
14172 2005-02-14 Zoltan Varga <vargaz@freemail.hu>
14174 * iltests.il: Add new regression test.
14176 * mini.c (mono_method_to_ir): Allocate a GOT var in CEE_NEWOBJ. Fixes
14179 2004-02-13 Sebastien Pouliot <sebastien@ximian.com>
14181 * mini.c: Moved linkdemand check into helper function check_linkdemand
14182 to allow reuse for all intructions (CALL, CALLVIRT, NEWOBJ, JMP,
14185 2004-02-13 Sebastien Pouliot <sebastien@ximian.com>
14187 * declsec.c: Added statistics counter for different kinds of
14189 * mini.h: Added CAS statistic counters to MonoJitStats. Removed unused
14190 (and commented) declaration.
14191 * mini.c: Added statistics counter for security Demand code
14192 generation. Added display of security statistics.
14194 2005-02-13 Zoltan Varga <vargaz@freemail.hu>
14196 * declsec.c (mono_declsec_linkdemand_aptc): Applied patch from Robert Jordan (robertj@gmx.net).
14197 Fix compilation errors under gcc-2.95.
14199 2005-02-12 Ben Maurer <bmaurer@ximian.com>
14201 * mini.c, driver.c: Use the new jit trampoline hashtable
14203 Fri Feb 11 18:47:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14205 * mini.c, jit-icalls.c: use the managed implementation of memcpy, too.
14207 2005-02-11 Martin Baulig <martin@ximian.com>
14209 * debug-mini.c (mono_debug_close_method): Free the line number array.
14211 2005-02-10 Zoltan Varga <vargaz@freemail.hu>
14213 * aot.c: Break up large methods into smaller ones. Share GOT slots for
14216 * mini.h: Bump AOT file format version.
14218 2005-02-10 Sebastien Pouliot <sebastien@ximian.com>
14220 * declsec.c: Added LinkDemand support and it's special cases for ECMA,
14222 * declsec.h: Added macros to get/set lazyly initialized security
14223 informations about assemblies. Added new enum for different type of
14224 possible LinkDemand violation. Added function to check LinkDemands.
14225 * mini.h: Added a field to MonoCompile to hold any security violation
14226 detected when JITting a method (so it can be thrown later).
14227 * mini.c: Added LinkDemand checks in mono_method_to_ir for CEE_CALL
14228 and CEE_CALLVIRT. Added code to throw exception at the end of
14229 mini_method_compile (note: the exception is unhandled right now).
14231 Thu Feb 10 15:49:44 CET 2005 Paolo Molaro <lupus@ximian.com>
14233 * mini.c, jit-icalls.c: use the managed implementation of
14234 memset for initobj and memset, to avoid managed <-> unmanaged
14237 2005-02-10 Zoltan Varga <vargaz@freemail.hu>
14239 * inssel.brg (mini_emit_virtual_call): Disable the virtual->nonvirtual
14240 optimization if it would need a GOT var.
14242 * basic.cs: Add tests for constant propagation and switch statements.
14244 * ssa.c: Fix out-of-range constant propagation and switch statements.
14246 2005-02-09 <vargaz@freemail.hu>
14248 * inssel-x86.brg (reg): Align the allocation size in the localloc(imm) case too.
14250 2005-02-08 Zoltan Varga <vargaz@freemail.hu>
14252 * cpu-amd64.md (load_membase): Fix max length of load_membase.
14254 Tue Feb 8 18:21:11 CET 2005 Paolo Molaro <lupus@ximian.com>
14256 * mini.c: update to new signature of mono_class_get_allocation_ftn().
14258 2005-02-06 Neale Ferguson <NealeFerguson@earthlink.net>
14260 * cpu-s390.md, mini-s390.c: Correct bug with register usage on certain
14261 arithmetic operations.
14263 Sun Feb 6 07:10:12 EST 2005 Paolo Molaro <lupus@ximian.com>
14265 * mini-ppc.c: add a workaround for broken user code that
14266 DllImports vararg functions with non-vararg signatures.
14268 2005-02-05 Zoltan Varga <vargaz@freemail.hu>
14270 * mini.c (mono_jit_compile_method_inner): Add detection and a
14271 meaningfull error message for assemblies written in Managed C++.
14273 * tramp-amd64.c mini-amd64.h: Add support for
14274 create_trampoline_from_token ().
14276 * aot.c mini-x86.c abcremoval.c: Applied patch from
14277 Robert Jordan (robertj@gmx.net). Fix compilation errors under gcc-2.95.
14279 2005-02-04 Zoltan Varga <vargaz@freemail.hu>
14281 * mini.h mini.c mini-x86.h tramp-x86.c: Add a new kind of trampoline
14282 which takes a MonoImage/token as parameter instead of a MonoMethod.
14284 * aot.c: Use the new trampoline for initializing vtables.
14286 * aot.c: Add support for ldfld/stfld_remote wrappers.
14288 * mini-ops.h cpu-pentium.md inssel-x86.brg mini-x86.c: Add optimized
14289 rules for compare <MEM>, IMM.
14291 * mini.h (MONO_AOT_FILE_VERSION): Bump it.
14293 * aot.c: Handle inherited finalizers correctly.
14295 2005-02-03 Zoltan Varga <vargaz@freemail.hu>
14297 * inssel.brg (stmt): Add a missing _setup_... ().
14299 * aot.c: Save some parts of the class state to the AOT file and use it
14300 to recompute that state when a class is initialized.
14302 * mini.c: Install AOT hooks into the runtime.
14304 * mini.h: Bump AOT file format version.
14306 * mini.c (mono_method_to_ir): Initialize pointer type locals correctly.
14309 * iltests.il: Add new test.
14311 Wed Feb 2 16:53:59 CET 2005 Paolo Molaro <lupus@ximian.com>
14313 * mini.c: fix typo.
14315 Wed Feb 2 16:37:13 CET 2005 Paolo Molaro <lupus@ximian.com>
14317 * mini.c: setup the statistical profiler in the thread attach
14318 callback to cope with the new single thread code.
14320 Wed Feb 2 15:43:58 CET 2005 Paolo Molaro <lupus@ximian.com>
14322 * mini-ppc.c: ensure we have enough room for the profiler
14323 calls (fixed bug#72084).
14325 2005-02-02 Zoltan Varga <vargaz@freemail.hu>
14327 * aot.c: Get rid of the MonoAotMethod structure and the hashtable holding
14330 2005-2-1 Massimiliano Mantione <massi@ximian.com>
14332 * driver.c: Re-enabled SSAPRE (two commits, I was just dumb).
14334 2005-2-1 Massimiliano Mantione <massi@ximian.com>
14336 * ssapre.c: Fixed an issue with down safety (this allows IronPython
14337 to succesfully execute parrotbench).
14338 * ssapre.h: Likewise.
14340 2005-2-1 Massimiliano Mantione <massi@ximian.com>
14342 * ssa.c: In mono_ssa_rename_vars, forced the creation of a new SSA
14343 variable for stores to method arguments (fixes a SSAPRE issue).
14345 Tue Feb 1 15:52:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14347 * mini.c: handle value types in dup, fixes gen-112.cs.
14349 Tue Feb 1 11:45:19 CET 2005 Paolo Molaro <lupus@ximian.com>
14351 * mini-ppc.c, cpu-g4.md, tramp-ppc.c: use a slower code
14352 sequence for calls in dynamic methods to avoid thunks.
14354 Tue Feb 1 11:44:01 CET 2005 Paolo Molaro <lupus@ximian.com>
14356 * mini.c: correctly remove dynamic methods from the hashtable.
14358 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14360 * driver.c: Disabled SSAPRE until fix the bug that appears
14361 in IronPython's parrotbench.
14363 2005-01-31 Zoltan Varga <vargaz@freemail.hu>
14365 * aot.c (mono_compile_assembly): Get rid of Skip (other) messages.
14367 * mini.c (mono_method_to_ir): Revert the previous change.
14369 * mini.c (mono_method_to_ir): Do not inline ldfld and stfld wrappers
14370 when AOT compiling.
14372 * tramp-x86.c (x86_magic_trampoline): Avoid calls to
14373 mono_jit_info_table_find () etc. when running under valgrind.
14375 * inssel.brg: Fix warnings.
14377 * mini-exceptions.c: Fix warnings.
14379 2005-01-31 Martin Baulig <martin@ximian.com>
14381 * driver.c (compile_all_methods_thread_main): Don't try to compile
14382 generic methods or anything which has type parameters.
14384 2005-01-30 Zoltan Varga <vargaz@freemail.hu>
14386 * aot.c: Avoid costly calls to mono_method_full_name in tracing code and fix memory leaks.
14388 * TestDriver.cs: Add --verbose flags.
14390 * graph.c ssa.c: Fix 64 bit warnings.
14392 * abcremoval.h ssapre.h abcremoval.c ssapre.c mini.c tramp-amd64.c
14393 trace.c mini-exceptions.c linear-scan.c inssel-amd64.brg inssel.brg:
14394 Fix 64 bit warnings.
14396 * mini-amd64.c (mono_arch_output_basic_block): Fix uninitialized
14397 variable not spotted by gcc.
14399 * mini-amd64.c inssel-amd64.brg: Applied patch from
14400 Willibald Krenn <Willibald.Krenn@gmx.at>. Clean up usage of
14401 X86_COMPARE_MEMBASE opcodes.
14403 * exceptions-amd64.c (mono_arch_find_jit_info): Fix AMD64 build.
14405 2005-01-29 Ben Maurer <bmaurer@ximian.com>
14407 * *: MonoMethod->signature might be NULL now. You *MUST* use
14408 mono_method_signature.
14410 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
14412 * driver.c (compile_all_methods_thread_main): Compile the methods
14413 without invoking cctors.
14415 Fri Jan 28 18:28:26 CET 2005 Paolo Molaro <lupus@ximian.com>
14417 * mini.c: remove ben's "optimizations" to dup+stloc (bug #71905).
14418 * basic-calls.cs: test for the above.
14420 2005-01-28 Zoltan Varga <vargaz@freemail.hu>
14422 * mini.c mini-exceptions.c aot.c exceptions-*.c: Update after
14423 MonoJitInfo changes.
14425 2005-01-27 Zoltan Varga <vargaz@freemail.hu>
14427 * mini-exceptions.c (mono_handle_exception): Compute the stack trace
14428 eagerly if it contains dynamic methods.
14430 * mini-exceptions.c (ves_icall_System_Exception_get_trace): New icall.
14432 * mini-exceptions.c (mono_handle_exception): Avoid computing the stack
14433 trace, it is now computed by an icall from trace_ips.
14435 * mini-exceptions.c: Fix a warning.
14437 Thu Jan 27 13:38:34 CET 2005 Paolo Molaro <lupus@ximian.com>
14439 * mini-exceptions.c: don't bother getting stack trace info if
14440 it's not going to be used.
14442 2005-01-27 Raja R Harinath <rharinath@novell.com>
14444 * Makefile.am (common_sources): Add ssapre-cee-ops.h and
14447 2005-01-26 Zoltan Varga <vargaz@freemail.hu>
14449 * mini.c (remove_block_if_useless): Only print debug stuff with -v -v.
14451 * aot.c: Avoid calling mono_method_get_header () if not needed.
14453 * mini.h: Bump AOT file format version.
14455 * mini.c (mono_emit_native_call): Allocate a GOT var here.
14457 * mini.c (mono_print_tree): Print more info for calls.
14459 2005-01-26 Sebastien Pouliot <sebastien@ximian.com>
14461 * declsec.h: Remove warning by adding missing include for marshal.h
14463 2005-01-26 Martin Baulig <martin@ximian.com>
14465 * mini.c (mono_method_to_ir): In CEE_UNBOX_ANY, don't increase
14468 2005-01-25 Zoltan Varga <vargaz@freemail.hu>
14470 * mini-amd64.c (mono_arch_call_opcode): Add missing MONO_SSA_LOAD/STORE
14473 * ssa.c (mono_ssa_compute): Fix crashes when using AOT.
14475 * aot.c (mono_compile_assembly): Fix a warning.
14477 2005-01-25 Sebastien Pouliot <sebastien@ximian.com>
14479 * declsec.c: Look for security attributes on the original MonoMethod
14480 (and not the wrapped one). This fix permissions on icalls.
14482 2005-01-23 Zoltan Varga <vargaz@freemail.hu>
14484 * mini-amd64.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14486 * mini.c (mono_allocate_stack_slots): Add a fixme.
14488 * mini-x86.c (mono_arch_allocate_vars): Use mono_allocate_stack_slots ().
14490 Sun Jan 23 16:16:48 CET 2005 Paolo Molaro <lupus@ximian.com>
14492 * inssel.brg: optimize casts of sealed types (more
14493 optimizations waiting for fixes in remoting).
14495 2005-01-23 Zoltan Varga <vargaz@freemail.hu>
14497 * inssel.brg (stmt): Add another dummy rule.
14499 * driver.c: Fix warnings.
14501 * driver.c (mono_main): If running under valgrind, instruct glib to use
14502 the system allocation functions so valgrind can track the memory
14503 allocated by the g_... functions.
14505 * inssel.brg (stmt): Add DUMMY rule for OP_DUMMY_STORE.
14507 * mini-ops.h: Add OP_DUMMY_STORE opcode.
14509 * mini.h (MONO_BBLOCK_IS_IN_REGION): New helper macro.
14511 * liveness.c: Handle OP_DUMMY_STORE. Enable register allocation for
14512 variables in try regions.
14514 * mini.c (mini_method_compile): Don't disable optimizations on large
14515 methods when AOT compiling.
14517 * mini.c (mono_allocate_stack_slots): New arch independent method to
14518 allocate stack slots. Not yet used.
14520 2005-01-22 Ben Maurer <bmaurer@ximian.com>
14522 * debug-mini.c (mono_debug_close_method): Plug some leaks.
14524 Sat Jan 22 13:41:51 EST 2005 Paolo Molaro <lupus@ximian.com>
14526 * mini-ppc.c: make the branch info relative as the code
14527 buffer can be reallocated.
14529 2005-01-22 Sebastien Pouliot <sebastien@ximian.com>
14531 * aot.c: Allow decoding of the new MONO_PATCH_INFO_DECLSEC.
14532 * driver.c: Removed the AOT/security restriction. Now initialize the
14533 security manager (in metadata) if --security is used.
14534 * mini.c|h: Add the MONO_PATCH_INFO_DECLSEC code to use the index,
14535 rather than the pointer to declarative security, when AOT is used.
14537 Sat Jan 22 09:35:19 EST 2005 Paolo Molaro <lupus@ximian.com>
14539 * mini.h, mini-ppc.h, mini-ppc.c: updated to use out of line
14540 basic blocks, reduced intrinsic exception throwing code size.
14542 2005-01-22 Miguel de Icaza <miguel@ximian.com>
14544 * driver.c (mini_usage): Reorder the usage screen.
14546 2005-01-21 Zoltan Varga <vargaz@freemail.hu>
14548 * mini.c (mono_resolve_patch_target): Fix warning.
14550 2005-01-20 Zoltan Varga <vargaz@freemail.hu>
14552 * mini-x86.c (mono_arch_local_regalloc): Fix bug introduced by
14555 * mini-amd64.c (mono_arch_local_regalloc): Ditto.
14557 * mini-amd64.c (mono_arch_local_regalloc): Revert last patch as it
14558 breaks the amd64 build.
14560 * mini-x86.c (mono_arch_local_regalloc): Fix bug in div/rem
14561 register allocation. Fixes #71454.
14563 * mini-amd64.c (mono_arch_local_regalloc): Ditto.
14565 * arrays.cs: Add new regression test.
14567 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14569 * ssapre.c: Turned usage of snprintf to GString.
14570 * ssapre.h: disabled MONO_APPLY_SSAPRE_TO_SINGLE_METHOD
14571 (I left it on by mistake in my previous commit).
14573 Thu Jan 20 12:00:45 CET 2005 Paolo Molaro <lupus@ximian.com>
14575 * mini.c, cfold.c, basic-calls.cs: preserve side effects
14576 on cond branch optimization (fixes bug# 71515).
14578 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14580 * abcremoval.c: Fixed bug 71062.
14581 * abcremoval.h: Likewise.
14583 2005-1-20 Massimiliano Mantione <massi@ximian.com>
14585 * mini.c: Added a new functionality to optimize_branches, the removal
14586 of useless basic blocks, and fixed some problem in the removal of
14587 critical edges; some utility functions added for both purposes.
14588 * ssapre.c: Added complex expression support, and fixed bug 70637.
14589 * ssapre.h: Likewise.
14590 * ssapre-cee-ops.h: Added file with list of "CEE_*" opcodes
14592 * ssapre-mini-ops.h: Likewise, but for "OP_*" opcodes.
14593 * driver.c: Re-enabled SSAPRE.
14595 2005-01-19 Martin Baulig <martin@ximian.com>
14597 * mini.c (mono_method_to_ir): Call mono_get_inflated_method() on
14598 the result of mono_get_method_constrained().
14600 2005-01-18 Neale Ferguson <NealeFerguson@earthlink.net>
14602 * exceptions-s390.c tramp-s390.c: Allocate code using the global code
14605 2005-01-18 Geoff Norton <gnorton@customerdna.com>
14607 * jit-icalls.c (mono_llmult_ovf): Fix other overflow conditions to
14608 be detected. Fixes #59296.
14610 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
14612 * mini-amd64.c (mono_arch_output_basic_block): Remove some assertions
14613 which can happen. Fixes #71361.
14615 2005-01-18 Zoltan Varga <vargaz@freemail.hu>
14617 * exceptions-sparc.c tramp-sparc.c: Allocate code using the global code
14620 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
14622 * mini.c (mono_create_jump_trampoline): Revert last change as it causes
14623 appdomain-unload.exe to fail.
14625 * mini.c: Fix some memory leaks.
14627 Mon Jan 17 16:16:23 CET 2005 Paolo Molaro <lupus@ximian.com>
14629 * inssel.brg: handle the new size of rank, idepth, max_interface_id.
14630 Fixed bug and sped up some codepaths.
14632 2005-01-17 Zoltan Varga <vargaz@freemail.hu>
14634 * mini.c: Fix some memory leaks.
14636 * exceptions.cs basic-long.cs: Add test for checked ulong->int
14639 * inssel-long.brg: Implement long_conv_to_ovf_i4_un. Fixes #71319.
14641 * inssel-long.brg: Fix conv.ovf.i8 when run on an int32. Fixes
14644 * iltests.il: Add regression test for #71320.
14646 2005-01-16 Zoltan Varga <vargaz@freemail.hu>
14648 * mini.c (mono_codegen): Fix installation of profiler hooks.
14650 * mini-sparc.c mini-amd64.c: Don't allocate stack space for dead vars.
14652 Sun Jan 16 12:19:35 CET 2005 Paolo Molaro <lupus@ximian.com>
14654 * mini.h, mini.c, cfold.c: optimize access to enum
14655 readonly fields, too. Eval conditional branches if possible
14656 to perform unreachable code removal in more cases.
14658 2005-01-15 Zoltan Varga <vargaz@freemail.hu>
14660 * tramp-amd64.c exceptions-amd64.c: Use the new global code manager.
14662 * mini.c (mono_global_codeman_reserve): New function to allocate code memory from a global
14665 * tramp-x86.c mini-x86.c exceptions-x86.c: Allocate all code memory so mono works with
14666 WinXP DEP. Fixes #71244.
14668 2005-01-14 Zoltan Varga <vargaz@freemail.hu>
14670 * inssel.brg: Allways convert CEE_CONV_OVF_I4 to a move on 64 bit platforms. Fixes #71236.
14672 2005-01-13 Zoltan Varga <vargaz@freemail.hu>
14674 * mini-x86.c (mono_arch_output_basic_block): Fix OP_ATOMIC_ADD_NEW_I4.
14676 2005-01-11 Zoltan Varga <vargaz@freemail.hu>
14678 * mini-exceptions.c exceptions-ppc.c aot.c: Cope with MonoJitInfo
14681 * mini.h: Bump AOT version.
14683 * mini.h (MonoCompile): Change exvar to a hash table.
14685 * mini.c: Allocate a separate exvar for each handler block.
14687 * mini.c: Get rid of the computation of filter_lengths, its not needed.
14689 * mini.c inssel.brg: Change OP_THROW_OR_NULL to compare the current
14690 ex var with the pending exception and only throw if the two are equal.
14693 * exceptions.cs: Add tests for rethrow and nested catch clauses.
14695 * mini-x86.c: Fix warnings.
14697 * Makefile.am (common_sources): Move mini-exceptions.c here as it is
14698 used by all the ports now.
14700 * aot.c: Add write-symbols and save-temps options.
14702 2005-01-10 Zoltan Varga <vargaz@freemail.hu>
14704 * mini-x86.c: Add support for returning structs in registers from pinvoke functions on WIN32.
14706 Mon Jan 10 16:11:16 EST 2005 Neale Ferguson <nealeferguson@earthlink.net>
14708 * mini-ops.h, inssel-s390.brg, cpu-s390.md: Support OP_ATOMIC__xxx
14711 * tramp-s390.c: Check vtable slot belongs to the domain.
14713 * mini-exceptions.c, exceptions-s390.c: Standardize exception handling
14714 as per other platforms.
14716 * mini-s390.c, mini-s390.h: Enable out-of-line bblock support.
14718 Mon Jan 10 18:53:05 CET 2005 Paolo Molaro <lupus@ximian.com>
14720 * driver.c: we don't run the Main() code in a subthread anymore.
14722 Mon Jan 10 17:54:16 CET 2005 Paolo Molaro <lupus@ximian.com>
14724 * mini.c: added experimental rtc support in the statistical
14725 profiler: if the user has the permission, more accurate statistics
14726 are gathered. Run with: MONO_RTC=4096 mono --profiler=default:stat ....
14727 The MONO_RTC value must be restricted to what the linux rtc allows:
14728 power of two from 64 to 8192 Hz.
14730 2005-01-10 Zoltan Varga <vargaz@freemail.hu>
14732 * mini-x86.c (mono_arch_emit_exceptions): Fix #71121.
14734 Mon Jan 10 05:20:49 EST 2005 Paolo Molaro <lupus@ximian.com>
14736 * mini-ppc.c: better icache flush for smp.
14738 2005-01-09 Zoltan Varga <vargaz@freemail.hu>
14740 * mini-amd64.c (emit_move_return_value): Fix memory leak.
14742 * mini-x86.c (get_call_info): Add the get_call_info () code from the
14743 amd64 port, not yet used.
14745 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
14747 * mini.c (mono_method_to_ir): Disable inlining of ldfld wrappers with
14750 2005-01-07 Sebastien Pouliot <sebastien@ximian.com>
14752 * driver.c: Added --security option to activate the security manager.
14753 Right now this will allow code generation for declarative demands and
14754 is disabled when AOT is specified.
14755 * mini.c: Add code generation for declarative security demands.
14756 * mini.h: Add mono_use_security_manager as an extern gboolean.
14758 2005-01-07 Zoltan Varga <vargaz@freemail.hu>
14760 * aot.c (mono_compile_assembly): Speed up compilation a bit by
14761 emitting more dense assembly code.
14763 * mini-sparc.c mini-sparc.h exceptions-sparc.c: Enable optimized corlib
14764 exception throwing stuff.
14766 2005-01-06 Zoltan Varga <vargaz@freemail.hu>
14768 * mini-sparc.c (mono_arch_emit_exceptions): Fix typo in previous patch. Remove
14771 * mini-amd64.c (mono_arch_emit_exceptions): Remove duplicate epilog stuff
14772 left in by mistake.
14774 * driver.c (EXCLUDED_FROM_ALL): Disable SSAPRE until bug #70637 is
14777 * mini-sparc.h mini-sparc.c: Enable out-of-line bblock support.
14779 * tramp-*.c: Only patch vtable slots if the object is in the current
14780 domain. Fixes appdomain-unload.exe.
14782 * mini-amd64.c mini-amd64.h: Enable out-of-line bblock support.
14784 * mini-amd64.c (mono_arch_local_regalloc): Port regalloc fix from
14787 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
14789 * mini.c (reverse_branch_op): New helper function.
14791 * mini.c (optimize_branches): Run the new optimization only on
14792 platforms which support it. Also reverse all kinds of branches.
14794 * mini.h (MonoBasicBlock): Add 'out_of_line' field.
14796 * mini.c (mono_method_to_ir): Set 'out_of_line' for bblocks which have
14799 * mini.c (optimize_branches): Reverse not-equals branches if the false
14800 bblock is a throw. This happens a lot of time with argument checking in
14803 * mini.c (mono_codegen): Add support for placing basic blocks after
14804 the function epilogue.
14806 * mini-x86.c mini-x86.h: Add support for placing basic blocks after the
14809 2005-01-05 Miguel de Icaza <miguel@ximian.com>
14811 * mini.c (setup_stat_profiler): Only set this up if the platform
14812 supports ITIMER_PROF.
14814 2005-01-05 Zoltan Varga <vargaz@freemail.hu>
14816 * mini-x86.c (mono_arch_local_regalloc): Fix a bug introduced by the
14819 * inssel.brg: Fix a warning.
14821 Wed Jan 5 16:40:18 CET 2005 Paolo Molaro <lupus@ximian.com>
14823 * mini.c: added support for statistical profiler
14824 (run with: --profile=default:stat).
14826 2005-01-04 Zoltan Varga <vargaz@freemail.hu>
14828 * mini-x86.h (MONO_ARCH_ENABLE_EMIT_STATE_OPT): Enable this on x86.
14830 * mini-x86.c cpu-pentium.md: More fixes for usage of global registers.
14832 * mini-amd64.c (mono_arch_local_regalloc): Port some regalloc fixes
14833 related to global registers from the amd64 port.
14835 2005-01-03 Zoltan Varga <vargaz@freemail.hu>
14837 * mini.c (mono_method_to_ir): Handle MONO_CLASSCONST.
14839 * mini-amd64.c (mono_arch_local_regalloc): Fix some regalloc problems
14840 with global registers.
14841 (mono_arch_output_basic_block): Fix SWITCH in the AOT case.
14843 * aot.c (emit_method_code): Fix the 'method emitted as' messages.
14845 2004-12-31 Zoltan Varga <vargaz@freemail.hu>
14847 * debug-mini.c (encode_value): Fix off-by-one.
14849 * aot.c (encode_value): Likewise.
14851 * mini.c (mono_method_to_ir): Disable AOT for methods containing LDPTR.
14853 2004-12-30 Zoltan Varga <vargaz@freemail.hu>
14855 * mini.c linear-scan.c: Add a workaround for the mcs crash when using
14858 * aot.c (mono_aot_load_method): Free up patch info if no longer needed.
14860 * aot.c (emit_method_info): Increase size of temp buffer.
14862 * mini-x86.c cpu-pentium.md mini.c: Load fp constants differently in
14865 2004-12-28 Zoltan Varga <vargaz@freemail.hu>
14867 * aot.c (emit_method_info): Fix build.
14869 * aot.c: Further rework of the AOT file format to reduce the size of
14870 the method info data.
14872 * mini.h: Bump AOT file format version.
14874 2004-12-27 Martin Baulig <martin@ximian.com>
14876 * mini.c (mini_get_method): New static method; call
14877 mono_get_method_full() and mono_get_inflated_method().
14878 (mono_method_to_ir): Use mini_get_method() instead of
14879 mono_get_method_full().
14881 2004-12-26 Patrik Torstensson <patrik.torstensson@gmail.com>
14883 * mini-x86.c (atomic ops): fixed bug interlocked bug #70784.
14885 2004-12-25 Zoltan Varga <vargaz@freemail.hu>
14887 * inssel.brg (ldind_to_load_membase): Handle CEE_LDIND_I8.
14889 * inssel-amd64.brg: Add some optimization rules.
14891 2004-12-24 Ben Maurer <bmaurer@ximian.com>
14893 * aot.c: Remove the use of MonoGHashTable and other GC stuff. The
14894 standard not GC'd stuff is fine.
14896 2004-12-24 Zoltan Varga <vargaz@freemail.hu>
14898 * aot.c: Rework the AOT file format to get rid of most of the global
14899 symbols. This reduces the size of the mscorlib.dll.so by 1MB.
14901 * mini.h: Bump AOT file format version.
14903 2004-12-23 Zoltan Varga <vargaz@freemail.hu>
14905 * mini.h: Bump AOT file format version.
14907 * aot.c (mono_aot_is_got_entry): New function to determine if an
14908 address is inside a GOT.
14910 * aot.c mini-x86.c tramp-x86.c: Make all patches use the GOT.
14912 * cpu-pentium.md: Increase the maximum size of some instructions which
14913 might involve a got access.
14915 * mini.c (get_method_from_ip): Another debug helper function.
14917 * mini.c: Call mono_get_got_var () in a couple places. Handle the case
14918 when got var accesses are created during the decompose phase.
14920 * mini-sparc.c: Change mono_compile_aot to cfg->compile_aot.
14922 * mini.h mini.c mini-x86.c aot.c mini-sparc.c: Add a 'compile_corlib'
14923 argument mini_compile_method and to MonoCompile, and use this to
14924 determine whenever a given method is compiled for AOT. This allows the
14925 other methods compiled during AOT compilation to be free of AOT stuff,
14926 so the backends does not need to add special support for them by
14927 creating a fake GOT etc.
14929 * mini-x86.c (mono_arch_patch_code): Remove fake got stuff as it is no
14932 2004-12-21 Ben Maurer <bmaurer@ximian.com>
14934 * mini.c (mono_method_to_ir): It turns out that some of the
14935 x-appdomain wrappers are lax with types, so just ignore this for
14938 * inssel.brg (OP_CHECK_ARRAY_TYPE): Optimize this by only looking
14939 at the vtable->klass. If it is non-shared code we can just use the
14942 Tue Dec 21 17:43:06 CET 2004 Paolo Molaro <lupus@ximian.com>
14944 * mini-ppc.c: access MonoDomain from tls, too.
14946 2004-12-21 Sebastien Pouliot <sebastien@ximian.com>
14948 * declsec.c: Removed unused variable (and related warning ;-)
14950 2004-12-21 Ben Maurer <bmaurer@ximian.com>
14952 * iltests.il: New test for LDELEMA on an array of ref types.
14954 * mini.c (CEE_LDELEMA): We need to emit OP_CHECK_ARRAY_TYPE for
14955 all ldelema's on reftypes.
14956 (check_call_signature): Remove the OP_CHECK_ARRAY_TYPE from here,
14957 it was the wrong place to put it.
14959 * mini-x86.c (mono_arch_output_basic_block): Just use ecx as the
14960 register to pop to make this cleaner, at the request of Paolo.
14962 2004-12-20 Ben Maurer <bmaurer@ximian.com>
14964 * mini-ops.h (OP_GETHASHCODE): New op.
14966 * inssel.brg (OP_GETHASHCODE): Emit code for the new opcode
14968 * mini.c (mini_get_inst_for_method): Create the intrinsic hash
14971 For a microbenchmark, this reduces the cost of Hashtable.get_Item
14974 * mini-x86.c (mono_arch_output_basic_block): Rather than
14982 The first is 3 bytes while the second is 1. This saves 36 kb on
14983 mscorlib, quite a big saving. When bootstraping mcs, I was able to
14984 see a small boost because of icache locality.
14986 * cfold.c (FOLD_BINOPCOMM): Kill add foo, 0
14988 Mon Dec 20 12:19:40 EST 2004 Paolo Molaro <lupus@ximian.com>
14990 * Makefile.am, mini-ppc.h, mini-exceptions.c, exceptions-ppc.c:
14991 started code sharing with the generic code.
14993 Mon Dec 20 11:08:06 EST 2004 Paolo Molaro <lupus@ximian.com>
14995 * mini-ppc.c, cpu-g4.md: added code for direct access to
14998 Mon Dec 20 10:58:28 EST 2004 Paolo Molaro <lupus@ximian.com>
15000 * mini-ops.h, inssel-x86.brg, cpu-amd64.md, inssel.brg, inssel-amd64.brg,
15001 mini-amd64.c, mini-x86.c, cpu-pentium.md: renamed OP_X86_TLS_GET
15004 2004-12-20 Sebastien Pouliot <sebastien@ximian.com>
15006 * declsec.c|h: Added functions to cache the declarative stack modifiers
15007 in MonoJitInfo and to create a security frame from a MonoJitInfo
15009 * mini.c: Initialize jinfo->cas_inited to FALSE when MonoJitInfo is
15010 created. Register internal calls for System.Security.SecurityFrame::
15011 _GetSecurityFrame and _GetSecurityStack.
15012 * mini.h: Added definition for new icalls (in mini-exceptions.c) and
15013 the definitions for the new stack walk/callback mechanism.
15014 * mini-exceptions.c: Added internal call GetSecurityFrame (to get the
15015 first security frame for LinkDemands and InheritanceDemands) and
15016 GetSecurityStack for Demands. Both use the new mono_walk_stack code
15018 * mini-x86.h, mini-amd64.h, mini-sparc.h: Architecture specific stack
15019 walk initialization (lupus).
15021 2004-12-20 Ben Maurer <bmaurer@ximian.com>
15023 * mini.c (mono_method_to_ir): In CEE_DUP, handle the dup / stloc
15025 (handle_loaded_temps): Do not create a temporary variable for
15026 things that we know are temps. They will never be modified.
15027 (mono_spill_call): Set MONO_INST_IS_TEMP
15028 (mono_emulate_opcode): ditto
15030 (mono_method_to_ir.CEE_DUP): ditto
15032 2004-12-19 Ben Maurer <bmaurer@ximian.com>
15034 * mini.c (type_to_eval_stack_type): Make this handle the void type
15035 (mono_emit_call_args): set the call->type with type_to_eval_stack_type
15036 (emit_tree): use ip_in_bb to special case some common idioms
15037 Update all callers to pass in the IP.
15038 (mono_method_to_ir): Make CEE_CALL* do the above as well.
15040 This gives us a nice 2% speedup in mcs bootstrap.
15042 * mini-x86.c (peephole_pass): Peephole pass to make
15051 * mini.c (ip_in_bb): new method.
15052 (mono_method_to_ir): use this method rather than doing the hash
15055 * linear-scan.c (mono_linear_scan): When expiring actives, you
15056 don't need to keep around variables that expire on this
15057 instruction. This makes it so that:
15060 store (ebx add (ebx, 1))
15064 2004-12-19 Zoltan Varga <vargaz@freemail.hu>
15066 * mini.c (mono_method_to_ir): Optimize the common ldobj+stloc
15067 combination to avoid doing two copies. Fix up problems with previous
15070 * mini.c: Fix 64 bit warnings.
15072 * mini-x86.c (INST_IGNORES_CFLAGS): Add OP_STOREI4_MEMBASE_REG.
15074 2004-12-17 Zoltan Varga <vargaz@freemail.hu>
15076 * mini-amd64.h mini-amd64.c exceptions-amd64.c: Port exception handling
15077 changes from the x86 code.
15079 * mini.h: Add prototype for mono_arch_get_throw_corlib_exception ().
15081 2004-12-16 Zoltan Varga <vargaz@freemail.hu>
15083 * mini-x86.c (mono_arch_emit_epilog): Optimize the corlib exception
15084 throwing code to reduce its size, unify the AOT and non-aot code and
15085 get rid of relocations in the AOT case.
15087 * mini-x86.h mini.c exceptions-x86.c
15088 (mono_arch_get_throw_corlib_exception): New arch specific function to
15089 raise corlib exceptions which doesn't require relocations in the
15092 * aot.c (emit_method): Handle PATCH_INFO_NONE as well.
15094 2004-12-15 Zoltan Varga <vargaz@freemail.hu>
15096 * mini.c (mono_emit_method_call): Only allocate the got var when it is
15099 * mini-x86.c (mono_arch_patch_code): Add missing PATCH_INFO_METHOD_REL
15102 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
15104 * mini-x86.c, cpu-pentium.md, inssel-x86.brg: Fixed bug
15105 with add function when used from Inc/dec atomic
15106 functions. Re-enabled optimization on x86.
15107 * mini-ops.h: renamed atomic_add functions to
15108 allow _add to match the Interlocked::Add and
15109 _add_next to match Interlocked::Inc/Dec.
15111 2004-12-15 Massimiliano Mantione <massi@ximian.com>
15113 * mini.c: Fixed a subtle bug in mono_method_to_ir, about the
15114 linking of BBs to the end BB, and enabled SSAPRE also with
15115 consprop and copyprop (which was prevented by that bug).
15117 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
15119 * mini-x86.c: disabling the Interlocked optimizing code.
15121 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
15123 * aot.c (load_aot_module): Move reading of got_addr after the AOT
15124 file version check.
15126 2004-12-14 Patrik Torstensson <patrik.torstensson@gmail.com>
15128 * mini-x86.c, inssel-x86.brg, cpu-pentium.md: removed _imm
15129 interlocked optimization due lack of support on x86, rewrote
15130 exchange to take into account that base may be in eax.
15132 xsp works again; activated Interlocked optimizing code.
15134 2004-12-14 Zoltan Varga <vargaz@freemail.hu>
15136 * mini.h (MONO_AOT_FILE_VERSION): Bump AOT file version.
15138 2004-12-13 Zoltan Varga <vargaz@freemail.hu>
15140 * mini-ops.h: Add new opcodes.
15142 * mini.h: Add new patch types. Add got_var to MonoCompile.
15144 * mini.h mini-x86.c mini-amd64.c aot.c: Rename
15145 mono_arch_get_aot_patch_offset () to mono_arch_get_patch_offset () and
15146 make it work with all kinds of patchable code.
15148 * inssel.brg inssel-x86.brg: Add new rules dealing with computing the
15149 address of the GOT, and referencing entries in the GOT.
15151 * mini.c: Add code to load the GOT address if needed by an opcode.
15153 * aot.c mini-x86.h mini-x86.c cpu-pentium.md: Add support for position
15154 independent AOT code on the x86 using an elf-style Global Offset Table.
15156 2004-12-14 Raja R Harinath <rharinath@novell.com>
15158 * Makefile.am (RUNTIME): Set MONO_SHARED_DIR.
15160 2004-12-13 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15162 * mini-x86.c: disabling the Interlocked optimizing code. It segfaults
15165 2004-12-13 Patrik Torstensson <patrik.torstensson@gmail.com>
15167 * mini-x86.c,mini-ops.h,inssel-x86.brg,cpu-pentium.md: Implementation
15168 of Interlocked:Increment/Decrement/Add as inline ops.
15169 (mini-x86.c (mono_arch_get_inst_for_method and mono_arch_output_basic_block))
15171 2004-12-12 Geoff Norton <gnorton@customerdna.com>
15173 * exceptions-ppc.c: Reorder code so gcc3.4 can compile it
15174 * mini-ppc.c: Unify mono_arch_patch_code with changes in r37636.
15176 2004-12-12 Duncan Mak <duncan@ximian.com>
15178 * mini-ppc.c (mono_arch_patch_code): Hopefully made this build
15179 again. `patch_info->table_size' is no longer valid after Zoltan's
15182 2004-12-12 Martin Baulig <martin@ximian.com>
15184 * mini.c (mono_method_to_ir): Only call mono_debug_init_method()
15185 if we are the "real" method, ie. not an inlined method inside it.
15187 2004-12-11 Ben Maurer <bmaurer@ximian.com>
15189 * mini.c (CEE_LDSFLD): Make sure that the vtable has been init'd
15190 before we look in the special fields table. This fixes
15191 ../tests/thread-static-init.cs.
15193 2004-12-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
15195 * mini.c: return immediately after setting OP_ARRAY_RANK or CEE_LDLEN
15196 for Array get_Rank and get_Length. Fixes bug #70465.
15198 2004-12-11 Zoltan Varga <vargaz@freemail.hu>
15200 * mini.h mini.c aot.c: Put the bblock table for a SWITCH patch into a
15201 separate structure to reduce the size of MonoJumpInfo.
15203 Fri Dec 10 18:09:22 CET 2004 Paolo Molaro <lupus@ximian.com>
15205 * mini.c, mini.h, aot.c, driver.c: allow disabling the aot code.
15207 2004-12-10 Patrik Torstensson <patrik.torstensson@gmail.com>
15209 * mini.c (mini_get_inst_for_method): Changed to allow ports
15210 to return a MonoInst instead of opcode
15211 (renamed mini_get_opcode_for_method to better reflect the new functionality)
15213 * mini-[x86|s390|s390x|ppc|sparc].c (mono_arch_get_inst_for_method):
15214 Allow ports to return a created MonoInst instead of op-code, will enable
15216 (renamed mini_get_opcode_for_method to better reflected the functionality)
15218 2004-12-09 Zoltan Varga <vargaz@freemail.hu>
15220 * mini.c (NEW_AOTCONST): Share some code between the different NEW_AOTCONST macros.
15222 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
15224 * mini.c jit-icalls.c: Pass generic_context to mono_ldtoken_wrapper.
15227 2004-12-08 Martin Baulig <martin@ximian.com>
15229 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use `fsig->signature'
15230 if we're a CEE_CONSTRAINED call. Fixes gen-118.cs.
15232 2004-12-08 Zoltan Varga <vargaz@freemail.hu>
15234 * mini-sparc.c (mono_arch_output_basic_block): Implement OP_FCONV_TO_<X>
15237 * exceptions.cs: Disable some tests which depend on properties of x86 fp
15240 2004-12-08 Raja R Harinath <rharinath@novell.com>
15242 * Makefile.am (CLEANFILES): Add *.exe, *.dll.
15244 2004-12-07 Zoltan Varga <vargaz@freemail.hu>
15246 * mini-sparc.c (mono_arch_output_basic_block): Fix LOCALLOC_IMM
15247 bug introduced by the previous patch.
15249 Tue Dec 7 11:44:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15251 * mini-ppc.c, objectc.cs: handle large structs passed by value
15252 (fixes bug #69972).
15254 Tue Dec 7 10:43:31 CET 2004 Paolo Molaro <lupus@ximian.com>
15256 * mini-ppc.c: OP_ARGLIST implementation from
15257 Geoff Norton <gnorton@customerdna.com>.
15259 Tue Dec 7 10:14:25 CET 2004 Paolo Molaro <lupus@ximian.com>
15261 * inssel-x86.brg, inssel-ppc.brg: fix reference to register
15262 in stmt: OP_OUTARG_VT (reg) (should fix bug #69785).
15264 Tue Dec 7 10:06:39 CET 2004 Paolo Molaro <lupus@ximian.com>
15266 * exceptions-ppc.c: avoid calling ppc_patch in exception trampolines.
15268 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15270 * inssel-s390.brgi, mini-ops.h, mini-s390.c : Add stubs for support of tls offset
15273 2004-12-06 Zoltan Varga <vargaz@freemail.hu>
15275 * mini-sparc.c: Zero out localled-ed memory.
15277 * iltests.il: Add tests for zeroing out localloc-ed memory.
15279 2004-12-04 Martin Baulig <martin@ximian.com>
15281 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, use the new
15282 mono_method_get_signature_full().
15284 2004-12-03 Massimiliano Mantione <massi@ximian.com>
15286 * mini.c: Added removal of critical edges (prerequisite for SSAPRE),
15287 and some utility functions (always for SSAPRE), integrated SSAPRE.
15288 * mini.h: Likewise.
15289 * driver.c: Added ssapre option.
15290 * ssa.c: Small fix on OP_ARG handling.
15291 * ssapre.c, ssapre.h: Added files containing SSAPRE implementation.
15292 * Makefile.am: Likewise.
15294 2004-12-02 Zoltan Varga <vargaz@freemail.hu>
15296 * tramp-x86.c (mono_arch_create_jit_trampoline): Remove code which is
15297 now in the xp code.
15299 * mini.c (mini_init): Register mono_thread_force_interruption_checkpoint
15302 2004-12-01 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15304 * inssel-s390.brg : Add OP_OUTARG_VT (OP_REFANYTYPE (reg)) rule.
15306 * cpu-s390.md : Increase instruction length of oparglist.
15308 * mini-s390.c : Implement vararg and TYPEDEBYREF support.
15310 2004-11-30 Martin Baulig <martin@ximian.com>
15312 * mini.c (mono_method_to_ir): In CEE_CALLVIRT, added support for
15313 virtual generic methods. We call a special helper_compile_generic_method()
15314 icall to retrieve the method from the vtable, inflate and compile
15315 it and then do a CEE_CALLI. Thanks a lot to Paolo for this idea.
15317 * jit-icalls.c (helper_compile_generic_method): New JIT icall.
15319 2004-11-30 Zoltan Varga <vargaz@freemail.hu>
15321 * mini-sparc.c: Fix up vararg corner cases. Fixes #70019.
15323 2004-11-29 Zoltan Varga <vargaz@freemail.hu>
15325 * cpu-sparc.md mini-sparc.c (long_conv_to_ovf_i): Fill missing delay slot.
15328 2004-11-27 Ben Maurer <bmaurer@ximian.com>
15330 * inssel.brg (CEE_SWITCH): The AOT stuff Zoltan added is only for
15331 platforms with PIC aot.
15333 2004-11-28 Martin Baulig <martin@ximian.com>
15335 * mini.c (mono_method_to_ir): In CEE_DUP, added handle_stobj().
15338 2004-11-28 Martin Baulig <martin@ximian.com>
15340 * mini-x86.c (mono_arch_call_opcode): Use the original type, not
15341 the result of mono_type_get_underlying_type() to check whether
15344 2004-11-26 Martin Baulig <martin@ximian.com>
15347 (mono_method_to_ir): Use `!method->signature->has_type_parameters'
15350 2004-11-26 Zoltan Varga <vargaz@freemail.hu>
15352 * mini-amd64.c (mono_arch_emit_this_vret_args): Handle this and vret
15353 the same way as the other arguments so they won't get clobbered.
15355 * mini-amd64.c (mono_arch_output_basic_block): Avoid doing virtual
15356 calls through R11 since it is clobbered by the trampoline code.
15358 2004-11-26 Raja R Harinath <rharinath@novell.com>
15360 * Makefile.am: Consistently use $(RUNTIME) rather than ./mono to
15361 pick up in-tree mscorlib.dll.
15363 2004-11-25 Zoltan Varga <vargaz@freemail.hu>
15365 * aot.c: Rename MonoAOTModule->cleanup to out_of_date.
15367 * mini-amd64.c aot.c: Switch to PIC relative AOT code. References to
15368 runtime data/code are now stored in a table similar to the GOT in ELF.
15369 This allows the code itself to be position independent.
15371 * aot.c: Fix loading of referenced assemblies after the lazy assembly
15374 * aot.c: Attach ELF type (object/function) directives to all global
15377 * tramp-amd64.c (amd64_magic_trampoline): Patch RIP relative calls too.
15379 * inssel.brg (SWITCH): Emit an AOT_CONST in the aot case.
15381 * mini-amd64.h: Turn on PIC AOT code.
15383 * mini.h (mono_arch_get_aot_patch_offset): New arch specific function
15384 returning the offset within an OP_AOTCONST instruction where the GOT
15385 offset needs to be added.
15387 * mini.h: Bump AOT file format version.
15389 2004-11-25 Martin Baulig <martin@ximian.com>
15391 * mini.c (mono_method_to_ir): In CEE_CALL, don't allow calling any
15392 uninflated generic methods.
15394 2004-11-25 Martin Baulig <martin@ximian.com>
15396 * mini.c (mono_method_to_ir): Don't allow any uninflated generic methods.
15398 2004-11-24 Martin Baulig <martin@ximian.com>
15400 * minit.c (type_to_eval_stack_type): Set `inst->klass' to the
15401 original klass (this only applies for generic instances).
15403 2004-11-24 Martin Baulig <martin@ximian.com>
15405 * mini.c (mono_method_to_ir): Use `STACK_OBJ' instead of
15406 `ldind_type [CEE_LDIND_REF]' (which would be beyond the end of
15409 2004-11-24 Zoltan Varga <vargaz@freemail.hu>
15411 * mini.c (mono_method_to_ir): Disable inlining for methods containing
15412 localloc. Fixes #69678.
15414 * iltests.il (test_0_localloc_inline): Add regression test for #69678.
15416 2004-11-23 Zoltan Varga <vargaz@freemail.hu>
15418 * mini-amd64.c (mono_arch_output_basic_block): Set %al to the number of
15419 used SSE registers on pinvoke calls. Fixes #69774.
15421 2004-11-23 Geoff Norton <gnorton@customerdna.com>
15423 * inssel-ppc.brg, mini-ppc.c: Use mono_class_from_mono_type instead of
15424 vt->inst_vtype->data.klass. This fixes generic structs and bug #69766
15426 2004-11-23 Raja R Harinath <rharinath@novell.com>
15428 * Makefile.am (MCS,ILASM): Don't refer to runtime/ directory.
15429 Refer directly to the mcs/ tree.
15431 2004-11-19 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15433 * mini-s390.c, tramp-s390.c, mini-s390.h: Add LMF processing for trampolines.
15434 Check if a trampoline for a synchronized method is required.
15436 Fri Nov 19 17:34:21 CET 2004 Paolo Molaro <lupus@ximian.com>
15438 * mini-ppc.c, cpu-g4.md: set to zero the memory allocated
15439 with localloc if needed. Throe arithmetric exception in
15440 div an rem if needed. Implement ovf checks in OP_LCONV_TO_OVF_I.
15441 Adapted from a patch by Geoff Norton <gnorton@customerdna.com>.
15443 2004-11-19 Geoff Norton <gnorton@customerdna.com>
15445 * mini-ppc.c: Call mono_type_get_underlying_type to unwrap generic
15446 types before switching on type. Fixes #69622.
15448 2004-11-19 Raja R Harinath <rharinath@novell.com>
15450 * Makefile.am (check-local): New. Integrate into 'make check'.
15451 (MCS,RUNTIME): Define using in-tree mono and mcs.
15453 (%.exe): Use $(ILASM).
15455 Fri Nov 19 14:54:07 CET 2004 Paolo Molaro <lupus@ximian.com>
15457 * mini-ppc.c: adjust initial prolog size (bug #69691).
15459 2004-11-18 Zoltan Varga <vargaz@freemail.hu>
15461 * cpu-pentium.md (localloc): Increase max instruction len. Fixes
15464 2004-11-17 Raja R Harinath <rharinath@novell.com>
15466 * Makefile.am (clean-local): Rename from 'clean'.
15468 2004-11-15 Nelae Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15470 * mini.c, mini-x86.c, mini-amd64.c, exceptions-s390.c: Add siginfo_t parameter
15471 to mono_arch_is_int_overflow.
15472 * exceptions-s390.c: Add mono_arch_is_int_overflow routine to discern between
15475 2004-11-15 Sebastien Pouliot <sebastien@ximian.com>
15477 * declsec.c|h: New files to support declarative security attributes.
15478 Added function to check if a method has (applicable) security.
15479 * mini.c|h: Add check for declarative security attributes in
15480 mono_method_check_inlining.
15481 * Makefile.am: Added declsec.c and declsec.h to the build.
15483 Mon Nov 15 11:53:46 CET 2004 Paolo Molaro <lupus@ximian.com>
15485 * mini.c, mini.h: update to keep dynamic code info per-domain.
15487 2004-11-12 Zoltan Varga <vargaz@freemail.hu>
15489 * mini.c mini-*.h: Get rid of MONO_ARCH_HAVE_RETHROW since all architectures support it now.
15490 (mini_init): Get rid of it from here too.
15492 Thu Nov 11 20:17:17 CET 2004 Paolo Molaro <lupus@ximian.com>
15494 * mini-ppc.c, mini-ppc,h, cpu-g5.md, exceptions-ppc.c:
15495 implemented OP_RETHROW (patch by Geoff Norton
15496 <gnorton@customerdna.com>).
15498 2004-11-10 Geoff Norton <gnorton@customerdna.com>
15500 * tramp-ppc.c (ppc_magic_trampoline): Don't trampoline methods
15501 between appdomains. Fixes appdomain-unload on PPC.
15503 2004-10-26 Lluis Sanchez Gual <lluis@novell.com>
15505 * exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15506 mini-exceptions.c: handle the new wrapper types.
15507 * mini.c: The CEE_ISINST and CEE_CASTCLASS opcodes now take the
15508 token value as a MonoClass* when compiling a wrapper.
15509 mono_jit_create_remoting_trampoline now takes an additional
15510 MonoRemotingTarget parameter.
15512 2004-11-10 Martin Baulig <martin@localhost>
15514 * mini.c (mono_method_to_ir): Use `generic_container->context'
15515 rather than creating a new one.
15517 2004-11-09 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15519 * exceptions-s390.c, mini-s390, cpu-s390.md: Add support for OP_RETHROW.
15521 * inssel-390.md, mini-s390.c: Correct register allocation for globals.
15523 2004-11-09 Zoltan Varga <vargaz@freemail.hu>
15525 * aot.c (mono_aot_init): Add MONO_AOT_CACHE env variable to turn on
15526 the experimental aot cache stuff.
15528 Tue Nov 9 17:30:20 CET 2004 Paolo Molaro <lupus@ximian.com>
15530 * aot.c, mini.c, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15531 mini-exceptions.c: update to exception clause structure changes.
15533 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
15535 * exceptions-x86.c (throw_exception): Fix warnings.
15537 * mini-x86.h mini-x86.c cpu-pentium.md exceptions-x86.c: Add support
15540 2004-11-08 Zoltan Varga <vargaz@freemail.hu>
15542 * exceptions-sparc.c (get_throw_exception): Really fix this.
15544 2004-11-07 Ben Maurer <bmaurer@ximian.com>
15546 * tramp-*.c: we no longer support icalls without wrappers, so
15547 a bit of code can be removed here
15549 2004-11-07 Zoltan Varga <vargaz@freemail.hu>
15551 * exceptions-sparc.c (get_throw_exception): Fix more bugs in previous
15554 * cpu-sparc.md: Add op_rethrow.
15556 * exceptions-sparc.c (get_throw_exception): Fix bug in previous patch.
15558 * mini-sparc.h mini-sparc.c exceptions-sparc.c: Add support for OP_RETHROW.
15560 * mini.h: Add mono_arch_get_rethrow_exception () arch specific function.
15561 * mini-ops.h: Add OP_RETHROW.
15563 * mini.c inssel.brg: Distinguish between THROW and RETHROW.
15565 * cpu-amd64.c mini-amd64.c exceptions-amd64.c: Add support for OP_RETHROW.
15567 2004-11-05 Geoff Norton <gnorton@customerdna.com>
15569 * helpers.c: Change otool arguments from -V -v -t to -v -t on Darwin
15570 Makes the output much easier to read
15572 2004-11-05 Ben Maurer <bmaurer@ximian.com>
15574 * ssa.c: allocate MonoMethodVar.uses from the mempool. First, this
15575 prevents another huge leak when compiling with ssa. Secondly, the
15576 performance of doing this rather than freeing the lists is much
15577 better. GList does a lock every time you allocate a list link,
15578 so that it can use a memory pool. So, it is better to just use
15579 a memory pool of our own.
15581 * ssa.c, linear-scan.c: replace g_list_remove_link with
15582 g_list_delete. The remove one does not free the GList, so we were
15583 leaking memory. On -O=all --compile-all with corlib, this cut down
15584 3 MB of allocations.
15586 2004-11-05 Zoltan Varga <vargaz@freemail.hu>
15588 * tramp-sparc.c (mono_arch_create_jit_trampoline): Fix sparc build.
15590 * tramp-amd64.c (mono_arch_create_jit_trampoline): Fix amd64 build.
15592 * mini.h mini.c tramp-*.c: Moved xp parts of JIT trampoline creation
15593 into a new function mono_create_jit_trampoline ().
15595 2004-11-02 Zoltan Varga <vargaz@freemail.hu>
15597 * trace.c (get_spec): Allow tracing of classes without a namespace.
15599 2004-11-02 Sebastien Pouliot <sebastien@ximian.com>
15601 * mini.c: Fix pointer overwrite in mini_method_compile.
15603 2004-11-2 Geoff Norton <gnorton@customerdna.com>
15605 * inssel-ppc.brg (OP_OUTARG_VT (CEE_LDOBJ (base))):
15606 The darwin ABI needs some special handling for 1 and 2 byte structs
15607 Lets use lbz/lhz instead of lwz everywhere.
15608 * mini-ppc.c (calculate_sizes): The Darwin ABI needs from special handling
15609 for 1 and 2 byte structs and struct which are size >= 3 || size % 4 != 0.
15610 Use stb/sth for the former, and put the latter always on stack instead of in
15611 argument registers.
15613 2004-10-30 Zoltan Varga <vargaz@freemail.hu>
15615 * trace.c (is_filenamechar): Add '_'.
15617 2004-10-29 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15619 * mini-s390.c: Fix prolog length to allow for large trace requirements.
15621 * exceptions-s390.c: Remove dwarf unwinding stuff that was unused.
15623 2004-10-29 Zoltan Varga <vargaz@freemail.hu>
15625 * Makefile.am (libgc_libs): Do some automake magic so libmono/mono
15626 depends on libmonogc. Fixes #68805.
15628 2004-10-26 Miguel de Icaza <miguel@ximian.com>
15630 * mini.c (mono_jit_free_method): Provide extra information for
15631 this error. Currently this leaks, but will be turned into a
15632 developer option in the future.
15634 2004-10-26 Zoltan Varga <vargaz@freemail.hu>
15636 * driver.c (mono_main): Applied patch from Willibald Krenn <willibald.krenn@gmx.at>. Make --graph work for icalls and pinvoke methods.
15638 2004-10-25 Zoltan Varga <vargaz@freemail.hu>
15640 * aot.c (mono_aot_load_method): Align PATCH_INFO_R8 on an 8 byte
15641 boundary. Fixes reading of PATCH_INFO_R4 and R8.
15642 (mono_aot_load_method): Do not allocate MonoAotMethod in the GC heap.
15644 2004-10-24 Zoltan Varga <vargaz@freemail.hu>
15646 * mini-amd64.c (mono_arch_patch_code): Fix patching of class init
15647 trampolines for AOT code.
15649 2004-10-22 <vargaz@freemail.hu>
15651 * aot.c (mono_compile_assembly): Disable AOT for methods containing calls to methods of
15652 constructed types. Fixes #68136.
15654 2004-10-21 Martin Baulig <martin@ximian.com>
15656 * exceptions-x86.c (throw_exception): Call mono_debugger_throw_exception();
15657 if it returns true, unwind the stack to the call instruction.
15659 2004-10-21 <vargaz@freemail.hu>
15661 * aot.c: Reorganize the AOT file format to avoid relocations. Fix warnings.
15663 * mini.h: Bump AOT version number.
15665 * objects.cs: Add another test for unbox trampolines.
15667 * tramp-amd64.c (amd64_magic_trampoline): Disable patching of trampolines for
15670 2004-10-20 <vargaz@freemail.hu>
15672 * driver.c: Add SHARED to the set of optimizations tested.
15674 * tramp-amd64.c (amd64_magic_trampoline): Patch trampoline code as well.
15676 * mini.c (mono_method_to_ir): Mark the domainvar as volatile when it is implicitly
15677 used by CEE_NEWARR.
15679 * ssa.c (mono_ssa_deadce): Do not optimize away accesses to volatile variables.
15681 2004-10-20 Martin Baulig <martin@ximian.com>
15683 * mini-exceptions.c (mono_handle_exception): Call
15684 mono_debugger_handle_exception() to tell the debugger about
15685 catch/finally clauses.
15687 2004-10-18 Zoltan Varga <vargaz@freemail.hu>
15689 * exceptions-amd64.c (mono_arch_find_jit_info): Pop arguments of the stack.
15691 * mini-amd64.c (mono_amd64_get_vcall_slot_addr): Handle extended registers. Fixes
15694 2004-10-15 Geoff Norton <gnorton@customerdna.com>
15696 * mini-ppc.c (calculate_sizes): Marshal valuetypes for pinvoke
15697 methods as their native size, fixed bug #57543, #57545.
15698 * mini-ppc.c (mono_arch_output_basic_block): Use mulli for imm16 types
15699 This saves a temporary register and mullw call down into 1 (minor perf
15700 increase for cases like sum = sum * 5; This use to translate into:
15703 It now translates to
15706 2004-10-15 Zoltan Varga <vargaz@freemail.hu>
15708 * trace.c (mono_trace_eval): Use mono_method_desc_full_match. Fixes
15711 2004-10-11 Martin Baulig <martin@ximian.com>
15713 * mini.c (mono_method_to_ir): If we're a generic method, get the
15714 MonoGenericContainer from our MonoMethodNormal and create a
15715 MonoGenericContext from it.
15717 2004-10-08 Zoltan Varga <vargaz@freemail.hu>
15719 * inssel-long32.brg (OP_LCONV_TO_OVF_I2): Fix CONV_I1 -> CONV_I2.
15721 * basic-long.cs: Add test for checked i8->i2 cast.
15723 Wed Oct 6 12:40:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
15725 * inssel-ppc.brg: added a couple of speedup rules.
15727 2004-10-05 Zoltan Varga <vargaz@freemail.hu>
15729 * Makefile.am (genmdesc_LDADD): Don't link this against libmetadata
15730 to speed up rebuilds.
15732 2004-10-04 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15734 * mini-s390.c: Minor fix to OP_OR_IMM.
15736 2004-10-03 Zoltan Varga <vargaz@freemail.hu>
15738 * tramp-sparc.c (sparc_magic_trampoline): Handle appdomain stuff
15739 better. Fixes appdomain-unload.exe on sparc.
15741 2004-10-02 Massimiliano Mantione <massi@ximian.com>
15743 * ssa.c: Fixed casts to unsigned where the value was of 64 bits in
15744 simulate_long_compare, patch by will@exomi.com (Ville-Pertti Keinonen),
15747 2004-10-02 Zoltan Varga <vargaz@freemail.hu>
15749 * jit-icalls.c: Handle a nonexisting trunc function more correctly.
15751 2004-09-30 Lluis Sanchez Gual <lluis@novell.com>
15753 * mini.c: Always generate a field read/write wrapper for members
15754 of the class MarshalByRefObject since the actual instance could
15757 2004-09-28 Lluis Sanchez Gual <lluis@novell.com>
15759 * mini.c: Use mono_thread_exit() to stop threads, instead of ExitThread.
15761 2004-09-28 Zoltan Varga <vargaz@freemail.hu>
15763 * driver.c mini.h trace.c: Move the setting of the main assembly into
15764 a separate function called mono_trace_set_assembly () and call it after
15765 actually loading the main assembly. Fixes #66872.
15767 2004-09-25 Zoltan Varga <vargaz@freemail.hu>
15769 * mini-amd64.h mini-amd64.c tramp-amd64.c: Allocate trampoline memory
15770 using the code manager.
15772 2004-09-24 Zoltan Varga <vargaz@freemail.hu>
15774 * tramp-amd64.c mini-amd64.h: Add support for MONO_ARCH_HAVE_INVALIDATE_METHOD.
15776 2004-09-23 Zoltan Varga <vargaz@freemail.hu>
15778 * cpu-amd64.md: Fix bug in previous patch.
15780 * cpu-amd64.md: Fix instruction lengths of membase opcodes. Fixes
15783 Wed Sep 22 19:03:20 CEST 2004 Paolo Molaro <lupus@ximian.com>
15785 * mini.h, exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
15786 mini-exceptions.c: updates for changed stack walk interface.
15788 2004-09-21 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
15790 * mini-s390.c, cpu-s390.md: Minor changes to OP_ARGLIST handling
15792 2004-09-17 Zoltan Varga <vargaz@freemail.hu>
15794 * mini.c (mono_method_to_ir): Fix LDSTR in dynamic methods. Fixes #66132.
15796 2004-09-13 Zoltan Varga <vargaz@freemail.hu>
15798 * driver.c (mini_regression_list): Do not call mono_assembly_close
15799 since assemblies can't be unloaded.
15801 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
15803 * cpu-amd64.md: Fix more instruction lengths.
15805 * cpu-amd64.md: Fix lengths of some instructions.
15807 2004-09-11 Ben Maurer <bmaurer@users.sourceforge.net>
15809 * inssel.brg: Make the array ldelema check aot friendly.
15811 2004-09-11 Zoltan Varga <vargaz@freemail.hu>
15813 * mini-amd64.c (mono_arch_get_argument_info): Fix stack_unwind test.
15815 * cpu-amd64.md inssel-long.brg inssel-amd64.brg: Small optimizations.
15817 2004-09-10 Zoltan Varga <vargaz@freemail.hu>
15819 * mini-x86.c: Fix build.
15821 * mini-sparc.c mini-x86.c mini-amd64.c: Use the new
15822 mono_type_get_underlying_type () helper function to simplify code.
15824 2004-09-09 Martin Baulig <martin@ximian.com>
15826 * mini-amd64.c: Don't access `type->data.klass' directly, call
15827 mono_class_from_mono_type() instead since the type may be a
15830 2004-09-09 Martin Baulig <martin@ximian.com>
15832 * mini-amd64.c (get_call_info): Fix support for generic instances.
15833 (add_valuetype): Use mono_class_from_mono_type() to get the class
15834 since we can be a generic instance.
15836 Thu Sep 9 01:43:53 PDT 2004 Paolo Molaro <lupus@ximian.com>
15838 * mini-ppc.c, mini.h, regalloc.c, regalloc.h: powerpc speedups.
15840 2004-09-07 Ben Maurer <bmaurer@users.sourceforge.net>
15842 * liveness.c: reset spill costs on each scan: bug 62107
15844 2004-09-07 Bernie Solomon <bernard@ugsolutions.com>
15846 * exceptions-sparc.c (mono_arch_find_jit_info): remove
15847 unnecessary line that doesn't compile
15849 2004-09-07 Zoltan Varga <vargaz@freemail.hu>
15851 * mini.c mini.h mini-x86.h tramp-x86.c: Instead of freeing delegate
15852 trampolines, make them call an error function so people can fix their
15855 2004-09-06 Martin Baulig <martin@ximian.com>
15857 * mini.c (mono_method_to_ir): When initializing locals, handle a
15858 generic instances like a valuetype if it's a valuetype and like a
15859 class if it's a class.
15861 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
15863 * exceptions-x86.c (mono_arch_find_jit_info): Pop arguments off the
15864 stack. Fixes #64674.
15866 * exceptions.cs: Add test for unwinding of call arguments.
15868 Mon Sep 6 05:50:02 PDT 2004 Paolo Molaro <lupus@ximian.com>
15870 * mini-*.c, mini-ops.h, inssel-long32.brg: introduced
15871 OP_ADDCC_IMM and OP_SUBCC_IMM (add/sub immediate that will
15872 set the carry/borrow flag). The sparc and s390 implementations
15873 can now use optimized versions (and simplify the code). ppc bugfixes.
15875 2004-09-06 Zoltan Varga <vargaz@freemail.hu>
15877 * exceptions-ppc.c (mono_arch_find_jit_info): Fix memory leak.
15879 2004-09-05 Zoltan Varga <vargaz@freemail.hu>
15881 * inssel-amd64.brg: Remove leftover 32 bit rule.
15883 * mini-amd64.c (mono_arch_instrument_prolog): Fix tracing support.
15885 2004-09-04 Zoltan Varga <vargaz@freemail.hu>
15887 * mini-exceptions.c (mono_find_jit_info): Refactor common code from
15888 mono_arch_find_jit_info functions into a new function. Fix a memory
15891 * exceptions-x86.c exceptions-amd64.c exceptions-sparc.c: Remove
15894 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
15896 * exceptions.cs inssel-long32.brg: Handle the OP_LCONV_TO_OVF_I2 case
15899 * exceptions.cs: Add array size tests.
15901 * mini.c: Allocate a separate icall wrapper for each arity of
15902 mono_array_new_va. Fixes #59509.
15904 * exceptions.cs: Add testcase for 64578.
15906 * inssel-long32.brg: Fix OP_LCONV_TO_OVF_I1 rule. Fixes #64578.
15908 * trace.c (is_filenamechar): Allow 0..9 in strings. Fixes #65094.
15910 2004-09-02 Martin Baulig <martin@ximian.com>
15912 * mini.c (mono_method_to_ir): When initializing the locals, call
15913 handle_initobj() on the generic instance itself, not its
15916 2004-09-02 Zoltan Varga <vargaz@freemail.hu>
15918 * mini.h (MonoJitDynamicMethodInfo): New structure, extension of
15919 MonoJitInfo for dynamic methods.
15921 * mini.c: Rename trampoline_hash_mutex to jit_mutex.
15923 * mini.c: Add support for freeing JIT data for dynamic methods.
15925 2004-09-01 Martin Baulig <martin@ximian.com>
15927 * mini-x86.c (is_regsize_var): Added support for generic
15929 (mono_arch_emit_prolog): Make this compile again, use
15930 `x86_push_imm_template (code)'.
15932 2004-08-30 Ben Maurer <bmaurer@users.sourceforge.net>
15934 * mini-x86.c: make all push_imm instructions that get
15935 patched always emit the long form
15937 2004-08-30 Zoltan Varga <vargaz@freemail.hu>
15939 * mini.c (mono_create_jump_trampoline): Store the jump trampolines
15940 in a per-domain hash.
15942 * mini-amd64.c (merge_argument_class_from_type): Handle generic
15945 2004-08-29 Zoltan Varga <vargaz@freemail.hu>
15947 * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: Ongoing SSE
15950 * mini-amd64.c cpu-amd64.md inssel-amd64.brg mini-amd64.h: More SSE
15953 * mini-amd64.c cpu-amd64.md: Implement checked int<->uint casts.
15954 Beginnings of SSE2 support.
15956 * exceptions.cs: Add more tests for checked int<->uint casts.
15958 2004-08-28 Martin Baulig <martin@ximian.com>
15960 * mini-x86.c (mono_arch_instrument_epilog): Added support for
15964 (mono_type_to_ldind, mono_type_to_stind, type_to_eval_stack_type):
15965 Handle generic instances recursively.
15967 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
15969 * iltests.il: test for conv.u8 on a constant
15971 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
15973 * inssel-long32.brg: c&p rules for LCONV_x4 (membase) and
15974 LCONV_x4 (shrun_32 (membase)).
15976 2004-08-27 Ben Maurer <bmaurer@users.sourceforge.net>
15978 * inssel-x86.brg: c&p rules for push/setret of long
15980 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
15982 * inssel-x86.brg: c&p rules for compare (base, regvar) and
15983 compare (regvar, base)
15985 * inssel-x86.brg: more burg love
15987 * inssel.brg: more cleanup
15989 * inssel-x86.brg, inssel-long32.brg: burg cleanup.
15991 2004-08-26 Ben Maurer <bmaurer@users.sourceforge.net>
15993 * basic-long.cs, basic-calls.cs: new tests for optimization.
15995 2004-08-26 Zoltan Varga <vargaz@freemail.hu>
15997 * mini-amd64.c (read_tls_offset_from_method): Fix typo in previous
16000 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
16002 * mini-amd64.c (read_tls_offset_from_method): Add another case.
16004 2004-08-25 Bernie Solomon <bernard@ugsolutions.com>
16006 * inssel.brg (mini_emit_memcpy): use
16007 NO_UNALIGNED_ACCESS to disable memcpy optimization
16009 2004-08-25 Zoltan Varga <vargaz@freemail.hu>
16011 * mini-amd64.c: Handle generic types in various places.
16013 * mini.c (mono_method_to_ir): Handle generic types in init locals.
16015 2004-08-24 Zoltan Varga <vargaz@freemail.hu>
16017 * mini.c (handle_box): Fix warning.
16019 * mini-amd64.c (mono_arch_local_regalloc): Fix regalloc problem.
16021 * mini-amd64.h: Enable the emit_state optimization.
16023 * mini-ops.h cpu-amd64.md: Add new amd64_test_null opcode.
16025 * mini-amd64.c: Add some new 64 bit peephole opts.
16027 * inssel.brg (mini_emit_memcpy): Optimize for 64 bit architectures.
16029 * cpu-amd64.md: sreg1 of div instructions must be %rax.
16031 * mini-amd64.c: Register allocator fixes.
16033 * mini.c: Add an optimization to emit_state to avoid allocation of new
16034 registers on some platforms.
16036 2004-08-23 Zoltan Varga <vargaz@freemail.hu>
16038 * inssel-x86.brg inssel-amd64: Add yet another missing tree->dreg assignment.
16040 * mini-x86.c (mono_arch_local_regalloc): Fix bug in long register
16041 allocation. Fixes #63085.
16043 * basic-long.cs: Add new regression test.
16045 * mini-amd64.c: Register allocator improvements.
16047 2004-08-21 Zoltan Varga <vargaz@freemail.hu>
16049 * mini-amd64.c (read_tls_offset_from_method): Add another code
16052 * tramp-amd64.c (amd64_class_init_trampoline): Use a more efficient
16053 instruction sequence for nullifying class init trampolines.
16055 * objects.cs: Add new regalloc test.
16057 * mini-amd64.c inssel-amd64.brg: Optimize parameter passing.
16059 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
16061 * mini-amd64.c (mono_arch_call_opcode): Refactor this a little.
16063 * mini-amd64.c (mono_arch_regalloc_cost): Adjust regalloc costs for
16066 * driver.c: Fix profiling after TLS changes.
16068 * driver.c (mono_main): Set mono_stats.enabled if needed.
16070 * mini.c (handle_alloc): New helper function used by CEE_NEWOBJ and
16073 2004-08-20 Ben Maurer <bmaurer@users.sourceforge.net>
16075 * mini-x86.c: use a 1 op rather than a 2 op tls access
16076 instruction -> faster.
16078 2004-08-20 Zoltan Varga <vargaz@freemail.hu>
16080 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16083 2004-08-19 Bernie Solomon <bernard@ugsolutions.com>
16085 * exceptions-sparc.c (throw_exception): fix typo
16087 2004-08-19 Ben Maurer <bmaurer@users.sourceforge.net>
16089 * mini-x86.c, cpu-pentium.md, inssel-x86.brg:
16090 set tree->dreg correctly with tls. Allow any
16091 register to be used.
16093 * mini-x86.c (read_tls_offset_from_method): add new code
16094 generation pattern seen with GCC.
16097 Thu Aug 19 17:26:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
16099 * mini-exceptions.c, exceptions-x86.c, exceptions-amd64.c,
16100 exceptions-ppc.c, exceptions-s390.c, exceptions-s390x.c,
16101 exceptions-sparc.c: fix some performance issues in exception
16102 handling and setting of the stack trace for exceptions that were
16105 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
16107 * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Merge changes from
16110 * mini-amd64.c (mono_arch_is_int_overflow): Handle all possible
16113 2004-08-18 Ben Maurer <bmaurer@users.sourceforge.net>
16115 This patch inlines tls access, when possible.
16117 * mini.h: new arch functions for TLS intrinsics.
16118 All platforms updated with a stub.
16120 * mini.c: use the new intrinsics
16122 * mini-x86.c, cpu-pentium.md, inssel-x86.brg, mini-ops.h:
16123 arch specific intrinsic for tls variables
16125 2004-08-18 Zoltan Varga <vargaz@freemail.hu>
16127 * Makefile.am (libmono_la_LDFLAGS): Enable creating of libmono dll
16130 2004-08-17 Ben Maurer <bmaurer@users.sourceforge.net>
16132 * mini.c: thread local allocation
16134 2004-08-16 Zoltan Varga <vargaz@freemail.hu>
16136 * mini-amd64.h (MONO_ARCH_NO_EMULATE_LONG_SHIFT_OPS): Enable.
16138 * Makefile.am: Link against the static version of libmonogc.
16140 * Makefile.am: Link the static versions of the convenience libraries
16141 into the mono executable.
16143 * mini-x86.h mini-x86.c: Throw the correct exception on integer overflow.
16145 2004-08-15 Zoltan Varga <vargaz@freemail.hu>
16147 * mini.h mini.c mini-amd64.h mini-amd64.c: Throw the correct exception
16148 on integer overflow.
16150 * mini-amd64.c: Reorganize function call code.
16152 * mini-amd64.c (peephole_pass): Merge changes from mini-x86.c.
16154 2004-08-14 Ben Maurer <bmaurer@ximian.com>
16156 * inssel-x86.brg: use xor eax,eax.
16158 * basic.cs: new tests
16160 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
16162 * mini-amd64.c (mono_arch_emit_epilog): Use RIP relative addressing
16163 in exception throwing code.
16165 2004-08-14 Ben Maurer <bmaurer@ximian.com>
16167 * inssel-x86.brg: use xor esi,esi.
16169 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
16171 * driver.c (mono_main): Call mono_trace_parse_options earlier so it
16172 can trace methods compiled during mini_init () too.
16174 * cpu-amd64.md mini-amd64.c (mono_arch_output_basic_block): Handle
16177 2004-08-14 Ben Maurer <bmaurer@ximian.com>
16179 * Makefile.am: static link on x86 (r=zoltan)
16181 2004-08-14 Zoltan Varga <vargaz@freemail.hu>
16183 * tramp-amd64.c (amd64_magic_trampoline): Avoid patching the trampoline
16184 code since it causes some programs to fail.
16186 2004-08-12 Zoltan Varga <vargaz@freemail.hu>
16188 * mini-amd64.c (bb_is_loop_start): Merge changes from mini-x86.c.
16190 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
16192 * mini.c: ovfops_op_map - add STACK_OBJ case for
16194 * basic.cs: add test_0_pin_string as test
16197 2004-08-11 Bernie Solomon <bernard@ugsolutions.com>
16199 * Makefile.am: build C# if srcdir != builddir
16201 Tue Aug 10 19:23:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
16203 * dominators.c, mini.h, mini-x86.c: fix loop alignment with
16204 fall-through blocks.
16206 Tue Aug 10 16:18:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
16208 * driver.c: enable loop by default again and include abcrem in -O=all.
16210 2004-08-08 Zoltan Varga <vargaz@freemail.hu>
16212 * iltests.il: Add some localloc tests.
16214 * mini.c (mono_method_to_ir): Set stack type of LOCALLOC correctly.
16216 * inssel-amd64.brg inssel-x86.brg: Set dreg of LOCALLOC correctly.
16219 * inssel-amd64.brg: Add some optimizations.
16221 * mini-amd64.c (mono_arch_setup_jit_tls_data): Add tls offset detection
16224 * Makefile.am: Statically link mono against libmono on AMD64.
16226 * mini-amd64.c inssel-amd64.brg: Optimizations.
16228 2004-08-07 Zoltan Varga <vargaz@freemail.hu>
16230 * mini-amd64.c (mono_arch_emit_prolog): Optimize lmf saving a bit.
16232 * tramp-amd64.c: Patch calling code in trampolines.
16234 2004-08-06 Zoltan Varga <vargaz@freemail.hu>
16236 * mini-amd64.c: pinvoke struct passing fixes.
16238 2004-08-05 Bernie Solomon <bernard@ugsolutions.com>
16240 * mini-sparc.c: redo change, make mono_arch_cpu_init call
16241 mono_arch_cpu_optimizazions so sparcv9 is initialized when embedded
16243 2004-08-05 Duncan Mak <duncan@ximian.com>
16245 * mini.c: Renamed CEE_STELEM to CEE_STELEM_ANY and CEE_LDELEM to
16248 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
16250 * mini-amd64.c (emit_move_return_value): Move return value for normal
16253 2004-08-05 Martin Baulig <martin@ximian.com>
16255 * mini.c (ret_type_to_call_opcode): Don't use a `t' variable for
16256 `type->type'; just modify `type' itself when dealing with enums
16257 and generic instances.
16258 (check_call_signature): Make `simple_type' a `MonoType *'.
16260 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
16262 * mini.c: Use OP_PADD to add offsets to addresses.
16264 * mini-amd64.h: Disable SIGSEGV_ON_ALTSTACK.
16266 2004-08-04 Bernie Solomon <bernard@ugsolutions.com>
16268 * mini-sparc.c (mono_arch_emit_epilog): fix check
16269 for folding last op into restore instruction
16271 2004-08-05 Zoltan Varga <vargaz@freemail.hu>
16273 * exceptions-amd64.c (mono_arch_get_throw_exception_by_name): Allocate
16274 helper methods using the code manager.
16276 * exceptions-amd64.c (mono_arch_get_throw_exception): Fix maximum length.
16278 * mini-amd64.c (mono_arch_allocate_vars): Fix tls offset detection.
16280 Tue Aug 3 23:50:00 EST 2004 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16282 * mini-s390x.c mini-s390x.h tramp-s390x.c inssel-s390x.brg
16283 cpu-s390x.md exceptions-s390x.c Makefile.am: S/390 64-bit JIT
16285 * mini-s390.c: fix tail processing
16287 Tue Aug 3 01:35:44 PDT 2004 Paolo Molaro <lupus@ximian.com>
16289 * mini-ppc.c: mul.ovf.un exception name fix.
16291 2004-08-03 Martin Baulig <martin@ximian.com>
16293 * mini-x86.c (mono_arch_call_opcode): Correctly handle generic
16294 instances; before jumping to `handle_enum', also modify `ptype'.
16296 2004-08-02 Bernie Solomon <bernard@ugsolutions.com>
16298 * cpu-sparc.md: fcall maximal length too small.
16300 2004-08-02 Zoltan Varga <vargaz@freemail.hu>
16302 * mini-amd64.c mini.h: Add initial support for passing/returning
16303 structures to/from pinvoked methods.
16305 Mon Aug 2 11:59:35 PDT 2004 Paolo Molaro <lupus@ximian.com>
16307 * mini-ppc.c: reg allocator fix.
16309 2004-07-31 Zoltan Varga <vargaz@freemail.hu>
16311 * mini-amd64.c (mono_arch_output_basic_block): Fix OP_X86_PUSH_OBJ.
16313 * inssel.brg: Optimize memset on 64 bit machines.
16315 * mini-amd64.c: Fix some vararg cases.
16317 2004-07-30 Neale Ferguson <Neale.Ferguson@SoftwareAG-usa.com>
16319 * mini-s390.c: Corrected macro in emit_float_to_int
16321 * s390-abi.cs: Tests to exercise the s390 ABI
16323 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
16325 * exceptions-amd64.c (mono_arch_find_jit_info): Fix restoring of
16328 * basic.cs: Add a test for add.ovf.un.
16330 2004-07-30 Bernie Solomon <bernard@ugsolutions.com>
16332 * mini-sparc.c: add case for OP_IDIV_UN
16334 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
16336 * mini-amd64.c mini-amd64.h mini.c: Add support for vararg pinvoke calls.
16338 * mini-amd64.c cpu-amd64.md: Ongoing JIT work.
16340 2004-07-30 Ben Maurer <bmaurer@ximian.com>
16342 * basic.cs: regression tests.
16344 * inssel-x86.brg: Disable cmp BYTE PTR [eax], imm, it causes various
16347 2004-07-30 Zoltan Varga <vargaz@freemail.hu>
16349 * basic.cs: Add a new test.
16351 * mini-amd64.c aot.c cpu-amd64.md: Add support for tracing, profiling
16352 and AOT. Various fixes and optimizations.
16354 * inssel.brg (CALL_REG): Add 64 bit versions of call_reg rules.
16356 Fri Jul 30 15:49:26 CEST 2004 Paolo Molaro <lupus@ximian.com>
16358 * mini-ppc.c: make sure temp regs are not used for global reg
16361 2004-07-29 Bernie Solomon <bernard@ugsolutions.com>
16363 * cpu-sparc.md: conv_i8 fix for 64bits
16365 * mini-sparc.c: add cases for OP_IXXX codes for 64bits
16367 2004-07-29 Ben Maurer <bmaurer@ximian.com>
16369 * cpu-pentium.md, mini-x86.c, inssel-x86.brg, mini-ops.h:
16370 add opcode for cmp BYTE PTR [eax], imm.
16372 * inssel.brg: Make memcpy and memset takes bases.
16374 2004-07-28 Zoltan Varga <vargaz@freemail.hu>
16376 * *-amd64.*: More AMD64 work.
16378 2004-07-28 Ben Maurer <bmaurer@ximian.com>
16380 * cpu-pentium.md, inssel-x86.brg, mini-ops.h, mini-x86.c:
16381 add a compare-not-equal opcode.
16383 2004-07-28 Lluis Sanchez Gual <lluis@novell.com>
16385 * mini.c: Use mono_init_from_assembly instead of mono_init.
16387 2004-07-28 Zoltan Varga <vargaz@freemail.hu>
16389 * mini.c: Fix opcode mapping for STACK_MP on 64 bit platforms.
16391 * mini.c (CEE_NEWOBJ): Call mono_array_new_va using the correct signature.
16393 * mini.c: Use MONO_ARCH_SIGACTION on AMD64 as well.
16395 * inssel.brg: 64 bit fixes.
16397 * mini.h (MonoCallInst): Add some AMD64 specific data.
16399 * mini.h: Add some OP_P opcodes.
16401 2004-07-28 Ben Maurer <bmaurer@ximian.com>
16403 * basic.cs: tests for 61797 and 61740
16405 Tue Jul 27 16:05:19 CEST 2004 Paolo Molaro <lupus@ximian.com>
16407 * mini-ppc.c, mini-sparc.c, mini-s390.c: keep track of line
16408 numbers in the debug info (spotted by Geoff Norton, <gnorton@customerdna.com>).
16410 2004-07-24 Zoltan Varga <vargaz@freemail.hu>
16412 * mini-sparc.c (mono_arch_output_basic_block): Add CEE_CONV_U8/I8.
16414 * *-amd64*.*: Ongoing AMD64 work.
16416 2004-07-23 Zoltan Varga <vargaz@freemail.hu>
16418 * inssel-long.brg: Implement CONV_I8/CONV_U8 in the backends.
16420 * *-amd64*: Ongoing AMD64 work.
16422 * mini-arch.h: Add AMD64 support.
16424 * mini-sparc.c (mono_arch_is_inst_imm): New arch dependent function.
16426 * mini.h: Add new arch dependent function mono_arch_is_inst_imm.
16428 * mini-ops.h: Add new opcodes.
16430 * Makefile.am: Add AMD64 support.
16432 * inssel.brg inssel-long32.brg inssel-long.brg: Move mul/div and shift
16433 rules into the inssel-long*.brg files.
16435 * *-amd64.*: Add beginnings of AMD64 backend.
16437 2004-07-22 Ben Maurer <bmaurer@ximian.com>
16439 * mini.c (print_dfn): commenting out the code that prints
16440 the cil. With -O=deadce, this makes -v -v crash.
16442 * cpu-pentium.md: make checkthis have a length of 2
16444 2004-04-21 Bernie Solomon <bernard@ugsolutions.com>
16446 * mini-sparc.h: fix implementations of __builtin
16447 functions for Sun compiler for V9.
16449 2004-07-16 Ben Maurer <bmaurer@ximain.com>
16451 * mini.c: use the new stelem.ref wrapper
16452 * exceptions.cs, arrays.cs: new stelem.ref tests
16454 Wed Jul 14 19:08:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
16456 * mini-ppc.c, exceptions-ppc.c: cleanups and fixes (the
16457 new XSP should work with these changes).
16459 2004-07-14 Ben Maurer <bmaurer@ximain.com>
16461 * inssel-{long32,x86,}.brg: trivial optimizations.
16463 Mon Jul 12 20:25:57 CEST 2004 Paolo Molaro <lupus@ximian.com>
16465 * mini.c: load value when emitting box operation in
16468 2004-07-12 Ben Maurer <bmaurer@ximian.com>
16470 * mini-x86.c (OP_CHECK_THIS): cmp DWORD PTR [eax], eax
16471 is one byte shorter than cmp DWORD PTR [eax], 0.
16473 Mon Jul 12 17:47:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
16475 * inssel-ppc.brg: arguments on the stack are always
16476 relative to the stack pointer (spotted by Neale Ferguson).
16478 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16480 * exceptions-x86.c: delay appending the method name to the trace until
16481 after mono_jit_info_table_find is called, as this gets the real
16484 2004-07-09 Ben Maurer <bmaurer@ximian.com>
16486 * aot.c: register roots
16488 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
16490 * aot.c : I could just use PLATFORM_WIN32 flag.
16492 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
16494 * aot.c : Reverting the previous fix. This time it broke linux build.
16496 2004-07-09 Atsushi Enomoto <atsushi@ximian.com>
16498 * aot.c : quick cygwin build fix. mkdir() with two args does not exist.
16500 2004-07-08 Zoltan Varga <vargaz@freemail.hu>
16502 * mini.c (handle_stack_args): Remove some more debugging code.
16504 * mini.c (handle_stack_args): Remove debug output left in by mistake.
16506 * driver.c mini.h aot.c: Allow additional options to be specified with
16507 --aot and pass them to mono_compile_assembly.
16509 * aot.c: Add experimental code to AOT compile all loaded assemblies
16510 on demand and save the code into a cache in the filesystem.
16512 * aot.c: Add support for more wrapper methods.
16514 * mini.c (handle_stack_args): Handle some corner cases. Fixes
16517 * cpu-*.md: Remove removed opcodes.
16519 * mini.h mini.c: Move JIT icall handling to icall.c. Replace usage of
16520 CEE_MONO_PROC<x> with CEE_MONO_ICALL. Move registration of marshalling
16521 related icalls to marshal.c.
16523 2004-07-06 Zoltan Varga <vargaz@freemail.hu>
16525 * mini-ops.h: Add OP_SAVE_LMF and OP_RESTORE_LMF.
16527 * Makefile.am (EXTRA_DIST): Add inssel-long[32].brg.
16529 * inssel.brg: Fix warning. Add rules for SAVE_LMF and RESTORE_LMF.
16531 2004-07-06 Ben Maurer <bmaurer@ximian.com>
16532 * liveness.c: If liveness is recomputated we need to reset the information
16533 for each variable. This way, if the liveness range has been narrowed
16534 by optimizations that happened after the last computation, we can return
16537 For example, if you have
16542 // Tons of code that does not affect i
16548 i = 0 is dead code and will be removed by SSA. However, when
16549 linear scan gets to the code, i will still appear to be live
16550 throughout the entire block. This prevents good register allocation.
16552 2004-07-06 Martin Baulig <martin@ximian.com>
16554 * debug-mini.c (mono_debug_init_method): Allow
16555 MONO_WRAPPER_MANAGED_TO_NATIVE wrappers.
16556 (mono_debug_add_icall_wrapper): New method.
16558 * mini.c (mono_icall_get_wrapper): Call mono_debug_add_icall_wrapper().
16560 2004-07-05 Zoltan Varga <vargaz@freemail.hu>
16562 * mini.c (optimize_branches): Fix linking of bblocks in branch->branch
16565 2004-07-03 Zoltan Varga <vargaz@freemail.hu>
16567 * aot.c (mono_aot_load_method): Fix loading of debug info.
16569 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
16571 * aot.c: Add logging support.
16573 2004-07-01 Zoltan Varga <vargaz@freemail.hu>
16575 * mini.h: Add prototype for mono_print_method_from_ip.
16577 * mini.c: 64 bit fixes. Use LCOMPARE for comparing longs.
16579 * inssel.brg: 64 bit fixes.
16581 * inssel.brg inssel-long32.brg: Move 32 bit arithmetic rules to
16584 * Makefile.am: Add SPARC64 support.
16586 2004-07-02 Zoltan Varga <vargaz@freemail.hu>
16588 * aot.c: Fix alignment problems on 32 bit platforms.
16590 2004-07-01 Zoltan Varga <vargaz@freemail.hu>
16592 * helpers.c (mono_disassemble_code): Pass -xarch=v9 to assembler on
16595 * aot.c: Add SPARC64 support. Reorganize patch table to fix alignment
16598 * mini.h: Bump AOT file version. Some 64 bit fixes.
16600 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
16602 * inssel-sparc.brg: Add new rule to avoid register moves.
16604 * inssel.brg: Add ldind_to_load_membase helper function.
16606 2004-06-30 Ben Maurer <bmaurer@ximian.com>
16608 * mini.c: OffsetToStringData intrinsic.
16610 2004-06-30 Zoltan Varga <vargaz@freemail.hu>
16612 * ssa.c: Handle OP_LCOMPARE the same as OP_COMPARE.
16614 * objects.cs exceptions.cs basic.cs basic-long.cs basic-calls.cs: New
16617 * mini-ops.h cpu-sparc.md mini-sparc.h mini-sparc.c exceptions-sparc.c tramp-sparc.c inssel-long.brg: Add SPARC64 support.
16618 Mon Jun 28 18:05:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
16620 * mini.c: reinstated mono_compile_get_interface_var()
16621 on x86, too, since the change breaks the Gtk# build there as well.
16623 Fri Jun 25 17:36:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16625 * driver.c: remove loop from the default optimizations: it seems to
16626 interact badly with some of the other options (see bug #60613).
16628 2004-06-25 Zoltan Varga <vargaz@freemail.hu>
16630 * mini.c mini-x86.h mini-x86.c: Applied patch from Guenter Feldmann
16631 (fld@informatik.uni-bremen.de): Add Solaris x86 support.
16633 Tue Jun 22 21:29:11 CEST 2004 Paolo Molaro <lupus@ximian.com>
16635 * mini-ppc.c, cpu-g4.md: small updates to be able to compile
16636 vararg-using methods.
16638 2004-06-21 Martin Baulig <martin@ximian.com>
16640 * mini/mini-exceptions.c
16641 (mono_handle_exception): Added `gpointer original_ip' argument.
16642 After calling mono_unhandled_exception(), call
16643 mono_debugger_unhandled_exception() and if that returns true,
16644 restore the context and return.
16646 Mon Jun 21 19:26:40 CEST 2004 Paolo Molaro <lupus@ximian.com>
16648 * mini-ppc.c: prefer the use of relative branches so
16649 they won't need to be patched in aot code (patch from Patrick Beard).
16651 Mon Jun 21 19:03:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16653 * aot.c: patch from Patrick Beard to make the output assembly
16654 more correct for the MacOSX assembler. Small tweak to
16655 generate sane images on Linux/PPC, too.
16657 Fri Jun 18 18:24:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16659 * mini.c, mini.h, mini-ppc.c: handle varargs methods with a special
16660 case until bug #59509 is fixed (shows up in #60332).
16662 Tue Jun 15 16:36:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16664 * mini.c: make sure the needed wrappers are compiled, too, with
16667 Mon Jun 14 18:36:08 CEST 2004 Paolo Molaro <lupus@ximian.com>
16669 * driver.c: remove NPTL reference in --version output.
16671 Sun Jun 13 17:25:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
16673 * aot.c: patch from Patrick Beard (pcbeard@mac.com) to
16674 generate valid assembly for the Mach-O assembler.
16676 Sun Jun 13 15:59:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
16678 * driver.c: don't include abcrem in the all optimization specifier
16679 since it slows down jit compilation too much for now.
16681 2004-06-12 Ben Maurer <bmaurer@users.sourceforge.net>
16683 * mini.c: use BIGMUL only if both operands have the same signage.
16684 * iltests.il: Test for bug 60056. (errors related to signage in
16689 Thu Jun 10 16:06:42 CEST 2004 Paolo Molaro <lupus@ximian.com>
16691 * mini.c, aot.c: memory leak fixes.
16693 Tue Jun 8 16:37:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
16695 * inssel-long32.brg: implemented a few missing ulong cast opcodes.
16697 Tue Jun 8 15:36:30 CEST 2004 Paolo Molaro <lupus@ximian.com>
16699 * Makefile.am: remove the -static hack completely, it links in
16700 statically glib as well.
16702 Sat Jun 5 16:32:33 CEST 2004 Paolo Molaro <lupus@ximian.com>
16704 * iltests.il, mini.c: fixed bug#59580 in branch optimization.
16705 * exceptions.cs: make it compile with new mcs/csc.
16707 2004-06-03 Massimiliano Mantione <massi@ximian.com>
16708 * cpu-pentium.md basic-float.cs Fixed bug on fpu spills (see bug 54467),
16709 and added relevant test case.
16711 Mon May 31 19:41:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16713 * mini.c revert Zoltan's fix to bug#58863 on ppc, since it causes
16714 regressions in gtk-sharp.
16716 2004-05-29 Zoltan Varga <vargaz@freemail.hu>
16718 * exceptions.cs: New regression tests.
16720 * jit-icalls.c (mono_llmult_ovf): Fix some boundary conditions.
16722 Sat May 29 10:45:58 CEST 2004 Paolo Molaro <lupus@ximian.com>
16724 * mini.c: emit castclass/isinst in their own trees (bug #54209/59057).
16726 2004-05-28 Zoltan Varga <vargaz@freemail.hu>
16728 * mini-sparc.h (MONO_ARCH_NEED_DIV_CHECK): Define this.
16730 * cpu-sparc.md mini-sparc.c: Add overflow detection to div opcodes.
16732 2004-05-28 Patrik Torstensson <totte@hiddenpeaks.com>
16734 * mini.c (mono_jit_runtime_invoke): Init class in this
16735 method instead of trusting mono_jit_compile_method to
16736 do the work (because wrappers can be in object class)
16738 2004-05-27 Zoltan Varga <vargaz@freemail.hu>
16740 * mini-sparc.c (mono_arch_output_basic_block): Fix sub.imm.
16742 * basic-long.cs: New regression test.
16744 Thu May 27 15:50:52 CEST 2004 Paolo Molaro <lupus@ximian.com>
16746 * cpu-g4.md, mini-ppc.c: fixes to long add/sub ovf opcodes
16747 and div/rem checks.
16749 Thu May 27 12:36:53 CEST 2004 Paolo Molaro <lupus@ximian.com>
16751 * Makefile.am: fix miguel's change to build mono statically against
16752 libmono (track build dependencies).
16754 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
16756 * cfold.c: Some glib versions do not have G_MININT32.
16758 2004-05-26 Massimiliano Mantione <massi@ximian.com>
16760 * mini-x86.c cpu-pentium.md Makefile.am basic-math.cs: Fixed problem
16761 with precision of tan, atan, sin and cos, and implemented related
16762 regressions tests (fixes bug 54467, but one new problem appeared and
16765 2004-05-26 Zoltan Varga <vargaz@freemail.hu>
16767 * cfold.c (FOLD_BINOPZ): Avoid division by zero.
16769 * exceptions.cs: Add test for constant folding && division by zero.
16771 * driver.c mini.h mini.c mini-x86.c: Revert most of the previous patch
16772 since driver.c is in libmono too, so the optimization was useless.
16774 * driver.c mini.h mini.c mini-x86.c: Moved the mono_lmf_addr TLS
16775 variable to driver.c so the compiler can emit more efficient code to
16778 2004-05-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
16780 * Makefile.am: don't distribute generated inssel.[ch] files.
16782 2004-05-25 Zoltan Varga <vargaz@freemail.hu>
16784 * mini.c (mono_jit_compile_method_with_opt): Really emit icall wrappers
16785 into the default appdomain. Fixes #58707.
16787 * jit-icalls.c: Remove the broken approximation for truncl, doing
16788 no conversion is better.
16790 * mini.c (handle_stack_args): Avoid reusing variables for stack slots.
16793 Tue May 25 14:33:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
16795 * mini-ops.h, mini-ppc.c, cpu-g4.md, inssel-ppc.brg: eliminate the use
16796 of the mcrxr instruction which is not available on some processors
16797 even if it's documented to be. Implement add and sub overflow correctly
16798 (still not complete for long unsigned). Speed up icalls a bit.
16800 2004-05-25 13:01 CET Patrik Torstenson <totte@hiddenpeaks.com>
16802 * mini.c (mono_jit_compile_method_with_opt): Make sure that
16803 we run .cctor in the current domain instead of target_domain.
16805 Fixes bug #58558, .cctor not being called in -O=shared.
16807 Tue May 25 12:46:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
16809 * mini-ppc.h, jit-icalls.c: added explicit checks for divide by zero.
16811 2004-05-24 Ben Maurer <bmaurer@users.sourceforge.net>
16813 * mini-x86.c (EMIT_COND_BRANCH): If an OP_LABEL has an offset
16814 which can be done with an imm8, do it that way.
16815 (mono_arch_output_basic_block): ditto for a jmp
16816 (mono_arch_emit_prolog): Computate maximum offset of a label.
16818 2004-05-24 18:18 CET Patrik Torstenson <totte@hiddenpeaks.com>
16820 * mini-x86.c (mono_arch_local_regalloc): the reg allocator
16821 now tries to allocate prefered physical reg's for virtual
16822 regs. This reduces the number of emited spills/loads with
16823 20-30% on our core assemblies.
16825 Mon May 24 18:21:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
16827 * jit-icalls.c: truncl() is not needed and trunc() is
16828 the correct thing to do anyway (bug #58287).
16830 2004-05-24 Zoltan Varga <vargaz@freemail.hu>
16832 * mini-sparc.c (mono_arch_flush_icache): Call sync_instruction_memory
16835 Mon May 24 12:49:45 CEST 2004 Paolo Molaro <lupus@ximian.com>
16837 * driver.c: enable loop optimizations by default.
16839 Mon May 24 11:13:46 CEST 2004 Paolo Molaro <lupus@ximian.com>
16841 * mini-x86.c: fix calc of max loop size when aligning loops start.
16843 2004-05-23 Zoltan Varga <vargaz@freemail.hu>
16845 * ssa.c (mono_ssa_cprop): Allocate carray dynamically instead of on
16848 2004-05-22 Zoltan Varga <vargaz@freemail.hu>
16850 * mini-sparc.c (mono_arch_output_basic_block): ADD_IMM and SUB_IMM
16853 * basic-long.cs: Add tests for add/subtract of immediates with carry.
16855 * mini.c exceptions-x86.c: Remove MONO_USE_EXC_TABLES stuff.
16857 * mini.c (inline_method): Allways inline some wrappers even if the cost
16858 is too large. Fixes #58785.
16860 * mini.c: Add support for MARSHAL_CONV_FTN_DEL.
16862 2004-05-21 Zoltan Varga <vargaz@freemail.hu>
16864 * mini-sparc.c exceptions-sparc.c: Applied patch from Mark Crichton
16865 (crichton@gimp.org). Beginning of support for sparc/linux.
16867 * mini-sparc.c: Optimize retrieval of LMF address.
16869 Fri May 21 08:00:12 EDT 2004 Paolo Molaro <lupus@ximian.com>
16871 * exceptions-ppc.c: handle alloca in methods with clauses.
16873 Fri May 21 07:35:30 EDT 2004 Paolo Molaro <lupus@ximian.com>
16875 * mini-ppc.c: cleanups, off-by-one fixes, avoid recursive thunks.
16877 2004-05-20 Lluis Sanchez Gual <lluis@ximian.com>
16879 * mini.c: Delegate most of the abort signal work to
16880 mono_thread_request_interruption, which also handles Stop and Suspend
16883 2004-05-20 Zoltan Varga <vargaz@freemail.hu>
16885 * mini.c mini.h: Allow inlining of icall wrappers if the backend
16886 supports the save/restore lmf opcodes.
16888 2004-05-19 Zoltan Varga <vargaz@freemail.hu>
16890 * mini-x86.c (mono_arch_setup_jit_tls_data): Handle code generated
16891 by gcc-3.4 as well.
16893 * mini-x86.h mini-x86.c tramp-x86.c: Optimize lmf restoring code.
16895 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
16897 * mini.h mini.c (mini_method_compile): Only run abc removal pass on
16898 methods which contain array accesses.
16900 * mini.c (CEE_LDTOKEN): Handle this instruction correctly on bb
16901 boundaries. Fixes #58537.
16903 * iltests.il: Add regression test for #58537.
16905 2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
16907 * mini-x86.c (mono_arch_local_regalloc): Last part of
16908 fix for bug #58633 (releasing register to early).
16910 2004-05-18 Miguel de Icaza <miguel@ximian.com>
16912 * basic-long.cs: Add new regression test.
16914 2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
16916 * mini-x86.c (mono_arch_local_regalloc): Avoid releasing a
16917 register too early on the chain.
16919 2004-05-18 Zoltan Varga <vargaz@freemail.hu>
16921 * mini.c (create_helper_signature): Use a helper function to reduce
16922 the code which needs to be written. Also set the calling convention of
16923 icalls on windows. Fixes #57840.
16925 Tue May 18 11:05:18 CEST 2004 Paolo Molaro <lupus@ximian.com>
16927 * mini.h, exceptions-x86.c, exceptions-sparc.c, exceptions-s390.c,
16928 exceptions-ppc.c: added helper function to get the instruction address
16929 from a signal handler context.
16931 2004-05-17 Ben Maurer <bmaurer@users.sourceforge.net>
16933 * helpers.c: use g_get_tmp_dir. Invokes happyness
16936 2004-05-17 Ben Maurer <bmaurer@users.sourceforge.net>
16938 * helpers.c: Add new env variable to pass args to objdump.
16939 Specifically for those of us who love -Mintel. r=miguel, gonzalo.
16941 2004-05-17 Radek Doulik <rodo@ximian.com>
16943 * Makefile.am (common_sources): added abcremoval.h so it get
16944 disted and daily mono packages on go-mono.com will build again
16946 2004-05-17 Massimiliano Mantione <massi@ximian.com>
16948 * abcremoval.c: Fixed coding style, added copyright header.
16950 * abcremoval.h: Fixed style and moved prototype to mini.h, added copyright header.
16952 * mini.h: Added prototype for abc removal main function.
16954 * build_relations_propagation_table.pl: Added copyright header.
16956 2004-05-16 Patrik Torstensson <totte@hiddenpeaks.com>
16958 * basic-long.cs: reg test for complex ceq_long bug.
16960 2004-05-16 Patrik Torstensson <totte@hiddenpeaks.com>
16962 * mini-x86.c (mono_arch_local_regalloc): Correctly free
16963 reg in long and clob case (bug #58343). Fixed/added comments.
16965 2004-05-14 Ben Maurer <bmaurer@users.sourceforge.net>
16967 * mini.c (mono_jit_runtime_invoke): Follow new convention
16968 of calling the invoke method with an function pointer.
16970 2004-05-14 Zoltan Varga <vargaz@freemail.hu>
16972 * ChangeLog: Fix author of memory leak patch.
16974 Fri May 14 15:13:06 CEST 2004 Paolo Molaro <lupus@ximian.com>
16976 * Makefile.am: fix make dist as well...
16979 2004-05-14 Massimiliano Mantione <massi@ximian.com>
16981 * cfold.c: Made so that conversions from pointer to int4 are no-ops
16982 on archs where pointers are 4 bytes long.
16984 * Makefile.am: Added abcremoval.c source file.
16986 * abcremoval.c: Added abcremoval.c.
16988 * abcremoval.h: Added abcremoval.h.
16990 * build_relations_propagation_table.pl: Added build_relations_propagation_table.pl.
16992 * inssel.brg: Enabled bounds check removal.
16994 * mini.c: Added support for abcrem optimization.
16996 * mini.h: Added abcrem optimization label.
16998 * driver.c: Added support for abcrem optimization.
17000 * propagated_relations_table.def: Added propagated_relations_table.def.
17002 Fri May 14 14:30:13 CEST 2004 Paolo Molaro <lupus@ximian.com>
17004 * mini.c, cfold.c: fix style.
17006 Fri May 14 14:28:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17008 * mini.c: handle issue with the low-level implementation of
17009 some long opcodes (bug #54209).
17011 2004-05-13 Ben Maurer <bmaurer@users.sourceforge.net>
17013 * basic.cs: test for my new cmov stuff.
17015 2004-05-13 Patrik Torstensson
17017 * mini-x86.c: added OP_X86_COMPARE_MEMBASE_IMM peephole
17018 opt and added peephole documentation.
17020 Thu May 13 11:41:49 CEST 2004 Paolo Molaro <lupus@ximian.com>
17022 * tramp-ppc.c: rewrote the generic trampoline code.
17024 2004-05-11 Patrik Torstensson
17026 * mini-x86.c: optimize long shl/shr asm code (one less branch)
17028 2004-05-11 Zoltan Varga <vargaz@freemail.hu>
17030 * basic.cs basic-long.cs objects.cs: Make these compile under MS csc.
17032 * mini.h mini.c dominators.c: Applied patch from Derek Woo
17033 (derek@eecg.toronto.edu): Fix memory leaks in loop optimizations.
17035 * mini.c: Add new icalls for AsAny marshalling.
17037 Tue May 11 16:00:38 CEST 2004 Paolo Molaro <lupus@ximian.com>
17039 * tramp-ppc.c, mini-ppc.c: more cleanups.
17041 2004-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17043 * mini.c: no warnings.
17045 Tue May 11 13:59:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17047 * mini-ppc.c, mini.c: use mono_resolve_patch_target ().
17049 2004-05-11 Lluis Sanchez Gual <lluis@ximian.com>
17051 * mini.c: In the thread abort signal handler, if the thread is in the
17052 process of being stoped, don't throw the Abort exception, just stop the
17055 Tue May 11 12:15:24 CEST 2004 Paolo Molaro <lupus@ximian.com>
17057 * tramp-ppc.c: removed old code.
17059 Tue May 11 12:02:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17061 * mini.h, mini-ppc.c, cfold.c: export mono_is_power_of_two().
17062 do some simple speed optimizations on ppc.
17064 Mon May 10 17:21:00 CEST 2004 Paolo Molaro <lupus@ximian.com>
17066 * mini-ppc.c, cpu-g4.md: fixes to handle large stack frames
17067 and large offsets in load/store.
17069 2004-05-07 Zoltan Varga <vargaz@freemail.hu>
17071 * mini-x86.c (mono_arch_local_regalloc): Remove the previous fix, since
17072 it causes regressions.
17074 2004-05-07 Zoltan Varga <vargaz@freemail.hu>
17076 * mini-sparc.c: Fix vararg support + add beginnings of sigaltstack
17079 Fri May 7 13:25:50 CEST 2004 Paolo Molaro <lupus@ximian.com>
17081 * jit-icalls.c: remove warnings.
17082 * inssel-x86.brg, inssel.brg, mini-x86.c, cfold.c: some simple
17083 speedups for unsafe code.
17085 2004-05-07 Ben Maurer <bmaurer@users.sourceforge.net>
17087 * inssel.brg: Optimize Stind.[ui][12]. r=zoltan.
17089 2004-05-06 Zoltan Varga <vargaz@freemail.hu>
17091 * basic-calls.cs: Add new regression test.
17093 * mini.c (mono_runtime_install_handlers): Use SA_ONSTACK since it is
17096 * mini.c (mono_method_to_ir): Handle opcode emulation for *_OVF opcodes.
17098 * mini-x86.c (mono_arch_local_regalloc): Free new_dest register when it
17101 2004-05-06 Patrik Torstensson
17103 * mini-x86.[c|h], inssel-x86.brg, cpu-pentium.md, mini.c: enabled
17104 long reg allocation in any reg (not only eax:edx) and implemented
17105 long shl/shr ops in asm instead of helpers.
17107 2004-05-05 Zoltan Varga <vargaz@freemail.hu>
17109 * mini-sparc.h: Fix warnings.
17111 * exceptions-sparc.c (mono_arch_find_jit_info): Pop unused lfm off the
17114 * mini-exceptions.c (mono_handle_exception): Call the filter in a
17115 separate statement for clarity.
17117 * mini-sparc.c: Update status.
17119 2004-05-04 Zoltan Varga <vargaz@freemail.hu>
17121 * mini-exceptions.c (ves_icall_get_frame_info): Flush register windows
17124 Mon May 3 22:58:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17126 * inssel-ppc.brg: another small pre-release workaround:
17127 we don't do overflow detection for long_sub_un.
17129 Sun May 2 20:12:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17131 * mini.c, mini-ops, inssel-long32.brg: speedup ulong >> 32
17132 (also works around a weird ppc bug: 57957).
17134 Sat May 1 16:56:10 EDT 2004 Paolo Molaro <lupus@ximian.com>
17136 * tramp-ppc.c: trampoline fixes.
17138 Fri Apr 30 15:54:26 EDT 2004 Paolo Molaro <lupus@ximian.com>
17140 * mini-ppc.c: fixed typos.
17142 Thu Apr 29 20:15:41 CEST 2004 Paolo Molaro <lupus@ximian.com>
17144 * mini-ppc.c, exceptions-ppc.c: more code saves registers
17145 at the top of the stack. Fixed typos. Use a frame registers
17146 for all the methods with exception clauses.
17148 Thu Apr 29 18:52:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17150 * exceptions-ppc.c: restore fp registers.
17152 Thu Apr 29 18:26:56 CEST 2004 Paolo Molaro <lupus@ximian.com>
17154 * mini-ppc.c, exceptions-ppc.c: save the registers in reverse
17155 order from the stack top (moved the stack room to save the
17156 return value for trace after the param area). Fixed corruption
17157 in restoring registers on unwind.
17159 Thu Apr 29 16:47:15 CEST 2004 Paolo Molaro <lupus@ximian.com>
17161 * mini-ppc.c, cpu-g4.md: fixed unisgned -> double conversion.
17163 Thu Apr 29 13:50:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17165 * exceptions-ppc.c, mini-ppc.h, mini-ppc.c: fixed localloc
17166 and prolog/epilog for methods that use it. Allow
17167 enough param area room for varargs methods. Fix miguel's
17168 breakage in exception handling.
17170 Thu Apr 29 12:06:51 CEST 2004 Paolo Molaro <lupus@ximian.com>
17172 * Makefile.am: run genmdesc only on current arch.
17174 2004-04-29 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17176 * exceptions-x86.c:
17177 * mini-x86.h: fix the build on windows.
17179 2004-04-28 Zoltan Varga <vargaz@freemail.hu>
17181 * 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.
17183 * exceptions-sparc.c exceptions-ppc.c exceptions-s390.c mini-ppc.h mini-s390.h mini-sparc.h: Fix up ports after changes.
17185 * mini-exceptions.c: New file.
17187 * mini.c mini-exceptions.c mini-x86.h exceptions-x86.c Makefile.am:
17188 Move some parts of the x86 exception handling code to an
17189 arch-independent file so it can be shared with other ports.
17191 Tue Apr 27 12:15:59 CEST 2004 Paolo Molaro <lupus@ximian.com>
17193 * trace.c, cpu-g4.md, inssel-ppc.brg, mini-ppc.c: some fixes for FP code.
17195 2004-04-26 David Waite <mass@akuma.org>
17197 * driver.c: remove comma from end of enumeration declaration
17199 2004-04-26 Jackson Harper <jackson@ximian.com>
17201 * driver.c: parse config file before loading first assembly. This
17202 allows the user gac to be enabled/disabled.
17204 2004-04-23 Miguel de Icaza <miguel@ximian.com>
17206 * mini-ppc.c (ppc_patch): Replaced the branch code patching with a
17207 simpler mechanism: we do not care what is encoded initially
17208 (branch absolute or relative), we care about the code and its
17209 target. I kept the old code for reference for now.
17211 The new code tries first to determine if the jump is anywhere in
17212 the -/+32 absolute meg range, if it succeeds, it encodes using the
17213 absolute branch; If not, it tried to find something in the
17214 relative range, if not, it uses the handle_thunk code.
17216 Fri Apr 23 14:20:40 EDT 2004 Paolo Molaro <lupus@ximian.com>
17218 * exceptions-ppc.c: use the correct ip register on macosx.
17220 Thu Apr 22 13:23:16 EDT 2004 Paolo Molaro <lupus@ximian.com>
17222 * exceptions.c, mini.c, mini-ppc.h: adapt code to macosx.
17224 Thu Apr 22 18:08:37 CEST 2004 Paolo Molaro <lupus@ximian.com>
17226 * mini-ppc.c, cpu-g4.md: made the branch macros more flexible.
17227 Raise exception on integer divide by zero by hand since the hw
17228 doesn't support it. Handle NaNs in FP compares.
17230 Thu Apr 22 16:10:31 CEST 2004 Paolo Molaro <lupus@ximian.com>
17232 * exceptions-ppc.c, mini-ppc.h, mini.c: simplified some
17233 code reducing duplication between the platforms and enabled
17234 signal exception handling (on linux for now).
17236 Wed Apr 21 12:27:48 EDT 2004 Paolo Molaro <lupus@ximian.com>
17238 * exceptions-ppc.c: more macosx support.
17240 Wed Apr 21 16:38:28 CEST 2004 Paolo Molaro <lupus@ximian.com>
17242 * mini-ppc.h, mini-ppc.c, cpu-g4.md: enable bigmul optimization.
17244 Wed Apr 21 16:20:32 CEST 2004 Paolo Molaro <lupus@ximian.com>
17246 * mini.h, mini-ppc.c, cpu-g4.md: support for implicit exceptions.
17248 2004-04-19 Ben Maurer <bmaurer@users.sourceforge.net>
17250 * iltests.il: more tests.
17252 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
17254 * mini-*.c (mono_arch_get_allocatable_int_vars): Skip written-only
17257 Mon Apr 19 19:39:47 CEST 2004 Paolo Molaro <lupus@ximian.com>
17259 * mini-ppc.c: some fixes to bootstrap mcs/corlib/etc.
17261 2004-04-19 Zoltan Varga <vargaz@freemail.hu>
17263 * liveness.c: Mark variables as volatile in all basic blocks reachable
17264 from exception clauses.
17266 2004-04-18 Zoltan Varga <vargaz@freemail.hu>
17268 * exceptions.cs (test_0_rethow_stacktrace): Make this work with
17271 2004-04-18 Ben Maurer <bmaurer@users.sourceforge.net>
17273 * iltests.il, basic.cs: more tests for regalloc.
17275 2004-04-17 Ben Maurer <bmaurer@users.sourceforge.net>
17277 * iltests.il: Some tests for register allocation modifications
17280 2004-04-16 Zoltan Varga <vargaz@freemail.hu>
17282 * exceptions.cs: Add regression test for bug #56782.
17284 * exceptions-*.c (mono_arch_handle_exception): Do not overwrite the
17285 original stack trace if an exception is rethrown. Fixes #56782. Oh,
17286 the beauty of fixing the same thing in 5 different files...
17288 2004-04-15 Zoltan Varga <vargaz@freemail.hu>
17290 * mini.c (mono_method_to_ir): Do not compute coverage for inlined
17293 2004-04-14 Zoltan Varga <vargaz@freemail.hu>
17295 * mini.c: Add support for STRWLPARRAY marshalling convention.
17297 Wed Apr 14 18:15:55 CEST 2004 Paolo Molaro <lupus@ximian.com>
17299 * exceptions-ppc.c: missing fixes in mono_jit_walk_stack (need
17300 to init the context to setup the regs pointer).
17302 Wed Apr 14 17:59:09 CEST 2004 Paolo Molaro <lupus@ximian.com>
17304 * exceptions-ppc.c: more exceptions work.
17306 Wed Apr 14 17:46:22 CEST 2004 Paolo Molaro <lupus@ximian.com>
17308 * mini.c: avoid reusing the same MonoInst on multiple trees: this is
17311 2004-04-13 Miguel de Icaza <miguel@ximian.com>
17313 * inssel-x86.brg (reg): Add new rules for add, sub and mul that
17314 can use the memory directly.
17316 * cpu-pentium.md: Update documentation from a post from Zoltan.
17318 add x86_add_membase, x86_sub_membase, x86_mul_membase
17320 2004-04-13 Miguel de Icaza <miguel@ximian.com>
17322 * mini-ppc.c: Remove unused definitions FLOAT_REGS and
17323 GENERAL_REGS they were also hardcoded for all PPC ports.
17325 (add_general): Use PPC_NUM_REG_ARGS instead of GENERAL_REGS.
17327 Remove hard-coded limit for floating point registers, use
17328 PPC_LAST_FPARG_REG instead in MONO_TYPE_R4 and MONO_TYPE_R8.
17330 Notice that in MacOS X calling conventions you can fit a lot more
17331 floating point values in registers, so I should update the PInvoke
17332 test to excercise the passing of floating point values on the
17333 stack (currently broken).
17335 2004-04-06 Miguel de Icaza <miguel@ximian.com>
17337 * tramp-ppc.c (create_trampoline_code): Added
17338 JUMP_TRAMPOLINE_SIZE.
17339 (ppc_magic_trampoline): Follow the pattern from
17340 x86_magic_trampoline: if code is set to zero, return.
17341 (create_trampoline_code): Always pass MonoMethod to the jump
17342 trampoline, before it was passing a null.
17343 (mono_arch_create_jump_trampoline): Implement the jump stub, could
17344 share the code with mono_arch_create_jit_trampoline.
17346 * mini-ppc.c (mono_arch_output_basic_block): CEE_JMP opcode
17348 (mono_arch_patch_code): MONO_PATCH_INFO_METHOD_JUMP patch type
17351 * cpu-g4.md: Added length for jmp instruction, the worst case
17352 scenario is 92 bytes (4 mandatory bytes, potential 19 registers
17355 2004-04-08 Zoltan Varga <vargaz@freemail.hu>
17357 * aot.c (mono_compile_assembly): Add back unlink removed by mistake.
17359 2004-04-07 Zoltan Varga <vargaz@freemail.hu>
17361 * mini.c: Only set bblock->real_offset when adding a new bblock, and
17362 before each IL instruction.
17364 * mini.c (CEE_BOX): Fix warnings.
17366 2004-04-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17368 * mini.c: removed a few unused vars and extra whitespace.
17370 2004-04-05 Ben Maurer <bmaurer@users.sourceforge.net>
17372 * inssel.brg (MONO_EMIT_BOUNDS_CHECK): a new macro to emit bounds
17374 (MONO_EMIT_BOUNDS_CHECK_IMM): the above, but when you know the
17376 (OP_GETCHR): use the above
17377 (CEE_LDELEMA): use the above.
17379 * inseel-x86.brg (MONO_EMIT_BOUNDS_CHECK): a faster and smaller
17380 version of the generic impl.
17381 (MONO_EMIT_BOUNDS_CHECK_IMM): the same
17382 (CEE_LDELEMA): use the above.
17384 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
17386 * inssel-long32.brg (CEE_CONV_OVF_I8): Sign extend the i4 value to i8.
17389 * iltests.il: Added new regression test for #56317.
17391 2004-04-05 Zoltan Varga <vargaz@freemail.hu>
17393 * mini-x86.c (mono_arch_setup_jit_tls_data): Use pthread_attr_get_np
17394 under NetBSD. Fixes #56450.
17396 * liveness.c (update_gen_kill_set): Fix previous patch.
17398 2004-04-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17400 * mini-x86.h: SA_STACK defined as SA_ONSTACK. Fixed build under NetBSD.
17402 2004-04-02 Zoltan Varga <vargaz@freemail.hu>
17404 * mini.c (mono_method_to_ir): Avoid handle_loaded_temps in
17405 ldsfld and ldsflda.
17407 * inssel-sparc.brg: Add more optimizations.
17409 * mini-sparc.c: Replace multiply/divide with shifts if possible.
17411 2004-04-01 Martin Baulig <martin@ximian.com>
17413 * mini.c (handle_box): New static function; moved the
17414 implementation of CEE_BOX here.
17415 (mono_method_to_ir): Added `constrained_call' variable.
17416 (mono_method_to_ir:CEE_CONSTRAINED_): Set it.
17417 (mono_method_to_ir:CEE_CALL): If `constrained_call' is set, use
17418 mono_method_get_constrained() to get the method.
17420 2004-04-01 Martin Baulig <martin@ximian.com>
17422 * mini.c (TYPE_PARAM_TO_TYPE, TYPE_PARAM_TO_CLASS): Removed.
17423 (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): Removed.
17424 (mono_method_to_ir): We don't need these macros anymore since
17425 mono_class_get_full() already takes care of it.
17427 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17429 * aot.c: set aot_verbose to 0, fixed format string that caused sigsegv,
17430 use @function (as doesn't accept #function here) and check the return
17431 value of system and stop if fails.
17433 2004-03-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17435 * mini.c: set the timeout to 2s when calling mono_domain_finalize.
17437 2004-03-31 Zoltan Varga <vargaz@freemail.hu>
17439 * mini-ppc.c (mono_arch_patch_code): Fix ppc build.
17441 * inssel-sparc.brg mini-sparc.c aot.c: Implement AOT support.
17443 * inssel-long32.brg (OP_LNEG): Use ADC instead of ADD here. Fixes
17446 * basic-long.cs: Add test for negation of Int64.MinValue.
17448 2004-03-30 Zoltan Varga <vargaz@freemail.hu>
17450 * mini-sparc.c: Update status.
17452 * mini-sparc.c tramp-sparc.c: Save lmf in trampolines.
17454 * exceptions-sparc.c: Fix return value in filters.
17456 * inssel-sparc.brg: Fix register allocation in some rules.
17458 2004-03-28 Martin Baulig <martin@ximian.com>
17460 * mini.c (mmono_method_to_ir): In CEE_STELEM, do a handle_stobj()
17463 2004-03-28 Zoltan Varga <vargaz@freemail.hu>
17465 * mini-x86.c (mono_arch_patch_code): Fix warnings.
17467 * mini-x86.c (mono_arch_output_basic_block): Fix CEE_MUL_OVF_UN if
17468 dreg is not EAX. Thanks to Willibard Krenn for spotting this. Also
17469 remove unused conv_u4 opcode.
17471 * mini-x86.c: Remove valgrind workaround since it slows down things
17472 even when mono is not run under valgrind.
17474 2004-03-26 Zoltan Varga <vargaz@freemail.hu>
17476 * mini-sparc.c: Update status.
17478 * inssel-sparc.brg: Add some optimizations.
17480 * inssel-sparc.brg mini-sparc.c: Rework branch instructions to allow
17481 future delay slot filling. Add support for varargs, tail calls and JMP.
17483 * inssel.brg mini-ops.h mini.c: Use OP_REFANYTYPE instead of
17484 CEE_REFANYTYPE, since CEE_REFANYTYPE needs a prefix to be unique.
17486 * inssel.brg: Fix register allocation in OP_ARGLIST.
17488 * inssel.brg: Fix warnings.
17490 2004-03-25 Martin Baulig <martin@ximian.com>
17492 * mini.c (inflate_generic_field): Removed.
17493 (mini_get_method): Removed, use mono_get_method_full(),
17494 (mini_get_class): Removed, use mono_class_get_full().
17495 (mono_method_to_ir): Pass our generic context to
17496 mono_field_from_token().
17498 2004-03-25 Martin Baulig <martin@ximian.com>
17500 * mini.c (mini_get_class): Take a `MonoGenericContext *' instead
17501 of a `MonoMethod *'.
17502 (mini_get_method): Take a `MonoGenericContext *' instead
17503 of a `MonoMethod *'.
17504 (TYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_TYPE): mono_method_to_ir() has
17505 a new local variable called `generic_context' which holds the
17506 current `MonoGenericContext *'; use it to lookup things.
17508 2004-03-24 Martin Baulig <martin@ximian.com>
17510 * mini.c (mini_get_class): New static method; if we're inside a
17511 generic instance, inflate the class if neccessary.
17512 (mono_method_to_ir): Use mini_get_class() instead of mono_class_get().
17514 2004-03-24 Zoltan Varga <vargaz@freemail.hu>
17516 * iltests.il: New regression test for #55976.
17518 * mini.c (mono_method_to_ir): Empty the stack in endfinally. Fixes
17521 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
17523 * exceptions-sparc.c (mono_sparc_handle_exception): Remove debugging
17526 2004-03-23 Zoltan Varga <vargaz@freemail.hu>
17528 * liveness.c: Consider SSA stores as well as loads when making vars
17531 * exceptions.cs: New regression tests for register allocation.
17533 2004-03-22 Lluis Sanchez Gual <lluis@ximian.com>
17535 * mini-ppc.c, tramp-ppc.c: Added lock for accessing the domain code manager.
17536 * mini.c: Removed domain lock from mono_jit_compile_method_with_opt. Use
17537 domain lock only to protect puntual access to data structures.
17538 Added access lock for sighash, jit_icall_hash_name,
17539 jit_icall_hash_addr and domain->code_mp.
17541 2004-03-20 Zoltan Varga <vargaz@freemail.hu>
17543 * driver.c: Print SIGSEGV handling method.
17545 * mini-x86.c (mono_arch_free_jit_tls_data): Add missing ifdef.
17547 * mini.c (setup_jit_tls_data): Handle case when this is called
17548 multiple times for a thread.
17550 * mini-x86.c cpu-pentium.md: Fix floating point branch opcodes so fbxx
17551 is different from fbxx_un. Fixes #54303. Also use constants instead of
17552 magic numbers in a lot of places.
17554 2004-03-19 Zoltan Varga <vargaz@freemail.hu>
17556 * exceptions.cs: Fix cctor test when --regression is used.
17558 Thu Mar 18 19:57:56 CET 2004 Paolo Molaro <lupus@ximian.com>
17560 * mini-ppc.c, exceptions-ppc.c: basic exceptions support
17563 Thu Mar 18 19:56:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17565 * inssel-ppc.brg: fixed register assignments for some rules.
17567 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
17569 * exceptions.cs: Add test for exceptions in static constructors.
17571 * mini.c (mono_jit_compile_method_with_out): Move the calling of
17572 static constructors outside the domain lock. Fixes #55720.
17574 2004-03-17 Martin Baulig <martin@ximian.com>
17576 * mini.c (get_generic_field_inst): Removed, this'll never happen.
17577 (inflate_generic_field): Take the `MonoMethod *' instead of the
17578 `MonoClass *' and added support for generic method.
17579 (mono_method_to_ir): In CEE_LDSFLD and CEE_STSFLD, assert we never
17580 have a `field->parent->gen_params', only inflate the field if it's
17581 an open constructed type.
17583 2004-03-17 Zoltan Varga <vargaz@freemail.hu>
17585 * exceptions-x86.c (mono_arch_handle_exception): Allocate a new
17586 exception object instead of the preconstructed ones.
17588 2004-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17590 * mini.c: reverted changed to sigsegv_signal_handler commited
17591 accidentally in the previous patch.
17593 2004-03-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
17596 (mono_method_to_ir): CEE_CALLVIRT, abort if no method. It hanged when
17597 running --aot with an old assembly.
17599 2004-03-16 Zoltan Varga <vargaz@freemail.hu>
17601 * mini-sparc.c (mono_arch_instrument_epilog): Fix handling of floating
17604 * mini-sparc.c: Add support for v9 branches with prediction.
17606 2004-03-15 Bernie Solomon <bernard@ugsolutions.com>
17608 * mini.c (mini_init): #warning is GNUC only
17610 * mini-sparc.h: implement __builtin_frame_address
17611 and __builtin_return_address for Sun C compiler
17613 2004-03-15 Zoltan Varga <vargaz@freemail.hu>
17615 * exceptions-sparc.c (mono_arch_has_unwind_info): Add missing function.
17617 2004-03-14 Zoltan Varga <vargaz@freemail.hu>
17619 * basic-calls.cs: Add test for unaligned byref long argument passing.
17621 * mini-ops.h: Add sparcv9 compare and branch instructions.
17623 * inssel-sparc.brg mini-sparc.h mini-sparc.c cpu-sparc.md: Use some
17624 v9 instructions if we have a v9 cpu.
17626 * mini-sparc.c (mono_arch_get_global_int_regs): Use unused input
17627 registers for global allocation.
17629 * exceptions-sparc.c: Fixes.
17631 2004-03-11 Zoltan Varga <vargaz@freemail.hu>
17633 * liveness.c (mono_analyze_liveness): Optimized version.
17635 * inssel-sparc.brg cpu-sparc.md: Ongoing sparc work.
17637 * mini-sparc.h mini-sparc.c tramp-sparc.c exceptions-sparc.c: Ongoing
17640 * basic-float.cs basic-calls.cs: New regression tests.
17642 2004-03-10 Zoltan Varga <vargaz@freemail.hu>
17644 * mini-x86.h: Define SIGSEGV_ON_ALTSTACK only if we have a working
17645 sigaltstack implementation.
17647 * mini-x86.c (mono_arch_setup_jit_tls_data): Fix previous patch.
17649 * mini-x86.c (mono_arch_setup_jit_tls_data): Turn off the sigaltstack
17650 stuff if SIGSEGV_ON_ALTSTACK is not defined.
17652 2004-03-09 Zoltan Varga <vargaz@freemail.hu>
17654 * mini.c: Fix warnings.
17656 * mini.c (mono_resolve_patch_target): New function which contains the
17657 arch independent part of the patching process.
17659 * mini-x86.c (mono_arch_patch_code): Move arch independent parts of the
17660 patching code to a separate function.
17662 2004-03-09 Bernie Solomon <bernard@ugsolutions.com>
17664 * mini.c (add_signal_handler): ifdef out on Windows
17666 2004-03-08 Zoltan Varga <vargaz@freemail.hu>
17668 * mini-sparc.h mini-sparc.c inssel-sparc.brg exceptions-sparc.c
17669 cpu-sparc.md: Add exception handling support + other fixes.
17671 * driver.c: Print --help output to stdout. Fixes #55261. Also fix
17672 typed GC detection in --version.
17674 * basic.cs exceptions.cs: New regression tests.
17676 * mini.h mini-x86.h mini-ppc.h: Add MonoCompileArch structure where
17677 the arch specific code can store data during a compilation.
17679 * mini-ops.h: Add OP_SETFRET.
17681 * mini.c (mini_get_ldelema_ins): Instead of allways calling the same
17682 function, register a separate icall for each arity, so the icalls can
17685 * mini.c (mono_print_tree): Print negative offsets in a more readable
17688 * mini.c: Make signal handling work on sparc.
17690 * mini.c (mini_init): Add emulation for lconv_to_r8_un.
17692 * inssel-long32.brg: Fix OP_LSUB_OVF_UN rule.
17694 * jit-icalls.c: Emulate truncl by aintl on solaris.
17696 * jit-icalls.c (mono_lconv_to_r8_un): New icall emulation function.
17698 2004-03-05 Zoltan Varga <vargaz@freemail.hu>
17700 * mini.c (mini_init): fconv_to_ovf can raise exceptions.
17702 2004-03-04 Lluis Sanchez Gual <lluis@ximian.com>
17704 * mini.c: In CEE_ISINST and CEE_CASTCLASS, if the type is an interface or
17705 a MarshalByRef type, inline a method that performs the check, taking into
17706 account that the object can be a proxy. Also implemented tow new opcodes:
17707 CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17708 * inssel.brg: Implemented two new opcodes, mini-ops.h: OP_CISINST and
17709 OP_CCASTCLASS, which implement CEE_MONO_CISINST and CEE_MONO_CCASTCLASS.
17711 Tue Mar 2 17:23:48 CET 2004 Paolo Molaro <lupus@ximian.com>
17713 * mini-ppc.c: if a relative branch displacement is too big
17714 but it points to and area reachable with an absolute branch,
17717 Tue Mar 2 16:59:40 CET 2004 Paolo Molaro <lupus@ximian.com>
17719 * mini.c: optimize small copies in cpblk.
17721 2004-03-01 Zoltan Varga <vargaz@freemail.hu>
17723 * basic-calls.cs basic-float.cs: New regression tests.
17725 * mini-sparc.c inssel-sparc.brg mini-ops.h: Access local variables at
17726 negative offsets from %fp. Implement localloc. Fix local register
17727 allocation. Fix the case when the this argument needs to be saved to
17728 the stack. Implement some missing opcodes.
17730 2004-02-26 Zoltan Varga <vargaz@freemail.hu>
17732 * mini.c (mini_method_compile): Reenable global regalloc in methods
17733 with exception handlers.
17735 * linear-scan.c (mono_varlist_sort): Fix warning.
17737 * linear-scan.c (mono_linear_scan): Fix computation of used_regs.
17739 * mini-x86.c (mono_arch_regalloc_cost): Reenable precise computation of
17742 * liveness.c: Make all variables uses in exception clauses volatile, to
17743 prevent them from being allocated to registers. Fixes #42136.
17745 2004-02-25 Zoltan Varga <vargaz@freemail.hu>
17747 * mini-x86.c (mono_arch_regalloc_cost): Revert this change since it
17748 causes regressions.
17750 * mini.h linear-scan.c mini-x86.c mini-sparc.c mini-ppc.c: Add 'cfg'
17751 argument to mono_arch_regalloc_cost.
17753 * mini-x86.c (mono_arch_regalloc_cost): Compute regalloc costs
17756 2004-02-24 Zoltan Varga <vargaz@freemail.hu>
17758 * mini.h mini-x86.c mini-ppc.c mini-sparc.c linear-scan.c:
17759 Make the cost of allocating a variable to a register arch dependent.
17761 * basic-calls.cs: Fix compilation of tests.
17763 * mini.h mini.c tramp-x86.c mini-x86.c: Add mono_running_on_valgrind ()
17764 helper function to cut back on the number of #ifdefs needed.
17766 * mini-ppc.c: Fix compilation.
17768 * basic-calls.cs: New regression tests.
17770 * mini-sparc.c (mono_sparc_is_virtual_call): New helper function.
17772 * tramp-sparc.c (create_specific_trampoline): Use g5 register instead
17773 of l0 since that is callee saved.
17775 * tramp-sparc.c (sparc_magic_trampoline): Apply unbox trampoline only
17778 * mini-sparc.c: Ongoing work + flag virtual calls with a special kind
17779 of delay instruction.
17781 * inssel.brg (OP_CHECK_THIS): Set tree->sreg1 and dreg correctly.
17783 * mini.h (MonoCallInst): Add 'virtual' flag.
17785 * inssel.brg (mini_emit_virtual_call): Set 'virtual' flag.
17787 2004-02-23 Zoltan Varga <vargaz@freemail.hu>
17789 * *.cs: New regression tests.
17791 * mini-sparc.c inssel-sparc.brg: Update after latest changes. Ongoing sparc
17794 * mini.c (mono_runtime_install_handlers): Fix build.
17796 * mini.h (MonoJitTlsData): Add 'stack_size', 'signal_stack' and
17797 'signal_stack_size' members.
17799 * mini.h mini.c mini-x86.h mini-x86.c: Run sigsegv handlers on an
17800 alternate signal stack.
17802 * exceptions-x86.c: Add stack overflow handling.
17804 * mini.h mini.c mini-x86.c mini-ppc.c trace.h trace.c: Move tracing
17805 functions to arch independent code.
17807 * mini.c (mono_print_tree): Print more detailed info for load_membase
17810 2004-02-23 Martin Baulig <martin@ximian.com>
17812 * mini.c (mini_get_method): Set `gmethod->generic_inst'.
17814 Sun Feb 22 22:25:19 CET 2004 Paolo Molaro <lupus@ximian.com>
17816 * mini-x86.c: fixed reg allocation for div/rem.
17818 2004-02-22 Miguel de Icaza <miguel@ximian.com>
17820 * driver.c (mono_main): Report some configuratio options on --version.
17822 Fri Feb 20 11:01:44 PST 2004 Paolo Molaro <lupus@ximian.com>
17824 * mini-ppc.c: fixed clt.un, cgt.un. Optimized calls to functions
17825 low in the address space. Correctly flush memory in thunks where we
17826 output native code.
17828 2004-02-20 Martin Baulig <martin@ximian.com>
17830 * mini.c (mini_get_method): New static method; inflate all generic
17831 methods and methods in open generic instances.
17832 (mono_method_to_ir): Use mini_get_method() instead of mono_get_method().
17833 (ret_type_to_call_opcode): Added support for MONO_TYPE_GENERICINST.
17835 2004-02-19 Zoltan Varga <vargaz@freemail.hu>
17837 * mini-sparc.c (mono_arch_patch_code): Update after domain->code_mp changes.
17839 * tramp-sparc.c (mono_arch_create_jump_trampoline): Set ji->method.
17841 2004-02-19 Bernie Solomon <bernard@ugsolutions.com>
17843 * helpers.c (mono_disassemble_code): use Sun's dis if not using gcc
17845 * mini-sparc.c (flushi mono_arch_output_basic_block): make
17846 it compile using Sun's compiler.
17848 2004-02-19 Zoltan Varga <vargaz@freemail.hu>
17850 * 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.
17852 * basic-calls.cs basic-float.cs basic-long.cs objects.cs: New regression tests.
17854 Tue Feb 17 21:41:20 CET 2004 Paolo Molaro <lupus@ximian.com>
17856 * aot.c, mini-x86.c, mini.c: use the code manager instead of a mempool to hold native
17858 * mini-ppc.c: handle calls outside of the allowed range with thunks
17859 allocated using the code manager.
17860 * tramp-ppc.c: use the code manager to hold generated native code.
17861 Fixed the magic trampoline to just patch vtable entries.
17863 2004-02-17 Zoltan Varga <vargaz@freemail.hu>
17865 * inssel.brg inssel-x86.brg: Move call(immediate) rules to the platform
17868 2004-02-16 Zoltan Varga <vargaz@freemail.hu>
17870 * tramp-ppc.c (mono_arch_create_jump_trampoline): Fix compilation on
17873 * mini-x86.c: Call mono_arch_get_lmf_addr instead of mono_get_lmf_addr
17874 if we have a working __thread implementation.
17876 * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Remove
17877 OP_CALL_IMM opcodes, since the CALL opcodes handles immediates as well.
17879 2004-02-15 Zoltan Varga <vargaz@freemail.hu>
17881 * mini-x86.c: Fix compilation under gcc 2.
17883 2004-02-14 Zoltan Varga <vargaz@freemail.hu>
17885 * mini.c (mono_codegen): Avoid infinite loop when an icall wrapper
17886 contains a call to the wrapped function.
17888 * mini-ops.h cpu-pentium.md mini-x86.c inssel-x86.brg: Add
17889 OP_<CALL>_IMM opcodes, and use them under X86.
17891 * mini.c (mono_jit_find_compiled_method): Fix warning.
17893 * cpu-pentium.md: Fix length of opcodes which use x86_alu_membase_imm.
17895 * jit-icalls.c (mono_ldftn_nosync): New JIT icall.
17897 * tramp-x86.c (mono_arch_create_jump_trampoline): Move arch independent
17898 functionality to mini.c.
17900 * mini.c (mono_create_jump_trampoline): New function to create a jump
17901 trampoline. Return a compiled method instead of a trampoline if it
17902 exists. Add a cache for jump trampolines.
17904 * mini.c (mono_jit_find_compiled_method): New function to return a
17905 compiled method if it exists.
17907 * mini-x86.c: Call mono_create_jump_trampoline instead of
17908 mono_arch_create_jit_trampoline.
17910 * jit-icalls.c (mono_ldftn): Do not compile the method. Instead, return
17911 a jump trampoline. Fixes #52092.
17913 2004-02-11 Zoltan Varga <vargaz@freemail.hu>
17915 * debug-mini.c (mono_init_debugger): Remove call to mono_verify_corlib,
17916 which is not up-to-date. Add check_corlib_version () instead.
17918 * mini.c (mini_init): Call mono_thread_attach () so embedders do not
17921 * mini.c (mono_runtime_install_handlers): Remove check for valgrind
17922 since newer valgrind versions do not need it.
17924 * mini.c (mono_jit_compile_method_with_opt): New helper function to
17925 compile a method with a given set of optimizations.
17927 * mini.c: Compile icall wrappers on-demand instead of at startup.
17929 * mini-sparc.c mini-ppc.c: Call mono_icall_get_wrapper to obtain the
17930 wrapper for an icall.
17932 2004-02-10 Zoltan Varga <vargaz@freemail.hu>
17934 * mini.c (mono_method_to_ir): Handle switch with non-empty stack. Fixes
17937 * iltests.il: Add test for non-empty stack before switch instruction.
17939 2004-02-02 Zoltan Varga <vargaz@freemail.hu>
17941 * mini.c: Add support for new stringbuilder marshalling conventions.
17943 * mini.c (mono_method_to_ir): Fix stack management of generic CEE_BOX.
17945 2004-02-01 Martin Baulig <martin@ximian.com>
17947 * mini.c (MTYPE_PARAM_TO_TYPE): Method type arguments are stored
17948 in `ginst->mtype_argv'.
17950 2004-01-31 Miguel de Icaza <miguel@ximian.com>
17952 * mini.c: Add comments, replace CEE_XXX+128 with OP_XXX to
17953 facilitate grepping.
17955 Wed Jan 28 14:04:58 CET 2004 Paolo Molaro <lupus@ximian.com>
17957 * mini.c: fixed buglet in initobj generic implementation for references.
17959 Fri Jan 23 16:10:44 EST 2004 Paolo Molaro <lupus@ximian.com>
17961 * Makefile.am: make the version script conditional.
17962 * jit-icalls.c: handle missing truncl().
17964 2004-01-23 Zoltan Varga <vargaz@freemail.hu>
17966 * exceptions.cs: Add more tests for double->int conversion.
17968 * jit-icalls.c (mono_fconv_ovf_i8): Call truncl before comparison, so
17969 we don't throw exceptions when converting 1.1 to a long. Fixes #53250.
17971 Fri Jan 23 17:12:08 CET 2004 Paolo Molaro <lupus@ximian.com>
17973 * driver.c: make --verbose --version emit an error
17974 if the loaded corlib doesn't match the runtime version.
17976 Mon Jan 19 17:44:50 CET 2004 Paolo Molaro <lupus@ximian.com>
17978 * mini-ppc.h: export ppc_patch().
17979 * mini-ppc.c: call convention fixes. Added assert in ppc_patch().
17980 * tramp-ppc.c: call convention fixes: Linux/PPC support should be
17981 on par or better than on MacOSX.
17983 2004-01-19 Zoltan Varga <vargaz@freemail.hu>
17985 * mini.c tramp-x86.c tramp-sparc.c: Updated after changes to
17986 mono_lookup_pinvoke_call.
17988 * mini-x86.c: Under windows, the default pinvoke calling convention is
17989 stdcall. Fixes #52834.
17991 * mini.c (optimize_branches): Add an upper bound to the number of
17992 iterations to prevent infinite loops on strange loops. Fixes #53003.
17994 2004-01-16 Zoltan Varga <vargaz@freemail.hu>
17996 * inssel.brg: Add vectors<->one dimensional array checking to CASTCLASS
17997 and ISINST. Fixes #52093.
17999 * objects.cs (test_0_vector_array_cast): New tests.
18001 2004-01-15 Zoltan Varga <vargaz@freemail.hu>
18003 * jit-icalls.c (helper_stelem_ref_check): New jit icall for array type
18004 checking in Array.Set ().
18006 * mini.c (method_to_ir): Add array type checking in Array.Set (). Fixes
18009 * object.cs (test_0_multi_array_cast): New regression test.
18011 Thu Jan 15 16:30:24 CET 2004 Paolo Molaro <lupus@ximian.com>
18013 * exceptions-ppc.c: fix build on Linux/PPC.
18015 2004-01-14 Zoltan Varga <vargaz@freemail.hu>
18017 * tramp-x86.c (x86_magic_trampoline): Disable code patching when
18018 running under valgrind.
18019 (x86_magic_trampoline): Fix build bustage.
18021 * debug-mini.c: Modify the debug info serialize/deserialize code so it handles
18022 negative values as well. This is needed for the encoding of the line number
18023 info, since sometimes the line numbers are not in increasing order.
18025 2004-01-13 Zoltan Varga <vargaz@freemail.hu>
18027 * cpu-pentium.md (localloc): Increase the size of the localloc
18028 instruction since it is a loop under Win32.
18030 * debug-mini.c (record_line_number): Get rid of unneccesary memory
18033 2004-01-09 Zoltan Varga <vargaz@freemail.hu>
18035 * exceptions-ppc.c exceptions-x86.c exceptions-sparc.c
18036 tramp-x86.c tramp-ppc.c tramp-sparc.c: Applied patch from
18037 Max Horn (max@quendi.de). Fix file names in comments.
18039 2004-01-03 Zoltan Varga <vargaz@freemail.hu>
18041 * ssa.c (mono_ssa_rename_vars): Allocate new_stack on the heap to
18042 avoid stack overflow.
18043 (replace_usage): Avoid uninitialized variable warnings.
18045 * mini.c (mono_method_to_ir): Avoid disabling SSA for array operations
18046 and taking the address of valuetype variables.
18048 2004-01-03 Patrik Torstensson
18050 * mini-x86.c: renamed fpflags to flags in RegTrack, going to be used
18051 for other purposes than FP later on.
18053 2004-01-02 Zoltan Varga <vargaz@freemail.hu>
18055 * mini.c (mono_method_to_ir): Prevent register allocation for arguments
18058 Fri Jan 2 13:37:25 CET 2004 Paolo Molaro <lupus@ximian.com>
18060 * mini-ops.h, mini.c, inssel.brg: Object.GetType () speedup.
18062 2003-12-30 Patrik Torstensson <p@rxc.se>
18064 * mini-x86.h: Decreased number of availiable fp regs.
18065 Solves corner cases with FP spilling.
18067 2003-12-23 Patrik Torstensson <p@rxc.se>
18069 * mini-x86.c, mini-ops.h, cpu-pentium.md: Added support
18070 for floating point stack tracking / spilling on x86.
18073 * basic-float.cs: added float mul overflow test.
18075 2003-12-23 Zoltan Varga <vargaz@freemail.hu>
18077 * mini.c (mono_method_to_ir): Add workaround for bug #51126.
18079 Sun Dec 21 19:53:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18081 * mini.h, mini-ppc.c, mini-ppc.h: small cleanups and
18082 supports for cond branches that overflow the immediate
18083 overflow offset. mcs can compile simple programs.
18085 Fri Dec 19 21:17:16 CET 2003 Paolo Molaro <lupus@ximian.com>
18087 * exceptions-ppc.c: exception handling support wip:
18088 finally handlers get run on exception.
18090 2003-12-19 Zoltan Varga <vargaz@freemail.hu>
18092 * aot.c (mono_aot_get_method_inner): Avoid loading AOT code while
18095 Fri Dec 19 17:58:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18097 * cpu-g4.md, mini-ppc.c, exceptions-ppc.c, mini-ppc.h:
18098 initial support for stack walking and unwinding.
18100 2003-12-18 Zoltan Varga <vargaz@freemail.hu>
18102 * driver.c (mono_main): Make corlib-out-of-sync message more
18103 descriptive. Also remove verify_corlib call.
18105 Wed Dec 17 15:31:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18107 * mini.c: make CEE_NEWARR calls and other emulated opcodes
18108 not overlap with other call's arguments, too.
18110 Wed Dec 17 12:49:23 CET 2003 Paolo Molaro <lupus@ximian.com>
18112 * mini.h, mini.c, mini-ppc.c, mini-sparc.c, mini-x86.c:
18113 move to arch-specific code the choice of arch-specific
18114 intrinsics (from Laurent Morichetti (l_m@pacbell.net)).
18115 * mini.c: ensure emulation calls will not interleave
18118 Wed Dec 17 12:27:26 CET 2003 Paolo Molaro <lupus@ximian.com>
18120 * tramp-ppc.c, basic-calls.cs: rework trampolines so that
18121 the magic trampoline stack frame is dropped before executing
18124 Mon Dec 15 18:13:57 CET 2003 Paolo Molaro <lupus@ximian.com>
18126 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed some opcode lengths
18127 and integer to fp conversions. Added support for overflowing
18128 arguments on the stack. Reserve a couple more registers as temps.
18129 Added support for aot compilation (as output still needs to be
18132 Sat Dec 13 17:49:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18134 * mini-ppc.c, basic-long.cs: fix jumps to known labels.
18135 Don't overwrite return register in some corner cases.
18137 2003-12-13 Zoltan Varga <vargaz@freemail.hu>
18139 * mini.h mini.c driver.c mini-x86.c mini-ppc.c aot.c: Do not run
18140 static constructors when AOT compiling.
18142 * driver.c (mono_main): Call mono_check_corlib_version.
18144 Sat Dec 13 10:31:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18146 * cpu-g4.md, basic.cs: fixed div target register.
18148 Sat Dec 13 09:45:56 CET 2003 Paolo Molaro <lupus@ximian.com>
18150 * mini-ppc.c, basic.cs: shl_imm fix with test.
18152 Fri Dec 12 21:25:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18154 * inssel-ppc.brg, mini-ppc.h, mini-ppc.c: support for passing
18155 structures by value. Misc fixes.
18156 * objects.cs: more tests.
18158 Fri Dec 12 10:11:49 CET 2003 Paolo Molaro <lupus@ximian.com>
18160 * mini-ppc.c: lconv.ovf.i implemented.
18162 2003-12-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18165 (mini_init): don't error out if someone already called g_thread_init.
18167 Tue Dec 9 17:27:14 CET 2003 Paolo Molaro <lupus@ximian.com>
18169 * exceptions-x86.c, exceptions-ppc.c: allow the exception object
18170 to be any type per the spec. Fix abnormal memory usage when
18171 the same object is repeatedly thrown.
18173 Tue Dec 9 15:39:54 CET 2003 Paolo Molaro <lupus@ximian.com>
18175 * mini.c: check for overruns in IL code.
18177 2003-12-09 Zoltan Varga <vargaz@freemail.hu>
18179 * TODO: Add/remove some todo entries.
18181 2003-12-08 Zoltan Varga <vargaz@freemail.hu>
18183 * driver.c (mono_main): Call mono_verify_corlib.
18185 2003-12-07 Lluis Sanchez Gual <lluis@ximian.com>
18187 * inssel.brg: In CEE_ISINST and CEE_CASTCLASS, removed check for proxy.
18188 This has been moved to mini.c
18189 * mini.c: in mono_method_to_ir, CEE_ISINST and CEE_CASTCLASS cases, if the
18190 type being casted is marshalbyref it could be a proxy, so instead of
18191 emitting the type check code, emit a call to a runtime method that will
18192 perform the check by calling CanCastTo if needed.
18194 2003-12-06 Zoltan Varga <vargaz@freemail.hu>
18196 * mini-x86.c (mono_arch_emit_prolog): Fix stack space allocation for
18197 methods with large stack frames under Win32.
18199 2003-12-04 Zoltan Varga <vargaz@freemail.hu>
18201 * Makefile.am: Distribute regression tests.
18203 * mini-x86.c (mono_arch_get_allocatable_int_vars): Sort the var list
18204 at the end instead of inserting each variable into the sorted list.
18206 * linear-scan.c (mono_varlist_sort): New helper function.
18208 Wed Dec 3 20:46:28 CET 2003 Paolo Molaro <lupus@ximian.com>
18210 * mini.c: ensure arguments and locals are within bounds.
18212 Wed Dec 3 17:59:10 CET 2003 Paolo Molaro <lupus@ximian.com>
18214 * mini-ppc.c, cpu-g4.md, basic.cs, basic-long.cs: more tests and
18217 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
18219 * mini.c (mono_cprop_copy_values): Fix crash.
18221 * aot.c: Set verbosity back to 0.
18223 Wed Dec 3 15:42:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18225 * regalloc.c: complete memory leak fix by Laurent Morichetti
18228 2003-12-03 Zoltan Varga <vargaz@freemail.hu>
18230 * driver.c (main_thread_handler): Revert the previous patch.
18232 * tramp-x86.c (x86_class_init_trampoline): Avoid patching when running
18235 * mini-x86.c (mono_arch_local_regalloc): Do not allocate transient
18236 memory from the memory pool.
18238 * driver.c (main_thread_handler): Turn on all optimizations when
18241 * mini.c (mono_find_jit_opcode_emulation): Turn emul_opcode_hash into
18242 an array for better performance.
18244 * regalloc.c (mono_regstate_assign): Fix memory leak.
18246 * debug-mini.c (mono_debug_serialize_debug_info): New function to
18247 serialize the debug info.
18249 * debug-mini.c (mono_debug_add_aot_method): New function to load the
18250 debug info from the serialized representation.
18252 * aot.c: Save debug info into the generated file and load it when
18255 * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18257 Mon Dec 1 16:54:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18259 * mini-ppc.c, tramp-ppc.c: save FP arguments in the trampoline.
18260 More FP-related fixes.
18262 Sun Nov 30 19:13:52 CET 2003 Paolo Molaro <lupus@ximian.com>
18264 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: fixed finally handlers
18265 and register allocation buglet. Hello world now runs.
18267 Fri Nov 28 23:03:05 CET 2003 Paolo Molaro <lupus@ximian.com>
18269 * cpu-g4.md, inssel-ppc.brg, mini-ppc.c: better long return support.
18270 * tramp-ppc.c: fixed class init trampoline.
18271 * inssel-ppc.brg, mini.c, jit-icalls.c, mini-ppc.h: more emulation.
18273 Fri Nov 28 16:36:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18275 * cpu-g4.md, inssel-ppc.brg, jit-icalls.c, mini-ppc.c, mini-ppc.h,
18276 mini.c: more ppc changes/fixes.
18278 2003-11-27 Zoltan Varga <vargaz@freemail.hu>
18280 * mini.c (mono_method_to_ir): Fix tail calls with valuetype arguments.
18281 Also optimize the case when the arguments are the same in the caller
18284 * iltests.il: Add tests for tail calls with valuetype arguments.
18286 Thu Nov 27 21:06:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18288 * mini-ppc.c: fixes for struct return type.
18290 Thu Nov 27 19:02:07 CET 2003 Paolo Molaro <lupus@ximian.com>
18292 * mini.h, mini.c, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18293 mono_spillvar_offset() to arch-specific code.
18295 Thu Nov 27 18:30:42 CET 2003 Paolo Molaro <lupus@ximian.com>
18297 * mini-ppc.h, mini-ppc.c: handle some different ABI call convention issues.
18299 2003-11-27 Zoltan Varga <vargaz@freemail.hu>
18301 * exceptions-x86.c: Fix stack space leaks.
18303 * exceptions-x86.c (mono_arch_find_jit_info): Restore callee saved
18304 registers from the lmf if the method has save_lmf set.
18306 2003-11-26 Zoltan Varga <vargaz@freemail.hu>
18308 * tramp-x86.c (x86_magic_trampoline): Avoid patching in the addresses
18309 of icall wrappers into InvokeInDomain, since these are now per-domain.
18311 Wed Nov 26 20:15:04 CET 2003 Paolo Molaro <lupus@ximian.com>
18313 * mini-ppc.h, mini-x86.h, mini.c, inssel-ppc.brg, jit-icalls.c:
18314 make some opcode emulation and intrinsic ops enabled/disabled
18315 according to the architecture. More fixes.
18317 Wed Nov 26 19:59:09 CET 2003 Paolo Molaro <lupus@ximian.com>
18319 * mini-ppc.c, mini-sparc.c, cpu-g4.md: more bug fixes.
18321 Wed Nov 26 19:18:29 CET 2003 Paolo Molaro <lupus@ximian.com>
18323 * mini.h, inssel.brg, mini-x86.c, mini-ppc.c, mini-sparc.c: move
18324 arch-specific handling for 'this' and struct return type to
18325 arch-specific code.
18327 2003-11-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18329 * aot.c: prevent divide by zero error when reporting (it happened with
18330 Accessibility.dll).
18332 2003-11-25 Zoltan Varga <vargaz@freemail.hu>
18334 * mini.h (inst_switch): Remove unused macro.
18336 2003-11-25 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18339 (load_aot_module): free 'info->methods' and 'info' properly. No more
18340 "free(): invalid pointer blah" messages when you have an old aot
18343 2003-11-21 Lluis Sanchez Gual <lluis@ximian.com>
18345 * jit-icalls.c, mini.c: Added support for context static fields.
18347 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
18349 * mini.c (mono_method_blittable): Methods which set LastError are not
18350 blittable either. Fixes #51108.
18352 Tue Nov 18 16:41:37 CET 2003 Paolo Molaro <lupus@ximian.com>
18354 * mini.c: flush icache.
18355 * cpu-g4.md, mini-ppc.c, inssel.brg: more fixes. Trace support.
18357 2003-11-18 Zoltan Varga <vargaz@freemail.hu>
18359 * mini.c (mono_type_blittable): OBJECT is not blittable. Fixes #47842.
18361 2003-11-17 Zoltan Varga <vargaz@freemail.hu>
18363 * tramp-x86.c (x86_class_init_trampoline): Make code patching thread
18366 * mini-x86.c (mono_arch_call_opcode): Disable AOT for methods with
18369 * inssel.brg (CEE_MKREFANY): Fix AOT case.
18371 2003-11-16 Zoltan Varga <vargaz@freemail.hu>
18373 * mini-x86.c (mono_arch_local_regalloc): Fix regalloc for div
18374 instruction when the result is discarded.
18376 * iltests.il (test_0_div_regalloc): New regression test.
18378 * arrays.cs: Fix compilation error.
18380 Fri Nov 14 21:34:06 CET 2003 Paolo Molaro <lupus@ximian.com>
18382 * inssel-x86.brg, inssel-float.brg, mini-ops.h: move x86-specific
18383 float rules to inssel-x86.brg: sane architectures with FP registers
18384 don't need to implement these rules.
18386 Fri Nov 14 20:52:12 CET 2003 Paolo Molaro <lupus@ximian.com>
18388 * mini-ppc.c, cpu-g4.md, inssel-ppc.brg: updates and fixes to the ppc port.
18390 Fri Nov 14 17:58:27 CET 2003 Paolo Molaro <lupus@ximian.com>
18392 * mini.h, inssel-long32.brg: fixed endianess issues in int64
18393 implementation of 32 bit systems.
18395 Thu Nov 13 16:14:41 CET 2003 Paolo Molaro <lupus@ximian.com>
18397 * exceptions-ppc.c: fix build on Linux/ppc from Jeroen@xs4all.nl
18398 (Jeroen Zwartepoorte).
18400 2003-11-12 Zoltan Varga <vargaz@freemail.hu>
18402 * mini.c (mono_method_to_ir): Use CEE_JMP only if the signature of
18403 the caller and the callee matches.
18405 * mini.c (mono_method_to_ir): Add comment.
18407 * mini-x86.c (mono_arch_output_basic_block): Use mono_signbit, since
18408 signbit is missing on some platforms.
18410 2003-11-06 Zoltan Varga <vargaz@freemail.hu>
18412 * mini.h (mono_arch_setup_jit_tls_data): New arch specific function.
18414 * mini.c (setup_jit_tls_data): Call the new function.
18416 * mini-x86.c mini-ppc.c mini-sparc.c: Define the new function.
18418 * mini-x86.c: Add experimental support for fast access to the lmf
18419 structure under NPTL/Linux 2.6.x.
18421 2003-11-06 Martin Baulig <martin@ximian.com>
18423 * ldscript: Make `GC_push_all_stack', `GC_start_blocking',
18424 `GC_end_blocking' and 'gc_thread_vtable' public; they're used by
18427 2003-11-02 Martin Baulig <martin@ximian.com>
18429 * mini.c (inflate_generic_field): New static method.
18430 (mono_method_to_ir): In CEE_LDFLD and CEE_LDSFLD: if we're a
18431 generic instance and the field is declared in a generic type, call
18432 inflate_generic_field() to inflate it. Fixes gen-28.cs.
18434 2003-10-31 Zoltan Varga <vargaz@freemail.hu>
18436 * mini.h mini.c (mono_method_same_domain): New function to return
18437 whenever the caller and the callee are in the same domain.
18439 * tramp-x86.c (x86_magic_trampoline): Use the new function.
18441 2003-10-30 Martin Baulig <martin@ximian.com>
18443 * mini.c (MTYPE_PARAM_TO_TYPE, MTYPE_PARAM_TO_CLASS): New macros;
18444 similar to TYPE_PARAM_TO_TYPE and TYPE_PARAM_TO_CLASS, but for
18446 (mono_method_to_ir): Added support for MONO_TYPE_MVAR; similar to
18447 MONO_TYPE_VAR, we the actual types from MTYPE_PARAM_TO_CLASS().
18449 2003-10-29 Zoltan Varga <vargaz@freemail.hu>
18451 * mini.c mini-ops.h inssel.brg: Implement undeniable exception
18454 * mini.c (sigusr1_signal_handler): Move creation of the thread abort
18455 object here, so it is in the correct appdomain etc.
18457 2003-10-27 Zoltan Varga <vargaz@freemail.hu>
18459 * mini.c (mono_jit_compile_method_inner): Lookup icalls here if not
18461 (mono_method_to_ir): Avoid freeing the type created returned from
18462 mono_type_create_from_typespec, since it is put into an internal cache
18463 by the function. Fixes pointer.exe.
18465 * mini.c tramp-x86.c tramp-sparc.c tramp-ppc.c: Use the normal
18466 trampolines for icalls and pinvokes as well. Fixes #33569.
18468 2003-10-24 Zoltan Varga <vargaz@freemail.hu>
18470 * mini.c: Update after appdomain changes.
18472 * mini.c (mono_jit_compile_method_inner): Allways compile native
18473 method wrappers in the root domain, since there can only be one
18474 instance of them, whose address is stored in method->info.
18476 2003-10-16 Zoltan Varga <vargaz@freemail.hu>
18478 * mini.c (mono_runtime_install_handlers): Get rid of the MONO_VALGRIND
18479 environment variable. Instead detect automatically whenever running
18480 under valgrind using the magic macro RUNNING_ON_VALGRIND from
18483 2003-10-16 Miguel de Icaza <miguel@ximian.com>
18485 * trace.c, trace.h: New files that implement the new trace option
18488 * driver.c: Document new --trace options.
18490 * exceptions-ppc.c, exceptions-x86.c, mini-ppc.c, mini-sparc.c,
18493 - if (mono_jit_trace_calls)
18494 + if (mono_jit_trace_calls != NULL && mono_trace_eval (method))
18496 * mini.h: prototypes.
18498 2003-10-15 Zoltan Varga <vargaz@freemail.hu>
18500 * mini.c (mono_method_to_ir): Fix initialization of typedbyref locals.
18502 * mini.c inssel.brg: Implement typedefbyref opcodes.
18504 * mini.c (mono_jit_compile_method): Remove unused local variable.
18506 * mini.c (mono_jit_compile_method_inner): Ditto.
18508 2003-10-12 Zoltan Varga <vargaz@freemail.hu>
18510 * tramp-x86.c (x86_class_init_trampoline): Fix build.
18512 * tramp-x86.c (x86_class_init_trampoline): Thread safety fixes.
18514 2003-10-10 Zoltan Varga <vargaz@freemail.hu>
18516 * mini.c (mono_no_aot): Remove unused global variable.
18518 * mini.c: Thread safety fixes.
18520 2003-10-09 Zoltan Varga <vargaz@freemail.hu>
18522 * mini.c (mono_create_class_init_trampoline): Add a lock around
18523 class_init_hash_addr.
18525 * arrays.cs (test_0_newarr_emulation): Add new regression test for
18528 * mini.c: Decompose the NEWARR instruction before decomposing its
18529 arguments. Fixes #30073.
18531 2003-10-08 Zoltan Varga <vargaz@freemail.hu>
18533 * mini-x86.c (mono_arch_emit_epilog): Add support for stdcall calling
18536 2003-10-06 Zoltan Varga <vargaz@freemail.hu>
18538 * mini.c (mono_method_to_ir): Allow wrapper data for CEE_LDELEMA.
18540 * inssel-x86.brg (OP_LOCALLOC): Fix register assignment for localloc.
18542 * driver.c: Add support for compiling icall wrappers to --compile.
18544 2003-10-05 Zoltan Varga <vargaz@freemail.hu>
18546 * inssel.brg: The empty value in class->interface_offsets is -1, not
18549 2003-10-03 Zoltan Varga <vargaz@freemail.hu>
18551 * objects.cs: New test for 'is' operator on an array of interfaces.
18553 Wed Oct 1 19:40:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
18555 * tramp-ppc.c: update trampoline code to support jumps
18556 and class initialization.
18558 2003-09-30 Zoltan Varga <vargaz@freemail.hu>
18560 * mini.c (mono_jit_compile_method): Fix reading of freed memory.
18562 * inssel.brg (OP_UNBOXCAST): Fix #46027.
18564 * inssel.brg (OP_UNBOX): Remove unused rule.
18566 * mini.h mini.c inssel-x86.brg: Allocate one SP variable for each
18567 region instead of one for each method. Fixes #47813.
18569 2003-09-29 Zoltan Varga <vargaz@freemail.hu>
18571 * exceptions.cs (test_0_nested_finally): New regression test for
18572 nested exception handlers.
18574 * mini.c (mono_jit_runtime_invoke): Fix for the previous fix.
18576 * mini.c (mono_method_to_ir): Avoid inlining tail calls.
18578 * mini.c (mono_method_to_ir): Fix tail recursion in the presence of
18581 * mini.c (mono_method_check_inlining): Make the inlining limit
18582 configurable by an environment variable.
18584 * mini.c (mono_jit_runtime_invoke): Add Gonzalo's fix for #36545.
18586 * mini.h: Bump AOT file version.
18588 * mini.h mini.c aot.c mini-x86.c: For relocations which refer to a
18589 token, store the image along with the token, since the token might not
18590 refer to the same image as the method containing the relocation,
18591 because of inlining.
18593 2003-09-27 Zoltan Varga <vargaz@freemail.hu>
18595 * mini.c (mono_precompile_assemblies): New function to compile
18596 all methods in all loaded assemblies.
18598 * mini.h driver.c: Added new optimization flag MONO_OPT_PRECOMP.
18600 * regalloc.h regalloc.c (MonoRegState): Change the type of
18601 iassign and fassign to int*, since they can contain large negative
18602 values if the register is spilled. Also added some comments. Fixes
18605 * exceptions-x86.c (seh_handler): Fix handling of system exceptions
18606 under Win32. Fixes #42964.
18608 2003-09-26 Zoltan Varga <vargaz@freemail.hu>
18610 * mini.h (MONO_PATCH_INFO_WRAPPER): New patch type.
18612 * aot.c: Added support for AOT compiling methods which contain calls
18613 to wrappers. Currently, only remoting-invoke-with-check wrappers are
18616 * driver.c (compile_all_methods): Run the compilation in a thread
18617 managed by mono. Fixes #44023.
18619 * mini.c (mono_codegen): Print full method name in verbose output.
18621 * mini-x86.c (mono_arch_patch_code): Fix warning.
18623 * mini-x86.c (mono_arch_patch_code): Allways create a trampoline for
18624 jumps, since the method we are jumping to might be domain-specific.
18626 * aot.c: Added support for MONO_PATCH_INFO_METHOD_JUMP.
18628 Tue Sep 23 10:50:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
18630 * inssel.brg: string chars are unsigned.
18632 2003-09-15 Zoltan Varga <vargaz@freemail.hu>
18634 * TODO: New todo item.
18636 * tramp-x86.c (x86_class_init_trampoline): New trampoline function
18637 which calls mono_runtime_class_init and patches the call site to
18638 avoid further calls.
18639 (mono_arch_create_class_init_trampoline): New arch specific function
18640 to create a class init trampoline.
18641 (create_trampoline_code): Generalized so it can create
18642 class init trampolines as well.
18644 * mini.c (helper_sig_class_init_trampoline): New helper variable.
18645 (mono_create_class_init_trampoline): New function to create and cache
18646 class init trampolines.
18647 (mono_find_class_init_trampoline_by_addr): New function to lookup the
18648 vtable given the address of a class init trampoline. Used by the
18650 (mono_codegen): Generate a call to a trampoline instead of
18651 mono_runtime_class_init in LDSFLD[A].
18652 (mono_codegen): Add relocations for the new trampoline.
18654 * mini.h mini-x86.c aot.c: Added a new relocation type:
18655 MONO_PATCH_INFO_CLASS_INIT.
18657 * mini.h: Bump AOT version number.
18659 * aot.c: Create a copy of the loaded code instead of using the original
18660 so methods which call each other will be close in memory, improving
18663 * exceptions-x86.c (mono_arch_has_unwind_info): Back out the previous
18664 patch since it breaks the regression tests.
18666 * exceptions-x86.c (mono_arch_has_unwind_info): Added explicit check
18667 for the register saving instruction sequence since the
18668 frame_state_for function in glibc 2.3.2 don't seem to detect it.
18670 2003-09-14 Zoltan Varga <vargaz@freemail.hu>
18672 * TODO: Fix todo item && remove another.
18674 2003-09-12 Zoltan Varga <vargaz@freemail.hu>
18676 * mini-x86.c (mono_arch_patch_code): Fix tail calls broken by a
18679 * aot.c: Moved the check for MONO_LASTAOT into the initialization
18680 function of the module.
18682 * mini.h mini.c aot.c: Added a new optimization flag OPT_AOT for
18683 turning on/off the usage of AOT code. Got rid of mono_no_aot and the
18684 --no-aot command line option.
18686 2003-09-11 Zoltan Varga <vargaz@freemail.hu>
18688 * helpers.c (mono_disassemble_code): Make this work under cygwin. Patch
18689 by Bernie Solomon (bernard@ugsolutions.com).
18691 * inssel.brg: Refactor the interface offset table related code into
18692 its separate functions and add support for the AOT case.
18694 2003-09-10 Zoltan Varga <vargaz@freemail.hu>
18696 * aot.c (mono_aot_get_method_inner): Fix memory leak.
18698 * aot.c: Added mono_aot_verbose variable and made all debugging
18699 output depend on the value of this variable.
18701 * aot.c (mono_aot_get_method_inner): Avoid dynamic allocation of
18702 method_label and info_label.
18704 * mini.h mini-x86.c aot.c: Added a new relocation type
18705 MONO_PATCH_INFO_IID for klass->interface_id.
18707 * mini.h mini.c driver.c aot.c: Changed mono_aot_get_method to return
18708 the MonoJitInfo structure.
18710 * mini.c (mono_jit_compile_method): Avoid using non-shared AOT in
18711 a non-root appdomain in shared mode.
18713 Tue Sep 9 16:33:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
18715 * aot.c: make aot loader less verbose. Remove free of unused variable.
18717 2003-09-08 Zoltan Varga <vargaz@freemail.hu>
18719 * aot.c (mono_aot_get_method_inner): Fix MONO_PATCH_INFO_IMAGE.
18721 * .cvsignore: Added *.dll.
18723 * mini.c (mono_print_tree_nl): New function callable while debugging.
18725 * mini.c (mono_print_code): Export this.
18727 * tramp-x86.c (x86_magic_trampoline): Tell valgrind to recompile the
18730 2003-09-05 Zoltan Varga <vargaz@freemail.hu>
18732 * mini.h (MonoCompile): Added 'jit_info' field.
18734 * mini.c (mini_method_compile): Save the generated MonoJitInfo into
18735 the cfg structure, since it is needed by the AOT compiler.
18737 * mini.h (MONO_AOT_FILE_VERSION): Bump version number.
18739 * aot.c: A major rewrite. Changes include:
18740 - save exception tables for methods which have them.
18741 - cache failed lookups in aot_get_method () to avoid the (slow) calls
18742 to g_module_symbol.
18743 - reworked the file format so it is now much smaller and needs
18744 fewer relocation entries.
18746 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
18748 * aot.c (load_aot_module): Fix build bustage on platforms without
18751 2003-09-04 Martin Baulig <martin@ximian.com>
18753 * Makefile.am (INCLUDES): Added $(LIBGC_CFLAGS).
18755 2003-09-04 Zoltan Varga <vargaz@freemail.hu>
18757 * TODO: Some new optimization ideas.
18759 * aot.c: Move AOT module loading logic here from mono_assembly_open.
18761 * aot.c: Save the optimization flags used to compile the code into
18764 * mini.h mini-x86.c mini.c aot.c: Added new types of relocations to
18765 support emitting domain specific code.
18767 * mini.h mini.c aot.c: Modified the JIT so the generated AOT code is
18768 no longer domain neutral. It can be made domain neutral by compiling
18769 with --optimize=shared.
18771 * aot.c (mono_aot_get_method_inner): Allow sharing of AOT methods
18772 between appdomains.
18774 * driver.c mini.h mini.c: New --no-aot debugging option which disables
18775 loading of AOT code.
18777 * inssel-x86.brg: Added missing AOTCONST -> OUTARG_VT rule.
18779 * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling method
18780 if there is no domain neutrality information.
18782 2003-09-01 Zoltan Varga <vargaz@freemail.hu>
18784 * aot.c (mono_compile_assembly): Emit a symbol containing the file
18785 format version into the generated library.
18787 * mini-x86.c (mono_arch_patch_code): Do not emit the address of the
18788 callee method into the caller since one of them could be shared.
18790 * mini.h mini-x86.c aot.c: Added two new relocations so throwing
18791 system exceptions from AOT code now works.
18793 * tramp-x86.c (x86_magic_trampoline): Avoid patching the calling
18794 method if it is domain neutral and the callee is not.
18796 * graph.c (cfg_emit_one_loop_level): Fix warning.
18798 2003-08-30 Zoltan Varga <vargaz@freemail.hu>
18800 * aot.c (mono_compile_assembly): Oops. Remove debugging cruft from
18803 2003-08-29 Zoltan Varga <vargaz@freemail.hu>
18805 * mini.c (mini_init): Call mono_marshal_init () explicitly since it
18806 is needed by code which is executed before mono_runtime_init ().
18807 Thanks to Bernie Solomon (bernard@ugsolutions.com) for noticing this.
18809 * mini.c (mono_thread_abort): Fix warning.
18810 (mono_jit_compile_method): Call static constructor in the AOT case too.
18812 * aot.c (mono_compile_assembly): Fix warning.
18814 2003-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
18816 * mini.c: register a SIGINT handler if MONO_DEBUG is defined.
18818 2003-08-28 Zoltan Varga <vargaz@freemail.hu>
18820 * inssel.brg (OP_UNBOXCAST): Add support for the AOT case.
18822 * cpu-pentium.md: Fix the length of call opcodes so they include the
18823 ESP restoring instruction. Fixes #47968.
18825 2003-08-28 Martin Baulig <martin@ximian.com>
18827 * mini-x86.c (mono_arch_call_opcode): Added support for
18828 MONO_TYPE_GENERICINST.
18830 * mini.c (check_call_signature): Added support for MONO_TYPE_GENERICINST.
18832 2003-08-27 Zoltan Varga <vargaz@freemail.hu>
18834 * Makefile.am (BUILT_SOURCES): Fix compilation on platforms without
18835 a JIT. Patch by Bernie Solomon (bernard@ugsolutions.com).
18837 * mini.c jit-icalls.c tramp-x86.c tramp-ppc.c tramp-sparc.c: Get rid of
18840 2003-08-26 Martin Baulig <martin@ximian.com>
18842 * mini.c (get_basic_blocks): Added `unsigned char **pos' argument;
18843 when reporting an error, set this to the actual error location.
18844 (mono_method_to_ir): Report the correct error location if
18845 get_basic_blocks() returned an error.
18847 2003-08-25 Zoltan Varga <vargaz@freemail.hu>
18849 * mini.c (mono_type_blittable): OBJECT is not blittable.
18850 (mono_method_blittable): Methods which have marshalling descriptors
18851 are not blittable either. Fixes #47842.
18853 2003-08-22 Zoltan Varga <vargaz@freemail.hu>
18855 * driver.c mini.c: Use an environment variable instead of a global
18856 variable. Also fix the build.
18858 * mini.c (mini_init): Call g_thread_init () to make glib thread-safe.
18859 Fixes #47682. Thanks to Laurent Morichetti (l_m@pacbell.net) for
18862 * driver.c mini.c: Added --with-valgrind option to turn off some
18863 code which prevents mono from running under valgrind.
18865 * mini.c (mono_emit_call_args): Fixed warning.
18867 * mini.c (mono_emulate_opcode): Fixed warning.
18869 Thu Aug 21 19:10:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18871 * inssel.brg: 64bit fixes from Laurent Morichetti <l_m@pacbell.net>.
18872 * linear-scan.c, mini-ppc.h, mini-sparc.h, mini-x86.h, mini.h,
18873 regalloc.c, regalloc.h: specify available registers in arch-specific
18874 code and support floats in the regallocator (patch by Laurent Morichetti
18877 Wed Aug 20 19:02:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
18879 * mini.c: mono_thread_current() can be called only after
18880 mono_runtime_init(): rearrange code to not call it early on.
18882 Wed Aug 20 13:14:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
18884 * mini.c: allocate jump tables in the code mempools.
18886 Wed Aug 20 13:04:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
18888 * mini.c, mini.h: make sure per-thread data allocated by the jit is
18891 2003-08-10 Miguel de Icaza <miguel@ximian.com>
18893 * cpu-pentium.md (ldtoken): Change the length for mul.ovf.un from
18894 12 to 16. This fixes bug #47453.
18897 Thu Aug 7 15:59:35 CEST 2003 Paolo Molaro <lupus@ximian.com>
18899 * mini-ppc.c: fixed indexed load and unsigned compares.
18901 2003-08-06 Lluis Sanchez Gual <lluis@ximian.com>
18903 * mini.c: reenabled installation of handler for
18904 thread abort signal.
18906 Tue Aug 5 12:21:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18908 * cprop.c, mini-x86.c, cpu-pentium.md: fix buglets spotted
18909 by Laurent Morichetti <l_m@pacbell.net>. Disabled local cprop
18910 until it's fixed and actually useful.
18912 Mon Aug 4 12:12:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
18914 * inssel-long32.brg: couple more opcodes implemented.
18916 Thu Jul 31 22:43:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18918 * mini-sparc.c: Even more opcodes implemeted.
18920 Thu Jul 31 19:36:03 EDT 2003 Mark Crichton <crichton@gimp.org>
18922 * mini-sparc.c: More opcodes implemented.
18924 Thu Jul 31 15:16:26 EDT 2003 Mark Crichton <crichton@gimp.org>
18926 * mini-sparc.c: More opcodes implemented.
18928 Wed Jul 30 22:31:02 EDT 2003 Mark Crichton <crichton@gimp.org>
18930 * inssel-sparc.brg: Add some needed rules. Direct
18932 * Makefile.am: Use inssel-sparc.brg
18933 * exceptions-sparc.c: 0xdeadbeef/0xdecafbad to keep
18934 an assert happy for now.
18936 Wed Jul 30 20:44:07 EDT 2003 Mark Crichton <crichton@gimp.org>
18938 * mini-sparc.c: Fixed compile errors.
18939 * exceptions-sparc.c: Same. We now produce a mono binary
18940 on sparc-linux. Yea.
18942 Wed Jul 30 14:10:12 EDT 2003 Mark Crichton <crichton@gimp.org>
18944 * mini-sparc.c: Renamed registers. Also some macro cleanups.
18945 * exceptions-sparc.c, tramp-sparc.c: Various compile fixes.
18946 They compile, but do not work.
18948 Wed Jul 30 17:52:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18950 * Makefile.am, cpu-sparc.md, exceptions-sparc.c, mini-sparc.c,
18951 mini-sparc.h, tramp-sparc.c: Beginning of sparc support
18952 from Mark Crichton <crichton@gimp.org> and Christopher Taylor
18955 Tue Jul 29 12:43:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
18957 * mini.c: more opcodes implemented and better support for generics.
18959 Fri Jul 25 18:51:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
18961 * cpu-g4.md, cpu-pentium.md: updates for new instructions.
18962 * mini.c, mini.h: first cut at generics support: some new instructions
18963 added and changed the behaviour of some of the existing ones.
18965 2003-07-21 Miguel de Icaza <miguel@ximian.com>
18967 * mini.c: Removed definition of metadata_shared mutex here.
18969 Tue Jul 22 15:21:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
18971 * mini-x86.c: make vararg calls work for instance methods.
18973 Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>
18975 * mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode()
18976 returns the arguments in a separte list, now.
18978 Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
18980 * aot.c, mini.c: updates for array type representation changes.
18982 Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>
18984 * mini.c: register function to perform jit shutdown.
18986 Thu Jul 17 16:02:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
18988 * mini.c: use a faster allocator if possible.
18990 Thu Jul 17 16:00:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
18992 * aot.c: some cleanups and portability changes.
18994 Wed Jul 2 11:08:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
18996 * mini.c: use faster allocation for CEE_BOX if possible.
18998 Mon Jun 30 19:16:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19000 * mini.c, mini-ops.h, inssel.brg, mini-x86.c: optimized access to fields.
19001 Moved inlined mempcy code to its own function so that is can be
19002 reused. Added an inline memset function as well (optimized initobj).
19003 * cpu-pentium.md, inssel-x86.brg: add and use lea_membase.
19005 Fri Jun 27 11:19:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19007 * mini.c, mini-ops.h, inssel.brg: optimized a couple of Array methods.
19009 Wed Jun 25 13:19:25 CEST 2003 Paolo Molaro <lupus@ximian.com>
19011 * mini.c, mini.h, mini.x86.c, mini-ppc.c: added facility so that
19012 arch code can setup the cpu for CLR execution, if needed.
19013 We use it on x86 to set the precision of FP operations.
19015 Tue Jun 17 19:02:55 CEST 2003 Paolo Molaro <lupus@ximian.com>
19017 * mini.c: disable some optimizations if we can guess they'll cost too
19018 much for a given method.
19020 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
19022 * mini.h mini.c: Rework last patch based on suggestions by Paolo.
19024 2003-06-17 Zoltan Varga <vargaz@freemail.hu>
19025 * mini.h mini.c mini-x86.c: Added instruction level coverage
19026 info collection support.
19028 Mon Jun 16 18:13:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19030 * driver.c, mini-ppc.c, mini-x86.c, mini.c, mini.h: the coverage stuff
19031 is now implemented in the profiling API. Get rid of a couple of
19032 unnecessary global variables.
19034 2003-06-15 Nick Drochak <ndrochak@gol.com>
19036 * basic-long.cs: tests for negative values for bigmul, and unsigned.
19037 * cpu-g4.md: add op_bigmul and op_bigmul_un
19038 * cpu_pentium.md: add op_bigmul_un
19039 * inssel-long32.brg: add rule for unsigned bigmul
19040 * mini-ops.h: define OP_BIGMUL_UN
19041 * mini-x86.c: THE BUG: handle (un)signed properly
19042 * mini.c: choose unsigned opcode if needed.
19043 This set of patches fixes bug #44291
19045 2003-06-13 Dietmar Maurer <dietmar@ximian.com>
19047 * mini.c (optimize_branches): improved to handle all kinds of
19048 conditional branches.
19050 Wed Jun 11 18:01:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19052 * mini.c, mini.h, jit-icalls.c: speedup emulation of opcodes that
19053 don't raise exceptions.
19055 Tue Jun 10 19:00:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19057 * tramp-x86.c, tramp-ppc.c, debug-mini.c: move arch-specific code
19058 to arch-specific files.
19060 2003-06-09 Martin Baulig <martin@ximian.com>
19062 * Makefile.am (libs): Added $(LIBGC_LIBS).
19064 Mon Jun 9 20:21:47 CEST 2003 Paolo Molaro <lupus@ximian.com>
19066 * cpu-pentium.md, mini-x86.c: fix (well, actually implement) OP_TAN
19067 and OP_ATAN (fixes bug#44293).
19069 Mon Jun 9 19:00:56 CEST 2003 Paolo Molaro <lupus@ximian.com>
19071 * Makefile.am, mini-x86.c: rename cpu description array to
19072 pentium_desc, since some compilers define the 'pentium' preprocessor
19075 2003-05-28 Dietmar Maurer <dietmar@ximian.com>
19077 * mini.c (mini_select_instructions): add explicit branch if the
19078 following block is not the false target of a conditional branch -
19079 we need this with any optimization that reorder or remove bblocks
19081 * mini.c (optimize_branches): bug fixes
19083 2003-06-06 Dietmar Maurer <dietmar@ximian.com>
19085 * mini.c (mono_method_to_ir): inline static readonly fields
19087 * ssa.c (fold_tree): start cfold support for long (very simple
19090 * cfold.c (mono_constant_fold_inst): opt. CEE_CONV_I8 (OP_ICONST)
19092 Fri Jun 6 11:41:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19094 * inssel.brg: fixed memcpy (bug #44219).
19096 2003-06-05 Dick Porter <dick@ximian.com>
19098 * driver.c: Set the glib log levels to not abort if g_message
19101 g_set_prgname() has to happen before mini_init() so that the
19102 process handle gets the info.
19104 Thu Jun 5 20:11:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19106 * driver.c: add intrins to the default optimizations to get wider
19109 Wed Jun 4 19:47:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19111 * mini.h: some large basic blocks will overflow a 16-bit
19112 integers for symbolic registers.
19114 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
19116 * mini-x86.c (mono_arch_output_basic_block): revert previous fprem changes.
19117 (mono_arch_output_basic_block): fix bug 43499
19119 Wed Jun 4 13:13:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19121 * mini.c: kill duplicated definition of mono_debug_format.
19123 Wed Jun 4 13:09:51 CEST 2003 Paolo Molaro <lupus@ximian.com>
19125 * mini-x86.c, arrays.cs: fixed register allocation bug.
19127 2003-06-04 Dietmar Maurer <dietmar@ximian.com>
19129 * mini-x86.c (mono_arch_output_basic_block): use IEEE compatible fprem1
19131 * mini.c (mini_get_opcode_for_method): inline IEEERemainder
19133 2003-06-04 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19136 (print_method_from_ip): also print source location information if
19139 2003-06-02 Dietmar Maurer <dietmar@ximian.com>
19141 * mini.c (mono_find_block_region): bug fix in region code
19142 (mini_method_compile): enable removing unreachable code again, but
19143 only in methods without exception clauses.
19145 Fri May 30 18:40:24 CEST 2003 Paolo Molaro <lupus@ximian.com>
19147 * mini.c, mini-ops.h, cpu-pentium.md, inssel.brg, mini-x86.c, mini.h:
19148 Implemented arglist opcode and handling of TypedReference type.
19149 Fixed x86 call convention when a structure is returned.
19150 Minimal support for calling static vararg methods.
19152 2003-05-30 Dietmar Maurer <dietmar@ximian.com>
19154 * mini.c (mini_method_compile): always remove unreachable code,
19155 because the code in them may be inconsistent (access to dead
19156 variables for example).
19158 Thu May 29 11:44:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19160 * driver.c, debug-mini.c: warning fixes.
19162 Wed May 28 11:19:15 CEST 2003 Paolo Molaro <lupus@ximian.com>
19164 * Makefile.am, jit.h, mini.h: install header for embedding mono.
19166 Tue May 27 17:56:12 CEST 2003 Paolo Molaro <lupus@ximian.com>
19168 * mini.c: thread-static fields are registered in mono_class_vtable(),
19169 so ensure the function is called before checking for them.
19171 2003-05-27 Dietmar Maurer <dietmar@ximian.com>
19173 * mini.c (optimize_branches): fix for bug 43586
19175 * jit-icalls.c (mono_llmult_ovf): added an additional check for
19176 overflow (fixes Bug #43639)
19178 Tue May 27 11:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19180 * mini.c, objects.cs: allow the use of stobj for primitive types.
19182 Tue May 27 10:33:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19184 * mini.c: be less strict about argument checking until we support
19185 running the verifier.
19187 2003-05-27 Nick Drochak <ndrochak@gol.com>
19189 * basic-long.cs: tests for (ulong)int * (ulong)int also
19190 * mini.c: use the same trick for (ulong)int * (ulong)int
19192 2003-05-27 Nick Drochak <ndrochak@gol.com>
19194 * basic-long.cs: add regression test for (long)int * (long)int
19195 * cpu-pentium.md: add op_bigmul specification
19196 * inssel-long32.brg: add OP_BIGMUL rule
19197 * mini-ops.h: add OP_BIGMUL
19198 * mini-x86.c: register allocator: handle case where src1 needs to be
19200 * mini.c: substitute special BIGMUL opcode in the tree for
19201 (long)int * (long)int
19203 Mon May 26 20:20:13 CEST 2003 Paolo Molaro <lupus@ximian.com>
19205 * jit-icalls.c: call the type ctor on field access if needed.
19207 Mon May 26 15:21:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19209 * mini-ops.h, mini.c, inssel.brg, exceptions.cs: validate arguments passed
19210 to a method (including results of ldelema, bug#43207).
19212 2003-05-26 Dietmar Maurer <dietmar@ximian.com>
19214 * graph.c (cfg_emit_one_loop_level): loop over all blocks. use
19215 colors to show exception handler blocks.
19217 * inssel-x86.brg (OP_OUTARG_VT): dont push zero sized structures
19218 (fix for pinvoke7.cs).
19220 Mon May 26 12:11:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19222 * mini.h, mini.c: ensure correct initialization order for types that
19223 require it. Prepare for lazy compilation of jit icall wrappers.
19224 Provide a name for opcode emulation to reduce unneeded mallocing.
19226 Fri May 23 16:08:54 CEST 2003 Paolo Molaro <lupus@ximian.com>
19228 * mini-x86.c: better register restoring code and profiling
19229 support for tail calls.
19231 Fri May 23 15:30:53 CEST 2003 Paolo Molaro <lupus@ximian.com>
19233 * mini.h, driver.c: prepare for leaf methods optimization.
19235 Fri May 23 15:28:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19237 * mini.c: get targets of branches before converting a method.
19239 2003-05-23 Dietmar Maurer <dietmar@ximian.com>
19241 * mini.c (optimize_branches): added some experimental code (disbaled)
19243 2003-05-22 Dietmar Maurer <dietmar@ximian.com>
19245 * mini.c (optimize_branches): fix branch to branch optimization
19247 * exceptions-x86.c (mono_arch_handle_exception): bug fix.
19249 * mini-x86.c (mono_arch_output_basic_block): cleanup up exception code
19251 * inssel-x86.brg: added OP_START_HANDLER, CEE_ENDFINALLY, OP_ENDFILTER
19253 * mini-x86.c (mono_arch_allocate_vars): only reserve space for lmf
19256 2003-05-21 Dietmar Maurer <dietmar@ximian.com>
19258 * mini.c (mono_method_to_ir): call handle_loaded_temps before inlining.
19259 enable use of interface variables again.
19261 * mini-x86.c (mono_arch_get_allocatable_int_vars): dont allocate
19262 I1 to registers because there is no simply way to sign extend 8bit
19263 quantities in caller saved registers on x86.
19265 * inssel-float.brg: set costs of some rules to 2 so
19266 that monobure always select the arch. specific ones if supplied,
19267 regardless of the order we pass the files to monoburg.
19269 Tue May 20 17:19:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19271 * mini.c, mini-x86.c: since the magic trampoline for jumps
19272 can't patch the code directly, we do it as soon as the
19273 method gets compiled.
19275 Tue May 20 16:02:52 CEST 2003 Paolo Molaro <lupus@ximian.com>
19277 * mini-x86.c, mini.h: introduce a new patching method
19278 to support CEE_JMP and tail calls.
19279 * mini.c: obey tail.call. Don't precompile methods target
19281 * tramp-x86.c: new trampoline code to handle methods
19282 reached through a jump.
19284 2003-05-20 Dietmar Maurer <dietmar@ximian.com>
19286 * mini-x86.c (mono_arch_get_allocatable_int_vars): allocate 8/16
19287 bit values to registers
19289 2003-05-19 Dietmar Maurer <dietmar@ximian.com>
19291 * mini.c (mono_compile_get_interface_var): share interface
19292 variables if possible.
19294 2003-05-16 Martin Baulig <martin@ximian.com>
19296 * debug-mini.c (mono_init_debugger): New function to initialize
19297 the debugger. This is not in the debugger since it needs to
19298 access some of mini's internals.
19300 2003-05-16 Dietmar Maurer <dietmar@ximian.com>
19302 * mini.c (mono_method_to_ir): inlining fixes/cleanups
19304 Fri May 16 13:27:23 CEST 2003 Paolo Molaro <lupus@ximian.com>
19306 * mini.c, mini-opts.h, inssel.brg: inline small memcpy
19307 for value type handling.
19309 2003-05-16 Dietmar Maurer <dietmar@ximian.com>
19311 * mini.c (mono_method_to_ir): inline LDFLD/STFLD wrappers
19312 (mono_method_check_inlining): enable inlining of all kinds of wrappers
19314 2003-05-15 Lluis Sanchez Gual <lluis@ideary.com>
19316 * mini.c: fixed little bug in CEE_NEWOBJ case when calling
19317 the constructor through a proxy.
19319 Thu May 15 17:17:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19321 * jit-icalls.c, inssel.brg: fixes to array element address
19324 2003-05-15 Dietmar Maurer <dietmar@ximian.com>
19326 * mini-x86.c (is_regsize_var): allocate pointer to registers
19328 Thu May 15 13:04:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19330 * driver.c: fixed typo, added intrins to the set of optimizations
19331 tested with regressions.
19333 Thu May 15 11:57:42 CEST 2003 Paolo Molaro <lupus@ximian.com>
19335 * mini-ops.h, mini.c, inssel.brg: optimize access to 2D arrays.
19336 * jit-icalls.c, exceptions.cs: fixed index out of range checks, added
19339 2003-05-14 Dietmar Maurer <dietmar@ximian.com>
19341 * inssel.brg: remove some common pop instructions without side effects
19343 Wed May 14 12:40:31 CEST 2003 Paolo Molaro <lupus@ximian.com>
19345 * inssel-x86.brg: fixed thinko in int to double conversions.
19347 Wed May 14 12:01:58 CEST 2003 Paolo Molaro <lupus@ximian.com>
19349 * mini.c, jit-icalls.c: added runtime thread-static variable support.
19351 Tue May 13 22:02:06 CEST 2003 Paolo Molaro <lupus@ximian.com>
19353 * inssel-long32.brg: two more missing instructions.
19355 2003-05-13 Dietmar Maurer <dietmar@ximian.com>
19357 * mini.c (mono_emit_call_args): set the cil_code for all arguments
19358 if not already set.
19360 2003-05-12 Zoltan Varga <vargaz@freemail.hu>
19362 * mini-x86.c (mono_arch_output_basic_block): Handle negative zero
19365 * basic-float.cs: Added tests for negative zero.
19367 Sun May 11 14:56:27 CEST 2003 Paolo Molaro <lupus@ximian.com>
19369 * inssel-long32.brg, basic-long.cs, exceptions.cs: handle
19370 a couple of missing operations for long casts, with test cases.
19372 2003-05-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19374 * exceptions-x86.c: fixed small leaks in mono_arch_handle_exception.
19376 2003-05-09 Dietmar Maurer <dietmar@ximian.com>
19378 * mini-x86.c (mono_arch_emit_prolog): avoid reallocs with better
19379 code size estimation.
19381 2003-05-08 Dietmar Maurer <dietmar@ximian.com>
19383 * mini.c (mono_jit_create_remoting_trampoline): make it work with
19384 abstract methods (fix bug 42542)
19386 * aot.c: add ability to handle array types
19388 2003-05-08 Zoltan Varga <vargaz@freemail.hu>
19390 * mini.c: Call the _specific versions of the object allocation
19391 functions if possible.
19393 Tue May 6 17:18:33 CEST 2003 Paolo Molaro <lupus@ximian.com>
19395 * driver.c: call setlocale ().
19397 Tue May 6 14:38:22 CEST 2003 Paolo Molaro <lupus@ximian.com>
19399 * mini.h, mini.c, aot.c, debug-mini.c, exceptions.c: build fixes for
19402 2003-05-05 Dietmar Maurer <dietmar@ximian.com>
19404 * mini.c (optimize_branches): dont touch code inside exception clauses (fix bug 38136)
19406 * exceptions-x86.c (ves_icall_get_frame_info): also skip remoting
19407 wrappers (fix bug 42122)
19409 2003-05-04 Martin Baulig <martin@ximian.com>
19411 * mini.h (mono_jit_init, mono_jit_cleanup): Added prototypes.
19413 * driver.c: s/MONO_OPT_SAHRED/MONO_OPT_SHARED/g.
19414 s/mini_set_defaults/mono_set_defaults/g.
19416 2003-05-04 Martin Baulig <martin@ximian.com>
19418 * driver.c: s/mini_parse_default_optimizations/mono_parse_default_optimizations/g.
19420 Sun May 4 11:48:08 CEST 2003 Paolo Molaro <lupus@ximian.com>
19422 * inssel-long32.brg: add missing lreg: OP_LCONV_TO_U8 (lreg) rule
19423 (reported by Don Roberts).
19425 Fri May 2 18:36:45 CEST 2003 Paolo Molaro <lupus@ximian.com>
19427 * mini.c: temporarily work around two bugs for this release.
19429 Fri May 2 17:37:29 CEST 2003 Paolo Molaro <lupus@ximian.com>
19431 * Makefile.am: avoid linking libmono with GMODULE_LIBS, because
19432 that contains -export-dynamic and it makes using the ld script
19434 * mini.h, main.c, driver.c: s/mini_main/mono_main/g.
19436 Fri May 2 12:52:32 CEST 2003 Paolo Molaro <lupus@ximian.com>
19438 * mini.h, mini-x86.c, driver.c: disable optimizations not available on a
19441 Thu May 1 15:28:21 CEST 2003 Paolo Molaro <lupus@ximian.com>
19443 * mini.c: make sure leave calls all the needed finally blocks,
19444 even when the target jumps out of multiple exception clauses.
19446 Thu May 1 15:18:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19448 * ldscript, Makefile.am: add linker script to reduce the number of
19449 exported symbols (should also fix the issues with libwine defining
19450 some of the same symbols in io-layer).
19452 2003-05-01 Zoltan Varga <vargaz@freemail.hu>
19454 * driver.c (mini_main): Avoid assertion when no file name is given on
19457 Wed Apr 30 15:33:11 CEST 2003 Paolo Molaro <lupus@ximian.com>
19459 * driver.c: added --version/-V command line option.
19460 Added the inline optimization in the regression tests.
19462 Wed Apr 30 15:16:02 CEST 2003 Paolo Molaro <lupus@ximian.com>
19464 * mini.c, basic-calls.cs: when inlining, save arguments to locals according
19465 to the type in the method signature (fixes bug#42134).
19467 Wed Apr 30 12:38:44 CEST 2003 Paolo Molaro <lupus@ximian.com>
19469 * mini.c: when inlining, check this is not null only when needed (bug #42135).
19471 Wed Apr 30 11:44:36 CEST 2003 Paolo Molaro <lupus@ximian.com>
19473 * mini-ppc.h, tramp-pcc.c: type fixes from Max Horn <max@quendi.de>.
19475 2003-04-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19477 * driver.c: fixed bug #42100.
19479 2003-04-29 Dietmar Maurer <dietmar@ximian.com>
19481 * mini.c (mono_method_to_ir): UNBOX need to CAST objects first
19483 Mon Apr 28 17:03:14 CEST 2003 Paolo Molaro <lupus@ximian.com>
19485 * mini.c: moved most of the code required to do inlining to its own
19486 function so it can be reused. Inline also ctors if appropriate.
19488 2003-04-28 Zoltan Varga <vargaz@freemail.hu>
19490 * Makefile.am: Link with -export-dynamic so shared libs loaded by
19491 the runtime can call mono API functions.
19493 2003-04-27 Martin Baulig <martin@ximian.com>
19495 * debug-mini.c (mono_debug_init_method): Added
19496 `guint32 breakpoint_id' argument; if the method has a breakpoint,
19497 send a notification to the debugger.
19499 * mini.c (mono_method_to_ir): Don't insert a breakpoint if we're
19500 running in the Mono Debugger, just pass the breakpoint number to
19501 mono_debug_init_method().
19503 * tramp-x86.c, tramp-ppc.c: Removed the breakpoint trampolines.
19505 Sun Apr 27 13:18:04 CEST 2003 Paolo Molaro <lupus@ximian.com>
19507 * mini.c: allow some more unsafe compares.
19509 Sat Apr 26 11:55:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19511 * mini-x86.c, Makefile.am: make distcheck works (partially from
19512 a patch by Richard Lee <r.h.lee@attbi.com>).
19513 * regset.c, regset.h: removed, they are unused.
19515 2003-04-25 Dick Porter <dick@ximian.com>
19517 * driver.c: Usage reports the name as 'mono' not 'mini'
19518 * exceptions-x86.c: Build and run on freebsd
19520 Thu Apr 24 17:09:03 CEST 2003 Paolo Molaro <lupus@ximian.com>
19522 * Makefile.am: install the program with the 'mono' name and
19523 the library as libmono instead of mini and libmini.
19525 Thu Apr 24 17:08:07 CEST 2003 Paolo Molaro <lupus@ximian.com>
19527 * driver.c: provide the APIs for the embedding interface of the old jit.
19529 2003-04-23 Dietmar Maurer <dietmar@ximian.com>
19531 * jit-icalls.c (helper_stelem_ref): impl. (fix bug 41775)
19533 2003-04-23 Martin Baulig <martin@ximian.com>
19535 * tramp-x86.c, tramp-ppc.c: Reenable the debugger breakpoint interface.
19537 * driver.c: Added `--debug' command line argument to enable
19540 2003-04-23 Martin Baulig <martin@ximian.com>
19542 * debug.[ch]: Removed. The code is now in
19543 ../metadata/mono-debug.[ch] and mono-debug-debugger.[ch].
19545 * debug-stabs.c, debug-dwarf2.c: Removed; nobody used this for the
19548 2003-04-22 Dietmar Maurer <dietmar@ximian.com>
19550 * mini.c (mono_method_to_ir): set the cil_code address (fix bug 41525)
19552 2003-04-17 Gonzalo Paniagua Javier <gonzalo@ximian.com>
19555 (mini_cleanup): moved mono_runtime_cleanup call after the call to
19556 mono_domain_finalize.
19557 (mini_method_compile): use mono_method_profile* if the the option is
19560 2003-04-17 Zoltan Varga <vargaz@freemail.hu>
19562 * tramp-x86.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19563 methods with their wrapper.
19565 * tramp-ppc.c (mono_arch_create_jit_trampoline): Subsitute synchronized
19566 methods with their wrapper.
19568 * jit-icalls.c (mono_ldvirtfn): Subsitute synchronized methods with
19571 * mini.c (mono_method_to_ir): Subsitute synchronized methods with their
19574 * mini.c (mono_method_check_inlining): Avoid inlining synchronized
19577 2003-04-17 Dietmar Maurer <dietmar@ximian.com>
19579 * exceptions-x86.c (mono_arch_handle_exception): fix for bug 36252
19581 2003-04-16 Dietmar Maurer <dietmar@ximian.com>
19583 * mini.c (mono_compile_create_var): use g_malloc/g_realloc instead
19584 of the mempool. This is slightly faster and uses less memory
19586 Wed Apr 16 12:53:10 CEST 2003 Paolo Molaro <lupus@ximian.com>
19588 * mini.c: avoid O(n) allocation for variables.
19590 Tue Apr 15 19:13:41 CEST 2003 Paolo Molaro <lupus@ximian.com>
19592 * mini.c: handle items on the stack after inlining methods.
19594 Tue Apr 15 14:17:57 CEST 2003 Paolo Molaro <lupus@ximian.com>
19596 * mini.c: make the method->opcode optimization dependent
19597 on MONO_OPT_INSTRINS and do it lazily.
19599 Tue Apr 15 14:15:39 CEST 2003 Paolo Molaro <lupus@ximian.com>
19601 * driver.c: print overall results at the end of regression run.
19603 Tue Apr 15 11:18:46 CEST 2003 Paolo Molaro <lupus@ximian.com>
19605 * inssel.brg: don't overwrite symbolic registers.
19607 Mon Apr 14 17:41:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19609 * inssel-x86.brg: fix conversion from long to float.
19611 2003-04-11 Dietmar Maurer <dietmar@ximian.com>
19613 * mini.c (mini_init): use an opcode for get_Chars (OP_GETCHR)
19615 2003-04-10 Zoltan Varga <vargaz@freemail.hu>
19617 * mini.c (mono_type_blittable): MONO_TYPE_OBJECT is blittable.
19619 * driver.c: Added --print-vtable option as in the old JIT.
19621 Thu Apr 10 17:43:49 CEST 2003 Paolo Molaro <lupus@ximian.com>
19623 * inssel-long32.brg, exceptions.cs: fix conversions from long, too.
19625 Thu Apr 10 16:27:43 CEST 2003 Paolo Molaro <lupus@ximian.com>
19627 * inssel.brg, basic.cs: fixed checked conversions to byte and short.
19629 2003-04-09 Zoltan Varga <vargaz@freemail.hu>
19631 * mini.c regalloc.c regalloc.h: Fix memory leak.
19633 2003-04-09 Dietmar Maurer <dietmar@ximian.com>
19635 * aot.c (mono_aot_get_method): register all used strings
19637 Wed Apr 9 15:22:18 CEST 2003 Paolo Molaro <lupus@ximian.com>
19639 * mini.c: always intern strings references with ldstr at compile time.
19641 Tue Apr 8 11:41:26 CEST 2003 Paolo Molaro <lupus@ximian.com>
19643 * Makefile.am: add BUILT_SOURCES.
19645 Mon Apr 7 16:31:34 CEST 2003 Paolo Molaro <lupus@ximian.com>
19647 * driver.c: give a better error message when the assembly to execute
19648 doesn't have an entry point.
19650 2003-04-07 Dietmar Maurer <dietmar@ximian.com>
19652 * Makefile.am: added hack for automake
19654 * mono/mini/mini.c (mono_save_args): always copy arguments to keep
19657 * mono/mini/ssa.c (mono_ssa_avoid_copies): don't optimize calls
19659 22003-04-07 Martin Baulig <martin@ximian.com>
19661 * Makefile.am: Added Makefile.am.
19663 * debugger-main.c: Removed, this is now in the debugger where it
19666 * mini.pc.in: Call this package `mini' for the moment.