Searched defs:ResumeInst (Results 1 - 2 of 2) sorted by relevance

/external/llvm/include/llvm/IR/
H A DInstructions.h3214 // ResumeInst Class
3218 /// ResumeInst - Resume the propagation of an exception.
3220 class ResumeInst : public TerminatorInst { class in inherits:TerminatorInst
3221 ResumeInst(const ResumeInst &RI);
3223 explicit ResumeInst(Value *Exn, Instruction *InsertBefore=nullptr);
3224 ResumeInst(Value *Exn, BasicBlock *InsertAtEnd);
3226 ResumeInst *clone_impl() const override;
3228 static ResumeInst *Create(Value *Exn, Instruction *InsertBefore = nullptr) {
3229 return new(1) ResumeInst(Ex
[all...]
/external/llvm/lib/IR/
H A DInstructions.cpp662 // ResumeInst Implementation
665 ResumeInst::ResumeInst(const ResumeInst &RI) function in class:ResumeInst
667 OperandTraits<ResumeInst>::op_begin(this), 1) {
671 ResumeInst::ResumeInst(Value *Exn, Instruction *InsertBefore) function in class:ResumeInst
673 OperandTraits<ResumeInst>::op_begin(this), 1, InsertBefore) {
677 ResumeInst::ResumeInst(Valu function in class:ResumeInst
[all...]

Completed in 3007 milliseconds