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

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp443 int st_off = r_1->reg2stack() * wordSize; local
444 __ movptr (Address(rsp, st_off), r[i]);
H A Dc1_FrameMap_x86.cpp41 int st_off = (r_1->reg2stack() + SharedRuntime::out_preserve_stack_slots()) * VMRegImpl::stack_slot_size; local
42 opr = LIR_OprFact::address(new LIR_Address(rsp_opr, st_off, type));
H A DsharedRuntime_x86_32.cpp567 static void move_c2i_double(MacroAssembler *masm, XMMRegister r, int st_off) { argument
568 int next_off = st_off - Interpreter::stackElementSize;
616 // st_off points to lowest address on stack.
617 int st_off = ((total_args_passed - 1) - i) * Interpreter::stackElementSize; local
618 int next_off = st_off - Interpreter::stackElementSize;
621 // i st_off
639 __ movptr(Address(rsp, st_off), rdi);
643 // st_off == MSW, st_off-wordSize == LSW
649 __ movptr(Address(rsp, st_off), rd
837 int st_off = regs[i].first()->reg2stack()*VMRegImpl::stack_slot_size + wordSize; local
[all...]
H A DsharedRuntime_x86_64.cpp540 int st_off = (total_args_passed - i) * Interpreter::stackElementSize; local
541 int next_off = st_off - Interpreter::stackElementSize;
544 // i st_off
568 __ movptr(Address(rsp, st_off), rax);
578 // st_off == MSW, next_off == LSW
583 __ movptr(Address(rsp, st_off), rax);
586 __ movq(Address(rsp, st_off), rax);
594 __ movl(Address(rsp, st_off), r);
603 __ movptr(Address(rsp, st_off), rax);
607 __ movptr(Address(rsp, st_off),
770 int st_off = regs[i].first()->reg2stack()*VMRegImpl::stack_slot_size + wordSize; local
[all...]
/openjdk7/hotspot/src/cpu/sparc/vm/
H A Dc1_FrameMap_sparc.cpp43 int st_off = (r_1->reg2stack() + SharedRuntime::out_preserve_stack_slots()) * VMRegImpl::stack_slot_size; local
44 opr = LIR_OprFact::address(new LIR_Address(SP_opr, st_off + STACK_BIAS, type));
H A DsharedRuntime_sparc.cpp486 // base+st_off points to top of argument
487 int arg_offset(const int st_off) { return st_off; } argument
488 int next_arg_offset(const int st_off) { argument
489 return st_off - Interpreter::stackElementSize;
494 RegisterOrConstant arg_slot(const int st_off);
495 RegisterOrConstant next_arg_slot(const int st_off);
499 const int st_off, bool is_stack);
501 const int st_off);
503 const int st_off);
581 arg_slot(const int st_off) argument
586 next_arg_slot(const int st_off) argument
593 store_c2i_long(Register r, Register base, const int st_off, bool is_stack) argument
619 store_c2i_object(Register r, Register base, const int st_off) argument
624 store_c2i_int(Register r, Register base, const int st_off) argument
630 store_c2i_double(VMReg r_2, VMReg r_1, Register base, const int st_off) argument
643 store_c2i_float(FloatRegister f, Register base, const int st_off) argument
697 const int st_off = interp_arg_offset - (i*Interpreter::stackElementSize) + bias; local
984 int st_off = reg2offset(regs[i].first()) + STACK_BIAS; local
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp1007 intptr_t st_off = 0; local
1008 AllocateNode* alloc = AllocateNode::Ideal_allocation(st_adr, phase, st_off);
1013 if (ld_off != st_off) return NULL;
3286 intptr_t st_off = get_store_offset(st, phase); local
3287 if (st_off < 0) {
3291 } else if (st_off > start) {
3293 if (st_off < start + size_in_bytes) {
3297 } else if (st_off < start) {
3299 start < st_off + MAX_STORE &&
3300 start < st_off
3408 store_constant(jlong* tiles, int num_tiles, intptr_t st_off, int st_size, jlong con) argument
3481 intptr_t st_off = get_store_offset(st, phase); local
3676 intptr_t st_off = get_store_offset(st, phase); local
3751 intptr_t st_off = get_store_offset(st, phase); local
3880 intptr_t st_off = get_store_offset(st, phase); local
[all...]

Completed in 90 milliseconds