Lines Matching refs:fetch

441         return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_);  in TransferAddSub()
453 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferAddSub()
463 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub()
483 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferNeg()
506 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferMul()
514 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferMul()
531 return CreateInduction(kLinear, kNop, a->op_a, a->op_b, a->fetch, to); in TransferConversion()
677 c->fetch, in SolveOp()
1159 info1->fetch == info2->fetch && in InductionEqual()
1168 std::string HInductionVarAnalysis::FetchToString(HInstruction* fetch) { in FetchToString() argument
1169 DCHECK(fetch != nullptr); in FetchToString()
1170 if (fetch->IsIntConstant()) { in FetchToString()
1171 return std::to_string(fetch->AsIntConstant()->GetValue()); in FetchToString()
1172 } else if (fetch->IsLongConstant()) { in FetchToString()
1173 return std::to_string(fetch->AsLongConstant()->GetValue()); in FetchToString()
1175 return std::to_string(fetch->GetId()) + ":" + fetch->DebugName(); in FetchToString()
1196 case kFetch: inv += FetchToString(info->fetch); break; in InductionToString()
1218 DCHECK(info->fetch != nullptr); in InductionToString()
1220 FetchToString(info->fetch) + in InductionToString()