blob: 86cd9315dd7ae4abf4403d7169e02130938e35a5 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===----------------------------------------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP__HASH_TABLE
12#define _LIBCPP__HASH_TABLE
13
14#include <__config>
15#include <initializer_list>
16#include <memory>
17#include <iterator>
18#include <algorithm>
19#include <cmath>
Eric Fiselier774c7c52016-02-10 20:46:23 +000020#include <utility>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000021
Howard Hinnant66c6f972011-11-29 16:45:27 +000022#include <__undef_min_max>
Saleem Abdulrasoolf1b30c42015-02-13 22:15:32 +000023#include <__undef___deallocate>
Howard Hinnant66c6f972011-11-29 16:45:27 +000024
Eric Fiselierb9536102014-08-10 23:53:08 +000025#include <__debug>
Howard Hinnant8b00e6c2013-08-02 00:26:35 +000026
Howard Hinnant08e17472011-10-17 20:05:10 +000027#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000028#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +000029#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000030
31_LIBCPP_BEGIN_NAMESPACE_STD
32
Eric Fiselier2960ae22016-02-11 11:59:44 +000033
34#ifndef _LIBCPP_CXX03_LANG
35template <class _Key, class _Tp>
36union __hash_value_type;
37#else
38template <class _Key, class _Tp>
39struct __hash_value_type;
40#endif
41
42#ifndef _LIBCPP_CXX03_LANG
43template <class _Tp>
44struct __is_hash_value_type_imp : false_type {};
45
46template <class _Key, class _Value>
47struct __is_hash_value_type_imp<__hash_value_type<_Key, _Value>> : true_type {};
48
49template <class ..._Args>
50struct __is_hash_value_type : false_type {};
51
52template <class _One>
53struct __is_hash_value_type<_One> : __is_hash_value_type_imp<typename __uncvref<_One>::type> {};
54#endif
55
Howard Hinnant83eade62013-03-06 23:30:19 +000056_LIBCPP_FUNC_VIS
Howard Hinnant2b1b2d42011-06-14 19:58:17 +000057size_t __next_prime(size_t __n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000058
59template <class _NodePtr>
60struct __hash_node_base
61{
62 typedef __hash_node_base __first_node;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000063
Howard Hinnantdf85e572011-02-27 18:02:02 +000064 _NodePtr __next_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000065
Howard Hinnant5f2f14c2011-06-04 18:54:24 +000066 _LIBCPP_INLINE_VISIBILITY __hash_node_base() _NOEXCEPT : __next_(nullptr) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000067};
68
69template <class _Tp, class _VoidPtr>
70struct __hash_node
71 : public __hash_node_base
72 <
Eric Fiselier5cf84e02015-12-30 21:52:00 +000073 typename __rebind_pointer<_VoidPtr, __hash_node<_Tp, _VoidPtr> >::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000074 >
75{
Eric Fiselier774c7c52016-02-10 20:46:23 +000076 typedef _Tp __node_value_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000077
78 size_t __hash_;
Eric Fiselier774c7c52016-02-10 20:46:23 +000079 __node_value_type __value_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000080};
81
Howard Hinnant7a445152012-07-06 17:31:14 +000082inline _LIBCPP_INLINE_VISIBILITY
83bool
Eric Fiselier57947ca2015-02-02 21:31:48 +000084__is_hash_power2(size_t __bc)
Howard Hinnant7a445152012-07-06 17:31:14 +000085{
86 return __bc > 2 && !(__bc & (__bc - 1));
87}
88
89inline _LIBCPP_INLINE_VISIBILITY
90size_t
91__constrain_hash(size_t __h, size_t __bc)
92{
93 return !(__bc & (__bc - 1)) ? __h & (__bc - 1) : __h % __bc;
94}
95
96inline _LIBCPP_INLINE_VISIBILITY
97size_t
Eric Fiselier57947ca2015-02-02 21:31:48 +000098__next_hash_pow2(size_t __n)
Howard Hinnant7a445152012-07-06 17:31:14 +000099{
100 return size_t(1) << (std::numeric_limits<size_t>::digits - __clz(__n-1));
101}
102
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +0000103
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000104template <class _Tp, class _Hash, class _Equal, class _Alloc> class __hash_table;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000105
106template <class _NodePtr> class _LIBCPP_TYPE_VIS_ONLY __hash_iterator;
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000107template <class _ConstNodePtr> class _LIBCPP_TYPE_VIS_ONLY __hash_const_iterator;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000108template <class _NodePtr> class _LIBCPP_TYPE_VIS_ONLY __hash_local_iterator;
109template <class _ConstNodePtr> class _LIBCPP_TYPE_VIS_ONLY __hash_const_local_iterator;
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000110template <class _HashIterator> class _LIBCPP_TYPE_VIS_ONLY __hash_map_iterator;
111template <class _HashIterator> class _LIBCPP_TYPE_VIS_ONLY __hash_map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000112
Eric Fiselier774c7c52016-02-10 20:46:23 +0000113template <class _Tp>
Eric Fiselier66e344f2016-02-20 07:59:16 +0000114struct __hash_key_value_types {
Eric Fiselier774c7c52016-02-10 20:46:23 +0000115 static_assert(!is_reference<_Tp>::value && !is_const<_Tp>::value, "");
116 typedef _Tp key_type;
117 typedef _Tp __node_value_type;
118 typedef _Tp __container_value_type;
119 static const bool __is_map = false;
Eric Fiselier2960ae22016-02-11 11:59:44 +0000120
121 _LIBCPP_INLINE_VISIBILITY
122 static key_type const& __get_key(_Tp const& __v) {
123 return __v;
124 }
125 _LIBCPP_INLINE_VISIBILITY
126 static __container_value_type const& __get_value(__node_value_type const& __v) {
127 return __v;
128 }
129 _LIBCPP_INLINE_VISIBILITY
130 static __container_value_type* __get_ptr(__node_value_type& __n) {
131 return _VSTD::addressof(__n);
132 }
133#ifndef _LIBCPP_CXX03_LANG
134 _LIBCPP_INLINE_VISIBILITY
135 static __container_value_type&& __move(__node_value_type& __v) {
136 return _VSTD::move(__v);
137 }
138#endif
Eric Fiselier774c7c52016-02-10 20:46:23 +0000139};
140
141template <class _Key, class _Tp>
Eric Fiselier66e344f2016-02-20 07:59:16 +0000142struct __hash_key_value_types<__hash_value_type<_Key, _Tp> > {
Eric Fiselier774c7c52016-02-10 20:46:23 +0000143 typedef _Key key_type;
144 typedef _Tp mapped_type;
145 typedef __hash_value_type<_Key, _Tp> __node_value_type;
146 typedef pair<const _Key, _Tp> __container_value_type;
Eric Fiselier2960ae22016-02-11 11:59:44 +0000147 typedef pair<_Key, _Tp> __nc_value_type;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000148 typedef __container_value_type __map_value_type;
149 static const bool __is_map = true;
Eric Fiselier2960ae22016-02-11 11:59:44 +0000150
151 _LIBCPP_INLINE_VISIBILITY
152 static key_type const& __get_key(__container_value_type const& __v) {
153 return __v.first;
154 }
155
156 template <class _Up>
157 _LIBCPP_INLINE_VISIBILITY
158 static typename enable_if<__is_same_uncvref<_Up, __node_value_type>::value,
159 __container_value_type const&>::type
160 __get_value(_Up& __t) {
161 return __t.__cc;
162 }
163
164 template <class _Up>
165 _LIBCPP_INLINE_VISIBILITY
166 static typename enable_if<__is_same_uncvref<_Up, __container_value_type>::value,
167 __container_value_type const&>::type
168 __get_value(_Up& __t) {
169 return __t;
170 }
171
172 _LIBCPP_INLINE_VISIBILITY
173 static __container_value_type* __get_ptr(__node_value_type& __n) {
174 return _VSTD::addressof(__n.__cc);
175 }
176#ifndef _LIBCPP_CXX03_LANG
177 _LIBCPP_INLINE_VISIBILITY
178 static __nc_value_type&& __move(__node_value_type& __v) {
179 return _VSTD::move(__v.__nc);
180 }
181#endif
182
Eric Fiselier774c7c52016-02-10 20:46:23 +0000183};
184
Eric Fiselier66e344f2016-02-20 07:59:16 +0000185template <class _Tp, class _AllocPtr, class _KVTypes = __hash_key_value_types<_Tp>,
Eric Fiselier774c7c52016-02-10 20:46:23 +0000186 bool = _KVTypes::__is_map>
Eric Fiselier66e344f2016-02-20 07:59:16 +0000187struct __hash_map_pointer_types {};
Eric Fiselier774c7c52016-02-10 20:46:23 +0000188
189template <class _Tp, class _AllocPtr, class _KVTypes>
Eric Fiselier66e344f2016-02-20 07:59:16 +0000190struct __hash_map_pointer_types<_Tp, _AllocPtr, _KVTypes, true> {
Eric Fiselier774c7c52016-02-10 20:46:23 +0000191 typedef typename _KVTypes::__map_value_type _Mv;
192 typedef typename __rebind_pointer<_AllocPtr, _Mv>::type
193 __map_value_type_pointer;
194 typedef typename __rebind_pointer<_AllocPtr, const _Mv>::type
195 __const_map_value_type_pointer;
196};
197
198template <class _NodePtr, class _NodeT = typename pointer_traits<_NodePtr>::element_type>
199struct __hash_node_types;
200
201template <class _NodePtr, class _Tp, class _VoidPtr>
202struct __hash_node_types<_NodePtr, __hash_node<_Tp, _VoidPtr> >
Eric Fiselier66e344f2016-02-20 07:59:16 +0000203 : public __hash_key_value_types<_Tp>, __hash_map_pointer_types<_Tp, _VoidPtr>
Eric Fiselier774c7c52016-02-10 20:46:23 +0000204
205{
Eric Fiselier66e344f2016-02-20 07:59:16 +0000206 typedef __hash_key_value_types<_Tp> __base;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000207
208public:
209 typedef ptrdiff_t difference_type;
210 typedef size_t size_type;
211
212 typedef typename __rebind_pointer<_NodePtr, void>::type __void_pointer;
213
214 typedef typename pointer_traits<_NodePtr>::element_type __node_type;
215 typedef _NodePtr __node_pointer;
216
217 typedef __hash_node_base<__node_pointer> __node_base_type;
218 typedef typename __rebind_pointer<_NodePtr, __node_base_type>::type
219 __node_base_pointer;
220
221 typedef _Tp __node_value_type;
222 typedef typename __rebind_pointer<_VoidPtr, __node_value_type>::type
223 __node_value_type_pointer;
224 typedef typename __rebind_pointer<_VoidPtr, const __node_value_type>::type
225 __const_node_value_type_pointer;
226private:
227 static_assert(!is_const<__node_type>::value,
228 "_NodePtr should never be a pointer to const");
229 static_assert((is_same<typename pointer_traits<_VoidPtr>::element_type, void>::value),
230 "_VoidPtr does not point to unqualified void type");
231 static_assert((is_same<typename __rebind_pointer<_VoidPtr, __node_type>::type,
232 _NodePtr>::value), "_VoidPtr does not rebind to _NodePtr.");
233};
234
235
236
237template <class _HashIterator>
238struct __hash_node_types_from_iterator;
239template <class _NodePtr>
240struct __hash_node_types_from_iterator<__hash_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
241template <class _NodePtr>
242struct __hash_node_types_from_iterator<__hash_const_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
243template <class _NodePtr>
244struct __hash_node_types_from_iterator<__hash_local_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
245template <class _NodePtr>
246struct __hash_node_types_from_iterator<__hash_const_local_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {};
247
248
249template <class _NodeValueTp, class _VoidPtr>
250struct __make_hash_node_types {
251 typedef __hash_node<_NodeValueTp, _VoidPtr> _NodeTp;
252 typedef typename __rebind_pointer<_VoidPtr, _NodeTp>::type _NodePtr;
253 typedef __hash_node_types<_NodePtr> type;
254};
255
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000256template <class _NodePtr>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000257class _LIBCPP_TYPE_VIS_ONLY __hash_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000258{
Eric Fiselier774c7c52016-02-10 20:46:23 +0000259 typedef __hash_node_types<_NodePtr> _NodeTypes;
260 typedef _NodePtr __node_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000261
262 __node_pointer __node_;
263
264public:
Eric Fiselier774c7c52016-02-10 20:46:23 +0000265 typedef forward_iterator_tag iterator_category;
266 typedef typename _NodeTypes::__node_value_type value_type;
267 typedef typename _NodeTypes::difference_type difference_type;
268 typedef value_type& reference;
269 typedef typename _NodeTypes::__node_value_type_pointer pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000270
Howard Hinnant39213642013-07-23 22:01:58 +0000271 _LIBCPP_INLINE_VISIBILITY __hash_iterator() _NOEXCEPT
Marshall Clow193ef032013-08-07 21:30:44 +0000272#if _LIBCPP_STD_VER > 11
273 : __node_(nullptr)
274#endif
Howard Hinnant39213642013-07-23 22:01:58 +0000275 {
276#if _LIBCPP_DEBUG_LEVEL >= 2
277 __get_db()->__insert_i(this);
278#endif
279 }
280
281#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000282
Howard Hinnant99acc502010-09-21 17:32:39 +0000283 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000284 __hash_iterator(const __hash_iterator& __i)
285 : __node_(__i.__node_)
286 {
287 __get_db()->__iterator_copy(this, &__i);
288 }
289
Howard Hinnant99acc502010-09-21 17:32:39 +0000290 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000291 ~__hash_iterator()
292 {
293 __get_db()->__erase_i(this);
294 }
295
296 _LIBCPP_INLINE_VISIBILITY
297 __hash_iterator& operator=(const __hash_iterator& __i)
298 {
299 if (this != &__i)
300 {
301 __get_db()->__iterator_copy(this, &__i);
302 __node_ = __i.__node_;
303 }
304 return *this;
305 }
306
307#endif // _LIBCPP_DEBUG_LEVEL >= 2
308
309 _LIBCPP_INLINE_VISIBILITY
310 reference operator*() const
311 {
312#if _LIBCPP_DEBUG_LEVEL >= 2
313 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
314 "Attempted to dereference a non-dereferenceable unordered container iterator");
315#endif
316 return __node_->__value_;
317 }
318 _LIBCPP_INLINE_VISIBILITY
319 pointer operator->() const
320 {
321#if _LIBCPP_DEBUG_LEVEL >= 2
322 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
323 "Attempted to dereference a non-dereferenceable unordered container iterator");
324#endif
325 return pointer_traits<pointer>::pointer_to(__node_->__value_);
326 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000327
Howard Hinnant99acc502010-09-21 17:32:39 +0000328 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000329 __hash_iterator& operator++()
330 {
Howard Hinnant39213642013-07-23 22:01:58 +0000331#if _LIBCPP_DEBUG_LEVEL >= 2
332 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
333 "Attempted to increment non-incrementable unordered container iterator");
334#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000335 __node_ = __node_->__next_;
336 return *this;
337 }
338
Howard Hinnant99acc502010-09-21 17:32:39 +0000339 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000340 __hash_iterator operator++(int)
341 {
342 __hash_iterator __t(*this);
343 ++(*this);
344 return __t;
345 }
346
Howard Hinnant99acc502010-09-21 17:32:39 +0000347 friend _LIBCPP_INLINE_VISIBILITY
348 bool operator==(const __hash_iterator& __x, const __hash_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000349 {
Howard Hinnant39213642013-07-23 22:01:58 +0000350 return __x.__node_ == __y.__node_;
351 }
Howard Hinnant99acc502010-09-21 17:32:39 +0000352 friend _LIBCPP_INLINE_VISIBILITY
353 bool operator!=(const __hash_iterator& __x, const __hash_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000354 {return !(__x == __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000355
356private:
Howard Hinnant39213642013-07-23 22:01:58 +0000357#if _LIBCPP_DEBUG_LEVEL >= 2
358 _LIBCPP_INLINE_VISIBILITY
359 __hash_iterator(__node_pointer __node, const void* __c) _NOEXCEPT
360 : __node_(__node)
361 {
362 __get_db()->__insert_ic(this, __c);
363 }
364#else
Howard Hinnant99acc502010-09-21 17:32:39 +0000365 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000366 __hash_iterator(__node_pointer __node) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000367 : __node_(__node)
368 {}
Howard Hinnant39213642013-07-23 22:01:58 +0000369#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000370
371 template <class, class, class, class> friend class __hash_table;
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000372 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_const_iterator;
373 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_map_iterator;
374 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_map;
375 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_multimap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000376};
377
Eric Fiselier774c7c52016-02-10 20:46:23 +0000378template <class _NodePtr>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000379class _LIBCPP_TYPE_VIS_ONLY __hash_const_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000380{
Eric Fiselier774c7c52016-02-10 20:46:23 +0000381 static_assert(!is_const<typename pointer_traits<_NodePtr>::element_type>::value, "");
382 typedef __hash_node_types<_NodePtr> _NodeTypes;
383 typedef _NodePtr __node_pointer;
Eric Fiselier0493d022016-02-18 00:20:34 +0000384
Eric Fiselier774c7c52016-02-10 20:46:23 +0000385 __node_pointer __node_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000386
387public:
Eric Fiselier0493d022016-02-18 00:20:34 +0000388 typedef __hash_iterator<_NodePtr> __non_const_iterator;
389
Eric Fiselier774c7c52016-02-10 20:46:23 +0000390 typedef forward_iterator_tag iterator_category;
391 typedef typename _NodeTypes::__node_value_type value_type;
392 typedef typename _NodeTypes::difference_type difference_type;
393 typedef const value_type& reference;
394 typedef typename _NodeTypes::__const_node_value_type_pointer pointer;
395
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000396
Howard Hinnant39213642013-07-23 22:01:58 +0000397 _LIBCPP_INLINE_VISIBILITY __hash_const_iterator() _NOEXCEPT
Marshall Clow193ef032013-08-07 21:30:44 +0000398#if _LIBCPP_STD_VER > 11
399 : __node_(nullptr)
400#endif
Howard Hinnant39213642013-07-23 22:01:58 +0000401 {
402#if _LIBCPP_DEBUG_LEVEL >= 2
403 __get_db()->__insert_i(this);
404#endif
405 }
Howard Hinnant99acc502010-09-21 17:32:39 +0000406 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000407 __hash_const_iterator(const __non_const_iterator& __x) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000408 : __node_(__x.__node_)
Howard Hinnant39213642013-07-23 22:01:58 +0000409 {
410#if _LIBCPP_DEBUG_LEVEL >= 2
411 __get_db()->__iterator_copy(this, &__x);
412#endif
413 }
414
415#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000416
Howard Hinnant99acc502010-09-21 17:32:39 +0000417 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000418 __hash_const_iterator(const __hash_const_iterator& __i)
419 : __node_(__i.__node_)
420 {
421 __get_db()->__iterator_copy(this, &__i);
422 }
423
Howard Hinnant99acc502010-09-21 17:32:39 +0000424 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000425 ~__hash_const_iterator()
426 {
427 __get_db()->__erase_i(this);
428 }
429
430 _LIBCPP_INLINE_VISIBILITY
431 __hash_const_iterator& operator=(const __hash_const_iterator& __i)
432 {
433 if (this != &__i)
434 {
435 __get_db()->__iterator_copy(this, &__i);
436 __node_ = __i.__node_;
437 }
438 return *this;
439 }
440
441#endif // _LIBCPP_DEBUG_LEVEL >= 2
442
443 _LIBCPP_INLINE_VISIBILITY
444 reference operator*() const
445 {
446#if _LIBCPP_DEBUG_LEVEL >= 2
447 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
448 "Attempted to dereference a non-dereferenceable unordered container const_iterator");
449#endif
450 return __node_->__value_;
451 }
452 _LIBCPP_INLINE_VISIBILITY
453 pointer operator->() const
454 {
455#if _LIBCPP_DEBUG_LEVEL >= 2
456 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
457 "Attempted to dereference a non-dereferenceable unordered container const_iterator");
458#endif
459 return pointer_traits<pointer>::pointer_to(__node_->__value_);
460 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000461
Howard Hinnant99acc502010-09-21 17:32:39 +0000462 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000463 __hash_const_iterator& operator++()
464 {
Howard Hinnant39213642013-07-23 22:01:58 +0000465#if _LIBCPP_DEBUG_LEVEL >= 2
466 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
467 "Attempted to increment non-incrementable unordered container const_iterator");
468#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000469 __node_ = __node_->__next_;
470 return *this;
471 }
472
Howard Hinnant99acc502010-09-21 17:32:39 +0000473 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000474 __hash_const_iterator operator++(int)
475 {
476 __hash_const_iterator __t(*this);
477 ++(*this);
478 return __t;
479 }
480
Howard Hinnant99acc502010-09-21 17:32:39 +0000481 friend _LIBCPP_INLINE_VISIBILITY
482 bool operator==(const __hash_const_iterator& __x, const __hash_const_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000483 {
Howard Hinnant39213642013-07-23 22:01:58 +0000484 return __x.__node_ == __y.__node_;
485 }
Howard Hinnant99acc502010-09-21 17:32:39 +0000486 friend _LIBCPP_INLINE_VISIBILITY
487 bool operator!=(const __hash_const_iterator& __x, const __hash_const_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000488 {return !(__x == __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000489
490private:
Howard Hinnant39213642013-07-23 22:01:58 +0000491#if _LIBCPP_DEBUG_LEVEL >= 2
492 _LIBCPP_INLINE_VISIBILITY
493 __hash_const_iterator(__node_pointer __node, const void* __c) _NOEXCEPT
494 : __node_(__node)
495 {
496 __get_db()->__insert_ic(this, __c);
497 }
498#else
Howard Hinnant99acc502010-09-21 17:32:39 +0000499 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000500 __hash_const_iterator(__node_pointer __node) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000501 : __node_(__node)
502 {}
Howard Hinnant39213642013-07-23 22:01:58 +0000503#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000504
505 template <class, class, class, class> friend class __hash_table;
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000506 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_map_const_iterator;
507 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_map;
508 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_multimap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000509};
510
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000511template <class _NodePtr>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000512class _LIBCPP_TYPE_VIS_ONLY __hash_local_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000513{
Eric Fiselier774c7c52016-02-10 20:46:23 +0000514 typedef __hash_node_types<_NodePtr> _NodeTypes;
515 typedef _NodePtr __node_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000516
517 __node_pointer __node_;
518 size_t __bucket_;
519 size_t __bucket_count_;
520
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000521public:
522 typedef forward_iterator_tag iterator_category;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000523 typedef typename _NodeTypes::__node_value_type value_type;
524 typedef typename _NodeTypes::difference_type difference_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000525 typedef value_type& reference;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000526 typedef typename _NodeTypes::__node_value_type_pointer pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000527
Howard Hinnant39213642013-07-23 22:01:58 +0000528 _LIBCPP_INLINE_VISIBILITY __hash_local_iterator() _NOEXCEPT
529 {
530#if _LIBCPP_DEBUG_LEVEL >= 2
531 __get_db()->__insert_i(this);
532#endif
533 }
534
535#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000536
Howard Hinnant99acc502010-09-21 17:32:39 +0000537 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000538 __hash_local_iterator(const __hash_local_iterator& __i)
539 : __node_(__i.__node_),
540 __bucket_(__i.__bucket_),
541 __bucket_count_(__i.__bucket_count_)
542 {
543 __get_db()->__iterator_copy(this, &__i);
544 }
545
Howard Hinnant99acc502010-09-21 17:32:39 +0000546 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000547 ~__hash_local_iterator()
548 {
549 __get_db()->__erase_i(this);
550 }
551
552 _LIBCPP_INLINE_VISIBILITY
553 __hash_local_iterator& operator=(const __hash_local_iterator& __i)
554 {
555 if (this != &__i)
556 {
557 __get_db()->__iterator_copy(this, &__i);
558 __node_ = __i.__node_;
559 __bucket_ = __i.__bucket_;
560 __bucket_count_ = __i.__bucket_count_;
561 }
562 return *this;
563 }
564
565#endif // _LIBCPP_DEBUG_LEVEL >= 2
566
567 _LIBCPP_INLINE_VISIBILITY
568 reference operator*() const
569 {
570#if _LIBCPP_DEBUG_LEVEL >= 2
571 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
572 "Attempted to dereference a non-dereferenceable unordered container local_iterator");
573#endif
574 return __node_->__value_;
575 }
576 _LIBCPP_INLINE_VISIBILITY
577 pointer operator->() const
578 {
579#if _LIBCPP_DEBUG_LEVEL >= 2
580 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
581 "Attempted to dereference a non-dereferenceable unordered container local_iterator");
582#endif
583 return pointer_traits<pointer>::pointer_to(__node_->__value_);
584 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000585
Howard Hinnant99acc502010-09-21 17:32:39 +0000586 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000587 __hash_local_iterator& operator++()
588 {
Howard Hinnant39213642013-07-23 22:01:58 +0000589#if _LIBCPP_DEBUG_LEVEL >= 2
590 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
591 "Attempted to increment non-incrementable unordered container local_iterator");
592#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000593 __node_ = __node_->__next_;
Howard Hinnant7a445152012-07-06 17:31:14 +0000594 if (__node_ != nullptr && __constrain_hash(__node_->__hash_, __bucket_count_) != __bucket_)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000595 __node_ = nullptr;
596 return *this;
597 }
598
Howard Hinnant99acc502010-09-21 17:32:39 +0000599 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000600 __hash_local_iterator operator++(int)
601 {
602 __hash_local_iterator __t(*this);
603 ++(*this);
604 return __t;
605 }
606
Howard Hinnant99acc502010-09-21 17:32:39 +0000607 friend _LIBCPP_INLINE_VISIBILITY
608 bool operator==(const __hash_local_iterator& __x, const __hash_local_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000609 {
Howard Hinnant39213642013-07-23 22:01:58 +0000610 return __x.__node_ == __y.__node_;
611 }
Howard Hinnant99acc502010-09-21 17:32:39 +0000612 friend _LIBCPP_INLINE_VISIBILITY
613 bool operator!=(const __hash_local_iterator& __x, const __hash_local_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000614 {return !(__x == __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000615
616private:
Howard Hinnant39213642013-07-23 22:01:58 +0000617#if _LIBCPP_DEBUG_LEVEL >= 2
618 _LIBCPP_INLINE_VISIBILITY
619 __hash_local_iterator(__node_pointer __node, size_t __bucket,
620 size_t __bucket_count, const void* __c) _NOEXCEPT
621 : __node_(__node),
622 __bucket_(__bucket),
623 __bucket_count_(__bucket_count)
624 {
625 __get_db()->__insert_ic(this, __c);
626 if (__node_ != nullptr)
627 __node_ = __node_->__next_;
628 }
629#else
Howard Hinnant99acc502010-09-21 17:32:39 +0000630 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000631 __hash_local_iterator(__node_pointer __node, size_t __bucket,
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000632 size_t __bucket_count) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000633 : __node_(__node),
634 __bucket_(__bucket),
635 __bucket_count_(__bucket_count)
636 {
637 if (__node_ != nullptr)
638 __node_ = __node_->__next_;
639 }
Howard Hinnant39213642013-07-23 22:01:58 +0000640#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000641 template <class, class, class, class> friend class __hash_table;
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000642 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_const_local_iterator;
643 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_map_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000644};
645
646template <class _ConstNodePtr>
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000647class _LIBCPP_TYPE_VIS_ONLY __hash_const_local_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000648{
Eric Fiselier774c7c52016-02-10 20:46:23 +0000649 typedef __hash_node_types<_ConstNodePtr> _NodeTypes;
650 typedef _ConstNodePtr __node_pointer;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000651
652 __node_pointer __node_;
653 size_t __bucket_;
654 size_t __bucket_count_;
655
656 typedef pointer_traits<__node_pointer> __pointer_traits;
657 typedef typename __pointer_traits::element_type __node;
658 typedef typename remove_const<__node>::type __non_const_node;
Eric Fiselier5cf84e02015-12-30 21:52:00 +0000659 typedef typename __rebind_pointer<__node_pointer, __non_const_node>::type
660 __non_const_node_pointer;
Eric Fiselier0493d022016-02-18 00:20:34 +0000661public:
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000662 typedef __hash_local_iterator<__non_const_node_pointer>
663 __non_const_iterator;
Eric Fiselier0493d022016-02-18 00:20:34 +0000664
Eric Fiselier774c7c52016-02-10 20:46:23 +0000665 typedef forward_iterator_tag iterator_category;
666 typedef typename _NodeTypes::__node_value_type value_type;
667 typedef typename _NodeTypes::difference_type difference_type;
668 typedef const value_type& reference;
669 typedef typename _NodeTypes::__const_node_value_type_pointer pointer;
Eric Fiselier5cf84e02015-12-30 21:52:00 +0000670
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000671
Howard Hinnant39213642013-07-23 22:01:58 +0000672 _LIBCPP_INLINE_VISIBILITY __hash_const_local_iterator() _NOEXCEPT
673 {
674#if _LIBCPP_DEBUG_LEVEL >= 2
675 __get_db()->__insert_i(this);
676#endif
677 }
678
Howard Hinnant99acc502010-09-21 17:32:39 +0000679 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000680 __hash_const_local_iterator(const __non_const_iterator& __x) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000681 : __node_(__x.__node_),
682 __bucket_(__x.__bucket_),
683 __bucket_count_(__x.__bucket_count_)
Howard Hinnant39213642013-07-23 22:01:58 +0000684 {
685#if _LIBCPP_DEBUG_LEVEL >= 2
686 __get_db()->__iterator_copy(this, &__x);
687#endif
688 }
689
690#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000691
Howard Hinnant99acc502010-09-21 17:32:39 +0000692 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000693 __hash_const_local_iterator(const __hash_const_local_iterator& __i)
694 : __node_(__i.__node_),
695 __bucket_(__i.__bucket_),
696 __bucket_count_(__i.__bucket_count_)
697 {
698 __get_db()->__iterator_copy(this, &__i);
699 }
700
Howard Hinnant99acc502010-09-21 17:32:39 +0000701 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant39213642013-07-23 22:01:58 +0000702 ~__hash_const_local_iterator()
703 {
704 __get_db()->__erase_i(this);
705 }
706
707 _LIBCPP_INLINE_VISIBILITY
708 __hash_const_local_iterator& operator=(const __hash_const_local_iterator& __i)
709 {
710 if (this != &__i)
711 {
712 __get_db()->__iterator_copy(this, &__i);
713 __node_ = __i.__node_;
714 __bucket_ = __i.__bucket_;
715 __bucket_count_ = __i.__bucket_count_;
716 }
717 return *this;
718 }
719
720#endif // _LIBCPP_DEBUG_LEVEL >= 2
721
722 _LIBCPP_INLINE_VISIBILITY
723 reference operator*() const
724 {
725#if _LIBCPP_DEBUG_LEVEL >= 2
726 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
727 "Attempted to dereference a non-dereferenceable unordered container const_local_iterator");
728#endif
729 return __node_->__value_;
730 }
731 _LIBCPP_INLINE_VISIBILITY
732 pointer operator->() const
733 {
734#if _LIBCPP_DEBUG_LEVEL >= 2
735 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
736 "Attempted to dereference a non-dereferenceable unordered container const_local_iterator");
737#endif
738 return pointer_traits<pointer>::pointer_to(__node_->__value_);
739 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000740
Howard Hinnant99acc502010-09-21 17:32:39 +0000741 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000742 __hash_const_local_iterator& operator++()
743 {
Howard Hinnant39213642013-07-23 22:01:58 +0000744#if _LIBCPP_DEBUG_LEVEL >= 2
745 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
746 "Attempted to increment non-incrementable unordered container const_local_iterator");
747#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000748 __node_ = __node_->__next_;
Howard Hinnant7a445152012-07-06 17:31:14 +0000749 if (__node_ != nullptr && __constrain_hash(__node_->__hash_, __bucket_count_) != __bucket_)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000750 __node_ = nullptr;
751 return *this;
752 }
753
Howard Hinnant99acc502010-09-21 17:32:39 +0000754 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000755 __hash_const_local_iterator operator++(int)
756 {
757 __hash_const_local_iterator __t(*this);
758 ++(*this);
759 return __t;
760 }
761
Howard Hinnant99acc502010-09-21 17:32:39 +0000762 friend _LIBCPP_INLINE_VISIBILITY
763 bool operator==(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000764 {
Howard Hinnant39213642013-07-23 22:01:58 +0000765 return __x.__node_ == __y.__node_;
766 }
Howard Hinnant99acc502010-09-21 17:32:39 +0000767 friend _LIBCPP_INLINE_VISIBILITY
768 bool operator!=(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y)
Howard Hinnant39213642013-07-23 22:01:58 +0000769 {return !(__x == __y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000770
771private:
Howard Hinnant39213642013-07-23 22:01:58 +0000772#if _LIBCPP_DEBUG_LEVEL >= 2
773 _LIBCPP_INLINE_VISIBILITY
774 __hash_const_local_iterator(__node_pointer __node, size_t __bucket,
775 size_t __bucket_count, const void* __c) _NOEXCEPT
776 : __node_(__node),
777 __bucket_(__bucket),
778 __bucket_count_(__bucket_count)
779 {
780 __get_db()->__insert_ic(this, __c);
781 if (__node_ != nullptr)
782 __node_ = __node_->__next_;
783 }
784#else
Howard Hinnant99acc502010-09-21 17:32:39 +0000785 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000786 __hash_const_local_iterator(__node_pointer __node, size_t __bucket,
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000787 size_t __bucket_count) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000788 : __node_(__node),
789 __bucket_(__bucket),
790 __bucket_count_(__bucket_count)
791 {
792 if (__node_ != nullptr)
793 __node_ = __node_->__next_;
794 }
Howard Hinnant39213642013-07-23 22:01:58 +0000795#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000796 template <class, class, class, class> friend class __hash_table;
Howard Hinnant0f678bd2013-08-12 18:38:34 +0000797 template <class> friend class _LIBCPP_TYPE_VIS_ONLY __hash_map_const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000798};
799
800template <class _Alloc>
801class __bucket_list_deallocator
802{
803 typedef _Alloc allocator_type;
804 typedef allocator_traits<allocator_type> __alloc_traits;
805 typedef typename __alloc_traits::size_type size_type;
806
807 __compressed_pair<size_type, allocator_type> __data_;
808public:
809 typedef typename __alloc_traits::pointer pointer;
810
Howard Hinnant99acc502010-09-21 17:32:39 +0000811 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000812 __bucket_list_deallocator()
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000813 _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000814 : __data_(0) {}
Howard Hinnant99acc502010-09-21 17:32:39 +0000815
816 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000817 __bucket_list_deallocator(const allocator_type& __a, size_type __size)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000818 _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000819 : __data_(__size, __a) {}
820
Howard Hinnant73d21a42010-09-04 23:28:19 +0000821#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000822
Howard Hinnant99acc502010-09-21 17:32:39 +0000823 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000824 __bucket_list_deallocator(__bucket_list_deallocator&& __x)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000825 _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +0000826 : __data_(_VSTD::move(__x.__data_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000827 {
828 __x.size() = 0;
829 }
830
Howard Hinnant73d21a42010-09-04 23:28:19 +0000831#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000832
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000833 _LIBCPP_INLINE_VISIBILITY
834 size_type& size() _NOEXCEPT {return __data_.first();}
835 _LIBCPP_INLINE_VISIBILITY
836 size_type size() const _NOEXCEPT {return __data_.first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000837
Howard Hinnant99acc502010-09-21 17:32:39 +0000838 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000839 allocator_type& __alloc() _NOEXCEPT {return __data_.second();}
840 _LIBCPP_INLINE_VISIBILITY
841 const allocator_type& __alloc() const _NOEXCEPT {return __data_.second();}
842
843 _LIBCPP_INLINE_VISIBILITY
844 void operator()(pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000845 {
846 __alloc_traits::deallocate(__alloc(), __p, size());
847 }
848};
849
Howard Hinnant2b1b2d42011-06-14 19:58:17 +0000850template <class _Alloc> class __hash_map_node_destructor;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000851
852template <class _Alloc>
853class __hash_node_destructor
854{
855 typedef _Alloc allocator_type;
856 typedef allocator_traits<allocator_type> __alloc_traits;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000857
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000858public:
859 typedef typename __alloc_traits::pointer pointer;
860private:
Eric Fiselier2960ae22016-02-11 11:59:44 +0000861 typedef __hash_node_types<pointer> _NodeTypes;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000862
863 allocator_type& __na_;
864
865 __hash_node_destructor& operator=(const __hash_node_destructor&);
866
867public:
868 bool __value_constructed;
869
Howard Hinnant99acc502010-09-21 17:32:39 +0000870 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant199d0ae2011-07-31 17:04:30 +0000871 explicit __hash_node_destructor(allocator_type& __na,
872 bool __constructed = false) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000873 : __na_(__na),
Howard Hinnant199d0ae2011-07-31 17:04:30 +0000874 __value_constructed(__constructed)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000875 {}
876
Howard Hinnant99acc502010-09-21 17:32:39 +0000877 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000878 void operator()(pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000879 {
880 if (__value_constructed)
Eric Fiselier2960ae22016-02-11 11:59:44 +0000881 __alloc_traits::destroy(__na_, _NodeTypes::__get_ptr(__p->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000882 if (__p)
883 __alloc_traits::deallocate(__na_, __p, 1);
884 }
885
886 template <class> friend class __hash_map_node_destructor;
887};
888
889template <class _Tp, class _Hash, class _Equal, class _Alloc>
890class __hash_table
891{
892public:
893 typedef _Tp value_type;
894 typedef _Hash hasher;
895 typedef _Equal key_equal;
896 typedef _Alloc allocator_type;
897
898private:
899 typedef allocator_traits<allocator_type> __alloc_traits;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000900 typedef typename
901 __make_hash_node_types<value_type, typename __alloc_traits::void_pointer>::type
902 _NodeTypes;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000903public:
Eric Fiselier2960ae22016-02-11 11:59:44 +0000904
905 typedef typename _NodeTypes::__node_value_type __node_value_type;
906 typedef typename _NodeTypes::__container_value_type __container_value_type;
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +0000907 typedef typename _NodeTypes::key_type key_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000908 typedef value_type& reference;
909 typedef const value_type& const_reference;
910 typedef typename __alloc_traits::pointer pointer;
911 typedef typename __alloc_traits::const_pointer const_pointer;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000912#ifndef _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000913 typedef typename __alloc_traits::size_type size_type;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000914#else
915 typedef typename _NodeTypes::size_type size_type;
916#endif
917 typedef typename _NodeTypes::difference_type difference_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000918public:
919 // Create __node
Eric Fiselier774c7c52016-02-10 20:46:23 +0000920
921 typedef typename _NodeTypes::__node_type __node;
Marshall Clow66302c62015-04-07 05:21:38 +0000922 typedef typename __rebind_alloc_helper<__alloc_traits, __node>::type __node_allocator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000923 typedef allocator_traits<__node_allocator> __node_traits;
Eric Fiselier9e9f42e2016-02-11 15:22:37 +0000924 typedef typename _NodeTypes::__void_pointer __void_pointer;
Eric Fiselier774c7c52016-02-10 20:46:23 +0000925 typedef typename _NodeTypes::__node_pointer __node_pointer;
926 typedef typename _NodeTypes::__node_pointer __node_const_pointer;
927 typedef typename _NodeTypes::__node_base_type __first_node;
928 typedef typename _NodeTypes::__node_base_pointer __node_base_pointer;
929
930private:
931 // check for sane allocator pointer rebinding semantics. Rebinding the
932 // allocator for a new pointer type should be exactly the same as rebinding
933 // the pointer using 'pointer_traits'.
934 static_assert((is_same<__node_pointer, typename __node_traits::pointer>::value),
935 "Allocator does not rebind pointers in a sane manner.");
936 typedef typename __rebind_alloc_helper<__node_traits, __first_node>::type
937 __node_base_allocator;
938 typedef allocator_traits<__node_base_allocator> __node_base_traits;
939 static_assert((is_same<__node_base_pointer, typename __node_base_traits::pointer>::value),
940 "Allocator does not rebind pointers in a sane manner.");
Marshall Clow0c99f182016-06-30 15:11:53 +0000941 static_assert((is_copy_constructible<key_equal>::value),
942 "Predicate must be copy-constructible.");
943 static_assert((is_copy_constructible<hasher>::value),
944 "Hasher must be copy-constructible.");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000945
946private:
947
Marshall Clow66302c62015-04-07 05:21:38 +0000948 typedef typename __rebind_alloc_helper<__node_traits, __node_pointer>::type __pointer_allocator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000949 typedef __bucket_list_deallocator<__pointer_allocator> __bucket_list_deleter;
950 typedef unique_ptr<__node_pointer[], __bucket_list_deleter> __bucket_list;
951 typedef allocator_traits<__pointer_allocator> __pointer_alloc_traits;
952 typedef typename __bucket_list_deleter::pointer __node_pointer_pointer;
953
954 // --- Member data begin ---
Eric Fiselier774c7c52016-02-10 20:46:23 +0000955 __bucket_list __bucket_list_;
956 __compressed_pair<__first_node, __node_allocator> __p1_;
957 __compressed_pair<size_type, hasher> __p2_;
958 __compressed_pair<float, key_equal> __p3_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000959 // --- Member data end ---
960
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000961 _LIBCPP_INLINE_VISIBILITY
962 size_type& size() _NOEXCEPT {return __p2_.first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000963public:
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000964 _LIBCPP_INLINE_VISIBILITY
965 size_type size() const _NOEXCEPT {return __p2_.first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000966
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000967 _LIBCPP_INLINE_VISIBILITY
968 hasher& hash_function() _NOEXCEPT {return __p2_.second();}
969 _LIBCPP_INLINE_VISIBILITY
970 const hasher& hash_function() const _NOEXCEPT {return __p2_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000971
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000972 _LIBCPP_INLINE_VISIBILITY
973 float& max_load_factor() _NOEXCEPT {return __p3_.first();}
974 _LIBCPP_INLINE_VISIBILITY
975 float max_load_factor() const _NOEXCEPT {return __p3_.first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000976
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000977 _LIBCPP_INLINE_VISIBILITY
978 key_equal& key_eq() _NOEXCEPT {return __p3_.second();}
979 _LIBCPP_INLINE_VISIBILITY
980 const key_equal& key_eq() const _NOEXCEPT {return __p3_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000981
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000982 _LIBCPP_INLINE_VISIBILITY
983 __node_allocator& __node_alloc() _NOEXCEPT {return __p1_.second();}
984 _LIBCPP_INLINE_VISIBILITY
985 const __node_allocator& __node_alloc() const _NOEXCEPT
986 {return __p1_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000987
988public:
989 typedef __hash_iterator<__node_pointer> iterator;
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +0000990 typedef __hash_const_iterator<__node_pointer> const_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000991 typedef __hash_local_iterator<__node_pointer> local_iterator;
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +0000992 typedef __hash_const_local_iterator<__node_pointer> const_local_iterator;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000993
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +0000994 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +0000995 __hash_table()
996 _NOEXCEPT_(
997 is_nothrow_default_constructible<__bucket_list>::value &&
998 is_nothrow_default_constructible<__first_node>::value &&
999 is_nothrow_default_constructible<__node_allocator>::value &&
1000 is_nothrow_default_constructible<hasher>::value &&
1001 is_nothrow_default_constructible<key_equal>::value);
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001002 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001003 __hash_table(const hasher& __hf, const key_equal& __eql);
1004 __hash_table(const hasher& __hf, const key_equal& __eql,
1005 const allocator_type& __a);
1006 explicit __hash_table(const allocator_type& __a);
1007 __hash_table(const __hash_table& __u);
1008 __hash_table(const __hash_table& __u, const allocator_type& __a);
Eric Fiselier2960ae22016-02-11 11:59:44 +00001009#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001010 __hash_table(__hash_table&& __u)
1011 _NOEXCEPT_(
1012 is_nothrow_move_constructible<__bucket_list>::value &&
1013 is_nothrow_move_constructible<__first_node>::value &&
1014 is_nothrow_move_constructible<__node_allocator>::value &&
1015 is_nothrow_move_constructible<hasher>::value &&
1016 is_nothrow_move_constructible<key_equal>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001017 __hash_table(__hash_table&& __u, const allocator_type& __a);
Eric Fiselier2960ae22016-02-11 11:59:44 +00001018#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001019 ~__hash_table();
1020
1021 __hash_table& operator=(const __hash_table& __u);
Eric Fiselier2960ae22016-02-11 11:59:44 +00001022#ifndef _LIBCPP_CXX03_LANG
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001023 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001024 __hash_table& operator=(__hash_table&& __u)
1025 _NOEXCEPT_(
1026 __node_traits::propagate_on_container_move_assignment::value &&
1027 is_nothrow_move_assignable<__node_allocator>::value &&
1028 is_nothrow_move_assignable<hasher>::value &&
1029 is_nothrow_move_assignable<key_equal>::value);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001030#endif
1031 template <class _InputIterator>
1032 void __assign_unique(_InputIterator __first, _InputIterator __last);
1033 template <class _InputIterator>
1034 void __assign_multi(_InputIterator __first, _InputIterator __last);
1035
Howard Hinnant99acc502010-09-21 17:32:39 +00001036 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001037 size_type max_size() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001038 {
1039 return allocator_traits<__pointer_allocator>::max_size(
1040 __bucket_list_.get_deleter().__alloc());
1041 }
1042
1043 pair<iterator, bool> __node_insert_unique(__node_pointer __nd);
1044 iterator __node_insert_multi(__node_pointer __nd);
1045 iterator __node_insert_multi(const_iterator __p,
1046 __node_pointer __nd);
1047
Eric Fiselier2960ae22016-02-11 11:59:44 +00001048#ifndef _LIBCPP_CXX03_LANG
1049 template <class _Key, class ..._Args>
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +00001050 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2960ae22016-02-11 11:59:44 +00001051 pair<iterator, bool> __emplace_unique_key_args(_Key const& __k, _Args&&... __args);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001052
Eric Fiselier2960ae22016-02-11 11:59:44 +00001053 template <class... _Args>
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +00001054 _LIBCPP_INLINE_VISIBILITY
1055 pair<iterator, bool> __emplace_unique_impl(_Args&&... __args);
1056
1057 template <class _Pp>
1058 _LIBCPP_INLINE_VISIBILITY
1059 pair<iterator, bool> __emplace_unique(_Pp&& __x) {
1060 return __emplace_unique_extract_key(_VSTD::forward<_Pp>(__x),
1061 __can_extract_key<_Pp, key_type>());
1062 }
Eric Fiselierdc414cd2016-04-16 00:23:12 +00001063
1064 template <class _First, class _Second>
1065 _LIBCPP_INLINE_VISIBILITY
1066 typename enable_if<
1067 __can_extract_map_key<_First, key_type, __container_value_type>::value,
1068 pair<iterator, bool>
1069 >::type __emplace_unique(_First&& __f, _Second&& __s) {
1070 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f),
1071 _VSTD::forward<_Second>(__s));
1072 }
1073
Eric Fiselier2960ae22016-02-11 11:59:44 +00001074 template <class... _Args>
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +00001075 _LIBCPP_INLINE_VISIBILITY
1076 pair<iterator, bool> __emplace_unique(_Args&&... __args) {
1077 return __emplace_unique_impl(_VSTD::forward<_Args>(__args)...);
1078 }
1079
1080 template <class _Pp>
1081 _LIBCPP_INLINE_VISIBILITY
1082 pair<iterator, bool>
1083 __emplace_unique_extract_key(_Pp&& __x, __extract_key_fail_tag) {
1084 return __emplace_unique_impl(_VSTD::forward<_Pp>(__x));
1085 }
1086 template <class _Pp>
1087 _LIBCPP_INLINE_VISIBILITY
1088 pair<iterator, bool>
1089 __emplace_unique_extract_key(_Pp&& __x, __extract_key_self_tag) {
1090 return __emplace_unique_key_args(__x, _VSTD::forward<_Pp>(__x));
1091 }
1092 template <class _Pp>
1093 _LIBCPP_INLINE_VISIBILITY
1094 pair<iterator, bool>
1095 __emplace_unique_extract_key(_Pp&& __x, __extract_key_first_tag) {
1096 return __emplace_unique_key_args(__x.first, _VSTD::forward<_Pp>(__x));
1097 }
1098
1099 template <class... _Args>
1100 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2960ae22016-02-11 11:59:44 +00001101 iterator __emplace_multi(_Args&&... __args);
1102 template <class... _Args>
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +00001103 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2960ae22016-02-11 11:59:44 +00001104 iterator __emplace_hint_multi(const_iterator __p, _Args&&... __args);
1105
1106
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001107 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2960ae22016-02-11 11:59:44 +00001108 pair<iterator, bool>
1109 __insert_unique(__container_value_type&& __x) {
1110 return __emplace_unique_key_args(_NodeTypes::__get_key(__x), _VSTD::move(__x));
1111 }
1112
1113 template <class _Pp, class = typename enable_if<
1114 !__is_same_uncvref<_Pp, __container_value_type>::value
1115 >::type>
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001116 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2960ae22016-02-11 11:59:44 +00001117 pair<iterator, bool> __insert_unique(_Pp&& __x) {
1118 return __emplace_unique(_VSTD::forward<_Pp>(__x));
1119 }
1120
1121 template <class _Pp>
1122 _LIBCPP_INLINE_VISIBILITY
1123 iterator __insert_multi(_Pp&& __x) {
1124 return __emplace_multi(_VSTD::forward<_Pp>(__x));
1125 }
1126
1127 template <class _Pp>
1128 _LIBCPP_INLINE_VISIBILITY
1129 iterator __insert_multi(const_iterator __p, _Pp&& __x) {
1130 return __emplace_hint_multi(__p, _VSTD::forward<_Pp>(__x));
1131 }
1132
1133#else // !defined(_LIBCPP_CXX03_LANG)
1134 template <class _Key, class _Args>
1135 pair<iterator, bool> __emplace_unique_key_args(_Key const&, _Args& __args);
1136
1137 iterator __insert_multi(const __container_value_type& __x);
1138 iterator __insert_multi(const_iterator __p, const __container_value_type& __x);
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001139#endif
1140
Eric Fiselier2960ae22016-02-11 11:59:44 +00001141 _LIBCPP_INLINE_VISIBILITY
1142 pair<iterator, bool> __insert_unique(const __container_value_type& __x) {
1143 return __emplace_unique_key_args(_NodeTypes::__get_key(__x), __x);
1144 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001145
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001146 void clear() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001147 void rehash(size_type __n);
Howard Hinnant99acc502010-09-21 17:32:39 +00001148 _LIBCPP_INLINE_VISIBILITY void reserve(size_type __n)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001149 {rehash(static_cast<size_type>(ceil(__n / max_load_factor())));}
Howard Hinnant99acc502010-09-21 17:32:39 +00001150
1151 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001152 size_type bucket_count() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001153 {
1154 return __bucket_list_.get_deleter().size();
1155 }
1156
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001157 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001158 iterator begin() _NOEXCEPT;
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001159 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001160 iterator end() _NOEXCEPT;
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001161 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001162 const_iterator begin() const _NOEXCEPT;
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001163 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001164 const_iterator end() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001165
1166 template <class _Key>
Howard Hinnant99acc502010-09-21 17:32:39 +00001167 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001168 size_type bucket(const _Key& __k) const
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00001169 {
1170 _LIBCPP_ASSERT(bucket_count() > 0,
1171 "unordered container::bucket(key) called when bucket_count() == 0");
1172 return __constrain_hash(hash_function()(__k), bucket_count());
1173 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001174
1175 template <class _Key>
1176 iterator find(const _Key& __x);
1177 template <class _Key>
1178 const_iterator find(const _Key& __x) const;
1179
Howard Hinnant99968442011-11-29 18:15:50 +00001180 typedef __hash_node_destructor<__node_allocator> _Dp;
1181 typedef unique_ptr<__node, _Dp> __node_holder;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001182
1183 iterator erase(const_iterator __p);
1184 iterator erase(const_iterator __first, const_iterator __last);
1185 template <class _Key>
1186 size_type __erase_unique(const _Key& __k);
1187 template <class _Key>
1188 size_type __erase_multi(const _Key& __k);
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001189 __node_holder remove(const_iterator __p) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001190
1191 template <class _Key>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001192 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001193 size_type __count_unique(const _Key& __k) const;
1194 template <class _Key>
1195 size_type __count_multi(const _Key& __k) const;
1196
1197 template <class _Key>
1198 pair<iterator, iterator>
1199 __equal_range_unique(const _Key& __k);
1200 template <class _Key>
1201 pair<const_iterator, const_iterator>
1202 __equal_range_unique(const _Key& __k) const;
1203
1204 template <class _Key>
1205 pair<iterator, iterator>
1206 __equal_range_multi(const _Key& __k);
1207 template <class _Key>
1208 pair<const_iterator, const_iterator>
1209 __equal_range_multi(const _Key& __k) const;
1210
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001211 void swap(__hash_table& __u)
Eric Fiselier692177d2015-07-18 20:40:46 +00001212#if _LIBCPP_STD_VER <= 11
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001213 _NOEXCEPT_(
Marshall Clow7d914d12015-07-13 20:04:56 +00001214 __is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value
Marshall Clow7d914d12015-07-13 20:04:56 +00001215 && (!allocator_traits<__pointer_allocator>::propagate_on_container_swap::value
1216 || __is_nothrow_swappable<__pointer_allocator>::value)
1217 && (!__node_traits::propagate_on_container_swap::value
1218 || __is_nothrow_swappable<__node_allocator>::value)
Marshall Clow7d914d12015-07-13 20:04:56 +00001219 );
Eric Fiselier692177d2015-07-18 20:40:46 +00001220#else
1221 _NOEXCEPT_(__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value);
1222#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001223
Howard Hinnant99acc502010-09-21 17:32:39 +00001224 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001225 size_type max_bucket_count() const _NOEXCEPT
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001226 {return __pointer_alloc_traits::max_size(__bucket_list_.get_deleter().__alloc());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001227 size_type bucket_size(size_type __n) const;
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001228 _LIBCPP_INLINE_VISIBILITY float load_factor() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001229 {
1230 size_type __bc = bucket_count();
1231 return __bc != 0 ? (float)size() / __bc : 0.f;
1232 }
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001233 _LIBCPP_INLINE_VISIBILITY void max_load_factor(float __mlf) _NOEXCEPT
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00001234 {
1235 _LIBCPP_ASSERT(__mlf > 0,
1236 "unordered container::max_load_factor(lf) called with lf <= 0");
1237 max_load_factor() = _VSTD::max(__mlf, load_factor());
1238 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001239
Howard Hinnant39213642013-07-23 22:01:58 +00001240 _LIBCPP_INLINE_VISIBILITY
1241 local_iterator
1242 begin(size_type __n)
1243 {
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00001244 _LIBCPP_ASSERT(__n < bucket_count(),
1245 "unordered container::begin(n) called with n >= bucket_count()");
Howard Hinnant39213642013-07-23 22:01:58 +00001246#if _LIBCPP_DEBUG_LEVEL >= 2
1247 return local_iterator(__bucket_list_[__n], __n, bucket_count(), this);
1248#else
1249 return local_iterator(__bucket_list_[__n], __n, bucket_count());
1250#endif
1251 }
1252
1253 _LIBCPP_INLINE_VISIBILITY
1254 local_iterator
1255 end(size_type __n)
1256 {
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00001257 _LIBCPP_ASSERT(__n < bucket_count(),
1258 "unordered container::end(n) called with n >= bucket_count()");
Howard Hinnant39213642013-07-23 22:01:58 +00001259#if _LIBCPP_DEBUG_LEVEL >= 2
1260 return local_iterator(nullptr, __n, bucket_count(), this);
1261#else
1262 return local_iterator(nullptr, __n, bucket_count());
1263#endif
1264 }
1265
1266 _LIBCPP_INLINE_VISIBILITY
1267 const_local_iterator
1268 cbegin(size_type __n) const
1269 {
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00001270 _LIBCPP_ASSERT(__n < bucket_count(),
1271 "unordered container::cbegin(n) called with n >= bucket_count()");
Howard Hinnant39213642013-07-23 22:01:58 +00001272#if _LIBCPP_DEBUG_LEVEL >= 2
1273 return const_local_iterator(__bucket_list_[__n], __n, bucket_count(), this);
1274#else
1275 return const_local_iterator(__bucket_list_[__n], __n, bucket_count());
1276#endif
1277 }
1278
1279 _LIBCPP_INLINE_VISIBILITY
1280 const_local_iterator
1281 cend(size_type __n) const
1282 {
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00001283 _LIBCPP_ASSERT(__n < bucket_count(),
1284 "unordered container::cend(n) called with n >= bucket_count()");
Howard Hinnant39213642013-07-23 22:01:58 +00001285#if _LIBCPP_DEBUG_LEVEL >= 2
1286 return const_local_iterator(nullptr, __n, bucket_count(), this);
1287#else
1288 return const_local_iterator(nullptr, __n, bucket_count());
1289#endif
1290 }
1291
1292#if _LIBCPP_DEBUG_LEVEL >= 2
1293
1294 bool __dereferenceable(const const_iterator* __i) const;
1295 bool __decrementable(const const_iterator* __i) const;
1296 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
1297 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
1298
1299#endif // _LIBCPP_DEBUG_LEVEL >= 2
1300
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001301private:
1302 void __rehash(size_type __n);
1303
Eric Fiselier2960ae22016-02-11 11:59:44 +00001304#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001305 template <class ..._Args>
Eric Fiselier2960ae22016-02-11 11:59:44 +00001306 __node_holder __construct_node(_Args&& ...__args);
1307
1308 template <class _First, class ..._Rest>
1309 __node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... __rest);
1310#else // _LIBCPP_CXX03_LANG
1311 __node_holder __construct_node(const __container_value_type& __v);
1312 __node_holder __construct_node_hash(size_t __hash, const __container_value_type& __v);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001313#endif
Eric Fiselier2960ae22016-02-11 11:59:44 +00001314
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001315
Howard Hinnant99acc502010-09-21 17:32:39 +00001316 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001317 void __copy_assign_alloc(const __hash_table& __u)
1318 {__copy_assign_alloc(__u, integral_constant<bool,
1319 __node_traits::propagate_on_container_copy_assignment::value>());}
1320 void __copy_assign_alloc(const __hash_table& __u, true_type);
Howard Hinnant99acc502010-09-21 17:32:39 +00001321 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantec3773c2011-12-01 20:21:04 +00001322 void __copy_assign_alloc(const __hash_table&, false_type) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001323
Eric Fiselier2960ae22016-02-11 11:59:44 +00001324#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001325 void __move_assign(__hash_table& __u, false_type);
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001326 void __move_assign(__hash_table& __u, true_type)
1327 _NOEXCEPT_(
1328 is_nothrow_move_assignable<__node_allocator>::value &&
1329 is_nothrow_move_assignable<hasher>::value &&
1330 is_nothrow_move_assignable<key_equal>::value);
1331 _LIBCPP_INLINE_VISIBILITY
1332 void __move_assign_alloc(__hash_table& __u)
1333 _NOEXCEPT_(
1334 !__node_traits::propagate_on_container_move_assignment::value ||
1335 (is_nothrow_move_assignable<__pointer_allocator>::value &&
1336 is_nothrow_move_assignable<__node_allocator>::value))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001337 {__move_assign_alloc(__u, integral_constant<bool,
1338 __node_traits::propagate_on_container_move_assignment::value>());}
Howard Hinnant99acc502010-09-21 17:32:39 +00001339 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001340 void __move_assign_alloc(__hash_table& __u, true_type)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001341 _NOEXCEPT_(
1342 is_nothrow_move_assignable<__pointer_allocator>::value &&
1343 is_nothrow_move_assignable<__node_allocator>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001344 {
1345 __bucket_list_.get_deleter().__alloc() =
Howard Hinnant0949eed2011-06-30 21:18:19 +00001346 _VSTD::move(__u.__bucket_list_.get_deleter().__alloc());
1347 __node_alloc() = _VSTD::move(__u.__node_alloc());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001348 }
Howard Hinnant99acc502010-09-21 17:32:39 +00001349 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001350 void __move_assign_alloc(__hash_table&, false_type) _NOEXCEPT {}
Eric Fiselier2960ae22016-02-11 11:59:44 +00001351#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001352
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001353 void __deallocate(__node_pointer __np) _NOEXCEPT;
1354 __node_pointer __detach() _NOEXCEPT;
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001355
Howard Hinnant0f678bd2013-08-12 18:38:34 +00001356 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_map;
1357 template <class, class, class, class, class> friend class _LIBCPP_TYPE_VIS_ONLY unordered_multimap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001358};
1359
1360template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001361inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001362__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table()
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001363 _NOEXCEPT_(
1364 is_nothrow_default_constructible<__bucket_list>::value &&
1365 is_nothrow_default_constructible<__first_node>::value &&
Eric Fiselierc8f54c22015-12-16 00:53:04 +00001366 is_nothrow_default_constructible<__node_allocator>::value &&
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001367 is_nothrow_default_constructible<hasher>::value &&
1368 is_nothrow_default_constructible<key_equal>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001369 : __p2_(0),
1370 __p3_(1.0f)
1371{
1372}
1373
1374template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001375inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001376__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const hasher& __hf,
1377 const key_equal& __eql)
1378 : __bucket_list_(nullptr, __bucket_list_deleter()),
1379 __p1_(),
1380 __p2_(0, __hf),
1381 __p3_(1.0f, __eql)
1382{
1383}
1384
1385template <class _Tp, class _Hash, class _Equal, class _Alloc>
1386__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const hasher& __hf,
1387 const key_equal& __eql,
1388 const allocator_type& __a)
1389 : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
1390 __p1_(__node_allocator(__a)),
1391 __p2_(0, __hf),
1392 __p3_(1.0f, __eql)
1393{
1394}
1395
1396template <class _Tp, class _Hash, class _Equal, class _Alloc>
1397__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const allocator_type& __a)
1398 : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
1399 __p1_(__node_allocator(__a)),
1400 __p2_(0),
1401 __p3_(1.0f)
1402{
1403}
1404
1405template <class _Tp, class _Hash, class _Equal, class _Alloc>
1406__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const __hash_table& __u)
1407 : __bucket_list_(nullptr,
1408 __bucket_list_deleter(allocator_traits<__pointer_allocator>::
1409 select_on_container_copy_construction(
1410 __u.__bucket_list_.get_deleter().__alloc()), 0)),
1411 __p1_(allocator_traits<__node_allocator>::
1412 select_on_container_copy_construction(__u.__node_alloc())),
1413 __p2_(0, __u.hash_function()),
1414 __p3_(__u.__p3_)
1415{
1416}
1417
1418template <class _Tp, class _Hash, class _Equal, class _Alloc>
1419__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const __hash_table& __u,
1420 const allocator_type& __a)
1421 : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
1422 __p1_(__node_allocator(__a)),
1423 __p2_(0, __u.hash_function()),
1424 __p3_(__u.__p3_)
1425{
1426}
1427
Eric Fiselier2960ae22016-02-11 11:59:44 +00001428#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001429
1430template <class _Tp, class _Hash, class _Equal, class _Alloc>
1431__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001432 _NOEXCEPT_(
1433 is_nothrow_move_constructible<__bucket_list>::value &&
1434 is_nothrow_move_constructible<__first_node>::value &&
Eric Fiselierc8f54c22015-12-16 00:53:04 +00001435 is_nothrow_move_constructible<__node_allocator>::value &&
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001436 is_nothrow_move_constructible<hasher>::value &&
1437 is_nothrow_move_constructible<key_equal>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001438 : __bucket_list_(_VSTD::move(__u.__bucket_list_)),
1439 __p1_(_VSTD::move(__u.__p1_)),
1440 __p2_(_VSTD::move(__u.__p2_)),
1441 __p3_(_VSTD::move(__u.__p3_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001442{
1443 if (size() > 0)
1444 {
Howard Hinnant7a445152012-07-06 17:31:14 +00001445 __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash_, bucket_count())] =
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001446 static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001447 __u.__p1_.first().__next_ = nullptr;
1448 __u.size() = 0;
1449 }
1450}
1451
1452template <class _Tp, class _Hash, class _Equal, class _Alloc>
1453__hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u,
1454 const allocator_type& __a)
1455 : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)),
1456 __p1_(__node_allocator(__a)),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001457 __p2_(0, _VSTD::move(__u.hash_function())),
1458 __p3_(_VSTD::move(__u.__p3_))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001459{
1460 if (__a == allocator_type(__u.__node_alloc()))
1461 {
1462 __bucket_list_.reset(__u.__bucket_list_.release());
1463 __bucket_list_.get_deleter().size() = __u.__bucket_list_.get_deleter().size();
1464 __u.__bucket_list_.get_deleter().size() = 0;
1465 if (__u.size() > 0)
1466 {
1467 __p1_.first().__next_ = __u.__p1_.first().__next_;
1468 __u.__p1_.first().__next_ = nullptr;
Howard Hinnant7a445152012-07-06 17:31:14 +00001469 __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash_, bucket_count())] =
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001470 static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001471 size() = __u.size();
1472 __u.size() = 0;
1473 }
1474 }
1475}
1476
Eric Fiselier2960ae22016-02-11 11:59:44 +00001477#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001478
1479template <class _Tp, class _Hash, class _Equal, class _Alloc>
1480__hash_table<_Tp, _Hash, _Equal, _Alloc>::~__hash_table()
1481{
1482 __deallocate(__p1_.first().__next_);
Howard Hinnant39213642013-07-23 22:01:58 +00001483#if _LIBCPP_DEBUG_LEVEL >= 2
1484 __get_db()->__erase_c(this);
1485#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001486}
1487
1488template <class _Tp, class _Hash, class _Equal, class _Alloc>
1489void
1490__hash_table<_Tp, _Hash, _Equal, _Alloc>::__copy_assign_alloc(
1491 const __hash_table& __u, true_type)
1492{
1493 if (__node_alloc() != __u.__node_alloc())
1494 {
1495 clear();
1496 __bucket_list_.reset();
1497 __bucket_list_.get_deleter().size() = 0;
1498 }
1499 __bucket_list_.get_deleter().__alloc() = __u.__bucket_list_.get_deleter().__alloc();
1500 __node_alloc() = __u.__node_alloc();
1501}
1502
1503template <class _Tp, class _Hash, class _Equal, class _Alloc>
1504__hash_table<_Tp, _Hash, _Equal, _Alloc>&
1505__hash_table<_Tp, _Hash, _Equal, _Alloc>::operator=(const __hash_table& __u)
1506{
1507 if (this != &__u)
1508 {
1509 __copy_assign_alloc(__u);
1510 hash_function() = __u.hash_function();
1511 key_eq() = __u.key_eq();
1512 max_load_factor() = __u.max_load_factor();
1513 __assign_multi(__u.begin(), __u.end());
1514 }
1515 return *this;
1516}
1517
1518template <class _Tp, class _Hash, class _Equal, class _Alloc>
1519void
1520__hash_table<_Tp, _Hash, _Equal, _Alloc>::__deallocate(__node_pointer __np)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001521 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001522{
1523 __node_allocator& __na = __node_alloc();
1524 while (__np != nullptr)
1525 {
1526 __node_pointer __next = __np->__next_;
Howard Hinnant39213642013-07-23 22:01:58 +00001527#if _LIBCPP_DEBUG_LEVEL >= 2
1528 __c_node* __c = __get_db()->__find_c_and_lock(this);
1529 for (__i_node** __p = __c->end_; __p != __c->beg_; )
1530 {
1531 --__p;
1532 iterator* __i = static_cast<iterator*>((*__p)->__i_);
1533 if (__i->__node_ == __np)
1534 {
1535 (*__p)->__c_ = nullptr;
1536 if (--__c->end_ != __p)
1537 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
1538 }
1539 }
1540 __get_db()->unlock();
1541#endif
Eric Fiselier2960ae22016-02-11 11:59:44 +00001542 __node_traits::destroy(__na, _NodeTypes::__get_ptr(__np->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001543 __node_traits::deallocate(__na, __np, 1);
1544 __np = __next;
1545 }
1546}
1547
1548template <class _Tp, class _Hash, class _Equal, class _Alloc>
1549typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_pointer
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001550__hash_table<_Tp, _Hash, _Equal, _Alloc>::__detach() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001551{
1552 size_type __bc = bucket_count();
1553 for (size_type __i = 0; __i < __bc; ++__i)
1554 __bucket_list_[__i] = nullptr;
1555 size() = 0;
1556 __node_pointer __cache = __p1_.first().__next_;
1557 __p1_.first().__next_ = nullptr;
1558 return __cache;
1559}
1560
Eric Fiselier2960ae22016-02-11 11:59:44 +00001561#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001562
1563template <class _Tp, class _Hash, class _Equal, class _Alloc>
1564void
1565__hash_table<_Tp, _Hash, _Equal, _Alloc>::__move_assign(
1566 __hash_table& __u, true_type)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001567 _NOEXCEPT_(
1568 is_nothrow_move_assignable<__node_allocator>::value &&
1569 is_nothrow_move_assignable<hasher>::value &&
1570 is_nothrow_move_assignable<key_equal>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001571{
1572 clear();
1573 __bucket_list_.reset(__u.__bucket_list_.release());
1574 __bucket_list_.get_deleter().size() = __u.__bucket_list_.get_deleter().size();
1575 __u.__bucket_list_.get_deleter().size() = 0;
1576 __move_assign_alloc(__u);
1577 size() = __u.size();
Howard Hinnant0949eed2011-06-30 21:18:19 +00001578 hash_function() = _VSTD::move(__u.hash_function());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001579 max_load_factor() = __u.max_load_factor();
Howard Hinnant0949eed2011-06-30 21:18:19 +00001580 key_eq() = _VSTD::move(__u.key_eq());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001581 __p1_.first().__next_ = __u.__p1_.first().__next_;
1582 if (size() > 0)
1583 {
Howard Hinnant7a445152012-07-06 17:31:14 +00001584 __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash_, bucket_count())] =
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001585 static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001586 __u.__p1_.first().__next_ = nullptr;
1587 __u.size() = 0;
1588 }
Howard Hinnant39213642013-07-23 22:01:58 +00001589#if _LIBCPP_DEBUG_LEVEL >= 2
1590 __get_db()->swap(this, &__u);
1591#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001592}
1593
1594template <class _Tp, class _Hash, class _Equal, class _Alloc>
1595void
1596__hash_table<_Tp, _Hash, _Equal, _Alloc>::__move_assign(
1597 __hash_table& __u, false_type)
1598{
1599 if (__node_alloc() == __u.__node_alloc())
1600 __move_assign(__u, true_type());
1601 else
1602 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001603 hash_function() = _VSTD::move(__u.hash_function());
1604 key_eq() = _VSTD::move(__u.key_eq());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001605 max_load_factor() = __u.max_load_factor();
1606 if (bucket_count() != 0)
1607 {
1608 __node_pointer __cache = __detach();
1609#ifndef _LIBCPP_NO_EXCEPTIONS
1610 try
1611 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001612#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001613 const_iterator __i = __u.begin();
1614 while (__cache != nullptr && __u.size() != 0)
1615 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001616 __cache->__value_ = _VSTD::move(__u.remove(__i++)->__value_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001617 __node_pointer __next = __cache->__next_;
1618 __node_insert_multi(__cache);
1619 __cache = __next;
1620 }
1621#ifndef _LIBCPP_NO_EXCEPTIONS
1622 }
1623 catch (...)
1624 {
1625 __deallocate(__cache);
1626 throw;
1627 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001628#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001629 __deallocate(__cache);
1630 }
1631 const_iterator __i = __u.begin();
1632 while (__u.size() != 0)
1633 {
Eric Fiselier2960ae22016-02-11 11:59:44 +00001634 __node_holder __h = __construct_node(_NodeTypes::__move(__u.remove(__i++)->__value_));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001635 __node_insert_multi(__h.get());
1636 __h.release();
1637 }
1638 }
1639}
1640
1641template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001642inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001643__hash_table<_Tp, _Hash, _Equal, _Alloc>&
1644__hash_table<_Tp, _Hash, _Equal, _Alloc>::operator=(__hash_table&& __u)
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001645 _NOEXCEPT_(
1646 __node_traits::propagate_on_container_move_assignment::value &&
1647 is_nothrow_move_assignable<__node_allocator>::value &&
1648 is_nothrow_move_assignable<hasher>::value &&
1649 is_nothrow_move_assignable<key_equal>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001650{
1651 __move_assign(__u, integral_constant<bool,
1652 __node_traits::propagate_on_container_move_assignment::value>());
1653 return *this;
1654}
1655
Eric Fiselier2960ae22016-02-11 11:59:44 +00001656#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001657
1658template <class _Tp, class _Hash, class _Equal, class _Alloc>
1659template <class _InputIterator>
1660void
1661__hash_table<_Tp, _Hash, _Equal, _Alloc>::__assign_unique(_InputIterator __first,
1662 _InputIterator __last)
1663{
Eric Fiselier2960ae22016-02-11 11:59:44 +00001664 typedef iterator_traits<_InputIterator> _ITraits;
1665 typedef typename _ITraits::value_type _ItValueType;
1666 static_assert((is_same<_ItValueType, __container_value_type>::value),
1667 "__assign_unique may only be called with the containers value type");
1668
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001669 if (bucket_count() != 0)
1670 {
1671 __node_pointer __cache = __detach();
1672#ifndef _LIBCPP_NO_EXCEPTIONS
1673 try
1674 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001675#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001676 for (; __cache != nullptr && __first != __last; ++__first)
1677 {
1678 __cache->__value_ = *__first;
1679 __node_pointer __next = __cache->__next_;
1680 __node_insert_unique(__cache);
1681 __cache = __next;
1682 }
1683#ifndef _LIBCPP_NO_EXCEPTIONS
1684 }
1685 catch (...)
1686 {
1687 __deallocate(__cache);
1688 throw;
1689 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001690#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001691 __deallocate(__cache);
1692 }
1693 for (; __first != __last; ++__first)
1694 __insert_unique(*__first);
1695}
1696
1697template <class _Tp, class _Hash, class _Equal, class _Alloc>
1698template <class _InputIterator>
1699void
1700__hash_table<_Tp, _Hash, _Equal, _Alloc>::__assign_multi(_InputIterator __first,
1701 _InputIterator __last)
1702{
Eric Fiselier2960ae22016-02-11 11:59:44 +00001703 typedef iterator_traits<_InputIterator> _ITraits;
1704 typedef typename _ITraits::value_type _ItValueType;
1705 static_assert((is_same<_ItValueType, __container_value_type>::value ||
1706 is_same<_ItValueType, __node_value_type>::value),
1707 "__assign_multi may only be called with the containers value type"
1708 " or the nodes value type");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001709 if (bucket_count() != 0)
1710 {
1711 __node_pointer __cache = __detach();
1712#ifndef _LIBCPP_NO_EXCEPTIONS
1713 try
1714 {
Howard Hinnant324bb032010-08-22 00:02:43 +00001715#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001716 for (; __cache != nullptr && __first != __last; ++__first)
1717 {
1718 __cache->__value_ = *__first;
1719 __node_pointer __next = __cache->__next_;
1720 __node_insert_multi(__cache);
1721 __cache = __next;
1722 }
1723#ifndef _LIBCPP_NO_EXCEPTIONS
1724 }
1725 catch (...)
1726 {
1727 __deallocate(__cache);
1728 throw;
1729 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001730#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001731 __deallocate(__cache);
1732 }
1733 for (; __first != __last; ++__first)
Eric Fiselier2960ae22016-02-11 11:59:44 +00001734 __insert_multi(_NodeTypes::__get_value(*__first));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001735}
1736
1737template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001738inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001739typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001740__hash_table<_Tp, _Hash, _Equal, _Alloc>::begin() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001741{
Howard Hinnant39213642013-07-23 22:01:58 +00001742#if _LIBCPP_DEBUG_LEVEL >= 2
1743 return iterator(__p1_.first().__next_, this);
1744#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001745 return iterator(__p1_.first().__next_);
Howard Hinnant39213642013-07-23 22:01:58 +00001746#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001747}
1748
1749template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001750inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001751typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001752__hash_table<_Tp, _Hash, _Equal, _Alloc>::end() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001753{
Howard Hinnant39213642013-07-23 22:01:58 +00001754#if _LIBCPP_DEBUG_LEVEL >= 2
1755 return iterator(nullptr, this);
1756#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001757 return iterator(nullptr);
Howard Hinnant39213642013-07-23 22:01:58 +00001758#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001759}
1760
1761template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001762inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001763typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001764__hash_table<_Tp, _Hash, _Equal, _Alloc>::begin() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001765{
Howard Hinnant39213642013-07-23 22:01:58 +00001766#if _LIBCPP_DEBUG_LEVEL >= 2
1767 return const_iterator(__p1_.first().__next_, this);
1768#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001769 return const_iterator(__p1_.first().__next_);
Howard Hinnant39213642013-07-23 22:01:58 +00001770#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001771}
1772
1773template <class _Tp, class _Hash, class _Equal, class _Alloc>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00001774inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001775typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001776__hash_table<_Tp, _Hash, _Equal, _Alloc>::end() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001777{
Howard Hinnant39213642013-07-23 22:01:58 +00001778#if _LIBCPP_DEBUG_LEVEL >= 2
1779 return const_iterator(nullptr, this);
1780#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001781 return const_iterator(nullptr);
Howard Hinnant39213642013-07-23 22:01:58 +00001782#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001783}
1784
1785template <class _Tp, class _Hash, class _Equal, class _Alloc>
1786void
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00001787__hash_table<_Tp, _Hash, _Equal, _Alloc>::clear() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001788{
1789 if (size() > 0)
1790 {
1791 __deallocate(__p1_.first().__next_);
1792 __p1_.first().__next_ = nullptr;
1793 size_type __bc = bucket_count();
Howard Hinnant9f66bff2011-07-05 14:14:17 +00001794 for (size_type __i = 0; __i < __bc; ++__i)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001795 __bucket_list_[__i] = nullptr;
1796 size() = 0;
1797 }
1798}
1799
1800template <class _Tp, class _Hash, class _Equal, class _Alloc>
1801pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
1802__hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_unique(__node_pointer __nd)
1803{
1804 __nd->__hash_ = hash_function()(__nd->__value_);
1805 size_type __bc = bucket_count();
1806 bool __inserted = false;
1807 __node_pointer __ndptr;
1808 size_t __chash;
1809 if (__bc != 0)
1810 {
Howard Hinnant7a445152012-07-06 17:31:14 +00001811 __chash = __constrain_hash(__nd->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001812 __ndptr = __bucket_list_[__chash];
1813 if (__ndptr != nullptr)
1814 {
1815 for (__ndptr = __ndptr->__next_; __ndptr != nullptr &&
Howard Hinnant7a445152012-07-06 17:31:14 +00001816 __constrain_hash(__ndptr->__hash_, __bc) == __chash;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001817 __ndptr = __ndptr->__next_)
1818 {
1819 if (key_eq()(__ndptr->__value_, __nd->__value_))
1820 goto __done;
1821 }
1822 }
1823 }
1824 {
1825 if (size()+1 > __bc * max_load_factor() || __bc == 0)
1826 {
Eric Fiselier57947ca2015-02-02 21:31:48 +00001827 rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001828 size_type(ceil(float(size() + 1) / max_load_factor()))));
1829 __bc = bucket_count();
Howard Hinnant7a445152012-07-06 17:31:14 +00001830 __chash = __constrain_hash(__nd->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001831 }
1832 // insert_after __bucket_list_[__chash], or __first_node if bucket is null
1833 __node_pointer __pn = __bucket_list_[__chash];
1834 if (__pn == nullptr)
1835 {
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001836 __pn = static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001837 __nd->__next_ = __pn->__next_;
1838 __pn->__next_ = __nd;
1839 // fix up __bucket_list_
1840 __bucket_list_[__chash] = __pn;
1841 if (__nd->__next_ != nullptr)
Howard Hinnant7a445152012-07-06 17:31:14 +00001842 __bucket_list_[__constrain_hash(__nd->__next_->__hash_, __bc)] = __nd;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001843 }
1844 else
1845 {
1846 __nd->__next_ = __pn->__next_;
1847 __pn->__next_ = __nd;
1848 }
1849 __ndptr = __nd;
1850 // increment size
1851 ++size();
1852 __inserted = true;
1853 }
1854__done:
Howard Hinnant39213642013-07-23 22:01:58 +00001855#if _LIBCPP_DEBUG_LEVEL >= 2
1856 return pair<iterator, bool>(iterator(__ndptr, this), __inserted);
1857#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001858 return pair<iterator, bool>(iterator(__ndptr), __inserted);
Howard Hinnant39213642013-07-23 22:01:58 +00001859#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001860}
1861
1862template <class _Tp, class _Hash, class _Equal, class _Alloc>
1863typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
1864__hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_multi(__node_pointer __cp)
1865{
1866 __cp->__hash_ = hash_function()(__cp->__value_);
1867 size_type __bc = bucket_count();
1868 if (size()+1 > __bc * max_load_factor() || __bc == 0)
1869 {
Eric Fiselier57947ca2015-02-02 21:31:48 +00001870 rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001871 size_type(ceil(float(size() + 1) / max_load_factor()))));
1872 __bc = bucket_count();
1873 }
Howard Hinnant7a445152012-07-06 17:31:14 +00001874 size_t __chash = __constrain_hash(__cp->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001875 __node_pointer __pn = __bucket_list_[__chash];
1876 if (__pn == nullptr)
1877 {
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001878 __pn = static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001879 __cp->__next_ = __pn->__next_;
1880 __pn->__next_ = __cp;
1881 // fix up __bucket_list_
1882 __bucket_list_[__chash] = __pn;
1883 if (__cp->__next_ != nullptr)
Howard Hinnant7a445152012-07-06 17:31:14 +00001884 __bucket_list_[__constrain_hash(__cp->__next_->__hash_, __bc)] = __cp;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001885 }
1886 else
1887 {
1888 for (bool __found = false; __pn->__next_ != nullptr &&
Howard Hinnant7a445152012-07-06 17:31:14 +00001889 __constrain_hash(__pn->__next_->__hash_, __bc) == __chash;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001890 __pn = __pn->__next_)
Howard Hinnant324bb032010-08-22 00:02:43 +00001891 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001892 // __found key_eq() action
1893 // false false loop
1894 // true true loop
1895 // false true set __found to true
1896 // true false break
1897 if (__found != (__pn->__next_->__hash_ == __cp->__hash_ &&
1898 key_eq()(__pn->__next_->__value_, __cp->__value_)))
1899 {
1900 if (!__found)
1901 __found = true;
1902 else
1903 break;
1904 }
1905 }
1906 __cp->__next_ = __pn->__next_;
1907 __pn->__next_ = __cp;
1908 if (__cp->__next_ != nullptr)
1909 {
Howard Hinnant7a445152012-07-06 17:31:14 +00001910 size_t __nhash = __constrain_hash(__cp->__next_->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001911 if (__nhash != __chash)
1912 __bucket_list_[__nhash] = __cp;
1913 }
1914 }
1915 ++size();
Howard Hinnant39213642013-07-23 22:01:58 +00001916#if _LIBCPP_DEBUG_LEVEL >= 2
1917 return iterator(__cp, this);
1918#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001919 return iterator(__cp);
Howard Hinnant39213642013-07-23 22:01:58 +00001920#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001921}
1922
1923template <class _Tp, class _Hash, class _Equal, class _Alloc>
1924typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
1925__hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_multi(
1926 const_iterator __p, __node_pointer __cp)
1927{
Howard Hinnant824c1992013-08-02 17:50:49 +00001928#if _LIBCPP_DEBUG_LEVEL >= 2
1929 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1930 "unordered container::emplace_hint(const_iterator, args...) called with an iterator not"
1931 " referring to this unordered container");
1932#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001933 if (__p != end() && key_eq()(*__p, __cp->__value_))
1934 {
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00001935 __node_pointer __np = __p.__node_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001936 __cp->__hash_ = __np->__hash_;
1937 size_type __bc = bucket_count();
1938 if (size()+1 > __bc * max_load_factor() || __bc == 0)
1939 {
Eric Fiselier57947ca2015-02-02 21:31:48 +00001940 rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001941 size_type(ceil(float(size() + 1) / max_load_factor()))));
1942 __bc = bucket_count();
1943 }
Howard Hinnant7a445152012-07-06 17:31:14 +00001944 size_t __chash = __constrain_hash(__cp->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001945 __node_pointer __pp = __bucket_list_[__chash];
1946 while (__pp->__next_ != __np)
1947 __pp = __pp->__next_;
1948 __cp->__next_ = __np;
1949 __pp->__next_ = __cp;
1950 ++size();
Howard Hinnant39213642013-07-23 22:01:58 +00001951#if _LIBCPP_DEBUG_LEVEL >= 2
1952 return iterator(__cp, this);
1953#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001954 return iterator(__cp);
Howard Hinnant39213642013-07-23 22:01:58 +00001955#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001956 }
1957 return __node_insert_multi(__cp);
1958}
1959
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001960
1961
Eric Fiselier2960ae22016-02-11 11:59:44 +00001962#ifndef _LIBCPP_CXX03_LANG
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001963template <class _Tp, class _Hash, class _Equal, class _Alloc>
Eric Fiselier2960ae22016-02-11 11:59:44 +00001964template <class _Key, class ..._Args>
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001965_LIBCPP_INLINE_VISIBILITY
1966pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
Eric Fiselier2960ae22016-02-11 11:59:44 +00001967__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_key_args(_Key const& __k, _Args&&... __args)
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001968#else
1969template <class _Tp, class _Hash, class _Equal, class _Alloc>
Eric Fiselier2960ae22016-02-11 11:59:44 +00001970template <class _Key, class _Args>
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001971_LIBCPP_INLINE_VISIBILITY
1972pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
Eric Fiselier2960ae22016-02-11 11:59:44 +00001973__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_key_args(_Key const& __k, _Args& __args)
Eric Fiselierfdae69a2015-06-13 07:18:32 +00001974#endif
1975{
Eric Fiselier2960ae22016-02-11 11:59:44 +00001976
1977 size_t __hash = hash_function()(__k);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001978 size_type __bc = bucket_count();
1979 bool __inserted = false;
1980 __node_pointer __nd;
1981 size_t __chash;
1982 if (__bc != 0)
1983 {
Howard Hinnant7a445152012-07-06 17:31:14 +00001984 __chash = __constrain_hash(__hash, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001985 __nd = __bucket_list_[__chash];
1986 if (__nd != nullptr)
1987 {
1988 for (__nd = __nd->__next_; __nd != nullptr &&
Howard Hinnant7a445152012-07-06 17:31:14 +00001989 __constrain_hash(__nd->__hash_, __bc) == __chash;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001990 __nd = __nd->__next_)
1991 {
Eric Fiselier2960ae22016-02-11 11:59:44 +00001992 if (key_eq()(__nd->__value_, __k))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001993 goto __done;
1994 }
1995 }
1996 }
1997 {
Eric Fiselier2960ae22016-02-11 11:59:44 +00001998#ifndef _LIBCPP_CXX03_LANG
1999 __node_holder __h = __construct_node_hash(__hash, _VSTD::forward<_Args>(__args)...);
2000#else
2001 __node_holder __h = __construct_node_hash(__hash, __args);
2002#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002003 if (size()+1 > __bc * max_load_factor() || __bc == 0)
2004 {
Eric Fiselier57947ca2015-02-02 21:31:48 +00002005 rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002006 size_type(ceil(float(size() + 1) / max_load_factor()))));
2007 __bc = bucket_count();
Howard Hinnant7a445152012-07-06 17:31:14 +00002008 __chash = __constrain_hash(__hash, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002009 }
2010 // insert_after __bucket_list_[__chash], or __first_node if bucket is null
2011 __node_pointer __pn = __bucket_list_[__chash];
2012 if (__pn == nullptr)
2013 {
Eric Fiselier9e9f42e2016-02-11 15:22:37 +00002014 __pn = static_cast<__node_pointer>(static_cast<__void_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first())));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002015 __h->__next_ = __pn->__next_;
2016 __pn->__next_ = __h.get();
2017 // fix up __bucket_list_
2018 __bucket_list_[__chash] = __pn;
2019 if (__h->__next_ != nullptr)
Howard Hinnant7a445152012-07-06 17:31:14 +00002020 __bucket_list_[__constrain_hash(__h->__next_->__hash_, __bc)] = __h.get();
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002021 }
2022 else
2023 {
2024 __h->__next_ = __pn->__next_;
2025 __pn->__next_ = __h.get();
2026 }
2027 __nd = __h.release();
2028 // increment size
2029 ++size();
2030 __inserted = true;
2031 }
2032__done:
Howard Hinnant39213642013-07-23 22:01:58 +00002033#if _LIBCPP_DEBUG_LEVEL >= 2
2034 return pair<iterator, bool>(iterator(__nd, this), __inserted);
2035#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002036 return pair<iterator, bool>(iterator(__nd), __inserted);
Howard Hinnant39213642013-07-23 22:01:58 +00002037#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002038}
2039
Eric Fiselier2960ae22016-02-11 11:59:44 +00002040#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002041
2042template <class _Tp, class _Hash, class _Equal, class _Alloc>
2043template <class... _Args>
2044pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool>
Duncan P. N. Exon Smith798ec842016-03-17 20:45:20 +00002045__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_impl(_Args&&... __args)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002046{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002047 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002048 pair<iterator, bool> __r = __node_insert_unique(__h.get());
2049 if (__r.second)
2050 __h.release();
2051 return __r;
2052}
2053
2054template <class _Tp, class _Hash, class _Equal, class _Alloc>
2055template <class... _Args>
2056typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
2057__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_multi(_Args&&... __args)
2058{
Howard Hinnant0949eed2011-06-30 21:18:19 +00002059 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002060 iterator __r = __node_insert_multi(__h.get());
2061 __h.release();
2062 return __r;
2063}
2064
2065template <class _Tp, class _Hash, class _Equal, class _Alloc>
2066template <class... _Args>
2067typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
2068__hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_hint_multi(
2069 const_iterator __p, _Args&&... __args)
2070{
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00002071#if _LIBCPP_DEBUG_LEVEL >= 2
2072 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
2073 "unordered container::emplace_hint(const_iterator, args...) called with an iterator not"
2074 " referring to this unordered container");
2075#endif
Howard Hinnant0949eed2011-06-30 21:18:19 +00002076 __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002077 iterator __r = __node_insert_multi(__p, __h.get());
2078 __h.release();
2079 return __r;
2080}
2081
Eric Fiselier2960ae22016-02-11 11:59:44 +00002082#else // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002083
2084template <class _Tp, class _Hash, class _Equal, class _Alloc>
2085typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
Eric Fiselier2960ae22016-02-11 11:59:44 +00002086__hash_table<_Tp, _Hash, _Equal, _Alloc>::__insert_multi(const __container_value_type& __x)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002087{
2088 __node_holder __h = __construct_node(__x);
2089 iterator __r = __node_insert_multi(__h.get());
2090 __h.release();
2091 return __r;
2092}
2093
2094template <class _Tp, class _Hash, class _Equal, class _Alloc>
2095typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
2096__hash_table<_Tp, _Hash, _Equal, _Alloc>::__insert_multi(const_iterator __p,
Eric Fiselier2960ae22016-02-11 11:59:44 +00002097 const __container_value_type& __x)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002098{
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00002099#if _LIBCPP_DEBUG_LEVEL >= 2
2100 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
2101 "unordered container::insert(const_iterator, lvalue) called with an iterator not"
2102 " referring to this unordered container");
2103#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002104 __node_holder __h = __construct_node(__x);
2105 iterator __r = __node_insert_multi(__p, __h.get());
2106 __h.release();
2107 return __r;
2108}
2109
Eric Fiselier2960ae22016-02-11 11:59:44 +00002110#endif // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002111
2112template <class _Tp, class _Hash, class _Equal, class _Alloc>
2113void
2114__hash_table<_Tp, _Hash, _Equal, _Alloc>::rehash(size_type __n)
2115{
Howard Hinnant7a445152012-07-06 17:31:14 +00002116 if (__n == 1)
2117 __n = 2;
2118 else if (__n & (__n - 1))
2119 __n = __next_prime(__n);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002120 size_type __bc = bucket_count();
2121 if (__n > __bc)
2122 __rehash(__n);
Howard Hinnant7a445152012-07-06 17:31:14 +00002123 else if (__n < __bc)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002124 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002125 __n = _VSTD::max<size_type>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002126 (
2127 __n,
Eric Fiselier57947ca2015-02-02 21:31:48 +00002128 __is_hash_power2(__bc) ? __next_hash_pow2(size_t(ceil(float(size()) / max_load_factor()))) :
2129 __next_prime(size_t(ceil(float(size()) / max_load_factor())))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002130 );
2131 if (__n < __bc)
2132 __rehash(__n);
2133 }
2134}
2135
2136template <class _Tp, class _Hash, class _Equal, class _Alloc>
2137void
2138__hash_table<_Tp, _Hash, _Equal, _Alloc>::__rehash(size_type __nbc)
2139{
Howard Hinnant39213642013-07-23 22:01:58 +00002140#if _LIBCPP_DEBUG_LEVEL >= 2
2141 __get_db()->__invalidate_all(this);
2142#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002143 __pointer_allocator& __npa = __bucket_list_.get_deleter().__alloc();
2144 __bucket_list_.reset(__nbc > 0 ?
2145 __pointer_alloc_traits::allocate(__npa, __nbc) : nullptr);
2146 __bucket_list_.get_deleter().size() = __nbc;
2147 if (__nbc > 0)
2148 {
2149 for (size_type __i = 0; __i < __nbc; ++__i)
2150 __bucket_list_[__i] = nullptr;
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002151 __node_pointer __pp(static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first())));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002152 __node_pointer __cp = __pp->__next_;
2153 if (__cp != nullptr)
2154 {
Howard Hinnant7a445152012-07-06 17:31:14 +00002155 size_type __chash = __constrain_hash(__cp->__hash_, __nbc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002156 __bucket_list_[__chash] = __pp;
2157 size_type __phash = __chash;
2158 for (__pp = __cp, __cp = __cp->__next_; __cp != nullptr;
2159 __cp = __pp->__next_)
2160 {
Howard Hinnant7a445152012-07-06 17:31:14 +00002161 __chash = __constrain_hash(__cp->__hash_, __nbc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002162 if (__chash == __phash)
2163 __pp = __cp;
2164 else
2165 {
2166 if (__bucket_list_[__chash] == nullptr)
2167 {
2168 __bucket_list_[__chash] = __pp;
2169 __pp = __cp;
2170 __phash = __chash;
2171 }
2172 else
2173 {
2174 __node_pointer __np = __cp;
2175 for (; __np->__next_ != nullptr &&
2176 key_eq()(__cp->__value_, __np->__next_->__value_);
2177 __np = __np->__next_)
2178 ;
2179 __pp->__next_ = __np->__next_;
2180 __np->__next_ = __bucket_list_[__chash]->__next_;
2181 __bucket_list_[__chash]->__next_ = __cp;
Howard Hinnant324bb032010-08-22 00:02:43 +00002182
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002183 }
2184 }
2185 }
2186 }
2187 }
2188}
2189
2190template <class _Tp, class _Hash, class _Equal, class _Alloc>
2191template <class _Key>
2192typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
2193__hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k)
2194{
2195 size_t __hash = hash_function()(__k);
2196 size_type __bc = bucket_count();
2197 if (__bc != 0)
2198 {
Howard Hinnant7a445152012-07-06 17:31:14 +00002199 size_t __chash = __constrain_hash(__hash, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002200 __node_pointer __nd = __bucket_list_[__chash];
2201 if (__nd != nullptr)
2202 {
2203 for (__nd = __nd->__next_; __nd != nullptr &&
Howard Hinnant7a445152012-07-06 17:31:14 +00002204 __constrain_hash(__nd->__hash_, __bc) == __chash;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002205 __nd = __nd->__next_)
2206 {
2207 if (key_eq()(__nd->__value_, __k))
Howard Hinnant39213642013-07-23 22:01:58 +00002208#if _LIBCPP_DEBUG_LEVEL >= 2
2209 return iterator(__nd, this);
2210#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002211 return iterator(__nd);
Howard Hinnant39213642013-07-23 22:01:58 +00002212#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002213 }
2214 }
2215 }
2216 return end();
2217}
2218
2219template <class _Tp, class _Hash, class _Equal, class _Alloc>
2220template <class _Key>
2221typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator
2222__hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k) const
2223{
2224 size_t __hash = hash_function()(__k);
2225 size_type __bc = bucket_count();
2226 if (__bc != 0)
2227 {
Howard Hinnant7a445152012-07-06 17:31:14 +00002228 size_t __chash = __constrain_hash(__hash, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002229 __node_const_pointer __nd = __bucket_list_[__chash];
2230 if (__nd != nullptr)
2231 {
2232 for (__nd = __nd->__next_; __nd != nullptr &&
Howard Hinnant7a445152012-07-06 17:31:14 +00002233 __constrain_hash(__nd->__hash_, __bc) == __chash;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002234 __nd = __nd->__next_)
2235 {
2236 if (key_eq()(__nd->__value_, __k))
Howard Hinnant39213642013-07-23 22:01:58 +00002237#if _LIBCPP_DEBUG_LEVEL >= 2
2238 return const_iterator(__nd, this);
2239#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002240 return const_iterator(__nd);
Howard Hinnant39213642013-07-23 22:01:58 +00002241#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002242 }
2243 }
Howard Hinnant324bb032010-08-22 00:02:43 +00002244
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002245 }
2246 return end();
2247}
2248
Eric Fiselier2960ae22016-02-11 11:59:44 +00002249#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002250
2251template <class _Tp, class _Hash, class _Equal, class _Alloc>
2252template <class ..._Args>
2253typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
2254__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node(_Args&& ...__args)
2255{
Eric Fiselier2960ae22016-02-11 11:59:44 +00002256 static_assert(!__is_hash_value_type<_Args...>::value,
2257 "Construct cannot be called with a hash value type");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002258 __node_allocator& __na = __node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00002259 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Eric Fiselier2960ae22016-02-11 11:59:44 +00002260 __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002261 __h.get_deleter().__value_constructed = true;
2262 __h->__hash_ = hash_function()(__h->__value_);
2263 __h->__next_ = nullptr;
2264 return __h;
2265}
2266
2267template <class _Tp, class _Hash, class _Equal, class _Alloc>
Eric Fiselier2960ae22016-02-11 11:59:44 +00002268template <class _First, class ..._Rest>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002269typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
Eric Fiselier2960ae22016-02-11 11:59:44 +00002270__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash(
2271 size_t __hash, _First&& __f, _Rest&& ...__rest)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002272{
Eric Fiselier2960ae22016-02-11 11:59:44 +00002273 static_assert(!__is_hash_value_type<_First, _Rest...>::value,
2274 "Construct cannot be called with a hash value type");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002275 __node_allocator& __na = __node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00002276 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Eric Fiselier2960ae22016-02-11 11:59:44 +00002277 __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_),
2278 _VSTD::forward<_First>(__f),
2279 _VSTD::forward<_Rest>(__rest)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002280 __h.get_deleter().__value_constructed = true;
2281 __h->__hash_ = __hash;
2282 __h->__next_ = nullptr;
Howard Hinnant9a894d92013-08-22 18:29:50 +00002283 return __h;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002284}
2285
Eric Fiselier2960ae22016-02-11 11:59:44 +00002286#else // _LIBCPP_CXX03_LANG
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002287
2288template <class _Tp, class _Hash, class _Equal, class _Alloc>
2289typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
Eric Fiselier2960ae22016-02-11 11:59:44 +00002290__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node(const __container_value_type& __v)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002291{
2292 __node_allocator& __na = __node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00002293 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Eric Fiselier2960ae22016-02-11 11:59:44 +00002294 __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), __v);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002295 __h.get_deleter().__value_constructed = true;
2296 __h->__hash_ = hash_function()(__h->__value_);
2297 __h->__next_ = nullptr;
Dimitry Andric89663502015-08-19 06:43:33 +00002298 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002299}
2300
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002301template <class _Tp, class _Hash, class _Equal, class _Alloc>
2302typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
Eric Fiselier2960ae22016-02-11 11:59:44 +00002303__hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash(size_t __hash,
2304 const __container_value_type& __v)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002305{
2306 __node_allocator& __na = __node_alloc();
Howard Hinnant99968442011-11-29 18:15:50 +00002307 __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na));
Eric Fiselier2960ae22016-02-11 11:59:44 +00002308 __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), __v);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002309 __h.get_deleter().__value_constructed = true;
2310 __h->__hash_ = __hash;
2311 __h->__next_ = nullptr;
Dimitry Andric89663502015-08-19 06:43:33 +00002312 return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002313}
2314
Eric Fiselier2960ae22016-02-11 11:59:44 +00002315#endif // _LIBCPP_CXX03_LANG
2316
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002317template <class _Tp, class _Hash, class _Equal, class _Alloc>
2318typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
2319__hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __p)
2320{
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002321 __node_pointer __np = __p.__node_;
Howard Hinnant39213642013-07-23 22:01:58 +00002322#if _LIBCPP_DEBUG_LEVEL >= 2
2323 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
2324 "unordered container erase(iterator) called with an iterator not"
2325 " referring to this container");
2326 _LIBCPP_ASSERT(__p != end(),
2327 "unordered container erase(iterator) called with a non-dereferenceable iterator");
2328 iterator __r(__np, this);
2329#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002330 iterator __r(__np);
Howard Hinnant39213642013-07-23 22:01:58 +00002331#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002332 ++__r;
2333 remove(__p);
2334 return __r;
2335}
2336
2337template <class _Tp, class _Hash, class _Equal, class _Alloc>
2338typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator
2339__hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __first,
2340 const_iterator __last)
2341{
Howard Hinnant39213642013-07-23 22:01:58 +00002342#if _LIBCPP_DEBUG_LEVEL >= 2
2343 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this,
2344 "unodered container::erase(iterator, iterator) called with an iterator not"
2345 " referring to this unodered container");
2346 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__last) == this,
2347 "unodered container::erase(iterator, iterator) called with an iterator not"
2348 " referring to this unodered container");
2349#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002350 for (const_iterator __p = __first; __first != __last; __p = __first)
2351 {
2352 ++__first;
2353 erase(__p);
2354 }
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002355 __node_pointer __np = __last.__node_;
Howard Hinnant39213642013-07-23 22:01:58 +00002356#if _LIBCPP_DEBUG_LEVEL >= 2
2357 return iterator (__np, this);
2358#else
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002359 return iterator (__np);
Howard Hinnant39213642013-07-23 22:01:58 +00002360#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002361}
2362
2363template <class _Tp, class _Hash, class _Equal, class _Alloc>
2364template <class _Key>
2365typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
2366__hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_unique(const _Key& __k)
2367{
2368 iterator __i = find(__k);
2369 if (__i == end())
2370 return 0;
2371 erase(__i);
2372 return 1;
2373}
2374
2375template <class _Tp, class _Hash, class _Equal, class _Alloc>
2376template <class _Key>
2377typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
2378__hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_multi(const _Key& __k)
2379{
2380 size_type __r = 0;
2381 iterator __i = find(__k);
2382 if (__i != end())
2383 {
2384 iterator __e = end();
2385 do
2386 {
2387 erase(__i++);
2388 ++__r;
2389 } while (__i != __e && key_eq()(*__i, __k));
2390 }
2391 return __r;
2392}
2393
2394template <class _Tp, class _Hash, class _Equal, class _Alloc>
2395typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00002396__hash_table<_Tp, _Hash, _Equal, _Alloc>::remove(const_iterator __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002397{
2398 // current node
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002399 __node_pointer __cn = __p.__node_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002400 size_type __bc = bucket_count();
Howard Hinnant7a445152012-07-06 17:31:14 +00002401 size_t __chash = __constrain_hash(__cn->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002402 // find previous node
2403 __node_pointer __pn = __bucket_list_[__chash];
2404 for (; __pn->__next_ != __cn; __pn = __pn->__next_)
2405 ;
2406 // Fix up __bucket_list_
2407 // if __pn is not in same bucket (before begin is not in same bucket) &&
2408 // if __cn->__next_ is not in same bucket (nullptr is not in same bucket)
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002409 if (__pn == static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()))
2410 || __constrain_hash(__pn->__hash_, __bc) != __chash)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002411 {
Howard Hinnant7a445152012-07-06 17:31:14 +00002412 if (__cn->__next_ == nullptr || __constrain_hash(__cn->__next_->__hash_, __bc) != __chash)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002413 __bucket_list_[__chash] = nullptr;
2414 }
2415 // if __cn->__next_ is not in same bucket (nullptr is in same bucket)
2416 if (__cn->__next_ != nullptr)
2417 {
Howard Hinnant7a445152012-07-06 17:31:14 +00002418 size_t __nhash = __constrain_hash(__cn->__next_->__hash_, __bc);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002419 if (__nhash != __chash)
2420 __bucket_list_[__nhash] = __pn;
2421 }
2422 // remove __cn
2423 __pn->__next_ = __cn->__next_;
2424 __cn->__next_ = nullptr;
2425 --size();
Howard Hinnant39213642013-07-23 22:01:58 +00002426#if _LIBCPP_DEBUG_LEVEL >= 2
2427 __c_node* __c = __get_db()->__find_c_and_lock(this);
2428 for (__i_node** __p = __c->end_; __p != __c->beg_; )
2429 {
2430 --__p;
2431 iterator* __i = static_cast<iterator*>((*__p)->__i_);
2432 if (__i->__node_ == __cn)
2433 {
2434 (*__p)->__c_ = nullptr;
2435 if (--__c->end_ != __p)
2436 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
2437 }
2438 }
2439 __get_db()->unlock();
2440#endif
Howard Hinnant99968442011-11-29 18:15:50 +00002441 return __node_holder(__cn, _Dp(__node_alloc(), true));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002442}
2443
2444template <class _Tp, class _Hash, class _Equal, class _Alloc>
2445template <class _Key>
Evgeniy Stepanova3b25f82015-11-07 01:22:13 +00002446inline
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002447typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
2448__hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_unique(const _Key& __k) const
2449{
2450 return static_cast<size_type>(find(__k) != end());
2451}
2452
2453template <class _Tp, class _Hash, class _Equal, class _Alloc>
2454template <class _Key>
2455typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
2456__hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_multi(const _Key& __k) const
2457{
2458 size_type __r = 0;
2459 const_iterator __i = find(__k);
2460 if (__i != end())
2461 {
2462 const_iterator __e = end();
2463 do
2464 {
2465 ++__i;
2466 ++__r;
2467 } while (__i != __e && key_eq()(*__i, __k));
2468 }
2469 return __r;
2470}
2471
2472template <class _Tp, class _Hash, class _Equal, class _Alloc>
2473template <class _Key>
2474pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator,
2475 typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator>
2476__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_unique(
2477 const _Key& __k)
2478{
2479 iterator __i = find(__k);
2480 iterator __j = __i;
2481 if (__i != end())
2482 ++__j;
2483 return pair<iterator, iterator>(__i, __j);
2484}
2485
2486template <class _Tp, class _Hash, class _Equal, class _Alloc>
2487template <class _Key>
2488pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator,
2489 typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator>
2490__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_unique(
2491 const _Key& __k) const
2492{
2493 const_iterator __i = find(__k);
2494 const_iterator __j = __i;
2495 if (__i != end())
2496 ++__j;
2497 return pair<const_iterator, const_iterator>(__i, __j);
2498}
2499
2500template <class _Tp, class _Hash, class _Equal, class _Alloc>
2501template <class _Key>
2502pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator,
2503 typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator>
2504__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_multi(
2505 const _Key& __k)
2506{
2507 iterator __i = find(__k);
2508 iterator __j = __i;
2509 if (__i != end())
2510 {
2511 iterator __e = end();
2512 do
2513 {
2514 ++__j;
2515 } while (__j != __e && key_eq()(*__j, __k));
2516 }
2517 return pair<iterator, iterator>(__i, __j);
2518}
2519
2520template <class _Tp, class _Hash, class _Equal, class _Alloc>
2521template <class _Key>
2522pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator,
2523 typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator>
2524__hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_multi(
2525 const _Key& __k) const
2526{
2527 const_iterator __i = find(__k);
2528 const_iterator __j = __i;
2529 if (__i != end())
2530 {
2531 const_iterator __e = end();
2532 do
2533 {
2534 ++__j;
2535 } while (__j != __e && key_eq()(*__j, __k));
2536 }
2537 return pair<const_iterator, const_iterator>(__i, __j);
2538}
2539
2540template <class _Tp, class _Hash, class _Equal, class _Alloc>
2541void
2542__hash_table<_Tp, _Hash, _Equal, _Alloc>::swap(__hash_table& __u)
Eric Fiselier692177d2015-07-18 20:40:46 +00002543#if _LIBCPP_STD_VER <= 11
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00002544 _NOEXCEPT_(
Marshall Clow7d914d12015-07-13 20:04:56 +00002545 __is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value
Marshall Clow7d914d12015-07-13 20:04:56 +00002546 && (!allocator_traits<__pointer_allocator>::propagate_on_container_swap::value
2547 || __is_nothrow_swappable<__pointer_allocator>::value)
2548 && (!__node_traits::propagate_on_container_swap::value
2549 || __is_nothrow_swappable<__node_allocator>::value)
Marshall Clow7d914d12015-07-13 20:04:56 +00002550 )
Eric Fiselier692177d2015-07-18 20:40:46 +00002551#else
2552 _NOEXCEPT_(__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value)
2553#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002554{
2555 {
2556 __node_pointer_pointer __npp = __bucket_list_.release();
2557 __bucket_list_.reset(__u.__bucket_list_.release());
2558 __u.__bucket_list_.reset(__npp);
2559 }
Howard Hinnant0949eed2011-06-30 21:18:19 +00002560 _VSTD::swap(__bucket_list_.get_deleter().size(), __u.__bucket_list_.get_deleter().size());
Marshall Clow7d914d12015-07-13 20:04:56 +00002561 __swap_allocator(__bucket_list_.get_deleter().__alloc(),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002562 __u.__bucket_list_.get_deleter().__alloc());
Marshall Clow7d914d12015-07-13 20:04:56 +00002563 __swap_allocator(__node_alloc(), __u.__node_alloc());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002564 _VSTD::swap(__p1_.first().__next_, __u.__p1_.first().__next_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002565 __p2_.swap(__u.__p2_);
2566 __p3_.swap(__u.__p3_);
2567 if (size() > 0)
Howard Hinnant7a445152012-07-06 17:31:14 +00002568 __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash_, bucket_count())] =
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002569 static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__p1_.first()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002570 if (__u.size() > 0)
Howard Hinnant7a445152012-07-06 17:31:14 +00002571 __u.__bucket_list_[__constrain_hash(__u.__p1_.first().__next_->__hash_, __u.bucket_count())] =
Howard Hinnant7a6b7ce2013-06-22 15:21:29 +00002572 static_cast<__node_pointer>(pointer_traits<__node_base_pointer>::pointer_to(__u.__p1_.first()));
Howard Hinnant39213642013-07-23 22:01:58 +00002573#if _LIBCPP_DEBUG_LEVEL >= 2
2574 __get_db()->swap(this, &__u);
2575#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002576}
2577
2578template <class _Tp, class _Hash, class _Equal, class _Alloc>
2579typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type
2580__hash_table<_Tp, _Hash, _Equal, _Alloc>::bucket_size(size_type __n) const
2581{
Howard Hinnant0bb0a7c2013-07-29 19:05:47 +00002582 _LIBCPP_ASSERT(__n < bucket_count(),
2583 "unordered container::bucket_size(n) called with n >= bucket_count()");
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002584 __node_const_pointer __np = __bucket_list_[__n];
2585 size_type __bc = bucket_count();
2586 size_type __r = 0;
2587 if (__np != nullptr)
2588 {
2589 for (__np = __np->__next_; __np != nullptr &&
Howard Hinnant7a445152012-07-06 17:31:14 +00002590 __constrain_hash(__np->__hash_, __bc) == __n;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002591 __np = __np->__next_, ++__r)
2592 ;
2593 }
2594 return __r;
2595}
2596
Howard Hinnant5f2f14c2011-06-04 18:54:24 +00002597template <class _Tp, class _Hash, class _Equal, class _Alloc>
2598inline _LIBCPP_INLINE_VISIBILITY
2599void
2600swap(__hash_table<_Tp, _Hash, _Equal, _Alloc>& __x,
2601 __hash_table<_Tp, _Hash, _Equal, _Alloc>& __y)
2602 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
2603{
2604 __x.swap(__y);
2605}
2606
Howard Hinnant39213642013-07-23 22:01:58 +00002607#if _LIBCPP_DEBUG_LEVEL >= 2
2608
2609template <class _Tp, class _Hash, class _Equal, class _Alloc>
2610bool
2611__hash_table<_Tp, _Hash, _Equal, _Alloc>::__dereferenceable(const const_iterator* __i) const
2612{
2613 return __i->__node_ != nullptr;
2614}
2615
2616template <class _Tp, class _Hash, class _Equal, class _Alloc>
2617bool
2618__hash_table<_Tp, _Hash, _Equal, _Alloc>::__decrementable(const const_iterator*) const
2619{
2620 return false;
2621}
2622
2623template <class _Tp, class _Hash, class _Equal, class _Alloc>
2624bool
2625__hash_table<_Tp, _Hash, _Equal, _Alloc>::__addable(const const_iterator*, ptrdiff_t) const
2626{
2627 return false;
2628}
2629
2630template <class _Tp, class _Hash, class _Equal, class _Alloc>
2631bool
2632__hash_table<_Tp, _Hash, _Equal, _Alloc>::__subscriptable(const const_iterator*, ptrdiff_t) const
2633{
2634 return false;
2635}
2636
2637#endif // _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002638_LIBCPP_END_NAMESPACE_STD
2639
2640#endif // _LIBCPP__HASH_TABLE