Searched defs:callee_locals (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/cpu/zero/vm/
H A DsharedRuntime_zero.cpp96 int callee_locals) {
95 last_frame_adjust(int callee_parameters, int callee_locals) argument
H A DcppInterpreter_zero.cpp918 int callee_locals,
924 assert(!is_top_frame || (!callee_locals && !callee_param_count),
943 int callee_extra_locals = callee_locals - callee_param_count;
912 layout_activation(methodOop method, int tempcount, int popframe_extra_args, int moncount, int caller_actual_parameters, int callee_param_count, int callee_locals, frame* caller, frame* interpreter_frame, bool is_top_frame, bool is_bottom_frame) argument
/openjdk7/hotspot/src/share/vm/interpreter/
H A DabstractInterpreter.hpp199 int callee_locals,
208 callee_locals,
221 int callee_locals,
193 size_activation(methodOop method, int temps, int popframe_args, int monitors, int caller_actual_parameters, int callee_params, int callee_locals, bool is_top_frame, bool is_bottom_frame) argument
/openjdk7/hotspot/src/share/vm/runtime/
H A DvframeArray.cpp160 int callee_locals,
278 callee_locals, local
425 int callee_locals,
438 callee_locals,
534 int callee_parameters, callee_locals; local
536 callee_parameters = callee_locals = 0;
546 callee_locals = callee->max_locals();
550 callee_locals,
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
H A Ddeoptimization.cpp415 int callee_locals = 0; local
426 callee_locals,
437 callee_locals = array->element(index)->method()->max_locals();
466 caller_adjustment = last_frame_adjust(0, callee_locals);
467 } else if (callee_locals > callee_parameters) {
471 caller_adjustment = last_frame_adjust(callee_parameters, callee_locals);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DcppInterpreter_x86.cpp2334 int callee_locals,
2360 int extra_locals_size = (callee_locals - callee_param_count) * BytesPerWord;
2328 layout_activation(methodOop method, int tempcount, int popframe_extra_args, int moncount, int caller_actual_parameters, int callee_param_count, int callee_locals, frame* caller, frame* interpreter_frame, bool is_top_frame, bool is_bottom_frame) argument
H A DtemplateInterpreter_x86_32.cpp1571 int callee_locals,
1597 ((callee_locals - callee_param_count)*Interpreter::stackElementWords) +
1565 layout_activation(methodOop method, int tempcount, int popframe_extra_args, int moncount, int caller_actual_parameters, int callee_param_count, int callee_locals, frame* caller, frame* interpreter_frame, bool is_top_frame, bool is_bottom_frame) argument
H A DtemplateInterpreter_x86_64.cpp1592 int callee_locals,
1616 (callee_locals - callee_param_count)*Interpreter::stackElementWords +
1586 layout_activation(methodOop method, int tempcount, int popframe_extra_args, int moncount, int caller_actual_parameters, int callee_param_count, int callee_locals, frame* caller, frame* interpreter_frame, bool is_top_frame, bool is_bottom_frame) argument
/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;

Completed in 298 milliseconds