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