Lines Matching refs:LAR
11954 const auto *LAR = cast<SCEVAddRecExpr>(Less); in computeConstantDifference() local
11957 if (LAR->getLoop() != MAR->getLoop()) in computeConstantDifference()
11962 if (!LAR->isAffine() || !MAR->isAffine()) in computeConstantDifference()
11965 if (LAR->getStepRecurrence(*this) != MAR->getStepRecurrence(*this)) in computeConstantDifference()
11968 Less = LAR->getStart(); in computeConstantDifference()
12324 const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS); in IsKnownPredicateViaAddRecStart() local
12325 if (!LAR) in IsKnownPredicateViaAddRecStart()
12330 if (LAR->getLoop() != RAR->getLoop()) in IsKnownPredicateViaAddRecStart()
12332 if (!LAR->isAffine() || !RAR->isAffine()) in IsKnownPredicateViaAddRecStart()
12335 if (LAR->getStepRecurrence(SE) != RAR->getStepRecurrence(SE)) in IsKnownPredicateViaAddRecStart()
12340 if (!LAR->getNoWrapFlags(NW) || !RAR->getNoWrapFlags(NW)) in IsKnownPredicateViaAddRecStart()
12343 return SE.isKnownPredicate(Pred, LAR->getStart(), RAR->getStart()); in IsKnownPredicateViaAddRecStart()