2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===----------------------------- new ------------------------------------===//
|
|
|
|
//
|
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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_NEW
|
|
|
|
#define _LIBCPP_NEW
|
|
|
|
|
|
|
|
/*
|
|
|
|
new synopsis
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
|
|
|
|
class bad_alloc
|
|
|
|
: public exception
|
|
|
|
{
|
|
|
|
public:
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_alloc() noexcept;
|
|
|
|
bad_alloc(const bad_alloc&) noexcept;
|
|
|
|
bad_alloc& operator=(const bad_alloc&) noexcept;
|
|
|
|
virtual const char* what() const noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
class bad_array_length : public bad_alloc // FIXME: Not part of C++
|
2013-09-11 09:38:42 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
bad_array_length() noexcept;
|
|
|
|
};
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
class bad_array_new_length : public bad_alloc // C++14
|
2013-09-11 09:38:42 +08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
bad_array_new_length() noexcept;
|
|
|
|
};
|
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
enum class align_val_t : size_t {}; // C++17
|
2010-05-12 03:42:16 +08:00
|
|
|
struct nothrow_t {};
|
|
|
|
extern const nothrow_t nothrow;
|
|
|
|
typedef void (*new_handler)();
|
2011-05-27 02:23:59 +08:00
|
|
|
new_handler set_new_handler(new_handler new_p) noexcept;
|
|
|
|
new_handler get_new_handler() noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2017-11-23 03:49:03 +08:00
|
|
|
// 21.6.4, pointer optimization barrier
|
|
|
|
template <class T> constexpr T* launder(T* p) noexcept; // C++17
|
2010-05-12 03:42:16 +08:00
|
|
|
} // std
|
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
void* operator new(std::size_t size); // replaceable, nodiscard in C++2a
|
|
|
|
void* operator new(std::size_t size, std::align_val_t alignment); // replaceable, C++17, nodiscard in C++2a
|
|
|
|
void* operator new(std::size_t size, const std::nothrow_t&) noexcept; // replaceable, nodiscard in C++2a
|
2016-10-14 14:46:30 +08:00
|
|
|
void* operator new(std::size_t size, std::align_val_t alignment,
|
2017-12-05 07:03:42 +08:00
|
|
|
const std::nothrow_t&) noexcept; // replaceable, C++17, nodiscard in C++2a
|
2011-05-27 02:23:59 +08:00
|
|
|
void operator delete(void* ptr) noexcept; // replaceable
|
2015-02-15 13:18:55 +08:00
|
|
|
void operator delete(void* ptr, std::size_t size) noexcept; // replaceable, C++14
|
2016-10-14 14:46:30 +08:00
|
|
|
void operator delete(void* ptr, std::align_val_t alignment) noexcept; // replaceable, C++17
|
|
|
|
void operator delete(void* ptr, std::size_t size,
|
|
|
|
std::align_val_t alignment) noexcept; // replaceable, C++17
|
2011-05-27 02:23:59 +08:00
|
|
|
void operator delete(void* ptr, const std::nothrow_t&) noexcept; // replaceable
|
2016-10-14 14:46:30 +08:00
|
|
|
void operator delete(void* ptr, std:align_val_t alignment,
|
|
|
|
const std::nothrow_t&) noexcept; // replaceable, C++17
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
void* operator new[](std::size_t size); // replaceable, nodiscard in C++2a
|
2016-10-14 14:46:30 +08:00
|
|
|
void* operator new[](std::size_t size,
|
2017-12-05 07:03:42 +08:00
|
|
|
std::align_val_t alignment) noexcept; // replaceable, C++17, nodiscard in C++2a
|
|
|
|
void* operator new[](std::size_t size, const std::nothrow_t&) noexcept; // replaceable, nodiscard in C++2a
|
2016-10-14 14:46:30 +08:00
|
|
|
void* operator new[](std::size_t size, std::align_val_t alignment,
|
2017-12-05 07:03:42 +08:00
|
|
|
const std::nothrow_t&) noexcept; // replaceable, C++17, nodiscard in C++2a
|
2011-05-27 02:23:59 +08:00
|
|
|
void operator delete[](void* ptr) noexcept; // replaceable
|
2015-02-15 13:18:55 +08:00
|
|
|
void operator delete[](void* ptr, std::size_t size) noexcept; // replaceable, C++14
|
2016-10-14 14:46:30 +08:00
|
|
|
void operator delete[](void* ptr,
|
|
|
|
std::align_val_t alignment) noexcept; // replaceable, C++17
|
|
|
|
void operator delete[](void* ptr, std::size_t size,
|
|
|
|
std::align_val_t alignment) noexcept; // replaceable, C++17
|
2011-05-27 02:23:59 +08:00
|
|
|
void operator delete[](void* ptr, const std::nothrow_t&) noexcept; // replaceable
|
2016-10-14 14:46:30 +08:00
|
|
|
void operator delete[](void* ptr, std::align_val_t alignment,
|
|
|
|
const std::nothrow_t&) noexcept; // replaceable, C++17
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
void* operator new (std::size_t size, void* ptr) noexcept; // nodiscard in C++2a
|
|
|
|
void* operator new[](std::size_t size, void* ptr) noexcept; // nodiscard in C++2a
|
2011-05-27 02:23:59 +08:00
|
|
|
void operator delete (void* ptr, void*) noexcept;
|
|
|
|
void operator delete[](void* ptr, void*) noexcept;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <__config>
|
|
|
|
#include <exception>
|
2018-03-22 12:42:56 +08:00
|
|
|
#include <type_traits>
|
2010-05-12 03:42:16 +08:00
|
|
|
#include <cstddef>
|
2016-09-07 05:25:27 +08:00
|
|
|
#ifdef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
#include <cstdlib>
|
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2017-10-10 03:25:17 +08:00
|
|
|
#if defined(_LIBCPP_ABI_MICROSOFT) && !defined(_LIBCPP_NO_VCRUNTIME)
|
2017-02-10 16:57:35 +08:00
|
|
|
#include <new.h>
|
|
|
|
#endif
|
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2010-05-12 03:42:16 +08:00
|
|
|
#pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
#if !(defined(_LIBCPP_BUILDING_NEW) || _LIBCPP_STD_VER >= 14 || \
|
|
|
|
(defined(__cpp_sized_deallocation) && __cpp_sized_deallocation >= 201309))
|
|
|
|
# define _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
|
|
|
#endif
|
|
|
|
|
2017-01-20 09:47:26 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) && \
|
|
|
|
(!(defined(_LIBCPP_BUILDING_NEW) || _LIBCPP_STD_VER > 14 || \
|
|
|
|
(defined(__cpp_aligned_new) && __cpp_aligned_new >= 201606)))
|
2016-10-14 14:46:30 +08:00
|
|
|
# define _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
|
|
|
#endif
|
|
|
|
|
2018-03-22 12:42:56 +08:00
|
|
|
|
|
|
|
#if !__has_builtin(__builtin_operator_new) || \
|
|
|
|
__has_builtin(__builtin_operator_new) < 201802L || \
|
|
|
|
defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) || \
|
|
|
|
!defined(__cpp_aligned_new) || __cpp_aligned_new < 201606
|
|
|
|
#define _LIBCPP_HAS_NO_BUILTIN_ALIGNED_OPERATOR_NEW_DELETE
|
|
|
|
#endif
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
namespace std // purposefully not using versioning namespace
|
|
|
|
{
|
|
|
|
|
2017-10-10 03:25:17 +08:00
|
|
|
#if !defined(_LIBCPP_ABI_MICROSOFT) || defined(_LIBCPP_NO_VCRUNTIME)
|
2017-02-10 16:57:35 +08:00
|
|
|
struct _LIBCPP_TYPE_VIS nothrow_t {};
|
|
|
|
extern _LIBCPP_FUNC_VIS const nothrow_t nothrow;
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
class _LIBCPP_EXCEPTION_ABI bad_alloc
|
|
|
|
: public exception
|
|
|
|
{
|
|
|
|
public:
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_alloc() _NOEXCEPT;
|
|
|
|
virtual ~bad_alloc() _NOEXCEPT;
|
|
|
|
virtual const char* what() const _NOEXCEPT;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class _LIBCPP_EXCEPTION_ABI bad_array_new_length
|
|
|
|
: public bad_alloc
|
|
|
|
{
|
|
|
|
public:
|
2011-05-27 02:23:59 +08:00
|
|
|
bad_array_new_length() _NOEXCEPT;
|
|
|
|
virtual ~bad_array_new_length() _NOEXCEPT;
|
|
|
|
virtual const char* what() const _NOEXCEPT;
|
2010-05-12 03:42:16 +08:00
|
|
|
};
|
|
|
|
|
2017-02-10 16:57:35 +08:00
|
|
|
typedef void (*new_handler)();
|
|
|
|
_LIBCPP_FUNC_VIS new_handler set_new_handler(new_handler) _NOEXCEPT;
|
|
|
|
_LIBCPP_FUNC_VIS new_handler get_new_handler() _NOEXCEPT;
|
|
|
|
|
2017-10-10 03:25:17 +08:00
|
|
|
#endif // !_LIBCPP_ABI_MICROSOFT || _LIBCPP_NO_VCRUNTIME
|
2017-02-10 16:57:35 +08:00
|
|
|
|
2016-08-25 23:09:01 +08:00
|
|
|
_LIBCPP_NORETURN _LIBCPP_FUNC_VIS void __throw_bad_alloc(); // not in C++ spec
|
|
|
|
|
2017-02-10 16:57:35 +08:00
|
|
|
#if defined(_LIBCPP_BUILDING_LIBRARY) || (_LIBCPP_STD_VER > 11)
|
2013-11-08 01:15:51 +08:00
|
|
|
|
2017-05-05 01:08:54 +08:00
|
|
|
class _LIBCPP_EXCEPTION_ABI _LIBCPP_AVAILABILITY_BAD_ARRAY_LENGTH
|
|
|
|
bad_array_length : public bad_alloc {
|
2013-09-11 09:38:42 +08:00
|
|
|
public:
|
|
|
|
bad_array_length() _NOEXCEPT;
|
|
|
|
virtual ~bad_array_length() _NOEXCEPT;
|
|
|
|
virtual const char* what() const _NOEXCEPT;
|
|
|
|
};
|
2013-11-08 01:15:51 +08:00
|
|
|
|
|
|
|
#define _LIBCPP_BAD_ARRAY_LENGTH_DEFINED
|
|
|
|
|
|
|
|
#endif // defined(_LIBCPP_BUILDING_NEW) || (_LIBCPP_STD_VER > 11)
|
2013-09-11 09:38:42 +08:00
|
|
|
|
2018-02-12 06:00:19 +08:00
|
|
|
#if !defined(_LIBCPP_ABI_MICROSOFT) || defined(_LIBCPP_NO_VCRUNTIME)
|
2017-01-21 22:42:44 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_ALIGNED_ALLOCATION) || _LIBCPP_STD_VER > 14
|
2016-10-14 14:46:30 +08:00
|
|
|
#ifndef _LIBCPP_CXX03_LANG
|
|
|
|
enum class _LIBCPP_ENUM_VIS align_val_t : size_t { };
|
|
|
|
#else
|
|
|
|
enum align_val_t { __zero = 0, __max = (size_t)-1 };
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-02-12 06:00:19 +08:00
|
|
|
#endif
|
2016-10-14 14:46:30 +08:00
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
} // std
|
|
|
|
|
2017-01-03 07:27:42 +08:00
|
|
|
#if defined(_LIBCPP_CXX03_LANG)
|
2016-10-14 14:46:30 +08:00
|
|
|
#define _THROW_BAD_ALLOC throw(std::bad_alloc)
|
|
|
|
#else
|
|
|
|
#define _THROW_BAD_ALLOC
|
2011-05-27 02:23:59 +08:00
|
|
|
#endif
|
2016-10-14 14:46:30 +08:00
|
|
|
|
2017-10-10 03:25:17 +08:00
|
|
|
#if !defined(_LIBCPP_ABI_MICROSOFT) || defined(_LIBCPP_NO_VCRUNTIME)
|
2017-02-10 16:57:35 +08:00
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new(std::size_t __sz) _THROW_BAD_ALLOC;
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new(std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
|
2016-11-17 06:18:10 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p) _NOEXCEPT;
|
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT;
|
2016-10-14 14:46:30 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
2017-05-05 01:08:54 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_AVAILABILITY_SIZED_NEW_DELETE void operator delete(void* __p, std::size_t __sz) _NOEXCEPT;
|
2015-02-20 14:13:05 +08:00
|
|
|
#endif
|
2011-05-27 02:23:59 +08:00
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new[](std::size_t __sz) _THROW_BAD_ALLOC;
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new[](std::size_t __sz, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
|
2016-11-17 06:18:10 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p) _NOEXCEPT;
|
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p, const std::nothrow_t&) _NOEXCEPT;
|
2016-11-18 12:31:09 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
2017-05-05 01:08:54 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_AVAILABILITY_SIZED_NEW_DELETE void operator delete[](void* __p, std::size_t __sz) _NOEXCEPT;
|
2015-02-20 14:13:05 +08:00
|
|
|
#endif
|
2013-08-13 02:38:34 +08:00
|
|
|
|
2016-10-14 14:46:30 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
2017-12-05 07:03:42 +08:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new(std::size_t __sz, std::align_val_t) _THROW_BAD_ALLOC;
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new(std::size_t __sz, std::align_val_t, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
|
2017-07-01 02:50:23 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, std::align_val_t) _NOEXCEPT;
|
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, std::align_val_t, const std::nothrow_t&) _NOEXCEPT;
|
2016-10-14 14:46:30 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
2017-07-01 02:50:23 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_AVAILABILITY_SIZED_NEW_DELETE void operator delete(void* __p, std::size_t __sz, std::align_val_t) _NOEXCEPT;
|
2016-10-14 14:46:30 +08:00
|
|
|
#endif
|
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new[](std::size_t __sz, std::align_val_t) _THROW_BAD_ALLOC;
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_OVERRIDABLE_FUNC_VIS void* operator new[](std::size_t __sz, std::align_val_t, const std::nothrow_t&) _NOEXCEPT _NOALIAS;
|
2017-07-01 02:50:23 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p, std::align_val_t) _NOEXCEPT;
|
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p, std::align_val_t, const std::nothrow_t&) _NOEXCEPT;
|
2016-10-14 14:46:30 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_SIZED_DEALLOCATION
|
2017-07-01 02:50:23 +08:00
|
|
|
_LIBCPP_OVERRIDABLE_FUNC_VIS _LIBCPP_AVAILABILITY_SIZED_NEW_DELETE void operator delete[](void* __p, std::size_t __sz, std::align_val_t) _NOEXCEPT;
|
2016-10-14 14:46:30 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-12-05 07:03:42 +08:00
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY void* operator new (std::size_t, void* __p) _NOEXCEPT {return __p;}
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY void* operator new[](std::size_t, void* __p) _NOEXCEPT {return __p;}
|
2013-10-05 06:09:00 +08:00
|
|
|
inline _LIBCPP_INLINE_VISIBILITY void operator delete (void*, void*) _NOEXCEPT {}
|
|
|
|
inline _LIBCPP_INLINE_VISIBILITY void operator delete[](void*, void*) _NOEXCEPT {}
|
2010-05-12 03:42:16 +08:00
|
|
|
|
2017-10-10 03:25:17 +08:00
|
|
|
#endif // !_LIBCPP_ABI_MICROSOFT || _LIBCPP_NO_VCRUNTIME
|
2017-02-10 16:57:35 +08:00
|
|
|
|
2014-06-05 03:54:15 +08:00
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2018-03-22 12:42:56 +08:00
|
|
|
_LIBCPP_CONSTEXPR inline _LIBCPP_INLINE_VISIBILITY bool __is_overaligned_for_new(size_t __align) _NOEXCEPT {
|
|
|
|
#ifdef __STDCPP_DEFAULT_NEW_ALIGNMENT__
|
|
|
|
return __align > __STDCPP_DEFAULT_NEW_ALIGNMENT__;
|
|
|
|
#else
|
|
|
|
return __align > alignment_of<max_align_t>::value;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
inline _LIBCPP_INLINE_VISIBILITY void *__libcpp_allocate(size_t __size, size_t __align) {
|
|
|
|
#ifndef _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
|
|
|
if (__is_overaligned_for_new(__align)) {
|
|
|
|
const align_val_t __align_val = static_cast<align_val_t>(__align);
|
|
|
|
# ifdef _LIBCPP_HAS_NO_BUILTIN_ALIGNED_OPERATOR_NEW_DELETE
|
|
|
|
return ::operator new(__size, __align_val);
|
|
|
|
# else
|
|
|
|
return __builtin_operator_new(__size, __align_val);
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
((void)__align);
|
|
|
|
#endif
|
2014-06-05 03:54:15 +08:00
|
|
|
#ifdef _LIBCPP_HAS_NO_BUILTIN_OPERATOR_NEW_DELETE
|
|
|
|
return ::operator new(__size);
|
|
|
|
#else
|
|
|
|
return __builtin_operator_new(__size);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-03-22 12:42:56 +08:00
|
|
|
inline _LIBCPP_INLINE_VISIBILITY void __libcpp_deallocate(void* __ptr, size_t __align) {
|
|
|
|
#ifndef _LIBCPP_HAS_NO_ALIGNED_ALLOCATION
|
|
|
|
if (__is_overaligned_for_new(__align)) {
|
|
|
|
const align_val_t __align_val = static_cast<align_val_t>(__align);
|
|
|
|
# ifdef _LIBCPP_HAS_NO_BUILTIN_ALIGNED_OPERATOR_NEW_DELETE
|
|
|
|
return ::operator delete(__ptr, __align_val);
|
|
|
|
# else
|
|
|
|
return __builtin_operator_delete(__ptr, __align_val);
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
((void)__align);
|
|
|
|
#endif
|
2014-06-05 03:54:15 +08:00
|
|
|
#ifdef _LIBCPP_HAS_NO_BUILTIN_OPERATOR_NEW_DELETE
|
2018-03-22 12:42:56 +08:00
|
|
|
return ::operator delete(__ptr);
|
2014-06-05 03:54:15 +08:00
|
|
|
#else
|
2018-03-22 12:42:56 +08:00
|
|
|
return __builtin_operator_delete(__ptr);
|
2014-06-05 03:54:15 +08:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2016-08-25 23:09:01 +08:00
|
|
|
#ifdef _LIBCPP_BAD_ARRAY_LENGTH_DEFINED
|
2018-07-12 07:14:33 +08:00
|
|
|
_LIBCPP_NORETURN inline _LIBCPP_INLINE_VISIBILITY
|
2017-05-05 01:08:54 +08:00
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
_LIBCPP_AVAILABILITY_BAD_ARRAY_LENGTH
|
|
|
|
#endif
|
2016-08-25 23:09:01 +08:00
|
|
|
void __throw_bad_array_length()
|
|
|
|
{
|
|
|
|
#ifndef _LIBCPP_NO_EXCEPTIONS
|
|
|
|
throw bad_array_length();
|
|
|
|
#else
|
|
|
|
_VSTD::abort();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-11-23 03:49:03 +08:00
|
|
|
template <class _Tp>
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 inline
|
|
|
|
_LIBCPP_CONSTEXPR _Tp* __launder(_Tp* __p) _NOEXCEPT
|
|
|
|
{
|
|
|
|
static_assert (!(is_function<_Tp>::value), "can't launder functions" );
|
|
|
|
static_assert (!(is_same<void, typename remove_cv<_Tp>::type>::value), "can't launder cv-void" );
|
|
|
|
#ifdef _LIBCPP_COMPILER_HAS_BUILTIN_LAUNDER
|
|
|
|
return __builtin_launder(__p);
|
|
|
|
#else
|
|
|
|
return __p;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if _LIBCPP_STD_VER > 14
|
|
|
|
template <class _Tp>
|
|
|
|
_LIBCPP_NODISCARD_AFTER_CXX17 inline _LIBCPP_INLINE_VISIBILITY
|
|
|
|
constexpr _Tp* launder(_Tp* __p) noexcept
|
|
|
|
{
|
2017-11-23 09:25:03 +08:00
|
|
|
return _VSTD::__launder(__p);
|
2017-11-23 03:49:03 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-06-05 03:54:15 +08:00
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
2010-05-12 03:42:16 +08:00
|
|
|
#endif // _LIBCPP_NEW
|