]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/include/ext/alloc_traits.h
expr.c (store_field): Remove TYPE parameter.
[thirdparty/gcc.git] / libstdc++-v3 / include / ext / alloc_traits.h
CommitLineData
e8eb60bd
JW
1// Allocator traits -*- C++ -*-
2
8db81fb2 3// Copyright (C) 2011-2012 Free Software Foundation, Inc.
e8eb60bd
JW
4//
5// This file is part of the GNU ISO C++ Library. This library is free
6// software; you can redistribute it and/or modify it under the
7// terms of the GNU General Public License as published by the
8// Free Software Foundation; either version 3, or (at your option)
9// any later version.
10
11// This library is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15
16// Under Section 7 of GPL version 3, you are granted additional
17// permissions described in the GCC Runtime Library Exception, version
18// 3.1, as published by the Free Software Foundation.
19
20// You should have received a copy of the GNU General Public License and
21// a copy of the GCC Runtime Library Exception along with this program;
22// see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
23// <http://www.gnu.org/licenses/>.
24
25/** @file ext/alloc_traits.h
26 * This file is a GNU extension to the Standard C++ Library.
27 */
28
29#ifndef _EXT_ALLOC_TRAITS_H
30#define _EXT_ALLOC_TRAITS_H 1
31
32#pragma GCC system_header
33
34#ifdef __GXX_EXPERIMENTAL_CXX0X__
35# include <bits/alloc_traits.h>
36#else
37# include <bits/allocator.h> // for __alloc_swap
38#endif
39
d526242c
JW
40namespace std _GLIBCXX_VISIBILITY(default)
41{
42_GLIBCXX_BEGIN_NAMESPACE_VERSION
43 template<typename> struct allocator;
44_GLIBCXX_END_NAMESPACE_VERSION
45} // namespace
46
e8eb60bd
JW
47namespace __gnu_cxx _GLIBCXX_VISIBILITY(default)
48{
49_GLIBCXX_BEGIN_NAMESPACE_VERSION
50
d526242c 51#ifdef __GXX_EXPERIMENTAL_CXX0X__
8db81fb2
JW
52 template<typename _Alloc>
53 struct __allocator_always_compares_equal
54 { static const bool value = false; };
55
56 template<typename _Alloc>
57 const bool __allocator_always_compares_equal<_Alloc>::value;
d526242c
JW
58
59 template<typename _Tp>
60 struct __allocator_always_compares_equal<std::allocator<_Tp>>
61 { static const bool value = true; };
62
8db81fb2
JW
63 template<typename _Tp>
64 const bool __allocator_always_compares_equal<std::allocator<_Tp>>::value;
65
d526242c
JW
66 template<typename, typename> struct array_allocator;
67
68 template<typename _Tp, typename _Array>
69 struct __allocator_always_compares_equal<array_allocator<_Tp, _Array>>
70 { static const bool value = true; };
71
8db81fb2
JW
72 template<typename _Tp, typename _Array>
73 const bool
74 __allocator_always_compares_equal<array_allocator<_Tp, _Array>>::value;
75
d526242c
JW
76 template<typename> struct mt_allocator;
77
78 template<typename _Tp>
79 struct __allocator_always_compares_equal<mt_allocator<_Tp>>
80 { static const bool value = true; };
81
8db81fb2
JW
82 template<typename _Tp>
83 const bool __allocator_always_compares_equal<mt_allocator<_Tp>>::value;
84
d526242c
JW
85 template<typename> struct new_allocator;
86
87 template<typename _Tp>
88 struct __allocator_always_compares_equal<new_allocator<_Tp>>
89 { static const bool value = true; };
90
8db81fb2
JW
91 template<typename _Tp>
92 const bool __allocator_always_compares_equal<new_allocator<_Tp>>::value;
93
d526242c
JW
94 template<typename> struct pool_allocator;
95
96 template<typename _Tp>
97 struct __allocator_always_compares_equal<pool_allocator<_Tp>>
98 { static const bool value = true; };
8db81fb2
JW
99
100 template<typename _Tp>
101 const bool __allocator_always_compares_equal<pool_allocator<_Tp>>::value;
d526242c
JW
102#endif
103
104/**
105 * @brief Uniform interface to C++98 and C++0x allocators.
106 * @ingroup allocators
107*/
e8eb60bd
JW
108template<typename _Alloc>
109 struct __alloc_traits
110#ifdef __GXX_EXPERIMENTAL_CXX0X__
111 : std::allocator_traits<_Alloc>
112#endif
113 {
114 typedef _Alloc allocator_type;
115#ifdef __GXX_EXPERIMENTAL_CXX0X__
116 typedef std::allocator_traits<_Alloc> _Base_type;
117 typedef typename _Base_type::value_type value_type;
118 typedef typename _Base_type::pointer pointer;
119 typedef typename _Base_type::const_pointer const_pointer;
120 typedef typename _Base_type::size_type size_type;
605aed29 121 typedef typename _Base_type::difference_type difference_type;
e8eb60bd
JW
122 // C++0x allocators do not define reference or const_reference
123 typedef value_type& reference;
124 typedef const value_type& const_reference;
125 using _Base_type::allocate;
126 using _Base_type::deallocate;
127 using _Base_type::construct;
128 using _Base_type::destroy;
73f05031 129 using _Base_type::max_size;
e8eb60bd 130
d526242c
JW
131 private:
132 template<typename _Ptr>
133 struct __is_custom_pointer
134 : std::integral_constant<bool, std::is_same<pointer, _Ptr>::value
135 && !std::is_pointer<_Ptr>::value>
136 { };
137
138 public:
73f05031 139 // overload construct for non-standard pointer types
d526242c
JW
140 template<typename _Ptr, typename... _Args>
141 static typename std::enable_if<__is_custom_pointer<_Ptr>::value>::type
142 construct(_Alloc& __a, _Ptr __p, _Args&&... __args)
143 {
144 _Base_type::construct(__a, std::addressof(*__p),
145 std::forward<_Args>(__args)...);
146 }
147
73f05031 148 // overload destroy for non-standard pointer types
d526242c
JW
149 template<typename _Ptr>
150 static typename std::enable_if<__is_custom_pointer<_Ptr>::value>::type
151 destroy(_Alloc& __a, _Ptr __p)
152 { _Base_type::destroy(__a, std::addressof(*__p)); }
153
e8eb60bd
JW
154 static _Alloc _S_select_on_copy(const _Alloc& __a)
155 { return _Base_type::select_on_container_copy_construction(__a); }
156
157 static void _S_on_swap(_Alloc& __a, _Alloc& __b)
158 { std::__alloc_on_swap(__a, __b); }
159
160 static constexpr bool _S_propagate_on_copy_assign()
161 { return _Base_type::propagate_on_container_copy_assignment::value; }
162
163 static constexpr bool _S_propagate_on_move_assign()
164 { return _Base_type::propagate_on_container_move_assignment::value; }
165
166 static constexpr bool _S_propagate_on_swap()
167 { return _Base_type::propagate_on_container_swap::value; }
168
d526242c
JW
169 static constexpr bool _S_always_equal()
170 { return __allocator_always_compares_equal<_Alloc>::value; }
171
172 static constexpr bool _S_nothrow_move()
173 { return _S_propagate_on_move_assign() || _S_always_equal(); }
174
175 static constexpr bool _S_nothrow_swap()
176 {
177 using std::swap;
178 return !_S_propagate_on_swap()
179 || noexcept(swap(std::declval<_Alloc&>(), std::declval<_Alloc&>()));
180 }
181
73f05031
JW
182 template<typename _Tp>
183 struct rebind
7579d15b 184 { typedef typename _Base_type::template rebind_alloc<_Tp> other; };
e8eb60bd
JW
185#else
186
187 typedef typename _Alloc::pointer pointer;
188 typedef typename _Alloc::const_pointer const_pointer;
189 typedef typename _Alloc::value_type value_type;
190 typedef typename _Alloc::reference reference;
191 typedef typename _Alloc::const_reference const_reference;
192 typedef typename _Alloc::size_type size_type;
605aed29 193 typedef typename _Alloc::difference_type difference_type;
e8eb60bd
JW
194
195 static pointer
196 allocate(_Alloc& __a, size_type __n)
197 { return __a.allocate(__n); }
198
199 static void deallocate(_Alloc& __a, pointer __p, size_type __n)
200 { __a.deallocate(__p, __n); }
201
202 template<typename _Tp>
203 static void construct(_Alloc& __a, pointer __p, const _Tp& __arg)
204 { __a.construct(__p, __arg); }
205
206 static void destroy(_Alloc& __a, pointer __p)
207 { __a.destroy(__p); }
208
73f05031
JW
209 static size_type max_size(const _Alloc& __a)
210 { return __a.max_size(); }
211
e8eb60bd
JW
212 static const _Alloc& _S_select_on_copy(const _Alloc& __a) { return __a; }
213
214 static void _S_on_swap(_Alloc& __a, _Alloc& __b)
215 {
216 // _GLIBCXX_RESOLVE_LIB_DEFECTS
217 // 431. Swapping containers with unequal allocators.
218 std::__alloc_swap<_Alloc>::_S_do_it(__a, __b);
219 }
73f05031
JW
220
221 template<typename _Tp>
222 struct rebind
223 { typedef typename _Alloc::template rebind<_Tp>::other other; };
e8eb60bd
JW
224#endif
225 };
226
227_GLIBCXX_END_NAMESPACE_VERSION
228} // namespace
229
230#endif