Merge from mainline (168000:168310).
[official-gcc/graphite-test-results.git] / libstdc++-v3 / libsupc++ / nested_exception.h
blob1836b6e8335e5bbe7285ff9c9953ff5646c980fe
1 // Nested Exception support header (nested_exception class) for -*- C++ -*-
3 // Copyright (C) 2009, 2010 Free Software Foundation, Inc.
4 //
5 // This file is part of the GNU ISO C++ Library. This library is free
6 // software; you can redistribute it and/or modify it under the
7 // terms of the GNU General Public License as published by the
8 // Free Software Foundation; either version 3, or (at your option)
9 // any later version.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // Under Section 7 of GPL version 3, you are granted additional
17 // permissions described in the GCC Runtime Library Exception, version
18 // 3.1, as published by the Free Software Foundation.
20 // You should have received a copy of the GNU General Public License and
21 // a copy of the GCC Runtime Library Exception along with this program;
22 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23 // <http://www.gnu.org/licenses/>.
25 /** @file nested_exception.h
26 * This is an internal header file, included by other library headers.
27 * Do not attempt to use it directly. @headername{exception}
30 #ifndef _GLIBCXX_NESTED_EXCEPTION_H
31 #define _GLIBCXX_NESTED_EXCEPTION_H 1
33 #pragma GCC visibility push(default)
35 #ifndef __GXX_EXPERIMENTAL_CXX0X__
36 # include <bits/c++0x_warning.h>
37 #else
39 #include <bits/c++config.h>
41 #if !defined(_GLIBCXX_ATOMIC_BUILTINS_4)
42 # error This platform does not support exception propagation.
43 #endif
45 extern "C++" {
47 namespace std
49 /**
50 * @addtogroup exceptions
51 * @{
54 /// Exception class with exception_ptr data member.
55 class nested_exception
57 exception_ptr _M_ptr;
59 public:
60 nested_exception() throw() : _M_ptr(current_exception()) { }
62 nested_exception(const nested_exception&) = default;
64 nested_exception& operator=(const nested_exception&) = default;
66 inline virtual ~nested_exception();
68 void
69 rethrow_nested() const __attribute__ ((__noreturn__))
70 { rethrow_exception(_M_ptr); }
72 exception_ptr
73 nested_ptr() const
74 { return _M_ptr; }
77 inline nested_exception::~nested_exception() = default;
79 template<typename _Except>
80 struct _Nested_exception : public _Except, public nested_exception
82 explicit _Nested_exception(_Except&& __ex)
83 : _Except(static_cast<_Except&&>(__ex))
84 { }
87 template<typename _Ex>
88 struct __get_nested_helper
90 static const nested_exception*
91 _S_get(const _Ex& __ex)
92 { return dynamic_cast<const nested_exception*>(&__ex); }
95 template<typename _Ex>
96 struct __get_nested_helper<_Ex*>
98 static const nested_exception*
99 _S_get(const _Ex* __ex)
100 { return dynamic_cast<const nested_exception*>(__ex); }
103 template<typename _Ex>
104 inline const nested_exception*
105 __get_nested_exception(const _Ex& __ex)
106 { return __get_nested_helper<_Ex>::_S_get(__ex); }
108 template<typename _Ex>
109 void
110 __throw_with_nested(_Ex&&, const nested_exception* = 0)
111 __attribute__ ((__noreturn__));
113 template<typename _Ex>
114 void
115 __throw_with_nested(_Ex&&, ...) __attribute__ ((__noreturn__));
117 // This function should never be called, but is needed to avoid a warning
118 // about ambiguous base classes when instantiating throw_with_nested<_Ex>()
119 // with a type that has an accessible nested_exception base.
120 template<typename _Ex>
121 inline void
122 __throw_with_nested(_Ex&& __ex, const nested_exception* = 0)
123 { throw __ex; }
125 template<typename _Ex>
126 inline void
127 __throw_with_nested(_Ex&& __ex, ...)
128 { throw _Nested_exception<_Ex>(static_cast<_Ex&&>(__ex)); }
130 template<typename _Ex>
131 void
132 throw_with_nested(_Ex __ex) __attribute__ ((__noreturn__));
134 /// If @p __ex is derived from nested_exception, @p __ex.
135 /// Else, an implementation-defined object derived from both.
136 template<typename _Ex>
137 inline void
138 throw_with_nested(_Ex __ex)
140 if (__get_nested_exception(__ex))
141 throw __ex;
142 __throw_with_nested(static_cast<_Ex&&>(__ex), &__ex);
145 /// If @p __ex is derived from nested_exception, @p __ex.rethrow_nested().
146 template<typename _Ex>
147 inline void
148 rethrow_if_nested(const _Ex& __ex)
150 if (const nested_exception* __nested = __get_nested_exception(__ex))
151 __nested->rethrow_nested();
154 /// Overload, See N2619
155 inline void
156 rethrow_if_nested(const nested_exception& __ex)
157 { __ex.rethrow_nested(); }
159 // @} group exceptions
160 } // namespace std
162 } // extern "C++"
164 #endif // __GXX_EXPERIMENTAL_CXX0X__
166 #pragma GCC visibility pop
168 #endif // _GLIBCXX_NESTED_EXCEPTION_H