Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===--------------------------- new.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 | |
Howard Hinnant | adff489 | 2010-05-24 17:49:41 +0000 | [diff] [blame] | 10 | #include <stdlib.h> |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 11 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 12 | #include "new" |
| 13 | |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 14 | #if __APPLE__ |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 15 | #include <cxxabi.h> |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 16 | // On Darwin, there are two STL shared libraries and a lower level ABI |
Howard Hinnant | d510977 | 2010-08-22 13:53:14 +0000 | [diff] [blame] | 17 | // shared libray. The global holding the current new handler is |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 18 | // in the ABI library and named __cxa_new_handler. |
| 19 | #define __new_handler __cxxabiapple::__cxa_new_handler |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 20 | #else // __APPLE__ |
Howard Hinnant | d510977 | 2010-08-22 13:53:14 +0000 | [diff] [blame] | 21 | static std::new_handler __new_handler; |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 22 | #endif |
| 23 | |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 24 | // Implement all new and delete operators as weak definitions |
| 25 | // in this shared library, so that they can be overriden by programs |
| 26 | // that define non-weak copies of the functions. |
| 27 | |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 28 | __attribute__((__weak__, __visibility__("default"))) |
| 29 | void * |
| 30 | operator new(std::size_t size) throw (std::bad_alloc) |
| 31 | { |
| 32 | if (size == 0) |
| 33 | size = 1; |
| 34 | void* p; |
| 35 | while ((p = ::malloc(size)) == 0) |
| 36 | { |
Howard Hinnant | d510977 | 2010-08-22 13:53:14 +0000 | [diff] [blame] | 37 | // If malloc fails and there is a new_handler, |
| 38 | // call it to try free up memory. |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 39 | if (__new_handler) |
| 40 | __new_handler(); |
| 41 | else |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 42 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 43 | throw std::bad_alloc(); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 44 | #else |
| 45 | break; |
| 46 | #endif |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 47 | } |
| 48 | return p; |
| 49 | } |
| 50 | |
| 51 | __attribute__((__weak__, __visibility__("default"))) |
| 52 | void* |
| 53 | operator new(size_t size, const std::nothrow_t&) throw() |
| 54 | { |
| 55 | void* p = 0; |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 56 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 57 | try |
| 58 | { |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 59 | #endif // _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 60 | p = ::operator new(size); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 61 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 62 | } |
| 63 | catch (...) |
| 64 | { |
| 65 | } |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 66 | #endif // _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 67 | return p; |
| 68 | } |
| 69 | |
| 70 | __attribute__((__weak__, __visibility__("default"))) |
| 71 | void* |
| 72 | operator new[](size_t size) throw (std::bad_alloc) |
| 73 | { |
| 74 | return ::operator new(size); |
| 75 | } |
| 76 | |
| 77 | __attribute__((__weak__, __visibility__("default"))) |
| 78 | void* |
| 79 | operator new[](size_t size, const std::nothrow_t& nothrow) throw() |
| 80 | { |
| 81 | void* p = 0; |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 82 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 83 | try |
| 84 | { |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 85 | #endif // _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 86 | p = ::operator new[](size); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 87 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 88 | } |
| 89 | catch (...) |
| 90 | { |
| 91 | } |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 92 | #endif // _LIBCPP_NO_EXCEPTIONS |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 93 | return p; |
| 94 | } |
| 95 | |
| 96 | __attribute__((__weak__, __visibility__("default"))) |
| 97 | void |
| 98 | operator delete(void* ptr) throw () |
| 99 | { |
| 100 | if (ptr) |
| 101 | ::free(ptr); |
| 102 | } |
| 103 | |
| 104 | __attribute__((__weak__, __visibility__("default"))) |
| 105 | void |
| 106 | operator delete(void* ptr, const std::nothrow_t&) throw () |
| 107 | { |
| 108 | ::operator delete(ptr); |
| 109 | } |
| 110 | |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 111 | __attribute__((__weak__, __visibility__("default"))) |
| 112 | void |
| 113 | operator delete[] (void* ptr) throw () |
| 114 | { |
| 115 | ::operator delete (ptr); |
| 116 | } |
| 117 | |
| 118 | __attribute__((__weak__, __visibility__("default"))) |
| 119 | void |
| 120 | operator delete[] (void* ptr, const std::nothrow_t&) throw () |
| 121 | { |
| 122 | ::operator delete[](ptr); |
| 123 | } |
| 124 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 125 | namespace std |
| 126 | { |
| 127 | |
Nick Kledzik | 76fdaa7 | 2010-05-18 22:17:13 +0000 | [diff] [blame] | 128 | const nothrow_t nothrow = {}; |
| 129 | |
| 130 | new_handler |
| 131 | set_new_handler(new_handler handler) throw() |
| 132 | { |
| 133 | new_handler r = __new_handler; |
| 134 | __new_handler = handler; |
| 135 | return r; |
| 136 | } |
| 137 | |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 138 | bad_alloc::bad_alloc() throw() |
| 139 | { |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 140 | } |
| 141 | |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 142 | bad_alloc::~bad_alloc() throw() |
| 143 | { |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 144 | } |
| 145 | |
Howard Hinnant | 16e6e1d | 2010-08-22 00:03:27 +0000 | [diff] [blame] | 146 | const char* |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 147 | bad_alloc::what() const throw() |
| 148 | { |
| 149 | return "std::bad_alloc"; |
| 150 | } |
| 151 | |
Nick Kledzik | 804b6e7 | 2010-05-14 20:19:37 +0000 | [diff] [blame] | 152 | bad_array_new_length::bad_array_new_length() throw() |
| 153 | { |
| 154 | } |
| 155 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 156 | bad_array_new_length::~bad_array_new_length() throw() |
| 157 | { |
| 158 | } |
| 159 | |
| 160 | const char* |
| 161 | bad_array_new_length::what() const throw() |
| 162 | { |
| 163 | return "bad_array_new_length"; |
| 164 | } |
| 165 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 166 | void |
| 167 | __throw_bad_alloc() |
| 168 | { |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 169 | #ifndef _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 170 | throw bad_alloc(); |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 171 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 172 | } |
| 173 | |
| 174 | } // std |