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