Home
last modified time | relevance | path

Searched refs:TrueSucc (Results 1 – 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
DLoopBoundSplit.cpp155 BasicBlock *TrueSucc = nullptr; in isProcessableCondBI() local
160 m_BasicBlock(TrueSucc), m_BasicBlock(FalseSucc)))) in isProcessableCondBI()
167 if (TrueSucc == FalseSucc) in isProcessableCondBI()
DIndVarSimplify.cpp1337 BasicBlock *TrueSucc, *FalseSucc; in optimizeLoopExitWithUnknownExitCount() local
1339 m_BasicBlock(TrueSucc), m_BasicBlock(FalseSucc)))) in optimizeLoopExitWithUnknownExitCount()
1342 assert((L->contains(TrueSucc) != L->contains(FalseSucc)) && in optimizeLoopExitWithUnknownExitCount()
DGVN.cpp2347 BasicBlock *TrueSucc = BI->getSuccessor(0); in processInstruction() local
2350 if (TrueSucc == FalseSucc) in processInstruction()
2356 Value *TrueVal = ConstantInt::getTrue(TrueSucc->getContext()); in processInstruction()
2357 BasicBlockEdge TrueE(Parent, TrueSucc); in processInstruction()
DLoopIdiomRecognize.cpp1447 BasicBlock *TrueSucc = BI->getSuccessor(0); in matchCondition() local
1450 std::swap(TrueSucc, FalseSucc); in matchCondition()
1453 if ((Pred == ICmpInst::ICMP_NE && TrueSucc == LoopEntry) || in matchCondition()
DNewGVN.cpp2439 BasicBlock *TrueSucc, *FalseSucc; in processOutgoingEdges() local
2440 if (match(TI, m_Br(m_Value(Cond), TrueSucc, FalseSucc))) { in processOutgoingEdges()
2463 updateReachableEdge(B, TrueSucc); in processOutgoingEdges()
2470 updateReachableEdge(B, TrueSucc); in processOutgoingEdges()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp2494 BasicBlock *TrueSucc, *FalseSucc; in foldSelectToPhiImpl() local
2496 m_Br(m_Specific(Cond), m_BasicBlock(TrueSucc), in foldSelectToPhiImpl()
2501 m_Br(m_Not(m_Specific(Cond)), m_BasicBlock(TrueSucc), in foldSelectToPhiImpl()
2509 if (TrueSucc == FalseSucc) in foldSelectToPhiImpl()
2517 BasicBlockEdge TrueEdge(IDom, TrueSucc); in foldSelectToPhiImpl()