blob: 4a7dc4205e092449ae6d06aa8b9e42b63221a74f [file] [log] [blame]
Hans Wennborgdcfba332015-10-06 23:40:43 +00001//===--- CGException.cpp - Emit LLVM Code for C++ exceptions ----*- C++ -*-===//
Anders Carlsson4b08db72009-10-30 01:42:31 +00002//
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"
David Majnemer442d0a22014-11-25 07:20:20 +000015#include "CGCXXABI.h"
Chandler Carruth0d9593d2015-01-14 11:29:14 +000016#include "CGCleanup.h"
Benjamin Kramer793bd552012-02-08 12:41:24 +000017#include "CGObjCRuntime.h"
John McCall5add20c2010-07-20 22:17:55 +000018#include "TargetInfo.h"
Reid Kleckner1d59f992015-01-22 01:36:17 +000019#include "clang/AST/Mangle.h"
Benjamin Kramer793bd552012-02-08 12:41:24 +000020#include "clang/AST/StmtCXX.h"
Chandler Carruth4b417452013-01-19 08:09:44 +000021#include "clang/AST/StmtObjC.h"
Reid Kleckner31a1bb02015-04-08 22:23:48 +000022#include "clang/AST/StmtVisitor.h"
Reid Kleckner9fe7f232015-07-07 00:36:30 +000023#include "clang/Basic/TargetBuiltins.h"
Chandler Carruthc80ceea2014-03-04 11:02:08 +000024#include "llvm/IR/CallSite.h"
Chandler Carruthffd55512013-01-02 11:45:17 +000025#include "llvm/IR/Intrinsics.h"
Reid Kleckner31a1bb02015-04-08 22:23:48 +000026#include "llvm/IR/IntrinsicInst.h"
Reid Klecknerebaf28d2015-04-14 20:59:00 +000027#include "llvm/Support/SaveAndRestore.h"
John McCallbd309292010-07-06 01:34:17 +000028
Anders Carlsson4b08db72009-10-30 01:42:31 +000029using namespace clang;
30using namespace CodeGen;
31
John McCall2c33ba82013-02-12 03:51:38 +000032static llvm::Constant *getFreeExceptionFn(CodeGenModule &CGM) {
Mike Stump33270212009-12-02 07:41:41 +000033 // void __cxa_free_exception(void *thrown_exception);
Mike Stump75546b82009-12-10 00:06:18 +000034
Chris Lattner2192fe52011-07-18 04:24:23 +000035 llvm::FunctionType *FTy =
John McCall2c33ba82013-02-12 03:51:38 +000036 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump75546b82009-12-10 00:06:18 +000037
John McCall2c33ba82013-02-12 03:51:38 +000038 return CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception");
Mike Stump33270212009-12-02 07:41:41 +000039}
40
John McCall2c33ba82013-02-12 03:51:38 +000041static llvm::Constant *getUnexpectedFn(CodeGenModule &CGM) {
Richard Smith2f7aa192013-06-20 23:03:35 +000042 // void __cxa_call_unexpected(void *thrown_exception);
Mike Stump1d849212009-12-07 23:38:24 +000043
Chris Lattner2192fe52011-07-18 04:24:23 +000044 llvm::FunctionType *FTy =
John McCall2c33ba82013-02-12 03:51:38 +000045 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
Mike Stump75546b82009-12-10 00:06:18 +000046
John McCall2c33ba82013-02-12 03:51:38 +000047 return CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected");
Mike Stump1d849212009-12-07 23:38:24 +000048}
49
Reid Klecknerfff8e7f2015-03-03 19:21:04 +000050llvm::Constant *CodeGenModule::getTerminateFn() {
Mike Stump33270212009-12-02 07:41:41 +000051 // void __terminate();
52
Chris Lattner2192fe52011-07-18 04:24:23 +000053 llvm::FunctionType *FTy =
Reid Klecknerfff8e7f2015-03-03 19:21:04 +000054 llvm::FunctionType::get(VoidTy, /*IsVarArgs=*/false);
Mike Stump75546b82009-12-10 00:06:18 +000055
Chris Lattner0e62c1c2011-07-23 10:55:15 +000056 StringRef name;
John McCall9de19782011-07-06 01:22:26 +000057
58 // In C++, use std::terminate().
Reid Klecknerfff8e7f2015-03-03 19:21:04 +000059 if (getLangOpts().CPlusPlus &&
60 getTarget().getCXXABI().isItaniumFamily()) {
Reid Kleckner1d59f992015-01-22 01:36:17 +000061 name = "_ZSt9terminatev";
Reid Klecknerfff8e7f2015-03-03 19:21:04 +000062 } else if (getLangOpts().CPlusPlus &&
63 getTarget().getCXXABI().isMicrosoft()) {
David Majnemerb710a932015-05-11 03:57:49 +000064 if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015))
David Majnemerfb6ffca2015-05-10 21:38:26 +000065 name = "__std_terminate";
66 else
67 name = "\01?terminate@@YAXXZ";
Reid Klecknerfff8e7f2015-03-03 19:21:04 +000068 } else if (getLangOpts().ObjC1 &&
69 getLangOpts().ObjCRuntime.hasTerminate())
John McCall9de19782011-07-06 01:22:26 +000070 name = "objc_terminate";
71 else
72 name = "abort";
Reid Klecknerfff8e7f2015-03-03 19:21:04 +000073 return CreateRuntimeFunction(FTy, name);
David Chisnallf9c42252010-05-17 13:49:20 +000074}
75
John McCall2c33ba82013-02-12 03:51:38 +000076static llvm::Constant *getCatchallRethrowFn(CodeGenModule &CGM,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000077 StringRef Name) {
Chris Lattner2192fe52011-07-18 04:24:23 +000078 llvm::FunctionType *FTy =
John McCall2c33ba82013-02-12 03:51:38 +000079 llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false);
John McCall36ea3722010-07-17 00:43:08 +000080
John McCall2c33ba82013-02-12 03:51:38 +000081 return CGM.CreateRuntimeFunction(FTy, Name);
John McCallbd309292010-07-06 01:34:17 +000082}
83
Craig Topper8a13c412014-05-21 05:09:00 +000084const EHPersonality EHPersonality::GNU_C = { "__gcc_personality_v0", nullptr };
Benjamin Kramer793bd552012-02-08 12:41:24 +000085const EHPersonality
Craig Topper8a13c412014-05-21 05:09:00 +000086EHPersonality::GNU_C_SJLJ = { "__gcc_personality_sj0", nullptr };
87const EHPersonality
Reid Kleckner8f45c9c2014-09-15 17:19:16 +000088EHPersonality::GNU_C_SEH = { "__gcc_personality_seh0", nullptr };
89const EHPersonality
Craig Topper8a13c412014-05-21 05:09:00 +000090EHPersonality::NeXT_ObjC = { "__objc_personality_v0", nullptr };
91const EHPersonality
92EHPersonality::GNU_CPlusPlus = { "__gxx_personality_v0", nullptr };
93const EHPersonality
94EHPersonality::GNU_CPlusPlus_SJLJ = { "__gxx_personality_sj0", nullptr };
Benjamin Kramer793bd552012-02-08 12:41:24 +000095const EHPersonality
Reid Kleckner8f45c9c2014-09-15 17:19:16 +000096EHPersonality::GNU_CPlusPlus_SEH = { "__gxx_personality_seh0", nullptr };
97const EHPersonality
Benjamin Kramer793bd552012-02-08 12:41:24 +000098EHPersonality::GNU_ObjC = {"__gnu_objc_personality_v0", "objc_exception_throw"};
99const EHPersonality
Craig Topper8a13c412014-05-21 05:09:00 +0000100EHPersonality::GNU_ObjCXX = { "__gnustep_objcxx_personality_v0", nullptr };
David Chisnall2ec1b10d2013-01-11 15:33:01 +0000101const EHPersonality
Craig Topper8a13c412014-05-21 05:09:00 +0000102EHPersonality::GNUstep_ObjC = { "__gnustep_objc_personality_v0", nullptr };
Reid Kleckner1d59f992015-01-22 01:36:17 +0000103const EHPersonality
104EHPersonality::MSVC_except_handler = { "_except_handler3", nullptr };
105const EHPersonality
106EHPersonality::MSVC_C_specific_handler = { "__C_specific_handler", nullptr };
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000107const EHPersonality
108EHPersonality::MSVC_CxxFrameHandler3 = { "__CxxFrameHandler3", nullptr };
John McCall36ea3722010-07-17 00:43:08 +0000109
Reid Klecknere070b992014-11-14 02:01:10 +0000110/// On Win64, use libgcc's SEH personality function. We fall back to dwarf on
111/// other platforms, unless the user asked for SjLj exceptions.
112static bool useLibGCCSEHPersonality(const llvm::Triple &T) {
113 return T.isOSWindows() && T.getArch() == llvm::Triple::x86_64;
114}
115
116static const EHPersonality &getCPersonality(const llvm::Triple &T,
117 const LangOptions &L) {
John McCall2faab302010-11-07 02:35:25 +0000118 if (L.SjLjExceptions)
119 return EHPersonality::GNU_C_SJLJ;
Reid Klecknere070b992014-11-14 02:01:10 +0000120 else if (useLibGCCSEHPersonality(T))
Reid Kleckner8f45c9c2014-09-15 17:19:16 +0000121 return EHPersonality::GNU_C_SEH;
John McCall36ea3722010-07-17 00:43:08 +0000122 return EHPersonality::GNU_C;
123}
124
Reid Klecknere070b992014-11-14 02:01:10 +0000125static const EHPersonality &getObjCPersonality(const llvm::Triple &T,
126 const LangOptions &L) {
John McCall5fb5df92012-06-20 06:18:46 +0000127 switch (L.ObjCRuntime.getKind()) {
128 case ObjCRuntime::FragileMacOSX:
Reid Klecknere070b992014-11-14 02:01:10 +0000129 return getCPersonality(T, L);
John McCall5fb5df92012-06-20 06:18:46 +0000130 case ObjCRuntime::MacOSX:
131 case ObjCRuntime::iOS:
Tim Northover756447a2015-10-30 16:30:36 +0000132 case ObjCRuntime::WatchOS:
John McCall5fb5df92012-06-20 06:18:46 +0000133 return EHPersonality::NeXT_ObjC;
David Chisnallb601c962012-07-03 20:49:52 +0000134 case ObjCRuntime::GNUstep:
David Chisnall2ec1b10d2013-01-11 15:33:01 +0000135 if (L.ObjCRuntime.getVersion() >= VersionTuple(1, 7))
136 return EHPersonality::GNUstep_ObjC;
137 // fallthrough
David Chisnallb601c962012-07-03 20:49:52 +0000138 case ObjCRuntime::GCC:
John McCall775086e2012-07-12 02:07:58 +0000139 case ObjCRuntime::ObjFW:
John McCall36ea3722010-07-17 00:43:08 +0000140 return EHPersonality::GNU_ObjC;
John McCallbd309292010-07-06 01:34:17 +0000141 }
John McCall5fb5df92012-06-20 06:18:46 +0000142 llvm_unreachable("bad runtime kind");
John McCallbd309292010-07-06 01:34:17 +0000143}
144
Reid Klecknere070b992014-11-14 02:01:10 +0000145static const EHPersonality &getCXXPersonality(const llvm::Triple &T,
146 const LangOptions &L) {
John McCall36ea3722010-07-17 00:43:08 +0000147 if (L.SjLjExceptions)
148 return EHPersonality::GNU_CPlusPlus_SJLJ;
Reid Klecknere070b992014-11-14 02:01:10 +0000149 else if (useLibGCCSEHPersonality(T))
Reid Kleckner8f45c9c2014-09-15 17:19:16 +0000150 return EHPersonality::GNU_CPlusPlus_SEH;
Reid Klecknere070b992014-11-14 02:01:10 +0000151 return EHPersonality::GNU_CPlusPlus;
John McCallbd309292010-07-06 01:34:17 +0000152}
153
154/// Determines the personality function to use when both C++
155/// and Objective-C exceptions are being caught.
Reid Klecknere070b992014-11-14 02:01:10 +0000156static const EHPersonality &getObjCXXPersonality(const llvm::Triple &T,
157 const LangOptions &L) {
John McCall5fb5df92012-06-20 06:18:46 +0000158 switch (L.ObjCRuntime.getKind()) {
John McCallbd309292010-07-06 01:34:17 +0000159 // The ObjC personality defers to the C++ personality for non-ObjC
160 // handlers. Unlike the C++ case, we use the same personality
161 // function on targets using (backend-driven) SJLJ EH.
John McCall5fb5df92012-06-20 06:18:46 +0000162 case ObjCRuntime::MacOSX:
163 case ObjCRuntime::iOS:
Tim Northover756447a2015-10-30 16:30:36 +0000164 case ObjCRuntime::WatchOS:
John McCall5fb5df92012-06-20 06:18:46 +0000165 return EHPersonality::NeXT_ObjC;
John McCallbd309292010-07-06 01:34:17 +0000166
John McCall5fb5df92012-06-20 06:18:46 +0000167 // In the fragile ABI, just use C++ exception handling and hope
168 // they're not doing crazy exception mixing.
169 case ObjCRuntime::FragileMacOSX:
Reid Klecknere070b992014-11-14 02:01:10 +0000170 return getCXXPersonality(T, L);
David Chisnallf9c42252010-05-17 13:49:20 +0000171
David Chisnallb601c962012-07-03 20:49:52 +0000172 // The GCC runtime's personality function inherently doesn't support
John McCall36ea3722010-07-17 00:43:08 +0000173 // mixed EH. Use the C++ personality just to avoid returning null.
David Chisnallb601c962012-07-03 20:49:52 +0000174 case ObjCRuntime::GCC:
John McCall775086e2012-07-12 02:07:58 +0000175 case ObjCRuntime::ObjFW: // XXX: this will change soon
David Chisnallb601c962012-07-03 20:49:52 +0000176 return EHPersonality::GNU_ObjC;
177 case ObjCRuntime::GNUstep:
John McCall5fb5df92012-06-20 06:18:46 +0000178 return EHPersonality::GNU_ObjCXX;
179 }
180 llvm_unreachable("bad runtime kind");
John McCallbd309292010-07-06 01:34:17 +0000181}
182
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000183static const EHPersonality &getSEHPersonalityMSVC(const llvm::Triple &T) {
Reid Kleckner1d59f992015-01-22 01:36:17 +0000184 if (T.getArch() == llvm::Triple::x86)
185 return EHPersonality::MSVC_except_handler;
186 return EHPersonality::MSVC_C_specific_handler;
187}
188
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000189const EHPersonality &EHPersonality::get(CodeGenModule &CGM,
190 const FunctionDecl *FD) {
Reid Klecknere070b992014-11-14 02:01:10 +0000191 const llvm::Triple &T = CGM.getTarget().getTriple();
192 const LangOptions &L = CGM.getLangOpts();
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000193
Reid Kleckner01485652015-09-17 17:04:13 +0000194 // Functions using SEH get an SEH personality.
195 if (FD && FD->usesSEHTry())
196 return getSEHPersonalityMSVC(T);
197
Reid Kleckner1d59f992015-01-22 01:36:17 +0000198 // Try to pick a personality function that is compatible with MSVC if we're
199 // not compiling Obj-C. Obj-C users better have an Obj-C runtime that supports
200 // the GCC-style personality function.
201 if (T.isWindowsMSVCEnvironment() && !L.ObjC1) {
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000202 if (L.SjLjExceptions)
203 return EHPersonality::GNU_CPlusPlus_SJLJ;
Reid Kleckner1d59f992015-01-22 01:36:17 +0000204 else
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000205 return EHPersonality::MSVC_CxxFrameHandler3;
Reid Kleckner1d59f992015-01-22 01:36:17 +0000206 }
207
John McCall36ea3722010-07-17 00:43:08 +0000208 if (L.CPlusPlus && L.ObjC1)
Reid Klecknere070b992014-11-14 02:01:10 +0000209 return getObjCXXPersonality(T, L);
John McCall36ea3722010-07-17 00:43:08 +0000210 else if (L.CPlusPlus)
Reid Klecknere070b992014-11-14 02:01:10 +0000211 return getCXXPersonality(T, L);
John McCall36ea3722010-07-17 00:43:08 +0000212 else if (L.ObjC1)
Reid Klecknere070b992014-11-14 02:01:10 +0000213 return getObjCPersonality(T, L);
John McCallbd309292010-07-06 01:34:17 +0000214 else
Reid Klecknere070b992014-11-14 02:01:10 +0000215 return getCPersonality(T, L);
John McCall36ea3722010-07-17 00:43:08 +0000216}
John McCallbd309292010-07-06 01:34:17 +0000217
David Majnemerc28d46e2015-07-22 23:46:21 +0000218const EHPersonality &EHPersonality::get(CodeGenFunction &CGF) {
219 return get(CGF.CGM, dyn_cast_or_null<FunctionDecl>(CGF.CurCodeDecl));
220}
221
John McCall0bdb1fd2010-09-16 06:16:50 +0000222static llvm::Constant *getPersonalityFn(CodeGenModule &CGM,
John McCall36ea3722010-07-17 00:43:08 +0000223 const EHPersonality &Personality) {
John McCall36ea3722010-07-17 00:43:08 +0000224 llvm::Constant *Fn =
Chris Lattnerece04092012-02-07 00:39:47 +0000225 CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true),
Benjamin Kramer793bd552012-02-08 12:41:24 +0000226 Personality.PersonalityFn);
John McCall0bdb1fd2010-09-16 06:16:50 +0000227 return Fn;
228}
229
230static llvm::Constant *getOpaquePersonalityFn(CodeGenModule &CGM,
231 const EHPersonality &Personality) {
232 llvm::Constant *Fn = getPersonalityFn(CGM, Personality);
John McCallad7c5c12011-02-08 08:22:06 +0000233 return llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy);
John McCall0bdb1fd2010-09-16 06:16:50 +0000234}
235
Vedant Kumardb609472015-09-11 15:40:05 +0000236/// Check whether a landingpad instruction only uses C++ features.
237static bool LandingPadHasOnlyCXXUses(llvm::LandingPadInst *LPI) {
238 for (unsigned I = 0, E = LPI->getNumClauses(); I != E; ++I) {
239 // Look for something that would've been returned by the ObjC
240 // runtime's GetEHType() method.
241 llvm::Value *Val = LPI->getClause(I)->stripPointerCasts();
242 if (LPI->isCatch(I)) {
243 // Check if the catch value has the ObjC prefix.
244 if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val))
245 // ObjC EH selector entries are always global variables with
246 // names starting like this.
247 if (GV->getName().startswith("OBJC_EHTYPE"))
248 return false;
249 } else {
250 // Check if any of the filter values have the ObjC prefix.
251 llvm::Constant *CVal = cast<llvm::Constant>(Val);
252 for (llvm::User::op_iterator
253 II = CVal->op_begin(), IE = CVal->op_end(); II != IE; ++II) {
254 if (llvm::GlobalVariable *GV =
255 cast<llvm::GlobalVariable>((*II)->stripPointerCasts()))
256 // ObjC EH selector entries are always global variables with
257 // names starting like this.
258 if (GV->getName().startswith("OBJC_EHTYPE"))
259 return false;
260 }
261 }
262 }
263 return true;
264}
265
John McCall0bdb1fd2010-09-16 06:16:50 +0000266/// Check whether a personality function could reasonably be swapped
267/// for a C++ personality function.
268static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) {
Chandler Carruth4d01fff2014-03-09 03:16:50 +0000269 for (llvm::User *U : Fn->users()) {
John McCall0bdb1fd2010-09-16 06:16:50 +0000270 // Conditionally white-list bitcasts.
Chandler Carruth4d01fff2014-03-09 03:16:50 +0000271 if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(U)) {
John McCall0bdb1fd2010-09-16 06:16:50 +0000272 if (CE->getOpcode() != llvm::Instruction::BitCast) return false;
273 if (!PersonalityHasOnlyCXXUses(CE))
274 return false;
275 continue;
276 }
277
Vedant Kumardb609472015-09-11 15:40:05 +0000278 // Otherwise it must be a function.
279 llvm::Function *F = dyn_cast<llvm::Function>(U);
280 if (!F) return false;
John McCall0bdb1fd2010-09-16 06:16:50 +0000281
Vedant Kumardb609472015-09-11 15:40:05 +0000282 for (auto BB = F->begin(), E = F->end(); BB != E; ++BB) {
283 if (BB->isLandingPad())
284 if (!LandingPadHasOnlyCXXUses(BB->getLandingPadInst()))
285 return false;
John McCall0bdb1fd2010-09-16 06:16:50 +0000286 }
287 }
288
289 return true;
290}
291
292/// Try to use the C++ personality function in ObjC++. Not doing this
293/// can cause some incompatibilities with gcc, which is more
294/// aggressive about only using the ObjC++ personality in a function
295/// when it really needs it.
296void CodeGenModule::SimplifyPersonality() {
John McCall0bdb1fd2010-09-16 06:16:50 +0000297 // If we're not in ObjC++ -fexceptions, there's nothing to do.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000298 if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions)
John McCall0bdb1fd2010-09-16 06:16:50 +0000299 return;
300
John McCall3c223932012-11-14 17:48:31 +0000301 // Both the problem this endeavors to fix and the way the logic
302 // above works is specific to the NeXT runtime.
303 if (!LangOpts.ObjCRuntime.isNeXTFamily())
304 return;
305
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000306 const EHPersonality &ObjCXX = EHPersonality::get(*this, /*FD=*/nullptr);
Reid Klecknere070b992014-11-14 02:01:10 +0000307 const EHPersonality &CXX =
308 getCXXPersonality(getTarget().getTriple(), LangOpts);
Benjamin Kramer793bd552012-02-08 12:41:24 +0000309 if (&ObjCXX == &CXX)
John McCall0bdb1fd2010-09-16 06:16:50 +0000310 return;
311
Benjamin Kramer793bd552012-02-08 12:41:24 +0000312 assert(std::strcmp(ObjCXX.PersonalityFn, CXX.PersonalityFn) != 0 &&
313 "Different EHPersonalities using the same personality function.");
314
315 llvm::Function *Fn = getModule().getFunction(ObjCXX.PersonalityFn);
John McCall0bdb1fd2010-09-16 06:16:50 +0000316
317 // Nothing to do if it's unused.
318 if (!Fn || Fn->use_empty()) return;
319
320 // Can't do the optimization if it has non-C++ uses.
321 if (!PersonalityHasOnlyCXXUses(Fn)) return;
322
323 // Create the C++ personality function and kill off the old
324 // function.
325 llvm::Constant *CXXFn = getPersonalityFn(*this, CXX);
326
327 // This can happen if the user is screwing with us.
328 if (Fn->getType() != CXXFn->getType()) return;
329
330 Fn->replaceAllUsesWith(CXXFn);
331 Fn->eraseFromParent();
John McCallbd309292010-07-06 01:34:17 +0000332}
333
334/// Returns the value to inject into a selector to indicate the
335/// presence of a catch-all.
336static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) {
337 // Possibly we should use @llvm.eh.catch.all.value here.
John McCallad7c5c12011-02-08 08:22:06 +0000338 return llvm::ConstantPointerNull::get(CGF.Int8PtrTy);
John McCallbd309292010-07-06 01:34:17 +0000339}
340
John McCallbb026012010-07-13 21:17:51 +0000341namespace {
342 /// A cleanup to free the exception object if its initialization
343 /// throws.
David Blaikie7e70d682015-08-18 22:40:54 +0000344 struct FreeException final : EHScopeStack::Cleanup {
John McCall5fcf8da2011-07-12 00:15:30 +0000345 llvm::Value *exn;
346 FreeException(llvm::Value *exn) : exn(exn) {}
Craig Topper4f12f102014-03-12 06:41:41 +0000347 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall882987f2013-02-28 19:01:20 +0000348 CGF.EmitNounwindRuntimeCall(getFreeExceptionFn(CGF.CGM), exn);
John McCallbb026012010-07-13 21:17:51 +0000349 }
350 };
Hans Wennborgdcfba332015-10-06 23:40:43 +0000351} // end anonymous namespace
John McCallbb026012010-07-13 21:17:51 +0000352
John McCall2e6567a2010-04-22 01:10:34 +0000353// Emits an exception expression into the given location. This
354// differs from EmitAnyExprToMem only in that, if a final copy-ctor
355// call is required, an exception within that copy ctor causes
356// std::terminate to be invoked.
John McCall7f416cc2015-09-08 08:05:57 +0000357void CodeGenFunction::EmitAnyExprToExn(const Expr *e, Address addr) {
John McCallbd309292010-07-06 01:34:17 +0000358 // Make sure the exception object is cleaned up if there's an
359 // exception during initialization.
John McCall7f416cc2015-09-08 08:05:57 +0000360 pushFullExprCleanup<FreeException>(EHCleanup, addr.getPointer());
David Majnemer7c237072015-03-05 00:46:22 +0000361 EHScopeStack::stable_iterator cleanup = EHStack.stable_begin();
John McCall2e6567a2010-04-22 01:10:34 +0000362
363 // __cxa_allocate_exception returns a void*; we need to cast this
364 // to the appropriate type for the object.
David Majnemer7c237072015-03-05 00:46:22 +0000365 llvm::Type *ty = ConvertTypeForMem(e->getType())->getPointerTo();
John McCall7f416cc2015-09-08 08:05:57 +0000366 Address typedAddr = Builder.CreateBitCast(addr, ty);
John McCall2e6567a2010-04-22 01:10:34 +0000367
368 // FIXME: this isn't quite right! If there's a final unelided call
369 // to a copy constructor, then according to [except.terminate]p1 we
370 // must call std::terminate() if that constructor throws, because
371 // technically that copy occurs after the exception expression is
372 // evaluated but before the exception is caught. But the best way
373 // to handle that is to teach EmitAggExpr to do the final copy
374 // differently if it can't be elided.
David Majnemer7c237072015-03-05 00:46:22 +0000375 EmitAnyExprToMem(e, typedAddr, e->getType().getQualifiers(),
376 /*IsInit*/ true);
John McCall2e6567a2010-04-22 01:10:34 +0000377
John McCalle4df6c82011-01-28 08:37:24 +0000378 // Deactivate the cleanup block.
John McCall7f416cc2015-09-08 08:05:57 +0000379 DeactivateCleanupBlock(cleanup,
380 cast<llvm::Instruction>(typedAddr.getPointer()));
Mike Stump54066142009-12-01 03:41:18 +0000381}
382
John McCall7f416cc2015-09-08 08:05:57 +0000383Address CodeGenFunction::getExceptionSlot() {
John McCall9b382dd2011-05-28 21:13:02 +0000384 if (!ExceptionSlot)
385 ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot");
John McCall7f416cc2015-09-08 08:05:57 +0000386 return Address(ExceptionSlot, getPointerAlign());
Mike Stump54066142009-12-01 03:41:18 +0000387}
388
John McCall7f416cc2015-09-08 08:05:57 +0000389Address CodeGenFunction::getEHSelectorSlot() {
John McCall9b382dd2011-05-28 21:13:02 +0000390 if (!EHSelectorSlot)
391 EHSelectorSlot = CreateTempAlloca(Int32Ty, "ehselector.slot");
John McCall7f416cc2015-09-08 08:05:57 +0000392 return Address(EHSelectorSlot, CharUnits::fromQuantity(4));
John McCall9b382dd2011-05-28 21:13:02 +0000393}
394
Bill Wendling79a70e42011-09-15 18:57:19 +0000395llvm::Value *CodeGenFunction::getExceptionFromSlot() {
396 return Builder.CreateLoad(getExceptionSlot(), "exn");
397}
398
399llvm::Value *CodeGenFunction::getSelectorFromSlot() {
400 return Builder.CreateLoad(getEHSelectorSlot(), "sel");
401}
402
Richard Smithea852322013-05-07 21:53:22 +0000403void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E,
404 bool KeepInsertionPoint) {
David Majnemer7c237072015-03-05 00:46:22 +0000405 if (const Expr *SubExpr = E->getSubExpr()) {
406 QualType ThrowType = SubExpr->getType();
407 if (ThrowType->isObjCObjectPointerType()) {
408 const Stmt *ThrowStmt = E->getSubExpr();
409 const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt));
410 CGM.getObjCRuntime().EmitThrowStmt(*this, S, false);
411 } else {
412 CGM.getCXXABI().emitThrow(*this, E);
John McCall2e6567a2010-04-22 01:10:34 +0000413 }
David Majnemer7c237072015-03-05 00:46:22 +0000414 } else {
415 CGM.getCXXABI().emitRethrow(*this, /*isNoReturn=*/true);
John McCall2e6567a2010-04-22 01:10:34 +0000416 }
Mike Stump75546b82009-12-10 00:06:18 +0000417
John McCall20f6ab82011-01-12 03:41:02 +0000418 // throw is an expression, and the expression emitters expect us
419 // to leave ourselves at a valid insertion point.
Richard Smithea852322013-05-07 21:53:22 +0000420 if (KeepInsertionPoint)
421 EmitBlock(createBasicBlock("throw.cont"));
Anders Carlsson4b08db72009-10-30 01:42:31 +0000422}
Mike Stump58ef18b2009-11-20 23:44:51 +0000423
Mike Stump1d849212009-12-07 23:38:24 +0000424void CodeGenFunction::EmitStartEHSpec(const Decl *D) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000425 if (!CGM.getLangOpts().CXXExceptions)
Anders Carlsson9878f9f2010-02-06 23:59:05 +0000426 return;
427
Mike Stump1d849212009-12-07 23:38:24 +0000428 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
Craig Topper8a13c412014-05-21 05:09:00 +0000429 if (!FD) {
Alexey Bataev9959db52014-05-06 10:08:46 +0000430 // Check if CapturedDecl is nothrow and create terminate scope for it.
431 if (const CapturedDecl* CD = dyn_cast_or_null<CapturedDecl>(D)) {
432 if (CD->isNothrow())
433 EHStack.pushTerminate();
434 }
Mike Stump1d849212009-12-07 23:38:24 +0000435 return;
Alexey Bataev9959db52014-05-06 10:08:46 +0000436 }
Mike Stump1d849212009-12-07 23:38:24 +0000437 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
Craig Topper8a13c412014-05-21 05:09:00 +0000438 if (!Proto)
Mike Stump1d849212009-12-07 23:38:24 +0000439 return;
440
Sebastian Redl0b94c9f2011-03-15 18:42:48 +0000441 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
442 if (isNoexceptExceptionSpec(EST)) {
443 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
444 // noexcept functions are simple terminate scopes.
445 EHStack.pushTerminate();
446 }
447 } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
David Majnemer1f192e22015-04-01 04:45:52 +0000448 // TODO: Revisit exception specifications for the MS ABI. There is a way to
449 // encode these in an object file but MSVC doesn't do anything with it.
450 if (getTarget().getCXXABI().isMicrosoft())
451 return;
Sebastian Redl0b94c9f2011-03-15 18:42:48 +0000452 unsigned NumExceptions = Proto->getNumExceptions();
453 EHFilterScope *Filter = EHStack.pushFilter(NumExceptions);
Mike Stump1d849212009-12-07 23:38:24 +0000454
Sebastian Redl0b94c9f2011-03-15 18:42:48 +0000455 for (unsigned I = 0; I != NumExceptions; ++I) {
456 QualType Ty = Proto->getExceptionType(I);
457 QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType();
458 llvm::Value *EHType = CGM.GetAddrOfRTTIDescriptor(ExceptType,
459 /*ForEH=*/true);
460 Filter->setFilter(I, EHType);
461 }
Mike Stump1d849212009-12-07 23:38:24 +0000462 }
Mike Stump1d849212009-12-07 23:38:24 +0000463}
464
John McCall8e4c74b2011-08-11 02:22:43 +0000465/// Emit the dispatch block for a filter scope if necessary.
466static void emitFilterDispatchBlock(CodeGenFunction &CGF,
467 EHFilterScope &filterScope) {
468 llvm::BasicBlock *dispatchBlock = filterScope.getCachedEHDispatchBlock();
469 if (!dispatchBlock) return;
470 if (dispatchBlock->use_empty()) {
471 delete dispatchBlock;
472 return;
473 }
474
John McCall8e4c74b2011-08-11 02:22:43 +0000475 CGF.EmitBlockAfterUses(dispatchBlock);
476
477 // If this isn't a catch-all filter, we need to check whether we got
478 // here because the filter triggered.
479 if (filterScope.getNumFilters()) {
480 // Load the selector value.
Bill Wendling79a70e42011-09-15 18:57:19 +0000481 llvm::Value *selector = CGF.getSelectorFromSlot();
John McCall8e4c74b2011-08-11 02:22:43 +0000482 llvm::BasicBlock *unexpectedBB = CGF.createBasicBlock("ehspec.unexpected");
483
484 llvm::Value *zero = CGF.Builder.getInt32(0);
485 llvm::Value *failsFilter =
Nico Weber1bebad12015-02-11 22:33:32 +0000486 CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails");
487 CGF.Builder.CreateCondBr(failsFilter, unexpectedBB,
488 CGF.getEHResumeBlock(false));
John McCall8e4c74b2011-08-11 02:22:43 +0000489
490 CGF.EmitBlock(unexpectedBB);
491 }
492
493 // Call __cxa_call_unexpected. This doesn't need to be an invoke
494 // because __cxa_call_unexpected magically filters exceptions
495 // according to the last landing pad the exception was thrown
496 // into. Seriously.
Bill Wendling79a70e42011-09-15 18:57:19 +0000497 llvm::Value *exn = CGF.getExceptionFromSlot();
John McCall882987f2013-02-28 19:01:20 +0000498 CGF.EmitRuntimeCall(getUnexpectedFn(CGF.CGM), exn)
John McCall8e4c74b2011-08-11 02:22:43 +0000499 ->setDoesNotReturn();
500 CGF.Builder.CreateUnreachable();
501}
502
Mike Stump1d849212009-12-07 23:38:24 +0000503void CodeGenFunction::EmitEndEHSpec(const Decl *D) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000504 if (!CGM.getLangOpts().CXXExceptions)
Anders Carlsson9878f9f2010-02-06 23:59:05 +0000505 return;
506
Mike Stump1d849212009-12-07 23:38:24 +0000507 const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D);
Craig Topper8a13c412014-05-21 05:09:00 +0000508 if (!FD) {
Alexey Bataev9959db52014-05-06 10:08:46 +0000509 // Check if CapturedDecl is nothrow and pop terminate scope for it.
510 if (const CapturedDecl* CD = dyn_cast_or_null<CapturedDecl>(D)) {
511 if (CD->isNothrow())
512 EHStack.popTerminate();
513 }
Mike Stump1d849212009-12-07 23:38:24 +0000514 return;
Alexey Bataev9959db52014-05-06 10:08:46 +0000515 }
Mike Stump1d849212009-12-07 23:38:24 +0000516 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
Craig Topper8a13c412014-05-21 05:09:00 +0000517 if (!Proto)
Mike Stump1d849212009-12-07 23:38:24 +0000518 return;
519
Sebastian Redl0b94c9f2011-03-15 18:42:48 +0000520 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
521 if (isNoexceptExceptionSpec(EST)) {
522 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
523 EHStack.popTerminate();
524 }
525 } else if (EST == EST_Dynamic || EST == EST_DynamicNone) {
David Majnemer1f192e22015-04-01 04:45:52 +0000526 // TODO: Revisit exception specifications for the MS ABI. There is a way to
527 // encode these in an object file but MSVC doesn't do anything with it.
528 if (getTarget().getCXXABI().isMicrosoft())
529 return;
John McCall8e4c74b2011-08-11 02:22:43 +0000530 EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin());
531 emitFilterDispatchBlock(*this, filterScope);
Sebastian Redl0b94c9f2011-03-15 18:42:48 +0000532 EHStack.popFilter();
533 }
Mike Stump1d849212009-12-07 23:38:24 +0000534}
535
Mike Stump58ef18b2009-11-20 23:44:51 +0000536void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) {
John McCallb609d3f2010-07-07 06:56:46 +0000537 EnterCXXTryStmt(S);
John McCallb81884d2010-02-19 09:25:03 +0000538 EmitStmt(S.getTryBlock());
John McCallb609d3f2010-07-07 06:56:46 +0000539 ExitCXXTryStmt(S);
John McCallb81884d2010-02-19 09:25:03 +0000540}
541
John McCallb609d3f2010-07-07 06:56:46 +0000542void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
John McCallbd309292010-07-06 01:34:17 +0000543 unsigned NumHandlers = S.getNumHandlers();
544 EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers);
John McCallb81884d2010-02-19 09:25:03 +0000545
John McCallbd309292010-07-06 01:34:17 +0000546 for (unsigned I = 0; I != NumHandlers; ++I) {
547 const CXXCatchStmt *C = S.getHandler(I);
John McCallb81884d2010-02-19 09:25:03 +0000548
John McCallbd309292010-07-06 01:34:17 +0000549 llvm::BasicBlock *Handler = createBasicBlock("catch");
550 if (C->getExceptionDecl()) {
551 // FIXME: Dropping the reference type on the type into makes it
552 // impossible to correctly implement catch-by-reference
553 // semantics for pointers. Unfortunately, this is what all
554 // existing compilers do, and it's not clear that the standard
555 // personality routine is capable of doing this right. See C++ DR 388:
556 // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#388
David Majnemer571162a2014-10-12 06:58:22 +0000557 Qualifiers CaughtTypeQuals;
558 QualType CaughtType = CGM.getContext().getUnqualifiedArrayType(
559 C->getCaughtType().getNonReferenceType(), CaughtTypeQuals);
John McCall2ca705e2010-07-24 00:37:23 +0000560
Reid Kleckner10aa7702015-09-16 20:15:55 +0000561 CatchTypeInfo TypeInfo{nullptr, 0};
John McCall2ca705e2010-07-24 00:37:23 +0000562 if (CaughtType->isObjCObjectPointerType())
Reid Kleckner10aa7702015-09-16 20:15:55 +0000563 TypeInfo.RTTI = CGM.getObjCRuntime().GetEHType(CaughtType);
John McCall2ca705e2010-07-24 00:37:23 +0000564 else
Reid Kleckner10aa7702015-09-16 20:15:55 +0000565 TypeInfo = CGM.getCXXABI().getAddrOfCXXCatchHandlerType(
566 CaughtType, C->getCaughtType());
John McCallbd309292010-07-06 01:34:17 +0000567 CatchScope->setHandler(I, TypeInfo, Handler);
568 } else {
569 // No exception decl indicates '...', a catch-all.
Reid Kleckner10aa7702015-09-16 20:15:55 +0000570 CatchScope->setHandler(I, CGM.getCXXABI().getCatchAllTypeInfo(), Handler);
John McCallbd309292010-07-06 01:34:17 +0000571 }
572 }
John McCallbd309292010-07-06 01:34:17 +0000573}
574
John McCall8e4c74b2011-08-11 02:22:43 +0000575llvm::BasicBlock *
576CodeGenFunction::getEHDispatchBlock(EHScopeStack::stable_iterator si) {
Reid Kleckner129552b2015-10-08 01:13:52 +0000577 if (EHPersonality::get(*this).usesFuncletPads())
David Majnemerdbf10452015-07-31 17:58:45 +0000578 return getMSVCDispatchBlock(si);
579
John McCall8e4c74b2011-08-11 02:22:43 +0000580 // The dispatch block for the end of the scope chain is a block that
581 // just resumes unwinding.
582 if (si == EHStack.stable_end())
David Chisnall9a837be2012-11-07 16:50:40 +0000583 return getEHResumeBlock(true);
John McCall8e4c74b2011-08-11 02:22:43 +0000584
585 // Otherwise, we should look at the actual scope.
586 EHScope &scope = *EHStack.find(si);
587
588 llvm::BasicBlock *dispatchBlock = scope.getCachedEHDispatchBlock();
589 if (!dispatchBlock) {
590 switch (scope.getKind()) {
591 case EHScope::Catch: {
592 // Apply a special case to a single catch-all.
593 EHCatchScope &catchScope = cast<EHCatchScope>(scope);
594 if (catchScope.getNumHandlers() == 1 &&
595 catchScope.getHandler(0).isCatchAll()) {
596 dispatchBlock = catchScope.getHandler(0).Block;
597
598 // Otherwise, make a dispatch block.
599 } else {
600 dispatchBlock = createBasicBlock("catch.dispatch");
601 }
602 break;
603 }
604
605 case EHScope::Cleanup:
606 dispatchBlock = createBasicBlock("ehcleanup");
607 break;
608
609 case EHScope::Filter:
610 dispatchBlock = createBasicBlock("filter.dispatch");
611 break;
612
613 case EHScope::Terminate:
614 dispatchBlock = getTerminateHandler();
615 break;
David Majnemerdbf10452015-07-31 17:58:45 +0000616
Reid Kleckner2586aac2015-09-10 22:11:13 +0000617 case EHScope::PadEnd:
618 llvm_unreachable("PadEnd unnecessary for Itanium!");
John McCall8e4c74b2011-08-11 02:22:43 +0000619 }
620 scope.setCachedEHDispatchBlock(dispatchBlock);
621 }
622 return dispatchBlock;
623}
624
David Majnemerdbf10452015-07-31 17:58:45 +0000625llvm::BasicBlock *
626CodeGenFunction::getMSVCDispatchBlock(EHScopeStack::stable_iterator SI) {
627 // Returning nullptr indicates that the previous dispatch block should unwind
628 // to caller.
629 if (SI == EHStack.stable_end())
630 return nullptr;
631
632 // Otherwise, we should look at the actual scope.
633 EHScope &EHS = *EHStack.find(SI);
634
635 llvm::BasicBlock *DispatchBlock = EHS.getCachedEHDispatchBlock();
636 if (DispatchBlock)
637 return DispatchBlock;
638
639 if (EHS.getKind() == EHScope::Terminate)
640 DispatchBlock = getTerminateHandler();
641 else
642 DispatchBlock = createBasicBlock();
John McCall7f416cc2015-09-08 08:05:57 +0000643 CGBuilderTy Builder(*this, DispatchBlock);
David Majnemerdbf10452015-07-31 17:58:45 +0000644
645 switch (EHS.getKind()) {
646 case EHScope::Catch:
647 DispatchBlock->setName("catch.dispatch");
648 break;
649
650 case EHScope::Cleanup:
651 DispatchBlock->setName("ehcleanup");
652 break;
653
654 case EHScope::Filter:
655 llvm_unreachable("exception specifications not handled yet!");
656
657 case EHScope::Terminate:
658 DispatchBlock->setName("terminate");
659 break;
660
Reid Kleckner2586aac2015-09-10 22:11:13 +0000661 case EHScope::PadEnd:
662 llvm_unreachable("PadEnd dispatch block missing!");
David Majnemerdbf10452015-07-31 17:58:45 +0000663 }
664 EHS.setCachedEHDispatchBlock(DispatchBlock);
665 return DispatchBlock;
666}
667
John McCallbd309292010-07-06 01:34:17 +0000668/// Check whether this is a non-EH scope, i.e. a scope which doesn't
669/// affect exception handling. Currently, the only non-EH scopes are
670/// normal-only cleanup scopes.
671static bool isNonEHScope(const EHScope &S) {
John McCall2b7fc382010-07-13 20:32:21 +0000672 switch (S.getKind()) {
John McCallcda666c2010-07-21 07:22:38 +0000673 case EHScope::Cleanup:
674 return !cast<EHCleanupScope>(S).isEHCleanup();
John McCall2b7fc382010-07-13 20:32:21 +0000675 case EHScope::Filter:
676 case EHScope::Catch:
677 case EHScope::Terminate:
Reid Kleckner2586aac2015-09-10 22:11:13 +0000678 case EHScope::PadEnd:
John McCall2b7fc382010-07-13 20:32:21 +0000679 return false;
680 }
681
David Blaikiee4d798f2012-01-20 21:50:17 +0000682 llvm_unreachable("Invalid EHScope Kind!");
John McCallbd309292010-07-06 01:34:17 +0000683}
684
685llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() {
686 assert(EHStack.requiresLandingPad());
687 assert(!EHStack.empty());
688
Reid Kleckner8f1b1f52016-03-01 19:51:48 +0000689 // If exceptions are disabled and SEH is not in use, then there is no invoke
690 // destination. SEH "works" even if exceptions are off. In practice, this
691 // means that C++ destructors and other EH cleanups don't run, which is
692 // consistent with MSVC's behavior.
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000693 const LangOptions &LO = CGM.getLangOpts();
694 if (!LO.Exceptions) {
695 if (!LO.Borland && !LO.MicrosoftExt)
696 return nullptr;
Reid Klecknere7b3f7c2015-02-11 00:00:21 +0000697 if (!currentFunctionUsesSEHTry())
Reid Klecknerdeeddec2015-02-05 18:56:03 +0000698 return nullptr;
699 }
John McCall2b7fc382010-07-13 20:32:21 +0000700
John McCallbd309292010-07-06 01:34:17 +0000701 // Check the innermost scope for a cached landing pad. If this is
702 // a non-EH cleanup, we'll check enclosing scopes in EmitLandingPad.
703 llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad();
704 if (LP) return LP;
705
David Majnemerdbf10452015-07-31 17:58:45 +0000706 const EHPersonality &Personality = EHPersonality::get(*this);
707
708 if (!CurFn->hasPersonalityFn())
709 CurFn->setPersonalityFn(getOpaquePersonalityFn(CGM, Personality));
710
Reid Kleckner129552b2015-10-08 01:13:52 +0000711 if (Personality.usesFuncletPads()) {
712 // We don't need separate landing pads in the funclet model.
David Majnemerdbf10452015-07-31 17:58:45 +0000713 LP = getEHDispatchBlock(EHStack.getInnermostEHScope());
714 } else {
715 // Build the landing pad for this scope.
716 LP = EmitLandingPad();
717 }
718
John McCallbd309292010-07-06 01:34:17 +0000719 assert(LP);
720
721 // Cache the landing pad on the innermost scope. If this is a
722 // non-EH scope, cache the landing pad on the enclosing scope, too.
723 for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) {
724 ir->setCachedLandingPad(LP);
725 if (!isNonEHScope(*ir)) break;
726 }
727
728 return LP;
729}
730
731llvm::BasicBlock *CodeGenFunction::EmitLandingPad() {
732 assert(EHStack.requiresLandingPad());
733
John McCall8e4c74b2011-08-11 02:22:43 +0000734 EHScope &innermostEHScope = *EHStack.find(EHStack.getInnermostEHScope());
735 switch (innermostEHScope.getKind()) {
736 case EHScope::Terminate:
737 return getTerminateLandingPad();
John McCallbd309292010-07-06 01:34:17 +0000738
Reid Kleckner2586aac2015-09-10 22:11:13 +0000739 case EHScope::PadEnd:
740 llvm_unreachable("PadEnd unnecessary for Itanium!");
David Majnemerdbf10452015-07-31 17:58:45 +0000741
John McCall8e4c74b2011-08-11 02:22:43 +0000742 case EHScope::Catch:
743 case EHScope::Cleanup:
744 case EHScope::Filter:
745 if (llvm::BasicBlock *lpad = innermostEHScope.getCachedLandingPad())
746 return lpad;
John McCallbd309292010-07-06 01:34:17 +0000747 }
748
749 // Save the current IR generation state.
John McCall8e4c74b2011-08-11 02:22:43 +0000750 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
Adrian Prantl95b24e92015-02-03 20:00:54 +0000751 auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, CurEHLocation);
John McCallbd309292010-07-06 01:34:17 +0000752
753 // Create and configure the landing pad.
John McCall8e4c74b2011-08-11 02:22:43 +0000754 llvm::BasicBlock *lpad = createBasicBlock("lpad");
755 EmitBlock(lpad);
John McCallbd309292010-07-06 01:34:17 +0000756
David Majnemerfcbdb6e2015-06-17 20:53:19 +0000757 llvm::LandingPadInst *LPadInst = Builder.CreateLandingPad(
758 llvm::StructType::get(Int8PtrTy, Int32Ty, nullptr), 0);
Bill Wendlingf0724e82011-09-19 20:31:14 +0000759
760 llvm::Value *LPadExn = Builder.CreateExtractValue(LPadInst, 0);
761 Builder.CreateStore(LPadExn, getExceptionSlot());
762 llvm::Value *LPadSel = Builder.CreateExtractValue(LPadInst, 1);
763 Builder.CreateStore(LPadSel, getEHSelectorSlot());
764
John McCallbd309292010-07-06 01:34:17 +0000765 // Save the exception pointer. It's safe to use a single exception
766 // pointer per function because EH cleanups can never have nested
767 // try/catches.
Bill Wendlingf0724e82011-09-19 20:31:14 +0000768 // Build the landingpad instruction.
John McCallbd309292010-07-06 01:34:17 +0000769
770 // Accumulate all the handlers in scope.
John McCall8e4c74b2011-08-11 02:22:43 +0000771 bool hasCatchAll = false;
772 bool hasCleanup = false;
773 bool hasFilter = false;
774 SmallVector<llvm::Value*, 4> filterTypes;
775 llvm::SmallPtrSet<llvm::Value*, 4> catchTypes;
Nico Webere68b9f32015-02-25 16:25:00 +0000776 for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end(); I != E;
777 ++I) {
John McCallbd309292010-07-06 01:34:17 +0000778
779 switch (I->getKind()) {
John McCallcda666c2010-07-21 07:22:38 +0000780 case EHScope::Cleanup:
John McCall8e4c74b2011-08-11 02:22:43 +0000781 // If we have a cleanup, remember that.
782 hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup());
John McCall2b7fc382010-07-13 20:32:21 +0000783 continue;
784
John McCallbd309292010-07-06 01:34:17 +0000785 case EHScope::Filter: {
786 assert(I.next() == EHStack.end() && "EH filter is not end of EH stack");
John McCall8e4c74b2011-08-11 02:22:43 +0000787 assert(!hasCatchAll && "EH filter reached after catch-all");
John McCallbd309292010-07-06 01:34:17 +0000788
Bill Wendlingf0724e82011-09-19 20:31:14 +0000789 // Filter scopes get added to the landingpad in weird ways.
John McCall8e4c74b2011-08-11 02:22:43 +0000790 EHFilterScope &filter = cast<EHFilterScope>(*I);
791 hasFilter = true;
John McCallbd309292010-07-06 01:34:17 +0000792
Bill Wendling8c4b7162011-09-22 20:32:54 +0000793 // Add all the filter values.
794 for (unsigned i = 0, e = filter.getNumFilters(); i != e; ++i)
795 filterTypes.push_back(filter.getFilter(i));
John McCallbd309292010-07-06 01:34:17 +0000796 goto done;
797 }
798
799 case EHScope::Terminate:
800 // Terminate scopes are basically catch-alls.
John McCall8e4c74b2011-08-11 02:22:43 +0000801 assert(!hasCatchAll);
802 hasCatchAll = true;
John McCallbd309292010-07-06 01:34:17 +0000803 goto done;
804
805 case EHScope::Catch:
806 break;
David Majnemerdbf10452015-07-31 17:58:45 +0000807
Reid Kleckner2586aac2015-09-10 22:11:13 +0000808 case EHScope::PadEnd:
809 llvm_unreachable("PadEnd unnecessary for Itanium!");
John McCallbd309292010-07-06 01:34:17 +0000810 }
811
John McCall8e4c74b2011-08-11 02:22:43 +0000812 EHCatchScope &catchScope = cast<EHCatchScope>(*I);
813 for (unsigned hi = 0, he = catchScope.getNumHandlers(); hi != he; ++hi) {
814 EHCatchScope::Handler handler = catchScope.getHandler(hi);
Reid Kleckner10aa7702015-09-16 20:15:55 +0000815 assert(handler.Type.Flags == 0 &&
816 "landingpads do not support catch handler flags");
John McCallbd309292010-07-06 01:34:17 +0000817
John McCall8e4c74b2011-08-11 02:22:43 +0000818 // If this is a catch-all, register that and abort.
Reid Kleckner10aa7702015-09-16 20:15:55 +0000819 if (!handler.Type.RTTI) {
John McCall8e4c74b2011-08-11 02:22:43 +0000820 assert(!hasCatchAll);
821 hasCatchAll = true;
822 goto done;
John McCallbd309292010-07-06 01:34:17 +0000823 }
824
825 // Check whether we already have a handler for this type.
Reid Kleckner10aa7702015-09-16 20:15:55 +0000826 if (catchTypes.insert(handler.Type.RTTI).second)
Bill Wendlingf0724e82011-09-19 20:31:14 +0000827 // If not, add it directly to the landingpad.
Reid Kleckner10aa7702015-09-16 20:15:55 +0000828 LPadInst->addClause(handler.Type.RTTI);
John McCallbd309292010-07-06 01:34:17 +0000829 }
John McCallbd309292010-07-06 01:34:17 +0000830 }
831
832 done:
Bill Wendlingf0724e82011-09-19 20:31:14 +0000833 // If we have a catch-all, add null to the landingpad.
John McCall8e4c74b2011-08-11 02:22:43 +0000834 assert(!(hasCatchAll && hasFilter));
835 if (hasCatchAll) {
Bill Wendlingf0724e82011-09-19 20:31:14 +0000836 LPadInst->addClause(getCatchAllValue(*this));
John McCallbd309292010-07-06 01:34:17 +0000837
838 // If we have an EH filter, we need to add those handlers in the
Bill Wendlingf0724e82011-09-19 20:31:14 +0000839 // right place in the landingpad, which is to say, at the end.
John McCall8e4c74b2011-08-11 02:22:43 +0000840 } else if (hasFilter) {
Bill Wendling58e58fe2011-09-19 22:08:36 +0000841 // Create a filter expression: a constant array indicating which filter
842 // types there are. The personality routine only lands here if the filter
843 // doesn't match.
Dmitri Gribenkof8579502013-01-12 19:30:44 +0000844 SmallVector<llvm::Constant*, 8> Filters;
Bill Wendlingf0724e82011-09-19 20:31:14 +0000845 llvm::ArrayType *AType =
846 llvm::ArrayType::get(!filterTypes.empty() ?
847 filterTypes[0]->getType() : Int8PtrTy,
848 filterTypes.size());
849
850 for (unsigned i = 0, e = filterTypes.size(); i != e; ++i)
851 Filters.push_back(cast<llvm::Constant>(filterTypes[i]));
852 llvm::Constant *FilterArray = llvm::ConstantArray::get(AType, Filters);
853 LPadInst->addClause(FilterArray);
John McCallbd309292010-07-06 01:34:17 +0000854
855 // Also check whether we need a cleanup.
Bill Wendlingf0724e82011-09-19 20:31:14 +0000856 if (hasCleanup)
857 LPadInst->setCleanup(true);
John McCallbd309292010-07-06 01:34:17 +0000858
859 // Otherwise, signal that we at least have cleanups.
Logan Chiene9c8ccb2014-07-01 11:47:10 +0000860 } else if (hasCleanup) {
861 LPadInst->setCleanup(true);
John McCallbd309292010-07-06 01:34:17 +0000862 }
863
Bill Wendlingf0724e82011-09-19 20:31:14 +0000864 assert((LPadInst->getNumClauses() > 0 || LPadInst->isCleanup()) &&
865 "landingpad instruction has no clauses!");
John McCallbd309292010-07-06 01:34:17 +0000866
867 // Tell the backend how to generate the landing pad.
John McCall8e4c74b2011-08-11 02:22:43 +0000868 Builder.CreateBr(getEHDispatchBlock(EHStack.getInnermostEHScope()));
John McCallbd309292010-07-06 01:34:17 +0000869
870 // Restore the old IR generation state.
John McCall8e4c74b2011-08-11 02:22:43 +0000871 Builder.restoreIP(savedIP);
John McCallbd309292010-07-06 01:34:17 +0000872
John McCall8e4c74b2011-08-11 02:22:43 +0000873 return lpad;
John McCallbd309292010-07-06 01:34:17 +0000874}
875
David Majnemer4e52d6f2015-12-12 05:39:21 +0000876static void emitCatchPadBlock(CodeGenFunction &CGF, EHCatchScope &CatchScope) {
David Majnemerdbf10452015-07-31 17:58:45 +0000877 llvm::BasicBlock *DispatchBlock = CatchScope.getCachedEHDispatchBlock();
878 assert(DispatchBlock);
879
880 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveIP();
881 CGF.EmitBlockAfterUses(DispatchBlock);
882
David Majnemer4e52d6f2015-12-12 05:39:21 +0000883 llvm::Value *ParentPad = CGF.CurrentFuncletPad;
884 if (!ParentPad)
885 ParentPad = llvm::ConstantTokenNone::get(CGF.getLLVMContext());
886 llvm::BasicBlock *UnwindBB =
887 CGF.getEHDispatchBlock(CatchScope.getEnclosingEHScope());
888
889 unsigned NumHandlers = CatchScope.getNumHandlers();
890 llvm::CatchSwitchInst *CatchSwitch =
891 CGF.Builder.CreateCatchSwitch(ParentPad, UnwindBB, NumHandlers);
David Majnemerdbf10452015-07-31 17:58:45 +0000892
893 // Test against each of the exception types we claim to catch.
David Majnemer4e52d6f2015-12-12 05:39:21 +0000894 for (unsigned I = 0; I < NumHandlers; ++I) {
David Majnemerdbf10452015-07-31 17:58:45 +0000895 const EHCatchScope::Handler &Handler = CatchScope.getHandler(I);
896
Reid Kleckner10aa7702015-09-16 20:15:55 +0000897 CatchTypeInfo TypeInfo = Handler.Type;
898 if (!TypeInfo.RTTI)
899 TypeInfo.RTTI = llvm::Constant::getNullValue(CGF.VoidPtrTy);
David Majnemerdbf10452015-07-31 17:58:45 +0000900
David Majnemer4e52d6f2015-12-12 05:39:21 +0000901 CGF.Builder.SetInsertPoint(Handler.Block);
David Majnemerdbf10452015-07-31 17:58:45 +0000902
903 if (EHPersonality::get(CGF).isMSVCXXPersonality()) {
David Majnemer4e52d6f2015-12-12 05:39:21 +0000904 CGF.Builder.CreateCatchPad(
905 CatchSwitch, {TypeInfo.RTTI, CGF.Builder.getInt32(TypeInfo.Flags),
906 llvm::Constant::getNullValue(CGF.VoidPtrTy)});
David Majnemerdbf10452015-07-31 17:58:45 +0000907 } else {
David Majnemer4e52d6f2015-12-12 05:39:21 +0000908 CGF.Builder.CreateCatchPad(CatchSwitch, {TypeInfo.RTTI});
David Majnemerdbf10452015-07-31 17:58:45 +0000909 }
910
David Majnemer4e52d6f2015-12-12 05:39:21 +0000911 CatchSwitch->addHandler(Handler.Block);
David Majnemerdbf10452015-07-31 17:58:45 +0000912 }
913 CGF.Builder.restoreIP(SavedIP);
David Majnemerdbf10452015-07-31 17:58:45 +0000914}
915
John McCall8e4c74b2011-08-11 02:22:43 +0000916/// Emit the structure of the dispatch block for the given catch scope.
917/// It is an invariant that the dispatch block already exists.
David Majnemer4e52d6f2015-12-12 05:39:21 +0000918static void emitCatchDispatchBlock(CodeGenFunction &CGF,
919 EHCatchScope &catchScope) {
Reid Kleckner129552b2015-10-08 01:13:52 +0000920 if (EHPersonality::get(CGF).usesFuncletPads())
921 return emitCatchPadBlock(CGF, catchScope);
David Majnemerdbf10452015-07-31 17:58:45 +0000922
John McCall8e4c74b2011-08-11 02:22:43 +0000923 llvm::BasicBlock *dispatchBlock = catchScope.getCachedEHDispatchBlock();
924 assert(dispatchBlock);
925
926 // If there's only a single catch-all, getEHDispatchBlock returned
927 // that catch-all as the dispatch block.
928 if (catchScope.getNumHandlers() == 1 &&
929 catchScope.getHandler(0).isCatchAll()) {
930 assert(dispatchBlock == catchScope.getHandler(0).Block);
David Majnemer4e52d6f2015-12-12 05:39:21 +0000931 return;
John McCall8e4c74b2011-08-11 02:22:43 +0000932 }
933
934 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP();
935 CGF.EmitBlockAfterUses(dispatchBlock);
936
937 // Select the right handler.
938 llvm::Value *llvm_eh_typeid_for =
939 CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for);
940
941 // Load the selector value.
Bill Wendling79a70e42011-09-15 18:57:19 +0000942 llvm::Value *selector = CGF.getSelectorFromSlot();
John McCall8e4c74b2011-08-11 02:22:43 +0000943
944 // Test against each of the exception types we claim to catch.
945 for (unsigned i = 0, e = catchScope.getNumHandlers(); ; ++i) {
946 assert(i < e && "ran off end of handlers!");
947 const EHCatchScope::Handler &handler = catchScope.getHandler(i);
948
Reid Kleckner10aa7702015-09-16 20:15:55 +0000949 llvm::Value *typeValue = handler.Type.RTTI;
950 assert(handler.Type.Flags == 0 &&
951 "landingpads do not support catch handler flags");
John McCall8e4c74b2011-08-11 02:22:43 +0000952 assert(typeValue && "fell into catch-all case!");
953 typeValue = CGF.Builder.CreateBitCast(typeValue, CGF.Int8PtrTy);
954
955 // Figure out the next block.
956 bool nextIsEnd;
957 llvm::BasicBlock *nextBlock;
958
959 // If this is the last handler, we're at the end, and the next
960 // block is the block for the enclosing EH scope.
961 if (i + 1 == e) {
962 nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope());
963 nextIsEnd = true;
964
965 // If the next handler is a catch-all, we're at the end, and the
966 // next block is that handler.
967 } else if (catchScope.getHandler(i+1).isCatchAll()) {
968 nextBlock = catchScope.getHandler(i+1).Block;
969 nextIsEnd = true;
970
971 // Otherwise, we're not at the end and we need a new block.
972 } else {
973 nextBlock = CGF.createBasicBlock("catch.fallthrough");
974 nextIsEnd = false;
975 }
976
977 // Figure out the catch type's index in the LSDA's type table.
978 llvm::CallInst *typeIndex =
979 CGF.Builder.CreateCall(llvm_eh_typeid_for, typeValue);
980 typeIndex->setDoesNotThrow();
981
982 llvm::Value *matchesTypeIndex =
983 CGF.Builder.CreateICmpEQ(selector, typeIndex, "matches");
984 CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock);
985
986 // If the next handler is a catch-all, we're completely done.
987 if (nextIsEnd) {
988 CGF.Builder.restoreIP(savedIP);
David Majnemer4e52d6f2015-12-12 05:39:21 +0000989 return;
John McCall8e4c74b2011-08-11 02:22:43 +0000990 }
Ahmed Charles289896d2012-02-19 11:57:29 +0000991 // Otherwise we need to emit and continue at that block.
992 CGF.EmitBlock(nextBlock);
John McCall8e4c74b2011-08-11 02:22:43 +0000993 }
John McCall8e4c74b2011-08-11 02:22:43 +0000994}
995
996void CodeGenFunction::popCatchScope() {
997 EHCatchScope &catchScope = cast<EHCatchScope>(*EHStack.begin());
998 if (catchScope.hasEHBranches())
999 emitCatchDispatchBlock(*this, catchScope);
1000 EHStack.popCatch();
1001}
1002
John McCallb609d3f2010-07-07 06:56:46 +00001003void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) {
John McCallbd309292010-07-06 01:34:17 +00001004 unsigned NumHandlers = S.getNumHandlers();
1005 EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin());
1006 assert(CatchScope.getNumHandlers() == NumHandlers);
Mike Stump58ef18b2009-11-20 23:44:51 +00001007
John McCall8e4c74b2011-08-11 02:22:43 +00001008 // If the catch was not required, bail out now.
1009 if (!CatchScope.hasEHBranches()) {
Kostya Serebryanyba4aced2014-01-09 09:22:32 +00001010 CatchScope.clearHandlerBlocks();
John McCall8e4c74b2011-08-11 02:22:43 +00001011 EHStack.popCatch();
1012 return;
1013 }
1014
1015 // Emit the structure of the EH dispatch for this catch.
David Majnemer4e52d6f2015-12-12 05:39:21 +00001016 emitCatchDispatchBlock(*this, CatchScope);
John McCall8e4c74b2011-08-11 02:22:43 +00001017
John McCallbd309292010-07-06 01:34:17 +00001018 // Copy the handler blocks off before we pop the EH stack. Emitting
1019 // the handlers might scribble on this memory.
Benjamin Kramerda32cf82015-08-04 15:38:49 +00001020 SmallVector<EHCatchScope::Handler, 8> Handlers(
1021 CatchScope.begin(), CatchScope.begin() + NumHandlers);
John McCall8e4c74b2011-08-11 02:22:43 +00001022
John McCallbd309292010-07-06 01:34:17 +00001023 EHStack.popCatch();
Mike Stump58ef18b2009-11-20 23:44:51 +00001024
John McCallbd309292010-07-06 01:34:17 +00001025 // The fall-through block.
1026 llvm::BasicBlock *ContBB = createBasicBlock("try.cont");
Mike Stump58ef18b2009-11-20 23:44:51 +00001027
John McCallbd309292010-07-06 01:34:17 +00001028 // We just emitted the body of the try; jump to the continue block.
1029 if (HaveInsertPoint())
1030 Builder.CreateBr(ContBB);
Mike Stump97329152009-12-02 19:53:57 +00001031
John McCalld8d00be2012-06-15 05:27:05 +00001032 // Determine if we need an implicit rethrow for all these catch handlers;
1033 // see the comment below.
1034 bool doImplicitRethrow = false;
John McCallb609d3f2010-07-07 06:56:46 +00001035 if (IsFnTryBlock)
John McCalld8d00be2012-06-15 05:27:05 +00001036 doImplicitRethrow = isa<CXXDestructorDecl>(CurCodeDecl) ||
1037 isa<CXXConstructorDecl>(CurCodeDecl);
John McCallb609d3f2010-07-07 06:56:46 +00001038
John McCall8e4c74b2011-08-11 02:22:43 +00001039 // Perversely, we emit the handlers backwards precisely because we
1040 // want them to appear in source order. In all of these cases, the
1041 // catch block will have exactly one predecessor, which will be a
1042 // particular block in the catch dispatch. However, in the case of
1043 // a catch-all, one of the dispatch blocks will branch to two
1044 // different handlers, and EmitBlockAfterUses will cause the second
1045 // handler to be moved before the first.
1046 for (unsigned I = NumHandlers; I != 0; --I) {
1047 llvm::BasicBlock *CatchBlock = Handlers[I-1].Block;
1048 EmitBlockAfterUses(CatchBlock);
Mike Stump75546b82009-12-10 00:06:18 +00001049
John McCallbd309292010-07-06 01:34:17 +00001050 // Catch the exception if this isn't a catch-all.
John McCall8e4c74b2011-08-11 02:22:43 +00001051 const CXXCatchStmt *C = S.getHandler(I-1);
Mike Stump58ef18b2009-11-20 23:44:51 +00001052
John McCallbd309292010-07-06 01:34:17 +00001053 // Enter a cleanup scope, including the catch variable and the
1054 // end-catch.
1055 RunCleanupsScope CatchScope(*this);
Mike Stump58ef18b2009-11-20 23:44:51 +00001056
John McCallbd309292010-07-06 01:34:17 +00001057 // Initialize the catch variable and set up the cleanups.
David Majnemer4e52d6f2015-12-12 05:39:21 +00001058 SaveAndRestore<llvm::Instruction *> RestoreCurrentFuncletPad(
1059 CurrentFuncletPad);
Reid Klecknerfff8e7f2015-03-03 19:21:04 +00001060 CGM.getCXXABI().emitBeginCatch(*this, C);
John McCallbd309292010-07-06 01:34:17 +00001061
Justin Bognerea278c32014-01-07 00:20:28 +00001062 // Emit the PGO counter increment.
Justin Bogner66242d62015-04-23 23:06:47 +00001063 incrementProfileCounter(C);
Justin Bogneref512b92014-01-06 22:27:43 +00001064
John McCallbd309292010-07-06 01:34:17 +00001065 // Perform the body of the catch.
1066 EmitStmt(C->getHandlerBlock());
1067
John McCalld8d00be2012-06-15 05:27:05 +00001068 // [except.handle]p11:
1069 // The currently handled exception is rethrown if control
1070 // reaches the end of a handler of the function-try-block of a
1071 // constructor or destructor.
1072
1073 // It is important that we only do this on fallthrough and not on
1074 // return. Note that it's illegal to put a return in a
1075 // constructor function-try-block's catch handler (p14), so this
1076 // really only applies to destructors.
1077 if (doImplicitRethrow && HaveInsertPoint()) {
David Majnemer442d0a22014-11-25 07:20:20 +00001078 CGM.getCXXABI().emitRethrow(*this, /*isNoReturn*/false);
John McCalld8d00be2012-06-15 05:27:05 +00001079 Builder.CreateUnreachable();
1080 Builder.ClearInsertionPoint();
1081 }
1082
John McCallbd309292010-07-06 01:34:17 +00001083 // Fall out through the catch cleanups.
1084 CatchScope.ForceCleanup();
1085
1086 // Branch out of the try.
1087 if (HaveInsertPoint())
1088 Builder.CreateBr(ContBB);
Mike Stump58ef18b2009-11-20 23:44:51 +00001089 }
1090
John McCallbd309292010-07-06 01:34:17 +00001091 EmitBlock(ContBB);
Justin Bogner66242d62015-04-23 23:06:47 +00001092 incrementProfileCounter(&S);
Mike Stump58ef18b2009-11-20 23:44:51 +00001093}
Mike Stumpaff69af2009-12-09 03:35:49 +00001094
John McCall1e670402010-07-21 00:52:03 +00001095namespace {
David Blaikie7e70d682015-08-18 22:40:54 +00001096 struct CallEndCatchForFinally final : EHScopeStack::Cleanup {
John McCall1e670402010-07-21 00:52:03 +00001097 llvm::Value *ForEHVar;
1098 llvm::Value *EndCatchFn;
1099 CallEndCatchForFinally(llvm::Value *ForEHVar, llvm::Value *EndCatchFn)
1100 : ForEHVar(ForEHVar), EndCatchFn(EndCatchFn) {}
1101
Craig Topper4f12f102014-03-12 06:41:41 +00001102 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall1e670402010-07-21 00:52:03 +00001103 llvm::BasicBlock *EndCatchBB = CGF.createBasicBlock("finally.endcatch");
1104 llvm::BasicBlock *CleanupContBB =
1105 CGF.createBasicBlock("finally.cleanup.cont");
1106
1107 llvm::Value *ShouldEndCatch =
John McCall7f416cc2015-09-08 08:05:57 +00001108 CGF.Builder.CreateFlagLoad(ForEHVar, "finally.endcatch");
John McCall1e670402010-07-21 00:52:03 +00001109 CGF.Builder.CreateCondBr(ShouldEndCatch, EndCatchBB, CleanupContBB);
1110 CGF.EmitBlock(EndCatchBB);
John McCall882987f2013-02-28 19:01:20 +00001111 CGF.EmitRuntimeCallOrInvoke(EndCatchFn); // catch-all, so might throw
John McCall1e670402010-07-21 00:52:03 +00001112 CGF.EmitBlock(CleanupContBB);
1113 }
1114 };
John McCall906da4b2010-07-21 05:47:49 +00001115
David Blaikie7e70d682015-08-18 22:40:54 +00001116 struct PerformFinally final : EHScopeStack::Cleanup {
John McCall906da4b2010-07-21 05:47:49 +00001117 const Stmt *Body;
1118 llvm::Value *ForEHVar;
1119 llvm::Value *EndCatchFn;
1120 llvm::Value *RethrowFn;
1121 llvm::Value *SavedExnVar;
1122
1123 PerformFinally(const Stmt *Body, llvm::Value *ForEHVar,
1124 llvm::Value *EndCatchFn,
1125 llvm::Value *RethrowFn, llvm::Value *SavedExnVar)
1126 : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn),
1127 RethrowFn(RethrowFn), SavedExnVar(SavedExnVar) {}
1128
Craig Topper4f12f102014-03-12 06:41:41 +00001129 void Emit(CodeGenFunction &CGF, Flags flags) override {
John McCall906da4b2010-07-21 05:47:49 +00001130 // Enter a cleanup to call the end-catch function if one was provided.
1131 if (EndCatchFn)
John McCallcda666c2010-07-21 07:22:38 +00001132 CGF.EHStack.pushCleanup<CallEndCatchForFinally>(NormalAndEHCleanup,
1133 ForEHVar, EndCatchFn);
John McCall906da4b2010-07-21 05:47:49 +00001134
John McCallcebe0ca2010-08-11 00:16:14 +00001135 // Save the current cleanup destination in case there are
1136 // cleanups in the finally block.
1137 llvm::Value *SavedCleanupDest =
1138 CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot(),
1139 "cleanup.dest.saved");
1140
John McCall906da4b2010-07-21 05:47:49 +00001141 // Emit the finally block.
1142 CGF.EmitStmt(Body);
1143
1144 // If the end of the finally is reachable, check whether this was
1145 // for EH. If so, rethrow.
1146 if (CGF.HaveInsertPoint()) {
1147 llvm::BasicBlock *RethrowBB = CGF.createBasicBlock("finally.rethrow");
1148 llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont");
1149
1150 llvm::Value *ShouldRethrow =
John McCall7f416cc2015-09-08 08:05:57 +00001151 CGF.Builder.CreateFlagLoad(ForEHVar, "finally.shouldthrow");
John McCall906da4b2010-07-21 05:47:49 +00001152 CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB);
1153
1154 CGF.EmitBlock(RethrowBB);
1155 if (SavedExnVar) {
John McCall882987f2013-02-28 19:01:20 +00001156 CGF.EmitRuntimeCallOrInvoke(RethrowFn,
John McCall7f416cc2015-09-08 08:05:57 +00001157 CGF.Builder.CreateAlignedLoad(SavedExnVar, CGF.getPointerAlign()));
John McCall906da4b2010-07-21 05:47:49 +00001158 } else {
John McCall882987f2013-02-28 19:01:20 +00001159 CGF.EmitRuntimeCallOrInvoke(RethrowFn);
John McCall906da4b2010-07-21 05:47:49 +00001160 }
1161 CGF.Builder.CreateUnreachable();
1162
1163 CGF.EmitBlock(ContBB);
John McCallcebe0ca2010-08-11 00:16:14 +00001164
1165 // Restore the cleanup destination.
1166 CGF.Builder.CreateStore(SavedCleanupDest,
1167 CGF.getNormalCleanupDestSlot());
John McCall906da4b2010-07-21 05:47:49 +00001168 }
1169
1170 // Leave the end-catch cleanup. As an optimization, pretend that
1171 // the fallthrough path was inaccessible; we've dynamically proven
1172 // that we're not in the EH case along that path.
1173 if (EndCatchFn) {
1174 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
1175 CGF.PopCleanupBlock();
1176 CGF.Builder.restoreIP(SavedIP);
1177 }
1178
1179 // Now make sure we actually have an insertion point or the
1180 // cleanup gods will hate us.
1181 CGF.EnsureInsertPoint();
1182 }
1183 };
Hans Wennborgdcfba332015-10-06 23:40:43 +00001184} // end anonymous namespace
John McCall1e670402010-07-21 00:52:03 +00001185
John McCallbd309292010-07-06 01:34:17 +00001186/// Enters a finally block for an implementation using zero-cost
1187/// exceptions. This is mostly general, but hard-codes some
1188/// language/ABI-specific behavior in the catch-all sections.
John McCall6b0feb72011-06-22 02:32:12 +00001189void CodeGenFunction::FinallyInfo::enter(CodeGenFunction &CGF,
1190 const Stmt *body,
1191 llvm::Constant *beginCatchFn,
1192 llvm::Constant *endCatchFn,
1193 llvm::Constant *rethrowFn) {
Craig Topper8a13c412014-05-21 05:09:00 +00001194 assert((beginCatchFn != nullptr) == (endCatchFn != nullptr) &&
John McCallbd309292010-07-06 01:34:17 +00001195 "begin/end catch functions not paired");
John McCall6b0feb72011-06-22 02:32:12 +00001196 assert(rethrowFn && "rethrow function is required");
1197
1198 BeginCatchFn = beginCatchFn;
Mike Stumpaff69af2009-12-09 03:35:49 +00001199
John McCallbd309292010-07-06 01:34:17 +00001200 // The rethrow function has one of the following two types:
1201 // void (*)()
1202 // void (*)(void*)
1203 // In the latter case we need to pass it the exception object.
1204 // But we can't use the exception slot because the @finally might
1205 // have a landing pad (which would overwrite the exception slot).
Chris Lattner2192fe52011-07-18 04:24:23 +00001206 llvm::FunctionType *rethrowFnTy =
John McCallbd309292010-07-06 01:34:17 +00001207 cast<llvm::FunctionType>(
John McCall6b0feb72011-06-22 02:32:12 +00001208 cast<llvm::PointerType>(rethrowFn->getType())->getElementType());
Craig Topper8a13c412014-05-21 05:09:00 +00001209 SavedExnVar = nullptr;
John McCall6b0feb72011-06-22 02:32:12 +00001210 if (rethrowFnTy->getNumParams())
1211 SavedExnVar = CGF.CreateTempAlloca(CGF.Int8PtrTy, "finally.exn");
Mike Stumpaff69af2009-12-09 03:35:49 +00001212
John McCallbd309292010-07-06 01:34:17 +00001213 // A finally block is a statement which must be executed on any edge
1214 // out of a given scope. Unlike a cleanup, the finally block may
1215 // contain arbitrary control flow leading out of itself. In
1216 // addition, finally blocks should always be executed, even if there
1217 // are no catch handlers higher on the stack. Therefore, we
1218 // surround the protected scope with a combination of a normal
1219 // cleanup (to catch attempts to break out of the block via normal
1220 // control flow) and an EH catch-all (semantically "outside" any try
1221 // statement to which the finally block might have been attached).
1222 // The finally block itself is generated in the context of a cleanup
1223 // which conditionally leaves the catch-all.
John McCall21886962010-04-21 10:05:39 +00001224
John McCallbd309292010-07-06 01:34:17 +00001225 // Jump destination for performing the finally block on an exception
1226 // edge. We'll never actually reach this block, so unreachable is
1227 // fine.
John McCall6b0feb72011-06-22 02:32:12 +00001228 RethrowDest = CGF.getJumpDestInCurrentScope(CGF.getUnreachableBlock());
John McCall21886962010-04-21 10:05:39 +00001229
John McCallbd309292010-07-06 01:34:17 +00001230 // Whether the finally block is being executed for EH purposes.
John McCall6b0feb72011-06-22 02:32:12 +00001231 ForEHVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), "finally.for-eh");
John McCall7f416cc2015-09-08 08:05:57 +00001232 CGF.Builder.CreateFlagStore(false, ForEHVar);
Mike Stumpaff69af2009-12-09 03:35:49 +00001233
John McCallbd309292010-07-06 01:34:17 +00001234 // Enter a normal cleanup which will perform the @finally block.
John McCall6b0feb72011-06-22 02:32:12 +00001235 CGF.EHStack.pushCleanup<PerformFinally>(NormalCleanup, body,
1236 ForEHVar, endCatchFn,
1237 rethrowFn, SavedExnVar);
John McCallbd309292010-07-06 01:34:17 +00001238
1239 // Enter a catch-all scope.
John McCall6b0feb72011-06-22 02:32:12 +00001240 llvm::BasicBlock *catchBB = CGF.createBasicBlock("finally.catchall");
1241 EHCatchScope *catchScope = CGF.EHStack.pushCatch(1);
1242 catchScope->setCatchAllHandler(0, catchBB);
John McCallbd309292010-07-06 01:34:17 +00001243}
1244
John McCall6b0feb72011-06-22 02:32:12 +00001245void CodeGenFunction::FinallyInfo::exit(CodeGenFunction &CGF) {
John McCallbd309292010-07-06 01:34:17 +00001246 // Leave the finally catch-all.
John McCall6b0feb72011-06-22 02:32:12 +00001247 EHCatchScope &catchScope = cast<EHCatchScope>(*CGF.EHStack.begin());
1248 llvm::BasicBlock *catchBB = catchScope.getHandler(0).Block;
John McCall8e4c74b2011-08-11 02:22:43 +00001249
1250 CGF.popCatchScope();
John McCallbd309292010-07-06 01:34:17 +00001251
John McCall6b0feb72011-06-22 02:32:12 +00001252 // If there are any references to the catch-all block, emit it.
1253 if (catchBB->use_empty()) {
1254 delete catchBB;
1255 } else {
1256 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP();
1257 CGF.EmitBlock(catchBB);
John McCallbd309292010-07-06 01:34:17 +00001258
Craig Topper8a13c412014-05-21 05:09:00 +00001259 llvm::Value *exn = nullptr;
John McCallbd309292010-07-06 01:34:17 +00001260
John McCall6b0feb72011-06-22 02:32:12 +00001261 // If there's a begin-catch function, call it.
1262 if (BeginCatchFn) {
Bill Wendling79a70e42011-09-15 18:57:19 +00001263 exn = CGF.getExceptionFromSlot();
John McCall882987f2013-02-28 19:01:20 +00001264 CGF.EmitNounwindRuntimeCall(BeginCatchFn, exn);
John McCall6b0feb72011-06-22 02:32:12 +00001265 }
1266
1267 // If we need to remember the exception pointer to rethrow later, do so.
1268 if (SavedExnVar) {
Bill Wendling79a70e42011-09-15 18:57:19 +00001269 if (!exn) exn = CGF.getExceptionFromSlot();
John McCall7f416cc2015-09-08 08:05:57 +00001270 CGF.Builder.CreateAlignedStore(exn, SavedExnVar, CGF.getPointerAlign());
John McCall6b0feb72011-06-22 02:32:12 +00001271 }
1272
1273 // Tell the cleanups in the finally block that we're do this for EH.
John McCall7f416cc2015-09-08 08:05:57 +00001274 CGF.Builder.CreateFlagStore(true, ForEHVar);
John McCall6b0feb72011-06-22 02:32:12 +00001275
1276 // Thread a jump through the finally cleanup.
1277 CGF.EmitBranchThroughCleanup(RethrowDest);
1278
1279 CGF.Builder.restoreIP(savedIP);
1280 }
1281
1282 // Finally, leave the @finally cleanup.
1283 CGF.PopCleanupBlock();
John McCallbd309292010-07-06 01:34:17 +00001284}
1285
1286llvm::BasicBlock *CodeGenFunction::getTerminateLandingPad() {
1287 if (TerminateLandingPad)
1288 return TerminateLandingPad;
1289
1290 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
1291
1292 // This will get inserted at the end of the function.
1293 TerminateLandingPad = createBasicBlock("terminate.lpad");
1294 Builder.SetInsertPoint(TerminateLandingPad);
1295
1296 // Tell the backend that this is a landing pad.
Reid Klecknerdeeddec2015-02-05 18:56:03 +00001297 const EHPersonality &Personality = EHPersonality::get(*this);
David Majnemerfcbdb6e2015-06-17 20:53:19 +00001298
1299 if (!CurFn->hasPersonalityFn())
1300 CurFn->setPersonalityFn(getOpaquePersonalityFn(CGM, Personality));
1301
1302 llvm::LandingPadInst *LPadInst = Builder.CreateLandingPad(
1303 llvm::StructType::get(Int8PtrTy, Int32Ty, nullptr), 0);
Bill Wendlingf0724e82011-09-19 20:31:14 +00001304 LPadInst->addClause(getCatchAllValue(*this));
John McCallbd309292010-07-06 01:34:17 +00001305
Hans Wennborgdcfba332015-10-06 23:40:43 +00001306 llvm::Value *Exn = nullptr;
Reid Klecknerfff8e7f2015-03-03 19:21:04 +00001307 if (getLangOpts().CPlusPlus)
1308 Exn = Builder.CreateExtractValue(LPadInst, 0);
1309 llvm::CallInst *terminateCall =
1310 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn);
John McCalle142ad52013-02-12 03:51:46 +00001311 terminateCall->setDoesNotReturn();
John McCallad7c5c12011-02-08 08:22:06 +00001312 Builder.CreateUnreachable();
Mike Stumpaff69af2009-12-09 03:35:49 +00001313
John McCallbd309292010-07-06 01:34:17 +00001314 // Restore the saved insertion state.
1315 Builder.restoreIP(SavedIP);
John McCalldac3ea62010-04-30 00:06:43 +00001316
John McCallbd309292010-07-06 01:34:17 +00001317 return TerminateLandingPad;
Mike Stumpaff69af2009-12-09 03:35:49 +00001318}
Mike Stump2b488872009-12-09 22:59:31 +00001319
1320llvm::BasicBlock *CodeGenFunction::getTerminateHandler() {
Mike Stumpf5cbb082009-12-10 00:02:42 +00001321 if (TerminateHandler)
1322 return TerminateHandler;
1323
John McCallbd309292010-07-06 01:34:17 +00001324 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
Mike Stump25b20fc2009-12-09 23:31:35 +00001325
John McCallbd309292010-07-06 01:34:17 +00001326 // Set up the terminate handler. This block is inserted at the very
1327 // end of the function by FinishFunction.
Mike Stumpf5cbb082009-12-10 00:02:42 +00001328 TerminateHandler = createBasicBlock("terminate.handler");
John McCallbd309292010-07-06 01:34:17 +00001329 Builder.SetInsertPoint(TerminateHandler);
David Majnemerfeeefb22015-12-14 18:34:18 +00001330 llvm::Value *Exn = nullptr;
David Majnemer971d31b2016-02-24 17:02:45 +00001331 SaveAndRestore<llvm::Instruction *> RestoreCurrentFuncletPad(
1332 CurrentFuncletPad);
Reid Kleckner129552b2015-10-08 01:13:52 +00001333 if (EHPersonality::get(*this).usesFuncletPads()) {
David Majnemer4e52d6f2015-12-12 05:39:21 +00001334 llvm::Value *ParentPad = CurrentFuncletPad;
1335 if (!ParentPad)
1336 ParentPad = llvm::ConstantTokenNone::get(CGM.getLLVMContext());
David Majnemer971d31b2016-02-24 17:02:45 +00001337 CurrentFuncletPad = Builder.CreateCleanupPad(ParentPad);
David Majnemerdbf10452015-07-31 17:58:45 +00001338 } else {
David Majnemerdbf10452015-07-31 17:58:45 +00001339 if (getLangOpts().CPlusPlus)
1340 Exn = getExceptionFromSlot();
David Majnemerdbf10452015-07-31 17:58:45 +00001341 }
David Majnemerfeeefb22015-12-14 18:34:18 +00001342 llvm::CallInst *terminateCall =
1343 CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn);
1344 terminateCall->setDoesNotReturn();
1345 Builder.CreateUnreachable();
Mike Stump2b488872009-12-09 22:59:31 +00001346
John McCall21886962010-04-21 10:05:39 +00001347 // Restore the saved insertion state.
John McCallbd309292010-07-06 01:34:17 +00001348 Builder.restoreIP(SavedIP);
Mike Stump25b20fc2009-12-09 23:31:35 +00001349
Mike Stump2b488872009-12-09 22:59:31 +00001350 return TerminateHandler;
1351}
John McCallbd309292010-07-06 01:34:17 +00001352
David Chisnall9a837be2012-11-07 16:50:40 +00001353llvm::BasicBlock *CodeGenFunction::getEHResumeBlock(bool isCleanup) {
John McCall8e4c74b2011-08-11 02:22:43 +00001354 if (EHResumeBlock) return EHResumeBlock;
John McCallad5d61e2010-07-23 21:56:41 +00001355
1356 CGBuilderTy::InsertPoint SavedIP = Builder.saveIP();
1357
1358 // We emit a jump to a notional label at the outermost unwind state.
John McCall8e4c74b2011-08-11 02:22:43 +00001359 EHResumeBlock = createBasicBlock("eh.resume");
1360 Builder.SetInsertPoint(EHResumeBlock);
John McCallad5d61e2010-07-23 21:56:41 +00001361
Reid Klecknerdeeddec2015-02-05 18:56:03 +00001362 const EHPersonality &Personality = EHPersonality::get(*this);
John McCallad5d61e2010-07-23 21:56:41 +00001363
1364 // This can always be a call because we necessarily didn't find
1365 // anything on the EH stack which needs our help.
Benjamin Kramer793bd552012-02-08 12:41:24 +00001366 const char *RethrowName = Personality.CatchallRethrowFn;
Craig Topper8a13c412014-05-21 05:09:00 +00001367 if (RethrowName != nullptr && !isCleanup) {
John McCall882987f2013-02-28 19:01:20 +00001368 EmitRuntimeCall(getCatchallRethrowFn(CGM, RethrowName),
Nico Weberff62a6a2015-02-26 22:34:33 +00001369 getExceptionFromSlot())->setDoesNotReturn();
Logan Chiene9c8ccb2014-07-01 11:47:10 +00001370 Builder.CreateUnreachable();
1371 Builder.restoreIP(SavedIP);
1372 return EHResumeBlock;
John McCall9b382dd2011-05-28 21:13:02 +00001373 }
1374
Logan Chiene9c8ccb2014-07-01 11:47:10 +00001375 // Recreate the landingpad's return value for the 'resume' instruction.
1376 llvm::Value *Exn = getExceptionFromSlot();
1377 llvm::Value *Sel = getSelectorFromSlot();
John McCallad5d61e2010-07-23 21:56:41 +00001378
Logan Chiene9c8ccb2014-07-01 11:47:10 +00001379 llvm::Type *LPadType = llvm::StructType::get(Exn->getType(),
Reid Kleckneree7cf842014-12-01 22:02:27 +00001380 Sel->getType(), nullptr);
Logan Chiene9c8ccb2014-07-01 11:47:10 +00001381 llvm::Value *LPadVal = llvm::UndefValue::get(LPadType);
1382 LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val");
1383 LPadVal = Builder.CreateInsertValue(LPadVal, Sel, 1, "lpad.val");
1384
1385 Builder.CreateResume(LPadVal);
John McCallad5d61e2010-07-23 21:56:41 +00001386 Builder.restoreIP(SavedIP);
John McCall8e4c74b2011-08-11 02:22:43 +00001387 return EHResumeBlock;
John McCallad5d61e2010-07-23 21:56:41 +00001388}
Reid Kleckner543a16c2013-09-16 21:46:30 +00001389
1390void CodeGenFunction::EmitSEHTryStmt(const SEHTryStmt &S) {
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001391 EnterSEHTryStmt(S);
Reid Klecknera5930002015-02-11 21:40:48 +00001392 {
Nico Weber5779f842015-02-12 23:16:11 +00001393 JumpDest TryExit = getJumpDestInCurrentScope("__try.__leave");
Nico Weber5779f842015-02-12 23:16:11 +00001394
Reid Kleckner11c033e2015-02-12 23:40:45 +00001395 SEHTryEpilogueStack.push_back(&TryExit);
Reid Klecknera5930002015-02-11 21:40:48 +00001396 EmitStmt(S.getTryBlock());
Reid Kleckner11c033e2015-02-12 23:40:45 +00001397 SEHTryEpilogueStack.pop_back();
Nico Weber5779f842015-02-12 23:16:11 +00001398
1399 if (!TryExit.getBlock()->use_empty())
1400 EmitBlock(TryExit.getBlock(), /*IsFinished=*/true);
1401 else
1402 delete TryExit.getBlock();
Reid Klecknera5930002015-02-11 21:40:48 +00001403 }
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001404 ExitSEHTryStmt(S);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001405}
1406
1407namespace {
David Blaikie7e70d682015-08-18 22:40:54 +00001408struct PerformSEHFinally final : EHScopeStack::Cleanup {
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001409 llvm::Function *OutlinedFinally;
Reid Kleckner55391522015-10-08 21:14:56 +00001410 PerformSEHFinally(llvm::Function *OutlinedFinally)
1411 : OutlinedFinally(OutlinedFinally) {}
Reid Kleckneraca01db2015-02-04 22:37:07 +00001412
Reid Kleckner1d59f992015-01-22 01:36:17 +00001413 void Emit(CodeGenFunction &CGF, Flags F) override {
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001414 ASTContext &Context = CGF.getContext();
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001415 CodeGenModule &CGM = CGF.CGM;
Reid Kleckner65870442015-06-09 17:47:50 +00001416
Reid Klecknerd0d9a1f2015-07-01 17:10:10 +00001417 CallArgList Args;
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001418
1419 // Compute the two argument values.
1420 QualType ArgTys[2] = {Context.UnsignedCharTy, Context.VoidPtrTy};
Reid Kleckner15d152d2015-07-07 23:23:31 +00001421 llvm::Value *LocalAddrFn = CGM.getIntrinsic(llvm::Intrinsic::localaddress);
David Blaikie4ba525b2015-07-14 17:27:39 +00001422 llvm::Value *FP = CGF.Builder.CreateCall(LocalAddrFn);
Reid Klecknereb11c412015-07-01 21:00:00 +00001423 llvm::Value *IsForEH =
1424 llvm::ConstantInt::get(CGF.ConvertType(ArgTys[0]), F.isForEHCleanup());
1425 Args.add(RValue::get(IsForEH), ArgTys[0]);
1426 Args.add(RValue::get(FP), ArgTys[1]);
Reid Klecknerd0d9a1f2015-07-01 17:10:10 +00001427
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001428 // Arrange a two-arg function info and type.
Reid Klecknereb11c412015-07-01 21:00:00 +00001429 const CGFunctionInfo &FnInfo =
John McCallc56a8b32016-03-11 04:30:31 +00001430 CGM.getTypes().arrangeBuiltinFunctionCall(Context.VoidTy, Args);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001431
Reid Klecknereb11c412015-07-01 21:00:00 +00001432 CGF.EmitCall(FnInfo, OutlinedFinally, ReturnValueSlot(), Args);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001433 }
1434};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001435} // end anonymous namespace
Reid Kleckner1d59f992015-01-22 01:36:17 +00001436
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001437namespace {
1438/// Find all local variable captures in the statement.
1439struct CaptureFinder : ConstStmtVisitor<CaptureFinder> {
1440 CodeGenFunction &ParentCGF;
1441 const VarDecl *ParentThis;
John McCall0a490152015-09-08 21:15:22 +00001442 llvm::SmallSetVector<const VarDecl *, 4> Captures;
John McCall7f416cc2015-09-08 08:05:57 +00001443 Address SEHCodeSlot = Address::invalid();
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001444 CaptureFinder(CodeGenFunction &ParentCGF, const VarDecl *ParentThis)
1445 : ParentCGF(ParentCGF), ParentThis(ParentThis) {}
1446
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001447 // Return true if we need to do any capturing work.
1448 bool foundCaptures() {
John McCall7f416cc2015-09-08 08:05:57 +00001449 return !Captures.empty() || SEHCodeSlot.isValid();
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001450 }
1451
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001452 void Visit(const Stmt *S) {
1453 // See if this is a capture, then recurse.
1454 ConstStmtVisitor<CaptureFinder>::Visit(S);
1455 for (const Stmt *Child : S->children())
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001456 if (Child)
1457 Visit(Child);
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001458 }
1459
1460 void VisitDeclRefExpr(const DeclRefExpr *E) {
1461 // If this is already a capture, just make sure we capture 'this'.
1462 if (E->refersToEnclosingVariableOrCapture()) {
John McCall0a490152015-09-08 21:15:22 +00001463 Captures.insert(ParentThis);
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001464 return;
1465 }
1466
1467 const auto *D = dyn_cast<VarDecl>(E->getDecl());
1468 if (D && D->isLocalVarDeclOrParm() && D->hasLocalStorage())
John McCall0a490152015-09-08 21:15:22 +00001469 Captures.insert(D);
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001470 }
1471
1472 void VisitCXXThisExpr(const CXXThisExpr *E) {
John McCall0a490152015-09-08 21:15:22 +00001473 Captures.insert(ParentThis);
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001474 }
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001475
1476 void VisitCallExpr(const CallExpr *E) {
1477 // We only need to add parent frame allocations for these builtins in x86.
1478 if (ParentCGF.getTarget().getTriple().getArch() != llvm::Triple::x86)
1479 return;
1480
1481 unsigned ID = E->getBuiltinCallee();
1482 switch (ID) {
1483 case Builtin::BI__exception_code:
1484 case Builtin::BI_exception_code:
1485 // This is the simple case where we are the outermost finally. All we
1486 // have to do here is make sure we escape this and recover it in the
1487 // outlined handler.
John McCall7f416cc2015-09-08 08:05:57 +00001488 if (!SEHCodeSlot.isValid())
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001489 SEHCodeSlot = ParentCGF.SEHCodeSlotStack.back();
1490 break;
1491 }
1492 }
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001493};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001494} // end anonymous namespace
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001495
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001496Address CodeGenFunction::recoverAddrOfEscapedLocal(CodeGenFunction &ParentCGF,
1497 Address ParentVar,
1498 llvm::Value *ParentFP) {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001499 llvm::CallInst *RecoverCall = nullptr;
John McCall7f416cc2015-09-08 08:05:57 +00001500 CGBuilderTy Builder(*this, AllocaInsertPt);
1501 if (auto *ParentAlloca = dyn_cast<llvm::AllocaInst>(ParentVar.getPointer())) {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001502 // Mark the variable escaped if nobody else referenced it and compute the
Reid Kleckner98cb8ba2015-07-07 22:26:07 +00001503 // localescape index.
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001504 auto InsertPair = ParentCGF.EscapedLocals.insert(
1505 std::make_pair(ParentAlloca, ParentCGF.EscapedLocals.size()));
1506 int FrameEscapeIdx = InsertPair.first->second;
Reid Kleckner98cb8ba2015-07-07 22:26:07 +00001507 // call i8* @llvm.localrecover(i8* bitcast(@parentFn), i8* %fp, i32 N)
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001508 llvm::Function *FrameRecoverFn = llvm::Intrinsic::getDeclaration(
Reid Kleckner98cb8ba2015-07-07 22:26:07 +00001509 &CGM.getModule(), llvm::Intrinsic::localrecover);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001510 llvm::Constant *ParentI8Fn =
1511 llvm::ConstantExpr::getBitCast(ParentCGF.CurFn, Int8PtrTy);
1512 RecoverCall = Builder.CreateCall(
1513 FrameRecoverFn, {ParentI8Fn, ParentFP,
1514 llvm::ConstantInt::get(Int32Ty, FrameEscapeIdx)});
1515
1516 } else {
1517 // If the parent didn't have an alloca, we're doing some nested outlining.
Reid Kleckner98cb8ba2015-07-07 22:26:07 +00001518 // Just clone the existing localrecover call, but tweak the FP argument to
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001519 // use our FP value. All other arguments are constants.
1520 auto *ParentRecover =
John McCall7f416cc2015-09-08 08:05:57 +00001521 cast<llvm::IntrinsicInst>(ParentVar.getPointer()->stripPointerCasts());
Reid Kleckner98cb8ba2015-07-07 22:26:07 +00001522 assert(ParentRecover->getIntrinsicID() == llvm::Intrinsic::localrecover &&
1523 "expected alloca or localrecover in parent LocalDeclMap");
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001524 RecoverCall = cast<llvm::CallInst>(ParentRecover->clone());
1525 RecoverCall->setArgOperand(1, ParentFP);
1526 RecoverCall->insertBefore(AllocaInsertPt);
1527 }
1528
1529 // Bitcast the variable, rename it, and insert it in the local decl map.
1530 llvm::Value *ChildVar =
John McCall7f416cc2015-09-08 08:05:57 +00001531 Builder.CreateBitCast(RecoverCall, ParentVar.getType());
1532 ChildVar->setName(ParentVar.getName());
1533 return Address(ChildVar, ParentVar.getAlignment());
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001534}
1535
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001536void CodeGenFunction::EmitCapturedLocals(CodeGenFunction &ParentCGF,
Reid Kleckner0b9bbbf2015-06-09 17:49:42 +00001537 const Stmt *OutlinedStmt,
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001538 bool IsFilter) {
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001539 // Find all captures in the Stmt.
1540 CaptureFinder Finder(ParentCGF, ParentCGF.CXXABIThisDecl);
1541 Finder.Visit(OutlinedStmt);
1542
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001543 // We can exit early on x86_64 when there are no captures. We just have to
1544 // save the exception code in filters so that __exception_code() works.
1545 if (!Finder.foundCaptures() &&
1546 CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) {
1547 if (IsFilter)
1548 EmitSEHExceptionCodeSave(ParentCGF, nullptr, nullptr);
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001549 return;
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001550 }
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001551
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001552 llvm::Value *EntryFP = nullptr;
1553 CGBuilderTy Builder(CGM, AllocaInsertPt);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001554 if (IsFilter && CGM.getTarget().getTriple().getArch() == llvm::Triple::x86) {
1555 // 32-bit SEH filters need to be careful about FP recovery. The end of the
1556 // EH registration is passed in as the EBP physical register. We can
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001557 // recover that with llvm.frameaddress(1).
1558 EntryFP = Builder.CreateCall(
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001559 CGM.getIntrinsic(llvm::Intrinsic::frameaddress), {Builder.getInt32(1)});
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001560 } else {
1561 // Otherwise, for x64 and 32-bit finally functions, the parent FP is the
1562 // second parameter.
1563 auto AI = CurFn->arg_begin();
1564 ++AI;
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001565 EntryFP = &*AI;
1566 }
1567
1568 llvm::Value *ParentFP = EntryFP;
1569 if (IsFilter) {
1570 // Given whatever FP the runtime provided us in EntryFP, recover the true
1571 // frame pointer of the parent function. We only need to do this in filters,
1572 // since finally funclets recover the parent FP for us.
1573 llvm::Function *RecoverFPIntrin =
1574 CGM.getIntrinsic(llvm::Intrinsic::x86_seh_recoverfp);
1575 llvm::Constant *ParentI8Fn =
1576 llvm::ConstantExpr::getBitCast(ParentCGF.CurFn, Int8PtrTy);
1577 ParentFP = Builder.CreateCall(RecoverFPIntrin, {ParentI8Fn, EntryFP});
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001578 }
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001579
Reid Kleckner98cb8ba2015-07-07 22:26:07 +00001580 // Create llvm.localrecover calls for all captures.
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001581 for (const VarDecl *VD : Finder.Captures) {
1582 if (isa<ImplicitParamDecl>(VD)) {
1583 CGM.ErrorUnsupported(VD, "'this' captured by SEH");
1584 CXXThisValue = llvm::UndefValue::get(ConvertTypeForMem(VD->getType()));
1585 continue;
1586 }
1587 if (VD->getType()->isVariablyModifiedType()) {
1588 CGM.ErrorUnsupported(VD, "VLA captured by SEH");
1589 continue;
1590 }
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001591 assert((isa<ImplicitParamDecl>(VD) || VD->isLocalVarDeclOrParm()) &&
1592 "captured non-local variable");
1593
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001594 // If this decl hasn't been declared yet, it will be declared in the
1595 // OutlinedStmt.
1596 auto I = ParentCGF.LocalDeclMap.find(VD);
1597 if (I == ParentCGF.LocalDeclMap.end())
1598 continue;
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001599
John McCall7f416cc2015-09-08 08:05:57 +00001600 Address ParentVar = I->second;
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001601 setAddrOfLocalVar(
1602 VD, recoverAddrOfEscapedLocal(ParentCGF, ParentVar, ParentFP));
Nico Webere4f974c2015-07-02 06:10:53 +00001603 }
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001604
John McCall7f416cc2015-09-08 08:05:57 +00001605 if (Finder.SEHCodeSlot.isValid()) {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001606 SEHCodeSlotStack.push_back(
1607 recoverAddrOfEscapedLocal(ParentCGF, Finder.SEHCodeSlot, ParentFP));
1608 }
1609
1610 if (IsFilter)
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001611 EmitSEHExceptionCodeSave(ParentCGF, ParentFP, EntryFP);
Reid Kleckner31a1bb02015-04-08 22:23:48 +00001612}
1613
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001614/// Arrange a function prototype that can be called by Windows exception
1615/// handling personalities. On Win64, the prototype looks like:
1616/// RetTy func(void *EHPtrs, void *ParentFP);
1617void CodeGenFunction::startOutlinedSEHHelper(CodeGenFunction &ParentCGF,
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001618 bool IsFilter,
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001619 const Stmt *OutlinedStmt) {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001620 SourceLocation StartLoc = OutlinedStmt->getLocStart();
1621
1622 // Get the mangled function name.
1623 SmallString<128> Name;
1624 {
1625 llvm::raw_svector_ostream OS(Name);
David Majnemer25eb1652016-03-01 19:42:53 +00001626 const FunctionDecl *ParentSEHFn = ParentCGF.CurSEHParent;
1627 assert(ParentSEHFn && "No CurSEHParent!");
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001628 MangleContext &Mangler = CGM.getCXXABI().getMangleContext();
1629 if (IsFilter)
David Majnemer25eb1652016-03-01 19:42:53 +00001630 Mangler.mangleSEHFilterExpression(ParentSEHFn, OS);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001631 else
David Majnemer25eb1652016-03-01 19:42:53 +00001632 Mangler.mangleSEHFinallyBlock(ParentSEHFn, OS);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001633 }
1634
1635 FunctionArgList Args;
1636 if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86 || !IsFilter) {
1637 // All SEH finally functions take two parameters. Win64 filters take two
1638 // parameters. Win32 filters take no parameters.
1639 if (IsFilter) {
1640 Args.push_back(ImplicitParamDecl::Create(
1641 getContext(), nullptr, StartLoc,
1642 &getContext().Idents.get("exception_pointers"),
1643 getContext().VoidPtrTy));
1644 } else {
1645 Args.push_back(ImplicitParamDecl::Create(
1646 getContext(), nullptr, StartLoc,
1647 &getContext().Idents.get("abnormal_termination"),
1648 getContext().UnsignedCharTy));
1649 }
1650 Args.push_back(ImplicitParamDecl::Create(
1651 getContext(), nullptr, StartLoc,
1652 &getContext().Idents.get("frame_pointer"), getContext().VoidPtrTy));
1653 }
1654
1655 QualType RetTy = IsFilter ? getContext().LongTy : getContext().VoidTy;
1656
Reid Kleckner1d59f992015-01-22 01:36:17 +00001657 llvm::Function *ParentFn = ParentCGF.CurFn;
John McCallc56a8b32016-03-11 04:30:31 +00001658 const CGFunctionInfo &FnInfo =
1659 CGM.getTypes().arrangeBuiltinFunctionDeclaration(RetTy, Args);
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001660
Reid Kleckner1d59f992015-01-22 01:36:17 +00001661 llvm::FunctionType *FnTy = CGM.getTypes().GetFunctionType(FnInfo);
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001662 llvm::Function *Fn = llvm::Function::Create(
1663 FnTy, llvm::GlobalValue::InternalLinkage, Name.str(), &CGM.getModule());
Reid Kleckner1d59f992015-01-22 01:36:17 +00001664 // The filter is either in the same comdat as the function, or it's internal.
1665 if (llvm::Comdat *C = ParentFn->getComdat()) {
1666 Fn->setComdat(C);
1667 } else if (ParentFn->hasWeakLinkage() || ParentFn->hasLinkOnceLinkage()) {
Reid Kleckner1d59f992015-01-22 01:36:17 +00001668 llvm::Comdat *C = CGM.getModule().getOrInsertComdat(ParentFn->getName());
1669 ParentFn->setComdat(C);
1670 Fn->setComdat(C);
1671 } else {
1672 Fn->setLinkage(llvm::GlobalValue::InternalLinkage);
1673 }
1674
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001675 IsOutlinedSEHHelper = true;
Nico Weberf2a39a72015-04-13 20:03:03 +00001676
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001677 StartFunction(GlobalDecl(), RetTy, Fn, FnInfo, Args,
1678 OutlinedStmt->getLocStart(), OutlinedStmt->getLocStart());
David Majnemer25eb1652016-03-01 19:42:53 +00001679 CurSEHParent = ParentCGF.CurSEHParent;
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001680
1681 CGM.SetLLVMFunctionAttributes(nullptr, FnInfo, CurFn);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001682 EmitCapturedLocals(ParentCGF, OutlinedStmt, IsFilter);
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001683}
1684
1685/// Create a stub filter function that will ultimately hold the code of the
1686/// filter expression. The EH preparation passes in LLVM will outline the code
1687/// from the main function body into this stub.
1688llvm::Function *
1689CodeGenFunction::GenerateSEHFilterFunction(CodeGenFunction &ParentCGF,
1690 const SEHExceptStmt &Except) {
1691 const Expr *FilterExpr = Except.getFilterExpr();
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001692 startOutlinedSEHHelper(ParentCGF, true, FilterExpr);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001693
1694 // Emit the original filter expression, convert to i32, and return.
1695 llvm::Value *R = EmitScalarExpr(FilterExpr);
David Majnemer2ccba832015-04-17 06:57:25 +00001696 R = Builder.CreateIntCast(R, ConvertType(getContext().LongTy),
Reid Kleckner1d59f992015-01-22 01:36:17 +00001697 FilterExpr->getType()->isSignedIntegerType());
1698 Builder.CreateStore(R, ReturnValue);
1699
1700 FinishFunction(FilterExpr->getLocEnd());
1701
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001702 return CurFn;
1703}
1704
1705llvm::Function *
1706CodeGenFunction::GenerateSEHFinallyFunction(CodeGenFunction &ParentCGF,
1707 const SEHFinallyStmt &Finally) {
1708 const Stmt *FinallyBlock = Finally.getBlock();
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001709 startOutlinedSEHHelper(ParentCGF, false, FinallyBlock);
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001710
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001711 // Emit the original filter expression, convert to i32, and return.
1712 EmitStmt(FinallyBlock);
1713
1714 FinishFunction(FinallyBlock->getLocEnd());
1715
1716 return CurFn;
Reid Kleckner1d59f992015-01-22 01:36:17 +00001717}
1718
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001719void CodeGenFunction::EmitSEHExceptionCodeSave(CodeGenFunction &ParentCGF,
1720 llvm::Value *ParentFP,
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001721 llvm::Value *EntryFP) {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001722 // Get the pointer to the EXCEPTION_POINTERS struct. This is returned by the
1723 // __exception_info intrinsic.
1724 if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) {
1725 // On Win64, the info is passed as the first parameter to the filter.
Duncan P. N. Exon Smith9f5260a2015-11-06 23:00:41 +00001726 SEHInfo = &*CurFn->arg_begin();
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001727 SEHCodeSlotStack.push_back(
1728 CreateMemTemp(getContext().IntTy, "__exception_code"));
1729 } else {
1730 // On Win32, the EBP on entry to the filter points to the end of an
1731 // exception registration object. It contains 6 32-bit fields, and the info
1732 // pointer is stored in the second field. So, GEP 20 bytes backwards and
1733 // load the pointer.
Reid Kleckner39329d57b2015-12-16 00:26:37 +00001734 SEHInfo = Builder.CreateConstInBoundsGEP1_32(Int8Ty, EntryFP, -20);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001735 SEHInfo = Builder.CreateBitCast(SEHInfo, Int8PtrTy->getPointerTo());
John McCall7f416cc2015-09-08 08:05:57 +00001736 SEHInfo = Builder.CreateAlignedLoad(Int8PtrTy, SEHInfo, getPointerAlign());
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001737 SEHCodeSlotStack.push_back(recoverAddrOfEscapedLocal(
1738 ParentCGF, ParentCGF.SEHCodeSlotStack.back(), ParentFP));
1739 }
1740
Reid Kleckner1d59f992015-01-22 01:36:17 +00001741 // Save the exception code in the exception slot to unify exception access in
1742 // the filter function and the landing pad.
1743 // struct EXCEPTION_POINTERS {
1744 // EXCEPTION_RECORD *ExceptionRecord;
1745 // CONTEXT *ContextRecord;
1746 // };
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001747 // int exceptioncode = exception_pointers->ExceptionRecord->ExceptionCode;
Reid Kleckner1d59f992015-01-22 01:36:17 +00001748 llvm::Type *RecordTy = CGM.Int32Ty->getPointerTo();
1749 llvm::Type *PtrsTy = llvm::StructType::get(RecordTy, CGM.VoidPtrTy, nullptr);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001750 llvm::Value *Ptrs = Builder.CreateBitCast(SEHInfo, PtrsTy->getPointerTo());
David Blaikie1ed728c2015-04-05 22:45:47 +00001751 llvm::Value *Rec = Builder.CreateStructGEP(PtrsTy, Ptrs, 0);
John McCall7f416cc2015-09-08 08:05:57 +00001752 Rec = Builder.CreateAlignedLoad(Rec, getPointerAlign());
1753 llvm::Value *Code = Builder.CreateAlignedLoad(Rec, getIntAlign());
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001754 assert(!SEHCodeSlotStack.empty() && "emitting EH code outside of __except");
1755 Builder.CreateStore(Code, SEHCodeSlotStack.back());
Reid Kleckner1d59f992015-01-22 01:36:17 +00001756}
1757
1758llvm::Value *CodeGenFunction::EmitSEHExceptionInfo() {
1759 // Sema should diagnose calling this builtin outside of a filter context, but
1760 // don't crash if we screw up.
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001761 if (!SEHInfo)
Reid Kleckner1d59f992015-01-22 01:36:17 +00001762 return llvm::UndefValue::get(Int8PtrTy);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001763 assert(SEHInfo->getType() == Int8PtrTy);
1764 return SEHInfo;
Reid Kleckner1d59f992015-01-22 01:36:17 +00001765}
1766
1767llvm::Value *CodeGenFunction::EmitSEHExceptionCode() {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001768 assert(!SEHCodeSlotStack.empty() && "emitting EH code outside of __except");
John McCall7f416cc2015-09-08 08:05:57 +00001769 return Builder.CreateLoad(SEHCodeSlotStack.back());
Reid Kleckner1d59f992015-01-22 01:36:17 +00001770}
1771
Reid Kleckneraca01db2015-02-04 22:37:07 +00001772llvm::Value *CodeGenFunction::EmitSEHAbnormalTermination() {
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001773 // Abnormal termination is just the first parameter to the outlined finally
1774 // helper.
1775 auto AI = CurFn->arg_begin();
1776 return Builder.CreateZExt(&*AI, Int32Ty);
Reid Kleckneraca01db2015-02-04 22:37:07 +00001777}
1778
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001779void CodeGenFunction::EnterSEHTryStmt(const SEHTryStmt &S) {
1780 CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true);
1781 if (const SEHFinallyStmt *Finally = S.getFinallyHandler()) {
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001782 // Outline the finally block.
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001783 llvm::Function *FinallyFunc =
1784 HelperCGF.GenerateSEHFinallyFunction(*this, *Finally);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001785
1786 // Push a cleanup for __finally blocks.
Reid Kleckner55391522015-10-08 21:14:56 +00001787 EHStack.pushCleanup<PerformSEHFinally>(NormalAndEHCleanup, FinallyFunc);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001788 return;
1789 }
1790
1791 // Otherwise, we must have an __except block.
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001792 const SEHExceptStmt *Except = S.getExceptHandler();
Reid Kleckner1d59f992015-01-22 01:36:17 +00001793 assert(Except);
1794 EHCatchScope *CatchScope = EHStack.pushCatch(1);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001795 SEHCodeSlotStack.push_back(
1796 CreateMemTemp(getContext().IntTy, "__exception_code"));
Reid Kleckner2a2e1562015-01-22 02:25:56 +00001797
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001798 // If the filter is known to evaluate to 1, then we can use the clause
1799 // "catch i8* null". We can't do this on x86 because the filter has to save
1800 // the exception code.
Reid Kleckner2a2e1562015-01-22 02:25:56 +00001801 llvm::Constant *C =
1802 CGM.EmitConstantExpr(Except->getFilterExpr(), getContext().IntTy, this);
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001803 if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86 && C &&
1804 C->isOneValue()) {
Reid Kleckner2a2e1562015-01-22 02:25:56 +00001805 CatchScope->setCatchAllHandler(0, createBasicBlock("__except"));
1806 return;
1807 }
1808
1809 // In general, we have to emit an outlined filter function. Use the function
1810 // in place of the RTTI typeinfo global that C++ EH uses.
Reid Kleckner1d59f992015-01-22 01:36:17 +00001811 llvm::Function *FilterFunc =
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001812 HelperCGF.GenerateSEHFilterFunction(*this, *Except);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001813 llvm::Constant *OpaqueFunc =
1814 llvm::ConstantExpr::getBitCast(FilterFunc, Int8PtrTy);
Reid Kleckner8be18472015-09-16 21:06:09 +00001815 CatchScope->setHandler(0, OpaqueFunc, createBasicBlock("__except.ret"));
Reid Kleckner1d59f992015-01-22 01:36:17 +00001816}
1817
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001818void CodeGenFunction::ExitSEHTryStmt(const SEHTryStmt &S) {
Reid Kleckner1d59f992015-01-22 01:36:17 +00001819 // Just pop the cleanup if it's a __finally block.
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001820 if (S.getFinallyHandler()) {
Reid Kleckner1d59f992015-01-22 01:36:17 +00001821 PopCleanupBlock();
1822 return;
1823 }
1824
1825 // Otherwise, we must have an __except block.
Reid Kleckneraca01db2015-02-04 22:37:07 +00001826 const SEHExceptStmt *Except = S.getExceptHandler();
Reid Kleckner1d59f992015-01-22 01:36:17 +00001827 assert(Except && "__try must have __finally xor __except");
1828 EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin());
1829
1830 // Don't emit the __except block if the __try block lacked invokes.
1831 // TODO: Model unwind edges from instructions, either with iload / istore or
1832 // a try body function.
1833 if (!CatchScope.hasEHBranches()) {
1834 CatchScope.clearHandlerBlocks();
1835 EHStack.popCatch();
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001836 SEHCodeSlotStack.pop_back();
Reid Kleckner1d59f992015-01-22 01:36:17 +00001837 return;
1838 }
1839
1840 // The fall-through block.
1841 llvm::BasicBlock *ContBB = createBasicBlock("__try.cont");
1842
1843 // We just emitted the body of the __try; jump to the continue block.
1844 if (HaveInsertPoint())
1845 Builder.CreateBr(ContBB);
1846
1847 // Check if our filter function returned true.
1848 emitCatchDispatchBlock(*this, CatchScope);
1849
1850 // Grab the block before we pop the handler.
David Majnemer4e52d6f2015-12-12 05:39:21 +00001851 llvm::BasicBlock *CatchPadBB = CatchScope.getHandler(0).Block;
Reid Kleckner1d59f992015-01-22 01:36:17 +00001852 EHStack.popCatch();
1853
David Majnemer4e52d6f2015-12-12 05:39:21 +00001854 EmitBlockAfterUses(CatchPadBB);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001855
Reid Kleckner129552b2015-10-08 01:13:52 +00001856 // __except blocks don't get outlined into funclets, so immediately do a
1857 // catchret.
Reid Kleckner129552b2015-10-08 01:13:52 +00001858 llvm::CatchPadInst *CPI =
1859 cast<llvm::CatchPadInst>(CatchPadBB->getFirstNonPHI());
David Majnemer4e52d6f2015-12-12 05:39:21 +00001860 llvm::BasicBlock *ExceptBB = createBasicBlock("__except");
Reid Kleckner129552b2015-10-08 01:13:52 +00001861 Builder.CreateCatchRet(CPI, ExceptBB);
1862 EmitBlock(ExceptBB);
1863
1864 // On Win64, the exception code is returned in EAX. Copy it into the slot.
1865 if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) {
1866 llvm::Function *SEHCodeIntrin =
1867 CGM.getIntrinsic(llvm::Intrinsic::eh_exceptioncode);
1868 llvm::Value *Code = Builder.CreateCall(SEHCodeIntrin, {CPI});
1869 Builder.CreateStore(Code, SEHCodeSlotStack.back());
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001870 }
1871
Reid Kleckner1d59f992015-01-22 01:36:17 +00001872 // Emit the __except body.
1873 EmitStmt(Except->getBlock());
1874
Reid Kleckner9fe7f232015-07-07 00:36:30 +00001875 // End the lifetime of the exception code.
1876 SEHCodeSlotStack.pop_back();
1877
Reid Kleckner3a417c32015-01-30 22:16:45 +00001878 if (HaveInsertPoint())
1879 Builder.CreateBr(ContBB);
Reid Kleckner1d59f992015-01-22 01:36:17 +00001880
1881 EmitBlock(ContBB);
Reid Kleckner543a16c2013-09-16 21:46:30 +00001882}
Nico Weber9b982072014-07-07 00:12:30 +00001883
1884void CodeGenFunction::EmitSEHLeaveStmt(const SEHLeaveStmt &S) {
Nico Weber5779f842015-02-12 23:16:11 +00001885 // If this code is reachable then emit a stop point (if generating
1886 // debug info). We have to do this ourselves because we are on the
1887 // "simple" statement path.
1888 if (HaveInsertPoint())
1889 EmitStopPoint(&S);
1890
Reid Klecknerebaf28d2015-04-14 20:59:00 +00001891 // This must be a __leave from a __finally block, which we warn on and is UB.
1892 // Just emit unreachable.
1893 if (!isSEHTryScope()) {
1894 Builder.CreateUnreachable();
1895 Builder.ClearInsertionPoint();
1896 return;
1897 }
1898
Nico Weber5779f842015-02-12 23:16:11 +00001899 EmitBranchThroughCleanup(*SEHTryEpilogueStack.back());
Nico Weber9b982072014-07-07 00:12:30 +00001900}