Home
last modified time | relevance | path

Searched refs:ExitIfTrue (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1665 bool ExitIfTrue, bool ControlsExit,
1685 bool ExitIfTrue;
1689 ExitLimitCache(const Loop *L, bool ExitIfTrue, bool AllowPredicates)
1690 : L(L), ExitIfTrue(ExitIfTrue), AllowPredicates(AllowPredicates) {}
1692 Optional<ExitLimit> find(const Loop *L, Value *ExitCond, bool ExitIfTrue,
1695 void insert(const Loop *L, Value *ExitCond, bool ExitIfTrue,
1703 bool ExitIfTrue,
1707 Value *ExitCond, bool ExitIfTrue,
1712 Value *ExitCond, bool ExitIfTrue,
1721 bool ExitIfTrue,
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp1302 bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); in foldExit() local
1305 ConstantInt::get(OldCond->getType(), IsTaken ? ExitIfTrue : !ExitIfTrue); in foldExit()
1353 bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); in replaceWithInvariantCond() local
1354 if (ExitIfTrue) in replaceWithInvariantCond()
H A DLoopPredication.cpp1207 const bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); in predicateLoopExits() local
1208 BasicBlock *ExitBB = BI->getSuccessor(ExitIfTrue ? 0 : 1); in predicateLoopExits()
1239 BI->setCondition(ConstantInt::get(OldCond->getType(), !ExitIfTrue)); in predicateLoopExits()
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DScalarEvolution.cpp8546 if (ExitIfTrue == CI->isZero()) in computeBackedgeTakenCount()
8627 L, BI->getCondition(), ExitIfTrue, in computeExitLimit()
8649 const Loop *L, Value *ExitCond, bool ExitIfTrue, in computeExitLimitFromCond() argument
8661 (void)this->ExitIfTrue; in find()
8664 assert(this->L == L && this->ExitIfTrue == ExitIfTrue && in find()
8678 assert(this->L == L && this->ExitIfTrue == ExitIfTrue && in insert()
8685 (void)ExitIfTrue; in insert()
8728 if (ExitIfTrue == !CI->getZExtValue()) in computeExitLimitFromCondImpl()
8749 if (!ExitIfTrue) in computeExitLimitFromCondImpl()
8780 bool EitherMayExit = IsAnd ^ ExitIfTrue; in computeExitLimitFromCondFromBinOp()
[all …]