blob: 874ad6c02302c87bb8db64361bf081316a00dff8 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===--------------------------- new.cpp ----------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
Howard Hinnantadff4892010-05-24 17:49:41 +000010#include <stdlib.h>
Nick Kledzik804b6e72010-05-14 20:19:37 +000011
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000012#include "new"
13
Nick Kledzik804b6e72010-05-14 20:19:37 +000014#if __APPLE__
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000015 #include <cxxabi.h>
Nick Kledzik804b6e72010-05-14 20:19:37 +000016 // On Darwin, there are two STL shared libraries and a lower level ABI
Howard Hinnantd5109772010-08-22 13:53:14 +000017 // shared libray. The global holding the current new handler is
Nick Kledzik804b6e72010-05-14 20:19:37 +000018 // in the ABI library and named __cxa_new_handler.
19 #define __new_handler __cxxabiapple::__cxa_new_handler
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000020#else // __APPLE__
Howard Hinnantd5109772010-08-22 13:53:14 +000021 static std::new_handler __new_handler;
Nick Kledzik804b6e72010-05-14 20:19:37 +000022#endif
23
Nick Kledzik804b6e72010-05-14 20:19:37 +000024// 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 Kledzik804b6e72010-05-14 20:19:37 +000028__attribute__((__weak__, __visibility__("default")))
29void *
30operator 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 Hinnantd5109772010-08-22 13:53:14 +000037 // If malloc fails and there is a new_handler,
38 // call it to try free up memory.
Nick Kledzik804b6e72010-05-14 20:19:37 +000039 if (__new_handler)
40 __new_handler();
41 else
Howard Hinnantd4444702010-08-11 17:04:31 +000042#ifndef _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000043 throw std::bad_alloc();
Howard Hinnantd4444702010-08-11 17:04:31 +000044#else
45 break;
46#endif
Nick Kledzik804b6e72010-05-14 20:19:37 +000047 }
48 return p;
49}
50
51__attribute__((__weak__, __visibility__("default")))
52void*
53operator new(size_t size, const std::nothrow_t&) throw()
54{
55 void* p = 0;
Howard Hinnantd4444702010-08-11 17:04:31 +000056#ifndef _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000057 try
58 {
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000059#endif // _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000060 p = ::operator new(size);
Howard Hinnantd4444702010-08-11 17:04:31 +000061#ifndef _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000062 }
63 catch (...)
64 {
65 }
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000066#endif // _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000067 return p;
68}
69
70__attribute__((__weak__, __visibility__("default")))
71void*
72operator new[](size_t size) throw (std::bad_alloc)
73{
74 return ::operator new(size);
75}
76
77__attribute__((__weak__, __visibility__("default")))
78void*
79operator new[](size_t size, const std::nothrow_t& nothrow) throw()
80{
81 void* p = 0;
Howard Hinnantd4444702010-08-11 17:04:31 +000082#ifndef _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000083 try
84 {
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000085#endif // _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000086 p = ::operator new[](size);
Howard Hinnantd4444702010-08-11 17:04:31 +000087#ifndef _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000088 }
89 catch (...)
90 {
91 }
Howard Hinnant16e6e1d2010-08-22 00:03:27 +000092#endif // _LIBCPP_NO_EXCEPTIONS
Nick Kledzik804b6e72010-05-14 20:19:37 +000093 return p;
94}
95
96__attribute__((__weak__, __visibility__("default")))
97void
98operator delete(void* ptr) throw ()
99{
100 if (ptr)
101 ::free(ptr);
102}
103
104__attribute__((__weak__, __visibility__("default")))
105void
106operator delete(void* ptr, const std::nothrow_t&) throw ()
107{
108 ::operator delete(ptr);
109}
110
Nick Kledzik804b6e72010-05-14 20:19:37 +0000111__attribute__((__weak__, __visibility__("default")))
112void
113operator delete[] (void* ptr) throw ()
114{
115 ::operator delete (ptr);
116}
117
118__attribute__((__weak__, __visibility__("default")))
119void
120operator delete[] (void* ptr, const std::nothrow_t&) throw ()
121{
122 ::operator delete[](ptr);
123}
124
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000125namespace std
126{
127
Nick Kledzik76fdaa72010-05-18 22:17:13 +0000128const nothrow_t nothrow = {};
129
130new_handler
131set_new_handler(new_handler handler) throw()
132{
133 new_handler r = __new_handler;
134 __new_handler = handler;
135 return r;
136}
137
Howard Hinnant16e6e1d2010-08-22 00:03:27 +0000138bad_alloc::bad_alloc() throw()
139{
Nick Kledzik804b6e72010-05-14 20:19:37 +0000140}
141
Howard Hinnant16e6e1d2010-08-22 00:03:27 +0000142bad_alloc::~bad_alloc() throw()
143{
Nick Kledzik804b6e72010-05-14 20:19:37 +0000144}
145
Howard Hinnant16e6e1d2010-08-22 00:03:27 +0000146const char*
Nick Kledzik804b6e72010-05-14 20:19:37 +0000147bad_alloc::what() const throw()
148{
149 return "std::bad_alloc";
150}
151
Nick Kledzik804b6e72010-05-14 20:19:37 +0000152bad_array_new_length::bad_array_new_length() throw()
153{
154}
155
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000156bad_array_new_length::~bad_array_new_length() throw()
157{
158}
159
160const char*
161bad_array_new_length::what() const throw()
162{
163 return "bad_array_new_length";
164}
165
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000166void
167__throw_bad_alloc()
168{
Howard Hinnantd4444702010-08-11 17:04:31 +0000169#ifndef _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000170 throw bad_alloc();
Howard Hinnantd4444702010-08-11 17:04:31 +0000171#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000172}
173
174} // std