HomeSort by relevance Sort by last modified time
    Searched refs:UnwindBlock (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/Transforms/Utils/
UnifyFunctionExitNodes.h 26 BasicBlock *ReturnBlock, *UnwindBlock, *UnreachableBlock;
31 ReturnBlock(nullptr), UnwindBlock(nullptr) {
42 BasicBlock *getUnwindBlock() const { return UnwindBlock; }
  /external/llvm/lib/Transforms/IPO/
PruneEH.cpp 206 BasicBlock *UnwindBlock = II->getUnwindDest();
207 UnwindBlock->removePredecessor(II->getParent());
217 if (pred_empty(UnwindBlock))
218 DeleteBasicBlock(UnwindBlock); // Delete the new BB.
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 327 BasicBlock *UnwindBlock = Invokes[i]->getUnwindDest();
328 if (UnwindBlock != BB && LiveBBs.count(UnwindBlock)) {
330 << UnwindBlock->getName() << "\n");
349 BasicBlock *UnwindBlock = Invokes[i]->getUnwindDest();
350 LandingPadInst *LPI = UnwindBlock->getLandingPadInst();
354 for (BasicBlock::iterator PN = UnwindBlock->begin(); isa<PHINode>(PN); ++PN)
364 LPI->moveBefore(&UnwindBlock->front());
  /external/llvm/lib/Transforms/Scalar/
RewriteStatepointsForGC.cpp     [all...]

Completed in 3269 milliseconds