1 // Exception Handling support header (exception_ptr class) for -*- C++ -*-
3 // Copyright (C) 2008-2016 Free Software Foundation, Inc.
5 // This file is part of GCC.
7 // GCC is free software; you can redistribute it and/or modify
8 // it under the terms of the GNU General Public License as published by
9 // the Free Software Foundation; either version 3, or (at your option)
12 // GCC is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 // GNU General Public License for more details.
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
26 /** @file bits/exception_ptr.h
27 * This is an internal header file, included by other library headers.
28 * Do not attempt to use it directly. @headername{exception}
31 #ifndef _EXCEPTION_PTR_H
32 #define _EXCEPTION_PTR_H
34 #pragma GCC visibility push(default)
36 #include <bits/c++config.h>
37 #include <bits/exception_defines.h>
38 #include <bits/cxxabi_init_exception.h>
42 #if ATOMIC_INT_LOCK_FREE < 2
43 # error This platform does not support exception propagation.
53 * @addtogroup exceptions
56 namespace __exception_ptr
61 using __exception_ptr::exception_ptr
;
63 /** Obtain an exception_ptr to the currently handled exception. If there
64 * is none, or the currently handled exception is foreign, return the null
67 exception_ptr
current_exception() _GLIBCXX_USE_NOEXCEPT
;
69 template<typename _Ex
>
70 exception_ptr
make_exception_ptr(_Ex
) _GLIBCXX_USE_NOEXCEPT
;
72 /// Throw the object pointed to by the exception_ptr.
73 void rethrow_exception(exception_ptr
) __attribute__ ((__noreturn__
));
75 namespace __exception_ptr
77 using std::rethrow_exception
;
80 * @brief An opaque pointer to an arbitrary exception.
85 void* _M_exception_object
;
87 explicit exception_ptr(void* __e
) _GLIBCXX_USE_NOEXCEPT
;
89 void _M_addref() _GLIBCXX_USE_NOEXCEPT
;
90 void _M_release() _GLIBCXX_USE_NOEXCEPT
;
92 void *_M_get() const _GLIBCXX_NOEXCEPT
__attribute__ ((__pure__
));
94 friend exception_ptr
std::current_exception() _GLIBCXX_USE_NOEXCEPT
;
95 friend void std::rethrow_exception(exception_ptr
);
96 template<typename _Ex
>
97 friend exception_ptr
std::make_exception_ptr(_Ex
) _GLIBCXX_USE_NOEXCEPT
;
100 exception_ptr() _GLIBCXX_USE_NOEXCEPT
;
102 exception_ptr(const exception_ptr
&) _GLIBCXX_USE_NOEXCEPT
;
104 #if __cplusplus >= 201103L
105 exception_ptr(nullptr_t
) noexcept
106 : _M_exception_object(0)
109 exception_ptr(exception_ptr
&& __o
) noexcept
110 : _M_exception_object(__o
._M_exception_object
)
111 { __o
._M_exception_object
= 0; }
114 #if (__cplusplus < 201103L) || defined (_GLIBCXX_EH_PTR_COMPAT)
115 typedef void (exception_ptr::*__safe_bool
)();
117 // For construction from nullptr or 0.
118 exception_ptr(__safe_bool
) _GLIBCXX_USE_NOEXCEPT
;
122 operator=(const exception_ptr
&) _GLIBCXX_USE_NOEXCEPT
;
124 #if __cplusplus >= 201103L
126 operator=(exception_ptr
&& __o
) noexcept
128 exception_ptr(static_cast<exception_ptr
&&>(__o
)).swap(*this);
133 ~exception_ptr() _GLIBCXX_USE_NOEXCEPT
;
136 swap(exception_ptr
&) _GLIBCXX_USE_NOEXCEPT
;
138 #ifdef _GLIBCXX_EH_PTR_COMPAT
139 // Retained for compatibility with CXXABI_1.3.
140 void _M_safe_bool_dummy() _GLIBCXX_USE_NOEXCEPT
141 __attribute__ ((__const__
));
142 bool operator!() const _GLIBCXX_USE_NOEXCEPT
143 __attribute__ ((__pure__
));
144 operator __safe_bool() const _GLIBCXX_USE_NOEXCEPT
;
147 #if __cplusplus >= 201103L
148 explicit operator bool() const
149 { return _M_exception_object
; }
153 operator==(const exception_ptr
&, const exception_ptr
&)
154 _GLIBCXX_USE_NOEXCEPT
__attribute__ ((__pure__
));
156 const class std::type_info
*
157 __cxa_exception_type() const _GLIBCXX_USE_NOEXCEPT
158 __attribute__ ((__pure__
));
162 operator==(const exception_ptr
&, const exception_ptr
&)
163 _GLIBCXX_USE_NOEXCEPT
__attribute__ ((__pure__
));
166 operator!=(const exception_ptr
&, const exception_ptr
&)
167 _GLIBCXX_USE_NOEXCEPT
__attribute__ ((__pure__
));
170 swap(exception_ptr
& __lhs
, exception_ptr
& __rhs
)
171 { __lhs
.swap(__rhs
); }
173 template<typename _Ex
>
175 __dest_thunk(void* x
)
176 { static_cast<_Ex
*>(x
)->~_Ex(); }
178 } // namespace __exception_ptr
180 /// Obtain an exception_ptr pointing to a copy of the supplied object.
181 template<typename _Ex
>
183 make_exception_ptr(_Ex __ex
) _GLIBCXX_USE_NOEXCEPT
188 #if __cpp_rtti && !_GLIBCXX_HAVE_CDTOR_CALLABI
189 void *__e
= __cxxabiv1::__cxa_allocate_exception(sizeof(_Ex
));
190 (void)__cxxabiv1::__cxa_init_primary_exception(__e
,
191 const_cast<std::type_info
*>(&typeid(__ex
)),
192 __exception_ptr::__dest_thunk
<_Ex
>);
194 return exception_ptr(__e
);
201 return current_exception();
204 return exception_ptr();
208 // _GLIBCXX_RESOLVE_LIB_DEFECTS
209 // 1130. copy_exception name misleading
210 /// Obtain an exception_ptr pointing to a copy of the supplied object.
211 /// This function is deprecated, use std::make_exception_ptr instead.
212 template<typename _Ex
>
214 copy_exception(_Ex __ex
) _GLIBCXX_USE_NOEXCEPT _GLIBCXX_DEPRECATED
;
216 template<typename _Ex
>
218 copy_exception(_Ex __ex
) _GLIBCXX_USE_NOEXCEPT
219 { return std::make_exception_ptr
<_Ex
>(__ex
); }
221 // @} group exceptions
226 #pragma GCC visibility pop