Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===----------------------------------------------------------------------===// |
| 3 | // |
Howard Hinnant | 5b08a8a | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | 412dbeb | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 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 Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 20 | #include <utility> |
Eric Fiselier | 04333f9 | 2017-01-13 22:42:53 +0000 | [diff] [blame] | 21 | #include <type_traits> |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 22 | |
Howard Hinnant | ab4f438 | 2011-11-29 16:45:27 +0000 | [diff] [blame] | 23 | #include <__undef_min_max> |
| 24 | |
Eric Fiselier | c1bd919 | 2014-08-10 23:53:08 +0000 | [diff] [blame] | 25 | #include <__debug> |
Howard Hinnant | 42a3046 | 2013-08-02 00:26:35 +0000 | [diff] [blame] | 26 | |
Howard Hinnant | 073458b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 27 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 28 | #pragma GCC system_header |
Howard Hinnant | 073458b | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 29 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 30 | |
| 31 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 32 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 33 | |
| 34 | #ifndef _LIBCPP_CXX03_LANG |
| 35 | template <class _Key, class _Tp> |
| 36 | union __hash_value_type; |
| 37 | #else |
| 38 | template <class _Key, class _Tp> |
| 39 | struct __hash_value_type; |
| 40 | #endif |
| 41 | |
Eric Fiselier | 04333f9 | 2017-01-13 22:42:53 +0000 | [diff] [blame] | 42 | template <class _Key, class _Cp, class _Hash, |
| 43 | bool = is_empty<_Hash>::value && !__libcpp_is_final<_Hash>::value> |
| 44 | class __unordered_map_hasher; |
| 45 | |
| 46 | template <class _Key, class _Cp, class _Pred, |
| 47 | bool = is_empty<_Pred>::value && !__libcpp_is_final<_Pred>::value |
| 48 | > |
| 49 | class __unordered_map_equal; |
| 50 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 51 | #ifndef _LIBCPP_CXX03_LANG |
| 52 | template <class _Tp> |
| 53 | struct __is_hash_value_type_imp : false_type {}; |
| 54 | |
| 55 | template <class _Key, class _Value> |
| 56 | struct __is_hash_value_type_imp<__hash_value_type<_Key, _Value>> : true_type {}; |
| 57 | |
| 58 | template <class ..._Args> |
| 59 | struct __is_hash_value_type : false_type {}; |
| 60 | |
| 61 | template <class _One> |
| 62 | struct __is_hash_value_type<_One> : __is_hash_value_type_imp<typename __uncvref<_One>::type> {}; |
| 63 | #endif |
| 64 | |
Howard Hinnant | 6e41256 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 65 | _LIBCPP_FUNC_VIS |
Howard Hinnant | ce53420 | 2011-06-14 19:58:17 +0000 | [diff] [blame] | 66 | size_t __next_prime(size_t __n); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 67 | |
| 68 | template <class _NodePtr> |
| 69 | struct __hash_node_base |
| 70 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 71 | typedef typename pointer_traits<_NodePtr>::element_type __node_type; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 72 | typedef __hash_node_base __first_node; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 73 | typedef typename __rebind_pointer<_NodePtr, __first_node>::type __node_base_pointer; |
| 74 | typedef _NodePtr __node_pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 75 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 76 | #if defined(_LIBCPP_ABI_FIX_UNORDERED_NODE_POINTER_UB) |
| 77 | typedef __node_base_pointer __next_pointer; |
| 78 | #else |
| 79 | typedef typename conditional< |
| 80 | is_pointer<__node_pointer>::value, |
| 81 | __node_base_pointer, |
| 82 | __node_pointer>::type __next_pointer; |
| 83 | #endif |
| 84 | |
| 85 | __next_pointer __next_; |
| 86 | |
| 87 | _LIBCPP_INLINE_VISIBILITY |
| 88 | __next_pointer __ptr() _NOEXCEPT { |
| 89 | return static_cast<__next_pointer>( |
| 90 | pointer_traits<__node_base_pointer>::pointer_to(*this)); |
| 91 | } |
| 92 | |
| 93 | _LIBCPP_INLINE_VISIBILITY |
| 94 | __node_pointer __upcast() _NOEXCEPT { |
| 95 | return static_cast<__node_pointer>( |
| 96 | pointer_traits<__node_base_pointer>::pointer_to(*this)); |
| 97 | } |
| 98 | |
| 99 | _LIBCPP_INLINE_VISIBILITY |
| 100 | size_t __hash() const _NOEXCEPT { |
| 101 | return static_cast<__node_type const&>(*this).__hash_; |
| 102 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 103 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 104 | _LIBCPP_INLINE_VISIBILITY __hash_node_base() _NOEXCEPT : __next_(nullptr) {} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | template <class _Tp, class _VoidPtr> |
| 108 | struct __hash_node |
| 109 | : public __hash_node_base |
| 110 | < |
Eric Fiselier | 934b092 | 2015-12-30 21:52:00 +0000 | [diff] [blame] | 111 | typename __rebind_pointer<_VoidPtr, __hash_node<_Tp, _VoidPtr> >::type |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 112 | > |
| 113 | { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 114 | typedef _Tp __node_value_type; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 115 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 116 | size_t __hash_; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 117 | __node_value_type __value_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 118 | }; |
| 119 | |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 120 | inline _LIBCPP_INLINE_VISIBILITY |
| 121 | bool |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 122 | __is_hash_power2(size_t __bc) |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 123 | { |
| 124 | return __bc > 2 && !(__bc & (__bc - 1)); |
| 125 | } |
| 126 | |
| 127 | inline _LIBCPP_INLINE_VISIBILITY |
| 128 | size_t |
| 129 | __constrain_hash(size_t __h, size_t __bc) |
| 130 | { |
Eric Fiselier | 118cb41 | 2016-07-11 22:02:02 +0000 | [diff] [blame] | 131 | return !(__bc & (__bc - 1)) ? __h & (__bc - 1) : |
| 132 | (__h < __bc ? __h : __h % __bc); |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 133 | } |
| 134 | |
| 135 | inline _LIBCPP_INLINE_VISIBILITY |
| 136 | size_t |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 137 | __next_hash_pow2(size_t __n) |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 138 | { |
| 139 | return size_t(1) << (std::numeric_limits<size_t>::digits - __clz(__n-1)); |
| 140 | } |
| 141 | |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 142 | |
Howard Hinnant | ce53420 | 2011-06-14 19:58:17 +0000 | [diff] [blame] | 143 | template <class _Tp, class _Hash, class _Equal, class _Alloc> class __hash_table; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 144 | |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 145 | template <class _NodePtr> class _LIBCPP_TEMPLATE_VIS __hash_iterator; |
| 146 | template <class _ConstNodePtr> class _LIBCPP_TEMPLATE_VIS __hash_const_iterator; |
| 147 | template <class _NodePtr> class _LIBCPP_TEMPLATE_VIS __hash_local_iterator; |
| 148 | template <class _ConstNodePtr> class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator; |
| 149 | template <class _HashIterator> class _LIBCPP_TEMPLATE_VIS __hash_map_iterator; |
| 150 | template <class _HashIterator> class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 151 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 152 | template <class _Tp> |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 153 | struct __hash_key_value_types { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 154 | static_assert(!is_reference<_Tp>::value && !is_const<_Tp>::value, ""); |
| 155 | typedef _Tp key_type; |
| 156 | typedef _Tp __node_value_type; |
| 157 | typedef _Tp __container_value_type; |
| 158 | static const bool __is_map = false; |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 159 | |
| 160 | _LIBCPP_INLINE_VISIBILITY |
| 161 | static key_type const& __get_key(_Tp const& __v) { |
| 162 | return __v; |
| 163 | } |
| 164 | _LIBCPP_INLINE_VISIBILITY |
| 165 | static __container_value_type const& __get_value(__node_value_type const& __v) { |
| 166 | return __v; |
| 167 | } |
| 168 | _LIBCPP_INLINE_VISIBILITY |
| 169 | static __container_value_type* __get_ptr(__node_value_type& __n) { |
| 170 | return _VSTD::addressof(__n); |
| 171 | } |
| 172 | #ifndef _LIBCPP_CXX03_LANG |
| 173 | _LIBCPP_INLINE_VISIBILITY |
| 174 | static __container_value_type&& __move(__node_value_type& __v) { |
| 175 | return _VSTD::move(__v); |
| 176 | } |
| 177 | #endif |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 178 | }; |
| 179 | |
| 180 | template <class _Key, class _Tp> |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 181 | struct __hash_key_value_types<__hash_value_type<_Key, _Tp> > { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 182 | typedef _Key key_type; |
| 183 | typedef _Tp mapped_type; |
| 184 | typedef __hash_value_type<_Key, _Tp> __node_value_type; |
| 185 | typedef pair<const _Key, _Tp> __container_value_type; |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 186 | typedef pair<_Key, _Tp> __nc_value_type; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 187 | typedef __container_value_type __map_value_type; |
| 188 | static const bool __is_map = true; |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 189 | |
| 190 | _LIBCPP_INLINE_VISIBILITY |
| 191 | static key_type const& __get_key(__container_value_type const& __v) { |
| 192 | return __v.first; |
| 193 | } |
| 194 | |
| 195 | template <class _Up> |
| 196 | _LIBCPP_INLINE_VISIBILITY |
| 197 | static typename enable_if<__is_same_uncvref<_Up, __node_value_type>::value, |
| 198 | __container_value_type const&>::type |
| 199 | __get_value(_Up& __t) { |
| 200 | return __t.__cc; |
| 201 | } |
| 202 | |
| 203 | template <class _Up> |
| 204 | _LIBCPP_INLINE_VISIBILITY |
| 205 | static typename enable_if<__is_same_uncvref<_Up, __container_value_type>::value, |
| 206 | __container_value_type const&>::type |
| 207 | __get_value(_Up& __t) { |
| 208 | return __t; |
| 209 | } |
| 210 | |
| 211 | _LIBCPP_INLINE_VISIBILITY |
| 212 | static __container_value_type* __get_ptr(__node_value_type& __n) { |
| 213 | return _VSTD::addressof(__n.__cc); |
| 214 | } |
| 215 | #ifndef _LIBCPP_CXX03_LANG |
| 216 | _LIBCPP_INLINE_VISIBILITY |
| 217 | static __nc_value_type&& __move(__node_value_type& __v) { |
| 218 | return _VSTD::move(__v.__nc); |
| 219 | } |
| 220 | #endif |
| 221 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 222 | }; |
| 223 | |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 224 | template <class _Tp, class _AllocPtr, class _KVTypes = __hash_key_value_types<_Tp>, |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 225 | bool = _KVTypes::__is_map> |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 226 | struct __hash_map_pointer_types {}; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 227 | |
| 228 | template <class _Tp, class _AllocPtr, class _KVTypes> |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 229 | struct __hash_map_pointer_types<_Tp, _AllocPtr, _KVTypes, true> { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 230 | typedef typename _KVTypes::__map_value_type _Mv; |
| 231 | typedef typename __rebind_pointer<_AllocPtr, _Mv>::type |
| 232 | __map_value_type_pointer; |
| 233 | typedef typename __rebind_pointer<_AllocPtr, const _Mv>::type |
| 234 | __const_map_value_type_pointer; |
| 235 | }; |
| 236 | |
| 237 | template <class _NodePtr, class _NodeT = typename pointer_traits<_NodePtr>::element_type> |
| 238 | struct __hash_node_types; |
| 239 | |
| 240 | template <class _NodePtr, class _Tp, class _VoidPtr> |
| 241 | struct __hash_node_types<_NodePtr, __hash_node<_Tp, _VoidPtr> > |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 242 | : public __hash_key_value_types<_Tp>, __hash_map_pointer_types<_Tp, _VoidPtr> |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 243 | |
| 244 | { |
Eric Fiselier | 43b121d | 2016-02-20 07:59:16 +0000 | [diff] [blame] | 245 | typedef __hash_key_value_types<_Tp> __base; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 246 | |
| 247 | public: |
| 248 | typedef ptrdiff_t difference_type; |
| 249 | typedef size_t size_type; |
| 250 | |
| 251 | typedef typename __rebind_pointer<_NodePtr, void>::type __void_pointer; |
| 252 | |
| 253 | typedef typename pointer_traits<_NodePtr>::element_type __node_type; |
| 254 | typedef _NodePtr __node_pointer; |
| 255 | |
| 256 | typedef __hash_node_base<__node_pointer> __node_base_type; |
| 257 | typedef typename __rebind_pointer<_NodePtr, __node_base_type>::type |
| 258 | __node_base_pointer; |
| 259 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 260 | typedef typename __node_base_type::__next_pointer __next_pointer; |
| 261 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 262 | typedef _Tp __node_value_type; |
| 263 | typedef typename __rebind_pointer<_VoidPtr, __node_value_type>::type |
| 264 | __node_value_type_pointer; |
| 265 | typedef typename __rebind_pointer<_VoidPtr, const __node_value_type>::type |
| 266 | __const_node_value_type_pointer; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 267 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 268 | private: |
| 269 | static_assert(!is_const<__node_type>::value, |
| 270 | "_NodePtr should never be a pointer to const"); |
| 271 | static_assert((is_same<typename pointer_traits<_VoidPtr>::element_type, void>::value), |
| 272 | "_VoidPtr does not point to unqualified void type"); |
| 273 | static_assert((is_same<typename __rebind_pointer<_VoidPtr, __node_type>::type, |
| 274 | _NodePtr>::value), "_VoidPtr does not rebind to _NodePtr."); |
| 275 | }; |
| 276 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 277 | template <class _HashIterator> |
| 278 | struct __hash_node_types_from_iterator; |
| 279 | template <class _NodePtr> |
| 280 | struct __hash_node_types_from_iterator<__hash_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {}; |
| 281 | template <class _NodePtr> |
| 282 | struct __hash_node_types_from_iterator<__hash_const_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {}; |
| 283 | template <class _NodePtr> |
| 284 | struct __hash_node_types_from_iterator<__hash_local_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {}; |
| 285 | template <class _NodePtr> |
| 286 | struct __hash_node_types_from_iterator<__hash_const_local_iterator<_NodePtr> > : __hash_node_types<_NodePtr> {}; |
| 287 | |
| 288 | |
| 289 | template <class _NodeValueTp, class _VoidPtr> |
| 290 | struct __make_hash_node_types { |
| 291 | typedef __hash_node<_NodeValueTp, _VoidPtr> _NodeTp; |
| 292 | typedef typename __rebind_pointer<_VoidPtr, _NodeTp>::type _NodePtr; |
| 293 | typedef __hash_node_types<_NodePtr> type; |
| 294 | }; |
| 295 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 296 | template <class _NodePtr> |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 297 | class _LIBCPP_TEMPLATE_VIS __hash_iterator |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 298 | { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 299 | typedef __hash_node_types<_NodePtr> _NodeTypes; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 300 | typedef _NodePtr __node_pointer; |
| 301 | typedef typename _NodeTypes::__next_pointer __next_pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 302 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 303 | __next_pointer __node_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 304 | |
| 305 | public: |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 306 | typedef forward_iterator_tag iterator_category; |
| 307 | typedef typename _NodeTypes::__node_value_type value_type; |
| 308 | typedef typename _NodeTypes::difference_type difference_type; |
| 309 | typedef value_type& reference; |
| 310 | typedef typename _NodeTypes::__node_value_type_pointer pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 311 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 312 | _LIBCPP_INLINE_VISIBILITY __hash_iterator() _NOEXCEPT : __node_(nullptr) { |
| 313 | _LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 317 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 318 | __hash_iterator(const __hash_iterator& __i) |
| 319 | : __node_(__i.__node_) |
| 320 | { |
| 321 | __get_db()->__iterator_copy(this, &__i); |
| 322 | } |
| 323 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 324 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 325 | ~__hash_iterator() |
| 326 | { |
| 327 | __get_db()->__erase_i(this); |
| 328 | } |
| 329 | |
| 330 | _LIBCPP_INLINE_VISIBILITY |
| 331 | __hash_iterator& operator=(const __hash_iterator& __i) |
| 332 | { |
| 333 | if (this != &__i) |
| 334 | { |
| 335 | __get_db()->__iterator_copy(this, &__i); |
| 336 | __node_ = __i.__node_; |
| 337 | } |
| 338 | return *this; |
| 339 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 340 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
| 341 | |
| 342 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 343 | reference operator*() const { |
| 344 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
| 345 | "Attempted to dereference a non-dereferenceable unordered container iterator"); |
| 346 | return __node_->__upcast()->__value_; |
| 347 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 348 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 349 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 350 | pointer operator->() const { |
| 351 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
| 352 | "Attempted to dereference a non-dereferenceable unordered container iterator"); |
| 353 | return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_); |
| 354 | } |
| 355 | |
| 356 | _LIBCPP_INLINE_VISIBILITY |
| 357 | __hash_iterator& operator++() { |
| 358 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 359 | "Attempted to increment non-incrementable unordered container iterator"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 360 | __node_ = __node_->__next_; |
| 361 | return *this; |
| 362 | } |
| 363 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 364 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 365 | __hash_iterator operator++(int) |
| 366 | { |
| 367 | __hash_iterator __t(*this); |
| 368 | ++(*this); |
| 369 | return __t; |
| 370 | } |
| 371 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 372 | friend _LIBCPP_INLINE_VISIBILITY |
| 373 | bool operator==(const __hash_iterator& __x, const __hash_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 374 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 375 | return __x.__node_ == __y.__node_; |
| 376 | } |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 377 | friend _LIBCPP_INLINE_VISIBILITY |
| 378 | bool operator!=(const __hash_iterator& __x, const __hash_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 379 | {return !(__x == __y);} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 380 | |
| 381 | private: |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 382 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 383 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 384 | __hash_iterator(__next_pointer __node, const void* __c) _NOEXCEPT |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 385 | : __node_(__node) |
| 386 | { |
| 387 | __get_db()->__insert_ic(this, __c); |
| 388 | } |
| 389 | #else |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 390 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 391 | __hash_iterator(__next_pointer __node) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 392 | : __node_(__node) |
| 393 | {} |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 394 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 395 | template <class, class, class, class> friend class __hash_table; |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 396 | template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_const_iterator; |
| 397 | template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_iterator; |
| 398 | template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_map; |
| 399 | template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 400 | }; |
| 401 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 402 | template <class _NodePtr> |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 403 | class _LIBCPP_TEMPLATE_VIS __hash_const_iterator |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 404 | { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 405 | static_assert(!is_const<typename pointer_traits<_NodePtr>::element_type>::value, ""); |
| 406 | typedef __hash_node_types<_NodePtr> _NodeTypes; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 407 | typedef _NodePtr __node_pointer; |
| 408 | typedef typename _NodeTypes::__next_pointer __next_pointer; |
Eric Fiselier | 757373e | 2016-02-18 00:20:34 +0000 | [diff] [blame] | 409 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 410 | __next_pointer __node_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 411 | |
| 412 | public: |
Eric Fiselier | 757373e | 2016-02-18 00:20:34 +0000 | [diff] [blame] | 413 | typedef __hash_iterator<_NodePtr> __non_const_iterator; |
| 414 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 415 | typedef forward_iterator_tag iterator_category; |
| 416 | typedef typename _NodeTypes::__node_value_type value_type; |
| 417 | typedef typename _NodeTypes::difference_type difference_type; |
| 418 | typedef const value_type& reference; |
| 419 | typedef typename _NodeTypes::__const_node_value_type_pointer pointer; |
| 420 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 421 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 422 | _LIBCPP_INLINE_VISIBILITY __hash_const_iterator() _NOEXCEPT : __node_(nullptr) { |
| 423 | _LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 424 | } |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 425 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 426 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 427 | __hash_const_iterator(const __non_const_iterator& __x) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 428 | : __node_(__x.__node_) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 429 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 430 | _LIBCPP_DEBUG_MODE(__get_db()->__iterator_copy(this, &__x)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 431 | } |
| 432 | |
| 433 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 434 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 435 | __hash_const_iterator(const __hash_const_iterator& __i) |
| 436 | : __node_(__i.__node_) |
| 437 | { |
| 438 | __get_db()->__iterator_copy(this, &__i); |
| 439 | } |
| 440 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 441 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 442 | ~__hash_const_iterator() |
| 443 | { |
| 444 | __get_db()->__erase_i(this); |
| 445 | } |
| 446 | |
| 447 | _LIBCPP_INLINE_VISIBILITY |
| 448 | __hash_const_iterator& operator=(const __hash_const_iterator& __i) |
| 449 | { |
| 450 | if (this != &__i) |
| 451 | { |
| 452 | __get_db()->__iterator_copy(this, &__i); |
| 453 | __node_ = __i.__node_; |
| 454 | } |
| 455 | return *this; |
| 456 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 457 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
| 458 | |
| 459 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 460 | reference operator*() const { |
| 461 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 462 | "Attempted to dereference a non-dereferenceable unordered container const_iterator"); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 463 | return __node_->__upcast()->__value_; |
| 464 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 465 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 466 | pointer operator->() const { |
| 467 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 468 | "Attempted to dereference a non-dereferenceable unordered container const_iterator"); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 469 | return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_); |
| 470 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 471 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 472 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 473 | __hash_const_iterator& operator++() { |
| 474 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
| 475 | "Attempted to increment non-incrementable unordered container const_iterator"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 476 | __node_ = __node_->__next_; |
| 477 | return *this; |
| 478 | } |
| 479 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 480 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 481 | __hash_const_iterator operator++(int) |
| 482 | { |
| 483 | __hash_const_iterator __t(*this); |
| 484 | ++(*this); |
| 485 | return __t; |
| 486 | } |
| 487 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 488 | friend _LIBCPP_INLINE_VISIBILITY |
| 489 | bool operator==(const __hash_const_iterator& __x, const __hash_const_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 490 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 491 | return __x.__node_ == __y.__node_; |
| 492 | } |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 493 | friend _LIBCPP_INLINE_VISIBILITY |
| 494 | bool operator!=(const __hash_const_iterator& __x, const __hash_const_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 495 | {return !(__x == __y);} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 496 | |
| 497 | private: |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 498 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 499 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 500 | __hash_const_iterator(__next_pointer __node, const void* __c) _NOEXCEPT |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 501 | : __node_(__node) |
| 502 | { |
| 503 | __get_db()->__insert_ic(this, __c); |
| 504 | } |
| 505 | #else |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 506 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 507 | __hash_const_iterator(__next_pointer __node) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 508 | : __node_(__node) |
| 509 | {} |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 510 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 511 | template <class, class, class, class> friend class __hash_table; |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 512 | template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator; |
| 513 | template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_map; |
| 514 | template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 515 | }; |
| 516 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 517 | template <class _NodePtr> |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 518 | class _LIBCPP_TEMPLATE_VIS __hash_local_iterator |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 519 | { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 520 | typedef __hash_node_types<_NodePtr> _NodeTypes; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 521 | typedef _NodePtr __node_pointer; |
| 522 | typedef typename _NodeTypes::__next_pointer __next_pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 523 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 524 | __next_pointer __node_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 525 | size_t __bucket_; |
| 526 | size_t __bucket_count_; |
| 527 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 528 | public: |
| 529 | typedef forward_iterator_tag iterator_category; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 530 | typedef typename _NodeTypes::__node_value_type value_type; |
| 531 | typedef typename _NodeTypes::difference_type difference_type; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 532 | typedef value_type& reference; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 533 | typedef typename _NodeTypes::__node_value_type_pointer pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 534 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 535 | _LIBCPP_INLINE_VISIBILITY __hash_local_iterator() _NOEXCEPT : __node_(nullptr) { |
| 536 | _LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 537 | } |
| 538 | |
| 539 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 540 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 541 | __hash_local_iterator(const __hash_local_iterator& __i) |
| 542 | : __node_(__i.__node_), |
| 543 | __bucket_(__i.__bucket_), |
| 544 | __bucket_count_(__i.__bucket_count_) |
| 545 | { |
| 546 | __get_db()->__iterator_copy(this, &__i); |
| 547 | } |
| 548 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 549 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 550 | ~__hash_local_iterator() |
| 551 | { |
| 552 | __get_db()->__erase_i(this); |
| 553 | } |
| 554 | |
| 555 | _LIBCPP_INLINE_VISIBILITY |
| 556 | __hash_local_iterator& operator=(const __hash_local_iterator& __i) |
| 557 | { |
| 558 | if (this != &__i) |
| 559 | { |
| 560 | __get_db()->__iterator_copy(this, &__i); |
| 561 | __node_ = __i.__node_; |
| 562 | __bucket_ = __i.__bucket_; |
| 563 | __bucket_count_ = __i.__bucket_count_; |
| 564 | } |
| 565 | return *this; |
| 566 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 567 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
| 568 | |
| 569 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 570 | reference operator*() const { |
| 571 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 572 | "Attempted to dereference a non-dereferenceable unordered container local_iterator"); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 573 | return __node_->__upcast()->__value_; |
| 574 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 575 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 576 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 577 | pointer operator->() const { |
| 578 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
| 579 | "Attempted to dereference a non-dereferenceable unordered container local_iterator"); |
| 580 | return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_); |
| 581 | } |
| 582 | |
| 583 | _LIBCPP_INLINE_VISIBILITY |
| 584 | __hash_local_iterator& operator++() { |
| 585 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 586 | "Attempted to increment non-incrementable unordered container local_iterator"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 587 | __node_ = __node_->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 588 | if (__node_ != nullptr && __constrain_hash(__node_->__hash(), __bucket_count_) != __bucket_) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 589 | __node_ = nullptr; |
| 590 | return *this; |
| 591 | } |
| 592 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 593 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 594 | __hash_local_iterator operator++(int) |
| 595 | { |
| 596 | __hash_local_iterator __t(*this); |
| 597 | ++(*this); |
| 598 | return __t; |
| 599 | } |
| 600 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 601 | friend _LIBCPP_INLINE_VISIBILITY |
| 602 | bool operator==(const __hash_local_iterator& __x, const __hash_local_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 603 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 604 | return __x.__node_ == __y.__node_; |
| 605 | } |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 606 | friend _LIBCPP_INLINE_VISIBILITY |
| 607 | bool operator!=(const __hash_local_iterator& __x, const __hash_local_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 608 | {return !(__x == __y);} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 609 | |
| 610 | private: |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 611 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 612 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 613 | __hash_local_iterator(__next_pointer __node, size_t __bucket, |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 614 | size_t __bucket_count, const void* __c) _NOEXCEPT |
| 615 | : __node_(__node), |
| 616 | __bucket_(__bucket), |
| 617 | __bucket_count_(__bucket_count) |
| 618 | { |
| 619 | __get_db()->__insert_ic(this, __c); |
| 620 | if (__node_ != nullptr) |
| 621 | __node_ = __node_->__next_; |
| 622 | } |
| 623 | #else |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 624 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 625 | __hash_local_iterator(__next_pointer __node, size_t __bucket, |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 626 | size_t __bucket_count) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 627 | : __node_(__node), |
| 628 | __bucket_(__bucket), |
| 629 | __bucket_count_(__bucket_count) |
| 630 | { |
| 631 | if (__node_ != nullptr) |
| 632 | __node_ = __node_->__next_; |
| 633 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 634 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 635 | template <class, class, class, class> friend class __hash_table; |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 636 | template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator; |
| 637 | template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_iterator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 638 | }; |
| 639 | |
| 640 | template <class _ConstNodePtr> |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 641 | class _LIBCPP_TEMPLATE_VIS __hash_const_local_iterator |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 642 | { |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 643 | typedef __hash_node_types<_ConstNodePtr> _NodeTypes; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 644 | typedef _ConstNodePtr __node_pointer; |
| 645 | typedef typename _NodeTypes::__next_pointer __next_pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 646 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 647 | __next_pointer __node_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 648 | size_t __bucket_; |
| 649 | size_t __bucket_count_; |
| 650 | |
| 651 | typedef pointer_traits<__node_pointer> __pointer_traits; |
| 652 | typedef typename __pointer_traits::element_type __node; |
| 653 | typedef typename remove_const<__node>::type __non_const_node; |
Eric Fiselier | 934b092 | 2015-12-30 21:52:00 +0000 | [diff] [blame] | 654 | typedef typename __rebind_pointer<__node_pointer, __non_const_node>::type |
| 655 | __non_const_node_pointer; |
Eric Fiselier | 757373e | 2016-02-18 00:20:34 +0000 | [diff] [blame] | 656 | public: |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 657 | typedef __hash_local_iterator<__non_const_node_pointer> |
| 658 | __non_const_iterator; |
Eric Fiselier | 757373e | 2016-02-18 00:20:34 +0000 | [diff] [blame] | 659 | |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 660 | typedef forward_iterator_tag iterator_category; |
| 661 | typedef typename _NodeTypes::__node_value_type value_type; |
| 662 | typedef typename _NodeTypes::difference_type difference_type; |
| 663 | typedef const value_type& reference; |
| 664 | typedef typename _NodeTypes::__const_node_value_type_pointer pointer; |
Eric Fiselier | 934b092 | 2015-12-30 21:52:00 +0000 | [diff] [blame] | 665 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 666 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 667 | _LIBCPP_INLINE_VISIBILITY __hash_const_local_iterator() _NOEXCEPT : __node_(nullptr) { |
| 668 | _LIBCPP_DEBUG_MODE(__get_db()->__insert_i(this)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 669 | } |
| 670 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 671 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 672 | __hash_const_local_iterator(const __non_const_iterator& __x) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 673 | : __node_(__x.__node_), |
| 674 | __bucket_(__x.__bucket_), |
| 675 | __bucket_count_(__x.__bucket_count_) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 676 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 677 | _LIBCPP_DEBUG_MODE(__get_db()->__iterator_copy(this, &__x)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 678 | } |
| 679 | |
| 680 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 681 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 682 | __hash_const_local_iterator(const __hash_const_local_iterator& __i) |
| 683 | : __node_(__i.__node_), |
| 684 | __bucket_(__i.__bucket_), |
| 685 | __bucket_count_(__i.__bucket_count_) |
| 686 | { |
| 687 | __get_db()->__iterator_copy(this, &__i); |
| 688 | } |
| 689 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 690 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 691 | ~__hash_const_local_iterator() |
| 692 | { |
| 693 | __get_db()->__erase_i(this); |
| 694 | } |
| 695 | |
| 696 | _LIBCPP_INLINE_VISIBILITY |
| 697 | __hash_const_local_iterator& operator=(const __hash_const_local_iterator& __i) |
| 698 | { |
| 699 | if (this != &__i) |
| 700 | { |
| 701 | __get_db()->__iterator_copy(this, &__i); |
| 702 | __node_ = __i.__node_; |
| 703 | __bucket_ = __i.__bucket_; |
| 704 | __bucket_count_ = __i.__bucket_count_; |
| 705 | } |
| 706 | return *this; |
| 707 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 708 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
| 709 | |
| 710 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 711 | reference operator*() const { |
| 712 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 713 | "Attempted to dereference a non-dereferenceable unordered container const_local_iterator"); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 714 | return __node_->__upcast()->__value_; |
| 715 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 716 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 717 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 718 | pointer operator->() const { |
| 719 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
| 720 | "Attempted to dereference a non-dereferenceable unordered container const_local_iterator"); |
| 721 | return pointer_traits<pointer>::pointer_to(__node_->__upcast()->__value_); |
| 722 | } |
| 723 | |
| 724 | _LIBCPP_INLINE_VISIBILITY |
| 725 | __hash_const_local_iterator& operator++() { |
| 726 | _LIBCPP_DEBUG_ASSERT(__get_const_db()->__dereferenceable(this), |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 727 | "Attempted to increment non-incrementable unordered container const_local_iterator"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 728 | __node_ = __node_->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 729 | if (__node_ != nullptr && __constrain_hash(__node_->__hash(), __bucket_count_) != __bucket_) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 730 | __node_ = nullptr; |
| 731 | return *this; |
| 732 | } |
| 733 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 734 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 735 | __hash_const_local_iterator operator++(int) |
| 736 | { |
| 737 | __hash_const_local_iterator __t(*this); |
| 738 | ++(*this); |
| 739 | return __t; |
| 740 | } |
| 741 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 742 | friend _LIBCPP_INLINE_VISIBILITY |
| 743 | bool operator==(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 744 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 745 | return __x.__node_ == __y.__node_; |
| 746 | } |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 747 | friend _LIBCPP_INLINE_VISIBILITY |
| 748 | bool operator!=(const __hash_const_local_iterator& __x, const __hash_const_local_iterator& __y) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 749 | {return !(__x == __y);} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 750 | |
| 751 | private: |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 752 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 753 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 754 | __hash_const_local_iterator(__next_pointer __node, size_t __bucket, |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 755 | size_t __bucket_count, const void* __c) _NOEXCEPT |
| 756 | : __node_(__node), |
| 757 | __bucket_(__bucket), |
| 758 | __bucket_count_(__bucket_count) |
| 759 | { |
| 760 | __get_db()->__insert_ic(this, __c); |
| 761 | if (__node_ != nullptr) |
| 762 | __node_ = __node_->__next_; |
| 763 | } |
| 764 | #else |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 765 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 766 | __hash_const_local_iterator(__next_pointer __node, size_t __bucket, |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 767 | size_t __bucket_count) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 768 | : __node_(__node), |
| 769 | __bucket_(__bucket), |
| 770 | __bucket_count_(__bucket_count) |
| 771 | { |
| 772 | if (__node_ != nullptr) |
| 773 | __node_ = __node_->__next_; |
| 774 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 775 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 776 | template <class, class, class, class> friend class __hash_table; |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 777 | template <class> friend class _LIBCPP_TEMPLATE_VIS __hash_map_const_iterator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 778 | }; |
| 779 | |
| 780 | template <class _Alloc> |
| 781 | class __bucket_list_deallocator |
| 782 | { |
| 783 | typedef _Alloc allocator_type; |
| 784 | typedef allocator_traits<allocator_type> __alloc_traits; |
| 785 | typedef typename __alloc_traits::size_type size_type; |
| 786 | |
| 787 | __compressed_pair<size_type, allocator_type> __data_; |
| 788 | public: |
| 789 | typedef typename __alloc_traits::pointer pointer; |
| 790 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 791 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 792 | __bucket_list_deallocator() |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 793 | _NOEXCEPT_(is_nothrow_default_constructible<allocator_type>::value) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 794 | : __data_(0) {} |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 795 | |
| 796 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 797 | __bucket_list_deallocator(const allocator_type& __a, size_type __size) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 798 | _NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 799 | : __data_(__size, __a) {} |
| 800 | |
Howard Hinnant | 7609c9b | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 801 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 802 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 803 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 804 | __bucket_list_deallocator(__bucket_list_deallocator&& __x) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 805 | _NOEXCEPT_(is_nothrow_move_constructible<allocator_type>::value) |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 806 | : __data_(_VSTD::move(__x.__data_)) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 807 | { |
| 808 | __x.size() = 0; |
| 809 | } |
| 810 | |
Howard Hinnant | 7609c9b | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 811 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 812 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 813 | _LIBCPP_INLINE_VISIBILITY |
| 814 | size_type& size() _NOEXCEPT {return __data_.first();} |
| 815 | _LIBCPP_INLINE_VISIBILITY |
| 816 | size_type size() const _NOEXCEPT {return __data_.first();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 817 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 818 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 819 | allocator_type& __alloc() _NOEXCEPT {return __data_.second();} |
| 820 | _LIBCPP_INLINE_VISIBILITY |
| 821 | const allocator_type& __alloc() const _NOEXCEPT {return __data_.second();} |
| 822 | |
| 823 | _LIBCPP_INLINE_VISIBILITY |
| 824 | void operator()(pointer __p) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 825 | { |
| 826 | __alloc_traits::deallocate(__alloc(), __p, size()); |
| 827 | } |
| 828 | }; |
| 829 | |
Howard Hinnant | ce53420 | 2011-06-14 19:58:17 +0000 | [diff] [blame] | 830 | template <class _Alloc> class __hash_map_node_destructor; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 831 | |
| 832 | template <class _Alloc> |
| 833 | class __hash_node_destructor |
| 834 | { |
| 835 | typedef _Alloc allocator_type; |
| 836 | typedef allocator_traits<allocator_type> __alloc_traits; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 837 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 838 | public: |
| 839 | typedef typename __alloc_traits::pointer pointer; |
| 840 | private: |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 841 | typedef __hash_node_types<pointer> _NodeTypes; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 842 | |
| 843 | allocator_type& __na_; |
| 844 | |
| 845 | __hash_node_destructor& operator=(const __hash_node_destructor&); |
| 846 | |
| 847 | public: |
| 848 | bool __value_constructed; |
| 849 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 850 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | f622b58 | 2011-07-31 17:04:30 +0000 | [diff] [blame] | 851 | explicit __hash_node_destructor(allocator_type& __na, |
| 852 | bool __constructed = false) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 853 | : __na_(__na), |
Howard Hinnant | f622b58 | 2011-07-31 17:04:30 +0000 | [diff] [blame] | 854 | __value_constructed(__constructed) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 855 | {} |
| 856 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 857 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 858 | void operator()(pointer __p) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 859 | { |
| 860 | if (__value_constructed) |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 861 | __alloc_traits::destroy(__na_, _NodeTypes::__get_ptr(__p->__value_)); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 862 | if (__p) |
| 863 | __alloc_traits::deallocate(__na_, __p, 1); |
| 864 | } |
| 865 | |
| 866 | template <class> friend class __hash_map_node_destructor; |
| 867 | }; |
| 868 | |
Eric Fiselier | 04333f9 | 2017-01-13 22:42:53 +0000 | [diff] [blame] | 869 | |
| 870 | #ifndef _LIBCPP_CXX03_LANG |
| 871 | template <class _Key, class _Hash, class _Equal, class _Alloc> |
| 872 | struct __diagnose_hash_table_helper { |
| 873 | static constexpr bool __trigger_diagnostics() |
Eric Fiselier | acb2158 | 2017-03-01 02:02:28 +0000 | [diff] [blame^] | 874 | _LIBCPP_DIAGNOSE_WARNING(__has_enabled_hash<_Key, _Hash>::value |
| 875 | && !__invokable<_Hash const&, _Key const&>::value, |
| 876 | "the specified hash functor does not provide a const call operator") |
| 877 | _LIBCPP_DIAGNOSE_WARNING(is_copy_constructible<_Equal>::value |
| 878 | && !__invokable<_Equal const&, _Key const&, _Key const&>::value, |
| 879 | "the specified comparator type does not provide a const call operator") |
| 880 | { |
| 881 | static_assert(__has_enabled_hash<_Key, _Hash>::value, |
| 882 | "the specified hash functor does not meet the requirements for an " |
| 883 | "enabled hash"); |
| 884 | static_assert(is_copy_constructible<_Equal>::value, |
| 885 | "the specified comparator is required to be copy constructible"); |
| 886 | return true; |
| 887 | } |
Eric Fiselier | 04333f9 | 2017-01-13 22:42:53 +0000 | [diff] [blame] | 888 | }; |
| 889 | |
| 890 | template <class _Key, class _Value, class _Hash, class _Equal, class _Alloc> |
| 891 | struct __diagnose_hash_table_helper< |
| 892 | __hash_value_type<_Key, _Value>, |
| 893 | __unordered_map_hasher<_Key, __hash_value_type<_Key, _Value>, _Hash>, |
| 894 | __unordered_map_equal<_Key, __hash_value_type<_Key, _Value>, _Equal>, |
| 895 | _Alloc> |
| 896 | : __diagnose_hash_table_helper<_Key, _Hash, _Equal, _Alloc> |
| 897 | { |
| 898 | }; |
| 899 | #endif // _LIBCPP_CXX03_LANG |
| 900 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 901 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 902 | class __hash_table |
| 903 | { |
| 904 | public: |
| 905 | typedef _Tp value_type; |
| 906 | typedef _Hash hasher; |
| 907 | typedef _Equal key_equal; |
| 908 | typedef _Alloc allocator_type; |
| 909 | |
| 910 | private: |
| 911 | typedef allocator_traits<allocator_type> __alloc_traits; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 912 | typedef typename |
| 913 | __make_hash_node_types<value_type, typename __alloc_traits::void_pointer>::type |
| 914 | _NodeTypes; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 915 | public: |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 916 | |
| 917 | typedef typename _NodeTypes::__node_value_type __node_value_type; |
| 918 | typedef typename _NodeTypes::__container_value_type __container_value_type; |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 919 | typedef typename _NodeTypes::key_type key_type; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 920 | typedef value_type& reference; |
| 921 | typedef const value_type& const_reference; |
| 922 | typedef typename __alloc_traits::pointer pointer; |
| 923 | typedef typename __alloc_traits::const_pointer const_pointer; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 924 | #ifndef _LIBCPP_ABI_FIX_UNORDERED_CONTAINER_SIZE_TYPE |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 925 | typedef typename __alloc_traits::size_type size_type; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 926 | #else |
| 927 | typedef typename _NodeTypes::size_type size_type; |
| 928 | #endif |
| 929 | typedef typename _NodeTypes::difference_type difference_type; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 930 | public: |
| 931 | // Create __node |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 932 | |
| 933 | typedef typename _NodeTypes::__node_type __node; |
Marshall Clow | 1f50801 | 2015-04-07 05:21:38 +0000 | [diff] [blame] | 934 | typedef typename __rebind_alloc_helper<__alloc_traits, __node>::type __node_allocator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 935 | typedef allocator_traits<__node_allocator> __node_traits; |
Eric Fiselier | 8e39768 | 2016-02-11 15:22:37 +0000 | [diff] [blame] | 936 | typedef typename _NodeTypes::__void_pointer __void_pointer; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 937 | typedef typename _NodeTypes::__node_pointer __node_pointer; |
| 938 | typedef typename _NodeTypes::__node_pointer __node_const_pointer; |
| 939 | typedef typename _NodeTypes::__node_base_type __first_node; |
| 940 | typedef typename _NodeTypes::__node_base_pointer __node_base_pointer; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 941 | typedef typename _NodeTypes::__next_pointer __next_pointer; |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 942 | |
| 943 | private: |
| 944 | // check for sane allocator pointer rebinding semantics. Rebinding the |
| 945 | // allocator for a new pointer type should be exactly the same as rebinding |
| 946 | // the pointer using 'pointer_traits'. |
| 947 | static_assert((is_same<__node_pointer, typename __node_traits::pointer>::value), |
| 948 | "Allocator does not rebind pointers in a sane manner."); |
| 949 | typedef typename __rebind_alloc_helper<__node_traits, __first_node>::type |
| 950 | __node_base_allocator; |
| 951 | typedef allocator_traits<__node_base_allocator> __node_base_traits; |
| 952 | static_assert((is_same<__node_base_pointer, typename __node_base_traits::pointer>::value), |
| 953 | "Allocator does not rebind pointers in a sane manner."); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 954 | |
| 955 | private: |
| 956 | |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 957 | typedef typename __rebind_alloc_helper<__node_traits, __next_pointer>::type __pointer_allocator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 958 | typedef __bucket_list_deallocator<__pointer_allocator> __bucket_list_deleter; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 959 | typedef unique_ptr<__next_pointer[], __bucket_list_deleter> __bucket_list; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 960 | typedef allocator_traits<__pointer_allocator> __pointer_alloc_traits; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 961 | typedef typename __bucket_list_deleter::pointer __node_pointer_pointer; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 962 | |
Eric Fiselier | acb2158 | 2017-03-01 02:02:28 +0000 | [diff] [blame^] | 963 | #ifndef _LIBCPP_CXX03_LANG |
| 964 | static_assert(__diagnose_hash_table_helper<_Tp, _Hash, _Equal, _Alloc>::__trigger_diagnostics(), ""); |
| 965 | #endif |
| 966 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 967 | // --- Member data begin --- |
Eric Fiselier | 75d0dcf | 2016-02-10 20:46:23 +0000 | [diff] [blame] | 968 | __bucket_list __bucket_list_; |
| 969 | __compressed_pair<__first_node, __node_allocator> __p1_; |
| 970 | __compressed_pair<size_type, hasher> __p2_; |
| 971 | __compressed_pair<float, key_equal> __p3_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 972 | // --- Member data end --- |
| 973 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 974 | _LIBCPP_INLINE_VISIBILITY |
| 975 | size_type& size() _NOEXCEPT {return __p2_.first();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 976 | public: |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 977 | _LIBCPP_INLINE_VISIBILITY |
| 978 | size_type size() const _NOEXCEPT {return __p2_.first();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 979 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 980 | _LIBCPP_INLINE_VISIBILITY |
| 981 | hasher& hash_function() _NOEXCEPT {return __p2_.second();} |
| 982 | _LIBCPP_INLINE_VISIBILITY |
| 983 | const hasher& hash_function() const _NOEXCEPT {return __p2_.second();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 984 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 985 | _LIBCPP_INLINE_VISIBILITY |
| 986 | float& max_load_factor() _NOEXCEPT {return __p3_.first();} |
| 987 | _LIBCPP_INLINE_VISIBILITY |
| 988 | float max_load_factor() const _NOEXCEPT {return __p3_.first();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 989 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 990 | _LIBCPP_INLINE_VISIBILITY |
| 991 | key_equal& key_eq() _NOEXCEPT {return __p3_.second();} |
| 992 | _LIBCPP_INLINE_VISIBILITY |
| 993 | const key_equal& key_eq() const _NOEXCEPT {return __p3_.second();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 994 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 995 | _LIBCPP_INLINE_VISIBILITY |
| 996 | __node_allocator& __node_alloc() _NOEXCEPT {return __p1_.second();} |
| 997 | _LIBCPP_INLINE_VISIBILITY |
| 998 | const __node_allocator& __node_alloc() const _NOEXCEPT |
| 999 | {return __p1_.second();} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1000 | |
| 1001 | public: |
| 1002 | typedef __hash_iterator<__node_pointer> iterator; |
Howard Hinnant | 307f814 | 2013-06-22 15:21:29 +0000 | [diff] [blame] | 1003 | typedef __hash_const_iterator<__node_pointer> const_iterator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1004 | typedef __hash_local_iterator<__node_pointer> local_iterator; |
Howard Hinnant | 307f814 | 2013-06-22 15:21:29 +0000 | [diff] [blame] | 1005 | typedef __hash_const_local_iterator<__node_pointer> const_local_iterator; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1006 | |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1007 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1008 | __hash_table() |
| 1009 | _NOEXCEPT_( |
| 1010 | is_nothrow_default_constructible<__bucket_list>::value && |
| 1011 | is_nothrow_default_constructible<__first_node>::value && |
| 1012 | is_nothrow_default_constructible<__node_allocator>::value && |
| 1013 | is_nothrow_default_constructible<hasher>::value && |
| 1014 | is_nothrow_default_constructible<key_equal>::value); |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1015 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1016 | __hash_table(const hasher& __hf, const key_equal& __eql); |
| 1017 | __hash_table(const hasher& __hf, const key_equal& __eql, |
| 1018 | const allocator_type& __a); |
| 1019 | explicit __hash_table(const allocator_type& __a); |
| 1020 | __hash_table(const __hash_table& __u); |
| 1021 | __hash_table(const __hash_table& __u, const allocator_type& __a); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1022 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1023 | __hash_table(__hash_table&& __u) |
| 1024 | _NOEXCEPT_( |
| 1025 | is_nothrow_move_constructible<__bucket_list>::value && |
| 1026 | is_nothrow_move_constructible<__first_node>::value && |
| 1027 | is_nothrow_move_constructible<__node_allocator>::value && |
| 1028 | is_nothrow_move_constructible<hasher>::value && |
| 1029 | is_nothrow_move_constructible<key_equal>::value); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1030 | __hash_table(__hash_table&& __u, const allocator_type& __a); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1031 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1032 | ~__hash_table(); |
| 1033 | |
| 1034 | __hash_table& operator=(const __hash_table& __u); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1035 | #ifndef _LIBCPP_CXX03_LANG |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1036 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1037 | __hash_table& operator=(__hash_table&& __u) |
| 1038 | _NOEXCEPT_( |
| 1039 | __node_traits::propagate_on_container_move_assignment::value && |
| 1040 | is_nothrow_move_assignable<__node_allocator>::value && |
| 1041 | is_nothrow_move_assignable<hasher>::value && |
| 1042 | is_nothrow_move_assignable<key_equal>::value); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1043 | #endif |
| 1044 | template <class _InputIterator> |
| 1045 | void __assign_unique(_InputIterator __first, _InputIterator __last); |
| 1046 | template <class _InputIterator> |
| 1047 | void __assign_multi(_InputIterator __first, _InputIterator __last); |
| 1048 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1049 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1050 | size_type max_size() const _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1051 | { |
Eric Fiselier | 55b31b4e | 2016-11-23 01:18:56 +0000 | [diff] [blame] | 1052 | return std::min<size_type>( |
Eric Fiselier | 341c9dd | 2016-11-23 09:16:12 +0000 | [diff] [blame] | 1053 | __node_traits::max_size(__node_alloc()), |
Eric Fiselier | 55b31b4e | 2016-11-23 01:18:56 +0000 | [diff] [blame] | 1054 | numeric_limits<difference_type >::max() |
| 1055 | ); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1056 | } |
| 1057 | |
| 1058 | pair<iterator, bool> __node_insert_unique(__node_pointer __nd); |
| 1059 | iterator __node_insert_multi(__node_pointer __nd); |
| 1060 | iterator __node_insert_multi(const_iterator __p, |
| 1061 | __node_pointer __nd); |
| 1062 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1063 | #ifndef _LIBCPP_CXX03_LANG |
| 1064 | template <class _Key, class ..._Args> |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 1065 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1066 | pair<iterator, bool> __emplace_unique_key_args(_Key const& __k, _Args&&... __args); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1067 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1068 | template <class... _Args> |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 1069 | _LIBCPP_INLINE_VISIBILITY |
| 1070 | pair<iterator, bool> __emplace_unique_impl(_Args&&... __args); |
| 1071 | |
| 1072 | template <class _Pp> |
| 1073 | _LIBCPP_INLINE_VISIBILITY |
| 1074 | pair<iterator, bool> __emplace_unique(_Pp&& __x) { |
| 1075 | return __emplace_unique_extract_key(_VSTD::forward<_Pp>(__x), |
| 1076 | __can_extract_key<_Pp, key_type>()); |
| 1077 | } |
Eric Fiselier | 5008868 | 2016-04-16 00:23:12 +0000 | [diff] [blame] | 1078 | |
| 1079 | template <class _First, class _Second> |
| 1080 | _LIBCPP_INLINE_VISIBILITY |
| 1081 | typename enable_if< |
| 1082 | __can_extract_map_key<_First, key_type, __container_value_type>::value, |
| 1083 | pair<iterator, bool> |
| 1084 | >::type __emplace_unique(_First&& __f, _Second&& __s) { |
| 1085 | return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f), |
| 1086 | _VSTD::forward<_Second>(__s)); |
| 1087 | } |
| 1088 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1089 | template <class... _Args> |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 1090 | _LIBCPP_INLINE_VISIBILITY |
| 1091 | pair<iterator, bool> __emplace_unique(_Args&&... __args) { |
| 1092 | return __emplace_unique_impl(_VSTD::forward<_Args>(__args)...); |
| 1093 | } |
| 1094 | |
| 1095 | template <class _Pp> |
| 1096 | _LIBCPP_INLINE_VISIBILITY |
| 1097 | pair<iterator, bool> |
| 1098 | __emplace_unique_extract_key(_Pp&& __x, __extract_key_fail_tag) { |
| 1099 | return __emplace_unique_impl(_VSTD::forward<_Pp>(__x)); |
| 1100 | } |
| 1101 | template <class _Pp> |
| 1102 | _LIBCPP_INLINE_VISIBILITY |
| 1103 | pair<iterator, bool> |
| 1104 | __emplace_unique_extract_key(_Pp&& __x, __extract_key_self_tag) { |
| 1105 | return __emplace_unique_key_args(__x, _VSTD::forward<_Pp>(__x)); |
| 1106 | } |
| 1107 | template <class _Pp> |
| 1108 | _LIBCPP_INLINE_VISIBILITY |
| 1109 | pair<iterator, bool> |
| 1110 | __emplace_unique_extract_key(_Pp&& __x, __extract_key_first_tag) { |
| 1111 | return __emplace_unique_key_args(__x.first, _VSTD::forward<_Pp>(__x)); |
| 1112 | } |
| 1113 | |
| 1114 | template <class... _Args> |
| 1115 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1116 | iterator __emplace_multi(_Args&&... __args); |
| 1117 | template <class... _Args> |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 1118 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1119 | iterator __emplace_hint_multi(const_iterator __p, _Args&&... __args); |
| 1120 | |
| 1121 | |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1122 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1123 | pair<iterator, bool> |
| 1124 | __insert_unique(__container_value_type&& __x) { |
| 1125 | return __emplace_unique_key_args(_NodeTypes::__get_key(__x), _VSTD::move(__x)); |
| 1126 | } |
| 1127 | |
| 1128 | template <class _Pp, class = typename enable_if< |
| 1129 | !__is_same_uncvref<_Pp, __container_value_type>::value |
| 1130 | >::type> |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1131 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1132 | pair<iterator, bool> __insert_unique(_Pp&& __x) { |
| 1133 | return __emplace_unique(_VSTD::forward<_Pp>(__x)); |
| 1134 | } |
| 1135 | |
| 1136 | template <class _Pp> |
| 1137 | _LIBCPP_INLINE_VISIBILITY |
| 1138 | iterator __insert_multi(_Pp&& __x) { |
| 1139 | return __emplace_multi(_VSTD::forward<_Pp>(__x)); |
| 1140 | } |
| 1141 | |
| 1142 | template <class _Pp> |
| 1143 | _LIBCPP_INLINE_VISIBILITY |
| 1144 | iterator __insert_multi(const_iterator __p, _Pp&& __x) { |
| 1145 | return __emplace_hint_multi(__p, _VSTD::forward<_Pp>(__x)); |
| 1146 | } |
| 1147 | |
| 1148 | #else // !defined(_LIBCPP_CXX03_LANG) |
| 1149 | template <class _Key, class _Args> |
Eric Fiselier | 4271d01 | 2016-09-25 04:05:46 +0000 | [diff] [blame] | 1150 | _LIBCPP_INLINE_VISIBILITY |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1151 | pair<iterator, bool> __emplace_unique_key_args(_Key const&, _Args& __args); |
| 1152 | |
| 1153 | iterator __insert_multi(const __container_value_type& __x); |
| 1154 | iterator __insert_multi(const_iterator __p, const __container_value_type& __x); |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1155 | #endif |
| 1156 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1157 | _LIBCPP_INLINE_VISIBILITY |
| 1158 | pair<iterator, bool> __insert_unique(const __container_value_type& __x) { |
| 1159 | return __emplace_unique_key_args(_NodeTypes::__get_key(__x), __x); |
| 1160 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1161 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1162 | void clear() _NOEXCEPT; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1163 | void rehash(size_type __n); |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1164 | _LIBCPP_INLINE_VISIBILITY void reserve(size_type __n) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1165 | {rehash(static_cast<size_type>(ceil(__n / max_load_factor())));} |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1166 | |
| 1167 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1168 | size_type bucket_count() const _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1169 | { |
| 1170 | return __bucket_list_.get_deleter().size(); |
| 1171 | } |
| 1172 | |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1173 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1174 | iterator begin() _NOEXCEPT; |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1175 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1176 | iterator end() _NOEXCEPT; |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1177 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1178 | const_iterator begin() const _NOEXCEPT; |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1179 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1180 | const_iterator end() const _NOEXCEPT; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1181 | |
| 1182 | template <class _Key> |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1183 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1184 | size_type bucket(const _Key& __k) const |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 1185 | { |
| 1186 | _LIBCPP_ASSERT(bucket_count() > 0, |
| 1187 | "unordered container::bucket(key) called when bucket_count() == 0"); |
| 1188 | return __constrain_hash(hash_function()(__k), bucket_count()); |
| 1189 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1190 | |
| 1191 | template <class _Key> |
| 1192 | iterator find(const _Key& __x); |
| 1193 | template <class _Key> |
| 1194 | const_iterator find(const _Key& __x) const; |
| 1195 | |
Howard Hinnant | c003db1 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1196 | typedef __hash_node_destructor<__node_allocator> _Dp; |
| 1197 | typedef unique_ptr<__node, _Dp> __node_holder; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1198 | |
| 1199 | iterator erase(const_iterator __p); |
| 1200 | iterator erase(const_iterator __first, const_iterator __last); |
| 1201 | template <class _Key> |
| 1202 | size_type __erase_unique(const _Key& __k); |
| 1203 | template <class _Key> |
| 1204 | size_type __erase_multi(const _Key& __k); |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1205 | __node_holder remove(const_iterator __p) _NOEXCEPT; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1206 | |
| 1207 | template <class _Key> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1208 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1209 | size_type __count_unique(const _Key& __k) const; |
| 1210 | template <class _Key> |
| 1211 | size_type __count_multi(const _Key& __k) const; |
| 1212 | |
| 1213 | template <class _Key> |
| 1214 | pair<iterator, iterator> |
| 1215 | __equal_range_unique(const _Key& __k); |
| 1216 | template <class _Key> |
| 1217 | pair<const_iterator, const_iterator> |
| 1218 | __equal_range_unique(const _Key& __k) const; |
| 1219 | |
| 1220 | template <class _Key> |
| 1221 | pair<iterator, iterator> |
| 1222 | __equal_range_multi(const _Key& __k); |
| 1223 | template <class _Key> |
| 1224 | pair<const_iterator, const_iterator> |
| 1225 | __equal_range_multi(const _Key& __k) const; |
| 1226 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1227 | void swap(__hash_table& __u) |
Eric Fiselier | 87a8249 | 2015-07-18 20:40:46 +0000 | [diff] [blame] | 1228 | #if _LIBCPP_STD_VER <= 11 |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 1229 | _NOEXCEPT_DEBUG_( |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 1230 | __is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 1231 | && (!allocator_traits<__pointer_allocator>::propagate_on_container_swap::value |
| 1232 | || __is_nothrow_swappable<__pointer_allocator>::value) |
| 1233 | && (!__node_traits::propagate_on_container_swap::value |
| 1234 | || __is_nothrow_swappable<__node_allocator>::value) |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 1235 | ); |
Eric Fiselier | 87a8249 | 2015-07-18 20:40:46 +0000 | [diff] [blame] | 1236 | #else |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 1237 | _NOEXCEPT_DEBUG_(__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value); |
Eric Fiselier | 87a8249 | 2015-07-18 20:40:46 +0000 | [diff] [blame] | 1238 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1239 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1240 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1241 | size_type max_bucket_count() const _NOEXCEPT |
Eric Fiselier | 55b31b4e | 2016-11-23 01:18:56 +0000 | [diff] [blame] | 1242 | {return max_size(); } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1243 | size_type bucket_size(size_type __n) const; |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1244 | _LIBCPP_INLINE_VISIBILITY float load_factor() const _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1245 | { |
| 1246 | size_type __bc = bucket_count(); |
| 1247 | return __bc != 0 ? (float)size() / __bc : 0.f; |
| 1248 | } |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1249 | _LIBCPP_INLINE_VISIBILITY void max_load_factor(float __mlf) _NOEXCEPT |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 1250 | { |
| 1251 | _LIBCPP_ASSERT(__mlf > 0, |
| 1252 | "unordered container::max_load_factor(lf) called with lf <= 0"); |
| 1253 | max_load_factor() = _VSTD::max(__mlf, load_factor()); |
| 1254 | } |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1255 | |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1256 | _LIBCPP_INLINE_VISIBILITY |
| 1257 | local_iterator |
| 1258 | begin(size_type __n) |
| 1259 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 1260 | _LIBCPP_ASSERT(__n < bucket_count(), |
| 1261 | "unordered container::begin(n) called with n >= bucket_count()"); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1262 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1263 | return local_iterator(__bucket_list_[__n], __n, bucket_count(), this); |
| 1264 | #else |
| 1265 | return local_iterator(__bucket_list_[__n], __n, bucket_count()); |
| 1266 | #endif |
| 1267 | } |
| 1268 | |
| 1269 | _LIBCPP_INLINE_VISIBILITY |
| 1270 | local_iterator |
| 1271 | end(size_type __n) |
| 1272 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 1273 | _LIBCPP_ASSERT(__n < bucket_count(), |
| 1274 | "unordered container::end(n) called with n >= bucket_count()"); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1275 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1276 | return local_iterator(nullptr, __n, bucket_count(), this); |
| 1277 | #else |
| 1278 | return local_iterator(nullptr, __n, bucket_count()); |
| 1279 | #endif |
| 1280 | } |
| 1281 | |
| 1282 | _LIBCPP_INLINE_VISIBILITY |
| 1283 | const_local_iterator |
| 1284 | cbegin(size_type __n) const |
| 1285 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 1286 | _LIBCPP_ASSERT(__n < bucket_count(), |
| 1287 | "unordered container::cbegin(n) called with n >= bucket_count()"); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1288 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1289 | return const_local_iterator(__bucket_list_[__n], __n, bucket_count(), this); |
| 1290 | #else |
| 1291 | return const_local_iterator(__bucket_list_[__n], __n, bucket_count()); |
| 1292 | #endif |
| 1293 | } |
| 1294 | |
| 1295 | _LIBCPP_INLINE_VISIBILITY |
| 1296 | const_local_iterator |
| 1297 | cend(size_type __n) const |
| 1298 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 1299 | _LIBCPP_ASSERT(__n < bucket_count(), |
| 1300 | "unordered container::cend(n) called with n >= bucket_count()"); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1301 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1302 | return const_local_iterator(nullptr, __n, bucket_count(), this); |
| 1303 | #else |
| 1304 | return const_local_iterator(nullptr, __n, bucket_count()); |
| 1305 | #endif |
| 1306 | } |
| 1307 | |
| 1308 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1309 | |
| 1310 | bool __dereferenceable(const const_iterator* __i) const; |
| 1311 | bool __decrementable(const const_iterator* __i) const; |
| 1312 | bool __addable(const const_iterator* __i, ptrdiff_t __n) const; |
| 1313 | bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const; |
| 1314 | |
| 1315 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
| 1316 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1317 | private: |
| 1318 | void __rehash(size_type __n); |
| 1319 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1320 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1321 | template <class ..._Args> |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1322 | __node_holder __construct_node(_Args&& ...__args); |
| 1323 | |
| 1324 | template <class _First, class ..._Rest> |
| 1325 | __node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... __rest); |
| 1326 | #else // _LIBCPP_CXX03_LANG |
| 1327 | __node_holder __construct_node(const __container_value_type& __v); |
| 1328 | __node_holder __construct_node_hash(size_t __hash, const __container_value_type& __v); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1329 | #endif |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1330 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1331 | |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1332 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1333 | void __copy_assign_alloc(const __hash_table& __u) |
| 1334 | {__copy_assign_alloc(__u, integral_constant<bool, |
| 1335 | __node_traits::propagate_on_container_copy_assignment::value>());} |
| 1336 | void __copy_assign_alloc(const __hash_table& __u, true_type); |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1337 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | c206366 | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 1338 | void __copy_assign_alloc(const __hash_table&, false_type) {} |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1339 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1340 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1341 | void __move_assign(__hash_table& __u, false_type); |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1342 | void __move_assign(__hash_table& __u, true_type) |
| 1343 | _NOEXCEPT_( |
| 1344 | is_nothrow_move_assignable<__node_allocator>::value && |
| 1345 | is_nothrow_move_assignable<hasher>::value && |
| 1346 | is_nothrow_move_assignable<key_equal>::value); |
| 1347 | _LIBCPP_INLINE_VISIBILITY |
| 1348 | void __move_assign_alloc(__hash_table& __u) |
| 1349 | _NOEXCEPT_( |
| 1350 | !__node_traits::propagate_on_container_move_assignment::value || |
| 1351 | (is_nothrow_move_assignable<__pointer_allocator>::value && |
| 1352 | is_nothrow_move_assignable<__node_allocator>::value)) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1353 | {__move_assign_alloc(__u, integral_constant<bool, |
| 1354 | __node_traits::propagate_on_container_move_assignment::value>());} |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1355 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1356 | void __move_assign_alloc(__hash_table& __u, true_type) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1357 | _NOEXCEPT_( |
| 1358 | is_nothrow_move_assignable<__pointer_allocator>::value && |
| 1359 | is_nothrow_move_assignable<__node_allocator>::value) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1360 | { |
| 1361 | __bucket_list_.get_deleter().__alloc() = |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1362 | _VSTD::move(__u.__bucket_list_.get_deleter().__alloc()); |
| 1363 | __node_alloc() = _VSTD::move(__u.__node_alloc()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1364 | } |
Howard Hinnant | 43d9923 | 2010-09-21 17:32:39 +0000 | [diff] [blame] | 1365 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1366 | void __move_assign_alloc(__hash_table&, false_type) _NOEXCEPT {} |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1367 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1368 | |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1369 | void __deallocate_node(__next_pointer __np) _NOEXCEPT; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1370 | __next_pointer __detach() _NOEXCEPT; |
Howard Hinnant | 307f814 | 2013-06-22 15:21:29 +0000 | [diff] [blame] | 1371 | |
Eric Fiselier | e2f2d1e | 2017-01-04 23:56:00 +0000 | [diff] [blame] | 1372 | template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_map; |
| 1373 | template <class, class, class, class, class> friend class _LIBCPP_TEMPLATE_VIS unordered_multimap; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1374 | }; |
| 1375 | |
| 1376 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1377 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1378 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table() |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1379 | _NOEXCEPT_( |
| 1380 | is_nothrow_default_constructible<__bucket_list>::value && |
| 1381 | is_nothrow_default_constructible<__first_node>::value && |
Eric Fiselier | e2e332a | 2015-12-16 00:53:04 +0000 | [diff] [blame] | 1382 | is_nothrow_default_constructible<__node_allocator>::value && |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1383 | is_nothrow_default_constructible<hasher>::value && |
| 1384 | is_nothrow_default_constructible<key_equal>::value) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1385 | : __p2_(0), |
| 1386 | __p3_(1.0f) |
| 1387 | { |
| 1388 | } |
| 1389 | |
| 1390 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1391 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1392 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const hasher& __hf, |
| 1393 | const key_equal& __eql) |
| 1394 | : __bucket_list_(nullptr, __bucket_list_deleter()), |
| 1395 | __p1_(), |
| 1396 | __p2_(0, __hf), |
| 1397 | __p3_(1.0f, __eql) |
| 1398 | { |
| 1399 | } |
| 1400 | |
| 1401 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1402 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const hasher& __hf, |
| 1403 | const key_equal& __eql, |
| 1404 | const allocator_type& __a) |
| 1405 | : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)), |
| 1406 | __p1_(__node_allocator(__a)), |
| 1407 | __p2_(0, __hf), |
| 1408 | __p3_(1.0f, __eql) |
| 1409 | { |
| 1410 | } |
| 1411 | |
| 1412 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1413 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const allocator_type& __a) |
| 1414 | : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)), |
| 1415 | __p1_(__node_allocator(__a)), |
| 1416 | __p2_(0), |
| 1417 | __p3_(1.0f) |
| 1418 | { |
| 1419 | } |
| 1420 | |
| 1421 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1422 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const __hash_table& __u) |
| 1423 | : __bucket_list_(nullptr, |
| 1424 | __bucket_list_deleter(allocator_traits<__pointer_allocator>:: |
| 1425 | select_on_container_copy_construction( |
| 1426 | __u.__bucket_list_.get_deleter().__alloc()), 0)), |
| 1427 | __p1_(allocator_traits<__node_allocator>:: |
| 1428 | select_on_container_copy_construction(__u.__node_alloc())), |
| 1429 | __p2_(0, __u.hash_function()), |
| 1430 | __p3_(__u.__p3_) |
| 1431 | { |
| 1432 | } |
| 1433 | |
| 1434 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1435 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(const __hash_table& __u, |
| 1436 | const allocator_type& __a) |
| 1437 | : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)), |
| 1438 | __p1_(__node_allocator(__a)), |
| 1439 | __p2_(0, __u.hash_function()), |
| 1440 | __p3_(__u.__p3_) |
| 1441 | { |
| 1442 | } |
| 1443 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1444 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1445 | |
| 1446 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1447 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1448 | _NOEXCEPT_( |
| 1449 | is_nothrow_move_constructible<__bucket_list>::value && |
| 1450 | is_nothrow_move_constructible<__first_node>::value && |
Eric Fiselier | e2e332a | 2015-12-16 00:53:04 +0000 | [diff] [blame] | 1451 | is_nothrow_move_constructible<__node_allocator>::value && |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1452 | is_nothrow_move_constructible<hasher>::value && |
| 1453 | is_nothrow_move_constructible<key_equal>::value) |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1454 | : __bucket_list_(_VSTD::move(__u.__bucket_list_)), |
| 1455 | __p1_(_VSTD::move(__u.__p1_)), |
| 1456 | __p2_(_VSTD::move(__u.__p2_)), |
| 1457 | __p3_(_VSTD::move(__u.__p3_)) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1458 | { |
| 1459 | if (size() > 0) |
| 1460 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1461 | __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] = |
| 1462 | __p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1463 | __u.__p1_.first().__next_ = nullptr; |
| 1464 | __u.size() = 0; |
| 1465 | } |
| 1466 | } |
| 1467 | |
| 1468 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1469 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__hash_table(__hash_table&& __u, |
| 1470 | const allocator_type& __a) |
| 1471 | : __bucket_list_(nullptr, __bucket_list_deleter(__pointer_allocator(__a), 0)), |
| 1472 | __p1_(__node_allocator(__a)), |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1473 | __p2_(0, _VSTD::move(__u.hash_function())), |
| 1474 | __p3_(_VSTD::move(__u.__p3_)) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1475 | { |
| 1476 | if (__a == allocator_type(__u.__node_alloc())) |
| 1477 | { |
| 1478 | __bucket_list_.reset(__u.__bucket_list_.release()); |
| 1479 | __bucket_list_.get_deleter().size() = __u.__bucket_list_.get_deleter().size(); |
| 1480 | __u.__bucket_list_.get_deleter().size() = 0; |
| 1481 | if (__u.size() > 0) |
| 1482 | { |
| 1483 | __p1_.first().__next_ = __u.__p1_.first().__next_; |
| 1484 | __u.__p1_.first().__next_ = nullptr; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1485 | __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] = |
| 1486 | __p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1487 | size() = __u.size(); |
| 1488 | __u.size() = 0; |
| 1489 | } |
| 1490 | } |
| 1491 | } |
| 1492 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1493 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1494 | |
| 1495 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1496 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::~__hash_table() |
| 1497 | { |
Eric Fiselier | acb2158 | 2017-03-01 02:02:28 +0000 | [diff] [blame^] | 1498 | #if defined(_LIBCPP_CXX03_LANG) |
Marshall Clow | 3b8669e | 2016-06-30 22:05:45 +0000 | [diff] [blame] | 1499 | static_assert((is_copy_constructible<key_equal>::value), |
| 1500 | "Predicate must be copy-constructible."); |
| 1501 | static_assert((is_copy_constructible<hasher>::value), |
| 1502 | "Hasher must be copy-constructible."); |
Eric Fiselier | 04333f9 | 2017-01-13 22:42:53 +0000 | [diff] [blame] | 1503 | #endif |
Eric Fiselier | acb2158 | 2017-03-01 02:02:28 +0000 | [diff] [blame^] | 1504 | |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1505 | __deallocate_node(__p1_.first().__next_); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1506 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1507 | __get_db()->__erase_c(this); |
| 1508 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1509 | } |
| 1510 | |
| 1511 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1512 | void |
| 1513 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__copy_assign_alloc( |
| 1514 | const __hash_table& __u, true_type) |
| 1515 | { |
| 1516 | if (__node_alloc() != __u.__node_alloc()) |
| 1517 | { |
| 1518 | clear(); |
| 1519 | __bucket_list_.reset(); |
| 1520 | __bucket_list_.get_deleter().size() = 0; |
| 1521 | } |
| 1522 | __bucket_list_.get_deleter().__alloc() = __u.__bucket_list_.get_deleter().__alloc(); |
| 1523 | __node_alloc() = __u.__node_alloc(); |
| 1524 | } |
| 1525 | |
| 1526 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1527 | __hash_table<_Tp, _Hash, _Equal, _Alloc>& |
| 1528 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::operator=(const __hash_table& __u) |
| 1529 | { |
| 1530 | if (this != &__u) |
| 1531 | { |
| 1532 | __copy_assign_alloc(__u); |
| 1533 | hash_function() = __u.hash_function(); |
| 1534 | key_eq() = __u.key_eq(); |
| 1535 | max_load_factor() = __u.max_load_factor(); |
| 1536 | __assign_multi(__u.begin(), __u.end()); |
| 1537 | } |
| 1538 | return *this; |
| 1539 | } |
| 1540 | |
| 1541 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1542 | void |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1543 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__deallocate_node(__next_pointer __np) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1544 | _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1545 | { |
| 1546 | __node_allocator& __na = __node_alloc(); |
| 1547 | while (__np != nullptr) |
| 1548 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1549 | __next_pointer __next = __np->__next_; |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1550 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1551 | __c_node* __c = __get_db()->__find_c_and_lock(this); |
| 1552 | for (__i_node** __p = __c->end_; __p != __c->beg_; ) |
| 1553 | { |
| 1554 | --__p; |
| 1555 | iterator* __i = static_cast<iterator*>((*__p)->__i_); |
| 1556 | if (__i->__node_ == __np) |
| 1557 | { |
| 1558 | (*__p)->__c_ = nullptr; |
| 1559 | if (--__c->end_ != __p) |
| 1560 | memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*)); |
| 1561 | } |
| 1562 | } |
| 1563 | __get_db()->unlock(); |
| 1564 | #endif |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1565 | __node_pointer __real_np = __np->__upcast(); |
| 1566 | __node_traits::destroy(__na, _NodeTypes::__get_ptr(__real_np->__value_)); |
| 1567 | __node_traits::deallocate(__na, __real_np, 1); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1568 | __np = __next; |
| 1569 | } |
| 1570 | } |
| 1571 | |
| 1572 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1573 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__next_pointer |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1574 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__detach() _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1575 | { |
| 1576 | size_type __bc = bucket_count(); |
| 1577 | for (size_type __i = 0; __i < __bc; ++__i) |
| 1578 | __bucket_list_[__i] = nullptr; |
| 1579 | size() = 0; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1580 | __next_pointer __cache = __p1_.first().__next_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1581 | __p1_.first().__next_ = nullptr; |
| 1582 | return __cache; |
| 1583 | } |
| 1584 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1585 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1586 | |
| 1587 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1588 | void |
| 1589 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__move_assign( |
| 1590 | __hash_table& __u, true_type) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1591 | _NOEXCEPT_( |
| 1592 | is_nothrow_move_assignable<__node_allocator>::value && |
| 1593 | is_nothrow_move_assignable<hasher>::value && |
| 1594 | is_nothrow_move_assignable<key_equal>::value) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1595 | { |
| 1596 | clear(); |
| 1597 | __bucket_list_.reset(__u.__bucket_list_.release()); |
| 1598 | __bucket_list_.get_deleter().size() = __u.__bucket_list_.get_deleter().size(); |
| 1599 | __u.__bucket_list_.get_deleter().size() = 0; |
| 1600 | __move_assign_alloc(__u); |
| 1601 | size() = __u.size(); |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1602 | hash_function() = _VSTD::move(__u.hash_function()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1603 | max_load_factor() = __u.max_load_factor(); |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1604 | key_eq() = _VSTD::move(__u.key_eq()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1605 | __p1_.first().__next_ = __u.__p1_.first().__next_; |
| 1606 | if (size() > 0) |
| 1607 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1608 | __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] = |
| 1609 | __p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1610 | __u.__p1_.first().__next_ = nullptr; |
| 1611 | __u.size() = 0; |
| 1612 | } |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1613 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1614 | __get_db()->swap(this, &__u); |
| 1615 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1616 | } |
| 1617 | |
| 1618 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1619 | void |
| 1620 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__move_assign( |
| 1621 | __hash_table& __u, false_type) |
| 1622 | { |
| 1623 | if (__node_alloc() == __u.__node_alloc()) |
| 1624 | __move_assign(__u, true_type()); |
| 1625 | else |
| 1626 | { |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1627 | hash_function() = _VSTD::move(__u.hash_function()); |
| 1628 | key_eq() = _VSTD::move(__u.key_eq()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1629 | max_load_factor() = __u.max_load_factor(); |
| 1630 | if (bucket_count() != 0) |
| 1631 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1632 | __next_pointer __cache = __detach(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1633 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 1634 | try |
| 1635 | { |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1636 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1637 | const_iterator __i = __u.begin(); |
| 1638 | while (__cache != nullptr && __u.size() != 0) |
| 1639 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1640 | __cache->__upcast()->__value_ = |
| 1641 | _VSTD::move(__u.remove(__i++)->__value_); |
| 1642 | __next_pointer __next = __cache->__next_; |
| 1643 | __node_insert_multi(__cache->__upcast()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1644 | __cache = __next; |
| 1645 | } |
| 1646 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 1647 | } |
| 1648 | catch (...) |
| 1649 | { |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1650 | __deallocate_node(__cache); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1651 | throw; |
| 1652 | } |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1653 | #endif // _LIBCPP_NO_EXCEPTIONS |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1654 | __deallocate_node(__cache); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1655 | } |
| 1656 | const_iterator __i = __u.begin(); |
| 1657 | while (__u.size() != 0) |
| 1658 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1659 | __node_holder __h = __construct_node(_NodeTypes::__move(__u.remove(__i++)->__value_)); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1660 | __node_insert_multi(__h.get()); |
| 1661 | __h.release(); |
| 1662 | } |
| 1663 | } |
| 1664 | } |
| 1665 | |
| 1666 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1667 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1668 | __hash_table<_Tp, _Hash, _Equal, _Alloc>& |
| 1669 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::operator=(__hash_table&& __u) |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1670 | _NOEXCEPT_( |
| 1671 | __node_traits::propagate_on_container_move_assignment::value && |
| 1672 | is_nothrow_move_assignable<__node_allocator>::value && |
| 1673 | is_nothrow_move_assignable<hasher>::value && |
| 1674 | is_nothrow_move_assignable<key_equal>::value) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1675 | { |
| 1676 | __move_assign(__u, integral_constant<bool, |
| 1677 | __node_traits::propagate_on_container_move_assignment::value>()); |
| 1678 | return *this; |
| 1679 | } |
| 1680 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1681 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1682 | |
| 1683 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1684 | template <class _InputIterator> |
| 1685 | void |
| 1686 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__assign_unique(_InputIterator __first, |
| 1687 | _InputIterator __last) |
| 1688 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1689 | typedef iterator_traits<_InputIterator> _ITraits; |
| 1690 | typedef typename _ITraits::value_type _ItValueType; |
| 1691 | static_assert((is_same<_ItValueType, __container_value_type>::value), |
| 1692 | "__assign_unique may only be called with the containers value type"); |
| 1693 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1694 | if (bucket_count() != 0) |
| 1695 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1696 | __next_pointer __cache = __detach(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1697 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 1698 | try |
| 1699 | { |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1700 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1701 | for (; __cache != nullptr && __first != __last; ++__first) |
| 1702 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1703 | __cache->__upcast()->__value_ = *__first; |
| 1704 | __next_pointer __next = __cache->__next_; |
| 1705 | __node_insert_unique(__cache->__upcast()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1706 | __cache = __next; |
| 1707 | } |
| 1708 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 1709 | } |
| 1710 | catch (...) |
| 1711 | { |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1712 | __deallocate_node(__cache); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1713 | throw; |
| 1714 | } |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1715 | #endif // _LIBCPP_NO_EXCEPTIONS |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1716 | __deallocate_node(__cache); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1717 | } |
| 1718 | for (; __first != __last; ++__first) |
| 1719 | __insert_unique(*__first); |
| 1720 | } |
| 1721 | |
| 1722 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1723 | template <class _InputIterator> |
| 1724 | void |
| 1725 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__assign_multi(_InputIterator __first, |
| 1726 | _InputIterator __last) |
| 1727 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1728 | typedef iterator_traits<_InputIterator> _ITraits; |
| 1729 | typedef typename _ITraits::value_type _ItValueType; |
| 1730 | static_assert((is_same<_ItValueType, __container_value_type>::value || |
| 1731 | is_same<_ItValueType, __node_value_type>::value), |
| 1732 | "__assign_multi may only be called with the containers value type" |
| 1733 | " or the nodes value type"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1734 | if (bucket_count() != 0) |
| 1735 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1736 | __next_pointer __cache = __detach(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1737 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 1738 | try |
| 1739 | { |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1740 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1741 | for (; __cache != nullptr && __first != __last; ++__first) |
| 1742 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1743 | __cache->__upcast()->__value_ = *__first; |
| 1744 | __next_pointer __next = __cache->__next_; |
| 1745 | __node_insert_multi(__cache->__upcast()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1746 | __cache = __next; |
| 1747 | } |
| 1748 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 1749 | } |
| 1750 | catch (...) |
| 1751 | { |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1752 | __deallocate_node(__cache); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1753 | throw; |
| 1754 | } |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1755 | #endif // _LIBCPP_NO_EXCEPTIONS |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1756 | __deallocate_node(__cache); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1757 | } |
| 1758 | for (; __first != __last; ++__first) |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1759 | __insert_multi(_NodeTypes::__get_value(*__first)); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1760 | } |
| 1761 | |
| 1762 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1763 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1764 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1765 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::begin() _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1766 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1767 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1768 | return iterator(__p1_.first().__next_, this); |
| 1769 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1770 | return iterator(__p1_.first().__next_); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1771 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1772 | } |
| 1773 | |
| 1774 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1775 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1776 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1777 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::end() _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1778 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1779 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1780 | return iterator(nullptr, this); |
| 1781 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1782 | return iterator(nullptr); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1783 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
| 1786 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1787 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1788 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1789 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::begin() const _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1790 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1791 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1792 | return const_iterator(__p1_.first().__next_, this); |
| 1793 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1794 | return const_iterator(__p1_.first().__next_); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1795 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1796 | } |
| 1797 | |
| 1798 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 1799 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1800 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1801 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::end() const _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1802 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1803 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1804 | return const_iterator(nullptr, this); |
| 1805 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1806 | return const_iterator(nullptr); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1807 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1811 | void |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 1812 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::clear() _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1813 | { |
| 1814 | if (size() > 0) |
| 1815 | { |
Eric Fiselier | cd71f44 | 2017-01-07 03:01:24 +0000 | [diff] [blame] | 1816 | __deallocate_node(__p1_.first().__next_); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1817 | __p1_.first().__next_ = nullptr; |
| 1818 | size_type __bc = bucket_count(); |
Howard Hinnant | 1f8da84 | 2011-07-05 14:14:17 +0000 | [diff] [blame] | 1819 | for (size_type __i = 0; __i < __bc; ++__i) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1820 | __bucket_list_[__i] = nullptr; |
| 1821 | size() = 0; |
| 1822 | } |
| 1823 | } |
| 1824 | |
| 1825 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1826 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool> |
| 1827 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_unique(__node_pointer __nd) |
| 1828 | { |
| 1829 | __nd->__hash_ = hash_function()(__nd->__value_); |
| 1830 | size_type __bc = bucket_count(); |
| 1831 | bool __inserted = false; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1832 | __next_pointer __ndptr; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1833 | size_t __chash; |
| 1834 | if (__bc != 0) |
| 1835 | { |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 1836 | __chash = __constrain_hash(__nd->__hash_, __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1837 | __ndptr = __bucket_list_[__chash]; |
| 1838 | if (__ndptr != nullptr) |
| 1839 | { |
| 1840 | for (__ndptr = __ndptr->__next_; __ndptr != nullptr && |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1841 | __constrain_hash(__ndptr->__hash(), __bc) == __chash; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1842 | __ndptr = __ndptr->__next_) |
| 1843 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1844 | if (key_eq()(__ndptr->__upcast()->__value_, __nd->__value_)) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1845 | goto __done; |
| 1846 | } |
| 1847 | } |
| 1848 | } |
| 1849 | { |
| 1850 | if (size()+1 > __bc * max_load_factor() || __bc == 0) |
| 1851 | { |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 1852 | rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc), |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1853 | size_type(ceil(float(size() + 1) / max_load_factor())))); |
| 1854 | __bc = bucket_count(); |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 1855 | __chash = __constrain_hash(__nd->__hash_, __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1856 | } |
| 1857 | // insert_after __bucket_list_[__chash], or __first_node if bucket is null |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1858 | __next_pointer __pn = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1859 | if (__pn == nullptr) |
| 1860 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1861 | __pn =__p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1862 | __nd->__next_ = __pn->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1863 | __pn->__next_ = __nd->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1864 | // fix up __bucket_list_ |
| 1865 | __bucket_list_[__chash] = __pn; |
| 1866 | if (__nd->__next_ != nullptr) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1867 | __bucket_list_[__constrain_hash(__nd->__next_->__hash(), __bc)] = __nd->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1868 | } |
| 1869 | else |
| 1870 | { |
| 1871 | __nd->__next_ = __pn->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1872 | __pn->__next_ = __nd->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1873 | } |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1874 | __ndptr = __nd->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1875 | // increment size |
| 1876 | ++size(); |
| 1877 | __inserted = true; |
| 1878 | } |
| 1879 | __done: |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1880 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1881 | return pair<iterator, bool>(iterator(__ndptr, this), __inserted); |
| 1882 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1883 | return pair<iterator, bool>(iterator(__ndptr), __inserted); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1884 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1885 | } |
| 1886 | |
| 1887 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1888 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 1889 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_multi(__node_pointer __cp) |
| 1890 | { |
| 1891 | __cp->__hash_ = hash_function()(__cp->__value_); |
| 1892 | size_type __bc = bucket_count(); |
| 1893 | if (size()+1 > __bc * max_load_factor() || __bc == 0) |
| 1894 | { |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 1895 | rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc), |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1896 | size_type(ceil(float(size() + 1) / max_load_factor())))); |
| 1897 | __bc = bucket_count(); |
| 1898 | } |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 1899 | size_t __chash = __constrain_hash(__cp->__hash_, __bc); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1900 | __next_pointer __pn = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1901 | if (__pn == nullptr) |
| 1902 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1903 | __pn =__p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1904 | __cp->__next_ = __pn->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1905 | __pn->__next_ = __cp->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1906 | // fix up __bucket_list_ |
| 1907 | __bucket_list_[__chash] = __pn; |
| 1908 | if (__cp->__next_ != nullptr) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1909 | __bucket_list_[__constrain_hash(__cp->__next_->__hash(), __bc)] |
| 1910 | = __cp->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1911 | } |
| 1912 | else |
| 1913 | { |
| 1914 | for (bool __found = false; __pn->__next_ != nullptr && |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1915 | __constrain_hash(__pn->__next_->__hash(), __bc) == __chash; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1916 | __pn = __pn->__next_) |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1917 | { |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1918 | // __found key_eq() action |
| 1919 | // false false loop |
| 1920 | // true true loop |
| 1921 | // false true set __found to true |
| 1922 | // true false break |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1923 | if (__found != (__pn->__next_->__hash() == __cp->__hash_ && |
| 1924 | key_eq()(__pn->__next_->__upcast()->__value_, __cp->__value_))) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1925 | { |
| 1926 | if (!__found) |
| 1927 | __found = true; |
| 1928 | else |
| 1929 | break; |
| 1930 | } |
| 1931 | } |
| 1932 | __cp->__next_ = __pn->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1933 | __pn->__next_ = __cp->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1934 | if (__cp->__next_ != nullptr) |
| 1935 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1936 | size_t __nhash = __constrain_hash(__cp->__next_->__hash(), __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1937 | if (__nhash != __chash) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1938 | __bucket_list_[__nhash] = __cp->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1939 | } |
| 1940 | } |
| 1941 | ++size(); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1942 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1943 | return iterator(__cp->__ptr(), this); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1944 | #else |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1945 | return iterator(__cp->__ptr()); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1946 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1947 | } |
| 1948 | |
| 1949 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 1950 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 1951 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_insert_multi( |
| 1952 | const_iterator __p, __node_pointer __cp) |
| 1953 | { |
Howard Hinnant | 2f51de5 | 2013-08-02 17:50:49 +0000 | [diff] [blame] | 1954 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 1955 | _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this, |
| 1956 | "unordered container::emplace_hint(const_iterator, args...) called with an iterator not" |
| 1957 | " referring to this unordered container"); |
| 1958 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1959 | if (__p != end() && key_eq()(*__p, __cp->__value_)) |
| 1960 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1961 | __next_pointer __np = __p.__node_; |
| 1962 | __cp->__hash_ = __np->__hash(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1963 | size_type __bc = bucket_count(); |
| 1964 | if (size()+1 > __bc * max_load_factor() || __bc == 0) |
| 1965 | { |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 1966 | rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc), |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1967 | size_type(ceil(float(size() + 1) / max_load_factor())))); |
| 1968 | __bc = bucket_count(); |
| 1969 | } |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 1970 | size_t __chash = __constrain_hash(__cp->__hash_, __bc); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1971 | __next_pointer __pp = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1972 | while (__pp->__next_ != __np) |
| 1973 | __pp = __pp->__next_; |
| 1974 | __cp->__next_ = __np; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1975 | __pp->__next_ = static_cast<__next_pointer>(__cp); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1976 | ++size(); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1977 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1978 | return iterator(static_cast<__next_pointer>(__cp), this); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1979 | #else |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 1980 | return iterator(static_cast<__next_pointer>(__cp)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 1981 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1982 | } |
| 1983 | return __node_insert_multi(__cp); |
| 1984 | } |
| 1985 | |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1986 | |
| 1987 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1988 | #ifndef _LIBCPP_CXX03_LANG |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1989 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1990 | template <class _Key, class ..._Args> |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1991 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool> |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1992 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_key_args(_Key const& __k, _Args&&... __args) |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1993 | #else |
| 1994 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1995 | template <class _Key, class _Args> |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1996 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool> |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 1997 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_key_args(_Key const& __k, _Args& __args) |
Eric Fiselier | de3f2b3 | 2015-06-13 07:18:32 +0000 | [diff] [blame] | 1998 | #endif |
| 1999 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2000 | |
| 2001 | size_t __hash = hash_function()(__k); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2002 | size_type __bc = bucket_count(); |
| 2003 | bool __inserted = false; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2004 | __next_pointer __nd; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2005 | size_t __chash; |
| 2006 | if (__bc != 0) |
| 2007 | { |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 2008 | __chash = __constrain_hash(__hash, __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2009 | __nd = __bucket_list_[__chash]; |
| 2010 | if (__nd != nullptr) |
| 2011 | { |
| 2012 | for (__nd = __nd->__next_; __nd != nullptr && |
Eric Fiselier | 1a06fe5 | 2016-07-24 06:22:25 +0000 | [diff] [blame] | 2013 | (__nd->__hash() == __hash || __constrain_hash(__nd->__hash(), __bc) == __chash); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2014 | __nd = __nd->__next_) |
| 2015 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2016 | if (key_eq()(__nd->__upcast()->__value_, __k)) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2017 | goto __done; |
| 2018 | } |
| 2019 | } |
| 2020 | } |
| 2021 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2022 | #ifndef _LIBCPP_CXX03_LANG |
| 2023 | __node_holder __h = __construct_node_hash(__hash, _VSTD::forward<_Args>(__args)...); |
| 2024 | #else |
| 2025 | __node_holder __h = __construct_node_hash(__hash, __args); |
| 2026 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2027 | if (size()+1 > __bc * max_load_factor() || __bc == 0) |
| 2028 | { |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 2029 | rehash(_VSTD::max<size_type>(2 * __bc + !__is_hash_power2(__bc), |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2030 | size_type(ceil(float(size() + 1) / max_load_factor())))); |
| 2031 | __bc = bucket_count(); |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 2032 | __chash = __constrain_hash(__hash, __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2033 | } |
| 2034 | // insert_after __bucket_list_[__chash], or __first_node if bucket is null |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2035 | __next_pointer __pn = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2036 | if (__pn == nullptr) |
| 2037 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2038 | __pn = __p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2039 | __h->__next_ = __pn->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2040 | __pn->__next_ = __h.get()->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2041 | // fix up __bucket_list_ |
| 2042 | __bucket_list_[__chash] = __pn; |
| 2043 | if (__h->__next_ != nullptr) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2044 | __bucket_list_[__constrain_hash(__h->__next_->__hash(), __bc)] |
| 2045 | = __h.get()->__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2046 | } |
| 2047 | else |
| 2048 | { |
| 2049 | __h->__next_ = __pn->__next_; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2050 | __pn->__next_ = static_cast<__next_pointer>(__h.get()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2051 | } |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2052 | __nd = static_cast<__next_pointer>(__h.release()); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2053 | // increment size |
| 2054 | ++size(); |
| 2055 | __inserted = true; |
| 2056 | } |
| 2057 | __done: |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2058 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2059 | return pair<iterator, bool>(iterator(__nd, this), __inserted); |
| 2060 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2061 | return pair<iterator, bool>(iterator(__nd), __inserted); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2062 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2063 | } |
| 2064 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2065 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2066 | |
| 2067 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2068 | template <class... _Args> |
| 2069 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, bool> |
Duncan P. N. Exon Smith | fde79b4 | 2016-03-17 20:45:20 +0000 | [diff] [blame] | 2070 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_unique_impl(_Args&&... __args) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2071 | { |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2072 | __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2073 | pair<iterator, bool> __r = __node_insert_unique(__h.get()); |
| 2074 | if (__r.second) |
| 2075 | __h.release(); |
| 2076 | return __r; |
| 2077 | } |
| 2078 | |
| 2079 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2080 | template <class... _Args> |
| 2081 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 2082 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_multi(_Args&&... __args) |
| 2083 | { |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2084 | __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2085 | iterator __r = __node_insert_multi(__h.get()); |
| 2086 | __h.release(); |
| 2087 | return __r; |
| 2088 | } |
| 2089 | |
| 2090 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2091 | template <class... _Args> |
| 2092 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 2093 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__emplace_hint_multi( |
| 2094 | const_iterator __p, _Args&&... __args) |
| 2095 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 2096 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2097 | _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this, |
| 2098 | "unordered container::emplace_hint(const_iterator, args...) called with an iterator not" |
| 2099 | " referring to this unordered container"); |
| 2100 | #endif |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2101 | __node_holder __h = __construct_node(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2102 | iterator __r = __node_insert_multi(__p, __h.get()); |
| 2103 | __h.release(); |
| 2104 | return __r; |
| 2105 | } |
| 2106 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2107 | #else // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2108 | |
| 2109 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2110 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2111 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__insert_multi(const __container_value_type& __x) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2112 | { |
| 2113 | __node_holder __h = __construct_node(__x); |
| 2114 | iterator __r = __node_insert_multi(__h.get()); |
| 2115 | __h.release(); |
| 2116 | return __r; |
| 2117 | } |
| 2118 | |
| 2119 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2120 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 2121 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__insert_multi(const_iterator __p, |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2122 | const __container_value_type& __x) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2123 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 2124 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2125 | _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this, |
| 2126 | "unordered container::insert(const_iterator, lvalue) called with an iterator not" |
| 2127 | " referring to this unordered container"); |
| 2128 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2129 | __node_holder __h = __construct_node(__x); |
| 2130 | iterator __r = __node_insert_multi(__p, __h.get()); |
| 2131 | __h.release(); |
| 2132 | return __r; |
| 2133 | } |
| 2134 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2135 | #endif // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2136 | |
| 2137 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2138 | void |
| 2139 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::rehash(size_type __n) |
| 2140 | { |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 2141 | if (__n == 1) |
| 2142 | __n = 2; |
| 2143 | else if (__n & (__n - 1)) |
| 2144 | __n = __next_prime(__n); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2145 | size_type __bc = bucket_count(); |
| 2146 | if (__n > __bc) |
| 2147 | __rehash(__n); |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 2148 | else if (__n < __bc) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2149 | { |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2150 | __n = _VSTD::max<size_type> |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2151 | ( |
| 2152 | __n, |
Eric Fiselier | 9ba5c11 | 2015-02-02 21:31:48 +0000 | [diff] [blame] | 2153 | __is_hash_power2(__bc) ? __next_hash_pow2(size_t(ceil(float(size()) / max_load_factor()))) : |
| 2154 | __next_prime(size_t(ceil(float(size()) / max_load_factor()))) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2155 | ); |
| 2156 | if (__n < __bc) |
| 2157 | __rehash(__n); |
| 2158 | } |
| 2159 | } |
| 2160 | |
| 2161 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2162 | void |
| 2163 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__rehash(size_type __nbc) |
| 2164 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2165 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2166 | __get_db()->__invalidate_all(this); |
| 2167 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2168 | __pointer_allocator& __npa = __bucket_list_.get_deleter().__alloc(); |
| 2169 | __bucket_list_.reset(__nbc > 0 ? |
| 2170 | __pointer_alloc_traits::allocate(__npa, __nbc) : nullptr); |
| 2171 | __bucket_list_.get_deleter().size() = __nbc; |
| 2172 | if (__nbc > 0) |
| 2173 | { |
| 2174 | for (size_type __i = 0; __i < __nbc; ++__i) |
| 2175 | __bucket_list_[__i] = nullptr; |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2176 | __next_pointer __pp = __p1_.first().__ptr(); |
| 2177 | __next_pointer __cp = __pp->__next_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2178 | if (__cp != nullptr) |
| 2179 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2180 | size_type __chash = __constrain_hash(__cp->__hash(), __nbc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2181 | __bucket_list_[__chash] = __pp; |
| 2182 | size_type __phash = __chash; |
| 2183 | for (__pp = __cp, __cp = __cp->__next_; __cp != nullptr; |
| 2184 | __cp = __pp->__next_) |
| 2185 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2186 | __chash = __constrain_hash(__cp->__hash(), __nbc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2187 | if (__chash == __phash) |
| 2188 | __pp = __cp; |
| 2189 | else |
| 2190 | { |
| 2191 | if (__bucket_list_[__chash] == nullptr) |
| 2192 | { |
| 2193 | __bucket_list_[__chash] = __pp; |
| 2194 | __pp = __cp; |
| 2195 | __phash = __chash; |
| 2196 | } |
| 2197 | else |
| 2198 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2199 | __next_pointer __np = __cp; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2200 | for (; __np->__next_ != nullptr && |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2201 | key_eq()(__cp->__upcast()->__value_, |
| 2202 | __np->__next_->__upcast()->__value_); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2203 | __np = __np->__next_) |
| 2204 | ; |
| 2205 | __pp->__next_ = __np->__next_; |
| 2206 | __np->__next_ = __bucket_list_[__chash]->__next_; |
| 2207 | __bucket_list_[__chash]->__next_ = __cp; |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 2208 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2209 | } |
| 2210 | } |
| 2211 | } |
| 2212 | } |
| 2213 | } |
| 2214 | } |
| 2215 | |
| 2216 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2217 | template <class _Key> |
| 2218 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 2219 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k) |
| 2220 | { |
| 2221 | size_t __hash = hash_function()(__k); |
| 2222 | size_type __bc = bucket_count(); |
| 2223 | if (__bc != 0) |
| 2224 | { |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 2225 | size_t __chash = __constrain_hash(__hash, __bc); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2226 | __next_pointer __nd = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2227 | if (__nd != nullptr) |
| 2228 | { |
| 2229 | for (__nd = __nd->__next_; __nd != nullptr && |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2230 | (__nd->__hash() == __hash |
| 2231 | || __constrain_hash(__nd->__hash(), __bc) == __chash); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2232 | __nd = __nd->__next_) |
| 2233 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2234 | if ((__nd->__hash() == __hash) |
| 2235 | && key_eq()(__nd->__upcast()->__value_, __k)) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2236 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2237 | return iterator(__nd, this); |
| 2238 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2239 | return iterator(__nd); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2240 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2241 | } |
| 2242 | } |
| 2243 | } |
| 2244 | return end(); |
| 2245 | } |
| 2246 | |
| 2247 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2248 | template <class _Key> |
| 2249 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator |
| 2250 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::find(const _Key& __k) const |
| 2251 | { |
| 2252 | size_t __hash = hash_function()(__k); |
| 2253 | size_type __bc = bucket_count(); |
| 2254 | if (__bc != 0) |
| 2255 | { |
Howard Hinnant | 4cb38a8 | 2012-07-06 17:31:14 +0000 | [diff] [blame] | 2256 | size_t __chash = __constrain_hash(__hash, __bc); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2257 | __next_pointer __nd = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2258 | if (__nd != nullptr) |
| 2259 | { |
| 2260 | for (__nd = __nd->__next_; __nd != nullptr && |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2261 | (__hash == __nd->__hash() |
| 2262 | || __constrain_hash(__nd->__hash(), __bc) == __chash); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2263 | __nd = __nd->__next_) |
| 2264 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2265 | if ((__nd->__hash() == __hash) |
| 2266 | && key_eq()(__nd->__upcast()->__value_, __k)) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2267 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2268 | return const_iterator(__nd, this); |
| 2269 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2270 | return const_iterator(__nd); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2271 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2272 | } |
| 2273 | } |
Howard Hinnant | b3371f6 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 2274 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2275 | } |
| 2276 | return end(); |
| 2277 | } |
| 2278 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2279 | #ifndef _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2280 | |
| 2281 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2282 | template <class ..._Args> |
| 2283 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder |
| 2284 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node(_Args&& ...__args) |
| 2285 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2286 | static_assert(!__is_hash_value_type<_Args...>::value, |
| 2287 | "Construct cannot be called with a hash value type"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2288 | __node_allocator& __na = __node_alloc(); |
Howard Hinnant | c003db1 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 2289 | __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2290 | __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), _VSTD::forward<_Args>(__args)...); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2291 | __h.get_deleter().__value_constructed = true; |
| 2292 | __h->__hash_ = hash_function()(__h->__value_); |
| 2293 | __h->__next_ = nullptr; |
| 2294 | return __h; |
| 2295 | } |
| 2296 | |
| 2297 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2298 | template <class _First, class ..._Rest> |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2299 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2300 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash( |
| 2301 | size_t __hash, _First&& __f, _Rest&& ...__rest) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2302 | { |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2303 | static_assert(!__is_hash_value_type<_First, _Rest...>::value, |
| 2304 | "Construct cannot be called with a hash value type"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2305 | __node_allocator& __na = __node_alloc(); |
Howard Hinnant | c003db1 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 2306 | __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2307 | __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), |
| 2308 | _VSTD::forward<_First>(__f), |
| 2309 | _VSTD::forward<_Rest>(__rest)...); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2310 | __h.get_deleter().__value_constructed = true; |
| 2311 | __h->__hash_ = __hash; |
| 2312 | __h->__next_ = nullptr; |
Howard Hinnant | 179b1f8 | 2013-08-22 18:29:50 +0000 | [diff] [blame] | 2313 | return __h; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2314 | } |
| 2315 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2316 | #else // _LIBCPP_CXX03_LANG |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2317 | |
| 2318 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2319 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2320 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node(const __container_value_type& __v) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2321 | { |
| 2322 | __node_allocator& __na = __node_alloc(); |
Howard Hinnant | c003db1 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 2323 | __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2324 | __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), __v); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2325 | __h.get_deleter().__value_constructed = true; |
| 2326 | __h->__hash_ = hash_function()(__h->__value_); |
| 2327 | __h->__next_ = nullptr; |
Dimitry Andric | 251c629 | 2015-08-19 06:43:33 +0000 | [diff] [blame] | 2328 | return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03 |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2329 | } |
| 2330 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2331 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2332 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2333 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__construct_node_hash(size_t __hash, |
| 2334 | const __container_value_type& __v) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2335 | { |
| 2336 | __node_allocator& __na = __node_alloc(); |
Howard Hinnant | c003db1 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 2337 | __node_holder __h(__node_traits::allocate(__na, 1), _Dp(__na)); |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2338 | __node_traits::construct(__na, _NodeTypes::__get_ptr(__h->__value_), __v); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2339 | __h.get_deleter().__value_constructed = true; |
| 2340 | __h->__hash_ = __hash; |
| 2341 | __h->__next_ = nullptr; |
Dimitry Andric | 251c629 | 2015-08-19 06:43:33 +0000 | [diff] [blame] | 2342 | return _LIBCPP_EXPLICIT_MOVE(__h); // explicitly moved for C++03 |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2343 | } |
| 2344 | |
Eric Fiselier | fcd0221 | 2016-02-11 11:59:44 +0000 | [diff] [blame] | 2345 | #endif // _LIBCPP_CXX03_LANG |
| 2346 | |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2347 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2348 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 2349 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __p) |
| 2350 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2351 | __next_pointer __np = __p.__node_; |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2352 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2353 | _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this, |
| 2354 | "unordered container erase(iterator) called with an iterator not" |
| 2355 | " referring to this container"); |
| 2356 | _LIBCPP_ASSERT(__p != end(), |
| 2357 | "unordered container erase(iterator) called with a non-dereferenceable iterator"); |
| 2358 | iterator __r(__np, this); |
| 2359 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2360 | iterator __r(__np); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2361 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2362 | ++__r; |
| 2363 | remove(__p); |
| 2364 | return __r; |
| 2365 | } |
| 2366 | |
| 2367 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2368 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator |
| 2369 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::erase(const_iterator __first, |
| 2370 | const_iterator __last) |
| 2371 | { |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2372 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2373 | _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__first) == this, |
| 2374 | "unodered container::erase(iterator, iterator) called with an iterator not" |
| 2375 | " referring to this unodered container"); |
| 2376 | _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__last) == this, |
| 2377 | "unodered container::erase(iterator, iterator) called with an iterator not" |
| 2378 | " referring to this unodered container"); |
| 2379 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2380 | for (const_iterator __p = __first; __first != __last; __p = __first) |
| 2381 | { |
| 2382 | ++__first; |
| 2383 | erase(__p); |
| 2384 | } |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2385 | __next_pointer __np = __last.__node_; |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2386 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2387 | return iterator (__np, this); |
| 2388 | #else |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2389 | return iterator (__np); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2390 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2391 | } |
| 2392 | |
| 2393 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2394 | template <class _Key> |
| 2395 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type |
| 2396 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_unique(const _Key& __k) |
| 2397 | { |
| 2398 | iterator __i = find(__k); |
| 2399 | if (__i == end()) |
| 2400 | return 0; |
| 2401 | erase(__i); |
| 2402 | return 1; |
| 2403 | } |
| 2404 | |
| 2405 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2406 | template <class _Key> |
| 2407 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type |
| 2408 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__erase_multi(const _Key& __k) |
| 2409 | { |
| 2410 | size_type __r = 0; |
| 2411 | iterator __i = find(__k); |
| 2412 | if (__i != end()) |
| 2413 | { |
| 2414 | iterator __e = end(); |
| 2415 | do |
| 2416 | { |
| 2417 | erase(__i++); |
| 2418 | ++__r; |
| 2419 | } while (__i != __e && key_eq()(*__i, __k)); |
| 2420 | } |
| 2421 | return __r; |
| 2422 | } |
| 2423 | |
| 2424 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2425 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::__node_holder |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 2426 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::remove(const_iterator __p) _NOEXCEPT |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2427 | { |
| 2428 | // current node |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2429 | __next_pointer __cn = __p.__node_; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2430 | size_type __bc = bucket_count(); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2431 | size_t __chash = __constrain_hash(__cn->__hash(), __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2432 | // find previous node |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2433 | __next_pointer __pn = __bucket_list_[__chash]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2434 | for (; __pn->__next_ != __cn; __pn = __pn->__next_) |
| 2435 | ; |
| 2436 | // Fix up __bucket_list_ |
| 2437 | // if __pn is not in same bucket (before begin is not in same bucket) && |
| 2438 | // if __cn->__next_ is not in same bucket (nullptr is not in same bucket) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2439 | if (__pn == __p1_.first().__ptr() |
| 2440 | || __constrain_hash(__pn->__hash(), __bc) != __chash) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2441 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2442 | if (__cn->__next_ == nullptr |
| 2443 | || __constrain_hash(__cn->__next_->__hash(), __bc) != __chash) |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2444 | __bucket_list_[__chash] = nullptr; |
| 2445 | } |
| 2446 | // if __cn->__next_ is not in same bucket (nullptr is in same bucket) |
| 2447 | if (__cn->__next_ != nullptr) |
| 2448 | { |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2449 | size_t __nhash = __constrain_hash(__cn->__next_->__hash(), __bc); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2450 | if (__nhash != __chash) |
| 2451 | __bucket_list_[__nhash] = __pn; |
| 2452 | } |
| 2453 | // remove __cn |
| 2454 | __pn->__next_ = __cn->__next_; |
| 2455 | __cn->__next_ = nullptr; |
| 2456 | --size(); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2457 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2458 | __c_node* __c = __get_db()->__find_c_and_lock(this); |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 2459 | for (__i_node** __dp = __c->end_; __dp != __c->beg_; ) |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2460 | { |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 2461 | --__dp; |
| 2462 | iterator* __i = static_cast<iterator*>((*__dp)->__i_); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2463 | if (__i->__node_ == __cn) |
| 2464 | { |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 2465 | (*__dp)->__c_ = nullptr; |
| 2466 | if (--__c->end_ != __dp) |
| 2467 | memmove(__dp, __dp+1, (__c->end_ - __dp)*sizeof(__i_node*)); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2468 | } |
| 2469 | } |
| 2470 | __get_db()->unlock(); |
| 2471 | #endif |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2472 | return __node_holder(__cn->__upcast(), _Dp(__node_alloc(), true)); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2473 | } |
| 2474 | |
| 2475 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2476 | template <class _Key> |
Evgeniy Stepanov | 906c872 | 2015-11-07 01:22:13 +0000 | [diff] [blame] | 2477 | inline |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2478 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type |
| 2479 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_unique(const _Key& __k) const |
| 2480 | { |
| 2481 | return static_cast<size_type>(find(__k) != end()); |
| 2482 | } |
| 2483 | |
| 2484 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2485 | template <class _Key> |
| 2486 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type |
| 2487 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__count_multi(const _Key& __k) const |
| 2488 | { |
| 2489 | size_type __r = 0; |
| 2490 | const_iterator __i = find(__k); |
| 2491 | if (__i != end()) |
| 2492 | { |
| 2493 | const_iterator __e = end(); |
| 2494 | do |
| 2495 | { |
| 2496 | ++__i; |
| 2497 | ++__r; |
| 2498 | } while (__i != __e && key_eq()(*__i, __k)); |
| 2499 | } |
| 2500 | return __r; |
| 2501 | } |
| 2502 | |
| 2503 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2504 | template <class _Key> |
| 2505 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, |
| 2506 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator> |
| 2507 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_unique( |
| 2508 | const _Key& __k) |
| 2509 | { |
| 2510 | iterator __i = find(__k); |
| 2511 | iterator __j = __i; |
| 2512 | if (__i != end()) |
| 2513 | ++__j; |
| 2514 | return pair<iterator, iterator>(__i, __j); |
| 2515 | } |
| 2516 | |
| 2517 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2518 | template <class _Key> |
| 2519 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator, |
| 2520 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator> |
| 2521 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_unique( |
| 2522 | const _Key& __k) const |
| 2523 | { |
| 2524 | const_iterator __i = find(__k); |
| 2525 | const_iterator __j = __i; |
| 2526 | if (__i != end()) |
| 2527 | ++__j; |
| 2528 | return pair<const_iterator, const_iterator>(__i, __j); |
| 2529 | } |
| 2530 | |
| 2531 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2532 | template <class _Key> |
| 2533 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator, |
| 2534 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::iterator> |
| 2535 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_multi( |
| 2536 | const _Key& __k) |
| 2537 | { |
| 2538 | iterator __i = find(__k); |
| 2539 | iterator __j = __i; |
| 2540 | if (__i != end()) |
| 2541 | { |
| 2542 | iterator __e = end(); |
| 2543 | do |
| 2544 | { |
| 2545 | ++__j; |
| 2546 | } while (__j != __e && key_eq()(*__j, __k)); |
| 2547 | } |
| 2548 | return pair<iterator, iterator>(__i, __j); |
| 2549 | } |
| 2550 | |
| 2551 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2552 | template <class _Key> |
| 2553 | pair<typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator, |
| 2554 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::const_iterator> |
| 2555 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__equal_range_multi( |
| 2556 | const _Key& __k) const |
| 2557 | { |
| 2558 | const_iterator __i = find(__k); |
| 2559 | const_iterator __j = __i; |
| 2560 | if (__i != end()) |
| 2561 | { |
| 2562 | const_iterator __e = end(); |
| 2563 | do |
| 2564 | { |
| 2565 | ++__j; |
| 2566 | } while (__j != __e && key_eq()(*__j, __k)); |
| 2567 | } |
| 2568 | return pair<const_iterator, const_iterator>(__i, __j); |
| 2569 | } |
| 2570 | |
| 2571 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2572 | void |
| 2573 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::swap(__hash_table& __u) |
Eric Fiselier | 87a8249 | 2015-07-18 20:40:46 +0000 | [diff] [blame] | 2574 | #if _LIBCPP_STD_VER <= 11 |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 2575 | _NOEXCEPT_DEBUG_( |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 2576 | __is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 2577 | && (!allocator_traits<__pointer_allocator>::propagate_on_container_swap::value |
| 2578 | || __is_nothrow_swappable<__pointer_allocator>::value) |
| 2579 | && (!__node_traits::propagate_on_container_swap::value |
| 2580 | || __is_nothrow_swappable<__node_allocator>::value) |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 2581 | ) |
Eric Fiselier | 87a8249 | 2015-07-18 20:40:46 +0000 | [diff] [blame] | 2582 | #else |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 2583 | _NOEXCEPT_DEBUG_(__is_nothrow_swappable<hasher>::value && __is_nothrow_swappable<key_equal>::value) |
Eric Fiselier | 87a8249 | 2015-07-18 20:40:46 +0000 | [diff] [blame] | 2584 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2585 | { |
Eric Fiselier | 780b51d | 2016-12-28 05:53:01 +0000 | [diff] [blame] | 2586 | _LIBCPP_ASSERT(__node_traits::propagate_on_container_swap::value || |
| 2587 | this->__node_alloc() == __u.__node_alloc(), |
| 2588 | "list::swap: Either propagate_on_container_swap must be true" |
| 2589 | " or the allocators must compare equal"); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2590 | { |
| 2591 | __node_pointer_pointer __npp = __bucket_list_.release(); |
| 2592 | __bucket_list_.reset(__u.__bucket_list_.release()); |
| 2593 | __u.__bucket_list_.reset(__npp); |
| 2594 | } |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2595 | _VSTD::swap(__bucket_list_.get_deleter().size(), __u.__bucket_list_.get_deleter().size()); |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 2596 | __swap_allocator(__bucket_list_.get_deleter().__alloc(), |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2597 | __u.__bucket_list_.get_deleter().__alloc()); |
Marshall Clow | e3fbe14 | 2015-07-13 20:04:56 +0000 | [diff] [blame] | 2598 | __swap_allocator(__node_alloc(), __u.__node_alloc()); |
Howard Hinnant | ce48a11 | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2599 | _VSTD::swap(__p1_.first().__next_, __u.__p1_.first().__next_); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2600 | __p2_.swap(__u.__p2_); |
| 2601 | __p3_.swap(__u.__p3_); |
| 2602 | if (size() > 0) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2603 | __bucket_list_[__constrain_hash(__p1_.first().__next_->__hash(), bucket_count())] = |
| 2604 | __p1_.first().__ptr(); |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2605 | if (__u.size() > 0) |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2606 | __u.__bucket_list_[__constrain_hash(__u.__p1_.first().__next_->__hash(), __u.bucket_count())] = |
| 2607 | __u.__p1_.first().__ptr(); |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2608 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2609 | __get_db()->swap(this, &__u); |
| 2610 | #endif |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2614 | typename __hash_table<_Tp, _Hash, _Equal, _Alloc>::size_type |
| 2615 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::bucket_size(size_type __n) const |
| 2616 | { |
Howard Hinnant | e5c13de | 2013-07-29 19:05:47 +0000 | [diff] [blame] | 2617 | _LIBCPP_ASSERT(__n < bucket_count(), |
| 2618 | "unordered container::bucket_size(n) called with n >= bucket_count()"); |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2619 | __next_pointer __np = __bucket_list_[__n]; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2620 | size_type __bc = bucket_count(); |
| 2621 | size_type __r = 0; |
| 2622 | if (__np != nullptr) |
| 2623 | { |
| 2624 | for (__np = __np->__next_; __np != nullptr && |
Eric Fiselier | 40492ba | 2016-07-23 20:36:55 +0000 | [diff] [blame] | 2625 | __constrain_hash(__np->__hash(), __bc) == __n; |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2626 | __np = __np->__next_, ++__r) |
| 2627 | ; |
| 2628 | } |
| 2629 | return __r; |
| 2630 | } |
| 2631 | |
Howard Hinnant | 3714107 | 2011-06-04 18:54:24 +0000 | [diff] [blame] | 2632 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2633 | inline _LIBCPP_INLINE_VISIBILITY |
| 2634 | void |
| 2635 | swap(__hash_table<_Tp, _Hash, _Equal, _Alloc>& __x, |
| 2636 | __hash_table<_Tp, _Hash, _Equal, _Alloc>& __y) |
| 2637 | _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) |
| 2638 | { |
| 2639 | __x.swap(__y); |
| 2640 | } |
| 2641 | |
Howard Hinnant | b24c802 | 2013-07-23 22:01:58 +0000 | [diff] [blame] | 2642 | #if _LIBCPP_DEBUG_LEVEL >= 2 |
| 2643 | |
| 2644 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2645 | bool |
| 2646 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__dereferenceable(const const_iterator* __i) const |
| 2647 | { |
| 2648 | return __i->__node_ != nullptr; |
| 2649 | } |
| 2650 | |
| 2651 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2652 | bool |
| 2653 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__decrementable(const const_iterator*) const |
| 2654 | { |
| 2655 | return false; |
| 2656 | } |
| 2657 | |
| 2658 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2659 | bool |
| 2660 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__addable(const const_iterator*, ptrdiff_t) const |
| 2661 | { |
| 2662 | return false; |
| 2663 | } |
| 2664 | |
| 2665 | template <class _Tp, class _Hash, class _Equal, class _Alloc> |
| 2666 | bool |
| 2667 | __hash_table<_Tp, _Hash, _Equal, _Alloc>::__subscriptable(const const_iterator*, ptrdiff_t) const |
| 2668 | { |
| 2669 | return false; |
| 2670 | } |
| 2671 | |
| 2672 | #endif // _LIBCPP_DEBUG_LEVEL >= 2 |
Howard Hinnant | 3e51952 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2673 | _LIBCPP_END_NAMESPACE_STD |
| 2674 | |
| 2675 | #endif // _LIBCPP__HASH_TABLE |