comparison src/share/vm/interpreter/cppInterpreter.hpp @ 13010:bd3237e0e18d

8026328: Setting a breakpoint on invokedynamic crashes the JVM Reviewed-by: jrose, roland
author twisti
date Thu, 24 Oct 2013 16:23:07 -0700
parents 1d1603768966
children de6a9e811145
comparison
equal deleted inserted replaced
12968:97d400662426 13010:bd3237e0e18d
76 static address native_result_to_tosca(int index) { return _native_abi_to_tosca[index]; } // aka result handler 76 static address native_result_to_tosca(int index) { return _native_abi_to_tosca[index]; } // aka result handler
77 static address tosca_result_to_stack(int index) { return _tosca_to_stack[index]; } 77 static address tosca_result_to_stack(int index) { return _tosca_to_stack[index]; }
78 static address stack_result_to_stack(int index) { return _stack_to_stack[index]; } 78 static address stack_result_to_stack(int index) { return _stack_to_stack[index]; }
79 static address stack_result_to_native(int index) { return _stack_to_native_abi[index]; } 79 static address stack_result_to_native(int index) { return _stack_to_native_abi[index]; }
80 80
81 static address return_entry (TosState state, int length); 81 static address return_entry (TosState state, int length, Bytecodes::Code code);
82 static address deopt_entry (TosState state, int length); 82 static address deopt_entry (TosState state, int length);
83 83
84 #ifdef TARGET_ARCH_x86 84 #ifdef TARGET_ARCH_x86
85 # include "cppInterpreter_x86.hpp" 85 # include "cppInterpreter_x86.hpp"
86 #endif 86 #endif