2 //===-------------------------- exception ---------------------------------===//
4 // The LLVM Compiler Infrastructure
6 // This file is dual licensed under the MIT and the University of Illinois Open
7 // Source Licenses. See LICENSE.TXT for details.
9 //===----------------------------------------------------------------------===//
11 #ifndef _LIBCPP_EXCEPTION
12 #define _LIBCPP_EXCEPTION
24 exception(const exception&) noexcept;
25 exception& operator=(const exception&) noexcept;
26 virtual ~exception() noexcept;
27 virtual const char* what() const noexcept;
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;
41 typedef void (*unexpected_handler)();
42 unexpected_handler set_unexpected(unexpected_handler f ) noexcept;
43 unexpected_handler get_unexpected() noexcept;
44 [[noreturn]] void unexpected();
46 typedef void (*terminate_handler)();
47 terminate_handler set_terminate(terminate_handler f ) noexcept;
48 terminate_handler get_terminate() noexcept;
49 [[noreturn]] void terminate() noexcept;
51 bool uncaught_exception() noexcept;
52 int uncaught_exceptions() noexcept; // C++17
54 typedef unspecified exception_ptr;
56 exception_ptr current_exception() noexcept;
57 void rethrow_exception [[noreturn]] (exception_ptr p);
58 template<class E> exception_ptr make_exception_ptr(E e) noexcept;
60 class nested_exception
63 nested_exception() noexcept;
64 nested_exception(const nested_exception&) noexcept = default;
65 nested_exception& operator=(const nested_exception&) noexcept = default;
66 virtual ~nested_exception() = default;
69 [[noreturn]] void rethrow_nested() const;
70 exception_ptr nested_ptr() const noexcept;
73 template <class T> [[noreturn]] void throw_with_nested(T&& t);
74 template <class E> void rethrow_if_nested(const E& e);
82 #include <type_traits>
84 #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
85 #pragma GCC system_header
88 namespace std // purposefully not using versioning namespace
91 class _LIBCPP_EXCEPTION_ABI exception
94 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
95 virtual ~exception() _NOEXCEPT;
96 virtual const char* what() const _NOEXCEPT;
99 class _LIBCPP_EXCEPTION_ABI bad_exception
103 _LIBCPP_INLINE_VISIBILITY bad_exception() _NOEXCEPT {}
104 virtual ~bad_exception() _NOEXCEPT;
105 virtual const char* what() const _NOEXCEPT;
108 typedef void (*unexpected_handler)();
109 _LIBCPP_FUNC_VIS unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT;
110 _LIBCPP_FUNC_VIS unexpected_handler get_unexpected() _NOEXCEPT;
111 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void unexpected();
113 typedef void (*terminate_handler)();
114 _LIBCPP_FUNC_VIS terminate_handler set_terminate(terminate_handler) _NOEXCEPT;
115 _LIBCPP_FUNC_VIS terminate_handler get_terminate() _NOEXCEPT;
116 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void terminate() _NOEXCEPT;
118 _LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
119 _LIBCPP_FUNC_VIS int uncaught_exceptions() _NOEXCEPT;
121 class _LIBCPP_TYPE_VIS exception_ptr;
123 _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
124 _LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
126 class _LIBCPP_TYPE_VIS exception_ptr
130 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}
131 _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
132 exception_ptr(const exception_ptr&) _NOEXCEPT;
133 exception_ptr& operator=(const exception_ptr&) _NOEXCEPT;
134 ~exception_ptr() _NOEXCEPT;
136 _LIBCPP_INLINE_VISIBILITY
138 operator bool() const _NOEXCEPT {return __ptr_ != nullptr;}
140 friend _LIBCPP_INLINE_VISIBILITY
141 bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
142 {return __x.__ptr_ == __y.__ptr_;}
143 friend _LIBCPP_INLINE_VISIBILITY
144 bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
145 {return !(__x == __y);}
147 friend _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
148 friend _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
153 make_exception_ptr(_Ep __e) _NOEXCEPT
155 #ifndef _LIBCPP_NO_EXCEPTIONS
162 return current_exception();
164 #endif // _LIBCPP_NO_EXCEPTIONS
169 class _LIBCPP_EXCEPTION_ABI nested_exception
171 exception_ptr __ptr_;
173 nested_exception() _NOEXCEPT;
174 // nested_exception(const nested_exception&) noexcept = default;
175 // nested_exception& operator=(const nested_exception&) noexcept = default;
176 virtual ~nested_exception() _NOEXCEPT;
179 _LIBCPP_NORETURN void rethrow_nested() const;
180 _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;}
186 public nested_exception
188 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
194 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
195 throw_with_nested(_Tp&& __t, typename enable_if<
196 is_class<typename remove_reference<_Tp>::type>::value &&
197 !is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
198 && !__libcpp_is_final<typename remove_reference<_Tp>::type>::value
200 #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
201 throw_with_nested (_Tp& __t, typename enable_if<
202 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
204 #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
206 #ifndef _LIBCPP_NO_EXCEPTIONS
207 throw __nested<typename remove_reference<_Tp>::type>(_VSTD::forward<_Tp>(__t));
214 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
215 throw_with_nested(_Tp&& __t, typename enable_if<
216 !is_class<typename remove_reference<_Tp>::type>::value ||
217 is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
218 || __libcpp_is_final<typename remove_reference<_Tp>::type>::value
220 #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
221 throw_with_nested (_Tp& __t, typename enable_if<
222 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
224 #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
226 #ifndef _LIBCPP_NO_EXCEPTIONS
227 throw _VSTD::forward<_Tp>(__t);
232 inline _LIBCPP_INLINE_VISIBILITY
234 rethrow_if_nested(const _Ep& __e, typename enable_if<
235 is_polymorphic<_Ep>::value
238 const nested_exception* __nep = dynamic_cast<const nested_exception*>(&__e);
240 __nep->rethrow_nested();
244 inline _LIBCPP_INLINE_VISIBILITY
246 rethrow_if_nested(const _Ep&, typename enable_if<
247 !is_polymorphic<_Ep>::value
254 #endif // _LIBCPP_EXCEPTION