HomeSort by relevance Sort by last modified time
    Searched refs:rl_false (Results 1 - 3 of 3) sorted by null

  /art/compiler/dex/quick/arm/
int_arm.cc 283 RegLocation rl_false = mir_graph_->reg_location_[mir->ssa_rep->uses[2]]; local
285 rl_false = LoadValue(rl_false, result_reg_class);
291 OpRegCopy(rl_result.reg, rl_false.reg);
292 } else if (rl_result.reg.GetReg() == rl_false.reg.GetReg()) { // False case in place?
298 OpRegCopy(rl_result.reg, rl_false.reg);
    [all...]
  /art/compiler/dex/quick/arm64/
int_arm64.cc 199 RegLocation rl_false = mir_graph_->reg_location_[mir->ssa_rep->uses[2]]; local
203 rl_false = LoadValue(rl_false, result_reg_class);
209 rl_true.reg.GetReg(), rl_false.reg.GetReg(), ArmConditionEncoding(mir->meta.ccode));
    [all...]
  /art/compiler/dex/quick/x86/
int_x86.cc 348 RegLocation rl_false = mir_graph_->GetSrc(mir, 2); local
350 rl_false = LoadValue(rl_false, result_reg_class);
372 OpCondRegReg(kOpCmov, NegateComparison(ccode), rl_result.reg, rl_false.reg);
373 } else if (rl_result.reg.GetReg() == rl_false.reg.GetReg()) {
376 OpRegCopy(rl_result.reg, rl_false.reg);
    [all...]

Completed in 33 milliseconds