Home
last modified time | relevance | path

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

/llvm-project-15.0.7/bolt/lib/Passes/
H A DThreeWayBranch.cpp49 BinaryBasicBlock *TrueSucc = BB->getConditionalSuccessor(true); in runOnFunction() local
54 (TrueSucc->succ_size() != 2 || TrueSucc->size() != 1)) in runOnFunction()
59 BinaryBasicBlock *FirstEndpoint = TrueSucc; in runOnFunction()
61 SecondBranch = TrueSucc; in runOnFunction()
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopBoundSplit.cpp161 BasicBlock *TrueSucc = nullptr; in isProcessableCondBI() local
166 m_BasicBlock(TrueSucc), m_BasicBlock(FalseSucc)))) in isProcessableCondBI()
173 if (TrueSucc == FalseSucc) in isProcessableCondBI()
H A DIndVarSimplify.cpp1369 BasicBlock *TrueSucc, *FalseSucc; in optimizeLoopExitWithUnknownExitCount() local
1371 m_BasicBlock(TrueSucc), m_BasicBlock(FalseSucc)))) in optimizeLoopExitWithUnknownExitCount()
1374 assert((L->contains(TrueSucc) != L->contains(FalseSucc)) && in optimizeLoopExitWithUnknownExitCount()
H A DGVN.cpp2490 BasicBlock *TrueSucc = BI->getSuccessor(0); in processInstruction() local
2493 if (TrueSucc == FalseSucc) in processInstruction()
2499 Value *TrueVal = ConstantInt::getTrue(TrueSucc->getContext()); in processInstruction()
2500 BasicBlockEdge TrueE(Parent, TrueSucc); in processInstruction()
H A DLoopIdiomRecognize.cpp1592 BasicBlock *TrueSucc = BI->getSuccessor(0); in matchCondition() local
1595 std::swap(TrueSucc, FalseSucc); in matchCondition()
1598 if ((Pred == ICmpInst::ICMP_NE && TrueSucc == LoopEntry) || in matchCondition()
H A DNewGVN.cpp2462 BasicBlock *TrueSucc, *FalseSucc; in processOutgoingEdges() local
2463 if (match(TI, m_Br(m_Value(Cond), TrueSucc, FalseSucc))) { in processOutgoingEdges()
2486 updateReachableEdge(B, TrueSucc); in processOutgoingEdges()
2493 updateReachableEdge(B, TrueSucc); in processOutgoingEdges()
/llvm-project-15.0.7/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp2375 BasicBlock *TrueSucc, *FalseSucc; in foldSelectToPhiImpl() local
2377 m_Br(m_Specific(Cond), m_BasicBlock(TrueSucc), in foldSelectToPhiImpl()
2382 m_Br(m_Not(m_Specific(Cond)), m_BasicBlock(TrueSucc), in foldSelectToPhiImpl()
2390 if (TrueSucc == FalseSucc) in foldSelectToPhiImpl()
2398 BasicBlockEdge TrueEdge(IDom, TrueSucc); in foldSelectToPhiImpl()