30 #ifndef _ALLOC_TRAITS_H 31 #define _ALLOC_TRAITS_H 1 33 #if __cplusplus >= 201103L 39 #define __cpp_lib_allocator_traits_is_always_equal 201411 41 namespace std _GLIBCXX_VISIBILITY(default)
43 _GLIBCXX_BEGIN_NAMESPACE_VERSION
45 struct __allocator_traits_base
47 template<
typename _Tp,
typename _Up,
typename =
void>
48 struct __rebind : __replace_first_arg<_Tp, _Up> { };
50 template<
typename _Tp,
typename _Up>
51 struct __rebind<_Tp, _Up,
52 __void_t<typename _Tp::template rebind<_Up>::other>>
53 {
using type =
typename _Tp::template rebind<_Up>::other; };
56 template<
typename _Tp>
57 using __pointer =
typename _Tp::pointer;
58 template<
typename _Tp>
59 using __c_pointer =
typename _Tp::const_pointer;
60 template<
typename _Tp>
61 using __v_pointer =
typename _Tp::void_pointer;
62 template<
typename _Tp>
63 using __cv_pointer =
typename _Tp::const_void_pointer;
64 template<
typename _Tp>
65 using __pocca =
typename _Tp::propagate_on_container_copy_assignment;
66 template<
typename _Tp>
67 using __pocma =
typename _Tp::propagate_on_container_move_assignment;
68 template<
typename _Tp>
69 using __pocs =
typename _Tp::propagate_on_container_swap;
70 template<
typename _Tp>
71 using __equal =
typename _Tp::is_always_equal;
74 template<
typename _Alloc,
typename _Up>
76 =
typename __allocator_traits_base::template __rebind<_Alloc, _Up>::type;
82 template<
typename _Alloc>
95 using pointer = __detected_or_t<value_type*, __pointer, _Alloc>;
99 template<
template<
typename>
class _Func,
typename _Tp,
typename =
void>
105 template<
template<
typename>
class _Func,
typename _Tp>
106 struct _Ptr<_Func, _Tp, __void_t<_Func<_Alloc>>>
108 using type = _Func<_Alloc>;
112 template<
typename _A2,
typename _PtrT,
typename =
void>
116 template<
typename _A2,
typename _PtrT>
118 {
using type =
typename _A2::difference_type; };
121 template<
typename _A2,
typename _DiffT,
typename =
void>
122 struct _Size : make_unsigned<_DiffT> { };
124 template<
typename _A2,
typename _DiffT>
125 struct _Size<_A2, _DiffT, __void_t<typename _A2::
size_type>>
126 {
using type =
typename _A2::size_type; };
167 using size_type =
typename _Size<_Alloc, difference_type>::type;
176 = __detected_or_t<false_type, __pocca, _Alloc>;
185 = __detected_or_t<false_type, __pocma, _Alloc>;
194 = __detected_or_t<false_type, __pocs, _Alloc>;
203 = __detected_or_t<typename is_empty<_Alloc>::type, __equal, _Alloc>;
205 template<
typename _Tp>
206 using rebind_alloc = __alloc_rebind<_Alloc, _Tp>;
207 template<
typename _Tp>
211 template<
typename _Alloc2>
214 -> decltype(__a.allocate(__n, __hint))
215 {
return __a.
allocate(__n, __hint); }
217 template<
typename _Alloc2>
220 {
return __a.allocate(__n); }
222 template<
typename _Tp,
typename... _Args>
223 struct __construct_helper
225 template<
typename _Alloc2,
226 typename = decltype(std::declval<_Alloc2*>()->construct(
227 std::declval<_Tp*>(), std::declval<_Args>()...))>
233 using type = decltype(__test<_Alloc>(0));
236 template<
typename _Tp,
typename... _Args>
237 using __has_construct
238 =
typename __construct_helper<_Tp, _Args...>::type;
240 template<
typename _Tp,
typename... _Args>
241 static _Require<__has_construct<_Tp, _Args...>>
242 _S_construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
243 { __a.construct(__p, std::forward<_Args>(__args)...); }
245 template<
typename _Tp,
typename... _Args>
247 _Require<__and_<__not_<__has_construct<_Tp, _Args...>>,
248 is_constructible<_Tp, _Args...>>>
249 _S_construct(_Alloc&, _Tp* __p, _Args&&... __args)
250 { ::new((
void*)__p) _Tp(std::forward<_Args>(__args)...); }
252 template<
typename _Alloc2,
typename _Tp>
254 _S_destroy(_Alloc2& __a, _Tp* __p,
int)
255 -> decltype(__a.destroy(__p))
256 { __a.destroy(__p); }
258 template<
typename _Alloc2,
typename _Tp>
260 _S_destroy(_Alloc2&, _Tp* __p, ...)
263 template<
typename _Alloc2>
265 _S_max_size(_Alloc2& __a,
int)
266 -> decltype(__a.max_size())
267 {
return __a.max_size(); }
269 template<
typename _Alloc2>
271 _S_max_size(_Alloc2&, ...)
275 return __gnu_cxx::__numeric_traits<size_type>::__max
276 /
sizeof(value_type);
279 template<
typename _Alloc2>
281 _S_select(_Alloc2& __a,
int)
282 -> decltype(__a.select_on_container_copy_construction())
283 {
return __a.select_on_container_copy_construction(); }
285 template<
typename _Alloc2>
287 _S_select(_Alloc2& __a, ...)
301 {
return __a.allocate(__n); }
316 {
return _S_allocate(__a, __n, __hint, 0); }
328 { __a.deallocate(__p, __n); }
341 template<
typename _Tp,
typename... _Args>
342 static auto construct(_Alloc& __a, _Tp* __p, _Args&&... __args)
343 -> decltype(_S_construct(__a, __p, std::forward<_Args>(__args)...))
344 { _S_construct(__a, __p, std::forward<_Args>(__args)...); }
354 template<
typename _Tp>
356 { _S_destroy(__a, __p, 0); }
367 {
return _S_max_size(__a, 0); }
379 {
return _S_select(__rhs, 0); }
383 template<
typename _Tp>
389 using value_type = _Tp;
421 template<
typename _Up>
424 template<
typename _Up>
436 {
return __a.allocate(__n); }
450 {
return __a.allocate(__n, __hint); }
462 { __a.deallocate(__p, __n); }
472 template<
typename _Up,
typename... _Args>
474 construct(allocator_type& __a, _Up* __p, _Args&&... __args)
475 { __a.construct(__p, std::forward<_Args>(__args)...); }
484 template<
typename _Up>
487 { __a.destroy(__p); }
496 {
return __a.max_size(); }
503 static allocator_type
509 template<
typename _Alloc>
511 __do_alloc_on_copy(_Alloc& __one,
const _Alloc& __two,
true_type)
514 template<
typename _Alloc>
516 __do_alloc_on_copy(_Alloc&,
const _Alloc&,
false_type)
519 template<
typename _Alloc>
520 inline void __alloc_on_copy(_Alloc& __one,
const _Alloc& __two)
523 typedef typename __traits::propagate_on_container_copy_assignment __pocca;
524 __do_alloc_on_copy(__one, __two, __pocca());
527 template<
typename _Alloc>
528 inline _Alloc __alloc_on_copy(
const _Alloc& __a)
531 return __traits::select_on_container_copy_construction(__a);
534 template<
typename _Alloc>
535 inline void __do_alloc_on_move(_Alloc& __one, _Alloc& __two,
true_type)
536 { __one = std::move(__two); }
538 template<
typename _Alloc>
539 inline void __do_alloc_on_move(_Alloc&, _Alloc&,
false_type)
542 template<
typename _Alloc>
543 inline void __alloc_on_move(_Alloc& __one, _Alloc& __two)
546 typedef typename __traits::propagate_on_container_move_assignment __pocma;
547 __do_alloc_on_move(__one, __two, __pocma());
550 template<
typename _Alloc>
551 inline void __do_alloc_on_swap(_Alloc& __one, _Alloc& __two,
true_type)
557 template<
typename _Alloc>
558 inline void __do_alloc_on_swap(_Alloc&, _Alloc&,
false_type)
561 template<
typename _Alloc>
562 inline void __alloc_on_swap(_Alloc& __one, _Alloc& __two)
565 typedef typename __traits::propagate_on_container_swap __pocs;
566 __do_alloc_on_swap(__one, __two, __pocs());
569 template<
typename _Alloc>
570 class __is_copy_insertable_impl
574 template<
typename _Up,
typename 575 = decltype(_Traits::construct(std::declval<_Alloc&>(),
576 std::declval<_Up*>(),
577 std::declval<const _Up&>()))>
581 template<
typename _Up>
586 typedef decltype(_M_select<typename _Alloc::value_type>(0)) type;
590 template<
typename _Alloc>
591 struct __is_copy_insertable
592 : __is_copy_insertable_impl<_Alloc>::type
596 template<
typename _Tp>
597 struct __is_copy_insertable<allocator<_Tp>>
598 : is_copy_constructible<_Tp>
601 _GLIBCXX_END_NAMESPACE_VERSION
static void deallocate(_Alloc &__a, pointer __p, size_type __n)
Deallocate memory.
void * void_pointer
The allocator's void pointer type.
The standard allocator, as per [20.4].
Uniform interface to all pointer-like types.
static _Alloc select_on_container_copy_construction(const _Alloc &__rhs)
Obtain an allocator to use when copying a container.
__detected_or_t< value_type *, __pointer, _Tp_alloc_type > pointer
The allocator's pointer type.
__detected_or_t< false_type, __pocs, _Tp_alloc_type > propagate_on_container_swap
How the allocator is propagated on swap.
_Tp * pointer
The allocator's pointer type.
integral_constant< bool, false > false_type
The type used as a compile-time boolean with false value.
const _Tp * const_pointer
The allocator's const pointer type.
static allocator_type select_on_container_copy_construction(const allocator_type &__rhs)
Obtain an allocator to use when copying a container.
integral_constant< bool, true > true_type
The type used as a compile-time boolean with true value.
typename _Ptr< __cv_pointer, const void >::type const_void_pointer
The allocator's const void pointer type.
static pointer allocate(allocator_type &__a, size_type __n, const_void_pointer __hint)
Allocate memory.
__detected_or_t< false_type, __pocma, _Tp_alloc_type > propagate_on_container_move_assignment
How the allocator is propagated on move assignment.
static pointer allocate(_Alloc &__a, size_type __n)
Allocate memory.
__detected_or_t< false_type, __pocca, _Tp_alloc_type > propagate_on_container_copy_assignment
How the allocator is propagated on copy assignment.
ISO C++ entities toplevel namespace is std.
static size_type max_size(const allocator_type &__a) noexcept
The maximum supported allocation size.
__detected_or_t< typename is_empty< _Tp_alloc_type >::type, __equal, _Tp_alloc_type > is_always_equal
Whether all instances of the allocator type compare equal.
typename _Diff< _Tp_alloc_type, pointer >::type difference_type
The allocator's difference type.
_Alloc allocator_type
The allocator type.
typename _Size< _Tp_alloc_type, difference_type >::type size_type
The allocator's size type.
static pointer allocate(allocator_type &__a, size_type __n)
Allocate memory.
const void * const_void_pointer
The allocator's const void pointer type.
static void destroy(allocator_type &__a, _Up *__p)
Destroy an object of type _Up.
static size_type max_size(const _Alloc &__a) noexcept
The maximum supported allocation size.
typename _Ptr< __c_pointer, const value_type >::type const_pointer
The allocator's const pointer type.
Uniform interface to all allocator types.
static auto construct(_Alloc &__a, _Tp *__p, _Args &&...__args) -> decltype(_S_construct(__a, __p, std::forward< _Args >(__args)...))
Construct an object of type _Tp.
std::ptrdiff_t difference_type
The allocator's difference type.
static pointer allocate(_Alloc &__a, size_type __n, const_void_pointer __hint)
Allocate memory.
static void destroy(_Alloc &__a, _Tp *__p)
Destroy an object of type _Tp.
_Alloc::value_type value_type
The allocated type.
std::size_t size_type
The allocator's size type.
__detected_or_t< ptrdiff_t, __difference_type, _Ptr > difference_type
The type used to represent the difference between two pointers.
static void construct(allocator_type &__a, _Up *__p, _Args &&...__args)
Construct an object of type _Up.
static void deallocate(allocator_type &__a, pointer __p, size_type __n)
Deallocate memory.
typename _Ptr< __v_pointer, void >::type void_pointer
The allocator's void pointer type.