Wed Jun 30 12:10:57 CEST 2010 Paolo Molaro <lupus@ximian.com>
[mono.git] / mono / mini / ChangeLog
index 52c445304aa1d0d66f5c9da8a61827bb0103d59e..1f523c45fcd122e9edd63ea0fbf80a969c3b69a2 100755 (executable)
@@ -1,5 +1,65 @@
+
+Wed Jun 30 12:10:57 CEST 2010 Paolo Molaro <lupus@ximian.com>
+
+       * Makefile.am, mini-llvm.h, mini-unwind.h, mini.c, mini.h, xdebug.c:
+       implemt the option of loading the llvm backend from a module so
+       that we can have a single binary and the bloat from llvm is
+       only experienced when it is actually loaded.
+
+Wed Jun 30 12:02:39 CEST 2010 Paolo Molaro <lupus@ximian.com>
+
+       * mini-llvm.c: remove direct access to mono_defaults.
+
+2010-06-29  Zoltan Varga  <vargaz@gmail.com>
+
+       * mini-arm.c (mono_arch_get_vcall_slot): This is no longer used on ARM, so make it
+       a no-op.
+
+       * mini-trampolines.c (mono_vcall_trampoline): Fix a warning.
+
+       * mini-x86.c (mono_arch_get_vcall_slot): Remove most cases as the only caller
+       is now mono_arch_nullify_class_init_trampoline ().
+       (mono_arch_output_basic_block): Remove the special casing from the CALL_MEMBASE
+       opcodes, they are no longer needed.
+
+       * mini-amd64.c (mono_arch_get_vcall_slot): Remove most cases as the only caller is
+       now mono_arch_nullify_class_init_trampoline ().
+       (mono_arch_output_basic_block): Remove the special casing from the CALL_MEMBASE
+       opcodes, they are no longer needed.
+
+       * mini-trampolines.c (mono_vcall_trampoline): Use the LLVM method of obtaining the
+       vtable on platforms which support it.
+
+       * driver.c: Print the full LLVM version we are compiled against in --version.
+
+       * aot-runtime.c (decode_exception_debug_info): Separate the LLVM and non-LLVM code
+       a bit better. Decode nesting information to fix eh support for llvm+aot.
+
+       * aot-compiler.c (emit_exception_debug_info): Encode nesting information for LLVM
+       methods.
+
+       * mini-llvm.c (mono_llvm_cleanup): Dispose the aot module too.
+
+       * mini-arm.c (get_call_info): Change the managed calling convention so 'this'
+       is always passed as the first argument, before the vtype ret arg. This simplifies
+       get_this_arg_reg () and LLVM integration.
+
+2010-06-28  Zoltan Varga  <vargaz@gmail.com>
+
+       * mini-trampolines.c mini.c: Rework the virtual call handling code by using a separate
+       vtable trampoline for each vtable slot for both the LLVM and non-LLVM cases. Move
+       most of the vcall specific code to mono_vcall_trampoline () from
+       common_call_trampoline ().
+
 2010-06-27  Zoltan Varga  <vargaz@gmail.com>
 
+       * mini-trampolines.c (common_call_trampoline): Remove the code which created static
+       rgctx trampolines when called from LLVM, they won't work for dynamic rgctx arguments
+       if the callsite is patched.
+
+       * mini-llvm.c (process_call): Disable calls which need an rgctx arg if not using
+       the llvm branch.
+
        * tramp-amd64.c (mono_arch_create_rgctx_lazy_fetch_trampoline): Fix the name of
        the trampoline in the xdebug info.