Searched defs:OpRegCopy (Results 1 - 4 of 4) sorted by relevance

/art/compiler/dex/quick/mips/
H A Dint_mips.cc181 void MipsMir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::MipsMir2Lir
194 OpRegCopy(r_dest, r_src);
207 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
208 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
210 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
211 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
578 OpRegCopy(reg_ptr, rl_array.reg);
/art/compiler/dex/quick/arm/
H A Dint_arm.cc276 OpRegCopy(rl_result.reg, t_reg1);
277 OpRegCopy(rl_result.reg, t_reg2);
291 OpRegCopy(rl_result.reg, rl_false.reg);
294 OpRegCopy(rl_result.reg, rl_true.reg);
297 OpRegCopy(rl_result.reg, rl_true.reg);
298 OpRegCopy(rl_result.reg, rl_false.reg);
428 void ArmMir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::ArmMir2Lir
443 OpRegCopy(r_dest, r_src);
454 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
455 OpRegCopy(r_des
[all...]
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc362 void Arm64Mir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::Arm64Mir2Lir
370 OpRegCopy(r_dest, r_src);
/art/compiler/dex/quick/x86/
H A Dint_x86.cc141 void X86Mir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::X86Mir2Lir
154 OpRegCopy(r_dest, r_src);
185 OpRegCopy(r_dest, r_src);
192 OpRegCopy(temp_reg, r_dest.GetHigh());
193 OpRegCopy(r_dest.GetHigh(), r_dest.GetLow());
194 OpRegCopy(r_dest.GetLow(), temp_reg);
197 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
198 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
200 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
201 OpRegCopy(r_des
[all...]

Completed in 99 milliseconds