Lines Matching refs:fetch
657 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferAddSub()
669 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type); in TransferAddSub()
679 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferAddSub()
703 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferNeg()
730 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type); in TransferMul()
738 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferMul()
755 return CreateInduction(kLinear, kNop, a->op_a, a->op_b, a->fetch, to); in TransferConversion()
916 c->fetch, in SolveOp()
1506 info1->fetch == info2->fetch && in InductionEqual()
1515 std::string HInductionVarAnalysis::FetchToString(HInstruction* fetch) { in FetchToString() argument
1516 DCHECK(fetch != nullptr); in FetchToString()
1517 if (fetch->IsIntConstant()) { in FetchToString()
1518 return std::to_string(fetch->AsIntConstant()->GetValue()); in FetchToString()
1519 } else if (fetch->IsLongConstant()) { in FetchToString()
1520 return std::to_string(fetch->AsLongConstant()->GetValue()); in FetchToString()
1522 return std::to_string(fetch->GetId()) + ":" + fetch->DebugName(); in FetchToString()
1543 case kFetch: inv += FetchToString(info->fetch); break; in InductionToString()
1565 DCHECK(info->fetch != nullptr); in InductionToString()
1567 FetchToString(info->fetch) + in InductionToString()