Searched refs:ld_off (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp705 RegisterOrConstant ld_off = reg2offset(r_1) + extraspace + bias; local
706 ld_off = __ ensure_simm13_or_reg(ld_off, Rdisp);
708 if (!r_2->is_valid()) __ ld (base, ld_off, G1_scratch);
709 else __ ldx(base, ld_off, G1_scratch);
931 const int ld_off = (total_args_passed-i)*Interpreter::stackElementSize; local
947 __ ld(Gargs, arg_slot(ld_off), r);
953 next_arg_slot(ld_off) : arg_slot(ld_off);
962 __ ldf(FloatRegisterImpl::S, Gargs, arg_slot(ld_off), r_
1812 RegisterOrConstant ld_off = reg2offset(r) + STACK_BIAS; local
1852 RegisterOrConstant ld_off = reg2offset(r) + STACK_BIAS; local
1873 RegisterOrConstant ld_off = reg2offset(r) + STACK_BIAS; local
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp635 int ld_off = r_1->reg2stack() * VMRegImpl::stack_slot_size + extraspace; local
638 __ movl(rdi, Address(rsp, ld_off));
642 // ld_off == LSW, ld_off+VMRegImpl::stack_slot_size == MSW
645 __ movptr(rdi, Address(rsp, ld_off));
648 __ movptr(rdi, Address(rsp, ld_off + wordSize));
698 static void move_i2c_double(MacroAssembler *masm, XMMRegister r, Register saved_sp, int ld_off) { argument
699 int next_val_off = ld_off - Interpreter::stackElementSize;
823 int ld_off = (total_args_passed - i) * Interpreter::stackElementSize; local
825 int next_off = ld_off
[all...]
H A DsharedRuntime_x86_64.cpp564 int ld_off = r_1->reg2stack() * VMRegImpl::stack_slot_size + extraspace; local
567 __ movl(rax, Address(rsp, ld_off));
572 __ movq(rax, Address(rsp, ld_off));
577 // ld_off == LSW, ld_off+wordSize == MSW
756 int ld_off = (total_args_passed - i)*Interpreter::stackElementSize; local
758 int next_off = ld_off - Interpreter::stackElementSize;
777 __ movl(r13, Address(saved_sp, ld_off));
788 // ld_off is MSW so get LSW
790 next_off : ld_off;
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dmemnode.cpp1010 intptr_t ld_off = 0;
1011 AllocateNode* allo2 = AllocateNode::Ideal_allocation(ld_adr, phase, ld_off);
1013 if (ld_off != st_off) return NULL;

Completed in 83 milliseconds