Lines Matching defs:ParentPad
3470 LLVMValueRef LLVMBuildCatchPad(LLVMBuilderRef B, LLVMValueRef ParentPad,
3473 return wrap(unwrap(B)->CreateCatchPad(unwrap(ParentPad),
3477 LLVMValueRef LLVMBuildCleanupPad(LLVMBuilderRef B, LLVMValueRef ParentPad,
3480 if (ParentPad == nullptr) {
3482 ParentPad = wrap(Constant::getNullValue(Ty));
3485 unwrap(ParentPad), ArrayRef(unwrap(Args), NumArgs), Name));
3492 LLVMValueRef LLVMBuildCatchSwitch(LLVMBuilderRef B, LLVMValueRef ParentPad,
3495 if (ParentPad == nullptr) {
3497 ParentPad = wrap(Constant::getNullValue(Ty));
3499 return wrap(unwrap(B)->CreateCatchSwitch(unwrap(ParentPad), unwrap(UnwindBB),