[Patch Doc] Update documentation for __fp16 type
[official-gcc.git] / libstdc++-v3 / src / c++11 / system_error.cc
blobc0a9839964e96d80226eb0d9923d12d94c40e4ca
1 // <system_error> implementation file
3 // Copyright (C) 2007-2016 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/>.
26 #define _GLIBCXX_USE_CXX11_ABI 1
27 #define __sso_string __sso_stringxxx
28 #include <cstring>
29 #include <system_error>
30 #include <bits/functexcept.h>
31 #include <limits>
32 #undef __sso_string
34 namespace
36 using std::string;
38 struct generic_error_category : public std::error_category
40 virtual const char*
41 name() const noexcept
42 { return "generic"; }
44 _GLIBCXX_DEFAULT_ABI_TAG
45 virtual string
46 message(int i) const
48 // XXX locale issues: how does one get or set loc.
49 // _GLIBCXX_HAVE_STRERROR_L, strerror_l(i, cloc)
50 return string(strerror(i));
54 struct system_error_category : public std::error_category
56 virtual const char*
57 name() const noexcept
58 { return "system"; }
60 _GLIBCXX_DEFAULT_ABI_TAG
61 virtual string
62 message(int i) const
64 // XXX locale issues: how does one get or set loc.
65 // _GLIBCXX_HAVE_STRERROR_L, strerror_l(i, cloc)
66 return string(strerror(i));
70 const generic_error_category generic_category_instance{};
71 const system_error_category system_category_instance{};
74 namespace std _GLIBCXX_VISIBILITY(default)
76 _GLIBCXX_BEGIN_NAMESPACE_VERSION
78 error_category::~error_category() noexcept = default;
80 const error_category&
81 _V2::system_category() noexcept { return system_category_instance; }
83 const error_category&
84 _V2::generic_category() noexcept { return generic_category_instance; }
86 system_error::~system_error() noexcept = default;
88 error_condition
89 error_category::default_error_condition(int __i) const noexcept
90 { return error_condition(__i, *this); }
92 bool
93 error_category::equivalent(int __i,
94 const error_condition& __cond) const noexcept
95 { return default_error_condition(__i) == __cond; }
97 bool
98 error_category::equivalent(const error_code& __code, int __i) const noexcept
99 { return *this == __code.category() && __code.value() == __i; }
101 error_condition
102 error_code::default_error_condition() const noexcept
103 { return category().default_error_condition(value()); }
105 #if _GLIBCXX_USE_CXX11_ABI
106 // Return error_category::message() as a COW string
107 __cow_string
108 error_category::_M_message(int i) const
110 string msg = this->message(i);
111 return {msg.c_str(), msg.length()};
113 #endif
115 #if _GLIBCXX_USE_DUAL_ABI
116 #pragma GCC diagnostic push
117 #pragma GCC diagnostic ignored "-Wabi-tag"
118 // Redefine __sso_string so that we can define and export its members
119 // in terms of the SSO std::string.
120 struct __sso_string
122 struct __str
124 const char* _M_p;
125 size_t _M_string_length;
126 char _M_local_buf[16];
129 union {
130 __str _M_s;
131 char _M_bytes[sizeof(_M_s)];
132 std::string _M_str;
135 __sso_string();
136 __sso_string(const std::string& s);
137 __sso_string(const char*, size_t n);
138 __sso_string(const __sso_string&) noexcept;
139 __sso_string& operator=(const __sso_string&) noexcept;
140 ~__sso_string();
141 __sso_string(__sso_string&&) noexcept;
142 __sso_string& operator=(__sso_string&&) noexcept;
144 #pragma GCC diagnostic pop
146 __sso_string::__sso_string() : _M_str() { }
148 #if _GLIBCXX_USE_CXX11_ABI
149 static_assert(sizeof(__sso_string) == sizeof(std::string),
150 "sizeof(std::string) has changed");
151 static_assert(alignof(__sso_string) == alignof(std::string),
152 "alignof(std::string) has changed");
154 // This constructor is defined in src/c++11/cow-stdexcept.cc for COW strings
155 __sso_string::__sso_string(const std::string& s) : _M_str(s) { }
156 #endif
158 __sso_string::__sso_string(const char* s, size_t n) : _M_str(s, n) { }
160 __sso_string::__sso_string(const __sso_string& s) noexcept
161 : _M_str(s._M_str) { }
163 __sso_string&
164 __sso_string::operator=(const __sso_string& s) noexcept
166 _M_str = s._M_str;
167 return *this;
170 __sso_string::~__sso_string() { _M_str.~basic_string(); }
172 __sso_string::__sso_string(__sso_string&& s) noexcept
173 : _M_str(std::move(s._M_str)) { }
175 __sso_string&
176 __sso_string::operator=(__sso_string&& s) noexcept
178 _M_str = std::move(s._M_str);
179 return *this;
181 #endif // _GLIBCXX_USE_DUAL_ABI
183 _GLIBCXX_END_NAMESPACE_VERSION
184 } // namespace