Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- exception ---------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 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 | bc8d3f9 | 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 | ed56921 | 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 | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 28 | }; |
| 29 | |
| 30 | class bad_exception |
| 31 | : public exception |
| 32 | { |
| 33 | public: |
Howard Hinnant | ed56921 | 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 | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | typedef void (*unexpected_handler)(); |
Howard Hinnant | ed56921 | 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 | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 45 | |
| 46 | typedef void (*terminate_handler)(); |
Howard Hinnant | ed56921 | 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 | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 51 | bool uncaught_exception() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 52 | |
| 53 | typedef unspecified exception_ptr; |
| 54 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 55 | exception_ptr current_exception() noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 56 | void rethrow_exception [[noreturn]] (exception_ptr p); |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 57 | template<class E> exception_ptr make_exception_ptr(E e) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 58 | |
| 59 | class nested_exception |
| 60 | { |
| 61 | public: |
Howard Hinnant | ed56921 | 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 | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 65 | virtual ~nested_exception() = default; |
| 66 | |
| 67 | // access functions |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 68 | [[noreturn]] void rethrow_nested() const; |
| 69 | exception_ptr nested_ptr() const noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 70 | }; |
| 71 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 72 | template <class T> [[noreturn]] void throw_with_nested(T&& t); |
Howard Hinnant | bc8d3f9 | 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 | |
| 79 | #include <__config> |
| 80 | #include <cstddef> |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 81 | #include <type_traits> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 82 | |
| 83 | #pragma GCC system_header |
| 84 | |
| 85 | namespace std // purposefully not using versioning namespace |
| 86 | { |
| 87 | |
| 88 | class _LIBCPP_EXCEPTION_ABI exception |
| 89 | { |
| 90 | public: |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 91 | _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {} |
| 92 | virtual ~exception() _NOEXCEPT; |
| 93 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | class _LIBCPP_EXCEPTION_ABI bad_exception |
| 97 | : public exception |
| 98 | { |
| 99 | public: |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 100 | _LIBCPP_INLINE_VISIBILITY bad_exception() _NOEXCEPT {} |
| 101 | virtual ~bad_exception() _NOEXCEPT; |
| 102 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 103 | }; |
| 104 | |
| 105 | typedef void (*unexpected_handler)(); |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 106 | _LIBCPP_VISIBLE unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT; |
| 107 | _LIBCPP_VISIBLE unexpected_handler get_unexpected() _NOEXCEPT; |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 108 | _ATTRIBUTE(noreturn) _LIBCPP_VISIBLE void unexpected(); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 109 | |
| 110 | typedef void (*terminate_handler)(); |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 111 | _LIBCPP_VISIBLE terminate_handler set_terminate(terminate_handler) _NOEXCEPT; |
| 112 | _LIBCPP_VISIBLE terminate_handler get_terminate() _NOEXCEPT; |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 113 | _ATTRIBUTE(noreturn) _LIBCPP_VISIBLE void terminate() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 114 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 115 | _LIBCPP_VISIBLE bool uncaught_exception() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 116 | |
| 117 | class exception_ptr; |
| 118 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 119 | exception_ptr current_exception() _NOEXCEPT; |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 120 | _ATTRIBUTE(noreturn) void rethrow_exception(exception_ptr); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 121 | |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 122 | class _LIBCPP_VISIBLE exception_ptr |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 123 | { |
| 124 | void* __ptr_; |
| 125 | public: |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 126 | _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {} |
| 127 | _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {} |
| 128 | exception_ptr(const exception_ptr&) _NOEXCEPT; |
| 129 | exception_ptr& operator=(const exception_ptr&) _NOEXCEPT; |
| 130 | ~exception_ptr() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 131 | |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 132 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 133 | // explicit |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 134 | operator bool() const _NOEXCEPT {return __ptr_ != nullptr;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 135 | |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 136 | friend _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 137 | bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 138 | {return __x.__ptr_ == __y.__ptr_;} |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 139 | friend _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 140 | bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 141 | {return !(__x == __y);} |
| 142 | |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 143 | friend exception_ptr current_exception() _NOEXCEPT; |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 144 | _ATTRIBUTE(noreturn) friend void rethrow_exception(exception_ptr); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 145 | }; |
| 146 | |
| 147 | template<class _E> |
| 148 | exception_ptr |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 149 | make_exception_ptr(_E __e) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 150 | { |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 151 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 152 | try |
| 153 | { |
| 154 | throw __e; |
| 155 | } |
| 156 | catch (...) |
| 157 | { |
| 158 | return current_exception(); |
| 159 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 160 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 161 | } |
| 162 | |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 163 | // nested_exception |
| 164 | |
| 165 | class _LIBCPP_EXCEPTION_ABI nested_exception |
| 166 | { |
| 167 | exception_ptr __ptr_; |
| 168 | public: |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 169 | nested_exception() _NOEXCEPT; |
| 170 | // nested_exception(const nested_exception&) noexcept = default; |
| 171 | // nested_exception& operator=(const nested_exception&) noexcept = default; |
| 172 | virtual ~nested_exception() _NOEXCEPT; |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 173 | |
| 174 | // access functions |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 175 | _ATTRIBUTE(noreturn) void rethrow_nested() const; |
Howard Hinnant | ed56921 | 2011-05-26 18:23:59 +0000 | [diff] [blame] | 176 | _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;} |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 177 | }; |
| 178 | |
| 179 | template <class _Tp> |
| 180 | struct __nested |
| 181 | : public _Tp, |
| 182 | public nested_exception |
| 183 | { |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 184 | _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {} |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 185 | }; |
| 186 | |
| 187 | template <class _Tp> |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 188 | _ATTRIBUTE(noreturn) |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 189 | void |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 190 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 191 | throw_with_nested(_Tp&& __t, typename enable_if< |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 192 | is_class<typename remove_reference<_Tp>::type>::value && |
| 193 | !is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value |
| 194 | >::type* = 0) |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 195 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 196 | throw_with_nested (_Tp& __t, typename enable_if< |
| 197 | is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value |
| 198 | >::type* = 0) |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 199 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 200 | { |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 201 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame^] | 202 | throw __nested<typename remove_reference<_Tp>::type>(_VSTD::forward<_Tp>(__t)); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 203 | #endif |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | template <class _Tp> |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 207 | _ATTRIBUTE(noreturn) |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 208 | void |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 209 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 4b7a43d | 2011-05-26 17:07:32 +0000 | [diff] [blame] | 210 | throw_with_nested(_Tp&& __t, typename enable_if< |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 211 | !is_class<typename remove_reference<_Tp>::type>::value || |
| 212 | is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value |
| 213 | >::type* = 0) |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 214 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 215 | throw_with_nested (_Tp& __t, typename enable_if< |
| 216 | !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value |
| 217 | >::type* = 0) |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 218 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 219 | { |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 220 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame^] | 221 | throw _VSTD::forward<_Tp>(__t); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 222 | #endif |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | template <class _E> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 226 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 227 | void |
| 228 | rethrow_if_nested(const _E& __e, typename enable_if< |
Howard Hinnant | 6bb9f58 | 2010-05-28 13:35:41 +0000 | [diff] [blame] | 229 | is_polymorphic<_E>::value |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 230 | >::type* = 0) |
| 231 | { |
Howard Hinnant | 6bb9f58 | 2010-05-28 13:35:41 +0000 | [diff] [blame] | 232 | const nested_exception* __nep = dynamic_cast<const nested_exception*>(&__e); |
| 233 | if (__nep) |
| 234 | __nep->rethrow_nested(); |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | template <class _E> |
Howard Hinnant | 422a53f | 2010-09-21 21:28:23 +0000 | [diff] [blame] | 238 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 239 | void |
| 240 | rethrow_if_nested(const _E& __e, typename enable_if< |
Howard Hinnant | 6bb9f58 | 2010-05-28 13:35:41 +0000 | [diff] [blame] | 241 | !is_polymorphic<_E>::value |
Howard Hinnant | ed2c291 | 2010-05-27 17:06:52 +0000 | [diff] [blame] | 242 | >::type* = 0) |
| 243 | { |
| 244 | } |
| 245 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 246 | } // std |
| 247 | |
| 248 | #endif // _LIBCPP_EXCEPTION |