blob: a088d78641fa7fae8469dff2f059cbb1c3c09a29 [file] [log] [blame]
Anders Carlsson756b5c42009-10-30 01:42:31 +00001//===--- 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
14#include "CodeGenFunction.h"
John McCall36f893c2011-01-28 11:13:47 +000015#include "CGCleanup.h"
Benjamin Krameraf2771b2012-02-08 12:41:24 +000016#include "CGObjCRuntime.h"
John McCall204b0752010-07-20 22:17:55 +000017#include "TargetInfo.h"
Benjamin Krameraf2771b2012-02-08 12:41:24 +000018#include "clang/AST/StmtCXX.h"
Chandler Carruthb1ba0ef2013-01-19 08:09:44 +000019#include "clang/AST/StmtObjC.h"
Chandler Carruth3b844ba2013-01-02 11:45:17 +000020#include "llvm/IR/Intrinsics.h"
Benjamin Krameraf2771b2012-02-08 12:41:24 +000021#include "llvm/Support/CallSite.h"
John McCallf1549f62010-07-06 01:34:17 +000022
Anders Carlsson756b5c42009-10-30 01:42:31 +000023using namespace clang;
24using namespace CodeGen;
25
John McCall629df012013-02-12 03:51:38 +000026static llvm::Constant *getAllocateExceptionFn(CodeGenModule &CGM) {
Anders Carlssond3379292009-10-30 02:27:02 +000027 // void *__cxa_allocate_exception(size_t thrown_size);
Mike Stump8755ec32009-12-10 00:06:18 +000028
Chris Lattner2acc6e32011-07-18 04:24:23 +000029 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000030 llvm::FunctionType::get(CGM.Int8PtrTy, CGM.SizeTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000031
John McCall629df012013-02-12 03:51:38 +000032 return CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception");
Anders Carlssond3379292009-10-30 02:27:02 +000033}
34
John McCall629df012013-02-12 03:51:38 +000035static llvm::Constant *getFreeExceptionFn(CodeGenModule &CGM) {
Mike Stump99533832009-12-02 07:41:41 +000036 // void __cxa_free_exception(void *thrown_exception);
Mike Stump8755ec32009-12-10 00:06:18 +000037
Chris Lattner2acc6e32011-07-18 04:24:23 +000038 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000039 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000040
John McCall629df012013-02-12 03:51:38 +000041 return CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
Mike Stump99533832009-12-02 07:41:41 +000042}
43
John McCall629df012013-02-12 03:51:38 +000044static llvm::Constant *getThrowFn(CodeGenModule &CGM) {
Mike Stump8755ec32009-12-10 00:06:18 +000045 // void __cxa_throw(void *thrown_exception, std::type_info *tinfo,
Mike Stump99533832009-12-02 07:41:41 +000046 // void (*dest) (void *));
Anders Carlssond3379292009-10-30 02:27:02 +000047
John McCall629df012013-02-12 03:51:38 +000048 llvm::Type *Args[3] = { CGM.Int8PtrTy, CGM.Int8PtrTy, CGM.Int8PtrTy };
Chris Lattner2acc6e32011-07-18 04:24:23 +000049 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000050 llvm::FunctionType::get(CGM.VoidTy, Args, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000051
John McCall629df012013-02-12 03:51:38 +000052 return CGM.CreateRuntimeFunction(FTy, "__cxa_throw");
Anders Carlssond3379292009-10-30 02:27:02 +000053}
54
John McCall629df012013-02-12 03:51:38 +000055static llvm::Constant *getReThrowFn(CodeGenModule &CGM) {
Mike Stump99533832009-12-02 07:41:41 +000056 // void __cxa_rethrow();
Mike Stumpb4eea692009-11-20 00:56:31 +000057
Chris Lattner2acc6e32011-07-18 04:24:23 +000058 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000059 llvm::FunctionType::get(CGM.VoidTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000060
John McCall629df012013-02-12 03:51:38 +000061 return CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow");
Mike Stumpb4eea692009-11-20 00:56:31 +000062}
63
John McCall629df012013-02-12 03:51:38 +000064static llvm::Constant *getGetExceptionPtrFn(CodeGenModule &CGM) {
John McCallf1549f62010-07-06 01:34:17 +000065 // void *__cxa_get_exception_ptr(void*);
John McCallf1549f62010-07-06 01:34:17 +000066
Chris Lattner2acc6e32011-07-18 04:24:23 +000067 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000068 llvm::FunctionType::get(CGM.Int8PtrTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
John McCallf1549f62010-07-06 01:34:17 +000069
John McCall629df012013-02-12 03:51:38 +000070 return CGM.CreateRuntimeFunction(FTy, "__cxa_get_exception_ptr");
John McCallf1549f62010-07-06 01:34:17 +000071}
72
John McCall629df012013-02-12 03:51:38 +000073static llvm::Constant *getBeginCatchFn(CodeGenModule &CGM) {
John McCallf1549f62010-07-06 01:34:17 +000074 // void *__cxa_begin_catch(void*);
Mike Stump2bf701e2009-11-20 23:44:51 +000075
Chris Lattner2acc6e32011-07-18 04:24:23 +000076 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000077 llvm::FunctionType::get(CGM.Int8PtrTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000078
John McCall629df012013-02-12 03:51:38 +000079 return CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch");
Mike Stump2bf701e2009-11-20 23:44:51 +000080}
81
John McCall629df012013-02-12 03:51:38 +000082static llvm::Constant *getEndCatchFn(CodeGenModule &CGM) {
Mike Stump99533832009-12-02 07:41:41 +000083 // void __cxa_end_catch();
Mike Stump2bf701e2009-11-20 23:44:51 +000084
Chris Lattner2acc6e32011-07-18 04:24:23 +000085 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000086 llvm::FunctionType::get(CGM.VoidTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000087
John McCall629df012013-02-12 03:51:38 +000088 return CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch");
Mike Stump2bf701e2009-11-20 23:44:51 +000089}
90
John McCall629df012013-02-12 03:51:38 +000091static llvm::Constant *getUnexpectedFn(CodeGenModule &CGM) {
Mike Stumpcce3d4f2009-12-07 23:38:24 +000092 // void __cxa_call_unexepcted(void *thrown_exception);
93
Chris Lattner2acc6e32011-07-18 04:24:23 +000094 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +000095 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000096
John McCall629df012013-02-12 03:51:38 +000097 return CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected");
Mike Stumpcce3d4f2009-12-07 23:38:24 +000098}
99
John McCall93c332a2011-05-28 21:13:02 +0000100llvm::Constant *CodeGenFunction::getUnwindResumeFn() {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000101 llvm::FunctionType *FTy =
Jay Foadda549e82011-07-29 13:56:53 +0000102 llvm::FunctionType::get(VoidTy, Int8PtrTy, /*IsVarArgs=*/false);
John McCall93c332a2011-05-28 21:13:02 +0000103
David Blaikie4e4d0842012-03-11 07:00:24 +0000104 if (CGM.getLangOpts().SjLjExceptions)
John McCall93c332a2011-05-28 21:13:02 +0000105 return CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume");
106 return CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume");
107}
108
109llvm::Constant *CodeGenFunction::getUnwindResumeOrRethrowFn() {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000110 llvm::FunctionType *FTy =
Jay Foadda549e82011-07-29 13:56:53 +0000111 llvm::FunctionType::get(VoidTy, Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +0000112
David Blaikie4e4d0842012-03-11 07:00:24 +0000113 if (CGM.getLangOpts().SjLjExceptions)
John McCalla5f2de22010-08-11 20:59:53 +0000114 return CGM.CreateRuntimeFunction(FTy, "_Unwind_SjLj_Resume_or_Rethrow");
Douglas Gregor86a3a032010-05-16 01:24:12 +0000115 return CGM.CreateRuntimeFunction(FTy, "_Unwind_Resume_or_Rethrow");
Mike Stump0f590be2009-12-01 03:41:18 +0000116}
117
John McCall629df012013-02-12 03:51:38 +0000118static llvm::Constant *getTerminateFn(CodeGenModule &CGM) {
Mike Stump99533832009-12-02 07:41:41 +0000119 // void __terminate();
120
Chris Lattner2acc6e32011-07-18 04:24:23 +0000121 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +0000122 llvm::FunctionType::get(CGM.VoidTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +0000123
Chris Lattner5f9e2722011-07-23 10:55:15 +0000124 StringRef name;
John McCall256a76e2011-07-06 01:22:26 +0000125
126 // In C++, use std::terminate().
John McCall629df012013-02-12 03:51:38 +0000127 if (CGM.getLangOpts().CPlusPlus)
John McCall256a76e2011-07-06 01:22:26 +0000128 name = "_ZSt9terminatev"; // FIXME: mangling!
John McCall629df012013-02-12 03:51:38 +0000129 else if (CGM.getLangOpts().ObjC1 &&
130 CGM.getLangOpts().ObjCRuntime.hasTerminate())
John McCall256a76e2011-07-06 01:22:26 +0000131 name = "objc_terminate";
132 else
133 name = "abort";
John McCall629df012013-02-12 03:51:38 +0000134 return CGM.CreateRuntimeFunction(FTy, name);
David Chisnall79a9ad82010-05-17 13:49:20 +0000135}
136
John McCall629df012013-02-12 03:51:38 +0000137static llvm::Constant *getCatchallRethrowFn(CodeGenModule &CGM,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000138 StringRef Name) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000139 llvm::FunctionType *FTy =
John McCall629df012013-02-12 03:51:38 +0000140 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
John McCall8262b6a2010-07-17 00:43:08 +0000141
John McCall629df012013-02-12 03:51:38 +0000142 return CGM.CreateRuntimeFunction(FTy, Name);
John McCallf1549f62010-07-06 01:34:17 +0000143}
144
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000145namespace {
146 /// The exceptions personality for a function.
147 struct EHPersonality {
148 const char *PersonalityFn;
149
150 // If this is non-null, this personality requires a non-standard
151 // function for rethrowing an exception after a catchall cleanup.
152 // This function must have prototype void(void*).
153 const char *CatchallRethrowFn;
154
155 static const EHPersonality &get(const LangOptions &Lang);
156 static const EHPersonality GNU_C;
157 static const EHPersonality GNU_C_SJLJ;
158 static const EHPersonality GNU_ObjC;
David Chisnall65bd4ac2013-01-11 15:33:01 +0000159 static const EHPersonality GNUstep_ObjC;
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000160 static const EHPersonality GNU_ObjCXX;
161 static const EHPersonality NeXT_ObjC;
162 static const EHPersonality GNU_CPlusPlus;
163 static const EHPersonality GNU_CPlusPlus_SJLJ;
164 };
165}
166
167const EHPersonality EHPersonality::GNU_C = { "__gcc_personality_v0", 0 };
168const EHPersonality EHPersonality::GNU_C_SJLJ = { "__gcc_personality_sj0", 0 };
169const EHPersonality EHPersonality::NeXT_ObjC = { "__objc_personality_v0", 0 };
170const EHPersonality EHPersonality::GNU_CPlusPlus = { "__gxx_personality_v0", 0};
171const EHPersonality
172EHPersonality::GNU_CPlusPlus_SJLJ = { "__gxx_personality_sj0", 0 };
173const EHPersonality
174EHPersonality::GNU_ObjC = {"__gnu_objc_personality_v0", "objc_exception_throw"};
175const EHPersonality
176EHPersonality::GNU_ObjCXX = { "__gnustep_objcxx_personality_v0", 0 };
David Chisnall65bd4ac2013-01-11 15:33:01 +0000177const EHPersonality
178EHPersonality::GNUstep_ObjC = { "__gnustep_objc_personality_v0", 0 };
John McCall8262b6a2010-07-17 00:43:08 +0000179
180static const EHPersonality &getCPersonality(const LangOptions &L) {
John McCall44680782010-11-07 02:35:25 +0000181 if (L.SjLjExceptions)
182 return EHPersonality::GNU_C_SJLJ;
John McCall8262b6a2010-07-17 00:43:08 +0000183 return EHPersonality::GNU_C;
184}
185
186static const EHPersonality &getObjCPersonality(const LangOptions &L) {
John McCall260611a2012-06-20 06:18:46 +0000187 switch (L.ObjCRuntime.getKind()) {
188 case ObjCRuntime::FragileMacOSX:
189 return getCPersonality(L);
190 case ObjCRuntime::MacOSX:
191 case ObjCRuntime::iOS:
192 return EHPersonality::NeXT_ObjC;
David Chisnall11d3f4c2012-07-03 20:49:52 +0000193 case ObjCRuntime::GNUstep:
David Chisnall65bd4ac2013-01-11 15:33:01 +0000194 if (L.ObjCRuntime.getVersion() >= VersionTuple(1, 7))
195 return EHPersonality::GNUstep_ObjC;
196 // fallthrough
David Chisnall11d3f4c2012-07-03 20:49:52 +0000197 case ObjCRuntime::GCC:
John McCallf7226fb2012-07-12 02:07:58 +0000198 case ObjCRuntime::ObjFW:
John McCall8262b6a2010-07-17 00:43:08 +0000199 return EHPersonality::GNU_ObjC;
John McCallf1549f62010-07-06 01:34:17 +0000200 }
John McCall260611a2012-06-20 06:18:46 +0000201 llvm_unreachable("bad runtime kind");
John McCallf1549f62010-07-06 01:34:17 +0000202}
203
John McCall8262b6a2010-07-17 00:43:08 +0000204static const EHPersonality &getCXXPersonality(const LangOptions &L) {
205 if (L.SjLjExceptions)
206 return EHPersonality::GNU_CPlusPlus_SJLJ;
John McCallf1549f62010-07-06 01:34:17 +0000207 else
John McCall8262b6a2010-07-17 00:43:08 +0000208 return EHPersonality::GNU_CPlusPlus;
John McCallf1549f62010-07-06 01:34:17 +0000209}
210
211/// Determines the personality function to use when both C++
212/// and Objective-C exceptions are being caught.
John McCall8262b6a2010-07-17 00:43:08 +0000213static const EHPersonality &getObjCXXPersonality(const LangOptions &L) {
John McCall260611a2012-06-20 06:18:46 +0000214 switch (L.ObjCRuntime.getKind()) {
John McCallf1549f62010-07-06 01:34:17 +0000215 // The ObjC personality defers to the C++ personality for non-ObjC
216 // handlers. Unlike the C++ case, we use the same personality
217 // function on targets using (backend-driven) SJLJ EH.
John McCall260611a2012-06-20 06:18:46 +0000218 case ObjCRuntime::MacOSX:
219 case ObjCRuntime::iOS:
220 return EHPersonality::NeXT_ObjC;
John McCallf1549f62010-07-06 01:34:17 +0000221
John McCall260611a2012-06-20 06:18:46 +0000222 // In the fragile ABI, just use C++ exception handling and hope
223 // they're not doing crazy exception mixing.
224 case ObjCRuntime::FragileMacOSX:
225 return getCXXPersonality(L);
David Chisnall79a9ad82010-05-17 13:49:20 +0000226
David Chisnall11d3f4c2012-07-03 20:49:52 +0000227 // The GCC runtime's personality function inherently doesn't support
John McCall8262b6a2010-07-17 00:43:08 +0000228 // mixed EH. Use the C++ personality just to avoid returning null.
David Chisnall11d3f4c2012-07-03 20:49:52 +0000229 case ObjCRuntime::GCC:
John McCallf7226fb2012-07-12 02:07:58 +0000230 case ObjCRuntime::ObjFW: // XXX: this will change soon
David Chisnall11d3f4c2012-07-03 20:49:52 +0000231 return EHPersonality::GNU_ObjC;
232 case ObjCRuntime::GNUstep:
John McCall260611a2012-06-20 06:18:46 +0000233 return EHPersonality::GNU_ObjCXX;
234 }
235 llvm_unreachable("bad runtime kind");
John McCallf1549f62010-07-06 01:34:17 +0000236}
237
John McCall8262b6a2010-07-17 00:43:08 +0000238const EHPersonality &EHPersonality::get(const LangOptions &L) {
239 if (L.CPlusPlus && L.ObjC1)
240 return getObjCXXPersonality(L);
241 else if (L.CPlusPlus)
242 return getCXXPersonality(L);
243 else if (L.ObjC1)
244 return getObjCPersonality(L);
John McCallf1549f62010-07-06 01:34:17 +0000245 else
John McCall8262b6a2010-07-17 00:43:08 +0000246 return getCPersonality(L);
247}
John McCallf1549f62010-07-06 01:34:17 +0000248
John McCallb2593832010-09-16 06:16:50 +0000249static llvm::Constant *getPersonalityFn(CodeGenModule &CGM,
John McCall8262b6a2010-07-17 00:43:08 +0000250 const EHPersonality &Personality) {
John McCall8262b6a2010-07-17 00:43:08 +0000251 llvm::Constant *Fn =
Chris Lattner8b418682012-02-07 00:39:47 +0000252 CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true),
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000253 Personality.PersonalityFn);
John McCallb2593832010-09-16 06:16:50 +0000254 return Fn;
255}
256
257static llvm::Constant *getOpaquePersonalityFn(CodeGenModule &CGM,
258 const EHPersonality &Personality) {
259 llvm::Constant *Fn = getPersonalityFn(CGM, Personality);
John McCalld16c2cf2011-02-08 08:22:06 +0000260 return llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy);
John McCallb2593832010-09-16 06:16:50 +0000261}
262
263/// Check whether a personality function could reasonably be swapped
264/// for a C++ personality function.
265static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) {
266 for (llvm::Constant::use_iterator
267 I = Fn->use_begin(), E = Fn->use_end(); I != E; ++I) {
268 llvm::User *User = *I;
269
270 // Conditionally white-list bitcasts.
271 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(User)) {
272 if (CE->getOpcode() != llvm::Instruction::BitCast) return false;
273 if (!PersonalityHasOnlyCXXUses(CE))
274 return false;
275 continue;
276 }
277
Bill Wendling40ccacc2011-09-19 22:08:36 +0000278 // Otherwise, it has to be a landingpad instruction.
279 llvm::LandingPadInst *LPI = dyn_cast<llvm::LandingPadInst>(User);
280 if (!LPI) return false;
John McCallb2593832010-09-16 06:16:50 +0000281
Bill Wendling40ccacc2011-09-19 22:08:36 +0000282 for (unsigned I = 0, E = LPI->getNumClauses(); I != E; ++I) {
John McCallb2593832010-09-16 06:16:50 +0000283 // Look for something that would've been returned by the ObjC
284 // runtime's GetEHType() method.
Bill Wendling40ccacc2011-09-19 22:08:36 +0000285 llvm::Value *Val = LPI->getClause(I)->stripPointerCasts();
286 if (LPI->isCatch(I)) {
287 // Check if the catch value has the ObjC prefix.
Bill Wendlingeecb6a12011-09-20 00:40:19 +0000288 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
289 // ObjC EH selector entries are always global variables with
290 // names starting like this.
291 if (GV->getName().startswith("OBJC_EHTYPE"))
292 return false;
Bill Wendling40ccacc2011-09-19 22:08:36 +0000293 } else {
294 // Check if any of the filter values have the ObjC prefix.
295 llvm::Constant *CVal = cast<llvm::Constant>(Val);
296 for (llvm::User::op_iterator
297 II = CVal->op_begin(), IE = CVal->op_end(); II != IE; ++II) {
Bill Wendlingeecb6a12011-09-20 00:40:19 +0000298 if (llvm::GlobalVariable *GV =
299 cast<llvm::GlobalVariable>((*II)->stripPointerCasts()))
300 // ObjC EH selector entries are always global variables with
301 // names starting like this.
302 if (GV->getName().startswith("OBJC_EHTYPE"))
303 return false;
Bill Wendling40ccacc2011-09-19 22:08:36 +0000304 }
305 }
John McCallb2593832010-09-16 06:16:50 +0000306 }
307 }
308
309 return true;
310}
311
312/// Try to use the C++ personality function in ObjC++. Not doing this
313/// can cause some incompatibilities with gcc, which is more
314/// aggressive about only using the ObjC++ personality in a function
315/// when it really needs it.
316void CodeGenModule::SimplifyPersonality() {
John McCallb2593832010-09-16 06:16:50 +0000317 // If we're not in ObjC++ -fexceptions, there's nothing to do.
David Blaikie4e4d0842012-03-11 07:00:24 +0000318 if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions)
John McCallb2593832010-09-16 06:16:50 +0000319 return;
320
John McCall70cd6192012-11-14 17:48:31 +0000321 // Both the problem this endeavors to fix and the way the logic
322 // above works is specific to the NeXT runtime.
323 if (!LangOpts.ObjCRuntime.isNeXTFamily())
324 return;
325
David Blaikie4e4d0842012-03-11 07:00:24 +0000326 const EHPersonality &ObjCXX = EHPersonality::get(LangOpts);
327 const EHPersonality &CXX = getCXXPersonality(LangOpts);
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000328 if (&ObjCXX == &CXX)
John McCallb2593832010-09-16 06:16:50 +0000329 return;
330
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000331 assert(std::strcmp(ObjCXX.PersonalityFn, CXX.PersonalityFn) != 0 &&
332 "Different EHPersonalities using the same personality function.");
333
334 llvm::Function *Fn = getModule().getFunction(ObjCXX.PersonalityFn);
John McCallb2593832010-09-16 06:16:50 +0000335
336 // Nothing to do if it's unused.
337 if (!Fn || Fn->use_empty()) return;
338
339 // Can't do the optimization if it has non-C++ uses.
340 if (!PersonalityHasOnlyCXXUses(Fn)) return;
341
342 // Create the C++ personality function and kill off the old
343 // function.
344 llvm::Constant *CXXFn = getPersonalityFn(*this, CXX);
345
346 // This can happen if the user is screwing with us.
347 if (Fn->getType() != CXXFn->getType()) return;
348
349 Fn->replaceAllUsesWith(CXXFn);
350 Fn->eraseFromParent();
John McCallf1549f62010-07-06 01:34:17 +0000351}
352
353/// Returns the value to inject into a selector to indicate the
354/// presence of a catch-all.
355static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) {
356 // Possibly we should use @llvm.eh.catch.all.value here.
John McCalld16c2cf2011-02-08 08:22:06 +0000357 return llvm::ConstantPointerNull::get(CGF.Int8PtrTy);
John McCallf1549f62010-07-06 01:34:17 +0000358}
359
John McCall09faeab2010-07-13 21:17:51 +0000360namespace {
361 /// A cleanup to free the exception object if its initialization
362 /// throws.
John McCallc4a1a842011-07-12 00:15:30 +0000363 struct FreeException : EHScopeStack::Cleanup {
364 llvm::Value *exn;
365 FreeException(llvm::Value *exn) : exn(exn) {}
John McCallad346f42011-07-12 20:27:29 +0000366 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCallbd7370a2013-02-28 19:01:20 +0000367 CGF.EmitNounwindRuntimeCall(getFreeExceptionFn(CGF.CGM), exn);
John McCall09faeab2010-07-13 21:17:51 +0000368 }
369 };
370}
371
John McCallac418162010-04-22 01:10:34 +0000372// Emits an exception expression into the given location. This
373// differs from EmitAnyExprToMem only in that, if a final copy-ctor
374// call is required, an exception within that copy ctor causes
375// std::terminate to be invoked.
John McCall3ad32c82011-01-28 08:37:24 +0000376static void EmitAnyExprToExn(CodeGenFunction &CGF, const Expr *e,
377 llvm::Value *addr) {
John McCallf1549f62010-07-06 01:34:17 +0000378 // Make sure the exception object is cleaned up if there's an
379 // exception during initialization.
John McCall3ad32c82011-01-28 08:37:24 +0000380 CGF.pushFullExprCleanup<FreeException>(EHCleanup, addr);
381 EHScopeStack::stable_iterator cleanup = CGF.EHStack.stable_begin();
John McCallac418162010-04-22 01:10:34 +0000382
383 // __cxa_allocate_exception returns a void*; we need to cast this
384 // to the appropriate type for the object.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000385 llvm::Type *ty = CGF.ConvertTypeForMem(e->getType())->getPointerTo();
John McCall3ad32c82011-01-28 08:37:24 +0000386 llvm::Value *typedAddr = CGF.Builder.CreateBitCast(addr, ty);
John McCallac418162010-04-22 01:10:34 +0000387
388 // FIXME: this isn't quite right! If there's a final unelided call
389 // to a copy constructor, then according to [except.terminate]p1 we
390 // must call std::terminate() if that constructor throws, because
391 // technically that copy occurs after the exception expression is
392 // evaluated but before the exception is caught. But the best way
393 // to handle that is to teach EmitAggExpr to do the final copy
394 // differently if it can't be elided.
Chad Rosier649b4a12012-03-29 17:37:10 +0000395 CGF.EmitAnyExprToMem(e, typedAddr, e->getType().getQualifiers(),
396 /*IsInit*/ true);
John McCallac418162010-04-22 01:10:34 +0000397
John McCall3ad32c82011-01-28 08:37:24 +0000398 // Deactivate the cleanup block.
John McCall6f103ba2011-11-10 10:43:54 +0000399 CGF.DeactivateCleanupBlock(cleanup, cast<llvm::Instruction>(typedAddr));
Mike Stump0f590be2009-12-01 03:41:18 +0000400}
401
John McCallf1549f62010-07-06 01:34:17 +0000402llvm::Value *CodeGenFunction::getExceptionSlot() {
John McCall93c332a2011-05-28 21:13:02 +0000403 if (!ExceptionSlot)
404 ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot");
John McCallf1549f62010-07-06 01:34:17 +0000405 return ExceptionSlot;
Mike Stump0f590be2009-12-01 03:41:18 +0000406}
407
John McCall93c332a2011-05-28 21:13:02 +0000408llvm::Value *CodeGenFunction::getEHSelectorSlot() {
409 if (!EHSelectorSlot)
410 EHSelectorSlot = CreateTempAlloca(Int32Ty, "ehselector.slot");
411 return EHSelectorSlot;
412}
413
Bill Wendlingae270592011-09-15 18:57:19 +0000414llvm::Value *CodeGenFunction::getExceptionFromSlot() {
415 return Builder.CreateLoad(getExceptionSlot(), "exn");
416}
417
418llvm::Value *CodeGenFunction::getSelectorFromSlot() {
419 return Builder.CreateLoad(getEHSelectorSlot(), "sel");
420}
421
Richard Smith4c71b8c2013-05-07 21:53:22 +0000422void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E,
423 bool KeepInsertionPoint) {
Anders Carlssond3379292009-10-30 02:27:02 +0000424 if (!E->getSubExpr()) {
John McCallbd7370a2013-02-28 19:01:20 +0000425 EmitNoreturnRuntimeCallOrInvoke(getReThrowFn(CGM),
426 ArrayRef<llvm::Value*>());
Douglas Gregor1eb2e592010-05-16 00:44:00 +0000427
John McCallcd5b22e2011-01-12 03:41:02 +0000428 // throw is an expression, and the expression emitters expect us
429 // to leave ourselves at a valid insertion point.
Richard Smith4c71b8c2013-05-07 21:53:22 +0000430 if (KeepInsertionPoint)
431 EmitBlock(createBasicBlock("throw.cont"));
John McCallcd5b22e2011-01-12 03:41:02 +0000432
Anders Carlssond3379292009-10-30 02:27:02 +0000433 return;
434 }
Mike Stump8755ec32009-12-10 00:06:18 +0000435
Anders Carlssond3379292009-10-30 02:27:02 +0000436 QualType ThrowType = E->getSubExpr()->getType();
Mike Stump8755ec32009-12-10 00:06:18 +0000437
Fariborz Jahanian6a3c70e2013-01-10 19:02:56 +0000438 if (ThrowType->isObjCObjectPointerType()) {
439 const Stmt *ThrowStmt = E->getSubExpr();
440 const ObjCAtThrowStmt S(E->getExprLoc(),
441 const_cast<Stmt *>(ThrowStmt));
442 CGM.getObjCRuntime().EmitThrowStmt(*this, S, false);
443 // This will clear insertion point which was not cleared in
444 // call to EmitThrowStmt.
Richard Smith4c71b8c2013-05-07 21:53:22 +0000445 if (KeepInsertionPoint)
446 EmitBlock(createBasicBlock("throw.cont"));
Fariborz Jahanian6a3c70e2013-01-10 19:02:56 +0000447 return;
448 }
449
Anders Carlssond3379292009-10-30 02:27:02 +0000450 // Now allocate the exception object.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000451 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
John McCall3d3ec1c2010-04-21 10:05:39 +0000452 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
Mike Stump8755ec32009-12-10 00:06:18 +0000453
John McCall629df012013-02-12 03:51:38 +0000454 llvm::Constant *AllocExceptionFn = getAllocateExceptionFn(CGM);
John McCallf1549f62010-07-06 01:34:17 +0000455 llvm::CallInst *ExceptionPtr =
John McCallbd7370a2013-02-28 19:01:20 +0000456 EmitNounwindRuntimeCall(AllocExceptionFn,
457 llvm::ConstantInt::get(SizeTy, TypeSize),
458 "exception");
Anders Carlsson8370c582009-12-11 00:32:37 +0000459
John McCallac418162010-04-22 01:10:34 +0000460 EmitAnyExprToExn(*this, E->getSubExpr(), ExceptionPtr);
Mike Stump8755ec32009-12-10 00:06:18 +0000461
Anders Carlssond3379292009-10-30 02:27:02 +0000462 // Now throw the exception.
Anders Carlsson82a113a2011-01-24 01:59:49 +0000463 llvm::Constant *TypeInfo = CGM.GetAddrOfRTTIDescriptor(ThrowType,
464 /*ForEH=*/true);
John McCallac418162010-04-22 01:10:34 +0000465
466 // The address of the destructor. If the exception type has a
467 // trivial destructor (or isn't a record), we just pass null.
468 llvm::Constant *Dtor = 0;
469 if (const RecordType *RecordTy = ThrowType->getAs<RecordType>()) {
470 CXXRecordDecl *Record = cast<CXXRecordDecl>(RecordTy->getDecl());
471 if (!Record->hasTrivialDestructor()) {
Douglas Gregor1d110e02010-07-01 14:13:13 +0000472 CXXDestructorDecl *DtorD = Record->getDestructor();
John McCallac418162010-04-22 01:10:34 +0000473 Dtor = CGM.GetAddrOfCXXDestructor(DtorD, Dtor_Complete);
474 Dtor = llvm::ConstantExpr::getBitCast(Dtor, Int8PtrTy);
475 }
476 }
477 if (!Dtor) Dtor = llvm::Constant::getNullValue(Int8PtrTy);
Mike Stump8755ec32009-12-10 00:06:18 +0000478
John McCallbd7370a2013-02-28 19:01:20 +0000479 llvm::Value *args[] = { ExceptionPtr, TypeInfo, Dtor };
480 EmitNoreturnRuntimeCallOrInvoke(getThrowFn(CGM), args);
Mike Stump8755ec32009-12-10 00:06:18 +0000481
John McCallcd5b22e2011-01-12 03:41:02 +0000482 // throw is an expression, and the expression emitters expect us
483 // to leave ourselves at a valid insertion point.
Richard Smith4c71b8c2013-05-07 21:53:22 +0000484 if (KeepInsertionPoint)
485 EmitBlock(createBasicBlock("throw.cont"));
Anders Carlsson756b5c42009-10-30 01:42:31 +0000486}
Mike Stump2bf701e2009-11-20 23:44:51 +0000487
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000488void CodeGenFunction::EmitStartEHSpec(const Decl *D) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000489 if (!CGM.getLangOpts().CXXExceptions)
Anders Carlssona994ee42010-02-06 23:59:05 +0000490 return;
491
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000492 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
493 if (FD == 0)
494 return;
495 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
496 if (Proto == 0)
497 return;
498
Sebastian Redla968e972011-03-15 18:42:48 +0000499 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
500 if (isNoexceptExceptionSpec(EST)) {
501 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
502 // noexcept functions are simple terminate scopes.
503 EHStack.pushTerminate();
504 }
505 } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
506 unsigned NumExceptions = Proto->getNumExceptions();
507 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000508
Sebastian Redla968e972011-03-15 18:42:48 +0000509 for (unsigned I = 0; I != NumExceptions; ++I) {
510 QualType Ty = Proto->getExceptionType(I);
511 QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType();
512 llvm::Value *EHType = CGM.GetAddrOfRTTIDescriptor(ExceptType,
513 /*ForEH=*/true);
514 Filter->setFilter(I, EHType);
515 }
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000516 }
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000517}
518
John McCall777d6e52011-08-11 02:22:43 +0000519/// Emit the dispatch block for a filter scope if necessary.
520static void emitFilterDispatchBlock(CodeGenFunction &CGF,
521 EHFilterScope &filterScope) {
522 llvm::BasicBlock *dispatchBlock = filterScope.getCachedEHDispatchBlock();
523 if (!dispatchBlock) return;
524 if (dispatchBlock->use_empty()) {
525 delete dispatchBlock;
526 return;
527 }
528
John McCall777d6e52011-08-11 02:22:43 +0000529 CGF.EmitBlockAfterUses(dispatchBlock);
530
531 // If this isn't a catch-all filter, we need to check whether we got
532 // here because the filter triggered.
533 if (filterScope.getNumFilters()) {
534 // Load the selector value.
Bill Wendlingae270592011-09-15 18:57:19 +0000535 llvm::Value *selector = CGF.getSelectorFromSlot();
John McCall777d6e52011-08-11 02:22:43 +0000536 llvm::BasicBlock *unexpectedBB = CGF.createBasicBlock("ehspec.unexpected");
537
538 llvm::Value *zero = CGF.Builder.getInt32(0);
539 llvm::Value *failsFilter =
540 CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails");
David Chisnallc6860042012-11-07 16:50:40 +0000541 CGF.Builder.CreateCondBr(failsFilter, unexpectedBB, CGF.getEHResumeBlock(false));
John McCall777d6e52011-08-11 02:22:43 +0000542
543 CGF.EmitBlock(unexpectedBB);
544 }
545
546 // Call __cxa_call_unexpected. This doesn't need to be an invoke
547 // because __cxa_call_unexpected magically filters exceptions
548 // according to the last landing pad the exception was thrown
549 // into. Seriously.
Bill Wendlingae270592011-09-15 18:57:19 +0000550 llvm::Value *exn = CGF.getExceptionFromSlot();
John McCallbd7370a2013-02-28 19:01:20 +0000551 CGF.EmitRuntimeCall(getUnexpectedFn(CGF.CGM), exn)
John McCall777d6e52011-08-11 02:22:43 +0000552 ->setDoesNotReturn();
553 CGF.Builder.CreateUnreachable();
554}
555
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000556void CodeGenFunction::EmitEndEHSpec(const Decl *D) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000557 if (!CGM.getLangOpts().CXXExceptions)
Anders Carlssona994ee42010-02-06 23:59:05 +0000558 return;
559
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000560 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
561 if (FD == 0)
562 return;
563 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
564 if (Proto == 0)
565 return;
566
Sebastian Redla968e972011-03-15 18:42:48 +0000567 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
568 if (isNoexceptExceptionSpec(EST)) {
569 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
570 EHStack.popTerminate();
571 }
572 } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
John McCall777d6e52011-08-11 02:22:43 +0000573 EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin());
574 emitFilterDispatchBlock(*this, filterScope);
Sebastian Redla968e972011-03-15 18:42:48 +0000575 EHStack.popFilter();
576 }
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000577}
578
Mike Stump2bf701e2009-11-20 23:44:51 +0000579void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
John McCall59a70002010-07-07 06:56:46 +0000580 EnterCXXTryStmt(S);
John McCall9fc6a772010-02-19 09:25:03 +0000581 EmitStmt(S.getTryBlock());
John McCall59a70002010-07-07 06:56:46 +0000582 ExitCXXTryStmt(S);
John McCall9fc6a772010-02-19 09:25:03 +0000583}
584
John McCall59a70002010-07-07 06:56:46 +0000585void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
John McCallf1549f62010-07-06 01:34:17 +0000586 unsigned NumHandlers = S.getNumHandlers();
587 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers);
John McCall9fc6a772010-02-19 09:25:03 +0000588
John McCallf1549f62010-07-06 01:34:17 +0000589 for (unsigned I = 0; I != NumHandlers; ++I) {
590 const CXXCatchStmt *C = S.getHandler(I);
John McCall9fc6a772010-02-19 09:25:03 +0000591
John McCallf1549f62010-07-06 01:34:17 +0000592 llvm::BasicBlock *Handler = createBasicBlock("catch");
593 if (C->getExceptionDecl()) {
594 // FIXME: Dropping the reference type on the type into makes it
595 // impossible to correctly implement catch-by-reference
596 // semantics for pointers. Unfortunately, this is what all
597 // existing compilers do, and it's not clear that the standard
598 // personality routine is capable of doing this right. See C++ DR 388:
599 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#388
600 QualType CaughtType = C->getCaughtType();
601 CaughtType = CaughtType.getNonReferenceType().getUnqualifiedType();
John McCall5a180392010-07-24 00:37:23 +0000602
603 llvm::Value *TypeInfo = 0;
604 if (CaughtType->isObjCObjectPointerType())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +0000605 TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType);
John McCall5a180392010-07-24 00:37:23 +0000606 else
Anders Carlsson82a113a2011-01-24 01:59:49 +0000607 TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true);
John McCallf1549f62010-07-06 01:34:17 +0000608 CatchScope->setHandler(I, TypeInfo, Handler);
609 } else {
610 // No exception decl indicates '...', a catch-all.
611 CatchScope->setCatchAllHandler(I, Handler);
612 }
613 }
John McCallf1549f62010-07-06 01:34:17 +0000614}
615
John McCall777d6e52011-08-11 02:22:43 +0000616llvm::BasicBlock *
617CodeGenFunction::getEHDispatchBlock(EHScopeStack::stable_iterator si) {
618 // The dispatch block for the end of the scope chain is a block that
619 // just resumes unwinding.
620 if (si == EHStack.stable_end())
David Chisnallc6860042012-11-07 16:50:40 +0000621 return getEHResumeBlock(true);
John McCall777d6e52011-08-11 02:22:43 +0000622
623 // Otherwise, we should look at the actual scope.
624 EHScope &scope = *EHStack.find(si);
625
626 llvm::BasicBlock *dispatchBlock = scope.getCachedEHDispatchBlock();
627 if (!dispatchBlock) {
628 switch (scope.getKind()) {
629 case EHScope::Catch: {
630 // Apply a special case to a single catch-all.
631 EHCatchScope &catchScope = cast<EHCatchScope>(scope);
632 if (catchScope.getNumHandlers() == 1 &&
633 catchScope.getHandler(0).isCatchAll()) {
634 dispatchBlock = catchScope.getHandler(0).Block;
635
636 // Otherwise, make a dispatch block.
637 } else {
638 dispatchBlock = createBasicBlock("catch.dispatch");
639 }
640 break;
641 }
642
643 case EHScope::Cleanup:
644 dispatchBlock = createBasicBlock("ehcleanup");
645 break;
646
647 case EHScope::Filter:
648 dispatchBlock = createBasicBlock("filter.dispatch");
649 break;
650
651 case EHScope::Terminate:
652 dispatchBlock = getTerminateHandler();
653 break;
654 }
655 scope.setCachedEHDispatchBlock(dispatchBlock);
656 }
657 return dispatchBlock;
658}
659
John McCallf1549f62010-07-06 01:34:17 +0000660/// Check whether this is a non-EH scope, i.e. a scope which doesn't
661/// affect exception handling. Currently, the only non-EH scopes are
662/// normal-only cleanup scopes.
663static bool isNonEHScope(const EHScope &S) {
John McCallda65ea82010-07-13 20:32:21 +0000664 switch (S.getKind()) {
John McCall1f0fca52010-07-21 07:22:38 +0000665 case EHScope::Cleanup:
666 return !cast<EHCleanupScope>(S).isEHCleanup();
John McCallda65ea82010-07-13 20:32:21 +0000667 case EHScope::Filter:
668 case EHScope::Catch:
669 case EHScope::Terminate:
670 return false;
671 }
672
David Blaikie30263482012-01-20 21:50:17 +0000673 llvm_unreachable("Invalid EHScope Kind!");
John McCallf1549f62010-07-06 01:34:17 +0000674}
675
676llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() {
677 assert(EHStack.requiresLandingPad());
678 assert(!EHStack.empty());
679
David Blaikie4e4d0842012-03-11 07:00:24 +0000680 if (!CGM.getLangOpts().Exceptions)
John McCallda65ea82010-07-13 20:32:21 +0000681 return 0;
682
John McCallf1549f62010-07-06 01:34:17 +0000683 // Check the innermost scope for a cached landing pad. If this is
684 // a non-EH cleanup, we'll check enclosing scopes in EmitLandingPad.
685 llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad();
686 if (LP) return LP;
687
688 // Build the landing pad for this scope.
689 LP = EmitLandingPad();
690 assert(LP);
691
692 // Cache the landing pad on the innermost scope. If this is a
693 // non-EH scope, cache the landing pad on the enclosing scope, too.
694 for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) {
695 ir->setCachedLandingPad(LP);
696 if (!isNonEHScope(*ir)) break;
697 }
698
699 return LP;
700}
701
John McCall93c332a2011-05-28 21:13:02 +0000702// This code contains a hack to work around a design flaw in
703// LLVM's EH IR which breaks semantics after inlining. This same
704// hack is implemented in llvm-gcc.
705//
706// The LLVM EH abstraction is basically a thin veneer over the
707// traditional GCC zero-cost design: for each range of instructions
708// in the function, there is (at most) one "landing pad" with an
709// associated chain of EH actions. A language-specific personality
710// function interprets this chain of actions and (1) decides whether
711// or not to resume execution at the landing pad and (2) if so,
712// provides an integer indicating why it's stopping. In LLVM IR,
713// the association of a landing pad with a range of instructions is
714// achieved via an invoke instruction, the chain of actions becomes
715// the arguments to the @llvm.eh.selector call, and the selector
716// call returns the integer indicator. Other than the required
717// presence of two intrinsic function calls in the landing pad,
718// the IR exactly describes the layout of the output code.
719//
720// A principal advantage of this design is that it is completely
721// language-agnostic; in theory, the LLVM optimizers can treat
722// landing pads neutrally, and targets need only know how to lower
723// the intrinsics to have a functioning exceptions system (assuming
724// that platform exceptions follow something approximately like the
725// GCC design). Unfortunately, landing pads cannot be combined in a
726// language-agnostic way: given selectors A and B, there is no way
727// to make a single landing pad which faithfully represents the
728// semantics of propagating an exception first through A, then
729// through B, without knowing how the personality will interpret the
730// (lowered form of the) selectors. This means that inlining has no
731// choice but to crudely chain invokes (i.e., to ignore invokes in
732// the inlined function, but to turn all unwindable calls into
733// invokes), which is only semantically valid if every unwind stops
734// at every landing pad.
735//
736// Therefore, the invoke-inline hack is to guarantee that every
737// landing pad has a catch-all.
738enum CleanupHackLevel_t {
739 /// A level of hack that requires that all landing pads have
740 /// catch-alls.
741 CHL_MandatoryCatchall,
742
743 /// A level of hack that requires that all landing pads handle
744 /// cleanups.
745 CHL_MandatoryCleanup,
746
747 /// No hacks at all; ideal IR generation.
748 CHL_Ideal
749};
750const CleanupHackLevel_t CleanupHackLevel = CHL_MandatoryCleanup;
751
John McCallf1549f62010-07-06 01:34:17 +0000752llvm::BasicBlock *CodeGenFunction::EmitLandingPad() {
753 assert(EHStack.requiresLandingPad());
754
John McCall777d6e52011-08-11 02:22:43 +0000755 EHScope &innermostEHScope = *EHStack.find(EHStack.getInnermostEHScope());
756 switch (innermostEHScope.getKind()) {
757 case EHScope::Terminate:
758 return getTerminateLandingPad();
John McCallf1549f62010-07-06 01:34:17 +0000759
John McCall777d6e52011-08-11 02:22:43 +0000760 case EHScope::Catch:
761 case EHScope::Cleanup:
762 case EHScope::Filter:
763 if (llvm::BasicBlock *lpad = innermostEHScope.getCachedLandingPad())
764 return lpad;
John McCallf1549f62010-07-06 01:34:17 +0000765 }
766
767 // Save the current IR generation state.
John McCall777d6e52011-08-11 02:22:43 +0000768 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
John McCallf1549f62010-07-06 01:34:17 +0000769
David Blaikie4e4d0842012-03-11 07:00:24 +0000770 const EHPersonality &personality = EHPersonality::get(getLangOpts());
John McCall8262b6a2010-07-17 00:43:08 +0000771
John McCallf1549f62010-07-06 01:34:17 +0000772 // Create and configure the landing pad.
John McCall777d6e52011-08-11 02:22:43 +0000773 llvm::BasicBlock *lpad = createBasicBlock("lpad");
774 EmitBlock(lpad);
John McCallf1549f62010-07-06 01:34:17 +0000775
Bill Wendling285cfd82011-09-19 20:31:14 +0000776 llvm::LandingPadInst *LPadInst =
777 Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
778 getOpaquePersonalityFn(CGM, personality), 0);
779
780 llvm::Value *LPadExn = Builder.CreateExtractValue(LPadInst, 0);
781 Builder.CreateStore(LPadExn, getExceptionSlot());
782 llvm::Value *LPadSel = Builder.CreateExtractValue(LPadInst, 1);
783 Builder.CreateStore(LPadSel, getEHSelectorSlot());
784
John McCallf1549f62010-07-06 01:34:17 +0000785 // Save the exception pointer. It's safe to use a single exception
786 // pointer per function because EH cleanups can never have nested
787 // try/catches.
Bill Wendling285cfd82011-09-19 20:31:14 +0000788 // Build the landingpad instruction.
John McCallf1549f62010-07-06 01:34:17 +0000789
790 // Accumulate all the handlers in scope.
John McCall777d6e52011-08-11 02:22:43 +0000791 bool hasCatchAll = false;
792 bool hasCleanup = false;
793 bool hasFilter = false;
794 SmallVector<llvm::Value*, 4> filterTypes;
795 llvm::SmallPtrSet<llvm::Value*, 4> catchTypes;
John McCallf1549f62010-07-06 01:34:17 +0000796 for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end();
797 I != E; ++I) {
798
799 switch (I->getKind()) {
John McCall1f0fca52010-07-21 07:22:38 +0000800 case EHScope::Cleanup:
John McCall777d6e52011-08-11 02:22:43 +0000801 // If we have a cleanup, remember that.
802 hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup());
John McCallda65ea82010-07-13 20:32:21 +0000803 continue;
804
John McCallf1549f62010-07-06 01:34:17 +0000805 case EHScope::Filter: {
806 assert(I.next() == EHStack.end() && "EH filter is not end of EH stack");
John McCall777d6e52011-08-11 02:22:43 +0000807 assert(!hasCatchAll && "EH filter reached after catch-all");
John McCallf1549f62010-07-06 01:34:17 +0000808
Bill Wendling285cfd82011-09-19 20:31:14 +0000809 // Filter scopes get added to the landingpad in weird ways.
John McCall777d6e52011-08-11 02:22:43 +0000810 EHFilterScope &filter = cast<EHFilterScope>(*I);
811 hasFilter = true;
John McCallf1549f62010-07-06 01:34:17 +0000812
Bill Wendling8990daf2011-09-22 20:32:54 +0000813 // Add all the filter values.
814 for (unsigned i = 0, e = filter.getNumFilters(); i != e; ++i)
815 filterTypes.push_back(filter.getFilter(i));
John McCallf1549f62010-07-06 01:34:17 +0000816 goto done;
817 }
818
819 case EHScope::Terminate:
820 // Terminate scopes are basically catch-alls.
John McCall777d6e52011-08-11 02:22:43 +0000821 assert(!hasCatchAll);
822 hasCatchAll = true;
John McCallf1549f62010-07-06 01:34:17 +0000823 goto done;
824
825 case EHScope::Catch:
826 break;
827 }
828
John McCall777d6e52011-08-11 02:22:43 +0000829 EHCatchScope &catchScope = cast<EHCatchScope>(*I);
830 for (unsigned hi = 0, he = catchScope.getNumHandlers(); hi != he; ++hi) {
831 EHCatchScope::Handler handler = catchScope.getHandler(hi);
John McCallf1549f62010-07-06 01:34:17 +0000832
John McCall777d6e52011-08-11 02:22:43 +0000833 // If this is a catch-all, register that and abort.
834 if (!handler.Type) {
835 assert(!hasCatchAll);
836 hasCatchAll = true;
837 goto done;
John McCallf1549f62010-07-06 01:34:17 +0000838 }
839
840 // Check whether we already have a handler for this type.
Bill Wendling285cfd82011-09-19 20:31:14 +0000841 if (catchTypes.insert(handler.Type))
842 // If not, add it directly to the landingpad.
843 LPadInst->addClause(handler.Type);
John McCallf1549f62010-07-06 01:34:17 +0000844 }
John McCallf1549f62010-07-06 01:34:17 +0000845 }
846
847 done:
Bill Wendling285cfd82011-09-19 20:31:14 +0000848 // If we have a catch-all, add null to the landingpad.
John McCall777d6e52011-08-11 02:22:43 +0000849 assert(!(hasCatchAll && hasFilter));
850 if (hasCatchAll) {
Bill Wendling285cfd82011-09-19 20:31:14 +0000851 LPadInst->addClause(getCatchAllValue(*this));
John McCallf1549f62010-07-06 01:34:17 +0000852
853 // If we have an EH filter, we need to add those handlers in the
Bill Wendling285cfd82011-09-19 20:31:14 +0000854 // right place in the landingpad, which is to say, at the end.
John McCall777d6e52011-08-11 02:22:43 +0000855 } else if (hasFilter) {
Bill Wendling40ccacc2011-09-19 22:08:36 +0000856 // Create a filter expression: a constant array indicating which filter
857 // types there are. The personality routine only lands here if the filter
858 // doesn't match.
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +0000859 SmallVector<llvm::Constant*, 8> Filters;
Bill Wendling285cfd82011-09-19 20:31:14 +0000860 llvm::ArrayType *AType =
861 llvm::ArrayType::get(!filterTypes.empty() ?
862 filterTypes[0]->getType() : Int8PtrTy,
863 filterTypes.size());
864
865 for (unsigned i = 0, e = filterTypes.size(); i != e; ++i)
866 Filters.push_back(cast<llvm::Constant>(filterTypes[i]));
867 llvm::Constant *FilterArray = llvm::ConstantArray::get(AType, Filters);
868 LPadInst->addClause(FilterArray);
John McCallf1549f62010-07-06 01:34:17 +0000869
870 // Also check whether we need a cleanup.
Bill Wendling285cfd82011-09-19 20:31:14 +0000871 if (hasCleanup)
872 LPadInst->setCleanup(true);
John McCallf1549f62010-07-06 01:34:17 +0000873
874 // Otherwise, signal that we at least have cleanups.
John McCall777d6e52011-08-11 02:22:43 +0000875 } else if (CleanupHackLevel == CHL_MandatoryCatchall || hasCleanup) {
Bill Wendling285cfd82011-09-19 20:31:14 +0000876 if (CleanupHackLevel == CHL_MandatoryCatchall)
877 LPadInst->addClause(getCatchAllValue(*this));
878 else
879 LPadInst->setCleanup(true);
John McCallf1549f62010-07-06 01:34:17 +0000880 }
881
Bill Wendling285cfd82011-09-19 20:31:14 +0000882 assert((LPadInst->getNumClauses() > 0 || LPadInst->isCleanup()) &&
883 "landingpad instruction has no clauses!");
John McCallf1549f62010-07-06 01:34:17 +0000884
885 // Tell the backend how to generate the landing pad.
John McCall777d6e52011-08-11 02:22:43 +0000886 Builder.CreateBr(getEHDispatchBlock(EHStack.getInnermostEHScope()));
John McCallf1549f62010-07-06 01:34:17 +0000887
888 // Restore the old IR generation state.
John McCall777d6e52011-08-11 02:22:43 +0000889 Builder.restoreIP(savedIP);
John McCallf1549f62010-07-06 01:34:17 +0000890
John McCall777d6e52011-08-11 02:22:43 +0000891 return lpad;
John McCallf1549f62010-07-06 01:34:17 +0000892}
893
John McCall8e3f8612010-07-13 22:12:14 +0000894namespace {
895 /// A cleanup to call __cxa_end_catch. In many cases, the caught
896 /// exception type lets us state definitively that the thrown exception
897 /// type does not have a destructor. In particular:
898 /// - Catch-alls tell us nothing, so we have to conservatively
899 /// assume that the thrown exception might have a destructor.
900 /// - Catches by reference behave according to their base types.
901 /// - Catches of non-record types will only trigger for exceptions
902 /// of non-record types, which never have destructors.
903 /// - Catches of record types can trigger for arbitrary subclasses
904 /// of the caught type, so we have to assume the actual thrown
905 /// exception type might have a throwing destructor, even if the
906 /// caught type's destructor is trivial or nothrow.
John McCall1f0fca52010-07-21 07:22:38 +0000907 struct CallEndCatch : EHScopeStack::Cleanup {
John McCall8e3f8612010-07-13 22:12:14 +0000908 CallEndCatch(bool MightThrow) : MightThrow(MightThrow) {}
909 bool MightThrow;
910
John McCallad346f42011-07-12 20:27:29 +0000911 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall8e3f8612010-07-13 22:12:14 +0000912 if (!MightThrow) {
John McCallbd7370a2013-02-28 19:01:20 +0000913 CGF.EmitNounwindRuntimeCall(getEndCatchFn(CGF.CGM));
John McCall8e3f8612010-07-13 22:12:14 +0000914 return;
915 }
916
John McCallbd7370a2013-02-28 19:01:20 +0000917 CGF.EmitRuntimeCallOrInvoke(getEndCatchFn(CGF.CGM));
John McCall8e3f8612010-07-13 22:12:14 +0000918 }
919 };
920}
921
John McCallf1549f62010-07-06 01:34:17 +0000922/// Emits a call to __cxa_begin_catch and enters a cleanup to call
923/// __cxa_end_catch.
John McCall8e3f8612010-07-13 22:12:14 +0000924///
925/// \param EndMightThrow - true if __cxa_end_catch might throw
926static llvm::Value *CallBeginCatch(CodeGenFunction &CGF,
927 llvm::Value *Exn,
928 bool EndMightThrow) {
John McCallbd7370a2013-02-28 19:01:20 +0000929 llvm::CallInst *call =
930 CGF.EmitNounwindRuntimeCall(getBeginCatchFn(CGF.CGM), Exn);
John McCallf1549f62010-07-06 01:34:17 +0000931
John McCall1f0fca52010-07-21 07:22:38 +0000932 CGF.EHStack.pushCleanup<CallEndCatch>(NormalAndEHCleanup, EndMightThrow);
John McCallf1549f62010-07-06 01:34:17 +0000933
John McCallbd7370a2013-02-28 19:01:20 +0000934 return call;
John McCallf1549f62010-07-06 01:34:17 +0000935}
936
937/// A "special initializer" callback for initializing a catch
938/// parameter during catch initialization.
939static void InitCatchParam(CodeGenFunction &CGF,
940 const VarDecl &CatchParam,
941 llvm::Value *ParamAddr) {
942 // Load the exception from where the landing pad saved it.
Bill Wendlingae270592011-09-15 18:57:19 +0000943 llvm::Value *Exn = CGF.getExceptionFromSlot();
John McCallf1549f62010-07-06 01:34:17 +0000944
945 CanQualType CatchType =
946 CGF.CGM.getContext().getCanonicalType(CatchParam.getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000947 llvm::Type *LLVMCatchTy = CGF.ConvertTypeForMem(CatchType);
John McCallf1549f62010-07-06 01:34:17 +0000948
949 // If we're catching by reference, we can just cast the object
950 // pointer to the appropriate pointer.
951 if (isa<ReferenceType>(CatchType)) {
John McCall204b0752010-07-20 22:17:55 +0000952 QualType CaughtType = cast<ReferenceType>(CatchType)->getPointeeType();
953 bool EndCatchMightThrow = CaughtType->isRecordType();
John McCall8e3f8612010-07-13 22:12:14 +0000954
John McCallf1549f62010-07-06 01:34:17 +0000955 // __cxa_begin_catch returns the adjusted object pointer.
John McCall8e3f8612010-07-13 22:12:14 +0000956 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow);
John McCall204b0752010-07-20 22:17:55 +0000957
958 // We have no way to tell the personality function that we're
959 // catching by reference, so if we're catching a pointer,
960 // __cxa_begin_catch will actually return that pointer by value.
961 if (const PointerType *PT = dyn_cast<PointerType>(CaughtType)) {
962 QualType PointeeType = PT->getPointeeType();
963
964 // When catching by reference, generally we should just ignore
965 // this by-value pointer and use the exception object instead.
966 if (!PointeeType->isRecordType()) {
967
968 // Exn points to the struct _Unwind_Exception header, which
969 // we have to skip past in order to reach the exception data.
970 unsigned HeaderSize =
971 CGF.CGM.getTargetCodeGenInfo().getSizeOfUnwindException();
972 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize);
973
974 // However, if we're catching a pointer-to-record type that won't
975 // work, because the personality function might have adjusted
976 // the pointer. There's actually no way for us to fully satisfy
977 // the language/ABI contract here: we can't use Exn because it
978 // might have the wrong adjustment, but we can't use the by-value
979 // pointer because it's off by a level of abstraction.
980 //
981 // The current solution is to dump the adjusted pointer into an
982 // alloca, which breaks language semantics (because changing the
983 // pointer doesn't change the exception) but at least works.
984 // The better solution would be to filter out non-exact matches
985 // and rethrow them, but this is tricky because the rethrow
986 // really needs to be catchable by other sites at this landing
987 // pad. The best solution is to fix the personality function.
988 } else {
989 // Pull the pointer for the reference type off.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000990 llvm::Type *PtrTy =
John McCall204b0752010-07-20 22:17:55 +0000991 cast<llvm::PointerType>(LLVMCatchTy)->getElementType();
992
993 // Create the temporary and write the adjusted pointer into it.
994 llvm::Value *ExnPtrTmp = CGF.CreateTempAlloca(PtrTy, "exn.byref.tmp");
995 llvm::Value *Casted = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy);
996 CGF.Builder.CreateStore(Casted, ExnPtrTmp);
997
998 // Bind the reference to the temporary.
999 AdjustedExn = ExnPtrTmp;
1000 }
1001 }
1002
John McCallf1549f62010-07-06 01:34:17 +00001003 llvm::Value *ExnCast =
1004 CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.byref");
1005 CGF.Builder.CreateStore(ExnCast, ParamAddr);
1006 return;
1007 }
1008
John McCall9d232c82013-03-07 21:37:08 +00001009 // Scalars and complexes.
1010 TypeEvaluationKind TEK = CGF.getEvaluationKind(CatchType);
1011 if (TEK != TEK_Aggregate) {
John McCall8e3f8612010-07-13 22:12:14 +00001012 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false);
John McCallf1549f62010-07-06 01:34:17 +00001013
1014 // If the catch type is a pointer type, __cxa_begin_catch returns
1015 // the pointer by value.
1016 if (CatchType->hasPointerRepresentation()) {
1017 llvm::Value *CastExn =
1018 CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.casted");
John McCallb29b12d2012-01-17 20:16:56 +00001019
1020 switch (CatchType.getQualifiers().getObjCLifetime()) {
1021 case Qualifiers::OCL_Strong:
1022 CastExn = CGF.EmitARCRetainNonBlock(CastExn);
1023 // fallthrough
1024
1025 case Qualifiers::OCL_None:
1026 case Qualifiers::OCL_ExplicitNone:
1027 case Qualifiers::OCL_Autoreleasing:
1028 CGF.Builder.CreateStore(CastExn, ParamAddr);
1029 return;
1030
1031 case Qualifiers::OCL_Weak:
1032 CGF.EmitARCInitWeak(ParamAddr, CastExn);
1033 return;
1034 }
1035 llvm_unreachable("bad ownership qualifier!");
John McCallf1549f62010-07-06 01:34:17 +00001036 }
1037
1038 // Otherwise, it returns a pointer into the exception object.
1039
Chris Lattner2acc6e32011-07-18 04:24:23 +00001040 llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok
John McCallf1549f62010-07-06 01:34:17 +00001041 llvm::Value *Cast = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy);
1042
John McCall9d232c82013-03-07 21:37:08 +00001043 LValue srcLV = CGF.MakeNaturalAlignAddrLValue(Cast, CatchType);
1044 LValue destLV = CGF.MakeAddrLValue(ParamAddr, CatchType,
1045 CGF.getContext().getDeclAlign(&CatchParam));
1046 switch (TEK) {
1047 case TEK_Complex:
1048 CGF.EmitStoreOfComplex(CGF.EmitLoadOfComplex(srcLV), destLV,
1049 /*init*/ true);
1050 return;
1051 case TEK_Scalar: {
1052 llvm::Value *ExnLoad = CGF.EmitLoadOfScalar(srcLV);
1053 CGF.EmitStoreOfScalar(ExnLoad, destLV, /*init*/ true);
1054 return;
John McCallf1549f62010-07-06 01:34:17 +00001055 }
John McCall9d232c82013-03-07 21:37:08 +00001056 case TEK_Aggregate:
1057 llvm_unreachable("evaluation kind filtered out!");
1058 }
1059 llvm_unreachable("bad evaluation kind");
John McCallf1549f62010-07-06 01:34:17 +00001060 }
1061
John McCallacff6962011-02-16 08:39:19 +00001062 assert(isa<RecordType>(CatchType) && "unexpected catch type!");
John McCallf1549f62010-07-06 01:34:17 +00001063
Chris Lattner2acc6e32011-07-18 04:24:23 +00001064 llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok
John McCallf1549f62010-07-06 01:34:17 +00001065
John McCallacff6962011-02-16 08:39:19 +00001066 // Check for a copy expression. If we don't have a copy expression,
1067 // that means a trivial copy is okay.
John McCalle996ffd2011-02-16 08:02:54 +00001068 const Expr *copyExpr = CatchParam.getInit();
1069 if (!copyExpr) {
John McCallacff6962011-02-16 08:39:19 +00001070 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true);
1071 llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy);
Chad Rosier649b4a12012-03-29 17:37:10 +00001072 CGF.EmitAggregateCopy(ParamAddr, adjustedExn, CatchType);
John McCallf1549f62010-07-06 01:34:17 +00001073 return;
1074 }
1075
1076 // We have to call __cxa_get_exception_ptr to get the adjusted
1077 // pointer before copying.
John McCalle996ffd2011-02-16 08:02:54 +00001078 llvm::CallInst *rawAdjustedExn =
John McCallbd7370a2013-02-28 19:01:20 +00001079 CGF.EmitNounwindRuntimeCall(getGetExceptionPtrFn(CGF.CGM), Exn);
John McCallf1549f62010-07-06 01:34:17 +00001080
John McCalle996ffd2011-02-16 08:02:54 +00001081 // Cast that to the appropriate type.
1082 llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy);
John McCallf1549f62010-07-06 01:34:17 +00001083
John McCalle996ffd2011-02-16 08:02:54 +00001084 // The copy expression is defined in terms of an OpaqueValueExpr.
1085 // Find it and map it to the adjusted expression.
1086 CodeGenFunction::OpaqueValueMapping
John McCall56ca35d2011-02-17 10:25:35 +00001087 opaque(CGF, OpaqueValueExpr::findInCopyConstruct(copyExpr),
1088 CGF.MakeAddrLValue(adjustedExn, CatchParam.getType()));
John McCallf1549f62010-07-06 01:34:17 +00001089
1090 // Call the copy ctor in a terminate scope.
1091 CGF.EHStack.pushTerminate();
John McCalle996ffd2011-02-16 08:02:54 +00001092
1093 // Perform the copy construction.
Eli Friedmand7722d92011-12-03 02:13:40 +00001094 CharUnits Alignment = CGF.getContext().getDeclAlign(&CatchParam);
Eli Friedmanf3940782011-12-03 00:54:26 +00001095 CGF.EmitAggExpr(copyExpr,
1096 AggValueSlot::forAddr(ParamAddr, Alignment, Qualifiers(),
1097 AggValueSlot::IsNotDestructed,
1098 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001099 AggValueSlot::IsNotAliased));
John McCalle996ffd2011-02-16 08:02:54 +00001100
1101 // Leave the terminate scope.
John McCallf1549f62010-07-06 01:34:17 +00001102 CGF.EHStack.popTerminate();
1103
John McCalle996ffd2011-02-16 08:02:54 +00001104 // Undo the opaque value mapping.
1105 opaque.pop();
1106
John McCallf1549f62010-07-06 01:34:17 +00001107 // Finally we can call __cxa_begin_catch.
John McCall8e3f8612010-07-13 22:12:14 +00001108 CallBeginCatch(CGF, Exn, true);
John McCallf1549f62010-07-06 01:34:17 +00001109}
1110
1111/// Begins a catch statement by initializing the catch variable and
1112/// calling __cxa_begin_catch.
John McCalle996ffd2011-02-16 08:02:54 +00001113static void BeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *S) {
John McCallf1549f62010-07-06 01:34:17 +00001114 // We have to be very careful with the ordering of cleanups here:
1115 // C++ [except.throw]p4:
1116 // The destruction [of the exception temporary] occurs
1117 // immediately after the destruction of the object declared in
1118 // the exception-declaration in the handler.
1119 //
1120 // So the precise ordering is:
1121 // 1. Construct catch variable.
1122 // 2. __cxa_begin_catch
1123 // 3. Enter __cxa_end_catch cleanup
1124 // 4. Enter dtor cleanup
1125 //
John McCall34695852011-02-22 06:44:22 +00001126 // We do this by using a slightly abnormal initialization process.
1127 // Delegation sequence:
John McCallf1549f62010-07-06 01:34:17 +00001128 // - ExitCXXTryStmt opens a RunCleanupsScope
John McCall34695852011-02-22 06:44:22 +00001129 // - EmitAutoVarAlloca creates the variable and debug info
John McCallf1549f62010-07-06 01:34:17 +00001130 // - InitCatchParam initializes the variable from the exception
John McCall34695852011-02-22 06:44:22 +00001131 // - CallBeginCatch calls __cxa_begin_catch
1132 // - CallBeginCatch enters the __cxa_end_catch cleanup
1133 // - EmitAutoVarCleanups enters the variable destructor cleanup
John McCallf1549f62010-07-06 01:34:17 +00001134 // - EmitCXXTryStmt emits the code for the catch body
1135 // - EmitCXXTryStmt close the RunCleanupsScope
1136
1137 VarDecl *CatchParam = S->getExceptionDecl();
1138 if (!CatchParam) {
Bill Wendlingae270592011-09-15 18:57:19 +00001139 llvm::Value *Exn = CGF.getExceptionFromSlot();
John McCall8e3f8612010-07-13 22:12:14 +00001140 CallBeginCatch(CGF, Exn, true);
John McCallf1549f62010-07-06 01:34:17 +00001141 return;
1142 }
1143
1144 // Emit the local.
John McCall34695852011-02-22 06:44:22 +00001145 CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam);
1146 InitCatchParam(CGF, *CatchParam, var.getObjectAddress(CGF));
1147 CGF.EmitAutoVarCleanups(var);
John McCall9fc6a772010-02-19 09:25:03 +00001148}
1149
John McCall777d6e52011-08-11 02:22:43 +00001150/// Emit the structure of the dispatch block for the given catch scope.
1151/// It is an invariant that the dispatch block already exists.
1152static void emitCatchDispatchBlock(CodeGenFunction &CGF,
1153 EHCatchScope &catchScope) {
1154 llvm::BasicBlock *dispatchBlock = catchScope.getCachedEHDispatchBlock();
1155 assert(dispatchBlock);
1156
1157 // If there's only a single catch-all, getEHDispatchBlock returned
1158 // that catch-all as the dispatch block.
1159 if (catchScope.getNumHandlers() == 1 &&
1160 catchScope.getHandler(0).isCatchAll()) {
1161 assert(dispatchBlock == catchScope.getHandler(0).Block);
1162 return;
1163 }
1164
1165 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP();
1166 CGF.EmitBlockAfterUses(dispatchBlock);
1167
1168 // Select the right handler.
1169 llvm::Value *llvm_eh_typeid_for =
1170 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for);
1171
1172 // Load the selector value.
Bill Wendlingae270592011-09-15 18:57:19 +00001173 llvm::Value *selector = CGF.getSelectorFromSlot();
John McCall777d6e52011-08-11 02:22:43 +00001174
1175 // Test against each of the exception types we claim to catch.
1176 for (unsigned i = 0, e = catchScope.getNumHandlers(); ; ++i) {
1177 assert(i < e && "ran off end of handlers!");
1178 const EHCatchScope::Handler &handler = catchScope.getHandler(i);
1179
1180 llvm::Value *typeValue = handler.Type;
1181 assert(typeValue && "fell into catch-all case!");
1182 typeValue = CGF.Builder.CreateBitCast(typeValue, CGF.Int8PtrTy);
1183
1184 // Figure out the next block.
1185 bool nextIsEnd;
1186 llvm::BasicBlock *nextBlock;
1187
1188 // If this is the last handler, we're at the end, and the next
1189 // block is the block for the enclosing EH scope.
1190 if (i + 1 == e) {
1191 nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope());
1192 nextIsEnd = true;
1193
1194 // If the next handler is a catch-all, we're at the end, and the
1195 // next block is that handler.
1196 } else if (catchScope.getHandler(i+1).isCatchAll()) {
1197 nextBlock = catchScope.getHandler(i+1).Block;
1198 nextIsEnd = true;
1199
1200 // Otherwise, we're not at the end and we need a new block.
1201 } else {
1202 nextBlock = CGF.createBasicBlock("catch.fallthrough");
1203 nextIsEnd = false;
1204 }
1205
1206 // Figure out the catch type's index in the LSDA's type table.
1207 llvm::CallInst *typeIndex =
1208 CGF.Builder.CreateCall(llvm_eh_typeid_for, typeValue);
1209 typeIndex->setDoesNotThrow();
1210
1211 llvm::Value *matchesTypeIndex =
1212 CGF.Builder.CreateICmpEQ(selector, typeIndex, "matches");
1213 CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock);
1214
1215 // If the next handler is a catch-all, we're completely done.
1216 if (nextIsEnd) {
1217 CGF.Builder.restoreIP(savedIP);
1218 return;
John McCall777d6e52011-08-11 02:22:43 +00001219 }
Ahmed Charlese8e92b92012-02-19 11:57:29 +00001220 // Otherwise we need to emit and continue at that block.
1221 CGF.EmitBlock(nextBlock);
John McCall777d6e52011-08-11 02:22:43 +00001222 }
John McCall777d6e52011-08-11 02:22:43 +00001223}
1224
1225void CodeGenFunction::popCatchScope() {
1226 EHCatchScope &catchScope = cast<EHCatchScope>(*EHStack.begin());
1227 if (catchScope.hasEHBranches())
1228 emitCatchDispatchBlock(*this, catchScope);
1229 EHStack.popCatch();
1230}
1231
John McCall59a70002010-07-07 06:56:46 +00001232void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
John McCallf1549f62010-07-06 01:34:17 +00001233 unsigned NumHandlers = S.getNumHandlers();
1234 EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin());
1235 assert(CatchScope.getNumHandlers() == NumHandlers);
Mike Stump2bf701e2009-11-20 23:44:51 +00001236
John McCall777d6e52011-08-11 02:22:43 +00001237 // If the catch was not required, bail out now.
1238 if (!CatchScope.hasEHBranches()) {
1239 EHStack.popCatch();
1240 return;
1241 }
1242
1243 // Emit the structure of the EH dispatch for this catch.
1244 emitCatchDispatchBlock(*this, CatchScope);
1245
John McCallf1549f62010-07-06 01:34:17 +00001246 // Copy the handler blocks off before we pop the EH stack. Emitting
1247 // the handlers might scribble on this memory.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001248 SmallVector<EHCatchScope::Handler, 8> Handlers(NumHandlers);
John McCallf1549f62010-07-06 01:34:17 +00001249 memcpy(Handlers.data(), CatchScope.begin(),
1250 NumHandlers * sizeof(EHCatchScope::Handler));
John McCall777d6e52011-08-11 02:22:43 +00001251
John McCallf1549f62010-07-06 01:34:17 +00001252 EHStack.popCatch();
Mike Stump2bf701e2009-11-20 23:44:51 +00001253
John McCallf1549f62010-07-06 01:34:17 +00001254 // The fall-through block.
1255 llvm::BasicBlock *ContBB = createBasicBlock("try.cont");
Mike Stump2bf701e2009-11-20 23:44:51 +00001256
John McCallf1549f62010-07-06 01:34:17 +00001257 // We just emitted the body of the try; jump to the continue block.
1258 if (HaveInsertPoint())
1259 Builder.CreateBr(ContBB);
Mike Stump639787c2009-12-02 19:53:57 +00001260
John McCallf5533012012-06-15 05:27:05 +00001261 // Determine if we need an implicit rethrow for all these catch handlers;
1262 // see the comment below.
1263 bool doImplicitRethrow = false;
John McCall59a70002010-07-07 06:56:46 +00001264 if (IsFnTryBlock)
John McCallf5533012012-06-15 05:27:05 +00001265 doImplicitRethrow = isa<CXXDestructorDecl>(CurCodeDecl) ||
1266 isa<CXXConstructorDecl>(CurCodeDecl);
John McCall59a70002010-07-07 06:56:46 +00001267
John McCall777d6e52011-08-11 02:22:43 +00001268 // Perversely, we emit the handlers backwards precisely because we
1269 // want them to appear in source order. In all of these cases, the
1270 // catch block will have exactly one predecessor, which will be a
1271 // particular block in the catch dispatch. However, in the case of
1272 // a catch-all, one of the dispatch blocks will branch to two
1273 // different handlers, and EmitBlockAfterUses will cause the second
1274 // handler to be moved before the first.
1275 for (unsigned I = NumHandlers; I != 0; --I) {
1276 llvm::BasicBlock *CatchBlock = Handlers[I-1].Block;
1277 EmitBlockAfterUses(CatchBlock);
Mike Stump8755ec32009-12-10 00:06:18 +00001278
John McCallf1549f62010-07-06 01:34:17 +00001279 // Catch the exception if this isn't a catch-all.
John McCall777d6e52011-08-11 02:22:43 +00001280 const CXXCatchStmt *C = S.getHandler(I-1);
Mike Stump2bf701e2009-11-20 23:44:51 +00001281
John McCallf1549f62010-07-06 01:34:17 +00001282 // Enter a cleanup scope, including the catch variable and the
1283 // end-catch.
1284 RunCleanupsScope CatchScope(*this);
Mike Stump2bf701e2009-11-20 23:44:51 +00001285
John McCallf1549f62010-07-06 01:34:17 +00001286 // Initialize the catch variable and set up the cleanups.
1287 BeginCatch(*this, C);
1288
1289 // Perform the body of the catch.
1290 EmitStmt(C->getHandlerBlock());
1291
John McCallf5533012012-06-15 05:27:05 +00001292 // [except.handle]p11:
1293 // The currently handled exception is rethrown if control
1294 // reaches the end of a handler of the function-try-block of a
1295 // constructor or destructor.
1296
1297 // It is important that we only do this on fallthrough and not on
1298 // return. Note that it's illegal to put a return in a
1299 // constructor function-try-block's catch handler (p14), so this
1300 // really only applies to destructors.
1301 if (doImplicitRethrow && HaveInsertPoint()) {
John McCallbd7370a2013-02-28 19:01:20 +00001302 EmitRuntimeCallOrInvoke(getReThrowFn(CGM));
John McCallf5533012012-06-15 05:27:05 +00001303 Builder.CreateUnreachable();
1304 Builder.ClearInsertionPoint();
1305 }
1306
John McCallf1549f62010-07-06 01:34:17 +00001307 // Fall out through the catch cleanups.
1308 CatchScope.ForceCleanup();
1309
1310 // Branch out of the try.
1311 if (HaveInsertPoint())
1312 Builder.CreateBr(ContBB);
Mike Stump2bf701e2009-11-20 23:44:51 +00001313 }
1314
John McCallf1549f62010-07-06 01:34:17 +00001315 EmitBlock(ContBB);
Mike Stump2bf701e2009-11-20 23:44:51 +00001316}
Mike Stumpd88ea562009-12-09 03:35:49 +00001317
John McCall55b20fc2010-07-21 00:52:03 +00001318namespace {
John McCall1f0fca52010-07-21 07:22:38 +00001319 struct CallEndCatchForFinally : EHScopeStack::Cleanup {
John McCall55b20fc2010-07-21 00:52:03 +00001320 llvm::Value *ForEHVar;
1321 llvm::Value *EndCatchFn;
1322 CallEndCatchForFinally(llvm::Value *ForEHVar, llvm::Value *EndCatchFn)
1323 : ForEHVar(ForEHVar), EndCatchFn(EndCatchFn) {}
1324
John McCallad346f42011-07-12 20:27:29 +00001325 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall55b20fc2010-07-21 00:52:03 +00001326 llvm::BasicBlock *EndCatchBB = CGF.createBasicBlock("finally.endcatch");
1327 llvm::BasicBlock *CleanupContBB =
1328 CGF.createBasicBlock("finally.cleanup.cont");
1329
1330 llvm::Value *ShouldEndCatch =
1331 CGF.Builder.CreateLoad(ForEHVar, "finally.endcatch");
1332 CGF.Builder.CreateCondBr(ShouldEndCatch, EndCatchBB, CleanupContBB);
1333 CGF.EmitBlock(EndCatchBB);
John McCallbd7370a2013-02-28 19:01:20 +00001334 CGF.EmitRuntimeCallOrInvoke(EndCatchFn); // catch-all, so might throw
John McCall55b20fc2010-07-21 00:52:03 +00001335 CGF.EmitBlock(CleanupContBB);
1336 }
1337 };
John McCall77199712010-07-21 05:47:49 +00001338
John McCall1f0fca52010-07-21 07:22:38 +00001339 struct PerformFinally : EHScopeStack::Cleanup {
John McCall77199712010-07-21 05:47:49 +00001340 const Stmt *Body;
1341 llvm::Value *ForEHVar;
1342 llvm::Value *EndCatchFn;
1343 llvm::Value *RethrowFn;
1344 llvm::Value *SavedExnVar;
1345
1346 PerformFinally(const Stmt *Body, llvm::Value *ForEHVar,
1347 llvm::Value *EndCatchFn,
1348 llvm::Value *RethrowFn, llvm::Value *SavedExnVar)
1349 : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn),
1350 RethrowFn(RethrowFn), SavedExnVar(SavedExnVar) {}
1351
John McCallad346f42011-07-12 20:27:29 +00001352 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall77199712010-07-21 05:47:49 +00001353 // Enter a cleanup to call the end-catch function if one was provided.
1354 if (EndCatchFn)
John McCall1f0fca52010-07-21 07:22:38 +00001355 CGF.EHStack.pushCleanup<CallEndCatchForFinally>(NormalAndEHCleanup,
1356 ForEHVar, EndCatchFn);
John McCall77199712010-07-21 05:47:49 +00001357
John McCalld96a8e72010-08-11 00:16:14 +00001358 // Save the current cleanup destination in case there are
1359 // cleanups in the finally block.
1360 llvm::Value *SavedCleanupDest =
1361 CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot(),
1362 "cleanup.dest.saved");
1363
John McCall77199712010-07-21 05:47:49 +00001364 // Emit the finally block.
1365 CGF.EmitStmt(Body);
1366
1367 // If the end of the finally is reachable, check whether this was
1368 // for EH. If so, rethrow.
1369 if (CGF.HaveInsertPoint()) {
1370 llvm::BasicBlock *RethrowBB = CGF.createBasicBlock("finally.rethrow");
1371 llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont");
1372
1373 llvm::Value *ShouldRethrow =
1374 CGF.Builder.CreateLoad(ForEHVar, "finally.shouldthrow");
1375 CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB);
1376
1377 CGF.EmitBlock(RethrowBB);
1378 if (SavedExnVar) {
John McCallbd7370a2013-02-28 19:01:20 +00001379 CGF.EmitRuntimeCallOrInvoke(RethrowFn,
1380 CGF.Builder.CreateLoad(SavedExnVar));
John McCall77199712010-07-21 05:47:49 +00001381 } else {
John McCallbd7370a2013-02-28 19:01:20 +00001382 CGF.EmitRuntimeCallOrInvoke(RethrowFn);
John McCall77199712010-07-21 05:47:49 +00001383 }
1384 CGF.Builder.CreateUnreachable();
1385
1386 CGF.EmitBlock(ContBB);
John McCalld96a8e72010-08-11 00:16:14 +00001387
1388 // Restore the cleanup destination.
1389 CGF.Builder.CreateStore(SavedCleanupDest,
1390 CGF.getNormalCleanupDestSlot());
John McCall77199712010-07-21 05:47:49 +00001391 }
1392
1393 // Leave the end-catch cleanup. As an optimization, pretend that
1394 // the fallthrough path was inaccessible; we've dynamically proven
1395 // that we're not in the EH case along that path.
1396 if (EndCatchFn) {
1397 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
1398 CGF.PopCleanupBlock();
1399 CGF.Builder.restoreIP(SavedIP);
1400 }
1401
1402 // Now make sure we actually have an insertion point or the
1403 // cleanup gods will hate us.
1404 CGF.EnsureInsertPoint();
1405 }
1406 };
John McCall55b20fc2010-07-21 00:52:03 +00001407}
1408
John McCallf1549f62010-07-06 01:34:17 +00001409/// Enters a finally block for an implementation using zero-cost
1410/// exceptions. This is mostly general, but hard-codes some
1411/// language/ABI-specific behavior in the catch-all sections.
John McCalld768e9d2011-06-22 02:32:12 +00001412void CodeGenFunction::FinallyInfo::enter(CodeGenFunction &CGF,
1413 const Stmt *body,
1414 llvm::Constant *beginCatchFn,
1415 llvm::Constant *endCatchFn,
1416 llvm::Constant *rethrowFn) {
1417 assert((beginCatchFn != 0) == (endCatchFn != 0) &&
John McCallf1549f62010-07-06 01:34:17 +00001418 "begin/end catch functions not paired");
John McCalld768e9d2011-06-22 02:32:12 +00001419 assert(rethrowFn && "rethrow function is required");
1420
1421 BeginCatchFn = beginCatchFn;
Mike Stumpd88ea562009-12-09 03:35:49 +00001422
John McCallf1549f62010-07-06 01:34:17 +00001423 // The rethrow function has one of the following two types:
1424 // void (*)()
1425 // void (*)(void*)
1426 // In the latter case we need to pass it the exception object.
1427 // But we can't use the exception slot because the @finally might
1428 // have a landing pad (which would overwrite the exception slot).
Chris Lattner2acc6e32011-07-18 04:24:23 +00001429 llvm::FunctionType *rethrowFnTy =
John McCallf1549f62010-07-06 01:34:17 +00001430 cast<llvm::FunctionType>(
John McCalld768e9d2011-06-22 02:32:12 +00001431 cast<llvm::PointerType>(rethrowFn->getType())->getElementType());
1432 SavedExnVar = 0;
1433 if (rethrowFnTy->getNumParams())
1434 SavedExnVar = CGF.CreateTempAlloca(CGF.Int8PtrTy, "finally.exn");
Mike Stumpd88ea562009-12-09 03:35:49 +00001435
John McCallf1549f62010-07-06 01:34:17 +00001436 // A finally block is a statement which must be executed on any edge
1437 // out of a given scope. Unlike a cleanup, the finally block may
1438 // contain arbitrary control flow leading out of itself. In
1439 // addition, finally blocks should always be executed, even if there
1440 // are no catch handlers higher on the stack. Therefore, we
1441 // surround the protected scope with a combination of a normal
1442 // cleanup (to catch attempts to break out of the block via normal
1443 // control flow) and an EH catch-all (semantically "outside" any try
1444 // statement to which the finally block might have been attached).
1445 // The finally block itself is generated in the context of a cleanup
1446 // which conditionally leaves the catch-all.
John McCall3d3ec1c2010-04-21 10:05:39 +00001447
John McCallf1549f62010-07-06 01:34:17 +00001448 // Jump destination for performing the finally block on an exception
1449 // edge. We'll never actually reach this block, so unreachable is
1450 // fine.
John McCalld768e9d2011-06-22 02:32:12 +00001451 RethrowDest = CGF.getJumpDestInCurrentScope(CGF.getUnreachableBlock());
John McCall3d3ec1c2010-04-21 10:05:39 +00001452
John McCallf1549f62010-07-06 01:34:17 +00001453 // Whether the finally block is being executed for EH purposes.
John McCalld768e9d2011-06-22 02:32:12 +00001454 ForEHVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), "finally.for-eh");
1455 CGF.Builder.CreateStore(CGF.Builder.getFalse(), ForEHVar);
Mike Stumpd88ea562009-12-09 03:35:49 +00001456
John McCallf1549f62010-07-06 01:34:17 +00001457 // Enter a normal cleanup which will perform the @finally block.
John McCalld768e9d2011-06-22 02:32:12 +00001458 CGF.EHStack.pushCleanup<PerformFinally>(NormalCleanup, body,
1459 ForEHVar, endCatchFn,
1460 rethrowFn, SavedExnVar);
John McCallf1549f62010-07-06 01:34:17 +00001461
1462 // Enter a catch-all scope.
John McCalld768e9d2011-06-22 02:32:12 +00001463 llvm::BasicBlock *catchBB = CGF.createBasicBlock("finally.catchall");
1464 EHCatchScope *catchScope = CGF.EHStack.pushCatch(1);
1465 catchScope->setCatchAllHandler(0, catchBB);
John McCallf1549f62010-07-06 01:34:17 +00001466}
1467
John McCalld768e9d2011-06-22 02:32:12 +00001468void CodeGenFunction::FinallyInfo::exit(CodeGenFunction &CGF) {
John McCallf1549f62010-07-06 01:34:17 +00001469 // Leave the finally catch-all.
John McCalld768e9d2011-06-22 02:32:12 +00001470 EHCatchScope &catchScope = cast<EHCatchScope>(*CGF.EHStack.begin());
1471 llvm::BasicBlock *catchBB = catchScope.getHandler(0).Block;
John McCall777d6e52011-08-11 02:22:43 +00001472
1473 CGF.popCatchScope();
John McCallf1549f62010-07-06 01:34:17 +00001474
John McCalld768e9d2011-06-22 02:32:12 +00001475 // If there are any references to the catch-all block, emit it.
1476 if (catchBB->use_empty()) {
1477 delete catchBB;
1478 } else {
1479 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP();
1480 CGF.EmitBlock(catchBB);
John McCallf1549f62010-07-06 01:34:17 +00001481
John McCalld768e9d2011-06-22 02:32:12 +00001482 llvm::Value *exn = 0;
John McCallf1549f62010-07-06 01:34:17 +00001483
John McCalld768e9d2011-06-22 02:32:12 +00001484 // If there's a begin-catch function, call it.
1485 if (BeginCatchFn) {
Bill Wendlingae270592011-09-15 18:57:19 +00001486 exn = CGF.getExceptionFromSlot();
John McCallbd7370a2013-02-28 19:01:20 +00001487 CGF.EmitNounwindRuntimeCall(BeginCatchFn, exn);
John McCalld768e9d2011-06-22 02:32:12 +00001488 }
1489
1490 // If we need to remember the exception pointer to rethrow later, do so.
1491 if (SavedExnVar) {
Bill Wendlingae270592011-09-15 18:57:19 +00001492 if (!exn) exn = CGF.getExceptionFromSlot();
John McCalld768e9d2011-06-22 02:32:12 +00001493 CGF.Builder.CreateStore(exn, SavedExnVar);
1494 }
1495
1496 // Tell the cleanups in the finally block that we're do this for EH.
1497 CGF.Builder.CreateStore(CGF.Builder.getTrue(), ForEHVar);
1498
1499 // Thread a jump through the finally cleanup.
1500 CGF.EmitBranchThroughCleanup(RethrowDest);
1501
1502 CGF.Builder.restoreIP(savedIP);
1503 }
1504
1505 // Finally, leave the @finally cleanup.
1506 CGF.PopCleanupBlock();
John McCallf1549f62010-07-06 01:34:17 +00001507}
1508
John McCall66b22772013-02-12 03:51:46 +00001509/// In a terminate landing pad, should we use __clang__call_terminate
1510/// or just a naked call to std::terminate?
1511///
1512/// __clang_call_terminate calls __cxa_begin_catch, which then allows
1513/// std::terminate to usefully report something about the
1514/// violating exception.
1515static bool useClangCallTerminate(CodeGenModule &CGM) {
1516 // Only do this for Itanium-family ABIs in C++ mode.
1517 return (CGM.getLangOpts().CPlusPlus &&
1518 CGM.getTarget().getCXXABI().isItaniumFamily());
1519}
1520
1521/// Get or define the following function:
1522/// void @__clang_call_terminate(i8* %exn) nounwind noreturn
1523/// This code is used only in C++.
1524static llvm::Constant *getClangCallTerminateFn(CodeGenModule &CGM) {
1525 llvm::FunctionType *fnTy =
1526 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
1527 llvm::Constant *fnRef =
1528 CGM.CreateRuntimeFunction(fnTy, "__clang_call_terminate");
1529
1530 llvm::Function *fn = dyn_cast<llvm::Function>(fnRef);
1531 if (fn && fn->empty()) {
1532 fn->setDoesNotThrow();
1533 fn->setDoesNotReturn();
1534
1535 // What we really want is to massively penalize inlining without
1536 // forbidding it completely. The difference between that and
1537 // 'noinline' is negligible.
1538 fn->addFnAttr(llvm::Attribute::NoInline);
1539
1540 // Allow this function to be shared across translation units, but
1541 // we don't want it to turn into an exported symbol.
1542 fn->setLinkage(llvm::Function::LinkOnceODRLinkage);
1543 fn->setVisibility(llvm::Function::HiddenVisibility);
1544
1545 // Set up the function.
1546 llvm::BasicBlock *entry =
1547 llvm::BasicBlock::Create(CGM.getLLVMContext(), "", fn);
1548 CGBuilderTy builder(entry);
1549
1550 // Pull the exception pointer out of the parameter list.
1551 llvm::Value *exn = &*fn->arg_begin();
1552
1553 // Call __cxa_begin_catch(exn).
John McCallbd7370a2013-02-28 19:01:20 +00001554 llvm::CallInst *catchCall = builder.CreateCall(getBeginCatchFn(CGM), exn);
1555 catchCall->setDoesNotThrow();
1556 catchCall->setCallingConv(CGM.getRuntimeCC());
John McCall66b22772013-02-12 03:51:46 +00001557
1558 // Call std::terminate().
1559 llvm::CallInst *termCall = builder.CreateCall(getTerminateFn(CGM));
1560 termCall->setDoesNotThrow();
1561 termCall->setDoesNotReturn();
John McCallbd7370a2013-02-28 19:01:20 +00001562 termCall->setCallingConv(CGM.getRuntimeCC());
John McCall66b22772013-02-12 03:51:46 +00001563
1564 // std::terminate cannot return.
1565 builder.CreateUnreachable();
1566 }
1567
1568 return fnRef;
1569}
1570
John McCallf1549f62010-07-06 01:34:17 +00001571llvm::BasicBlock *CodeGenFunction::getTerminateLandingPad() {
1572 if (TerminateLandingPad)
1573 return TerminateLandingPad;
1574
1575 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
1576
1577 // This will get inserted at the end of the function.
1578 TerminateLandingPad = createBasicBlock("terminate.lpad");
1579 Builder.SetInsertPoint(TerminateLandingPad);
1580
1581 // Tell the backend that this is a landing pad.
David Blaikie4e4d0842012-03-11 07:00:24 +00001582 const EHPersonality &Personality = EHPersonality::get(CGM.getLangOpts());
Bill Wendling285cfd82011-09-19 20:31:14 +00001583 llvm::LandingPadInst *LPadInst =
1584 Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
1585 getOpaquePersonalityFn(CGM, Personality), 0);
1586 LPadInst->addClause(getCatchAllValue(*this));
John McCallf1549f62010-07-06 01:34:17 +00001587
John McCall66b22772013-02-12 03:51:46 +00001588 llvm::CallInst *terminateCall;
1589 if (useClangCallTerminate(CGM)) {
1590 // Extract out the exception pointer.
1591 llvm::Value *exn = Builder.CreateExtractValue(LPadInst, 0);
John McCallbd7370a2013-02-28 19:01:20 +00001592 terminateCall = EmitNounwindRuntimeCall(getClangCallTerminateFn(CGM), exn);
John McCall66b22772013-02-12 03:51:46 +00001593 } else {
John McCallbd7370a2013-02-28 19:01:20 +00001594 terminateCall = EmitNounwindRuntimeCall(getTerminateFn(CGM));
John McCall66b22772013-02-12 03:51:46 +00001595 }
1596 terminateCall->setDoesNotReturn();
John McCalld16c2cf2011-02-08 08:22:06 +00001597 Builder.CreateUnreachable();
Mike Stumpd88ea562009-12-09 03:35:49 +00001598
John McCallf1549f62010-07-06 01:34:17 +00001599 // Restore the saved insertion state.
1600 Builder.restoreIP(SavedIP);
John McCall891f80e2010-04-30 00:06:43 +00001601
John McCallf1549f62010-07-06 01:34:17 +00001602 return TerminateLandingPad;
Mike Stumpd88ea562009-12-09 03:35:49 +00001603}
Mike Stump9b39c512009-12-09 22:59:31 +00001604
1605llvm::BasicBlock *CodeGenFunction::getTerminateHandler() {
Mike Stump182f3832009-12-10 00:02:42 +00001606 if (TerminateHandler)
1607 return TerminateHandler;
1608
John McCallf1549f62010-07-06 01:34:17 +00001609 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
Mike Stump76958092009-12-09 23:31:35 +00001610
John McCallf1549f62010-07-06 01:34:17 +00001611 // Set up the terminate handler. This block is inserted at the very
1612 // end of the function by FinishFunction.
Mike Stump182f3832009-12-10 00:02:42 +00001613 TerminateHandler = createBasicBlock("terminate.handler");
John McCallf1549f62010-07-06 01:34:17 +00001614 Builder.SetInsertPoint(TerminateHandler);
John McCallbd7370a2013-02-28 19:01:20 +00001615 llvm::CallInst *TerminateCall = EmitNounwindRuntimeCall(getTerminateFn(CGM));
Mike Stump9b39c512009-12-09 22:59:31 +00001616 TerminateCall->setDoesNotReturn();
Mike Stump9b39c512009-12-09 22:59:31 +00001617 Builder.CreateUnreachable();
1618
John McCall3d3ec1c2010-04-21 10:05:39 +00001619 // Restore the saved insertion state.
John McCallf1549f62010-07-06 01:34:17 +00001620 Builder.restoreIP(SavedIP);
Mike Stump76958092009-12-09 23:31:35 +00001621
Mike Stump9b39c512009-12-09 22:59:31 +00001622 return TerminateHandler;
1623}
John McCallf1549f62010-07-06 01:34:17 +00001624
David Chisnallc6860042012-11-07 16:50:40 +00001625llvm::BasicBlock *CodeGenFunction::getEHResumeBlock(bool isCleanup) {
John McCall777d6e52011-08-11 02:22:43 +00001626 if (EHResumeBlock) return EHResumeBlock;
John McCallff8e1152010-07-23 21:56:41 +00001627
1628 CGBuilderTy::InsertPoint SavedIP = Builder.saveIP();
1629
1630 // We emit a jump to a notional label at the outermost unwind state.
John McCall777d6e52011-08-11 02:22:43 +00001631 EHResumeBlock = createBasicBlock("eh.resume");
1632 Builder.SetInsertPoint(EHResumeBlock);
John McCallff8e1152010-07-23 21:56:41 +00001633
David Blaikie4e4d0842012-03-11 07:00:24 +00001634 const EHPersonality &Personality = EHPersonality::get(CGM.getLangOpts());
John McCallff8e1152010-07-23 21:56:41 +00001635
1636 // This can always be a call because we necessarily didn't find
1637 // anything on the EH stack which needs our help.
Benjamin Krameraf2771b2012-02-08 12:41:24 +00001638 const char *RethrowName = Personality.CatchallRethrowFn;
David Chisnallc6860042012-11-07 16:50:40 +00001639 if (RethrowName != 0 && !isCleanup) {
John McCallbd7370a2013-02-28 19:01:20 +00001640 EmitRuntimeCall(getCatchallRethrowFn(CGM, RethrowName),
1641 getExceptionFromSlot())
John McCall93c332a2011-05-28 21:13:02 +00001642 ->setDoesNotReturn();
1643 } else {
John McCall93c332a2011-05-28 21:13:02 +00001644 switch (CleanupHackLevel) {
1645 case CHL_MandatoryCatchall:
1646 // In mandatory-catchall mode, we need to use
1647 // _Unwind_Resume_or_Rethrow, or whatever the personality's
1648 // equivalent is.
John McCallbd7370a2013-02-28 19:01:20 +00001649 EmitRuntimeCall(getUnwindResumeOrRethrowFn(),
1650 getExceptionFromSlot())
John McCall93c332a2011-05-28 21:13:02 +00001651 ->setDoesNotReturn();
1652 break;
1653 case CHL_MandatoryCleanup: {
Bill Wendling285cfd82011-09-19 20:31:14 +00001654 // In mandatory-cleanup mode, we should use 'resume'.
1655
1656 // Recreate the landingpad's return value for the 'resume' instruction.
1657 llvm::Value *Exn = getExceptionFromSlot();
1658 llvm::Value *Sel = getSelectorFromSlot();
1659
1660 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(),
1661 Sel->getType(), NULL);
1662 llvm::Value *LPadVal = llvm::UndefValue::get(LPadType);
1663 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val");
1664 LPadVal = Builder.CreateInsertValue(LPadVal, Sel, 1, "lpad.val");
1665
1666 Builder.CreateResume(LPadVal);
1667 Builder.restoreIP(SavedIP);
1668 return EHResumeBlock;
John McCall93c332a2011-05-28 21:13:02 +00001669 }
1670 case CHL_Ideal:
1671 // In an idealized mode where we don't have to worry about the
1672 // optimizer combining landing pads, we should just use
1673 // _Unwind_Resume (or the personality's equivalent).
John McCallbd7370a2013-02-28 19:01:20 +00001674 EmitRuntimeCall(getUnwindResumeFn(), getExceptionFromSlot())
John McCall93c332a2011-05-28 21:13:02 +00001675 ->setDoesNotReturn();
1676 break;
1677 }
1678 }
1679
John McCallff8e1152010-07-23 21:56:41 +00001680 Builder.CreateUnreachable();
1681
1682 Builder.restoreIP(SavedIP);
1683
John McCall777d6e52011-08-11 02:22:43 +00001684 return EHResumeBlock;
John McCallff8e1152010-07-23 21:56:41 +00001685}