reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/IR/Instructions.h
 4274   DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);

References

include/llvm/IR/Instructions.h
 4277   Value *getParentPad() const { return getOperand(0); }
 4278   void setParentPad(Value *ParentPad) { setOperand(0, ParentPad); }
 4285       return cast<BasicBlock>(getOperand(1));
 4291     setOperand(1, UnwindDest);
 4298       return getNumOperands() - 2;
 4299     return getNumOperands() - 1;
 4319     op_iterator It = op_begin() + 1;
 4328     const_op_iterator It = op_begin() + 1;
 4337     return handler_iterator(op_end(), DerefFnTy(handler_helper));
 4343     return const_handler_iterator(op_end(), ConstDerefFnTy(handler_helper));
 4364   unsigned getNumSuccessors() const { return getNumOperands() - 1; }
 4368     return cast<BasicBlock>(getOperand(Idx + 1));
 4373     setOperand(Idx + 1, NewSucc);
lib/IR/Instructions.cpp
 1017                   CSI.getNumOperands()) {
 1018   init(CSI.getParentPad(), CSI.getUnwindDest(), CSI.getNumOperands());
 1034   Op<0>() = ParentPad;
 1044   unsigned NumOperands = getNumOperands();
 1053   unsigned OpNo = getNumOperands();
 1056   setNumHungOffUseOperands(getNumOperands() + 1);
 1062   Use *EndDst = op_end() - 1;
 1068   setNumHungOffUseOperands(getNumOperands() - 1);