blob: 5e76d1103371df1e9cdb41509c0c3bdc73bbf504 [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001// -*- C++ -*-
2//===---------------------------- list ------------------------------------===//
3//
Howard Hinnant5b08a8a2010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnant3e519522010-05-11 19:42:16 +00005//
Howard Hinnant412dbeb2010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnant3e519522010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_LIST
12#define _LIBCPP_LIST
13
14/*
15 list synopsis
16
17namespace std
18{
19
20template <class T, class Alloc = allocator<T> >
21class list
22{
23public:
24
25 // types:
26 typedef T value_type;
27 typedef Alloc allocator_type;
28 typedef typename allocator_type::reference reference;
29 typedef typename allocator_type::const_reference const_reference;
30 typedef typename allocator_type::pointer pointer;
31 typedef typename allocator_type::const_pointer const_pointer;
32 typedef implementation-defined iterator;
33 typedef implementation-defined const_iterator;
34 typedef implementation-defined size_type;
35 typedef implementation-defined difference_type;
36 typedef reverse_iterator<iterator> reverse_iterator;
37 typedef reverse_iterator<const_iterator> const_reverse_iterator;
38
Howard Hinnant45900102011-06-03 17:30:28 +000039 list()
40 noexcept(is_nothrow_default_constructible<allocator_type>::value);
Howard Hinnant3e519522010-05-11 19:42:16 +000041 explicit list(const allocator_type& a);
42 explicit list(size_type n);
Marshall Clowf1b6d1b2013-09-09 18:19:45 +000043 explicit list(size_type n, const allocator_type& a); // C++14
Howard Hinnant3e519522010-05-11 19:42:16 +000044 list(size_type n, const value_type& value);
45 list(size_type n, const value_type& value, const allocator_type& a);
46 template <class Iter>
47 list(Iter first, Iter last);
48 template <class Iter>
49 list(Iter first, Iter last, const allocator_type& a);
50 list(const list& x);
51 list(const list&, const allocator_type& a);
Howard Hinnant45900102011-06-03 17:30:28 +000052 list(list&& x)
53 noexcept(is_nothrow_move_constructible<allocator_type>::value);
Howard Hinnant3e519522010-05-11 19:42:16 +000054 list(list&&, const allocator_type& a);
55 list(initializer_list<value_type>);
56 list(initializer_list<value_type>, const allocator_type& a);
57
58 ~list();
59
60 list& operator=(const list& x);
Howard Hinnant45900102011-06-03 17:30:28 +000061 list& operator=(list&& x)
62 noexcept(
63 allocator_type::propagate_on_container_move_assignment::value &&
64 is_nothrow_move_assignable<allocator_type>::value);
Howard Hinnant3e519522010-05-11 19:42:16 +000065 list& operator=(initializer_list<value_type>);
66 template <class Iter>
67 void assign(Iter first, Iter last);
68 void assign(size_type n, const value_type& t);
69 void assign(initializer_list<value_type>);
70
Howard Hinnant45900102011-06-03 17:30:28 +000071 allocator_type get_allocator() const noexcept;
Howard Hinnant3e519522010-05-11 19:42:16 +000072
Howard Hinnant45900102011-06-03 17:30:28 +000073 iterator begin() noexcept;
74 const_iterator begin() const noexcept;
75 iterator end() noexcept;
76 const_iterator end() const noexcept;
77 reverse_iterator rbegin() noexcept;
78 const_reverse_iterator rbegin() const noexcept;
79 reverse_iterator rend() noexcept;
80 const_reverse_iterator rend() const noexcept;
81 const_iterator cbegin() const noexcept;
82 const_iterator cend() const noexcept;
83 const_reverse_iterator crbegin() const noexcept;
84 const_reverse_iterator crend() const noexcept;
Howard Hinnant3e519522010-05-11 19:42:16 +000085
86 reference front();
87 const_reference front() const;
88 reference back();
89 const_reference back() const;
90
Howard Hinnant45900102011-06-03 17:30:28 +000091 bool empty() const noexcept;
92 size_type size() const noexcept;
93 size_type max_size() const noexcept;
Howard Hinnant3e519522010-05-11 19:42:16 +000094
95 template <class... Args>
Marshall Clow63b560b2017-01-24 23:09:12 +000096 reference emplace_front(Args&&... args); // reference in C++17
Howard Hinnant3e519522010-05-11 19:42:16 +000097 void pop_front();
98 template <class... Args>
Marshall Clow63b560b2017-01-24 23:09:12 +000099 reference emplace_back(Args&&... args); // reference in C++17
Howard Hinnant3e519522010-05-11 19:42:16 +0000100 void pop_back();
101 void push_front(const value_type& x);
102 void push_front(value_type&& x);
103 void push_back(const value_type& x);
104 void push_back(value_type&& x);
105 template <class... Args>
106 iterator emplace(const_iterator position, Args&&... args);
107 iterator insert(const_iterator position, const value_type& x);
108 iterator insert(const_iterator position, value_type&& x);
109 iterator insert(const_iterator position, size_type n, const value_type& x);
110 template <class Iter>
111 iterator insert(const_iterator position, Iter first, Iter last);
112 iterator insert(const_iterator position, initializer_list<value_type> il);
113
114 iterator erase(const_iterator position);
115 iterator erase(const_iterator position, const_iterator last);
116
117 void resize(size_type sz);
118 void resize(size_type sz, const value_type& c);
119
Howard Hinnant45900102011-06-03 17:30:28 +0000120 void swap(list&)
Marshall Clowe3fbe142015-07-13 20:04:56 +0000121 noexcept(allocator_traits<allocator_type>::is_always_equal::value); // C++17
Howard Hinnant45900102011-06-03 17:30:28 +0000122 void clear() noexcept;
Howard Hinnant3e519522010-05-11 19:42:16 +0000123
124 void splice(const_iterator position, list& x);
125 void splice(const_iterator position, list&& x);
126 void splice(const_iterator position, list& x, const_iterator i);
127 void splice(const_iterator position, list&& x, const_iterator i);
128 void splice(const_iterator position, list& x, const_iterator first,
129 const_iterator last);
130 void splice(const_iterator position, list&& x, const_iterator first,
131 const_iterator last);
132
133 void remove(const value_type& value);
134 template <class Pred> void remove_if(Pred pred);
135 void unique();
136 template <class BinaryPredicate>
137 void unique(BinaryPredicate binary_pred);
138 void merge(list& x);
139 void merge(list&& x);
140 template <class Compare>
141 void merge(list& x, Compare comp);
142 template <class Compare>
143 void merge(list&& x, Compare comp);
144 void sort();
145 template <class Compare>
146 void sort(Compare comp);
Howard Hinnant45900102011-06-03 17:30:28 +0000147 void reverse() noexcept;
Howard Hinnant3e519522010-05-11 19:42:16 +0000148};
149
150template <class T, class Alloc>
151 bool operator==(const list<T,Alloc>& x, const list<T,Alloc>& y);
152template <class T, class Alloc>
153 bool operator< (const list<T,Alloc>& x, const list<T,Alloc>& y);
154template <class T, class Alloc>
155 bool operator!=(const list<T,Alloc>& x, const list<T,Alloc>& y);
156template <class T, class Alloc>
157 bool operator> (const list<T,Alloc>& x, const list<T,Alloc>& y);
158template <class T, class Alloc>
159 bool operator>=(const list<T,Alloc>& x, const list<T,Alloc>& y);
160template <class T, class Alloc>
161 bool operator<=(const list<T,Alloc>& x, const list<T,Alloc>& y);
162
163template <class T, class Alloc>
Howard Hinnant45900102011-06-03 17:30:28 +0000164 void swap(list<T,Alloc>& x, list<T,Alloc>& y)
165 noexcept(noexcept(x.swap(y)));
Howard Hinnant3e519522010-05-11 19:42:16 +0000166
167} // std
168
169*/
170
171#include <__config>
172
173#include <memory>
174#include <limits>
175#include <initializer_list>
176#include <iterator>
177#include <algorithm>
Eric Fiselierb88ea352015-12-30 20:57:59 +0000178#include <type_traits>
Howard Hinnant3e519522010-05-11 19:42:16 +0000179
Howard Hinnantab4f4382011-11-29 16:45:27 +0000180#include <__undef_min_max>
181
Eric Fiselierc1bd9192014-08-10 23:53:08 +0000182#include <__debug>
Howard Hinnant42a30462013-08-02 00:26:35 +0000183
Howard Hinnant073458b2011-10-17 20:05:10 +0000184#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnant3e519522010-05-11 19:42:16 +0000185#pragma GCC system_header
Howard Hinnant073458b2011-10-17 20:05:10 +0000186#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000187
188_LIBCPP_BEGIN_NAMESPACE_STD
189
Howard Hinnantce534202011-06-14 19:58:17 +0000190template <class _Tp, class _VoidPtr> struct __list_node;
Eric Fiselierb88ea352015-12-30 20:57:59 +0000191template <class _Tp, class _VoidPtr> struct __list_node_base;
192
193template <class _Tp, class _VoidPtr>
194struct __list_node_pointer_traits {
195 typedef typename __rebind_pointer<_VoidPtr, __list_node<_Tp, _VoidPtr> >::type
196 __node_pointer;
197 typedef typename __rebind_pointer<_VoidPtr, __list_node_base<_Tp, _VoidPtr> >::type
198 __base_pointer;
199
200#if defined(_LIBCPP_ABI_LIST_REMOVE_NODE_POINTER_UB)
201 typedef __base_pointer __link_pointer;
202#else
203 typedef typename conditional<
204 is_pointer<_VoidPtr>::value,
205 __base_pointer,
206 __node_pointer
207 >::type __link_pointer;
208#endif
209
Eric Fiselier5243e192016-01-04 03:27:52 +0000210 typedef typename conditional<
211 is_same<__link_pointer, __node_pointer>::value,
212 __base_pointer,
213 __node_pointer
214 >::type __non_link_pointer;
215
216 static _LIBCPP_INLINE_VISIBILITY
217 __link_pointer __unsafe_link_pointer_cast(__link_pointer __p) {
218 return __p;
219 }
220
221 static _LIBCPP_INLINE_VISIBILITY
222 __link_pointer __unsafe_link_pointer_cast(__non_link_pointer __p) {
223 return static_cast<__link_pointer>(static_cast<_VoidPtr>(__p));
224 }
225
Eric Fiselierb88ea352015-12-30 20:57:59 +0000226};
Howard Hinnant3e519522010-05-11 19:42:16 +0000227
228template <class _Tp, class _VoidPtr>
229struct __list_node_base
230{
Eric Fiselierb88ea352015-12-30 20:57:59 +0000231 typedef __list_node_pointer_traits<_Tp, _VoidPtr> _NodeTraits;
232 typedef typename _NodeTraits::__node_pointer __node_pointer;
233 typedef typename _NodeTraits::__base_pointer __base_pointer;
234 typedef typename _NodeTraits::__link_pointer __link_pointer;
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000235
Eric Fiselierb88ea352015-12-30 20:57:59 +0000236 __link_pointer __prev_;
237 __link_pointer __next_;
Howard Hinnant3e519522010-05-11 19:42:16 +0000238
Howard Hinnant848a5372010-09-22 16:48:34 +0000239 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier5243e192016-01-04 03:27:52 +0000240 __list_node_base() : __prev_(_NodeTraits::__unsafe_link_pointer_cast(__self())),
241 __next_(_NodeTraits::__unsafe_link_pointer_cast(__self())) {}
Marshall Clow28d65da2014-08-05 01:34:12 +0000242
243 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier5243e192016-01-04 03:27:52 +0000244 __base_pointer __self() {
Eric Fiselierb88ea352015-12-30 20:57:59 +0000245 return pointer_traits<__base_pointer>::pointer_to(*this);
246 }
247
248 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +0000249 __node_pointer __as_node() {
Eric Fiselier5243e192016-01-04 03:27:52 +0000250 return static_cast<__node_pointer>(__self());
Marshall Clow28d65da2014-08-05 01:34:12 +0000251 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000252};
253
254template <class _Tp, class _VoidPtr>
255struct __list_node
256 : public __list_node_base<_Tp, _VoidPtr>
257{
258 _Tp __value_;
Eric Fiselier5243e192016-01-04 03:27:52 +0000259
260 typedef __list_node_base<_Tp, _VoidPtr> __base;
261 typedef typename __base::__link_pointer __link_pointer;
262
263 _LIBCPP_INLINE_VISIBILITY
264 __link_pointer __as_link() {
265 return static_cast<__link_pointer>(__base::__self());
266 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000267};
268
Eric Fiseliere2f2d1e2017-01-04 23:56:00 +0000269template <class _Tp, class _Alloc = allocator<_Tp> > class _LIBCPP_TEMPLATE_VIS list;
Howard Hinnantce534202011-06-14 19:58:17 +0000270template <class _Tp, class _Alloc> class __list_imp;
Eric Fiseliere2f2d1e2017-01-04 23:56:00 +0000271template <class _Tp, class _VoidPtr> class _LIBCPP_TEMPLATE_VIS __list_const_iterator;
Howard Hinnant3e519522010-05-11 19:42:16 +0000272
273template <class _Tp, class _VoidPtr>
Eric Fiseliere2f2d1e2017-01-04 23:56:00 +0000274class _LIBCPP_TEMPLATE_VIS __list_iterator
Howard Hinnant3e519522010-05-11 19:42:16 +0000275{
Eric Fiselierb88ea352015-12-30 20:57:59 +0000276 typedef __list_node_pointer_traits<_Tp, _VoidPtr> _NodeTraits;
277 typedef typename _NodeTraits::__link_pointer __link_pointer;
Howard Hinnant3e519522010-05-11 19:42:16 +0000278
Eric Fiselierb88ea352015-12-30 20:57:59 +0000279 __link_pointer __ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +0000280
Howard Hinnant920b56c2011-09-27 23:55:03 +0000281#if _LIBCPP_DEBUG_LEVEL >= 2
282 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +0000283 explicit __list_iterator(__link_pointer __p, const void* __c) _NOEXCEPT
Howard Hinnant920b56c2011-09-27 23:55:03 +0000284 : __ptr_(__p)
285 {
286 __get_db()->__insert_ic(this, __c);
287 }
288#else
Howard Hinnant848a5372010-09-22 16:48:34 +0000289 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +0000290 explicit __list_iterator(__link_pointer __p) _NOEXCEPT : __ptr_(__p) {}
Howard Hinnant920b56c2011-09-27 23:55:03 +0000291#endif
292
293
Howard Hinnant3e519522010-05-11 19:42:16 +0000294
295 template<class, class> friend class list;
296 template<class, class> friend class __list_imp;
297 template<class, class> friend class __list_const_iterator;
298public:
299 typedef bidirectional_iterator_tag iterator_category;
300 typedef _Tp value_type;
301 typedef value_type& reference;
Eric Fiselier1c813402015-08-23 02:56:05 +0000302 typedef typename __rebind_pointer<_VoidPtr, value_type>::type pointer;
Howard Hinnant3e519522010-05-11 19:42:16 +0000303 typedef typename pointer_traits<pointer>::difference_type difference_type;
304
Howard Hinnant848a5372010-09-22 16:48:34 +0000305 _LIBCPP_INLINE_VISIBILITY
Marshall Clow0c37cfd2013-08-05 21:23:28 +0000306 __list_iterator() _NOEXCEPT : __ptr_(nullptr)
Howard Hinnant920b56c2011-09-27 23:55:03 +0000307 {
308#if _LIBCPP_DEBUG_LEVEL >= 2
309 __get_db()->__insert_i(this);
310#endif
311 }
312
313#if _LIBCPP_DEBUG_LEVEL >= 2
314
Howard Hinnant27745452011-01-28 23:46:28 +0000315 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000316 __list_iterator(const __list_iterator& __p)
317 : __ptr_(__p.__ptr_)
318 {
319 __get_db()->__iterator_copy(this, &__p);
320 }
321
322 _LIBCPP_INLINE_VISIBILITY
323 ~__list_iterator()
324 {
325 __get_db()->__erase_i(this);
326 }
327
328 _LIBCPP_INLINE_VISIBILITY
329 __list_iterator& operator=(const __list_iterator& __p)
330 {
331 if (this != &__p)
332 {
333 __get_db()->__iterator_copy(this, &__p);
334 __ptr_ = __p.__ptr_;
335 }
336 return *this;
337 }
338
339#endif // _LIBCPP_DEBUG_LEVEL >= 2
340
341 _LIBCPP_INLINE_VISIBILITY
342 reference operator*() const
343 {
344#if _LIBCPP_DEBUG_LEVEL >= 2
345 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
346 "Attempted to dereference a non-dereferenceable list::iterator");
347#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +0000348 return __ptr_->__as_node()->__value_;
Howard Hinnant920b56c2011-09-27 23:55:03 +0000349 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000350 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000351 pointer operator->() const
352 {
353#if _LIBCPP_DEBUG_LEVEL >= 2
354 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
355 "Attempted to dereference a non-dereferenceable list::iterator");
356#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +0000357 return pointer_traits<pointer>::pointer_to(__ptr_->__as_node()->__value_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000358 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000359
Howard Hinnant848a5372010-09-22 16:48:34 +0000360 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000361 __list_iterator& operator++()
362 {
363#if _LIBCPP_DEBUG_LEVEL >= 2
364 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
365 "Attempted to increment non-incrementable list::iterator");
366#endif
367 __ptr_ = __ptr_->__next_;
368 return *this;
369 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000370 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000371 __list_iterator operator++(int) {__list_iterator __t(*this); ++(*this); return __t;}
372
Howard Hinnant848a5372010-09-22 16:48:34 +0000373 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000374 __list_iterator& operator--()
375 {
376#if _LIBCPP_DEBUG_LEVEL >= 2
377 _LIBCPP_ASSERT(__get_const_db()->__decrementable(this),
378 "Attempted to decrement non-decrementable list::iterator");
379#endif
380 __ptr_ = __ptr_->__prev_;
381 return *this;
382 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000383 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000384 __list_iterator operator--(int) {__list_iterator __t(*this); --(*this); return __t;}
385
Howard Hinnant848a5372010-09-22 16:48:34 +0000386 friend _LIBCPP_INLINE_VISIBILITY
387 bool operator==(const __list_iterator& __x, const __list_iterator& __y)
Howard Hinnant920b56c2011-09-27 23:55:03 +0000388 {
Howard Hinnant920b56c2011-09-27 23:55:03 +0000389 return __x.__ptr_ == __y.__ptr_;
390 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000391 friend _LIBCPP_INLINE_VISIBILITY
392 bool operator!=(const __list_iterator& __x, const __list_iterator& __y)
Howard Hinnant3e519522010-05-11 19:42:16 +0000393 {return !(__x == __y);}
394};
395
396template <class _Tp, class _VoidPtr>
Eric Fiseliere2f2d1e2017-01-04 23:56:00 +0000397class _LIBCPP_TEMPLATE_VIS __list_const_iterator
Howard Hinnant3e519522010-05-11 19:42:16 +0000398{
Eric Fiselierb88ea352015-12-30 20:57:59 +0000399 typedef __list_node_pointer_traits<_Tp, _VoidPtr> _NodeTraits;
400 typedef typename _NodeTraits::__link_pointer __link_pointer;
Howard Hinnant3e519522010-05-11 19:42:16 +0000401
Eric Fiselierb88ea352015-12-30 20:57:59 +0000402 __link_pointer __ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +0000403
Howard Hinnant920b56c2011-09-27 23:55:03 +0000404#if _LIBCPP_DEBUG_LEVEL >= 2
405 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +0000406 explicit __list_const_iterator(__link_pointer __p, const void* __c) _NOEXCEPT
Howard Hinnant920b56c2011-09-27 23:55:03 +0000407 : __ptr_(__p)
408 {
409 __get_db()->__insert_ic(this, __c);
410 }
411#else
Howard Hinnant848a5372010-09-22 16:48:34 +0000412 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +0000413 explicit __list_const_iterator(__link_pointer __p) _NOEXCEPT : __ptr_(__p) {}
Howard Hinnant920b56c2011-09-27 23:55:03 +0000414#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000415
416 template<class, class> friend class list;
417 template<class, class> friend class __list_imp;
418public:
419 typedef bidirectional_iterator_tag iterator_category;
420 typedef _Tp value_type;
421 typedef const value_type& reference;
Eric Fiselier1c813402015-08-23 02:56:05 +0000422 typedef typename __rebind_pointer<_VoidPtr, const value_type>::type pointer;
Howard Hinnant3e519522010-05-11 19:42:16 +0000423 typedef typename pointer_traits<pointer>::difference_type difference_type;
424
Howard Hinnant848a5372010-09-22 16:48:34 +0000425 _LIBCPP_INLINE_VISIBILITY
Marshall Clow0c37cfd2013-08-05 21:23:28 +0000426 __list_const_iterator() _NOEXCEPT : __ptr_(nullptr)
Howard Hinnant920b56c2011-09-27 23:55:03 +0000427 {
428#if _LIBCPP_DEBUG_LEVEL >= 2
429 __get_db()->__insert_i(this);
430#endif
431 }
Howard Hinnant27745452011-01-28 23:46:28 +0000432 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantf7509232013-04-05 17:58:52 +0000433 __list_const_iterator(const __list_iterator<_Tp, _VoidPtr>& __p) _NOEXCEPT
Howard Hinnant920b56c2011-09-27 23:55:03 +0000434 : __ptr_(__p.__ptr_)
435 {
436#if _LIBCPP_DEBUG_LEVEL >= 2
437 __get_db()->__iterator_copy(this, &__p);
438#endif
439 }
440
441#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnant3e519522010-05-11 19:42:16 +0000442
Howard Hinnant848a5372010-09-22 16:48:34 +0000443 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000444 __list_const_iterator(const __list_const_iterator& __p)
445 : __ptr_(__p.__ptr_)
446 {
447 __get_db()->__iterator_copy(this, &__p);
448 }
449
450 _LIBCPP_INLINE_VISIBILITY
451 ~__list_const_iterator()
452 {
453 __get_db()->__erase_i(this);
454 }
455
456 _LIBCPP_INLINE_VISIBILITY
457 __list_const_iterator& operator=(const __list_const_iterator& __p)
458 {
459 if (this != &__p)
460 {
461 __get_db()->__iterator_copy(this, &__p);
462 __ptr_ = __p.__ptr_;
463 }
464 return *this;
465 }
466
467#endif // _LIBCPP_DEBUG_LEVEL >= 2
468 _LIBCPP_INLINE_VISIBILITY
469 reference operator*() const
470 {
471#if _LIBCPP_DEBUG_LEVEL >= 2
472 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
473 "Attempted to dereference a non-dereferenceable list::const_iterator");
474#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +0000475 return __ptr_->__as_node()->__value_;
Howard Hinnant920b56c2011-09-27 23:55:03 +0000476 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000477 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000478 pointer operator->() const
479 {
480#if _LIBCPP_DEBUG_LEVEL >= 2
481 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
482 "Attempted to dereference a non-dereferenceable list::iterator");
483#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +0000484 return pointer_traits<pointer>::pointer_to(__ptr_->__as_node()->__value_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000485 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000486
Howard Hinnant848a5372010-09-22 16:48:34 +0000487 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000488 __list_const_iterator& operator++()
489 {
490#if _LIBCPP_DEBUG_LEVEL >= 2
491 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(this),
492 "Attempted to increment non-incrementable list::const_iterator");
493#endif
494 __ptr_ = __ptr_->__next_;
495 return *this;
496 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000497 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000498 __list_const_iterator operator++(int) {__list_const_iterator __t(*this); ++(*this); return __t;}
499
Howard Hinnant848a5372010-09-22 16:48:34 +0000500 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000501 __list_const_iterator& operator--()
502 {
503#if _LIBCPP_DEBUG_LEVEL >= 2
504 _LIBCPP_ASSERT(__get_const_db()->__decrementable(this),
505 "Attempted to decrement non-decrementable list::const_iterator");
506#endif
507 __ptr_ = __ptr_->__prev_;
508 return *this;
509 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000510 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000511 __list_const_iterator operator--(int) {__list_const_iterator __t(*this); --(*this); return __t;}
512
Howard Hinnant848a5372010-09-22 16:48:34 +0000513 friend _LIBCPP_INLINE_VISIBILITY
514 bool operator==(const __list_const_iterator& __x, const __list_const_iterator& __y)
Howard Hinnant920b56c2011-09-27 23:55:03 +0000515 {
Howard Hinnant920b56c2011-09-27 23:55:03 +0000516 return __x.__ptr_ == __y.__ptr_;
517 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000518 friend _LIBCPP_INLINE_VISIBILITY
519 bool operator!=(const __list_const_iterator& __x, const __list_const_iterator& __y)
Howard Hinnant3e519522010-05-11 19:42:16 +0000520 {return !(__x == __y);}
521};
522
523template <class _Tp, class _Alloc>
524class __list_imp
525{
526 __list_imp(const __list_imp&);
527 __list_imp& operator=(const __list_imp&);
528protected:
529 typedef _Tp value_type;
530 typedef _Alloc allocator_type;
531 typedef allocator_traits<allocator_type> __alloc_traits;
532 typedef typename __alloc_traits::size_type size_type;
533 typedef typename __alloc_traits::void_pointer __void_pointer;
534 typedef __list_iterator<value_type, __void_pointer> iterator;
535 typedef __list_const_iterator<value_type, __void_pointer> const_iterator;
536 typedef __list_node_base<value_type, __void_pointer> __node_base;
537 typedef __list_node<value_type, __void_pointer> __node;
Marshall Clow1f508012015-04-07 05:21:38 +0000538 typedef typename __rebind_alloc_helper<__alloc_traits, __node>::type __node_allocator;
Howard Hinnant3e519522010-05-11 19:42:16 +0000539 typedef allocator_traits<__node_allocator> __node_alloc_traits;
540 typedef typename __node_alloc_traits::pointer __node_pointer;
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000541 typedef typename __node_alloc_traits::pointer __node_const_pointer;
Eric Fiselier5243e192016-01-04 03:27:52 +0000542 typedef __list_node_pointer_traits<value_type, __void_pointer> __node_pointer_traits;
543 typedef typename __node_pointer_traits::__link_pointer __link_pointer;
Eric Fiselierb88ea352015-12-30 20:57:59 +0000544 typedef __link_pointer __link_const_pointer;
Howard Hinnant3e519522010-05-11 19:42:16 +0000545 typedef typename __alloc_traits::pointer pointer;
546 typedef typename __alloc_traits::const_pointer const_pointer;
547 typedef typename __alloc_traits::difference_type difference_type;
548
Marshall Clow1f508012015-04-07 05:21:38 +0000549 typedef typename __rebind_alloc_helper<__alloc_traits, __node_base>::type __node_base_allocator;
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000550 typedef typename allocator_traits<__node_base_allocator>::pointer __node_base_pointer;
551
Howard Hinnant3e519522010-05-11 19:42:16 +0000552 __node_base __end_;
553 __compressed_pair<size_type, __node_allocator> __size_alloc_;
554
Howard Hinnant848a5372010-09-22 16:48:34 +0000555 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier5243e192016-01-04 03:27:52 +0000556 __link_pointer __end_as_link() const _NOEXCEPT {
557 return __node_pointer_traits::__unsafe_link_pointer_cast(
558 const_cast<__node_base&>(__end_).__self());
559 }
560
561 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000562 size_type& __sz() _NOEXCEPT {return __size_alloc_.first();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000563 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000564 const size_type& __sz() const _NOEXCEPT
565 {return __size_alloc_.first();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000566 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000567 __node_allocator& __node_alloc() _NOEXCEPT
568 {return __size_alloc_.second();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000569 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000570 const __node_allocator& __node_alloc() const _NOEXCEPT
571 {return __size_alloc_.second();}
Howard Hinnant3e519522010-05-11 19:42:16 +0000572
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000573 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier55b31b4e2016-11-23 01:18:56 +0000574 size_type __node_alloc_max_size() const _NOEXCEPT {
575 return __node_alloc_traits::max_size(__node_alloc());
576 }
577 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +0000578 static void __unlink_nodes(__link_pointer __f, __link_pointer __l) _NOEXCEPT;
Howard Hinnant3e519522010-05-11 19:42:16 +0000579
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000580 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000581 __list_imp()
582 _NOEXCEPT_(is_nothrow_default_constructible<__node_allocator>::value);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000583 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000584 __list_imp(const allocator_type& __a);
585 ~__list_imp();
Howard Hinnant45900102011-06-03 17:30:28 +0000586 void clear() _NOEXCEPT;
Howard Hinnant848a5372010-09-22 16:48:34 +0000587 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000588 bool empty() const _NOEXCEPT {return __sz() == 0;}
Howard Hinnant3e519522010-05-11 19:42:16 +0000589
Howard Hinnant848a5372010-09-22 16:48:34 +0000590 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000591 iterator begin() _NOEXCEPT
592 {
593#if _LIBCPP_DEBUG_LEVEL >= 2
594 return iterator(__end_.__next_, this);
595#else
596 return iterator(__end_.__next_);
597#endif
598 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000599 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000600 const_iterator begin() const _NOEXCEPT
Howard Hinnant920b56c2011-09-27 23:55:03 +0000601 {
602#if _LIBCPP_DEBUG_LEVEL >= 2
603 return const_iterator(__end_.__next_, this);
604#else
605 return const_iterator(__end_.__next_);
606#endif
607 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000608 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000609 iterator end() _NOEXCEPT
610 {
611#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselier5243e192016-01-04 03:27:52 +0000612 return iterator(__end_as_link(), this);
Howard Hinnant920b56c2011-09-27 23:55:03 +0000613#else
Eric Fiselier5243e192016-01-04 03:27:52 +0000614 return iterator(__end_as_link());
Howard Hinnant920b56c2011-09-27 23:55:03 +0000615#endif
616 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000617 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000618 const_iterator end() const _NOEXCEPT
Howard Hinnant920b56c2011-09-27 23:55:03 +0000619 {
620#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselier5243e192016-01-04 03:27:52 +0000621 return const_iterator(__end_as_link(), this);
Howard Hinnant920b56c2011-09-27 23:55:03 +0000622#else
Eric Fiselier5243e192016-01-04 03:27:52 +0000623 return const_iterator(__end_as_link());
Howard Hinnant920b56c2011-09-27 23:55:03 +0000624#endif
625 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000626
Howard Hinnant45900102011-06-03 17:30:28 +0000627 void swap(__list_imp& __c)
Marshall Clowe3fbe142015-07-13 20:04:56 +0000628#if _LIBCPP_STD_VER >= 14
Eric Fiselier2e519572016-12-28 06:06:09 +0000629 _NOEXCEPT_DEBUG;
Marshall Clowe3fbe142015-07-13 20:04:56 +0000630#else
Eric Fiselier2e519572016-12-28 06:06:09 +0000631 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clowe3fbe142015-07-13 20:04:56 +0000632 __is_nothrow_swappable<allocator_type>::value);
633#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000634
Howard Hinnant848a5372010-09-22 16:48:34 +0000635 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000636 void __copy_assign_alloc(const __list_imp& __c)
637 {__copy_assign_alloc(__c, integral_constant<bool,
638 __node_alloc_traits::propagate_on_container_copy_assignment::value>());}
639
Howard Hinnant848a5372010-09-22 16:48:34 +0000640 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000641 void __move_assign_alloc(__list_imp& __c)
Howard Hinnant45900102011-06-03 17:30:28 +0000642 _NOEXCEPT_(
643 !__node_alloc_traits::propagate_on_container_move_assignment::value ||
644 is_nothrow_move_assignable<__node_allocator>::value)
Howard Hinnant3e519522010-05-11 19:42:16 +0000645 {__move_assign_alloc(__c, integral_constant<bool,
646 __node_alloc_traits::propagate_on_container_move_assignment::value>());}
647
648private:
Howard Hinnant848a5372010-09-22 16:48:34 +0000649 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000650 void __copy_assign_alloc(const __list_imp& __c, true_type)
651 {
652 if (__node_alloc() != __c.__node_alloc())
653 clear();
654 __node_alloc() = __c.__node_alloc();
655 }
656
Howard Hinnant848a5372010-09-22 16:48:34 +0000657 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierfd838222016-12-23 23:37:52 +0000658 void __copy_assign_alloc(const __list_imp&, false_type)
Howard Hinnant3e519522010-05-11 19:42:16 +0000659 {}
660
Howard Hinnant848a5372010-09-22 16:48:34 +0000661 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant86681392011-09-02 20:42:31 +0000662 void __move_assign_alloc(__list_imp& __c, true_type)
Howard Hinnant45900102011-06-03 17:30:28 +0000663 _NOEXCEPT_(is_nothrow_move_assignable<__node_allocator>::value)
Howard Hinnant3e519522010-05-11 19:42:16 +0000664 {
Howard Hinnantce48a112011-06-30 21:18:19 +0000665 __node_alloc() = _VSTD::move(__c.__node_alloc());
Howard Hinnant3e519522010-05-11 19:42:16 +0000666 }
667
Howard Hinnant848a5372010-09-22 16:48:34 +0000668 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierfd838222016-12-23 23:37:52 +0000669 void __move_assign_alloc(__list_imp&, false_type)
Howard Hinnant45900102011-06-03 17:30:28 +0000670 _NOEXCEPT
Howard Hinnant3e519522010-05-11 19:42:16 +0000671 {}
Eric Fiselier2e519572016-12-28 06:06:09 +0000672
673 _LIBCPP_INLINE_VISIBILITY
674 void __invalidate_all_iterators() {
675#if _LIBCPP_DEBUG_LEVEL >= 2
676 __get_db()->__invalidate_all(this);
677#endif
678 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000679};
680
681// Unlink nodes [__f, __l]
682template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000683inline
Howard Hinnant3e519522010-05-11 19:42:16 +0000684void
Eric Fiselierb88ea352015-12-30 20:57:59 +0000685__list_imp<_Tp, _Alloc>::__unlink_nodes(__link_pointer __f, __link_pointer __l)
Howard Hinnant45900102011-06-03 17:30:28 +0000686 _NOEXCEPT
Howard Hinnant3e519522010-05-11 19:42:16 +0000687{
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000688 __f->__prev_->__next_ = __l->__next_;
689 __l->__next_->__prev_ = __f->__prev_;
Howard Hinnant3e519522010-05-11 19:42:16 +0000690}
691
692template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000693inline
Howard Hinnant3e519522010-05-11 19:42:16 +0000694__list_imp<_Tp, _Alloc>::__list_imp()
Howard Hinnant45900102011-06-03 17:30:28 +0000695 _NOEXCEPT_(is_nothrow_default_constructible<__node_allocator>::value)
Howard Hinnant3e519522010-05-11 19:42:16 +0000696 : __size_alloc_(0)
697{
698}
699
700template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000701inline
Howard Hinnant3e519522010-05-11 19:42:16 +0000702__list_imp<_Tp, _Alloc>::__list_imp(const allocator_type& __a)
703 : __size_alloc_(0, __node_allocator(__a))
704{
705}
706
707template <class _Tp, class _Alloc>
708__list_imp<_Tp, _Alloc>::~__list_imp()
709{
710 clear();
Howard Hinnant920b56c2011-09-27 23:55:03 +0000711#if _LIBCPP_DEBUG_LEVEL >= 2
712 __get_db()->__erase_c(this);
713#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000714}
715
716template <class _Tp, class _Alloc>
717void
Howard Hinnant45900102011-06-03 17:30:28 +0000718__list_imp<_Tp, _Alloc>::clear() _NOEXCEPT
Howard Hinnant3e519522010-05-11 19:42:16 +0000719{
720 if (!empty())
721 {
722 __node_allocator& __na = __node_alloc();
Eric Fiselierb88ea352015-12-30 20:57:59 +0000723 __link_pointer __f = __end_.__next_;
Eric Fiselier5243e192016-01-04 03:27:52 +0000724 __link_pointer __l = __end_as_link();
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000725 __unlink_nodes(__f, __l->__prev_);
Howard Hinnant3e519522010-05-11 19:42:16 +0000726 __sz() = 0;
727 while (__f != __l)
728 {
Eric Fiselierb88ea352015-12-30 20:57:59 +0000729 __node_pointer __np = __f->__as_node();
Howard Hinnant920b56c2011-09-27 23:55:03 +0000730 __f = __f->__next_;
Eric Fiselierb88ea352015-12-30 20:57:59 +0000731 __node_alloc_traits::destroy(__na, _VSTD::addressof(__np->__value_));
732 __node_alloc_traits::deallocate(__na, __np, 1);
Howard Hinnant3e519522010-05-11 19:42:16 +0000733 }
Eric Fiselier2e519572016-12-28 06:06:09 +0000734 __invalidate_all_iterators();
Howard Hinnant3e519522010-05-11 19:42:16 +0000735 }
736}
737
738template <class _Tp, class _Alloc>
739void
740__list_imp<_Tp, _Alloc>::swap(__list_imp& __c)
Marshall Clowe3fbe142015-07-13 20:04:56 +0000741#if _LIBCPP_STD_VER >= 14
Eric Fiselier2e519572016-12-28 06:06:09 +0000742 _NOEXCEPT_DEBUG
Marshall Clowe3fbe142015-07-13 20:04:56 +0000743#else
Eric Fiselier2e519572016-12-28 06:06:09 +0000744 _NOEXCEPT_DEBUG_(!__alloc_traits::propagate_on_container_swap::value ||
Marshall Clowe3fbe142015-07-13 20:04:56 +0000745 __is_nothrow_swappable<allocator_type>::value)
746#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000747{
Howard Hinnant920b56c2011-09-27 23:55:03 +0000748 _LIBCPP_ASSERT(__alloc_traits::propagate_on_container_swap::value ||
749 this->__node_alloc() == __c.__node_alloc(),
750 "list::swap: Either propagate_on_container_swap must be true"
751 " or the allocators must compare equal");
Howard Hinnantce48a112011-06-30 21:18:19 +0000752 using _VSTD::swap;
Marshall Clowe3fbe142015-07-13 20:04:56 +0000753 __swap_allocator(__node_alloc(), __c.__node_alloc());
Howard Hinnant3e519522010-05-11 19:42:16 +0000754 swap(__sz(), __c.__sz());
755 swap(__end_, __c.__end_);
756 if (__sz() == 0)
Eric Fiselier5243e192016-01-04 03:27:52 +0000757 __end_.__next_ = __end_.__prev_ = __end_as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +0000758 else
Eric Fiselier5243e192016-01-04 03:27:52 +0000759 __end_.__prev_->__next_ = __end_.__next_->__prev_ = __end_as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +0000760 if (__c.__sz() == 0)
Eric Fiselier5243e192016-01-04 03:27:52 +0000761 __c.__end_.__next_ = __c.__end_.__prev_ = __c.__end_as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +0000762 else
Eric Fiselier5243e192016-01-04 03:27:52 +0000763 __c.__end_.__prev_->__next_ = __c.__end_.__next_->__prev_ = __c.__end_as_link();
Marshall Clow28d65da2014-08-05 01:34:12 +0000764
Howard Hinnant920b56c2011-09-27 23:55:03 +0000765#if _LIBCPP_DEBUG_LEVEL >= 2
766 __libcpp_db* __db = __get_db();
767 __c_node* __cn1 = __db->__find_c_and_lock(this);
768 __c_node* __cn2 = __db->__find_c(&__c);
769 std::swap(__cn1->beg_, __cn2->beg_);
770 std::swap(__cn1->end_, __cn2->end_);
771 std::swap(__cn1->cap_, __cn2->cap_);
772 for (__i_node** __p = __cn1->end_; __p != __cn1->beg_;)
773 {
774 --__p;
775 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
Eric Fiselier5243e192016-01-04 03:27:52 +0000776 if (__i->__ptr_ == __c.__end_as_link())
Howard Hinnant920b56c2011-09-27 23:55:03 +0000777 {
778 __cn2->__add(*__p);
779 if (--__cn1->end_ != __p)
780 memmove(__p, __p+1, (__cn1->end_ - __p)*sizeof(__i_node*));
781 }
782 else
783 (*__p)->__c_ = __cn1;
784 }
785 for (__i_node** __p = __cn2->end_; __p != __cn2->beg_;)
786 {
787 --__p;
788 const_iterator* __i = static_cast<const_iterator*>((*__p)->__i_);
Eric Fiselier5243e192016-01-04 03:27:52 +0000789 if (__i->__ptr_ == __end_as_link())
Howard Hinnant920b56c2011-09-27 23:55:03 +0000790 {
791 __cn1->__add(*__p);
792 if (--__cn2->end_ != __p)
793 memmove(__p, __p+1, (__cn2->end_ - __p)*sizeof(__i_node*));
794 }
795 else
796 (*__p)->__c_ = __cn2;
797 }
798 __db->unlock();
799#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000800}
801
Marshall Clowb5d34aa2015-02-18 17:24:08 +0000802template <class _Tp, class _Alloc /*= allocator<_Tp>*/>
Eric Fiseliere2f2d1e2017-01-04 23:56:00 +0000803class _LIBCPP_TEMPLATE_VIS list
Howard Hinnant3e519522010-05-11 19:42:16 +0000804 : private __list_imp<_Tp, _Alloc>
805{
806 typedef __list_imp<_Tp, _Alloc> base;
807 typedef typename base::__node __node;
808 typedef typename base::__node_allocator __node_allocator;
809 typedef typename base::__node_pointer __node_pointer;
810 typedef typename base::__node_alloc_traits __node_alloc_traits;
Howard Hinnant866d4ef2013-06-25 16:08:47 +0000811 typedef typename base::__node_base __node_base;
812 typedef typename base::__node_base_pointer __node_base_pointer;
Eric Fiselierb88ea352015-12-30 20:57:59 +0000813 typedef typename base::__link_pointer __link_pointer;
Howard Hinnant3e519522010-05-11 19:42:16 +0000814
815public:
816 typedef _Tp value_type;
817 typedef _Alloc allocator_type;
818 static_assert((is_same<value_type, typename allocator_type::value_type>::value),
819 "Invalid allocator::value_type");
820 typedef value_type& reference;
821 typedef const value_type& const_reference;
822 typedef typename base::pointer pointer;
823 typedef typename base::const_pointer const_pointer;
824 typedef typename base::size_type size_type;
825 typedef typename base::difference_type difference_type;
826 typedef typename base::iterator iterator;
827 typedef typename base::const_iterator const_iterator;
Howard Hinnantce48a112011-06-30 21:18:19 +0000828 typedef _VSTD::reverse_iterator<iterator> reverse_iterator;
829 typedef _VSTD::reverse_iterator<const_iterator> const_reverse_iterator;
Howard Hinnant3e519522010-05-11 19:42:16 +0000830
Howard Hinnant848a5372010-09-22 16:48:34 +0000831 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000832 list()
833 _NOEXCEPT_(is_nothrow_default_constructible<__node_allocator>::value)
Howard Hinnant920b56c2011-09-27 23:55:03 +0000834 {
835#if _LIBCPP_DEBUG_LEVEL >= 2
836 __get_db()->__insert_c(this);
837#endif
838 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000839 _LIBCPP_INLINE_VISIBILITY
Marshall Clowfb829762013-09-08 19:11:51 +0000840 explicit list(const allocator_type& __a) : base(__a)
Howard Hinnant920b56c2011-09-27 23:55:03 +0000841 {
842#if _LIBCPP_DEBUG_LEVEL >= 2
843 __get_db()->__insert_c(this);
844#endif
845 }
Marshall Clowfb829762013-09-08 19:11:51 +0000846 explicit list(size_type __n);
847#if _LIBCPP_STD_VER > 11
848 explicit list(size_type __n, const allocator_type& __a);
849#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000850 list(size_type __n, const value_type& __x);
851 list(size_type __n, const value_type& __x, const allocator_type& __a);
852 template <class _InpIter>
853 list(_InpIter __f, _InpIter __l,
854 typename enable_if<__is_input_iterator<_InpIter>::value>::type* = 0);
855 template <class _InpIter>
856 list(_InpIter __f, _InpIter __l, const allocator_type& __a,
857 typename enable_if<__is_input_iterator<_InpIter>::value>::type* = 0);
858
859 list(const list& __c);
860 list(const list& __c, const allocator_type& __a);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000861 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000862 list& operator=(const list& __c);
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000863#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +0000864 list(initializer_list<value_type> __il);
865 list(initializer_list<value_type> __il, const allocator_type& __a);
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000866
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000867 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000868 list(list&& __c)
869 _NOEXCEPT_(is_nothrow_move_constructible<__node_allocator>::value);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000870 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000871 list(list&& __c, const allocator_type& __a);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000872 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000873 list& operator=(list&& __c)
874 _NOEXCEPT_(
875 __node_alloc_traits::propagate_on_container_move_assignment::value &&
876 is_nothrow_move_assignable<__node_allocator>::value);
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000877
Howard Hinnant848a5372010-09-22 16:48:34 +0000878 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +0000879 list& operator=(initializer_list<value_type> __il)
880 {assign(__il.begin(), __il.end()); return *this;}
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000881
882 _LIBCPP_INLINE_VISIBILITY
883 void assign(initializer_list<value_type> __il)
884 {assign(__il.begin(), __il.end());}
885#endif // _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +0000886
887 template <class _InpIter>
888 void assign(_InpIter __f, _InpIter __l,
889 typename enable_if<__is_input_iterator<_InpIter>::value>::type* = 0);
890 void assign(size_type __n, const value_type& __x);
Howard Hinnant3e519522010-05-11 19:42:16 +0000891
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +0000892 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000893 allocator_type get_allocator() const _NOEXCEPT;
Howard Hinnant3e519522010-05-11 19:42:16 +0000894
Howard Hinnant848a5372010-09-22 16:48:34 +0000895 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000896 size_type size() const _NOEXCEPT {return base::__sz();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000897 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000898 bool empty() const _NOEXCEPT {return base::empty();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000899 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000900 size_type max_size() const _NOEXCEPT
Eric Fiselier55b31b4e2016-11-23 01:18:56 +0000901 {
902 return std::min<size_type>(
903 base::__node_alloc_max_size(),
904 numeric_limits<difference_type >::max());
905 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000906
Howard Hinnant848a5372010-09-22 16:48:34 +0000907 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000908 iterator begin() _NOEXCEPT {return base::begin();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000909 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000910 const_iterator begin() const _NOEXCEPT {return base::begin();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000911 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000912 iterator end() _NOEXCEPT {return base::end();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000913 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000914 const_iterator end() const _NOEXCEPT {return base::end();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000915 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000916 const_iterator cbegin() const _NOEXCEPT {return base::begin();}
Howard Hinnant848a5372010-09-22 16:48:34 +0000917 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000918 const_iterator cend() const _NOEXCEPT {return base::end();}
Howard Hinnant3e519522010-05-11 19:42:16 +0000919
Howard Hinnant848a5372010-09-22 16:48:34 +0000920 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000921 reverse_iterator rbegin() _NOEXCEPT
922 {return reverse_iterator(end());}
Howard Hinnant848a5372010-09-22 16:48:34 +0000923 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000924 const_reverse_iterator rbegin() const _NOEXCEPT
925 {return const_reverse_iterator(end());}
Howard Hinnant848a5372010-09-22 16:48:34 +0000926 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000927 reverse_iterator rend() _NOEXCEPT
928 {return reverse_iterator(begin());}
Howard Hinnant848a5372010-09-22 16:48:34 +0000929 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000930 const_reverse_iterator rend() const _NOEXCEPT
931 {return const_reverse_iterator(begin());}
Howard Hinnant848a5372010-09-22 16:48:34 +0000932 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000933 const_reverse_iterator crbegin() const _NOEXCEPT
934 {return const_reverse_iterator(end());}
Howard Hinnant848a5372010-09-22 16:48:34 +0000935 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +0000936 const_reverse_iterator crend() const _NOEXCEPT
937 {return const_reverse_iterator(begin());}
Howard Hinnant3e519522010-05-11 19:42:16 +0000938
Howard Hinnant848a5372010-09-22 16:48:34 +0000939 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000940 reference front()
941 {
942 _LIBCPP_ASSERT(!empty(), "list::front called on empty list");
Eric Fiselierb88ea352015-12-30 20:57:59 +0000943 return base::__end_.__next_->__as_node()->__value_;
Howard Hinnant920b56c2011-09-27 23:55:03 +0000944 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000945 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000946 const_reference front() const
947 {
948 _LIBCPP_ASSERT(!empty(), "list::front called on empty list");
Eric Fiselierb88ea352015-12-30 20:57:59 +0000949 return base::__end_.__next_->__as_node()->__value_;
Howard Hinnant920b56c2011-09-27 23:55:03 +0000950 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000951 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000952 reference back()
953 {
954 _LIBCPP_ASSERT(!empty(), "list::back called on empty list");
Eric Fiselierb88ea352015-12-30 20:57:59 +0000955 return base::__end_.__prev_->__as_node()->__value_;
Howard Hinnant920b56c2011-09-27 23:55:03 +0000956 }
Howard Hinnant848a5372010-09-22 16:48:34 +0000957 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant920b56c2011-09-27 23:55:03 +0000958 const_reference back() const
959 {
960 _LIBCPP_ASSERT(!empty(), "list::back called on empty list");
Eric Fiselierb88ea352015-12-30 20:57:59 +0000961 return base::__end_.__prev_->__as_node()->__value_;
Howard Hinnant920b56c2011-09-27 23:55:03 +0000962 }
Howard Hinnant3e519522010-05-11 19:42:16 +0000963
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000964#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +0000965 void push_front(value_type&& __x);
966 void push_back(value_type&& __x);
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000967
Howard Hinnant3e519522010-05-11 19:42:16 +0000968 template <class... _Args>
Marshall Clow63b560b2017-01-24 23:09:12 +0000969#if _LIBCPP_STD_VER > 14
Eric Fiselier0e411642016-07-21 03:20:17 +0000970 reference emplace_front(_Args&&... __args);
Marshall Clow63b560b2017-01-24 23:09:12 +0000971#else
972 void emplace_front(_Args&&... __args);
973#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000974 template <class... _Args>
Marshall Clow63b560b2017-01-24 23:09:12 +0000975#if _LIBCPP_STD_VER > 14
Eric Fiselier0e411642016-07-21 03:20:17 +0000976 reference emplace_back(_Args&&... __args);
Marshall Clow63b560b2017-01-24 23:09:12 +0000977#else
978 void emplace_back(_Args&&... __args);
979#endif
Howard Hinnant3e519522010-05-11 19:42:16 +0000980 template <class... _Args>
981 iterator emplace(const_iterator __p, _Args&&... __args);
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000982
Howard Hinnant3e519522010-05-11 19:42:16 +0000983 iterator insert(const_iterator __p, value_type&& __x);
Eric Fiseliercf9ed002017-04-16 03:45:35 +0000984
985 _LIBCPP_INLINE_VISIBILITY
986 iterator insert(const_iterator __p, initializer_list<value_type> __il)
987 {return insert(__p, __il.begin(), __il.end());}
988#endif // _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +0000989
990 void push_front(const value_type& __x);
991 void push_back(const value_type& __x);
992
993 iterator insert(const_iterator __p, const value_type& __x);
994 iterator insert(const_iterator __p, size_type __n, const value_type& __x);
995 template <class _InpIter>
996 iterator insert(const_iterator __p, _InpIter __f, _InpIter __l,
997 typename enable_if<__is_input_iterator<_InpIter>::value>::type* = 0);
Howard Hinnant3e519522010-05-11 19:42:16 +0000998
Howard Hinnant848a5372010-09-22 16:48:34 +0000999 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +00001000 void swap(list& __c)
Marshall Clowe3fbe142015-07-13 20:04:56 +00001001#if _LIBCPP_STD_VER >= 14
Eric Fiselier2e519572016-12-28 06:06:09 +00001002 _NOEXCEPT_DEBUG
Marshall Clowe3fbe142015-07-13 20:04:56 +00001003#else
Eric Fiselier2e519572016-12-28 06:06:09 +00001004 _NOEXCEPT_DEBUG_(!__node_alloc_traits::propagate_on_container_swap::value ||
Howard Hinnant45900102011-06-03 17:30:28 +00001005 __is_nothrow_swappable<__node_allocator>::value)
Marshall Clowe3fbe142015-07-13 20:04:56 +00001006#endif
Howard Hinnant45900102011-06-03 17:30:28 +00001007 {base::swap(__c);}
Howard Hinnant848a5372010-09-22 16:48:34 +00001008 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant45900102011-06-03 17:30:28 +00001009 void clear() _NOEXCEPT {base::clear();}
Howard Hinnant3e519522010-05-11 19:42:16 +00001010
1011 void pop_front();
1012 void pop_back();
1013
1014 iterator erase(const_iterator __p);
1015 iterator erase(const_iterator __f, const_iterator __l);
1016
1017 void resize(size_type __n);
1018 void resize(size_type __n, const value_type& __x);
1019
1020 void splice(const_iterator __p, list& __c);
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001021#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant848a5372010-09-22 16:48:34 +00001022 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001023 void splice(const_iterator __p, list&& __c) {splice(__p, __c);}
Howard Hinnant848a5372010-09-22 16:48:34 +00001024 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001025 void splice(const_iterator __p, list&& __c, const_iterator __i)
1026 {splice(__p, __c, __i);}
Howard Hinnant848a5372010-09-22 16:48:34 +00001027 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001028 void splice(const_iterator __p, list&& __c, const_iterator __f, const_iterator __l)
1029 {splice(__p, __c, __f, __l);}
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001030#endif
1031 void splice(const_iterator __p, list& __c, const_iterator __i);
1032 void splice(const_iterator __p, list& __c, const_iterator __f, const_iterator __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00001033
1034 void remove(const value_type& __x);
1035 template <class _Pred> void remove_if(_Pred __pred);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001036 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001037 void unique();
1038 template <class _BinaryPred>
1039 void unique(_BinaryPred __binary_pred);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001040 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001041 void merge(list& __c);
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001042#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant848a5372010-09-22 16:48:34 +00001043 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001044 void merge(list&& __c) {merge(__c);}
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001045
Howard Hinnant3e519522010-05-11 19:42:16 +00001046 template <class _Comp>
Howard Hinnant848a5372010-09-22 16:48:34 +00001047 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001048 void merge(list&& __c, _Comp __comp) {merge(__c, __comp);}
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001049#endif
1050 template <class _Comp>
1051 void merge(list& __c, _Comp __comp);
1052
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001053 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001054 void sort();
1055 template <class _Comp>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001056 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00001057 void sort(_Comp __comp);
1058
Howard Hinnant45900102011-06-03 17:30:28 +00001059 void reverse() _NOEXCEPT;
Howard Hinnant3e519522010-05-11 19:42:16 +00001060
Howard Hinnant920b56c2011-09-27 23:55:03 +00001061 bool __invariants() const;
1062
1063#if _LIBCPP_DEBUG_LEVEL >= 2
1064
1065 bool __dereferenceable(const const_iterator* __i) const;
1066 bool __decrementable(const const_iterator* __i) const;
1067 bool __addable(const const_iterator* __i, ptrdiff_t __n) const;
1068 bool __subscriptable(const const_iterator* __i, ptrdiff_t __n) const;
1069
1070#endif // _LIBCPP_DEBUG_LEVEL >= 2
1071
Howard Hinnant3e519522010-05-11 19:42:16 +00001072private:
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001073 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +00001074 static void __link_nodes (__link_pointer __p, __link_pointer __f, __link_pointer __l);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001075 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +00001076 void __link_nodes_at_front(__link_pointer __f, __link_pointer __l);
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001077 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierb88ea352015-12-30 20:57:59 +00001078 void __link_nodes_at_back (__link_pointer __f, __link_pointer __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00001079 iterator __iterator(size_type __n);
1080 template <class _Comp>
1081 static iterator __sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp);
1082
Howard Hinnant45900102011-06-03 17:30:28 +00001083 void __move_assign(list& __c, true_type)
1084 _NOEXCEPT_(is_nothrow_move_assignable<__node_allocator>::value);
Howard Hinnant3e519522010-05-11 19:42:16 +00001085 void __move_assign(list& __c, false_type);
1086};
1087
1088// Link in nodes [__f, __l] just prior to __p
1089template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001090inline
Howard Hinnant3e519522010-05-11 19:42:16 +00001091void
Eric Fiselierb88ea352015-12-30 20:57:59 +00001092list<_Tp, _Alloc>::__link_nodes(__link_pointer __p, __link_pointer __f, __link_pointer __l)
Howard Hinnant3e519522010-05-11 19:42:16 +00001093{
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001094 __p->__prev_->__next_ = __f;
1095 __f->__prev_ = __p->__prev_;
1096 __p->__prev_ = __l;
1097 __l->__next_ = __p;
Howard Hinnant3e519522010-05-11 19:42:16 +00001098}
1099
Marshall Clow28d65da2014-08-05 01:34:12 +00001100// Link in nodes [__f, __l] at the front of the list
1101template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001102inline
Marshall Clow28d65da2014-08-05 01:34:12 +00001103void
Eric Fiselierb88ea352015-12-30 20:57:59 +00001104list<_Tp, _Alloc>::__link_nodes_at_front(__link_pointer __f, __link_pointer __l)
Marshall Clow28d65da2014-08-05 01:34:12 +00001105{
Eric Fiselier5243e192016-01-04 03:27:52 +00001106 __f->__prev_ = base::__end_as_link();
Marshall Clowced70062014-08-08 15:35:52 +00001107 __l->__next_ = base::__end_.__next_;
1108 __l->__next_->__prev_ = __l;
1109 base::__end_.__next_ = __f;
Marshall Clow28d65da2014-08-05 01:34:12 +00001110}
1111
1112// Link in nodes [__f, __l] at the front of the list
1113template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001114inline
Marshall Clow28d65da2014-08-05 01:34:12 +00001115void
Eric Fiselierb88ea352015-12-30 20:57:59 +00001116list<_Tp, _Alloc>::__link_nodes_at_back(__link_pointer __f, __link_pointer __l)
Marshall Clow28d65da2014-08-05 01:34:12 +00001117{
Eric Fiselier5243e192016-01-04 03:27:52 +00001118 __l->__next_ = base::__end_as_link();
Marshall Clowced70062014-08-08 15:35:52 +00001119 __f->__prev_ = base::__end_.__prev_;
1120 __f->__prev_->__next_ = __f;
1121 base::__end_.__prev_ = __l;
Marshall Clow28d65da2014-08-05 01:34:12 +00001122}
1123
1124
Howard Hinnant3e519522010-05-11 19:42:16 +00001125template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001126inline
Howard Hinnant3e519522010-05-11 19:42:16 +00001127typename list<_Tp, _Alloc>::iterator
1128list<_Tp, _Alloc>::__iterator(size_type __n)
1129{
Howard Hinnantce48a112011-06-30 21:18:19 +00001130 return __n <= base::__sz() / 2 ? _VSTD::next(begin(), __n)
1131 : _VSTD::prev(end(), base::__sz() - __n);
Howard Hinnant3e519522010-05-11 19:42:16 +00001132}
1133
1134template <class _Tp, class _Alloc>
1135list<_Tp, _Alloc>::list(size_type __n)
1136{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001137#if _LIBCPP_DEBUG_LEVEL >= 2
1138 __get_db()->__insert_c(this);
1139#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001140 for (; __n > 0; --__n)
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001141#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +00001142 emplace_back();
1143#else
1144 push_back(value_type());
1145#endif
1146}
1147
Marshall Clowfb829762013-09-08 19:11:51 +00001148#if _LIBCPP_STD_VER > 11
1149template <class _Tp, class _Alloc>
1150list<_Tp, _Alloc>::list(size_type __n, const allocator_type& __a) : base(__a)
1151{
1152#if _LIBCPP_DEBUG_LEVEL >= 2
1153 __get_db()->__insert_c(this);
1154#endif
1155 for (; __n > 0; --__n)
Marshall Clowfb829762013-09-08 19:11:51 +00001156 emplace_back();
Marshall Clowfb829762013-09-08 19:11:51 +00001157}
1158#endif
1159
Howard Hinnant3e519522010-05-11 19:42:16 +00001160template <class _Tp, class _Alloc>
1161list<_Tp, _Alloc>::list(size_type __n, const value_type& __x)
1162{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001163#if _LIBCPP_DEBUG_LEVEL >= 2
1164 __get_db()->__insert_c(this);
1165#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001166 for (; __n > 0; --__n)
1167 push_back(__x);
1168}
1169
1170template <class _Tp, class _Alloc>
1171list<_Tp, _Alloc>::list(size_type __n, const value_type& __x, const allocator_type& __a)
1172 : base(__a)
1173{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001174#if _LIBCPP_DEBUG_LEVEL >= 2
1175 __get_db()->__insert_c(this);
1176#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001177 for (; __n > 0; --__n)
1178 push_back(__x);
1179}
1180
1181template <class _Tp, class _Alloc>
1182template <class _InpIter>
1183list<_Tp, _Alloc>::list(_InpIter __f, _InpIter __l,
1184 typename enable_if<__is_input_iterator<_InpIter>::value>::type*)
1185{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001186#if _LIBCPP_DEBUG_LEVEL >= 2
1187 __get_db()->__insert_c(this);
1188#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001189 for (; __f != __l; ++__f)
1190 push_back(*__f);
1191}
1192
1193template <class _Tp, class _Alloc>
1194template <class _InpIter>
1195list<_Tp, _Alloc>::list(_InpIter __f, _InpIter __l, const allocator_type& __a,
1196 typename enable_if<__is_input_iterator<_InpIter>::value>::type*)
1197 : base(__a)
1198{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001199#if _LIBCPP_DEBUG_LEVEL >= 2
1200 __get_db()->__insert_c(this);
1201#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001202 for (; __f != __l; ++__f)
1203 push_back(*__f);
1204}
1205
1206template <class _Tp, class _Alloc>
1207list<_Tp, _Alloc>::list(const list& __c)
1208 : base(allocator_type(
1209 __node_alloc_traits::select_on_container_copy_construction(
1210 __c.__node_alloc())))
1211{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001212#if _LIBCPP_DEBUG_LEVEL >= 2
1213 __get_db()->__insert_c(this);
1214#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001215 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i)
1216 push_back(*__i);
1217}
1218
1219template <class _Tp, class _Alloc>
1220list<_Tp, _Alloc>::list(const list& __c, const allocator_type& __a)
1221 : base(__a)
1222{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001223#if _LIBCPP_DEBUG_LEVEL >= 2
1224 __get_db()->__insert_c(this);
1225#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001226 for (const_iterator __i = __c.begin(), __e = __c.end(); __i != __e; ++__i)
1227 push_back(*__i);
1228}
1229
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001230#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant54976f22011-08-12 21:56:02 +00001231
Howard Hinnant3e519522010-05-11 19:42:16 +00001232template <class _Tp, class _Alloc>
1233list<_Tp, _Alloc>::list(initializer_list<value_type> __il, const allocator_type& __a)
1234 : base(__a)
1235{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001236#if _LIBCPP_DEBUG_LEVEL >= 2
1237 __get_db()->__insert_c(this);
1238#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001239 for (typename initializer_list<value_type>::const_iterator __i = __il.begin(),
1240 __e = __il.end(); __i != __e; ++__i)
1241 push_back(*__i);
1242}
1243
1244template <class _Tp, class _Alloc>
1245list<_Tp, _Alloc>::list(initializer_list<value_type> __il)
1246{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001247#if _LIBCPP_DEBUG_LEVEL >= 2
1248 __get_db()->__insert_c(this);
1249#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001250 for (typename initializer_list<value_type>::const_iterator __i = __il.begin(),
1251 __e = __il.end(); __i != __e; ++__i)
1252 push_back(*__i);
1253}
1254
Howard Hinnant3e519522010-05-11 19:42:16 +00001255template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001256inline
Howard Hinnant3e519522010-05-11 19:42:16 +00001257list<_Tp, _Alloc>::list(list&& __c)
Howard Hinnant45900102011-06-03 17:30:28 +00001258 _NOEXCEPT_(is_nothrow_move_constructible<__node_allocator>::value)
Howard Hinnantce48a112011-06-30 21:18:19 +00001259 : base(allocator_type(_VSTD::move(__c.__node_alloc())))
Howard Hinnant3e519522010-05-11 19:42:16 +00001260{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001261#if _LIBCPP_DEBUG_LEVEL >= 2
1262 __get_db()->__insert_c(this);
1263#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001264 splice(end(), __c);
1265}
1266
1267template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001268inline
Howard Hinnant3e519522010-05-11 19:42:16 +00001269list<_Tp, _Alloc>::list(list&& __c, const allocator_type& __a)
1270 : base(__a)
1271{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001272#if _LIBCPP_DEBUG_LEVEL >= 2
1273 __get_db()->__insert_c(this);
1274#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001275 if (__a == __c.get_allocator())
1276 splice(end(), __c);
1277 else
1278 {
Howard Hinnantc003db12011-11-29 18:15:50 +00001279 typedef move_iterator<iterator> _Ip;
1280 assign(_Ip(__c.begin()), _Ip(__c.end()));
Howard Hinnant3e519522010-05-11 19:42:16 +00001281 }
1282}
1283
1284template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001285inline
Howard Hinnant3e519522010-05-11 19:42:16 +00001286list<_Tp, _Alloc>&
1287list<_Tp, _Alloc>::operator=(list&& __c)
Howard Hinnant45900102011-06-03 17:30:28 +00001288 _NOEXCEPT_(
1289 __node_alloc_traits::propagate_on_container_move_assignment::value &&
1290 is_nothrow_move_assignable<__node_allocator>::value)
Howard Hinnant3e519522010-05-11 19:42:16 +00001291{
1292 __move_assign(__c, integral_constant<bool,
1293 __node_alloc_traits::propagate_on_container_move_assignment::value>());
1294 return *this;
1295}
1296
1297template <class _Tp, class _Alloc>
1298void
1299list<_Tp, _Alloc>::__move_assign(list& __c, false_type)
1300{
1301 if (base::__node_alloc() != __c.__node_alloc())
1302 {
Howard Hinnantc003db12011-11-29 18:15:50 +00001303 typedef move_iterator<iterator> _Ip;
1304 assign(_Ip(__c.begin()), _Ip(__c.end()));
Howard Hinnant3e519522010-05-11 19:42:16 +00001305 }
1306 else
1307 __move_assign(__c, true_type());
1308}
1309
1310template <class _Tp, class _Alloc>
1311void
1312list<_Tp, _Alloc>::__move_assign(list& __c, true_type)
Howard Hinnant45900102011-06-03 17:30:28 +00001313 _NOEXCEPT_(is_nothrow_move_assignable<__node_allocator>::value)
Howard Hinnant3e519522010-05-11 19:42:16 +00001314{
1315 clear();
1316 base::__move_assign_alloc(__c);
1317 splice(end(), __c);
1318}
1319
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001320#endif // _LIBCPP_CXX03_LANG
1321
1322template <class _Tp, class _Alloc>
1323inline
1324list<_Tp, _Alloc>&
1325list<_Tp, _Alloc>::operator=(const list& __c)
1326{
1327 if (this != &__c)
1328 {
1329 base::__copy_assign_alloc(__c);
1330 assign(__c.begin(), __c.end());
1331 }
1332 return *this;
1333}
Howard Hinnant3e519522010-05-11 19:42:16 +00001334
1335template <class _Tp, class _Alloc>
1336template <class _InpIter>
1337void
1338list<_Tp, _Alloc>::assign(_InpIter __f, _InpIter __l,
1339 typename enable_if<__is_input_iterator<_InpIter>::value>::type*)
1340{
1341 iterator __i = begin();
1342 iterator __e = end();
1343 for (; __f != __l && __i != __e; ++__f, ++__i)
1344 *__i = *__f;
1345 if (__i == __e)
1346 insert(__e, __f, __l);
1347 else
1348 erase(__i, __e);
Eric Fiselier2e519572016-12-28 06:06:09 +00001349#if _LIBCPP_DEBUG_LEVEL >= 2
1350 __get_db()->__invalidate_all(this);
1351#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001352}
1353
1354template <class _Tp, class _Alloc>
1355void
1356list<_Tp, _Alloc>::assign(size_type __n, const value_type& __x)
1357{
1358 iterator __i = begin();
1359 iterator __e = end();
1360 for (; __n > 0 && __i != __e; --__n, ++__i)
1361 *__i = __x;
1362 if (__i == __e)
1363 insert(__e, __n, __x);
1364 else
1365 erase(__i, __e);
Eric Fiselier2e519572016-12-28 06:06:09 +00001366#if _LIBCPP_DEBUG_LEVEL >= 2
1367 __get_db()->__invalidate_all(this);
1368#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001369}
1370
1371template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00001372inline
Howard Hinnant3e519522010-05-11 19:42:16 +00001373_Alloc
Howard Hinnant45900102011-06-03 17:30:28 +00001374list<_Tp, _Alloc>::get_allocator() const _NOEXCEPT
Howard Hinnant3e519522010-05-11 19:42:16 +00001375{
1376 return allocator_type(base::__node_alloc());
1377}
1378
1379template <class _Tp, class _Alloc>
1380typename list<_Tp, _Alloc>::iterator
1381list<_Tp, _Alloc>::insert(const_iterator __p, const value_type& __x)
1382{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001383#if _LIBCPP_DEBUG_LEVEL >= 2
1384 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1385 "list::insert(iterator, x) called with an iterator not"
1386 " referring to this list");
1387#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001388 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001389 typedef __allocator_destructor<__node_allocator> _Dp;
1390 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001391 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001392 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001393 __link_nodes(__p.__ptr_, __hold->__as_link(), __hold->__as_link());
Howard Hinnant3e519522010-05-11 19:42:16 +00001394 ++base::__sz();
Howard Hinnantb0e4c9d2013-04-05 00:18:49 +00001395#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001396 return iterator(__hold.release()->__as_link(), this);
Howard Hinnantb0e4c9d2013-04-05 00:18:49 +00001397#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001398 return iterator(__hold.release()->__as_link());
Howard Hinnantb0e4c9d2013-04-05 00:18:49 +00001399#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001400}
1401
1402template <class _Tp, class _Alloc>
1403typename list<_Tp, _Alloc>::iterator
1404list<_Tp, _Alloc>::insert(const_iterator __p, size_type __n, const value_type& __x)
1405{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001406#if _LIBCPP_DEBUG_LEVEL >= 2
1407 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1408 "list::insert(iterator, n, x) called with an iterator not"
1409 " referring to this list");
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001410 iterator __r(__p.__ptr_, this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001411#else
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001412 iterator __r(__p.__ptr_);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001413#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001414 if (__n > 0)
1415 {
1416 size_type __ds = 0;
1417 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001418 typedef __allocator_destructor<__node_allocator> _Dp;
1419 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001420 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001421 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Howard Hinnant3e519522010-05-11 19:42:16 +00001422 ++__ds;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001423#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001424 __r = iterator(__hold->__as_link(), this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001425#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001426 __r = iterator(__hold->__as_link());
Howard Hinnant920b56c2011-09-27 23:55:03 +00001427#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001428 __hold.release();
1429 iterator __e = __r;
1430#ifndef _LIBCPP_NO_EXCEPTIONS
1431 try
1432 {
Howard Hinnantb3371f62010-08-22 00:02:43 +00001433#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant3e519522010-05-11 19:42:16 +00001434 for (--__n; __n != 0; --__n, ++__e, ++__ds)
1435 {
1436 __hold.reset(__node_alloc_traits::allocate(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001437 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001438 __e.__ptr_->__next_ = __hold->__as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +00001439 __hold->__prev_ = __e.__ptr_;
1440 __hold.release();
1441 }
1442#ifndef _LIBCPP_NO_EXCEPTIONS
1443 }
1444 catch (...)
1445 {
1446 while (true)
1447 {
Howard Hinnantce48a112011-06-30 21:18:19 +00001448 __node_alloc_traits::destroy(__na, _VSTD::addressof(*__e));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001449 __link_pointer __prev = __e.__ptr_->__prev_;
1450 __node_alloc_traits::deallocate(__na, __e.__ptr_->__as_node(), 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001451 if (__prev == 0)
1452 break;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001453#if _LIBCPP_DEBUG_LEVEL >= 2
1454 __e = iterator(__prev, this);
1455#else
Howard Hinnant3e519522010-05-11 19:42:16 +00001456 __e = iterator(__prev);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001457#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001458 }
1459 throw;
1460 }
Howard Hinnantb3371f62010-08-22 00:02:43 +00001461#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001462 __link_nodes(__p.__ptr_, __r.__ptr_, __e.__ptr_);
Howard Hinnant3e519522010-05-11 19:42:16 +00001463 base::__sz() += __ds;
1464 }
1465 return __r;
1466}
1467
1468template <class _Tp, class _Alloc>
1469template <class _InpIter>
1470typename list<_Tp, _Alloc>::iterator
1471list<_Tp, _Alloc>::insert(const_iterator __p, _InpIter __f, _InpIter __l,
1472 typename enable_if<__is_input_iterator<_InpIter>::value>::type*)
1473{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001474#if _LIBCPP_DEBUG_LEVEL >= 2
1475 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1476 "list::insert(iterator, range) called with an iterator not"
1477 " referring to this list");
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001478 iterator __r(__p.__ptr_, this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001479#else
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001480 iterator __r(__p.__ptr_);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001481#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001482 if (__f != __l)
1483 {
1484 size_type __ds = 0;
1485 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001486 typedef __allocator_destructor<__node_allocator> _Dp;
1487 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001488 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001489 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), *__f);
Howard Hinnant3e519522010-05-11 19:42:16 +00001490 ++__ds;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001491#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001492 __r = iterator(__hold.get()->__as_link(), this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001493#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001494 __r = iterator(__hold.get()->__as_link());
Howard Hinnant920b56c2011-09-27 23:55:03 +00001495#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001496 __hold.release();
1497 iterator __e = __r;
1498#ifndef _LIBCPP_NO_EXCEPTIONS
1499 try
1500 {
Howard Hinnantb3371f62010-08-22 00:02:43 +00001501#endif // _LIBCPP_NO_EXCEPTIONS
Eric Fiselier61bff612015-03-19 03:20:02 +00001502 for (++__f; __f != __l; ++__f, (void) ++__e, (void) ++__ds)
Howard Hinnant3e519522010-05-11 19:42:16 +00001503 {
1504 __hold.reset(__node_alloc_traits::allocate(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001505 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), *__f);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001506 __e.__ptr_->__next_ = __hold.get()->__as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +00001507 __hold->__prev_ = __e.__ptr_;
1508 __hold.release();
1509 }
1510#ifndef _LIBCPP_NO_EXCEPTIONS
1511 }
1512 catch (...)
1513 {
1514 while (true)
1515 {
Howard Hinnantce48a112011-06-30 21:18:19 +00001516 __node_alloc_traits::destroy(__na, _VSTD::addressof(*__e));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001517 __link_pointer __prev = __e.__ptr_->__prev_;
1518 __node_alloc_traits::deallocate(__na, __e.__ptr_->__as_node(), 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001519 if (__prev == 0)
1520 break;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001521#if _LIBCPP_DEBUG_LEVEL >= 2
1522 __e = iterator(__prev, this);
1523#else
Howard Hinnant3e519522010-05-11 19:42:16 +00001524 __e = iterator(__prev);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001525#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001526 }
1527 throw;
1528 }
Howard Hinnantb3371f62010-08-22 00:02:43 +00001529#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001530 __link_nodes(__p.__ptr_, __r.__ptr_, __e.__ptr_);
Howard Hinnant3e519522010-05-11 19:42:16 +00001531 base::__sz() += __ds;
1532 }
1533 return __r;
1534}
1535
1536template <class _Tp, class _Alloc>
1537void
1538list<_Tp, _Alloc>::push_front(const value_type& __x)
1539{
1540 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001541 typedef __allocator_destructor<__node_allocator> _Dp;
1542 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001543 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001544 __link_pointer __nl = __hold->__as_link();
1545 __link_nodes_at_front(__nl, __nl);
Howard Hinnant3e519522010-05-11 19:42:16 +00001546 ++base::__sz();
1547 __hold.release();
1548}
1549
1550template <class _Tp, class _Alloc>
1551void
1552list<_Tp, _Alloc>::push_back(const value_type& __x)
1553{
1554 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001555 typedef __allocator_destructor<__node_allocator> _Dp;
1556 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001557 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001558 __link_nodes_at_back(__hold.get()->__as_link(), __hold.get()->__as_link());
Howard Hinnant3e519522010-05-11 19:42:16 +00001559 ++base::__sz();
1560 __hold.release();
1561}
1562
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001563#ifndef _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +00001564
1565template <class _Tp, class _Alloc>
1566void
1567list<_Tp, _Alloc>::push_front(value_type&& __x)
1568{
1569 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001570 typedef __allocator_destructor<__node_allocator> _Dp;
1571 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001572 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), _VSTD::move(__x));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001573 __link_nodes_at_front(__hold.get()->__as_link(), __hold.get()->__as_link());
Howard Hinnant3e519522010-05-11 19:42:16 +00001574 ++base::__sz();
1575 __hold.release();
1576}
1577
1578template <class _Tp, class _Alloc>
1579void
1580list<_Tp, _Alloc>::push_back(value_type&& __x)
1581{
1582 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001583 typedef __allocator_destructor<__node_allocator> _Dp;
1584 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001585 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), _VSTD::move(__x));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001586 __link_nodes_at_back(__hold.get()->__as_link(), __hold.get()->__as_link());
Howard Hinnant3e519522010-05-11 19:42:16 +00001587 ++base::__sz();
1588 __hold.release();
1589}
1590
1591template <class _Tp, class _Alloc>
1592template <class... _Args>
Marshall Clow63b560b2017-01-24 23:09:12 +00001593#if _LIBCPP_STD_VER > 14
Eric Fiselier0e411642016-07-21 03:20:17 +00001594typename list<_Tp, _Alloc>::reference
Marshall Clow63b560b2017-01-24 23:09:12 +00001595#else
1596void
1597#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001598list<_Tp, _Alloc>::emplace_front(_Args&&... __args)
1599{
1600 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001601 typedef __allocator_destructor<__node_allocator> _Dp;
1602 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001603 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), _VSTD::forward<_Args>(__args)...);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001604 __link_nodes_at_front(__hold.get()->__as_link(), __hold.get()->__as_link());
Howard Hinnant3e519522010-05-11 19:42:16 +00001605 ++base::__sz();
Marshall Clow63b560b2017-01-24 23:09:12 +00001606#if _LIBCPP_STD_VER > 14
Eric Fiselier0e411642016-07-21 03:20:17 +00001607 return __hold.release()->__value_;
Marshall Clow63b560b2017-01-24 23:09:12 +00001608#else
1609 __hold.release();
1610#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001611}
1612
1613template <class _Tp, class _Alloc>
1614template <class... _Args>
Marshall Clow63b560b2017-01-24 23:09:12 +00001615#if _LIBCPP_STD_VER > 14
Eric Fiselier0e411642016-07-21 03:20:17 +00001616typename list<_Tp, _Alloc>::reference
Marshall Clow63b560b2017-01-24 23:09:12 +00001617#else
1618void
1619#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001620list<_Tp, _Alloc>::emplace_back(_Args&&... __args)
1621{
1622 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001623 typedef __allocator_destructor<__node_allocator> _Dp;
1624 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001625 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), _VSTD::forward<_Args>(__args)...);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001626 __link_pointer __nl = __hold->__as_link();
1627 __link_nodes_at_back(__nl, __nl);
Howard Hinnant3e519522010-05-11 19:42:16 +00001628 ++base::__sz();
Marshall Clow63b560b2017-01-24 23:09:12 +00001629#if _LIBCPP_STD_VER > 14
Eric Fiselier0e411642016-07-21 03:20:17 +00001630 return __hold.release()->__value_;
Marshall Clow63b560b2017-01-24 23:09:12 +00001631#else
1632 __hold.release();
1633#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001634}
1635
1636template <class _Tp, class _Alloc>
1637template <class... _Args>
1638typename list<_Tp, _Alloc>::iterator
1639list<_Tp, _Alloc>::emplace(const_iterator __p, _Args&&... __args)
1640{
Howard Hinnantb0e4c9d2013-04-05 00:18:49 +00001641#if _LIBCPP_DEBUG_LEVEL >= 2
1642 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1643 "list::emplace(iterator, args...) called with an iterator not"
1644 " referring to this list");
1645#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001646 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001647 typedef __allocator_destructor<__node_allocator> _Dp;
1648 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001649 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001650 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), _VSTD::forward<_Args>(__args)...);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001651 __link_pointer __nl = __hold.get()->__as_link();
1652 __link_nodes(__p.__ptr_, __nl, __nl);
Howard Hinnant3e519522010-05-11 19:42:16 +00001653 ++base::__sz();
Eric Fiselierb88ea352015-12-30 20:57:59 +00001654 __hold.release();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001655#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001656 return iterator(__nl, this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001657#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001658 return iterator(__nl);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001659#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001660}
1661
1662template <class _Tp, class _Alloc>
1663typename list<_Tp, _Alloc>::iterator
1664list<_Tp, _Alloc>::insert(const_iterator __p, value_type&& __x)
1665{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001666#if _LIBCPP_DEBUG_LEVEL >= 2
1667 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1668 "list::insert(iterator, x) called with an iterator not"
1669 " referring to this list");
1670#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001671 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001672 typedef __allocator_destructor<__node_allocator> _Dp;
1673 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001674 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001675 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), _VSTD::move(__x));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001676 __link_pointer __nl = __hold->__as_link();
1677 __link_nodes(__p.__ptr_, __nl, __nl);
Howard Hinnant3e519522010-05-11 19:42:16 +00001678 ++base::__sz();
Eric Fiselierb88ea352015-12-30 20:57:59 +00001679 __hold.release();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001680#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001681 return iterator(__nl, this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001682#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001683 return iterator(__nl);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001684#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001685}
1686
Eric Fiseliercf9ed002017-04-16 03:45:35 +00001687#endif // _LIBCPP_CXX03_LANG
Howard Hinnant3e519522010-05-11 19:42:16 +00001688
1689template <class _Tp, class _Alloc>
1690void
1691list<_Tp, _Alloc>::pop_front()
1692{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001693 _LIBCPP_ASSERT(!empty(), "list::pop_front() called with empty list");
Howard Hinnant3e519522010-05-11 19:42:16 +00001694 __node_allocator& __na = base::__node_alloc();
Eric Fiselierb88ea352015-12-30 20:57:59 +00001695 __link_pointer __n = base::__end_.__next_;
Howard Hinnant3e519522010-05-11 19:42:16 +00001696 base::__unlink_nodes(__n, __n);
1697 --base::__sz();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001698#if _LIBCPP_DEBUG_LEVEL >= 2
1699 __c_node* __c = __get_db()->__find_c_and_lock(this);
1700 for (__i_node** __p = __c->end_; __p != __c->beg_; )
1701 {
1702 --__p;
1703 iterator* __i = static_cast<iterator*>((*__p)->__i_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001704 if (__i->__ptr_ == __n)
Howard Hinnant920b56c2011-09-27 23:55:03 +00001705 {
1706 (*__p)->__c_ = nullptr;
1707 if (--__c->end_ != __p)
1708 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
1709 }
1710 }
1711 __get_db()->unlock();
1712#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +00001713 __node_pointer __np = __n->__as_node();
1714 __node_alloc_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1715 __node_alloc_traits::deallocate(__na, __np, 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001716}
1717
1718template <class _Tp, class _Alloc>
1719void
1720list<_Tp, _Alloc>::pop_back()
1721{
Dmitri Gribenkoc3f9c802013-06-24 06:15:57 +00001722 _LIBCPP_ASSERT(!empty(), "list::pop_back() called with empty list");
Howard Hinnant3e519522010-05-11 19:42:16 +00001723 __node_allocator& __na = base::__node_alloc();
Eric Fiselierb88ea352015-12-30 20:57:59 +00001724 __link_pointer __n = base::__end_.__prev_;
Howard Hinnant3e519522010-05-11 19:42:16 +00001725 base::__unlink_nodes(__n, __n);
1726 --base::__sz();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001727#if _LIBCPP_DEBUG_LEVEL >= 2
1728 __c_node* __c = __get_db()->__find_c_and_lock(this);
1729 for (__i_node** __p = __c->end_; __p != __c->beg_; )
1730 {
1731 --__p;
1732 iterator* __i = static_cast<iterator*>((*__p)->__i_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001733 if (__i->__ptr_ == __n)
Howard Hinnant920b56c2011-09-27 23:55:03 +00001734 {
1735 (*__p)->__c_ = nullptr;
1736 if (--__c->end_ != __p)
1737 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
1738 }
1739 }
1740 __get_db()->unlock();
1741#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +00001742 __node_pointer __np = __n->__as_node();
1743 __node_alloc_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1744 __node_alloc_traits::deallocate(__na, __np, 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001745}
1746
1747template <class _Tp, class _Alloc>
1748typename list<_Tp, _Alloc>::iterator
1749list<_Tp, _Alloc>::erase(const_iterator __p)
1750{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001751#if _LIBCPP_DEBUG_LEVEL >= 2
1752 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1753 "list::erase(iterator) called with an iterator not"
1754 " referring to this list");
1755#endif
Howard Hinnantb0e4c9d2013-04-05 00:18:49 +00001756 _LIBCPP_ASSERT(__p != end(),
1757 "list::erase(iterator) called with a non-dereferenceable iterator");
Howard Hinnant3e519522010-05-11 19:42:16 +00001758 __node_allocator& __na = base::__node_alloc();
Eric Fiselierb88ea352015-12-30 20:57:59 +00001759 __link_pointer __n = __p.__ptr_;
1760 __link_pointer __r = __n->__next_;
Howard Hinnant3e519522010-05-11 19:42:16 +00001761 base::__unlink_nodes(__n, __n);
1762 --base::__sz();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001763#if _LIBCPP_DEBUG_LEVEL >= 2
1764 __c_node* __c = __get_db()->__find_c_and_lock(this);
Eric Fiselier878e7e22016-10-23 19:26:39 +00001765 for (__i_node** __ip = __c->end_; __ip != __c->beg_; )
Howard Hinnant920b56c2011-09-27 23:55:03 +00001766 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00001767 --__ip;
1768 iterator* __i = static_cast<iterator*>((*__ip)->__i_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001769 if (__i->__ptr_ == __n)
Howard Hinnant920b56c2011-09-27 23:55:03 +00001770 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00001771 (*__ip)->__c_ = nullptr;
1772 if (--__c->end_ != __ip)
1773 memmove(__ip, __ip+1, (__c->end_ - __ip)*sizeof(__i_node*));
Howard Hinnant920b56c2011-09-27 23:55:03 +00001774 }
1775 }
1776 __get_db()->unlock();
1777#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +00001778 __node_pointer __np = __n->__as_node();
1779 __node_alloc_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1780 __node_alloc_traits::deallocate(__na, __np, 1);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001781#if _LIBCPP_DEBUG_LEVEL >= 2
1782 return iterator(__r, this);
1783#else
Howard Hinnant3e519522010-05-11 19:42:16 +00001784 return iterator(__r);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001785#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001786}
1787
1788template <class _Tp, class _Alloc>
1789typename list<_Tp, _Alloc>::iterator
1790list<_Tp, _Alloc>::erase(const_iterator __f, const_iterator __l)
1791{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001792#if _LIBCPP_DEBUG_LEVEL >= 2
1793 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__f) == this,
1794 "list::erase(iterator, iterator) called with an iterator not"
1795 " referring to this list");
Eric Fiselier2e519572016-12-28 06:06:09 +00001796 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__l) == this,
1797 "list::erase(iterator, iterator) called with an iterator not"
1798 " referring to this list");
Howard Hinnant920b56c2011-09-27 23:55:03 +00001799#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001800 if (__f != __l)
1801 {
1802 __node_allocator& __na = base::__node_alloc();
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001803 base::__unlink_nodes(__f.__ptr_, __l.__ptr_->__prev_);
Howard Hinnant3e519522010-05-11 19:42:16 +00001804 while (__f != __l)
1805 {
Eric Fiselierb88ea352015-12-30 20:57:59 +00001806 __link_pointer __n = __f.__ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +00001807 ++__f;
1808 --base::__sz();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001809#if _LIBCPP_DEBUG_LEVEL >= 2
1810 __c_node* __c = __get_db()->__find_c_and_lock(this);
1811 for (__i_node** __p = __c->end_; __p != __c->beg_; )
1812 {
1813 --__p;
1814 iterator* __i = static_cast<iterator*>((*__p)->__i_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001815 if (__i->__ptr_ == __n)
Howard Hinnant920b56c2011-09-27 23:55:03 +00001816 {
1817 (*__p)->__c_ = nullptr;
1818 if (--__c->end_ != __p)
1819 memmove(__p, __p+1, (__c->end_ - __p)*sizeof(__i_node*));
1820 }
1821 }
1822 __get_db()->unlock();
1823#endif
Eric Fiselierb88ea352015-12-30 20:57:59 +00001824 __node_pointer __np = __n->__as_node();
1825 __node_alloc_traits::destroy(__na, _VSTD::addressof(__np->__value_));
1826 __node_alloc_traits::deallocate(__na, __np, 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001827 }
1828 }
Howard Hinnant920b56c2011-09-27 23:55:03 +00001829#if _LIBCPP_DEBUG_LEVEL >= 2
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001830 return iterator(__l.__ptr_, this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001831#else
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001832 return iterator(__l.__ptr_);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001833#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001834}
1835
1836template <class _Tp, class _Alloc>
1837void
1838list<_Tp, _Alloc>::resize(size_type __n)
1839{
1840 if (__n < base::__sz())
1841 erase(__iterator(__n), end());
1842 else if (__n > base::__sz())
1843 {
1844 __n -= base::__sz();
1845 size_type __ds = 0;
1846 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001847 typedef __allocator_destructor<__node_allocator> _Dp;
1848 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001849 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001850 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_));
Howard Hinnant3e519522010-05-11 19:42:16 +00001851 ++__ds;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001852#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001853 iterator __r = iterator(__hold.release()->__as_link(), this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001854#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001855 iterator __r = iterator(__hold.release()->__as_link());
Howard Hinnant920b56c2011-09-27 23:55:03 +00001856#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001857 iterator __e = __r;
1858#ifndef _LIBCPP_NO_EXCEPTIONS
1859 try
1860 {
Howard Hinnantb3371f62010-08-22 00:02:43 +00001861#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant3e519522010-05-11 19:42:16 +00001862 for (--__n; __n != 0; --__n, ++__e, ++__ds)
1863 {
1864 __hold.reset(__node_alloc_traits::allocate(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001865 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001866 __e.__ptr_->__next_ = __hold.get()->__as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +00001867 __hold->__prev_ = __e.__ptr_;
1868 __hold.release();
1869 }
1870#ifndef _LIBCPP_NO_EXCEPTIONS
1871 }
1872 catch (...)
1873 {
1874 while (true)
1875 {
Howard Hinnantce48a112011-06-30 21:18:19 +00001876 __node_alloc_traits::destroy(__na, _VSTD::addressof(*__e));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001877 __link_pointer __prev = __e.__ptr_->__prev_;
1878 __node_alloc_traits::deallocate(__na, __e.__ptr_->__as_node(), 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001879 if (__prev == 0)
1880 break;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001881#if _LIBCPP_DEBUG_LEVEL >= 2
1882 __e = iterator(__prev, this);
1883#else
Howard Hinnant3e519522010-05-11 19:42:16 +00001884 __e = iterator(__prev);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001885#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001886 }
1887 throw;
1888 }
Howard Hinnantb3371f62010-08-22 00:02:43 +00001889#endif // _LIBCPP_NO_EXCEPTIONS
Marshall Clow28d65da2014-08-05 01:34:12 +00001890 __link_nodes_at_back(__r.__ptr_, __e.__ptr_);
Howard Hinnant3e519522010-05-11 19:42:16 +00001891 base::__sz() += __ds;
1892 }
1893}
1894
1895template <class _Tp, class _Alloc>
1896void
1897list<_Tp, _Alloc>::resize(size_type __n, const value_type& __x)
1898{
1899 if (__n < base::__sz())
1900 erase(__iterator(__n), end());
1901 else if (__n > base::__sz())
1902 {
1903 __n -= base::__sz();
1904 size_type __ds = 0;
1905 __node_allocator& __na = base::__node_alloc();
Howard Hinnantc003db12011-11-29 18:15:50 +00001906 typedef __allocator_destructor<__node_allocator> _Dp;
1907 unique_ptr<__node, _Dp> __hold(__node_alloc_traits::allocate(__na, 1), _Dp(__na, 1));
Howard Hinnant3e519522010-05-11 19:42:16 +00001908 __hold->__prev_ = 0;
Howard Hinnantce48a112011-06-30 21:18:19 +00001909 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Howard Hinnant3e519522010-05-11 19:42:16 +00001910 ++__ds;
Eric Fiselierb88ea352015-12-30 20:57:59 +00001911 __link_pointer __nl = __hold.release()->__as_link();
Howard Hinnant920b56c2011-09-27 23:55:03 +00001912#if _LIBCPP_DEBUG_LEVEL >= 2
Eric Fiselierb88ea352015-12-30 20:57:59 +00001913 iterator __r = iterator(__nl, this);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001914#else
Eric Fiselierb88ea352015-12-30 20:57:59 +00001915 iterator __r = iterator(__nl);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001916#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001917 iterator __e = __r;
1918#ifndef _LIBCPP_NO_EXCEPTIONS
1919 try
1920 {
Howard Hinnantb3371f62010-08-22 00:02:43 +00001921#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnant3e519522010-05-11 19:42:16 +00001922 for (--__n; __n != 0; --__n, ++__e, ++__ds)
1923 {
1924 __hold.reset(__node_alloc_traits::allocate(__na, 1));
Howard Hinnantce48a112011-06-30 21:18:19 +00001925 __node_alloc_traits::construct(__na, _VSTD::addressof(__hold->__value_), __x);
Eric Fiselierb88ea352015-12-30 20:57:59 +00001926 __e.__ptr_->__next_ = __hold.get()->__as_link();
Howard Hinnant3e519522010-05-11 19:42:16 +00001927 __hold->__prev_ = __e.__ptr_;
1928 __hold.release();
1929 }
1930#ifndef _LIBCPP_NO_EXCEPTIONS
1931 }
1932 catch (...)
1933 {
1934 while (true)
1935 {
Howard Hinnantce48a112011-06-30 21:18:19 +00001936 __node_alloc_traits::destroy(__na, _VSTD::addressof(*__e));
Eric Fiselierb88ea352015-12-30 20:57:59 +00001937 __link_pointer __prev = __e.__ptr_->__prev_;
1938 __node_alloc_traits::deallocate(__na, __e.__ptr_->__as_node(), 1);
Howard Hinnant3e519522010-05-11 19:42:16 +00001939 if (__prev == 0)
1940 break;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001941#if _LIBCPP_DEBUG_LEVEL >= 2
1942 __e = iterator(__prev, this);
1943#else
Howard Hinnant3e519522010-05-11 19:42:16 +00001944 __e = iterator(__prev);
Howard Hinnant920b56c2011-09-27 23:55:03 +00001945#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001946 }
1947 throw;
1948 }
Howard Hinnantb3371f62010-08-22 00:02:43 +00001949#endif // _LIBCPP_NO_EXCEPTIONS
Eric Fiselier5243e192016-01-04 03:27:52 +00001950 __link_nodes(base::__end_as_link(), __r.__ptr_, __e.__ptr_);
Howard Hinnant3e519522010-05-11 19:42:16 +00001951 base::__sz() += __ds;
Howard Hinnantb3371f62010-08-22 00:02:43 +00001952 }
Howard Hinnant3e519522010-05-11 19:42:16 +00001953}
1954
1955template <class _Tp, class _Alloc>
1956void
1957list<_Tp, _Alloc>::splice(const_iterator __p, list& __c)
1958{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001959 _LIBCPP_ASSERT(this != &__c,
1960 "list::splice(iterator, list) called with this == &list");
1961#if _LIBCPP_DEBUG_LEVEL >= 2
1962 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
1963 "list::splice(iterator, list) called with an iterator not"
1964 " referring to this list");
1965#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001966 if (!__c.empty())
1967 {
Eric Fiselierb88ea352015-12-30 20:57:59 +00001968 __link_pointer __f = __c.__end_.__next_;
1969 __link_pointer __l = __c.__end_.__prev_;
Howard Hinnant3e519522010-05-11 19:42:16 +00001970 base::__unlink_nodes(__f, __l);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00001971 __link_nodes(__p.__ptr_, __f, __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00001972 base::__sz() += __c.__sz();
1973 __c.__sz() = 0;
Howard Hinnant920b56c2011-09-27 23:55:03 +00001974#if _LIBCPP_DEBUG_LEVEL >= 2
1975 __libcpp_db* __db = __get_db();
1976 __c_node* __cn1 = __db->__find_c_and_lock(this);
1977 __c_node* __cn2 = __db->__find_c(&__c);
Eric Fiselier878e7e22016-10-23 19:26:39 +00001978 for (__i_node** __ip = __cn2->end_; __ip != __cn2->beg_;)
Howard Hinnant920b56c2011-09-27 23:55:03 +00001979 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00001980 --__ip;
1981 iterator* __i = static_cast<iterator*>((*__ip)->__i_);
Eric Fiselier5243e192016-01-04 03:27:52 +00001982 if (__i->__ptr_ != __c.__end_as_link())
Howard Hinnant920b56c2011-09-27 23:55:03 +00001983 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00001984 __cn1->__add(*__ip);
1985 (*__ip)->__c_ = __cn1;
1986 if (--__cn2->end_ != __ip)
1987 memmove(__ip, __ip+1, (__cn2->end_ - __ip)*sizeof(__i_node*));
Howard Hinnant920b56c2011-09-27 23:55:03 +00001988 }
1989 }
1990 __db->unlock();
1991#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00001992 }
1993}
1994
1995template <class _Tp, class _Alloc>
1996void
1997list<_Tp, _Alloc>::splice(const_iterator __p, list& __c, const_iterator __i)
1998{
Howard Hinnant920b56c2011-09-27 23:55:03 +00001999#if _LIBCPP_DEBUG_LEVEL >= 2
2000 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
2001 "list::splice(iterator, list, iterator) called with first iterator not"
2002 " referring to this list");
2003 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__i) == &__c,
2004 "list::splice(iterator, list, iterator) called with second iterator not"
2005 " referring to list argument");
2006 _LIBCPP_ASSERT(__get_const_db()->__dereferenceable(&__i),
2007 "list::splice(iterator, list, iterator) called with second iterator not"
2008 " derefereceable");
2009#endif
2010 if (__p.__ptr_ != __i.__ptr_ && __p.__ptr_ != __i.__ptr_->__next_)
Howard Hinnant3e519522010-05-11 19:42:16 +00002011 {
Eric Fiselierb88ea352015-12-30 20:57:59 +00002012 __link_pointer __f = __i.__ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002013 base::__unlink_nodes(__f, __f);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002014 __link_nodes(__p.__ptr_, __f, __f);
Howard Hinnant3e519522010-05-11 19:42:16 +00002015 --__c.__sz();
2016 ++base::__sz();
Howard Hinnant920b56c2011-09-27 23:55:03 +00002017#if _LIBCPP_DEBUG_LEVEL >= 2
2018 __libcpp_db* __db = __get_db();
2019 __c_node* __cn1 = __db->__find_c_and_lock(this);
2020 __c_node* __cn2 = __db->__find_c(&__c);
Eric Fiselier878e7e22016-10-23 19:26:39 +00002021 for (__i_node** __ip = __cn2->end_; __ip != __cn2->beg_;)
Howard Hinnant920b56c2011-09-27 23:55:03 +00002022 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00002023 --__ip;
2024 iterator* __j = static_cast<iterator*>((*__ip)->__i_);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002025 if (__j->__ptr_ == __f)
Howard Hinnant920b56c2011-09-27 23:55:03 +00002026 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00002027 __cn1->__add(*__ip);
2028 (*__ip)->__c_ = __cn1;
2029 if (--__cn2->end_ != __ip)
2030 memmove(__ip, __ip+1, (__cn2->end_ - __ip)*sizeof(__i_node*));
Howard Hinnant920b56c2011-09-27 23:55:03 +00002031 }
2032 }
2033 __db->unlock();
2034#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00002035 }
2036}
2037
2038template <class _Tp, class _Alloc>
2039void
2040list<_Tp, _Alloc>::splice(const_iterator __p, list& __c, const_iterator __f, const_iterator __l)
2041{
Howard Hinnant920b56c2011-09-27 23:55:03 +00002042#if _LIBCPP_DEBUG_LEVEL >= 2
2043 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__p) == this,
2044 "list::splice(iterator, list, iterator, iterator) called with first iterator not"
2045 " referring to this list");
2046 _LIBCPP_ASSERT(__get_const_db()->__find_c_from_i(&__f) == &__c,
2047 "list::splice(iterator, list, iterator, iterator) called with second iterator not"
2048 " referring to list argument");
2049 if (this == &__c)
2050 {
2051 for (const_iterator __i = __f; __i != __l; ++__i)
2052 _LIBCPP_ASSERT(__i != __p,
2053 "list::splice(iterator, list, iterator, iterator)"
2054 " called with the first iterator within the range"
2055 " of the second and third iterators");
2056 }
2057#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00002058 if (__f != __l)
2059 {
2060 if (this != &__c)
2061 {
Howard Hinnantce48a112011-06-30 21:18:19 +00002062 size_type __s = _VSTD::distance(__f, __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00002063 __c.__sz() -= __s;
2064 base::__sz() += __s;
2065 }
Eric Fiselierb88ea352015-12-30 20:57:59 +00002066 __link_pointer __first = __f.__ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002067 --__l;
Eric Fiselierb88ea352015-12-30 20:57:59 +00002068 __link_pointer __last = __l.__ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002069 base::__unlink_nodes(__first, __last);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002070 __link_nodes(__p.__ptr_, __first, __last);
Howard Hinnant920b56c2011-09-27 23:55:03 +00002071#if _LIBCPP_DEBUG_LEVEL >= 2
2072 __libcpp_db* __db = __get_db();
2073 __c_node* __cn1 = __db->__find_c_and_lock(this);
2074 __c_node* __cn2 = __db->__find_c(&__c);
Eric Fiselier878e7e22016-10-23 19:26:39 +00002075 for (__i_node** __ip = __cn2->end_; __ip != __cn2->beg_;)
Howard Hinnant920b56c2011-09-27 23:55:03 +00002076 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00002077 --__ip;
2078 iterator* __j = static_cast<iterator*>((*__ip)->__i_);
Eric Fiselierb88ea352015-12-30 20:57:59 +00002079 for (__link_pointer __k = __f.__ptr_;
Howard Hinnant920b56c2011-09-27 23:55:03 +00002080 __k != __l.__ptr_; __k = __k->__next_)
2081 {
2082 if (__j->__ptr_ == __k)
2083 {
Eric Fiselier878e7e22016-10-23 19:26:39 +00002084 __cn1->__add(*__ip);
2085 (*__ip)->__c_ = __cn1;
2086 if (--__cn2->end_ != __ip)
2087 memmove(__ip, __ip+1, (__cn2->end_ - __ip)*sizeof(__i_node*));
Howard Hinnant920b56c2011-09-27 23:55:03 +00002088 }
2089 }
2090 }
2091 __db->unlock();
2092#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00002093 }
2094}
2095
2096template <class _Tp, class _Alloc>
2097void
2098list<_Tp, _Alloc>::remove(const value_type& __x)
2099{
Eric Fiselier5cac7752016-12-14 22:48:38 +00002100 list<_Tp, _Alloc> __deleted_nodes(get_allocator()); // collect the nodes we're removing
Marshall Clowced70062014-08-08 15:35:52 +00002101 for (const_iterator __i = begin(), __e = end(); __i != __e;)
Howard Hinnant3e519522010-05-11 19:42:16 +00002102 {
2103 if (*__i == __x)
2104 {
Marshall Clowced70062014-08-08 15:35:52 +00002105 const_iterator __j = _VSTD::next(__i);
Howard Hinnant3e519522010-05-11 19:42:16 +00002106 for (; __j != __e && *__j == __x; ++__j)
2107 ;
Marshall Clowced70062014-08-08 15:35:52 +00002108 __deleted_nodes.splice(__deleted_nodes.end(), *this, __i, __j);
2109 __i = __j;
Marshall Clow90ba05332014-08-04 17:32:25 +00002110 if (__i != __e)
Marshall Clow28d65da2014-08-05 01:34:12 +00002111 ++__i;
Howard Hinnant3e519522010-05-11 19:42:16 +00002112 }
2113 else
2114 ++__i;
2115 }
2116}
2117
2118template <class _Tp, class _Alloc>
2119template <class _Pred>
2120void
2121list<_Tp, _Alloc>::remove_if(_Pred __pred)
2122{
2123 for (iterator __i = begin(), __e = end(); __i != __e;)
2124 {
2125 if (__pred(*__i))
2126 {
Howard Hinnantce48a112011-06-30 21:18:19 +00002127 iterator __j = _VSTD::next(__i);
Howard Hinnant3e519522010-05-11 19:42:16 +00002128 for (; __j != __e && __pred(*__j); ++__j)
2129 ;
2130 __i = erase(__i, __j);
Marshall Clow90ba05332014-08-04 17:32:25 +00002131 if (__i != __e)
Marshall Clow28d65da2014-08-05 01:34:12 +00002132 ++__i;
Howard Hinnant3e519522010-05-11 19:42:16 +00002133 }
2134 else
2135 ++__i;
2136 }
2137}
2138
2139template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00002140inline
Howard Hinnant3e519522010-05-11 19:42:16 +00002141void
2142list<_Tp, _Alloc>::unique()
2143{
2144 unique(__equal_to<value_type>());
2145}
2146
2147template <class _Tp, class _Alloc>
2148template <class _BinaryPred>
2149void
2150list<_Tp, _Alloc>::unique(_BinaryPred __binary_pred)
2151{
2152 for (iterator __i = begin(), __e = end(); __i != __e;)
2153 {
Howard Hinnantce48a112011-06-30 21:18:19 +00002154 iterator __j = _VSTD::next(__i);
Howard Hinnant3e519522010-05-11 19:42:16 +00002155 for (; __j != __e && __binary_pred(*__i, *__j); ++__j)
2156 ;
2157 if (++__i != __j)
2158 __i = erase(__i, __j);
2159 }
2160}
2161
2162template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00002163inline
Howard Hinnant3e519522010-05-11 19:42:16 +00002164void
2165list<_Tp, _Alloc>::merge(list& __c)
2166{
2167 merge(__c, __less<value_type>());
2168}
2169
2170template <class _Tp, class _Alloc>
2171template <class _Comp>
2172void
2173list<_Tp, _Alloc>::merge(list& __c, _Comp __comp)
2174{
2175 if (this != &__c)
2176 {
2177 iterator __f1 = begin();
2178 iterator __e1 = end();
2179 iterator __f2 = __c.begin();
2180 iterator __e2 = __c.end();
2181 while (__f1 != __e1 && __f2 != __e2)
2182 {
2183 if (__comp(*__f2, *__f1))
2184 {
2185 size_type __ds = 1;
Howard Hinnantce48a112011-06-30 21:18:19 +00002186 iterator __m2 = _VSTD::next(__f2);
Howard Hinnant3e519522010-05-11 19:42:16 +00002187 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2, ++__ds)
2188 ;
2189 base::__sz() += __ds;
2190 __c.__sz() -= __ds;
Eric Fiselierb88ea352015-12-30 20:57:59 +00002191 __link_pointer __f = __f2.__ptr_;
2192 __link_pointer __l = __m2.__ptr_->__prev_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002193 __f2 = __m2;
2194 base::__unlink_nodes(__f, __l);
Howard Hinnantce48a112011-06-30 21:18:19 +00002195 __m2 = _VSTD::next(__f1);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002196 __link_nodes(__f1.__ptr_, __f, __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00002197 __f1 = __m2;
2198 }
2199 else
2200 ++__f1;
2201 }
2202 splice(__e1, __c);
Howard Hinnant920b56c2011-09-27 23:55:03 +00002203#if _LIBCPP_DEBUG_LEVEL >= 2
2204 __libcpp_db* __db = __get_db();
2205 __c_node* __cn1 = __db->__find_c_and_lock(this);
2206 __c_node* __cn2 = __db->__find_c(&__c);
2207 for (__i_node** __p = __cn2->end_; __p != __cn2->beg_;)
2208 {
2209 --__p;
2210 iterator* __i = static_cast<iterator*>((*__p)->__i_);
Eric Fiselier5243e192016-01-04 03:27:52 +00002211 if (__i->__ptr_ != __c.__end_as_link())
Howard Hinnant920b56c2011-09-27 23:55:03 +00002212 {
2213 __cn1->__add(*__p);
2214 (*__p)->__c_ = __cn1;
2215 if (--__cn2->end_ != __p)
2216 memmove(__p, __p+1, (__cn2->end_ - __p)*sizeof(__i_node*));
2217 }
2218 }
2219 __db->unlock();
2220#endif
Howard Hinnant3e519522010-05-11 19:42:16 +00002221 }
2222}
2223
2224template <class _Tp, class _Alloc>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00002225inline
Howard Hinnant3e519522010-05-11 19:42:16 +00002226void
2227list<_Tp, _Alloc>::sort()
2228{
2229 sort(__less<value_type>());
2230}
2231
2232template <class _Tp, class _Alloc>
2233template <class _Comp>
Evgeniy Stepanovcd31b432016-04-22 01:04:55 +00002234inline
Howard Hinnant3e519522010-05-11 19:42:16 +00002235void
2236list<_Tp, _Alloc>::sort(_Comp __comp)
2237{
2238 __sort(begin(), end(), base::__sz(), __comp);
2239}
2240
2241template <class _Tp, class _Alloc>
2242template <class _Comp>
Howard Hinnant3e519522010-05-11 19:42:16 +00002243typename list<_Tp, _Alloc>::iterator
2244list<_Tp, _Alloc>::__sort(iterator __f1, iterator __e2, size_type __n, _Comp& __comp)
2245{
2246 switch (__n)
2247 {
2248 case 0:
2249 case 1:
2250 return __f1;
2251 case 2:
2252 if (__comp(*--__e2, *__f1))
2253 {
Eric Fiselierb88ea352015-12-30 20:57:59 +00002254 __link_pointer __f = __e2.__ptr_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002255 base::__unlink_nodes(__f, __f);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002256 __link_nodes(__f1.__ptr_, __f, __f);
Howard Hinnant3e519522010-05-11 19:42:16 +00002257 return __e2;
2258 }
2259 return __f1;
2260 }
2261 size_type __n2 = __n / 2;
Howard Hinnantce48a112011-06-30 21:18:19 +00002262 iterator __e1 = _VSTD::next(__f1, __n2);
Howard Hinnant3e519522010-05-11 19:42:16 +00002263 iterator __r = __f1 = __sort(__f1, __e1, __n2, __comp);
2264 iterator __f2 = __e1 = __sort(__e1, __e2, __n - __n2, __comp);
2265 if (__comp(*__f2, *__f1))
2266 {
Howard Hinnantce48a112011-06-30 21:18:19 +00002267 iterator __m2 = _VSTD::next(__f2);
Howard Hinnant3e519522010-05-11 19:42:16 +00002268 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2269 ;
Eric Fiselierb88ea352015-12-30 20:57:59 +00002270 __link_pointer __f = __f2.__ptr_;
2271 __link_pointer __l = __m2.__ptr_->__prev_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002272 __r = __f2;
2273 __e1 = __f2 = __m2;
2274 base::__unlink_nodes(__f, __l);
Howard Hinnantce48a112011-06-30 21:18:19 +00002275 __m2 = _VSTD::next(__f1);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002276 __link_nodes(__f1.__ptr_, __f, __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00002277 __f1 = __m2;
2278 }
2279 else
2280 ++__f1;
2281 while (__f1 != __e1 && __f2 != __e2)
2282 {
2283 if (__comp(*__f2, *__f1))
2284 {
Howard Hinnantce48a112011-06-30 21:18:19 +00002285 iterator __m2 = _VSTD::next(__f2);
Howard Hinnant3e519522010-05-11 19:42:16 +00002286 for (; __m2 != __e2 && __comp(*__m2, *__f1); ++__m2)
2287 ;
Eric Fiselierb88ea352015-12-30 20:57:59 +00002288 __link_pointer __f = __f2.__ptr_;
2289 __link_pointer __l = __m2.__ptr_->__prev_;
Howard Hinnant3e519522010-05-11 19:42:16 +00002290 if (__e1 == __f2)
2291 __e1 = __m2;
2292 __f2 = __m2;
2293 base::__unlink_nodes(__f, __l);
Howard Hinnantce48a112011-06-30 21:18:19 +00002294 __m2 = _VSTD::next(__f1);
Howard Hinnant866d4ef2013-06-25 16:08:47 +00002295 __link_nodes(__f1.__ptr_, __f, __l);
Howard Hinnant3e519522010-05-11 19:42:16 +00002296 __f1 = __m2;
2297 }
2298 else
2299 ++__f1;
2300 }
2301 return __r;
2302}
2303
2304template <class _Tp, class _Alloc>
2305void
Howard Hinnant45900102011-06-03 17:30:28 +00002306list<_Tp, _Alloc>::reverse() _NOEXCEPT
Howard Hinnant3e519522010-05-11 19:42:16 +00002307{
2308 if (base::__sz() > 1)
2309 {
2310 iterator __e = end();
Howard Hinnant920b56c2011-09-27 23:55:03 +00002311 for (iterator __i = begin(); __i.__ptr_ != __e.__ptr_;)
2312 {
Howard Hinnantce48a112011-06-30 21:18:19 +00002313 _VSTD::swap(__i.__ptr_->__prev_, __i.__ptr_->__next_);
Howard Hinnant920b56c2011-09-27 23:55:03 +00002314 __i.__ptr_ = __i.__ptr_->__prev_;
2315 }
Howard Hinnantce48a112011-06-30 21:18:19 +00002316 _VSTD::swap(__e.__ptr_->__prev_, __e.__ptr_->__next_);
Howard Hinnant3e519522010-05-11 19:42:16 +00002317 }
2318}
2319
2320template <class _Tp, class _Alloc>
Howard Hinnant920b56c2011-09-27 23:55:03 +00002321bool
2322list<_Tp, _Alloc>::__invariants() const
2323{
2324 return size() == _VSTD::distance(begin(), end());
2325}
2326
2327#if _LIBCPP_DEBUG_LEVEL >= 2
2328
2329template <class _Tp, class _Alloc>
2330bool
2331list<_Tp, _Alloc>::__dereferenceable(const const_iterator* __i) const
2332{
Eric Fiselier5243e192016-01-04 03:27:52 +00002333 return __i->__ptr_ != this->__end_as_link();
Howard Hinnant920b56c2011-09-27 23:55:03 +00002334}
2335
2336template <class _Tp, class _Alloc>
2337bool
2338list<_Tp, _Alloc>::__decrementable(const const_iterator* __i) const
2339{
2340 return !empty() && __i->__ptr_ != base::__end_.__next_;
2341}
2342
2343template <class _Tp, class _Alloc>
2344bool
Eric Fiselierfd838222016-12-23 23:37:52 +00002345list<_Tp, _Alloc>::__addable(const const_iterator*, ptrdiff_t) const
Howard Hinnant920b56c2011-09-27 23:55:03 +00002346{
2347 return false;
2348}
2349
2350template <class _Tp, class _Alloc>
2351bool
Eric Fiselierfd838222016-12-23 23:37:52 +00002352list<_Tp, _Alloc>::__subscriptable(const const_iterator*, ptrdiff_t) const
Howard Hinnant920b56c2011-09-27 23:55:03 +00002353{
2354 return false;
2355}
2356
2357#endif // _LIBCPP_DEBUG_LEVEL >= 2
2358
2359template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002360inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002361bool
2362operator==(const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y)
2363{
Howard Hinnantce48a112011-06-30 21:18:19 +00002364 return __x.size() == __y.size() && _VSTD::equal(__x.begin(), __x.end(), __y.begin());
Howard Hinnant3e519522010-05-11 19:42:16 +00002365}
2366
2367template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002368inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002369bool
2370operator< (const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y)
2371{
Howard Hinnantce48a112011-06-30 21:18:19 +00002372 return _VSTD::lexicographical_compare(__x.begin(), __x.end(), __y.begin(), __y.end());
Howard Hinnant3e519522010-05-11 19:42:16 +00002373}
2374
2375template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002376inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002377bool
2378operator!=(const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y)
2379{
2380 return !(__x == __y);
2381}
2382
2383template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002384inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002385bool
2386operator> (const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y)
2387{
2388 return __y < __x;
2389}
2390
2391template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002392inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002393bool
2394operator>=(const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y)
2395{
2396 return !(__x < __y);
2397}
2398
2399template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002400inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002401bool
2402operator<=(const list<_Tp, _Alloc>& __x, const list<_Tp, _Alloc>& __y)
2403{
2404 return !(__y < __x);
2405}
2406
2407template <class _Tp, class _Alloc>
Howard Hinnant848a5372010-09-22 16:48:34 +00002408inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3e519522010-05-11 19:42:16 +00002409void
2410swap(list<_Tp, _Alloc>& __x, list<_Tp, _Alloc>& __y)
Howard Hinnant45900102011-06-03 17:30:28 +00002411 _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y)))
Howard Hinnant3e519522010-05-11 19:42:16 +00002412{
2413 __x.swap(__y);
2414}
2415
2416_LIBCPP_END_NAMESPACE_STD
2417
2418#endif // _LIBCPP_LIST