Prepare for running on top of new libc++abi.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@149634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant
2012-02-02 20:48:35 +00:00
parent b1bc0c4975
commit dea7f39af1
4 changed files with 234 additions and 13 deletions

View File

@@ -13,14 +13,19 @@
#if __APPLE__
#include <cxxabi.h>
// On Darwin, there are two STL shared libraries and a lower level ABI
// shared libray. The global holding the current new handler is
// in the ABI library and named __cxa_new_handler.
#define __new_handler __cxxabiapple::__cxa_new_handler
#ifndef _LIBCPPABI_VERSION
// On Darwin, there are two STL shared libraries and a lower level ABI
// shared libray. The global holding the current new handler is
// in the ABI library and named __cxa_new_handler.
#define __new_handler __cxxabiapple::__cxa_new_handler
#endif
#else // __APPLE__
static std::new_handler __new_handler;
#endif
#ifndef _LIBCPPABI_VERSION
// Implement all new and delete operators as weak definitions
// in this shared library, so that they can be overriden by programs
// that define non-weak copies of the functions.
@@ -129,11 +134,15 @@ operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
::operator delete[](ptr);
}
#endif
namespace std
{
const nothrow_t nothrow = {};
#ifndef _LIBCPPABI_VERSION
new_handler
set_new_handler(new_handler handler) _NOEXCEPT
{
@@ -174,6 +183,8 @@ bad_array_new_length::what() const _NOEXCEPT
return "bad_array_new_length";
}
#endif
void
__throw_bad_alloc()
{