Searched refs:isAvailableAtLoopEntry (Results 1 – 6 of 6) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | LoopUtils.cpp | 1331 return SE.isAvailableAtLoopEntry(S, L) && in isKnownNegativeInLoop() 1338 return SE.isAvailableAtLoopEntry(S, L) && in isKnownNonNegativeInLoop() 1345 return SE.isAvailableAtLoopEntry(S, L) && in isKnownPositiveInLoop() 1352 return SE.isAvailableAtLoopEntry(S, L) && in isKnownNonPositiveInLoop() 1362 return SE.isAvailableAtLoopEntry(S, L) && in cannotBeMinInLoop() 1373 return SE.isAvailableAtLoopEntry(S, L) && in cannotBeMaxInLoop()
|
H A D | LoopConstrainer.cpp | 27 if (!SE.isAvailableAtLoopEntry(BoundSCEV, L)) in isSafeDecreasingBound() 76 if (!SE.isAvailableAtLoopEntry(BoundSCEV, L)) in isSafeIncreasingBound()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | LoopBoundSplit.cpp | 131 if (!SE.isAvailableAtLoopEntry(Cond.BoundSCEV, &L)) in hasProcessableCondition()
|
H A D | InductiveRangeCheckElimination.cpp |
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 2507 bool ScalarEvolution::isAvailableAtLoopEntry(const SCEV *S, const Loop *L) { in isAvailableAtLoopEntry() function in ScalarEvolution 2880 if (isAvailableAtLoopEntry(Ops[i], AddRecLoop)) { in getAddExpr() 3263 if (isAvailableAtLoopEntry(Ops[i], AddRec->getLoop())) { in getMulExpr() 3677 assert(isAvailableAtLoopEntry(Op, L) && in getAddRecExpr() 10923 if (!isAvailableAtLoopEntry(SplitLHS.first, MDL) || in isKnownViaInduction() 10924 !isAvailableAtLoopEntry(SplitRHS.first, MDL)) in isKnownViaInduction() 11617 assert(isAvailableAtLoopEntry(LHS, L) && in isLoopEntryGuardedByCond() 11619 assert(isAvailableAtLoopEntry(RHS, L) && in isLoopEntryGuardedByCond() 12029 if (!isAvailableAtLoopEntry(FoundRHS, AR->getLoop())) in isImpliedCondOperandsViaAddRecStart() 12040 if (!isAvailableAtLoopEntry(FoundLHS, AR->getLoop())) in isImpliedCondOperandsViaAddRecStart() [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ScalarEvolution.h | 1235 bool isAvailableAtLoopEntry(const SCEV *S, const Loop *L);
|