Home | History | Annotate | Download | only in IR

Lines Matching refs:ResumeInst

3214 //                              ResumeInst Class
3218 /// ResumeInst - Resume the propagation of an exception.
3220 class ResumeInst : public 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(Exn, InsertBefore);
3231 static ResumeInst *Create(Value *Exn, BasicBlock *InsertAtEnd) {
3232 return new(1) ResumeInst(Exn, InsertAtEnd);
3257 struct OperandTraits<ResumeInst> :
3258 public FixedNumOperandTraits<ResumeInst, 1> {
3261 DEFINE_TRANSPARENT_OPERAND_ACCESSORS(ResumeInst, Value)