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