Lines Matching refs:fetch

579         return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);  in TransferAddSub()
591 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferAddSub()
601 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub()
621 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferNeg()
644 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferMul()
652 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferMul()
669 return CreateInduction(kLinear, kNop, a->op_a, a->op_b, a->fetch, to); in TransferConversion()
815 c->fetch, in SolveOp()
1372 info1->fetch == info2->fetch && in InductionEqual()
1381 std::string HInductionVarAnalysis::FetchToString(HInstruction* fetch) { in FetchToString() argument
1382 DCHECK(fetch != nullptr); in FetchToString()
1383 if (fetch->IsIntConstant()) { in FetchToString()
1384 return std::to_string(fetch->AsIntConstant()->GetValue()); in FetchToString()
1385 } else if (fetch->IsLongConstant()) { in FetchToString()
1386 return std::to_string(fetch->AsLongConstant()->GetValue()); in FetchToString()
1388 return std::to_string(fetch->GetId()) + ":" + fetch->DebugName(); in FetchToString()
1409 case kFetch: inv += FetchToString(info->fetch); break; in InductionToString()
1431 DCHECK(info->fetch != nullptr); in InductionToString()
1433 FetchToString(info->fetch) + in InductionToString()