Lines Matching defs:ParentPad
3422 LLVMValueRef LLVMBuildCatchPad(LLVMBuilderRef B, LLVMValueRef ParentPad,
3425 return wrap(unwrap(B)->CreateCatchPad(unwrap(ParentPad),
3429 LLVMValueRef LLVMBuildCleanupPad(LLVMBuilderRef B, LLVMValueRef ParentPad,
3432 if (ParentPad == nullptr) {
3434 ParentPad = wrap(Constant::getNullValue(Ty));
3437 unwrap(ParentPad), ArrayRef(unwrap(Args), NumArgs), Name));
3444 LLVMValueRef LLVMBuildCatchSwitch(LLVMBuilderRef B, LLVMValueRef ParentPad,
3447 if (ParentPad == nullptr) {
3449 ParentPad = wrap(Constant::getNullValue(Ty));
3451 return wrap(unwrap(B)->CreateCatchSwitch(unwrap(ParentPad), unwrap(UnwindBB),