blob: 22737314dec67ed0366860abb90afc5c151bbc61 [file] [log] [blame]
Howard Hinnantc51e1022010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- memory ------------------------------------===//
3//
Howard Hinnantc566dc32010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantc51e1022010-05-11 19:42:16 +00005//
Howard Hinnantee11c312010-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 Hinnantc51e1022010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_MEMORY
12#define _LIBCPP_MEMORY
13
14/*
15 memory synopsis
16
17namespace std
18{
19
20struct allocator_arg_t { };
Marshall Clowf1bf62f2018-01-02 17:17:01 +000021inline constexpr allocator_arg_t allocator_arg = allocator_arg_t();
Howard Hinnantc51e1022010-05-11 19:42:16 +000022
23template <class T, class Alloc> struct uses_allocator;
24
25template <class Ptr>
26struct pointer_traits
27{
28 typedef Ptr pointer;
29 typedef <details> element_type;
30 typedef <details> difference_type;
Howard Hinnant3b6579a2010-08-22 00:02:43 +000031
Howard Hinnantc51e1022010-05-11 19:42:16 +000032 template <class U> using rebind = <details>;
Howard Hinnant3b6579a2010-08-22 00:02:43 +000033
Howard Hinnantc51e1022010-05-11 19:42:16 +000034 static pointer pointer_to(<details>);
35};
36
Howard Hinnant719bda32011-05-28 14:41:13 +000037template <class T>
38struct pointer_traits<T*>
39{
40 typedef T* pointer;
41 typedef T element_type;
42 typedef ptrdiff_t difference_type;
43
44 template <class U> using rebind = U*;
45
46 static pointer pointer_to(<details>) noexcept;
47};
48
Eric Fiselier45c9aac2017-11-22 19:49:21 +000049template <class T> constexpr T* to_address(T* p) noexcept; // C++20
50template <class Ptr> auto to_address(const Ptr& p) noexcept; // C++20
51
Howard Hinnantc51e1022010-05-11 19:42:16 +000052template <class Alloc>
53struct allocator_traits
54{
55 typedef Alloc allocator_type;
56 typedef typename allocator_type::value_type
57 value_type;
58
59 typedef Alloc::pointer | value_type* pointer;
60 typedef Alloc::const_pointer
61 | pointer_traits<pointer>::rebind<const value_type>
62 const_pointer;
63 typedef Alloc::void_pointer
64 | pointer_traits<pointer>::rebind<void>
65 void_pointer;
66 typedef Alloc::const_void_pointer
67 | pointer_traits<pointer>::rebind<const void>
68 const_void_pointer;
69 typedef Alloc::difference_type
Howard Hinnant8e4e6002010-11-18 01:40:00 +000070 | pointer_traits<pointer>::difference_type
71 difference_type;
72 typedef Alloc::size_type
73 | make_unsigned<difference_type>::type
74 size_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +000075 typedef Alloc::propagate_on_container_copy_assignment
76 | false_type propagate_on_container_copy_assignment;
77 typedef Alloc::propagate_on_container_move_assignment
78 | false_type propagate_on_container_move_assignment;
79 typedef Alloc::propagate_on_container_swap
80 | false_type propagate_on_container_swap;
Marshall Clow0b587562015-06-02 16:34:03 +000081 typedef Alloc::is_always_equal
82 | is_empty is_always_equal;
Howard Hinnantc51e1022010-05-11 19:42:16 +000083
84 template <class T> using rebind_alloc = Alloc::rebind<U>::other | Alloc<T, Args...>;
85 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>;
86
Marshall Clow0e58cae2017-11-26 02:55:38 +000087 static pointer allocate(allocator_type& a, size_type n); // [[nodiscard]] in C++20
88 static pointer allocate(allocator_type& a, size_type n, const_void_pointer hint); // [[nodiscard]] in C++20
Howard Hinnantc51e1022010-05-11 19:42:16 +000089
Howard Hinnant719bda32011-05-28 14:41:13 +000090 static void deallocate(allocator_type& a, pointer p, size_type n) noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +000091
92 template <class T, class... Args>
93 static void construct(allocator_type& a, T* p, Args&&... args);
94
95 template <class T>
96 static void destroy(allocator_type& a, T* p);
97
Marshall Clow4f834b52013-08-27 20:22:15 +000098 static size_type max_size(const allocator_type& a); // noexcept in C++14
Howard Hinnantc51e1022010-05-11 19:42:16 +000099
100 static allocator_type
101 select_on_container_copy_construction(const allocator_type& a);
102};
103
104template <>
105class allocator<void>
106{
107public:
108 typedef void* pointer;
109 typedef const void* const_pointer;
110 typedef void value_type;
111
112 template <class _Up> struct rebind {typedef allocator<_Up> other;};
113};
114
115template <class T>
116class allocator
117{
118public:
119 typedef size_t size_type;
120 typedef ptrdiff_t difference_type;
121 typedef T* pointer;
122 typedef const T* const_pointer;
123 typedef typename add_lvalue_reference<T>::type reference;
124 typedef typename add_lvalue_reference<const T>::type const_reference;
125 typedef T value_type;
126
127 template <class U> struct rebind {typedef allocator<U> other;};
128
Howard Hinnant719bda32011-05-28 14:41:13 +0000129 allocator() noexcept;
130 allocator(const allocator&) noexcept;
131 template <class U> allocator(const allocator<U>&) noexcept;
132 ~allocator();
133 pointer address(reference x) const noexcept;
134 const_pointer address(const_reference x) const noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000135 pointer allocate(size_type, allocator<void>::const_pointer hint = 0);
Howard Hinnant719bda32011-05-28 14:41:13 +0000136 void deallocate(pointer p, size_type n) noexcept;
137 size_type max_size() const noexcept;
138 template<class U, class... Args>
139 void construct(U* p, Args&&... args);
140 template <class U>
141 void destroy(U* p);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000142};
143
144template <class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000145bool operator==(const allocator<T>&, const allocator<U>&) noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000146
147template <class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000148bool operator!=(const allocator<T>&, const allocator<U>&) noexcept;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000149
150template <class OutputIterator, class T>
151class raw_storage_iterator
152 : public iterator<output_iterator_tag,
153 T, // purposefully not C++03
154 ptrdiff_t, // purposefully not C++03
155 T*, // purposefully not C++03
156 raw_storage_iterator&> // purposefully not C++03
157{
158public:
159 explicit raw_storage_iterator(OutputIterator x);
160 raw_storage_iterator& operator*();
161 raw_storage_iterator& operator=(const T& element);
162 raw_storage_iterator& operator++();
163 raw_storage_iterator operator++(int);
164};
165
Howard Hinnant719bda32011-05-28 14:41:13 +0000166template <class T> pair<T*,ptrdiff_t> get_temporary_buffer(ptrdiff_t n) noexcept;
167template <class T> void return_temporary_buffer(T* p) noexcept;
168
169template <class T> T* addressof(T& r) noexcept;
Marshall Clow78dbe462016-11-14 18:22:19 +0000170template <class T> T* addressof(const T&& r) noexcept = delete;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000171
172template <class InputIterator, class ForwardIterator>
173ForwardIterator
174uninitialized_copy(InputIterator first, InputIterator last, ForwardIterator result);
175
Howard Hinnant719bda32011-05-28 14:41:13 +0000176template <class InputIterator, class Size, class ForwardIterator>
177ForwardIterator
178uninitialized_copy_n(InputIterator first, Size n, ForwardIterator result);
179
Howard Hinnantc51e1022010-05-11 19:42:16 +0000180template <class ForwardIterator, class T>
181void uninitialized_fill(ForwardIterator first, ForwardIterator last, const T& x);
182
183template <class ForwardIterator, class Size, class T>
Howard Hinnant3c811092010-11-18 16:13:03 +0000184ForwardIterator
185uninitialized_fill_n(ForwardIterator first, Size n, const T& x);
Howard Hinnantc51e1022010-05-11 19:42:16 +0000186
Eric Fiselier383f6cf2016-07-24 03:51:39 +0000187template <class T>
188void destroy_at(T* location);
189
190template <class ForwardIterator>
191 void destroy(ForwardIterator first, ForwardIterator last);
192
193template <class ForwardIterator, class Size>
194 ForwardIterator destroy_n(ForwardIterator first, Size n);
195
196template <class InputIterator, class ForwardIterator>
197 ForwardIterator uninitialized_move(InputIterator first, InputIterator last, ForwardIterator result);
198
199template <class InputIterator, class Size, class ForwardIterator>
200 pair<InputIterator,ForwardIterator> uninitialized_move_n(InputIterator first, Size n, ForwardIterator result);
201
202template <class ForwardIterator>
203 void uninitialized_value_construct(ForwardIterator first, ForwardIterator last);
204
205template <class ForwardIterator, class Size>
206 ForwardIterator uninitialized_value_construct_n(ForwardIterator first, Size n);
207
208template <class ForwardIterator>
209 void uninitialized_default_construct(ForwardIterator first, ForwardIterator last);
210
211template <class ForwardIterator, class Size>
212 ForwardIterator uninitialized_default_construct_n(ForwardIterator first, Size n);
213
Marshall Clowb22274f2017-01-24 22:22:33 +0000214template <class Y> struct auto_ptr_ref {}; // removed in C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000215
216template<class X>
Marshall Clowb22274f2017-01-24 22:22:33 +0000217class auto_ptr // removed in C++17
Howard Hinnantc51e1022010-05-11 19:42:16 +0000218{
219public:
220 typedef X element_type;
221
222 explicit auto_ptr(X* p =0) throw();
223 auto_ptr(auto_ptr&) throw();
224 template<class Y> auto_ptr(auto_ptr<Y>&) throw();
225 auto_ptr& operator=(auto_ptr&) throw();
226 template<class Y> auto_ptr& operator=(auto_ptr<Y>&) throw();
227 auto_ptr& operator=(auto_ptr_ref<X> r) throw();
228 ~auto_ptr() throw();
229
230 typename add_lvalue_reference<X>::type operator*() const throw();
231 X* operator->() const throw();
232 X* get() const throw();
233 X* release() throw();
234 void reset(X* p =0) throw();
235
236 auto_ptr(auto_ptr_ref<X>) throw();
237 template<class Y> operator auto_ptr_ref<Y>() throw();
238 template<class Y> operator auto_ptr<Y>() throw();
239};
240
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000241template <class T>
242struct default_delete
243{
Howard Hinnant719bda32011-05-28 14:41:13 +0000244 constexpr default_delete() noexcept = default;
245 template <class U> default_delete(const default_delete<U>&) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000246
Howard Hinnant719bda32011-05-28 14:41:13 +0000247 void operator()(T*) const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000248};
249
250template <class T>
251struct default_delete<T[]>
252{
Howard Hinnant719bda32011-05-28 14:41:13 +0000253 constexpr default_delete() noexcept = default;
254 void operator()(T*) const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000255 template <class U> void operator()(U*) const = delete;
256};
257
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000258template <class T, class D = default_delete<T>>
259class unique_ptr
260{
261public:
262 typedef see below pointer;
263 typedef T element_type;
264 typedef D deleter_type;
265
266 // constructors
Howard Hinnant719bda32011-05-28 14:41:13 +0000267 constexpr unique_ptr() noexcept;
268 explicit unique_ptr(pointer p) noexcept;
269 unique_ptr(pointer p, see below d1) noexcept;
270 unique_ptr(pointer p, see below d2) noexcept;
271 unique_ptr(unique_ptr&& u) noexcept;
272 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000273 template <class U, class E>
Howard Hinnant719bda32011-05-28 14:41:13 +0000274 unique_ptr(unique_ptr<U, E>&& u) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000275 template <class U>
Marshall Clowb22274f2017-01-24 22:22:33 +0000276 unique_ptr(auto_ptr<U>&& u) noexcept; // removed in C++17
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000277
278 // destructor
279 ~unique_ptr();
280
281 // assignment
Howard Hinnant719bda32011-05-28 14:41:13 +0000282 unique_ptr& operator=(unique_ptr&& u) noexcept;
283 template <class U, class E> unique_ptr& operator=(unique_ptr<U, E>&& u) noexcept;
284 unique_ptr& operator=(nullptr_t) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000285
286 // observers
287 typename add_lvalue_reference<T>::type operator*() const;
Howard Hinnant719bda32011-05-28 14:41:13 +0000288 pointer operator->() const noexcept;
289 pointer get() const noexcept;
290 deleter_type& get_deleter() noexcept;
291 const deleter_type& get_deleter() const noexcept;
292 explicit operator bool() const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000293
294 // modifiers
Howard Hinnant719bda32011-05-28 14:41:13 +0000295 pointer release() noexcept;
296 void reset(pointer p = pointer()) noexcept;
297 void swap(unique_ptr& u) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000298};
299
300template <class T, class D>
301class unique_ptr<T[], D>
302{
303public:
304 typedef implementation-defined pointer;
305 typedef T element_type;
306 typedef D deleter_type;
307
308 // constructors
Howard Hinnant719bda32011-05-28 14:41:13 +0000309 constexpr unique_ptr() noexcept;
310 explicit unique_ptr(pointer p) noexcept;
311 unique_ptr(pointer p, see below d) noexcept;
312 unique_ptr(pointer p, see below d) noexcept;
313 unique_ptr(unique_ptr&& u) noexcept;
314 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000315
316 // destructor
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000317 ~unique_ptr();
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000318
319 // assignment
Howard Hinnant719bda32011-05-28 14:41:13 +0000320 unique_ptr& operator=(unique_ptr&& u) noexcept;
321 unique_ptr& operator=(nullptr_t) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000322
323 // observers
324 T& operator[](size_t i) const;
Howard Hinnant719bda32011-05-28 14:41:13 +0000325 pointer get() const noexcept;
326 deleter_type& get_deleter() noexcept;
327 const deleter_type& get_deleter() const noexcept;
328 explicit operator bool() const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000329
330 // modifiers
Howard Hinnant719bda32011-05-28 14:41:13 +0000331 pointer release() noexcept;
332 void reset(pointer p = pointer()) noexcept;
333 void reset(nullptr_t) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000334 template <class U> void reset(U) = delete;
Howard Hinnant719bda32011-05-28 14:41:13 +0000335 void swap(unique_ptr& u) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000336};
337
338template <class T, class D>
Howard Hinnant719bda32011-05-28 14:41:13 +0000339 void swap(unique_ptr<T, D>& x, unique_ptr<T, D>& y) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000340
341template <class T1, class D1, class T2, class D2>
342 bool operator==(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
343template <class T1, class D1, class T2, class D2>
344 bool operator!=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
345template <class T1, class D1, class T2, class D2>
346 bool operator<(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
347template <class T1, class D1, class T2, class D2>
348 bool operator<=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
349template <class T1, class D1, class T2, class D2>
350 bool operator>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
351template <class T1, class D1, class T2, class D2>
352 bool operator>=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
353
Howard Hinnant719bda32011-05-28 14:41:13 +0000354template <class T, class D>
355 bool operator==(const unique_ptr<T, D>& x, nullptr_t) noexcept;
356template <class T, class D>
357 bool operator==(nullptr_t, const unique_ptr<T, D>& y) noexcept;
358template <class T, class D>
359 bool operator!=(const unique_ptr<T, D>& x, nullptr_t) noexcept;
360template <class T, class D>
361 bool operator!=(nullptr_t, const unique_ptr<T, D>& y) noexcept;
362
363template <class T, class D>
364 bool operator<(const unique_ptr<T, D>& x, nullptr_t);
365template <class T, class D>
366 bool operator<(nullptr_t, const unique_ptr<T, D>& y);
367template <class T, class D>
368 bool operator<=(const unique_ptr<T, D>& x, nullptr_t);
369template <class T, class D>
370 bool operator<=(nullptr_t, const unique_ptr<T, D>& y);
371template <class T, class D>
372 bool operator>(const unique_ptr<T, D>& x, nullptr_t);
373template <class T, class D>
374 bool operator>(nullptr_t, const unique_ptr<T, D>& y);
375template <class T, class D>
376 bool operator>=(const unique_ptr<T, D>& x, nullptr_t);
377template <class T, class D>
378 bool operator>=(nullptr_t, const unique_ptr<T, D>& y);
379
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000380class bad_weak_ptr
381 : public std::exception
382{
Howard Hinnant719bda32011-05-28 14:41:13 +0000383 bad_weak_ptr() noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000384};
385
Marshall Clow9e8f4a92013-07-01 18:16:03 +0000386template<class T, class... Args> unique_ptr<T> make_unique(Args&&... args); // C++14
387template<class T> unique_ptr<T> make_unique(size_t n); // C++14
388template<class T, class... Args> unspecified make_unique(Args&&...) = delete; // C++14, T == U[N]
389
Marshall Clowe52a3242017-11-27 15:51:36 +0000390template<class E, class T, class Y, class D>
391 basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, unique_ptr<Y, D> const& p);
392
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000393template<class T>
394class shared_ptr
395{
396public:
397 typedef T element_type;
Eric Fiselierae5b6672016-06-27 01:02:43 +0000398 typedef weak_ptr<T> weak_type; // C++17
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000399
400 // constructors:
Howard Hinnant719bda32011-05-28 14:41:13 +0000401 constexpr shared_ptr() noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000402 template<class Y> explicit shared_ptr(Y* p);
403 template<class Y, class D> shared_ptr(Y* p, D d);
404 template<class Y, class D, class A> shared_ptr(Y* p, D d, A a);
405 template <class D> shared_ptr(nullptr_t p, D d);
406 template <class D, class A> shared_ptr(nullptr_t p, D d, A a);
Howard Hinnant719bda32011-05-28 14:41:13 +0000407 template<class Y> shared_ptr(const shared_ptr<Y>& r, T *p) noexcept;
408 shared_ptr(const shared_ptr& r) noexcept;
409 template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept;
410 shared_ptr(shared_ptr&& r) noexcept;
411 template<class Y> shared_ptr(shared_ptr<Y>&& r) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000412 template<class Y> explicit shared_ptr(const weak_ptr<Y>& r);
Marshall Clowb22274f2017-01-24 22:22:33 +0000413 template<class Y> shared_ptr(auto_ptr<Y>&& r); // removed in C++17
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000414 template <class Y, class D> shared_ptr(unique_ptr<Y, D>&& r);
415 shared_ptr(nullptr_t) : shared_ptr() { }
416
417 // destructor:
418 ~shared_ptr();
419
420 // assignment:
Howard Hinnant719bda32011-05-28 14:41:13 +0000421 shared_ptr& operator=(const shared_ptr& r) noexcept;
422 template<class Y> shared_ptr& operator=(const shared_ptr<Y>& r) noexcept;
423 shared_ptr& operator=(shared_ptr&& r) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000424 template<class Y> shared_ptr& operator=(shared_ptr<Y>&& r);
Marshall Clowb22274f2017-01-24 22:22:33 +0000425 template<class Y> shared_ptr& operator=(auto_ptr<Y>&& r); // removed in C++17
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000426 template <class Y, class D> shared_ptr& operator=(unique_ptr<Y, D>&& r);
427
428 // modifiers:
Howard Hinnant719bda32011-05-28 14:41:13 +0000429 void swap(shared_ptr& r) noexcept;
430 void reset() noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000431 template<class Y> void reset(Y* p);
432 template<class Y, class D> void reset(Y* p, D d);
433 template<class Y, class D, class A> void reset(Y* p, D d, A a);
434
Howard Hinnant719bda32011-05-28 14:41:13 +0000435 // observers:
436 T* get() const noexcept;
437 T& operator*() const noexcept;
438 T* operator->() const noexcept;
439 long use_count() const noexcept;
440 bool unique() const noexcept;
441 explicit operator bool() const noexcept;
Marshall Clow18a7cd52017-04-11 17:08:53 +0000442 template<class U> bool owner_before(shared_ptr<U> const& b) const noexcept;
443 template<class U> bool owner_before(weak_ptr<U> const& b) const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000444};
445
446// shared_ptr comparisons:
447template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000448 bool operator==(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000449template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000450 bool operator!=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000451template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000452 bool operator<(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000453template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000454 bool operator>(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000455template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000456 bool operator<=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000457template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000458 bool operator>=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
459
460template <class T>
461 bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept;
462template <class T>
463 bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept;
464template <class T>
465 bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept;
466template <class T>
467 bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept;
468template <class T>
469 bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept;
470template <class T>
471bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept;
472template <class T>
473 bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept;
474template <class T>
475 bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept;
476template <class T>
477 bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept;
478template <class T>
479 bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept;
480template <class T>
481 bool operator>=(const shared_ptr<T>& x, nullptr_t) noexcept;
482template <class T>
483 bool operator>=(nullptr_t, const shared_ptr<T>& y) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000484
485// shared_ptr specialized algorithms:
Howard Hinnant719bda32011-05-28 14:41:13 +0000486template<class T> void swap(shared_ptr<T>& a, shared_ptr<T>& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000487
488// shared_ptr casts:
489template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000490 shared_ptr<T> static_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000491template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000492 shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000493template<class T, class U>
Howard Hinnant719bda32011-05-28 14:41:13 +0000494 shared_ptr<T> const_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000495
496// shared_ptr I/O:
497template<class E, class T, class Y>
498 basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, shared_ptr<Y> const& p);
499
500// shared_ptr get_deleter:
Howard Hinnant719bda32011-05-28 14:41:13 +0000501template<class D, class T> D* get_deleter(shared_ptr<T> const& p) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000502
503template<class T, class... Args>
504 shared_ptr<T> make_shared(Args&&... args);
505template<class T, class A, class... Args>
506 shared_ptr<T> allocate_shared(const A& a, Args&&... args);
507
508template<class T>
509class weak_ptr
510{
511public:
512 typedef T element_type;
513
514 // constructors
Howard Hinnant719bda32011-05-28 14:41:13 +0000515 constexpr weak_ptr() noexcept;
516 template<class Y> weak_ptr(shared_ptr<Y> const& r) noexcept;
517 weak_ptr(weak_ptr const& r) noexcept;
518 template<class Y> weak_ptr(weak_ptr<Y> const& r) noexcept;
Marshall Clowe9b0a5c2014-03-05 03:12:04 +0000519 weak_ptr(weak_ptr&& r) noexcept; // C++14
520 template<class Y> weak_ptr(weak_ptr<Y>&& r) noexcept; // C++14
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000521
522 // destructor
523 ~weak_ptr();
524
525 // assignment
Howard Hinnant719bda32011-05-28 14:41:13 +0000526 weak_ptr& operator=(weak_ptr const& r) noexcept;
527 template<class Y> weak_ptr& operator=(weak_ptr<Y> const& r) noexcept;
528 template<class Y> weak_ptr& operator=(shared_ptr<Y> const& r) noexcept;
Marshall Clowe9b0a5c2014-03-05 03:12:04 +0000529 weak_ptr& operator=(weak_ptr&& r) noexcept; // C++14
530 template<class Y> weak_ptr& operator=(weak_ptr<Y>&& r) noexcept; // C++14
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000531
532 // modifiers
Howard Hinnant719bda32011-05-28 14:41:13 +0000533 void swap(weak_ptr& r) noexcept;
534 void reset() noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000535
536 // observers
Howard Hinnant719bda32011-05-28 14:41:13 +0000537 long use_count() const noexcept;
538 bool expired() const noexcept;
539 shared_ptr<T> lock() const noexcept;
Marshall Clow18a7cd52017-04-11 17:08:53 +0000540 template<class U> bool owner_before(shared_ptr<U> const& b) const noexcept;
541 template<class U> bool owner_before(weak_ptr<U> const& b) const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000542};
543
544// weak_ptr specialized algorithms:
Howard Hinnant719bda32011-05-28 14:41:13 +0000545template<class T> void swap(weak_ptr<T>& a, weak_ptr<T>& b) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000546
547// class owner_less:
548template<class T> struct owner_less;
549
550template<class T>
551struct owner_less<shared_ptr<T>>
552 : binary_function<shared_ptr<T>, shared_ptr<T>, bool>
553{
554 typedef bool result_type;
Marshall Clow18a7cd52017-04-11 17:08:53 +0000555 bool operator()(shared_ptr<T> const&, shared_ptr<T> const&) const noexcept;
556 bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const noexcept;
557 bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000558};
559
560template<class T>
561struct owner_less<weak_ptr<T>>
562 : binary_function<weak_ptr<T>, weak_ptr<T>, bool>
563{
564 typedef bool result_type;
Marshall Clow18a7cd52017-04-11 17:08:53 +0000565 bool operator()(weak_ptr<T> const&, weak_ptr<T> const&) const noexcept;
566 bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const noexcept;
567 bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const noexcept;
568};
569
570template <> // Added in C++14
571struct owner_less<void>
572{
573 template <class _Tp, class _Up>
574 bool operator()( shared_ptr<_Tp> const& __x, shared_ptr<_Up> const& __y) const noexcept;
575 template <class _Tp, class _Up>
576 bool operator()( shared_ptr<_Tp> const& __x, weak_ptr<_Up> const& __y) const noexcept;
577 template <class _Tp, class _Up>
578 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Up> const& __y) const noexcept;
579 template <class _Tp, class _Up>
580 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Up> const& __y) const noexcept;
581
582 typedef void is_transparent;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000583};
584
585template<class T>
586class enable_shared_from_this
587{
588protected:
Howard Hinnant719bda32011-05-28 14:41:13 +0000589 constexpr enable_shared_from_this() noexcept;
590 enable_shared_from_this(enable_shared_from_this const&) noexcept;
591 enable_shared_from_this& operator=(enable_shared_from_this const&) noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000592 ~enable_shared_from_this();
593public:
594 shared_ptr<T> shared_from_this();
595 shared_ptr<T const> shared_from_this() const;
596};
597
598template<class T>
599 bool atomic_is_lock_free(const shared_ptr<T>* p);
600template<class T>
601 shared_ptr<T> atomic_load(const shared_ptr<T>* p);
602template<class T>
603 shared_ptr<T> atomic_load_explicit(const shared_ptr<T>* p, memory_order mo);
604template<class T>
605 void atomic_store(shared_ptr<T>* p, shared_ptr<T> r);
606template<class T>
607 void atomic_store_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo);
608template<class T>
609 shared_ptr<T> atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r);
610template<class T>
611 shared_ptr<T>
612 atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo);
613template<class T>
614 bool
615 atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w);
616template<class T>
617 bool
618 atomic_compare_exchange_strong( shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w);
619template<class T>
620 bool
621 atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
622 shared_ptr<T> w, memory_order success,
623 memory_order failure);
624template<class T>
625 bool
626 atomic_compare_exchange_strong_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
627 shared_ptr<T> w, memory_order success,
628 memory_order failure);
629// Hash support
630template <class T> struct hash;
631template <class T, class D> struct hash<unique_ptr<T, D> >;
632template <class T> struct hash<shared_ptr<T> >;
633
Marshall Clowf1bf62f2018-01-02 17:17:01 +0000634template <class T, class Alloc>
635 inline constexpr bool uses_allocator_v = uses_allocator<T, Alloc>::value;
636
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000637// Pointer safety
638enum class pointer_safety { relaxed, preferred, strict };
639void declare_reachable(void *p);
640template <class T> T *undeclare_reachable(T *p);
641void declare_no_pointers(char *p, size_t n);
642void undeclare_no_pointers(char *p, size_t n);
Howard Hinnant719bda32011-05-28 14:41:13 +0000643pointer_safety get_pointer_safety() noexcept;
Howard Hinnantd26c01d2010-08-19 18:39:17 +0000644
Howard Hinnantc51e1022010-05-11 19:42:16 +0000645void* align(size_t alignment, size_t size, void*& ptr, size_t& space);
646
647} // std
648
649*/
650
651#include <__config>
652#include <type_traits>
653#include <typeinfo>
654#include <cstddef>
655#include <cstdint>
656#include <new>
657#include <utility>
658#include <limits>
659#include <iterator>
660#include <__functional_base>
Howard Hinnantdc095972011-07-18 15:51:59 +0000661#include <iosfwd>
Howard Hinnant83b1c052011-12-19 17:58:44 +0000662#include <tuple>
Eric Fiselier2db2bd52016-05-07 03:12:24 +0000663#include <stdexcept>
Howard Hinnantd2cab2f2012-02-15 00:41:34 +0000664#include <cstring>
Eric Fiselier9d355982017-04-12 23:45:53 +0000665#include <cassert>
Eric Fiselier8020b6c2015-08-19 17:21:46 +0000666#if !defined(_LIBCPP_HAS_NO_ATOMIC_HEADER)
Howard Hinnant9fa30202012-07-30 01:40:57 +0000667# include <atomic>
668#endif
669
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000670#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantc51e1022010-05-11 19:42:16 +0000671#pragma GCC system_header
Howard Hinnantaaaa52b2011-10-17 20:05:10 +0000672#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +0000673
Eric Fiselierf4433a32017-05-31 22:07:49 +0000674_LIBCPP_PUSH_MACROS
675#include <__undef_macros>
676
677
Howard Hinnantc51e1022010-05-11 19:42:16 +0000678_LIBCPP_BEGIN_NAMESPACE_STD
679
Eric Fiselier89659d12015-07-07 00:27:16 +0000680template <class _ValueType>
681inline _LIBCPP_ALWAYS_INLINE
682_ValueType __libcpp_relaxed_load(_ValueType const* __value) {
683#if !defined(_LIBCPP_HAS_NO_THREADS) && \
684 defined(__ATOMIC_RELAXED) && \
685 (__has_builtin(__atomic_load_n) || _GNUC_VER >= 407)
686 return __atomic_load_n(__value, __ATOMIC_RELAXED);
687#else
688 return *__value;
689#endif
690}
691
Kuba Breckade9d6792016-09-04 09:55:12 +0000692template <class _ValueType>
693inline _LIBCPP_ALWAYS_INLINE
694_ValueType __libcpp_acquire_load(_ValueType const* __value) {
695#if !defined(_LIBCPP_HAS_NO_THREADS) && \
696 defined(__ATOMIC_ACQUIRE) && \
697 (__has_builtin(__atomic_load_n) || _GNUC_VER >= 407)
698 return __atomic_load_n(__value, __ATOMIC_ACQUIRE);
699#else
700 return *__value;
701#endif
702}
703
Marshall Clow78dbe462016-11-14 18:22:19 +0000704// addressof moved to <type_traits>
Douglas Gregor13034442011-06-22 22:17:44 +0000705
Howard Hinnantc51e1022010-05-11 19:42:16 +0000706template <class _Tp> class allocator;
707
708template <>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000709class _LIBCPP_TEMPLATE_VIS allocator<void>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000710{
711public:
712 typedef void* pointer;
713 typedef const void* const_pointer;
714 typedef void value_type;
715
716 template <class _Up> struct rebind {typedef allocator<_Up> other;};
717};
718
Howard Hinnant9f771052012-01-19 23:15:22 +0000719template <>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000720class _LIBCPP_TEMPLATE_VIS allocator<const void>
Howard Hinnant9f771052012-01-19 23:15:22 +0000721{
722public:
723 typedef const void* pointer;
724 typedef const void* const_pointer;
725 typedef const void value_type;
726
727 template <class _Up> struct rebind {typedef allocator<_Up> other;};
728};
729
Howard Hinnantc51e1022010-05-11 19:42:16 +0000730// pointer_traits
731
Marshall Clow0be70c32017-06-14 21:23:57 +0000732template <class _Tp, class = void>
733struct __has_element_type : false_type {};
734
Howard Hinnantc51e1022010-05-11 19:42:16 +0000735template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +0000736struct __has_element_type<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +0000737 typename __void_t<typename _Tp::element_type>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +0000738
739template <class _Ptr, bool = __has_element_type<_Ptr>::value>
740struct __pointer_traits_element_type;
741
742template <class _Ptr>
743struct __pointer_traits_element_type<_Ptr, true>
744{
745 typedef typename _Ptr::element_type type;
746};
747
748#ifndef _LIBCPP_HAS_NO_VARIADICS
749
750template <template <class, class...> class _Sp, class _Tp, class ..._Args>
751struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, true>
752{
753 typedef typename _Sp<_Tp, _Args...>::element_type type;
754};
755
756template <template <class, class...> class _Sp, class _Tp, class ..._Args>
757struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, false>
758{
759 typedef _Tp type;
760};
761
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000762#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000763
764template <template <class> class _Sp, class _Tp>
765struct __pointer_traits_element_type<_Sp<_Tp>, true>
766{
767 typedef typename _Sp<_Tp>::element_type type;
768};
769
770template <template <class> class _Sp, class _Tp>
771struct __pointer_traits_element_type<_Sp<_Tp>, false>
772{
773 typedef _Tp type;
774};
775
776template <template <class, class> class _Sp, class _Tp, class _A0>
777struct __pointer_traits_element_type<_Sp<_Tp, _A0>, true>
778{
779 typedef typename _Sp<_Tp, _A0>::element_type type;
780};
781
782template <template <class, class> class _Sp, class _Tp, class _A0>
783struct __pointer_traits_element_type<_Sp<_Tp, _A0>, false>
784{
785 typedef _Tp type;
786};
787
788template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
789struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, true>
790{
791 typedef typename _Sp<_Tp, _A0, _A1>::element_type type;
792};
793
794template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
795struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, false>
796{
797 typedef _Tp type;
798};
799
800template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
801 class _A1, class _A2>
802struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, true>
803{
804 typedef typename _Sp<_Tp, _A0, _A1, _A2>::element_type type;
805};
806
807template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
808 class _A1, class _A2>
809struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, false>
810{
811 typedef _Tp type;
812};
813
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000814#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000815
Marshall Clow0be70c32017-06-14 21:23:57 +0000816template <class _Tp, class = void>
817struct __has_difference_type : false_type {};
818
Howard Hinnantc51e1022010-05-11 19:42:16 +0000819template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +0000820struct __has_difference_type<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +0000821 typename __void_t<typename _Tp::difference_type>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +0000822
823template <class _Ptr, bool = __has_difference_type<_Ptr>::value>
824struct __pointer_traits_difference_type
825{
826 typedef ptrdiff_t type;
827};
828
829template <class _Ptr>
830struct __pointer_traits_difference_type<_Ptr, true>
831{
832 typedef typename _Ptr::difference_type type;
833};
834
835template <class _Tp, class _Up>
836struct __has_rebind
837{
838private:
Howard Hinnant49e145e2012-10-30 19:06:59 +0000839 struct __two {char __lx; char __lxx;};
Howard Hinnantc51e1022010-05-11 19:42:16 +0000840 template <class _Xp> static __two __test(...);
841 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0);
842public:
843 static const bool value = sizeof(__test<_Tp>(0)) == 1;
844};
845
846template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
847struct __pointer_traits_rebind
848{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000849#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000850 typedef typename _Tp::template rebind<_Up> type;
851#else
852 typedef typename _Tp::template rebind<_Up>::other type;
853#endif
854};
855
856#ifndef _LIBCPP_HAS_NO_VARIADICS
857
858template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
859struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, true>
860{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000861#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000862 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up> type;
863#else
864 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up>::other type;
865#endif
866};
867
868template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
869struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, false>
870{
871 typedef _Sp<_Up, _Args...> type;
872};
873
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000874#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000875
876template <template <class> class _Sp, class _Tp, class _Up>
877struct __pointer_traits_rebind<_Sp<_Tp>, _Up, true>
878{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000879#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000880 typedef typename _Sp<_Tp>::template rebind<_Up> type;
881#else
882 typedef typename _Sp<_Tp>::template rebind<_Up>::other type;
883#endif
884};
885
886template <template <class> class _Sp, class _Tp, class _Up>
887struct __pointer_traits_rebind<_Sp<_Tp>, _Up, false>
888{
889 typedef _Sp<_Up> type;
890};
891
892template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
893struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, true>
894{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000895#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000896 typedef typename _Sp<_Tp, _A0>::template rebind<_Up> type;
897#else
898 typedef typename _Sp<_Tp, _A0>::template rebind<_Up>::other type;
899#endif
900};
901
902template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
903struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, false>
904{
905 typedef _Sp<_Up, _A0> type;
906};
907
908template <template <class, class, class> class _Sp, class _Tp, class _A0,
909 class _A1, class _Up>
910struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, true>
911{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000912#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000913 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up> type;
914#else
915 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up>::other type;
916#endif
917};
918
919template <template <class, class, class> class _Sp, class _Tp, class _A0,
920 class _A1, class _Up>
921struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, false>
922{
923 typedef _Sp<_Up, _A0, _A1> type;
924};
925
926template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
927 class _A1, class _A2, class _Up>
928struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, true>
929{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000930#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000931 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up> type;
932#else
933 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
934#endif
935};
936
937template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
938 class _A1, class _A2, class _Up>
939struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, false>
940{
941 typedef _Sp<_Up, _A0, _A1, _A2> type;
942};
943
Howard Hinnant3b6579a2010-08-22 00:02:43 +0000944#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +0000945
946template <class _Ptr>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000947struct _LIBCPP_TEMPLATE_VIS pointer_traits
Howard Hinnantc51e1022010-05-11 19:42:16 +0000948{
949 typedef _Ptr pointer;
950 typedef typename __pointer_traits_element_type<pointer>::type element_type;
951 typedef typename __pointer_traits_difference_type<pointer>::type difference_type;
952
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000953#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantf09283d2011-05-11 20:21:19 +0000954 template <class _Up> using rebind = typename __pointer_traits_rebind<pointer, _Up>::type;
Howard Hinnantc51e1022010-05-11 19:42:16 +0000955#else
956 template <class _Up> struct rebind
957 {typedef typename __pointer_traits_rebind<pointer, _Up>::type other;};
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000958#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000959
960private:
961 struct __nat {};
962public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000963 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000964 static pointer pointer_to(typename conditional<is_void<element_type>::value,
965 __nat, element_type>::type& __r)
966 {return pointer::pointer_to(__r);}
967};
968
969template <class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +0000970struct _LIBCPP_TEMPLATE_VIS pointer_traits<_Tp*>
Howard Hinnantc51e1022010-05-11 19:42:16 +0000971{
972 typedef _Tp* pointer;
973 typedef _Tp element_type;
974 typedef ptrdiff_t difference_type;
975
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000976#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +0000977 template <class _Up> using rebind = _Up*;
978#else
979 template <class _Up> struct rebind {typedef _Up* other;};
980#endif
981
982private:
983 struct __nat {};
984public:
Howard Hinnant756c69b2010-09-22 16:48:34 +0000985 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +0000986 static pointer pointer_to(typename conditional<is_void<element_type>::value,
Howard Hinnant719bda32011-05-28 14:41:13 +0000987 __nat, element_type>::type& __r) _NOEXCEPT
Howard Hinnantb1ad5a82011-06-30 21:18:19 +0000988 {return _VSTD::addressof(__r);}
Howard Hinnantc51e1022010-05-11 19:42:16 +0000989};
990
Eric Fiselierae3ab842015-08-23 02:56:05 +0000991template <class _From, class _To>
992struct __rebind_pointer {
Eric Fiselierc6f17cc2016-09-25 03:34:28 +0000993#ifndef _LIBCPP_CXX03_LANG
Eric Fiselierae3ab842015-08-23 02:56:05 +0000994 typedef typename pointer_traits<_From>::template rebind<_To> type;
995#else
996 typedef typename pointer_traits<_From>::template rebind<_To>::other type;
997#endif
998};
999
Howard Hinnantc51e1022010-05-11 19:42:16 +00001000// allocator_traits
1001
Marshall Clow0be70c32017-06-14 21:23:57 +00001002template <class _Tp, class = void>
1003struct __has_pointer_type : false_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001004
1005template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001006struct __has_pointer_type<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001007 typename __void_t<typename _Tp::pointer>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001008
1009namespace __pointer_type_imp
1010{
1011
1012template <class _Tp, class _Dp, bool = __has_pointer_type<_Dp>::value>
1013struct __pointer_type
1014{
1015 typedef typename _Dp::pointer type;
1016};
1017
1018template <class _Tp, class _Dp>
1019struct __pointer_type<_Tp, _Dp, false>
1020{
1021 typedef _Tp* type;
1022};
1023
Howard Hinnant8e4e6002010-11-18 01:40:00 +00001024} // __pointer_type_imp
Howard Hinnantc51e1022010-05-11 19:42:16 +00001025
1026template <class _Tp, class _Dp>
1027struct __pointer_type
1028{
1029 typedef typename __pointer_type_imp::__pointer_type<_Tp, typename remove_reference<_Dp>::type>::type type;
1030};
1031
Marshall Clow0be70c32017-06-14 21:23:57 +00001032template <class _Tp, class = void>
1033struct __has_const_pointer : false_type {};
1034
Howard Hinnantc51e1022010-05-11 19:42:16 +00001035template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001036struct __has_const_pointer<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001037 typename __void_t<typename _Tp::const_pointer>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001038
1039template <class _Tp, class _Ptr, class _Alloc, bool = __has_const_pointer<_Alloc>::value>
1040struct __const_pointer
1041{
1042 typedef typename _Alloc::const_pointer type;
1043};
1044
1045template <class _Tp, class _Ptr, class _Alloc>
1046struct __const_pointer<_Tp, _Ptr, _Alloc, false>
1047{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001048#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001049 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp> type;
1050#else
1051 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp>::other type;
1052#endif
1053};
1054
Marshall Clow0be70c32017-06-14 21:23:57 +00001055template <class _Tp, class = void>
1056struct __has_void_pointer : false_type {};
1057
Howard Hinnantc51e1022010-05-11 19:42:16 +00001058template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001059struct __has_void_pointer<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001060 typename __void_t<typename _Tp::void_pointer>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001061
1062template <class _Ptr, class _Alloc, bool = __has_void_pointer<_Alloc>::value>
1063struct __void_pointer
1064{
1065 typedef typename _Alloc::void_pointer type;
1066};
1067
1068template <class _Ptr, class _Alloc>
1069struct __void_pointer<_Ptr, _Alloc, false>
1070{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001071#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001072 typedef typename pointer_traits<_Ptr>::template rebind<void> type;
1073#else
1074 typedef typename pointer_traits<_Ptr>::template rebind<void>::other type;
1075#endif
1076};
1077
Marshall Clow0be70c32017-06-14 21:23:57 +00001078template <class _Tp, class = void>
1079struct __has_const_void_pointer : false_type {};
1080
Howard Hinnantc51e1022010-05-11 19:42:16 +00001081template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001082struct __has_const_void_pointer<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001083 typename __void_t<typename _Tp::const_void_pointer>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001084
1085template <class _Ptr, class _Alloc, bool = __has_const_void_pointer<_Alloc>::value>
1086struct __const_void_pointer
1087{
1088 typedef typename _Alloc::const_void_pointer type;
1089};
1090
1091template <class _Ptr, class _Alloc>
1092struct __const_void_pointer<_Ptr, _Alloc, false>
1093{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001094#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001095 typedef typename pointer_traits<_Ptr>::template rebind<const void> type;
1096#else
1097 typedef typename pointer_traits<_Ptr>::template rebind<const void>::other type;
1098#endif
1099};
1100
Howard Hinnantc834c512011-11-29 18:15:50 +00001101template <class _Tp>
Eric Fiselier45c9aac2017-11-22 19:49:21 +00001102inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Howard Hinnantc834c512011-11-29 18:15:50 +00001103_Tp*
1104__to_raw_pointer(_Tp* __p) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00001105{
1106 return __p;
1107}
1108
Eric Fiselier45c9aac2017-11-22 19:49:21 +00001109#if _LIBCPP_STD_VER <= 17
Howard Hinnantc51e1022010-05-11 19:42:16 +00001110template <class _Pointer>
1111inline _LIBCPP_INLINE_VISIBILITY
1112typename pointer_traits<_Pointer>::element_type*
Howard Hinnant719bda32011-05-28 14:41:13 +00001113__to_raw_pointer(_Pointer __p) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00001114{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001115 return _VSTD::__to_raw_pointer(__p.operator->());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001116}
Eric Fiselier45c9aac2017-11-22 19:49:21 +00001117#else
1118template <class _Pointer>
1119inline _LIBCPP_INLINE_VISIBILITY
1120auto
1121__to_raw_pointer(const _Pointer& __p) _NOEXCEPT
1122-> decltype(pointer_traits<_Pointer>::to_address(__p))
1123{
1124 return pointer_traits<_Pointer>::to_address(__p);
1125}
1126
1127template <class _Pointer, class... _None>
1128inline _LIBCPP_INLINE_VISIBILITY
1129auto
1130__to_raw_pointer(const _Pointer& __p, _None...) _NOEXCEPT
1131{
1132 return _VSTD::__to_raw_pointer(__p.operator->());
1133}
1134
1135template <class _Tp>
1136inline _LIBCPP_INLINE_VISIBILITY constexpr
1137_Tp*
1138to_address(_Tp* __p) _NOEXCEPT
1139{
1140 static_assert(!is_function_v<_Tp>, "_Tp is a function type");
1141 return __p;
1142}
1143
1144template <class _Pointer>
1145inline _LIBCPP_INLINE_VISIBILITY
1146auto
1147to_address(const _Pointer& __p) _NOEXCEPT
1148{
1149 return _VSTD::__to_raw_pointer(__p);
1150}
1151#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00001152
Marshall Clow0be70c32017-06-14 21:23:57 +00001153template <class _Tp, class = void>
1154struct __has_size_type : false_type {};
1155
Howard Hinnantc51e1022010-05-11 19:42:16 +00001156template <class _Tp>
Marshall Clow0be70c32017-06-14 21:23:57 +00001157struct __has_size_type<_Tp,
1158 typename __void_t<typename _Tp::size_type>::type> : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001159
Howard Hinnant8e4e6002010-11-18 01:40:00 +00001160template <class _Alloc, class _DiffType, bool = __has_size_type<_Alloc>::value>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001161struct __size_type
1162{
Howard Hinnant8e4e6002010-11-18 01:40:00 +00001163 typedef typename make_unsigned<_DiffType>::type type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001164};
1165
Howard Hinnant8e4e6002010-11-18 01:40:00 +00001166template <class _Alloc, class _DiffType>
1167struct __size_type<_Alloc, _DiffType, true>
Howard Hinnantc51e1022010-05-11 19:42:16 +00001168{
1169 typedef typename _Alloc::size_type type;
1170};
1171
Marshall Clow0be70c32017-06-14 21:23:57 +00001172template <class _Tp, class = void>
1173struct __has_propagate_on_container_copy_assignment : false_type {};
1174
Howard Hinnantc51e1022010-05-11 19:42:16 +00001175template <class _Tp>
Marshall Clow0be70c32017-06-14 21:23:57 +00001176struct __has_propagate_on_container_copy_assignment<_Tp,
1177 typename __void_t<typename _Tp::propagate_on_container_copy_assignment>::type>
1178 : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001179
1180template <class _Alloc, bool = __has_propagate_on_container_copy_assignment<_Alloc>::value>
1181struct __propagate_on_container_copy_assignment
1182{
1183 typedef false_type type;
1184};
1185
1186template <class _Alloc>
1187struct __propagate_on_container_copy_assignment<_Alloc, true>
1188{
1189 typedef typename _Alloc::propagate_on_container_copy_assignment type;
1190};
1191
Marshall Clow0be70c32017-06-14 21:23:57 +00001192template <class _Tp, class = void>
1193struct __has_propagate_on_container_move_assignment : false_type {};
1194
Howard Hinnantc51e1022010-05-11 19:42:16 +00001195template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001196struct __has_propagate_on_container_move_assignment<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001197 typename __void_t<typename _Tp::propagate_on_container_move_assignment>::type>
1198 : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001199
1200template <class _Alloc, bool = __has_propagate_on_container_move_assignment<_Alloc>::value>
1201struct __propagate_on_container_move_assignment
1202{
1203 typedef false_type type;
1204};
1205
1206template <class _Alloc>
1207struct __propagate_on_container_move_assignment<_Alloc, true>
1208{
1209 typedef typename _Alloc::propagate_on_container_move_assignment type;
1210};
1211
Marshall Clow0be70c32017-06-14 21:23:57 +00001212template <class _Tp, class = void>
1213struct __has_propagate_on_container_swap : false_type {};
1214
Howard Hinnantc51e1022010-05-11 19:42:16 +00001215template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001216struct __has_propagate_on_container_swap<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001217 typename __void_t<typename _Tp::propagate_on_container_swap>::type>
1218 : true_type {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001219
1220template <class _Alloc, bool = __has_propagate_on_container_swap<_Alloc>::value>
1221struct __propagate_on_container_swap
1222{
1223 typedef false_type type;
1224};
1225
1226template <class _Alloc>
1227struct __propagate_on_container_swap<_Alloc, true>
1228{
1229 typedef typename _Alloc::propagate_on_container_swap type;
1230};
1231
Marshall Clow0be70c32017-06-14 21:23:57 +00001232template <class _Tp, class = void>
1233struct __has_is_always_equal : false_type {};
1234
Marshall Clow0b587562015-06-02 16:34:03 +00001235template <class _Tp>
Aditya Kumar7c5db692017-08-20 10:38:55 +00001236struct __has_is_always_equal<_Tp,
Marshall Clow0be70c32017-06-14 21:23:57 +00001237 typename __void_t<typename _Tp::is_always_equal>::type>
1238 : true_type {};
Marshall Clow0b587562015-06-02 16:34:03 +00001239
1240template <class _Alloc, bool = __has_is_always_equal<_Alloc>::value>
1241struct __is_always_equal
1242{
1243 typedef typename _VSTD::is_empty<_Alloc>::type type;
1244};
1245
1246template <class _Alloc>
1247struct __is_always_equal<_Alloc, true>
1248{
1249 typedef typename _Alloc::is_always_equal type;
1250};
1251
Howard Hinnantc51e1022010-05-11 19:42:16 +00001252template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
1253struct __has_rebind_other
1254{
1255private:
Howard Hinnant49e145e2012-10-30 19:06:59 +00001256 struct __two {char __lx; char __lxx;};
Howard Hinnantc51e1022010-05-11 19:42:16 +00001257 template <class _Xp> static __two __test(...);
1258 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>::other* = 0);
1259public:
1260 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1261};
1262
1263template <class _Tp, class _Up>
1264struct __has_rebind_other<_Tp, _Up, false>
1265{
1266 static const bool value = false;
1267};
1268
1269template <class _Tp, class _Up, bool = __has_rebind_other<_Tp, _Up>::value>
1270struct __allocator_traits_rebind
1271{
1272 typedef typename _Tp::template rebind<_Up>::other type;
1273};
1274
1275#ifndef _LIBCPP_HAS_NO_VARIADICS
1276
1277template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1278struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, true>
1279{
1280 typedef typename _Alloc<_Tp, _Args...>::template rebind<_Up>::other type;
1281};
1282
1283template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1284struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, false>
1285{
1286 typedef _Alloc<_Up, _Args...> type;
1287};
1288
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001289#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001290
1291template <template <class> class _Alloc, class _Tp, class _Up>
1292struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, true>
1293{
1294 typedef typename _Alloc<_Tp>::template rebind<_Up>::other type;
1295};
1296
1297template <template <class> class _Alloc, class _Tp, class _Up>
1298struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, false>
1299{
1300 typedef _Alloc<_Up> type;
1301};
1302
Howard Hinnantc51e1022010-05-11 19:42:16 +00001303template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1304struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, true>
1305{
1306 typedef typename _Alloc<_Tp, _A0>::template rebind<_Up>::other type;
1307};
1308
1309template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1310struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, false>
1311{
1312 typedef _Alloc<_Up, _A0> type;
1313};
1314
Howard Hinnantc51e1022010-05-11 19:42:16 +00001315template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1316 class _A1, class _Up>
1317struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, true>
1318{
1319 typedef typename _Alloc<_Tp, _A0, _A1>::template rebind<_Up>::other type;
1320};
1321
1322template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1323 class _A1, class _Up>
1324struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, false>
1325{
1326 typedef _Alloc<_Up, _A0, _A1> type;
1327};
1328
Howard Hinnantc51e1022010-05-11 19:42:16 +00001329template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1330 class _A1, class _A2, class _Up>
1331struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, true>
1332{
1333 typedef typename _Alloc<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
1334};
1335
1336template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1337 class _A1, class _A2, class _Up>
1338struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, false>
1339{
1340 typedef _Alloc<_Up, _A0, _A1, _A2> type;
1341};
1342
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001343#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001344
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001345#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001346
1347template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1348auto
1349__has_allocate_hint_test(_Alloc&& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
Eric Fiselierbe4cb612017-09-15 00:31:38 +00001350 -> decltype((void)__a.allocate(__sz, __p), true_type());
Howard Hinnantc51e1022010-05-11 19:42:16 +00001351
1352template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1353auto
1354__has_allocate_hint_test(const _Alloc& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1355 -> false_type;
1356
1357template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1358struct __has_allocate_hint
1359 : integral_constant<bool,
1360 is_same<
Eric Fiselierbe4cb612017-09-15 00:31:38 +00001361 decltype(_VSTD::__has_allocate_hint_test(declval<_Alloc>(),
Howard Hinnantc51e1022010-05-11 19:42:16 +00001362 declval<_SizeType>(),
1363 declval<_ConstVoidPtr>())),
1364 true_type>::value>
1365{
1366};
1367
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001368#else // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001369
1370template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1371struct __has_allocate_hint
1372 : true_type
1373{
1374};
1375
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001376#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001377
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001378#if !defined(_LIBCPP_CXX03_LANG)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001379
1380template <class _Alloc, class _Tp, class ..._Args>
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001381decltype(_VSTD::declval<_Alloc>().construct(_VSTD::declval<_Tp*>(),
1382 _VSTD::declval<_Args>()...),
Howard Hinnantc51e1022010-05-11 19:42:16 +00001383 true_type())
1384__has_construct_test(_Alloc&& __a, _Tp* __p, _Args&& ...__args);
1385
1386template <class _Alloc, class _Pointer, class ..._Args>
1387false_type
1388__has_construct_test(const _Alloc& __a, _Pointer&& __p, _Args&& ...__args);
1389
1390template <class _Alloc, class _Pointer, class ..._Args>
1391struct __has_construct
1392 : integral_constant<bool,
1393 is_same<
Eric Fiselierbe4cb612017-09-15 00:31:38 +00001394 decltype(_VSTD::__has_construct_test(declval<_Alloc>(),
Howard Hinnantc51e1022010-05-11 19:42:16 +00001395 declval<_Pointer>(),
1396 declval<_Args>()...)),
1397 true_type>::value>
1398{
1399};
1400
1401template <class _Alloc, class _Pointer>
1402auto
1403__has_destroy_test(_Alloc&& __a, _Pointer&& __p)
1404 -> decltype(__a.destroy(__p), true_type());
1405
1406template <class _Alloc, class _Pointer>
1407auto
1408__has_destroy_test(const _Alloc& __a, _Pointer&& __p)
1409 -> false_type;
1410
1411template <class _Alloc, class _Pointer>
1412struct __has_destroy
1413 : integral_constant<bool,
1414 is_same<
Eric Fiselierbe4cb612017-09-15 00:31:38 +00001415 decltype(_VSTD::__has_destroy_test(declval<_Alloc>(),
Howard Hinnantc51e1022010-05-11 19:42:16 +00001416 declval<_Pointer>())),
1417 true_type>::value>
1418{
1419};
1420
1421template <class _Alloc>
1422auto
1423__has_max_size_test(_Alloc&& __a)
1424 -> decltype(__a.max_size(), true_type());
1425
1426template <class _Alloc>
1427auto
1428__has_max_size_test(const volatile _Alloc& __a)
1429 -> false_type;
1430
1431template <class _Alloc>
1432struct __has_max_size
1433 : integral_constant<bool,
1434 is_same<
Eric Fiselierbe4cb612017-09-15 00:31:38 +00001435 decltype(_VSTD::__has_max_size_test(declval<_Alloc&>())),
Howard Hinnantc51e1022010-05-11 19:42:16 +00001436 true_type>::value>
1437{
1438};
1439
1440template <class _Alloc>
1441auto
1442__has_select_on_container_copy_construction_test(_Alloc&& __a)
1443 -> decltype(__a.select_on_container_copy_construction(), true_type());
1444
1445template <class _Alloc>
1446auto
1447__has_select_on_container_copy_construction_test(const volatile _Alloc& __a)
1448 -> false_type;
1449
1450template <class _Alloc>
1451struct __has_select_on_container_copy_construction
1452 : integral_constant<bool,
1453 is_same<
Eric Fiselierbe4cb612017-09-15 00:31:38 +00001454 decltype(_VSTD::__has_select_on_container_copy_construction_test(declval<_Alloc&>())),
Howard Hinnantc51e1022010-05-11 19:42:16 +00001455 true_type>::value>
1456{
1457};
1458
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001459#else // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001460
1461#ifndef _LIBCPP_HAS_NO_VARIADICS
1462
1463template <class _Alloc, class _Pointer, class ..._Args>
1464struct __has_construct
1465 : false_type
1466{
1467};
1468
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001469#else // _LIBCPP_HAS_NO_VARIADICS
1470
1471template <class _Alloc, class _Pointer, class _Args>
1472struct __has_construct
1473 : false_type
1474{
1475};
1476
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001477#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001478
1479template <class _Alloc, class _Pointer>
1480struct __has_destroy
1481 : false_type
1482{
1483};
1484
1485template <class _Alloc>
1486struct __has_max_size
1487 : true_type
1488{
1489};
1490
1491template <class _Alloc>
1492struct __has_select_on_container_copy_construction
1493 : false_type
1494{
1495};
1496
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001497#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001498
Howard Hinnant8e4e6002010-11-18 01:40:00 +00001499template <class _Alloc, class _Ptr, bool = __has_difference_type<_Alloc>::value>
1500struct __alloc_traits_difference_type
1501{
1502 typedef typename pointer_traits<_Ptr>::difference_type type;
1503};
1504
1505template <class _Alloc, class _Ptr>
1506struct __alloc_traits_difference_type<_Alloc, _Ptr, true>
1507{
1508 typedef typename _Alloc::difference_type type;
1509};
1510
Howard Hinnantc51e1022010-05-11 19:42:16 +00001511template <class _Alloc>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00001512struct _LIBCPP_TEMPLATE_VIS allocator_traits
Howard Hinnantc51e1022010-05-11 19:42:16 +00001513{
1514 typedef _Alloc allocator_type;
1515 typedef typename allocator_type::value_type value_type;
1516
1517 typedef typename __pointer_type<value_type, allocator_type>::type pointer;
1518 typedef typename __const_pointer<value_type, pointer, allocator_type>::type const_pointer;
1519 typedef typename __void_pointer<pointer, allocator_type>::type void_pointer;
1520 typedef typename __const_void_pointer<pointer, allocator_type>::type const_void_pointer;
1521
Howard Hinnant8e4e6002010-11-18 01:40:00 +00001522 typedef typename __alloc_traits_difference_type<allocator_type, pointer>::type difference_type;
1523 typedef typename __size_type<allocator_type, difference_type>::type size_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001524
1525 typedef typename __propagate_on_container_copy_assignment<allocator_type>::type
1526 propagate_on_container_copy_assignment;
1527 typedef typename __propagate_on_container_move_assignment<allocator_type>::type
1528 propagate_on_container_move_assignment;
1529 typedef typename __propagate_on_container_swap<allocator_type>::type
1530 propagate_on_container_swap;
Marshall Clow0b587562015-06-02 16:34:03 +00001531 typedef typename __is_always_equal<allocator_type>::type
1532 is_always_equal;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001533
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001534#ifndef _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001535 template <class _Tp> using rebind_alloc =
Howard Hinnantf09283d2011-05-11 20:21:19 +00001536 typename __allocator_traits_rebind<allocator_type, _Tp>::type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00001537 template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001538#else // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001539 template <class _Tp> struct rebind_alloc
1540 {typedef typename __allocator_traits_rebind<allocator_type, _Tp>::type other;};
1541 template <class _Tp> struct rebind_traits
1542 {typedef allocator_traits<typename rebind_alloc<_Tp>::other> other;};
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001543#endif // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00001544
Marshall Clow0e58cae2017-11-26 02:55:38 +00001545 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001546 static pointer allocate(allocator_type& __a, size_type __n)
1547 {return __a.allocate(__n);}
Marshall Clow0e58cae2017-11-26 02:55:38 +00001548 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001549 static pointer allocate(allocator_type& __a, size_type __n, const_void_pointer __hint)
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00001550 {return __allocate(__a, __n, __hint,
Howard Hinnantc51e1022010-05-11 19:42:16 +00001551 __has_allocate_hint<allocator_type, size_type, const_void_pointer>());}
1552
Howard Hinnant756c69b2010-09-22 16:48:34 +00001553 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00001554 static void deallocate(allocator_type& __a, pointer __p, size_type __n) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00001555 {__a.deallocate(__p, __n);}
1556
1557#ifndef _LIBCPP_HAS_NO_VARIADICS
1558 template <class _Tp, class... _Args>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001559 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001560 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args)
Marshall Clow3996b8b2014-11-11 19:22:33 +00001561 {__construct(__has_construct<allocator_type, _Tp*, _Args...>(),
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001562 __a, __p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001563#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001564 template <class _Tp>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001565 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2b2ec3e2017-01-14 01:33:53 +00001566 static void construct(allocator_type&, _Tp* __p)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001567 {
1568 ::new ((void*)__p) _Tp();
1569 }
1570 template <class _Tp, class _A0>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001571 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2b2ec3e2017-01-14 01:33:53 +00001572 static void construct(allocator_type&, _Tp* __p, const _A0& __a0)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001573 {
1574 ::new ((void*)__p) _Tp(__a0);
1575 }
1576 template <class _Tp, class _A0, class _A1>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001577 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2b2ec3e2017-01-14 01:33:53 +00001578 static void construct(allocator_type&, _Tp* __p, const _A0& __a0,
Howard Hinnantc51e1022010-05-11 19:42:16 +00001579 const _A1& __a1)
1580 {
1581 ::new ((void*)__p) _Tp(__a0, __a1);
1582 }
1583 template <class _Tp, class _A0, class _A1, class _A2>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001584 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2b2ec3e2017-01-14 01:33:53 +00001585 static void construct(allocator_type&, _Tp* __p, const _A0& __a0,
Howard Hinnantc51e1022010-05-11 19:42:16 +00001586 const _A1& __a1, const _A2& __a2)
1587 {
1588 ::new ((void*)__p) _Tp(__a0, __a1, __a2);
1589 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001590#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001591
1592 template <class _Tp>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001593 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001594 static void destroy(allocator_type& __a, _Tp* __p)
1595 {__destroy(__has_destroy<allocator_type, _Tp*>(), __a, __p);}
1596
Howard Hinnant756c69b2010-09-22 16:48:34 +00001597 _LIBCPP_INLINE_VISIBILITY
Marshall Clow4f834b52013-08-27 20:22:15 +00001598 static size_type max_size(const allocator_type& __a) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00001599 {return __max_size(__has_max_size<const allocator_type>(), __a);}
1600
Howard Hinnant756c69b2010-09-22 16:48:34 +00001601 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001602 static allocator_type
1603 select_on_container_copy_construction(const allocator_type& __a)
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00001604 {return __select_on_container_copy_construction(
Howard Hinnantc51e1022010-05-11 19:42:16 +00001605 __has_select_on_container_copy_construction<const allocator_type>(),
1606 __a);}
1607
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001608 template <class _Ptr>
1609 _LIBCPP_INLINE_VISIBILITY
1610 static
1611 void
1612 __construct_forward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __begin2)
1613 {
1614 for (; __begin1 != __end1; ++__begin1, ++__begin2)
1615 construct(__a, _VSTD::__to_raw_pointer(__begin2), _VSTD::move_if_noexcept(*__begin1));
1616 }
1617
1618 template <class _Tp>
1619 _LIBCPP_INLINE_VISIBILITY
1620 static
1621 typename enable_if
1622 <
1623 (is_same<allocator_type, allocator<_Tp> >::value
1624 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1625 is_trivially_move_constructible<_Tp>::value,
1626 void
1627 >::type
Eric Fiselier6003c772016-12-23 23:37:52 +00001628 __construct_forward(allocator_type&, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2)
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001629 {
1630 ptrdiff_t _Np = __end1 - __begin1;
Marshall Clow4907e8f2015-05-31 03:13:31 +00001631 if (_Np > 0)
Marshall Clow426d6d22015-06-02 13:04:18 +00001632 {
Marshall Clow4907e8f2015-05-31 03:13:31 +00001633 _VSTD::memcpy(__begin2, __begin1, _Np * sizeof(_Tp));
Marshall Clow426d6d22015-06-02 13:04:18 +00001634 __begin2 += _Np;
1635 }
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001636 }
1637
Eric Fiselieracfe6f02015-03-31 16:54:19 +00001638 template <class _Iter, class _Ptr>
1639 _LIBCPP_INLINE_VISIBILITY
1640 static
1641 void
1642 __construct_range_forward(allocator_type& __a, _Iter __begin1, _Iter __end1, _Ptr& __begin2)
1643 {
1644 for (; __begin1 != __end1; ++__begin1, (void) ++__begin2)
1645 construct(__a, _VSTD::__to_raw_pointer(__begin2), *__begin1);
1646 }
1647
1648 template <class _Tp>
1649 _LIBCPP_INLINE_VISIBILITY
1650 static
1651 typename enable_if
1652 <
1653 (is_same<allocator_type, allocator<_Tp> >::value
1654 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1655 is_trivially_move_constructible<_Tp>::value,
1656 void
1657 >::type
Eric Fiselier6003c772016-12-23 23:37:52 +00001658 __construct_range_forward(allocator_type&, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2)
Eric Fiselieracfe6f02015-03-31 16:54:19 +00001659 {
1660 typedef typename remove_const<_Tp>::type _Vp;
1661 ptrdiff_t _Np = __end1 - __begin1;
Marshall Clow4907e8f2015-05-31 03:13:31 +00001662 if (_Np > 0)
Marshall Clow426d6d22015-06-02 13:04:18 +00001663 {
Marshall Clow4907e8f2015-05-31 03:13:31 +00001664 _VSTD::memcpy(const_cast<_Vp*>(__begin2), __begin1, _Np * sizeof(_Tp));
Marshall Clow426d6d22015-06-02 13:04:18 +00001665 __begin2 += _Np;
1666 }
Eric Fiselieracfe6f02015-03-31 16:54:19 +00001667 }
1668
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001669 template <class _Ptr>
1670 _LIBCPP_INLINE_VISIBILITY
1671 static
1672 void
1673 __construct_backward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __end2)
1674 {
1675 while (__end1 != __begin1)
Howard Hinnant5adee4c2013-01-11 20:36:59 +00001676 {
1677 construct(__a, _VSTD::__to_raw_pointer(__end2-1), _VSTD::move_if_noexcept(*--__end1));
1678 --__end2;
1679 }
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001680 }
1681
1682 template <class _Tp>
1683 _LIBCPP_INLINE_VISIBILITY
1684 static
1685 typename enable_if
1686 <
1687 (is_same<allocator_type, allocator<_Tp> >::value
1688 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1689 is_trivially_move_constructible<_Tp>::value,
1690 void
1691 >::type
Eric Fiselier6003c772016-12-23 23:37:52 +00001692 __construct_backward(allocator_type&, _Tp* __begin1, _Tp* __end1, _Tp*& __end2)
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001693 {
1694 ptrdiff_t _Np = __end1 - __begin1;
1695 __end2 -= _Np;
Marshall Clow4907e8f2015-05-31 03:13:31 +00001696 if (_Np > 0)
1697 _VSTD::memcpy(__end2, __begin1, _Np * sizeof(_Tp));
Howard Hinnantd2cab2f2012-02-15 00:41:34 +00001698 }
1699
Howard Hinnantc51e1022010-05-11 19:42:16 +00001700private:
1701
Howard Hinnant756c69b2010-09-22 16:48:34 +00001702 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00001703 static pointer __allocate(allocator_type& __a, size_type __n,
Howard Hinnantc51e1022010-05-11 19:42:16 +00001704 const_void_pointer __hint, true_type)
1705 {return __a.allocate(__n, __hint);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001706 _LIBCPP_INLINE_VISIBILITY
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00001707 static pointer __allocate(allocator_type& __a, size_type __n,
Howard Hinnant28b24882011-12-01 20:21:04 +00001708 const_void_pointer, false_type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001709 {return __a.allocate(__n);}
1710
1711#ifndef _LIBCPP_HAS_NO_VARIADICS
1712 template <class _Tp, class... _Args>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001713 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001714 static void __construct(true_type, allocator_type& __a, _Tp* __p, _Args&&... __args)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001715 {__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001716 template <class _Tp, class... _Args>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001717 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001718 static void __construct(false_type, allocator_type&, _Tp* __p, _Args&&... __args)
1719 {
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001720 ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001721 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +00001722#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantc51e1022010-05-11 19:42:16 +00001723
1724 template <class _Tp>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001725 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001726 static void __destroy(true_type, allocator_type& __a, _Tp* __p)
1727 {__a.destroy(__p);}
1728 template <class _Tp>
Howard Hinnant756c69b2010-09-22 16:48:34 +00001729 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001730 static void __destroy(false_type, allocator_type&, _Tp* __p)
1731 {
1732 __p->~_Tp();
1733 }
1734
Howard Hinnant756c69b2010-09-22 16:48:34 +00001735 _LIBCPP_INLINE_VISIBILITY
Marshall Clowf817a352017-12-05 15:56:26 +00001736 static size_type __max_size(true_type, const allocator_type& __a) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00001737 {return __a.max_size();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001738 _LIBCPP_INLINE_VISIBILITY
Marshall Clowf817a352017-12-05 15:56:26 +00001739 static size_type __max_size(false_type, const allocator_type&) _NOEXCEPT
Marshall Clow33daa162015-10-25 19:34:04 +00001740 {return numeric_limits<size_type>::max() / sizeof(value_type);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001741
Howard Hinnant756c69b2010-09-22 16:48:34 +00001742 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001743 static allocator_type
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00001744 __select_on_container_copy_construction(true_type, const allocator_type& __a)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001745 {return __a.select_on_container_copy_construction();}
Howard Hinnant756c69b2010-09-22 16:48:34 +00001746 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00001747 static allocator_type
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00001748 __select_on_container_copy_construction(false_type, const allocator_type& __a)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001749 {return __a;}
1750};
1751
Marshall Clow940e01c2015-04-07 05:21:38 +00001752template <class _Traits, class _Tp>
1753struct __rebind_alloc_helper
1754{
Eric Fiselierc6f17cc2016-09-25 03:34:28 +00001755#ifndef _LIBCPP_CXX03_LANG
Marshall Clow35cde742015-05-10 13:59:45 +00001756 typedef typename _Traits::template rebind_alloc<_Tp> type;
Marshall Clow940e01c2015-04-07 05:21:38 +00001757#else
1758 typedef typename _Traits::template rebind_alloc<_Tp>::other type;
1759#endif
1760};
1761
Howard Hinnantc51e1022010-05-11 19:42:16 +00001762// allocator
1763
1764template <class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00001765class _LIBCPP_TEMPLATE_VIS allocator
Howard Hinnantc51e1022010-05-11 19:42:16 +00001766{
1767public:
1768 typedef size_t size_type;
1769 typedef ptrdiff_t difference_type;
1770 typedef _Tp* pointer;
1771 typedef const _Tp* const_pointer;
1772 typedef _Tp& reference;
1773 typedef const _Tp& const_reference;
1774 typedef _Tp value_type;
1775
Howard Hinnant4931e092011-06-02 21:38:57 +00001776 typedef true_type propagate_on_container_move_assignment;
Marshall Clow0b587562015-06-02 16:34:03 +00001777 typedef true_type is_always_equal;
Howard Hinnant4931e092011-06-02 21:38:57 +00001778
Howard Hinnantc51e1022010-05-11 19:42:16 +00001779 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1780
Howard Hinnant719bda32011-05-28 14:41:13 +00001781 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1782 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1783 _LIBCPP_INLINE_VISIBILITY pointer address(reference __x) const _NOEXCEPT
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001784 {return _VSTD::addressof(__x);}
Howard Hinnant719bda32011-05-28 14:41:13 +00001785 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001786 {return _VSTD::addressof(__x);}
Marshall Clow0e58cae2017-11-26 02:55:38 +00001787 _LIBCPP_NODISCARD_AFTER_CXX17 _LIBCPP_INLINE_VISIBILITY
1788 pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
Marshall Clow813ffb32016-03-03 12:04:39 +00001789 {
1790 if (__n > max_size())
Marshall Clowed3e2292016-08-25 17:47:09 +00001791 __throw_length_error("allocator<T>::allocate(size_t n)"
1792 " 'n' exceeds maximum supported size");
Marshall Clow813ffb32016-03-03 12:04:39 +00001793 return static_cast<pointer>(_VSTD::__allocate(__n * sizeof(_Tp)));
1794 }
Howard Hinnant719bda32011-05-28 14:41:13 +00001795 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
Eric Fiselier8122fda2017-01-07 03:01:24 +00001796 {_VSTD::__libcpp_deallocate((void*)__p);}
Howard Hinnant719bda32011-05-28 14:41:13 +00001797 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1798 {return size_type(~0) / sizeof(_Tp);}
Howard Hinnant74279a52010-09-04 23:28:19 +00001799#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001800 template <class _Up, class... _Args>
1801 _LIBCPP_INLINE_VISIBILITY
1802 void
1803 construct(_Up* __p, _Args&&... __args)
1804 {
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00001805 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00001806 }
Howard Hinnant74279a52010-09-04 23:28:19 +00001807#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001808 _LIBCPP_INLINE_VISIBILITY
1809 void
1810 construct(pointer __p)
1811 {
1812 ::new((void*)__p) _Tp();
1813 }
Michael J. Spencer8d8164e2010-12-10 19:47:54 +00001814# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant9e028f12012-05-01 15:37:54 +00001815
Howard Hinnantc51e1022010-05-11 19:42:16 +00001816 template <class _A0>
1817 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9e028f12012-05-01 15:37:54 +00001818 void
Howard Hinnantc51e1022010-05-11 19:42:16 +00001819 construct(pointer __p, _A0& __a0)
1820 {
1821 ::new((void*)__p) _Tp(__a0);
1822 }
1823 template <class _A0>
1824 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9e028f12012-05-01 15:37:54 +00001825 void
Howard Hinnantc51e1022010-05-11 19:42:16 +00001826 construct(pointer __p, const _A0& __a0)
1827 {
1828 ::new((void*)__p) _Tp(__a0);
1829 }
Michael J. Spencer8d8164e2010-12-10 19:47:54 +00001830# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001831 template <class _A0, class _A1>
1832 _LIBCPP_INLINE_VISIBILITY
1833 void
1834 construct(pointer __p, _A0& __a0, _A1& __a1)
1835 {
1836 ::new((void*)__p) _Tp(__a0, __a1);
1837 }
1838 template <class _A0, class _A1>
1839 _LIBCPP_INLINE_VISIBILITY
1840 void
1841 construct(pointer __p, const _A0& __a0, _A1& __a1)
1842 {
1843 ::new((void*)__p) _Tp(__a0, __a1);
1844 }
1845 template <class _A0, class _A1>
1846 _LIBCPP_INLINE_VISIBILITY
1847 void
1848 construct(pointer __p, _A0& __a0, const _A1& __a1)
1849 {
1850 ::new((void*)__p) _Tp(__a0, __a1);
1851 }
1852 template <class _A0, class _A1>
1853 _LIBCPP_INLINE_VISIBILITY
1854 void
1855 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1856 {
1857 ::new((void*)__p) _Tp(__a0, __a1);
1858 }
Howard Hinnant74279a52010-09-04 23:28:19 +00001859#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantc51e1022010-05-11 19:42:16 +00001860 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1861};
1862
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001863template <class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00001864class _LIBCPP_TEMPLATE_VIS allocator<const _Tp>
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001865{
1866public:
1867 typedef size_t size_type;
1868 typedef ptrdiff_t difference_type;
1869 typedef const _Tp* pointer;
1870 typedef const _Tp* const_pointer;
1871 typedef const _Tp& reference;
1872 typedef const _Tp& const_reference;
Howard Hinnant9bc95e22013-06-07 01:56:37 +00001873 typedef const _Tp value_type;
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001874
1875 typedef true_type propagate_on_container_move_assignment;
Marshall Clowac12fcc2015-07-01 21:23:40 +00001876 typedef true_type is_always_equal;
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001877
1878 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1879
1880 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1881 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1882 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
1883 {return _VSTD::addressof(__x);}
1884 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
Marshall Clow813ffb32016-03-03 12:04:39 +00001885 {
1886 if (__n > max_size())
Marshall Clowed3e2292016-08-25 17:47:09 +00001887 __throw_length_error("allocator<const T>::allocate(size_t n)"
1888 " 'n' exceeds maximum supported size");
Marshall Clow813ffb32016-03-03 12:04:39 +00001889 return static_cast<pointer>(_VSTD::__allocate(__n * sizeof(_Tp)));
Eric Fiselier2db2bd52016-05-07 03:12:24 +00001890 }
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001891 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
Marshall Clow31350ab2017-06-14 16:54:43 +00001892 {_VSTD::__libcpp_deallocate((void*) const_cast<_Tp *>(__p));}
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001893 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1894 {return size_type(~0) / sizeof(_Tp);}
1895#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1896 template <class _Up, class... _Args>
1897 _LIBCPP_INLINE_VISIBILITY
1898 void
1899 construct(_Up* __p, _Args&&... __args)
1900 {
1901 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
1902 }
1903#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1904 _LIBCPP_INLINE_VISIBILITY
1905 void
1906 construct(pointer __p)
1907 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001908 ::new((void*) const_cast<_Tp *>(__p)) _Tp();
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001909 }
1910# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant9e028f12012-05-01 15:37:54 +00001911
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001912 template <class _A0>
1913 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9e028f12012-05-01 15:37:54 +00001914 void
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001915 construct(pointer __p, _A0& __a0)
1916 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001917 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0);
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001918 }
1919 template <class _A0>
1920 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9e028f12012-05-01 15:37:54 +00001921 void
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001922 construct(pointer __p, const _A0& __a0)
1923 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001924 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0);
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001925 }
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001926# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1927 template <class _A0, class _A1>
1928 _LIBCPP_INLINE_VISIBILITY
1929 void
1930 construct(pointer __p, _A0& __a0, _A1& __a1)
1931 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001932 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001933 }
1934 template <class _A0, class _A1>
1935 _LIBCPP_INLINE_VISIBILITY
1936 void
1937 construct(pointer __p, const _A0& __a0, _A1& __a1)
1938 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001939 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001940 }
1941 template <class _A0, class _A1>
1942 _LIBCPP_INLINE_VISIBILITY
1943 void
1944 construct(pointer __p, _A0& __a0, const _A1& __a1)
1945 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001946 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001947 }
1948 template <class _A0, class _A1>
1949 _LIBCPP_INLINE_VISIBILITY
1950 void
1951 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1952 {
Marshall Clow31350ab2017-06-14 16:54:43 +00001953 ::new((void*) const_cast<_Tp *>(__p)) _Tp(__a0, __a1);
Howard Hinnant741c8fa2012-01-02 17:56:02 +00001954 }
1955#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1956 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1957};
1958
Howard Hinnantc51e1022010-05-11 19:42:16 +00001959template <class _Tp, class _Up>
1960inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00001961bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001962
1963template <class _Tp, class _Up>
1964inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00001965bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
Howard Hinnantc51e1022010-05-11 19:42:16 +00001966
1967template <class _OutputIterator, class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00001968class _LIBCPP_TEMPLATE_VIS raw_storage_iterator
Howard Hinnantc51e1022010-05-11 19:42:16 +00001969 : public iterator<output_iterator_tag,
1970 _Tp, // purposefully not C++03
1971 ptrdiff_t, // purposefully not C++03
1972 _Tp*, // purposefully not C++03
1973 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1974{
1975private:
1976 _OutputIterator __x_;
1977public:
1978 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
1979 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
1980 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
1981 {::new(&*__x_) _Tp(__element); return *this;}
Marshall Clow5c3f09e2015-10-25 18:58:07 +00001982#if _LIBCPP_STD_VER >= 14
1983 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(_Tp&& __element)
1984 {::new(&*__x_) _Tp(_VSTD::move(__element)); return *this;}
1985#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00001986 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
1987 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
1988 {raw_storage_iterator __t(*this); ++__x_; return __t;}
Marshall Clowb949f1b2015-05-10 13:14:08 +00001989#if _LIBCPP_STD_VER >= 14
Aditya Kumar7c5db692017-08-20 10:38:55 +00001990 _LIBCPP_INLINE_VISIBILITY _OutputIterator base() const { return __x_; }
Marshall Clowb949f1b2015-05-10 13:14:08 +00001991#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00001992};
1993
1994template <class _Tp>
Peter Collingbournecd000192018-01-17 19:32:35 +00001995_LIBCPP_NO_CFI
Howard Hinnantc51e1022010-05-11 19:42:16 +00001996pair<_Tp*, ptrdiff_t>
Howard Hinnant719bda32011-05-28 14:41:13 +00001997get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00001998{
1999 pair<_Tp*, ptrdiff_t> __r(0, 0);
2000 const ptrdiff_t __m = (~ptrdiff_t(0) ^
2001 ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1)))
2002 / sizeof(_Tp);
2003 if (__n > __m)
2004 __n = __m;
2005 while (__n > 0)
2006 {
2007 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
2008 if (__r.first)
2009 {
2010 __r.second = __n;
2011 break;
2012 }
2013 __n /= 2;
2014 }
2015 return __r;
2016}
2017
2018template <class _Tp>
2019inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00002020void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002021
Marshall Clowb22274f2017-01-24 22:22:33 +00002022#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnantc51e1022010-05-11 19:42:16 +00002023template <class _Tp>
2024struct auto_ptr_ref
2025{
2026 _Tp* __ptr_;
2027};
2028
2029template<class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00002030class _LIBCPP_TEMPLATE_VIS auto_ptr
Howard Hinnantc51e1022010-05-11 19:42:16 +00002031{
2032private:
2033 _Tp* __ptr_;
2034public:
2035 typedef _Tp element_type;
2036
2037 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}
2038 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}
2039 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw()
2040 : __ptr_(__p.release()) {}
2041 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw()
2042 {reset(__p.release()); return *this;}
2043 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw()
2044 {reset(__p.release()); return *this;}
2045 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()
2046 {reset(__p.__ptr_); return *this;}
2047 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}
2048
2049 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw()
2050 {return *__ptr_;}
2051 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}
2052 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}
2053 _LIBCPP_INLINE_VISIBILITY _Tp* release() throw()
2054 {
2055 _Tp* __t = __ptr_;
2056 __ptr_ = 0;
2057 return __t;
2058 }
2059 _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw()
2060 {
2061 if (__ptr_ != __p)
2062 delete __ptr_;
2063 __ptr_ = __p;
2064 }
2065
2066 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}
2067 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()
2068 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
2069 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw()
2070 {return auto_ptr<_Up>(release());}
2071};
2072
2073template <>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00002074class _LIBCPP_TEMPLATE_VIS auto_ptr<void>
Howard Hinnantc51e1022010-05-11 19:42:16 +00002075{
2076public:
2077 typedef void element_type;
2078};
Marshall Clowb22274f2017-01-24 22:22:33 +00002079#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002080
Eric Fiselier9d355982017-04-12 23:45:53 +00002081template <class _Tp, int _Idx,
2082 bool _CanBeEmptyBase =
2083 is_empty<_Tp>::value && !__libcpp_is_final<_Tp>::value>
2084struct __compressed_pair_elem {
2085 typedef _Tp _ParamT;
2086 typedef _Tp& reference;
2087 typedef const _Tp& const_reference;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002088
Eric Fiselier9d355982017-04-12 23:45:53 +00002089#ifndef _LIBCPP_CXX03_LANG
Alex Lorenz76132112017-11-09 17:54:49 +00002090 _LIBCPP_INLINE_VISIBILITY constexpr __compressed_pair_elem() : __value_() {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002091
Eric Fiselier9d355982017-04-12 23:45:53 +00002092 template <class _Up, class = typename enable_if<
Eric Fiselier209ecde2017-04-17 22:32:02 +00002093 !is_same<__compressed_pair_elem, typename decay<_Up>::type>::value
2094 >::type>
Alex Lorenz76132112017-11-09 17:54:49 +00002095 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier209ecde2017-04-17 22:32:02 +00002096 constexpr explicit
Eric Fiselier9d355982017-04-12 23:45:53 +00002097 __compressed_pair_elem(_Up&& __u)
2098 : __value_(_VSTD::forward<_Up>(__u)){};
Howard Hinnantc51e1022010-05-11 19:42:16 +00002099
Eric Fiselier9d355982017-04-12 23:45:53 +00002100 template <class... _Args, size_t... _Indexes>
2101 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
2102 __compressed_pair_elem(piecewise_construct_t, tuple<_Args...> __args,
2103 __tuple_indices<_Indexes...>)
2104 : __value_(_VSTD::forward<_Args>(_VSTD::get<_Indexes>(__args))...) {}
2105#else
Alex Lorenz76132112017-11-09 17:54:49 +00002106 _LIBCPP_INLINE_VISIBILITY __compressed_pair_elem() : __value_() {}
2107 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9d355982017-04-12 23:45:53 +00002108 __compressed_pair_elem(_ParamT __p) : __value_(std::forward<_ParamT>(__p)) {}
2109#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002110
Alex Lorenz76132112017-11-09 17:54:49 +00002111 _LIBCPP_INLINE_VISIBILITY reference __get() _NOEXCEPT { return __value_; }
2112 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9d355982017-04-12 23:45:53 +00002113 const_reference __get() const _NOEXCEPT { return __value_; }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002114
Howard Hinnantc51e1022010-05-11 19:42:16 +00002115private:
Eric Fiselier9d355982017-04-12 23:45:53 +00002116 _Tp __value_;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002117};
2118
Eric Fiselier9d355982017-04-12 23:45:53 +00002119template <class _Tp, int _Idx>
2120struct __compressed_pair_elem<_Tp, _Idx, true> : private _Tp {
2121 typedef _Tp _ParamT;
2122 typedef _Tp& reference;
2123 typedef const _Tp& const_reference;
2124 typedef _Tp __value_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002125
Eric Fiselier9d355982017-04-12 23:45:53 +00002126#ifndef _LIBCPP_CXX03_LANG
Alex Lorenz76132112017-11-09 17:54:49 +00002127 _LIBCPP_INLINE_VISIBILITY constexpr __compressed_pair_elem() = default;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002128
Eric Fiselier9d355982017-04-12 23:45:53 +00002129 template <class _Up, class = typename enable_if<
Eric Fiselier209ecde2017-04-17 22:32:02 +00002130 !is_same<__compressed_pair_elem, typename decay<_Up>::type>::value
2131 >::type>
Alex Lorenz76132112017-11-09 17:54:49 +00002132 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier209ecde2017-04-17 22:32:02 +00002133 constexpr explicit
Eric Fiselier9d355982017-04-12 23:45:53 +00002134 __compressed_pair_elem(_Up&& __u)
2135 : __value_type(_VSTD::forward<_Up>(__u)){};
Howard Hinnantc51e1022010-05-11 19:42:16 +00002136
Eric Fiselier9d355982017-04-12 23:45:53 +00002137 template <class... _Args, size_t... _Indexes>
2138 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
2139 __compressed_pair_elem(piecewise_construct_t, tuple<_Args...> __args,
2140 __tuple_indices<_Indexes...>)
2141 : __value_type(_VSTD::forward<_Args>(_VSTD::get<_Indexes>(__args))...) {}
2142#else
Alex Lorenz76132112017-11-09 17:54:49 +00002143 _LIBCPP_INLINE_VISIBILITY __compressed_pair_elem() : __value_type() {}
2144 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9d355982017-04-12 23:45:53 +00002145 __compressed_pair_elem(_ParamT __p)
2146 : __value_type(std::forward<_ParamT>(__p)) {}
2147#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002148
Alex Lorenz76132112017-11-09 17:54:49 +00002149 _LIBCPP_INLINE_VISIBILITY reference __get() _NOEXCEPT { return *this; }
2150 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9d355982017-04-12 23:45:53 +00002151 const_reference __get() const _NOEXCEPT { return *this; }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002152};
2153
Eric Fiselier9d355982017-04-12 23:45:53 +00002154// Tag used to construct the second element of the compressed pair.
2155struct __second_tag {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00002156
2157template <class _T1, class _T2>
Eric Fiselier9d355982017-04-12 23:45:53 +00002158class __compressed_pair : private __compressed_pair_elem<_T1, 0>,
2159 private __compressed_pair_elem<_T2, 1> {
2160 typedef __compressed_pair_elem<_T1, 0> _Base1;
2161 typedef __compressed_pair_elem<_T2, 1> _Base2;
2162
2163 // NOTE: This static assert should never fire because __compressed_pair
2164 // is *almost never* used in a scenario where it's possible for T1 == T2.
2165 // (The exception is std::function where it is possible that the function
2166 // object and the allocator have the same type).
Eric Fiselierc5adf472017-04-13 01:13:58 +00002167 static_assert((!is_same<_T1, _T2>::value),
Eric Fiselier9d355982017-04-12 23:45:53 +00002168 "__compressed_pair cannot be instantated when T1 and T2 are the same type; "
2169 "The current implementation is NOT ABI-compatible with the previous "
2170 "implementation for this configuration");
2171
Howard Hinnantc51e1022010-05-11 19:42:16 +00002172public:
Eric Fiselier9d355982017-04-12 23:45:53 +00002173#ifndef _LIBCPP_CXX03_LANG
Eric Fiselier209ecde2017-04-17 22:32:02 +00002174 template <bool _Dummy = true,
2175 class = typename enable_if<
2176 __dependent_type<is_default_constructible<_T1>, _Dummy>::value &&
2177 __dependent_type<is_default_constructible<_T2>, _Dummy>::value
2178 >::type
2179 >
Eric Fiselier9d355982017-04-12 23:45:53 +00002180 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier209ecde2017-04-17 22:32:02 +00002181 constexpr __compressed_pair() {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002182
Eric Fiselier9d355982017-04-12 23:45:53 +00002183 template <class _Tp, typename enable_if<!is_same<typename decay<_Tp>::type,
2184 __compressed_pair>::value,
2185 bool>::type = true>
2186 _LIBCPP_INLINE_VISIBILITY constexpr explicit
2187 __compressed_pair(_Tp&& __t)
2188 : _Base1(std::forward<_Tp>(__t)), _Base2() {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002189
Eric Fiselier9d355982017-04-12 23:45:53 +00002190 template <class _Tp>
2191 _LIBCPP_INLINE_VISIBILITY constexpr
2192 __compressed_pair(__second_tag, _Tp&& __t)
2193 : _Base1(), _Base2(std::forward<_Tp>(__t)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002194
Eric Fiselier9d355982017-04-12 23:45:53 +00002195 template <class _U1, class _U2>
2196 _LIBCPP_INLINE_VISIBILITY constexpr
2197 __compressed_pair(_U1&& __t1, _U2&& __t2)
2198 : _Base1(std::forward<_U1>(__t1)), _Base2(std::forward<_U2>(__t2)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002199
Eric Fiselier9d355982017-04-12 23:45:53 +00002200 template <class... _Args1, class... _Args2>
2201 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX14
2202 __compressed_pair(piecewise_construct_t __pc, tuple<_Args1...> __first_args,
2203 tuple<_Args2...> __second_args)
2204 : _Base1(__pc, _VSTD::move(__first_args),
2205 typename __make_tuple_indices<sizeof...(_Args1)>::type()),
2206 _Base2(__pc, _VSTD::move(__second_args),
2207 typename __make_tuple_indices<sizeof...(_Args2)>::type()) {}
Howard Hinnant83b1c052011-12-19 17:58:44 +00002208
Eric Fiselier9d355982017-04-12 23:45:53 +00002209#else
2210 _LIBCPP_INLINE_VISIBILITY
2211 __compressed_pair() {}
Howard Hinnant83b1c052011-12-19 17:58:44 +00002212
Eric Fiselier9d355982017-04-12 23:45:53 +00002213 _LIBCPP_INLINE_VISIBILITY explicit
2214 __compressed_pair(_T1 __t1) : _Base1(_VSTD::forward<_T1>(__t1)) {}
Howard Hinnant83b1c052011-12-19 17:58:44 +00002215
Eric Fiselier9d355982017-04-12 23:45:53 +00002216 _LIBCPP_INLINE_VISIBILITY
2217 __compressed_pair(__second_tag, _T2 __t2)
2218 : _Base1(), _Base2(_VSTD::forward<_T2>(__t2)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002219
Eric Fiselier9d355982017-04-12 23:45:53 +00002220 _LIBCPP_INLINE_VISIBILITY
2221 __compressed_pair(_T1 __t1, _T2 __t2)
2222 : _Base1(_VSTD::forward<_T1>(__t1)), _Base2(_VSTD::forward<_T2>(__t2)) {}
2223#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00002224
Eric Fiselier9d355982017-04-12 23:45:53 +00002225 _LIBCPP_INLINE_VISIBILITY
2226 typename _Base1::reference first() _NOEXCEPT {
2227 return static_cast<_Base1&>(*this).__get();
2228 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002229
Eric Fiselier9d355982017-04-12 23:45:53 +00002230 _LIBCPP_INLINE_VISIBILITY
2231 typename _Base1::const_reference first() const _NOEXCEPT {
2232 return static_cast<_Base1 const&>(*this).__get();
2233 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002234
Eric Fiselier9d355982017-04-12 23:45:53 +00002235 _LIBCPP_INLINE_VISIBILITY
2236 typename _Base2::reference second() _NOEXCEPT {
2237 return static_cast<_Base2&>(*this).__get();
2238 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002239
Eric Fiselier9d355982017-04-12 23:45:53 +00002240 _LIBCPP_INLINE_VISIBILITY
2241 typename _Base2::const_reference second() const _NOEXCEPT {
2242 return static_cast<_Base2 const&>(*this).__get();
2243 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002244
Eric Fiselier9d355982017-04-12 23:45:53 +00002245 _LIBCPP_INLINE_VISIBILITY
2246 void swap(__compressed_pair& __x)
2247 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2248 __is_nothrow_swappable<_T2>::value)
2249 {
2250 using std::swap;
2251 swap(first(), __x.first());
2252 swap(second(), __x.second());
2253 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002254};
2255
2256template <class _T1, class _T2>
2257inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier9d355982017-04-12 23:45:53 +00002258void swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
2259 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2260 __is_nothrow_swappable<_T2>::value) {
2261 __x.swap(__y);
2262}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002263
Howard Hinnant741c8fa2012-01-02 17:56:02 +00002264// default_delete
2265
Howard Hinnantc51e1022010-05-11 19:42:16 +00002266template <class _Tp>
Eric Fiselier6779b062017-04-16 02:06:25 +00002267struct _LIBCPP_TEMPLATE_VIS default_delete {
Erik Pilkington2a398762017-05-25 15:43:31 +00002268 static_assert(!is_function<_Tp>::value,
2269 "default_delete cannot be instantiated for function types");
Eric Fiselier6779b062017-04-16 02:06:25 +00002270#ifndef _LIBCPP_CXX03_LANG
2271 _LIBCPP_INLINE_VISIBILITY constexpr default_delete() noexcept = default;
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002272#else
Eric Fiselier6779b062017-04-16 02:06:25 +00002273 _LIBCPP_INLINE_VISIBILITY default_delete() {}
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002274#endif
Eric Fiselier6779b062017-04-16 02:06:25 +00002275 template <class _Up>
2276 _LIBCPP_INLINE_VISIBILITY
2277 default_delete(const default_delete<_Up>&,
2278 typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* =
2279 0) _NOEXCEPT {}
2280
2281 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __ptr) const _NOEXCEPT {
2282 static_assert(sizeof(_Tp) > 0,
2283 "default_delete can not delete incomplete type");
2284 static_assert(!is_void<_Tp>::value,
2285 "default_delete can not delete incomplete type");
2286 delete __ptr;
2287 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002288};
2289
2290template <class _Tp>
Eric Fiselier6779b062017-04-16 02:06:25 +00002291struct _LIBCPP_TEMPLATE_VIS default_delete<_Tp[]> {
2292private:
2293 template <class _Up>
2294 struct _EnableIfConvertible
2295 : enable_if<is_convertible<_Up(*)[], _Tp(*)[]>::value> {};
2296
Howard Hinnant4500ca52011-12-18 21:19:44 +00002297public:
Eric Fiselier6779b062017-04-16 02:06:25 +00002298#ifndef _LIBCPP_CXX03_LANG
2299 _LIBCPP_INLINE_VISIBILITY constexpr default_delete() noexcept = default;
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002300#else
Eric Fiselier6779b062017-04-16 02:06:25 +00002301 _LIBCPP_INLINE_VISIBILITY default_delete() {}
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002302#endif
Eric Fiselier6779b062017-04-16 02:06:25 +00002303
2304 template <class _Up>
2305 _LIBCPP_INLINE_VISIBILITY
2306 default_delete(const default_delete<_Up[]>&,
2307 typename _EnableIfConvertible<_Up>::type* = 0) _NOEXCEPT {}
2308
2309 template <class _Up>
2310 _LIBCPP_INLINE_VISIBILITY
2311 typename _EnableIfConvertible<_Up>::type
2312 operator()(_Up* __ptr) const _NOEXCEPT {
2313 static_assert(sizeof(_Tp) > 0,
2314 "default_delete can not delete incomplete type");
2315 static_assert(!is_void<_Tp>::value,
2316 "default_delete can not delete void type");
2317 delete[] __ptr;
2318 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002319};
2320
Howard Hinnantc51e1022010-05-11 19:42:16 +00002321
Eric Fiselier6779b062017-04-16 02:06:25 +00002322
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002323#ifndef _LIBCPP_CXX03_LANG
2324template <class _Deleter>
2325struct __unique_ptr_deleter_sfinae {
2326 static_assert(!is_reference<_Deleter>::value, "incorrect specialization");
2327 typedef const _Deleter& __lval_ref_type;
2328 typedef _Deleter&& __good_rval_ref_type;
2329 typedef true_type __enable_rval_overload;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002330};
2331
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002332template <class _Deleter>
2333struct __unique_ptr_deleter_sfinae<_Deleter const&> {
2334 typedef const _Deleter& __lval_ref_type;
2335 typedef const _Deleter&& __bad_rval_ref_type;
2336 typedef false_type __enable_rval_overload;
2337};
2338
2339template <class _Deleter>
2340struct __unique_ptr_deleter_sfinae<_Deleter&> {
2341 typedef _Deleter& __lval_ref_type;
2342 typedef _Deleter&& __bad_rval_ref_type;
2343 typedef false_type __enable_rval_overload;
2344};
2345#endif // !defined(_LIBCPP_CXX03_LANG)
2346
2347template <class _Tp, class _Dp = default_delete<_Tp> >
2348class _LIBCPP_TEMPLATE_VIS unique_ptr {
2349public:
2350 typedef _Tp element_type;
2351 typedef _Dp deleter_type;
2352 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2353
2354 static_assert(!is_rvalue_reference<deleter_type>::value,
2355 "the specified deleter type cannot be an rvalue reference");
2356
2357private:
2358 __compressed_pair<pointer, deleter_type> __ptr_;
2359
2360 struct __nat { int __for_bool_; };
2361
2362#ifndef _LIBCPP_CXX03_LANG
Eric Fiselier31127cd2017-04-16 02:14:31 +00002363 typedef __unique_ptr_deleter_sfinae<_Dp> _DeleterSFINAE;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002364
2365 template <bool _Dummy>
2366 using _LValRefType =
Eric Fiselier31127cd2017-04-16 02:14:31 +00002367 typename __dependent_type<_DeleterSFINAE, _Dummy>::__lval_ref_type;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002368
2369 template <bool _Dummy>
2370 using _GoodRValRefType =
Eric Fiselier31127cd2017-04-16 02:14:31 +00002371 typename __dependent_type<_DeleterSFINAE, _Dummy>::__good_rval_ref_type;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002372
2373 template <bool _Dummy>
2374 using _BadRValRefType =
Eric Fiselier31127cd2017-04-16 02:14:31 +00002375 typename __dependent_type<_DeleterSFINAE, _Dummy>::__bad_rval_ref_type;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002376
2377 template <bool _Dummy, class _Deleter = typename __dependent_type<
2378 __identity<deleter_type>, _Dummy>::type>
2379 using _EnableIfDeleterDefaultConstructible =
2380 typename enable_if<is_default_constructible<_Deleter>::value &&
2381 !is_pointer<_Deleter>::value>::type;
2382
2383 template <class _ArgType>
2384 using _EnableIfDeleterConstructible =
2385 typename enable_if<is_constructible<deleter_type, _ArgType>::value>::type;
2386
2387 template <class _UPtr, class _Up>
2388 using _EnableIfMoveConvertible = typename enable_if<
2389 is_convertible<typename _UPtr::pointer, pointer>::value &&
2390 !is_array<_Up>::value
2391 >::type;
2392
2393 template <class _UDel>
2394 using _EnableIfDeleterConvertible = typename enable_if<
2395 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
2396 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
2397 >::type;
2398
2399 template <class _UDel>
2400 using _EnableIfDeleterAssignable = typename enable_if<
2401 is_assignable<_Dp&, _UDel&&>::value
2402 >::type;
2403
2404public:
2405 template <bool _Dummy = true,
2406 class = _EnableIfDeleterDefaultConstructible<_Dummy>>
2407 _LIBCPP_INLINE_VISIBILITY
2408 constexpr unique_ptr() noexcept : __ptr_(pointer()) {}
2409
2410 template <bool _Dummy = true,
2411 class = _EnableIfDeleterDefaultConstructible<_Dummy>>
2412 _LIBCPP_INLINE_VISIBILITY
2413 constexpr unique_ptr(nullptr_t) noexcept : __ptr_(pointer()) {}
2414
2415 template <bool _Dummy = true,
2416 class = _EnableIfDeleterDefaultConstructible<_Dummy>>
2417 _LIBCPP_INLINE_VISIBILITY
2418 explicit unique_ptr(pointer __p) noexcept : __ptr_(__p) {}
2419
2420 template <bool _Dummy = true,
2421 class = _EnableIfDeleterConstructible<_LValRefType<_Dummy>>>
2422 _LIBCPP_INLINE_VISIBILITY
2423 unique_ptr(pointer __p, _LValRefType<_Dummy> __d) noexcept
2424 : __ptr_(__p, __d) {}
2425
2426 template <bool _Dummy = true,
2427 class = _EnableIfDeleterConstructible<_GoodRValRefType<_Dummy>>>
2428 _LIBCPP_INLINE_VISIBILITY
2429 unique_ptr(pointer __p, _GoodRValRefType<_Dummy> __d) noexcept
2430 : __ptr_(__p, _VSTD::move(__d)) {
2431 static_assert(!is_reference<deleter_type>::value,
2432 "rvalue deleter bound to reference");
2433 }
2434
2435 template <bool _Dummy = true,
2436 class = _EnableIfDeleterConstructible<_BadRValRefType<_Dummy>>>
2437 _LIBCPP_INLINE_VISIBILITY
2438 unique_ptr(pointer __p, _BadRValRefType<_Dummy> __d) = delete;
2439
2440 _LIBCPP_INLINE_VISIBILITY
2441 unique_ptr(unique_ptr&& __u) noexcept
2442 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {
2443 }
2444
2445 template <class _Up, class _Ep,
2446 class = _EnableIfMoveConvertible<unique_ptr<_Up, _Ep>, _Up>,
2447 class = _EnableIfDeleterConvertible<_Ep>
2448 >
2449 _LIBCPP_INLINE_VISIBILITY
2450 unique_ptr(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
2451 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
2452
2453#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
2454 template <class _Up>
2455 _LIBCPP_INLINE_VISIBILITY
2456 unique_ptr(auto_ptr<_Up>&& __p,
2457 typename enable_if<is_convertible<_Up*, _Tp*>::value &&
2458 is_same<_Dp, default_delete<_Tp>>::value,
2459 __nat>::type = __nat()) _NOEXCEPT
2460 : __ptr_(__p.release()) {}
2461#endif
2462
2463 _LIBCPP_INLINE_VISIBILITY
2464 unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT {
2465 reset(__u.release());
2466 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
2467 return *this;
2468 }
2469
2470 template <class _Up, class _Ep,
2471 class = _EnableIfMoveConvertible<unique_ptr<_Up, _Ep>, _Up>,
2472 class = _EnableIfDeleterAssignable<_Ep>
2473 >
2474 _LIBCPP_INLINE_VISIBILITY
2475 unique_ptr& operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT {
2476 reset(__u.release());
2477 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2478 return *this;
2479 }
2480
2481#else // _LIBCPP_CXX03_LANG
2482private:
2483 unique_ptr(unique_ptr&);
2484 template <class _Up, class _Ep> unique_ptr(unique_ptr<_Up, _Ep>&);
2485
2486 unique_ptr& operator=(unique_ptr&);
2487 template <class _Up, class _Ep> unique_ptr& operator=(unique_ptr<_Up, _Ep>&);
2488
2489public:
2490 _LIBCPP_INLINE_VISIBILITY
2491 unique_ptr() : __ptr_(pointer())
2492 {
2493 static_assert(!is_pointer<deleter_type>::value,
2494 "unique_ptr constructed with null function pointer deleter");
2495 static_assert(is_default_constructible<deleter_type>::value,
2496 "unique_ptr::deleter_type is not default constructible");
2497 }
2498 _LIBCPP_INLINE_VISIBILITY
2499 unique_ptr(nullptr_t) : __ptr_(pointer())
2500 {
2501 static_assert(!is_pointer<deleter_type>::value,
2502 "unique_ptr constructed with null function pointer deleter");
2503 }
2504 _LIBCPP_INLINE_VISIBILITY
2505 explicit unique_ptr(pointer __p)
2506 : __ptr_(_VSTD::move(__p)) {
2507 static_assert(!is_pointer<deleter_type>::value,
2508 "unique_ptr constructed with null function pointer deleter");
2509 }
2510
2511 _LIBCPP_INLINE_VISIBILITY
2512 operator __rv<unique_ptr>() {
2513 return __rv<unique_ptr>(*this);
2514 }
2515
2516 _LIBCPP_INLINE_VISIBILITY
2517 unique_ptr(__rv<unique_ptr> __u)
2518 : __ptr_(__u->release(),
2519 _VSTD::forward<deleter_type>(__u->get_deleter())) {}
2520
2521 template <class _Up, class _Ep>
2522 _LIBCPP_INLINE_VISIBILITY
2523 typename enable_if<
2524 !is_array<_Up>::value &&
2525 is_convertible<typename unique_ptr<_Up, _Ep>::pointer,
2526 pointer>::value &&
2527 is_assignable<deleter_type&, _Ep&>::value,
2528 unique_ptr&>::type
2529 operator=(unique_ptr<_Up, _Ep> __u) {
2530 reset(__u.release());
2531 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2532 return *this;
2533 }
2534
2535 _LIBCPP_INLINE_VISIBILITY
2536 unique_ptr(pointer __p, deleter_type __d)
2537 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {}
2538#endif // _LIBCPP_CXX03_LANG
2539
2540#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
2541 template <class _Up>
2542 _LIBCPP_INLINE_VISIBILITY
2543 typename enable_if<is_convertible<_Up*, _Tp*>::value &&
2544 is_same<_Dp, default_delete<_Tp> >::value,
2545 unique_ptr&>::type
2546 operator=(auto_ptr<_Up> __p) {
2547 reset(__p.release());
2548 return *this;
2549 }
2550#endif
2551
2552 _LIBCPP_INLINE_VISIBILITY
2553 ~unique_ptr() { reset(); }
2554
2555 _LIBCPP_INLINE_VISIBILITY
2556 unique_ptr& operator=(nullptr_t) _NOEXCEPT {
2557 reset();
2558 return *this;
2559 }
2560
2561 _LIBCPP_INLINE_VISIBILITY
2562 typename add_lvalue_reference<_Tp>::type
2563 operator*() const {
2564 return *__ptr_.first();
2565 }
2566 _LIBCPP_INLINE_VISIBILITY
2567 pointer operator->() const _NOEXCEPT {
2568 return __ptr_.first();
2569 }
2570 _LIBCPP_INLINE_VISIBILITY
2571 pointer get() const _NOEXCEPT {
2572 return __ptr_.first();
2573 }
2574 _LIBCPP_INLINE_VISIBILITY
2575 deleter_type& get_deleter() _NOEXCEPT {
2576 return __ptr_.second();
2577 }
2578 _LIBCPP_INLINE_VISIBILITY
2579 const deleter_type& get_deleter() const _NOEXCEPT {
2580 return __ptr_.second();
2581 }
2582 _LIBCPP_INLINE_VISIBILITY
2583 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {
2584 return __ptr_.first() != nullptr;
2585 }
2586
2587 _LIBCPP_INLINE_VISIBILITY
2588 pointer release() _NOEXCEPT {
2589 pointer __t = __ptr_.first();
2590 __ptr_.first() = pointer();
2591 return __t;
2592 }
2593
2594 _LIBCPP_INLINE_VISIBILITY
2595 void reset(pointer __p = pointer()) _NOEXCEPT {
2596 pointer __tmp = __ptr_.first();
2597 __ptr_.first() = __p;
2598 if (__tmp)
2599 __ptr_.second()(__tmp);
2600 }
2601
2602 _LIBCPP_INLINE_VISIBILITY
2603 void swap(unique_ptr& __u) _NOEXCEPT {
2604 __ptr_.swap(__u.__ptr_);
2605 }
2606};
2607
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002608
Howard Hinnantc51e1022010-05-11 19:42:16 +00002609template <class _Tp, class _Dp>
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002610class _LIBCPP_TEMPLATE_VIS unique_ptr<_Tp[], _Dp> {
Howard Hinnantc51e1022010-05-11 19:42:16 +00002611public:
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002612 typedef _Tp element_type;
2613 typedef _Dp deleter_type;
2614 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2615
Howard Hinnantc51e1022010-05-11 19:42:16 +00002616private:
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002617 __compressed_pair<pointer, deleter_type> __ptr_;
Howard Hinnantc51e1022010-05-11 19:42:16 +00002618
Eric Fiselier31127cd2017-04-16 02:14:31 +00002619 template <class _From>
2620 struct _CheckArrayPointerConversion : is_same<_From, pointer> {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00002621
Eric Fiselier31127cd2017-04-16 02:14:31 +00002622 template <class _FromElem>
2623 struct _CheckArrayPointerConversion<_FromElem*>
2624 : integral_constant<bool,
2625 is_same<_FromElem*, pointer>::value ||
2626 (is_same<pointer, element_type*>::value &&
2627 is_convertible<_FromElem(*)[], element_type(*)[]>::value)
2628 >
2629 {};
Howard Hinnantc51e1022010-05-11 19:42:16 +00002630
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002631#ifndef _LIBCPP_CXX03_LANG
Eric Fiselier31127cd2017-04-16 02:14:31 +00002632 typedef __unique_ptr_deleter_sfinae<_Dp> _DeleterSFINAE;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002633
2634 template <bool _Dummy>
2635 using _LValRefType =
Eric Fiselier31127cd2017-04-16 02:14:31 +00002636 typename __dependent_type<_DeleterSFINAE, _Dummy>::__lval_ref_type;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002637
2638 template <bool _Dummy>
2639 using _GoodRValRefType =
Eric Fiselier31127cd2017-04-16 02:14:31 +00002640 typename __dependent_type<_DeleterSFINAE, _Dummy>::__good_rval_ref_type;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002641
2642 template <bool _Dummy>
2643 using _BadRValRefType =
Eric Fiselier31127cd2017-04-16 02:14:31 +00002644 typename __dependent_type<_DeleterSFINAE, _Dummy>::__bad_rval_ref_type;
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002645
2646 template <bool _Dummy, class _Deleter = typename __dependent_type<
2647 __identity<deleter_type>, _Dummy>::type>
2648 using _EnableIfDeleterDefaultConstructible =
2649 typename enable_if<is_default_constructible<_Deleter>::value &&
2650 !is_pointer<_Deleter>::value>::type;
2651
2652 template <class _ArgType>
2653 using _EnableIfDeleterConstructible =
2654 typename enable_if<is_constructible<deleter_type, _ArgType>::value>::type;
2655
2656 template <class _Pp>
2657 using _EnableIfPointerConvertible = typename enable_if<
Eric Fiselier31127cd2017-04-16 02:14:31 +00002658 _CheckArrayPointerConversion<_Pp>::value
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002659 >::type;
2660
2661 template <class _UPtr, class _Up,
2662 class _ElemT = typename _UPtr::element_type>
2663 using _EnableIfMoveConvertible = typename enable_if<
2664 is_array<_Up>::value &&
2665 is_same<pointer, element_type*>::value &&
2666 is_same<typename _UPtr::pointer, _ElemT*>::value &&
2667 is_convertible<_ElemT(*)[], element_type(*)[]>::value
2668 >::type;
2669
2670 template <class _UDel>
2671 using _EnableIfDeleterConvertible = typename enable_if<
2672 (is_reference<_Dp>::value && is_same<_Dp, _UDel>::value) ||
2673 (!is_reference<_Dp>::value && is_convertible<_UDel, _Dp>::value)
2674 >::type;
2675
2676 template <class _UDel>
2677 using _EnableIfDeleterAssignable = typename enable_if<
2678 is_assignable<_Dp&, _UDel&&>::value
2679 >::type;
2680
Howard Hinnantc51e1022010-05-11 19:42:16 +00002681public:
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002682 template <bool _Dummy = true,
2683 class = _EnableIfDeleterDefaultConstructible<_Dummy>>
2684 _LIBCPP_INLINE_VISIBILITY
2685 constexpr unique_ptr() noexcept : __ptr_(pointer()) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002686
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002687 template <bool _Dummy = true,
2688 class = _EnableIfDeleterDefaultConstructible<_Dummy>>
2689 _LIBCPP_INLINE_VISIBILITY
2690 constexpr unique_ptr(nullptr_t) noexcept : __ptr_(pointer()) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002691
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002692 template <class _Pp, bool _Dummy = true,
2693 class = _EnableIfDeleterDefaultConstructible<_Dummy>,
2694 class = _EnableIfPointerConvertible<_Pp>>
2695 _LIBCPP_INLINE_VISIBILITY
2696 explicit unique_ptr(_Pp __p) noexcept
2697 : __ptr_(__p) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002698
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002699 template <class _Pp, bool _Dummy = true,
2700 class = _EnableIfDeleterConstructible<_LValRefType<_Dummy>>,
2701 class = _EnableIfPointerConvertible<_Pp>>
2702 _LIBCPP_INLINE_VISIBILITY
2703 unique_ptr(_Pp __p, _LValRefType<_Dummy> __d) noexcept
2704 : __ptr_(__p, __d) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002705
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002706 template <bool _Dummy = true,
2707 class = _EnableIfDeleterConstructible<_LValRefType<_Dummy>>>
2708 _LIBCPP_INLINE_VISIBILITY
2709 unique_ptr(nullptr_t, _LValRefType<_Dummy> __d) noexcept
2710 : __ptr_(nullptr, __d) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002711
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002712 template <class _Pp, bool _Dummy = true,
2713 class = _EnableIfDeleterConstructible<_GoodRValRefType<_Dummy>>,
2714 class = _EnableIfPointerConvertible<_Pp>>
2715 _LIBCPP_INLINE_VISIBILITY
2716 unique_ptr(_Pp __p, _GoodRValRefType<_Dummy> __d) noexcept
2717 : __ptr_(__p, _VSTD::move(__d)) {
2718 static_assert(!is_reference<deleter_type>::value,
2719 "rvalue deleter bound to reference");
2720 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002721
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002722 template <bool _Dummy = true,
2723 class = _EnableIfDeleterConstructible<_GoodRValRefType<_Dummy>>>
2724 _LIBCPP_INLINE_VISIBILITY
2725 unique_ptr(nullptr_t, _GoodRValRefType<_Dummy> __d) noexcept
2726 : __ptr_(nullptr, _VSTD::move(__d)) {
2727 static_assert(!is_reference<deleter_type>::value,
2728 "rvalue deleter bound to reference");
2729 }
Howard Hinnant4500ca52011-12-18 21:19:44 +00002730
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002731 template <class _Pp, bool _Dummy = true,
2732 class = _EnableIfDeleterConstructible<_BadRValRefType<_Dummy>>,
2733 class = _EnableIfPointerConvertible<_Pp>>
2734 _LIBCPP_INLINE_VISIBILITY
2735 unique_ptr(_Pp __p, _BadRValRefType<_Dummy> __d) = delete;
Howard Hinnant4500ca52011-12-18 21:19:44 +00002736
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002737 _LIBCPP_INLINE_VISIBILITY
2738 unique_ptr(unique_ptr&& __u) noexcept
2739 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {
2740 }
Howard Hinnant4500ca52011-12-18 21:19:44 +00002741
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002742 _LIBCPP_INLINE_VISIBILITY
2743 unique_ptr& operator=(unique_ptr&& __u) noexcept {
2744 reset(__u.release());
2745 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
2746 return *this;
2747 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002748
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002749 template <class _Up, class _Ep,
2750 class = _EnableIfMoveConvertible<unique_ptr<_Up, _Ep>, _Up>,
2751 class = _EnableIfDeleterConvertible<_Ep>
2752 >
2753 _LIBCPP_INLINE_VISIBILITY
2754 unique_ptr(unique_ptr<_Up, _Ep>&& __u) noexcept
Eric Fiselier3827e6a2017-04-17 20:20:27 +00002755 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002756 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002757
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002758 template <class _Up, class _Ep,
2759 class = _EnableIfMoveConvertible<unique_ptr<_Up, _Ep>, _Up>,
2760 class = _EnableIfDeleterAssignable<_Ep>
2761 >
2762 _LIBCPP_INLINE_VISIBILITY
2763 unique_ptr&
2764 operator=(unique_ptr<_Up, _Ep>&& __u) noexcept {
2765 reset(__u.release());
2766 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2767 return *this;
2768 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00002769
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002770#else // _LIBCPP_CXX03_LANG
Howard Hinnantc51e1022010-05-11 19:42:16 +00002771private:
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002772 template <class _Up> explicit unique_ptr(_Up);
Howard Hinnant3b6579a2010-08-22 00:02:43 +00002773
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002774 unique_ptr(unique_ptr&);
2775 template <class _Up> unique_ptr(unique_ptr<_Up>&);
2776
2777 unique_ptr& operator=(unique_ptr&);
2778 template <class _Up> unique_ptr& operator=(unique_ptr<_Up>&);
2779
2780 template <class _Up>
2781 unique_ptr(_Up __u,
2782 typename conditional<
2783 is_reference<deleter_type>::value, deleter_type,
2784 typename add_lvalue_reference<const deleter_type>::type>::type,
2785 typename enable_if<is_convertible<_Up, pointer>::value,
2786 __nat>::type = __nat());
2787public:
2788 _LIBCPP_INLINE_VISIBILITY
2789 unique_ptr() : __ptr_(pointer()) {
2790 static_assert(!is_pointer<deleter_type>::value,
2791 "unique_ptr constructed with null function pointer deleter");
2792 }
2793 _LIBCPP_INLINE_VISIBILITY
2794 unique_ptr(nullptr_t) : __ptr_(pointer()) {
2795 static_assert(!is_pointer<deleter_type>::value,
2796 "unique_ptr constructed with null function pointer deleter");
2797 }
2798
2799 _LIBCPP_INLINE_VISIBILITY
2800 explicit unique_ptr(pointer __p) : __ptr_(__p) {
2801 static_assert(!is_pointer<deleter_type>::value,
2802 "unique_ptr constructed with null function pointer deleter");
2803 }
2804
2805 _LIBCPP_INLINE_VISIBILITY
2806 unique_ptr(pointer __p, deleter_type __d)
2807 : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {}
2808
2809 _LIBCPP_INLINE_VISIBILITY
2810 unique_ptr(nullptr_t, deleter_type __d)
2811 : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {}
2812
2813 _LIBCPP_INLINE_VISIBILITY
2814 operator __rv<unique_ptr>() {
2815 return __rv<unique_ptr>(*this);
2816 }
2817
2818 _LIBCPP_INLINE_VISIBILITY
2819 unique_ptr(__rv<unique_ptr> __u)
2820 : __ptr_(__u->release(),
2821 _VSTD::forward<deleter_type>(__u->get_deleter())) {}
2822
2823 _LIBCPP_INLINE_VISIBILITY
2824 unique_ptr& operator=(__rv<unique_ptr> __u) {
2825 reset(__u->release());
2826 __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter());
2827 return *this;
2828 }
2829
2830#endif // _LIBCPP_CXX03_LANG
2831
2832public:
2833 _LIBCPP_INLINE_VISIBILITY
2834 ~unique_ptr() { reset(); }
2835
2836 _LIBCPP_INLINE_VISIBILITY
2837 unique_ptr& operator=(nullptr_t) _NOEXCEPT {
2838 reset();
2839 return *this;
2840 }
2841
2842 _LIBCPP_INLINE_VISIBILITY
2843 typename add_lvalue_reference<_Tp>::type
2844 operator[](size_t __i) const {
2845 return __ptr_.first()[__i];
2846 }
2847 _LIBCPP_INLINE_VISIBILITY
2848 pointer get() const _NOEXCEPT {
2849 return __ptr_.first();
2850 }
2851
2852 _LIBCPP_INLINE_VISIBILITY
2853 deleter_type& get_deleter() _NOEXCEPT {
2854 return __ptr_.second();
2855 }
2856
2857 _LIBCPP_INLINE_VISIBILITY
2858 const deleter_type& get_deleter() const _NOEXCEPT {
2859 return __ptr_.second();
2860 }
2861 _LIBCPP_INLINE_VISIBILITY
2862 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {
2863 return __ptr_.first() != nullptr;
2864 }
2865
2866 _LIBCPP_INLINE_VISIBILITY
2867 pointer release() _NOEXCEPT {
2868 pointer __t = __ptr_.first();
2869 __ptr_.first() = pointer();
2870 return __t;
2871 }
2872
2873 template <class _Pp>
2874 _LIBCPP_INLINE_VISIBILITY
2875 typename enable_if<
Eric Fiselier31127cd2017-04-16 02:14:31 +00002876 _CheckArrayPointerConversion<_Pp>::value
Eric Fiselierfecf9ea2017-04-16 01:51:04 +00002877 >::type
2878 reset(_Pp __p) _NOEXCEPT {
2879 pointer __tmp = __ptr_.first();
2880 __ptr_.first() = __p;
2881 if (__tmp)
2882 __ptr_.second()(__tmp);
2883 }
2884
2885 _LIBCPP_INLINE_VISIBILITY
2886 void reset(nullptr_t = nullptr) _NOEXCEPT {
2887 pointer __tmp = __ptr_.first();
2888 __ptr_.first() = nullptr;
2889 if (__tmp)
2890 __ptr_.second()(__tmp);
2891 }
2892
2893 _LIBCPP_INLINE_VISIBILITY
2894 void swap(unique_ptr& __u) _NOEXCEPT {
2895 __ptr_.swap(__u.__ptr_);
2896 }
2897
Howard Hinnantc51e1022010-05-11 19:42:16 +00002898};
2899
2900template <class _Tp, class _Dp>
2901inline _LIBCPP_INLINE_VISIBILITY
Eric Fiselier6bfed252016-04-21 23:38:59 +00002902typename enable_if<
2903 __is_swappable<_Dp>::value,
2904 void
2905>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00002906swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002907
2908template <class _T1, class _D1, class _T2, class _D2>
2909inline _LIBCPP_INLINE_VISIBILITY
2910bool
2911operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
2912
2913template <class _T1, class _D1, class _T2, class _D2>
2914inline _LIBCPP_INLINE_VISIBILITY
2915bool
2916operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
2917
2918template <class _T1, class _D1, class _T2, class _D2>
2919inline _LIBCPP_INLINE_VISIBILITY
2920bool
Howard Hinnantb17caf92012-02-21 21:02:58 +00002921operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y)
2922{
2923 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2924 typedef typename unique_ptr<_T2, _D2>::pointer _P2;
Eric Fiselierf8898c82015-02-05 23:01:40 +00002925 typedef typename common_type<_P1, _P2>::type _Vp;
2926 return less<_Vp>()(__x.get(), __y.get());
Howard Hinnantb17caf92012-02-21 21:02:58 +00002927}
Howard Hinnantc51e1022010-05-11 19:42:16 +00002928
2929template <class _T1, class _D1, class _T2, class _D2>
2930inline _LIBCPP_INLINE_VISIBILITY
2931bool
2932operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
2933
2934template <class _T1, class _D1, class _T2, class _D2>
2935inline _LIBCPP_INLINE_VISIBILITY
2936bool
2937operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);}
2938
2939template <class _T1, class _D1, class _T2, class _D2>
2940inline _LIBCPP_INLINE_VISIBILITY
2941bool
2942operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);}
2943
Howard Hinnantb17caf92012-02-21 21:02:58 +00002944template <class _T1, class _D1>
2945inline _LIBCPP_INLINE_VISIBILITY
2946bool
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002947operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
Howard Hinnantb17caf92012-02-21 21:02:58 +00002948{
2949 return !__x;
2950}
2951
2952template <class _T1, class _D1>
2953inline _LIBCPP_INLINE_VISIBILITY
2954bool
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002955operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
Howard Hinnantb17caf92012-02-21 21:02:58 +00002956{
2957 return !__x;
2958}
2959
2960template <class _T1, class _D1>
2961inline _LIBCPP_INLINE_VISIBILITY
2962bool
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002963operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
Howard Hinnantb17caf92012-02-21 21:02:58 +00002964{
2965 return static_cast<bool>(__x);
2966}
2967
2968template <class _T1, class _D1>
2969inline _LIBCPP_INLINE_VISIBILITY
2970bool
Howard Hinnantb5fffe82012-07-07 20:56:04 +00002971operator!=(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
Howard Hinnantb17caf92012-02-21 21:02:58 +00002972{
2973 return static_cast<bool>(__x);
2974}
2975
2976template <class _T1, class _D1>
2977inline _LIBCPP_INLINE_VISIBILITY
2978bool
2979operator<(const unique_ptr<_T1, _D1>& __x, nullptr_t)
2980{
2981 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2982 return less<_P1>()(__x.get(), nullptr);
2983}
2984
2985template <class _T1, class _D1>
2986inline _LIBCPP_INLINE_VISIBILITY
2987bool
2988operator<(nullptr_t, const unique_ptr<_T1, _D1>& __x)
2989{
2990 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2991 return less<_P1>()(nullptr, __x.get());
2992}
2993
2994template <class _T1, class _D1>
2995inline _LIBCPP_INLINE_VISIBILITY
2996bool
2997operator>(const unique_ptr<_T1, _D1>& __x, nullptr_t)
2998{
2999 return nullptr < __x;
3000}
3001
3002template <class _T1, class _D1>
3003inline _LIBCPP_INLINE_VISIBILITY
3004bool
3005operator>(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3006{
3007 return __x < nullptr;
3008}
3009
3010template <class _T1, class _D1>
3011inline _LIBCPP_INLINE_VISIBILITY
3012bool
3013operator<=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3014{
3015 return !(nullptr < __x);
3016}
3017
3018template <class _T1, class _D1>
3019inline _LIBCPP_INLINE_VISIBILITY
3020bool
3021operator<=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3022{
3023 return !(__x < nullptr);
3024}
3025
3026template <class _T1, class _D1>
3027inline _LIBCPP_INLINE_VISIBILITY
3028bool
3029operator>=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3030{
3031 return !(__x < nullptr);
3032}
3033
3034template <class _T1, class _D1>
3035inline _LIBCPP_INLINE_VISIBILITY
3036bool
3037operator>=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3038{
3039 return !(nullptr < __x);
3040}
3041
Howard Hinnant9e028f12012-05-01 15:37:54 +00003042#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3043
3044template <class _Tp, class _Dp>
3045inline _LIBCPP_INLINE_VISIBILITY
3046unique_ptr<_Tp, _Dp>
3047move(unique_ptr<_Tp, _Dp>& __t)
3048{
3049 return unique_ptr<_Tp, _Dp>(__rv<unique_ptr<_Tp, _Dp> >(__t));
3050}
3051
3052#endif
3053
Marshall Clow9e8f4a92013-07-01 18:16:03 +00003054#if _LIBCPP_STD_VER > 11
3055
3056template<class _Tp>
3057struct __unique_if
3058{
3059 typedef unique_ptr<_Tp> __unique_single;
3060};
3061
3062template<class _Tp>
3063struct __unique_if<_Tp[]>
3064{
3065 typedef unique_ptr<_Tp[]> __unique_array_unknown_bound;
3066};
3067
3068template<class _Tp, size_t _Np>
3069struct __unique_if<_Tp[_Np]>
3070{
3071 typedef void __unique_array_known_bound;
3072};
3073
3074template<class _Tp, class... _Args>
Marshall Clow724e3df2013-07-02 20:06:09 +00003075inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow9e8f4a92013-07-01 18:16:03 +00003076typename __unique_if<_Tp>::__unique_single
3077make_unique(_Args&&... __args)
3078{
3079 return unique_ptr<_Tp>(new _Tp(_VSTD::forward<_Args>(__args)...));
3080}
3081
3082template<class _Tp>
Marshall Clow724e3df2013-07-02 20:06:09 +00003083inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow9e8f4a92013-07-01 18:16:03 +00003084typename __unique_if<_Tp>::__unique_array_unknown_bound
3085make_unique(size_t __n)
3086{
3087 typedef typename remove_extent<_Tp>::type _Up;
3088 return unique_ptr<_Tp>(new _Up[__n]());
3089}
3090
3091template<class _Tp, class... _Args>
3092 typename __unique_if<_Tp>::__unique_array_known_bound
3093 make_unique(_Args&&...) = delete;
3094
3095#endif // _LIBCPP_STD_VER > 11
3096
Howard Hinnant36b31ae2010-06-03 16:42:57 +00003097template <class _Tp, class _Dp>
Eric Fiselier698a97b2017-01-21 00:02:12 +00003098#ifdef _LIBCPP_CXX03_LANG
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00003099struct _LIBCPP_TEMPLATE_VIS hash<unique_ptr<_Tp, _Dp> >
Eric Fiselier698a97b2017-01-21 00:02:12 +00003100#else
3101struct _LIBCPP_TEMPLATE_VIS hash<__enable_hash_helper<
3102 unique_ptr<_Tp, _Dp>, typename unique_ptr<_Tp, _Dp>::pointer>>
3103#endif
Howard Hinnant36b31ae2010-06-03 16:42:57 +00003104{
3105 typedef unique_ptr<_Tp, _Dp> argument_type;
3106 typedef size_t result_type;
Howard Hinnant756c69b2010-09-22 16:48:34 +00003107 _LIBCPP_INLINE_VISIBILITY
Marshall Clow49036892017-03-23 02:40:28 +00003108 result_type operator()(const argument_type& __ptr) const
Howard Hinnant36b31ae2010-06-03 16:42:57 +00003109 {
3110 typedef typename argument_type::pointer pointer;
3111 return hash<pointer>()(__ptr.get());
3112 }
3113};
3114
Howard Hinnantc51e1022010-05-11 19:42:16 +00003115struct __destruct_n
3116{
3117private:
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00003118 size_t __size_;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003119
3120 template <class _Tp>
Howard Hinnant719bda32011-05-28 14:41:13 +00003121 _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00003122 {for (size_t __i = 0; __i < __size_; ++__i, ++__p) __p->~_Tp();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003123
3124 template <class _Tp>
Howard Hinnant719bda32011-05-28 14:41:13 +00003125 _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003126 {}
3127
Howard Hinnant719bda32011-05-28 14:41:13 +00003128 _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00003129 {++__size_;}
Howard Hinnant719bda32011-05-28 14:41:13 +00003130 _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003131 {}
3132
Howard Hinnant719bda32011-05-28 14:41:13 +00003133 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00003134 {__size_ = __s;}
Howard Hinnant719bda32011-05-28 14:41:13 +00003135 _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003136 {}
3137public:
Howard Hinnant719bda32011-05-28 14:41:13 +00003138 _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT
Eric Fiselierc5ea1ae2017-06-01 02:29:37 +00003139 : __size_(__s) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003140
3141 template <class _Tp>
Howard Hinnant719bda32011-05-28 14:41:13 +00003142 _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT
Howard Hinnanta9a897e2010-11-19 22:17:28 +00003143 {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003144
3145 template <class _Tp>
Howard Hinnant719bda32011-05-28 14:41:13 +00003146 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT
Howard Hinnanta9a897e2010-11-19 22:17:28 +00003147 {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003148
3149 template <class _Tp>
Howard Hinnant719bda32011-05-28 14:41:13 +00003150 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT
Howard Hinnanta9a897e2010-11-19 22:17:28 +00003151 {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003152};
3153
3154template <class _Alloc>
3155class __allocator_destructor
3156{
3157 typedef allocator_traits<_Alloc> __alloc_traits;
3158public:
3159 typedef typename __alloc_traits::pointer pointer;
3160 typedef typename __alloc_traits::size_type size_type;
3161private:
3162 _Alloc& __alloc_;
3163 size_type __s_;
3164public:
3165 _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s)
Howard Hinnant719bda32011-05-28 14:41:13 +00003166 _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003167 : __alloc_(__a), __s_(__s) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +00003168 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003169 void operator()(pointer __p) _NOEXCEPT
3170 {__alloc_traits::deallocate(__alloc_, __p, __s_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003171};
3172
3173template <class _InputIterator, class _ForwardIterator>
3174_ForwardIterator
3175uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r)
3176{
Howard Hinnantc51e1022010-05-11 19:42:16 +00003177 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003178#ifndef _LIBCPP_NO_EXCEPTIONS
3179 _ForwardIterator __s = __r;
3180 try
3181 {
3182#endif
Marshall Clow5e9cb8f2015-05-19 15:01:48 +00003183 for (; __f != __l; ++__f, (void) ++__r)
3184 ::new (static_cast<void*>(_VSTD::addressof(*__r))) value_type(*__f);
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003185#ifndef _LIBCPP_NO_EXCEPTIONS
3186 }
3187 catch (...)
3188 {
3189 for (; __s != __r; ++__s)
3190 __s->~value_type();
3191 throw;
3192 }
3193#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00003194 return __r;
3195}
3196
3197template <class _InputIterator, class _Size, class _ForwardIterator>
3198_ForwardIterator
3199uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r)
3200{
Howard Hinnantc51e1022010-05-11 19:42:16 +00003201 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003202#ifndef _LIBCPP_NO_EXCEPTIONS
3203 _ForwardIterator __s = __r;
3204 try
3205 {
3206#endif
Marshall Clow5e9cb8f2015-05-19 15:01:48 +00003207 for (; __n > 0; ++__f, (void) ++__r, (void) --__n)
3208 ::new (static_cast<void*>(_VSTD::addressof(*__r))) value_type(*__f);
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003209#ifndef _LIBCPP_NO_EXCEPTIONS
3210 }
3211 catch (...)
3212 {
3213 for (; __s != __r; ++__s)
3214 __s->~value_type();
3215 throw;
3216 }
3217#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00003218 return __r;
3219}
3220
3221template <class _ForwardIterator, class _Tp>
3222void
3223uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x)
3224{
Howard Hinnantc51e1022010-05-11 19:42:16 +00003225 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003226#ifndef _LIBCPP_NO_EXCEPTIONS
3227 _ForwardIterator __s = __f;
3228 try
3229 {
3230#endif
3231 for (; __f != __l; ++__f)
Marshall Clow5e9cb8f2015-05-19 15:01:48 +00003232 ::new (static_cast<void*>(_VSTD::addressof(*__f))) value_type(__x);
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003233#ifndef _LIBCPP_NO_EXCEPTIONS
3234 }
3235 catch (...)
3236 {
3237 for (; __s != __f; ++__s)
3238 __s->~value_type();
3239 throw;
3240 }
3241#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00003242}
3243
3244template <class _ForwardIterator, class _Size, class _Tp>
Howard Hinnant3c811092010-11-18 16:13:03 +00003245_ForwardIterator
Howard Hinnantc51e1022010-05-11 19:42:16 +00003246uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x)
3247{
Howard Hinnantc51e1022010-05-11 19:42:16 +00003248 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003249#ifndef _LIBCPP_NO_EXCEPTIONS
3250 _ForwardIterator __s = __f;
3251 try
3252 {
3253#endif
Marshall Clow5e9cb8f2015-05-19 15:01:48 +00003254 for (; __n > 0; ++__f, (void) --__n)
3255 ::new (static_cast<void*>(_VSTD::addressof(*__f))) value_type(__x);
Howard Hinnant2fa038c2011-12-29 17:45:35 +00003256#ifndef _LIBCPP_NO_EXCEPTIONS
3257 }
3258 catch (...)
3259 {
3260 for (; __s != __f; ++__s)
3261 __s->~value_type();
3262 throw;
3263 }
3264#endif
Howard Hinnant3c811092010-11-18 16:13:03 +00003265 return __f;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003266}
3267
Eric Fiselier383f6cf2016-07-24 03:51:39 +00003268#if _LIBCPP_STD_VER > 14
3269
Eric Fiselier383f6cf2016-07-24 03:51:39 +00003270template <class _Tp>
3271inline _LIBCPP_INLINE_VISIBILITY
3272void destroy_at(_Tp* __loc) {
3273 _LIBCPP_ASSERT(__loc, "null pointer given to destroy_at");
3274 __loc->~_Tp();
3275}
3276
3277template <class _ForwardIterator>
3278inline _LIBCPP_INLINE_VISIBILITY
3279void destroy(_ForwardIterator __first, _ForwardIterator __last) {
3280 for (; __first != __last; ++__first)
3281 _VSTD::destroy_at(_VSTD::addressof(*__first));
3282}
3283
3284template <class _ForwardIterator, class _Size>
3285inline _LIBCPP_INLINE_VISIBILITY
3286_ForwardIterator destroy_n(_ForwardIterator __first, _Size __n) {
3287 for (; __n > 0; (void)++__first, --__n)
3288 _VSTD::destroy_at(_VSTD::addressof(*__first));
3289 return __first;
3290}
3291
Eric Fiselier290c07c2016-10-11 21:13:44 +00003292template <class _ForwardIterator>
3293inline _LIBCPP_INLINE_VISIBILITY
3294void uninitialized_default_construct(_ForwardIterator __first, _ForwardIterator __last) {
3295 using _Vt = typename iterator_traits<_ForwardIterator>::value_type;
3296 auto __idx = __first;
3297#ifndef _LIBCPP_NO_EXCEPTIONS
3298 try {
3299#endif
3300 for (; __idx != __last; ++__idx)
3301 ::new((void*)_VSTD::addressof(*__idx)) _Vt;
3302#ifndef _LIBCPP_NO_EXCEPTIONS
3303 } catch (...) {
3304 _VSTD::destroy(__first, __idx);
3305 throw;
3306 }
3307#endif
3308}
3309
3310template <class _ForwardIterator, class _Size>
3311inline _LIBCPP_INLINE_VISIBILITY
3312_ForwardIterator uninitialized_default_construct_n(_ForwardIterator __first, _Size __n) {
3313 using _Vt = typename iterator_traits<_ForwardIterator>::value_type;
3314 auto __idx = __first;
3315#ifndef _LIBCPP_NO_EXCEPTIONS
3316 try {
3317#endif
3318 for (; __n > 0; (void)++__idx, --__n)
3319 ::new((void*)_VSTD::addressof(*__idx)) _Vt;
3320 return __idx;
3321#ifndef _LIBCPP_NO_EXCEPTIONS
3322 } catch (...) {
3323 _VSTD::destroy(__first, __idx);
3324 throw;
3325 }
3326#endif
3327}
3328
3329
3330template <class _ForwardIterator>
3331inline _LIBCPP_INLINE_VISIBILITY
3332void uninitialized_value_construct(_ForwardIterator __first, _ForwardIterator __last) {
3333 using _Vt = typename iterator_traits<_ForwardIterator>::value_type;
3334 auto __idx = __first;
3335#ifndef _LIBCPP_NO_EXCEPTIONS
3336 try {
3337#endif
3338 for (; __idx != __last; ++__idx)
3339 ::new((void*)_VSTD::addressof(*__idx)) _Vt();
3340#ifndef _LIBCPP_NO_EXCEPTIONS
3341 } catch (...) {
3342 _VSTD::destroy(__first, __idx);
3343 throw;
3344 }
3345#endif
3346}
3347
3348template <class _ForwardIterator, class _Size>
3349inline _LIBCPP_INLINE_VISIBILITY
3350_ForwardIterator uninitialized_value_construct_n(_ForwardIterator __first, _Size __n) {
3351 using _Vt = typename iterator_traits<_ForwardIterator>::value_type;
3352 auto __idx = __first;
3353#ifndef _LIBCPP_NO_EXCEPTIONS
3354 try {
3355#endif
3356 for (; __n > 0; (void)++__idx, --__n)
3357 ::new((void*)_VSTD::addressof(*__idx)) _Vt();
3358 return __idx;
3359#ifndef _LIBCPP_NO_EXCEPTIONS
3360 } catch (...) {
3361 _VSTD::destroy(__first, __idx);
3362 throw;
3363 }
3364#endif
3365}
3366
3367
3368template <class _InputIt, class _ForwardIt>
3369inline _LIBCPP_INLINE_VISIBILITY
3370_ForwardIt uninitialized_move(_InputIt __first, _InputIt __last, _ForwardIt __first_res) {
3371 using _Vt = typename iterator_traits<_ForwardIt>::value_type;
3372 auto __idx = __first_res;
3373#ifndef _LIBCPP_NO_EXCEPTIONS
3374 try {
3375#endif
3376 for (; __first != __last; (void)++__idx, ++__first)
3377 ::new((void*)_VSTD::addressof(*__idx)) _Vt(std::move(*__first));
3378 return __idx;
3379#ifndef _LIBCPP_NO_EXCEPTIONS
3380 } catch (...) {
3381 _VSTD::destroy(__first_res, __idx);
3382 throw;
3383 }
3384#endif
3385}
3386
3387template <class _InputIt, class _Size, class _ForwardIt>
3388inline _LIBCPP_INLINE_VISIBILITY
3389pair<_InputIt, _ForwardIt>
3390uninitialized_move_n(_InputIt __first, _Size __n, _ForwardIt __first_res) {
3391 using _Vt = typename iterator_traits<_ForwardIt>::value_type;
3392 auto __idx = __first_res;
3393#ifndef _LIBCPP_NO_EXCEPTIONS
3394 try {
3395#endif
3396 for (; __n > 0; ++__idx, (void)++__first, --__n)
3397 ::new((void*)_VSTD::addressof(*__idx)) _Vt(std::move(*__first));
3398 return {__first, __idx};
3399#ifndef _LIBCPP_NO_EXCEPTIONS
3400 } catch (...) {
3401 _VSTD::destroy(__first_res, __idx);
3402 throw;
3403 }
3404#endif
3405}
3406
3407
Eric Fiselier383f6cf2016-07-24 03:51:39 +00003408#endif // _LIBCPP_STD_VER > 14
3409
Kevin Hu4bdc8a02017-01-17 02:46:33 +00003410// NOTE: Relaxed and acq/rel atomics (for increment and decrement respectively)
3411// should be sufficient for thread safety.
Eric Fiselier5d604012017-02-17 08:37:03 +00003412// See https://bugs.llvm.org/show_bug.cgi?id=22803
Kevin Hu4bdc8a02017-01-17 02:46:33 +00003413#if defined(__clang__) && __has_builtin(__atomic_add_fetch) \
3414 && defined(__ATOMIC_RELAXED) \
3415 && defined(__ATOMIC_ACQ_REL)
3416# define _LIBCPP_HAS_BUILTIN_ATOMIC_SUPPORT
3417#elif !defined(__clang__) && defined(_GNUC_VER) && _GNUC_VER >= 407
3418# define _LIBCPP_HAS_BUILTIN_ATOMIC_SUPPORT
3419#endif
3420
3421template <class _Tp>
3422inline _LIBCPP_INLINE_VISIBILITY _Tp
3423__libcpp_atomic_refcount_increment(_Tp& __t) _NOEXCEPT
3424{
3425#if defined(_LIBCPP_HAS_BUILTIN_ATOMIC_SUPPORT) && !defined(_LIBCPP_HAS_NO_THREADS)
3426 return __atomic_add_fetch(&__t, 1, __ATOMIC_RELAXED);
3427#else
3428 return __t += 1;
3429#endif
3430}
3431
3432template <class _Tp>
3433inline _LIBCPP_INLINE_VISIBILITY _Tp
3434__libcpp_atomic_refcount_decrement(_Tp& __t) _NOEXCEPT
3435{
3436#if defined(_LIBCPP_HAS_BUILTIN_ATOMIC_SUPPORT) && !defined(_LIBCPP_HAS_NO_THREADS)
3437 return __atomic_add_fetch(&__t, -1, __ATOMIC_ACQ_REL);
3438#else
3439 return __t -= 1;
3440#endif
3441}
3442
Howard Hinnant756c69b2010-09-22 16:48:34 +00003443class _LIBCPP_EXCEPTION_ABI bad_weak_ptr
Howard Hinnantc51e1022010-05-11 19:42:16 +00003444 : public std::exception
3445{
3446public:
Howard Hinnant719bda32011-05-28 14:41:13 +00003447 virtual ~bad_weak_ptr() _NOEXCEPT;
3448 virtual const char* what() const _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003449};
3450
Marshall Clow8fea1612016-08-25 15:09:01 +00003451_LIBCPP_NORETURN inline _LIBCPP_ALWAYS_INLINE
3452void __throw_bad_weak_ptr()
3453{
3454#ifndef _LIBCPP_NO_EXCEPTIONS
3455 throw bad_weak_ptr();
3456#else
3457 _VSTD::abort();
3458#endif
3459}
3460
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00003461template<class _Tp> class _LIBCPP_TEMPLATE_VIS weak_ptr;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003462
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00003463class _LIBCPP_TYPE_VIS __shared_count
Howard Hinnantc51e1022010-05-11 19:42:16 +00003464{
3465 __shared_count(const __shared_count&);
3466 __shared_count& operator=(const __shared_count&);
3467
3468protected:
3469 long __shared_owners_;
3470 virtual ~__shared_count();
3471private:
Howard Hinnant719bda32011-05-28 14:41:13 +00003472 virtual void __on_zero_shared() _NOEXCEPT = 0;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003473
3474public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00003475 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003476 explicit __shared_count(long __refs = 0) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003477 : __shared_owners_(__refs) {}
3478
Eric Fiselier98848572017-01-17 03:16:26 +00003479#if defined(_LIBCPP_BUILDING_MEMORY) && \
3480 defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
Eric Fiseliere0700ff2017-01-17 03:05:31 +00003481 void __add_shared() _NOEXCEPT;
3482 bool __release_shared() _NOEXCEPT;
Kevin Hu4bdc8a02017-01-17 02:46:33 +00003483#else
3484 _LIBCPP_INLINE_VISIBILITY
3485 void __add_shared() _NOEXCEPT {
3486 __libcpp_atomic_refcount_increment(__shared_owners_);
3487 }
3488 _LIBCPP_INLINE_VISIBILITY
3489 bool __release_shared() _NOEXCEPT {
3490 if (__libcpp_atomic_refcount_decrement(__shared_owners_) == -1) {
3491 __on_zero_shared();
3492 return true;
3493 }
3494 return false;
3495 }
3496#endif
Howard Hinnant756c69b2010-09-22 16:48:34 +00003497 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier89659d12015-07-07 00:27:16 +00003498 long use_count() const _NOEXCEPT {
3499 return __libcpp_relaxed_load(&__shared_owners_) + 1;
3500 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00003501};
3502
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00003503class _LIBCPP_TYPE_VIS __shared_weak_count
Howard Hinnantc51e1022010-05-11 19:42:16 +00003504 : private __shared_count
3505{
3506 long __shared_weak_owners_;
3507
3508public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00003509 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003510 explicit __shared_weak_count(long __refs = 0) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003511 : __shared_count(__refs),
3512 __shared_weak_owners_(__refs) {}
3513protected:
3514 virtual ~__shared_weak_count();
3515
3516public:
Eric Fiselier98848572017-01-17 03:16:26 +00003517#if defined(_LIBCPP_BUILDING_MEMORY) && \
3518 defined(_LIBCPP_DEPRECATED_ABI_LEGACY_LIBRARY_DEFINITIONS_FOR_INLINE_FUNCTIONS)
Eric Fiseliere0700ff2017-01-17 03:05:31 +00003519 void __add_shared() _NOEXCEPT;
3520 void __add_weak() _NOEXCEPT;
3521 void __release_shared() _NOEXCEPT;
Kevin Hu4bdc8a02017-01-17 02:46:33 +00003522#else
3523 _LIBCPP_INLINE_VISIBILITY
3524 void __add_shared() _NOEXCEPT {
3525 __shared_count::__add_shared();
3526 }
3527 _LIBCPP_INLINE_VISIBILITY
3528 void __add_weak() _NOEXCEPT {
3529 __libcpp_atomic_refcount_increment(__shared_weak_owners_);
3530 }
3531 _LIBCPP_INLINE_VISIBILITY
3532 void __release_shared() _NOEXCEPT {
3533 if (__shared_count::__release_shared())
3534 __release_weak();
3535 }
3536#endif
Howard Hinnant719bda32011-05-28 14:41:13 +00003537 void __release_weak() _NOEXCEPT;
Howard Hinnant756c69b2010-09-22 16:48:34 +00003538 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003539 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
3540 __shared_weak_count* lock() _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003541
Howard Hinnant807d6332013-02-25 15:50:36 +00003542 // Define the function out only if we build static libc++ without RTTI.
3543 // Otherwise we may break clients who need to compile their projects with
3544 // -fno-rtti and yet link against a libc++.dylib compiled
3545 // without -fno-rtti.
3546#if !defined(_LIBCPP_NO_RTTI) || !defined(_LIBCPP_BUILD_STATIC)
Howard Hinnant719bda32011-05-28 14:41:13 +00003547 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnant807d6332013-02-25 15:50:36 +00003548#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00003549private:
Howard Hinnant719bda32011-05-28 14:41:13 +00003550 virtual void __on_zero_shared_weak() _NOEXCEPT = 0;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003551};
3552
3553template <class _Tp, class _Dp, class _Alloc>
3554class __shared_ptr_pointer
3555 : public __shared_weak_count
3556{
3557 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_;
3558public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00003559 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003560 __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00003561 : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003562
Howard Hinnant72f73582010-08-11 17:04:31 +00003563#ifndef _LIBCPP_NO_RTTI
Howard Hinnant719bda32011-05-28 14:41:13 +00003564 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnant72f73582010-08-11 17:04:31 +00003565#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00003566
3567private:
Howard Hinnant719bda32011-05-28 14:41:13 +00003568 virtual void __on_zero_shared() _NOEXCEPT;
3569 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003570};
3571
Howard Hinnant72f73582010-08-11 17:04:31 +00003572#ifndef _LIBCPP_NO_RTTI
3573
Howard Hinnantc51e1022010-05-11 19:42:16 +00003574template <class _Tp, class _Dp, class _Alloc>
3575const void*
Howard Hinnant719bda32011-05-28 14:41:13 +00003576__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003577{
Eric Fiselierc7490d02017-05-04 01:06:56 +00003578 return __t == typeid(_Dp) ? _VSTD::addressof(__data_.first().second()) : nullptr;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003579}
3580
Howard Hinnant3b6579a2010-08-22 00:02:43 +00003581#endif // _LIBCPP_NO_RTTI
Howard Hinnant72f73582010-08-11 17:04:31 +00003582
Howard Hinnantc51e1022010-05-11 19:42:16 +00003583template <class _Tp, class _Dp, class _Alloc>
3584void
Howard Hinnant719bda32011-05-28 14:41:13 +00003585__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003586{
3587 __data_.first().second()(__data_.first().first());
3588 __data_.first().second().~_Dp();
3589}
3590
3591template <class _Tp, class _Dp, class _Alloc>
3592void
Howard Hinnant719bda32011-05-28 14:41:13 +00003593__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003594{
Eric Fiselierf8898c82015-02-05 23:01:40 +00003595 typedef typename __allocator_traits_rebind<_Alloc, __shared_ptr_pointer>::type _Al;
3596 typedef allocator_traits<_Al> _ATraits;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00003597 typedef pointer_traits<typename _ATraits::pointer> _PTraits;
3598
Eric Fiselierf8898c82015-02-05 23:01:40 +00003599 _Al __a(__data_.second());
Howard Hinnantc51e1022010-05-11 19:42:16 +00003600 __data_.second().~_Alloc();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00003601 __a.deallocate(_PTraits::pointer_to(*this), 1);
Howard Hinnantc51e1022010-05-11 19:42:16 +00003602}
3603
3604template <class _Tp, class _Alloc>
3605class __shared_ptr_emplace
3606 : public __shared_weak_count
3607{
3608 __compressed_pair<_Alloc, _Tp> __data_;
3609public:
3610#ifndef _LIBCPP_HAS_NO_VARIADICS
3611
Howard Hinnant756c69b2010-09-22 16:48:34 +00003612 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003613 __shared_ptr_emplace(_Alloc __a)
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00003614 : __data_(_VSTD::move(__a)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003615
3616 template <class ..._Args>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003617 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003618 __shared_ptr_emplace(_Alloc __a, _Args&& ...__args)
Howard Hinnant83b1c052011-12-19 17:58:44 +00003619 : __data_(piecewise_construct, _VSTD::forward_as_tuple(__a),
3620 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)) {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003621
3622#else // _LIBCPP_HAS_NO_VARIADICS
3623
Howard Hinnant756c69b2010-09-22 16:48:34 +00003624 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003625 __shared_ptr_emplace(_Alloc __a)
3626 : __data_(__a) {}
3627
3628 template <class _A0>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003629 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003630 __shared_ptr_emplace(_Alloc __a, _A0& __a0)
3631 : __data_(__a, _Tp(__a0)) {}
3632
3633 template <class _A0, class _A1>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003634 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003635 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3636 : __data_(__a, _Tp(__a0, __a1)) {}
3637
3638 template <class _A0, class _A1, class _A2>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003639 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003640 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3641 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3642
3643#endif // _LIBCPP_HAS_NO_VARIADICS
3644
3645private:
Howard Hinnant719bda32011-05-28 14:41:13 +00003646 virtual void __on_zero_shared() _NOEXCEPT;
3647 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003648public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00003649 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003650 _Tp* get() _NOEXCEPT {return &__data_.second();}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003651};
3652
3653template <class _Tp, class _Alloc>
3654void
Howard Hinnant719bda32011-05-28 14:41:13 +00003655__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003656{
3657 __data_.second().~_Tp();
3658}
3659
3660template <class _Tp, class _Alloc>
3661void
Howard Hinnant719bda32011-05-28 14:41:13 +00003662__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003663{
Eric Fiselierf8898c82015-02-05 23:01:40 +00003664 typedef typename __allocator_traits_rebind<_Alloc, __shared_ptr_emplace>::type _Al;
3665 typedef allocator_traits<_Al> _ATraits;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00003666 typedef pointer_traits<typename _ATraits::pointer> _PTraits;
Eric Fiselierf8898c82015-02-05 23:01:40 +00003667 _Al __a(__data_.first());
Howard Hinnantc51e1022010-05-11 19:42:16 +00003668 __data_.first().~_Alloc();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00003669 __a.deallocate(_PTraits::pointer_to(*this), 1);
Howard Hinnantc51e1022010-05-11 19:42:16 +00003670}
3671
Erik Pilkington2a398762017-05-25 15:43:31 +00003672struct __shared_ptr_dummy_rebind_allocator_type;
3673template <>
3674class _LIBCPP_TEMPLATE_VIS allocator<__shared_ptr_dummy_rebind_allocator_type>
3675{
3676public:
3677 template <class _Other>
3678 struct rebind
3679 {
3680 typedef allocator<_Other> other;
3681 };
3682};
3683
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00003684template<class _Tp> class _LIBCPP_TEMPLATE_VIS enable_shared_from_this;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003685
3686template<class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00003687class _LIBCPP_TEMPLATE_VIS shared_ptr
Howard Hinnantc51e1022010-05-11 19:42:16 +00003688{
Howard Hinnant3b6579a2010-08-22 00:02:43 +00003689public:
3690 typedef _Tp element_type;
Marshall Clow7e384b72017-01-10 16:59:33 +00003691
Eric Fiselierae5b6672016-06-27 01:02:43 +00003692#if _LIBCPP_STD_VER > 14
3693 typedef weak_ptr<_Tp> weak_type;
3694#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00003695private:
3696 element_type* __ptr_;
3697 __shared_weak_count* __cntrl_;
3698
3699 struct __nat {int __for_bool_;};
3700public:
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003701 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantb5fffe82012-07-07 20:56:04 +00003702 _LIBCPP_CONSTEXPR shared_ptr() _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003703 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantb5fffe82012-07-07 20:56:04 +00003704 _LIBCPP_CONSTEXPR shared_ptr(nullptr_t) _NOEXCEPT;
Logan Chiend435f8b2014-01-31 09:30:46 +00003705 template<class _Yp>
3706 explicit shared_ptr(_Yp* __p,
3707 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat());
3708 template<class _Yp, class _Dp>
3709 shared_ptr(_Yp* __p, _Dp __d,
3710 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat());
3711 template<class _Yp, class _Dp, class _Alloc>
3712 shared_ptr(_Yp* __p, _Dp __d, _Alloc __a,
3713 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat());
Howard Hinnantc51e1022010-05-11 19:42:16 +00003714 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
3715 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003716 template<class _Yp> _LIBCPP_INLINE_VISIBILITY shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT;
3717 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003718 shared_ptr(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003719 template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003720 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00003721 shared_ptr(const shared_ptr<_Yp>& __r,
Marshall Clow7e384b72017-01-10 16:59:33 +00003722 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat())
Howard Hinnant719bda32011-05-28 14:41:13 +00003723 _NOEXCEPT;
Howard Hinnant74279a52010-09-04 23:28:19 +00003724#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003725 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003726 shared_ptr(shared_ptr&& __r) _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003727 template<class _Yp> _LIBCPP_INLINE_VISIBILITY shared_ptr(shared_ptr<_Yp>&& __r,
Marshall Clow7e384b72017-01-10 16:59:33 +00003728 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat())
Howard Hinnant719bda32011-05-28 14:41:13 +00003729 _NOEXCEPT;
Howard Hinnant74279a52010-09-04 23:28:19 +00003730#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00003731 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r,
Marshall Clow7e384b72017-01-10 16:59:33 +00003732 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type= __nat());
Marshall Clowb22274f2017-01-24 22:22:33 +00003733#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnant74279a52010-09-04 23:28:19 +00003734#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Logan Chiend435f8b2014-01-31 09:30:46 +00003735 template<class _Yp>
3736 shared_ptr(auto_ptr<_Yp>&& __r,
3737 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat());
Howard Hinnant3b6579a2010-08-22 00:02:43 +00003738#else
Logan Chiend435f8b2014-01-31 09:30:46 +00003739 template<class _Yp>
3740 shared_ptr(auto_ptr<_Yp> __r,
3741 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat());
Howard Hinnantc51e1022010-05-11 19:42:16 +00003742#endif
Marshall Clowb22274f2017-01-24 22:22:33 +00003743#endif
Howard Hinnant74279a52010-09-04 23:28:19 +00003744#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Logan Chiend435f8b2014-01-31 09:30:46 +00003745 template <class _Yp, class _Dp>
3746 shared_ptr(unique_ptr<_Yp, _Dp>&&,
3747 typename enable_if
3748 <
3749 !is_lvalue_reference<_Dp>::value &&
3750 !is_array<_Yp>::value &&
3751 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3752 __nat
3753 >::type = __nat());
3754 template <class _Yp, class _Dp>
3755 shared_ptr(unique_ptr<_Yp, _Dp>&&,
3756 typename enable_if
3757 <
3758 is_lvalue_reference<_Dp>::value &&
3759 !is_array<_Yp>::value &&
3760 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3761 __nat
3762 >::type = __nat());
Howard Hinnant74279a52010-09-04 23:28:19 +00003763#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Logan Chiend435f8b2014-01-31 09:30:46 +00003764 template <class _Yp, class _Dp>
3765 shared_ptr(unique_ptr<_Yp, _Dp>,
3766 typename enable_if
3767 <
3768 !is_lvalue_reference<_Dp>::value &&
3769 !is_array<_Yp>::value &&
3770 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3771 __nat
3772 >::type = __nat());
3773 template <class _Yp, class _Dp>
3774 shared_ptr(unique_ptr<_Yp, _Dp>,
3775 typename enable_if
3776 <
3777 is_lvalue_reference<_Dp>::value &&
3778 !is_array<_Yp>::value &&
3779 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3780 __nat
3781 >::type = __nat());
Howard Hinnant74279a52010-09-04 23:28:19 +00003782#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00003783
3784 ~shared_ptr();
3785
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003786 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003787 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003788 template<class _Yp>
3789 typename enable_if
3790 <
3791 is_convertible<_Yp*, element_type*>::value,
3792 shared_ptr&
3793 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003794 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003795 operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT;
Howard Hinnant74279a52010-09-04 23:28:19 +00003796#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003797 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003798 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003799 template<class _Yp>
3800 typename enable_if
3801 <
3802 is_convertible<_Yp*, element_type*>::value,
3803 shared_ptr<_Tp>&
3804 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003805 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003806 operator=(shared_ptr<_Yp>&& __r);
Marshall Clowb22274f2017-01-24 22:22:33 +00003807#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003808 template<class _Yp>
Eric Fiselier6585c752016-04-21 22:54:21 +00003809 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003810 typename enable_if
3811 <
3812 !is_array<_Yp>::value &&
3813 is_convertible<_Yp*, element_type*>::value,
Howard Hinnant25bcaf62013-09-13 23:56:00 +00003814 shared_ptr
3815 >::type&
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003816 operator=(auto_ptr<_Yp>&& __r);
Marshall Clowb22274f2017-01-24 22:22:33 +00003817#endif
Howard Hinnant74279a52010-09-04 23:28:19 +00003818#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Marshall Clowb22274f2017-01-24 22:22:33 +00003819#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003820 template<class _Yp>
Eric Fiselier6585c752016-04-21 22:54:21 +00003821 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003822 typename enable_if
3823 <
3824 !is_array<_Yp>::value &&
3825 is_convertible<_Yp*, element_type*>::value,
3826 shared_ptr&
3827 >::type
3828 operator=(auto_ptr<_Yp> __r);
Howard Hinnantc51e1022010-05-11 19:42:16 +00003829#endif
Marshall Clowb22274f2017-01-24 22:22:33 +00003830#endif
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003831 template <class _Yp, class _Dp>
3832 typename enable_if
3833 <
3834 !is_array<_Yp>::value &&
3835 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3836 shared_ptr&
3837 >::type
Howard Hinnant74279a52010-09-04 23:28:19 +00003838#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003839 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003840 operator=(unique_ptr<_Yp, _Dp>&& __r);
Howard Hinnant74279a52010-09-04 23:28:19 +00003841#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Evgeniy Stepanov03192872015-12-09 22:32:36 +00003842 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003843 operator=(unique_ptr<_Yp, _Dp> __r);
Howard Hinnantc51e1022010-05-11 19:42:16 +00003844#endif
3845
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003846 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003847 void swap(shared_ptr& __r) _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003848 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003849 void reset() _NOEXCEPT;
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003850 template<class _Yp>
3851 typename enable_if
3852 <
3853 is_convertible<_Yp*, element_type*>::value,
3854 void
3855 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003856 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003857 reset(_Yp* __p);
3858 template<class _Yp, class _Dp>
3859 typename enable_if
3860 <
3861 is_convertible<_Yp*, element_type*>::value,
3862 void
3863 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003864 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003865 reset(_Yp* __p, _Dp __d);
3866 template<class _Yp, class _Dp, class _Alloc>
3867 typename enable_if
3868 <
3869 is_convertible<_Yp*, element_type*>::value,
3870 void
3871 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003872 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00003873 reset(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantc51e1022010-05-11 19:42:16 +00003874
Howard Hinnant756c69b2010-09-22 16:48:34 +00003875 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003876 element_type* get() const _NOEXCEPT {return __ptr_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00003877 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003878 typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT
3879 {return *__ptr_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00003880 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003881 element_type* operator->() const _NOEXCEPT {return __ptr_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00003882 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003883 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00003884 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003885 bool unique() const _NOEXCEPT {return use_count() == 1;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00003886 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant86a291f2012-02-21 21:46:43 +00003887 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return get() != 0;}
Howard Hinnantc834c512011-11-29 18:15:50 +00003888 template <class _Up>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003889 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00003890 bool owner_before(shared_ptr<_Up> const& __p) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003891 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnantc834c512011-11-29 18:15:50 +00003892 template <class _Up>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003893 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00003894 bool owner_before(weak_ptr<_Up> const& __p) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003895 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant9fa30202012-07-30 01:40:57 +00003896 _LIBCPP_INLINE_VISIBILITY
3897 bool
3898 __owner_equivalent(const shared_ptr& __p) const
3899 {return __cntrl_ == __p.__cntrl_;}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003900
Howard Hinnant72f73582010-08-11 17:04:31 +00003901#ifndef _LIBCPP_NO_RTTI
Howard Hinnantc51e1022010-05-11 19:42:16 +00003902 template <class _Dp>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003903 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00003904 _Dp* __get_deleter() const _NOEXCEPT
Marshall Clow31350ab2017-06-14 16:54:43 +00003905 {return static_cast<_Dp*>(__cntrl_
Aditya Kumar7c5db692017-08-20 10:38:55 +00003906 ? const_cast<void *>(__cntrl_->__get_deleter(typeid(_Dp)))
Marshall Clow31350ab2017-06-14 16:54:43 +00003907 : nullptr);}
Howard Hinnant3b6579a2010-08-22 00:02:43 +00003908#endif // _LIBCPP_NO_RTTI
Howard Hinnantc51e1022010-05-11 19:42:16 +00003909
3910#ifndef _LIBCPP_HAS_NO_VARIADICS
3911
3912 template<class ..._Args>
3913 static
3914 shared_ptr<_Tp>
3915 make_shared(_Args&& ...__args);
3916
3917 template<class _Alloc, class ..._Args>
3918 static
3919 shared_ptr<_Tp>
3920 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3921
3922#else // _LIBCPP_HAS_NO_VARIADICS
3923
3924 static shared_ptr<_Tp> make_shared();
3925
3926 template<class _A0>
3927 static shared_ptr<_Tp> make_shared(_A0&);
3928
3929 template<class _A0, class _A1>
3930 static shared_ptr<_Tp> make_shared(_A0&, _A1&);
3931
3932 template<class _A0, class _A1, class _A2>
3933 static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&);
3934
3935 template<class _Alloc>
3936 static shared_ptr<_Tp>
3937 allocate_shared(const _Alloc& __a);
3938
3939 template<class _Alloc, class _A0>
3940 static shared_ptr<_Tp>
3941 allocate_shared(const _Alloc& __a, _A0& __a0);
3942
3943 template<class _Alloc, class _A0, class _A1>
3944 static shared_ptr<_Tp>
3945 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
3946
3947 template<class _Alloc, class _A0, class _A1, class _A2>
3948 static shared_ptr<_Tp>
3949 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
3950
3951#endif // _LIBCPP_HAS_NO_VARIADICS
3952
3953private:
Erik Pilkington2a398762017-05-25 15:43:31 +00003954 template <class _Yp, bool = is_function<_Yp>::value>
3955 struct __shared_ptr_default_allocator
3956 {
3957 typedef allocator<_Yp> type;
3958 };
3959
3960 template <class _Yp>
3961 struct __shared_ptr_default_allocator<_Yp, true>
3962 {
3963 typedef allocator<__shared_ptr_dummy_rebind_allocator_type> type;
3964 };
Howard Hinnantc51e1022010-05-11 19:42:16 +00003965
Eric Fiselierf16c93f2016-06-26 23:56:32 +00003966 template <class _Yp, class _OrigPtr>
Howard Hinnant756c69b2010-09-22 16:48:34 +00003967 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier30d5ac62017-05-10 19:35:49 +00003968 typename enable_if<is_convertible<_OrigPtr*,
3969 const enable_shared_from_this<_Yp>*
3970 >::value,
3971 void>::type
Eric Fiselierf16c93f2016-06-26 23:56:32 +00003972 __enable_weak_this(const enable_shared_from_this<_Yp>* __e,
3973 _OrigPtr* __ptr) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003974 {
Eric Fiselierf16c93f2016-06-26 23:56:32 +00003975 typedef typename remove_cv<_Yp>::type _RawYp;
Eric Fiselier84006862016-06-02 00:15:35 +00003976 if (__e && __e->__weak_this_.expired())
Marshall Clow99442fc2015-06-19 15:54:13 +00003977 {
Eric Fiselierf16c93f2016-06-26 23:56:32 +00003978 __e->__weak_this_ = shared_ptr<_RawYp>(*this,
3979 const_cast<_RawYp*>(static_cast<const _Yp*>(__ptr)));
Marshall Clow99442fc2015-06-19 15:54:13 +00003980 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00003981 }
3982
Erik Pilkington2a398762017-05-25 15:43:31 +00003983 _LIBCPP_INLINE_VISIBILITY void __enable_weak_this(...) _NOEXCEPT {}
Howard Hinnantc51e1022010-05-11 19:42:16 +00003984
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00003985 template <class _Up> friend class _LIBCPP_TEMPLATE_VIS shared_ptr;
3986 template <class _Up> friend class _LIBCPP_TEMPLATE_VIS weak_ptr;
Howard Hinnantc51e1022010-05-11 19:42:16 +00003987};
3988
Eric Fiselier30d5ac62017-05-10 19:35:49 +00003989
Howard Hinnantc51e1022010-05-11 19:42:16 +00003990template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00003991inline
Howard Hinnantb5fffe82012-07-07 20:56:04 +00003992_LIBCPP_CONSTEXPR
Howard Hinnant719bda32011-05-28 14:41:13 +00003993shared_ptr<_Tp>::shared_ptr() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00003994 : __ptr_(0),
3995 __cntrl_(0)
3996{
3997}
3998
3999template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004000inline
Howard Hinnantb5fffe82012-07-07 20:56:04 +00004001_LIBCPP_CONSTEXPR
Howard Hinnant719bda32011-05-28 14:41:13 +00004002shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004003 : __ptr_(0),
4004 __cntrl_(0)
4005{
4006}
4007
4008template<class _Tp>
Logan Chiend435f8b2014-01-31 09:30:46 +00004009template<class _Yp>
4010shared_ptr<_Tp>::shared_ptr(_Yp* __p,
4011 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004012 : __ptr_(__p)
4013{
4014 unique_ptr<_Yp> __hold(__p);
Erik Pilkington2a398762017-05-25 15:43:31 +00004015 typedef typename __shared_ptr_default_allocator<_Yp>::type _AllocT;
4016 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, _AllocT > _CntrlBlk;
4017 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), _AllocT());
Howard Hinnantc51e1022010-05-11 19:42:16 +00004018 __hold.release();
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004019 __enable_weak_this(__p, __p);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004020}
4021
4022template<class _Tp>
Logan Chiend435f8b2014-01-31 09:30:46 +00004023template<class _Yp, class _Dp>
4024shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d,
4025 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004026 : __ptr_(__p)
4027{
4028#ifndef _LIBCPP_NO_EXCEPTIONS
4029 try
4030 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004031#endif // _LIBCPP_NO_EXCEPTIONS
Erik Pilkington2a398762017-05-25 15:43:31 +00004032 typedef typename __shared_ptr_default_allocator<_Yp>::type _AllocT;
4033 typedef __shared_ptr_pointer<_Yp*, _Dp, _AllocT > _CntrlBlk;
4034 __cntrl_ = new _CntrlBlk(__p, __d, _AllocT());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004035 __enable_weak_this(__p, __p);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004036#ifndef _LIBCPP_NO_EXCEPTIONS
4037 }
4038 catch (...)
4039 {
4040 __d(__p);
4041 throw;
4042 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004043#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00004044}
4045
4046template<class _Tp>
4047template<class _Dp>
4048shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
4049 : __ptr_(0)
4050{
4051#ifndef _LIBCPP_NO_EXCEPTIONS
4052 try
4053 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004054#endif // _LIBCPP_NO_EXCEPTIONS
Erik Pilkington2a398762017-05-25 15:43:31 +00004055 typedef typename __shared_ptr_default_allocator<_Tp>::type _AllocT;
4056 typedef __shared_ptr_pointer<nullptr_t, _Dp, _AllocT > _CntrlBlk;
4057 __cntrl_ = new _CntrlBlk(__p, __d, _AllocT());
Howard Hinnantc51e1022010-05-11 19:42:16 +00004058#ifndef _LIBCPP_NO_EXCEPTIONS
4059 }
4060 catch (...)
4061 {
4062 __d(__p);
4063 throw;
4064 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004065#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00004066}
4067
4068template<class _Tp>
Logan Chiend435f8b2014-01-31 09:30:46 +00004069template<class _Yp, class _Dp, class _Alloc>
4070shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a,
4071 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004072 : __ptr_(__p)
4073{
4074#ifndef _LIBCPP_NO_EXCEPTIONS
4075 try
4076 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004077#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00004078 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004079 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004080 typedef __allocator_destructor<_A2> _D2;
4081 _A2 __a2(__a);
4082 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004083 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4084 _CntrlBlk(__p, __d, __a);
4085 __cntrl_ = _VSTD::addressof(*__hold2.release());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004086 __enable_weak_this(__p, __p);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004087#ifndef _LIBCPP_NO_EXCEPTIONS
4088 }
4089 catch (...)
4090 {
4091 __d(__p);
4092 throw;
4093 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004094#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00004095}
4096
4097template<class _Tp>
4098template<class _Dp, class _Alloc>
4099shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
4100 : __ptr_(0)
4101{
4102#ifndef _LIBCPP_NO_EXCEPTIONS
4103 try
4104 {
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004105#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00004106 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004107 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004108 typedef __allocator_destructor<_A2> _D2;
4109 _A2 __a2(__a);
4110 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004111 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4112 _CntrlBlk(__p, __d, __a);
4113 __cntrl_ = _VSTD::addressof(*__hold2.release());
Howard Hinnantc51e1022010-05-11 19:42:16 +00004114#ifndef _LIBCPP_NO_EXCEPTIONS
4115 }
4116 catch (...)
4117 {
4118 __d(__p);
4119 throw;
4120 }
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004121#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantc51e1022010-05-11 19:42:16 +00004122}
4123
4124template<class _Tp>
4125template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004126inline
Howard Hinnant719bda32011-05-28 14:41:13 +00004127shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004128 : __ptr_(__p),
4129 __cntrl_(__r.__cntrl_)
4130{
4131 if (__cntrl_)
4132 __cntrl_->__add_shared();
4133}
4134
4135template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004136inline
Howard Hinnant719bda32011-05-28 14:41:13 +00004137shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004138 : __ptr_(__r.__ptr_),
4139 __cntrl_(__r.__cntrl_)
4140{
4141 if (__cntrl_)
4142 __cntrl_->__add_shared();
4143}
4144
4145template<class _Tp>
4146template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004147inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00004148shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r,
Marshall Clow7e384b72017-01-10 16:59:33 +00004149 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnant719bda32011-05-28 14:41:13 +00004150 _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004151 : __ptr_(__r.__ptr_),
4152 __cntrl_(__r.__cntrl_)
4153{
4154 if (__cntrl_)
4155 __cntrl_->__add_shared();
4156}
4157
Howard Hinnant74279a52010-09-04 23:28:19 +00004158#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004159
4160template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004161inline
Howard Hinnant719bda32011-05-28 14:41:13 +00004162shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004163 : __ptr_(__r.__ptr_),
4164 __cntrl_(__r.__cntrl_)
4165{
4166 __r.__ptr_ = 0;
4167 __r.__cntrl_ = 0;
4168}
4169
4170template<class _Tp>
4171template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004172inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00004173shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r,
Marshall Clow7e384b72017-01-10 16:59:33 +00004174 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnant719bda32011-05-28 14:41:13 +00004175 _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004176 : __ptr_(__r.__ptr_),
4177 __cntrl_(__r.__cntrl_)
4178{
4179 __r.__ptr_ = 0;
4180 __r.__cntrl_ = 0;
4181}
4182
Howard Hinnant74279a52010-09-04 23:28:19 +00004183#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004184
Marshall Clowb22274f2017-01-24 22:22:33 +00004185#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004186template<class _Tp>
Logan Chiend435f8b2014-01-31 09:30:46 +00004187template<class _Yp>
Howard Hinnant74279a52010-09-04 23:28:19 +00004188#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Logan Chiend435f8b2014-01-31 09:30:46 +00004189shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r,
Howard Hinnantc51e1022010-05-11 19:42:16 +00004190#else
Logan Chiend435f8b2014-01-31 09:30:46 +00004191shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r,
Howard Hinnantc51e1022010-05-11 19:42:16 +00004192#endif
Logan Chiend435f8b2014-01-31 09:30:46 +00004193 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004194 : __ptr_(__r.get())
4195{
4196 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4197 __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004198 __enable_weak_this(__r.get(), __r.get());
Howard Hinnantc51e1022010-05-11 19:42:16 +00004199 __r.release();
4200}
Marshall Clowb22274f2017-01-24 22:22:33 +00004201#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00004202
4203template<class _Tp>
Logan Chiend435f8b2014-01-31 09:30:46 +00004204template <class _Yp, class _Dp>
Howard Hinnant74279a52010-09-04 23:28:19 +00004205#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004206shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4207#else
4208shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4209#endif
Logan Chiend435f8b2014-01-31 09:30:46 +00004210 typename enable_if
4211 <
4212 !is_lvalue_reference<_Dp>::value &&
4213 !is_array<_Yp>::value &&
4214 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
4215 __nat
4216 >::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004217 : __ptr_(__r.get())
4218{
Marshall Clow35cde742015-05-10 13:59:45 +00004219#if _LIBCPP_STD_VER > 11
4220 if (__ptr_ == nullptr)
4221 __cntrl_ = nullptr;
4222 else
4223#endif
4224 {
Erik Pilkington2a398762017-05-25 15:43:31 +00004225 typedef typename __shared_ptr_default_allocator<_Yp>::type _AllocT;
4226 typedef __shared_ptr_pointer<_Yp*, _Dp, _AllocT > _CntrlBlk;
4227 __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), _AllocT());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004228 __enable_weak_this(__r.get(), __r.get());
Marshall Clow35cde742015-05-10 13:59:45 +00004229 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00004230 __r.release();
4231}
4232
4233template<class _Tp>
Logan Chiend435f8b2014-01-31 09:30:46 +00004234template <class _Yp, class _Dp>
Howard Hinnant74279a52010-09-04 23:28:19 +00004235#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004236shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4237#else
4238shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4239#endif
Logan Chiend435f8b2014-01-31 09:30:46 +00004240 typename enable_if
4241 <
4242 is_lvalue_reference<_Dp>::value &&
4243 !is_array<_Yp>::value &&
4244 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
4245 __nat
4246 >::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004247 : __ptr_(__r.get())
4248{
Marshall Clow35cde742015-05-10 13:59:45 +00004249#if _LIBCPP_STD_VER > 11
4250 if (__ptr_ == nullptr)
4251 __cntrl_ = nullptr;
4252 else
4253#endif
4254 {
Erik Pilkington2a398762017-05-25 15:43:31 +00004255 typedef typename __shared_ptr_default_allocator<_Yp>::type _AllocT;
Marshall Clow35cde742015-05-10 13:59:45 +00004256 typedef __shared_ptr_pointer<_Yp*,
4257 reference_wrapper<typename remove_reference<_Dp>::type>,
Erik Pilkington2a398762017-05-25 15:43:31 +00004258 _AllocT > _CntrlBlk;
4259 __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), _AllocT());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004260 __enable_weak_this(__r.get(), __r.get());
Marshall Clow35cde742015-05-10 13:59:45 +00004261 }
Howard Hinnantc51e1022010-05-11 19:42:16 +00004262 __r.release();
4263}
4264
4265#ifndef _LIBCPP_HAS_NO_VARIADICS
4266
4267template<class _Tp>
4268template<class ..._Args>
4269shared_ptr<_Tp>
4270shared_ptr<_Tp>::make_shared(_Args&& ...__args)
4271{
Marshall Clowdec75c72017-12-05 04:09:49 +00004272 static_assert( is_constructible<_Tp, _Args...>::value, "Can't construct object in make_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004273 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4274 typedef allocator<_CntrlBlk> _A2;
4275 typedef __allocator_destructor<_A2> _D2;
4276 _A2 __a2;
4277 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004278 ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004279 shared_ptr<_Tp> __r;
4280 __r.__ptr_ = __hold2.get()->get();
4281 __r.__cntrl_ = __hold2.release();
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004282 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004283 return __r;
4284}
4285
4286template<class _Tp>
4287template<class _Alloc, class ..._Args>
4288shared_ptr<_Tp>
4289shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
4290{
Marshall Clowdec75c72017-12-05 04:09:49 +00004291 static_assert( is_constructible<_Tp, _Args...>::value, "Can't construct object in allocate_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004292 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004293 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004294 typedef __allocator_destructor<_A2> _D2;
4295 _A2 __a2(__a);
4296 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004297 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4298 _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004299 shared_ptr<_Tp> __r;
4300 __r.__ptr_ = __hold2.get()->get();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004301 __r.__cntrl_ = _VSTD::addressof(*__hold2.release());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004302 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004303 return __r;
4304}
4305
4306#else // _LIBCPP_HAS_NO_VARIADICS
4307
4308template<class _Tp>
4309shared_ptr<_Tp>
4310shared_ptr<_Tp>::make_shared()
4311{
Marshall Clowdec75c72017-12-05 04:09:49 +00004312 static_assert((is_constructible<_Tp>::value), "Can't construct object in make_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004313 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4314 typedef allocator<_CntrlBlk> _Alloc2;
4315 typedef __allocator_destructor<_Alloc2> _D2;
4316 _Alloc2 __alloc2;
4317 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4318 ::new(__hold2.get()) _CntrlBlk(__alloc2);
4319 shared_ptr<_Tp> __r;
4320 __r.__ptr_ = __hold2.get()->get();
4321 __r.__cntrl_ = __hold2.release();
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004322 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004323 return __r;
4324}
4325
4326template<class _Tp>
4327template<class _A0>
4328shared_ptr<_Tp>
4329shared_ptr<_Tp>::make_shared(_A0& __a0)
4330{
Marshall Clowdec75c72017-12-05 04:09:49 +00004331 static_assert((is_constructible<_Tp, _A0>::value), "Can't construct object in make_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004332 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4333 typedef allocator<_CntrlBlk> _Alloc2;
4334 typedef __allocator_destructor<_Alloc2> _D2;
4335 _Alloc2 __alloc2;
4336 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4337 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0);
4338 shared_ptr<_Tp> __r;
4339 __r.__ptr_ = __hold2.get()->get();
4340 __r.__cntrl_ = __hold2.release();
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004341 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004342 return __r;
4343}
4344
4345template<class _Tp>
4346template<class _A0, class _A1>
4347shared_ptr<_Tp>
4348shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4349{
Marshall Clowdec75c72017-12-05 04:09:49 +00004350 static_assert((is_constructible<_Tp, _A0, _A1>::value), "Can't construct object in make_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004351 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4352 typedef allocator<_CntrlBlk> _Alloc2;
4353 typedef __allocator_destructor<_Alloc2> _D2;
4354 _Alloc2 __alloc2;
4355 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4356 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4357 shared_ptr<_Tp> __r;
4358 __r.__ptr_ = __hold2.get()->get();
4359 __r.__cntrl_ = __hold2.release();
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004360 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004361 return __r;
4362}
4363
4364template<class _Tp>
4365template<class _A0, class _A1, class _A2>
4366shared_ptr<_Tp>
4367shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4368{
Marshall Clowdec75c72017-12-05 04:09:49 +00004369 static_assert((is_constructible<_Tp, _A0, _A1, _A2>::value), "Can't construct object in make_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004370 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4371 typedef allocator<_CntrlBlk> _Alloc2;
4372 typedef __allocator_destructor<_Alloc2> _D2;
4373 _Alloc2 __alloc2;
4374 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4375 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4376 shared_ptr<_Tp> __r;
4377 __r.__ptr_ = __hold2.get()->get();
4378 __r.__cntrl_ = __hold2.release();
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004379 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004380 return __r;
4381}
4382
4383template<class _Tp>
4384template<class _Alloc>
4385shared_ptr<_Tp>
4386shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
4387{
Marshall Clowdec75c72017-12-05 04:09:49 +00004388 static_assert((is_constructible<_Tp>::value), "Can't construct object in allocate_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004389 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004390 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004391 typedef __allocator_destructor<_Alloc2> _D2;
4392 _Alloc2 __alloc2(__a);
4393 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004394 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4395 _CntrlBlk(__a);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004396 shared_ptr<_Tp> __r;
4397 __r.__ptr_ = __hold2.get()->get();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004398 __r.__cntrl_ = _VSTD::addressof(*__hold2.release());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004399 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004400 return __r;
4401}
4402
4403template<class _Tp>
4404template<class _Alloc, class _A0>
4405shared_ptr<_Tp>
4406shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
4407{
Marshall Clowdec75c72017-12-05 04:09:49 +00004408 static_assert((is_constructible<_Tp, _A0>::value), "Can't construct object in allocate_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004409 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004410 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004411 typedef __allocator_destructor<_Alloc2> _D2;
4412 _Alloc2 __alloc2(__a);
4413 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004414 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4415 _CntrlBlk(__a, __a0);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004416 shared_ptr<_Tp> __r;
4417 __r.__ptr_ = __hold2.get()->get();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004418 __r.__cntrl_ = _VSTD::addressof(*__hold2.release());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004419 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004420 return __r;
4421}
4422
4423template<class _Tp>
4424template<class _Alloc, class _A0, class _A1>
4425shared_ptr<_Tp>
4426shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4427{
Marshall Clowdec75c72017-12-05 04:09:49 +00004428 static_assert((is_constructible<_Tp, _A0, _A1>::value), "Can't construct object in allocate_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004429 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004430 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004431 typedef __allocator_destructor<_Alloc2> _D2;
4432 _Alloc2 __alloc2(__a);
4433 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004434 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4435 _CntrlBlk(__a, __a0, __a1);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004436 shared_ptr<_Tp> __r;
4437 __r.__ptr_ = __hold2.get()->get();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004438 __r.__cntrl_ = _VSTD::addressof(*__hold2.release());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004439 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004440 return __r;
4441}
4442
4443template<class _Tp>
4444template<class _Alloc, class _A0, class _A1, class _A2>
4445shared_ptr<_Tp>
4446shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4447{
Marshall Clowdec75c72017-12-05 04:09:49 +00004448 static_assert((is_constructible<_Tp, _A0, _A1, _A2>::value), "Can't construct object in allocate_shared" );
Howard Hinnantc51e1022010-05-11 19:42:16 +00004449 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004450 typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004451 typedef __allocator_destructor<_Alloc2> _D2;
4452 _Alloc2 __alloc2(__a);
4453 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004454 ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get())))
4455 _CntrlBlk(__a, __a0, __a1, __a2);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004456 shared_ptr<_Tp> __r;
4457 __r.__ptr_ = __hold2.get()->get();
Eric Fiselier6bd814f2014-10-23 04:12:28 +00004458 __r.__cntrl_ = _VSTD::addressof(*__hold2.release());
Eric Fiselierf16c93f2016-06-26 23:56:32 +00004459 __r.__enable_weak_this(__r.__ptr_, __r.__ptr_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004460 return __r;
4461}
4462
4463#endif // _LIBCPP_HAS_NO_VARIADICS
4464
4465template<class _Tp>
4466shared_ptr<_Tp>::~shared_ptr()
4467{
4468 if (__cntrl_)
4469 __cntrl_->__release_shared();
4470}
4471
4472template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004473inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00004474shared_ptr<_Tp>&
Howard Hinnant719bda32011-05-28 14:41:13 +00004475shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004476{
4477 shared_ptr(__r).swap(*this);
4478 return *this;
4479}
4480
4481template<class _Tp>
4482template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004483inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004484typename enable_if
4485<
Marshall Clow7e384b72017-01-10 16:59:33 +00004486 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004487 shared_ptr<_Tp>&
4488>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00004489shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004490{
4491 shared_ptr(__r).swap(*this);
4492 return *this;
4493}
4494
Howard Hinnant74279a52010-09-04 23:28:19 +00004495#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004496
4497template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004498inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00004499shared_ptr<_Tp>&
Howard Hinnant719bda32011-05-28 14:41:13 +00004500shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004501{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004502 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004503 return *this;
4504}
4505
4506template<class _Tp>
4507template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004508inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004509typename enable_if
4510<
Marshall Clow7e384b72017-01-10 16:59:33 +00004511 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004512 shared_ptr<_Tp>&
4513>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004514shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r)
4515{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004516 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004517 return *this;
4518}
4519
Marshall Clowb22274f2017-01-24 22:22:33 +00004520#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004521template<class _Tp>
4522template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004523inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004524typename enable_if
4525<
4526 !is_array<_Yp>::value &&
Marshall Clow7e384b72017-01-10 16:59:33 +00004527 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant25bcaf62013-09-13 23:56:00 +00004528 shared_ptr<_Tp>
4529>::type&
Howard Hinnantc51e1022010-05-11 19:42:16 +00004530shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r)
4531{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004532 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004533 return *this;
4534}
Marshall Clowb22274f2017-01-24 22:22:33 +00004535#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00004536
4537template<class _Tp>
4538template <class _Yp, class _Dp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004539inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004540typename enable_if
4541<
4542 !is_array<_Yp>::value &&
Aditya Kumar7c5db692017-08-20 10:38:55 +00004543 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer,
Marshall Clow7e384b72017-01-10 16:59:33 +00004544 typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004545 shared_ptr<_Tp>&
4546>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004547shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r)
4548{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004549 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004550 return *this;
4551}
4552
Howard Hinnant74279a52010-09-04 23:28:19 +00004553#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004554
Marshall Clowb22274f2017-01-24 22:22:33 +00004555#if _LIBCPP_STD_VER <= 14 || defined(_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004556template<class _Tp>
4557template<class _Yp>
4558inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004559typename enable_if
4560<
4561 !is_array<_Yp>::value &&
Marshall Clowb89a86e2017-01-10 18:40:01 +00004562 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004563 shared_ptr<_Tp>&
4564>::type
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004565shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r)
Howard Hinnantc51e1022010-05-11 19:42:16 +00004566{
4567 shared_ptr(__r).swap(*this);
4568 return *this;
4569}
Marshall Clowb22274f2017-01-24 22:22:33 +00004570#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00004571
4572template<class _Tp>
4573template <class _Yp, class _Dp>
4574inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004575typename enable_if
4576<
4577 !is_array<_Yp>::value &&
Aditya Kumar7c5db692017-08-20 10:38:55 +00004578 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer,
Marshall Clowb89a86e2017-01-10 18:40:01 +00004579 typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004580 shared_ptr<_Tp>&
4581>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004582shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r)
4583{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004584 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004585 return *this;
4586}
4587
Howard Hinnant74279a52010-09-04 23:28:19 +00004588#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantc51e1022010-05-11 19:42:16 +00004589
4590template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004591inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00004592void
Howard Hinnant719bda32011-05-28 14:41:13 +00004593shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004594{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004595 _VSTD::swap(__ptr_, __r.__ptr_);
4596 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004597}
4598
4599template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004600inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00004601void
Howard Hinnant719bda32011-05-28 14:41:13 +00004602shared_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004603{
4604 shared_ptr().swap(*this);
4605}
4606
4607template<class _Tp>
4608template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004609inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004610typename enable_if
4611<
Marshall Clow7e384b72017-01-10 16:59:33 +00004612 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004613 void
4614>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004615shared_ptr<_Tp>::reset(_Yp* __p)
4616{
4617 shared_ptr(__p).swap(*this);
4618}
4619
4620template<class _Tp>
4621template<class _Yp, class _Dp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004622inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004623typename enable_if
4624<
Marshall Clow7e384b72017-01-10 16:59:33 +00004625 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004626 void
4627>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004628shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d)
4629{
4630 shared_ptr(__p, __d).swap(*this);
4631}
4632
4633template<class _Tp>
4634template<class _Yp, class _Dp, class _Alloc>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004635inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004636typename enable_if
4637<
Marshall Clow7e384b72017-01-10 16:59:33 +00004638 is_convertible<_Yp*, typename shared_ptr<_Tp>::element_type*>::value,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004639 void
4640>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004641shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a)
4642{
4643 shared_ptr(__p, __d, __a).swap(*this);
4644}
4645
4646#ifndef _LIBCPP_HAS_NO_VARIADICS
4647
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004648template<class _Tp, class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00004649inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004650typename enable_if
4651<
4652 !is_array<_Tp>::value,
4653 shared_ptr<_Tp>
4654>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004655make_shared(_Args&& ...__args)
4656{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004657 return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004658}
4659
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004660template<class _Tp, class _Alloc, class ..._Args>
Howard Hinnantc51e1022010-05-11 19:42:16 +00004661inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004662typename enable_if
4663<
4664 !is_array<_Tp>::value,
4665 shared_ptr<_Tp>
4666>::type
Howard Hinnantc51e1022010-05-11 19:42:16 +00004667allocate_shared(const _Alloc& __a, _Args&& ...__args)
4668{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00004669 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004670}
4671
4672#else // _LIBCPP_HAS_NO_VARIADICS
4673
4674template<class _Tp>
4675inline _LIBCPP_INLINE_VISIBILITY
4676shared_ptr<_Tp>
4677make_shared()
4678{
4679 return shared_ptr<_Tp>::make_shared();
4680}
4681
4682template<class _Tp, class _A0>
4683inline _LIBCPP_INLINE_VISIBILITY
4684shared_ptr<_Tp>
4685make_shared(_A0& __a0)
4686{
4687 return shared_ptr<_Tp>::make_shared(__a0);
4688}
4689
4690template<class _Tp, class _A0, class _A1>
4691inline _LIBCPP_INLINE_VISIBILITY
4692shared_ptr<_Tp>
4693make_shared(_A0& __a0, _A1& __a1)
4694{
4695 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4696}
4697
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004698template<class _Tp, class _A0, class _A1, class _A2>
Howard Hinnantc51e1022010-05-11 19:42:16 +00004699inline _LIBCPP_INLINE_VISIBILITY
4700shared_ptr<_Tp>
4701make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4702{
4703 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4704}
4705
4706template<class _Tp, class _Alloc>
4707inline _LIBCPP_INLINE_VISIBILITY
4708shared_ptr<_Tp>
4709allocate_shared(const _Alloc& __a)
4710{
4711 return shared_ptr<_Tp>::allocate_shared(__a);
4712}
4713
4714template<class _Tp, class _Alloc, class _A0>
4715inline _LIBCPP_INLINE_VISIBILITY
4716shared_ptr<_Tp>
4717allocate_shared(const _Alloc& __a, _A0& __a0)
4718{
4719 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
4720}
4721
4722template<class _Tp, class _Alloc, class _A0, class _A1>
4723inline _LIBCPP_INLINE_VISIBILITY
4724shared_ptr<_Tp>
4725allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4726{
4727 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4728}
4729
4730template<class _Tp, class _Alloc, class _A0, class _A1, class _A2>
4731inline _LIBCPP_INLINE_VISIBILITY
4732shared_ptr<_Tp>
4733allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4734{
4735 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
4736}
4737
4738#endif // _LIBCPP_HAS_NO_VARIADICS
4739
4740template<class _Tp, class _Up>
4741inline _LIBCPP_INLINE_VISIBILITY
4742bool
Howard Hinnant719bda32011-05-28 14:41:13 +00004743operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004744{
4745 return __x.get() == __y.get();
4746}
4747
4748template<class _Tp, class _Up>
4749inline _LIBCPP_INLINE_VISIBILITY
4750bool
Howard Hinnant719bda32011-05-28 14:41:13 +00004751operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004752{
4753 return !(__x == __y);
4754}
4755
4756template<class _Tp, class _Up>
4757inline _LIBCPP_INLINE_VISIBILITY
4758bool
Howard Hinnant719bda32011-05-28 14:41:13 +00004759operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004760{
Eric Fiselierf8898c82015-02-05 23:01:40 +00004761 typedef typename common_type<_Tp*, _Up*>::type _Vp;
4762 return less<_Vp>()(__x.get(), __y.get());
Howard Hinnantb17caf92012-02-21 21:02:58 +00004763}
4764
4765template<class _Tp, class _Up>
4766inline _LIBCPP_INLINE_VISIBILITY
4767bool
4768operator>(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4769{
4770 return __y < __x;
4771}
4772
4773template<class _Tp, class _Up>
4774inline _LIBCPP_INLINE_VISIBILITY
4775bool
4776operator<=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4777{
4778 return !(__y < __x);
4779}
4780
4781template<class _Tp, class _Up>
4782inline _LIBCPP_INLINE_VISIBILITY
4783bool
4784operator>=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4785{
4786 return !(__x < __y);
4787}
4788
4789template<class _Tp>
4790inline _LIBCPP_INLINE_VISIBILITY
4791bool
4792operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4793{
4794 return !__x;
4795}
4796
4797template<class _Tp>
4798inline _LIBCPP_INLINE_VISIBILITY
4799bool
4800operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4801{
4802 return !__x;
4803}
4804
4805template<class _Tp>
4806inline _LIBCPP_INLINE_VISIBILITY
4807bool
4808operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4809{
4810 return static_cast<bool>(__x);
4811}
4812
4813template<class _Tp>
4814inline _LIBCPP_INLINE_VISIBILITY
4815bool
4816operator!=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4817{
4818 return static_cast<bool>(__x);
4819}
4820
4821template<class _Tp>
4822inline _LIBCPP_INLINE_VISIBILITY
4823bool
4824operator<(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4825{
4826 return less<_Tp*>()(__x.get(), nullptr);
4827}
4828
4829template<class _Tp>
4830inline _LIBCPP_INLINE_VISIBILITY
4831bool
4832operator<(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4833{
4834 return less<_Tp*>()(nullptr, __x.get());
4835}
4836
4837template<class _Tp>
4838inline _LIBCPP_INLINE_VISIBILITY
4839bool
4840operator>(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4841{
4842 return nullptr < __x;
4843}
4844
4845template<class _Tp>
4846inline _LIBCPP_INLINE_VISIBILITY
4847bool
4848operator>(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4849{
4850 return __x < nullptr;
4851}
4852
4853template<class _Tp>
4854inline _LIBCPP_INLINE_VISIBILITY
4855bool
4856operator<=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4857{
4858 return !(nullptr < __x);
4859}
4860
4861template<class _Tp>
4862inline _LIBCPP_INLINE_VISIBILITY
4863bool
4864operator<=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4865{
4866 return !(__x < nullptr);
4867}
4868
4869template<class _Tp>
4870inline _LIBCPP_INLINE_VISIBILITY
4871bool
4872operator>=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4873{
4874 return !(__x < nullptr);
4875}
4876
4877template<class _Tp>
4878inline _LIBCPP_INLINE_VISIBILITY
4879bool
4880operator>=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4881{
4882 return !(nullptr < __x);
Howard Hinnantc51e1022010-05-11 19:42:16 +00004883}
4884
4885template<class _Tp>
4886inline _LIBCPP_INLINE_VISIBILITY
4887void
Howard Hinnant719bda32011-05-28 14:41:13 +00004888swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004889{
4890 __x.swap(__y);
4891}
4892
4893template<class _Tp, class _Up>
4894inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004895typename enable_if
4896<
4897 !is_array<_Tp>::value && !is_array<_Up>::value,
4898 shared_ptr<_Tp>
4899>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00004900static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004901{
4902 return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get()));
4903}
4904
4905template<class _Tp, class _Up>
4906inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004907typename enable_if
4908<
4909 !is_array<_Tp>::value && !is_array<_Up>::value,
4910 shared_ptr<_Tp>
4911>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00004912dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004913{
4914 _Tp* __p = dynamic_cast<_Tp*>(__r.get());
4915 return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>();
4916}
4917
4918template<class _Tp, class _Up>
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004919typename enable_if
4920<
4921 is_array<_Tp>::value == is_array<_Up>::value,
4922 shared_ptr<_Tp>
4923>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00004924const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004925{
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004926 typedef typename remove_extent<_Tp>::type _RTp;
4927 return shared_ptr<_Tp>(__r, const_cast<_RTp*>(__r.get()));
Howard Hinnantc51e1022010-05-11 19:42:16 +00004928}
4929
Howard Hinnant72f73582010-08-11 17:04:31 +00004930#ifndef _LIBCPP_NO_RTTI
4931
Howard Hinnantc51e1022010-05-11 19:42:16 +00004932template<class _Dp, class _Tp>
4933inline _LIBCPP_INLINE_VISIBILITY
4934_Dp*
Howard Hinnant719bda32011-05-28 14:41:13 +00004935get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00004936{
4937 return __p.template __get_deleter<_Dp>();
4938}
4939
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004940#endif // _LIBCPP_NO_RTTI
Howard Hinnant72f73582010-08-11 17:04:31 +00004941
Howard Hinnantc51e1022010-05-11 19:42:16 +00004942template<class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00004943class _LIBCPP_TEMPLATE_VIS weak_ptr
Howard Hinnantc51e1022010-05-11 19:42:16 +00004944{
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004945public:
4946 typedef _Tp element_type;
Howard Hinnantc51e1022010-05-11 19:42:16 +00004947private:
4948 element_type* __ptr_;
4949 __shared_weak_count* __cntrl_;
4950
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004951public:
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004952 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantb5fffe82012-07-07 20:56:04 +00004953 _LIBCPP_CONSTEXPR weak_ptr() _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004954 template<class _Yp> _LIBCPP_INLINE_VISIBILITY weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant719bda32011-05-28 14:41:13 +00004955 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4956 _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004957 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00004958 weak_ptr(weak_ptr const& __r) _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004959 template<class _Yp> _LIBCPP_INLINE_VISIBILITY weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant719bda32011-05-28 14:41:13 +00004960 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4961 _NOEXCEPT;
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004962
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004963#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004964 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004965 weak_ptr(weak_ptr&& __r) _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004966 template<class _Yp> _LIBCPP_INLINE_VISIBILITY weak_ptr(weak_ptr<_Yp>&& __r,
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004967 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4968 _NOEXCEPT;
4969#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant3b6579a2010-08-22 00:02:43 +00004970 ~weak_ptr();
4971
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004972 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00004973 weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004974 template<class _Yp>
4975 typename enable_if
4976 <
4977 is_convertible<_Yp*, element_type*>::value,
4978 weak_ptr&
4979 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004980 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004981 operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT;
4982
4983#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4984
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004985 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004986 weak_ptr& operator=(weak_ptr&& __r) _NOEXCEPT;
4987 template<class _Yp>
4988 typename enable_if
4989 <
4990 is_convertible<_Yp*, element_type*>::value,
4991 weak_ptr&
4992 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00004993 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00004994 operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT;
4995
4996#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
4997
4998 template<class _Yp>
4999 typename enable_if
5000 <
5001 is_convertible<_Yp*, element_type*>::value,
5002 weak_ptr&
5003 >::type
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005005 operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT;
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005006
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005007 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005008 void swap(weak_ptr& __r) _NOEXCEPT;
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005009 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005010 void reset() _NOEXCEPT;
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005011
Howard Hinnant756c69b2010-09-22 16:48:34 +00005012 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005013 long use_count() const _NOEXCEPT
5014 {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005015 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005016 bool expired() const _NOEXCEPT
5017 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
5018 shared_ptr<_Tp> lock() const _NOEXCEPT;
Howard Hinnant756c69b2010-09-22 16:48:34 +00005019 template<class _Up>
5020 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005021 bool owner_before(const shared_ptr<_Up>& __r) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005022 {return __cntrl_ < __r.__cntrl_;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005023 template<class _Up>
5024 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005025 bool owner_before(const weak_ptr<_Up>& __r) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005026 {return __cntrl_ < __r.__cntrl_;}
5027
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00005028 template <class _Up> friend class _LIBCPP_TEMPLATE_VIS weak_ptr;
5029 template <class _Up> friend class _LIBCPP_TEMPLATE_VIS shared_ptr;
Howard Hinnantc51e1022010-05-11 19:42:16 +00005030};
5031
5032template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005033inline
Howard Hinnantb5fffe82012-07-07 20:56:04 +00005034_LIBCPP_CONSTEXPR
Howard Hinnant719bda32011-05-28 14:41:13 +00005035weak_ptr<_Tp>::weak_ptr() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005036 : __ptr_(0),
5037 __cntrl_(0)
5038{
5039}
5040
5041template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005042inline
Howard Hinnant719bda32011-05-28 14:41:13 +00005043weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005044 : __ptr_(__r.__ptr_),
5045 __cntrl_(__r.__cntrl_)
5046{
5047 if (__cntrl_)
5048 __cntrl_->__add_weak();
5049}
5050
5051template<class _Tp>
5052template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005053inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00005054weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant3a085e82011-05-22 00:09:02 +00005055 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant719bda32011-05-28 14:41:13 +00005056 _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005057 : __ptr_(__r.__ptr_),
5058 __cntrl_(__r.__cntrl_)
5059{
5060 if (__cntrl_)
5061 __cntrl_->__add_weak();
5062}
5063
5064template<class _Tp>
5065template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005066inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00005067weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant3a085e82011-05-22 00:09:02 +00005068 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant719bda32011-05-28 14:41:13 +00005069 _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005070 : __ptr_(__r.__ptr_),
5071 __cntrl_(__r.__cntrl_)
5072{
5073 if (__cntrl_)
5074 __cntrl_->__add_weak();
5075}
5076
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005077#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5078
5079template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005080inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005081weak_ptr<_Tp>::weak_ptr(weak_ptr&& __r) _NOEXCEPT
5082 : __ptr_(__r.__ptr_),
5083 __cntrl_(__r.__cntrl_)
5084{
5085 __r.__ptr_ = 0;
5086 __r.__cntrl_ = 0;
5087}
5088
5089template<class _Tp>
5090template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005091inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005092weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp>&& __r,
5093 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
5094 _NOEXCEPT
5095 : __ptr_(__r.__ptr_),
5096 __cntrl_(__r.__cntrl_)
5097{
5098 __r.__ptr_ = 0;
5099 __r.__cntrl_ = 0;
5100}
5101
5102#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5103
Howard Hinnantc51e1022010-05-11 19:42:16 +00005104template<class _Tp>
5105weak_ptr<_Tp>::~weak_ptr()
5106{
5107 if (__cntrl_)
5108 __cntrl_->__release_weak();
5109}
5110
5111template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005112inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00005113weak_ptr<_Tp>&
Howard Hinnant719bda32011-05-28 14:41:13 +00005114weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005115{
5116 weak_ptr(__r).swap(*this);
5117 return *this;
5118}
5119
5120template<class _Tp>
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005121template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005122inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005123typename enable_if
5124<
5125 is_convertible<_Yp*, _Tp*>::value,
5126 weak_ptr<_Tp>&
5127>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00005128weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005129{
5130 weak_ptr(__r).swap(*this);
5131 return *this;
5132}
5133
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005134#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5135
5136template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005137inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005138weak_ptr<_Tp>&
5139weak_ptr<_Tp>::operator=(weak_ptr&& __r) _NOEXCEPT
5140{
5141 weak_ptr(_VSTD::move(__r)).swap(*this);
5142 return *this;
5143}
5144
Howard Hinnantc51e1022010-05-11 19:42:16 +00005145template<class _Tp>
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005146template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005147inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005148typename enable_if
5149<
5150 is_convertible<_Yp*, _Tp*>::value,
5151 weak_ptr<_Tp>&
5152>::type
5153weak_ptr<_Tp>::operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT
5154{
5155 weak_ptr(_VSTD::move(__r)).swap(*this);
5156 return *this;
5157}
5158
5159#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5160
5161template<class _Tp>
5162template<class _Yp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005163inline
Howard Hinnant741c8fa2012-01-02 17:56:02 +00005164typename enable_if
5165<
5166 is_convertible<_Yp*, _Tp*>::value,
5167 weak_ptr<_Tp>&
5168>::type
Howard Hinnant719bda32011-05-28 14:41:13 +00005169weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005170{
5171 weak_ptr(__r).swap(*this);
5172 return *this;
5173}
5174
5175template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005176inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00005177void
Howard Hinnant719bda32011-05-28 14:41:13 +00005178weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005179{
Howard Hinnantb1ad5a82011-06-30 21:18:19 +00005180 _VSTD::swap(__ptr_, __r.__ptr_);
5181 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantc51e1022010-05-11 19:42:16 +00005182}
5183
5184template<class _Tp>
5185inline _LIBCPP_INLINE_VISIBILITY
5186void
Howard Hinnant719bda32011-05-28 14:41:13 +00005187swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005188{
5189 __x.swap(__y);
5190}
5191
5192template<class _Tp>
Evgeniy Stepanov2fb1cb62015-11-07 01:22:13 +00005193inline
Howard Hinnantc51e1022010-05-11 19:42:16 +00005194void
Howard Hinnant719bda32011-05-28 14:41:13 +00005195weak_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005196{
5197 weak_ptr().swap(*this);
5198}
5199
5200template<class _Tp>
5201template<class _Yp>
5202shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r,
Marshall Clow7e384b72017-01-10 16:59:33 +00005203 typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type)
Howard Hinnantc51e1022010-05-11 19:42:16 +00005204 : __ptr_(__r.__ptr_),
5205 __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_)
5206{
5207 if (__cntrl_ == 0)
Marshall Clow8fea1612016-08-25 15:09:01 +00005208 __throw_bad_weak_ptr();
Howard Hinnantc51e1022010-05-11 19:42:16 +00005209}
5210
5211template<class _Tp>
5212shared_ptr<_Tp>
Howard Hinnant719bda32011-05-28 14:41:13 +00005213weak_ptr<_Tp>::lock() const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005214{
5215 shared_ptr<_Tp> __r;
5216 __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_;
5217 if (__r.__cntrl_)
5218 __r.__ptr_ = __ptr_;
5219 return __r;
5220}
5221
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005222#if _LIBCPP_STD_VER > 14
5223template <class _Tp = void> struct owner_less;
5224#else
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005225template <class _Tp> struct owner_less;
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005226#endif
Howard Hinnantc51e1022010-05-11 19:42:16 +00005227
5228template <class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00005229struct _LIBCPP_TEMPLATE_VIS owner_less<shared_ptr<_Tp> >
Howard Hinnantc51e1022010-05-11 19:42:16 +00005230 : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool>
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005231{
5232 typedef bool result_type;
Howard Hinnant756c69b2010-09-22 16:48:34 +00005233 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005234 bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005235 {return __x.owner_before(__y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005236 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005237 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005238 {return __x.owner_before(__y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005239 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005240 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005241 {return __x.owner_before(__y);}
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005242};
Howard Hinnantc51e1022010-05-11 19:42:16 +00005243
5244template <class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00005245struct _LIBCPP_TEMPLATE_VIS owner_less<weak_ptr<_Tp> >
Howard Hinnantc51e1022010-05-11 19:42:16 +00005246 : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool>
5247{
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005248 typedef bool result_type;
Howard Hinnant756c69b2010-09-22 16:48:34 +00005249 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005250 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005251 {return __x.owner_before(__y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005252 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005253 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005254 {return __x.owner_before(__y);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005255 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005256 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const _NOEXCEPT
Howard Hinnantc51e1022010-05-11 19:42:16 +00005257 {return __x.owner_before(__y);}
5258};
5259
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005260#if _LIBCPP_STD_VER > 14
5261template <>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00005262struct _LIBCPP_TEMPLATE_VIS owner_less<void>
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005263{
5264 template <class _Tp, class _Up>
5265 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005266 bool operator()( shared_ptr<_Tp> const& __x, shared_ptr<_Up> const& __y) const _NOEXCEPT
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005267 {return __x.owner_before(__y);}
5268 template <class _Tp, class _Up>
5269 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005270 bool operator()( shared_ptr<_Tp> const& __x, weak_ptr<_Up> const& __y) const _NOEXCEPT
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005271 {return __x.owner_before(__y);}
5272 template <class _Tp, class _Up>
5273 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005274 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Up> const& __y) const _NOEXCEPT
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005275 {return __x.owner_before(__y);}
5276 template <class _Tp, class _Up>
5277 _LIBCPP_INLINE_VISIBILITY
Marshall Clow18a7cd52017-04-11 17:08:53 +00005278 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Up> const& __y) const _NOEXCEPT
Marshall Clow3c2d8a42015-11-12 15:56:44 +00005279 {return __x.owner_before(__y);}
5280 typedef void is_transparent;
5281};
5282#endif
5283
Howard Hinnantc51e1022010-05-11 19:42:16 +00005284template<class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00005285class _LIBCPP_TEMPLATE_VIS enable_shared_from_this
Howard Hinnantc51e1022010-05-11 19:42:16 +00005286{
5287 mutable weak_ptr<_Tp> __weak_this_;
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005288protected:
Howard Hinnantb5fffe82012-07-07 20:56:04 +00005289 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Howard Hinnant719bda32011-05-28 14:41:13 +00005290 enable_shared_from_this() _NOEXCEPT {}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005291 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005292 enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005293 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005294 enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT
5295 {return *this;}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005296 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00005297 ~enable_shared_from_this() {}
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005298public:
Howard Hinnant756c69b2010-09-22 16:48:34 +00005299 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005300 shared_ptr<_Tp> shared_from_this()
5301 {return shared_ptr<_Tp>(__weak_this_);}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005302 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005303 shared_ptr<_Tp const> shared_from_this() const
5304 {return shared_ptr<const _Tp>(__weak_this_);}
Howard Hinnantc51e1022010-05-11 19:42:16 +00005305
Eric Fiselier84006862016-06-02 00:15:35 +00005306#if _LIBCPP_STD_VER > 14
5307 _LIBCPP_INLINE_VISIBILITY
5308 weak_ptr<_Tp> weak_from_this() _NOEXCEPT
5309 { return __weak_this_; }
5310
5311 _LIBCPP_INLINE_VISIBILITY
5312 weak_ptr<const _Tp> weak_from_this() const _NOEXCEPT
5313 { return __weak_this_; }
5314#endif // _LIBCPP_STD_VER > 14
5315
Howard Hinnantc51e1022010-05-11 19:42:16 +00005316 template <class _Up> friend class shared_ptr;
5317};
5318
Howard Hinnant36b31ae2010-06-03 16:42:57 +00005319template <class _Tp>
Eric Fiselierb5eb1bf2017-01-04 23:56:00 +00005320struct _LIBCPP_TEMPLATE_VIS hash<shared_ptr<_Tp> >
Howard Hinnant36b31ae2010-06-03 16:42:57 +00005321{
5322 typedef shared_ptr<_Tp> argument_type;
5323 typedef size_t result_type;
Eric Fiselier698a97b2017-01-21 00:02:12 +00005324
Howard Hinnant756c69b2010-09-22 16:48:34 +00005325 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant719bda32011-05-28 14:41:13 +00005326 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant36b31ae2010-06-03 16:42:57 +00005327 {
5328 return hash<_Tp*>()(__ptr.get());
5329 }
5330};
5331
Howard Hinnantc834c512011-11-29 18:15:50 +00005332template<class _CharT, class _Traits, class _Yp>
Howard Hinnantdc095972011-07-18 15:51:59 +00005333inline _LIBCPP_INLINE_VISIBILITY
5334basic_ostream<_CharT, _Traits>&
Howard Hinnantc834c512011-11-29 18:15:50 +00005335operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p);
Howard Hinnantdc095972011-07-18 15:51:59 +00005336
Eric Fiselier9b492672016-06-18 02:12:53 +00005337
5338#if !defined(_LIBCPP_HAS_NO_ATOMIC_HEADER)
Howard Hinnant9fa30202012-07-30 01:40:57 +00005339
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00005340class _LIBCPP_TYPE_VIS __sp_mut
Howard Hinnant9fa30202012-07-30 01:40:57 +00005341{
Howard Hinnant49e145e2012-10-30 19:06:59 +00005342 void* __lx;
Howard Hinnant9fa30202012-07-30 01:40:57 +00005343public:
5344 void lock() _NOEXCEPT;
5345 void unlock() _NOEXCEPT;
5346
5347private:
5348 _LIBCPP_CONSTEXPR __sp_mut(void*) _NOEXCEPT;
5349 __sp_mut(const __sp_mut&);
5350 __sp_mut& operator=(const __sp_mut&);
5351
Howard Hinnant8331b762013-03-06 23:30:19 +00005352 friend _LIBCPP_FUNC_VIS __sp_mut& __get_sp_mut(const void*);
Howard Hinnant9fa30202012-07-30 01:40:57 +00005353};
5354
Mehdi Amini228053d2017-05-04 17:08:54 +00005355_LIBCPP_FUNC_VIS _LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
5356__sp_mut& __get_sp_mut(const void*);
Howard Hinnant9fa30202012-07-30 01:40:57 +00005357
5358template <class _Tp>
5359inline _LIBCPP_INLINE_VISIBILITY
5360bool
5361atomic_is_lock_free(const shared_ptr<_Tp>*)
5362{
5363 return false;
5364}
5365
5366template <class _Tp>
Mehdi Amini228053d2017-05-04 17:08:54 +00005367_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005368shared_ptr<_Tp>
5369atomic_load(const shared_ptr<_Tp>* __p)
5370{
5371 __sp_mut& __m = __get_sp_mut(__p);
5372 __m.lock();
5373 shared_ptr<_Tp> __q = *__p;
5374 __m.unlock();
5375 return __q;
5376}
Aditya Kumar7c5db692017-08-20 10:38:55 +00005377
Howard Hinnant9fa30202012-07-30 01:40:57 +00005378template <class _Tp>
5379inline _LIBCPP_INLINE_VISIBILITY
Mehdi Amini228053d2017-05-04 17:08:54 +00005380_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005381shared_ptr<_Tp>
5382atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order)
5383{
5384 return atomic_load(__p);
5385}
5386
5387template <class _Tp>
Mehdi Amini228053d2017-05-04 17:08:54 +00005388_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005389void
5390atomic_store(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r)
5391{
5392 __sp_mut& __m = __get_sp_mut(__p);
5393 __m.lock();
5394 __p->swap(__r);
5395 __m.unlock();
5396}
5397
5398template <class _Tp>
5399inline _LIBCPP_INLINE_VISIBILITY
Mehdi Amini228053d2017-05-04 17:08:54 +00005400_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005401void
5402atomic_store_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
5403{
5404 atomic_store(__p, __r);
5405}
5406
5407template <class _Tp>
Mehdi Amini228053d2017-05-04 17:08:54 +00005408_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005409shared_ptr<_Tp>
5410atomic_exchange(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r)
5411{
5412 __sp_mut& __m = __get_sp_mut(__p);
5413 __m.lock();
5414 __p->swap(__r);
5415 __m.unlock();
5416 return __r;
5417}
Aditya Kumar7c5db692017-08-20 10:38:55 +00005418
Howard Hinnant9fa30202012-07-30 01:40:57 +00005419template <class _Tp>
5420inline _LIBCPP_INLINE_VISIBILITY
Mehdi Amini228053d2017-05-04 17:08:54 +00005421_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005422shared_ptr<_Tp>
5423atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
5424{
5425 return atomic_exchange(__p, __r);
5426}
5427
5428template <class _Tp>
Mehdi Amini228053d2017-05-04 17:08:54 +00005429_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005430bool
5431atomic_compare_exchange_strong(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w)
5432{
Marshall Clow4201ee82016-05-18 17:50:13 +00005433 shared_ptr<_Tp> __temp;
Howard Hinnant9fa30202012-07-30 01:40:57 +00005434 __sp_mut& __m = __get_sp_mut(__p);
5435 __m.lock();
5436 if (__p->__owner_equivalent(*__v))
5437 {
Marshall Clow4201ee82016-05-18 17:50:13 +00005438 _VSTD::swap(__temp, *__p);
Howard Hinnant9fa30202012-07-30 01:40:57 +00005439 *__p = __w;
5440 __m.unlock();
5441 return true;
5442 }
Marshall Clow4201ee82016-05-18 17:50:13 +00005443 _VSTD::swap(__temp, *__v);
Howard Hinnant9fa30202012-07-30 01:40:57 +00005444 *__v = *__p;
5445 __m.unlock();
5446 return false;
5447}
5448
5449template <class _Tp>
5450inline _LIBCPP_INLINE_VISIBILITY
Mehdi Amini228053d2017-05-04 17:08:54 +00005451_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005452bool
5453atomic_compare_exchange_weak(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w)
5454{
5455 return atomic_compare_exchange_strong(__p, __v, __w);
5456}
5457
5458template <class _Tp>
5459inline _LIBCPP_INLINE_VISIBILITY
Mehdi Amini228053d2017-05-04 17:08:54 +00005460_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005461bool
5462atomic_compare_exchange_strong_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
5463 shared_ptr<_Tp> __w, memory_order, memory_order)
5464{
5465 return atomic_compare_exchange_strong(__p, __v, __w);
5466}
5467
5468template <class _Tp>
5469inline _LIBCPP_INLINE_VISIBILITY
Mehdi Amini228053d2017-05-04 17:08:54 +00005470_LIBCPP_AVAILABILITY_ATOMIC_SHARED_PTR
Howard Hinnant9fa30202012-07-30 01:40:57 +00005471bool
5472atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
5473 shared_ptr<_Tp> __w, memory_order, memory_order)
5474{
5475 return atomic_compare_exchange_weak(__p, __v, __w);
5476}
5477
Eric Fiselier9b492672016-06-18 02:12:53 +00005478#endif // !defined(_LIBCPP_HAS_NO_ATOMIC_HEADER)
Howard Hinnant9fa30202012-07-30 01:40:57 +00005479
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005480//enum class
Eric Fiselierab6bb302017-01-05 01:15:42 +00005481#if defined(_LIBCPP_ABI_POINTER_SAFETY_ENUM_TYPE)
5482# ifndef _LIBCPP_CXX03_LANG
5483enum class pointer_safety : unsigned char {
5484 relaxed,
5485 preferred,
5486 strict
5487};
5488# endif
5489#else
Howard Hinnant8331b762013-03-06 23:30:19 +00005490struct _LIBCPP_TYPE_VIS pointer_safety
Howard Hinnantc51e1022010-05-11 19:42:16 +00005491{
Howard Hinnant49e145e2012-10-30 19:06:59 +00005492 enum __lx
Howard Hinnantc51e1022010-05-11 19:42:16 +00005493 {
5494 relaxed,
5495 preferred,
5496 strict
5497 };
5498
Howard Hinnant49e145e2012-10-30 19:06:59 +00005499 __lx __v_;
Howard Hinnantc51e1022010-05-11 19:42:16 +00005500
Howard Hinnant756c69b2010-09-22 16:48:34 +00005501 _LIBCPP_INLINE_VISIBILITY
Eric Fiselier2fdd22b2017-01-05 01:28:40 +00005502 pointer_safety() : __v_() {}
5503
5504 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant49e145e2012-10-30 19:06:59 +00005505 pointer_safety(__lx __v) : __v_(__v) {}
Howard Hinnant756c69b2010-09-22 16:48:34 +00005506 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantc51e1022010-05-11 19:42:16 +00005507 operator int() const {return __v_;}
5508};
Eric Fiselierab6bb302017-01-05 01:15:42 +00005509#endif
5510
5511#if !defined(_LIBCPP_ABI_POINTER_SAFETY_ENUM_TYPE) && \
5512 defined(_LIBCPP_BUILDING_MEMORY)
5513_LIBCPP_FUNC_VIS pointer_safety get_pointer_safety() _NOEXCEPT;
5514#else
5515// This function is only offered in C++03 under ABI v1.
5516# if !defined(_LIBCPP_ABI_POINTER_SAFETY_ENUM_TYPE) || !defined(_LIBCPP_CXX03_LANG)
5517inline _LIBCPP_INLINE_VISIBILITY
5518pointer_safety get_pointer_safety() _NOEXCEPT {
5519 return pointer_safety::relaxed;
5520}
5521# endif
5522#endif
5523
Howard Hinnantc51e1022010-05-11 19:42:16 +00005524
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00005525_LIBCPP_FUNC_VIS void declare_reachable(void* __p);
5526_LIBCPP_FUNC_VIS void declare_no_pointers(char* __p, size_t __n);
5527_LIBCPP_FUNC_VIS void undeclare_no_pointers(char* __p, size_t __n);
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00005528_LIBCPP_FUNC_VIS void* __undeclare_reachable(void* __p);
Howard Hinnantc51e1022010-05-11 19:42:16 +00005529
5530template <class _Tp>
5531inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant3b6579a2010-08-22 00:02:43 +00005532_Tp*
Howard Hinnantc51e1022010-05-11 19:42:16 +00005533undeclare_reachable(_Tp* __p)
5534{
5535 return static_cast<_Tp*>(__undeclare_reachable(__p));
5536}
5537
Howard Hinnanta37d3cf2013-08-12 18:38:34 +00005538_LIBCPP_FUNC_VIS void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Howard Hinnantc51e1022010-05-11 19:42:16 +00005539
Marshall Clow8982dcd2015-07-13 20:04:56 +00005540// --- Helper for container swap --
5541template <typename _Alloc>
Eric Fiselier6585c752016-04-21 22:54:21 +00005542inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow8982dcd2015-07-13 20:04:56 +00005543void __swap_allocator(_Alloc & __a1, _Alloc & __a2)
5544#if _LIBCPP_STD_VER >= 14
5545 _NOEXCEPT
5546#else
5547 _NOEXCEPT_(__is_nothrow_swappable<_Alloc>::value)
5548#endif
5549{
Aditya Kumar7c5db692017-08-20 10:38:55 +00005550 __swap_allocator(__a1, __a2,
Marshall Clow8982dcd2015-07-13 20:04:56 +00005551 integral_constant<bool, _VSTD::allocator_traits<_Alloc>::propagate_on_container_swap::value>());
5552}
5553
5554template <typename _Alloc>
5555_LIBCPP_INLINE_VISIBILITY
5556void __swap_allocator(_Alloc & __a1, _Alloc & __a2, true_type)
5557#if _LIBCPP_STD_VER >= 14
5558 _NOEXCEPT
5559#else
5560 _NOEXCEPT_(__is_nothrow_swappable<_Alloc>::value)
5561#endif
5562{
5563 using _VSTD::swap;
5564 swap(__a1, __a2);
5565}
5566
5567template <typename _Alloc>
Eric Fiselier6585c752016-04-21 22:54:21 +00005568inline _LIBCPP_INLINE_VISIBILITY
Marshall Clow8982dcd2015-07-13 20:04:56 +00005569void __swap_allocator(_Alloc &, _Alloc &, false_type) _NOEXCEPT {}
5570
Marshall Clowff91de82015-08-18 19:51:37 +00005571template <typename _Alloc, typename _Traits=allocator_traits<_Alloc> >
Aditya Kumar7c5db692017-08-20 10:38:55 +00005572struct __noexcept_move_assign_container : public integral_constant<bool,
Marshall Clow2fe8a8d2015-08-18 18:57:00 +00005573 _Traits::propagate_on_container_move_assignment::value
5574#if _LIBCPP_STD_VER > 14
5575 || _Traits::is_always_equal::value
5576#else
5577 && is_nothrow_move_assignable<_Alloc>::value
5578#endif
5579 > {};
Marshall Clow8982dcd2015-07-13 20:04:56 +00005580
Marshall Clowa591b9a2016-07-11 21:38:08 +00005581
5582#ifndef _LIBCPP_HAS_NO_VARIADICS
5583template <class _Tp, class _Alloc>
5584struct __temp_value {
5585 typedef allocator_traits<_Alloc> _Traits;
Aditya Kumar7c5db692017-08-20 10:38:55 +00005586
Marshall Clowa591b9a2016-07-11 21:38:08 +00005587 typename aligned_storage<sizeof(_Tp), alignof(_Tp)>::type __v;
5588 _Alloc &__a;
5589
5590 _Tp *__addr() { return reinterpret_cast<_Tp *>(addressof(__v)); }
5591 _Tp & get() { return *__addr(); }
Aditya Kumar7c5db692017-08-20 10:38:55 +00005592
Marshall Clowa591b9a2016-07-11 21:38:08 +00005593 template<class... _Args>
5594 __temp_value(_Alloc &__alloc, _Args&& ... __args) : __a(__alloc)
5595 { _Traits::construct(__a, __addr(), _VSTD::forward<_Args>(__args)...); }
Aditya Kumar7c5db692017-08-20 10:38:55 +00005596
Marshall Clowa591b9a2016-07-11 21:38:08 +00005597 ~__temp_value() { _Traits::destroy(__a, __addr()); }
5598 };
5599#endif
5600
Marshall Clow82c90aa2018-01-11 19:36:22 +00005601#if _LIBCPP_STD_VER > 14
5602template<typename _Alloc, typename = void>
5603struct __is_allocator : false_type {};
5604
5605template<typename _Alloc>
5606struct __is_allocator<_Alloc,
5607 void_t<typename _Alloc::value_type, decltype(_VSTD::declval<_Alloc&>().allocate(size_t{}))>>
5608 : true_type {};
5609#endif
5610
Howard Hinnantc51e1022010-05-11 19:42:16 +00005611_LIBCPP_END_NAMESPACE_STD
5612
Eric Fiselierf4433a32017-05-31 22:07:49 +00005613_LIBCPP_POP_MACROS
5614
Howard Hinnantc51e1022010-05-11 19:42:16 +00005615#endif // _LIBCPP_MEMORY