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

/freebsd-current/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1446 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb"); local
1447 EmitBlockWithFallThrough(CaseDest, &S);
1474 SwitchInsn->addCase(Builder.getInt(LHS), CaseDest);
1512 Builder.CreateCondBr(Cond, CaseDest, FalseDest, Weights);
1583 llvm::BasicBlock *CaseDest = createBasicBlock("sw.bb"); local
1584 EmitBlockWithFallThrough(CaseDest, &S);
1587 SwitchInsn->addCase(CaseVal, CaseDest);
1614 CaseDest = createBasicBlock("sw.bb");
1615 EmitBlockWithFallThrough(CaseDest, CurCase);
1622 SwitchInsn->addCase(CaseVal, CaseDest);
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp5695 BasicBlock *CaseDest = Case.getCaseSuccessor();
5708 for (PHINode &Phi : CaseDest->phis()) {
5724 if (auto *Phi = FindPHIForConditionForwarding(CaseValue, CaseDest, &PhiIdx))
5810 /// destionations CaseDest corresponding to value CaseVal (0 for the default
5813 getCaseResults(SwitchInst *SI, ConstantInt *CaseVal, BasicBlock *CaseDest,
5820 // If CaseDest is empty except for some side-effect free instructions through
5824 for (Instruction &I : CaseDest->instructionsWithoutDebug(false)) {
5829 Pred = CaseDest;
5830 CaseDest = I.getSuccessor(0);
5840 if (I->getParent() == CaseDest)
[all...]

Completed in 69 milliseconds