Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- exception ---------------------------------===// |
| 3 | // |
Howard Hinnant | c566dc3 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | ee11c31 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_EXCEPTION |
| 12 | #define _LIBCPP_EXCEPTION |
| 13 | |
| 14 | /* |
| 15 | exception synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | class exception |
| 21 | { |
| 22 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 23 | exception() noexcept; |
| 24 | exception(const exception&) noexcept; |
| 25 | exception& operator=(const exception&) noexcept; |
| 26 | virtual ~exception() noexcept; |
| 27 | virtual const char* what() const noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | class bad_exception |
| 31 | : public exception |
| 32 | { |
| 33 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 34 | bad_exception() noexcept; |
| 35 | bad_exception(const bad_exception&) noexcept; |
| 36 | bad_exception& operator=(const bad_exception&) noexcept; |
| 37 | virtual ~bad_exception() noexcept; |
| 38 | virtual const char* what() const noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | typedef void (*unexpected_handler)(); |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 42 | unexpected_handler set_unexpected(unexpected_handler f ) noexcept; |
| 43 | unexpected_handler get_unexpected() noexcept; |
| 44 | [[noreturn]] void unexpected(); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 45 | |
| 46 | typedef void (*terminate_handler)(); |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 47 | terminate_handler set_terminate(terminate_handler f ) noexcept; |
| 48 | terminate_handler get_terminate() noexcept; |
| 49 | [[noreturn]] void terminate() noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | |
Marshall Clow | 209dacc | 2015-06-02 15:33:38 +0000 | [diff] [blame] | 51 | bool uncaught_exception() noexcept; |
| 52 | int uncaught_exceptions() noexcept; // C++17 |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 53 | |
| 54 | typedef unspecified exception_ptr; |
| 55 | |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 56 | exception_ptr current_exception() noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 57 | void rethrow_exception [[noreturn]] (exception_ptr p); |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 58 | template<class E> exception_ptr make_exception_ptr(E e) noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 59 | |
| 60 | class nested_exception |
| 61 | { |
| 62 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 63 | nested_exception() noexcept; |
| 64 | nested_exception(const nested_exception&) noexcept = default; |
| 65 | nested_exception& operator=(const nested_exception&) noexcept = default; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 66 | virtual ~nested_exception() = default; |
| 67 | |
| 68 | // access functions |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 69 | [[noreturn]] void rethrow_nested() const; |
| 70 | exception_ptr nested_ptr() const noexcept; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 71 | }; |
| 72 | |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 73 | template <class T> [[noreturn]] void throw_with_nested(T&& t); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 74 | template <class E> void rethrow_if_nested(const E& e); |
| 75 | |
| 76 | } // std |
| 77 | |
| 78 | */ |
| 79 | |
| 80 | #include <__config> |
| 81 | #include <cstddef> |
Eric Fiselier | aae1ccf | 2016-12-03 03:22:11 +0000 | [diff] [blame] | 82 | #include <cstdlib> |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 83 | #include <type_traits> |
Marshall Clow | 0a1e750 | 2018-09-12 19:41:40 +0000 | [diff] [blame] | 84 | #include <version> |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 85 | |
Shoaib Meenai | cfd1960 | 2017-10-09 19:25:17 +0000 | [diff] [blame] | 86 | #if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME) |
Eric Fiselier | ec3a167 | 2017-02-10 08:57:35 +0000 | [diff] [blame] | 87 | #include <vcruntime_exception.h> |
| 88 | #endif |
| 89 | |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 90 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 91 | #pragma GCC system_header |
Howard Hinnant | aaaa52b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 92 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 93 | |
| 94 | namespace std // purposefully not using versioning namespace |
| 95 | { |
| 96 | |
Shoaib Meenai | cfd1960 | 2017-10-09 19:25:17 +0000 | [diff] [blame] | 97 | #if !defined(_LIBCPP_ABI_MICROSOFT) || defined(_LIBCPP_NO_VCRUNTIME) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 98 | class _LIBCPP_EXCEPTION_ABI exception |
| 99 | { |
| 100 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 101 | _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {} |
| 102 | virtual ~exception() _NOEXCEPT; |
| 103 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 104 | }; |
| 105 | |
| 106 | class _LIBCPP_EXCEPTION_ABI bad_exception |
| 107 | : public exception |
| 108 | { |
| 109 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 110 | _LIBCPP_INLINE_VISIBILITY bad_exception() _NOEXCEPT {} |
| 111 | virtual ~bad_exception() _NOEXCEPT; |
| 112 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 113 | }; |
Shoaib Meenai | cfd1960 | 2017-10-09 19:25:17 +0000 | [diff] [blame] | 114 | #endif // !_LIBCPP_ABI_MICROSOFT || _LIBCPP_NO_VCRUNTIME |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 115 | |
Eric Fiselier | ddd7779 | 2017-02-17 03:25:08 +0000 | [diff] [blame] | 116 | #if _LIBCPP_STD_VER <= 14 \ |
| 117 | || defined(_LIBCPP_ENABLE_CXX17_REMOVED_UNEXPECTED_FUNCTIONS) \ |
| 118 | || defined(_LIBCPP_BUILDING_LIBRARY) |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 119 | typedef void (*unexpected_handler)(); |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 120 | _LIBCPP_FUNC_VIS unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT; |
| 121 | _LIBCPP_FUNC_VIS unexpected_handler get_unexpected() _NOEXCEPT; |
| 122 | _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void unexpected(); |
Eric Fiselier | ddd7779 | 2017-02-17 03:25:08 +0000 | [diff] [blame] | 123 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 124 | |
| 125 | typedef void (*terminate_handler)(); |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 126 | _LIBCPP_FUNC_VIS terminate_handler set_terminate(terminate_handler) _NOEXCEPT; |
| 127 | _LIBCPP_FUNC_VIS terminate_handler get_terminate() _NOEXCEPT; |
| 128 | _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void terminate() _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 129 | |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 130 | _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT; |
Mehdi Amini | 228053d | 2017-05-04 17:08:54 +0000 | [diff] [blame] | 131 | _LIBCPP_FUNC_VIS _LIBCPP_AVAILABILITY_UNCAUGHT_EXCEPTIONS int uncaught_exceptions() _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 132 | |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 133 | class _LIBCPP_TYPE_VIS exception_ptr; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 134 | |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 135 | _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT; |
| 136 | _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 137 | |
Eric Fiselier | 94ef6cc | 2017-05-08 01:17:50 +0000 | [diff] [blame] | 138 | #ifndef _LIBCPP_ABI_MICROSOFT |
| 139 | |
Howard Hinnant | 8331b76 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 140 | class _LIBCPP_TYPE_VIS exception_ptr |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 141 | { |
| 142 | void* __ptr_; |
| 143 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 144 | _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {} |
| 145 | _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {} |
Eric Fiselier | 94ef6cc | 2017-05-08 01:17:50 +0000 | [diff] [blame] | 146 | |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 147 | exception_ptr(const exception_ptr&) _NOEXCEPT; |
| 148 | exception_ptr& operator=(const exception_ptr&) _NOEXCEPT; |
| 149 | ~exception_ptr() _NOEXCEPT; |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 150 | |
Eric Fiselier | 94ef6cc | 2017-05-08 01:17:50 +0000 | [diff] [blame] | 151 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT |
| 152 | {return __ptr_ != nullptr;} |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 153 | |
Howard Hinnant | 874ad9a | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 154 | friend _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 155 | bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 156 | {return __x.__ptr_ == __y.__ptr_;} |
Eric Fiselier | 94ef6cc | 2017-05-08 01:17:50 +0000 | [diff] [blame] | 157 | |
Howard Hinnant | 874ad9a | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 158 | friend _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 159 | bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 160 | {return !(__x == __y);} |
| 161 | |
Howard Hinnant | a37d3cf | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 162 | friend _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT; |
| 163 | friend _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr); |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 164 | }; |
| 165 | |
Howard Hinnant | c834c51 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 166 | template<class _Ep> |
Louis Dionne | cdc4111 | 2018-11-21 17:00:52 +0000 | [diff] [blame] | 167 | _LIBCPP_INLINE_VISIBILITY exception_ptr |
Howard Hinnant | c834c51 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 168 | make_exception_ptr(_Ep __e) _NOEXCEPT |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 169 | { |
Howard Hinnant | 72f7358 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 170 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 171 | try |
| 172 | { |
| 173 | throw __e; |
| 174 | } |
| 175 | catch (...) |
| 176 | { |
| 177 | return current_exception(); |
| 178 | } |
Eric Fiselier | aae1ccf | 2016-12-03 03:22:11 +0000 | [diff] [blame] | 179 | #else |
Eric Fiselier | 6003c77 | 2016-12-23 23:37:52 +0000 | [diff] [blame] | 180 | ((void)__e); |
Eric Fiselier | aae1ccf | 2016-12-03 03:22:11 +0000 | [diff] [blame] | 181 | _VSTD::abort(); |
| 182 | #endif |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Eric Fiselier | 94ef6cc | 2017-05-08 01:17:50 +0000 | [diff] [blame] | 185 | #else // _LIBCPP_ABI_MICROSOFT |
| 186 | |
| 187 | class _LIBCPP_TYPE_VIS exception_ptr |
| 188 | { |
| 189 | #if defined(__clang__) |
| 190 | #pragma clang diagnostic push |
| 191 | #pragma clang diagnostic ignored "-Wunused-private-field" |
| 192 | #endif |
| 193 | void* __ptr1_; |
| 194 | void* __ptr2_; |
| 195 | #if defined(__clang__) |
| 196 | #pragma clang diagnostic pop |
| 197 | #endif |
| 198 | public: |
| 199 | exception_ptr() _NOEXCEPT; |
| 200 | exception_ptr(nullptr_t) _NOEXCEPT; |
| 201 | exception_ptr(const exception_ptr& __other) _NOEXCEPT; |
| 202 | exception_ptr& operator=(const exception_ptr& __other) _NOEXCEPT; |
| 203 | exception_ptr& operator=(nullptr_t) _NOEXCEPT; |
| 204 | ~exception_ptr() _NOEXCEPT; |
| 205 | _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT; |
| 206 | }; |
| 207 | |
| 208 | _LIBCPP_FUNC_VIS |
| 209 | bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT; |
| 210 | |
| 211 | inline _LIBCPP_INLINE_VISIBILITY |
| 212 | bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT |
| 213 | {return !(__x == __y);} |
| 214 | |
| 215 | _LIBCPP_FUNC_VIS void swap(exception_ptr&, exception_ptr&) _NOEXCEPT; |
| 216 | |
| 217 | _LIBCPP_FUNC_VIS exception_ptr __copy_exception_ptr(void *__except, const void* __ptr); |
| 218 | _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT; |
| 219 | _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr p); |
| 220 | |
| 221 | // This is a built-in template function which automagically extracts the required |
| 222 | // information. |
| 223 | template <class _E> void *__GetExceptionInfo(_E); |
| 224 | |
| 225 | template<class _Ep> |
Louis Dionne | cdc4111 | 2018-11-21 17:00:52 +0000 | [diff] [blame] | 226 | _LIBCPP_INLINE_VISIBILITY exception_ptr |
Eric Fiselier | 94ef6cc | 2017-05-08 01:17:50 +0000 | [diff] [blame] | 227 | make_exception_ptr(_Ep __e) _NOEXCEPT |
| 228 | { |
| 229 | return __copy_exception_ptr(_VSTD::addressof(__e), __GetExceptionInfo(__e)); |
| 230 | } |
| 231 | |
| 232 | #endif // _LIBCPP_ABI_MICROSOFT |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 233 | // nested_exception |
| 234 | |
| 235 | class _LIBCPP_EXCEPTION_ABI nested_exception |
| 236 | { |
| 237 | exception_ptr __ptr_; |
| 238 | public: |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 239 | nested_exception() _NOEXCEPT; |
| 240 | // nested_exception(const nested_exception&) noexcept = default; |
| 241 | // nested_exception& operator=(const nested_exception&) noexcept = default; |
| 242 | virtual ~nested_exception() _NOEXCEPT; |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 243 | |
| 244 | // access functions |
Richard Smith | cabd392 | 2012-07-26 02:04:22 +0000 | [diff] [blame] | 245 | _LIBCPP_NORETURN void rethrow_nested() const; |
Howard Hinnant | 1bc52cf | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 246 | _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;} |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 247 | }; |
| 248 | |
| 249 | template <class _Tp> |
| 250 | struct __nested |
| 251 | : public _Tp, |
| 252 | public nested_exception |
| 253 | { |
Howard Hinnant | 874ad9a | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 254 | _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {} |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 255 | }; |
| 256 | |
Howard Hinnant | 72f7358 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 257 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 258 | template <class _Tp, class _Up, bool> |
| 259 | struct __throw_with_nested; |
| 260 | |
| 261 | template <class _Tp, class _Up> |
| 262 | struct __throw_with_nested<_Tp, _Up, true> { |
Louis Dionne | 16fe295 | 2018-07-11 23:14:33 +0000 | [diff] [blame] | 263 | _LIBCPP_NORETURN static inline _LIBCPP_INLINE_VISIBILITY void |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 264 | #ifndef _LIBCPP_CXX03_LANG |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 265 | __do_throw(_Tp&& __t) |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 266 | #else |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 267 | __do_throw (_Tp& __t) |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 268 | #endif // _LIBCPP_CXX03_LANG |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 269 | { |
| 270 | throw __nested<_Up>(_VSTD::forward<_Tp>(__t)); |
| 271 | } |
| 272 | }; |
| 273 | |
| 274 | template <class _Tp, class _Up> |
| 275 | struct __throw_with_nested<_Tp, _Up, false> { |
Louis Dionne | 16fe295 | 2018-07-11 23:14:33 +0000 | [diff] [blame] | 276 | _LIBCPP_NORETURN static inline _LIBCPP_INLINE_VISIBILITY void |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 277 | #ifndef _LIBCPP_CXX03_LANG |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 278 | __do_throw(_Tp&& __t) |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 279 | #else |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 280 | __do_throw (_Tp& __t) |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 281 | #endif // _LIBCPP_CXX03_LANG |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 282 | { |
| 283 | throw _VSTD::forward<_Tp>(__t); |
| 284 | } |
| 285 | }; |
Howard Hinnant | 72f7358 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 286 | #endif |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 287 | |
| 288 | template <class _Tp> |
Richard Smith | cabd392 | 2012-07-26 02:04:22 +0000 | [diff] [blame] | 289 | _LIBCPP_NORETURN |
Howard Hinnant | 3b6579a | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 290 | void |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 291 | #ifndef _LIBCPP_CXX03_LANG |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 292 | throw_with_nested(_Tp&& __t) |
| 293 | #else |
| 294 | throw_with_nested (_Tp& __t) |
Eric Fiselier | 58e1c91 | 2017-04-19 01:35:58 +0000 | [diff] [blame] | 295 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 296 | { |
Howard Hinnant | 72f7358 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 297 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Marshall Clow | 94a3850 | 2017-04-13 16:57:42 +0000 | [diff] [blame] | 298 | typedef typename decay<_Tp>::type _Up; |
| 299 | static_assert( is_copy_constructible<_Up>::value, "type thrown must be CopyConstructible"); |
Marshall Clow | b1cf5a9 | 2017-04-13 14:41:45 +0000 | [diff] [blame] | 300 | __throw_with_nested<_Tp, _Up, |
| 301 | is_class<_Up>::value && |
| 302 | !is_base_of<nested_exception, _Up>::value && |
| 303 | !__libcpp_is_final<_Up>::value>:: |
| 304 | __do_throw(_VSTD::forward<_Tp>(__t)); |
Eric Fiselier | 6003c77 | 2016-12-23 23:37:52 +0000 | [diff] [blame] | 305 | #else |
| 306 | ((void)__t); |
| 307 | // FIXME: Make this abort |
Howard Hinnant | 72f7358 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 308 | #endif |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 309 | } |
| 310 | |
Marshall Clow | b75c89c | 2017-03-14 17:08:47 +0000 | [diff] [blame] | 311 | template <class _From, class _To> |
| 312 | struct __can_dynamic_cast : public _LIBCPP_BOOL_CONSTANT( |
| 313 | is_polymorphic<_From>::value && |
| 314 | (!is_base_of<_To, _From>::value || |
| 315 | is_convertible<const _From*, const _To*>::value)) {}; |
| 316 | |
Howard Hinnant | c834c51 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 317 | template <class _Ep> |
Howard Hinnant | 874ad9a | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 318 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 319 | void |
Marshall Clow | b75c89c | 2017-03-14 17:08:47 +0000 | [diff] [blame] | 320 | rethrow_if_nested(const _Ep& __e, |
| 321 | typename enable_if< __can_dynamic_cast<_Ep, nested_exception>::value>::type* = 0) |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 322 | { |
Marshall Clow | e993abe | 2015-12-14 18:01:56 +0000 | [diff] [blame] | 323 | const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e)); |
Howard Hinnant | 3615a19 | 2010-05-28 13:35:41 +0000 | [diff] [blame] | 324 | if (__nep) |
| 325 | __nep->rethrow_nested(); |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 326 | } |
| 327 | |
Howard Hinnant | c834c51 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 328 | template <class _Ep> |
Howard Hinnant | 874ad9a | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 329 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 330 | void |
Marshall Clow | b75c89c | 2017-03-14 17:08:47 +0000 | [diff] [blame] | 331 | rethrow_if_nested(const _Ep&, |
| 332 | typename enable_if<!__can_dynamic_cast<_Ep, nested_exception>::value>::type* = 0) |
Howard Hinnant | e4f9272 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 333 | { |
| 334 | } |
| 335 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 336 | } // std |
| 337 | |
Howard Hinnant | c51e102 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 338 | #endif // _LIBCPP_EXCEPTION |