blob: 82fdbb1a37c485cb2edc14ca20b1a18f88b160d9 [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//
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
17namespace std
18{
19
20class exception
21{
22public:
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
30class bad_exception
31 : public exception
32{
33public:
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
41typedef void (*unexpected_handler)();
42unexpected_handler set_unexpected(unexpected_handler f ) throw();
43void unexpected [[noreturn]] ();
44
45typedef void (*terminate_handler)();
46terminate_handler set_terminate(terminate_handler f ) throw();
47void terminate [[noreturn]] ();
48
49bool uncaught_exception() throw();
50
51typedef unspecified exception_ptr;
52
53exception_ptr current_exception();
54void rethrow_exception [[noreturn]] (exception_ptr p);
55template<class E> exception_ptr make_exception_ptr(E e);
56
57class nested_exception
58{
59public:
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
70template <class T> void throw_with_nested [[noreturn]] (T&& t);
71template <class E> void rethrow_if_nested(const E& e);
72
73} // std
74
75*/
76
77#include <__config>
78#include <cstddef>
79
80#pragma GCC system_header
81
82namespace std // purposefully not using versioning namespace
83{
84
85class _LIBCPP_EXCEPTION_ABI exception
86{
87public:
88 _LIBCPP_INLINE_VISIBILITY exception() throw() {}
89 virtual ~exception() throw();
90 virtual const char* what() const throw();
91};
92
93class _LIBCPP_EXCEPTION_ABI bad_exception
94 : public exception
95{
96public:
97 _LIBCPP_INLINE_VISIBILITY bad_exception() throw() {}
98 virtual ~bad_exception() throw();
99 virtual const char* what() const throw();
100};
101
102typedef void (*unexpected_handler)();
103_LIBCPP_VISIBLE unexpected_handler set_unexpected(unexpected_handler) throw();
104_LIBCPP_VISIBLE void unexpected();
105
106typedef void (*terminate_handler)();
107_LIBCPP_VISIBLE terminate_handler set_terminate(terminate_handler) throw();
108_LIBCPP_VISIBLE void terminate() __attribute__((__noreturn__));
109
110_LIBCPP_VISIBLE bool uncaught_exception() throw();
111
112class exception_ptr;
113
114exception_ptr current_exception();
115void rethrow_exception(exception_ptr); // noreturn
116
117class exception_ptr
118{
119 void* __ptr_;
120public:
121 exception_ptr() : __ptr_() {}
122 exception_ptr(nullptr_t) : __ptr_() {}
123 exception_ptr(const exception_ptr&);
124 exception_ptr& operator=(const exception_ptr&);
125 ~exception_ptr();
126
127 // explicit
128 operator bool() const {return __ptr_ != nullptr;}
129
130 friend bool operator==(const exception_ptr& __x, const exception_ptr& __y)
131 {return __x.__ptr_ == __y.__ptr_;}
132 friend bool operator!=(const exception_ptr& __x, const exception_ptr& __y)
133 {return !(__x == __y);}
134
135 friend exception_ptr current_exception();
136 friend void rethrow_exception(exception_ptr); // noreturn
137};
138
139template<class _E>
140exception_ptr
141make_exception_ptr(_E __e)
142{
143 try
144 {
145 throw __e;
146 }
147 catch (...)
148 {
149 return current_exception();
150 }
151}
152
153} // std
154
155#endif // _LIBCPP_EXCEPTION