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

/art/compiler/dex/quick/mips/
H A Dint_mips.cc216 void MipsMir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::MipsMir2Lir
225 OpRegCopy(r_dest, r_src);
233 // Here if both src and dest are fp registers. OpRegCopy will choose the right copy
235 OpRegCopy(r_dest, r_src);
263 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
264 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
266 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
267 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
270 OpRegCopy(r_tmp, r_src.GetHigh());
271 OpRegCopy(r_des
[all...]
/art/compiler/dex/quick/arm/
H A Dint_arm.cc289 OpRegCopy(rl_result.reg, t_reg1);
290 OpRegCopy(rl_result.reg, t_reg2);
304 OpRegCopy(rl_result.reg, rl_false.reg);
307 OpRegCopy(rl_result.reg, rl_true.reg);
310 OpRegCopy(rl_result.reg, rl_true.reg);
311 OpRegCopy(rl_result.reg, rl_false.reg);
441 void ArmMir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::ArmMir2Lir
465 OpRegCopy(r_dest, r_src);
475 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
476 OpRegCopy(r_des
[all...]
/art/compiler/dex/quick/arm64/
H A Dint_arm64.cc375 void Arm64Mir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::Arm64Mir2Lir
383 OpRegCopy(r_dest, r_src);
/art/compiler/dex/quick/x86/
H A Dint_x86.cc144 void X86Mir2Lir::OpRegCopy(RegStorage r_dest, RegStorage r_src) { function in class:art::X86Mir2Lir
157 OpRegCopy(r_dest, r_src);
188 OpRegCopy(r_dest, r_src);
195 OpRegCopy(temp_reg, r_dest.GetHigh());
196 OpRegCopy(r_dest.GetHigh(), r_dest.GetLow());
197 OpRegCopy(r_dest.GetLow(), temp_reg);
200 OpRegCopy(r_dest.GetHigh(), r_src.GetHigh());
201 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
203 OpRegCopy(r_dest.GetLow(), r_src.GetLow());
204 OpRegCopy(r_des
[all...]

Completed in 1312 milliseconds