Lines Matching defs:ParentPad
1054 CatchSwitchInst::CatchSwitchInst(Value *ParentPad, BasicBlock *UnwindDest,
1058 : Instruction(ParentPad->getType(), Instruction::CatchSwitch, AllocMarker,
1062 init(ParentPad, UnwindDest, NumReservedValues + 1);
1077 void CatchSwitchInst::init(Value *ParentPad, BasicBlock *UnwindDest,
1079 assert(ParentPad && NumReservedValues);
1085 Op<0>() = ParentPad;
1125 void FuncletPadInst::init(Value *ParentPad, ArrayRef<Value *> Args,
1129 setParentPad(ParentPad);
1141 FuncletPadInst::FuncletPadInst(Instruction::FuncletPadOps Op, Value *ParentPad,
1145 : Instruction(ParentPad->getType(), Op, AllocInfo, InsertBefore) {
1146 init(ParentPad, Args, NameStr);