Lines Matching defs:LAR
12072 const auto *LAR = cast<SCEVAddRecExpr>(Less);
12075 if (LAR->getLoop() != MAR->getLoop())
12080 if (!LAR->isAffine() || !MAR->isAffine())
12083 if (LAR->getStepRecurrence(*this) != MAR->getStepRecurrence(*this))
12086 Less = LAR->getStart();
12497 const SCEVAddRecExpr *LAR = dyn_cast<SCEVAddRecExpr>(LHS);
12498 if (!LAR)
12503 if (LAR->getLoop() != RAR->getLoop())
12505 if (!LAR->isAffine() || !RAR->isAffine())
12508 if (LAR->getStepRecurrence(SE) != RAR->getStepRecurrence(SE))
12513 if (!LAR->getNoWrapFlags(NW) || !RAR->getNoWrapFlags(NW))
12516 return SE.isKnownPredicate(Pred, LAR->getStart(), RAR->getStart());