Home
last modified time | relevance | path

Searched refs:new_a (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dinduction_var_analysis.cc654 InductionInfo* new_a = TransferAddSub(context, loop, a->op_a, b->op_a, op, type); in TransferAddSub() local
656 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub()
657 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferAddSub()
661 InductionInfo* new_a = b->op_a; in TransferAddSub() local
664 new_a = TransferAddSub(context, loop, a, new_a, op, type); in TransferAddSub()
666 new_a = TransferNeg(context, loop, new_a, type); in TransferAddSub()
668 if (new_a != nullptr && new_b != nullptr) { in TransferAddSub()
669 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type); in TransferAddSub()
673 InductionInfo* new_a = a->op_a; in TransferAddSub() local
676 new_a = TransferAddSub(context, loop, new_a, b, op, type); in TransferAddSub()
[all …]
Dinstruction_simplifier.cc1136 HInstruction* new_a = AllowInMinMax(cmp, a, b, true_value); in VisitSelect() local
1137 if (new_a != nullptr) { in VisitSelect()
1138 a = new_a; in VisitSelect()