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