blob: 186d379f08f5f5f248c8b8a1bad593ed5b916172 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- exception ---------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_EXCEPTION
12#define _LIBCPP_EXCEPTION
13
14/*
15 exception synopsis
16
17namespace std
18{
19
20class exception
21{
22public:
Howard Hinnanted569212011-05-26 18:23:59 +000023 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 Hinnantbc8d3f92010-05-11 19:42:16 +000028};
29
30class bad_exception
31 : public exception
32{
33public:
Howard Hinnanted569212011-05-26 18:23:59 +000034 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 Hinnantbc8d3f92010-05-11 19:42:16 +000039};
40
41typedef void (*unexpected_handler)();
Howard Hinnanted569212011-05-26 18:23:59 +000042unexpected_handler set_unexpected(unexpected_handler f ) noexcept;
43unexpected_handler get_unexpected() noexcept;
44[[noreturn]] void unexpected();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000045
46typedef void (*terminate_handler)();
Howard Hinnanted569212011-05-26 18:23:59 +000047terminate_handler set_terminate(terminate_handler f ) noexcept;
48terminate_handler get_terminate() noexcept;
49[[noreturn]] void terminate() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000050
Marshall Clow8731c5d2015-06-02 15:33:38 +000051bool uncaught_exception() noexcept;
52int uncaught_exceptions() noexcept; // C++17
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000053
54typedef unspecified exception_ptr;
55
Howard Hinnanted569212011-05-26 18:23:59 +000056exception_ptr current_exception() noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000057void rethrow_exception [[noreturn]] (exception_ptr p);
Howard Hinnanted569212011-05-26 18:23:59 +000058template<class E> exception_ptr make_exception_ptr(E e) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000059
60class nested_exception
61{
62public:
Howard Hinnanted569212011-05-26 18:23:59 +000063 nested_exception() noexcept;
64 nested_exception(const nested_exception&) noexcept = default;
65 nested_exception& operator=(const nested_exception&) noexcept = default;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000066 virtual ~nested_exception() = default;
67
68 // access functions
Howard Hinnanted569212011-05-26 18:23:59 +000069 [[noreturn]] void rethrow_nested() const;
70 exception_ptr nested_ptr() const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000071};
72
Howard Hinnanted569212011-05-26 18:23:59 +000073template <class T> [[noreturn]] void throw_with_nested(T&& t);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000074template <class E> void rethrow_if_nested(const E& e);
75
76} // std
77
78*/
79
80#include <__config>
81#include <cstddef>
Howard Hinnanted2c2912010-05-27 17:06:52 +000082#include <type_traits>
Eric Fiselier96e4c232016-05-07 02:30:21 +000083#if defined(_LIBCPP_NO_EXCEPTIONS)
Eric Fiselier257fd692016-05-07 01:04:55 +000084#include <cstdio>
85#include <cstdlib>
86#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000087
Howard Hinnant08e17472011-10-17 20:05:10 +000088#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000089#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000090#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000091
92namespace std // purposefully not using versioning namespace
93{
94
95class _LIBCPP_EXCEPTION_ABI exception
96{
97public:
Howard Hinnanted569212011-05-26 18:23:59 +000098 _LIBCPP_INLINE_VISIBILITY exception() _NOEXCEPT {}
99 virtual ~exception() _NOEXCEPT;
100 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000101};
102
103class _LIBCPP_EXCEPTION_ABI bad_exception
104 : public exception
105{
106public:
Howard Hinnanted569212011-05-26 18:23:59 +0000107 _LIBCPP_INLINE_VISIBILITY bad_exception() _NOEXCEPT {}
108 virtual ~bad_exception() _NOEXCEPT;
109 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000110};
111
112typedef void (*unexpected_handler)();
Howard Hinnant83eade62013-03-06 23:30:19 +0000113_LIBCPP_FUNC_VIS unexpected_handler set_unexpected(unexpected_handler) _NOEXCEPT;
114_LIBCPP_FUNC_VIS unexpected_handler get_unexpected() _NOEXCEPT;
115_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void unexpected();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000116
117typedef void (*terminate_handler)();
Howard Hinnant83eade62013-03-06 23:30:19 +0000118_LIBCPP_FUNC_VIS terminate_handler set_terminate(terminate_handler) _NOEXCEPT;
119_LIBCPP_FUNC_VIS terminate_handler get_terminate() _NOEXCEPT;
120_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void terminate() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000121
Howard Hinnant83eade62013-03-06 23:30:19 +0000122_LIBCPP_FUNC_VIS bool uncaught_exception() _NOEXCEPT;
Marshall Clow8731c5d2015-06-02 15:33:38 +0000123_LIBCPP_FUNC_VIS int uncaught_exceptions() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000124
Howard Hinnant83eade62013-03-06 23:30:19 +0000125class _LIBCPP_TYPE_VIS exception_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000126
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000127_LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
128_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000129
Howard Hinnant83eade62013-03-06 23:30:19 +0000130class _LIBCPP_TYPE_VIS exception_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000131{
132 void* __ptr_;
133public:
Howard Hinnanted569212011-05-26 18:23:59 +0000134 _LIBCPP_INLINE_VISIBILITY exception_ptr() _NOEXCEPT : __ptr_() {}
135 _LIBCPP_INLINE_VISIBILITY exception_ptr(nullptr_t) _NOEXCEPT : __ptr_() {}
136 exception_ptr(const exception_ptr&) _NOEXCEPT;
137 exception_ptr& operator=(const exception_ptr&) _NOEXCEPT;
138 ~exception_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000139
Howard Hinnant422a53f2010-09-21 21:28:23 +0000140 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +0000141 _LIBCPP_EXPLICIT
Howard Hinnanted569212011-05-26 18:23:59 +0000142 operator bool() const _NOEXCEPT {return __ptr_ != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000143
Howard Hinnant422a53f2010-09-21 21:28:23 +0000144 friend _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted569212011-05-26 18:23:59 +0000145 bool operator==(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000146 {return __x.__ptr_ == __y.__ptr_;}
Howard Hinnant422a53f2010-09-21 21:28:23 +0000147 friend _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted569212011-05-26 18:23:59 +0000148 bool operator!=(const exception_ptr& __x, const exception_ptr& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000149 {return !(__x == __y);}
150
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000151 friend _LIBCPP_FUNC_VIS exception_ptr current_exception() _NOEXCEPT;
152 friend _LIBCPP_FUNC_VIS void rethrow_exception(exception_ptr);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000153};
154
Howard Hinnant99968442011-11-29 18:15:50 +0000155template<class _Ep>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000156exception_ptr
Howard Hinnant99968442011-11-29 18:15:50 +0000157make_exception_ptr(_Ep __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000158{
Howard Hinnantd4444702010-08-11 17:04:31 +0000159#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000160 try
161 {
162 throw __e;
163 }
164 catch (...)
165 {
166 return current_exception();
167 }
Howard Hinnant324bb032010-08-22 00:02:43 +0000168#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000169}
170
Howard Hinnanted2c2912010-05-27 17:06:52 +0000171// nested_exception
172
173class _LIBCPP_EXCEPTION_ABI nested_exception
174{
175 exception_ptr __ptr_;
176public:
Howard Hinnanted569212011-05-26 18:23:59 +0000177 nested_exception() _NOEXCEPT;
178// nested_exception(const nested_exception&) noexcept = default;
179// nested_exception& operator=(const nested_exception&) noexcept = default;
180 virtual ~nested_exception() _NOEXCEPT;
Howard Hinnanted2c2912010-05-27 17:06:52 +0000181
182 // access functions
Richard Smith0405cc42012-07-26 02:04:22 +0000183 _LIBCPP_NORETURN void rethrow_nested() const;
Howard Hinnanted569212011-05-26 18:23:59 +0000184 _LIBCPP_INLINE_VISIBILITY exception_ptr nested_ptr() const _NOEXCEPT {return __ptr_;}
Howard Hinnanted2c2912010-05-27 17:06:52 +0000185};
186
187template <class _Tp>
188struct __nested
189 : public _Tp,
190 public nested_exception
191{
Howard Hinnant422a53f2010-09-21 21:28:23 +0000192 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {}
Howard Hinnanted2c2912010-05-27 17:06:52 +0000193};
194
195template <class _Tp>
Richard Smith0405cc42012-07-26 02:04:22 +0000196_LIBCPP_NORETURN
Howard Hinnant324bb032010-08-22 00:02:43 +0000197void
Howard Hinnant73d21a42010-09-04 23:28:19 +0000198#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant4b7a43d2011-05-26 17:07:32 +0000199throw_with_nested(_Tp&& __t, typename enable_if<
Howard Hinnanted2c2912010-05-27 17:06:52 +0000200 is_class<typename remove_reference<_Tp>::type>::value &&
201 !is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000202 && !__libcpp_is_final<typename remove_reference<_Tp>::type>::value
Howard Hinnanted2c2912010-05-27 17:06:52 +0000203 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19 +0000204#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52 +0000205throw_with_nested (_Tp& __t, typename enable_if<
206 is_class<_Tp>::value && !is_base_of<nested_exception, _Tp>::value
207 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19 +0000208#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52 +0000209{
Howard Hinnantd4444702010-08-11 17:04:31 +0000210#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnant0949eed2011-06-30 21:18:19 +0000211 throw __nested<typename remove_reference<_Tp>::type>(_VSTD::forward<_Tp>(__t));
Howard Hinnantd4444702010-08-11 17:04:31 +0000212#endif
Howard Hinnanted2c2912010-05-27 17:06:52 +0000213}
214
215template <class _Tp>
Richard Smith0405cc42012-07-26 02:04:22 +0000216_LIBCPP_NORETURN
Howard Hinnant324bb032010-08-22 00:02:43 +0000217void
Howard Hinnant73d21a42010-09-04 23:28:19 +0000218#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant4b7a43d2011-05-26 17:07:32 +0000219throw_with_nested(_Tp&& __t, typename enable_if<
Howard Hinnanted2c2912010-05-27 17:06:52 +0000220 !is_class<typename remove_reference<_Tp>::type>::value ||
221 is_base_of<nested_exception, typename remove_reference<_Tp>::type>::value
Eric Fiselier3a0e4302015-06-13 07:08:02 +0000222 || __libcpp_is_final<typename remove_reference<_Tp>::type>::value
Howard Hinnanted2c2912010-05-27 17:06:52 +0000223 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19 +0000224#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52 +0000225throw_with_nested (_Tp& __t, typename enable_if<
226 !is_class<_Tp>::value || is_base_of<nested_exception, _Tp>::value
227 >::type* = 0)
Howard Hinnant73d21a42010-09-04 23:28:19 +0000228#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnanted2c2912010-05-27 17:06:52 +0000229{
Howard Hinnantd4444702010-08-11 17:04:31 +0000230#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnant0949eed2011-06-30 21:18:19 +0000231 throw _VSTD::forward<_Tp>(__t);
Howard Hinnantd4444702010-08-11 17:04:31 +0000232#endif
Howard Hinnanted2c2912010-05-27 17:06:52 +0000233}
234
Howard Hinnant99968442011-11-29 18:15:50 +0000235template <class _Ep>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000236inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted2c2912010-05-27 17:06:52 +0000237void
Howard Hinnant99968442011-11-29 18:15:50 +0000238rethrow_if_nested(const _Ep& __e, typename enable_if<
239 is_polymorphic<_Ep>::value
Howard Hinnanted2c2912010-05-27 17:06:52 +0000240 >::type* = 0)
241{
Marshall Clowb6621c52015-12-14 18:01:56 +0000242 const nested_exception* __nep = dynamic_cast<const nested_exception*>(_VSTD::addressof(__e));
Howard Hinnant6bb9f582010-05-28 13:35:41 +0000243 if (__nep)
244 __nep->rethrow_nested();
Howard Hinnanted2c2912010-05-27 17:06:52 +0000245}
246
Howard Hinnant99968442011-11-29 18:15:50 +0000247template <class _Ep>
Howard Hinnant422a53f2010-09-21 21:28:23 +0000248inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnanted2c2912010-05-27 17:06:52 +0000249void
Howard Hinnantec3773c2011-12-01 20:21:04 +0000250rethrow_if_nested(const _Ep&, typename enable_if<
Howard Hinnant99968442011-11-29 18:15:50 +0000251 !is_polymorphic<_Ep>::value
Howard Hinnanted2c2912010-05-27 17:06:52 +0000252 >::type* = 0)
253{
254}
255
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000256} // std
257
Eric Fiselier257fd692016-05-07 01:04:55 +0000258_LIBCPP_BEGIN_NAMESPACE_STD
259
260template <class _Exception>
261_LIBCPP_INLINE_VISIBILITY
262inline void __libcpp_throw(_Exception const& __e) {
Eric Fiselier96e4c232016-05-07 02:30:21 +0000263#ifndef _LIBCPP_NO_EXCEPTIONS
Eric Fiselier257fd692016-05-07 01:04:55 +0000264 throw __e;
265#else
266 _VSTD::fprintf(stderr, "%s\n", __e.what());
267 _VSTD::abort();
268#endif
269}
270
271_LIBCPP_END_NAMESPACE_STD
272
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000273#endif // _LIBCPP_EXCEPTION