2010-05-12 03:42:16 +08:00
|
|
|
//===--------------------------- new.cpp ----------------------------------===//
|
|
|
|
//
|
2010-05-12 05:36:01 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
2010-11-17 06:09:02 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-09-11 09:38:42 +08:00
|
|
|
#define _LIBCPP_BUILDING_NEW
|
|
|
|
|
2010-05-25 01:49:41 +08:00
|
|
|
#include <stdlib.h>
|
2010-05-15 04:19:37 +08:00
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
#include "new"
|
|
|
|
|
2014-11-01 08:41:42 +08:00
|
|
|
#if defined(__APPLE__) && !defined(LIBCXXRT)
|
2010-08-22 08:03:27 +08:00
|
|
|
#include <cxxabi.h>
|
2012-02-03 04:48:35 +08:00
|
|
|
|
|
|
|
#ifndef _LIBCPPABI_VERSION
|
|
|
|
// On Darwin, there are two STL shared libraries and a lower level ABI
|
2013-11-12 07:27:19 +08:00
|
|
|
// shared library. The global holding the current new handler is
|
2012-02-03 04:48:35 +08:00
|
|
|
// in the ABI library and named __cxa_new_handler.
|
|
|
|
#define __new_handler __cxxabiapple::__cxa_new_handler
|
|
|
|
#endif
|
2010-08-22 08:03:27 +08:00
|
|
|
#else // __APPLE__
|
2015-10-16 19:14:30 +08:00
|
|
|
#if defined(LIBCXXRT) || defined(LIBCXX_BUILDING_LIBCXXABI)
|
2012-07-27 01:42:39 +08:00
|
|
|
#include <cxxabi.h>
|
2015-10-16 19:14:30 +08:00
|
|
|
#endif // defined(LIBCXX_BUILDING_LIBCXXABI)
|
2013-10-07 06:13:16 +08:00
|
|
|
#if !defined(_LIBCPPABI_VERSION) && !defined(__GLIBCXX__)
|
2012-07-27 01:42:39 +08:00
|
|
|
static std::new_handler __new_handler;
|
|
|
|
#endif // _LIBCPPABI_VERSION
|
2010-05-15 04:19:37 +08:00
|
|
|
#endif
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#ifndef __GLIBCXX__
|
|
|
|
|
2010-05-15 04:19:37 +08:00
|
|
|
// Implement all new and delete operators as weak definitions
|
2015-08-20 13:23:16 +08:00
|
|
|
// in this shared library, so that they can be overridden by programs
|
2010-05-15 04:19:37 +08:00
|
|
|
// that define non-weak copies of the functions.
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void *
|
2016-10-14 14:46:30 +08:00
|
|
|
operator new(std::size_t size) _THROW_BAD_ALLOC
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
if (size == 0)
|
|
|
|
size = 1;
|
|
|
|
void* p;
|
|
|
|
while ((p = ::malloc(size)) == 0)
|
|
|
|
{
|
2010-08-22 21:53:14 +08:00
|
|
|
// If malloc fails and there is a new_handler,
|
|
|
|
// call it to try free up memory.
|
2010-12-05 03:56:43 +08:00
|
|
|
std::new_handler nh = std::get_new_handler();
|
2010-12-05 03:54:11 +08:00
|
|
|
if (nh)
|
|
|
|
nh();
|
2010-05-15 04:19:37 +08:00
|
|
|
else
|
2010-08-12 01:04:31 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
throw std::bad_alloc();
|
2010-08-12 01:04:31 +08:00
|
|
|
#else
|
|
|
|
break;
|
|
|
|
#endif
|
2010-05-15 04:19:37 +08:00
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void *
|
|
|
|
operator new(std::size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC
|
|
|
|
{
|
|
|
|
if (size == 0)
|
|
|
|
size = 1;
|
|
|
|
if (static_cast<size_t>(alignment) < sizeof(void*))
|
|
|
|
alignment = std::align_val_t(sizeof(void*));
|
|
|
|
void* p;
|
|
|
|
while (::posix_memalign(&p, static_cast<size_t>(alignment), size) != 0)
|
|
|
|
{
|
|
|
|
// If posix_memalign fails and there is a new_handler,
|
|
|
|
// call it to try free up memory.
|
|
|
|
std::new_handler nh = std::get_new_handler();
|
|
|
|
if (nh)
|
|
|
|
nh();
|
|
|
|
else {
|
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
throw std::bad_alloc();
|
|
|
|
#else
|
|
|
|
p = nullptr; // posix_memalign doesn't initialize 'p' on failure
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void*
|
2011-05-27 02:23:59 +08:00
|
|
|
operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
void* p = 0;
|
2010-08-12 01:04:31 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
try
|
|
|
|
{
|
2010-08-22 08:03:27 +08:00
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
p = ::operator new(size);
|
2010-08-12 01:04:31 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
}
|
2010-08-22 08:03:27 +08:00
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void*
|
2016-10-14 14:46:30 +08:00
|
|
|
operator new(size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
|
|
|
|
{
|
|
|
|
void* p = 0;
|
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
try
|
|
|
|
{
|
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
|
|
|
p = ::operator new(size, alignment);
|
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void*
|
|
|
|
operator new[](size_t size) _THROW_BAD_ALLOC
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
return ::operator new(size);
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void*
|
|
|
|
operator new[](size_t size, std::align_val_t alignment) _THROW_BAD_ALLOC
|
|
|
|
{
|
|
|
|
return ::operator new(size, alignment);
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void*
|
2011-12-02 04:21:04 +08:00
|
|
|
operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
void* p = 0;
|
2010-08-12 01:04:31 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
try
|
|
|
|
{
|
2010-08-22 08:03:27 +08:00
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
p = ::operator new[](size);
|
2010-08-12 01:04:31 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
}
|
2010-08-22 08:03:27 +08:00
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
2010-05-15 04:19:37 +08:00
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void*
|
|
|
|
operator new[](size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
|
|
|
|
{
|
|
|
|
void* p = 0;
|
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
try
|
|
|
|
{
|
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
|
|
|
p = ::operator new[](size, alignment);
|
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
}
|
|
|
|
catch (...)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif // _LIBCPP_NO_EXCEPTIONS
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void
|
2011-05-27 02:23:59 +08:00
|
|
|
operator delete(void* ptr) _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
if (ptr)
|
|
|
|
::free(ptr);
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
|
|
|
operator delete(void* ptr, std::align_val_t) _NOEXCEPT
|
|
|
|
{
|
|
|
|
if (ptr)
|
|
|
|
::free(ptr);
|
|
|
|
}
|
|
|
|
|
2015-02-15 13:18:55 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
2015-02-20 14:13:05 +08:00
|
|
|
operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
|
2015-02-15 13:18:55 +08:00
|
|
|
{
|
|
|
|
::operator delete(ptr);
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
|
|
|
operator delete(void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
|
|
|
|
{
|
|
|
|
::operator delete(ptr, alignment);
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void
|
2015-02-20 14:13:05 +08:00
|
|
|
operator delete(void* ptr, size_t) _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
::operator delete(ptr);
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
|
|
|
operator delete(void* ptr, size_t, std::align_val_t alignment) _NOEXCEPT
|
|
|
|
{
|
|
|
|
::operator delete(ptr, alignment);
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void
|
2011-05-27 02:23:59 +08:00
|
|
|
operator delete[] (void* ptr) _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
2015-02-15 13:18:55 +08:00
|
|
|
::operator delete(ptr);
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
|
|
|
operator delete[] (void* ptr, std::align_val_t alignment) _NOEXCEPT
|
|
|
|
{
|
|
|
|
::operator delete(ptr, alignment);
|
|
|
|
}
|
|
|
|
|
2015-02-15 13:18:55 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
2015-02-20 14:13:05 +08:00
|
|
|
operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
|
2015-02-15 13:18:55 +08:00
|
|
|
{
|
|
|
|
::operator delete[](ptr);
|
2010-05-15 04:19:37 +08:00
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
|
|
|
operator delete[] (void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
|
|
|
|
{
|
|
|
|
::operator delete[](ptr, alignment);
|
|
|
|
}
|
|
|
|
|
2013-10-07 04:53:24 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
2010-05-15 04:19:37 +08:00
|
|
|
void
|
2015-02-20 14:13:05 +08:00
|
|
|
operator delete[] (void* ptr, size_t) _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
::operator delete[](ptr);
|
|
|
|
}
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
_LIBCPP_WEAK _LIBCPP_NEW_DELETE_VIS
|
|
|
|
void
|
|
|
|
operator delete[] (void* ptr, size_t, std::align_val_t alignment) _NOEXCEPT
|
|
|
|
{
|
|
|
|
::operator delete[](ptr, alignment);
|
|
|
|
}
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#endif // !__GLIBCXX__
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#ifndef __GLIBCXX__
|
2010-05-19 06:17:13 +08:00
|
|
|
const nothrow_t nothrow = {};
|
2013-10-07 06:13:16 +08:00
|
|
|
#endif
|
2010-05-19 06:17:13 +08:00
|
|
|
|
2012-02-03 04:48:35 +08:00
|
|
|
#ifndef _LIBCPPABI_VERSION
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#ifndef __GLIBCXX__
|
|
|
|
|
2010-05-19 06:17:13 +08:00
|
|
|
new_handler
|
2011-05-27 02:23:59 +08:00
|
|
|
set_new_handler(new_handler handler) _NOEXCEPT
|
2010-05-19 06:17:13 +08:00
|
|
|
{
|
2010-12-03 00:45:21 +08:00
|
|
|
return __sync_lock_test_and_set(&__new_handler, handler);
|
|
|
|
}
|
|
|
|
|
|
|
|
new_handler
|
2011-05-27 02:23:59 +08:00
|
|
|
get_new_handler() _NOEXCEPT
|
2010-12-03 00:45:21 +08:00
|
|
|
{
|
2014-01-05 01:43:00 +08:00
|
|
|
return __sync_fetch_and_add(&__new_handler, nullptr);
|
2010-05-19 06:17:13 +08:00
|
|
|
}
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#endif // !__GLIBCXX__
|
|
|
|
|
2012-02-29 20:59:17 +08:00
|
|
|
#ifndef LIBCXXRT
|
|
|
|
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_alloc::bad_alloc() _NOEXCEPT
|
2010-08-22 08:03:27 +08:00
|
|
|
{
|
2010-05-15 04:19:37 +08:00
|
|
|
}
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#ifndef __GLIBCXX__
|
|
|
|
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_alloc::~bad_alloc() _NOEXCEPT
|
2010-08-22 08:03:27 +08:00
|
|
|
{
|
2010-05-15 04:19:37 +08:00
|
|
|
}
|
|
|
|
|
2010-08-22 08:03:27 +08:00
|
|
|
const char*
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_alloc::what() const _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
return "std::bad_alloc";
|
|
|
|
}
|
|
|
|
|
2013-10-07 06:13:16 +08:00
|
|
|
#endif // !__GLIBCXX__
|
|
|
|
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_array_new_length::bad_array_new_length() _NOEXCEPT
|
2010-05-15 04:19:37 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_array_new_length::~bad_array_new_length() _NOEXCEPT
|
2010-05-12 03:42:16 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-11-01 08:11:25 +08:00
|
|
|
const char*
|
|
|
|
bad_array_new_length::what() const _NOEXCEPT
|
|
|
|
{
|
|
|
|
return "bad_array_new_length";
|
|
|
|
}
|
|
|
|
|
2014-10-30 07:14:53 +08:00
|
|
|
#endif //LIBCXXRT
|
|
|
|
|
2013-09-11 09:38:42 +08:00
|
|
|
const char*
|
|
|
|
bad_array_length::what() const _NOEXCEPT
|
|
|
|
{
|
|
|
|
return "bad_array_length";
|
|
|
|
}
|
|
|
|
|
|
|
|
bad_array_length::bad_array_length() _NOEXCEPT
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bad_array_length::~bad_array_length() _NOEXCEPT
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // _LIBCPPABI_VERSION
|
2012-02-03 04:48:35 +08:00
|
|
|
|
2013-10-07 06:13:19 +08:00
|
|
|
#ifndef LIBSTDCXX
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
void
|
|
|
|
__throw_bad_alloc()
|
|
|
|
{
|
2010-08-12 01:04:31 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
2010-05-12 03:42:16 +08:00
|
|
|
throw bad_alloc();
|
2016-08-25 23:09:01 +08:00
|
|
|
#else
|
|
|
|
_VSTD::abort();
|
2010-08-12 01:04:31 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
}
|
|
|
|
|
2013-10-07 06:13:19 +08:00
|
|
|
#endif // !LIBSTDCXX
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
} // std
|