Lines Matching refs:DividesBy
15291 [&](const SCEV *Expr, const SCEV *&DividesBy) { in collect() argument
15301 DividesBy = MulRHS; in collect()
15306 return HasDivisibiltyInfo(MinMax->getOperand(0), DividesBy) || in collect()
15307 HasDivisibiltyInfo(MinMax->getOperand(1), DividesBy); in collect()
15313 [&](const SCEV *Expr, const SCEV *DividesBy) { in collect() argument
15314 if (SE.getURemExpr(Expr, DividesBy)->isZero()) in collect()
15317 return IsKnownToDivideBy(MinMax->getOperand(0), DividesBy) && in collect()
15318 IsKnownToDivideBy(MinMax->getOperand(1), DividesBy); in collect()
15323 const SCEV *DividesBy = nullptr; in collect() local
15324 if (HasDivisibiltyInfo(RewrittenLHS, DividesBy)) in collect()
15326 DividesBy = in collect()
15327 IsKnownToDivideBy(RewrittenLHS, DividesBy) ? DividesBy : nullptr; in collect()
15349 RHS = DividesBy ? GetPreviousSCEVDividesByDivisor(RHS, DividesBy) : RHS; in collect()
15355 RHS = DividesBy ? GetNextSCEVDividesByDivisor(RHS, DividesBy) : RHS; in collect()
15359 RHS = DividesBy ? GetPreviousSCEVDividesByDivisor(RHS, DividesBy) : RHS; in collect()
15363 RHS = DividesBy ? GetNextSCEVDividesByDivisor(RHS, DividesBy) : RHS; in collect()
15418 DividesBy ? GetNextSCEVDividesByDivisor(One, DividesBy) : One; in collect()