Anders Carlsson | 756b5c4 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 1 | //===--- CGException.cpp - Emit LLVM Code for C++ exceptions --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code dealing with C++ exception related code generation. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 14 | #include "clang/AST/StmtCXX.h" |
| 15 | |
| 16 | #include "llvm/Intrinsics.h" |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 17 | #include "llvm/IntrinsicInst.h" |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 18 | #include "llvm/Support/CallSite.h" |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 19 | |
John McCall | 5a18039 | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 20 | #include "CGObjCRuntime.h" |
Anders Carlsson | 756b5c4 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 21 | #include "CodeGenFunction.h" |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 22 | #include "CGException.h" |
John McCall | 36f893c | 2011-01-28 11:13:47 +0000 | [diff] [blame] | 23 | #include "CGCleanup.h" |
John McCall | 204b075 | 2010-07-20 22:17:55 +0000 | [diff] [blame] | 24 | #include "TargetInfo.h" |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 25 | |
Anders Carlsson | 756b5c4 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 26 | using namespace clang; |
| 27 | using namespace CodeGen; |
| 28 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 29 | static llvm::Constant *getAllocateExceptionFn(CodeGenFunction &CGF) { |
| 30 | // void *__cxa_allocate_exception(size_t thrown_size); |
| 31 | const llvm::Type *SizeTy = CGF.ConvertType(CGF.getContext().getSizeType()); |
| 32 | std::vector<const llvm::Type*> Args(1, SizeTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 33 | |
| 34 | const llvm::FunctionType *FTy = |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 35 | llvm::FunctionType::get(llvm::Type::getInt8PtrTy(CGF.getLLVMContext()), |
| 36 | Args, false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 37 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 38 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception"); |
| 39 | } |
| 40 | |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 41 | static llvm::Constant *getFreeExceptionFn(CodeGenFunction &CGF) { |
| 42 | // void __cxa_free_exception(void *thrown_exception); |
| 43 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 44 | std::vector<const llvm::Type*> Args(1, Int8PtrTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 45 | |
| 46 | const llvm::FunctionType *FTy = |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 47 | llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), |
| 48 | Args, false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 49 | |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 50 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception"); |
| 51 | } |
| 52 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 53 | static llvm::Constant *getThrowFn(CodeGenFunction &CGF) { |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 54 | // void __cxa_throw(void *thrown_exception, std::type_info *tinfo, |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 55 | // void (*dest) (void *)); |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 56 | |
| 57 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 58 | std::vector<const llvm::Type*> Args(3, Int8PtrTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 59 | |
| 60 | const llvm::FunctionType *FTy = |
Mike Stump | b4eea69 | 2009-11-20 00:56:31 +0000 | [diff] [blame] | 61 | llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), |
| 62 | Args, false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 63 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 64 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_throw"); |
| 65 | } |
| 66 | |
Mike Stump | b4eea69 | 2009-11-20 00:56:31 +0000 | [diff] [blame] | 67 | static llvm::Constant *getReThrowFn(CodeGenFunction &CGF) { |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 68 | // void __cxa_rethrow(); |
Mike Stump | b4eea69 | 2009-11-20 00:56:31 +0000 | [diff] [blame] | 69 | |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 70 | const llvm::FunctionType *FTy = |
Mike Stump | b4eea69 | 2009-11-20 00:56:31 +0000 | [diff] [blame] | 71 | llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 72 | |
Mike Stump | b4eea69 | 2009-11-20 00:56:31 +0000 | [diff] [blame] | 73 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow"); |
| 74 | } |
| 75 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 76 | static llvm::Constant *getGetExceptionPtrFn(CodeGenFunction &CGF) { |
| 77 | // void *__cxa_get_exception_ptr(void*); |
| 78 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 79 | std::vector<const llvm::Type*> Args(1, Int8PtrTy); |
| 80 | |
| 81 | const llvm::FunctionType *FTy = |
| 82 | llvm::FunctionType::get(Int8PtrTy, Args, false); |
| 83 | |
| 84 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_get_exception_ptr"); |
| 85 | } |
| 86 | |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 87 | static llvm::Constant *getBeginCatchFn(CodeGenFunction &CGF) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 88 | // void *__cxa_begin_catch(void*); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 89 | |
| 90 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 91 | std::vector<const llvm::Type*> Args(1, Int8PtrTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 92 | |
| 93 | const llvm::FunctionType *FTy = |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 94 | llvm::FunctionType::get(Int8PtrTy, Args, false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 95 | |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 96 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch"); |
| 97 | } |
| 98 | |
| 99 | static llvm::Constant *getEndCatchFn(CodeGenFunction &CGF) { |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 100 | // void __cxa_end_catch(); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 101 | |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 102 | const llvm::FunctionType *FTy = |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 103 | llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 104 | |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 105 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch"); |
| 106 | } |
| 107 | |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 108 | static llvm::Constant *getUnexpectedFn(CodeGenFunction &CGF) { |
| 109 | // void __cxa_call_unexepcted(void *thrown_exception); |
| 110 | |
| 111 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 112 | std::vector<const llvm::Type*> Args(1, Int8PtrTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 113 | |
| 114 | const llvm::FunctionType *FTy = |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 115 | llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), |
| 116 | Args, false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 117 | |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 118 | return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected"); |
| 119 | } |
| 120 | |
Douglas Gregor | 86a3a03 | 2010-05-16 01:24:12 +0000 | [diff] [blame] | 121 | llvm::Constant *CodeGenFunction::getUnwindResumeOrRethrowFn() { |
| 122 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext()); |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 123 | std::vector<const llvm::Type*> Args(1, Int8PtrTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 124 | |
| 125 | const llvm::FunctionType *FTy = |
Douglas Gregor | 86a3a03 | 2010-05-16 01:24:12 +0000 | [diff] [blame] | 126 | llvm::FunctionType::get(llvm::Type::getVoidTy(getLLVMContext()), Args, |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 127 | false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 128 | |
Douglas Gregor | 86a3a03 | 2010-05-16 01:24:12 +0000 | [diff] [blame] | 129 | if (CGM.getLangOptions().SjLjExceptions) |
John McCall | a5f2de2 | 2010-08-11 20:59:53 +0000 | [diff] [blame] | 130 | return CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume_or_Rethrow"); |
Douglas Gregor | 86a3a03 | 2010-05-16 01:24:12 +0000 | [diff] [blame] | 131 | return CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume_or_Rethrow"); |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 132 | } |
| 133 | |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 134 | static llvm::Constant *getTerminateFn(CodeGenFunction &CGF) { |
| 135 | // void __terminate(); |
| 136 | |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 137 | const llvm::FunctionType *FTy = |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 138 | llvm::FunctionType::get(llvm::Type::getVoidTy(CGF.getLLVMContext()), false); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 139 | |
David Chisnall | 79a9ad8 | 2010-05-17 13:49:20 +0000 | [diff] [blame] | 140 | return CGF.CGM.CreateRuntimeFunction(FTy, |
| 141 | CGF.CGM.getLangOptions().CPlusPlus ? "_ZSt9terminatev" : "abort"); |
| 142 | } |
| 143 | |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 144 | static llvm::Constant *getCatchallRethrowFn(CodeGenFunction &CGF, |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 145 | llvm::StringRef Name) { |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 146 | const llvm::Type *Int8PtrTy = |
| 147 | llvm::Type::getInt8PtrTy(CGF.getLLVMContext()); |
| 148 | std::vector<const llvm::Type*> Args(1, Int8PtrTy); |
| 149 | |
| 150 | const llvm::Type *VoidTy = llvm::Type::getVoidTy(CGF.getLLVMContext()); |
| 151 | const llvm::FunctionType *FTy = llvm::FunctionType::get(VoidTy, Args, false); |
| 152 | |
| 153 | return CGF.CGM.CreateRuntimeFunction(FTy, Name); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 154 | } |
| 155 | |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 156 | const EHPersonality EHPersonality::GNU_C("__gcc_personality_v0"); |
John McCall | 4468078 | 2010-11-07 02:35:25 +0000 | [diff] [blame] | 157 | const EHPersonality EHPersonality::GNU_C_SJLJ("__gcc_personality_sj0"); |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 158 | const EHPersonality EHPersonality::NeXT_ObjC("__objc_personality_v0"); |
| 159 | const EHPersonality EHPersonality::GNU_CPlusPlus("__gxx_personality_v0"); |
| 160 | const EHPersonality EHPersonality::GNU_CPlusPlus_SJLJ("__gxx_personality_sj0"); |
| 161 | const EHPersonality EHPersonality::GNU_ObjC("__gnu_objc_personality_v0", |
| 162 | "objc_exception_throw"); |
| 163 | |
| 164 | static const EHPersonality &getCPersonality(const LangOptions &L) { |
John McCall | 4468078 | 2010-11-07 02:35:25 +0000 | [diff] [blame] | 165 | if (L.SjLjExceptions) |
| 166 | return EHPersonality::GNU_C_SJLJ; |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 167 | return EHPersonality::GNU_C; |
| 168 | } |
| 169 | |
| 170 | static const EHPersonality &getObjCPersonality(const LangOptions &L) { |
| 171 | if (L.NeXTRuntime) { |
| 172 | if (L.ObjCNonFragileABI) return EHPersonality::NeXT_ObjC; |
| 173 | else return getCPersonality(L); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 174 | } else { |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 175 | return EHPersonality::GNU_ObjC; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 176 | } |
| 177 | } |
| 178 | |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 179 | static const EHPersonality &getCXXPersonality(const LangOptions &L) { |
| 180 | if (L.SjLjExceptions) |
| 181 | return EHPersonality::GNU_CPlusPlus_SJLJ; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 182 | else |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 183 | return EHPersonality::GNU_CPlusPlus; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | /// Determines the personality function to use when both C++ |
| 187 | /// and Objective-C exceptions are being caught. |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 188 | static const EHPersonality &getObjCXXPersonality(const LangOptions &L) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 189 | // The ObjC personality defers to the C++ personality for non-ObjC |
| 190 | // handlers. Unlike the C++ case, we use the same personality |
| 191 | // function on targets using (backend-driven) SJLJ EH. |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 192 | if (L.NeXTRuntime) { |
| 193 | if (L.ObjCNonFragileABI) |
| 194 | return EHPersonality::NeXT_ObjC; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 195 | |
| 196 | // In the fragile ABI, just use C++ exception handling and hope |
| 197 | // they're not doing crazy exception mixing. |
| 198 | else |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 199 | return getCXXPersonality(L); |
Chandler Carruth | dcf22ad | 2010-05-17 20:58:49 +0000 | [diff] [blame] | 200 | } |
David Chisnall | 79a9ad8 | 2010-05-17 13:49:20 +0000 | [diff] [blame] | 201 | |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 202 | // The GNU runtime's personality function inherently doesn't support |
| 203 | // mixed EH. Use the C++ personality just to avoid returning null. |
| 204 | return getCXXPersonality(L); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 205 | } |
| 206 | |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 207 | const EHPersonality &EHPersonality::get(const LangOptions &L) { |
| 208 | if (L.CPlusPlus && L.ObjC1) |
| 209 | return getObjCXXPersonality(L); |
| 210 | else if (L.CPlusPlus) |
| 211 | return getCXXPersonality(L); |
| 212 | else if (L.ObjC1) |
| 213 | return getObjCPersonality(L); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 214 | else |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 215 | return getCPersonality(L); |
| 216 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 217 | |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 218 | static llvm::Constant *getPersonalityFn(CodeGenModule &CGM, |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 219 | const EHPersonality &Personality) { |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 220 | llvm::Constant *Fn = |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 221 | CGM.CreateRuntimeFunction(llvm::FunctionType::get( |
| 222 | llvm::Type::getInt32Ty(CGM.getLLVMContext()), |
| 223 | true), |
| 224 | Personality.getPersonalityFnName()); |
| 225 | return Fn; |
| 226 | } |
| 227 | |
| 228 | static llvm::Constant *getOpaquePersonalityFn(CodeGenModule &CGM, |
| 229 | const EHPersonality &Personality) { |
| 230 | llvm::Constant *Fn = getPersonalityFn(CGM, Personality); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 231 | return llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy); |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 232 | } |
| 233 | |
| 234 | /// Check whether a personality function could reasonably be swapped |
| 235 | /// for a C++ personality function. |
| 236 | static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) { |
| 237 | for (llvm::Constant::use_iterator |
| 238 | I = Fn->use_begin(), E = Fn->use_end(); I != E; ++I) { |
| 239 | llvm::User *User = *I; |
| 240 | |
| 241 | // Conditionally white-list bitcasts. |
| 242 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(User)) { |
| 243 | if (CE->getOpcode() != llvm::Instruction::BitCast) return false; |
| 244 | if (!PersonalityHasOnlyCXXUses(CE)) |
| 245 | return false; |
| 246 | continue; |
| 247 | } |
| 248 | |
| 249 | // Otherwise, it has to be a selector call. |
| 250 | if (!isa<llvm::EHSelectorInst>(User)) return false; |
| 251 | |
| 252 | llvm::EHSelectorInst *Selector = cast<llvm::EHSelectorInst>(User); |
| 253 | for (unsigned I = 2, E = Selector->getNumArgOperands(); I != E; ++I) { |
| 254 | // Look for something that would've been returned by the ObjC |
| 255 | // runtime's GetEHType() method. |
| 256 | llvm::GlobalVariable *GV |
| 257 | = dyn_cast<llvm::GlobalVariable>(Selector->getArgOperand(I)); |
| 258 | if (!GV) continue; |
| 259 | |
| 260 | // ObjC EH selector entries are always global variables with |
| 261 | // names starting like this. |
| 262 | if (GV->getName().startswith("OBJC_EHTYPE")) |
| 263 | return false; |
| 264 | } |
| 265 | } |
| 266 | |
| 267 | return true; |
| 268 | } |
| 269 | |
| 270 | /// Try to use the C++ personality function in ObjC++. Not doing this |
| 271 | /// can cause some incompatibilities with gcc, which is more |
| 272 | /// aggressive about only using the ObjC++ personality in a function |
| 273 | /// when it really needs it. |
| 274 | void CodeGenModule::SimplifyPersonality() { |
| 275 | // For now, this is really a Darwin-specific operation. |
| 276 | if (Context.Target.getTriple().getOS() != llvm::Triple::Darwin) |
| 277 | return; |
| 278 | |
| 279 | // If we're not in ObjC++ -fexceptions, there's nothing to do. |
| 280 | if (!Features.CPlusPlus || !Features.ObjC1 || !Features.Exceptions) |
| 281 | return; |
| 282 | |
| 283 | const EHPersonality &ObjCXX = EHPersonality::get(Features); |
| 284 | const EHPersonality &CXX = getCXXPersonality(Features); |
| 285 | if (&ObjCXX == &CXX || |
| 286 | ObjCXX.getPersonalityFnName() == CXX.getPersonalityFnName()) |
| 287 | return; |
| 288 | |
| 289 | llvm::Function *Fn = |
| 290 | getModule().getFunction(ObjCXX.getPersonalityFnName()); |
| 291 | |
| 292 | // Nothing to do if it's unused. |
| 293 | if (!Fn || Fn->use_empty()) return; |
| 294 | |
| 295 | // Can't do the optimization if it has non-C++ uses. |
| 296 | if (!PersonalityHasOnlyCXXUses(Fn)) return; |
| 297 | |
| 298 | // Create the C++ personality function and kill off the old |
| 299 | // function. |
| 300 | llvm::Constant *CXXFn = getPersonalityFn(*this, CXX); |
| 301 | |
| 302 | // This can happen if the user is screwing with us. |
| 303 | if (Fn->getType() != CXXFn->getType()) return; |
| 304 | |
| 305 | Fn->replaceAllUsesWith(CXXFn); |
| 306 | Fn->eraseFromParent(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | /// Returns the value to inject into a selector to indicate the |
| 310 | /// presence of a catch-all. |
| 311 | static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) { |
| 312 | // Possibly we should use @llvm.eh.catch.all.value here. |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 313 | return llvm::ConstantPointerNull::get(CGF.Int8PtrTy); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | /// Returns the value to inject into a selector to indicate the |
| 317 | /// presence of a cleanup. |
| 318 | static llvm::Constant *getCleanupValue(CodeGenFunction &CGF) { |
| 319 | return llvm::ConstantInt::get(CGF.Builder.getInt32Ty(), 0); |
Mike Stump | 9953383 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 320 | } |
| 321 | |
John McCall | 09faeab | 2010-07-13 21:17:51 +0000 | [diff] [blame] | 322 | namespace { |
| 323 | /// A cleanup to free the exception object if its initialization |
| 324 | /// throws. |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 325 | struct FreeException { |
| 326 | static void Emit(CodeGenFunction &CGF, bool forEH, |
| 327 | llvm::Value *exn) { |
| 328 | CGF.Builder.CreateCall(getFreeExceptionFn(CGF), exn) |
John McCall | 09faeab | 2010-07-13 21:17:51 +0000 | [diff] [blame] | 329 | ->setDoesNotThrow(); |
John McCall | 09faeab | 2010-07-13 21:17:51 +0000 | [diff] [blame] | 330 | } |
| 331 | }; |
| 332 | } |
| 333 | |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 334 | // Emits an exception expression into the given location. This |
| 335 | // differs from EmitAnyExprToMem only in that, if a final copy-ctor |
| 336 | // call is required, an exception within that copy ctor causes |
| 337 | // std::terminate to be invoked. |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 338 | static void EmitAnyExprToExn(CodeGenFunction &CGF, const Expr *e, |
| 339 | llvm::Value *addr) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 340 | // Make sure the exception object is cleaned up if there's an |
| 341 | // exception during initialization. |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 342 | CGF.pushFullExprCleanup<FreeException>(EHCleanup, addr); |
| 343 | EHScopeStack::stable_iterator cleanup = CGF.EHStack.stable_begin(); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 344 | |
| 345 | // __cxa_allocate_exception returns a void*; we need to cast this |
| 346 | // to the appropriate type for the object. |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 347 | const llvm::Type *ty = CGF.ConvertTypeForMem(e->getType())->getPointerTo(); |
| 348 | llvm::Value *typedAddr = CGF.Builder.CreateBitCast(addr, ty); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 349 | |
| 350 | // FIXME: this isn't quite right! If there's a final unelided call |
| 351 | // to a copy constructor, then according to [except.terminate]p1 we |
| 352 | // must call std::terminate() if that constructor throws, because |
| 353 | // technically that copy occurs after the exception expression is |
| 354 | // evaluated but before the exception is caught. But the best way |
| 355 | // to handle that is to teach EmitAggExpr to do the final copy |
| 356 | // differently if it can't be elided. |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 357 | CGF.EmitAnyExprToMem(e, typedAddr, /*Volatile*/ false, /*IsInit*/ true); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 358 | |
John McCall | 3ad32c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 359 | // Deactivate the cleanup block. |
| 360 | CGF.DeactivateCleanupBlock(cleanup); |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 361 | } |
| 362 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 363 | llvm::Value *CodeGenFunction::getExceptionSlot() { |
| 364 | if (!ExceptionSlot) { |
| 365 | const llvm::Type *i8p = llvm::Type::getInt8PtrTy(getLLVMContext()); |
| 366 | ExceptionSlot = CreateTempAlloca(i8p, "exn.slot"); |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 367 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 368 | return ExceptionSlot; |
Mike Stump | 0f590be | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 369 | } |
| 370 | |
Anders Carlsson | 756b5c4 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 371 | void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) { |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 372 | if (!E->getSubExpr()) { |
Douglas Gregor | 1eb2e59 | 2010-05-16 00:44:00 +0000 | [diff] [blame] | 373 | if (getInvokeDest()) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 374 | Builder.CreateInvoke(getReThrowFn(*this), |
| 375 | getUnreachableBlock(), |
| 376 | getInvokeDest()) |
Douglas Gregor | 1eb2e59 | 2010-05-16 00:44:00 +0000 | [diff] [blame] | 377 | ->setDoesNotReturn(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 378 | } else { |
Douglas Gregor | 1eb2e59 | 2010-05-16 00:44:00 +0000 | [diff] [blame] | 379 | Builder.CreateCall(getReThrowFn(*this))->setDoesNotReturn(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 380 | Builder.CreateUnreachable(); |
| 381 | } |
Douglas Gregor | 1eb2e59 | 2010-05-16 00:44:00 +0000 | [diff] [blame] | 382 | |
John McCall | cd5b22e | 2011-01-12 03:41:02 +0000 | [diff] [blame] | 383 | // throw is an expression, and the expression emitters expect us |
| 384 | // to leave ourselves at a valid insertion point. |
| 385 | EmitBlock(createBasicBlock("throw.cont")); |
| 386 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 387 | return; |
| 388 | } |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 389 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 390 | QualType ThrowType = E->getSubExpr()->getType(); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 391 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 392 | // Now allocate the exception object. |
| 393 | const llvm::Type *SizeTy = ConvertType(getContext().getSizeType()); |
John McCall | 3d3ec1c | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 394 | uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity(); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 395 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 396 | llvm::Constant *AllocExceptionFn = getAllocateExceptionFn(*this); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 397 | llvm::CallInst *ExceptionPtr = |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 398 | Builder.CreateCall(AllocExceptionFn, |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 399 | llvm::ConstantInt::get(SizeTy, TypeSize), |
| 400 | "exception"); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 401 | ExceptionPtr->setDoesNotThrow(); |
Anders Carlsson | 8370c58 | 2009-12-11 00:32:37 +0000 | [diff] [blame] | 402 | |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 403 | EmitAnyExprToExn(*this, E->getSubExpr(), ExceptionPtr); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 404 | |
Anders Carlsson | d337929 | 2009-10-30 02:27:02 +0000 | [diff] [blame] | 405 | // Now throw the exception. |
| 406 | const llvm::Type *Int8PtrTy = llvm::Type::getInt8PtrTy(getLLVMContext()); |
Anders Carlsson | 82a113a | 2011-01-24 01:59:49 +0000 | [diff] [blame] | 407 | llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType, |
| 408 | /*ForEH=*/true); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 409 | |
| 410 | // The address of the destructor. If the exception type has a |
| 411 | // trivial destructor (or isn't a record), we just pass null. |
| 412 | llvm::Constant *Dtor = 0; |
| 413 | if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) { |
| 414 | CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl()); |
| 415 | if (!Record->hasTrivialDestructor()) { |
Douglas Gregor | 1d110e0 | 2010-07-01 14:13:13 +0000 | [diff] [blame] | 416 | CXXDestructorDecl *DtorD = Record->getDestructor(); |
John McCall | ac41816 | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 417 | Dtor = CGM.GetAddrOfCXXDestructor(DtorD, Dtor_Complete); |
| 418 | Dtor = llvm::ConstantExpr::getBitCast(Dtor, Int8PtrTy); |
| 419 | } |
| 420 | } |
| 421 | if (!Dtor) Dtor = llvm::Constant::getNullValue(Int8PtrTy); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 422 | |
Mike Stump | 0a3816e | 2009-12-04 01:51:45 +0000 | [diff] [blame] | 423 | if (getInvokeDest()) { |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 424 | llvm::InvokeInst *ThrowCall = |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 425 | Builder.CreateInvoke3(getThrowFn(*this), |
| 426 | getUnreachableBlock(), getInvokeDest(), |
Mike Stump | 0a3816e | 2009-12-04 01:51:45 +0000 | [diff] [blame] | 427 | ExceptionPtr, TypeInfo, Dtor); |
| 428 | ThrowCall->setDoesNotReturn(); |
Mike Stump | 0a3816e | 2009-12-04 01:51:45 +0000 | [diff] [blame] | 429 | } else { |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 430 | llvm::CallInst *ThrowCall = |
Mike Stump | 0a3816e | 2009-12-04 01:51:45 +0000 | [diff] [blame] | 431 | Builder.CreateCall3(getThrowFn(*this), ExceptionPtr, TypeInfo, Dtor); |
| 432 | ThrowCall->setDoesNotReturn(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 433 | Builder.CreateUnreachable(); |
Mike Stump | 0a3816e | 2009-12-04 01:51:45 +0000 | [diff] [blame] | 434 | } |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 435 | |
John McCall | cd5b22e | 2011-01-12 03:41:02 +0000 | [diff] [blame] | 436 | // throw is an expression, and the expression emitters expect us |
| 437 | // to leave ourselves at a valid insertion point. |
| 438 | EmitBlock(createBasicBlock("throw.cont")); |
Anders Carlsson | 756b5c4 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 439 | } |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 440 | |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 441 | void CodeGenFunction::EmitStartEHSpec(const Decl *D) { |
Anders Carlsson | c1cfdf8 | 2011-02-20 00:20:27 +0000 | [diff] [blame^] | 442 | if (!CGM.getLangOptions().areExceptionsEnabled()) |
Anders Carlsson | a994ee4 | 2010-02-06 23:59:05 +0000 | [diff] [blame] | 443 | return; |
| 444 | |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 445 | const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D); |
| 446 | if (FD == 0) |
| 447 | return; |
| 448 | const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); |
| 449 | if (Proto == 0) |
| 450 | return; |
| 451 | |
| 452 | assert(!Proto->hasAnyExceptionSpec() && "function with parameter pack"); |
| 453 | |
| 454 | if (!Proto->hasExceptionSpec()) |
| 455 | return; |
| 456 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 457 | unsigned NumExceptions = Proto->getNumExceptions(); |
| 458 | EHFilterScope *Filter = EHStack.pushFilter(NumExceptions); |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 459 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 460 | for (unsigned I = 0; I != NumExceptions; ++I) { |
| 461 | QualType Ty = Proto->getExceptionType(I); |
| 462 | QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType(); |
Anders Carlsson | 82a113a | 2011-01-24 01:59:49 +0000 | [diff] [blame] | 463 | llvm::Value *EHType = CGM.GetAddrOfRTTIDescriptor(ExceptType, |
| 464 | /*ForEH=*/true); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 465 | Filter->setFilter(I, EHType); |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 466 | } |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 467 | } |
| 468 | |
| 469 | void CodeGenFunction::EmitEndEHSpec(const Decl *D) { |
Anders Carlsson | c1cfdf8 | 2011-02-20 00:20:27 +0000 | [diff] [blame^] | 470 | if (!CGM.getLangOptions().areExceptionsEnabled()) |
Anders Carlsson | a994ee4 | 2010-02-06 23:59:05 +0000 | [diff] [blame] | 471 | return; |
| 472 | |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 473 | const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D); |
| 474 | if (FD == 0) |
| 475 | return; |
| 476 | const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); |
| 477 | if (Proto == 0) |
| 478 | return; |
| 479 | |
| 480 | if (!Proto->hasExceptionSpec()) |
| 481 | return; |
| 482 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 483 | EHStack.popFilter(); |
Mike Stump | cce3d4f | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 484 | } |
| 485 | |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 486 | void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) { |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 487 | EnterCXXTryStmt(S); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 488 | EmitStmt(S.getTryBlock()); |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 489 | ExitCXXTryStmt(S); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 490 | } |
| 491 | |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 492 | void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 493 | unsigned NumHandlers = S.getNumHandlers(); |
| 494 | EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 495 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 496 | for (unsigned I = 0; I != NumHandlers; ++I) { |
| 497 | const CXXCatchStmt *C = S.getHandler(I); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 498 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 499 | llvm::BasicBlock *Handler = createBasicBlock("catch"); |
| 500 | if (C->getExceptionDecl()) { |
| 501 | // FIXME: Dropping the reference type on the type into makes it |
| 502 | // impossible to correctly implement catch-by-reference |
| 503 | // semantics for pointers. Unfortunately, this is what all |
| 504 | // existing compilers do, and it's not clear that the standard |
| 505 | // personality routine is capable of doing this right. See C++ DR 388: |
| 506 | // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#388 |
| 507 | QualType CaughtType = C->getCaughtType(); |
| 508 | CaughtType = CaughtType.getNonReferenceType().getUnqualifiedType(); |
John McCall | 5a18039 | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 509 | |
| 510 | llvm::Value *TypeInfo = 0; |
| 511 | if (CaughtType->isObjCObjectPointerType()) |
| 512 | TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType); |
| 513 | else |
Anders Carlsson | 82a113a | 2011-01-24 01:59:49 +0000 | [diff] [blame] | 514 | TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 515 | CatchScope->setHandler(I, TypeInfo, Handler); |
| 516 | } else { |
| 517 | // No exception decl indicates '...', a catch-all. |
| 518 | CatchScope->setCatchAllHandler(I, Handler); |
| 519 | } |
| 520 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | /// Check whether this is a non-EH scope, i.e. a scope which doesn't |
| 524 | /// affect exception handling. Currently, the only non-EH scopes are |
| 525 | /// normal-only cleanup scopes. |
| 526 | static bool isNonEHScope(const EHScope &S) { |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 527 | switch (S.getKind()) { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 528 | case EHScope::Cleanup: |
| 529 | return !cast<EHCleanupScope>(S).isEHCleanup(); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 530 | case EHScope::Filter: |
| 531 | case EHScope::Catch: |
| 532 | case EHScope::Terminate: |
| 533 | return false; |
| 534 | } |
| 535 | |
| 536 | // Suppress warning. |
| 537 | return false; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 538 | } |
| 539 | |
| 540 | llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() { |
| 541 | assert(EHStack.requiresLandingPad()); |
| 542 | assert(!EHStack.empty()); |
| 543 | |
Anders Carlsson | c1cfdf8 | 2011-02-20 00:20:27 +0000 | [diff] [blame^] | 544 | if (!CGM.getLangOptions().areExceptionsEnabled()) |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 545 | return 0; |
| 546 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 547 | // Check the innermost scope for a cached landing pad. If this is |
| 548 | // a non-EH cleanup, we'll check enclosing scopes in EmitLandingPad. |
| 549 | llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad(); |
| 550 | if (LP) return LP; |
| 551 | |
| 552 | // Build the landing pad for this scope. |
| 553 | LP = EmitLandingPad(); |
| 554 | assert(LP); |
| 555 | |
| 556 | // Cache the landing pad on the innermost scope. If this is a |
| 557 | // non-EH scope, cache the landing pad on the enclosing scope, too. |
| 558 | for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) { |
| 559 | ir->setCachedLandingPad(LP); |
| 560 | if (!isNonEHScope(*ir)) break; |
| 561 | } |
| 562 | |
| 563 | return LP; |
| 564 | } |
| 565 | |
| 566 | llvm::BasicBlock *CodeGenFunction::EmitLandingPad() { |
| 567 | assert(EHStack.requiresLandingPad()); |
| 568 | |
| 569 | // This function contains a hack to work around a design flaw in |
| 570 | // LLVM's EH IR which breaks semantics after inlining. This same |
| 571 | // hack is implemented in llvm-gcc. |
| 572 | // |
| 573 | // The LLVM EH abstraction is basically a thin veneer over the |
| 574 | // traditional GCC zero-cost design: for each range of instructions |
| 575 | // in the function, there is (at most) one "landing pad" with an |
| 576 | // associated chain of EH actions. A language-specific personality |
| 577 | // function interprets this chain of actions and (1) decides whether |
| 578 | // or not to resume execution at the landing pad and (2) if so, |
| 579 | // provides an integer indicating why it's stopping. In LLVM IR, |
| 580 | // the association of a landing pad with a range of instructions is |
| 581 | // achieved via an invoke instruction, the chain of actions becomes |
| 582 | // the arguments to the @llvm.eh.selector call, and the selector |
| 583 | // call returns the integer indicator. Other than the required |
| 584 | // presence of two intrinsic function calls in the landing pad, |
| 585 | // the IR exactly describes the layout of the output code. |
| 586 | // |
| 587 | // A principal advantage of this design is that it is completely |
| 588 | // language-agnostic; in theory, the LLVM optimizers can treat |
| 589 | // landing pads neutrally, and targets need only know how to lower |
| 590 | // the intrinsics to have a functioning exceptions system (assuming |
| 591 | // that platform exceptions follow something approximately like the |
| 592 | // GCC design). Unfortunately, landing pads cannot be combined in a |
| 593 | // language-agnostic way: given selectors A and B, there is no way |
| 594 | // to make a single landing pad which faithfully represents the |
| 595 | // semantics of propagating an exception first through A, then |
| 596 | // through B, without knowing how the personality will interpret the |
| 597 | // (lowered form of the) selectors. This means that inlining has no |
| 598 | // choice but to crudely chain invokes (i.e., to ignore invokes in |
| 599 | // the inlined function, but to turn all unwindable calls into |
| 600 | // invokes), which is only semantically valid if every unwind stops |
| 601 | // at every landing pad. |
| 602 | // |
| 603 | // Therefore, the invoke-inline hack is to guarantee that every |
| 604 | // landing pad has a catch-all. |
| 605 | const bool UseInvokeInlineHack = true; |
| 606 | |
| 607 | for (EHScopeStack::iterator ir = EHStack.begin(); ; ) { |
| 608 | assert(ir != EHStack.end() && |
| 609 | "stack requiring landing pad is nothing but non-EH scopes?"); |
| 610 | |
| 611 | // If this is a terminate scope, just use the singleton terminate |
| 612 | // landing pad. |
| 613 | if (isa<EHTerminateScope>(*ir)) |
| 614 | return getTerminateLandingPad(); |
| 615 | |
| 616 | // If this isn't an EH scope, iterate; otherwise break out. |
| 617 | if (!isNonEHScope(*ir)) break; |
| 618 | ++ir; |
| 619 | |
| 620 | // We haven't checked this scope for a cached landing pad yet. |
| 621 | if (llvm::BasicBlock *LP = ir->getCachedLandingPad()) |
| 622 | return LP; |
| 623 | } |
| 624 | |
| 625 | // Save the current IR generation state. |
| 626 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
| 627 | |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 628 | const EHPersonality &Personality = EHPersonality::get(getLangOptions()); |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 629 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 630 | // Create and configure the landing pad. |
| 631 | llvm::BasicBlock *LP = createBasicBlock("lpad"); |
| 632 | EmitBlock(LP); |
| 633 | |
| 634 | // Save the exception pointer. It's safe to use a single exception |
| 635 | // pointer per function because EH cleanups can never have nested |
| 636 | // try/catches. |
| 637 | llvm::CallInst *Exn = |
| 638 | Builder.CreateCall(CGM.getIntrinsic(llvm::Intrinsic::eh_exception), "exn"); |
| 639 | Exn->setDoesNotThrow(); |
| 640 | Builder.CreateStore(Exn, getExceptionSlot()); |
| 641 | |
| 642 | // Build the selector arguments. |
| 643 | llvm::SmallVector<llvm::Value*, 8> EHSelector; |
| 644 | EHSelector.push_back(Exn); |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 645 | EHSelector.push_back(getOpaquePersonalityFn(CGM, Personality)); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 646 | |
| 647 | // Accumulate all the handlers in scope. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 648 | llvm::DenseMap<llvm::Value*, UnwindDest> EHHandlers; |
| 649 | UnwindDest CatchAll; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 650 | bool HasEHCleanup = false; |
| 651 | bool HasEHFilter = false; |
| 652 | llvm::SmallVector<llvm::Value*, 8> EHFilters; |
| 653 | for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end(); |
| 654 | I != E; ++I) { |
| 655 | |
| 656 | switch (I->getKind()) { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 657 | case EHScope::Cleanup: |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 658 | if (!HasEHCleanup) |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 659 | HasEHCleanup = cast<EHCleanupScope>(*I).isEHCleanup(); |
John McCall | da65ea8 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 660 | // We otherwise don't care about cleanups. |
| 661 | continue; |
| 662 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 663 | case EHScope::Filter: { |
| 664 | assert(I.next() == EHStack.end() && "EH filter is not end of EH stack"); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 665 | assert(!CatchAll.isValid() && "EH filter reached after catch-all"); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 666 | |
| 667 | // Filter scopes get added to the selector in wierd ways. |
| 668 | EHFilterScope &Filter = cast<EHFilterScope>(*I); |
| 669 | HasEHFilter = true; |
| 670 | |
| 671 | // Add all the filter values which we aren't already explicitly |
| 672 | // catching. |
| 673 | for (unsigned I = 0, E = Filter.getNumFilters(); I != E; ++I) { |
| 674 | llvm::Value *FV = Filter.getFilter(I); |
| 675 | if (!EHHandlers.count(FV)) |
| 676 | EHFilters.push_back(FV); |
| 677 | } |
| 678 | goto done; |
| 679 | } |
| 680 | |
| 681 | case EHScope::Terminate: |
| 682 | // Terminate scopes are basically catch-alls. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 683 | assert(!CatchAll.isValid()); |
| 684 | CatchAll = UnwindDest(getTerminateHandler(), |
| 685 | EHStack.getEnclosingEHCleanup(I), |
| 686 | cast<EHTerminateScope>(*I).getDestIndex()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 687 | goto done; |
| 688 | |
| 689 | case EHScope::Catch: |
| 690 | break; |
| 691 | } |
| 692 | |
| 693 | EHCatchScope &Catch = cast<EHCatchScope>(*I); |
| 694 | for (unsigned HI = 0, HE = Catch.getNumHandlers(); HI != HE; ++HI) { |
| 695 | EHCatchScope::Handler Handler = Catch.getHandler(HI); |
| 696 | |
| 697 | // Catch-all. We should only have one of these per catch. |
| 698 | if (!Handler.Type) { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 699 | assert(!CatchAll.isValid()); |
| 700 | CatchAll = UnwindDest(Handler.Block, |
| 701 | EHStack.getEnclosingEHCleanup(I), |
| 702 | Handler.Index); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 703 | continue; |
| 704 | } |
| 705 | |
| 706 | // Check whether we already have a handler for this type. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 707 | UnwindDest &Dest = EHHandlers[Handler.Type]; |
| 708 | if (Dest.isValid()) continue; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 709 | |
| 710 | EHSelector.push_back(Handler.Type); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 711 | Dest = UnwindDest(Handler.Block, |
| 712 | EHStack.getEnclosingEHCleanup(I), |
| 713 | Handler.Index); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 714 | } |
| 715 | |
| 716 | // Stop if we found a catch-all. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 717 | if (CatchAll.isValid()) break; |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 718 | } |
| 719 | |
| 720 | done: |
| 721 | unsigned LastToEmitInLoop = EHSelector.size(); |
| 722 | |
| 723 | // If we have a catch-all, add null to the selector. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 724 | if (CatchAll.isValid()) { |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 725 | EHSelector.push_back(getCatchAllValue(*this)); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 726 | |
| 727 | // If we have an EH filter, we need to add those handlers in the |
| 728 | // right place in the selector, which is to say, at the end. |
| 729 | } else if (HasEHFilter) { |
| 730 | // Create a filter expression: an integer constant saying how many |
| 731 | // filters there are (+1 to avoid ambiguity with 0 for cleanup), |
| 732 | // followed by the filter types. The personality routine only |
| 733 | // lands here if the filter doesn't match. |
| 734 | EHSelector.push_back(llvm::ConstantInt::get(Builder.getInt32Ty(), |
| 735 | EHFilters.size() + 1)); |
| 736 | EHSelector.append(EHFilters.begin(), EHFilters.end()); |
| 737 | |
| 738 | // Also check whether we need a cleanup. |
| 739 | if (UseInvokeInlineHack || HasEHCleanup) |
| 740 | EHSelector.push_back(UseInvokeInlineHack |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 741 | ? getCatchAllValue(*this) |
| 742 | : getCleanupValue(*this)); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 743 | |
| 744 | // Otherwise, signal that we at least have cleanups. |
| 745 | } else if (UseInvokeInlineHack || HasEHCleanup) { |
| 746 | EHSelector.push_back(UseInvokeInlineHack |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 747 | ? getCatchAllValue(*this) |
| 748 | : getCleanupValue(*this)); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 749 | } else { |
| 750 | assert(LastToEmitInLoop > 2); |
| 751 | LastToEmitInLoop--; |
| 752 | } |
| 753 | |
| 754 | assert(EHSelector.size() >= 3 && "selector call has only two arguments!"); |
| 755 | |
| 756 | // Tell the backend how to generate the landing pad. |
| 757 | llvm::CallInst *Selection = |
| 758 | Builder.CreateCall(CGM.getIntrinsic(llvm::Intrinsic::eh_selector), |
| 759 | EHSelector.begin(), EHSelector.end(), "eh.selector"); |
| 760 | Selection->setDoesNotThrow(); |
| 761 | |
| 762 | // Select the right handler. |
| 763 | llvm::Value *llvm_eh_typeid_for = |
| 764 | CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for); |
| 765 | |
| 766 | // The results of llvm_eh_typeid_for aren't reliable --- at least |
| 767 | // not locally --- so we basically have to do this as an 'if' chain. |
| 768 | // We walk through the first N-1 catch clauses, testing and chaining, |
| 769 | // and then fall into the final clause (which is either a cleanup, a |
| 770 | // filter (possibly with a cleanup), a catch-all, or another catch). |
| 771 | for (unsigned I = 2; I != LastToEmitInLoop; ++I) { |
| 772 | llvm::Value *Type = EHSelector[I]; |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 773 | UnwindDest Dest = EHHandlers[Type]; |
| 774 | assert(Dest.isValid() && "no handler entry for value in selector?"); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 775 | |
| 776 | // Figure out where to branch on a match. As a debug code-size |
| 777 | // optimization, if the scope depth matches the innermost cleanup, |
| 778 | // we branch directly to the catch handler. |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 779 | llvm::BasicBlock *Match = Dest.getBlock(); |
| 780 | bool MatchNeedsCleanup = |
| 781 | Dest.getScopeDepth() != EHStack.getInnermostEHCleanup(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 782 | if (MatchNeedsCleanup) |
| 783 | Match = createBasicBlock("eh.match"); |
| 784 | |
| 785 | llvm::BasicBlock *Next = createBasicBlock("eh.next"); |
| 786 | |
| 787 | // Check whether the exception matches. |
| 788 | llvm::CallInst *Id |
| 789 | = Builder.CreateCall(llvm_eh_typeid_for, |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 790 | Builder.CreateBitCast(Type, Int8PtrTy)); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 791 | Id->setDoesNotThrow(); |
| 792 | Builder.CreateCondBr(Builder.CreateICmpEQ(Selection, Id), |
| 793 | Match, Next); |
| 794 | |
| 795 | // Emit match code if necessary. |
| 796 | if (MatchNeedsCleanup) { |
| 797 | EmitBlock(Match); |
| 798 | EmitBranchThroughEHCleanup(Dest); |
| 799 | } |
| 800 | |
| 801 | // Continue to the next match. |
| 802 | EmitBlock(Next); |
| 803 | } |
| 804 | |
| 805 | // Emit the final case in the selector. |
| 806 | // This might be a catch-all.... |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 807 | if (CatchAll.isValid()) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 808 | assert(isa<llvm::ConstantPointerNull>(EHSelector.back())); |
| 809 | EmitBranchThroughEHCleanup(CatchAll); |
| 810 | |
| 811 | // ...or an EH filter... |
| 812 | } else if (HasEHFilter) { |
| 813 | llvm::Value *SavedSelection = Selection; |
| 814 | |
| 815 | // First, unwind out to the outermost scope if necessary. |
| 816 | if (EHStack.hasEHCleanups()) { |
| 817 | // The end here might not dominate the beginning, so we might need to |
| 818 | // save the selector if we need it. |
| 819 | llvm::AllocaInst *SelectorVar = 0; |
| 820 | if (HasEHCleanup) { |
| 821 | SelectorVar = CreateTempAlloca(Builder.getInt32Ty(), "selector.var"); |
| 822 | Builder.CreateStore(Selection, SelectorVar); |
| 823 | } |
| 824 | |
| 825 | llvm::BasicBlock *CleanupContBB = createBasicBlock("ehspec.cleanup.cont"); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 826 | EmitBranchThroughEHCleanup(UnwindDest(CleanupContBB, EHStack.stable_end(), |
| 827 | EHStack.getNextEHDestIndex())); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 828 | EmitBlock(CleanupContBB); |
| 829 | |
| 830 | if (HasEHCleanup) |
| 831 | SavedSelection = Builder.CreateLoad(SelectorVar, "ehspec.saved-selector"); |
| 832 | } |
| 833 | |
| 834 | // If there was a cleanup, we'll need to actually check whether we |
| 835 | // landed here because the filter triggered. |
| 836 | if (UseInvokeInlineHack || HasEHCleanup) { |
| 837 | llvm::BasicBlock *RethrowBB = createBasicBlock("cleanup"); |
| 838 | llvm::BasicBlock *UnexpectedBB = createBasicBlock("ehspec.unexpected"); |
| 839 | |
| 840 | llvm::Constant *Zero = llvm::ConstantInt::get(Builder.getInt32Ty(), 0); |
| 841 | llvm::Value *FailsFilter = |
| 842 | Builder.CreateICmpSLT(SavedSelection, Zero, "ehspec.fails"); |
| 843 | Builder.CreateCondBr(FailsFilter, UnexpectedBB, RethrowBB); |
| 844 | |
| 845 | // The rethrow block is where we land if this was a cleanup. |
| 846 | // TODO: can this be _Unwind_Resume if the InvokeInlineHack is off? |
| 847 | EmitBlock(RethrowBB); |
| 848 | Builder.CreateCall(getUnwindResumeOrRethrowFn(), |
| 849 | Builder.CreateLoad(getExceptionSlot())) |
| 850 | ->setDoesNotReturn(); |
| 851 | Builder.CreateUnreachable(); |
| 852 | |
| 853 | EmitBlock(UnexpectedBB); |
| 854 | } |
| 855 | |
| 856 | // Call __cxa_call_unexpected. This doesn't need to be an invoke |
| 857 | // because __cxa_call_unexpected magically filters exceptions |
| 858 | // according to the last landing pad the exception was thrown |
| 859 | // into. Seriously. |
| 860 | Builder.CreateCall(getUnexpectedFn(*this), |
| 861 | Builder.CreateLoad(getExceptionSlot())) |
| 862 | ->setDoesNotReturn(); |
| 863 | Builder.CreateUnreachable(); |
| 864 | |
| 865 | // ...or a normal catch handler... |
| 866 | } else if (!UseInvokeInlineHack && !HasEHCleanup) { |
| 867 | llvm::Value *Type = EHSelector.back(); |
| 868 | EmitBranchThroughEHCleanup(EHHandlers[Type]); |
| 869 | |
| 870 | // ...or a cleanup. |
| 871 | } else { |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 872 | EmitBranchThroughEHCleanup(getRethrowDest()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 873 | } |
| 874 | |
| 875 | // Restore the old IR generation state. |
| 876 | Builder.restoreIP(SavedIP); |
| 877 | |
| 878 | return LP; |
| 879 | } |
| 880 | |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 881 | namespace { |
| 882 | /// A cleanup to call __cxa_end_catch. In many cases, the caught |
| 883 | /// exception type lets us state definitively that the thrown exception |
| 884 | /// type does not have a destructor. In particular: |
| 885 | /// - Catch-alls tell us nothing, so we have to conservatively |
| 886 | /// assume that the thrown exception might have a destructor. |
| 887 | /// - Catches by reference behave according to their base types. |
| 888 | /// - Catches of non-record types will only trigger for exceptions |
| 889 | /// of non-record types, which never have destructors. |
| 890 | /// - Catches of record types can trigger for arbitrary subclasses |
| 891 | /// of the caught type, so we have to assume the actual thrown |
| 892 | /// exception type might have a throwing destructor, even if the |
| 893 | /// caught type's destructor is trivial or nothrow. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 894 | struct CallEndCatch : EHScopeStack::Cleanup { |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 895 | CallEndCatch(bool MightThrow) : MightThrow(MightThrow) {} |
| 896 | bool MightThrow; |
| 897 | |
| 898 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 899 | if (!MightThrow) { |
| 900 | CGF.Builder.CreateCall(getEndCatchFn(CGF))->setDoesNotThrow(); |
| 901 | return; |
| 902 | } |
| 903 | |
| 904 | CGF.EmitCallOrInvoke(getEndCatchFn(CGF), 0, 0); |
| 905 | } |
| 906 | }; |
| 907 | } |
| 908 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 909 | /// Emits a call to __cxa_begin_catch and enters a cleanup to call |
| 910 | /// __cxa_end_catch. |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 911 | /// |
| 912 | /// \param EndMightThrow - true if __cxa_end_catch might throw |
| 913 | static llvm::Value *CallBeginCatch(CodeGenFunction &CGF, |
| 914 | llvm::Value *Exn, |
| 915 | bool EndMightThrow) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 916 | llvm::CallInst *Call = CGF.Builder.CreateCall(getBeginCatchFn(CGF), Exn); |
| 917 | Call->setDoesNotThrow(); |
| 918 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 919 | CGF.EHStack.pushCleanup<CallEndCatch>(NormalAndEHCleanup, EndMightThrow); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 920 | |
| 921 | return Call; |
| 922 | } |
| 923 | |
| 924 | /// A "special initializer" callback for initializing a catch |
| 925 | /// parameter during catch initialization. |
| 926 | static void InitCatchParam(CodeGenFunction &CGF, |
| 927 | const VarDecl &CatchParam, |
| 928 | llvm::Value *ParamAddr) { |
| 929 | // Load the exception from where the landing pad saved it. |
| 930 | llvm::Value *Exn = CGF.Builder.CreateLoad(CGF.getExceptionSlot(), "exn"); |
| 931 | |
| 932 | CanQualType CatchType = |
| 933 | CGF.CGM.getContext().getCanonicalType(CatchParam.getType()); |
| 934 | const llvm::Type *LLVMCatchTy = CGF.ConvertTypeForMem(CatchType); |
| 935 | |
| 936 | // If we're catching by reference, we can just cast the object |
| 937 | // pointer to the appropriate pointer. |
| 938 | if (isa<ReferenceType>(CatchType)) { |
John McCall | 204b075 | 2010-07-20 22:17:55 +0000 | [diff] [blame] | 939 | QualType CaughtType = cast<ReferenceType>(CatchType)->getPointeeType(); |
| 940 | bool EndCatchMightThrow = CaughtType->isRecordType(); |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 941 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 942 | // __cxa_begin_catch returns the adjusted object pointer. |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 943 | llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow); |
John McCall | 204b075 | 2010-07-20 22:17:55 +0000 | [diff] [blame] | 944 | |
| 945 | // We have no way to tell the personality function that we're |
| 946 | // catching by reference, so if we're catching a pointer, |
| 947 | // __cxa_begin_catch will actually return that pointer by value. |
| 948 | if (const PointerType *PT = dyn_cast<PointerType>(CaughtType)) { |
| 949 | QualType PointeeType = PT->getPointeeType(); |
| 950 | |
| 951 | // When catching by reference, generally we should just ignore |
| 952 | // this by-value pointer and use the exception object instead. |
| 953 | if (!PointeeType->isRecordType()) { |
| 954 | |
| 955 | // Exn points to the struct _Unwind_Exception header, which |
| 956 | // we have to skip past in order to reach the exception data. |
| 957 | unsigned HeaderSize = |
| 958 | CGF.CGM.getTargetCodeGenInfo().getSizeOfUnwindException(); |
| 959 | AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize); |
| 960 | |
| 961 | // However, if we're catching a pointer-to-record type that won't |
| 962 | // work, because the personality function might have adjusted |
| 963 | // the pointer. There's actually no way for us to fully satisfy |
| 964 | // the language/ABI contract here: we can't use Exn because it |
| 965 | // might have the wrong adjustment, but we can't use the by-value |
| 966 | // pointer because it's off by a level of abstraction. |
| 967 | // |
| 968 | // The current solution is to dump the adjusted pointer into an |
| 969 | // alloca, which breaks language semantics (because changing the |
| 970 | // pointer doesn't change the exception) but at least works. |
| 971 | // The better solution would be to filter out non-exact matches |
| 972 | // and rethrow them, but this is tricky because the rethrow |
| 973 | // really needs to be catchable by other sites at this landing |
| 974 | // pad. The best solution is to fix the personality function. |
| 975 | } else { |
| 976 | // Pull the pointer for the reference type off. |
| 977 | const llvm::Type *PtrTy = |
| 978 | cast<llvm::PointerType>(LLVMCatchTy)->getElementType(); |
| 979 | |
| 980 | // Create the temporary and write the adjusted pointer into it. |
| 981 | llvm::Value *ExnPtrTmp = CGF.CreateTempAlloca(PtrTy, "exn.byref.tmp"); |
| 982 | llvm::Value *Casted = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy); |
| 983 | CGF.Builder.CreateStore(Casted, ExnPtrTmp); |
| 984 | |
| 985 | // Bind the reference to the temporary. |
| 986 | AdjustedExn = ExnPtrTmp; |
| 987 | } |
| 988 | } |
| 989 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 990 | llvm::Value *ExnCast = |
| 991 | CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.byref"); |
| 992 | CGF.Builder.CreateStore(ExnCast, ParamAddr); |
| 993 | return; |
| 994 | } |
| 995 | |
| 996 | // Non-aggregates (plus complexes). |
| 997 | bool IsComplex = false; |
| 998 | if (!CGF.hasAggregateLLVMType(CatchType) || |
| 999 | (IsComplex = CatchType->isAnyComplexType())) { |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 1000 | llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1001 | |
| 1002 | // If the catch type is a pointer type, __cxa_begin_catch returns |
| 1003 | // the pointer by value. |
| 1004 | if (CatchType->hasPointerRepresentation()) { |
| 1005 | llvm::Value *CastExn = |
| 1006 | CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.casted"); |
| 1007 | CGF.Builder.CreateStore(CastExn, ParamAddr); |
| 1008 | return; |
| 1009 | } |
| 1010 | |
| 1011 | // Otherwise, it returns a pointer into the exception object. |
| 1012 | |
| 1013 | const llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok |
| 1014 | llvm::Value *Cast = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy); |
| 1015 | |
| 1016 | if (IsComplex) { |
| 1017 | CGF.StoreComplexToAddr(CGF.LoadComplexFromAddr(Cast, /*volatile*/ false), |
| 1018 | ParamAddr, /*volatile*/ false); |
| 1019 | } else { |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 1020 | unsigned Alignment = |
| 1021 | CGF.getContext().getDeclAlign(&CatchParam).getQuantity(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1022 | llvm::Value *ExnLoad = CGF.Builder.CreateLoad(Cast, "exn.scalar"); |
Daniel Dunbar | 91a16fa | 2010-08-21 02:24:36 +0000 | [diff] [blame] | 1023 | CGF.EmitStoreOfScalar(ExnLoad, ParamAddr, /*volatile*/ false, Alignment, |
| 1024 | CatchType); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1025 | } |
| 1026 | return; |
| 1027 | } |
| 1028 | |
John McCall | acff696 | 2011-02-16 08:39:19 +0000 | [diff] [blame] | 1029 | assert(isa<RecordType>(CatchType) && "unexpected catch type!"); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1030 | |
| 1031 | const llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok |
| 1032 | |
John McCall | acff696 | 2011-02-16 08:39:19 +0000 | [diff] [blame] | 1033 | // Check for a copy expression. If we don't have a copy expression, |
| 1034 | // that means a trivial copy is okay. |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1035 | const Expr *copyExpr = CatchParam.getInit(); |
| 1036 | if (!copyExpr) { |
John McCall | acff696 | 2011-02-16 08:39:19 +0000 | [diff] [blame] | 1037 | llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true); |
| 1038 | llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy); |
| 1039 | CGF.EmitAggregateCopy(ParamAddr, adjustedExn, CatchType); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1040 | return; |
| 1041 | } |
| 1042 | |
| 1043 | // We have to call __cxa_get_exception_ptr to get the adjusted |
| 1044 | // pointer before copying. |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1045 | llvm::CallInst *rawAdjustedExn = |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1046 | CGF.Builder.CreateCall(getGetExceptionPtrFn(CGF), Exn); |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1047 | rawAdjustedExn->setDoesNotThrow(); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1048 | |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1049 | // Cast that to the appropriate type. |
| 1050 | llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1051 | |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1052 | // The copy expression is defined in terms of an OpaqueValueExpr. |
| 1053 | // Find it and map it to the adjusted expression. |
| 1054 | CodeGenFunction::OpaqueValueMapping |
John McCall | 56ca35d | 2011-02-17 10:25:35 +0000 | [diff] [blame] | 1055 | opaque(CGF, OpaqueValueExpr::findInCopyConstruct(copyExpr), |
| 1056 | CGF.MakeAddrLValue(adjustedExn, CatchParam.getType())); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1057 | |
| 1058 | // Call the copy ctor in a terminate scope. |
| 1059 | CGF.EHStack.pushTerminate(); |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1060 | |
| 1061 | // Perform the copy construction. |
| 1062 | CGF.EmitAggExpr(copyExpr, AggValueSlot::forAddr(ParamAddr, false, false)); |
| 1063 | |
| 1064 | // Leave the terminate scope. |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1065 | CGF.EHStack.popTerminate(); |
| 1066 | |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1067 | // Undo the opaque value mapping. |
| 1068 | opaque.pop(); |
| 1069 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1070 | // Finally we can call __cxa_begin_catch. |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 1071 | CallBeginCatch(CGF, Exn, true); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1072 | } |
| 1073 | |
| 1074 | /// Begins a catch statement by initializing the catch variable and |
| 1075 | /// calling __cxa_begin_catch. |
John McCall | e996ffd | 2011-02-16 08:02:54 +0000 | [diff] [blame] | 1076 | static void BeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *S) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1077 | // We have to be very careful with the ordering of cleanups here: |
| 1078 | // C++ [except.throw]p4: |
| 1079 | // The destruction [of the exception temporary] occurs |
| 1080 | // immediately after the destruction of the object declared in |
| 1081 | // the exception-declaration in the handler. |
| 1082 | // |
| 1083 | // So the precise ordering is: |
| 1084 | // 1. Construct catch variable. |
| 1085 | // 2. __cxa_begin_catch |
| 1086 | // 3. Enter __cxa_end_catch cleanup |
| 1087 | // 4. Enter dtor cleanup |
| 1088 | // |
| 1089 | // We do this by initializing the exception variable with a |
| 1090 | // "special initializer", InitCatchParam. Delegation sequence: |
| 1091 | // - ExitCXXTryStmt opens a RunCleanupsScope |
| 1092 | // - EmitLocalBlockVarDecl creates the variable and debug info |
| 1093 | // - InitCatchParam initializes the variable from the exception |
| 1094 | // - CallBeginCatch calls __cxa_begin_catch |
| 1095 | // - CallBeginCatch enters the __cxa_end_catch cleanup |
| 1096 | // - EmitLocalBlockVarDecl enters the variable destructor cleanup |
| 1097 | // - EmitCXXTryStmt emits the code for the catch body |
| 1098 | // - EmitCXXTryStmt close the RunCleanupsScope |
| 1099 | |
| 1100 | VarDecl *CatchParam = S->getExceptionDecl(); |
| 1101 | if (!CatchParam) { |
| 1102 | llvm::Value *Exn = CGF.Builder.CreateLoad(CGF.getExceptionSlot(), "exn"); |
John McCall | 8e3f861 | 2010-07-13 22:12:14 +0000 | [diff] [blame] | 1103 | CallBeginCatch(CGF, Exn, true); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1104 | return; |
| 1105 | } |
| 1106 | |
| 1107 | // Emit the local. |
John McCall | b6bbcc9 | 2010-10-15 04:57:14 +0000 | [diff] [blame] | 1108 | CGF.EmitAutoVarDecl(*CatchParam, &InitCatchParam); |
John McCall | 9fc6a77 | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 1109 | } |
| 1110 | |
John McCall | fcd5c0c | 2010-07-13 22:24:23 +0000 | [diff] [blame] | 1111 | namespace { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1112 | struct CallRethrow : EHScopeStack::Cleanup { |
John McCall | fcd5c0c | 2010-07-13 22:24:23 +0000 | [diff] [blame] | 1113 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 1114 | CGF.EmitCallOrInvoke(getReThrowFn(CGF), 0, 0); |
| 1115 | } |
| 1116 | }; |
| 1117 | } |
| 1118 | |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 1119 | void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) { |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1120 | unsigned NumHandlers = S.getNumHandlers(); |
| 1121 | EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin()); |
| 1122 | assert(CatchScope.getNumHandlers() == NumHandlers); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1123 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1124 | // Copy the handler blocks off before we pop the EH stack. Emitting |
| 1125 | // the handlers might scribble on this memory. |
| 1126 | llvm::SmallVector<EHCatchScope::Handler, 8> Handlers(NumHandlers); |
| 1127 | memcpy(Handlers.data(), CatchScope.begin(), |
| 1128 | NumHandlers * sizeof(EHCatchScope::Handler)); |
| 1129 | EHStack.popCatch(); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1130 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1131 | // The fall-through block. |
| 1132 | llvm::BasicBlock *ContBB = createBasicBlock("try.cont"); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1133 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1134 | // We just emitted the body of the try; jump to the continue block. |
| 1135 | if (HaveInsertPoint()) |
| 1136 | Builder.CreateBr(ContBB); |
Mike Stump | 639787c | 2009-12-02 19:53:57 +0000 | [diff] [blame] | 1137 | |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 1138 | // Determine if we need an implicit rethrow for all these catch handlers. |
| 1139 | bool ImplicitRethrow = false; |
| 1140 | if (IsFnTryBlock) |
| 1141 | ImplicitRethrow = isa<CXXDestructorDecl>(CurCodeDecl) || |
| 1142 | isa<CXXConstructorDecl>(CurCodeDecl); |
| 1143 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1144 | for (unsigned I = 0; I != NumHandlers; ++I) { |
| 1145 | llvm::BasicBlock *CatchBlock = Handlers[I].Block; |
| 1146 | EmitBlock(CatchBlock); |
Mike Stump | 8755ec3 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 1147 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1148 | // Catch the exception if this isn't a catch-all. |
| 1149 | const CXXCatchStmt *C = S.getHandler(I); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1150 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1151 | // Enter a cleanup scope, including the catch variable and the |
| 1152 | // end-catch. |
| 1153 | RunCleanupsScope CatchScope(*this); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1154 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1155 | // Initialize the catch variable and set up the cleanups. |
| 1156 | BeginCatch(*this, C); |
| 1157 | |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 1158 | // If there's an implicit rethrow, push a normal "cleanup" to call |
John McCall | fcd5c0c | 2010-07-13 22:24:23 +0000 | [diff] [blame] | 1159 | // _cxa_rethrow. This needs to happen before __cxa_end_catch is |
| 1160 | // called, and so it is pushed after BeginCatch. |
| 1161 | if (ImplicitRethrow) |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1162 | EHStack.pushCleanup<CallRethrow>(NormalCleanup); |
John McCall | 59a7000 | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 1163 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1164 | // Perform the body of the catch. |
| 1165 | EmitStmt(C->getHandlerBlock()); |
| 1166 | |
| 1167 | // Fall out through the catch cleanups. |
| 1168 | CatchScope.ForceCleanup(); |
| 1169 | |
| 1170 | // Branch out of the try. |
| 1171 | if (HaveInsertPoint()) |
| 1172 | Builder.CreateBr(ContBB); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1173 | } |
| 1174 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1175 | EmitBlock(ContBB); |
Mike Stump | 2bf701e | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 1176 | } |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1177 | |
John McCall | 55b20fc | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 1178 | namespace { |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1179 | struct CallEndCatchForFinally : EHScopeStack::Cleanup { |
John McCall | 55b20fc | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 1180 | llvm::Value *ForEHVar; |
| 1181 | llvm::Value *EndCatchFn; |
| 1182 | CallEndCatchForFinally(llvm::Value *ForEHVar, llvm::Value *EndCatchFn) |
| 1183 | : ForEHVar(ForEHVar), EndCatchFn(EndCatchFn) {} |
| 1184 | |
| 1185 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 1186 | llvm::BasicBlock *EndCatchBB = CGF.createBasicBlock("finally.endcatch"); |
| 1187 | llvm::BasicBlock *CleanupContBB = |
| 1188 | CGF.createBasicBlock("finally.cleanup.cont"); |
| 1189 | |
| 1190 | llvm::Value *ShouldEndCatch = |
| 1191 | CGF.Builder.CreateLoad(ForEHVar, "finally.endcatch"); |
| 1192 | CGF.Builder.CreateCondBr(ShouldEndCatch, EndCatchBB, CleanupContBB); |
| 1193 | CGF.EmitBlock(EndCatchBB); |
| 1194 | CGF.EmitCallOrInvoke(EndCatchFn, 0, 0); // catch-all, so might throw |
| 1195 | CGF.EmitBlock(CleanupContBB); |
| 1196 | } |
| 1197 | }; |
John McCall | 7719971 | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1198 | |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1199 | struct PerformFinally : EHScopeStack::Cleanup { |
John McCall | 7719971 | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1200 | const Stmt *Body; |
| 1201 | llvm::Value *ForEHVar; |
| 1202 | llvm::Value *EndCatchFn; |
| 1203 | llvm::Value *RethrowFn; |
| 1204 | llvm::Value *SavedExnVar; |
| 1205 | |
| 1206 | PerformFinally(const Stmt *Body, llvm::Value *ForEHVar, |
| 1207 | llvm::Value *EndCatchFn, |
| 1208 | llvm::Value *RethrowFn, llvm::Value *SavedExnVar) |
| 1209 | : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn), |
| 1210 | RethrowFn(RethrowFn), SavedExnVar(SavedExnVar) {} |
| 1211 | |
| 1212 | void Emit(CodeGenFunction &CGF, bool IsForEH) { |
| 1213 | // Enter a cleanup to call the end-catch function if one was provided. |
| 1214 | if (EndCatchFn) |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1215 | CGF.EHStack.pushCleanup<CallEndCatchForFinally>(NormalAndEHCleanup, |
| 1216 | ForEHVar, EndCatchFn); |
John McCall | 7719971 | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1217 | |
John McCall | d96a8e7 | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 1218 | // Save the current cleanup destination in case there are |
| 1219 | // cleanups in the finally block. |
| 1220 | llvm::Value *SavedCleanupDest = |
| 1221 | CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot(), |
| 1222 | "cleanup.dest.saved"); |
| 1223 | |
John McCall | 7719971 | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1224 | // Emit the finally block. |
| 1225 | CGF.EmitStmt(Body); |
| 1226 | |
| 1227 | // If the end of the finally is reachable, check whether this was |
| 1228 | // for EH. If so, rethrow. |
| 1229 | if (CGF.HaveInsertPoint()) { |
| 1230 | llvm::BasicBlock *RethrowBB = CGF.createBasicBlock("finally.rethrow"); |
| 1231 | llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont"); |
| 1232 | |
| 1233 | llvm::Value *ShouldRethrow = |
| 1234 | CGF.Builder.CreateLoad(ForEHVar, "finally.shouldthrow"); |
| 1235 | CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB); |
| 1236 | |
| 1237 | CGF.EmitBlock(RethrowBB); |
| 1238 | if (SavedExnVar) { |
| 1239 | llvm::Value *Args[] = { CGF.Builder.CreateLoad(SavedExnVar) }; |
| 1240 | CGF.EmitCallOrInvoke(RethrowFn, Args, Args+1); |
| 1241 | } else { |
| 1242 | CGF.EmitCallOrInvoke(RethrowFn, 0, 0); |
| 1243 | } |
| 1244 | CGF.Builder.CreateUnreachable(); |
| 1245 | |
| 1246 | CGF.EmitBlock(ContBB); |
John McCall | d96a8e7 | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 1247 | |
| 1248 | // Restore the cleanup destination. |
| 1249 | CGF.Builder.CreateStore(SavedCleanupDest, |
| 1250 | CGF.getNormalCleanupDestSlot()); |
John McCall | 7719971 | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1251 | } |
| 1252 | |
| 1253 | // Leave the end-catch cleanup. As an optimization, pretend that |
| 1254 | // the fallthrough path was inaccessible; we've dynamically proven |
| 1255 | // that we're not in the EH case along that path. |
| 1256 | if (EndCatchFn) { |
| 1257 | CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); |
| 1258 | CGF.PopCleanupBlock(); |
| 1259 | CGF.Builder.restoreIP(SavedIP); |
| 1260 | } |
| 1261 | |
| 1262 | // Now make sure we actually have an insertion point or the |
| 1263 | // cleanup gods will hate us. |
| 1264 | CGF.EnsureInsertPoint(); |
| 1265 | } |
| 1266 | }; |
John McCall | 55b20fc | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 1267 | } |
| 1268 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1269 | /// Enters a finally block for an implementation using zero-cost |
| 1270 | /// exceptions. This is mostly general, but hard-codes some |
| 1271 | /// language/ABI-specific behavior in the catch-all sections. |
| 1272 | CodeGenFunction::FinallyInfo |
| 1273 | CodeGenFunction::EnterFinallyBlock(const Stmt *Body, |
| 1274 | llvm::Constant *BeginCatchFn, |
| 1275 | llvm::Constant *EndCatchFn, |
| 1276 | llvm::Constant *RethrowFn) { |
| 1277 | assert((BeginCatchFn != 0) == (EndCatchFn != 0) && |
| 1278 | "begin/end catch functions not paired"); |
| 1279 | assert(RethrowFn && "rethrow function is required"); |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1280 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1281 | // The rethrow function has one of the following two types: |
| 1282 | // void (*)() |
| 1283 | // void (*)(void*) |
| 1284 | // In the latter case we need to pass it the exception object. |
| 1285 | // But we can't use the exception slot because the @finally might |
| 1286 | // have a landing pad (which would overwrite the exception slot). |
| 1287 | const llvm::FunctionType *RethrowFnTy = |
| 1288 | cast<llvm::FunctionType>( |
| 1289 | cast<llvm::PointerType>(RethrowFn->getType()) |
| 1290 | ->getElementType()); |
| 1291 | llvm::Value *SavedExnVar = 0; |
| 1292 | if (RethrowFnTy->getNumParams()) |
| 1293 | SavedExnVar = CreateTempAlloca(Builder.getInt8PtrTy(), "finally.exn"); |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1294 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1295 | // A finally block is a statement which must be executed on any edge |
| 1296 | // out of a given scope. Unlike a cleanup, the finally block may |
| 1297 | // contain arbitrary control flow leading out of itself. In |
| 1298 | // addition, finally blocks should always be executed, even if there |
| 1299 | // are no catch handlers higher on the stack. Therefore, we |
| 1300 | // surround the protected scope with a combination of a normal |
| 1301 | // cleanup (to catch attempts to break out of the block via normal |
| 1302 | // control flow) and an EH catch-all (semantically "outside" any try |
| 1303 | // statement to which the finally block might have been attached). |
| 1304 | // The finally block itself is generated in the context of a cleanup |
| 1305 | // which conditionally leaves the catch-all. |
John McCall | 3d3ec1c | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1306 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1307 | FinallyInfo Info; |
John McCall | 3d3ec1c | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1308 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1309 | // Jump destination for performing the finally block on an exception |
| 1310 | // edge. We'll never actually reach this block, so unreachable is |
| 1311 | // fine. |
| 1312 | JumpDest RethrowDest = getJumpDestInCurrentScope(getUnreachableBlock()); |
John McCall | 3d3ec1c | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1313 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1314 | // Whether the finally block is being executed for EH purposes. |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 1315 | llvm::AllocaInst *ForEHVar = CreateTempAlloca(Builder.getInt1Ty(), |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1316 | "finally.for-eh"); |
| 1317 | InitTempAlloca(ForEHVar, llvm::ConstantInt::getFalse(getLLVMContext())); |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1318 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1319 | // Enter a normal cleanup which will perform the @finally block. |
John McCall | 1f0fca5 | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1320 | EHStack.pushCleanup<PerformFinally>(NormalCleanup, Body, |
| 1321 | ForEHVar, EndCatchFn, |
| 1322 | RethrowFn, SavedExnVar); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1323 | |
| 1324 | // Enter a catch-all scope. |
| 1325 | llvm::BasicBlock *CatchAllBB = createBasicBlock("finally.catchall"); |
| 1326 | CGBuilderTy::InsertPoint SavedIP = Builder.saveIP(); |
| 1327 | Builder.SetInsertPoint(CatchAllBB); |
| 1328 | |
| 1329 | // If there's a begin-catch function, call it. |
| 1330 | if (BeginCatchFn) { |
| 1331 | Builder.CreateCall(BeginCatchFn, Builder.CreateLoad(getExceptionSlot())) |
| 1332 | ->setDoesNotThrow(); |
| 1333 | } |
| 1334 | |
| 1335 | // If we need to remember the exception pointer to rethrow later, do so. |
| 1336 | if (SavedExnVar) { |
| 1337 | llvm::Value *SavedExn = Builder.CreateLoad(getExceptionSlot()); |
| 1338 | Builder.CreateStore(SavedExn, SavedExnVar); |
| 1339 | } |
| 1340 | |
| 1341 | // Tell the finally block that we're in EH. |
| 1342 | Builder.CreateStore(llvm::ConstantInt::getTrue(getLLVMContext()), ForEHVar); |
| 1343 | |
| 1344 | // Thread a jump through the finally cleanup. |
| 1345 | EmitBranchThroughCleanup(RethrowDest); |
| 1346 | |
| 1347 | Builder.restoreIP(SavedIP); |
| 1348 | |
| 1349 | EHCatchScope *CatchScope = EHStack.pushCatch(1); |
| 1350 | CatchScope->setCatchAllHandler(0, CatchAllBB); |
| 1351 | |
| 1352 | return Info; |
| 1353 | } |
| 1354 | |
| 1355 | void CodeGenFunction::ExitFinallyBlock(FinallyInfo &Info) { |
| 1356 | // Leave the finally catch-all. |
| 1357 | EHCatchScope &Catch = cast<EHCatchScope>(*EHStack.begin()); |
| 1358 | llvm::BasicBlock *CatchAllBB = Catch.getHandler(0).Block; |
| 1359 | EHStack.popCatch(); |
| 1360 | |
| 1361 | // And leave the normal cleanup. |
| 1362 | PopCleanupBlock(); |
| 1363 | |
| 1364 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
| 1365 | EmitBlock(CatchAllBB, true); |
| 1366 | |
| 1367 | Builder.restoreIP(SavedIP); |
| 1368 | } |
| 1369 | |
| 1370 | llvm::BasicBlock *CodeGenFunction::getTerminateLandingPad() { |
| 1371 | if (TerminateLandingPad) |
| 1372 | return TerminateLandingPad; |
| 1373 | |
| 1374 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
| 1375 | |
| 1376 | // This will get inserted at the end of the function. |
| 1377 | TerminateLandingPad = createBasicBlock("terminate.lpad"); |
| 1378 | Builder.SetInsertPoint(TerminateLandingPad); |
| 1379 | |
| 1380 | // Tell the backend that this is a landing pad. |
| 1381 | llvm::CallInst *Exn = |
| 1382 | Builder.CreateCall(CGM.getIntrinsic(llvm::Intrinsic::eh_exception), "exn"); |
| 1383 | Exn->setDoesNotThrow(); |
John McCall | 8262b6a | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 1384 | |
| 1385 | const EHPersonality &Personality = EHPersonality::get(CGM.getLangOptions()); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1386 | |
| 1387 | // Tell the backend what the exception table should be: |
| 1388 | // nothing but a catch-all. |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 1389 | llvm::Value *Args[3] = { Exn, getOpaquePersonalityFn(CGM, Personality), |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1390 | getCatchAllValue(*this) }; |
| 1391 | Builder.CreateCall(CGM.getIntrinsic(llvm::Intrinsic::eh_selector), |
| 1392 | Args, Args+3, "eh.selector") |
| 1393 | ->setDoesNotThrow(); |
| 1394 | |
| 1395 | llvm::CallInst *TerminateCall = Builder.CreateCall(getTerminateFn(*this)); |
| 1396 | TerminateCall->setDoesNotReturn(); |
| 1397 | TerminateCall->setDoesNotThrow(); |
John McCall | d16c2cf | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 1398 | Builder.CreateUnreachable(); |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1399 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1400 | // Restore the saved insertion state. |
| 1401 | Builder.restoreIP(SavedIP); |
John McCall | 891f80e | 2010-04-30 00:06:43 +0000 | [diff] [blame] | 1402 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1403 | return TerminateLandingPad; |
Mike Stump | d88ea56 | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1404 | } |
Mike Stump | 9b39c51 | 2009-12-09 22:59:31 +0000 | [diff] [blame] | 1405 | |
| 1406 | llvm::BasicBlock *CodeGenFunction::getTerminateHandler() { |
Mike Stump | 182f383 | 2009-12-10 00:02:42 +0000 | [diff] [blame] | 1407 | if (TerminateHandler) |
| 1408 | return TerminateHandler; |
| 1409 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1410 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
Mike Stump | 7695809 | 2009-12-09 23:31:35 +0000 | [diff] [blame] | 1411 | |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1412 | // Set up the terminate handler. This block is inserted at the very |
| 1413 | // end of the function by FinishFunction. |
Mike Stump | 182f383 | 2009-12-10 00:02:42 +0000 | [diff] [blame] | 1414 | TerminateHandler = createBasicBlock("terminate.handler"); |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1415 | Builder.SetInsertPoint(TerminateHandler); |
| 1416 | llvm::CallInst *TerminateCall = Builder.CreateCall(getTerminateFn(*this)); |
Mike Stump | 9b39c51 | 2009-12-09 22:59:31 +0000 | [diff] [blame] | 1417 | TerminateCall->setDoesNotReturn(); |
| 1418 | TerminateCall->setDoesNotThrow(); |
| 1419 | Builder.CreateUnreachable(); |
| 1420 | |
John McCall | 3d3ec1c | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1421 | // Restore the saved insertion state. |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1422 | Builder.restoreIP(SavedIP); |
Mike Stump | 7695809 | 2009-12-09 23:31:35 +0000 | [diff] [blame] | 1423 | |
Mike Stump | 9b39c51 | 2009-12-09 22:59:31 +0000 | [diff] [blame] | 1424 | return TerminateHandler; |
| 1425 | } |
John McCall | f1549f6 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1426 | |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1427 | CodeGenFunction::UnwindDest CodeGenFunction::getRethrowDest() { |
| 1428 | if (RethrowBlock.isValid()) return RethrowBlock; |
| 1429 | |
| 1430 | CGBuilderTy::InsertPoint SavedIP = Builder.saveIP(); |
| 1431 | |
| 1432 | // We emit a jump to a notional label at the outermost unwind state. |
| 1433 | llvm::BasicBlock *Unwind = createBasicBlock("eh.resume"); |
| 1434 | Builder.SetInsertPoint(Unwind); |
| 1435 | |
| 1436 | const EHPersonality &Personality = EHPersonality::get(CGM.getLangOptions()); |
| 1437 | |
| 1438 | // This can always be a call because we necessarily didn't find |
| 1439 | // anything on the EH stack which needs our help. |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 1440 | llvm::StringRef RethrowName = Personality.getCatchallRethrowFnName(); |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1441 | llvm::Constant *RethrowFn; |
John McCall | b259383 | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 1442 | if (!RethrowName.empty()) |
John McCall | ff8e115 | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1443 | RethrowFn = getCatchallRethrowFn(*this, RethrowName); |
| 1444 | else |
| 1445 | RethrowFn = getUnwindResumeOrRethrowFn(); |
| 1446 | |
| 1447 | Builder.CreateCall(RethrowFn, Builder.CreateLoad(getExceptionSlot())) |
| 1448 | ->setDoesNotReturn(); |
| 1449 | Builder.CreateUnreachable(); |
| 1450 | |
| 1451 | Builder.restoreIP(SavedIP); |
| 1452 | |
| 1453 | RethrowBlock = UnwindDest(Unwind, EHStack.stable_end(), 0); |
| 1454 | return RethrowBlock; |
| 1455 | } |
| 1456 | |