X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mono%2Fmini%2FChangeLog;h=4497d71c77d1ad30733d78153c71f336e4d3ff89;hb=dc59ea89354f11835951aa865b7ab1354bf15dbd;hp=f59286b551e260358f0c9ed55f27a8a0e931b2e9;hpb=121726f377fd0af978384113fbb9fc9c536271a6;p=mono.git diff --git a/mono/mini/ChangeLog b/mono/mini/ChangeLog index f59286b551e..4497d71c77d 100644 --- a/mono/mini/ChangeLog +++ b/mono/mini/ChangeLog @@ -1,3 +1,197 @@ +2007-11-30 Zoltan Varga + + * aot-runtime (mono_aot_get_method_from_vt_slot): Add support for multi-byte method ref encodings. + + * aot-runtime.c (decode_klass_ref): Implement decoding of generic instances. + + * aot-compiler.c (encode_klass_ref): Implement proper encoding of generic instances. + + * mini.c (mono_method_to_ir): Optimize the common ldftn+create delegate combination. + + * mini-trampolines.c (mono_delegate_trampoline): Add some code to handle the case when the delegate + is created by the inlined delegate ctor. + + * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX. + + * mini.c (mono_jit_compile_method_inner): Replace calls to delegate invoke with the trampoline here too. + +2007-11-29 Zoltan Varga + + * cpu-x86.md: Fix the length of ckfinite. + +2007-11-28 Zoltan Varga + + * mini-x86.c (mono_arch_output_basic_block): Unify div/rem code and handle the case when sreg2 is EDX. + + * mini-x86.c (mono_arch_output_basic_block): Clean up the fp stack properly in CKFINITE. + (mono_arch_output_basic_block): Get rid of unused last_ins and last_offset. + + * mini-x86.c (mono_arch_output_basic_block): Add some micro optimizations. + + * mini-x86.c inssel-x86.brg cpu-x86.md: Move the implementation of the + OP_START_HANDLER/OP_ENDFINALLY/OP_ENDFILTER opcodes to mini-x86.c. + +2007-11-28 Martin Baulig + + * mini-x86.c + (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline() + after creating the trampoline. + +2007-11-27 Zoltan Varga + + * aot-runtime.c (load_aot_module): Check runtime version if needed. + + * aot-compiler.c: Add bind-to-runtime-version for producing AOT files which only load into a runtime with + the same version. + + * generic-sharing.c (mono_helper_get_rgctx_other_ptr): Change the signature to take the calling class + instead of the calling method to help AOT. + + * mini.c (get_runtime_generic_context_other_ptr): Update after the change. + +2007-11-26 Zoltan Varga + + * aot-runtime.c (mono_aot_init_vtable): Simplify this if MONO_ARCH_COMMON_VTABLE_TRAMPOLINE + is defined. + +2007-11-23 Zoltan Varga + + * aot-compiler.c (emit_class_name_table): Properly encode generic class names. + + * aot-compiler.c (compile_method): Correct check for generic method definitions. + (encode_method_ref): No need to handle generic method definitions specially. + + * mini.h (MONO_AOT_FILE_VERSION): Bump this. + + * aot-runtime.c (decode_klass_ref): Clean this up and rename from + decode_klass_info. + + * aot-compiler.c (encode_klass_ref): Clean this up and rename from + encode_klass_info. + (compile_method): Enable generic sharing. + +2007-11-22 Zoltan Varga + + * mini.c (get_runtime_generic_context_other_ptr): Disable AOT here. + (mini_method_compile): Add preliminary support for AOTing shared generic code. + + * aot-compiler.c (compile_method): Add preliminary support for AOTing shared + generic code. + + * mini-trampolines.c: Fix a warning. + + * mini.c (get_runtime_generic_context_other_ptr): Use NEW_METHODCONST instead of + NEW_PCONST. + (mono_method_to_ir): Use NEW_DOMAINCONST in one place. + (generic_class_is_reference_type): Remove unused function. + + * mini-trampolines.c (mono_magic_trampoline): Avoid loading metadata if possible + in the generic vtable trampoline case. + + * aot-runtime.c (mono_aot_init_vtable): Use the generic vtable trampoline. + + * aot-runtime.c (mono_aot_get_method_from_vt_slot): New helper function to + return an AOT method based on a vtable slot. + + * aot-compiler.c (compile_method): Avoid AOTing synchronized methods for now. + + * mini.c (mini_get_vtable_trampoline): Export this. + +2007-11-22 Martin Baulig + + * debug-debugger.h + (MonoDebuggerInfo): Move `debugger_version' up. + +2007-11-22 Martin Baulig + + * mini-amd64.c + (mono_arch_get_delegate_invoke_impl): Call mono_debug_add_delegate_trampoline(). + + * mini-trampolines.c + (mono_delegate_trampoline): Call mono_debugger_trampoline_compiled() + after compiling the method. + +2007-11-20 Martin Baulig + + * debug-mini.c + (mono_debugger_insert_method_breakpoint): Moved into mono-debug-debugger.c. + (mono_debugger_remove_breakpoint): Likewise. + (mono_debugger_check_breakpoints): Likewise. + + * debug-debugger.c: Implement the new breakpoint interface here. + +2007-11-18 Zoltan Varga + + * mini-amd64.c (mono_arch_output_basic_block): Unify the implementation of + CEE_CONV_I1/SEXT_I1 and I2 since they are the same. + + * mini-x86.c (mono_arch_output_basic_block): Ditto. + +2007-11-17 Zoltan Varga + + * mini-amd64.c (mono_arch_output_basic_block): Fix a typo. + + * mini-x86.c (mono_arch_get_inst_for_method): Remove code which is now in + mini.c. + + * mini-ia64.c (mono_arch_get_inst_for_method): Remove code which is now in + mini.c. + + * mini-amd64.c (mono_arch_compute_omit_fp): Disable fp elimination for methods + returning a vtype in a register. + + * mini.c (mini_get_inst_for_method): Move the handling of the atomic operations + here from the arch specific code. + + * mini-amd64.c (mono_arch_get_inst_for_method): Remove code which is now in + mini.c. + + * mini-amd64.c (mono_arch_output_basic_block): Add some micro optimizations. + (mono_arch_emit_prolog): Increment maximum prolog size. + + * mini-amd64.c inssel-amd64.brg cpu-amd64.md: Move the implementation of the + START_HANDLER/ENDFINALLY/ENDFILTER opcodes to mini-amd64.c. + + * mini-x86.c (get_call_info): Receive a MonoCompile instead of a + MonoGenericSharingContext. + + * mini-ia64.c (get_call_info): Receive a MonoCompile instead of a + MonoGenericSharingContext. Allocate memory from the cfg mempool. + +2007-11-15 Mark Probst + + * mini.c, mini.h, generic-sharing.c: Functions for producing code + which extract fields out of the runtime generic context. Full + sharing of the NEWARR opcode. + +Thu Nov 15 14:20:21 CET 2007 Paolo Molaro + + * abcremoval.c, mini.c, ssa.c, ssapre.c: updated to implement + --enable-minimal=ssa. + +2007-11-13 Zoltan Varga + + * mini-trampolines.c (mono_delegate_trampoline): Update after + mono_marshal_get_delegate_invoke () signature change. + +2007-11-13 Mark Probst + + * mini.c: Removed the shared context in favor of the generic + sharing context. Allocate the MonoJitInfo structure with room for + the generic sharing context if it's needed. + + * mini.h: Remove MonoGenericSharingContext declaration. It's in + domain-internals.h now. + + * mini-x86.c: Pass the generic sharing context to get_call_info (). + + * generic-sharing.c: Several changes for working without a shared + context and instead operating on open types instead. + +2007-11-12 David S. Miller + + * inssel-sparc.brg: Fix double instruction emit. + 2007-11-12 Zoltan Varga * mini.c (mono_jit_runtime_invoke): Avoid trying to compile the Array @@ -80,6 +274,12 @@ * mini-ppc.h, mini-x86.h: Handle Leopards renaming of some structure members. +Wed Oct 31 20:23:14 CET 2007 Paolo Molaro + + * mini.c, mini-x86.c: when getting back from unmanaged code + to managed via a marshaled delegate we also need to set the + right domain. + Wed Oct 31 19:53:33 CET 2007 Paolo Molaro * mini-amd64.c, mini-amd64.h, tramp-amd64.c: breakpoint table support