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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarEvolution.h1540 bool ExitIfTrue, bool ControlsExit,
1547 // It may look like we need key on the whole (L, ExitIfTrue, ControlsExit,
1555 bool ExitIfTrue; member in class:llvm::ScalarEvolution::ExitLimitCache
1559 ExitLimitCache(const Loop *L, bool ExitIfTrue, bool AllowPredicates) argument
1560 : L(L), ExitIfTrue(ExitIfTrue), AllowPredicates(AllowPredicates) {}
1562 Optional<ExitLimit> find(const Loop *L, Value *ExitCond, bool ExitIfTrue,
1565 void insert(const Loop *L, Value *ExitCond, bool ExitIfTrue,
1573 bool ExitIfTrue,
1577 Value *ExitCond, bool ExitIfTrue,
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopPredication.cpp1141 const bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB)); local
1142 BasicBlock *ExitBB = BI->getSuccessor(ExitIfTrue ? 0 : 1);
1173 BI->setCondition(ConstantInt::get(OldCond->getType(), !ExitIfTrue));
H A DIndVarSimplify.cpp2408 bool ExitIfTrue = !L->contains(*succ_begin(ExitingBB));
2411 IsTaken ? ExitIfTrue : !ExitIfTrue);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp6928 bool ExitIfTrue = !L->contains(BI->getSuccessor(0));
6929 if ((ExitIfTrue && CI->isZero()) || (!ExitIfTrue && CI->isOne()))
6998 bool ExitIfTrue = !L->contains(BI->getSuccessor(0));
6999 assert(ExitIfTrue == L->contains(BI->getSuccessor(1)) &&
7003 L, BI->getCondition(), ExitIfTrue,
7025 const Loop *L, Value *ExitCond, bool ExitIfTrue,
7027 ScalarEvolution::ExitLimitCacheTy Cache(L, ExitIfTrue, AllowPredicates);
7028 return computeExitLimitFromCondCached(Cache, L, ExitCond, ExitIfTrue,
7034 bool ExitIfTrue, boo
[all...]

Completed in 377 milliseconds