comparison src/share/vm/interpreter/abstractInterpreter.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 5ccbab1c69f3
children 096c224171c4 2b8e28fdf503
comparison
equal deleted inserted replaced
12968:97d400662426 13010:bd3237e0e18d
156 static bool can_be_compiled(methodHandle m); 156 static bool can_be_compiled(methodHandle m);
157 157
158 // Runtime support 158 // Runtime support
159 159
160 // length = invoke bytecode length (to advance to next bytecode) 160 // length = invoke bytecode length (to advance to next bytecode)
161 static address deopt_entry (TosState state, int length) { ShouldNotReachHere(); return NULL; } 161 static address deopt_entry(TosState state, int length) { ShouldNotReachHere(); return NULL; }
162 static address return_entry (TosState state, int length) { ShouldNotReachHere(); return NULL; } 162 static address return_entry(TosState state, int length, Bytecodes::Code code) { ShouldNotReachHere(); return NULL; }
163 163
164 static address rethrow_exception_entry() { return _rethrow_exception_entry; } 164 static address rethrow_exception_entry() { return _rethrow_exception_entry; }
165 165
166 // Activation size in words for a method that is just being called. 166 // Activation size in words for a method that is just being called.
167 // Parameters haven't been pushed so count them too. 167 // Parameters haven't been pushed so count them too.