Lines Matching refs:NumReservedValues
192 LandingPadInst::LandingPadInst(Type *RetTy, unsigned NumReservedValues, in LandingPadInst() argument
195 init(NumReservedValues, NameStr); in LandingPadInst()
198 LandingPadInst::LandingPadInst(Type *RetTy, unsigned NumReservedValues, in LandingPadInst() argument
201 init(NumReservedValues, NameStr); in LandingPadInst()
229 void LandingPadInst::init(unsigned NumReservedValues, const Twine &NameStr) { in init() argument
230 ReservedSpace = NumReservedValues; in init()
848 unsigned NumReservedValues, in CatchSwitchInst() argument
854 ++NumReservedValues; in CatchSwitchInst()
855 init(ParentPad, UnwindDest, NumReservedValues + 1); in CatchSwitchInst()
860 unsigned NumReservedValues, in CatchSwitchInst() argument
865 ++NumReservedValues; in CatchSwitchInst()
866 init(ParentPad, UnwindDest, NumReservedValues + 1); in CatchSwitchInst()
882 unsigned NumReservedValues) { in init() argument
883 assert(ParentPad && NumReservedValues); in init()
885 ReservedSpace = NumReservedValues; in init()