Searched refs:UnreachableBlock (Results 1 - 7 of 7) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DUnifyFunctionExitNodes.h29 BasicBlock *UnreachableBlock; member in struct:llvm::UnifyFunctionExitNodes
38 // getReturn|Unwind|UnreachableBlock - Return the new single (or nonexistent)
43 BasicBlock *getUnreachableBlock() const { return UnreachableBlock; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DUnifyFunctionExitNodes.cpp65 UnreachableBlock = nullptr;
67 UnreachableBlock = UnreachableBlocks.front();
69 UnreachableBlock = BasicBlock::Create(F.getContext(),
71 new UnreachableInst(F.getContext(), UnreachableBlock);
75 BranchInst::Create(UnreachableBlock, BB);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUUnifyDivergentExitNodes.cpp289 BasicBlock *UnreachableBlock = nullptr; local
292 UnreachableBlock = UnreachableBlocks.front();
294 UnreachableBlock = BasicBlock::Create(F.getContext(),
296 new UnreachableInst(F.getContext(), UnreachableBlock);
301 BranchInst::Create(UnreachableBlock, BB);
313 UnreachableBlock->getTerminator()->eraseFromParent();
320 CallInst::Create(UnreachableIntrin, {}, "", UnreachableBlock);
325 ReturnInst::Create(F.getContext(), RetVal, UnreachableBlock);
326 ReturningBlocks.push_back(UnreachableBlock);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Analysis/
H A DCFG.h799 llvm::PointerIntPair<CFGBlock *, 2> UnreachableBlock;
816 return UnreachableBlock.getPointer();
834 Kind K = (Kind) UnreachableBlock.getInt();
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCodeGenFunction.h1460 llvm::BasicBlock *UnreachableBlock = nullptr; member in class:clang::CodeGen::CodeGenFunction
1870 if (!UnreachableBlock) {
1871 UnreachableBlock = createBasicBlock("unreachable");
1872 new llvm::UnreachableInst(getLLVMContext(), UnreachableBlock); local
1874 return UnreachableBlock;
H A DCodeGenFunction.cpp427 EmitIfUsed(*this, UnreachableBlock);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp5071 UnreachableBlock(!IsReachable ? B : nullptr,
5076 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock,

Completed in 199 milliseconds