diff src/cpu/x86/vm/interp_masm_x86_64.cpp @ 3808:341a57af9b0a

6990212: JSR 292 JVMTI MethodEnter hook is not called for JSR 292 bootstrap and target methods Summary: check for single stepping when dispatching invokes from method handles Reviewed-by: coleenp, twisti, kvn, dsamersoff
author never
date Fri, 15 Jul 2011 15:35:50 -0700
parents 2e038ad0c1d0
children fdb992d83a87
line wrap: on
line diff
--- a/src/cpu/x86/vm/interp_masm_x86_64.cpp	Thu Jul 14 15:39:40 2011 -0700
+++ b/src/cpu/x86/vm/interp_masm_x86_64.cpp	Fri Jul 15 15:35:50 2011 -0700
@@ -402,7 +402,7 @@
     // interp_only is an int, on little endian it is sufficient to test the byte only
     // Is a cmpl faster?
     cmpb(Address(r15_thread, JavaThread::interp_only_mode_offset()), 0);
-    jcc(Assembler::zero, run_compiled_code);
+    jccb(Assembler::zero, run_compiled_code);
     jmp(Address(method, methodOopDesc::interpreter_entry_offset()));
     bind(run_compiled_code);
   }