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

  /external/llvm/lib/IR/
Instructions.cpp 769 // CleanupReturnInst Implementation
772 CleanupReturnInst::CleanupReturnInst(const CleanupReturnInst &CRI)
774 OperandTraits<CleanupReturnInst>::op_end(this) -
783 void CleanupReturnInst::init(Value *CleanupPad, BasicBlock *UnwindBB) {
792 CleanupReturnInst::CleanupReturnInst(Value *CleanupPad, BasicBlock *UnwindBB,
796 OperandTraits<CleanupReturnInst>::op_end(this) - Values,
801 CleanupReturnInst::CleanupReturnInst(Value *CleanupPad, BasicBlock *UnwindBB
    [all...]
Instruction.cpp 474 if (const auto *CRI = dyn_cast<CleanupReturnInst>(this))
Verifier.cpp 407 void visitCleanupReturnInst(CleanupReturnInst &CRI);
    [all...]
AsmWriter.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
InstVisitor.h 172 RetTy visitCleanupReturnInst(CleanupReturnInst &I) { DELEGATE(TerminatorInst);}
IRBuilder.h 706 CleanupReturnInst *CreateCleanupRet(CleanupPadInst *CleanupPad,
708 return Insert(CleanupReturnInst::Create(CleanupPad, UnwindBB));
    [all...]
  /external/llvm/lib/CodeGen/
WinEHPrepare.cpp 153 if (const auto *CRI = dyn_cast<CleanupReturnInst>(U))
216 auto *CleanupPad = cast<CleanupReturnInst>(TI)->getCleanupPad();
822 // The token consumed by a CleanupReturnInst must match the funclet token.
824 if (auto *CRI = dyn_cast<CleanupReturnInst>(TI))
    [all...]
  /external/llvm/lib/Analysis/
InlineCost.cpp 159 bool visitCleanupReturnInst(CleanupReturnInst &RI);
    [all...]
  /external/llvm/lib/Transforms/Utils/
Local.cpp     [all...]
InlineFunction.cpp 333 if (auto *CRI = dyn_cast<CleanupReturnInst>(BB->getTerminator())) {
335 CleanupReturnInst::Create(CRI->getCleanupPad(), UnwindDest, CRI);
    [all...]
SimplifyCFG.cpp 143 bool SimplifyCleanupReturn(CleanupReturnInst *RI);
    [all...]