Anders Carlsson | 4b08db7 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 1 | //===--- CGException.cpp - Emit LLVM Code for C++ exceptions --------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This contains code dealing with C++ exception related code generation. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "CodeGenFunction.h" |
David Majnemer | 442d0a2 | 2014-11-25 07:20:20 +0000 | [diff] [blame] | 15 | #include "CGCXXABI.h" |
Chandler Carruth | 0d9593d | 2015-01-14 11:29:14 +0000 | [diff] [blame] | 16 | #include "CGCleanup.h" |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 17 | #include "CGObjCRuntime.h" |
John McCall | 5add20c | 2010-07-20 22:17:55 +0000 | [diff] [blame] | 18 | #include "TargetInfo.h" |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 19 | #include "clang/AST/Mangle.h" |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 20 | #include "clang/AST/StmtCXX.h" |
Chandler Carruth | 4b41745 | 2013-01-19 08:09:44 +0000 | [diff] [blame] | 21 | #include "clang/AST/StmtObjC.h" |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 22 | #include "clang/AST/StmtVisitor.h" |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 23 | #include "clang/Basic/TargetBuiltins.h" |
Chandler Carruth | c80ceea | 2014-03-04 11:02:08 +0000 | [diff] [blame] | 24 | #include "llvm/IR/CallSite.h" |
Chandler Carruth | ffd5551 | 2013-01-02 11:45:17 +0000 | [diff] [blame] | 25 | #include "llvm/IR/Intrinsics.h" |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 26 | #include "llvm/IR/IntrinsicInst.h" |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 27 | #include "llvm/Support/SaveAndRestore.h" |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 28 | |
Anders Carlsson | 4b08db7 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 29 | using namespace clang; |
| 30 | using namespace CodeGen; |
| 31 | |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 32 | static llvm::Constant *getFreeExceptionFn(CodeGenModule &CGM) { |
Mike Stump | 3327021 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 33 | // void __cxa_free_exception(void *thrown_exception); |
Mike Stump | 75546b8 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 34 | |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 35 | llvm::FunctionType *FTy = |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 36 | llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false); |
Mike Stump | 75546b8 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 37 | |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 38 | return CGM.CreateRuntimeFunction(FTy, "__cxa_free_exception"); |
Mike Stump | 3327021 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 39 | } |
| 40 | |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 41 | static llvm::Constant *getUnexpectedFn(CodeGenModule &CGM) { |
Richard Smith | 2f7aa19 | 2013-06-20 23:03:35 +0000 | [diff] [blame] | 42 | // void __cxa_call_unexpected(void *thrown_exception); |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 43 | |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 44 | llvm::FunctionType *FTy = |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 45 | llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false); |
Mike Stump | 75546b8 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 46 | |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 47 | return CGM.CreateRuntimeFunction(FTy, "__cxa_call_unexpected"); |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 48 | } |
| 49 | |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 50 | llvm::Constant *CodeGenModule::getTerminateFn() { |
Mike Stump | 3327021 | 2009-12-02 07:41:41 +0000 | [diff] [blame] | 51 | // void __terminate(); |
| 52 | |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 53 | llvm::FunctionType *FTy = |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 54 | llvm::FunctionType::get(VoidTy, /*IsVarArgs=*/false); |
Mike Stump | 75546b8 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 55 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 56 | StringRef name; |
John McCall | 9de1978 | 2011-07-06 01:22:26 +0000 | [diff] [blame] | 57 | |
| 58 | // In C++, use std::terminate(). |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 59 | if (getLangOpts().CPlusPlus && |
| 60 | getTarget().getCXXABI().isItaniumFamily()) { |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 61 | name = "_ZSt9terminatev"; |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 62 | } else if (getLangOpts().CPlusPlus && |
| 63 | getTarget().getCXXABI().isMicrosoft()) { |
David Majnemer | b710a93 | 2015-05-11 03:57:49 +0000 | [diff] [blame] | 64 | if (getLangOpts().isCompatibleWithMSVC(LangOptions::MSVC2015)) |
David Majnemer | fb6ffca | 2015-05-10 21:38:26 +0000 | [diff] [blame] | 65 | name = "__std_terminate"; |
| 66 | else |
| 67 | name = "\01?terminate@@YAXXZ"; |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 68 | } else if (getLangOpts().ObjC1 && |
| 69 | getLangOpts().ObjCRuntime.hasTerminate()) |
John McCall | 9de1978 | 2011-07-06 01:22:26 +0000 | [diff] [blame] | 70 | name = "objc_terminate"; |
| 71 | else |
| 72 | name = "abort"; |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 73 | return CreateRuntimeFunction(FTy, name); |
David Chisnall | f9c4225 | 2010-05-17 13:49:20 +0000 | [diff] [blame] | 74 | } |
| 75 | |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 76 | static llvm::Constant *getCatchallRethrowFn(CodeGenModule &CGM, |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 77 | StringRef Name) { |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 78 | llvm::FunctionType *FTy = |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 79 | llvm::FunctionType::get(CGM.VoidTy, CGM.Int8PtrTy, /*IsVarArgs=*/false); |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 80 | |
John McCall | 2c33ba8 | 2013-02-12 03:51:38 +0000 | [diff] [blame] | 81 | return CGM.CreateRuntimeFunction(FTy, Name); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 84 | namespace { |
| 85 | /// The exceptions personality for a function. |
| 86 | struct EHPersonality { |
| 87 | const char *PersonalityFn; |
| 88 | |
| 89 | // If this is non-null, this personality requires a non-standard |
| 90 | // function for rethrowing an exception after a catchall cleanup. |
| 91 | // This function must have prototype void(void*). |
| 92 | const char *CatchallRethrowFn; |
| 93 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 94 | static const EHPersonality &get(CodeGenModule &CGM, |
| 95 | const FunctionDecl *FD); |
| 96 | static const EHPersonality &get(CodeGenFunction &CGF) { |
| 97 | return get(CGF.CGM, dyn_cast_or_null<FunctionDecl>(CGF.CurCodeDecl)); |
| 98 | } |
| 99 | |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 100 | static const EHPersonality GNU_C; |
| 101 | static const EHPersonality GNU_C_SJLJ; |
Reid Kleckner | 8f45c9c | 2014-09-15 17:19:16 +0000 | [diff] [blame] | 102 | static const EHPersonality GNU_C_SEH; |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 103 | static const EHPersonality GNU_ObjC; |
David Chisnall | 2ec1b10d | 2013-01-11 15:33:01 +0000 | [diff] [blame] | 104 | static const EHPersonality GNUstep_ObjC; |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 105 | static const EHPersonality GNU_ObjCXX; |
| 106 | static const EHPersonality NeXT_ObjC; |
| 107 | static const EHPersonality GNU_CPlusPlus; |
| 108 | static const EHPersonality GNU_CPlusPlus_SJLJ; |
Reid Kleckner | 8f45c9c | 2014-09-15 17:19:16 +0000 | [diff] [blame] | 109 | static const EHPersonality GNU_CPlusPlus_SEH; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 110 | static const EHPersonality MSVC_except_handler; |
| 111 | static const EHPersonality MSVC_C_specific_handler; |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 112 | static const EHPersonality MSVC_CxxFrameHandler3; |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 113 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 114 | } |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 115 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 116 | const EHPersonality EHPersonality::GNU_C = { "__gcc_personality_v0", nullptr }; |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 117 | const EHPersonality |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 118 | EHPersonality::GNU_C_SJLJ = { "__gcc_personality_sj0", nullptr }; |
| 119 | const EHPersonality |
Reid Kleckner | 8f45c9c | 2014-09-15 17:19:16 +0000 | [diff] [blame] | 120 | EHPersonality::GNU_C_SEH = { "__gcc_personality_seh0", nullptr }; |
| 121 | const EHPersonality |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 122 | EHPersonality::NeXT_ObjC = { "__objc_personality_v0", nullptr }; |
| 123 | const EHPersonality |
| 124 | EHPersonality::GNU_CPlusPlus = { "__gxx_personality_v0", nullptr }; |
| 125 | const EHPersonality |
| 126 | EHPersonality::GNU_CPlusPlus_SJLJ = { "__gxx_personality_sj0", nullptr }; |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 127 | const EHPersonality |
Reid Kleckner | 8f45c9c | 2014-09-15 17:19:16 +0000 | [diff] [blame] | 128 | EHPersonality::GNU_CPlusPlus_SEH = { "__gxx_personality_seh0", nullptr }; |
| 129 | const EHPersonality |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 130 | EHPersonality::GNU_ObjC = {"__gnu_objc_personality_v0", "objc_exception_throw"}; |
| 131 | const EHPersonality |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 132 | EHPersonality::GNU_ObjCXX = { "__gnustep_objcxx_personality_v0", nullptr }; |
David Chisnall | 2ec1b10d | 2013-01-11 15:33:01 +0000 | [diff] [blame] | 133 | const EHPersonality |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 134 | EHPersonality::GNUstep_ObjC = { "__gnustep_objc_personality_v0", nullptr }; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 135 | const EHPersonality |
| 136 | EHPersonality::MSVC_except_handler = { "_except_handler3", nullptr }; |
| 137 | const EHPersonality |
| 138 | EHPersonality::MSVC_C_specific_handler = { "__C_specific_handler", nullptr }; |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 139 | const EHPersonality |
| 140 | EHPersonality::MSVC_CxxFrameHandler3 = { "__CxxFrameHandler3", nullptr }; |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 141 | |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 142 | /// On Win64, use libgcc's SEH personality function. We fall back to dwarf on |
| 143 | /// other platforms, unless the user asked for SjLj exceptions. |
| 144 | static bool useLibGCCSEHPersonality(const llvm::Triple &T) { |
| 145 | return T.isOSWindows() && T.getArch() == llvm::Triple::x86_64; |
| 146 | } |
| 147 | |
| 148 | static const EHPersonality &getCPersonality(const llvm::Triple &T, |
| 149 | const LangOptions &L) { |
John McCall | 2faab30 | 2010-11-07 02:35:25 +0000 | [diff] [blame] | 150 | if (L.SjLjExceptions) |
| 151 | return EHPersonality::GNU_C_SJLJ; |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 152 | else if (useLibGCCSEHPersonality(T)) |
Reid Kleckner | 8f45c9c | 2014-09-15 17:19:16 +0000 | [diff] [blame] | 153 | return EHPersonality::GNU_C_SEH; |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 154 | return EHPersonality::GNU_C; |
| 155 | } |
| 156 | |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 157 | static const EHPersonality &getObjCPersonality(const llvm::Triple &T, |
| 158 | const LangOptions &L) { |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 159 | switch (L.ObjCRuntime.getKind()) { |
| 160 | case ObjCRuntime::FragileMacOSX: |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 161 | return getCPersonality(T, L); |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 162 | case ObjCRuntime::MacOSX: |
| 163 | case ObjCRuntime::iOS: |
| 164 | return EHPersonality::NeXT_ObjC; |
David Chisnall | b601c96 | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 165 | case ObjCRuntime::GNUstep: |
David Chisnall | 2ec1b10d | 2013-01-11 15:33:01 +0000 | [diff] [blame] | 166 | if (L.ObjCRuntime.getVersion() >= VersionTuple(1, 7)) |
| 167 | return EHPersonality::GNUstep_ObjC; |
| 168 | // fallthrough |
David Chisnall | b601c96 | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 169 | case ObjCRuntime::GCC: |
John McCall | 775086e | 2012-07-12 02:07:58 +0000 | [diff] [blame] | 170 | case ObjCRuntime::ObjFW: |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 171 | return EHPersonality::GNU_ObjC; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 172 | } |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 173 | llvm_unreachable("bad runtime kind"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 174 | } |
| 175 | |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 176 | static const EHPersonality &getCXXPersonality(const llvm::Triple &T, |
| 177 | const LangOptions &L) { |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 178 | if (L.SjLjExceptions) |
| 179 | return EHPersonality::GNU_CPlusPlus_SJLJ; |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 180 | else if (useLibGCCSEHPersonality(T)) |
Reid Kleckner | 8f45c9c | 2014-09-15 17:19:16 +0000 | [diff] [blame] | 181 | return EHPersonality::GNU_CPlusPlus_SEH; |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 182 | return EHPersonality::GNU_CPlusPlus; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | /// Determines the personality function to use when both C++ |
| 186 | /// and Objective-C exceptions are being caught. |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 187 | static const EHPersonality &getObjCXXPersonality(const llvm::Triple &T, |
| 188 | const LangOptions &L) { |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 189 | switch (L.ObjCRuntime.getKind()) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 190 | // The ObjC personality defers to the C++ personality for non-ObjC |
| 191 | // handlers. Unlike the C++ case, we use the same personality |
| 192 | // function on targets using (backend-driven) SJLJ EH. |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 193 | case ObjCRuntime::MacOSX: |
| 194 | case ObjCRuntime::iOS: |
| 195 | return EHPersonality::NeXT_ObjC; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 196 | |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 197 | // In the fragile ABI, just use C++ exception handling and hope |
| 198 | // they're not doing crazy exception mixing. |
| 199 | case ObjCRuntime::FragileMacOSX: |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 200 | return getCXXPersonality(T, L); |
David Chisnall | f9c4225 | 2010-05-17 13:49:20 +0000 | [diff] [blame] | 201 | |
David Chisnall | b601c96 | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 202 | // The GCC runtime's personality function inherently doesn't support |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 203 | // mixed EH. Use the C++ personality just to avoid returning null. |
David Chisnall | b601c96 | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 204 | case ObjCRuntime::GCC: |
John McCall | 775086e | 2012-07-12 02:07:58 +0000 | [diff] [blame] | 205 | case ObjCRuntime::ObjFW: // XXX: this will change soon |
David Chisnall | b601c96 | 2012-07-03 20:49:52 +0000 | [diff] [blame] | 206 | return EHPersonality::GNU_ObjC; |
| 207 | case ObjCRuntime::GNUstep: |
John McCall | 5fb5df9 | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 208 | return EHPersonality::GNU_ObjCXX; |
| 209 | } |
| 210 | llvm_unreachable("bad runtime kind"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 211 | } |
| 212 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 213 | static const EHPersonality &getSEHPersonalityMSVC(const llvm::Triple &T) { |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 214 | if (T.getArch() == llvm::Triple::x86) |
| 215 | return EHPersonality::MSVC_except_handler; |
| 216 | return EHPersonality::MSVC_C_specific_handler; |
| 217 | } |
| 218 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 219 | const EHPersonality &EHPersonality::get(CodeGenModule &CGM, |
| 220 | const FunctionDecl *FD) { |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 221 | const llvm::Triple &T = CGM.getTarget().getTriple(); |
| 222 | const LangOptions &L = CGM.getLangOpts(); |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 223 | |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 224 | // Try to pick a personality function that is compatible with MSVC if we're |
| 225 | // not compiling Obj-C. Obj-C users better have an Obj-C runtime that supports |
| 226 | // the GCC-style personality function. |
| 227 | if (T.isWindowsMSVCEnvironment() && !L.ObjC1) { |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 228 | if (L.SjLjExceptions) |
| 229 | return EHPersonality::GNU_CPlusPlus_SJLJ; |
| 230 | else if (FD && FD->usesSEHTry()) |
| 231 | return getSEHPersonalityMSVC(T); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 232 | else |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 233 | return EHPersonality::MSVC_CxxFrameHandler3; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 234 | } |
| 235 | |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 236 | if (L.CPlusPlus && L.ObjC1) |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 237 | return getObjCXXPersonality(T, L); |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 238 | else if (L.CPlusPlus) |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 239 | return getCXXPersonality(T, L); |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 240 | else if (L.ObjC1) |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 241 | return getObjCPersonality(T, L); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 242 | else |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 243 | return getCPersonality(T, L); |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 244 | } |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 245 | |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 246 | static llvm::Constant *getPersonalityFn(CodeGenModule &CGM, |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 247 | const EHPersonality &Personality) { |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 248 | llvm::Constant *Fn = |
Chris Lattner | ece0409 | 2012-02-07 00:39:47 +0000 | [diff] [blame] | 249 | CGM.CreateRuntimeFunction(llvm::FunctionType::get(CGM.Int32Ty, true), |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 250 | Personality.PersonalityFn); |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 251 | return Fn; |
| 252 | } |
| 253 | |
| 254 | static llvm::Constant *getOpaquePersonalityFn(CodeGenModule &CGM, |
| 255 | const EHPersonality &Personality) { |
| 256 | llvm::Constant *Fn = getPersonalityFn(CGM, Personality); |
John McCall | ad7c5c1 | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 257 | return llvm::ConstantExpr::getBitCast(Fn, CGM.Int8PtrTy); |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | /// Check whether a personality function could reasonably be swapped |
| 261 | /// for a C++ personality function. |
| 262 | static bool PersonalityHasOnlyCXXUses(llvm::Constant *Fn) { |
Chandler Carruth | 4d01fff | 2014-03-09 03:16:50 +0000 | [diff] [blame] | 263 | for (llvm::User *U : Fn->users()) { |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 264 | // Conditionally white-list bitcasts. |
Chandler Carruth | 4d01fff | 2014-03-09 03:16:50 +0000 | [diff] [blame] | 265 | if (llvm::ConstantExpr *CE = dyn_cast<llvm::ConstantExpr>(U)) { |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 266 | if (CE->getOpcode() != llvm::Instruction::BitCast) return false; |
| 267 | if (!PersonalityHasOnlyCXXUses(CE)) |
| 268 | return false; |
| 269 | continue; |
| 270 | } |
| 271 | |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 272 | // Otherwise, it has to be a landingpad instruction. |
Chandler Carruth | 4d01fff | 2014-03-09 03:16:50 +0000 | [diff] [blame] | 273 | llvm::LandingPadInst *LPI = dyn_cast<llvm::LandingPadInst>(U); |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 274 | if (!LPI) return false; |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 275 | |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 276 | for (unsigned I = 0, E = LPI->getNumClauses(); I != E; ++I) { |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 277 | // Look for something that would've been returned by the ObjC |
| 278 | // runtime's GetEHType() method. |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 279 | llvm::Value *Val = LPI->getClause(I)->stripPointerCasts(); |
| 280 | if (LPI->isCatch(I)) { |
| 281 | // Check if the catch value has the ObjC prefix. |
Bill Wendling | 5d7469e | 2011-09-20 00:40:19 +0000 | [diff] [blame] | 282 | if (llvm::GlobalVariable *GV = dyn_cast<llvm::GlobalVariable>(Val)) |
| 283 | // ObjC EH selector entries are always global variables with |
| 284 | // names starting like this. |
| 285 | if (GV->getName().startswith("OBJC_EHTYPE")) |
| 286 | return false; |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 287 | } else { |
| 288 | // Check if any of the filter values have the ObjC prefix. |
| 289 | llvm::Constant *CVal = cast<llvm::Constant>(Val); |
| 290 | for (llvm::User::op_iterator |
| 291 | II = CVal->op_begin(), IE = CVal->op_end(); II != IE; ++II) { |
Bill Wendling | 5d7469e | 2011-09-20 00:40:19 +0000 | [diff] [blame] | 292 | if (llvm::GlobalVariable *GV = |
| 293 | cast<llvm::GlobalVariable>((*II)->stripPointerCasts())) |
| 294 | // ObjC EH selector entries are always global variables with |
| 295 | // names starting like this. |
| 296 | if (GV->getName().startswith("OBJC_EHTYPE")) |
| 297 | return false; |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 298 | } |
| 299 | } |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 300 | } |
| 301 | } |
| 302 | |
| 303 | return true; |
| 304 | } |
| 305 | |
| 306 | /// Try to use the C++ personality function in ObjC++. Not doing this |
| 307 | /// can cause some incompatibilities with gcc, which is more |
| 308 | /// aggressive about only using the ObjC++ personality in a function |
| 309 | /// when it really needs it. |
| 310 | void CodeGenModule::SimplifyPersonality() { |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 311 | // If we're not in ObjC++ -fexceptions, there's nothing to do. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 312 | if (!LangOpts.CPlusPlus || !LangOpts.ObjC1 || !LangOpts.Exceptions) |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 313 | return; |
| 314 | |
John McCall | 3c22393 | 2012-11-14 17:48:31 +0000 | [diff] [blame] | 315 | // Both the problem this endeavors to fix and the way the logic |
| 316 | // above works is specific to the NeXT runtime. |
| 317 | if (!LangOpts.ObjCRuntime.isNeXTFamily()) |
| 318 | return; |
| 319 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 320 | const EHPersonality &ObjCXX = EHPersonality::get(*this, /*FD=*/nullptr); |
Reid Kleckner | e070b99 | 2014-11-14 02:01:10 +0000 | [diff] [blame] | 321 | const EHPersonality &CXX = |
| 322 | getCXXPersonality(getTarget().getTriple(), LangOpts); |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 323 | if (&ObjCXX == &CXX) |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 324 | return; |
| 325 | |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 326 | assert(std::strcmp(ObjCXX.PersonalityFn, CXX.PersonalityFn) != 0 && |
| 327 | "Different EHPersonalities using the same personality function."); |
| 328 | |
| 329 | llvm::Function *Fn = getModule().getFunction(ObjCXX.PersonalityFn); |
John McCall | 0bdb1fd | 2010-09-16 06:16:50 +0000 | [diff] [blame] | 330 | |
| 331 | // Nothing to do if it's unused. |
| 332 | if (!Fn || Fn->use_empty()) return; |
| 333 | |
| 334 | // Can't do the optimization if it has non-C++ uses. |
| 335 | if (!PersonalityHasOnlyCXXUses(Fn)) return; |
| 336 | |
| 337 | // Create the C++ personality function and kill off the old |
| 338 | // function. |
| 339 | llvm::Constant *CXXFn = getPersonalityFn(*this, CXX); |
| 340 | |
| 341 | // This can happen if the user is screwing with us. |
| 342 | if (Fn->getType() != CXXFn->getType()) return; |
| 343 | |
| 344 | Fn->replaceAllUsesWith(CXXFn); |
| 345 | Fn->eraseFromParent(); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 346 | } |
| 347 | |
| 348 | /// Returns the value to inject into a selector to indicate the |
| 349 | /// presence of a catch-all. |
| 350 | static llvm::Constant *getCatchAllValue(CodeGenFunction &CGF) { |
| 351 | // Possibly we should use @llvm.eh.catch.all.value here. |
John McCall | ad7c5c1 | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 352 | return llvm::ConstantPointerNull::get(CGF.Int8PtrTy); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 353 | } |
| 354 | |
John McCall | bb02601 | 2010-07-13 21:17:51 +0000 | [diff] [blame] | 355 | namespace { |
| 356 | /// A cleanup to free the exception object if its initialization |
| 357 | /// throws. |
John McCall | 5fcf8da | 2011-07-12 00:15:30 +0000 | [diff] [blame] | 358 | struct FreeException : EHScopeStack::Cleanup { |
| 359 | llvm::Value *exn; |
| 360 | FreeException(llvm::Value *exn) : exn(exn) {} |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 361 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 362 | CGF.EmitNounwindRuntimeCall(getFreeExceptionFn(CGF.CGM), exn); |
John McCall | bb02601 | 2010-07-13 21:17:51 +0000 | [diff] [blame] | 363 | } |
| 364 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 365 | } |
John McCall | bb02601 | 2010-07-13 21:17:51 +0000 | [diff] [blame] | 366 | |
John McCall | 2e6567a | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 367 | // Emits an exception expression into the given location. This |
| 368 | // differs from EmitAnyExprToMem only in that, if a final copy-ctor |
| 369 | // call is required, an exception within that copy ctor causes |
| 370 | // std::terminate to be invoked. |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 371 | void CodeGenFunction::EmitAnyExprToExn(const Expr *e, llvm::Value *addr) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 372 | // Make sure the exception object is cleaned up if there's an |
| 373 | // exception during initialization. |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 374 | pushFullExprCleanup<FreeException>(EHCleanup, addr); |
| 375 | EHScopeStack::stable_iterator cleanup = EHStack.stable_begin(); |
John McCall | 2e6567a | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 376 | |
| 377 | // __cxa_allocate_exception returns a void*; we need to cast this |
| 378 | // to the appropriate type for the object. |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 379 | llvm::Type *ty = ConvertTypeForMem(e->getType())->getPointerTo(); |
| 380 | llvm::Value *typedAddr = Builder.CreateBitCast(addr, ty); |
John McCall | 2e6567a | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 381 | |
| 382 | // FIXME: this isn't quite right! If there's a final unelided call |
| 383 | // to a copy constructor, then according to [except.terminate]p1 we |
| 384 | // must call std::terminate() if that constructor throws, because |
| 385 | // technically that copy occurs after the exception expression is |
| 386 | // evaluated but before the exception is caught. But the best way |
| 387 | // to handle that is to teach EmitAggExpr to do the final copy |
| 388 | // differently if it can't be elided. |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 389 | EmitAnyExprToMem(e, typedAddr, e->getType().getQualifiers(), |
| 390 | /*IsInit*/ true); |
John McCall | 2e6567a | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 391 | |
John McCall | e4df6c8 | 2011-01-28 08:37:24 +0000 | [diff] [blame] | 392 | // Deactivate the cleanup block. |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 393 | DeactivateCleanupBlock(cleanup, cast<llvm::Instruction>(typedAddr)); |
Mike Stump | 5406614 | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 394 | } |
| 395 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 396 | llvm::Value *CodeGenFunction::getExceptionSlot() { |
John McCall | 9b382dd | 2011-05-28 21:13:02 +0000 | [diff] [blame] | 397 | if (!ExceptionSlot) |
| 398 | ExceptionSlot = CreateTempAlloca(Int8PtrTy, "exn.slot"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 399 | return ExceptionSlot; |
Mike Stump | 5406614 | 2009-12-01 03:41:18 +0000 | [diff] [blame] | 400 | } |
| 401 | |
John McCall | 9b382dd | 2011-05-28 21:13:02 +0000 | [diff] [blame] | 402 | llvm::Value *CodeGenFunction::getEHSelectorSlot() { |
| 403 | if (!EHSelectorSlot) |
| 404 | EHSelectorSlot = CreateTempAlloca(Int32Ty, "ehselector.slot"); |
| 405 | return EHSelectorSlot; |
| 406 | } |
| 407 | |
Bill Wendling | 79a70e4 | 2011-09-15 18:57:19 +0000 | [diff] [blame] | 408 | llvm::Value *CodeGenFunction::getExceptionFromSlot() { |
| 409 | return Builder.CreateLoad(getExceptionSlot(), "exn"); |
| 410 | } |
| 411 | |
| 412 | llvm::Value *CodeGenFunction::getSelectorFromSlot() { |
| 413 | return Builder.CreateLoad(getEHSelectorSlot(), "sel"); |
| 414 | } |
| 415 | |
Richard Smith | ea85232 | 2013-05-07 21:53:22 +0000 | [diff] [blame] | 416 | void CodeGenFunction::EmitCXXThrowExpr(const CXXThrowExpr *E, |
| 417 | bool KeepInsertionPoint) { |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 418 | if (const Expr *SubExpr = E->getSubExpr()) { |
| 419 | QualType ThrowType = SubExpr->getType(); |
| 420 | if (ThrowType->isObjCObjectPointerType()) { |
| 421 | const Stmt *ThrowStmt = E->getSubExpr(); |
| 422 | const ObjCAtThrowStmt S(E->getExprLoc(), const_cast<Stmt *>(ThrowStmt)); |
| 423 | CGM.getObjCRuntime().EmitThrowStmt(*this, S, false); |
| 424 | } else { |
| 425 | CGM.getCXXABI().emitThrow(*this, E); |
John McCall | 2e6567a | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 426 | } |
David Majnemer | 7c23707 | 2015-03-05 00:46:22 +0000 | [diff] [blame] | 427 | } else { |
| 428 | CGM.getCXXABI().emitRethrow(*this, /*isNoReturn=*/true); |
John McCall | 2e6567a | 2010-04-22 01:10:34 +0000 | [diff] [blame] | 429 | } |
Mike Stump | 75546b8 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 430 | |
John McCall | 20f6ab8 | 2011-01-12 03:41:02 +0000 | [diff] [blame] | 431 | // throw is an expression, and the expression emitters expect us |
| 432 | // to leave ourselves at a valid insertion point. |
Richard Smith | ea85232 | 2013-05-07 21:53:22 +0000 | [diff] [blame] | 433 | if (KeepInsertionPoint) |
| 434 | EmitBlock(createBasicBlock("throw.cont")); |
Anders Carlsson | 4b08db7 | 2009-10-30 01:42:31 +0000 | [diff] [blame] | 435 | } |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 436 | |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 437 | void CodeGenFunction::EmitStartEHSpec(const Decl *D) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 438 | if (!CGM.getLangOpts().CXXExceptions) |
Anders Carlsson | 9878f9f | 2010-02-06 23:59:05 +0000 | [diff] [blame] | 439 | return; |
| 440 | |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 441 | const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 442 | if (!FD) { |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 443 | // Check if CapturedDecl is nothrow and create terminate scope for it. |
| 444 | if (const CapturedDecl* CD = dyn_cast_or_null<CapturedDecl>(D)) { |
| 445 | if (CD->isNothrow()) |
| 446 | EHStack.pushTerminate(); |
| 447 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 448 | return; |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 449 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 450 | const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 451 | if (!Proto) |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 452 | return; |
| 453 | |
Sebastian Redl | 0b94c9f | 2011-03-15 18:42:48 +0000 | [diff] [blame] | 454 | ExceptionSpecificationType EST = Proto->getExceptionSpecType(); |
| 455 | if (isNoexceptExceptionSpec(EST)) { |
| 456 | if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) { |
| 457 | // noexcept functions are simple terminate scopes. |
| 458 | EHStack.pushTerminate(); |
| 459 | } |
| 460 | } else if (EST == EST_Dynamic || EST == EST_DynamicNone) { |
David Majnemer | 1f192e2 | 2015-04-01 04:45:52 +0000 | [diff] [blame] | 461 | // TODO: Revisit exception specifications for the MS ABI. There is a way to |
| 462 | // encode these in an object file but MSVC doesn't do anything with it. |
| 463 | if (getTarget().getCXXABI().isMicrosoft()) |
| 464 | return; |
Sebastian Redl | 0b94c9f | 2011-03-15 18:42:48 +0000 | [diff] [blame] | 465 | unsigned NumExceptions = Proto->getNumExceptions(); |
| 466 | EHFilterScope *Filter = EHStack.pushFilter(NumExceptions); |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 467 | |
Sebastian Redl | 0b94c9f | 2011-03-15 18:42:48 +0000 | [diff] [blame] | 468 | for (unsigned I = 0; I != NumExceptions; ++I) { |
| 469 | QualType Ty = Proto->getExceptionType(I); |
| 470 | QualType ExceptType = Ty.getNonReferenceType().getUnqualifiedType(); |
| 471 | llvm::Value *EHType = CGM.GetAddrOfRTTIDescriptor(ExceptType, |
| 472 | /*ForEH=*/true); |
| 473 | Filter->setFilter(I, EHType); |
| 474 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 475 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 476 | } |
| 477 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 478 | /// Emit the dispatch block for a filter scope if necessary. |
| 479 | static void emitFilterDispatchBlock(CodeGenFunction &CGF, |
| 480 | EHFilterScope &filterScope) { |
| 481 | llvm::BasicBlock *dispatchBlock = filterScope.getCachedEHDispatchBlock(); |
| 482 | if (!dispatchBlock) return; |
| 483 | if (dispatchBlock->use_empty()) { |
| 484 | delete dispatchBlock; |
| 485 | return; |
| 486 | } |
| 487 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 488 | CGF.EmitBlockAfterUses(dispatchBlock); |
| 489 | |
| 490 | // If this isn't a catch-all filter, we need to check whether we got |
| 491 | // here because the filter triggered. |
| 492 | if (filterScope.getNumFilters()) { |
| 493 | // Load the selector value. |
Bill Wendling | 79a70e4 | 2011-09-15 18:57:19 +0000 | [diff] [blame] | 494 | llvm::Value *selector = CGF.getSelectorFromSlot(); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 495 | llvm::BasicBlock *unexpectedBB = CGF.createBasicBlock("ehspec.unexpected"); |
| 496 | |
| 497 | llvm::Value *zero = CGF.Builder.getInt32(0); |
| 498 | llvm::Value *failsFilter = |
Nico Weber | 1bebad1 | 2015-02-11 22:33:32 +0000 | [diff] [blame] | 499 | CGF.Builder.CreateICmpSLT(selector, zero, "ehspec.fails"); |
| 500 | CGF.Builder.CreateCondBr(failsFilter, unexpectedBB, |
| 501 | CGF.getEHResumeBlock(false)); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 502 | |
| 503 | CGF.EmitBlock(unexpectedBB); |
| 504 | } |
| 505 | |
| 506 | // Call __cxa_call_unexpected. This doesn't need to be an invoke |
| 507 | // because __cxa_call_unexpected magically filters exceptions |
| 508 | // according to the last landing pad the exception was thrown |
| 509 | // into. Seriously. |
Bill Wendling | 79a70e4 | 2011-09-15 18:57:19 +0000 | [diff] [blame] | 510 | llvm::Value *exn = CGF.getExceptionFromSlot(); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 511 | CGF.EmitRuntimeCall(getUnexpectedFn(CGF.CGM), exn) |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 512 | ->setDoesNotReturn(); |
| 513 | CGF.Builder.CreateUnreachable(); |
| 514 | } |
| 515 | |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 516 | void CodeGenFunction::EmitEndEHSpec(const Decl *D) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 517 | if (!CGM.getLangOpts().CXXExceptions) |
Anders Carlsson | 9878f9f | 2010-02-06 23:59:05 +0000 | [diff] [blame] | 518 | return; |
| 519 | |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 520 | const FunctionDecl* FD = dyn_cast_or_null<FunctionDecl>(D); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 521 | if (!FD) { |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 522 | // Check if CapturedDecl is nothrow and pop terminate scope for it. |
| 523 | if (const CapturedDecl* CD = dyn_cast_or_null<CapturedDecl>(D)) { |
| 524 | if (CD->isNothrow()) |
| 525 | EHStack.popTerminate(); |
| 526 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 527 | return; |
Alexey Bataev | 9959db5 | 2014-05-06 10:08:46 +0000 | [diff] [blame] | 528 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 529 | const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>(); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 530 | if (!Proto) |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 531 | return; |
| 532 | |
Sebastian Redl | 0b94c9f | 2011-03-15 18:42:48 +0000 | [diff] [blame] | 533 | ExceptionSpecificationType EST = Proto->getExceptionSpecType(); |
| 534 | if (isNoexceptExceptionSpec(EST)) { |
| 535 | if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) { |
| 536 | EHStack.popTerminate(); |
| 537 | } |
| 538 | } else if (EST == EST_Dynamic || EST == EST_DynamicNone) { |
David Majnemer | 1f192e2 | 2015-04-01 04:45:52 +0000 | [diff] [blame] | 539 | // TODO: Revisit exception specifications for the MS ABI. There is a way to |
| 540 | // encode these in an object file but MSVC doesn't do anything with it. |
| 541 | if (getTarget().getCXXABI().isMicrosoft()) |
| 542 | return; |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 543 | EHFilterScope &filterScope = cast<EHFilterScope>(*EHStack.begin()); |
| 544 | emitFilterDispatchBlock(*this, filterScope); |
Sebastian Redl | 0b94c9f | 2011-03-15 18:42:48 +0000 | [diff] [blame] | 545 | EHStack.popFilter(); |
| 546 | } |
Mike Stump | 1d84921 | 2009-12-07 23:38:24 +0000 | [diff] [blame] | 547 | } |
| 548 | |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 549 | void CodeGenFunction::EmitCXXTryStmt(const CXXTryStmt &S) { |
John McCall | b609d3f | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 550 | EnterCXXTryStmt(S); |
John McCall | b81884d | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 551 | EmitStmt(S.getTryBlock()); |
John McCall | b609d3f | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 552 | ExitCXXTryStmt(S); |
John McCall | b81884d | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 553 | } |
| 554 | |
John McCall | b609d3f | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 555 | void CodeGenFunction::EnterCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 556 | unsigned NumHandlers = S.getNumHandlers(); |
| 557 | EHCatchScope *CatchScope = EHStack.pushCatch(NumHandlers); |
John McCall | b81884d | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 558 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 559 | for (unsigned I = 0; I != NumHandlers; ++I) { |
| 560 | const CXXCatchStmt *C = S.getHandler(I); |
John McCall | b81884d | 2010-02-19 09:25:03 +0000 | [diff] [blame] | 561 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 562 | llvm::BasicBlock *Handler = createBasicBlock("catch"); |
| 563 | if (C->getExceptionDecl()) { |
| 564 | // FIXME: Dropping the reference type on the type into makes it |
| 565 | // impossible to correctly implement catch-by-reference |
| 566 | // semantics for pointers. Unfortunately, this is what all |
| 567 | // existing compilers do, and it's not clear that the standard |
| 568 | // personality routine is capable of doing this right. See C++ DR 388: |
| 569 | // http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#388 |
David Majnemer | 571162a | 2014-10-12 06:58:22 +0000 | [diff] [blame] | 570 | Qualifiers CaughtTypeQuals; |
| 571 | QualType CaughtType = CGM.getContext().getUnqualifiedArrayType( |
| 572 | C->getCaughtType().getNonReferenceType(), CaughtTypeQuals); |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 573 | |
Rafael Espindola | bb9e7a3 | 2014-06-04 18:51:46 +0000 | [diff] [blame] | 574 | llvm::Constant *TypeInfo = nullptr; |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 575 | if (CaughtType->isObjCObjectPointerType()) |
Fariborz Jahanian | 831f0fc | 2011-06-23 19:00:08 +0000 | [diff] [blame] | 576 | TypeInfo = CGM.getObjCRuntime().GetEHType(CaughtType); |
John McCall | 2ca705e | 2010-07-24 00:37:23 +0000 | [diff] [blame] | 577 | else |
David Majnemer | 5f0dd61 | 2015-03-17 20:35:05 +0000 | [diff] [blame] | 578 | TypeInfo = |
David Majnemer | 37b417f | 2015-03-29 21:55:10 +0000 | [diff] [blame] | 579 | CGM.getAddrOfCXXCatchHandlerType(CaughtType, C->getCaughtType()); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 580 | CatchScope->setHandler(I, TypeInfo, Handler); |
| 581 | } else { |
| 582 | // No exception decl indicates '...', a catch-all. |
| 583 | CatchScope->setCatchAllHandler(I, Handler); |
| 584 | } |
| 585 | } |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 586 | } |
| 587 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 588 | llvm::BasicBlock * |
| 589 | CodeGenFunction::getEHDispatchBlock(EHScopeStack::stable_iterator si) { |
| 590 | // The dispatch block for the end of the scope chain is a block that |
| 591 | // just resumes unwinding. |
| 592 | if (si == EHStack.stable_end()) |
David Chisnall | 9a837be | 2012-11-07 16:50:40 +0000 | [diff] [blame] | 593 | return getEHResumeBlock(true); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 594 | |
| 595 | // Otherwise, we should look at the actual scope. |
| 596 | EHScope &scope = *EHStack.find(si); |
| 597 | |
| 598 | llvm::BasicBlock *dispatchBlock = scope.getCachedEHDispatchBlock(); |
| 599 | if (!dispatchBlock) { |
| 600 | switch (scope.getKind()) { |
| 601 | case EHScope::Catch: { |
| 602 | // Apply a special case to a single catch-all. |
| 603 | EHCatchScope &catchScope = cast<EHCatchScope>(scope); |
| 604 | if (catchScope.getNumHandlers() == 1 && |
| 605 | catchScope.getHandler(0).isCatchAll()) { |
| 606 | dispatchBlock = catchScope.getHandler(0).Block; |
| 607 | |
| 608 | // Otherwise, make a dispatch block. |
| 609 | } else { |
| 610 | dispatchBlock = createBasicBlock("catch.dispatch"); |
| 611 | } |
| 612 | break; |
| 613 | } |
| 614 | |
| 615 | case EHScope::Cleanup: |
| 616 | dispatchBlock = createBasicBlock("ehcleanup"); |
| 617 | break; |
| 618 | |
| 619 | case EHScope::Filter: |
| 620 | dispatchBlock = createBasicBlock("filter.dispatch"); |
| 621 | break; |
| 622 | |
| 623 | case EHScope::Terminate: |
| 624 | dispatchBlock = getTerminateHandler(); |
| 625 | break; |
| 626 | } |
| 627 | scope.setCachedEHDispatchBlock(dispatchBlock); |
| 628 | } |
| 629 | return dispatchBlock; |
| 630 | } |
| 631 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 632 | /// Check whether this is a non-EH scope, i.e. a scope which doesn't |
| 633 | /// affect exception handling. Currently, the only non-EH scopes are |
| 634 | /// normal-only cleanup scopes. |
| 635 | static bool isNonEHScope(const EHScope &S) { |
John McCall | 2b7fc38 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 636 | switch (S.getKind()) { |
John McCall | cda666c | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 637 | case EHScope::Cleanup: |
| 638 | return !cast<EHCleanupScope>(S).isEHCleanup(); |
John McCall | 2b7fc38 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 639 | case EHScope::Filter: |
| 640 | case EHScope::Catch: |
| 641 | case EHScope::Terminate: |
| 642 | return false; |
| 643 | } |
| 644 | |
David Blaikie | e4d798f | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 645 | llvm_unreachable("Invalid EHScope Kind!"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 646 | } |
| 647 | |
| 648 | llvm::BasicBlock *CodeGenFunction::getInvokeDestImpl() { |
| 649 | assert(EHStack.requiresLandingPad()); |
| 650 | assert(!EHStack.empty()); |
| 651 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 652 | // If exceptions are disabled, there are usually no landingpads. However, when |
| 653 | // SEH is enabled, functions using SEH still get landingpads. |
| 654 | const LangOptions &LO = CGM.getLangOpts(); |
| 655 | if (!LO.Exceptions) { |
| 656 | if (!LO.Borland && !LO.MicrosoftExt) |
| 657 | return nullptr; |
Reid Kleckner | e7b3f7c | 2015-02-11 00:00:21 +0000 | [diff] [blame] | 658 | if (!currentFunctionUsesSEHTry()) |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 659 | return nullptr; |
| 660 | } |
John McCall | 2b7fc38 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 661 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 662 | // Check the innermost scope for a cached landing pad. If this is |
| 663 | // a non-EH cleanup, we'll check enclosing scopes in EmitLandingPad. |
| 664 | llvm::BasicBlock *LP = EHStack.begin()->getCachedLandingPad(); |
| 665 | if (LP) return LP; |
| 666 | |
| 667 | // Build the landing pad for this scope. |
| 668 | LP = EmitLandingPad(); |
| 669 | assert(LP); |
| 670 | |
| 671 | // Cache the landing pad on the innermost scope. If this is a |
| 672 | // non-EH scope, cache the landing pad on the enclosing scope, too. |
| 673 | for (EHScopeStack::iterator ir = EHStack.begin(); true; ++ir) { |
| 674 | ir->setCachedLandingPad(LP); |
| 675 | if (!isNonEHScope(*ir)) break; |
| 676 | } |
| 677 | |
| 678 | return LP; |
| 679 | } |
| 680 | |
| 681 | llvm::BasicBlock *CodeGenFunction::EmitLandingPad() { |
| 682 | assert(EHStack.requiresLandingPad()); |
| 683 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 684 | EHScope &innermostEHScope = *EHStack.find(EHStack.getInnermostEHScope()); |
| 685 | switch (innermostEHScope.getKind()) { |
| 686 | case EHScope::Terminate: |
| 687 | return getTerminateLandingPad(); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 688 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 689 | case EHScope::Catch: |
| 690 | case EHScope::Cleanup: |
| 691 | case EHScope::Filter: |
| 692 | if (llvm::BasicBlock *lpad = innermostEHScope.getCachedLandingPad()) |
| 693 | return lpad; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 694 | } |
| 695 | |
| 696 | // Save the current IR generation state. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 697 | CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP(); |
Adrian Prantl | 95b24e9 | 2015-02-03 20:00:54 +0000 | [diff] [blame] | 698 | auto DL = ApplyDebugLocation::CreateDefaultArtificial(*this, CurEHLocation); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 699 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 700 | const EHPersonality &personality = EHPersonality::get(*this); |
John McCall | 36ea372 | 2010-07-17 00:43:08 +0000 | [diff] [blame] | 701 | |
David Majnemer | fcbdb6e | 2015-06-17 20:53:19 +0000 | [diff] [blame] | 702 | if (!CurFn->hasPersonalityFn()) |
| 703 | CurFn->setPersonalityFn(getOpaquePersonalityFn(CGM, personality)); |
| 704 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 705 | // Create and configure the landing pad. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 706 | llvm::BasicBlock *lpad = createBasicBlock("lpad"); |
| 707 | EmitBlock(lpad); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 708 | |
David Majnemer | fcbdb6e | 2015-06-17 20:53:19 +0000 | [diff] [blame] | 709 | llvm::LandingPadInst *LPadInst = Builder.CreateLandingPad( |
| 710 | llvm::StructType::get(Int8PtrTy, Int32Ty, nullptr), 0); |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 711 | |
| 712 | llvm::Value *LPadExn = Builder.CreateExtractValue(LPadInst, 0); |
| 713 | Builder.CreateStore(LPadExn, getExceptionSlot()); |
| 714 | llvm::Value *LPadSel = Builder.CreateExtractValue(LPadInst, 1); |
| 715 | Builder.CreateStore(LPadSel, getEHSelectorSlot()); |
| 716 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 717 | // Save the exception pointer. It's safe to use a single exception |
| 718 | // pointer per function because EH cleanups can never have nested |
| 719 | // try/catches. |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 720 | // Build the landingpad instruction. |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 721 | |
| 722 | // Accumulate all the handlers in scope. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 723 | bool hasCatchAll = false; |
| 724 | bool hasCleanup = false; |
| 725 | bool hasFilter = false; |
| 726 | SmallVector<llvm::Value*, 4> filterTypes; |
| 727 | llvm::SmallPtrSet<llvm::Value*, 4> catchTypes; |
Nico Weber | e68b9f3 | 2015-02-25 16:25:00 +0000 | [diff] [blame] | 728 | for (EHScopeStack::iterator I = EHStack.begin(), E = EHStack.end(); I != E; |
| 729 | ++I) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 730 | |
| 731 | switch (I->getKind()) { |
John McCall | cda666c | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 732 | case EHScope::Cleanup: |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 733 | // If we have a cleanup, remember that. |
| 734 | hasCleanup = (hasCleanup || cast<EHCleanupScope>(*I).isEHCleanup()); |
John McCall | 2b7fc38 | 2010-07-13 20:32:21 +0000 | [diff] [blame] | 735 | continue; |
| 736 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 737 | case EHScope::Filter: { |
| 738 | assert(I.next() == EHStack.end() && "EH filter is not end of EH stack"); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 739 | assert(!hasCatchAll && "EH filter reached after catch-all"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 740 | |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 741 | // Filter scopes get added to the landingpad in weird ways. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 742 | EHFilterScope &filter = cast<EHFilterScope>(*I); |
| 743 | hasFilter = true; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 744 | |
Bill Wendling | 8c4b716 | 2011-09-22 20:32:54 +0000 | [diff] [blame] | 745 | // Add all the filter values. |
| 746 | for (unsigned i = 0, e = filter.getNumFilters(); i != e; ++i) |
| 747 | filterTypes.push_back(filter.getFilter(i)); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 748 | goto done; |
| 749 | } |
| 750 | |
| 751 | case EHScope::Terminate: |
| 752 | // Terminate scopes are basically catch-alls. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 753 | assert(!hasCatchAll); |
| 754 | hasCatchAll = true; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 755 | goto done; |
| 756 | |
| 757 | case EHScope::Catch: |
| 758 | break; |
| 759 | } |
| 760 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 761 | EHCatchScope &catchScope = cast<EHCatchScope>(*I); |
| 762 | for (unsigned hi = 0, he = catchScope.getNumHandlers(); hi != he; ++hi) { |
| 763 | EHCatchScope::Handler handler = catchScope.getHandler(hi); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 764 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 765 | // If this is a catch-all, register that and abort. |
| 766 | if (!handler.Type) { |
| 767 | assert(!hasCatchAll); |
| 768 | hasCatchAll = true; |
| 769 | goto done; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 770 | } |
| 771 | |
| 772 | // Check whether we already have a handler for this type. |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 773 | if (catchTypes.insert(handler.Type).second) |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 774 | // If not, add it directly to the landingpad. |
| 775 | LPadInst->addClause(handler.Type); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 776 | } |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 777 | } |
| 778 | |
| 779 | done: |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 780 | // If we have a catch-all, add null to the landingpad. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 781 | assert(!(hasCatchAll && hasFilter)); |
| 782 | if (hasCatchAll) { |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 783 | LPadInst->addClause(getCatchAllValue(*this)); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 784 | |
| 785 | // If we have an EH filter, we need to add those handlers in the |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 786 | // right place in the landingpad, which is to say, at the end. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 787 | } else if (hasFilter) { |
Bill Wendling | 58e58fe | 2011-09-19 22:08:36 +0000 | [diff] [blame] | 788 | // Create a filter expression: a constant array indicating which filter |
| 789 | // types there are. The personality routine only lands here if the filter |
| 790 | // doesn't match. |
Dmitri Gribenko | f857950 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 791 | SmallVector<llvm::Constant*, 8> Filters; |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 792 | llvm::ArrayType *AType = |
| 793 | llvm::ArrayType::get(!filterTypes.empty() ? |
| 794 | filterTypes[0]->getType() : Int8PtrTy, |
| 795 | filterTypes.size()); |
| 796 | |
| 797 | for (unsigned i = 0, e = filterTypes.size(); i != e; ++i) |
| 798 | Filters.push_back(cast<llvm::Constant>(filterTypes[i])); |
| 799 | llvm::Constant *FilterArray = llvm::ConstantArray::get(AType, Filters); |
| 800 | LPadInst->addClause(FilterArray); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 801 | |
| 802 | // Also check whether we need a cleanup. |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 803 | if (hasCleanup) |
| 804 | LPadInst->setCleanup(true); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 805 | |
| 806 | // Otherwise, signal that we at least have cleanups. |
Logan Chien | e9c8ccb | 2014-07-01 11:47:10 +0000 | [diff] [blame] | 807 | } else if (hasCleanup) { |
| 808 | LPadInst->setCleanup(true); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 809 | } |
| 810 | |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 811 | assert((LPadInst->getNumClauses() > 0 || LPadInst->isCleanup()) && |
| 812 | "landingpad instruction has no clauses!"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 813 | |
| 814 | // Tell the backend how to generate the landing pad. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 815 | Builder.CreateBr(getEHDispatchBlock(EHStack.getInnermostEHScope())); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 816 | |
| 817 | // Restore the old IR generation state. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 818 | Builder.restoreIP(savedIP); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 819 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 820 | return lpad; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 821 | } |
| 822 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 823 | /// Emit the structure of the dispatch block for the given catch scope. |
| 824 | /// It is an invariant that the dispatch block already exists. |
| 825 | static void emitCatchDispatchBlock(CodeGenFunction &CGF, |
| 826 | EHCatchScope &catchScope) { |
| 827 | llvm::BasicBlock *dispatchBlock = catchScope.getCachedEHDispatchBlock(); |
| 828 | assert(dispatchBlock); |
| 829 | |
| 830 | // If there's only a single catch-all, getEHDispatchBlock returned |
| 831 | // that catch-all as the dispatch block. |
| 832 | if (catchScope.getNumHandlers() == 1 && |
| 833 | catchScope.getHandler(0).isCatchAll()) { |
| 834 | assert(dispatchBlock == catchScope.getHandler(0).Block); |
| 835 | return; |
| 836 | } |
| 837 | |
| 838 | CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP(); |
| 839 | CGF.EmitBlockAfterUses(dispatchBlock); |
| 840 | |
| 841 | // Select the right handler. |
| 842 | llvm::Value *llvm_eh_typeid_for = |
| 843 | CGF.CGM.getIntrinsic(llvm::Intrinsic::eh_typeid_for); |
| 844 | |
| 845 | // Load the selector value. |
Bill Wendling | 79a70e4 | 2011-09-15 18:57:19 +0000 | [diff] [blame] | 846 | llvm::Value *selector = CGF.getSelectorFromSlot(); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 847 | |
| 848 | // Test against each of the exception types we claim to catch. |
| 849 | for (unsigned i = 0, e = catchScope.getNumHandlers(); ; ++i) { |
| 850 | assert(i < e && "ran off end of handlers!"); |
| 851 | const EHCatchScope::Handler &handler = catchScope.getHandler(i); |
| 852 | |
| 853 | llvm::Value *typeValue = handler.Type; |
| 854 | assert(typeValue && "fell into catch-all case!"); |
| 855 | typeValue = CGF.Builder.CreateBitCast(typeValue, CGF.Int8PtrTy); |
| 856 | |
| 857 | // Figure out the next block. |
| 858 | bool nextIsEnd; |
| 859 | llvm::BasicBlock *nextBlock; |
| 860 | |
| 861 | // If this is the last handler, we're at the end, and the next |
| 862 | // block is the block for the enclosing EH scope. |
| 863 | if (i + 1 == e) { |
| 864 | nextBlock = CGF.getEHDispatchBlock(catchScope.getEnclosingEHScope()); |
| 865 | nextIsEnd = true; |
| 866 | |
| 867 | // If the next handler is a catch-all, we're at the end, and the |
| 868 | // next block is that handler. |
| 869 | } else if (catchScope.getHandler(i+1).isCatchAll()) { |
| 870 | nextBlock = catchScope.getHandler(i+1).Block; |
| 871 | nextIsEnd = true; |
| 872 | |
| 873 | // Otherwise, we're not at the end and we need a new block. |
| 874 | } else { |
| 875 | nextBlock = CGF.createBasicBlock("catch.fallthrough"); |
| 876 | nextIsEnd = false; |
| 877 | } |
| 878 | |
| 879 | // Figure out the catch type's index in the LSDA's type table. |
| 880 | llvm::CallInst *typeIndex = |
| 881 | CGF.Builder.CreateCall(llvm_eh_typeid_for, typeValue); |
| 882 | typeIndex->setDoesNotThrow(); |
| 883 | |
| 884 | llvm::Value *matchesTypeIndex = |
| 885 | CGF.Builder.CreateICmpEQ(selector, typeIndex, "matches"); |
| 886 | CGF.Builder.CreateCondBr(matchesTypeIndex, handler.Block, nextBlock); |
| 887 | |
| 888 | // If the next handler is a catch-all, we're completely done. |
| 889 | if (nextIsEnd) { |
| 890 | CGF.Builder.restoreIP(savedIP); |
| 891 | return; |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 892 | } |
Ahmed Charles | 289896d | 2012-02-19 11:57:29 +0000 | [diff] [blame] | 893 | // Otherwise we need to emit and continue at that block. |
| 894 | CGF.EmitBlock(nextBlock); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 895 | } |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | void CodeGenFunction::popCatchScope() { |
| 899 | EHCatchScope &catchScope = cast<EHCatchScope>(*EHStack.begin()); |
| 900 | if (catchScope.hasEHBranches()) |
| 901 | emitCatchDispatchBlock(*this, catchScope); |
| 902 | EHStack.popCatch(); |
| 903 | } |
| 904 | |
John McCall | b609d3f | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 905 | void CodeGenFunction::ExitCXXTryStmt(const CXXTryStmt &S, bool IsFnTryBlock) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 906 | unsigned NumHandlers = S.getNumHandlers(); |
| 907 | EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin()); |
| 908 | assert(CatchScope.getNumHandlers() == NumHandlers); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 909 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 910 | // If the catch was not required, bail out now. |
| 911 | if (!CatchScope.hasEHBranches()) { |
Kostya Serebryany | ba4aced | 2014-01-09 09:22:32 +0000 | [diff] [blame] | 912 | CatchScope.clearHandlerBlocks(); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 913 | EHStack.popCatch(); |
| 914 | return; |
| 915 | } |
| 916 | |
| 917 | // Emit the structure of the EH dispatch for this catch. |
| 918 | emitCatchDispatchBlock(*this, CatchScope); |
| 919 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 920 | // Copy the handler blocks off before we pop the EH stack. Emitting |
| 921 | // the handlers might scribble on this memory. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 922 | SmallVector<EHCatchScope::Handler, 8> Handlers(NumHandlers); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 923 | memcpy(Handlers.data(), CatchScope.begin(), |
| 924 | NumHandlers * sizeof(EHCatchScope::Handler)); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 925 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 926 | EHStack.popCatch(); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 927 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 928 | // The fall-through block. |
| 929 | llvm::BasicBlock *ContBB = createBasicBlock("try.cont"); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 930 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 931 | // We just emitted the body of the try; jump to the continue block. |
| 932 | if (HaveInsertPoint()) |
| 933 | Builder.CreateBr(ContBB); |
Mike Stump | 9732915 | 2009-12-02 19:53:57 +0000 | [diff] [blame] | 934 | |
John McCall | d8d00be | 2012-06-15 05:27:05 +0000 | [diff] [blame] | 935 | // Determine if we need an implicit rethrow for all these catch handlers; |
| 936 | // see the comment below. |
| 937 | bool doImplicitRethrow = false; |
John McCall | b609d3f | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 938 | if (IsFnTryBlock) |
John McCall | d8d00be | 2012-06-15 05:27:05 +0000 | [diff] [blame] | 939 | doImplicitRethrow = isa<CXXDestructorDecl>(CurCodeDecl) || |
| 940 | isa<CXXConstructorDecl>(CurCodeDecl); |
John McCall | b609d3f | 2010-07-07 06:56:46 +0000 | [diff] [blame] | 941 | |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 942 | // Perversely, we emit the handlers backwards precisely because we |
| 943 | // want them to appear in source order. In all of these cases, the |
| 944 | // catch block will have exactly one predecessor, which will be a |
| 945 | // particular block in the catch dispatch. However, in the case of |
| 946 | // a catch-all, one of the dispatch blocks will branch to two |
| 947 | // different handlers, and EmitBlockAfterUses will cause the second |
| 948 | // handler to be moved before the first. |
| 949 | for (unsigned I = NumHandlers; I != 0; --I) { |
| 950 | llvm::BasicBlock *CatchBlock = Handlers[I-1].Block; |
| 951 | EmitBlockAfterUses(CatchBlock); |
Mike Stump | 75546b8 | 2009-12-10 00:06:18 +0000 | [diff] [blame] | 952 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 953 | // Catch the exception if this isn't a catch-all. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 954 | const CXXCatchStmt *C = S.getHandler(I-1); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 955 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 956 | // Enter a cleanup scope, including the catch variable and the |
| 957 | // end-catch. |
| 958 | RunCleanupsScope CatchScope(*this); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 959 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 960 | // Initialize the catch variable and set up the cleanups. |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 961 | CGM.getCXXABI().emitBeginCatch(*this, C); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 962 | |
Justin Bogner | ea278c3 | 2014-01-07 00:20:28 +0000 | [diff] [blame] | 963 | // Emit the PGO counter increment. |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 964 | incrementProfileCounter(C); |
Justin Bogner | ef512b9 | 2014-01-06 22:27:43 +0000 | [diff] [blame] | 965 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 966 | // Perform the body of the catch. |
| 967 | EmitStmt(C->getHandlerBlock()); |
| 968 | |
John McCall | d8d00be | 2012-06-15 05:27:05 +0000 | [diff] [blame] | 969 | // [except.handle]p11: |
| 970 | // The currently handled exception is rethrown if control |
| 971 | // reaches the end of a handler of the function-try-block of a |
| 972 | // constructor or destructor. |
| 973 | |
| 974 | // It is important that we only do this on fallthrough and not on |
| 975 | // return. Note that it's illegal to put a return in a |
| 976 | // constructor function-try-block's catch handler (p14), so this |
| 977 | // really only applies to destructors. |
| 978 | if (doImplicitRethrow && HaveInsertPoint()) { |
David Majnemer | 442d0a2 | 2014-11-25 07:20:20 +0000 | [diff] [blame] | 979 | CGM.getCXXABI().emitRethrow(*this, /*isNoReturn*/false); |
John McCall | d8d00be | 2012-06-15 05:27:05 +0000 | [diff] [blame] | 980 | Builder.CreateUnreachable(); |
| 981 | Builder.ClearInsertionPoint(); |
| 982 | } |
| 983 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 984 | // Fall out through the catch cleanups. |
| 985 | CatchScope.ForceCleanup(); |
| 986 | |
| 987 | // Branch out of the try. |
| 988 | if (HaveInsertPoint()) |
| 989 | Builder.CreateBr(ContBB); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 990 | } |
| 991 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 992 | EmitBlock(ContBB); |
Justin Bogner | 66242d6 | 2015-04-23 23:06:47 +0000 | [diff] [blame] | 993 | incrementProfileCounter(&S); |
Mike Stump | 58ef18b | 2009-11-20 23:44:51 +0000 | [diff] [blame] | 994 | } |
Mike Stump | aff69af | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 995 | |
John McCall | 1e67040 | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 996 | namespace { |
John McCall | cda666c | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 997 | struct CallEndCatchForFinally : EHScopeStack::Cleanup { |
John McCall | 1e67040 | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 998 | llvm::Value *ForEHVar; |
| 999 | llvm::Value *EndCatchFn; |
| 1000 | CallEndCatchForFinally(llvm::Value *ForEHVar, llvm::Value *EndCatchFn) |
| 1001 | : ForEHVar(ForEHVar), EndCatchFn(EndCatchFn) {} |
| 1002 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1003 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
John McCall | 1e67040 | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 1004 | llvm::BasicBlock *EndCatchBB = CGF.createBasicBlock("finally.endcatch"); |
| 1005 | llvm::BasicBlock *CleanupContBB = |
| 1006 | CGF.createBasicBlock("finally.cleanup.cont"); |
| 1007 | |
| 1008 | llvm::Value *ShouldEndCatch = |
| 1009 | CGF.Builder.CreateLoad(ForEHVar, "finally.endcatch"); |
| 1010 | CGF.Builder.CreateCondBr(ShouldEndCatch, EndCatchBB, CleanupContBB); |
| 1011 | CGF.EmitBlock(EndCatchBB); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1012 | CGF.EmitRuntimeCallOrInvoke(EndCatchFn); // catch-all, so might throw |
John McCall | 1e67040 | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 1013 | CGF.EmitBlock(CleanupContBB); |
| 1014 | } |
| 1015 | }; |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1016 | |
John McCall | cda666c | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1017 | struct PerformFinally : EHScopeStack::Cleanup { |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1018 | const Stmt *Body; |
| 1019 | llvm::Value *ForEHVar; |
| 1020 | llvm::Value *EndCatchFn; |
| 1021 | llvm::Value *RethrowFn; |
| 1022 | llvm::Value *SavedExnVar; |
| 1023 | |
| 1024 | PerformFinally(const Stmt *Body, llvm::Value *ForEHVar, |
| 1025 | llvm::Value *EndCatchFn, |
| 1026 | llvm::Value *RethrowFn, llvm::Value *SavedExnVar) |
| 1027 | : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn), |
| 1028 | RethrowFn(RethrowFn), SavedExnVar(SavedExnVar) {} |
| 1029 | |
Craig Topper | 4f12f10 | 2014-03-12 06:41:41 +0000 | [diff] [blame] | 1030 | void Emit(CodeGenFunction &CGF, Flags flags) override { |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1031 | // Enter a cleanup to call the end-catch function if one was provided. |
| 1032 | if (EndCatchFn) |
John McCall | cda666c | 2010-07-21 07:22:38 +0000 | [diff] [blame] | 1033 | CGF.EHStack.pushCleanup<CallEndCatchForFinally>(NormalAndEHCleanup, |
| 1034 | ForEHVar, EndCatchFn); |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1035 | |
John McCall | cebe0ca | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 1036 | // Save the current cleanup destination in case there are |
| 1037 | // cleanups in the finally block. |
| 1038 | llvm::Value *SavedCleanupDest = |
| 1039 | CGF.Builder.CreateLoad(CGF.getNormalCleanupDestSlot(), |
| 1040 | "cleanup.dest.saved"); |
| 1041 | |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1042 | // Emit the finally block. |
| 1043 | CGF.EmitStmt(Body); |
| 1044 | |
| 1045 | // If the end of the finally is reachable, check whether this was |
| 1046 | // for EH. If so, rethrow. |
| 1047 | if (CGF.HaveInsertPoint()) { |
| 1048 | llvm::BasicBlock *RethrowBB = CGF.createBasicBlock("finally.rethrow"); |
| 1049 | llvm::BasicBlock *ContBB = CGF.createBasicBlock("finally.cont"); |
| 1050 | |
| 1051 | llvm::Value *ShouldRethrow = |
| 1052 | CGF.Builder.CreateLoad(ForEHVar, "finally.shouldthrow"); |
| 1053 | CGF.Builder.CreateCondBr(ShouldRethrow, RethrowBB, ContBB); |
| 1054 | |
| 1055 | CGF.EmitBlock(RethrowBB); |
| 1056 | if (SavedExnVar) { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1057 | CGF.EmitRuntimeCallOrInvoke(RethrowFn, |
| 1058 | CGF.Builder.CreateLoad(SavedExnVar)); |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1059 | } else { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1060 | CGF.EmitRuntimeCallOrInvoke(RethrowFn); |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1061 | } |
| 1062 | CGF.Builder.CreateUnreachable(); |
| 1063 | |
| 1064 | CGF.EmitBlock(ContBB); |
John McCall | cebe0ca | 2010-08-11 00:16:14 +0000 | [diff] [blame] | 1065 | |
| 1066 | // Restore the cleanup destination. |
| 1067 | CGF.Builder.CreateStore(SavedCleanupDest, |
| 1068 | CGF.getNormalCleanupDestSlot()); |
John McCall | 906da4b | 2010-07-21 05:47:49 +0000 | [diff] [blame] | 1069 | } |
| 1070 | |
| 1071 | // Leave the end-catch cleanup. As an optimization, pretend that |
| 1072 | // the fallthrough path was inaccessible; we've dynamically proven |
| 1073 | // that we're not in the EH case along that path. |
| 1074 | if (EndCatchFn) { |
| 1075 | CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); |
| 1076 | CGF.PopCleanupBlock(); |
| 1077 | CGF.Builder.restoreIP(SavedIP); |
| 1078 | } |
| 1079 | |
| 1080 | // Now make sure we actually have an insertion point or the |
| 1081 | // cleanup gods will hate us. |
| 1082 | CGF.EnsureInsertPoint(); |
| 1083 | } |
| 1084 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1085 | } |
John McCall | 1e67040 | 2010-07-21 00:52:03 +0000 | [diff] [blame] | 1086 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1087 | /// Enters a finally block for an implementation using zero-cost |
| 1088 | /// exceptions. This is mostly general, but hard-codes some |
| 1089 | /// language/ABI-specific behavior in the catch-all sections. |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1090 | void CodeGenFunction::FinallyInfo::enter(CodeGenFunction &CGF, |
| 1091 | const Stmt *body, |
| 1092 | llvm::Constant *beginCatchFn, |
| 1093 | llvm::Constant *endCatchFn, |
| 1094 | llvm::Constant *rethrowFn) { |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1095 | assert((beginCatchFn != nullptr) == (endCatchFn != nullptr) && |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1096 | "begin/end catch functions not paired"); |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1097 | assert(rethrowFn && "rethrow function is required"); |
| 1098 | |
| 1099 | BeginCatchFn = beginCatchFn; |
Mike Stump | aff69af | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1100 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1101 | // The rethrow function has one of the following two types: |
| 1102 | // void (*)() |
| 1103 | // void (*)(void*) |
| 1104 | // In the latter case we need to pass it the exception object. |
| 1105 | // But we can't use the exception slot because the @finally might |
| 1106 | // have a landing pad (which would overwrite the exception slot). |
Chris Lattner | 2192fe5 | 2011-07-18 04:24:23 +0000 | [diff] [blame] | 1107 | llvm::FunctionType *rethrowFnTy = |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1108 | cast<llvm::FunctionType>( |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1109 | cast<llvm::PointerType>(rethrowFn->getType())->getElementType()); |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1110 | SavedExnVar = nullptr; |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1111 | if (rethrowFnTy->getNumParams()) |
| 1112 | SavedExnVar = CGF.CreateTempAlloca(CGF.Int8PtrTy, "finally.exn"); |
Mike Stump | aff69af | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1113 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1114 | // A finally block is a statement which must be executed on any edge |
| 1115 | // out of a given scope. Unlike a cleanup, the finally block may |
| 1116 | // contain arbitrary control flow leading out of itself. In |
| 1117 | // addition, finally blocks should always be executed, even if there |
| 1118 | // are no catch handlers higher on the stack. Therefore, we |
| 1119 | // surround the protected scope with a combination of a normal |
| 1120 | // cleanup (to catch attempts to break out of the block via normal |
| 1121 | // control flow) and an EH catch-all (semantically "outside" any try |
| 1122 | // statement to which the finally block might have been attached). |
| 1123 | // The finally block itself is generated in the context of a cleanup |
| 1124 | // which conditionally leaves the catch-all. |
John McCall | 2188696 | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1125 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1126 | // Jump destination for performing the finally block on an exception |
| 1127 | // edge. We'll never actually reach this block, so unreachable is |
| 1128 | // fine. |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1129 | RethrowDest = CGF.getJumpDestInCurrentScope(CGF.getUnreachableBlock()); |
John McCall | 2188696 | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1130 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1131 | // Whether the finally block is being executed for EH purposes. |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1132 | ForEHVar = CGF.CreateTempAlloca(CGF.Builder.getInt1Ty(), "finally.for-eh"); |
| 1133 | CGF.Builder.CreateStore(CGF.Builder.getFalse(), ForEHVar); |
Mike Stump | aff69af | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1134 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1135 | // Enter a normal cleanup which will perform the @finally block. |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1136 | CGF.EHStack.pushCleanup<PerformFinally>(NormalCleanup, body, |
| 1137 | ForEHVar, endCatchFn, |
| 1138 | rethrowFn, SavedExnVar); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1139 | |
| 1140 | // Enter a catch-all scope. |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1141 | llvm::BasicBlock *catchBB = CGF.createBasicBlock("finally.catchall"); |
| 1142 | EHCatchScope *catchScope = CGF.EHStack.pushCatch(1); |
| 1143 | catchScope->setCatchAllHandler(0, catchBB); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1144 | } |
| 1145 | |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1146 | void CodeGenFunction::FinallyInfo::exit(CodeGenFunction &CGF) { |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1147 | // Leave the finally catch-all. |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1148 | EHCatchScope &catchScope = cast<EHCatchScope>(*CGF.EHStack.begin()); |
| 1149 | llvm::BasicBlock *catchBB = catchScope.getHandler(0).Block; |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 1150 | |
| 1151 | CGF.popCatchScope(); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1152 | |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1153 | // If there are any references to the catch-all block, emit it. |
| 1154 | if (catchBB->use_empty()) { |
| 1155 | delete catchBB; |
| 1156 | } else { |
| 1157 | CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP(); |
| 1158 | CGF.EmitBlock(catchBB); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1159 | |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1160 | llvm::Value *exn = nullptr; |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1161 | |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1162 | // If there's a begin-catch function, call it. |
| 1163 | if (BeginCatchFn) { |
Bill Wendling | 79a70e4 | 2011-09-15 18:57:19 +0000 | [diff] [blame] | 1164 | exn = CGF.getExceptionFromSlot(); |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1165 | CGF.EmitNounwindRuntimeCall(BeginCatchFn, exn); |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1166 | } |
| 1167 | |
| 1168 | // If we need to remember the exception pointer to rethrow later, do so. |
| 1169 | if (SavedExnVar) { |
Bill Wendling | 79a70e4 | 2011-09-15 18:57:19 +0000 | [diff] [blame] | 1170 | if (!exn) exn = CGF.getExceptionFromSlot(); |
John McCall | 6b0feb7 | 2011-06-22 02:32:12 +0000 | [diff] [blame] | 1171 | CGF.Builder.CreateStore(exn, SavedExnVar); |
| 1172 | } |
| 1173 | |
| 1174 | // Tell the cleanups in the finally block that we're do this for EH. |
| 1175 | CGF.Builder.CreateStore(CGF.Builder.getTrue(), ForEHVar); |
| 1176 | |
| 1177 | // Thread a jump through the finally cleanup. |
| 1178 | CGF.EmitBranchThroughCleanup(RethrowDest); |
| 1179 | |
| 1180 | CGF.Builder.restoreIP(savedIP); |
| 1181 | } |
| 1182 | |
| 1183 | // Finally, leave the @finally cleanup. |
| 1184 | CGF.PopCleanupBlock(); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1185 | } |
| 1186 | |
| 1187 | llvm::BasicBlock *CodeGenFunction::getTerminateLandingPad() { |
| 1188 | if (TerminateLandingPad) |
| 1189 | return TerminateLandingPad; |
| 1190 | |
| 1191 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
| 1192 | |
| 1193 | // This will get inserted at the end of the function. |
| 1194 | TerminateLandingPad = createBasicBlock("terminate.lpad"); |
| 1195 | Builder.SetInsertPoint(TerminateLandingPad); |
| 1196 | |
| 1197 | // Tell the backend that this is a landing pad. |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 1198 | const EHPersonality &Personality = EHPersonality::get(*this); |
David Majnemer | fcbdb6e | 2015-06-17 20:53:19 +0000 | [diff] [blame] | 1199 | |
| 1200 | if (!CurFn->hasPersonalityFn()) |
| 1201 | CurFn->setPersonalityFn(getOpaquePersonalityFn(CGM, Personality)); |
| 1202 | |
| 1203 | llvm::LandingPadInst *LPadInst = Builder.CreateLandingPad( |
| 1204 | llvm::StructType::get(Int8PtrTy, Int32Ty, nullptr), 0); |
Bill Wendling | f0724e8 | 2011-09-19 20:31:14 +0000 | [diff] [blame] | 1205 | LPadInst->addClause(getCatchAllValue(*this)); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1206 | |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 1207 | llvm::Value *Exn = 0; |
| 1208 | if (getLangOpts().CPlusPlus) |
| 1209 | Exn = Builder.CreateExtractValue(LPadInst, 0); |
| 1210 | llvm::CallInst *terminateCall = |
| 1211 | CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); |
John McCall | e142ad5 | 2013-02-12 03:51:46 +0000 | [diff] [blame] | 1212 | terminateCall->setDoesNotReturn(); |
John McCall | ad7c5c1 | 2011-02-08 08:22:06 +0000 | [diff] [blame] | 1213 | Builder.CreateUnreachable(); |
Mike Stump | aff69af | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1214 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1215 | // Restore the saved insertion state. |
| 1216 | Builder.restoreIP(SavedIP); |
John McCall | dac3ea6 | 2010-04-30 00:06:43 +0000 | [diff] [blame] | 1217 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1218 | return TerminateLandingPad; |
Mike Stump | aff69af | 2009-12-09 03:35:49 +0000 | [diff] [blame] | 1219 | } |
Mike Stump | 2b48887 | 2009-12-09 22:59:31 +0000 | [diff] [blame] | 1220 | |
| 1221 | llvm::BasicBlock *CodeGenFunction::getTerminateHandler() { |
Mike Stump | f5cbb08 | 2009-12-10 00:02:42 +0000 | [diff] [blame] | 1222 | if (TerminateHandler) |
| 1223 | return TerminateHandler; |
| 1224 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1225 | CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); |
Mike Stump | 25b20fc | 2009-12-09 23:31:35 +0000 | [diff] [blame] | 1226 | |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1227 | // Set up the terminate handler. This block is inserted at the very |
| 1228 | // end of the function by FinishFunction. |
Mike Stump | f5cbb08 | 2009-12-10 00:02:42 +0000 | [diff] [blame] | 1229 | TerminateHandler = createBasicBlock("terminate.handler"); |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1230 | Builder.SetInsertPoint(TerminateHandler); |
Reid Kleckner | fff8e7f | 2015-03-03 19:21:04 +0000 | [diff] [blame] | 1231 | llvm::Value *Exn = 0; |
| 1232 | if (getLangOpts().CPlusPlus) |
| 1233 | Exn = getExceptionFromSlot(); |
| 1234 | llvm::CallInst *terminateCall = |
| 1235 | CGM.getCXXABI().emitTerminateForUnexpectedException(*this, Exn); |
John McCall | c84e4e9 | 2013-06-20 21:37:43 +0000 | [diff] [blame] | 1236 | terminateCall->setDoesNotReturn(); |
Mike Stump | 2b48887 | 2009-12-09 22:59:31 +0000 | [diff] [blame] | 1237 | Builder.CreateUnreachable(); |
| 1238 | |
John McCall | 2188696 | 2010-04-21 10:05:39 +0000 | [diff] [blame] | 1239 | // Restore the saved insertion state. |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1240 | Builder.restoreIP(SavedIP); |
Mike Stump | 25b20fc | 2009-12-09 23:31:35 +0000 | [diff] [blame] | 1241 | |
Mike Stump | 2b48887 | 2009-12-09 22:59:31 +0000 | [diff] [blame] | 1242 | return TerminateHandler; |
| 1243 | } |
John McCall | bd30929 | 2010-07-06 01:34:17 +0000 | [diff] [blame] | 1244 | |
David Chisnall | 9a837be | 2012-11-07 16:50:40 +0000 | [diff] [blame] | 1245 | llvm::BasicBlock *CodeGenFunction::getEHResumeBlock(bool isCleanup) { |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 1246 | if (EHResumeBlock) return EHResumeBlock; |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1247 | |
| 1248 | CGBuilderTy::InsertPoint SavedIP = Builder.saveIP(); |
| 1249 | |
| 1250 | // We emit a jump to a notional label at the outermost unwind state. |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 1251 | EHResumeBlock = createBasicBlock("eh.resume"); |
| 1252 | Builder.SetInsertPoint(EHResumeBlock); |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1253 | |
Reid Kleckner | deeddec | 2015-02-05 18:56:03 +0000 | [diff] [blame] | 1254 | const EHPersonality &Personality = EHPersonality::get(*this); |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1255 | |
| 1256 | // This can always be a call because we necessarily didn't find |
| 1257 | // anything on the EH stack which needs our help. |
Benjamin Kramer | 793bd55 | 2012-02-08 12:41:24 +0000 | [diff] [blame] | 1258 | const char *RethrowName = Personality.CatchallRethrowFn; |
Craig Topper | 8a13c41 | 2014-05-21 05:09:00 +0000 | [diff] [blame] | 1259 | if (RethrowName != nullptr && !isCleanup) { |
John McCall | 882987f | 2013-02-28 19:01:20 +0000 | [diff] [blame] | 1260 | EmitRuntimeCall(getCatchallRethrowFn(CGM, RethrowName), |
Nico Weber | ff62a6a | 2015-02-26 22:34:33 +0000 | [diff] [blame] | 1261 | getExceptionFromSlot())->setDoesNotReturn(); |
Logan Chien | e9c8ccb | 2014-07-01 11:47:10 +0000 | [diff] [blame] | 1262 | Builder.CreateUnreachable(); |
| 1263 | Builder.restoreIP(SavedIP); |
| 1264 | return EHResumeBlock; |
John McCall | 9b382dd | 2011-05-28 21:13:02 +0000 | [diff] [blame] | 1265 | } |
| 1266 | |
Logan Chien | e9c8ccb | 2014-07-01 11:47:10 +0000 | [diff] [blame] | 1267 | // Recreate the landingpad's return value for the 'resume' instruction. |
| 1268 | llvm::Value *Exn = getExceptionFromSlot(); |
| 1269 | llvm::Value *Sel = getSelectorFromSlot(); |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1270 | |
Logan Chien | e9c8ccb | 2014-07-01 11:47:10 +0000 | [diff] [blame] | 1271 | llvm::Type *LPadType = llvm::StructType::get(Exn->getType(), |
Reid Kleckner | ee7cf84 | 2014-12-01 22:02:27 +0000 | [diff] [blame] | 1272 | Sel->getType(), nullptr); |
Logan Chien | e9c8ccb | 2014-07-01 11:47:10 +0000 | [diff] [blame] | 1273 | llvm::Value *LPadVal = llvm::UndefValue::get(LPadType); |
| 1274 | LPadVal = Builder.CreateInsertValue(LPadVal, Exn, 0, "lpad.val"); |
| 1275 | LPadVal = Builder.CreateInsertValue(LPadVal, Sel, 1, "lpad.val"); |
| 1276 | |
| 1277 | Builder.CreateResume(LPadVal); |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1278 | Builder.restoreIP(SavedIP); |
John McCall | 8e4c74b | 2011-08-11 02:22:43 +0000 | [diff] [blame] | 1279 | return EHResumeBlock; |
John McCall | ad5d61e | 2010-07-23 21:56:41 +0000 | [diff] [blame] | 1280 | } |
Reid Kleckner | 543a16c | 2013-09-16 21:46:30 +0000 | [diff] [blame] | 1281 | |
| 1282 | void CodeGenFunction::EmitSEHTryStmt(const SEHTryStmt &S) { |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1283 | EnterSEHTryStmt(S); |
Reid Kleckner | a593000 | 2015-02-11 21:40:48 +0000 | [diff] [blame] | 1284 | { |
Nico Weber | 5779f84 | 2015-02-12 23:16:11 +0000 | [diff] [blame] | 1285 | JumpDest TryExit = getJumpDestInCurrentScope("__try.__leave"); |
Nico Weber | 5779f84 | 2015-02-12 23:16:11 +0000 | [diff] [blame] | 1286 | |
Reid Kleckner | 11c033e | 2015-02-12 23:40:45 +0000 | [diff] [blame] | 1287 | SEHTryEpilogueStack.push_back(&TryExit); |
Reid Kleckner | a593000 | 2015-02-11 21:40:48 +0000 | [diff] [blame] | 1288 | EmitStmt(S.getTryBlock()); |
Reid Kleckner | 11c033e | 2015-02-12 23:40:45 +0000 | [diff] [blame] | 1289 | SEHTryEpilogueStack.pop_back(); |
Nico Weber | 5779f84 | 2015-02-12 23:16:11 +0000 | [diff] [blame] | 1290 | |
| 1291 | if (!TryExit.getBlock()->use_empty()) |
| 1292 | EmitBlock(TryExit.getBlock(), /*IsFinished=*/true); |
| 1293 | else |
| 1294 | delete TryExit.getBlock(); |
Reid Kleckner | a593000 | 2015-02-11 21:40:48 +0000 | [diff] [blame] | 1295 | } |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1296 | ExitSEHTryStmt(S); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1297 | } |
| 1298 | |
| 1299 | namespace { |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1300 | struct PerformSEHFinally : EHScopeStack::Cleanup { |
| 1301 | llvm::Function *OutlinedFinally; |
| 1302 | PerformSEHFinally(llvm::Function *OutlinedFinally) |
| 1303 | : OutlinedFinally(OutlinedFinally) {} |
Reid Kleckner | aca01db | 2015-02-04 22:37:07 +0000 | [diff] [blame] | 1304 | |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1305 | void Emit(CodeGenFunction &CGF, Flags F) override { |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1306 | ASTContext &Context = CGF.getContext(); |
Reid Kleckner | 0b9bbbf | 2015-06-09 17:49:42 +0000 | [diff] [blame] | 1307 | CodeGenModule &CGM = CGF.CGM; |
Reid Kleckner | 6587044 | 2015-06-09 17:47:50 +0000 | [diff] [blame] | 1308 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1309 | CallArgList Args; |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1310 | |
Reid Kleckner | eb11c41 | 2015-07-01 21:00:00 +0000 | [diff] [blame^] | 1311 | // Compute the two argument values. |
| 1312 | QualType ArgTys[2] = {Context.UnsignedCharTy, Context.VoidPtrTy}; |
| 1313 | llvm::Value *FrameAddr = CGM.getIntrinsic(llvm::Intrinsic::frameaddress); |
| 1314 | llvm::Value *FP = |
| 1315 | CGF.Builder.CreateCall(FrameAddr, {CGF.Builder.getInt32(0)}); |
| 1316 | llvm::Value *IsForEH = |
| 1317 | llvm::ConstantInt::get(CGF.ConvertType(ArgTys[0]), F.isForEHCleanup()); |
| 1318 | Args.add(RValue::get(IsForEH), ArgTys[0]); |
| 1319 | Args.add(RValue::get(FP), ArgTys[1]); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1320 | |
Reid Kleckner | eb11c41 | 2015-07-01 21:00:00 +0000 | [diff] [blame^] | 1321 | // Arrange a two-arg function info and type. |
| 1322 | FunctionProtoType::ExtProtoInfo EPI; |
| 1323 | const auto *FPT = cast<FunctionProtoType>( |
| 1324 | Context.getFunctionType(Context.VoidTy, ArgTys, EPI)); |
| 1325 | const CGFunctionInfo &FnInfo = |
| 1326 | CGM.getTypes().arrangeFreeFunctionCall(Args, FPT, |
| 1327 | /*chainCall=*/false); |
| 1328 | |
| 1329 | CGF.EmitCall(FnInfo, OutlinedFinally, ReturnValueSlot(), Args); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1330 | } |
| 1331 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1332 | } |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1333 | |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1334 | namespace { |
| 1335 | /// Find all local variable captures in the statement. |
| 1336 | struct CaptureFinder : ConstStmtVisitor<CaptureFinder> { |
| 1337 | CodeGenFunction &ParentCGF; |
| 1338 | const VarDecl *ParentThis; |
| 1339 | SmallVector<const VarDecl *, 4> Captures; |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1340 | llvm::Value *SEHCodeSlot = nullptr; |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1341 | CaptureFinder(CodeGenFunction &ParentCGF, const VarDecl *ParentThis) |
| 1342 | : ParentCGF(ParentCGF), ParentThis(ParentThis) {} |
| 1343 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1344 | // Return true if we need to do any capturing work. |
| 1345 | bool foundCaptures() { |
Reid Kleckner | eb11c41 | 2015-07-01 21:00:00 +0000 | [diff] [blame^] | 1346 | return !Captures.empty() || SEHCodeSlot; |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1347 | } |
| 1348 | |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1349 | void Visit(const Stmt *S) { |
| 1350 | // See if this is a capture, then recurse. |
| 1351 | ConstStmtVisitor<CaptureFinder>::Visit(S); |
| 1352 | for (const Stmt *Child : S->children()) |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1353 | if (Child) |
| 1354 | Visit(Child); |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1355 | } |
| 1356 | |
| 1357 | void VisitDeclRefExpr(const DeclRefExpr *E) { |
| 1358 | // If this is already a capture, just make sure we capture 'this'. |
| 1359 | if (E->refersToEnclosingVariableOrCapture()) { |
| 1360 | Captures.push_back(ParentThis); |
| 1361 | return; |
| 1362 | } |
| 1363 | |
| 1364 | const auto *D = dyn_cast<VarDecl>(E->getDecl()); |
| 1365 | if (D && D->isLocalVarDeclOrParm() && D->hasLocalStorage()) |
| 1366 | Captures.push_back(D); |
| 1367 | } |
| 1368 | |
| 1369 | void VisitCXXThisExpr(const CXXThisExpr *E) { |
| 1370 | Captures.push_back(ParentThis); |
| 1371 | } |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1372 | |
| 1373 | void VisitCallExpr(const CallExpr *E) { |
| 1374 | // We only need to add parent frame allocations for these builtins in x86. |
| 1375 | if (ParentCGF.getTarget().getTriple().getArch() != llvm::Triple::x86) |
| 1376 | return; |
| 1377 | |
| 1378 | unsigned ID = E->getBuiltinCallee(); |
| 1379 | switch (ID) { |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1380 | case Builtin::BI__exception_code: |
| 1381 | case Builtin::BI_exception_code: |
| 1382 | // This is the simple case where we are the outermost finally. All we |
| 1383 | // have to do here is make sure we escape this and recover it in the |
| 1384 | // outlined handler. |
| 1385 | if (!SEHCodeSlot) |
| 1386 | SEHCodeSlot = ParentCGF.SEHCodeSlotStack.back(); |
| 1387 | break; |
| 1388 | } |
| 1389 | } |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1390 | }; |
Alexander Kornienko | ab9db51 | 2015-06-22 23:07:51 +0000 | [diff] [blame] | 1391 | } |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1392 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1393 | llvm::Value *CodeGenFunction::recoverAddrOfEscapedLocal( |
| 1394 | CodeGenFunction &ParentCGF, llvm::Value *ParentVar, llvm::Value *ParentFP) { |
| 1395 | llvm::CallInst *RecoverCall = nullptr; |
| 1396 | CGBuilderTy Builder(AllocaInsertPt); |
| 1397 | if (auto *ParentAlloca = dyn_cast<llvm::AllocaInst>(ParentVar)) { |
| 1398 | // Mark the variable escaped if nobody else referenced it and compute the |
| 1399 | // frameescape index. |
| 1400 | auto InsertPair = ParentCGF.EscapedLocals.insert( |
| 1401 | std::make_pair(ParentAlloca, ParentCGF.EscapedLocals.size())); |
| 1402 | int FrameEscapeIdx = InsertPair.first->second; |
| 1403 | // call i8* @llvm.framerecover(i8* bitcast(@parentFn), i8* %fp, i32 N) |
| 1404 | llvm::Function *FrameRecoverFn = llvm::Intrinsic::getDeclaration( |
| 1405 | &CGM.getModule(), llvm::Intrinsic::framerecover); |
| 1406 | llvm::Constant *ParentI8Fn = |
| 1407 | llvm::ConstantExpr::getBitCast(ParentCGF.CurFn, Int8PtrTy); |
| 1408 | RecoverCall = Builder.CreateCall( |
| 1409 | FrameRecoverFn, {ParentI8Fn, ParentFP, |
| 1410 | llvm::ConstantInt::get(Int32Ty, FrameEscapeIdx)}); |
| 1411 | |
| 1412 | } else { |
| 1413 | // If the parent didn't have an alloca, we're doing some nested outlining. |
| 1414 | // Just clone the existing framerecover call, but tweak the FP argument to |
| 1415 | // use our FP value. All other arguments are constants. |
| 1416 | auto *ParentRecover = |
| 1417 | cast<llvm::IntrinsicInst>(ParentVar->stripPointerCasts()); |
| 1418 | assert(ParentRecover->getIntrinsicID() == llvm::Intrinsic::framerecover && |
| 1419 | "expected alloca or framerecover in parent LocalDeclMap"); |
| 1420 | RecoverCall = cast<llvm::CallInst>(ParentRecover->clone()); |
| 1421 | RecoverCall->setArgOperand(1, ParentFP); |
| 1422 | RecoverCall->insertBefore(AllocaInsertPt); |
| 1423 | } |
| 1424 | |
| 1425 | // Bitcast the variable, rename it, and insert it in the local decl map. |
| 1426 | llvm::Value *ChildVar = |
| 1427 | Builder.CreateBitCast(RecoverCall, ParentVar->getType()); |
| 1428 | ChildVar->setName(ParentVar->getName()); |
| 1429 | return ChildVar; |
| 1430 | } |
| 1431 | |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1432 | void CodeGenFunction::EmitCapturedLocals(CodeGenFunction &ParentCGF, |
Reid Kleckner | 0b9bbbf | 2015-06-09 17:49:42 +0000 | [diff] [blame] | 1433 | const Stmt *OutlinedStmt, |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1434 | bool IsFilter) { |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1435 | // Find all captures in the Stmt. |
| 1436 | CaptureFinder Finder(ParentCGF, ParentCGF.CXXABIThisDecl); |
| 1437 | Finder.Visit(OutlinedStmt); |
| 1438 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1439 | // We can exit early on x86_64 when there are no captures. We just have to |
| 1440 | // save the exception code in filters so that __exception_code() works. |
| 1441 | if (!Finder.foundCaptures() && |
| 1442 | CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) { |
| 1443 | if (IsFilter) |
| 1444 | EmitSEHExceptionCodeSave(ParentCGF, nullptr, nullptr); |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1445 | return; |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1446 | } |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1447 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1448 | llvm::Value *EntryEBP = nullptr; |
| 1449 | llvm::Value *ParentFP; |
| 1450 | if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) { |
| 1451 | // On x64, the parent FP is passed as the second argument. |
| 1452 | auto AI = CurFn->arg_begin(); |
| 1453 | ++AI; |
| 1454 | ParentFP = AI; |
| 1455 | } else { |
| 1456 | // The end of the EH registration is passed in as the EBP physical register. |
| 1457 | // We can recover that with llvm.frameaddress(1), and adjust that to |
| 1458 | // recover the parent's true frame pointer. |
| 1459 | CGBuilderTy Builder(AllocaInsertPt); |
| 1460 | EntryEBP = Builder.CreateCall( |
| 1461 | CGM.getIntrinsic(llvm::Intrinsic::frameaddress), {Builder.getInt32(1)}); |
| 1462 | llvm::Function *RecoverFPIntrin = |
| 1463 | CGM.getIntrinsic(llvm::Intrinsic::x86_seh_recoverfp); |
| 1464 | llvm::Constant *ParentI8Fn = |
| 1465 | llvm::ConstantExpr::getBitCast(ParentCGF.CurFn, Int8PtrTy); |
| 1466 | ParentFP = Builder.CreateCall(RecoverFPIntrin, {ParentI8Fn, EntryEBP}); |
| 1467 | |
| 1468 | // Inlining will break llvm.frameaddress(1), so disable it. |
| 1469 | // FIXME: We could teach the inliner about the special meaning of |
| 1470 | // frameaddress, framerecover, and frameescape to remove this limitation. |
| 1471 | CurFn->addFnAttr(llvm::Attribute::NoInline); |
| 1472 | } |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1473 | |
| 1474 | // Create llvm.framerecover calls for all captures. |
| 1475 | for (const VarDecl *VD : Finder.Captures) { |
| 1476 | if (isa<ImplicitParamDecl>(VD)) { |
| 1477 | CGM.ErrorUnsupported(VD, "'this' captured by SEH"); |
| 1478 | CXXThisValue = llvm::UndefValue::get(ConvertTypeForMem(VD->getType())); |
| 1479 | continue; |
| 1480 | } |
| 1481 | if (VD->getType()->isVariablyModifiedType()) { |
| 1482 | CGM.ErrorUnsupported(VD, "VLA captured by SEH"); |
| 1483 | continue; |
| 1484 | } |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1485 | assert((isa<ImplicitParamDecl>(VD) || VD->isLocalVarDeclOrParm()) && |
| 1486 | "captured non-local variable"); |
| 1487 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1488 | // If this decl hasn't been declared yet, it will be declared in the |
| 1489 | // OutlinedStmt. |
| 1490 | auto I = ParentCGF.LocalDeclMap.find(VD); |
| 1491 | if (I == ParentCGF.LocalDeclMap.end()) |
| 1492 | continue; |
| 1493 | llvm::Value *ParentVar = I->second; |
| 1494 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1495 | LocalDeclMap[VD] = |
| 1496 | recoverAddrOfEscapedLocal(ParentCGF, ParentVar, ParentFP); |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1497 | } |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1498 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1499 | if (Finder.SEHCodeSlot) { |
| 1500 | SEHCodeSlotStack.push_back( |
| 1501 | recoverAddrOfEscapedLocal(ParentCGF, Finder.SEHCodeSlot, ParentFP)); |
| 1502 | } |
| 1503 | |
| 1504 | if (IsFilter) |
| 1505 | EmitSEHExceptionCodeSave(ParentCGF, ParentFP, EntryEBP); |
Reid Kleckner | 31a1bb0 | 2015-04-08 22:23:48 +0000 | [diff] [blame] | 1506 | } |
| 1507 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1508 | /// Arrange a function prototype that can be called by Windows exception |
| 1509 | /// handling personalities. On Win64, the prototype looks like: |
| 1510 | /// RetTy func(void *EHPtrs, void *ParentFP); |
| 1511 | void CodeGenFunction::startOutlinedSEHHelper(CodeGenFunction &ParentCGF, |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1512 | bool IsFilter, |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1513 | const Stmt *OutlinedStmt) { |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1514 | SourceLocation StartLoc = OutlinedStmt->getLocStart(); |
| 1515 | |
| 1516 | // Get the mangled function name. |
| 1517 | SmallString<128> Name; |
| 1518 | { |
| 1519 | llvm::raw_svector_ostream OS(Name); |
| 1520 | const Decl *ParentCodeDecl = ParentCGF.CurCodeDecl; |
| 1521 | const NamedDecl *Parent = dyn_cast_or_null<NamedDecl>(ParentCodeDecl); |
| 1522 | assert(Parent && "FIXME: handle unnamed decls (lambdas, blocks) with SEH"); |
| 1523 | MangleContext &Mangler = CGM.getCXXABI().getMangleContext(); |
| 1524 | if (IsFilter) |
| 1525 | Mangler.mangleSEHFilterExpression(Parent, OS); |
| 1526 | else |
| 1527 | Mangler.mangleSEHFinallyBlock(Parent, OS); |
| 1528 | } |
| 1529 | |
| 1530 | FunctionArgList Args; |
Reid Kleckner | eb11c41 | 2015-07-01 21:00:00 +0000 | [diff] [blame^] | 1531 | if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86 || !IsFilter) { |
| 1532 | // All SEH finally functions take two parameters. Win64 filters take two |
| 1533 | // parameters. Win32 filters take no parameters. |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1534 | if (IsFilter) { |
| 1535 | Args.push_back(ImplicitParamDecl::Create( |
| 1536 | getContext(), nullptr, StartLoc, |
| 1537 | &getContext().Idents.get("exception_pointers"), |
| 1538 | getContext().VoidPtrTy)); |
| 1539 | } else { |
| 1540 | Args.push_back(ImplicitParamDecl::Create( |
| 1541 | getContext(), nullptr, StartLoc, |
| 1542 | &getContext().Idents.get("abnormal_termination"), |
| 1543 | getContext().UnsignedCharTy)); |
| 1544 | } |
| 1545 | Args.push_back(ImplicitParamDecl::Create( |
| 1546 | getContext(), nullptr, StartLoc, |
| 1547 | &getContext().Idents.get("frame_pointer"), getContext().VoidPtrTy)); |
| 1548 | } |
| 1549 | |
| 1550 | QualType RetTy = IsFilter ? getContext().LongTy : getContext().VoidTy; |
| 1551 | |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1552 | llvm::Function *ParentFn = ParentCGF.CurFn; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1553 | const CGFunctionInfo &FnInfo = CGM.getTypes().arrangeFreeFunctionDeclaration( |
| 1554 | RetTy, Args, FunctionType::ExtInfo(), /*isVariadic=*/false); |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1555 | |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1556 | llvm::FunctionType *FnTy = CGM.getTypes().GetFunctionType(FnInfo); |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1557 | llvm::Function *Fn = llvm::Function::Create( |
| 1558 | FnTy, llvm::GlobalValue::InternalLinkage, Name.str(), &CGM.getModule()); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1559 | // The filter is either in the same comdat as the function, or it's internal. |
| 1560 | if (llvm::Comdat *C = ParentFn->getComdat()) { |
| 1561 | Fn->setComdat(C); |
| 1562 | } else if (ParentFn->hasWeakLinkage() || ParentFn->hasLinkOnceLinkage()) { |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1563 | llvm::Comdat *C = CGM.getModule().getOrInsertComdat(ParentFn->getName()); |
| 1564 | ParentFn->setComdat(C); |
| 1565 | Fn->setComdat(C); |
| 1566 | } else { |
| 1567 | Fn->setLinkage(llvm::GlobalValue::InternalLinkage); |
| 1568 | } |
| 1569 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1570 | IsOutlinedSEHHelper = true; |
Nico Weber | f2a39a7 | 2015-04-13 20:03:03 +0000 | [diff] [blame] | 1571 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1572 | StartFunction(GlobalDecl(), RetTy, Fn, FnInfo, Args, |
| 1573 | OutlinedStmt->getLocStart(), OutlinedStmt->getLocStart()); |
| 1574 | |
| 1575 | CGM.SetLLVMFunctionAttributes(nullptr, FnInfo, CurFn); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1576 | EmitCapturedLocals(ParentCGF, OutlinedStmt, IsFilter); |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1577 | } |
| 1578 | |
| 1579 | /// Create a stub filter function that will ultimately hold the code of the |
| 1580 | /// filter expression. The EH preparation passes in LLVM will outline the code |
| 1581 | /// from the main function body into this stub. |
| 1582 | llvm::Function * |
| 1583 | CodeGenFunction::GenerateSEHFilterFunction(CodeGenFunction &ParentCGF, |
| 1584 | const SEHExceptStmt &Except) { |
| 1585 | const Expr *FilterExpr = Except.getFilterExpr(); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1586 | startOutlinedSEHHelper(ParentCGF, true, FilterExpr); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1587 | |
| 1588 | // Emit the original filter expression, convert to i32, and return. |
| 1589 | llvm::Value *R = EmitScalarExpr(FilterExpr); |
David Majnemer | 2ccba83 | 2015-04-17 06:57:25 +0000 | [diff] [blame] | 1590 | R = Builder.CreateIntCast(R, ConvertType(getContext().LongTy), |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1591 | FilterExpr->getType()->isSignedIntegerType()); |
| 1592 | Builder.CreateStore(R, ReturnValue); |
| 1593 | |
| 1594 | FinishFunction(FilterExpr->getLocEnd()); |
| 1595 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1596 | return CurFn; |
| 1597 | } |
| 1598 | |
| 1599 | llvm::Function * |
| 1600 | CodeGenFunction::GenerateSEHFinallyFunction(CodeGenFunction &ParentCGF, |
| 1601 | const SEHFinallyStmt &Finally) { |
| 1602 | const Stmt *FinallyBlock = Finally.getBlock(); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1603 | startOutlinedSEHHelper(ParentCGF, false, FinallyBlock); |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1604 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1605 | // Mark finally block calls as nounwind and noinline to make LLVM's job a |
| 1606 | // little easier. |
| 1607 | // FIXME: Remove these restrictions in the future. |
| 1608 | CurFn->addFnAttr(llvm::Attribute::NoUnwind); |
| 1609 | CurFn->addFnAttr(llvm::Attribute::NoInline); |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1610 | |
| 1611 | // Emit the original filter expression, convert to i32, and return. |
| 1612 | EmitStmt(FinallyBlock); |
| 1613 | |
| 1614 | FinishFunction(FinallyBlock->getLocEnd()); |
| 1615 | |
| 1616 | return CurFn; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1617 | } |
| 1618 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1619 | void CodeGenFunction::EmitSEHExceptionCodeSave(CodeGenFunction &ParentCGF, |
| 1620 | llvm::Value *ParentFP, |
| 1621 | llvm::Value *EntryEBP) { |
| 1622 | // Get the pointer to the EXCEPTION_POINTERS struct. This is returned by the |
| 1623 | // __exception_info intrinsic. |
| 1624 | if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) { |
| 1625 | // On Win64, the info is passed as the first parameter to the filter. |
| 1626 | auto AI = CurFn->arg_begin(); |
| 1627 | SEHInfo = AI; |
| 1628 | SEHCodeSlotStack.push_back( |
| 1629 | CreateMemTemp(getContext().IntTy, "__exception_code")); |
| 1630 | } else { |
| 1631 | // On Win32, the EBP on entry to the filter points to the end of an |
| 1632 | // exception registration object. It contains 6 32-bit fields, and the info |
| 1633 | // pointer is stored in the second field. So, GEP 20 bytes backwards and |
| 1634 | // load the pointer. |
| 1635 | SEHInfo = Builder.CreateConstInBoundsGEP1_32(Int8Ty, EntryEBP, -20); |
| 1636 | SEHInfo = Builder.CreateBitCast(SEHInfo, Int8PtrTy->getPointerTo()); |
| 1637 | SEHInfo = Builder.CreateLoad(Int8PtrTy, SEHInfo); |
| 1638 | SEHCodeSlotStack.push_back(recoverAddrOfEscapedLocal( |
| 1639 | ParentCGF, ParentCGF.SEHCodeSlotStack.back(), ParentFP)); |
| 1640 | } |
| 1641 | |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1642 | // Save the exception code in the exception slot to unify exception access in |
| 1643 | // the filter function and the landing pad. |
| 1644 | // struct EXCEPTION_POINTERS { |
| 1645 | // EXCEPTION_RECORD *ExceptionRecord; |
| 1646 | // CONTEXT *ContextRecord; |
| 1647 | // }; |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1648 | // int exceptioncode = exception_pointers->ExceptionRecord->ExceptionCode; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1649 | llvm::Type *RecordTy = CGM.Int32Ty->getPointerTo(); |
| 1650 | llvm::Type *PtrsTy = llvm::StructType::get(RecordTy, CGM.VoidPtrTy, nullptr); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1651 | llvm::Value *Ptrs = Builder.CreateBitCast(SEHInfo, PtrsTy->getPointerTo()); |
David Blaikie | 1ed728c | 2015-04-05 22:45:47 +0000 | [diff] [blame] | 1652 | llvm::Value *Rec = Builder.CreateStructGEP(PtrsTy, Ptrs, 0); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1653 | Rec = Builder.CreateLoad(Rec); |
| 1654 | llvm::Value *Code = Builder.CreateLoad(Rec); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1655 | assert(!SEHCodeSlotStack.empty() && "emitting EH code outside of __except"); |
| 1656 | Builder.CreateStore(Code, SEHCodeSlotStack.back()); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1657 | } |
| 1658 | |
| 1659 | llvm::Value *CodeGenFunction::EmitSEHExceptionInfo() { |
| 1660 | // Sema should diagnose calling this builtin outside of a filter context, but |
| 1661 | // don't crash if we screw up. |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1662 | if (!SEHInfo) |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1663 | return llvm::UndefValue::get(Int8PtrTy); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1664 | assert(SEHInfo->getType() == Int8PtrTy); |
| 1665 | return SEHInfo; |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1666 | } |
| 1667 | |
| 1668 | llvm::Value *CodeGenFunction::EmitSEHExceptionCode() { |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1669 | assert(!SEHCodeSlotStack.empty() && "emitting EH code outside of __except"); |
| 1670 | return Builder.CreateLoad(Int32Ty, SEHCodeSlotStack.back()); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1671 | } |
| 1672 | |
Reid Kleckner | aca01db | 2015-02-04 22:37:07 +0000 | [diff] [blame] | 1673 | llvm::Value *CodeGenFunction::EmitSEHAbnormalTermination() { |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1674 | // Abnormal termination is just the first parameter to the outlined finally |
| 1675 | // helper. |
| 1676 | auto AI = CurFn->arg_begin(); |
| 1677 | return Builder.CreateZExt(&*AI, Int32Ty); |
Reid Kleckner | aca01db | 2015-02-04 22:37:07 +0000 | [diff] [blame] | 1678 | } |
| 1679 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1680 | void CodeGenFunction::EnterSEHTryStmt(const SEHTryStmt &S) { |
| 1681 | CodeGenFunction HelperCGF(CGM, /*suppressNewContext=*/true); |
| 1682 | if (const SEHFinallyStmt *Finally = S.getFinallyHandler()) { |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1683 | // Outline the finally block. |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1684 | llvm::Function *FinallyFunc = |
| 1685 | HelperCGF.GenerateSEHFinallyFunction(*this, *Finally); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1686 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1687 | // Push a cleanup for __finally blocks. |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1688 | EHStack.pushCleanup<PerformSEHFinally>(NormalAndEHCleanup, FinallyFunc); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1689 | return; |
| 1690 | } |
| 1691 | |
| 1692 | // Otherwise, we must have an __except block. |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1693 | const SEHExceptStmt *Except = S.getExceptHandler(); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1694 | assert(Except); |
| 1695 | EHCatchScope *CatchScope = EHStack.pushCatch(1); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1696 | SEHCodeSlotStack.push_back( |
| 1697 | CreateMemTemp(getContext().IntTy, "__exception_code")); |
Reid Kleckner | 2a2e156 | 2015-01-22 02:25:56 +0000 | [diff] [blame] | 1698 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1699 | // If the filter is known to evaluate to 1, then we can use the clause |
| 1700 | // "catch i8* null". We can't do this on x86 because the filter has to save |
| 1701 | // the exception code. |
Reid Kleckner | 2a2e156 | 2015-01-22 02:25:56 +0000 | [diff] [blame] | 1702 | llvm::Constant *C = |
| 1703 | CGM.EmitConstantExpr(Except->getFilterExpr(), getContext().IntTy, this); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1704 | if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86 && C && |
| 1705 | C->isOneValue()) { |
Reid Kleckner | 2a2e156 | 2015-01-22 02:25:56 +0000 | [diff] [blame] | 1706 | CatchScope->setCatchAllHandler(0, createBasicBlock("__except")); |
| 1707 | return; |
| 1708 | } |
| 1709 | |
| 1710 | // In general, we have to emit an outlined filter function. Use the function |
| 1711 | // in place of the RTTI typeinfo global that C++ EH uses. |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1712 | llvm::Function *FilterFunc = |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1713 | HelperCGF.GenerateSEHFilterFunction(*this, *Except); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1714 | llvm::Constant *OpaqueFunc = |
| 1715 | llvm::ConstantExpr::getBitCast(FilterFunc, Int8PtrTy); |
| 1716 | CatchScope->setHandler(0, OpaqueFunc, createBasicBlock("__except")); |
| 1717 | } |
| 1718 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1719 | void CodeGenFunction::ExitSEHTryStmt(const SEHTryStmt &S) { |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1720 | // Just pop the cleanup if it's a __finally block. |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1721 | if (S.getFinallyHandler()) { |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1722 | PopCleanupBlock(); |
| 1723 | return; |
| 1724 | } |
| 1725 | |
| 1726 | // Otherwise, we must have an __except block. |
Reid Kleckner | aca01db | 2015-02-04 22:37:07 +0000 | [diff] [blame] | 1727 | const SEHExceptStmt *Except = S.getExceptHandler(); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1728 | assert(Except && "__try must have __finally xor __except"); |
| 1729 | EHCatchScope &CatchScope = cast<EHCatchScope>(*EHStack.begin()); |
| 1730 | |
| 1731 | // Don't emit the __except block if the __try block lacked invokes. |
| 1732 | // TODO: Model unwind edges from instructions, either with iload / istore or |
| 1733 | // a try body function. |
| 1734 | if (!CatchScope.hasEHBranches()) { |
| 1735 | CatchScope.clearHandlerBlocks(); |
| 1736 | EHStack.popCatch(); |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1737 | SEHCodeSlotStack.pop_back(); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1738 | return; |
| 1739 | } |
| 1740 | |
| 1741 | // The fall-through block. |
| 1742 | llvm::BasicBlock *ContBB = createBasicBlock("__try.cont"); |
| 1743 | |
| 1744 | // We just emitted the body of the __try; jump to the continue block. |
| 1745 | if (HaveInsertPoint()) |
| 1746 | Builder.CreateBr(ContBB); |
| 1747 | |
| 1748 | // Check if our filter function returned true. |
| 1749 | emitCatchDispatchBlock(*this, CatchScope); |
| 1750 | |
| 1751 | // Grab the block before we pop the handler. |
| 1752 | llvm::BasicBlock *ExceptBB = CatchScope.getHandler(0).Block; |
| 1753 | EHStack.popCatch(); |
| 1754 | |
| 1755 | EmitBlockAfterUses(ExceptBB); |
| 1756 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1757 | // On Win64, the exception pointer is the exception code. Copy it to the slot. |
| 1758 | if (CGM.getTarget().getTriple().getArch() != llvm::Triple::x86) { |
| 1759 | llvm::Value *Code = |
| 1760 | Builder.CreatePtrToInt(getExceptionFromSlot(), IntPtrTy); |
| 1761 | Code = Builder.CreateTrunc(Code, Int32Ty); |
| 1762 | Builder.CreateStore(Code, SEHCodeSlotStack.back()); |
| 1763 | } |
| 1764 | |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1765 | // Emit the __except body. |
| 1766 | EmitStmt(Except->getBlock()); |
| 1767 | |
Reid Kleckner | d0d9a1f | 2015-07-01 17:10:10 +0000 | [diff] [blame] | 1768 | // End the lifetime of the exception code. |
| 1769 | SEHCodeSlotStack.pop_back(); |
| 1770 | |
Reid Kleckner | 3a417c3 | 2015-01-30 22:16:45 +0000 | [diff] [blame] | 1771 | if (HaveInsertPoint()) |
| 1772 | Builder.CreateBr(ContBB); |
Reid Kleckner | 1d59f99 | 2015-01-22 01:36:17 +0000 | [diff] [blame] | 1773 | |
| 1774 | EmitBlock(ContBB); |
Reid Kleckner | 543a16c | 2013-09-16 21:46:30 +0000 | [diff] [blame] | 1775 | } |
Nico Weber | 9b98207 | 2014-07-07 00:12:30 +0000 | [diff] [blame] | 1776 | |
| 1777 | void CodeGenFunction::EmitSEHLeaveStmt(const SEHLeaveStmt &S) { |
Nico Weber | 5779f84 | 2015-02-12 23:16:11 +0000 | [diff] [blame] | 1778 | // If this code is reachable then emit a stop point (if generating |
| 1779 | // debug info). We have to do this ourselves because we are on the |
| 1780 | // "simple" statement path. |
| 1781 | if (HaveInsertPoint()) |
| 1782 | EmitStopPoint(&S); |
| 1783 | |
Reid Kleckner | ebaf28d | 2015-04-14 20:59:00 +0000 | [diff] [blame] | 1784 | // This must be a __leave from a __finally block, which we warn on and is UB. |
| 1785 | // Just emit unreachable. |
| 1786 | if (!isSEHTryScope()) { |
| 1787 | Builder.CreateUnreachable(); |
| 1788 | Builder.ClearInsertionPoint(); |
| 1789 | return; |
| 1790 | } |
| 1791 | |
Nico Weber | 5779f84 | 2015-02-12 23:16:11 +0000 | [diff] [blame] | 1792 | EmitBranchThroughCleanup(*SEHTryEpilogueStack.back()); |
Nico Weber | 9b98207 | 2014-07-07 00:12:30 +0000 | [diff] [blame] | 1793 | } |