Home
last modified time | relevance | path

Searched refs:r_temp (Results 1 – 4 of 4) sorted by relevance

/art/compiler/dex/quick/arm/
Dutility_arm.cc1193 RegStorage r_temp = AllocTemp(); in StoreBaseDisp() local
1196 null_ck_insn = NewLIR3(kThumb2Ldrexd, r_temp.GetReg(), r_temp_high.GetReg(), r_ptr.GetReg()); in StoreBaseDisp()
1198 FreeTemp(r_temp); in StoreBaseDisp()
1201 null_ck_insn = NewLIR3(kThumb2Ldrexd, r_temp.GetReg(), r_ptr.GetReg(), r_ptr.GetReg()); in StoreBaseDisp()
1202 FreeTemp(r_temp); // May need the temp for kOpAdd. in StoreBaseDisp()
1205 NewLIR4(kThumb2Strexd, r_temp.GetReg(), r_src.GetLowReg(), r_src.GetHighReg(), r_ptr.GetReg()); in StoreBaseDisp()
1206 OpCmpImmBranch(kCondNe, r_temp, 0, fail_target); in StoreBaseDisp()
/art/compiler/dex/quick/mips/
Dutility_mips.cc558 RegStorage r_temp = AllocTemp(); in LoadConstantWide() local
561 LoadConstantNoClobber(r_temp, High32Bits(value)); in LoadConstantWide()
562 NewLIR2(kMipsMthc1, r_temp.GetReg(), r_dest.GetReg()); in LoadConstantWide()
563 FreeTemp(r_temp); in LoadConstantWide()
/art/compiler/dex/quick/x86/
Dint_x86.cc1279 RegStorage r_temp = AllocTemp(); in SwapBits() local
1280 OpRegCopy(r_temp, result_reg); in SwapBits()
1282 OpRegImm(kOpAnd, r_temp, value); in SwapBits()
1284 OpRegImm(kOpLsl, r_temp, shift); in SwapBits()
1285 OpRegReg(kOpOr, result_reg, r_temp); in SwapBits()
1286 FreeTemp(r_temp); in SwapBits()
1290 RegStorage r_temp = AllocTempWide(); in SwapBits64() local
1291 OpRegCopy(r_temp, result_reg); in SwapBits64()
1295 OpRegReg(kOpAnd, r_temp, r_value); in SwapBits64()
1297 OpRegImm(kOpLsl, r_temp, shift); in SwapBits64()
[all …]
Dutility_x86.cc620 RegStorage r_temp = AllocTypedTempWide(false, kCoreReg); in LoadConstantWide() local
621 res = LoadConstantWide(r_temp, value); in LoadConstantWide()
622 OpRegCopyWide(r_dest, r_temp); in LoadConstantWide()
623 FreeTemp(r_temp); in LoadConstantWide()