29 #ifndef _NEW_ALLOCATOR_H 30 #define _NEW_ALLOCATOR_H 1 36 #if __cplusplus >= 201103L 40 namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
42 _GLIBCXX_BEGIN_NAMESPACE_VERSION
57 template<
typename _Tp>
61 typedef size_t size_type;
62 typedef ptrdiff_t difference_type;
64 typedef const _Tp* const_pointer;
65 typedef _Tp& reference;
66 typedef const _Tp& const_reference;
67 typedef _Tp value_type;
69 template<
typename _Tp1>
73 #if __cplusplus >= 201103L 83 template<
typename _Tp1>
89 address(reference __x)
const _GLIBCXX_NOEXCEPT
93 address(const_reference __x)
const _GLIBCXX_NOEXCEPT
99 allocate(size_type __n,
const void* = static_cast<const void*>(0))
101 if (__n > this->max_size())
102 std::__throw_bad_alloc();
104 #if __cpp_aligned_new 105 if (
alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
107 std::align_val_t __al = std::align_val_t(
alignof(_Tp));
108 return static_cast<_Tp*>(::
operator new(__n *
sizeof(_Tp), __al));
111 return static_cast<_Tp*>(::
operator new(__n *
sizeof(_Tp)));
116 deallocate(pointer __p, size_type)
118 #if __cpp_aligned_new 119 if (
alignof(_Tp) > __STDCPP_DEFAULT_NEW_ALIGNMENT__)
121 ::operator
delete(__p, std::align_val_t(
alignof(_Tp)));
125 ::operator
delete(__p);
129 max_size()
const _GLIBCXX_USE_NOEXCEPT
130 {
return size_t(-1) /
sizeof(_Tp); }
132 #if __cplusplus >= 201103L 133 template<
typename _Up,
typename... _Args>
135 construct(_Up* __p, _Args&&... __args)
136 { ::new((
void *)__p) _Up(std::forward<_Args>(__args)...); }
138 template<
typename _Up>
140 destroy(_Up* __p) { __p->~_Up(); }
145 construct(pointer __p,
const _Tp& __val)
146 { ::new((
void *)__p) _Tp(__val); }
149 destroy(pointer __p) { __p->~_Tp(); }
153 template<
typename _Tp>
158 template<
typename _Tp>
160 operator!=(
const new_allocator<_Tp>&,
const new_allocator<_Tp>&)
163 _GLIBCXX_END_NAMESPACE_VERSION
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
GNU extensions for public use.
An allocator that uses global new, as per [20.4].This is precisely the allocator defined in the C++ S...