Lines Matching refs:temp

611                           CpuRegister temp,  in CheckPosition()  argument
631 __ movl(temp, Address(input, length_offset)); in CheckPosition()
632 __ subl(temp, Immediate(pos_const)); in CheckPosition()
637 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
639 __ cmpl(temp, length.AsRegister<CpuRegister>()); in CheckPosition()
659 __ movl(temp, Address(input, length_offset)); in CheckPosition()
660 __ subl(temp, pos_reg); in CheckPosition()
662 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
664 __ cmpl(temp, length.AsRegister<CpuRegister>()); in CheckPosition()
1950 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>(); in GenUnsafePut() local
1951 __ movl(temp, value); in GenUnsafePut()
1952 __ PoisonHeapReference(temp); in GenUnsafePut()
1953 __ movl(Address(base, offset, ScaleFactor::TIMES_1, 0), temp); in GenUnsafePut()
2185 static void SwapBits(CpuRegister reg, CpuRegister temp, int32_t shift, int32_t mask, in SwapBits() argument
2189 __ movl(temp, reg); in SwapBits()
2191 __ andl(temp, imm_mask); in SwapBits()
2193 __ shll(temp, imm_shift); in SwapBits()
2194 __ orl(reg, temp); in SwapBits()
2202 CpuRegister temp = locations->GetTemp(0).AsRegister<CpuRegister>(); in VisitIntegerReverse() local
2214 SwapBits(reg, temp, 1, 0x55555555, assembler); in VisitIntegerReverse()
2215 SwapBits(reg, temp, 2, 0x33333333, assembler); in VisitIntegerReverse()
2216 SwapBits(reg, temp, 4, 0x0f0f0f0f, assembler); in VisitIntegerReverse()
2228 static void SwapBits64(CpuRegister reg, CpuRegister temp, CpuRegister temp_mask, in SwapBits64() argument
2232 __ movq(temp, reg); in SwapBits64()
2234 __ andq(temp, temp_mask); in SwapBits64()
2236 __ shlq(temp, imm_shift); in SwapBits64()
2237 __ orq(reg, temp); in SwapBits64()