Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===------------------------ stdexcept.cpp -------------------------------===// |
| 2 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
| 10 | #include "stdexcept" |
| 11 | #include "new" |
| 12 | #include "string" |
| 13 | #include <cstdlib> |
| 14 | #include <cstring> |
| 15 | #include <cstdint> |
| 16 | #include <cstddef> |
| 17 | #include "system_error" |
Richard Smith | c756f5b | 2012-04-19 01:36:12 +0000 | [diff] [blame] | 18 | |
Howard Hinnant | 460b4ca | 2012-09-03 18:13:11 +0000 | [diff] [blame] | 19 | #ifndef __has_include |
| 20 | #define __has_include(inc) 0 |
| 21 | #endif |
| 22 | |
Marshall Clow | dece7fe | 2013-03-18 17:45:34 +0000 | [diff] [blame] | 23 | #ifdef __APPLE__ |
Howard Hinnant | 460b4ca | 2012-09-03 18:13:11 +0000 | [diff] [blame] | 24 | #include <cxxabi.h> |
| 25 | #elif defined(LIBCXXRT) || __has_include(<cxxabi.h>) |
Howard Hinnant | e1642e1 | 2012-02-17 19:24:42 +0000 | [diff] [blame] | 26 | #include <cxxabi.h> |
Richard Smith | c756f5b | 2012-04-19 01:36:12 +0000 | [diff] [blame] | 27 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 28 | |
| 29 | // Note: optimize for size |
| 30 | |
Howard Hinnant | 9844b67 | 2013-10-04 22:12:59 +0000 | [diff] [blame] | 31 | #if ! defined(_LIBCPP_MSVC) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 32 | #pragma GCC visibility push(hidden) |
Howard Hinnant | 9844b67 | 2013-10-04 22:12:59 +0000 | [diff] [blame] | 33 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 34 | |
| 35 | namespace |
| 36 | { |
| 37 | |
| 38 | class __libcpp_nmstr |
| 39 | { |
| 40 | private: |
| 41 | const char* str_; |
| 42 | |
| 43 | typedef std::size_t unused_t; |
Howard Hinnant | 4490c4a | 2012-08-08 16:17:31 +0000 | [diff] [blame] | 44 | typedef std::ptrdiff_t count_t; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 45 | |
| 46 | static const std::ptrdiff_t offset = static_cast<std::ptrdiff_t>(2*sizeof(unused_t) + |
| 47 | sizeof(count_t)); |
| 48 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 49 | count_t& count() const _NOEXCEPT {return (count_t&)(*(str_ - sizeof(count_t)));} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 50 | public: |
| 51 | explicit __libcpp_nmstr(const char* msg); |
Howard Hinnant | e31c432 | 2013-08-22 19:39:03 +0000 | [diff] [blame] | 52 | __libcpp_nmstr(const __libcpp_nmstr& s) _NOEXCEPT; |
| 53 | __libcpp_nmstr& operator=(const __libcpp_nmstr& s) _NOEXCEPT; |
| 54 | ~__libcpp_nmstr(); |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 55 | const char* c_str() const _NOEXCEPT {return str_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | __libcpp_nmstr::__libcpp_nmstr(const char* msg) |
| 59 | { |
| 60 | std::size_t len = strlen(msg); |
| 61 | str_ = new char[len + 1 + offset]; |
| 62 | unused_t* c = (unused_t*)str_; |
| 63 | c[0] = c[1] = len; |
| 64 | str_ += offset; |
| 65 | count() = 0; |
Howard Hinnant | 09ca5d4 | 2013-06-29 23:53:20 +0000 | [diff] [blame] | 66 | std::memcpy(const_cast<char*>(c_str()), msg, len + 1); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | inline |
Howard Hinnant | e31c432 | 2013-08-22 19:39:03 +0000 | [diff] [blame] | 70 | __libcpp_nmstr::__libcpp_nmstr(const __libcpp_nmstr& s) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 71 | : str_(s.str_) |
| 72 | { |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 73 | __sync_add_and_fetch(&count(), 1); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | __libcpp_nmstr& |
Howard Hinnant | e31c432 | 2013-08-22 19:39:03 +0000 | [diff] [blame] | 77 | __libcpp_nmstr::operator=(const __libcpp_nmstr& s) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 78 | { |
| 79 | const char* p = str_; |
| 80 | str_ = s.str_; |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 81 | __sync_add_and_fetch(&count(), 1); |
Howard Hinnant | 4490c4a | 2012-08-08 16:17:31 +0000 | [diff] [blame] | 82 | if (__sync_add_and_fetch((count_t*)(p-sizeof(count_t)), count_t(-1)) < 0) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 83 | delete [] (p-offset); |
| 84 | return *this; |
| 85 | } |
| 86 | |
| 87 | inline |
| 88 | __libcpp_nmstr::~__libcpp_nmstr() |
| 89 | { |
Howard Hinnant | 4490c4a | 2012-08-08 16:17:31 +0000 | [diff] [blame] | 90 | if (__sync_add_and_fetch(&count(), count_t(-1)) < 0) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 91 | delete [] (str_ - offset); |
| 92 | } |
| 93 | |
| 94 | } |
| 95 | |
Howard Hinnant | 9844b67 | 2013-10-04 22:12:59 +0000 | [diff] [blame] | 96 | #if ! defined(_LIBCPP_MSVC) |
Daniel Dunbar | 04acaca | 2010-09-04 03:15:51 +0000 | [diff] [blame] | 97 | #pragma GCC visibility pop |
Howard Hinnant | 9844b67 | 2013-10-04 22:12:59 +0000 | [diff] [blame] | 98 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 99 | |
| 100 | namespace std // purposefully not using versioning namespace |
| 101 | { |
| 102 | |
| 103 | logic_error::logic_error(const string& msg) |
| 104 | { |
| 105 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 106 | ::new(&s) __libcpp_nmstr(msg.c_str()); |
| 107 | } |
| 108 | |
| 109 | logic_error::logic_error(const char* msg) |
| 110 | { |
| 111 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 112 | ::new(&s) __libcpp_nmstr(msg); |
| 113 | } |
| 114 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 115 | logic_error::logic_error(const logic_error& le) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 116 | { |
| 117 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 118 | ::new(&s) __libcpp_nmstr((const __libcpp_nmstr&)le.__imp_); |
| 119 | } |
| 120 | |
| 121 | logic_error& |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 122 | logic_error::operator=(const logic_error& le) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 123 | { |
| 124 | __libcpp_nmstr& s1 = (__libcpp_nmstr&)__imp_; |
| 125 | const __libcpp_nmstr& s2 = (const __libcpp_nmstr&)le.__imp_; |
| 126 | s1 = s2; |
| 127 | return *this; |
| 128 | } |
| 129 | |
Peter Collingbourne | d0d308f | 2013-10-06 22:13:19 +0000 | [diff] [blame] | 130 | #if !defined(_LIBCPPABI_VERSION) && !defined(LIBSTDCXX) |
Howard Hinnant | e1642e1 | 2012-02-17 19:24:42 +0000 | [diff] [blame] | 131 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 132 | logic_error::~logic_error() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 133 | { |
| 134 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 135 | s.~__libcpp_nmstr(); |
| 136 | } |
| 137 | |
| 138 | const char* |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 139 | logic_error::what() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 140 | { |
| 141 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 142 | return s.c_str(); |
| 143 | } |
| 144 | |
Howard Hinnant | e1642e1 | 2012-02-17 19:24:42 +0000 | [diff] [blame] | 145 | #endif |
| 146 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 147 | runtime_error::runtime_error(const string& msg) |
| 148 | { |
| 149 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 150 | ::new(&s) __libcpp_nmstr(msg.c_str()); |
| 151 | } |
| 152 | |
| 153 | runtime_error::runtime_error(const char* msg) |
| 154 | { |
| 155 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 156 | ::new(&s) __libcpp_nmstr(msg); |
| 157 | } |
| 158 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 159 | runtime_error::runtime_error(const runtime_error& le) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 160 | { |
| 161 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 162 | ::new(&s) __libcpp_nmstr((const __libcpp_nmstr&)le.__imp_); |
| 163 | } |
| 164 | |
| 165 | runtime_error& |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 166 | runtime_error::operator=(const runtime_error& le) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 167 | { |
| 168 | __libcpp_nmstr& s1 = (__libcpp_nmstr&)__imp_; |
| 169 | const __libcpp_nmstr& s2 = (const __libcpp_nmstr&)le.__imp_; |
| 170 | s1 = s2; |
| 171 | return *this; |
| 172 | } |
| 173 | |
Peter Collingbourne | d0d308f | 2013-10-06 22:13:19 +0000 | [diff] [blame] | 174 | #if !defined(_LIBCPPABI_VERSION) && !defined(LIBSTDCXX) |
Howard Hinnant | e1642e1 | 2012-02-17 19:24:42 +0000 | [diff] [blame] | 175 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 176 | runtime_error::~runtime_error() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 177 | { |
| 178 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 179 | s.~__libcpp_nmstr(); |
| 180 | } |
| 181 | |
| 182 | const char* |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 183 | runtime_error::what() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 184 | { |
| 185 | __libcpp_nmstr& s = (__libcpp_nmstr&)__imp_; |
| 186 | return s.c_str(); |
| 187 | } |
| 188 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 189 | domain_error::~domain_error() _NOEXCEPT {} |
| 190 | invalid_argument::~invalid_argument() _NOEXCEPT {} |
| 191 | length_error::~length_error() _NOEXCEPT {} |
| 192 | out_of_range::~out_of_range() _NOEXCEPT {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 193 | |
Howard Hinnant | 1e15fd1 | 2011-05-26 19:48:01 +0000 | [diff] [blame] | 194 | range_error::~range_error() _NOEXCEPT {} |
| 195 | overflow_error::~overflow_error() _NOEXCEPT {} |
| 196 | underflow_error::~underflow_error() _NOEXCEPT {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 197 | |
Howard Hinnant | e1642e1 | 2012-02-17 19:24:42 +0000 | [diff] [blame] | 198 | #endif |
| 199 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 200 | } // std |