Home
last modified time | relevance | path

Searched refs:CaseDest (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1774 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb"); in EmitCaseStmtRange() local
1775 EmitBlockWithFallThrough(CaseDest, &S); in EmitCaseStmtRange()
1802 SwitchInsn->addCase(Builder.getInt(LHS), CaseDest); in EmitCaseStmtRange()
1840 Builder.CreateCondBr(Cond, CaseDest, FalseDest, Weights); in EmitCaseStmtRange()
1911 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb"); in EmitCaseStmt() local
1912 EmitBlockWithFallThrough(CaseDest, &S); in EmitCaseStmt()
1915 SwitchInsn->addCase(CaseVal, CaseDest); in EmitCaseStmt()
1942 CaseDest = createBasicBlock("sw.bb"); in EmitCaseStmt()
1943 EmitBlockWithFallThrough(CaseDest, CurCase); in EmitCaseStmt()
1950 SwitchInsn->addCase(CaseVal, CaseDest); in EmitCaseStmt()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5938 BasicBlock *CaseDest = Case.getCaseSuccessor(); in forwardSwitchConditionToPHI() local
5951 for (PHINode &Phi : CaseDest->phis()) { in forwardSwitchConditionToPHI()
5967 if (auto *Phi = findPHIForConditionForwarding(CaseValue, CaseDest, &PhiIdx)) in forwardSwitchConditionToPHI()
6057 getCaseResults(SwitchInst *SI, ConstantInt *CaseVal, BasicBlock *CaseDest, in getCaseResults() argument
6068 for (Instruction &I : CaseDest->instructionsWithoutDebug(false)) { in getCaseResults()
6073 Pred = CaseDest; in getCaseResults()
6074 CaseDest = I.getSuccessor(0); in getCaseResults()
6084 if (I->getParent() == CaseDest) in getCaseResults()
6087 if (Phi->getIncomingBlock(Use) == CaseDest) in getCaseResults()
6100 *CommonDest = CaseDest; in getCaseResults()
[all …]