Searched defs:r_temp (Results 1 - 4 of 4) sorted by path

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

Completed in 64 milliseconds