Searched refs:rOop (Results 1 - 3 of 3) sorted by relevance

/openjdk7/hotspot/src/cpu/x86/vm/
H A DsharedRuntime_x86_64.cpp1090 const Register rOop = src.first()->as_Register(); local
1092 if (rOop == j_rarg0)
1094 else if (rOop == j_rarg1)
1096 else if (rOop == j_rarg2)
1098 else if (rOop == j_rarg3)
1100 else if (rOop == j_rarg4)
1103 assert(rOop == j_rarg5, "wrong register");
1112 __ movptr(Address(rsp, offset), rOop); local
1117 __ cmpptr(rOop, (int32_t)NULL_WORD);
H A DsharedRuntime_x86_32.cpp1082 const Register rOop = src.first()->as_Register(); local
1084 int oop_slot = (rOop == rcx ? 0 : 1) * VMRegImpl::slots_per_word + oop_handle_offset;
1087 __ movptr(Address(rsp, offset), rOop); local
1090 __ cmpptr(rOop, (int32_t)NULL_WORD);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp1369 const Register rOop = src.first()->as_Register(); local
1371 int oop_slot = rOop->input_number() * VMRegImpl::slots_per_word + oop_handle_offset;
1374 __ st_ptr(rOop, SP, offset + STACK_BIAS);
1381 __ movr( Assembler::rc_z, rOop, G0, rHandle );
1383 __ tst( rOop );

Completed in 62 milliseconds