Home
last modified time | relevance | path

Searched refs:UnreachableBlock (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Transforms/Utils/
DUnifyFunctionExitNodes.cpp61 UnreachableBlock = nullptr; in runOnFunction()
63 UnreachableBlock = UnreachableBlocks.front(); in runOnFunction()
65 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction()
67 new UnreachableInst(F.getContext(), UnreachableBlock); in runOnFunction()
73 BranchInst::Create(UnreachableBlock, BB); in runOnFunction()
/external/llvm/include/llvm/Transforms/Utils/
DUnifyFunctionExitNodes.h26 BasicBlock *ReturnBlock, *UnwindBlock, *UnreachableBlock; member
43 BasicBlock *getUnreachableBlock() const { return UnreachableBlock; } in getUnreachableBlock()
/external/clang/include/clang/Analysis/
DCFG.h429 llvm::PointerIntPair<CFGBlock*, 2> UnreachableBlock; variable
446 return UnreachableBlock.getPointer(); in getPossiblyUnreachableBlock()
464 Kind K = (Kind) UnreachableBlock.getInt(); in isReachable()
/external/clang/lib/CodeGen/
DCodeGenFunction.h1005 llvm::BasicBlock *UnreachableBlock; variable
1140 if (!UnreachableBlock) { in getUnreachableBlock()
1141 UnreachableBlock = createBasicBlock("unreachable"); in getUnreachableBlock()
1142 new llvm::UnreachableInst(getLLVMContext(), UnreachableBlock); in getUnreachableBlock()
1144 return UnreachableBlock; in getUnreachableBlock()
DCodeGenFunction.cpp56 CaseRangeBlock(nullptr), UnreachableBlock(nullptr), NumReturnExprs(0), in CodeGenFunction()
375 EmitIfUsed(*this, UnreachableBlock); in FinishFunction()
/external/clang/lib/Analysis/
DCFG.cpp3917 UnreachableBlock(!IsReachable ? B : nullptr, in AdjacentBlock()
3922 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, in AdjacentBlock()