Searched refs:isAvailableAtLoopEntry (Results 1 – 5 of 5) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1397 return SE.isAvailableAtLoopEntry(S, L) && in isKnownNegativeInLoop() 1404 return SE.isAvailableAtLoopEntry(S, L) && in isKnownNonNegativeInLoop() 1411 return SE.isAvailableAtLoopEntry(S, L) && in isKnownPositiveInLoop() 1418 return SE.isAvailableAtLoopEntry(S, L) && in isKnownNonPositiveInLoop() 1428 return SE.isAvailableAtLoopEntry(S, L) && in cannotBeMinInLoop() 1439 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()
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | ScalarEvolution.cpp | 2510 bool ScalarEvolution::isAvailableAtLoopEntry(const SCEV *S, const Loop *L) { in isAvailableAtLoopEntry() function in ScalarEvolution 2868 if (isAvailableAtLoopEntry(Ops[i], AddRecLoop)) { in getAddExpr() 3230 if (isAvailableAtLoopEntry(Ops[i], AddRec->getLoop())) { in getMulExpr() 3659 assert(isAvailableAtLoopEntry(Op, L) && in getAddRecExpr() 11075 if (!isAvailableAtLoopEntry(SplitLHS.first, MDL) || in isKnownViaInduction() 11076 !isAvailableAtLoopEntry(SplitRHS.first, MDL)) in isKnownViaInduction() 11750 assert(isAvailableAtLoopEntry(LHS, L) && in isLoopEntryGuardedByCond() 11752 assert(isAvailableAtLoopEntry(RHS, L) && in isLoopEntryGuardedByCond() 12221 if (!isAvailableAtLoopEntry(FoundRHS, AR->getLoop())) in isImpliedCondOperandsViaAddRecStart() 12232 if (!isAvailableAtLoopEntry(FoundLHS, AR->getLoop())) in isImpliedCondOperandsViaAddRecStart() [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ScalarEvolution.h | 1270 LLVM_ABI bool isAvailableAtLoopEntry(const SCEV *S, const Loop *L);
|