HomeSort by: relevance | last modified time | path
    Searched refs:UnreachableBlock (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
AMDGPUUnifyDivergentExitNodes.cpp 331 BasicBlock *UnreachableBlock = nullptr;
334 UnreachableBlock = UnreachableBlocks.front();
336 UnreachableBlock = BasicBlock::Create(F.getContext(),
338 new UnreachableInst(F.getContext(), UnreachableBlock);
344 BranchInst::Create(UnreachableBlock, BB);
345 Updates.push_back({DominatorTree::Insert, BB, UnreachableBlock});
357 UnreachableBlock->getTerminator()->eraseFromParent();
364 CallInst::Create(UnreachableIntrin, {}, "", UnreachableBlock);
369 ReturnInst::Create(F.getContext(), RetVal, UnreachableBlock);
370 ReturningBlocks.push_back(UnreachableBlock);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
UnifyFunctionExitNodes.cpp 58 BasicBlock *UnreachableBlock =
60 new UnreachableInst(F.getContext(), UnreachableBlock);
64 BranchInst::Create(UnreachableBlock, BB);
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
CFG.h 799 llvm::PointerIntPair<CFGBlock *, 2> UnreachableBlock;
816 return UnreachableBlock.getPointer();
834 Kind K = (Kind) UnreachableBlock.getInt();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.h 1542 llvm::BasicBlock *UnreachableBlock = nullptr;
1953 if (!UnreachableBlock) {
1954 UnreachableBlock = createBasicBlock("unreachable");
1955 new llvm::UnreachableInst(getLLVMContext(), UnreachableBlock);
1957 return UnreachableBlock;
CodeGenFunction.cpp 448 EmitIfUsed(*this, UnreachableBlock);
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CFG.cpp 5072 UnreachableBlock(!IsReachable ? B : nullptr,
5077 UnreachableBlock(B == AlternateBlock ? nullptr : AlternateBlock,

Completed in 57 milliseconds