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

/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp2984 Register in_reg = L0; local
2987 in_reg = src.first()->as_Register();
2991 __ ld_ptr(FP, reg2offset(src.first()) + STACK_BIAS, in_reg);
3004 __ br_null(in_reg, true, Assembler::pn, skipUnbox);
3011 __ ldub(in_reg, box_offset, tmp); break;
3013 __ lduh(in_reg, box_offset, tmp); break;
3015 __ ld(in_reg, box_offset, tmp); break;
3017 __ ld_long(in_reg, box_offset, tmp); break;
/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_32.cpp2648 Register in_reg = rax; local
2650 in_reg = src.first()->as_Register();
2652 simple_move32(masm, src, in_reg->as_VMReg());
2659 __ testl(in_reg, in_reg);
2668 __ movl(rbx, Address(in_reg,
2672 __ movl(in_reg, Address(in_reg, box_offset));
2673 __ movl(Address(rsp, reg2offset_out(dst.first())), in_reg); local
H A DsharedRuntime_x86_64.cpp2946 Register in_reg = rax; local
2948 in_reg = src.first()->as_Register();
2956 __ testq(in_reg, in_reg);
2961 Address src1(in_reg, box_offset);
2963 __ movq(in_reg, src1);
2964 __ movq(stack_dst, in_reg);
2968 __ movl(in_reg, src1);
2969 __ movl(stack_dst, in_reg);

Completed in 104 milliseconds