Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
DAMDGPUUnifyDivergentExitNodes.cpp216 BasicBlock *UnreachableBlock = nullptr; in runOnFunction() local
219 UnreachableBlock = UnreachableBlocks.front(); in runOnFunction()
221 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction()
223 new UnreachableInst(F.getContext(), UnreachableBlock); in runOnFunction()
228 BranchInst::Create(UnreachableBlock, BB); in runOnFunction()
239 UnreachableBlock->getTerminator()->eraseFromParent(); in runOnFunction()
246 CallInst::Create(UnreachableIntrin, {}, "", UnreachableBlock); in runOnFunction()
251 ReturnInst::Create(F.getContext(), RetVal, UnreachableBlock); in runOnFunction()
252 ReturningBlocks.push_back(UnreachableBlock); in runOnFunction()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DUnifyFunctionExitNodes.cpp60 UnreachableBlock = nullptr; in runOnFunction()
62 UnreachableBlock = UnreachableBlocks.front(); in runOnFunction()
64 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction()
66 new UnreachableInst(F.getContext(), UnreachableBlock); in runOnFunction()
70 BranchInst::Create(UnreachableBlock, BB); in runOnFunction()
/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()
71 BranchInst::Create(UnreachableBlock, BB); in runOnFunction()
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
DUnifyFunctionExitNodes.cpp82 UnreachableBlock = 0; in runOnFunction()
84 UnreachableBlock = UnreachableBlocks.front(); in runOnFunction()
86 UnreachableBlock = BasicBlock::Create(F.getContext(), in runOnFunction()
88 new UnreachableInst(F.getContext(), UnreachableBlock); in runOnFunction()
94 BranchInst::Create(UnreachableBlock, BB); in runOnFunction()
/external/swiftshader/third_party/LLVM/include/llvm/Transforms/Utils/
DUnifyFunctionExitNodes.h26 BasicBlock *ReturnBlock, *UnwindBlock, *UnreachableBlock; member
42 BasicBlock *getUnreachableBlock() const { return UnreachableBlock; } in getUnreachableBlock()
/external/llvm/include/llvm/Transforms/Utils/
DUnifyFunctionExitNodes.h26 BasicBlock *ReturnBlock, *UnwindBlock, *UnreachableBlock; member
43 BasicBlock *getUnreachableBlock() const { return UnreachableBlock; } in getUnreachableBlock()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Transforms/Utils/
DUnifyFunctionExitNodes.h29 BasicBlock *UnreachableBlock; member
45 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.h1030 llvm::BasicBlock *UnreachableBlock; variable
1224 if (!UnreachableBlock) { in getUnreachableBlock()
1225 UnreachableBlock = createBasicBlock("unreachable"); in getUnreachableBlock()
1226 new llvm::UnreachableInst(getLLVMContext(), UnreachableBlock); in getUnreachableBlock()
1228 return UnreachableBlock; in getUnreachableBlock()
DCodeGenFunction.cpp56 CaseRangeBlock(nullptr), UnreachableBlock(nullptr), NumReturnExprs(0), in CodeGenFunction()
376 EmitIfUsed(*this, UnreachableBlock); in FinishFunction()
/external/deqp-deps/SPIRV-Tools/test/val/
Dval_cfg_test.cpp754 TEST_P(ValidateCFG, UnreachableBlock) { in TEST_P() argument
/external/swiftshader/third_party/SPIRV-Tools/test/val/
Dval_cfg_test.cpp754 TEST_P(ValidateCFG, UnreachableBlock) { in TEST_P() argument
/external/clang/lib/Analysis/
DCFG.cpp3949 UnreachableBlock(!IsReachable ? B : nullptr, in AdjacentBlock()
3954 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock, in AdjacentBlock()