Searched refs:IVLimit (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp2393 const SCEV *IVLimit = SE->getAddExpr(IVInit, IVOffset); local
2395 return Rewriter.expandCodeFor(IVLimit, IndVar->getType(), BI);
2400 // BECount = (IVEnd - IVInit - 1) => IVLimit = IVInit (postinc).
2425 const SCEV *IVLimit = SE->getAddExpr(IVInit, ExitCount); local
2428 IVLimit = SE->getAddExpr(IVLimit, SE->getOne(IVLimit->getType()));
2431 assert(SE->isLoopInvariant(IVLimit, L) &&
2439 return Rewriter.expandCodeFor(IVLimit, LimitTy, BI);

Completed in 80 milliseconds