Searched refs:ExitIfTrue (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
H A D | ScalarEvolution.h | 1161 bool ExitIfTrue, bool ControlsOnlyExit, 1802 bool ExitIfTrue; 1806 ExitLimitCache(const Loop *L, bool ExitIfTrue, bool AllowPredicates) 1807 : L(L), ExitIfTrue(ExitIfTrue), AllowPredicates(AllowPredicates) {} 1810 bool ExitIfTrue, bool ControlsOnlyExit, 1813 void insert(const Loop *L, Value *ExitCond, bool ExitIfTrue, 1822 bool ExitIfTrue, 1826 Value *ExitCond, bool ExitIfTrue, 1830 ExitLimitCacheTy &Cache, const Loop *L, Value *ExitCond, bool ExitIfTrue, 1839 bool ExitIfTrue,
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | IndVarSimplify.cpp | 1194 bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); in createFoldedExitCond() local 1197 IsTaken ? ExitIfTrue : !ExitIfTrue); in createFoldedExitCond() 1255 bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); in createInvariantCond() local 1256 if (ExitIfTrue) in createInvariantCond()
|
H A D | LoopPredication.cpp | 1139 const bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); in predicateLoopExits() 1140 BasicBlock *ExitBB = BI->getSuccessor(ExitIfTrue ? 0 : 1); in predicateLoopExits() 1171 BI->setCondition(ConstantInt::get(OldCond->getType(), !ExitIfTrue)); in predicateLoopExits() 1222 const bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); predicateLoopExits() local
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ScalarEvolution.cpp | 8796 bool ExitIfTrue = !L->contains(BI->getSuccessor(0)); in computeBackedgeTakenCount() local 8797 if (ExitIfTrue == CI->isZero()) in computeBackedgeTakenCount() 8887 bool ExitIfTrue = !L->contains(BI->getSuccessor(0)); in computeExitLimit() local 8888 assert(ExitIfTrue == L->contains(BI->getSuccessor(1)) && in computeExitLimit() 8891 return computeExitLimitFromCond(L, BI->getCondition(), ExitIfTrue, in computeExitLimit() 8914 const Loop *L, Value *ExitCond, bool ExitIfTrue, bool ControlsOnlyExit, in computeExitLimitFromCond() argument 8916 ScalarEvolution::ExitLimitCacheTy Cache(L, ExitIfTrue, AllowPredicates); in computeExitLimitFromCond() 8917 return computeExitLimitFromCondCached(Cache, L, ExitCond, ExitIfTrue, in computeExitLimitFromCond() 8923 bool ExitIfTrue, bool ControlsOnlyExit, in find() argument 8926 (void)this->ExitIfTrue; in find() [all …]
|