blob: 5797fd7578f39a510bcece793b366ceee7af48a5 [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"
Fariborz Jahanian6a3c70e2013-01-10 19:02:56 +000018#include "clang/AST/StmtObjC.h"
Benjamin Krameraf2771b2012-02-08 12:41:24 +000019#include "clang/AST/StmtCXX.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
Anders Carlssond3379292009-10-30 02:27:02 +000026static llvm::Constant *getAllocateExceptionFn(CodeGenFunction &CGF) {
27 // 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 =
Jay Foadda549e82011-07-29 13:56:53 +000030 llvm::FunctionType::get(CGF.Int8PtrTy, CGF.SizeTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000031
Anders Carlssond3379292009-10-30 02:27:02 +000032 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_allocate_exception");
33}
34
Mike Stump99533832009-12-02 07:41:41 +000035static llvm::Constant *getFreeExceptionFn(CodeGenFunction &CGF) {
36 // 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 =
Jay Foadda549e82011-07-29 13:56:53 +000039 llvm::FunctionType::get(CGF.VoidTy, CGF.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000040
Mike Stump99533832009-12-02 07:41:41 +000041 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
42}
43
Anders Carlssond3379292009-10-30 02:27:02 +000044static llvm::Constant *getThrowFn(CodeGenFunction &CGF) {
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 McCall61c16012011-07-10 20:11:30 +000048 llvm::Type *Args[3] = { CGF.Int8PtrTy, CGF.Int8PtrTy, CGF.Int8PtrTy };
Chris Lattner2acc6e32011-07-18 04:24:23 +000049 llvm::FunctionType *FTy =
John McCall61c16012011-07-10 20:11:30 +000050 llvm::FunctionType::get(CGF.VoidTy, Args, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000051
Anders Carlssond3379292009-10-30 02:27:02 +000052 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_throw");
53}
54
Mike Stumpb4eea692009-11-20 00:56:31 +000055static llvm::Constant *getReThrowFn(CodeGenFunction &CGF) {
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 McCall61c16012011-07-10 20:11:30 +000059 llvm::FunctionType::get(CGF.VoidTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000060
Mike Stumpb4eea692009-11-20 00:56:31 +000061 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_rethrow");
62}
63
John McCallf1549f62010-07-06 01:34:17 +000064static llvm::Constant *getGetExceptionPtrFn(CodeGenFunction &CGF) {
65 // 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 =
Jay Foadda549e82011-07-29 13:56:53 +000068 llvm::FunctionType::get(CGF.Int8PtrTy, CGF.Int8PtrTy, /*IsVarArgs=*/false);
John McCallf1549f62010-07-06 01:34:17 +000069
70 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_get_exception_ptr");
71}
72
Mike Stump2bf701e2009-11-20 23:44:51 +000073static llvm::Constant *getBeginCatchFn(CodeGenFunction &CGF) {
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 =
Jay Foadda549e82011-07-29 13:56:53 +000077 llvm::FunctionType::get(CGF.Int8PtrTy, CGF.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000078
Mike Stump2bf701e2009-11-20 23:44:51 +000079 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_begin_catch");
80}
81
82static llvm::Constant *getEndCatchFn(CodeGenFunction &CGF) {
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 McCall61c16012011-07-10 20:11:30 +000086 llvm::FunctionType::get(CGF.VoidTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000087
Mike Stump2bf701e2009-11-20 23:44:51 +000088 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_end_catch");
89}
90
Mike Stumpcce3d4f2009-12-07 23:38:24 +000091static llvm::Constant *getUnexpectedFn(CodeGenFunction &CGF) {
92 // void __cxa_call_unexepcted(void *thrown_exception);
93
Chris Lattner2acc6e32011-07-18 04:24:23 +000094 llvm::FunctionType *FTy =
Jay Foadda549e82011-07-29 13:56:53 +000095 llvm::FunctionType::get(CGF.VoidTy, CGF.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump8755ec32009-12-10 00:06:18 +000096
Mike Stumpcce3d4f2009-12-07 23:38:24 +000097 return CGF.CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected");
98}
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
Mike Stump99533832009-12-02 07:41:41 +0000118static llvm::Constant *getTerminateFn(CodeGenFunction &CGF) {
119 // void __terminate();
120
Chris Lattner2acc6e32011-07-18 04:24:23 +0000121 llvm::FunctionType *FTy =
John McCall61c16012011-07-10 20:11:30 +0000122 llvm::FunctionType::get(CGF.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().
David Blaikie4e4d0842012-03-11 07:00:24 +0000127 if (CGF.getLangOpts().CPlusPlus)
John McCall256a76e2011-07-06 01:22:26 +0000128 name = "_ZSt9terminatev"; // FIXME: mangling!
David Blaikie4e4d0842012-03-11 07:00:24 +0000129 else if (CGF.getLangOpts().ObjC1 &&
John McCall260611a2012-06-20 06:18:46 +0000130 CGF.getLangOpts().ObjCRuntime.hasTerminate())
John McCall256a76e2011-07-06 01:22:26 +0000131 name = "objc_terminate";
132 else
133 name = "abort";
134 return CGF.CGM.CreateRuntimeFunction(FTy, name);
David Chisnall79a9ad82010-05-17 13:49:20 +0000135}
136
John McCall8262b6a2010-07-17 00:43:08 +0000137static llvm::Constant *getCatchallRethrowFn(CodeGenFunction &CGF,
Chris Lattner5f9e2722011-07-23 10:55:15 +0000138 StringRef Name) {
Chris Lattner2acc6e32011-07-18 04:24:23 +0000139 llvm::FunctionType *FTy =
Jay Foadda549e82011-07-29 13:56:53 +0000140 llvm::FunctionType::get(CGF.VoidTy, CGF.Int8PtrTy, /*IsVarArgs=*/false);
John McCall8262b6a2010-07-17 00:43:08 +0000141
142 return CGF.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;
159 static const EHPersonality GNU_ObjCXX;
160 static const EHPersonality NeXT_ObjC;
161 static const EHPersonality GNU_CPlusPlus;
162 static const EHPersonality GNU_CPlusPlus_SJLJ;
163 };
164}
165
166const EHPersonality EHPersonality::GNU_C = { "__gcc_personality_v0", 0 };
167const EHPersonality EHPersonality::GNU_C_SJLJ = { "__gcc_personality_sj0", 0 };
168const EHPersonality EHPersonality::NeXT_ObjC = { "__objc_personality_v0", 0 };
169const EHPersonality EHPersonality::GNU_CPlusPlus = { "__gxx_personality_v0", 0};
170const EHPersonality
171EHPersonality::GNU_CPlusPlus_SJLJ = { "__gxx_personality_sj0", 0 };
172const EHPersonality
173EHPersonality::GNU_ObjC = {"__gnu_objc_personality_v0", "objc_exception_throw"};
174const EHPersonality
175EHPersonality::GNU_ObjCXX = { "__gnustep_objcxx_personality_v0", 0 };
John McCall8262b6a2010-07-17 00:43:08 +0000176
177static const EHPersonality &getCPersonality(const LangOptions &L) {
John McCall44680782010-11-07 02:35:25 +0000178 if (L.SjLjExceptions)
179 return EHPersonality::GNU_C_SJLJ;
John McCall8262b6a2010-07-17 00:43:08 +0000180 return EHPersonality::GNU_C;
181}
182
183static const EHPersonality &getObjCPersonality(const LangOptions &L) {
John McCall260611a2012-06-20 06:18:46 +0000184 switch (L.ObjCRuntime.getKind()) {
185 case ObjCRuntime::FragileMacOSX:
186 return getCPersonality(L);
187 case ObjCRuntime::MacOSX:
188 case ObjCRuntime::iOS:
189 return EHPersonality::NeXT_ObjC;
David Chisnall11d3f4c2012-07-03 20:49:52 +0000190 case ObjCRuntime::GNUstep:
191 case ObjCRuntime::GCC:
John McCallf7226fb2012-07-12 02:07:58 +0000192 case ObjCRuntime::ObjFW:
John McCall8262b6a2010-07-17 00:43:08 +0000193 return EHPersonality::GNU_ObjC;
John McCallf1549f62010-07-06 01:34:17 +0000194 }
John McCall260611a2012-06-20 06:18:46 +0000195 llvm_unreachable("bad runtime kind");
John McCallf1549f62010-07-06 01:34:17 +0000196}
197
John McCall8262b6a2010-07-17 00:43:08 +0000198static const EHPersonality &getCXXPersonality(const LangOptions &L) {
199 if (L.SjLjExceptions)
200 return EHPersonality::GNU_CPlusPlus_SJLJ;
John McCallf1549f62010-07-06 01:34:17 +0000201 else
John McCall8262b6a2010-07-17 00:43:08 +0000202 return EHPersonality::GNU_CPlusPlus;
John McCallf1549f62010-07-06 01:34:17 +0000203}
204
205/// Determines the personality function to use when both C++
206/// and Objective-C exceptions are being caught.
John McCall8262b6a2010-07-17 00:43:08 +0000207static const EHPersonality &getObjCXXPersonality(const LangOptions &L) {
John McCall260611a2012-06-20 06:18:46 +0000208 switch (L.ObjCRuntime.getKind()) {
John McCallf1549f62010-07-06 01:34:17 +0000209 // The ObjC personality defers to the C++ personality for non-ObjC
210 // handlers. Unlike the C++ case, we use the same personality
211 // function on targets using (backend-driven) SJLJ EH.
John McCall260611a2012-06-20 06:18:46 +0000212 case ObjCRuntime::MacOSX:
213 case ObjCRuntime::iOS:
214 return EHPersonality::NeXT_ObjC;
John McCallf1549f62010-07-06 01:34:17 +0000215
John McCall260611a2012-06-20 06:18:46 +0000216 // In the fragile ABI, just use C++ exception handling and hope
217 // they're not doing crazy exception mixing.
218 case ObjCRuntime::FragileMacOSX:
219 return getCXXPersonality(L);
David Chisnall79a9ad82010-05-17 13:49:20 +0000220
David Chisnall11d3f4c2012-07-03 20:49:52 +0000221 // The GCC runtime's personality function inherently doesn't support
John McCall8262b6a2010-07-17 00:43:08 +0000222 // mixed EH. Use the C++ personality just to avoid returning null.
David Chisnall11d3f4c2012-07-03 20:49:52 +0000223 case ObjCRuntime::GCC:
John McCallf7226fb2012-07-12 02:07:58 +0000224 case ObjCRuntime::ObjFW: // XXX: this will change soon
David Chisnall11d3f4c2012-07-03 20:49:52 +0000225 return EHPersonality::GNU_ObjC;
226 case ObjCRuntime::GNUstep:
John McCall260611a2012-06-20 06:18:46 +0000227 return EHPersonality::GNU_ObjCXX;
228 }
229 llvm_unreachable("bad runtime kind");
John McCallf1549f62010-07-06 01:34:17 +0000230}
231
John McCall8262b6a2010-07-17 00:43:08 +0000232const EHPersonality &EHPersonality::get(const LangOptions &L) {
233 if (L.CPlusPlus && L.ObjC1)
234 return getObjCXXPersonality(L);
235 else if (L.CPlusPlus)
236 return getCXXPersonality(L);
237 else if (L.ObjC1)
238 return getObjCPersonality(L);
John McCallf1549f62010-07-06 01:34:17 +0000239 else
John McCall8262b6a2010-07-17 00:43:08 +0000240 return getCPersonality(L);
241}
John McCallf1549f62010-07-06 01:34:17 +0000242
John McCallb2593832010-09-16 06:16:50 +0000243static llvm::Constant *getPersonalityFn(CodeGenModule &CGM,
John McCall8262b6a2010-07-17 00:43:08 +0000244 const EHPersonality &Personality) {
John McCall8262b6a2010-07-17 00:43:08 +0000245 llvm::Constant *Fn =
Chris Lattner8b418682012-02-07 00:39:47 +0000246 CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true),
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000247 Personality.PersonalityFn);
John McCallb2593832010-09-16 06:16:50 +0000248 return Fn;
249}
250
251static llvm::Constant *getOpaquePersonalityFn(CodeGenModule &CGM,
252 const EHPersonality &Personality) {
253 llvm::Constant *Fn = getPersonalityFn(CGM, Personality);
John McCalld16c2cf2011-02-08 08:22:06 +0000254 return llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy);
John McCallb2593832010-09-16 06:16:50 +0000255}
256
257/// Check whether a personality function could reasonably be swapped
258/// for a C++ personality function.
259static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) {
260 for (llvm::Constant::use_iterator
261 I = Fn->use_begin(), E = Fn->use_end(); I != E; ++I) {
262 llvm::User *User = *I;
263
264 // Conditionally white-list bitcasts.
265 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(User)) {
266 if (CE->getOpcode() != llvm::Instruction::BitCast) return false;
267 if (!PersonalityHasOnlyCXXUses(CE))
268 return false;
269 continue;
270 }
271
Bill Wendling40ccacc2011-09-19 22:08:36 +0000272 // Otherwise, it has to be a landingpad instruction.
273 llvm::LandingPadInst *LPI = dyn_cast<llvm::LandingPadInst>(User);
274 if (!LPI) return false;
John McCallb2593832010-09-16 06:16:50 +0000275
Bill Wendling40ccacc2011-09-19 22:08:36 +0000276 for (unsigned I = 0, E = LPI->getNumClauses(); I != E; ++I) {
John McCallb2593832010-09-16 06:16:50 +0000277 // Look for something that would've been returned by the ObjC
278 // runtime's GetEHType() method.
Bill Wendling40ccacc2011-09-19 22:08:36 +0000279 llvm::Value *Val = LPI->getClause(I)->stripPointerCasts();
280 if (LPI->isCatch(I)) {
281 // Check if the catch value has the ObjC prefix.
Bill Wendlingeecb6a12011-09-20 00:40:19 +0000282 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
283 // ObjC EH selector entries are always global variables with
284 // names starting like this.
285 if (GV->getName().startswith("OBJC_EHTYPE"))
286 return false;
Bill Wendling40ccacc2011-09-19 22:08:36 +0000287 } else {
288 // Check if any of the filter values have the ObjC prefix.
289 llvm::Constant *CVal = cast<llvm::Constant>(Val);
290 for (llvm::User::op_iterator
291 II = CVal->op_begin(), IE = CVal->op_end(); II != IE; ++II) {
Bill Wendlingeecb6a12011-09-20 00:40:19 +0000292 if (llvm::GlobalVariable *GV =
293 cast<llvm::GlobalVariable>((*II)->stripPointerCasts()))
294 // ObjC EH selector entries are always global variables with
295 // names starting like this.
296 if (GV->getName().startswith("OBJC_EHTYPE"))
297 return false;
Bill Wendling40ccacc2011-09-19 22:08:36 +0000298 }
299 }
John McCallb2593832010-09-16 06:16:50 +0000300 }
301 }
302
303 return true;
304}
305
306/// Try to use the C++ personality function in ObjC++. Not doing this
307/// can cause some incompatibilities with gcc, which is more
308/// aggressive about only using the ObjC++ personality in a function
309/// when it really needs it.
310void CodeGenModule::SimplifyPersonality() {
John McCallb2593832010-09-16 06:16:50 +0000311 // If we're not in ObjC++ -fexceptions, there's nothing to do.
David Blaikie4e4d0842012-03-11 07:00:24 +0000312 if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions)
John McCallb2593832010-09-16 06:16:50 +0000313 return;
314
John McCall70cd6192012-11-14 17:48:31 +0000315 // Both the problem this endeavors to fix and the way the logic
316 // above works is specific to the NeXT runtime.
317 if (!LangOpts.ObjCRuntime.isNeXTFamily())
318 return;
319
David Blaikie4e4d0842012-03-11 07:00:24 +0000320 const EHPersonality &ObjCXX = EHPersonality::get(LangOpts);
321 const EHPersonality &CXX = getCXXPersonality(LangOpts);
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000322 if (&ObjCXX == &CXX)
John McCallb2593832010-09-16 06:16:50 +0000323 return;
324
Benjamin Krameraf2771b2012-02-08 12:41:24 +0000325 assert(std::strcmp(ObjCXX.PersonalityFn, CXX.PersonalityFn) != 0 &&
326 "Different EHPersonalities using the same personality function.");
327
328 llvm::Function *Fn = getModule().getFunction(ObjCXX.PersonalityFn);
John McCallb2593832010-09-16 06:16:50 +0000329
330 // Nothing to do if it's unused.
331 if (!Fn || Fn->use_empty()) return;
332
333 // Can't do the optimization if it has non-C++ uses.
334 if (!PersonalityHasOnlyCXXUses(Fn)) return;
335
336 // Create the C++ personality function and kill off the old
337 // function.
338 llvm::Constant *CXXFn = getPersonalityFn(*this, CXX);
339
340 // This can happen if the user is screwing with us.
341 if (Fn->getType() != CXXFn->getType()) return;
342
343 Fn->replaceAllUsesWith(CXXFn);
344 Fn->eraseFromParent();
John McCallf1549f62010-07-06 01:34:17 +0000345}
346
347/// Returns the value to inject into a selector to indicate the
348/// presence of a catch-all.
349static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) {
350 // Possibly we should use @llvm.eh.catch.all.value here.
John McCalld16c2cf2011-02-08 08:22:06 +0000351 return llvm::ConstantPointerNull::get(CGF.Int8PtrTy);
John McCallf1549f62010-07-06 01:34:17 +0000352}
353
John McCall09faeab2010-07-13 21:17:51 +0000354namespace {
355 /// A cleanup to free the exception object if its initialization
356 /// throws.
John McCallc4a1a842011-07-12 00:15:30 +0000357 struct FreeException : EHScopeStack::Cleanup {
358 llvm::Value *exn;
359 FreeException(llvm::Value *exn) : exn(exn) {}
John McCallad346f42011-07-12 20:27:29 +0000360 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall3ad32c82011-01-28 08:37:24 +0000361 CGF.Builder.CreateCall(getFreeExceptionFn(CGF), exn)
John McCall09faeab2010-07-13 21:17:51 +0000362 ->setDoesNotThrow();
John McCall09faeab2010-07-13 21:17:51 +0000363 }
364 };
365}
366
John McCallac418162010-04-22 01:10:34 +0000367// Emits an exception expression into the given location. This
368// differs from EmitAnyExprToMem only in that, if a final copy-ctor
369// call is required, an exception within that copy ctor causes
370// std::terminate to be invoked.
John McCall3ad32c82011-01-28 08:37:24 +0000371static void EmitAnyExprToExn(CodeGenFunction &CGF, const Expr *e,
372 llvm::Value *addr) {
John McCallf1549f62010-07-06 01:34:17 +0000373 // Make sure the exception object is cleaned up if there's an
374 // exception during initialization.
John McCall3ad32c82011-01-28 08:37:24 +0000375 CGF.pushFullExprCleanup<FreeException>(EHCleanup, addr);
376 EHScopeStack::stable_iterator cleanup = CGF.EHStack.stable_begin();
John McCallac418162010-04-22 01:10:34 +0000377
378 // __cxa_allocate_exception returns a void*; we need to cast this
379 // to the appropriate type for the object.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000380 llvm::Type *ty = CGF.ConvertTypeForMem(e->getType())->getPointerTo();
John McCall3ad32c82011-01-28 08:37:24 +0000381 llvm::Value *typedAddr = CGF.Builder.CreateBitCast(addr, ty);
John McCallac418162010-04-22 01:10:34 +0000382
383 // FIXME: this isn't quite right! If there's a final unelided call
384 // to a copy constructor, then according to [except.terminate]p1 we
385 // must call std::terminate() if that constructor throws, because
386 // technically that copy occurs after the exception expression is
387 // evaluated but before the exception is caught. But the best way
388 // to handle that is to teach EmitAggExpr to do the final copy
389 // differently if it can't be elided.
Chad Rosier649b4a12012-03-29 17:37:10 +0000390 CGF.EmitAnyExprToMem(e, typedAddr, e->getType().getQualifiers(),
391 /*IsInit*/ true);
John McCallac418162010-04-22 01:10:34 +0000392
John McCall3ad32c82011-01-28 08:37:24 +0000393 // Deactivate the cleanup block.
John McCall6f103ba2011-11-10 10:43:54 +0000394 CGF.DeactivateCleanupBlock(cleanup, cast<llvm::Instruction>(typedAddr));
Mike Stump0f590be2009-12-01 03:41:18 +0000395}
396
John McCallf1549f62010-07-06 01:34:17 +0000397llvm::Value *CodeGenFunction::getExceptionSlot() {
John McCall93c332a2011-05-28 21:13:02 +0000398 if (!ExceptionSlot)
399 ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot");
John McCallf1549f62010-07-06 01:34:17 +0000400 return ExceptionSlot;
Mike Stump0f590be2009-12-01 03:41:18 +0000401}
402
John McCall93c332a2011-05-28 21:13:02 +0000403llvm::Value *CodeGenFunction::getEHSelectorSlot() {
404 if (!EHSelectorSlot)
405 EHSelectorSlot = CreateTempAlloca(Int32Ty, "ehselector.slot");
406 return EHSelectorSlot;
407}
408
Bill Wendlingae270592011-09-15 18:57:19 +0000409llvm::Value *CodeGenFunction::getExceptionFromSlot() {
410 return Builder.CreateLoad(getExceptionSlot(), "exn");
411}
412
413llvm::Value *CodeGenFunction::getSelectorFromSlot() {
414 return Builder.CreateLoad(getEHSelectorSlot(), "sel");
415}
416
Anders Carlsson756b5c42009-10-30 01:42:31 +0000417void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E) {
Anders Carlssond3379292009-10-30 02:27:02 +0000418 if (!E->getSubExpr()) {
Douglas Gregor1eb2e592010-05-16 00:44:00 +0000419 if (getInvokeDest()) {
John McCallf1549f62010-07-06 01:34:17 +0000420 Builder.CreateInvoke(getReThrowFn(*this),
421 getUnreachableBlock(),
422 getInvokeDest())
Douglas Gregor1eb2e592010-05-16 00:44:00 +0000423 ->setDoesNotReturn();
John McCallf1549f62010-07-06 01:34:17 +0000424 } else {
Douglas Gregor1eb2e592010-05-16 00:44:00 +0000425 Builder.CreateCall(getReThrowFn(*this))->setDoesNotReturn();
John McCallf1549f62010-07-06 01:34:17 +0000426 Builder.CreateUnreachable();
427 }
Douglas Gregor1eb2e592010-05-16 00:44:00 +0000428
John McCallcd5b22e2011-01-12 03:41:02 +0000429 // throw is an expression, and the expression emitters expect us
430 // to leave ourselves at a valid insertion point.
431 EmitBlock(createBasicBlock("throw.cont"));
432
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.
445 EmitBlock(createBasicBlock("throw.cont"));
446 return;
447 }
448
Anders Carlssond3379292009-10-30 02:27:02 +0000449 // Now allocate the exception object.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000450 llvm::Type *SizeTy = ConvertType(getContext().getSizeType());
John McCall3d3ec1c2010-04-21 10:05:39 +0000451 uint64_t TypeSize = getContext().getTypeSizeInChars(ThrowType).getQuantity();
Mike Stump8755ec32009-12-10 00:06:18 +0000452
Anders Carlssond3379292009-10-30 02:27:02 +0000453 llvm::Constant *AllocExceptionFn = getAllocateExceptionFn(*this);
John McCallf1549f62010-07-06 01:34:17 +0000454 llvm::CallInst *ExceptionPtr =
Mike Stump8755ec32009-12-10 00:06:18 +0000455 Builder.CreateCall(AllocExceptionFn,
Anders Carlssond3379292009-10-30 02:27:02 +0000456 llvm::ConstantInt::get(SizeTy, TypeSize),
457 "exception");
John McCallf1549f62010-07-06 01:34:17 +0000458 ExceptionPtr->setDoesNotThrow();
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
Mike Stump0a3816e2009-12-04 01:51:45 +0000479 if (getInvokeDest()) {
Mike Stump8755ec32009-12-10 00:06:18 +0000480 llvm::InvokeInst *ThrowCall =
John McCallf1549f62010-07-06 01:34:17 +0000481 Builder.CreateInvoke3(getThrowFn(*this),
482 getUnreachableBlock(), getInvokeDest(),
Mike Stump0a3816e2009-12-04 01:51:45 +0000483 ExceptionPtr, TypeInfo, Dtor);
484 ThrowCall->setDoesNotReturn();
Mike Stump0a3816e2009-12-04 01:51:45 +0000485 } else {
Mike Stump8755ec32009-12-10 00:06:18 +0000486 llvm::CallInst *ThrowCall =
Mike Stump0a3816e2009-12-04 01:51:45 +0000487 Builder.CreateCall3(getThrowFn(*this), ExceptionPtr, TypeInfo, Dtor);
488 ThrowCall->setDoesNotReturn();
John McCallf1549f62010-07-06 01:34:17 +0000489 Builder.CreateUnreachable();
Mike Stump0a3816e2009-12-04 01:51:45 +0000490 }
Mike Stump8755ec32009-12-10 00:06:18 +0000491
John McCallcd5b22e2011-01-12 03:41:02 +0000492 // throw is an expression, and the expression emitters expect us
493 // to leave ourselves at a valid insertion point.
494 EmitBlock(createBasicBlock("throw.cont"));
Anders Carlsson756b5c42009-10-30 01:42:31 +0000495}
Mike Stump2bf701e2009-11-20 23:44:51 +0000496
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000497void CodeGenFunction::EmitStartEHSpec(const Decl *D) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000498 if (!CGM.getLangOpts().CXXExceptions)
Anders Carlssona994ee42010-02-06 23:59:05 +0000499 return;
500
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000501 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
502 if (FD == 0)
503 return;
504 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
505 if (Proto == 0)
506 return;
507
Sebastian Redla968e972011-03-15 18:42:48 +0000508 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
509 if (isNoexceptExceptionSpec(EST)) {
510 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
511 // noexcept functions are simple terminate scopes.
512 EHStack.pushTerminate();
513 }
514 } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
515 unsigned NumExceptions = Proto->getNumExceptions();
516 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000517
Sebastian Redla968e972011-03-15 18:42:48 +0000518 for (unsigned I = 0; I != NumExceptions; ++I) {
519 QualType Ty = Proto->getExceptionType(I);
520 QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType();
521 llvm::Value *EHType = CGM.GetAddrOfRTTIDescriptor(ExceptType,
522 /*ForEH=*/true);
523 Filter->setFilter(I, EHType);
524 }
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000525 }
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000526}
527
John McCall777d6e52011-08-11 02:22:43 +0000528/// Emit the dispatch block for a filter scope if necessary.
529static void emitFilterDispatchBlock(CodeGenFunction &CGF,
530 EHFilterScope &filterScope) {
531 llvm::BasicBlock *dispatchBlock = filterScope.getCachedEHDispatchBlock();
532 if (!dispatchBlock) return;
533 if (dispatchBlock->use_empty()) {
534 delete dispatchBlock;
535 return;
536 }
537
John McCall777d6e52011-08-11 02:22:43 +0000538 CGF.EmitBlockAfterUses(dispatchBlock);
539
540 // If this isn't a catch-all filter, we need to check whether we got
541 // here because the filter triggered.
542 if (filterScope.getNumFilters()) {
543 // Load the selector value.
Bill Wendlingae270592011-09-15 18:57:19 +0000544 llvm::Value *selector = CGF.getSelectorFromSlot();
John McCall777d6e52011-08-11 02:22:43 +0000545 llvm::BasicBlock *unexpectedBB = CGF.createBasicBlock("ehspec.unexpected");
546
547 llvm::Value *zero = CGF.Builder.getInt32(0);
548 llvm::Value *failsFilter =
549 CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails");
David Chisnallc6860042012-11-07 16:50:40 +0000550 CGF.Builder.CreateCondBr(failsFilter, unexpectedBB, CGF.getEHResumeBlock(false));
John McCall777d6e52011-08-11 02:22:43 +0000551
552 CGF.EmitBlock(unexpectedBB);
553 }
554
555 // Call __cxa_call_unexpected. This doesn't need to be an invoke
556 // because __cxa_call_unexpected magically filters exceptions
557 // according to the last landing pad the exception was thrown
558 // into. Seriously.
Bill Wendlingae270592011-09-15 18:57:19 +0000559 llvm::Value *exn = CGF.getExceptionFromSlot();
John McCall777d6e52011-08-11 02:22:43 +0000560 CGF.Builder.CreateCall(getUnexpectedFn(CGF), exn)
561 ->setDoesNotReturn();
562 CGF.Builder.CreateUnreachable();
563}
564
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000565void CodeGenFunction::EmitEndEHSpec(const Decl *D) {
David Blaikie4e4d0842012-03-11 07:00:24 +0000566 if (!CGM.getLangOpts().CXXExceptions)
Anders Carlssona994ee42010-02-06 23:59:05 +0000567 return;
568
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000569 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
570 if (FD == 0)
571 return;
572 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
573 if (Proto == 0)
574 return;
575
Sebastian Redla968e972011-03-15 18:42:48 +0000576 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
577 if (isNoexceptExceptionSpec(EST)) {
578 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
579 EHStack.popTerminate();
580 }
581 } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
John McCall777d6e52011-08-11 02:22:43 +0000582 EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin());
583 emitFilterDispatchBlock(*this, filterScope);
Sebastian Redla968e972011-03-15 18:42:48 +0000584 EHStack.popFilter();
585 }
Mike Stumpcce3d4f2009-12-07 23:38:24 +0000586}
587
Mike Stump2bf701e2009-11-20 23:44:51 +0000588void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
John McCall59a70002010-07-07 06:56:46 +0000589 EnterCXXTryStmt(S);
John McCall9fc6a772010-02-19 09:25:03 +0000590 EmitStmt(S.getTryBlock());
John McCall59a70002010-07-07 06:56:46 +0000591 ExitCXXTryStmt(S);
John McCall9fc6a772010-02-19 09:25:03 +0000592}
593
John McCall59a70002010-07-07 06:56:46 +0000594void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
John McCallf1549f62010-07-06 01:34:17 +0000595 unsigned NumHandlers = S.getNumHandlers();
596 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers);
John McCall9fc6a772010-02-19 09:25:03 +0000597
John McCallf1549f62010-07-06 01:34:17 +0000598 for (unsigned I = 0; I != NumHandlers; ++I) {
599 const CXXCatchStmt *C = S.getHandler(I);
John McCall9fc6a772010-02-19 09:25:03 +0000600
John McCallf1549f62010-07-06 01:34:17 +0000601 llvm::BasicBlock *Handler = createBasicBlock("catch");
602 if (C->getExceptionDecl()) {
603 // FIXME: Dropping the reference type on the type into makes it
604 // impossible to correctly implement catch-by-reference
605 // semantics for pointers. Unfortunately, this is what all
606 // existing compilers do, and it's not clear that the standard
607 // personality routine is capable of doing this right. See C++ DR 388:
608 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#388
609 QualType CaughtType = C->getCaughtType();
610 CaughtType = CaughtType.getNonReferenceType().getUnqualifiedType();
John McCall5a180392010-07-24 00:37:23 +0000611
612 llvm::Value *TypeInfo = 0;
613 if (CaughtType->isObjCObjectPointerType())
Fariborz Jahaniancf5abc72011-06-23 19:00:08 +0000614 TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType);
John McCall5a180392010-07-24 00:37:23 +0000615 else
Anders Carlsson82a113a2011-01-24 01:59:49 +0000616 TypeInfo = CGM.GetAddrOfRTTIDescriptor(CaughtType, /*ForEH=*/true);
John McCallf1549f62010-07-06 01:34:17 +0000617 CatchScope->setHandler(I, TypeInfo, Handler);
618 } else {
619 // No exception decl indicates '...', a catch-all.
620 CatchScope->setCatchAllHandler(I, Handler);
621 }
622 }
John McCallf1549f62010-07-06 01:34:17 +0000623}
624
John McCall777d6e52011-08-11 02:22:43 +0000625llvm::BasicBlock *
626CodeGenFunction::getEHDispatchBlock(EHScopeStack::stable_iterator si) {
627 // The dispatch block for the end of the scope chain is a block that
628 // just resumes unwinding.
629 if (si == EHStack.stable_end())
David Chisnallc6860042012-11-07 16:50:40 +0000630 return getEHResumeBlock(true);
John McCall777d6e52011-08-11 02:22:43 +0000631
632 // Otherwise, we should look at the actual scope.
633 EHScope &scope = *EHStack.find(si);
634
635 llvm::BasicBlock *dispatchBlock = scope.getCachedEHDispatchBlock();
636 if (!dispatchBlock) {
637 switch (scope.getKind()) {
638 case EHScope::Catch: {
639 // Apply a special case to a single catch-all.
640 EHCatchScope &catchScope = cast<EHCatchScope>(scope);
641 if (catchScope.getNumHandlers() == 1 &&
642 catchScope.getHandler(0).isCatchAll()) {
643 dispatchBlock = catchScope.getHandler(0).Block;
644
645 // Otherwise, make a dispatch block.
646 } else {
647 dispatchBlock = createBasicBlock("catch.dispatch");
648 }
649 break;
650 }
651
652 case EHScope::Cleanup:
653 dispatchBlock = createBasicBlock("ehcleanup");
654 break;
655
656 case EHScope::Filter:
657 dispatchBlock = createBasicBlock("filter.dispatch");
658 break;
659
660 case EHScope::Terminate:
661 dispatchBlock = getTerminateHandler();
662 break;
663 }
664 scope.setCachedEHDispatchBlock(dispatchBlock);
665 }
666 return dispatchBlock;
667}
668
John McCallf1549f62010-07-06 01:34:17 +0000669/// Check whether this is a non-EH scope, i.e. a scope which doesn't
670/// affect exception handling. Currently, the only non-EH scopes are
671/// normal-only cleanup scopes.
672static bool isNonEHScope(const EHScope &S) {
John McCallda65ea82010-07-13 20:32:21 +0000673 switch (S.getKind()) {
John McCall1f0fca52010-07-21 07:22:38 +0000674 case EHScope::Cleanup:
675 return !cast<EHCleanupScope>(S).isEHCleanup();
John McCallda65ea82010-07-13 20:32:21 +0000676 case EHScope::Filter:
677 case EHScope::Catch:
678 case EHScope::Terminate:
679 return false;
680 }
681
David Blaikie30263482012-01-20 21:50:17 +0000682 llvm_unreachable("Invalid EHScope Kind!");
John McCallf1549f62010-07-06 01:34:17 +0000683}
684
685llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() {
686 assert(EHStack.requiresLandingPad());
687 assert(!EHStack.empty());
688
David Blaikie4e4d0842012-03-11 07:00:24 +0000689 if (!CGM.getLangOpts().Exceptions)
John McCallda65ea82010-07-13 20:32:21 +0000690 return 0;
691
John McCallf1549f62010-07-06 01:34:17 +0000692 // Check the innermost scope for a cached landing pad. If this is
693 // a non-EH cleanup, we'll check enclosing scopes in EmitLandingPad.
694 llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad();
695 if (LP) return LP;
696
697 // Build the landing pad for this scope.
698 LP = EmitLandingPad();
699 assert(LP);
700
701 // Cache the landing pad on the innermost scope. If this is a
702 // non-EH scope, cache the landing pad on the enclosing scope, too.
703 for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) {
704 ir->setCachedLandingPad(LP);
705 if (!isNonEHScope(*ir)) break;
706 }
707
708 return LP;
709}
710
John McCall93c332a2011-05-28 21:13:02 +0000711// This code contains a hack to work around a design flaw in
712// LLVM's EH IR which breaks semantics after inlining. This same
713// hack is implemented in llvm-gcc.
714//
715// The LLVM EH abstraction is basically a thin veneer over the
716// traditional GCC zero-cost design: for each range of instructions
717// in the function, there is (at most) one "landing pad" with an
718// associated chain of EH actions. A language-specific personality
719// function interprets this chain of actions and (1) decides whether
720// or not to resume execution at the landing pad and (2) if so,
721// provides an integer indicating why it's stopping. In LLVM IR,
722// the association of a landing pad with a range of instructions is
723// achieved via an invoke instruction, the chain of actions becomes
724// the arguments to the @llvm.eh.selector call, and the selector
725// call returns the integer indicator. Other than the required
726// presence of two intrinsic function calls in the landing pad,
727// the IR exactly describes the layout of the output code.
728//
729// A principal advantage of this design is that it is completely
730// language-agnostic; in theory, the LLVM optimizers can treat
731// landing pads neutrally, and targets need only know how to lower
732// the intrinsics to have a functioning exceptions system (assuming
733// that platform exceptions follow something approximately like the
734// GCC design). Unfortunately, landing pads cannot be combined in a
735// language-agnostic way: given selectors A and B, there is no way
736// to make a single landing pad which faithfully represents the
737// semantics of propagating an exception first through A, then
738// through B, without knowing how the personality will interpret the
739// (lowered form of the) selectors. This means that inlining has no
740// choice but to crudely chain invokes (i.e., to ignore invokes in
741// the inlined function, but to turn all unwindable calls into
742// invokes), which is only semantically valid if every unwind stops
743// at every landing pad.
744//
745// Therefore, the invoke-inline hack is to guarantee that every
746// landing pad has a catch-all.
747enum CleanupHackLevel_t {
748 /// A level of hack that requires that all landing pads have
749 /// catch-alls.
750 CHL_MandatoryCatchall,
751
752 /// A level of hack that requires that all landing pads handle
753 /// cleanups.
754 CHL_MandatoryCleanup,
755
756 /// No hacks at all; ideal IR generation.
757 CHL_Ideal
758};
759const CleanupHackLevel_t CleanupHackLevel = CHL_MandatoryCleanup;
760
John McCallf1549f62010-07-06 01:34:17 +0000761llvm::BasicBlock *CodeGenFunction::EmitLandingPad() {
762 assert(EHStack.requiresLandingPad());
763
John McCall777d6e52011-08-11 02:22:43 +0000764 EHScope &innermostEHScope = *EHStack.find(EHStack.getInnermostEHScope());
765 switch (innermostEHScope.getKind()) {
766 case EHScope::Terminate:
767 return getTerminateLandingPad();
John McCallf1549f62010-07-06 01:34:17 +0000768
John McCall777d6e52011-08-11 02:22:43 +0000769 case EHScope::Catch:
770 case EHScope::Cleanup:
771 case EHScope::Filter:
772 if (llvm::BasicBlock *lpad = innermostEHScope.getCachedLandingPad())
773 return lpad;
John McCallf1549f62010-07-06 01:34:17 +0000774 }
775
776 // Save the current IR generation state.
John McCall777d6e52011-08-11 02:22:43 +0000777 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
John McCallf1549f62010-07-06 01:34:17 +0000778
David Blaikie4e4d0842012-03-11 07:00:24 +0000779 const EHPersonality &personality = EHPersonality::get(getLangOpts());
John McCall8262b6a2010-07-17 00:43:08 +0000780
John McCallf1549f62010-07-06 01:34:17 +0000781 // Create and configure the landing pad.
John McCall777d6e52011-08-11 02:22:43 +0000782 llvm::BasicBlock *lpad = createBasicBlock("lpad");
783 EmitBlock(lpad);
John McCallf1549f62010-07-06 01:34:17 +0000784
Bill Wendling285cfd82011-09-19 20:31:14 +0000785 llvm::LandingPadInst *LPadInst =
786 Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
787 getOpaquePersonalityFn(CGM, personality), 0);
788
789 llvm::Value *LPadExn = Builder.CreateExtractValue(LPadInst, 0);
790 Builder.CreateStore(LPadExn, getExceptionSlot());
791 llvm::Value *LPadSel = Builder.CreateExtractValue(LPadInst, 1);
792 Builder.CreateStore(LPadSel, getEHSelectorSlot());
793
John McCallf1549f62010-07-06 01:34:17 +0000794 // Save the exception pointer. It's safe to use a single exception
795 // pointer per function because EH cleanups can never have nested
796 // try/catches.
Bill Wendling285cfd82011-09-19 20:31:14 +0000797 // Build the landingpad instruction.
John McCallf1549f62010-07-06 01:34:17 +0000798
799 // Accumulate all the handlers in scope.
John McCall777d6e52011-08-11 02:22:43 +0000800 bool hasCatchAll = false;
801 bool hasCleanup = false;
802 bool hasFilter = false;
803 SmallVector<llvm::Value*, 4> filterTypes;
804 llvm::SmallPtrSet<llvm::Value*, 4> catchTypes;
John McCallf1549f62010-07-06 01:34:17 +0000805 for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end();
806 I != E; ++I) {
807
808 switch (I->getKind()) {
John McCall1f0fca52010-07-21 07:22:38 +0000809 case EHScope::Cleanup:
John McCall777d6e52011-08-11 02:22:43 +0000810 // If we have a cleanup, remember that.
811 hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup());
John McCallda65ea82010-07-13 20:32:21 +0000812 continue;
813
John McCallf1549f62010-07-06 01:34:17 +0000814 case EHScope::Filter: {
815 assert(I.next() == EHStack.end() && "EH filter is not end of EH stack");
John McCall777d6e52011-08-11 02:22:43 +0000816 assert(!hasCatchAll && "EH filter reached after catch-all");
John McCallf1549f62010-07-06 01:34:17 +0000817
Bill Wendling285cfd82011-09-19 20:31:14 +0000818 // Filter scopes get added to the landingpad in weird ways.
John McCall777d6e52011-08-11 02:22:43 +0000819 EHFilterScope &filter = cast<EHFilterScope>(*I);
820 hasFilter = true;
John McCallf1549f62010-07-06 01:34:17 +0000821
Bill Wendling8990daf2011-09-22 20:32:54 +0000822 // Add all the filter values.
823 for (unsigned i = 0, e = filter.getNumFilters(); i != e; ++i)
824 filterTypes.push_back(filter.getFilter(i));
John McCallf1549f62010-07-06 01:34:17 +0000825 goto done;
826 }
827
828 case EHScope::Terminate:
829 // Terminate scopes are basically catch-alls.
John McCall777d6e52011-08-11 02:22:43 +0000830 assert(!hasCatchAll);
831 hasCatchAll = true;
John McCallf1549f62010-07-06 01:34:17 +0000832 goto done;
833
834 case EHScope::Catch:
835 break;
836 }
837
John McCall777d6e52011-08-11 02:22:43 +0000838 EHCatchScope &catchScope = cast<EHCatchScope>(*I);
839 for (unsigned hi = 0, he = catchScope.getNumHandlers(); hi != he; ++hi) {
840 EHCatchScope::Handler handler = catchScope.getHandler(hi);
John McCallf1549f62010-07-06 01:34:17 +0000841
John McCall777d6e52011-08-11 02:22:43 +0000842 // If this is a catch-all, register that and abort.
843 if (!handler.Type) {
844 assert(!hasCatchAll);
845 hasCatchAll = true;
846 goto done;
John McCallf1549f62010-07-06 01:34:17 +0000847 }
848
849 // Check whether we already have a handler for this type.
Bill Wendling285cfd82011-09-19 20:31:14 +0000850 if (catchTypes.insert(handler.Type))
851 // If not, add it directly to the landingpad.
852 LPadInst->addClause(handler.Type);
John McCallf1549f62010-07-06 01:34:17 +0000853 }
John McCallf1549f62010-07-06 01:34:17 +0000854 }
855
856 done:
Bill Wendling285cfd82011-09-19 20:31:14 +0000857 // If we have a catch-all, add null to the landingpad.
John McCall777d6e52011-08-11 02:22:43 +0000858 assert(!(hasCatchAll && hasFilter));
859 if (hasCatchAll) {
Bill Wendling285cfd82011-09-19 20:31:14 +0000860 LPadInst->addClause(getCatchAllValue(*this));
John McCallf1549f62010-07-06 01:34:17 +0000861
862 // If we have an EH filter, we need to add those handlers in the
Bill Wendling285cfd82011-09-19 20:31:14 +0000863 // right place in the landingpad, which is to say, at the end.
John McCall777d6e52011-08-11 02:22:43 +0000864 } else if (hasFilter) {
Bill Wendling40ccacc2011-09-19 22:08:36 +0000865 // Create a filter expression: a constant array indicating which filter
866 // types there are. The personality routine only lands here if the filter
867 // doesn't match.
Bill Wendling285cfd82011-09-19 20:31:14 +0000868 llvm::SmallVector<llvm::Constant*, 8> Filters;
869 llvm::ArrayType *AType =
870 llvm::ArrayType::get(!filterTypes.empty() ?
871 filterTypes[0]->getType() : Int8PtrTy,
872 filterTypes.size());
873
874 for (unsigned i = 0, e = filterTypes.size(); i != e; ++i)
875 Filters.push_back(cast<llvm::Constant>(filterTypes[i]));
876 llvm::Constant *FilterArray = llvm::ConstantArray::get(AType, Filters);
877 LPadInst->addClause(FilterArray);
John McCallf1549f62010-07-06 01:34:17 +0000878
879 // Also check whether we need a cleanup.
Bill Wendling285cfd82011-09-19 20:31:14 +0000880 if (hasCleanup)
881 LPadInst->setCleanup(true);
John McCallf1549f62010-07-06 01:34:17 +0000882
883 // Otherwise, signal that we at least have cleanups.
John McCall777d6e52011-08-11 02:22:43 +0000884 } else if (CleanupHackLevel == CHL_MandatoryCatchall || hasCleanup) {
Bill Wendling285cfd82011-09-19 20:31:14 +0000885 if (CleanupHackLevel == CHL_MandatoryCatchall)
886 LPadInst->addClause(getCatchAllValue(*this));
887 else
888 LPadInst->setCleanup(true);
John McCallf1549f62010-07-06 01:34:17 +0000889 }
890
Bill Wendling285cfd82011-09-19 20:31:14 +0000891 assert((LPadInst->getNumClauses() > 0 || LPadInst->isCleanup()) &&
892 "landingpad instruction has no clauses!");
John McCallf1549f62010-07-06 01:34:17 +0000893
894 // Tell the backend how to generate the landing pad.
John McCall777d6e52011-08-11 02:22:43 +0000895 Builder.CreateBr(getEHDispatchBlock(EHStack.getInnermostEHScope()));
John McCallf1549f62010-07-06 01:34:17 +0000896
897 // Restore the old IR generation state.
John McCall777d6e52011-08-11 02:22:43 +0000898 Builder.restoreIP(savedIP);
John McCallf1549f62010-07-06 01:34:17 +0000899
John McCall777d6e52011-08-11 02:22:43 +0000900 return lpad;
John McCallf1549f62010-07-06 01:34:17 +0000901}
902
John McCall8e3f8612010-07-13 22:12:14 +0000903namespace {
904 /// A cleanup to call __cxa_end_catch. In many cases, the caught
905 /// exception type lets us state definitively that the thrown exception
906 /// type does not have a destructor. In particular:
907 /// - Catch-alls tell us nothing, so we have to conservatively
908 /// assume that the thrown exception might have a destructor.
909 /// - Catches by reference behave according to their base types.
910 /// - Catches of non-record types will only trigger for exceptions
911 /// of non-record types, which never have destructors.
912 /// - Catches of record types can trigger for arbitrary subclasses
913 /// of the caught type, so we have to assume the actual thrown
914 /// exception type might have a throwing destructor, even if the
915 /// caught type's destructor is trivial or nothrow.
John McCall1f0fca52010-07-21 07:22:38 +0000916 struct CallEndCatch : EHScopeStack::Cleanup {
John McCall8e3f8612010-07-13 22:12:14 +0000917 CallEndCatch(bool MightThrow) : MightThrow(MightThrow) {}
918 bool MightThrow;
919
John McCallad346f42011-07-12 20:27:29 +0000920 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall8e3f8612010-07-13 22:12:14 +0000921 if (!MightThrow) {
922 CGF.Builder.CreateCall(getEndCatchFn(CGF))->setDoesNotThrow();
923 return;
924 }
925
Jay Foad4c7d9f12011-07-15 08:37:34 +0000926 CGF.EmitCallOrInvoke(getEndCatchFn(CGF));
John McCall8e3f8612010-07-13 22:12:14 +0000927 }
928 };
929}
930
John McCallf1549f62010-07-06 01:34:17 +0000931/// Emits a call to __cxa_begin_catch and enters a cleanup to call
932/// __cxa_end_catch.
John McCall8e3f8612010-07-13 22:12:14 +0000933///
934/// \param EndMightThrow - true if __cxa_end_catch might throw
935static llvm::Value *CallBeginCatch(CodeGenFunction &CGF,
936 llvm::Value *Exn,
937 bool EndMightThrow) {
John McCallf1549f62010-07-06 01:34:17 +0000938 llvm::CallInst *Call = CGF.Builder.CreateCall(getBeginCatchFn(CGF), Exn);
939 Call->setDoesNotThrow();
940
John McCall1f0fca52010-07-21 07:22:38 +0000941 CGF.EHStack.pushCleanup<CallEndCatch>(NormalAndEHCleanup, EndMightThrow);
John McCallf1549f62010-07-06 01:34:17 +0000942
943 return Call;
944}
945
946/// A "special initializer" callback for initializing a catch
947/// parameter during catch initialization.
948static void InitCatchParam(CodeGenFunction &CGF,
949 const VarDecl &CatchParam,
950 llvm::Value *ParamAddr) {
951 // Load the exception from where the landing pad saved it.
Bill Wendlingae270592011-09-15 18:57:19 +0000952 llvm::Value *Exn = CGF.getExceptionFromSlot();
John McCallf1549f62010-07-06 01:34:17 +0000953
954 CanQualType CatchType =
955 CGF.CGM.getContext().getCanonicalType(CatchParam.getType());
Chris Lattner2acc6e32011-07-18 04:24:23 +0000956 llvm::Type *LLVMCatchTy = CGF.ConvertTypeForMem(CatchType);
John McCallf1549f62010-07-06 01:34:17 +0000957
958 // If we're catching by reference, we can just cast the object
959 // pointer to the appropriate pointer.
960 if (isa<ReferenceType>(CatchType)) {
John McCall204b0752010-07-20 22:17:55 +0000961 QualType CaughtType = cast<ReferenceType>(CatchType)->getPointeeType();
962 bool EndCatchMightThrow = CaughtType->isRecordType();
John McCall8e3f8612010-07-13 22:12:14 +0000963
John McCallf1549f62010-07-06 01:34:17 +0000964 // __cxa_begin_catch returns the adjusted object pointer.
John McCall8e3f8612010-07-13 22:12:14 +0000965 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, EndCatchMightThrow);
John McCall204b0752010-07-20 22:17:55 +0000966
967 // We have no way to tell the personality function that we're
968 // catching by reference, so if we're catching a pointer,
969 // __cxa_begin_catch will actually return that pointer by value.
970 if (const PointerType *PT = dyn_cast<PointerType>(CaughtType)) {
971 QualType PointeeType = PT->getPointeeType();
972
973 // When catching by reference, generally we should just ignore
974 // this by-value pointer and use the exception object instead.
975 if (!PointeeType->isRecordType()) {
976
977 // Exn points to the struct _Unwind_Exception header, which
978 // we have to skip past in order to reach the exception data.
979 unsigned HeaderSize =
980 CGF.CGM.getTargetCodeGenInfo().getSizeOfUnwindException();
981 AdjustedExn = CGF.Builder.CreateConstGEP1_32(Exn, HeaderSize);
982
983 // However, if we're catching a pointer-to-record type that won't
984 // work, because the personality function might have adjusted
985 // the pointer. There's actually no way for us to fully satisfy
986 // the language/ABI contract here: we can't use Exn because it
987 // might have the wrong adjustment, but we can't use the by-value
988 // pointer because it's off by a level of abstraction.
989 //
990 // The current solution is to dump the adjusted pointer into an
991 // alloca, which breaks language semantics (because changing the
992 // pointer doesn't change the exception) but at least works.
993 // The better solution would be to filter out non-exact matches
994 // and rethrow them, but this is tricky because the rethrow
995 // really needs to be catchable by other sites at this landing
996 // pad. The best solution is to fix the personality function.
997 } else {
998 // Pull the pointer for the reference type off.
Chris Lattner2acc6e32011-07-18 04:24:23 +0000999 llvm::Type *PtrTy =
John McCall204b0752010-07-20 22:17:55 +00001000 cast<llvm::PointerType>(LLVMCatchTy)->getElementType();
1001
1002 // Create the temporary and write the adjusted pointer into it.
1003 llvm::Value *ExnPtrTmp = CGF.CreateTempAlloca(PtrTy, "exn.byref.tmp");
1004 llvm::Value *Casted = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy);
1005 CGF.Builder.CreateStore(Casted, ExnPtrTmp);
1006
1007 // Bind the reference to the temporary.
1008 AdjustedExn = ExnPtrTmp;
1009 }
1010 }
1011
John McCallf1549f62010-07-06 01:34:17 +00001012 llvm::Value *ExnCast =
1013 CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.byref");
1014 CGF.Builder.CreateStore(ExnCast, ParamAddr);
1015 return;
1016 }
1017
1018 // Non-aggregates (plus complexes).
1019 bool IsComplex = false;
1020 if (!CGF.hasAggregateLLVMType(CatchType) ||
1021 (IsComplex = CatchType->isAnyComplexType())) {
John McCall8e3f8612010-07-13 22:12:14 +00001022 llvm::Value *AdjustedExn = CallBeginCatch(CGF, Exn, false);
John McCallf1549f62010-07-06 01:34:17 +00001023
1024 // If the catch type is a pointer type, __cxa_begin_catch returns
1025 // the pointer by value.
1026 if (CatchType->hasPointerRepresentation()) {
1027 llvm::Value *CastExn =
1028 CGF.Builder.CreateBitCast(AdjustedExn, LLVMCatchTy, "exn.casted");
John McCallb29b12d2012-01-17 20:16:56 +00001029
1030 switch (CatchType.getQualifiers().getObjCLifetime()) {
1031 case Qualifiers::OCL_Strong:
1032 CastExn = CGF.EmitARCRetainNonBlock(CastExn);
1033 // fallthrough
1034
1035 case Qualifiers::OCL_None:
1036 case Qualifiers::OCL_ExplicitNone:
1037 case Qualifiers::OCL_Autoreleasing:
1038 CGF.Builder.CreateStore(CastExn, ParamAddr);
1039 return;
1040
1041 case Qualifiers::OCL_Weak:
1042 CGF.EmitARCInitWeak(ParamAddr, CastExn);
1043 return;
1044 }
1045 llvm_unreachable("bad ownership qualifier!");
John McCallf1549f62010-07-06 01:34:17 +00001046 }
1047
1048 // Otherwise, it returns a pointer into the exception object.
1049
Chris Lattner2acc6e32011-07-18 04:24:23 +00001050 llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok
John McCallf1549f62010-07-06 01:34:17 +00001051 llvm::Value *Cast = CGF.Builder.CreateBitCast(AdjustedExn, PtrTy);
1052
1053 if (IsComplex) {
1054 CGF.StoreComplexToAddr(CGF.LoadComplexFromAddr(Cast, /*volatile*/ false),
1055 ParamAddr, /*volatile*/ false);
1056 } else {
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00001057 unsigned Alignment =
1058 CGF.getContext().getDeclAlign(&CatchParam).getQuantity();
John McCallf1549f62010-07-06 01:34:17 +00001059 llvm::Value *ExnLoad = CGF.Builder.CreateLoad(Cast, "exn.scalar");
Daniel Dunbar91a16fa2010-08-21 02:24:36 +00001060 CGF.EmitStoreOfScalar(ExnLoad, ParamAddr, /*volatile*/ false, Alignment,
1061 CatchType);
John McCallf1549f62010-07-06 01:34:17 +00001062 }
1063 return;
1064 }
1065
John McCallacff6962011-02-16 08:39:19 +00001066 assert(isa<RecordType>(CatchType) && "unexpected catch type!");
John McCallf1549f62010-07-06 01:34:17 +00001067
Chris Lattner2acc6e32011-07-18 04:24:23 +00001068 llvm::Type *PtrTy = LLVMCatchTy->getPointerTo(0); // addrspace 0 ok
John McCallf1549f62010-07-06 01:34:17 +00001069
John McCallacff6962011-02-16 08:39:19 +00001070 // Check for a copy expression. If we don't have a copy expression,
1071 // that means a trivial copy is okay.
John McCalle996ffd2011-02-16 08:02:54 +00001072 const Expr *copyExpr = CatchParam.getInit();
1073 if (!copyExpr) {
John McCallacff6962011-02-16 08:39:19 +00001074 llvm::Value *rawAdjustedExn = CallBeginCatch(CGF, Exn, true);
1075 llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy);
Chad Rosier649b4a12012-03-29 17:37:10 +00001076 CGF.EmitAggregateCopy(ParamAddr, adjustedExn, CatchType);
John McCallf1549f62010-07-06 01:34:17 +00001077 return;
1078 }
1079
1080 // We have to call __cxa_get_exception_ptr to get the adjusted
1081 // pointer before copying.
John McCalle996ffd2011-02-16 08:02:54 +00001082 llvm::CallInst *rawAdjustedExn =
John McCallf1549f62010-07-06 01:34:17 +00001083 CGF.Builder.CreateCall(getGetExceptionPtrFn(CGF), Exn);
John McCalle996ffd2011-02-16 08:02:54 +00001084 rawAdjustedExn->setDoesNotThrow();
John McCallf1549f62010-07-06 01:34:17 +00001085
John McCalle996ffd2011-02-16 08:02:54 +00001086 // Cast that to the appropriate type.
1087 llvm::Value *adjustedExn = CGF.Builder.CreateBitCast(rawAdjustedExn, PtrTy);
John McCallf1549f62010-07-06 01:34:17 +00001088
John McCalle996ffd2011-02-16 08:02:54 +00001089 // The copy expression is defined in terms of an OpaqueValueExpr.
1090 // Find it and map it to the adjusted expression.
1091 CodeGenFunction::OpaqueValueMapping
John McCall56ca35d2011-02-17 10:25:35 +00001092 opaque(CGF, OpaqueValueExpr::findInCopyConstruct(copyExpr),
1093 CGF.MakeAddrLValue(adjustedExn, CatchParam.getType()));
John McCallf1549f62010-07-06 01:34:17 +00001094
1095 // Call the copy ctor in a terminate scope.
1096 CGF.EHStack.pushTerminate();
John McCalle996ffd2011-02-16 08:02:54 +00001097
1098 // Perform the copy construction.
Eli Friedmand7722d92011-12-03 02:13:40 +00001099 CharUnits Alignment = CGF.getContext().getDeclAlign(&CatchParam);
Eli Friedmanf3940782011-12-03 00:54:26 +00001100 CGF.EmitAggExpr(copyExpr,
1101 AggValueSlot::forAddr(ParamAddr, Alignment, Qualifiers(),
1102 AggValueSlot::IsNotDestructed,
1103 AggValueSlot::DoesNotNeedGCBarriers,
Chad Rosier649b4a12012-03-29 17:37:10 +00001104 AggValueSlot::IsNotAliased));
John McCalle996ffd2011-02-16 08:02:54 +00001105
1106 // Leave the terminate scope.
John McCallf1549f62010-07-06 01:34:17 +00001107 CGF.EHStack.popTerminate();
1108
John McCalle996ffd2011-02-16 08:02:54 +00001109 // Undo the opaque value mapping.
1110 opaque.pop();
1111
John McCallf1549f62010-07-06 01:34:17 +00001112 // Finally we can call __cxa_begin_catch.
John McCall8e3f8612010-07-13 22:12:14 +00001113 CallBeginCatch(CGF, Exn, true);
John McCallf1549f62010-07-06 01:34:17 +00001114}
1115
1116/// Begins a catch statement by initializing the catch variable and
1117/// calling __cxa_begin_catch.
John McCalle996ffd2011-02-16 08:02:54 +00001118static void BeginCatch(CodeGenFunction &CGF, const CXXCatchStmt *S) {
John McCallf1549f62010-07-06 01:34:17 +00001119 // We have to be very careful with the ordering of cleanups here:
1120 // C++ [except.throw]p4:
1121 // The destruction [of the exception temporary] occurs
1122 // immediately after the destruction of the object declared in
1123 // the exception-declaration in the handler.
1124 //
1125 // So the precise ordering is:
1126 // 1. Construct catch variable.
1127 // 2. __cxa_begin_catch
1128 // 3. Enter __cxa_end_catch cleanup
1129 // 4. Enter dtor cleanup
1130 //
John McCall34695852011-02-22 06:44:22 +00001131 // We do this by using a slightly abnormal initialization process.
1132 // Delegation sequence:
John McCallf1549f62010-07-06 01:34:17 +00001133 // - ExitCXXTryStmt opens a RunCleanupsScope
John McCall34695852011-02-22 06:44:22 +00001134 // - EmitAutoVarAlloca creates the variable and debug info
John McCallf1549f62010-07-06 01:34:17 +00001135 // - InitCatchParam initializes the variable from the exception
John McCall34695852011-02-22 06:44:22 +00001136 // - CallBeginCatch calls __cxa_begin_catch
1137 // - CallBeginCatch enters the __cxa_end_catch cleanup
1138 // - EmitAutoVarCleanups enters the variable destructor cleanup
John McCallf1549f62010-07-06 01:34:17 +00001139 // - EmitCXXTryStmt emits the code for the catch body
1140 // - EmitCXXTryStmt close the RunCleanupsScope
1141
1142 VarDecl *CatchParam = S->getExceptionDecl();
1143 if (!CatchParam) {
Bill Wendlingae270592011-09-15 18:57:19 +00001144 llvm::Value *Exn = CGF.getExceptionFromSlot();
John McCall8e3f8612010-07-13 22:12:14 +00001145 CallBeginCatch(CGF, Exn, true);
John McCallf1549f62010-07-06 01:34:17 +00001146 return;
1147 }
1148
1149 // Emit the local.
John McCall34695852011-02-22 06:44:22 +00001150 CodeGenFunction::AutoVarEmission var = CGF.EmitAutoVarAlloca(*CatchParam);
1151 InitCatchParam(CGF, *CatchParam, var.getObjectAddress(CGF));
1152 CGF.EmitAutoVarCleanups(var);
John McCall9fc6a772010-02-19 09:25:03 +00001153}
1154
John McCall777d6e52011-08-11 02:22:43 +00001155/// Emit the structure of the dispatch block for the given catch scope.
1156/// It is an invariant that the dispatch block already exists.
1157static void emitCatchDispatchBlock(CodeGenFunction &CGF,
1158 EHCatchScope &catchScope) {
1159 llvm::BasicBlock *dispatchBlock = catchScope.getCachedEHDispatchBlock();
1160 assert(dispatchBlock);
1161
1162 // If there's only a single catch-all, getEHDispatchBlock returned
1163 // that catch-all as the dispatch block.
1164 if (catchScope.getNumHandlers() == 1 &&
1165 catchScope.getHandler(0).isCatchAll()) {
1166 assert(dispatchBlock == catchScope.getHandler(0).Block);
1167 return;
1168 }
1169
1170 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP();
1171 CGF.EmitBlockAfterUses(dispatchBlock);
1172
1173 // Select the right handler.
1174 llvm::Value *llvm_eh_typeid_for =
1175 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for);
1176
1177 // Load the selector value.
Bill Wendlingae270592011-09-15 18:57:19 +00001178 llvm::Value *selector = CGF.getSelectorFromSlot();
John McCall777d6e52011-08-11 02:22:43 +00001179
1180 // Test against each of the exception types we claim to catch.
1181 for (unsigned i = 0, e = catchScope.getNumHandlers(); ; ++i) {
1182 assert(i < e && "ran off end of handlers!");
1183 const EHCatchScope::Handler &handler = catchScope.getHandler(i);
1184
1185 llvm::Value *typeValue = handler.Type;
1186 assert(typeValue && "fell into catch-all case!");
1187 typeValue = CGF.Builder.CreateBitCast(typeValue, CGF.Int8PtrTy);
1188
1189 // Figure out the next block.
1190 bool nextIsEnd;
1191 llvm::BasicBlock *nextBlock;
1192
1193 // If this is the last handler, we're at the end, and the next
1194 // block is the block for the enclosing EH scope.
1195 if (i + 1 == e) {
1196 nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope());
1197 nextIsEnd = true;
1198
1199 // If the next handler is a catch-all, we're at the end, and the
1200 // next block is that handler.
1201 } else if (catchScope.getHandler(i+1).isCatchAll()) {
1202 nextBlock = catchScope.getHandler(i+1).Block;
1203 nextIsEnd = true;
1204
1205 // Otherwise, we're not at the end and we need a new block.
1206 } else {
1207 nextBlock = CGF.createBasicBlock("catch.fallthrough");
1208 nextIsEnd = false;
1209 }
1210
1211 // Figure out the catch type's index in the LSDA's type table.
1212 llvm::CallInst *typeIndex =
1213 CGF.Builder.CreateCall(llvm_eh_typeid_for, typeValue);
1214 typeIndex->setDoesNotThrow();
1215
1216 llvm::Value *matchesTypeIndex =
1217 CGF.Builder.CreateICmpEQ(selector, typeIndex, "matches");
1218 CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock);
1219
1220 // If the next handler is a catch-all, we're completely done.
1221 if (nextIsEnd) {
1222 CGF.Builder.restoreIP(savedIP);
1223 return;
John McCall777d6e52011-08-11 02:22:43 +00001224 }
Ahmed Charlese8e92b92012-02-19 11:57:29 +00001225 // Otherwise we need to emit and continue at that block.
1226 CGF.EmitBlock(nextBlock);
John McCall777d6e52011-08-11 02:22:43 +00001227 }
John McCall777d6e52011-08-11 02:22:43 +00001228}
1229
1230void CodeGenFunction::popCatchScope() {
1231 EHCatchScope &catchScope = cast<EHCatchScope>(*EHStack.begin());
1232 if (catchScope.hasEHBranches())
1233 emitCatchDispatchBlock(*this, catchScope);
1234 EHStack.popCatch();
1235}
1236
John McCall59a70002010-07-07 06:56:46 +00001237void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
John McCallf1549f62010-07-06 01:34:17 +00001238 unsigned NumHandlers = S.getNumHandlers();
1239 EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin());
1240 assert(CatchScope.getNumHandlers() == NumHandlers);
Mike Stump2bf701e2009-11-20 23:44:51 +00001241
John McCall777d6e52011-08-11 02:22:43 +00001242 // If the catch was not required, bail out now.
1243 if (!CatchScope.hasEHBranches()) {
1244 EHStack.popCatch();
1245 return;
1246 }
1247
1248 // Emit the structure of the EH dispatch for this catch.
1249 emitCatchDispatchBlock(*this, CatchScope);
1250
John McCallf1549f62010-07-06 01:34:17 +00001251 // Copy the handler blocks off before we pop the EH stack. Emitting
1252 // the handlers might scribble on this memory.
Chris Lattner5f9e2722011-07-23 10:55:15 +00001253 SmallVector<EHCatchScope::Handler, 8> Handlers(NumHandlers);
John McCallf1549f62010-07-06 01:34:17 +00001254 memcpy(Handlers.data(), CatchScope.begin(),
1255 NumHandlers * sizeof(EHCatchScope::Handler));
John McCall777d6e52011-08-11 02:22:43 +00001256
John McCallf1549f62010-07-06 01:34:17 +00001257 EHStack.popCatch();
Mike Stump2bf701e2009-11-20 23:44:51 +00001258
John McCallf1549f62010-07-06 01:34:17 +00001259 // The fall-through block.
1260 llvm::BasicBlock *ContBB = createBasicBlock("try.cont");
Mike Stump2bf701e2009-11-20 23:44:51 +00001261
John McCallf1549f62010-07-06 01:34:17 +00001262 // We just emitted the body of the try; jump to the continue block.
1263 if (HaveInsertPoint())
1264 Builder.CreateBr(ContBB);
Mike Stump639787c2009-12-02 19:53:57 +00001265
John McCallf5533012012-06-15 05:27:05 +00001266 // Determine if we need an implicit rethrow for all these catch handlers;
1267 // see the comment below.
1268 bool doImplicitRethrow = false;
John McCall59a70002010-07-07 06:56:46 +00001269 if (IsFnTryBlock)
John McCallf5533012012-06-15 05:27:05 +00001270 doImplicitRethrow = isa<CXXDestructorDecl>(CurCodeDecl) ||
1271 isa<CXXConstructorDecl>(CurCodeDecl);
John McCall59a70002010-07-07 06:56:46 +00001272
John McCall777d6e52011-08-11 02:22:43 +00001273 // Perversely, we emit the handlers backwards precisely because we
1274 // want them to appear in source order. In all of these cases, the
1275 // catch block will have exactly one predecessor, which will be a
1276 // particular block in the catch dispatch. However, in the case of
1277 // a catch-all, one of the dispatch blocks will branch to two
1278 // different handlers, and EmitBlockAfterUses will cause the second
1279 // handler to be moved before the first.
1280 for (unsigned I = NumHandlers; I != 0; --I) {
1281 llvm::BasicBlock *CatchBlock = Handlers[I-1].Block;
1282 EmitBlockAfterUses(CatchBlock);
Mike Stump8755ec32009-12-10 00:06:18 +00001283
John McCallf1549f62010-07-06 01:34:17 +00001284 // Catch the exception if this isn't a catch-all.
John McCall777d6e52011-08-11 02:22:43 +00001285 const CXXCatchStmt *C = S.getHandler(I-1);
Mike Stump2bf701e2009-11-20 23:44:51 +00001286
John McCallf1549f62010-07-06 01:34:17 +00001287 // Enter a cleanup scope, including the catch variable and the
1288 // end-catch.
1289 RunCleanupsScope CatchScope(*this);
Mike Stump2bf701e2009-11-20 23:44:51 +00001290
John McCallf1549f62010-07-06 01:34:17 +00001291 // Initialize the catch variable and set up the cleanups.
1292 BeginCatch(*this, C);
1293
1294 // Perform the body of the catch.
1295 EmitStmt(C->getHandlerBlock());
1296
John McCallf5533012012-06-15 05:27:05 +00001297 // [except.handle]p11:
1298 // The currently handled exception is rethrown if control
1299 // reaches the end of a handler of the function-try-block of a
1300 // constructor or destructor.
1301
1302 // It is important that we only do this on fallthrough and not on
1303 // return. Note that it's illegal to put a return in a
1304 // constructor function-try-block's catch handler (p14), so this
1305 // really only applies to destructors.
1306 if (doImplicitRethrow && HaveInsertPoint()) {
1307 EmitCallOrInvoke(getReThrowFn(*this));
1308 Builder.CreateUnreachable();
1309 Builder.ClearInsertionPoint();
1310 }
1311
John McCallf1549f62010-07-06 01:34:17 +00001312 // Fall out through the catch cleanups.
1313 CatchScope.ForceCleanup();
1314
1315 // Branch out of the try.
1316 if (HaveInsertPoint())
1317 Builder.CreateBr(ContBB);
Mike Stump2bf701e2009-11-20 23:44:51 +00001318 }
1319
John McCallf1549f62010-07-06 01:34:17 +00001320 EmitBlock(ContBB);
Mike Stump2bf701e2009-11-20 23:44:51 +00001321}
Mike Stumpd88ea562009-12-09 03:35:49 +00001322
John McCall55b20fc2010-07-21 00:52:03 +00001323namespace {
John McCall1f0fca52010-07-21 07:22:38 +00001324 struct CallEndCatchForFinally : EHScopeStack::Cleanup {
John McCall55b20fc2010-07-21 00:52:03 +00001325 llvm::Value *ForEHVar;
1326 llvm::Value *EndCatchFn;
1327 CallEndCatchForFinally(llvm::Value *ForEHVar, llvm::Value *EndCatchFn)
1328 : ForEHVar(ForEHVar), EndCatchFn(EndCatchFn) {}
1329
John McCallad346f42011-07-12 20:27:29 +00001330 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall55b20fc2010-07-21 00:52:03 +00001331 llvm::BasicBlock *EndCatchBB = CGF.createBasicBlock("finally.endcatch");
1332 llvm::BasicBlock *CleanupContBB =
1333 CGF.createBasicBlock("finally.cleanup.cont");
1334
1335 llvm::Value *ShouldEndCatch =
1336 CGF.Builder.CreateLoad(ForEHVar, "finally.endcatch");
1337 CGF.Builder.CreateCondBr(ShouldEndCatch, EndCatchBB, CleanupContBB);
1338 CGF.EmitBlock(EndCatchBB);
Jay Foad4c7d9f12011-07-15 08:37:34 +00001339 CGF.EmitCallOrInvoke(EndCatchFn); // catch-all, so might throw
John McCall55b20fc2010-07-21 00:52:03 +00001340 CGF.EmitBlock(CleanupContBB);
1341 }
1342 };
John McCall77199712010-07-21 05:47:49 +00001343
John McCall1f0fca52010-07-21 07:22:38 +00001344 struct PerformFinally : EHScopeStack::Cleanup {
John McCall77199712010-07-21 05:47:49 +00001345 const Stmt *Body;
1346 llvm::Value *ForEHVar;
1347 llvm::Value *EndCatchFn;
1348 llvm::Value *RethrowFn;
1349 llvm::Value *SavedExnVar;
1350
1351 PerformFinally(const Stmt *Body, llvm::Value *ForEHVar,
1352 llvm::Value *EndCatchFn,
1353 llvm::Value *RethrowFn, llvm::Value *SavedExnVar)
1354 : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn),
1355 RethrowFn(RethrowFn), SavedExnVar(SavedExnVar) {}
1356
John McCallad346f42011-07-12 20:27:29 +00001357 void Emit(CodeGenFunction &CGF, Flags flags) {
John McCall77199712010-07-21 05:47:49 +00001358 // Enter a cleanup to call the end-catch function if one was provided.
1359 if (EndCatchFn)
John McCall1f0fca52010-07-21 07:22:38 +00001360 CGF.EHStack.pushCleanup<CallEndCatchForFinally>(NormalAndEHCleanup,
1361 ForEHVar, EndCatchFn);
John McCall77199712010-07-21 05:47:49 +00001362
John McCalld96a8e72010-08-11 00:16:14 +00001363 // Save the current cleanup destination in case there are
1364 // cleanups in the finally block.
1365 llvm::Value *SavedCleanupDest =
1366 CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot(),
1367 "cleanup.dest.saved");
1368
John McCall77199712010-07-21 05:47:49 +00001369 // Emit the finally block.
1370 CGF.EmitStmt(Body);
1371
1372 // If the end of the finally is reachable, check whether this was
1373 // for EH. If so, rethrow.
1374 if (CGF.HaveInsertPoint()) {
1375 llvm::BasicBlock *RethrowBB = CGF.createBasicBlock("finally.rethrow");
1376 llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont");
1377
1378 llvm::Value *ShouldRethrow =
1379 CGF.Builder.CreateLoad(ForEHVar, "finally.shouldthrow");
1380 CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB);
1381
1382 CGF.EmitBlock(RethrowBB);
1383 if (SavedExnVar) {
Jay Foad4c7d9f12011-07-15 08:37:34 +00001384 CGF.EmitCallOrInvoke(RethrowFn, CGF.Builder.CreateLoad(SavedExnVar));
John McCall77199712010-07-21 05:47:49 +00001385 } else {
Jay Foad4c7d9f12011-07-15 08:37:34 +00001386 CGF.EmitCallOrInvoke(RethrowFn);
John McCall77199712010-07-21 05:47:49 +00001387 }
1388 CGF.Builder.CreateUnreachable();
1389
1390 CGF.EmitBlock(ContBB);
John McCalld96a8e72010-08-11 00:16:14 +00001391
1392 // Restore the cleanup destination.
1393 CGF.Builder.CreateStore(SavedCleanupDest,
1394 CGF.getNormalCleanupDestSlot());
John McCall77199712010-07-21 05:47:49 +00001395 }
1396
1397 // Leave the end-catch cleanup. As an optimization, pretend that
1398 // the fallthrough path was inaccessible; we've dynamically proven
1399 // that we're not in the EH case along that path.
1400 if (EndCatchFn) {
1401 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
1402 CGF.PopCleanupBlock();
1403 CGF.Builder.restoreIP(SavedIP);
1404 }
1405
1406 // Now make sure we actually have an insertion point or the
1407 // cleanup gods will hate us.
1408 CGF.EnsureInsertPoint();
1409 }
1410 };
John McCall55b20fc2010-07-21 00:52:03 +00001411}
1412
John McCallf1549f62010-07-06 01:34:17 +00001413/// Enters a finally block for an implementation using zero-cost
1414/// exceptions. This is mostly general, but hard-codes some
1415/// language/ABI-specific behavior in the catch-all sections.
John McCalld768e9d2011-06-22 02:32:12 +00001416void CodeGenFunction::FinallyInfo::enter(CodeGenFunction &CGF,
1417 const Stmt *body,
1418 llvm::Constant *beginCatchFn,
1419 llvm::Constant *endCatchFn,
1420 llvm::Constant *rethrowFn) {
1421 assert((beginCatchFn != 0) == (endCatchFn != 0) &&
John McCallf1549f62010-07-06 01:34:17 +00001422 "begin/end catch functions not paired");
John McCalld768e9d2011-06-22 02:32:12 +00001423 assert(rethrowFn && "rethrow function is required");
1424
1425 BeginCatchFn = beginCatchFn;
Mike Stumpd88ea562009-12-09 03:35:49 +00001426
John McCallf1549f62010-07-06 01:34:17 +00001427 // The rethrow function has one of the following two types:
1428 // void (*)()
1429 // void (*)(void*)
1430 // In the latter case we need to pass it the exception object.
1431 // But we can't use the exception slot because the @finally might
1432 // have a landing pad (which would overwrite the exception slot).
Chris Lattner2acc6e32011-07-18 04:24:23 +00001433 llvm::FunctionType *rethrowFnTy =
John McCallf1549f62010-07-06 01:34:17 +00001434 cast<llvm::FunctionType>(
John McCalld768e9d2011-06-22 02:32:12 +00001435 cast<llvm::PointerType>(rethrowFn->getType())->getElementType());
1436 SavedExnVar = 0;
1437 if (rethrowFnTy->getNumParams())
1438 SavedExnVar = CGF.CreateTempAlloca(CGF.Int8PtrTy, "finally.exn");
Mike Stumpd88ea562009-12-09 03:35:49 +00001439
John McCallf1549f62010-07-06 01:34:17 +00001440 // A finally block is a statement which must be executed on any edge
1441 // out of a given scope. Unlike a cleanup, the finally block may
1442 // contain arbitrary control flow leading out of itself. In
1443 // addition, finally blocks should always be executed, even if there
1444 // are no catch handlers higher on the stack. Therefore, we
1445 // surround the protected scope with a combination of a normal
1446 // cleanup (to catch attempts to break out of the block via normal
1447 // control flow) and an EH catch-all (semantically "outside" any try
1448 // statement to which the finally block might have been attached).
1449 // The finally block itself is generated in the context of a cleanup
1450 // which conditionally leaves the catch-all.
John McCall3d3ec1c2010-04-21 10:05:39 +00001451
John McCallf1549f62010-07-06 01:34:17 +00001452 // Jump destination for performing the finally block on an exception
1453 // edge. We'll never actually reach this block, so unreachable is
1454 // fine.
John McCalld768e9d2011-06-22 02:32:12 +00001455 RethrowDest = CGF.getJumpDestInCurrentScope(CGF.getUnreachableBlock());
John McCall3d3ec1c2010-04-21 10:05:39 +00001456
John McCallf1549f62010-07-06 01:34:17 +00001457 // Whether the finally block is being executed for EH purposes.
John McCalld768e9d2011-06-22 02:32:12 +00001458 ForEHVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), "finally.for-eh");
1459 CGF.Builder.CreateStore(CGF.Builder.getFalse(), ForEHVar);
Mike Stumpd88ea562009-12-09 03:35:49 +00001460
John McCallf1549f62010-07-06 01:34:17 +00001461 // Enter a normal cleanup which will perform the @finally block.
John McCalld768e9d2011-06-22 02:32:12 +00001462 CGF.EHStack.pushCleanup<PerformFinally>(NormalCleanup, body,
1463 ForEHVar, endCatchFn,
1464 rethrowFn, SavedExnVar);
John McCallf1549f62010-07-06 01:34:17 +00001465
1466 // Enter a catch-all scope.
John McCalld768e9d2011-06-22 02:32:12 +00001467 llvm::BasicBlock *catchBB = CGF.createBasicBlock("finally.catchall");
1468 EHCatchScope *catchScope = CGF.EHStack.pushCatch(1);
1469 catchScope->setCatchAllHandler(0, catchBB);
John McCallf1549f62010-07-06 01:34:17 +00001470}
1471
John McCalld768e9d2011-06-22 02:32:12 +00001472void CodeGenFunction::FinallyInfo::exit(CodeGenFunction &CGF) {
John McCallf1549f62010-07-06 01:34:17 +00001473 // Leave the finally catch-all.
John McCalld768e9d2011-06-22 02:32:12 +00001474 EHCatchScope &catchScope = cast<EHCatchScope>(*CGF.EHStack.begin());
1475 llvm::BasicBlock *catchBB = catchScope.getHandler(0).Block;
John McCall777d6e52011-08-11 02:22:43 +00001476
1477 CGF.popCatchScope();
John McCallf1549f62010-07-06 01:34:17 +00001478
John McCalld768e9d2011-06-22 02:32:12 +00001479 // If there are any references to the catch-all block, emit it.
1480 if (catchBB->use_empty()) {
1481 delete catchBB;
1482 } else {
1483 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP();
1484 CGF.EmitBlock(catchBB);
John McCallf1549f62010-07-06 01:34:17 +00001485
John McCalld768e9d2011-06-22 02:32:12 +00001486 llvm::Value *exn = 0;
John McCallf1549f62010-07-06 01:34:17 +00001487
John McCalld768e9d2011-06-22 02:32:12 +00001488 // If there's a begin-catch function, call it.
1489 if (BeginCatchFn) {
Bill Wendlingae270592011-09-15 18:57:19 +00001490 exn = CGF.getExceptionFromSlot();
John McCalld768e9d2011-06-22 02:32:12 +00001491 CGF.Builder.CreateCall(BeginCatchFn, exn)->setDoesNotThrow();
1492 }
1493
1494 // If we need to remember the exception pointer to rethrow later, do so.
1495 if (SavedExnVar) {
Bill Wendlingae270592011-09-15 18:57:19 +00001496 if (!exn) exn = CGF.getExceptionFromSlot();
John McCalld768e9d2011-06-22 02:32:12 +00001497 CGF.Builder.CreateStore(exn, SavedExnVar);
1498 }
1499
1500 // Tell the cleanups in the finally block that we're do this for EH.
1501 CGF.Builder.CreateStore(CGF.Builder.getTrue(), ForEHVar);
1502
1503 // Thread a jump through the finally cleanup.
1504 CGF.EmitBranchThroughCleanup(RethrowDest);
1505
1506 CGF.Builder.restoreIP(savedIP);
1507 }
1508
1509 // Finally, leave the @finally cleanup.
1510 CGF.PopCleanupBlock();
John McCallf1549f62010-07-06 01:34:17 +00001511}
1512
1513llvm::BasicBlock *CodeGenFunction::getTerminateLandingPad() {
1514 if (TerminateLandingPad)
1515 return TerminateLandingPad;
1516
1517 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
1518
1519 // This will get inserted at the end of the function.
1520 TerminateLandingPad = createBasicBlock("terminate.lpad");
1521 Builder.SetInsertPoint(TerminateLandingPad);
1522
1523 // Tell the backend that this is a landing pad.
David Blaikie4e4d0842012-03-11 07:00:24 +00001524 const EHPersonality &Personality = EHPersonality::get(CGM.getLangOpts());
Bill Wendling285cfd82011-09-19 20:31:14 +00001525 llvm::LandingPadInst *LPadInst =
1526 Builder.CreateLandingPad(llvm::StructType::get(Int8PtrTy, Int32Ty, NULL),
1527 getOpaquePersonalityFn(CGM, Personality), 0);
1528 LPadInst->addClause(getCatchAllValue(*this));
John McCallf1549f62010-07-06 01:34:17 +00001529
1530 llvm::CallInst *TerminateCall = Builder.CreateCall(getTerminateFn(*this));
1531 TerminateCall->setDoesNotReturn();
1532 TerminateCall->setDoesNotThrow();
John McCalld16c2cf2011-02-08 08:22:06 +00001533 Builder.CreateUnreachable();
Mike Stumpd88ea562009-12-09 03:35:49 +00001534
John McCallf1549f62010-07-06 01:34:17 +00001535 // Restore the saved insertion state.
1536 Builder.restoreIP(SavedIP);
John McCall891f80e2010-04-30 00:06:43 +00001537
John McCallf1549f62010-07-06 01:34:17 +00001538 return TerminateLandingPad;
Mike Stumpd88ea562009-12-09 03:35:49 +00001539}
Mike Stump9b39c512009-12-09 22:59:31 +00001540
1541llvm::BasicBlock *CodeGenFunction::getTerminateHandler() {
Mike Stump182f3832009-12-10 00:02:42 +00001542 if (TerminateHandler)
1543 return TerminateHandler;
1544
John McCallf1549f62010-07-06 01:34:17 +00001545 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
Mike Stump76958092009-12-09 23:31:35 +00001546
John McCallf1549f62010-07-06 01:34:17 +00001547 // Set up the terminate handler. This block is inserted at the very
1548 // end of the function by FinishFunction.
Mike Stump182f3832009-12-10 00:02:42 +00001549 TerminateHandler = createBasicBlock("terminate.handler");
John McCallf1549f62010-07-06 01:34:17 +00001550 Builder.SetInsertPoint(TerminateHandler);
1551 llvm::CallInst *TerminateCall = Builder.CreateCall(getTerminateFn(*this));
Mike Stump9b39c512009-12-09 22:59:31 +00001552 TerminateCall->setDoesNotReturn();
1553 TerminateCall->setDoesNotThrow();
1554 Builder.CreateUnreachable();
1555
John McCall3d3ec1c2010-04-21 10:05:39 +00001556 // Restore the saved insertion state.
John McCallf1549f62010-07-06 01:34:17 +00001557 Builder.restoreIP(SavedIP);
Mike Stump76958092009-12-09 23:31:35 +00001558
Mike Stump9b39c512009-12-09 22:59:31 +00001559 return TerminateHandler;
1560}
John McCallf1549f62010-07-06 01:34:17 +00001561
David Chisnallc6860042012-11-07 16:50:40 +00001562llvm::BasicBlock *CodeGenFunction::getEHResumeBlock(bool isCleanup) {
John McCall777d6e52011-08-11 02:22:43 +00001563 if (EHResumeBlock) return EHResumeBlock;
John McCallff8e1152010-07-23 21:56:41 +00001564
1565 CGBuilderTy::InsertPoint SavedIP = Builder.saveIP();
1566
1567 // We emit a jump to a notional label at the outermost unwind state.
John McCall777d6e52011-08-11 02:22:43 +00001568 EHResumeBlock = createBasicBlock("eh.resume");
1569 Builder.SetInsertPoint(EHResumeBlock);
John McCallff8e1152010-07-23 21:56:41 +00001570
David Blaikie4e4d0842012-03-11 07:00:24 +00001571 const EHPersonality &Personality = EHPersonality::get(CGM.getLangOpts());
John McCallff8e1152010-07-23 21:56:41 +00001572
1573 // This can always be a call because we necessarily didn't find
1574 // anything on the EH stack which needs our help.
Benjamin Krameraf2771b2012-02-08 12:41:24 +00001575 const char *RethrowName = Personality.CatchallRethrowFn;
David Chisnallc6860042012-11-07 16:50:40 +00001576 if (RethrowName != 0 && !isCleanup) {
John McCall93c332a2011-05-28 21:13:02 +00001577 Builder.CreateCall(getCatchallRethrowFn(*this, RethrowName),
Bill Wendlingae270592011-09-15 18:57:19 +00001578 getExceptionFromSlot())
John McCall93c332a2011-05-28 21:13:02 +00001579 ->setDoesNotReturn();
1580 } else {
John McCall93c332a2011-05-28 21:13:02 +00001581 switch (CleanupHackLevel) {
1582 case CHL_MandatoryCatchall:
1583 // In mandatory-catchall mode, we need to use
1584 // _Unwind_Resume_or_Rethrow, or whatever the personality's
1585 // equivalent is.
Bill Wendlingcc1f9182011-12-08 23:21:26 +00001586 Builder.CreateCall(getUnwindResumeOrRethrowFn(),
1587 getExceptionFromSlot())
John McCall93c332a2011-05-28 21:13:02 +00001588 ->setDoesNotReturn();
1589 break;
1590 case CHL_MandatoryCleanup: {
Bill Wendling285cfd82011-09-19 20:31:14 +00001591 // In mandatory-cleanup mode, we should use 'resume'.
1592
1593 // Recreate the landingpad's return value for the 'resume' instruction.
1594 llvm::Value *Exn = getExceptionFromSlot();
1595 llvm::Value *Sel = getSelectorFromSlot();
1596
1597 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(),
1598 Sel->getType(), NULL);
1599 llvm::Value *LPadVal = llvm::UndefValue::get(LPadType);
1600 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val");
1601 LPadVal = Builder.CreateInsertValue(LPadVal, Sel, 1, "lpad.val");
1602
1603 Builder.CreateResume(LPadVal);
1604 Builder.restoreIP(SavedIP);
1605 return EHResumeBlock;
John McCall93c332a2011-05-28 21:13:02 +00001606 }
1607 case CHL_Ideal:
1608 // In an idealized mode where we don't have to worry about the
1609 // optimizer combining landing pads, we should just use
1610 // _Unwind_Resume (or the personality's equivalent).
Bill Wendlingcc1f9182011-12-08 23:21:26 +00001611 Builder.CreateCall(getUnwindResumeFn(), getExceptionFromSlot())
John McCall93c332a2011-05-28 21:13:02 +00001612 ->setDoesNotReturn();
1613 break;
1614 }
1615 }
1616
John McCallff8e1152010-07-23 21:56:41 +00001617 Builder.CreateUnreachable();
1618
1619 Builder.restoreIP(SavedIP);
1620
John McCall777d6e52011-08-11 02:22:43 +00001621 return EHResumeBlock;
John McCallff8e1152010-07-23 21:56:41 +00001622}