Searched refs:new_a (Results 1 – 2 of 2) sorted by relevance
/art/compiler/optimizing/ |
D | induction_var_analysis.cc | 576 InductionInfo* new_a = TransferAddSub(a->op_a, b->op_a, op); in TransferAddSub() local 578 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 579 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 583 InductionInfo* new_a = b->op_a; in TransferAddSub() local 586 new_a = TransferAddSub(a, new_a, op); in TransferAddSub() 588 new_a = TransferNeg(new_a); in TransferAddSub() 590 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub() 591 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferAddSub() 595 InductionInfo* new_a = a->op_a; in TransferAddSub() local 598 new_a = TransferAddSub(new_a, b, op); in TransferAddSub() [all …]
|
D | instruction_simplifier.cc | 1057 HInstruction* new_a = AllowInMinMax(cmp, a, b, true_value); in VisitSelect() local 1058 if (new_a != nullptr) { in VisitSelect() 1059 a = new_a; in VisitSelect()
|