Lines Matching refs:temp2
105 Register temp2 = locations->GetTemp(1).AsRegister<Register>(); in EmitNativeCode() local
127 __ movl(temp2, Address(src, temp1, ScaleFactor::TIMES_4, adjusted_offset)); in EmitNativeCode()
129 __ leal(temp2, Address(src_pos.AsRegister<Register>(), temp1, ScaleFactor::TIMES_1, 0)); in EmitNativeCode()
130 __ movl(temp2, Address(src, temp2, ScaleFactor::TIMES_4, offset)); in EmitNativeCode()
132 __ MaybeUnpoisonHeapReference(temp2); in EmitNativeCode()
140 DCHECK_NE(temp2, ESP); in EmitNativeCode()
141 DCHECK(0 <= temp2 && temp2 < kNumberOfCpuRegisters) << temp2; in EmitNativeCode()
142 int32_t entry_point_offset = Thread::ReadBarrierMarkEntryPointsOffset<kX86PointerSize>(temp2); in EmitNativeCode()
145 __ MaybePoisonHeapReference(temp2); in EmitNativeCode()
150 __ movl(Address(dest, temp1, ScaleFactor::TIMES_4, adjusted_offset), temp2); in EmitNativeCode()
153 __ movl(Address(dest, temp3, ScaleFactor::TIMES_4, offset), temp2); in EmitNativeCode()
215 XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>(); in MoveIntToFP() local
217 __ movd(temp2, input.AsRegisterPairHigh<Register>()); in MoveIntToFP()
218 __ punpckldq(temp1, temp2); in MoveIntToFP()
1889 XmmRegister temp2 = locations->GetTemp(1).AsFpuRegister<XmmRegister>(); in GenUnsafePut() local
1891 __ movd(temp2, value_hi); in GenUnsafePut()
1892 __ punpckldq(temp1, temp2); in GenUnsafePut()
2027 Register temp2 = locations->GetTemp(1).AsRegister<Register>(); in GenCAS() local
2036 codegen->MarkGCCard(temp1, temp2, base, value, value_can_be_null); in GenCAS()
2048 &temp2); in GenCAS()
2590 Register temp2 = temp2_loc.AsRegister<Register>(); in VisitSystemArrayCopy() local
2743 __ testl(temp2, temp2); in VisitSystemArrayCopy()
2747 __ cmpw(Address(temp2, primitive_offset), Immediate(Primitive::kPrimNot)); in VisitSystemArrayCopy()
2757 __ cmpl(temp1, temp2); in VisitSystemArrayCopy()
2784 __ movl(temp2, Address(temp1, component_offset)); in VisitSystemArrayCopy()
2785 __ testl(temp2, temp2); in VisitSystemArrayCopy()
2787 __ MaybeUnpoisonHeapReference(temp2); in VisitSystemArrayCopy()
2788 __ cmpw(Address(temp2, primitive_offset), Immediate(Primitive::kPrimNot)); in VisitSystemArrayCopy()
2915 GenSystemArrayCopyBaseAddress(GetAssembler(), type, dest, dest_pos, temp2); in VisitSystemArrayCopy()
2921 __ popl(Address(temp2, 0)); in VisitSystemArrayCopy()
2924 __ addl(temp2, Immediate(element_size)); in VisitSystemArrayCopy()
2933 GenSystemArrayCopyBaseAddress(GetAssembler(), type, dest, dest_pos, temp2); in VisitSystemArrayCopy()
2944 __ popl(Address(temp2, 0)); in VisitSystemArrayCopy()
2947 __ addl(temp2, Immediate(element_size)); in VisitSystemArrayCopy()
2954 codegen_->MarkGCCard(temp1, temp2, dest, Register(kNoRegister), /* value_can_be_null= */ false); in VisitSystemArrayCopy()