Searched refs:DefaultBB (Results 1 – 4 of 4) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/ |
H A D | PGOMemOPSizeOpt.cpp | 370 BasicBlock *DefaultBB = SplitBlock(BB, MO.I, DT); in perform() local 373 assert(It != DefaultBB->end()); in perform() 374 BasicBlock *MergeBB = SplitBlock(DefaultBB, &(*It), DT); in perform() 377 DefaultBB->setName("MemOP.Default"); in perform() 384 SwitchInst *SI = IRB.CreateSwitch(SizeVar, DefaultBB, SizeIds.size()); in perform() 392 PHI->addIncoming(MO.I, DefaultBB); in perform() 412 Ctx, Twine("MemOP.Case.") + Twine(SizeId), &Func, DefaultBB); in perform() 438 LLVM_DEBUG(dbgs() << *DefaultBB << "\n"); in perform()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | SimplifyCFG.cpp | 4921 BasicBlock *DefaultBB = BI->getSuccessor(1); in SimplifyBranchOnICmpChain() local 4924 std::swap(DefaultBB, EdgeBB); in SimplifyBranchOnICmpChain() 4982 SwitchInst *New = Builder.CreateSwitch(CompVal, DefaultBB, Values.size()); in SimplifyBranchOnICmpChain()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 5062 llvm::BasicBlock *DefaultBB = CGF.createBasicBlock(".omp.reduction.default"); in emitReduction() local 5064 CGF.Builder.CreateSwitch(Res, DefaultBB, /*NumCases=*/2); in emitReduction() 5106 CGF.EmitBranch(DefaultBB); in emitReduction() 5230 CGF.EmitBranch(DefaultBB); in emitReduction() 5231 CGF.EmitBlock(DefaultBB, /*IsFinished=*/true); in emitReduction()
|
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/ |
H A D | LLParser.cpp | 7181 BasicBlock *DefaultBB; in parseSwitch() local 7184 parseTypeAndBasicBlock(DefaultBB, BBLoc, PFS) || in parseSwitch() 7213 SwitchInst *SI = SwitchInst::Create(Cond, DefaultBB, Table.size()); in parseSwitch()
|