Searched defs:callee_parameters (Results 1 - 7 of 7) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DsharedRuntime_zero.cpp95 int Deoptimization::last_frame_adjust(int callee_parameters, argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A Dinterpreter.cpp317 address AbstractInterpreter::deopt_continue_after_entry(methodOop method, address bcp, int callee_parameters, bool is_top_frame) { argument
341 method->constants()->cache()->entry_at(index)->set_parameter_size(callee_parameters);
355 method->constants()->cache()->secondary_entry_at(index)->set_parameter_size(callee_parameters);
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp159 int callee_parameters,
184 pc = Interpreter::deopt_continue_after_entry(method(), bcp, callee_parameters, is_top_frame);
273 temps + callee_parameters, local
277 callee_parameters, local
424 int callee_parameters,
433 temps + callee_parameters,
437 callee_parameters,
534 int callee_parameters, callee_locals; local
536 callee_parameters = callee_locals = 0;
545 callee_parameters
158 unpack_on_stack(int caller_actual_parameters, int callee_parameters, int callee_locals, frame* caller, bool is_top_frame, bool is_bottom_frame, int exec_mode) argument
423 on_stack_size(int caller_actual_parameters, int callee_parameters, int callee_locals, bool is_top_frame, bool is_bottom_frame, int popframe_extra_stack_expression_els) const argument
[all...]
H A Ddeoptimization.cpp414 int callee_parameters = 0; local
420 int caller_parms = callee_parameters;
425 callee_parameters,
436 callee_parameters = array->element(index)->method()->size_of_parameters();
467 } else if (callee_locals > callee_parameters) {
471 caller_adjustment = last_frame_adjust(callee_parameters, callee_locals);
486 caller_was_method_handle ? 0 : callee_parameters,
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp3279 int Deoptimization::last_frame_adjust(int callee_parameters, int callee_locals) { argument
3280 assert(callee_locals >= callee_parameters,
3282 if (callee_locals < callee_parameters)
3284 int diff = (callee_locals - callee_parameters) * Interpreter::stackElementWords;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp2791 int Deoptimization::last_frame_adjust(int callee_parameters, int callee_locals ) { argument
2792 return (callee_locals - callee_parameters) * Interpreter::stackElementWords;
H A DsharedRuntime_x86_64.cpp3275 int Deoptimization::last_frame_adjust(int callee_parameters, int callee_locals ) { argument
3276 return (callee_locals - callee_parameters) * Interpreter::stackElementWords;

Completed in 89 milliseconds