Searched defs:extraspace (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp683 const int extraspace = round_to(arg_size + varargs_area, 2*wordSize); local
692 __ sub(SP, __ ensure_simm13_or_reg(extraspace, G3_scratch), SP);
705 RegisterOrConstant ld_off = reg2offset(r_1) + extraspace + bias;
737 __ add(SP, __ ensure_simm13_or_reg(extraspace, G1), O5_savedSP);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp599 int extraspace = total_args_passed * Interpreter::stackElementSize; local
607 __ subptr(rsp, extraspace);
635 int ld_off = r_1->reg2stack() * VMRegImpl::stack_slot_size + extraspace;
H A DsharedRuntime_x86_64.cpp516 int extraspace = (total_args_passed * Interpreter::stackElementSize) + wordSize; local
519 extraspace = round_to(extraspace, 2*wordSize);
527 __ subptr(rsp, extraspace);
564 int ld_off = r_1->reg2stack() * VMRegImpl::stack_slot_size + extraspace;

Completed in 63 milliseconds