blob: 4c12ad93ab86377e8b78f62a1e51307c8e328b57 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- memory ------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_MEMORY
12#define _LIBCPP_MEMORY
13
14/*
15 memory synopsis
16
17namespace std
18{
19
20struct allocator_arg_t { };
21constexpr allocator_arg_t allocator_arg = allocator_arg_t();
22
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 Hinnant324bb032010-08-22 00:02:43 +000031
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000032 template <class U> using rebind = <details>;
Howard Hinnant324bb032010-08-22 00:02:43 +000033
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000034 static pointer pointer_to(<details>);
35};
36
Howard Hinnant1694d232011-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
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000049template <class Alloc>
50struct allocator_traits
51{
52 typedef Alloc allocator_type;
53 typedef typename allocator_type::value_type
54 value_type;
55
56 typedef Alloc::pointer | value_type* pointer;
57 typedef Alloc::const_pointer
58 | pointer_traits<pointer>::rebind<const value_type>
59 const_pointer;
60 typedef Alloc::void_pointer
61 | pointer_traits<pointer>::rebind<void>
62 void_pointer;
63 typedef Alloc::const_void_pointer
64 | pointer_traits<pointer>::rebind<const void>
65 const_void_pointer;
66 typedef Alloc::difference_type
Howard Hinnant47761072010-11-18 01:40:00 +000067 | pointer_traits<pointer>::difference_type
68 difference_type;
69 typedef Alloc::size_type
70 | make_unsigned<difference_type>::type
71 size_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000072 typedef Alloc::propagate_on_container_copy_assignment
73 | false_type propagate_on_container_copy_assignment;
74 typedef Alloc::propagate_on_container_move_assignment
75 | false_type propagate_on_container_move_assignment;
76 typedef Alloc::propagate_on_container_swap
77 | false_type propagate_on_container_swap;
78
79 template <class T> using rebind_alloc = Alloc::rebind<U>::other | Alloc<T, Args...>;
80 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>;
81
82 static pointer allocate(allocator_type& a, size_type n);
83 static pointer allocate(allocator_type& a, size_type n, const_void_pointer hint);
84
Howard Hinnant1694d232011-05-28 14:41:13 +000085 static void deallocate(allocator_type& a, pointer p, size_type n) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086
87 template <class T, class... Args>
88 static void construct(allocator_type& a, T* p, Args&&... args);
89
90 template <class T>
91 static void destroy(allocator_type& a, T* p);
92
93 static size_type max_size(const allocator_type& a);
94
95 static allocator_type
96 select_on_container_copy_construction(const allocator_type& a);
97};
98
99template <>
100class allocator<void>
101{
102public:
103 typedef void* pointer;
104 typedef const void* const_pointer;
105 typedef void value_type;
106
107 template <class _Up> struct rebind {typedef allocator<_Up> other;};
108};
109
110template <class T>
111class allocator
112{
113public:
114 typedef size_t size_type;
115 typedef ptrdiff_t difference_type;
116 typedef T* pointer;
117 typedef const T* const_pointer;
118 typedef typename add_lvalue_reference<T>::type reference;
119 typedef typename add_lvalue_reference<const T>::type const_reference;
120 typedef T value_type;
121
122 template <class U> struct rebind {typedef allocator<U> other;};
123
Howard Hinnant1694d232011-05-28 14:41:13 +0000124 allocator() noexcept;
125 allocator(const allocator&) noexcept;
126 template <class U> allocator(const allocator<U>&) noexcept;
127 ~allocator();
128 pointer address(reference x) const noexcept;
129 const_pointer address(const_reference x) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000130 pointer allocate(size_type, allocator<void>::const_pointer hint = 0);
Howard Hinnant1694d232011-05-28 14:41:13 +0000131 void deallocate(pointer p, size_type n) noexcept;
132 size_type max_size() const noexcept;
133 template<class U, class... Args>
134 void construct(U* p, Args&&... args);
135 template <class U>
136 void destroy(U* p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000137};
138
139template <class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000140bool operator==(const allocator<T>&, const allocator<U>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000141
142template <class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000143bool operator!=(const allocator<T>&, const allocator<U>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000144
145template <class OutputIterator, class T>
146class raw_storage_iterator
147 : public iterator<output_iterator_tag,
148 T, // purposefully not C++03
149 ptrdiff_t, // purposefully not C++03
150 T*, // purposefully not C++03
151 raw_storage_iterator&> // purposefully not C++03
152{
153public:
154 explicit raw_storage_iterator(OutputIterator x);
155 raw_storage_iterator& operator*();
156 raw_storage_iterator& operator=(const T& element);
157 raw_storage_iterator& operator++();
158 raw_storage_iterator operator++(int);
159};
160
Howard Hinnant1694d232011-05-28 14:41:13 +0000161template <class T> pair<T*,ptrdiff_t> get_temporary_buffer(ptrdiff_t n) noexcept;
162template <class T> void return_temporary_buffer(T* p) noexcept;
163
164template <class T> T* addressof(T& r) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000165
166template <class InputIterator, class ForwardIterator>
167ForwardIterator
168uninitialized_copy(InputIterator first, InputIterator last, ForwardIterator result);
169
Howard Hinnant1694d232011-05-28 14:41:13 +0000170template <class InputIterator, class Size, class ForwardIterator>
171ForwardIterator
172uninitialized_copy_n(InputIterator first, Size n, ForwardIterator result);
173
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000174template <class ForwardIterator, class T>
175void uninitialized_fill(ForwardIterator first, ForwardIterator last, const T& x);
176
177template <class ForwardIterator, class Size, class T>
Howard Hinnant2f6a6272010-11-18 16:13:03 +0000178ForwardIterator
179uninitialized_fill_n(ForwardIterator first, Size n, const T& x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000180
181template <class Y> struct auto_ptr_ref {};
182
183template<class X>
184class auto_ptr
185{
186public:
187 typedef X element_type;
188
189 explicit auto_ptr(X* p =0) throw();
190 auto_ptr(auto_ptr&) throw();
191 template<class Y> auto_ptr(auto_ptr<Y>&) throw();
192 auto_ptr& operator=(auto_ptr&) throw();
193 template<class Y> auto_ptr& operator=(auto_ptr<Y>&) throw();
194 auto_ptr& operator=(auto_ptr_ref<X> r) throw();
195 ~auto_ptr() throw();
196
197 typename add_lvalue_reference<X>::type operator*() const throw();
198 X* operator->() const throw();
199 X* get() const throw();
200 X* release() throw();
201 void reset(X* p =0) throw();
202
203 auto_ptr(auto_ptr_ref<X>) throw();
204 template<class Y> operator auto_ptr_ref<Y>() throw();
205 template<class Y> operator auto_ptr<Y>() throw();
206};
207
Howard Hinnante92c3d72010-08-19 18:39:17 +0000208template <class T>
209struct default_delete
210{
Howard Hinnant1694d232011-05-28 14:41:13 +0000211 constexpr default_delete() noexcept = default;
212 template <class U> default_delete(const default_delete<U>&) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000213
Howard Hinnant1694d232011-05-28 14:41:13 +0000214 void operator()(T*) const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000215};
216
217template <class T>
218struct default_delete<T[]>
219{
Howard Hinnant1694d232011-05-28 14:41:13 +0000220 constexpr default_delete() noexcept = default;
221 void operator()(T*) const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000222 template <class U> void operator()(U*) const = delete;
223};
224
Howard Hinnante92c3d72010-08-19 18:39:17 +0000225template <class T, class D = default_delete<T>>
226class unique_ptr
227{
228public:
229 typedef see below pointer;
230 typedef T element_type;
231 typedef D deleter_type;
232
233 // constructors
Howard Hinnant1694d232011-05-28 14:41:13 +0000234 constexpr unique_ptr() noexcept;
235 explicit unique_ptr(pointer p) noexcept;
236 unique_ptr(pointer p, see below d1) noexcept;
237 unique_ptr(pointer p, see below d2) noexcept;
238 unique_ptr(unique_ptr&& u) noexcept;
239 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
Howard Hinnante92c3d72010-08-19 18:39:17 +0000240 template <class U, class E>
Howard Hinnant1694d232011-05-28 14:41:13 +0000241 unique_ptr(unique_ptr<U, E>&& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000242 template <class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000243 unique_ptr(auto_ptr<U>&& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000244
245 // destructor
246 ~unique_ptr();
247
248 // assignment
Howard Hinnant1694d232011-05-28 14:41:13 +0000249 unique_ptr& operator=(unique_ptr&& u) noexcept;
250 template <class U, class E> unique_ptr& operator=(unique_ptr<U, E>&& u) noexcept;
251 unique_ptr& operator=(nullptr_t) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000252
253 // observers
254 typename add_lvalue_reference<T>::type operator*() const;
Howard Hinnant1694d232011-05-28 14:41:13 +0000255 pointer operator->() const noexcept;
256 pointer get() const noexcept;
257 deleter_type& get_deleter() noexcept;
258 const deleter_type& get_deleter() const noexcept;
259 explicit operator bool() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000260
261 // modifiers
Howard Hinnant1694d232011-05-28 14:41:13 +0000262 pointer release() noexcept;
263 void reset(pointer p = pointer()) noexcept;
264 void swap(unique_ptr& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000265};
266
267template <class T, class D>
268class unique_ptr<T[], D>
269{
270public:
271 typedef implementation-defined pointer;
272 typedef T element_type;
273 typedef D deleter_type;
274
275 // constructors
Howard Hinnant1694d232011-05-28 14:41:13 +0000276 constexpr unique_ptr() noexcept;
277 explicit unique_ptr(pointer p) noexcept;
278 unique_ptr(pointer p, see below d) noexcept;
279 unique_ptr(pointer p, see below d) noexcept;
280 unique_ptr(unique_ptr&& u) noexcept;
281 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
Howard Hinnante92c3d72010-08-19 18:39:17 +0000282
283 // destructor
Howard Hinnant324bb032010-08-22 00:02:43 +0000284 ~unique_ptr();
Howard Hinnante92c3d72010-08-19 18:39:17 +0000285
286 // assignment
Howard Hinnant1694d232011-05-28 14:41:13 +0000287 unique_ptr& operator=(unique_ptr&& u) noexcept;
288 unique_ptr& operator=(nullptr_t) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000289
290 // observers
291 T& operator[](size_t i) const;
Howard Hinnant1694d232011-05-28 14:41:13 +0000292 pointer get() const noexcept;
293 deleter_type& get_deleter() noexcept;
294 const deleter_type& get_deleter() const noexcept;
295 explicit operator bool() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000296
297 // modifiers
Howard Hinnant1694d232011-05-28 14:41:13 +0000298 pointer release() noexcept;
299 void reset(pointer p = pointer()) noexcept;
300 void reset(nullptr_t) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000301 template <class U> void reset(U) = delete;
Howard Hinnant1694d232011-05-28 14:41:13 +0000302 void swap(unique_ptr& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000303};
304
305template <class T, class D>
Howard Hinnant1694d232011-05-28 14:41:13 +0000306 void swap(unique_ptr<T, D>& x, unique_ptr<T, D>& y) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000307
308template <class T1, class D1, class T2, class D2>
309 bool operator==(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
310template <class T1, class D1, class T2, class D2>
311 bool operator!=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
312template <class T1, class D1, class T2, class D2>
313 bool operator<(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
314template <class T1, class D1, class T2, class D2>
315 bool operator<=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
316template <class T1, class D1, class T2, class D2>
317 bool operator>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
318template <class T1, class D1, class T2, class D2>
319 bool operator>=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
320
Howard Hinnant1694d232011-05-28 14:41:13 +0000321template <class T, class D>
322 bool operator==(const unique_ptr<T, D>& x, nullptr_t) noexcept;
323template <class T, class D>
324 bool operator==(nullptr_t, const unique_ptr<T, D>& y) noexcept;
325template <class T, class D>
326 bool operator!=(const unique_ptr<T, D>& x, nullptr_t) noexcept;
327template <class T, class D>
328 bool operator!=(nullptr_t, const unique_ptr<T, D>& y) noexcept;
329
330template <class T, class D>
331 bool operator<(const unique_ptr<T, D>& x, nullptr_t);
332template <class T, class D>
333 bool operator<(nullptr_t, const unique_ptr<T, D>& y);
334template <class T, class D>
335 bool operator<=(const unique_ptr<T, D>& x, nullptr_t);
336template <class T, class D>
337 bool operator<=(nullptr_t, const unique_ptr<T, D>& y);
338template <class T, class D>
339 bool operator>(const unique_ptr<T, D>& x, nullptr_t);
340template <class T, class D>
341 bool operator>(nullptr_t, const unique_ptr<T, D>& y);
342template <class T, class D>
343 bool operator>=(const unique_ptr<T, D>& x, nullptr_t);
344template <class T, class D>
345 bool operator>=(nullptr_t, const unique_ptr<T, D>& y);
346
Howard Hinnante92c3d72010-08-19 18:39:17 +0000347class bad_weak_ptr
348 : public std::exception
349{
Howard Hinnant1694d232011-05-28 14:41:13 +0000350 bad_weak_ptr() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000351};
352
353template<class T>
354class shared_ptr
355{
356public:
357 typedef T element_type;
358
359 // constructors:
Howard Hinnant1694d232011-05-28 14:41:13 +0000360 constexpr shared_ptr() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000361 template<class Y> explicit shared_ptr(Y* p);
362 template<class Y, class D> shared_ptr(Y* p, D d);
363 template<class Y, class D, class A> shared_ptr(Y* p, D d, A a);
364 template <class D> shared_ptr(nullptr_t p, D d);
365 template <class D, class A> shared_ptr(nullptr_t p, D d, A a);
Howard Hinnant1694d232011-05-28 14:41:13 +0000366 template<class Y> shared_ptr(const shared_ptr<Y>& r, T *p) noexcept;
367 shared_ptr(const shared_ptr& r) noexcept;
368 template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept;
369 shared_ptr(shared_ptr&& r) noexcept;
370 template<class Y> shared_ptr(shared_ptr<Y>&& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000371 template<class Y> explicit shared_ptr(const weak_ptr<Y>& r);
372 template<class Y> shared_ptr(auto_ptr<Y>&& r);
373 template <class Y, class D> shared_ptr(unique_ptr<Y, D>&& r);
374 shared_ptr(nullptr_t) : shared_ptr() { }
375
376 // destructor:
377 ~shared_ptr();
378
379 // assignment:
Howard Hinnant1694d232011-05-28 14:41:13 +0000380 shared_ptr& operator=(const shared_ptr& r) noexcept;
381 template<class Y> shared_ptr& operator=(const shared_ptr<Y>& r) noexcept;
382 shared_ptr& operator=(shared_ptr&& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000383 template<class Y> shared_ptr& operator=(shared_ptr<Y>&& r);
384 template<class Y> shared_ptr& operator=(auto_ptr<Y>&& r);
385 template <class Y, class D> shared_ptr& operator=(unique_ptr<Y, D>&& r);
386
387 // modifiers:
Howard Hinnant1694d232011-05-28 14:41:13 +0000388 void swap(shared_ptr& r) noexcept;
389 void reset() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000390 template<class Y> void reset(Y* p);
391 template<class Y, class D> void reset(Y* p, D d);
392 template<class Y, class D, class A> void reset(Y* p, D d, A a);
393
Howard Hinnant1694d232011-05-28 14:41:13 +0000394 // observers:
395 T* get() const noexcept;
396 T& operator*() const noexcept;
397 T* operator->() const noexcept;
398 long use_count() const noexcept;
399 bool unique() const noexcept;
400 explicit operator bool() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000401 template<class U> bool owner_before(shared_ptr<U> const& b) const;
402 template<class U> bool owner_before(weak_ptr<U> const& b) const;
403};
404
405// shared_ptr comparisons:
406template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000407 bool operator==(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000408template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000409 bool operator!=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000410template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000411 bool operator<(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000412template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000413 bool operator>(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000414template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000415 bool operator<=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000416template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000417 bool operator>=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
418
419template <class T>
420 bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept;
421template <class T>
422 bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept;
423template <class T>
424 bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept;
425template <class T>
426 bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept;
427template <class T>
428 bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept;
429template <class T>
430bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept;
431template <class T>
432 bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept;
433template <class T>
434 bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept;
435template <class T>
436 bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept;
437template <class T>
438 bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept;
439template <class T>
440 bool operator>=(const shared_ptr<T>& x, nullptr_t) noexcept;
441template <class T>
442 bool operator>=(nullptr_t, const shared_ptr<T>& y) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000443
444// shared_ptr specialized algorithms:
Howard Hinnant1694d232011-05-28 14:41:13 +0000445template<class T> void swap(shared_ptr<T>& a, shared_ptr<T>& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000446
447// shared_ptr casts:
448template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000449 shared_ptr<T> static_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000450template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000451 shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000452template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000453 shared_ptr<T> const_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000454
455// shared_ptr I/O:
456template<class E, class T, class Y>
457 basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, shared_ptr<Y> const& p);
458
459// shared_ptr get_deleter:
Howard Hinnant1694d232011-05-28 14:41:13 +0000460template<class D, class T> D* get_deleter(shared_ptr<T> const& p) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000461
462template<class T, class... Args>
463 shared_ptr<T> make_shared(Args&&... args);
464template<class T, class A, class... Args>
465 shared_ptr<T> allocate_shared(const A& a, Args&&... args);
466
467template<class T>
468class weak_ptr
469{
470public:
471 typedef T element_type;
472
473 // constructors
Howard Hinnant1694d232011-05-28 14:41:13 +0000474 constexpr weak_ptr() noexcept;
475 template<class Y> weak_ptr(shared_ptr<Y> const& r) noexcept;
476 weak_ptr(weak_ptr const& r) noexcept;
477 template<class Y> weak_ptr(weak_ptr<Y> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000478
479 // destructor
480 ~weak_ptr();
481
482 // assignment
Howard Hinnant1694d232011-05-28 14:41:13 +0000483 weak_ptr& operator=(weak_ptr const& r) noexcept;
484 template<class Y> weak_ptr& operator=(weak_ptr<Y> const& r) noexcept;
485 template<class Y> weak_ptr& operator=(shared_ptr<Y> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000486
487 // modifiers
Howard Hinnant1694d232011-05-28 14:41:13 +0000488 void swap(weak_ptr& r) noexcept;
489 void reset() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000490
491 // observers
Howard Hinnant1694d232011-05-28 14:41:13 +0000492 long use_count() const noexcept;
493 bool expired() const noexcept;
494 shared_ptr<T> lock() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000495 template<class U> bool owner_before(shared_ptr<U> const& b);
496 template<class U> bool owner_before(weak_ptr<U> const& b);
497};
498
499// weak_ptr specialized algorithms:
Howard Hinnant1694d232011-05-28 14:41:13 +0000500template<class T> void swap(weak_ptr<T>& a, weak_ptr<T>& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000501
502// class owner_less:
503template<class T> struct owner_less;
504
505template<class T>
506struct owner_less<shared_ptr<T>>
507 : binary_function<shared_ptr<T>, shared_ptr<T>, bool>
508{
509 typedef bool result_type;
510 bool operator()(shared_ptr<T> const&, shared_ptr<T> const&) const;
511 bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const;
512 bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const;
513};
514
515template<class T>
516struct owner_less<weak_ptr<T>>
517 : binary_function<weak_ptr<T>, weak_ptr<T>, bool>
518{
519 typedef bool result_type;
520 bool operator()(weak_ptr<T> const&, weak_ptr<T> const&) const;
521 bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const;
522 bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const;
523};
524
525template<class T>
526class enable_shared_from_this
527{
528protected:
Howard Hinnant1694d232011-05-28 14:41:13 +0000529 constexpr enable_shared_from_this() noexcept;
530 enable_shared_from_this(enable_shared_from_this const&) noexcept;
531 enable_shared_from_this& operator=(enable_shared_from_this const&) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000532 ~enable_shared_from_this();
533public:
534 shared_ptr<T> shared_from_this();
535 shared_ptr<T const> shared_from_this() const;
536};
537
538template<class T>
539 bool atomic_is_lock_free(const shared_ptr<T>* p);
540template<class T>
541 shared_ptr<T> atomic_load(const shared_ptr<T>* p);
542template<class T>
543 shared_ptr<T> atomic_load_explicit(const shared_ptr<T>* p, memory_order mo);
544template<class T>
545 void atomic_store(shared_ptr<T>* p, shared_ptr<T> r);
546template<class T>
547 void atomic_store_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo);
548template<class T>
549 shared_ptr<T> atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r);
550template<class T>
551 shared_ptr<T>
552 atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo);
553template<class T>
554 bool
555 atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w);
556template<class T>
557 bool
558 atomic_compare_exchange_strong( shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w);
559template<class T>
560 bool
561 atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
562 shared_ptr<T> w, memory_order success,
563 memory_order failure);
564template<class T>
565 bool
566 atomic_compare_exchange_strong_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
567 shared_ptr<T> w, memory_order success,
568 memory_order failure);
569// Hash support
570template <class T> struct hash;
571template <class T, class D> struct hash<unique_ptr<T, D> >;
572template <class T> struct hash<shared_ptr<T> >;
573
574// Pointer safety
575enum class pointer_safety { relaxed, preferred, strict };
576void declare_reachable(void *p);
577template <class T> T *undeclare_reachable(T *p);
578void declare_no_pointers(char *p, size_t n);
579void undeclare_no_pointers(char *p, size_t n);
Howard Hinnant1694d232011-05-28 14:41:13 +0000580pointer_safety get_pointer_safety() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000581
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000582void* align(size_t alignment, size_t size, void*& ptr, size_t& space);
583
584} // std
585
586*/
587
588#include <__config>
589#include <type_traits>
590#include <typeinfo>
591#include <cstddef>
592#include <cstdint>
593#include <new>
594#include <utility>
595#include <limits>
596#include <iterator>
597#include <__functional_base>
Howard Hinnant464aa5c2011-07-18 15:51:59 +0000598#include <iosfwd>
Howard Hinnant6cc99fa2011-12-19 17:58:44 +0000599#include <tuple>
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +0000600#include <cstring>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000601#if defined(_LIBCPP_NO_EXCEPTIONS)
602 #include <cassert>
603#endif
604
Howard Hinnant5fec82d2012-07-30 01:40:57 +0000605#if __has_feature(cxx_atomic)
606# include <atomic>
607#endif
608
Howard Hinnant66c6f972011-11-29 16:45:27 +0000609#include <__undef_min_max>
610
Howard Hinnant08e17472011-10-17 20:05:10 +0000611#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000612#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000613#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000614
615_LIBCPP_BEGIN_NAMESPACE_STD
616
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000617// addressof
618
619template <class _Tp>
620inline _LIBCPP_INLINE_VISIBILITY
621_Tp*
Howard Hinnant1694d232011-05-28 14:41:13 +0000622addressof(_Tp& __x) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000623{
624 return (_Tp*)&(char&)__x;
625}
626
Douglas Gregor35d2fcf2011-06-22 22:17:44 +0000627#if defined(_LIBCPP_HAS_OBJC_ARC) && !defined(_LIBCPP_PREDEFINED_OBJC_ARC_ADDRESSOF)
628// Objective-C++ Automatic Reference Counting uses qualified pointers
629// that require special addressof() signatures. When
630// _LIBCPP_PREDEFINED_OBJC_ARC_ADDRESSOF is defined, the compiler
631// itself is providing these definitions. Otherwise, we provide them.
632template <class _Tp>
633inline _LIBCPP_INLINE_VISIBILITY
634__strong _Tp*
635addressof(__strong _Tp& __x) _NOEXCEPT
636{
637 return &__x;
638}
639
640#ifdef _LIBCPP_HAS_OBJC_ARC_WEAK
641template <class _Tp>
642inline _LIBCPP_INLINE_VISIBILITY
643__weak _Tp*
644addressof(__weak _Tp& __x) _NOEXCEPT
645{
646 return &__x;
647}
648#endif
649
650template <class _Tp>
651inline _LIBCPP_INLINE_VISIBILITY
652__autoreleasing _Tp*
653addressof(__autoreleasing _Tp& __x) _NOEXCEPT
654{
655 return &__x;
656}
657
658template <class _Tp>
659inline _LIBCPP_INLINE_VISIBILITY
660__unsafe_unretained _Tp*
661addressof(__unsafe_unretained _Tp& __x) _NOEXCEPT
662{
663 return &__x;
664}
665#endif
666
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000667template <class _Tp> class allocator;
668
669template <>
Howard Hinnant82894812010-09-22 16:48:34 +0000670class _LIBCPP_VISIBLE allocator<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000671{
672public:
673 typedef void* pointer;
674 typedef const void* const_pointer;
675 typedef void value_type;
676
677 template <class _Up> struct rebind {typedef allocator<_Up> other;};
678};
679
Howard Hinnanta1877872012-01-19 23:15:22 +0000680template <>
681class _LIBCPP_VISIBLE allocator<const void>
682{
683public:
684 typedef const void* pointer;
685 typedef const void* const_pointer;
686 typedef const void value_type;
687
688 template <class _Up> struct rebind {typedef allocator<_Up> other;};
689};
690
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000691// pointer_traits
692
693template <class _Tp>
694struct __has_element_type
695{
696private:
Howard Hinnant9c0df142012-10-30 19:06:59 +0000697 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000698 template <class _Up> static __two __test(...);
699 template <class _Up> static char __test(typename _Up::element_type* = 0);
700public:
701 static const bool value = sizeof(__test<_Tp>(0)) == 1;
702};
703
704template <class _Ptr, bool = __has_element_type<_Ptr>::value>
705struct __pointer_traits_element_type;
706
707template <class _Ptr>
708struct __pointer_traits_element_type<_Ptr, true>
709{
710 typedef typename _Ptr::element_type type;
711};
712
713#ifndef _LIBCPP_HAS_NO_VARIADICS
714
715template <template <class, class...> class _Sp, class _Tp, class ..._Args>
716struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, true>
717{
718 typedef typename _Sp<_Tp, _Args...>::element_type type;
719};
720
721template <template <class, class...> class _Sp, class _Tp, class ..._Args>
722struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, false>
723{
724 typedef _Tp type;
725};
726
Howard Hinnant324bb032010-08-22 00:02:43 +0000727#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000728
729template <template <class> class _Sp, class _Tp>
730struct __pointer_traits_element_type<_Sp<_Tp>, true>
731{
732 typedef typename _Sp<_Tp>::element_type type;
733};
734
735template <template <class> class _Sp, class _Tp>
736struct __pointer_traits_element_type<_Sp<_Tp>, false>
737{
738 typedef _Tp type;
739};
740
741template <template <class, class> class _Sp, class _Tp, class _A0>
742struct __pointer_traits_element_type<_Sp<_Tp, _A0>, true>
743{
744 typedef typename _Sp<_Tp, _A0>::element_type type;
745};
746
747template <template <class, class> class _Sp, class _Tp, class _A0>
748struct __pointer_traits_element_type<_Sp<_Tp, _A0>, false>
749{
750 typedef _Tp type;
751};
752
753template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
754struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, true>
755{
756 typedef typename _Sp<_Tp, _A0, _A1>::element_type type;
757};
758
759template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
760struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, false>
761{
762 typedef _Tp type;
763};
764
765template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
766 class _A1, class _A2>
767struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, true>
768{
769 typedef typename _Sp<_Tp, _A0, _A1, _A2>::element_type type;
770};
771
772template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
773 class _A1, class _A2>
774struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, false>
775{
776 typedef _Tp type;
777};
778
Howard Hinnant324bb032010-08-22 00:02:43 +0000779#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000780
781template <class _Tp>
782struct __has_difference_type
783{
784private:
Howard Hinnant9c0df142012-10-30 19:06:59 +0000785 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000786 template <class _Up> static __two __test(...);
787 template <class _Up> static char __test(typename _Up::difference_type* = 0);
788public:
789 static const bool value = sizeof(__test<_Tp>(0)) == 1;
790};
791
792template <class _Ptr, bool = __has_difference_type<_Ptr>::value>
793struct __pointer_traits_difference_type
794{
795 typedef ptrdiff_t type;
796};
797
798template <class _Ptr>
799struct __pointer_traits_difference_type<_Ptr, true>
800{
801 typedef typename _Ptr::difference_type type;
802};
803
804template <class _Tp, class _Up>
805struct __has_rebind
806{
807private:
Howard Hinnant9c0df142012-10-30 19:06:59 +0000808 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000809 template <class _Xp> static __two __test(...);
810 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0);
811public:
812 static const bool value = sizeof(__test<_Tp>(0)) == 1;
813};
814
815template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
816struct __pointer_traits_rebind
817{
818#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
819 typedef typename _Tp::template rebind<_Up> type;
820#else
821 typedef typename _Tp::template rebind<_Up>::other type;
822#endif
823};
824
825#ifndef _LIBCPP_HAS_NO_VARIADICS
826
827template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
828struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, true>
829{
830#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
831 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up> type;
832#else
833 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up>::other type;
834#endif
835};
836
837template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
838struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, false>
839{
840 typedef _Sp<_Up, _Args...> type;
841};
842
Howard Hinnant324bb032010-08-22 00:02:43 +0000843#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000844
845template <template <class> class _Sp, class _Tp, class _Up>
846struct __pointer_traits_rebind<_Sp<_Tp>, _Up, true>
847{
848#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
849 typedef typename _Sp<_Tp>::template rebind<_Up> type;
850#else
851 typedef typename _Sp<_Tp>::template rebind<_Up>::other type;
852#endif
853};
854
855template <template <class> class _Sp, class _Tp, class _Up>
856struct __pointer_traits_rebind<_Sp<_Tp>, _Up, false>
857{
858 typedef _Sp<_Up> type;
859};
860
861template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
862struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, true>
863{
864#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
865 typedef typename _Sp<_Tp, _A0>::template rebind<_Up> type;
866#else
867 typedef typename _Sp<_Tp, _A0>::template rebind<_Up>::other type;
868#endif
869};
870
871template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
872struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, false>
873{
874 typedef _Sp<_Up, _A0> type;
875};
876
877template <template <class, class, class> class _Sp, class _Tp, class _A0,
878 class _A1, class _Up>
879struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, true>
880{
881#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
882 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up> type;
883#else
884 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up>::other type;
885#endif
886};
887
888template <template <class, class, class> class _Sp, class _Tp, class _A0,
889 class _A1, class _Up>
890struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, false>
891{
892 typedef _Sp<_Up, _A0, _A1> type;
893};
894
895template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
896 class _A1, class _A2, class _Up>
897struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, true>
898{
899#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
900 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up> type;
901#else
902 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
903#endif
904};
905
906template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
907 class _A1, class _A2, class _Up>
908struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, false>
909{
910 typedef _Sp<_Up, _A0, _A1, _A2> type;
911};
912
Howard Hinnant324bb032010-08-22 00:02:43 +0000913#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000914
915template <class _Ptr>
Howard Hinnant82894812010-09-22 16:48:34 +0000916struct _LIBCPP_VISIBLE pointer_traits
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000917{
918 typedef _Ptr pointer;
919 typedef typename __pointer_traits_element_type<pointer>::type element_type;
920 typedef typename __pointer_traits_difference_type<pointer>::type difference_type;
921
922#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnant6b41c602011-05-11 20:21:19 +0000923 template <class _Up> using rebind = typename __pointer_traits_rebind<pointer, _Up>::type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000924#else
925 template <class _Up> struct rebind
926 {typedef typename __pointer_traits_rebind<pointer, _Up>::type other;};
Howard Hinnant324bb032010-08-22 00:02:43 +0000927#endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000928
929private:
930 struct __nat {};
931public:
Howard Hinnant82894812010-09-22 16:48:34 +0000932 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000933 static pointer pointer_to(typename conditional<is_void<element_type>::value,
934 __nat, element_type>::type& __r)
935 {return pointer::pointer_to(__r);}
936};
937
938template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +0000939struct _LIBCPP_VISIBLE pointer_traits<_Tp*>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000940{
941 typedef _Tp* pointer;
942 typedef _Tp element_type;
943 typedef ptrdiff_t difference_type;
944
945#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
946 template <class _Up> using rebind = _Up*;
947#else
948 template <class _Up> struct rebind {typedef _Up* other;};
949#endif
950
951private:
952 struct __nat {};
953public:
Howard Hinnant82894812010-09-22 16:48:34 +0000954 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000955 static pointer pointer_to(typename conditional<is_void<element_type>::value,
Howard Hinnant1694d232011-05-28 14:41:13 +0000956 __nat, element_type>::type& __r) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +0000957 {return _VSTD::addressof(__r);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000958};
959
960// allocator_traits
961
962namespace __has_pointer_type_imp
963{
964 template <class _Up> static __two test(...);
965 template <class _Up> static char test(typename _Up::pointer* = 0);
966}
967
968template <class _Tp>
969struct __has_pointer_type
970 : public integral_constant<bool, sizeof(__has_pointer_type_imp::test<_Tp>(0)) == 1>
971{
972};
973
974namespace __pointer_type_imp
975{
976
977template <class _Tp, class _Dp, bool = __has_pointer_type<_Dp>::value>
978struct __pointer_type
979{
980 typedef typename _Dp::pointer type;
981};
982
983template <class _Tp, class _Dp>
984struct __pointer_type<_Tp, _Dp, false>
985{
986 typedef _Tp* type;
987};
988
Howard Hinnant47761072010-11-18 01:40:00 +0000989} // __pointer_type_imp
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000990
991template <class _Tp, class _Dp>
992struct __pointer_type
993{
994 typedef typename __pointer_type_imp::__pointer_type<_Tp, typename remove_reference<_Dp>::type>::type type;
995};
996
997template <class _Tp>
998struct __has_const_pointer
999{
1000private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001001 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001002 template <class _Up> static __two __test(...);
1003 template <class _Up> static char __test(typename _Up::const_pointer* = 0);
1004public:
1005 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1006};
1007
1008template <class _Tp, class _Ptr, class _Alloc, bool = __has_const_pointer<_Alloc>::value>
1009struct __const_pointer
1010{
1011 typedef typename _Alloc::const_pointer type;
1012};
1013
1014template <class _Tp, class _Ptr, class _Alloc>
1015struct __const_pointer<_Tp, _Ptr, _Alloc, false>
1016{
1017#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1018 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp> type;
1019#else
1020 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp>::other type;
1021#endif
1022};
1023
1024template <class _Tp>
1025struct __has_void_pointer
1026{
1027private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001028 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001029 template <class _Up> static __two __test(...);
1030 template <class _Up> static char __test(typename _Up::void_pointer* = 0);
1031public:
1032 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1033};
1034
1035template <class _Ptr, class _Alloc, bool = __has_void_pointer<_Alloc>::value>
1036struct __void_pointer
1037{
1038 typedef typename _Alloc::void_pointer type;
1039};
1040
1041template <class _Ptr, class _Alloc>
1042struct __void_pointer<_Ptr, _Alloc, false>
1043{
1044#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1045 typedef typename pointer_traits<_Ptr>::template rebind<void> type;
1046#else
1047 typedef typename pointer_traits<_Ptr>::template rebind<void>::other type;
1048#endif
1049};
1050
1051template <class _Tp>
1052struct __has_const_void_pointer
1053{
1054private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001055 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001056 template <class _Up> static __two __test(...);
1057 template <class _Up> static char __test(typename _Up::const_void_pointer* = 0);
1058public:
1059 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1060};
1061
1062template <class _Ptr, class _Alloc, bool = __has_const_void_pointer<_Alloc>::value>
1063struct __const_void_pointer
1064{
1065 typedef typename _Alloc::const_void_pointer type;
1066};
1067
1068template <class _Ptr, class _Alloc>
1069struct __const_void_pointer<_Ptr, _Alloc, false>
1070{
1071#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1072 typedef typename pointer_traits<_Ptr>::template rebind<const void> type;
1073#else
1074 typedef typename pointer_traits<_Ptr>::template rebind<const void>::other type;
1075#endif
1076};
1077
Howard Hinnant99968442011-11-29 18:15:50 +00001078template <class _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001079inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001080_Tp*
1081__to_raw_pointer(_Tp* __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001082{
1083 return __p;
1084}
1085
1086template <class _Pointer>
1087inline _LIBCPP_INLINE_VISIBILITY
1088typename pointer_traits<_Pointer>::element_type*
Howard Hinnant1694d232011-05-28 14:41:13 +00001089__to_raw_pointer(_Pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001090{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001091 return _VSTD::__to_raw_pointer(__p.operator->());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001092}
1093
1094template <class _Tp>
1095struct __has_size_type
1096{
1097private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001098 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001099 template <class _Up> static __two __test(...);
1100 template <class _Up> static char __test(typename _Up::size_type* = 0);
1101public:
1102 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1103};
1104
Howard Hinnant47761072010-11-18 01:40:00 +00001105template <class _Alloc, class _DiffType, bool = __has_size_type<_Alloc>::value>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001106struct __size_type
1107{
Howard Hinnant47761072010-11-18 01:40:00 +00001108 typedef typename make_unsigned<_DiffType>::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001109};
1110
Howard Hinnant47761072010-11-18 01:40:00 +00001111template <class _Alloc, class _DiffType>
1112struct __size_type<_Alloc, _DiffType, true>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001113{
1114 typedef typename _Alloc::size_type type;
1115};
1116
1117template <class _Tp>
1118struct __has_propagate_on_container_copy_assignment
1119{
1120private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001121 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001122 template <class _Up> static __two __test(...);
1123 template <class _Up> static char __test(typename _Up::propagate_on_container_copy_assignment* = 0);
1124public:
1125 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1126};
1127
1128template <class _Alloc, bool = __has_propagate_on_container_copy_assignment<_Alloc>::value>
1129struct __propagate_on_container_copy_assignment
1130{
1131 typedef false_type type;
1132};
1133
1134template <class _Alloc>
1135struct __propagate_on_container_copy_assignment<_Alloc, true>
1136{
1137 typedef typename _Alloc::propagate_on_container_copy_assignment type;
1138};
1139
1140template <class _Tp>
1141struct __has_propagate_on_container_move_assignment
1142{
1143private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001144 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001145 template <class _Up> static __two __test(...);
1146 template <class _Up> static char __test(typename _Up::propagate_on_container_move_assignment* = 0);
1147public:
1148 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1149};
1150
1151template <class _Alloc, bool = __has_propagate_on_container_move_assignment<_Alloc>::value>
1152struct __propagate_on_container_move_assignment
1153{
1154 typedef false_type type;
1155};
1156
1157template <class _Alloc>
1158struct __propagate_on_container_move_assignment<_Alloc, true>
1159{
1160 typedef typename _Alloc::propagate_on_container_move_assignment type;
1161};
1162
1163template <class _Tp>
1164struct __has_propagate_on_container_swap
1165{
1166private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001167 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001168 template <class _Up> static __two __test(...);
1169 template <class _Up> static char __test(typename _Up::propagate_on_container_swap* = 0);
1170public:
1171 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1172};
1173
1174template <class _Alloc, bool = __has_propagate_on_container_swap<_Alloc>::value>
1175struct __propagate_on_container_swap
1176{
1177 typedef false_type type;
1178};
1179
1180template <class _Alloc>
1181struct __propagate_on_container_swap<_Alloc, true>
1182{
1183 typedef typename _Alloc::propagate_on_container_swap type;
1184};
1185
1186template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
1187struct __has_rebind_other
1188{
1189private:
Howard Hinnant9c0df142012-10-30 19:06:59 +00001190 struct __two {char __lx; char __lxx;};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001191 template <class _Xp> static __two __test(...);
1192 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>::other* = 0);
1193public:
1194 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1195};
1196
1197template <class _Tp, class _Up>
1198struct __has_rebind_other<_Tp, _Up, false>
1199{
1200 static const bool value = false;
1201};
1202
1203template <class _Tp, class _Up, bool = __has_rebind_other<_Tp, _Up>::value>
1204struct __allocator_traits_rebind
1205{
1206 typedef typename _Tp::template rebind<_Up>::other type;
1207};
1208
1209#ifndef _LIBCPP_HAS_NO_VARIADICS
1210
1211template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1212struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, true>
1213{
1214 typedef typename _Alloc<_Tp, _Args...>::template rebind<_Up>::other type;
1215};
1216
1217template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1218struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, false>
1219{
1220 typedef _Alloc<_Up, _Args...> type;
1221};
1222
Howard Hinnant324bb032010-08-22 00:02:43 +00001223#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001224
1225template <template <class> class _Alloc, class _Tp, class _Up>
1226struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, true>
1227{
1228 typedef typename _Alloc<_Tp>::template rebind<_Up>::other type;
1229};
1230
1231template <template <class> class _Alloc, class _Tp, class _Up>
1232struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, false>
1233{
1234 typedef _Alloc<_Up> type;
1235};
1236
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001237template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1238struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, true>
1239{
1240 typedef typename _Alloc<_Tp, _A0>::template rebind<_Up>::other type;
1241};
1242
1243template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1244struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, false>
1245{
1246 typedef _Alloc<_Up, _A0> type;
1247};
1248
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001249template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1250 class _A1, class _Up>
1251struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, true>
1252{
1253 typedef typename _Alloc<_Tp, _A0, _A1>::template rebind<_Up>::other type;
1254};
1255
1256template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1257 class _A1, class _Up>
1258struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, false>
1259{
1260 typedef _Alloc<_Up, _A0, _A1> type;
1261};
1262
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001263template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1264 class _A1, class _A2, class _Up>
1265struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, true>
1266{
1267 typedef typename _Alloc<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
1268};
1269
1270template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1271 class _A1, class _A2, class _Up>
1272struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, false>
1273{
1274 typedef _Alloc<_Up, _A0, _A1, _A2> type;
1275};
1276
Howard Hinnant324bb032010-08-22 00:02:43 +00001277#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001278
1279#ifndef _LIBCPP_HAS_NO_ADVANCED_SFINAE
1280
1281template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1282auto
1283__has_allocate_hint_test(_Alloc&& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1284 -> decltype(__a.allocate(__sz, __p), true_type());
1285
1286template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1287auto
1288__has_allocate_hint_test(const _Alloc& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1289 -> false_type;
1290
1291template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1292struct __has_allocate_hint
1293 : integral_constant<bool,
1294 is_same<
1295 decltype(__has_allocate_hint_test(declval<_Alloc>(),
1296 declval<_SizeType>(),
1297 declval<_ConstVoidPtr>())),
1298 true_type>::value>
1299{
1300};
1301
Howard Hinnant324bb032010-08-22 00:02:43 +00001302#else // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001303
1304template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1305struct __has_allocate_hint
1306 : true_type
1307{
1308};
1309
Howard Hinnant324bb032010-08-22 00:02:43 +00001310#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001311
Howard Hinnant23369ee2011-07-29 21:35:53 +00001312#if !defined(_LIBCPP_HAS_NO_ADVANCED_SFINAE) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001313
1314template <class _Alloc, class _Tp, class ..._Args>
Howard Hinnant0949eed2011-06-30 21:18:19 +00001315decltype(_VSTD::declval<_Alloc>().construct(_VSTD::declval<_Tp*>(),
1316 _VSTD::declval<_Args>()...),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001317 true_type())
1318__has_construct_test(_Alloc&& __a, _Tp* __p, _Args&& ...__args);
1319
1320template <class _Alloc, class _Pointer, class ..._Args>
1321false_type
1322__has_construct_test(const _Alloc& __a, _Pointer&& __p, _Args&& ...__args);
1323
1324template <class _Alloc, class _Pointer, class ..._Args>
1325struct __has_construct
1326 : integral_constant<bool,
1327 is_same<
1328 decltype(__has_construct_test(declval<_Alloc>(),
1329 declval<_Pointer>(),
1330 declval<_Args>()...)),
1331 true_type>::value>
1332{
1333};
1334
1335template <class _Alloc, class _Pointer>
1336auto
1337__has_destroy_test(_Alloc&& __a, _Pointer&& __p)
1338 -> decltype(__a.destroy(__p), true_type());
1339
1340template <class _Alloc, class _Pointer>
1341auto
1342__has_destroy_test(const _Alloc& __a, _Pointer&& __p)
1343 -> false_type;
1344
1345template <class _Alloc, class _Pointer>
1346struct __has_destroy
1347 : integral_constant<bool,
1348 is_same<
1349 decltype(__has_destroy_test(declval<_Alloc>(),
1350 declval<_Pointer>())),
1351 true_type>::value>
1352{
1353};
1354
1355template <class _Alloc>
1356auto
1357__has_max_size_test(_Alloc&& __a)
1358 -> decltype(__a.max_size(), true_type());
1359
1360template <class _Alloc>
1361auto
1362__has_max_size_test(const volatile _Alloc& __a)
1363 -> false_type;
1364
1365template <class _Alloc>
1366struct __has_max_size
1367 : integral_constant<bool,
1368 is_same<
1369 decltype(__has_max_size_test(declval<_Alloc&>())),
1370 true_type>::value>
1371{
1372};
1373
1374template <class _Alloc>
1375auto
1376__has_select_on_container_copy_construction_test(_Alloc&& __a)
1377 -> decltype(__a.select_on_container_copy_construction(), true_type());
1378
1379template <class _Alloc>
1380auto
1381__has_select_on_container_copy_construction_test(const volatile _Alloc& __a)
1382 -> false_type;
1383
1384template <class _Alloc>
1385struct __has_select_on_container_copy_construction
1386 : integral_constant<bool,
1387 is_same<
1388 decltype(__has_select_on_container_copy_construction_test(declval<_Alloc&>())),
1389 true_type>::value>
1390{
1391};
1392
Howard Hinnant324bb032010-08-22 00:02:43 +00001393#else // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001394
1395#ifndef _LIBCPP_HAS_NO_VARIADICS
1396
1397template <class _Alloc, class _Pointer, class ..._Args>
1398struct __has_construct
1399 : false_type
1400{
1401};
1402
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +00001403#else // _LIBCPP_HAS_NO_VARIADICS
1404
1405template <class _Alloc, class _Pointer, class _Args>
1406struct __has_construct
1407 : false_type
1408{
1409};
1410
Howard Hinnant324bb032010-08-22 00:02:43 +00001411#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001412
1413template <class _Alloc, class _Pointer>
1414struct __has_destroy
1415 : false_type
1416{
1417};
1418
1419template <class _Alloc>
1420struct __has_max_size
1421 : true_type
1422{
1423};
1424
1425template <class _Alloc>
1426struct __has_select_on_container_copy_construction
1427 : false_type
1428{
1429};
1430
Howard Hinnant324bb032010-08-22 00:02:43 +00001431#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001432
Howard Hinnant47761072010-11-18 01:40:00 +00001433template <class _Alloc, class _Ptr, bool = __has_difference_type<_Alloc>::value>
1434struct __alloc_traits_difference_type
1435{
1436 typedef typename pointer_traits<_Ptr>::difference_type type;
1437};
1438
1439template <class _Alloc, class _Ptr>
1440struct __alloc_traits_difference_type<_Alloc, _Ptr, true>
1441{
1442 typedef typename _Alloc::difference_type type;
1443};
1444
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001445template <class _Alloc>
Howard Hinnant82894812010-09-22 16:48:34 +00001446struct _LIBCPP_VISIBLE allocator_traits
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001447{
1448 typedef _Alloc allocator_type;
1449 typedef typename allocator_type::value_type value_type;
1450
1451 typedef typename __pointer_type<value_type, allocator_type>::type pointer;
1452 typedef typename __const_pointer<value_type, pointer, allocator_type>::type const_pointer;
1453 typedef typename __void_pointer<pointer, allocator_type>::type void_pointer;
1454 typedef typename __const_void_pointer<pointer, allocator_type>::type const_void_pointer;
1455
Howard Hinnant47761072010-11-18 01:40:00 +00001456 typedef typename __alloc_traits_difference_type<allocator_type, pointer>::type difference_type;
1457 typedef typename __size_type<allocator_type, difference_type>::type size_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001458
1459 typedef typename __propagate_on_container_copy_assignment<allocator_type>::type
1460 propagate_on_container_copy_assignment;
1461 typedef typename __propagate_on_container_move_assignment<allocator_type>::type
1462 propagate_on_container_move_assignment;
1463 typedef typename __propagate_on_container_swap<allocator_type>::type
1464 propagate_on_container_swap;
1465
1466#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1467 template <class _Tp> using rebind_alloc =
Howard Hinnant6b41c602011-05-11 20:21:19 +00001468 typename __allocator_traits_rebind<allocator_type, _Tp>::type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001469 template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
Howard Hinnant324bb032010-08-22 00:02:43 +00001470#else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001471 template <class _Tp> struct rebind_alloc
1472 {typedef typename __allocator_traits_rebind<allocator_type, _Tp>::type other;};
1473 template <class _Tp> struct rebind_traits
1474 {typedef allocator_traits<typename rebind_alloc<_Tp>::other> other;};
Howard Hinnant324bb032010-08-22 00:02:43 +00001475#endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001476
Howard Hinnant82894812010-09-22 16:48:34 +00001477 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001478 static pointer allocate(allocator_type& __a, size_type __n)
1479 {return __a.allocate(__n);}
Howard Hinnant82894812010-09-22 16:48:34 +00001480 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001481 static pointer allocate(allocator_type& __a, size_type __n, const_void_pointer __hint)
1482 {return allocate(__a, __n, __hint,
1483 __has_allocate_hint<allocator_type, size_type, const_void_pointer>());}
1484
Howard Hinnant82894812010-09-22 16:48:34 +00001485 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001486 static void deallocate(allocator_type& __a, pointer __p, size_type __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001487 {__a.deallocate(__p, __n);}
1488
1489#ifndef _LIBCPP_HAS_NO_VARIADICS
1490 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001491 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001492 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args)
1493 {__construct(__has_construct<allocator_type, pointer, _Args...>(),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001494 __a, __p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnant324bb032010-08-22 00:02:43 +00001495#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001496 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001497 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001498 static void construct(allocator_type& __a, _Tp* __p)
1499 {
1500 ::new ((void*)__p) _Tp();
1501 }
1502 template <class _Tp, class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00001503 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001504 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0)
1505 {
1506 ::new ((void*)__p) _Tp(__a0);
1507 }
1508 template <class _Tp, class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00001509 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001510 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0,
1511 const _A1& __a1)
1512 {
1513 ::new ((void*)__p) _Tp(__a0, __a1);
1514 }
1515 template <class _Tp, class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00001516 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001517 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0,
1518 const _A1& __a1, const _A2& __a2)
1519 {
1520 ::new ((void*)__p) _Tp(__a0, __a1, __a2);
1521 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001522#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001523
1524 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001525 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001526 static void destroy(allocator_type& __a, _Tp* __p)
1527 {__destroy(__has_destroy<allocator_type, _Tp*>(), __a, __p);}
1528
Howard Hinnant82894812010-09-22 16:48:34 +00001529 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001530 static size_type max_size(const allocator_type& __a)
1531 {return __max_size(__has_max_size<const allocator_type>(), __a);}
1532
Howard Hinnant82894812010-09-22 16:48:34 +00001533 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001534 static allocator_type
1535 select_on_container_copy_construction(const allocator_type& __a)
1536 {return select_on_container_copy_construction(
1537 __has_select_on_container_copy_construction<const allocator_type>(),
1538 __a);}
1539
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +00001540 template <class _Ptr>
1541 _LIBCPP_INLINE_VISIBILITY
1542 static
1543 void
1544 __construct_forward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __begin2)
1545 {
1546 for (; __begin1 != __end1; ++__begin1, ++__begin2)
1547 construct(__a, _VSTD::__to_raw_pointer(__begin2), _VSTD::move_if_noexcept(*__begin1));
1548 }
1549
1550 template <class _Tp>
1551 _LIBCPP_INLINE_VISIBILITY
1552 static
1553 typename enable_if
1554 <
1555 (is_same<allocator_type, allocator<_Tp> >::value
1556 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1557 is_trivially_move_constructible<_Tp>::value,
1558 void
1559 >::type
1560 __construct_forward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2)
1561 {
1562 ptrdiff_t _Np = __end1 - __begin1;
1563 _VSTD::memcpy(__begin2, __begin1, _Np * sizeof(_Tp));
1564 __begin2 += _Np;
1565 }
1566
1567 template <class _Ptr>
1568 _LIBCPP_INLINE_VISIBILITY
1569 static
1570 void
1571 __construct_backward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __end2)
1572 {
1573 while (__end1 != __begin1)
1574 construct(__a, _VSTD::__to_raw_pointer(--__end2), _VSTD::move_if_noexcept(*--__end1));
1575 }
1576
1577 template <class _Tp>
1578 _LIBCPP_INLINE_VISIBILITY
1579 static
1580 typename enable_if
1581 <
1582 (is_same<allocator_type, allocator<_Tp> >::value
1583 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1584 is_trivially_move_constructible<_Tp>::value,
1585 void
1586 >::type
1587 __construct_backward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __end2)
1588 {
1589 ptrdiff_t _Np = __end1 - __begin1;
1590 __end2 -= _Np;
1591 _VSTD::memcpy(__end2, __begin1, _Np * sizeof(_Tp));
1592 }
1593
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001594private:
1595
Howard Hinnant82894812010-09-22 16:48:34 +00001596 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001597 static pointer allocate(allocator_type& __a, size_type __n,
1598 const_void_pointer __hint, true_type)
1599 {return __a.allocate(__n, __hint);}
Howard Hinnant82894812010-09-22 16:48:34 +00001600 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001601 static pointer allocate(allocator_type& __a, size_type __n,
Howard Hinnantec3773c2011-12-01 20:21:04 +00001602 const_void_pointer, false_type)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001603 {return __a.allocate(__n);}
1604
1605#ifndef _LIBCPP_HAS_NO_VARIADICS
1606 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001607 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001608 static void __construct(true_type, allocator_type& __a, _Tp* __p, _Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001609 {__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001610 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001611 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001612 static void __construct(false_type, allocator_type&, _Tp* __p, _Args&&... __args)
1613 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001614 ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001615 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001616#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001617
1618 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001619 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001620 static void __destroy(true_type, allocator_type& __a, _Tp* __p)
1621 {__a.destroy(__p);}
1622 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001623 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001624 static void __destroy(false_type, allocator_type&, _Tp* __p)
1625 {
1626 __p->~_Tp();
1627 }
1628
Howard Hinnant82894812010-09-22 16:48:34 +00001629 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001630 static size_type __max_size(true_type, const allocator_type& __a)
1631 {return __a.max_size();}
Howard Hinnant82894812010-09-22 16:48:34 +00001632 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001633 static size_type __max_size(false_type, const allocator_type&)
1634 {return numeric_limits<size_type>::max();}
1635
Howard Hinnant82894812010-09-22 16:48:34 +00001636 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001637 static allocator_type
1638 select_on_container_copy_construction(true_type, const allocator_type& __a)
1639 {return __a.select_on_container_copy_construction();}
Howard Hinnant82894812010-09-22 16:48:34 +00001640 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001641 static allocator_type
1642 select_on_container_copy_construction(false_type, const allocator_type& __a)
1643 {return __a;}
1644};
1645
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001646// allocator
1647
1648template <class _Tp>
Howard Hinnant36cdf022010-09-10 16:42:26 +00001649class _LIBCPP_VISIBLE allocator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001650{
1651public:
1652 typedef size_t size_type;
1653 typedef ptrdiff_t difference_type;
1654 typedef _Tp* pointer;
1655 typedef const _Tp* const_pointer;
1656 typedef _Tp& reference;
1657 typedef const _Tp& const_reference;
1658 typedef _Tp value_type;
1659
Howard Hinnant18884f42011-06-02 21:38:57 +00001660 typedef true_type propagate_on_container_move_assignment;
1661
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001662 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1663
Howard Hinnant1694d232011-05-28 14:41:13 +00001664 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1665 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1666 _LIBCPP_INLINE_VISIBILITY pointer address(reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001667 {return _VSTD::addressof(__x);}
Howard Hinnant1694d232011-05-28 14:41:13 +00001668 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001669 {return _VSTD::addressof(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001670 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1671 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
Howard Hinnant1694d232011-05-28 14:41:13 +00001672 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1673 {::operator delete((void*)__p);}
1674 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1675 {return size_type(~0) / sizeof(_Tp);}
Howard Hinnant73d21a42010-09-04 23:28:19 +00001676#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001677 template <class _Up, class... _Args>
1678 _LIBCPP_INLINE_VISIBILITY
1679 void
1680 construct(_Up* __p, _Args&&... __args)
1681 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001682 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001683 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001684#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001685 _LIBCPP_INLINE_VISIBILITY
1686 void
1687 construct(pointer __p)
1688 {
1689 ::new((void*)__p) _Tp();
1690 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001691# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant87073e42012-05-01 15:37:54 +00001692
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001693 template <class _A0>
1694 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001695 void
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001696 construct(pointer __p, _A0& __a0)
1697 {
1698 ::new((void*)__p) _Tp(__a0);
1699 }
1700 template <class _A0>
1701 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001702 void
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001703 construct(pointer __p, const _A0& __a0)
1704 {
1705 ::new((void*)__p) _Tp(__a0);
1706 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001707# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001708 template <class _A0, class _A1>
1709 _LIBCPP_INLINE_VISIBILITY
1710 void
1711 construct(pointer __p, _A0& __a0, _A1& __a1)
1712 {
1713 ::new((void*)__p) _Tp(__a0, __a1);
1714 }
1715 template <class _A0, class _A1>
1716 _LIBCPP_INLINE_VISIBILITY
1717 void
1718 construct(pointer __p, const _A0& __a0, _A1& __a1)
1719 {
1720 ::new((void*)__p) _Tp(__a0, __a1);
1721 }
1722 template <class _A0, class _A1>
1723 _LIBCPP_INLINE_VISIBILITY
1724 void
1725 construct(pointer __p, _A0& __a0, const _A1& __a1)
1726 {
1727 ::new((void*)__p) _Tp(__a0, __a1);
1728 }
1729 template <class _A0, class _A1>
1730 _LIBCPP_INLINE_VISIBILITY
1731 void
1732 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1733 {
1734 ::new((void*)__p) _Tp(__a0, __a1);
1735 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001736#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001737 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1738};
1739
Howard Hinnant57199402012-01-02 17:56:02 +00001740template <class _Tp>
1741class _LIBCPP_VISIBLE allocator<const _Tp>
1742{
1743public:
1744 typedef size_t size_type;
1745 typedef ptrdiff_t difference_type;
1746 typedef const _Tp* pointer;
1747 typedef const _Tp* const_pointer;
1748 typedef const _Tp& reference;
1749 typedef const _Tp& const_reference;
1750 typedef _Tp value_type;
1751
1752 typedef true_type propagate_on_container_move_assignment;
1753
1754 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1755
1756 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1757 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1758 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
1759 {return _VSTD::addressof(__x);}
1760 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1761 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
1762 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1763 {::operator delete((void*)__p);}
1764 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1765 {return size_type(~0) / sizeof(_Tp);}
1766#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1767 template <class _Up, class... _Args>
1768 _LIBCPP_INLINE_VISIBILITY
1769 void
1770 construct(_Up* __p, _Args&&... __args)
1771 {
1772 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
1773 }
1774#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1775 _LIBCPP_INLINE_VISIBILITY
1776 void
1777 construct(pointer __p)
1778 {
1779 ::new((void*)__p) _Tp();
1780 }
1781# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant87073e42012-05-01 15:37:54 +00001782
Howard Hinnant57199402012-01-02 17:56:02 +00001783 template <class _A0>
1784 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001785 void
Howard Hinnant57199402012-01-02 17:56:02 +00001786 construct(pointer __p, _A0& __a0)
1787 {
1788 ::new((void*)__p) _Tp(__a0);
1789 }
1790 template <class _A0>
1791 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001792 void
Howard Hinnant57199402012-01-02 17:56:02 +00001793 construct(pointer __p, const _A0& __a0)
1794 {
1795 ::new((void*)__p) _Tp(__a0);
1796 }
Howard Hinnant57199402012-01-02 17:56:02 +00001797# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1798 template <class _A0, class _A1>
1799 _LIBCPP_INLINE_VISIBILITY
1800 void
1801 construct(pointer __p, _A0& __a0, _A1& __a1)
1802 {
1803 ::new((void*)__p) _Tp(__a0, __a1);
1804 }
1805 template <class _A0, class _A1>
1806 _LIBCPP_INLINE_VISIBILITY
1807 void
1808 construct(pointer __p, const _A0& __a0, _A1& __a1)
1809 {
1810 ::new((void*)__p) _Tp(__a0, __a1);
1811 }
1812 template <class _A0, class _A1>
1813 _LIBCPP_INLINE_VISIBILITY
1814 void
1815 construct(pointer __p, _A0& __a0, const _A1& __a1)
1816 {
1817 ::new((void*)__p) _Tp(__a0, __a1);
1818 }
1819 template <class _A0, class _A1>
1820 _LIBCPP_INLINE_VISIBILITY
1821 void
1822 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1823 {
1824 ::new((void*)__p) _Tp(__a0, __a1);
1825 }
1826#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1827 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1828};
1829
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001830template <class _Tp, class _Up>
1831inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001832bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001833
1834template <class _Tp, class _Up>
1835inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001836bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001837
1838template <class _OutputIterator, class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001839class _LIBCPP_VISIBLE raw_storage_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001840 : public iterator<output_iterator_tag,
1841 _Tp, // purposefully not C++03
1842 ptrdiff_t, // purposefully not C++03
1843 _Tp*, // purposefully not C++03
1844 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1845{
1846private:
1847 _OutputIterator __x_;
1848public:
1849 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
1850 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
1851 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
1852 {::new(&*__x_) _Tp(__element); return *this;}
1853 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
1854 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
1855 {raw_storage_iterator __t(*this); ++__x_; return __t;}
1856};
1857
1858template <class _Tp>
1859pair<_Tp*, ptrdiff_t>
Howard Hinnant1694d232011-05-28 14:41:13 +00001860get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001861{
1862 pair<_Tp*, ptrdiff_t> __r(0, 0);
1863 const ptrdiff_t __m = (~ptrdiff_t(0) ^
1864 ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1)))
1865 / sizeof(_Tp);
1866 if (__n > __m)
1867 __n = __m;
1868 while (__n > 0)
1869 {
1870 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
1871 if (__r.first)
1872 {
1873 __r.second = __n;
1874 break;
1875 }
1876 __n /= 2;
1877 }
1878 return __r;
1879}
1880
1881template <class _Tp>
1882inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001883void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001884
1885template <class _Tp>
1886struct auto_ptr_ref
1887{
1888 _Tp* __ptr_;
1889};
1890
1891template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001892class _LIBCPP_VISIBLE auto_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001893{
1894private:
1895 _Tp* __ptr_;
1896public:
1897 typedef _Tp element_type;
1898
1899 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}
1900 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}
1901 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw()
1902 : __ptr_(__p.release()) {}
1903 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw()
1904 {reset(__p.release()); return *this;}
1905 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw()
1906 {reset(__p.release()); return *this;}
1907 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()
1908 {reset(__p.__ptr_); return *this;}
1909 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}
1910
1911 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw()
1912 {return *__ptr_;}
1913 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}
1914 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}
1915 _LIBCPP_INLINE_VISIBILITY _Tp* release() throw()
1916 {
1917 _Tp* __t = __ptr_;
1918 __ptr_ = 0;
1919 return __t;
1920 }
1921 _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw()
1922 {
1923 if (__ptr_ != __p)
1924 delete __ptr_;
1925 __ptr_ = __p;
1926 }
1927
1928 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}
1929 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()
1930 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
1931 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw()
1932 {return auto_ptr<_Up>(release());}
1933};
1934
1935template <>
Howard Hinnant82894812010-09-22 16:48:34 +00001936class _LIBCPP_VISIBLE auto_ptr<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001937{
1938public:
1939 typedef void element_type;
1940};
1941
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001942template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type,
1943 typename remove_cv<_T2>::type>::value,
Howard Hinnantd4cf2152011-12-11 20:31:33 +00001944 bool = is_empty<_T1>::value
1945#if __has_feature(is_final)
1946 && !__is_final(_T1)
1947#endif
1948 ,
1949 bool = is_empty<_T2>::value
1950#if __has_feature(is_final)
1951 && !__is_final(_T2)
1952#endif
1953 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001954struct __libcpp_compressed_pair_switch;
1955
1956template <class _T1, class _T2, bool IsSame>
1957struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};};
1958
1959template <class _T1, class _T2, bool IsSame>
1960struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};};
1961
1962template <class _T1, class _T2, bool IsSame>
1963struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};};
1964
1965template <class _T1, class _T2>
1966struct __libcpp_compressed_pair_switch<_T1, _T2, false, true, true> {enum {value = 3};};
1967
1968template <class _T1, class _T2>
1969struct __libcpp_compressed_pair_switch<_T1, _T2, true, true, true> {enum {value = 1};};
1970
1971template <class _T1, class _T2, unsigned = __libcpp_compressed_pair_switch<_T1, _T2>::value>
1972class __libcpp_compressed_pair_imp;
1973
1974template <class _T1, class _T2>
1975class __libcpp_compressed_pair_imp<_T1, _T2, 0>
1976{
1977private:
1978 _T1 __first_;
1979 _T2 __second_;
1980public:
1981 typedef _T1 _T1_param;
1982 typedef _T2 _T2_param;
1983
1984 typedef typename remove_reference<_T1>::type& _T1_reference;
1985 typedef typename remove_reference<_T2>::type& _T2_reference;
1986
1987 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
1988 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
1989
1990 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00001991 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001992 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00001993 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001994 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001995 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001996 : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001997
Howard Hinnant61aa6012011-07-01 19:24:36 +00001998#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1999
2000 _LIBCPP_INLINE_VISIBILITY
2001 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2002 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2003 is_nothrow_copy_constructible<_T2>::value)
2004 : __first_(__p.first()),
2005 __second_(__p.second()) {}
2006
2007 _LIBCPP_INLINE_VISIBILITY
2008 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2009 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2010 is_nothrow_copy_assignable<_T2>::value)
2011 {
2012 __first_ = __p.first();
2013 __second_ = __p.second();
2014 return *this;
2015 }
2016
Howard Hinnant73d21a42010-09-04 23:28:19 +00002017#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002018
2019 _LIBCPP_INLINE_VISIBILITY
2020 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002021 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2022 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002023 : __first_(_VSTD::forward<_T1>(__p.first())),
2024 __second_(_VSTD::forward<_T2>(__p.second())) {}
2025
2026 _LIBCPP_INLINE_VISIBILITY
2027 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2028 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2029 is_nothrow_move_assignable<_T2>::value)
2030 {
2031 __first_ = _VSTD::forward<_T1>(__p.first());
2032 __second_ = _VSTD::forward<_T2>(__p.second());
2033 return *this;
2034 }
2035
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002036#ifndef _LIBCPP_HAS_NO_VARIADICS
2037
2038 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2039 _LIBCPP_INLINE_VISIBILITY
2040 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2041 tuple<_Args1...> __first_args,
2042 tuple<_Args2...> __second_args,
2043 __tuple_indices<_I1...>,
2044 __tuple_indices<_I2...>)
2045 : __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2046 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2047 {}
2048
2049#endif // _LIBCPP_HAS_NO_VARIADICS
2050
Howard Hinnant73d21a42010-09-04 23:28:19 +00002051#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002052
Howard Hinnant61aa6012011-07-01 19:24:36 +00002053#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2054
Howard Hinnant1694d232011-05-28 14:41:13 +00002055 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2056 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002057
Howard Hinnant1694d232011-05-28 14:41:13 +00002058 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2059 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002060
2061 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002062 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2063 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002064 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002065 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002066 swap(__first_, __x.__first_);
2067 swap(__second_, __x.__second_);
2068 }
2069};
2070
2071template <class _T1, class _T2>
2072class __libcpp_compressed_pair_imp<_T1, _T2, 1>
2073 : private _T1
2074{
2075private:
2076 _T2 __second_;
2077public:
2078 typedef _T1 _T1_param;
2079 typedef _T2 _T2_param;
2080
2081 typedef _T1& _T1_reference;
2082 typedef typename remove_reference<_T2>::type& _T2_reference;
2083
2084 typedef const _T1& _T1_const_reference;
2085 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
2086
2087 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002088 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002089 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002090 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002091 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002092 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002093 : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002094
Howard Hinnant61aa6012011-07-01 19:24:36 +00002095#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2096
2097 _LIBCPP_INLINE_VISIBILITY
2098 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2099 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2100 is_nothrow_copy_constructible<_T2>::value)
2101 : _T1(__p.first()), __second_(__p.second()) {}
2102
2103 _LIBCPP_INLINE_VISIBILITY
2104 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2105 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2106 is_nothrow_copy_assignable<_T2>::value)
2107 {
2108 _T1::operator=(__p.first());
2109 __second_ = __p.second();
2110 return *this;
2111 }
2112
Howard Hinnant73d21a42010-09-04 23:28:19 +00002113#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002114
2115 _LIBCPP_INLINE_VISIBILITY
2116 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002117 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2118 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002119 : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002120
2121 _LIBCPP_INLINE_VISIBILITY
2122 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2123 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2124 is_nothrow_move_assignable<_T2>::value)
2125 {
2126 _T1::operator=(_VSTD::move(__p.first()));
2127 __second_ = _VSTD::forward<_T2>(__p.second());
2128 return *this;
2129 }
2130
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002131#ifndef _LIBCPP_HAS_NO_VARIADICS
2132
2133 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2134 _LIBCPP_INLINE_VISIBILITY
2135 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2136 tuple<_Args1...> __first_args,
2137 tuple<_Args2...> __second_args,
2138 __tuple_indices<_I1...>,
2139 __tuple_indices<_I2...>)
2140 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2141 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2142 {}
2143
2144#endif // _LIBCPP_HAS_NO_VARIADICS
2145
Howard Hinnant73d21a42010-09-04 23:28:19 +00002146#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002147
Howard Hinnant61aa6012011-07-01 19:24:36 +00002148#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2149
Howard Hinnant1694d232011-05-28 14:41:13 +00002150 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2151 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002152
Howard Hinnant1694d232011-05-28 14:41:13 +00002153 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2154 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002155
2156 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002157 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2158 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002159 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002160 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002161 swap(__second_, __x.__second_);
2162 }
2163};
2164
2165template <class _T1, class _T2>
2166class __libcpp_compressed_pair_imp<_T1, _T2, 2>
2167 : private _T2
2168{
2169private:
2170 _T1 __first_;
2171public:
2172 typedef _T1 _T1_param;
2173 typedef _T2 _T2_param;
2174
2175 typedef typename remove_reference<_T1>::type& _T1_reference;
2176 typedef _T2& _T2_reference;
2177
2178 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
2179 typedef const _T2& _T2_const_reference;
2180
2181 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2182 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002183 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002184 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002185 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002186 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant1694d232011-05-28 14:41:13 +00002187 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2188 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002189 : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002190
Howard Hinnant61aa6012011-07-01 19:24:36 +00002191#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2192
2193 _LIBCPP_INLINE_VISIBILITY
2194 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2195 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2196 is_nothrow_copy_constructible<_T2>::value)
2197 : _T2(__p.second()), __first_(__p.first()) {}
2198
2199 _LIBCPP_INLINE_VISIBILITY
2200 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2201 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2202 is_nothrow_copy_assignable<_T2>::value)
2203 {
2204 _T2::operator=(__p.second());
2205 __first_ = __p.first();
2206 return *this;
2207 }
2208
Howard Hinnant73d21a42010-09-04 23:28:19 +00002209#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002210
2211 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002212 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002213 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2214 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002215 : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002216
2217 _LIBCPP_INLINE_VISIBILITY
2218 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2219 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2220 is_nothrow_move_assignable<_T2>::value)
2221 {
2222 _T2::operator=(_VSTD::forward<_T2>(__p.second()));
2223 __first_ = _VSTD::move(__p.first());
2224 return *this;
2225 }
2226
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002227#ifndef _LIBCPP_HAS_NO_VARIADICS
2228
2229 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2230 _LIBCPP_INLINE_VISIBILITY
2231 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2232 tuple<_Args1...> __first_args,
2233 tuple<_Args2...> __second_args,
2234 __tuple_indices<_I1...>,
2235 __tuple_indices<_I2...>)
2236 : _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...),
2237 __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...)
2238
2239 {}
2240
2241#endif // _LIBCPP_HAS_NO_VARIADICS
2242
Howard Hinnant73d21a42010-09-04 23:28:19 +00002243#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002244
Howard Hinnant61aa6012011-07-01 19:24:36 +00002245#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2246
Howard Hinnant1694d232011-05-28 14:41:13 +00002247 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2248 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002249
Howard Hinnant1694d232011-05-28 14:41:13 +00002250 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2251 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002252
2253 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002254 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2255 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002256 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002257 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002258 swap(__first_, __x.__first_);
2259 }
2260};
2261
2262template <class _T1, class _T2>
2263class __libcpp_compressed_pair_imp<_T1, _T2, 3>
2264 : private _T1,
2265 private _T2
2266{
2267public:
2268 typedef _T1 _T1_param;
2269 typedef _T2 _T2_param;
2270
2271 typedef _T1& _T1_reference;
2272 typedef _T2& _T2_reference;
2273
2274 typedef const _T1& _T1_const_reference;
2275 typedef const _T2& _T2_const_reference;
2276
2277 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2278 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002279 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002280 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002281 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002282 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002283 : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002284
Howard Hinnant61aa6012011-07-01 19:24:36 +00002285#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2286
2287 _LIBCPP_INLINE_VISIBILITY
2288 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2289 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2290 is_nothrow_copy_constructible<_T2>::value)
2291 : _T1(__p.first()), _T2(__p.second()) {}
2292
2293 _LIBCPP_INLINE_VISIBILITY
2294 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2295 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2296 is_nothrow_copy_assignable<_T2>::value)
2297 {
2298 _T1::operator=(__p.first());
2299 _T2::operator=(__p.second());
2300 return *this;
2301 }
2302
Howard Hinnant73d21a42010-09-04 23:28:19 +00002303#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002304
2305 _LIBCPP_INLINE_VISIBILITY
2306 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002307 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2308 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002309 : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002310
2311 _LIBCPP_INLINE_VISIBILITY
2312 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2313 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2314 is_nothrow_move_assignable<_T2>::value)
2315 {
2316 _T1::operator=(_VSTD::move(__p.first()));
2317 _T2::operator=(_VSTD::move(__p.second()));
2318 return *this;
2319 }
2320
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002321#ifndef _LIBCPP_HAS_NO_VARIADICS
2322
2323 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2324 _LIBCPP_INLINE_VISIBILITY
2325 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2326 tuple<_Args1...> __first_args,
2327 tuple<_Args2...> __second_args,
2328 __tuple_indices<_I1...>,
2329 __tuple_indices<_I2...>)
2330 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2331 _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2332 {}
2333
2334#endif // _LIBCPP_HAS_NO_VARIADICS
2335
Howard Hinnant73d21a42010-09-04 23:28:19 +00002336#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002337
Howard Hinnant61aa6012011-07-01 19:24:36 +00002338#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2339
Howard Hinnant1694d232011-05-28 14:41:13 +00002340 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2341 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002342
Howard Hinnant1694d232011-05-28 14:41:13 +00002343 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2344 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002345
Howard Hinnantec3773c2011-12-01 20:21:04 +00002346 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp&)
Howard Hinnant1694d232011-05-28 14:41:13 +00002347 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2348 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002349 {
2350 }
2351};
2352
2353template <class _T1, class _T2>
2354class __compressed_pair
2355 : private __libcpp_compressed_pair_imp<_T1, _T2>
2356{
2357 typedef __libcpp_compressed_pair_imp<_T1, _T2> base;
2358public:
2359 typedef typename base::_T1_param _T1_param;
2360 typedef typename base::_T2_param _T2_param;
2361
2362 typedef typename base::_T1_reference _T1_reference;
2363 typedef typename base::_T2_reference _T2_reference;
2364
2365 typedef typename base::_T1_const_reference _T1_const_reference;
2366 typedef typename base::_T2_const_reference _T2_const_reference;
2367
2368 _LIBCPP_INLINE_VISIBILITY __compressed_pair() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002369 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002370 : base(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002371 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002372 : base(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002373 _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002374 : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002375
Howard Hinnant61aa6012011-07-01 19:24:36 +00002376#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2377
2378 _LIBCPP_INLINE_VISIBILITY
2379 __compressed_pair(const __compressed_pair& __p)
2380 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2381 is_nothrow_copy_constructible<_T2>::value)
2382 : base(__p) {}
2383
2384 _LIBCPP_INLINE_VISIBILITY
2385 __compressed_pair& operator=(const __compressed_pair& __p)
2386 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2387 is_nothrow_copy_assignable<_T2>::value)
2388 {
2389 base::operator=(__p);
2390 return *this;
2391 }
2392
Howard Hinnant73d21a42010-09-04 23:28:19 +00002393#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002394 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002395 __compressed_pair(__compressed_pair&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002396 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2397 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002398 : base(_VSTD::move(__p)) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002399
2400 _LIBCPP_INLINE_VISIBILITY
2401 __compressed_pair& operator=(__compressed_pair&& __p)
2402 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2403 is_nothrow_move_assignable<_T2>::value)
2404 {
2405 base::operator=(_VSTD::move(__p));
2406 return *this;
2407 }
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002408
2409#ifndef _LIBCPP_HAS_NO_VARIADICS
2410
2411 template <class... _Args1, class... _Args2>
2412 _LIBCPP_INLINE_VISIBILITY
2413 __compressed_pair(piecewise_construct_t __pc, tuple<_Args1...> __first_args,
2414 tuple<_Args2...> __second_args)
Howard Hinnant57199402012-01-02 17:56:02 +00002415 : base(__pc, _VSTD::move(__first_args), _VSTD::move(__second_args),
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002416 typename __make_tuple_indices<sizeof...(_Args1)>::type(),
2417 typename __make_tuple_indices<sizeof...(_Args2) >::type())
2418 {}
2419
2420#endif // _LIBCPP_HAS_NO_VARIADICS
2421
Howard Hinnant73d21a42010-09-04 23:28:19 +00002422#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002423
Howard Hinnant61aa6012011-07-01 19:24:36 +00002424#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2425
Howard Hinnant1694d232011-05-28 14:41:13 +00002426 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return base::first();}
2427 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002428
Howard Hinnant1694d232011-05-28 14:41:13 +00002429 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return base::second();}
2430 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return base::second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002431
Howard Hinnant1694d232011-05-28 14:41:13 +00002432 _LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x)
2433 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2434 __is_nothrow_swappable<_T1>::value)
2435 {base::swap(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002436};
2437
2438template <class _T1, class _T2>
2439inline _LIBCPP_INLINE_VISIBILITY
2440void
2441swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
Howard Hinnant1694d232011-05-28 14:41:13 +00002442 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2443 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002444 {__x.swap(__y);}
2445
Howard Hinnant57199402012-01-02 17:56:02 +00002446// __same_or_less_cv_qualified
2447
2448template <class _Ptr1, class _Ptr2,
2449 bool = is_same<typename remove_cv<typename pointer_traits<_Ptr1>::element_type>::type,
2450 typename remove_cv<typename pointer_traits<_Ptr2>::element_type>::type
2451 >::value
2452 >
2453struct __same_or_less_cv_qualified_imp
2454 : is_convertible<_Ptr1, _Ptr2> {};
2455
2456template <class _Ptr1, class _Ptr2>
2457struct __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2, false>
2458 : false_type {};
2459
2460template <class _Ptr1, class _Ptr2, bool = is_scalar<_Ptr1>::value &&
2461 !is_pointer<_Ptr1>::value>
2462struct __same_or_less_cv_qualified
2463 : __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2> {};
2464
2465template <class _Ptr1, class _Ptr2>
2466struct __same_or_less_cv_qualified<_Ptr1, _Ptr2, true>
2467 : false_type {};
2468
2469// default_delete
2470
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002471template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002472struct _LIBCPP_VISIBLE default_delete
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002473{
Howard Hinnant46e94932012-07-07 20:56:04 +00002474#ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2475 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT = default;
2476#else
2477 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT {}
2478#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002479 template <class _Up>
2480 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up>&,
Howard Hinnant1694d232011-05-28 14:41:13 +00002481 typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
2482 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002483 {
2484 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2485 delete __ptr;
2486 }
2487};
2488
2489template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002490struct _LIBCPP_VISIBLE default_delete<_Tp[]>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002491{
Howard Hinnant8e843502011-12-18 21:19:44 +00002492public:
Howard Hinnant46e94932012-07-07 20:56:04 +00002493#ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2494 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT = default;
2495#else
2496 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT {}
2497#endif
Howard Hinnant8e843502011-12-18 21:19:44 +00002498 template <class _Up>
2499 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up[]>&,
Howard Hinnant57199402012-01-02 17:56:02 +00002500 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
Howard Hinnant8e843502011-12-18 21:19:44 +00002501 template <class _Up>
2502 _LIBCPP_INLINE_VISIBILITY
2503 void operator() (_Up* __ptr,
Howard Hinnant57199402012-01-02 17:56:02 +00002504 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002505 {
2506 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2507 delete [] __ptr;
2508 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002509};
2510
2511template <class _Tp, class _Dp = default_delete<_Tp> >
Howard Hinnant82894812010-09-22 16:48:34 +00002512class _LIBCPP_VISIBLE unique_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002513{
2514public:
2515 typedef _Tp element_type;
2516 typedef _Dp deleter_type;
2517 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2518private:
2519 __compressed_pair<pointer, deleter_type> __ptr_;
2520
Howard Hinnant57199402012-01-02 17:56:02 +00002521#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002522 unique_ptr(unique_ptr&);
2523 template <class _Up, class _Ep>
2524 unique_ptr(unique_ptr<_Up, _Ep>&);
2525 unique_ptr& operator=(unique_ptr&);
2526 template <class _Up, class _Ep>
2527 unique_ptr& operator=(unique_ptr<_Up, _Ep>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002528#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002529
2530 struct __nat {int __for_bool_;};
2531
2532 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2533 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2534public:
Howard Hinnant46e94932012-07-07 20:56:04 +00002535 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002536 : __ptr_(pointer())
2537 {
2538 static_assert(!is_pointer<deleter_type>::value,
2539 "unique_ptr constructed with null function pointer deleter");
2540 }
Howard Hinnant46e94932012-07-07 20:56:04 +00002541 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002542 : __ptr_(pointer())
2543 {
2544 static_assert(!is_pointer<deleter_type>::value,
2545 "unique_ptr constructed with null function pointer deleter");
2546 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002547 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002548 : __ptr_(_VSTD::move(__p))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002549 {
2550 static_assert(!is_pointer<deleter_type>::value,
2551 "unique_ptr constructed with null function pointer deleter");
2552 }
2553
Howard Hinnant73d21a42010-09-04 23:28:19 +00002554#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002555 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename conditional<
2556 is_reference<deleter_type>::value,
2557 deleter_type,
2558 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002559 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002560 : __ptr_(__p, __d) {}
2561
2562 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002563 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002564 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002565 {
2566 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2567 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002568 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002569 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002570 template <class _Up, class _Ep>
2571 _LIBCPP_INLINE_VISIBILITY
2572 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2573 typename enable_if
2574 <
2575 !is_array<_Up>::value &&
2576 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2577 is_convertible<_Ep, deleter_type>::value &&
2578 (
2579 !is_reference<deleter_type>::value ||
2580 is_same<deleter_type, _Ep>::value
2581 ),
2582 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002583 >::type = __nat()) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002584 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002585
2586 template <class _Up>
2587 _LIBCPP_INLINE_VISIBILITY unique_ptr(auto_ptr<_Up>&& __p,
2588 typename enable_if<
2589 is_convertible<_Up*, _Tp*>::value &&
2590 is_same<_Dp, default_delete<_Tp> >::value,
2591 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002592 >::type = __nat()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002593 : __ptr_(__p.release())
2594 {
2595 }
2596
Howard Hinnant1694d232011-05-28 14:41:13 +00002597 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002598 {
2599 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002600 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002601 return *this;
2602 }
2603
2604 template <class _Up, class _Ep>
2605 _LIBCPP_INLINE_VISIBILITY
2606 typename enable_if
2607 <
Howard Hinnant57199402012-01-02 17:56:02 +00002608 !is_array<_Up>::value &&
2609 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2610 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002611 unique_ptr&
2612 >::type
Howard Hinnant1694d232011-05-28 14:41:13 +00002613 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002614 {
2615 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002616 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002617 return *this;
2618 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002619#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002620
2621 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2622 {
2623 return __rv<unique_ptr>(*this);
2624 }
2625
2626 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002627 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002628
2629 template <class _Up, class _Ep>
2630 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr<_Up, _Ep> __u)
2631 {
2632 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002633 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002634 return *this;
2635 }
2636
2637 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002638 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002639
2640 template <class _Up>
2641 _LIBCPP_INLINE_VISIBILITY
2642 typename enable_if<
2643 is_convertible<_Up*, _Tp*>::value &&
2644 is_same<_Dp, default_delete<_Tp> >::value,
2645 unique_ptr&
2646 >::type
2647 operator=(auto_ptr<_Up> __p)
2648 {reset(__p.release()); return *this;}
2649
Howard Hinnant73d21a42010-09-04 23:28:19 +00002650#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002651 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2652
Howard Hinnant1694d232011-05-28 14:41:13 +00002653 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002654 {
2655 reset();
2656 return *this;
2657 }
2658
2659 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator*() const
2660 {return *__ptr_.first();}
Howard Hinnant1694d232011-05-28 14:41:13 +00002661 _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT {return __ptr_.first();}
2662 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2663 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2664 {return __ptr_.second();}
2665 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2666 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002667 _LIBCPP_INLINE_VISIBILITY
2668 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2669 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002670
Howard Hinnant1694d232011-05-28 14:41:13 +00002671 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002672 {
2673 pointer __t = __ptr_.first();
2674 __ptr_.first() = pointer();
2675 return __t;
2676 }
2677
Howard Hinnant1694d232011-05-28 14:41:13 +00002678 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002679 {
2680 pointer __tmp = __ptr_.first();
2681 __ptr_.first() = __p;
2682 if (__tmp)
2683 __ptr_.second()(__tmp);
2684 }
2685
Howard Hinnant1694d232011-05-28 14:41:13 +00002686 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) _NOEXCEPT
2687 {__ptr_.swap(__u.__ptr_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002688};
2689
2690template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00002691class _LIBCPP_VISIBLE unique_ptr<_Tp[], _Dp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002692{
2693public:
2694 typedef _Tp element_type;
2695 typedef _Dp deleter_type;
2696 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2697private:
2698 __compressed_pair<pointer, deleter_type> __ptr_;
2699
Howard Hinnant57199402012-01-02 17:56:02 +00002700#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002701 unique_ptr(unique_ptr&);
2702 template <class _Up>
2703 unique_ptr(unique_ptr<_Up>&);
2704 unique_ptr& operator=(unique_ptr&);
2705 template <class _Up>
2706 unique_ptr& operator=(unique_ptr<_Up>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002707#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002708
2709 struct __nat {int __for_bool_;};
2710
2711 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2712 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2713public:
Howard Hinnant46e94932012-07-07 20:56:04 +00002714 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002715 : __ptr_(pointer())
2716 {
2717 static_assert(!is_pointer<deleter_type>::value,
2718 "unique_ptr constructed with null function pointer deleter");
2719 }
Howard Hinnant46e94932012-07-07 20:56:04 +00002720 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002721 : __ptr_(pointer())
2722 {
2723 static_assert(!is_pointer<deleter_type>::value,
2724 "unique_ptr constructed with null function pointer deleter");
2725 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002726#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002727 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002728 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002729 >
Howard Hinnant99968442011-11-29 18:15:50 +00002730 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002731 : __ptr_(__p)
2732 {
2733 static_assert(!is_pointer<deleter_type>::value,
2734 "unique_ptr constructed with null function pointer deleter");
2735 }
2736
Howard Hinnant99968442011-11-29 18:15:50 +00002737 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002738 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002739 >
Howard Hinnant99968442011-11-29 18:15:50 +00002740 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename conditional<
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002741 is_reference<deleter_type>::value,
2742 deleter_type,
2743 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002744 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002745 : __ptr_(__p, __d) {}
2746
2747 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename conditional<
2748 is_reference<deleter_type>::value,
2749 deleter_type,
2750 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002751 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002752 : __ptr_(pointer(), __d) {}
2753
Howard Hinnant99968442011-11-29 18:15:50 +00002754 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002755 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002756 >
Howard Hinnant99968442011-11-29 18:15:50 +00002757 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002758 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002759 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002760 {
2761 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2762 }
2763
2764 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002765 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002766 : __ptr_(pointer(), _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002767 {
2768 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2769 }
2770
Howard Hinnant1694d232011-05-28 14:41:13 +00002771 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002772 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002773
Howard Hinnant1694d232011-05-28 14:41:13 +00002774 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002775 {
2776 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002777 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002778 return *this;
2779 }
Howard Hinnant8e843502011-12-18 21:19:44 +00002780
2781 template <class _Up, class _Ep>
2782 _LIBCPP_INLINE_VISIBILITY
2783 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2784 typename enable_if
2785 <
2786 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002787 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value
Howard Hinnant8e843502011-12-18 21:19:44 +00002788 && is_convertible<_Ep, deleter_type>::value &&
2789 (
2790 !is_reference<deleter_type>::value ||
2791 is_same<deleter_type, _Ep>::value
2792 ),
2793 __nat
2794 >::type = __nat()
2795 ) _NOEXCEPT
2796 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
2797
2798
2799 template <class _Up, class _Ep>
2800 _LIBCPP_INLINE_VISIBILITY
2801 typename enable_if
2802 <
2803 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002804 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2805 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnant8e843502011-12-18 21:19:44 +00002806 unique_ptr&
2807 >::type
2808 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
2809 {
2810 reset(__u.release());
2811 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2812 return *this;
2813 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002814#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002815
2816 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p)
2817 : __ptr_(__p)
2818 {
2819 static_assert(!is_pointer<deleter_type>::value,
2820 "unique_ptr constructed with null function pointer deleter");
2821 }
2822
2823 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002824 : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002825
2826 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002827 : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002828
2829 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2830 {
2831 return __rv<unique_ptr>(*this);
2832 }
2833
2834 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002835 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002836
2837 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(__rv<unique_ptr> __u)
2838 {
2839 reset(__u->release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002840 __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002841 return *this;
2842 }
2843
Howard Hinnant73d21a42010-09-04 23:28:19 +00002844#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002845 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2846
Howard Hinnant1694d232011-05-28 14:41:13 +00002847 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002848 {
2849 reset();
2850 return *this;
2851 }
2852
2853 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator[](size_t __i) const
2854 {return __ptr_.first()[__i];}
Howard Hinnant1694d232011-05-28 14:41:13 +00002855 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2856 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2857 {return __ptr_.second();}
2858 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2859 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002860 _LIBCPP_INLINE_VISIBILITY
2861 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2862 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002863
Howard Hinnant1694d232011-05-28 14:41:13 +00002864 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002865 {
2866 pointer __t = __ptr_.first();
2867 __ptr_.first() = pointer();
2868 return __t;
2869 }
2870
Howard Hinnant73d21a42010-09-04 23:28:19 +00002871#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002872 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002873 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002874 >
Howard Hinnant99968442011-11-29 18:15:50 +00002875 _LIBCPP_INLINE_VISIBILITY void reset(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002876 {
2877 pointer __tmp = __ptr_.first();
2878 __ptr_.first() = __p;
2879 if (__tmp)
2880 __ptr_.second()(__tmp);
2881 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002882 _LIBCPP_INLINE_VISIBILITY void reset(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002883 {
2884 pointer __tmp = __ptr_.first();
2885 __ptr_.first() = nullptr;
2886 if (__tmp)
2887 __ptr_.second()(__tmp);
2888 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002889 _LIBCPP_INLINE_VISIBILITY void reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002890 {
2891 pointer __tmp = __ptr_.first();
2892 __ptr_.first() = nullptr;
2893 if (__tmp)
2894 __ptr_.second()(__tmp);
2895 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002896#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002897 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer())
2898 {
2899 pointer __tmp = __ptr_.first();
2900 __ptr_.first() = __p;
2901 if (__tmp)
2902 __ptr_.second()(__tmp);
2903 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002904#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002905
2906 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) {__ptr_.swap(__u.__ptr_);}
2907private:
Howard Hinnant324bb032010-08-22 00:02:43 +00002908
Howard Hinnant73d21a42010-09-04 23:28:19 +00002909#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002910 template <class _Up>
2911 explicit unique_ptr(_Up);
2912 template <class _Up>
2913 unique_ptr(_Up __u,
2914 typename conditional<
2915 is_reference<deleter_type>::value,
2916 deleter_type,
2917 typename add_lvalue_reference<const deleter_type>::type>::type,
2918 typename enable_if
2919 <
2920 is_convertible<_Up, pointer>::value,
2921 __nat
2922 >::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00002923#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002924};
2925
2926template <class _Tp, class _Dp>
2927inline _LIBCPP_INLINE_VISIBILITY
2928void
Howard Hinnant1694d232011-05-28 14:41:13 +00002929swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002930
2931template <class _T1, class _D1, class _T2, class _D2>
2932inline _LIBCPP_INLINE_VISIBILITY
2933bool
2934operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
2935
2936template <class _T1, class _D1, class _T2, class _D2>
2937inline _LIBCPP_INLINE_VISIBILITY
2938bool
2939operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
2940
2941template <class _T1, class _D1, class _T2, class _D2>
2942inline _LIBCPP_INLINE_VISIBILITY
2943bool
Howard Hinnant3fadda32012-02-21 21:02:58 +00002944operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y)
2945{
2946 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2947 typedef typename unique_ptr<_T2, _D2>::pointer _P2;
2948 typedef typename common_type<_P1, _P2>::type _V;
2949 return less<_V>()(__x.get(), __y.get());
2950}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002951
2952template <class _T1, class _D1, class _T2, class _D2>
2953inline _LIBCPP_INLINE_VISIBILITY
2954bool
2955operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
2956
2957template <class _T1, class _D1, class _T2, class _D2>
2958inline _LIBCPP_INLINE_VISIBILITY
2959bool
2960operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);}
2961
2962template <class _T1, class _D1, class _T2, class _D2>
2963inline _LIBCPP_INLINE_VISIBILITY
2964bool
2965operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);}
2966
Howard Hinnant3fadda32012-02-21 21:02:58 +00002967template <class _T1, class _D1>
2968inline _LIBCPP_INLINE_VISIBILITY
2969bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002970operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002971{
2972 return !__x;
2973}
2974
2975template <class _T1, class _D1>
2976inline _LIBCPP_INLINE_VISIBILITY
2977bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002978operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002979{
2980 return !__x;
2981}
2982
2983template <class _T1, class _D1>
2984inline _LIBCPP_INLINE_VISIBILITY
2985bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002986operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002987{
2988 return static_cast<bool>(__x);
2989}
2990
2991template <class _T1, class _D1>
2992inline _LIBCPP_INLINE_VISIBILITY
2993bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002994operator!=(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002995{
2996 return static_cast<bool>(__x);
2997}
2998
2999template <class _T1, class _D1>
3000inline _LIBCPP_INLINE_VISIBILITY
3001bool
3002operator<(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3003{
3004 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3005 return less<_P1>()(__x.get(), nullptr);
3006}
3007
3008template <class _T1, class _D1>
3009inline _LIBCPP_INLINE_VISIBILITY
3010bool
3011operator<(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3012{
3013 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3014 return less<_P1>()(nullptr, __x.get());
3015}
3016
3017template <class _T1, class _D1>
3018inline _LIBCPP_INLINE_VISIBILITY
3019bool
3020operator>(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3021{
3022 return nullptr < __x;
3023}
3024
3025template <class _T1, class _D1>
3026inline _LIBCPP_INLINE_VISIBILITY
3027bool
3028operator>(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3029{
3030 return __x < nullptr;
3031}
3032
3033template <class _T1, class _D1>
3034inline _LIBCPP_INLINE_VISIBILITY
3035bool
3036operator<=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3037{
3038 return !(nullptr < __x);
3039}
3040
3041template <class _T1, class _D1>
3042inline _LIBCPP_INLINE_VISIBILITY
3043bool
3044operator<=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3045{
3046 return !(__x < nullptr);
3047}
3048
3049template <class _T1, class _D1>
3050inline _LIBCPP_INLINE_VISIBILITY
3051bool
3052operator>=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3053{
3054 return !(__x < nullptr);
3055}
3056
3057template <class _T1, class _D1>
3058inline _LIBCPP_INLINE_VISIBILITY
3059bool
3060operator>=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3061{
3062 return !(nullptr < __x);
3063}
3064
Howard Hinnant87073e42012-05-01 15:37:54 +00003065#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3066
3067template <class _Tp, class _Dp>
3068inline _LIBCPP_INLINE_VISIBILITY
3069unique_ptr<_Tp, _Dp>
3070move(unique_ptr<_Tp, _Dp>& __t)
3071{
3072 return unique_ptr<_Tp, _Dp>(__rv<unique_ptr<_Tp, _Dp> >(__t));
3073}
3074
3075#endif
3076
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00003077template <class _Tp> struct hash;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003078
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003079// We use murmur2 when size_t is 32 bits, and cityhash64 when size_t
3080// is 64 bits. This is because cityhash64 uses 64bit x 64bit
3081// multiplication, which can be very slow on 32-bit systems.
Howard Hinnant40c13d32011-12-05 00:08:45 +00003082template <class _Size, size_t = sizeof(_Size)*__CHAR_BIT__>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003083struct __murmur2_or_cityhash;
Howard Hinnant40c13d32011-12-05 00:08:45 +00003084
3085template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003086struct __murmur2_or_cityhash<_Size, 32>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003087{
3088 _Size operator()(const void* __key, _Size __len);
3089};
3090
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003091// murmur2
Howard Hinnant40c13d32011-12-05 00:08:45 +00003092template <class _Size>
3093_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003094__murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003095{
3096 const _Size __m = 0x5bd1e995;
3097 const _Size __r = 24;
3098 _Size __h = __len;
3099 const unsigned char* __data = static_cast<const unsigned char*>(__key);
3100 for (; __len >= 4; __data += 4, __len -= 4)
3101 {
3102 _Size __k = *(const _Size*)__data;
3103 __k *= __m;
3104 __k ^= __k >> __r;
3105 __k *= __m;
3106 __h *= __m;
3107 __h ^= __k;
3108 }
3109 switch (__len)
3110 {
3111 case 3:
3112 __h ^= __data[2] << 16;
3113 case 2:
3114 __h ^= __data[1] << 8;
3115 case 1:
3116 __h ^= __data[0];
3117 __h *= __m;
3118 }
3119 __h ^= __h >> 13;
3120 __h *= __m;
3121 __h ^= __h >> 15;
3122 return __h;
3123}
3124
3125template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003126struct __murmur2_or_cityhash<_Size, 64>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003127{
3128 _Size operator()(const void* __key, _Size __len);
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003129
3130 private:
3131 // Some primes between 2^63 and 2^64.
3132 static const _Size __k0 = 0xc3a5c85c97cb3127ULL;
3133 static const _Size __k1 = 0xb492b66fbe98f273ULL;
3134 static const _Size __k2 = 0x9ae16a3b2f90404fULL;
3135 static const _Size __k3 = 0xc949d7c7509e6557ULL;
3136
3137 static _Size __rotate(_Size __val, int __shift) {
3138 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift)));
3139 }
3140
3141 static _Size __rotate_by_at_least_1(_Size __val, int __shift) {
3142 return (__val >> __shift) | (__val << (64 - __shift));
3143 }
3144
3145 static _Size __shift_mix(_Size __val) {
3146 return __val ^ (__val >> 47);
3147 }
3148
3149 static _Size __hash_len_16(_Size __u, _Size __v) {
3150 const _Size __mul = 0x9ddfea08eb382d69ULL;
3151 _Size __a = (__u ^ __v) * __mul;
3152 __a ^= (__a >> 47);
3153 _Size __b = (__v ^ __a) * __mul;
3154 __b ^= (__b >> 47);
3155 __b *= __mul;
3156 return __b;
3157 }
3158
3159 static _Size __hash_len_0_to_16(const char* __s, _Size __len) {
3160 if (__len > 8) {
3161 const _Size __a = *(const _Size*)__s;
3162 const _Size __b = *(const _Size*)(__s + __len - 8);
3163 return __hash_len_16(__a, __rotate_by_at_least_1(__b + __len, __len)) ^ __b;
3164 }
3165 if (__len >= 4) {
3166 const uint32_t __a = *(const uint32_t*)(__s);
3167 const uint32_t __b = *(const uint32_t*)(__s + __len - 4);
3168 return __hash_len_16(__len + (__a << 3), __b);
3169 }
3170 if (__len > 0) {
3171 const unsigned char __a = __s[0];
3172 const unsigned char __b = __s[__len >> 1];
3173 const unsigned char __c = __s[__len - 1];
3174 const uint32_t __y = static_cast<uint32_t>(__a) +
3175 (static_cast<uint32_t>(__b) << 8);
3176 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
3177 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
3178 }
3179 return __k2;
3180 }
3181
3182 static _Size __hash_len_17_to_32(const char *__s, _Size __len) {
3183 const _Size __a = *(const _Size*)(__s) * __k1;
3184 const _Size __b = *(const _Size*)(__s + 8);
3185 const _Size __c = *(const _Size*)(__s + __len - 8) * __k2;
3186 const _Size __d = *(const _Size*)(__s + __len - 16) * __k0;
3187 return __hash_len_16(__rotate(__a - __b, 43) + __rotate(__c, 30) + __d,
3188 __a + __rotate(__b ^ __k3, 20) - __c + __len);
3189 }
3190
3191 // Return a 16-byte hash for 48 bytes. Quick and dirty.
3192 // Callers do best to use "random-looking" values for a and b.
3193 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3194 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) {
3195 __a += __w;
3196 __b = __rotate(__b + __a + __z, 21);
3197 const _Size __c = __a;
3198 __a += __x;
3199 __a += __y;
3200 __b += __rotate(__a, 44);
3201 return pair<_Size, _Size>(__a + __z, __b + __c);
3202 }
3203
3204 // Return a 16-byte hash for s[0] ... s[31], a, and b. Quick and dirty.
3205 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3206 const char* __s, _Size __a, _Size __b) {
3207 return __weak_hash_len_32_with_seeds(*(const _Size*)(__s),
3208 *(const _Size*)(__s + 8),
3209 *(const _Size*)(__s + 16),
3210 *(const _Size*)(__s + 24),
3211 __a,
3212 __b);
3213 }
3214
3215 // Return an 8-byte hash for 33 to 64 bytes.
3216 static _Size __hash_len_33_to_64(const char *__s, size_t __len) {
3217 _Size __z = *(const _Size*)(__s + 24);
3218 _Size __a = *(const _Size*)(__s) +
3219 (__len + *(const _Size*)(__s + __len - 16)) * __k0;
3220 _Size __b = __rotate(__a + __z, 52);
3221 _Size __c = __rotate(__a, 37);
3222 __a += *(const _Size*)(__s + 8);
3223 __c += __rotate(__a, 7);
3224 __a += *(const _Size*)(__s + 16);
3225 _Size __vf = __a + __z;
3226 _Size __vs = __b + __rotate(__a, 31) + __c;
3227 __a = *(const _Size*)(__s + 16) + *(const _Size*)(__s + __len - 32);
3228 __z += *(const _Size*)(__s + __len - 8);
3229 __b = __rotate(__a + __z, 52);
3230 __c = __rotate(__a, 37);
3231 __a += *(const _Size*)(__s + __len - 24);
3232 __c += __rotate(__a, 7);
3233 __a += *(const _Size*)(__s + __len - 16);
3234 _Size __wf = __a + __z;
3235 _Size __ws = __b + __rotate(__a, 31) + __c;
3236 _Size __r = __shift_mix((__vf + __ws) * __k2 + (__wf + __vs) * __k0);
3237 return __shift_mix(__r * __k0 + __vs) * __k2;
3238 }
Howard Hinnant40c13d32011-12-05 00:08:45 +00003239};
3240
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003241// cityhash64
Howard Hinnant40c13d32011-12-05 00:08:45 +00003242template <class _Size>
3243_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003244__murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003245{
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003246 const char* __s = static_cast<const char*>(__key);
3247 if (__len <= 32) {
3248 if (__len <= 16) {
3249 return __hash_len_0_to_16(__s, __len);
3250 } else {
3251 return __hash_len_17_to_32(__s, __len);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003252 }
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003253 } else if (__len <= 64) {
3254 return __hash_len_33_to_64(__s, __len);
3255 }
3256
3257 // For strings over 64 bytes we hash the end first, and then as we
3258 // loop we keep 56 bytes of state: v, w, x, y, and z.
3259 _Size __x = *(const _Size*)(__s + __len - 40);
3260 _Size __y = *(const _Size*)(__s + __len - 16) +
3261 *(const _Size*)(__s + __len - 56);
3262 _Size __z = __hash_len_16(*(const _Size*)(__s + __len - 48) + __len,
3263 *(const _Size*)(__s + __len - 24));
3264 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z);
3265 pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x);
3266 __x = __x * __k1 + *(const _Size*)(__s);
3267
3268 // Decrease len to the nearest multiple of 64, and operate on 64-byte chunks.
3269 __len = (__len - 1) & ~static_cast<_Size>(63);
3270 do {
3271 __x = __rotate(__x + __y + __v.first + *(const _Size*)(__s + 8), 37) * __k1;
3272 __y = __rotate(__y + __v.second + *(const _Size*)(__s + 48), 42) * __k1;
3273 __x ^= __w.second;
3274 __y += __v.first + *(const _Size*)(__s + 40);
3275 __z = __rotate(__z + __w.first, 33) * __k1;
3276 __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first);
3277 __w = __weak_hash_len_32_with_seeds(__s + 32, __z + __w.second,
3278 __y + *(const _Size*)(__s + 16));
3279 std::swap(__z, __x);
3280 __s += 64;
3281 __len -= 64;
3282 } while (__len != 0);
3283 return __hash_len_16(
3284 __hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z,
3285 __hash_len_16(__v.second, __w.second) + __x);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003286}
3287
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003288template <class _Tp, size_t = sizeof(_Tp) / sizeof(size_t)>
3289struct __scalar_hash;
3290
3291template <class _Tp>
3292struct __scalar_hash<_Tp, 0>
3293 : public unary_function<_Tp, size_t>
Howard Hinnant21aefc32010-06-03 16:42:57 +00003294{
Howard Hinnant82894812010-09-22 16:48:34 +00003295 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003296 size_t operator()(_Tp __v) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003297 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003298 union
3299 {
3300 _Tp __t;
3301 size_t __a;
3302 } __u;
3303 __u.__a = 0;
3304 __u.__t = __v;
3305 return __u.__a;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003306 }
3307};
3308
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003309template <class _Tp>
3310struct __scalar_hash<_Tp, 1>
3311 : public unary_function<_Tp, size_t>
3312{
3313 _LIBCPP_INLINE_VISIBILITY
3314 size_t operator()(_Tp __v) const _NOEXCEPT
3315 {
3316 union
3317 {
3318 _Tp __t;
3319 size_t __a;
3320 } __u;
3321 __u.__t = __v;
3322 return __u.__a;
3323 }
3324};
3325
3326template <class _Tp>
3327struct __scalar_hash<_Tp, 2>
3328 : public unary_function<_Tp, size_t>
3329{
3330 _LIBCPP_INLINE_VISIBILITY
3331 size_t operator()(_Tp __v) const _NOEXCEPT
3332 {
3333 union
3334 {
3335 _Tp __t;
3336 struct
3337 {
3338 size_t __a;
3339 size_t __b;
3340 };
3341 } __u;
3342 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003343 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003344 }
3345};
3346
3347template <class _Tp>
3348struct __scalar_hash<_Tp, 3>
3349 : public unary_function<_Tp, size_t>
3350{
3351 _LIBCPP_INLINE_VISIBILITY
3352 size_t operator()(_Tp __v) const _NOEXCEPT
3353 {
3354 union
3355 {
3356 _Tp __t;
3357 struct
3358 {
3359 size_t __a;
3360 size_t __b;
3361 size_t __c;
3362 };
3363 } __u;
3364 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003365 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003366 }
3367};
3368
3369template <class _Tp>
3370struct __scalar_hash<_Tp, 4>
3371 : public unary_function<_Tp, size_t>
3372{
3373 _LIBCPP_INLINE_VISIBILITY
3374 size_t operator()(_Tp __v) const _NOEXCEPT
3375 {
3376 union
3377 {
3378 _Tp __t;
3379 struct
3380 {
3381 size_t __a;
3382 size_t __b;
3383 size_t __c;
3384 size_t __d;
3385 };
3386 } __u;
3387 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003388 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003389 }
3390};
3391
3392template<class _Tp>
3393struct _LIBCPP_VISIBLE hash<_Tp*>
Howard Hinnant5fec82d2012-07-30 01:40:57 +00003394 : public unary_function<_Tp*, size_t>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003395{
Howard Hinnant5fec82d2012-07-30 01:40:57 +00003396 _LIBCPP_INLINE_VISIBILITY
3397 size_t operator()(_Tp* __v) const _NOEXCEPT
3398 {
3399 union
3400 {
3401 _Tp* __t;
3402 size_t __a;
3403 } __u;
3404 __u.__t = __v;
3405 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
3406 }
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003407};
3408
Howard Hinnant21aefc32010-06-03 16:42:57 +00003409template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003410struct _LIBCPP_VISIBLE hash<unique_ptr<_Tp, _Dp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00003411{
3412 typedef unique_ptr<_Tp, _Dp> argument_type;
3413 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00003414 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003415 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003416 {
3417 typedef typename argument_type::pointer pointer;
3418 return hash<pointer>()(__ptr.get());
3419 }
3420};
3421
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003422struct __destruct_n
3423{
3424private:
3425 size_t size;
3426
3427 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003428 _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003429 {for (size_t __i = 0; __i < size; ++__i, ++__p) __p->~_Tp();}
3430
3431 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003432 _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003433 {}
3434
Howard Hinnant1694d232011-05-28 14:41:13 +00003435 _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003436 {++size;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003437 _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003438 {}
3439
Howard Hinnant1694d232011-05-28 14:41:13 +00003440 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003441 {size = __s;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003442 _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003443 {}
3444public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003445 _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT
3446 : size(__s) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003447
3448 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003449 _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003450 {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003451
3452 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003453 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003454 {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003455
3456 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003457 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003458 {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003459};
3460
3461template <class _Alloc>
3462class __allocator_destructor
3463{
3464 typedef allocator_traits<_Alloc> __alloc_traits;
3465public:
3466 typedef typename __alloc_traits::pointer pointer;
3467 typedef typename __alloc_traits::size_type size_type;
3468private:
3469 _Alloc& __alloc_;
3470 size_type __s_;
3471public:
3472 _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s)
Howard Hinnant1694d232011-05-28 14:41:13 +00003473 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003474 : __alloc_(__a), __s_(__s) {}
Howard Hinnant82894812010-09-22 16:48:34 +00003475 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003476 void operator()(pointer __p) _NOEXCEPT
3477 {__alloc_traits::deallocate(__alloc_, __p, __s_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003478};
3479
3480template <class _InputIterator, class _ForwardIterator>
3481_ForwardIterator
3482uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r)
3483{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003484 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003485#ifndef _LIBCPP_NO_EXCEPTIONS
3486 _ForwardIterator __s = __r;
3487 try
3488 {
3489#endif
3490 for (; __f != __l; ++__f, ++__r)
3491 ::new(&*__r) value_type(*__f);
3492#ifndef _LIBCPP_NO_EXCEPTIONS
3493 }
3494 catch (...)
3495 {
3496 for (; __s != __r; ++__s)
3497 __s->~value_type();
3498 throw;
3499 }
3500#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003501 return __r;
3502}
3503
3504template <class _InputIterator, class _Size, class _ForwardIterator>
3505_ForwardIterator
3506uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r)
3507{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003508 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003509#ifndef _LIBCPP_NO_EXCEPTIONS
3510 _ForwardIterator __s = __r;
3511 try
3512 {
3513#endif
3514 for (; __n > 0; ++__f, ++__r, --__n)
3515 ::new(&*__r) value_type(*__f);
3516#ifndef _LIBCPP_NO_EXCEPTIONS
3517 }
3518 catch (...)
3519 {
3520 for (; __s != __r; ++__s)
3521 __s->~value_type();
3522 throw;
3523 }
3524#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003525 return __r;
3526}
3527
3528template <class _ForwardIterator, class _Tp>
3529void
3530uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x)
3531{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003532 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003533#ifndef _LIBCPP_NO_EXCEPTIONS
3534 _ForwardIterator __s = __f;
3535 try
3536 {
3537#endif
3538 for (; __f != __l; ++__f)
3539 ::new(&*__f) value_type(__x);
3540#ifndef _LIBCPP_NO_EXCEPTIONS
3541 }
3542 catch (...)
3543 {
3544 for (; __s != __f; ++__s)
3545 __s->~value_type();
3546 throw;
3547 }
3548#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003549}
3550
3551template <class _ForwardIterator, class _Size, class _Tp>
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003552_ForwardIterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003553uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x)
3554{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003555 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003556#ifndef _LIBCPP_NO_EXCEPTIONS
3557 _ForwardIterator __s = __f;
3558 try
3559 {
3560#endif
3561 for (; __n > 0; ++__f, --__n)
3562 ::new(&*__f) value_type(__x);
3563#ifndef _LIBCPP_NO_EXCEPTIONS
3564 }
3565 catch (...)
3566 {
3567 for (; __s != __f; ++__s)
3568 __s->~value_type();
3569 throw;
3570 }
3571#endif
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003572 return __f;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003573}
3574
Howard Hinnant82894812010-09-22 16:48:34 +00003575class _LIBCPP_EXCEPTION_ABI bad_weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003576 : public std::exception
3577{
3578public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003579 virtual ~bad_weak_ptr() _NOEXCEPT;
3580 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003581};
3582
Howard Hinnant33be35e2012-09-14 00:39:16 +00003583template<class _Tp> class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003584
3585class __shared_count
3586{
3587 __shared_count(const __shared_count&);
3588 __shared_count& operator=(const __shared_count&);
3589
3590protected:
3591 long __shared_owners_;
3592 virtual ~__shared_count();
3593private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003594 virtual void __on_zero_shared() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003595
3596public:
Howard Hinnant82894812010-09-22 16:48:34 +00003597 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003598 explicit __shared_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003599 : __shared_owners_(__refs) {}
3600
Howard Hinnant1694d232011-05-28 14:41:13 +00003601 void __add_shared() _NOEXCEPT;
3602 bool __release_shared() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003603 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003604 long use_count() const _NOEXCEPT {return __shared_owners_ + 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003605};
3606
3607class __shared_weak_count
3608 : private __shared_count
3609{
3610 long __shared_weak_owners_;
3611
3612public:
Howard Hinnant82894812010-09-22 16:48:34 +00003613 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003614 explicit __shared_weak_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003615 : __shared_count(__refs),
3616 __shared_weak_owners_(__refs) {}
3617protected:
3618 virtual ~__shared_weak_count();
3619
3620public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003621 void __add_shared() _NOEXCEPT;
3622 void __add_weak() _NOEXCEPT;
3623 void __release_shared() _NOEXCEPT;
3624 void __release_weak() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003625 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003626 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
3627 __shared_weak_count* lock() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003628
Howard Hinnant9b763e02012-05-19 20:20:49 +00003629 // purposefully not protected with #ifndef _LIBCPP_NO_RTTI because doing so
3630 // breaks ABI for those clients who need to compile their projects with
3631 // -fno-rtti and yet link against a libc++.dylib compiled without -fno-rtti.
Howard Hinnant1694d232011-05-28 14:41:13 +00003632 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003633private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003634 virtual void __on_zero_shared_weak() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003635};
3636
3637template <class _Tp, class _Dp, class _Alloc>
3638class __shared_ptr_pointer
3639 : public __shared_weak_count
3640{
3641 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_;
3642public:
Howard Hinnant82894812010-09-22 16:48:34 +00003643 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003644 __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003645 : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003646
Howard Hinnantd4444702010-08-11 17:04:31 +00003647#ifndef _LIBCPP_NO_RTTI
Howard Hinnant1694d232011-05-28 14:41:13 +00003648 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantd4444702010-08-11 17:04:31 +00003649#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003650
3651private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003652 virtual void __on_zero_shared() _NOEXCEPT;
3653 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003654};
3655
Howard Hinnantd4444702010-08-11 17:04:31 +00003656#ifndef _LIBCPP_NO_RTTI
3657
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003658template <class _Tp, class _Dp, class _Alloc>
3659const void*
Howard Hinnant1694d232011-05-28 14:41:13 +00003660__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003661{
3662 return __t == typeid(_Dp) ? &__data_.first().second() : 0;
3663}
3664
Howard Hinnant324bb032010-08-22 00:02:43 +00003665#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00003666
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003667template <class _Tp, class _Dp, class _Alloc>
3668void
Howard Hinnant1694d232011-05-28 14:41:13 +00003669__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003670{
3671 __data_.first().second()(__data_.first().first());
3672 __data_.first().second().~_Dp();
3673}
3674
3675template <class _Tp, class _Dp, class _Alloc>
3676void
Howard Hinnant1694d232011-05-28 14:41:13 +00003677__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003678{
3679 typename _Alloc::template rebind<__shared_ptr_pointer>::other __a(__data_.second());
3680 __data_.second().~_Alloc();
3681 __a.deallocate(this, 1);
3682}
3683
3684template <class _Tp, class _Alloc>
3685class __shared_ptr_emplace
3686 : public __shared_weak_count
3687{
3688 __compressed_pair<_Alloc, _Tp> __data_;
3689public:
3690#ifndef _LIBCPP_HAS_NO_VARIADICS
3691
Howard Hinnant82894812010-09-22 16:48:34 +00003692 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003693 __shared_ptr_emplace(_Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003694 : __data_(_VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003695
3696 template <class ..._Args>
Howard Hinnant82894812010-09-22 16:48:34 +00003697 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003698 __shared_ptr_emplace(_Alloc __a, _Args&& ...__args)
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00003699 : __data_(piecewise_construct, _VSTD::forward_as_tuple(__a),
3700 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003701
3702#else // _LIBCPP_HAS_NO_VARIADICS
3703
Howard Hinnant82894812010-09-22 16:48:34 +00003704 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003705 __shared_ptr_emplace(_Alloc __a)
3706 : __data_(__a) {}
3707
3708 template <class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00003709 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003710 __shared_ptr_emplace(_Alloc __a, _A0& __a0)
3711 : __data_(__a, _Tp(__a0)) {}
3712
3713 template <class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00003714 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003715 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3716 : __data_(__a, _Tp(__a0, __a1)) {}
3717
3718 template <class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00003719 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003720 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3721 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3722
3723#endif // _LIBCPP_HAS_NO_VARIADICS
3724
3725private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003726 virtual void __on_zero_shared() _NOEXCEPT;
3727 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003728public:
Howard Hinnant82894812010-09-22 16:48:34 +00003729 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003730 _Tp* get() _NOEXCEPT {return &__data_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003731};
3732
3733template <class _Tp, class _Alloc>
3734void
Howard Hinnant1694d232011-05-28 14:41:13 +00003735__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003736{
3737 __data_.second().~_Tp();
3738}
3739
3740template <class _Tp, class _Alloc>
3741void
Howard Hinnant1694d232011-05-28 14:41:13 +00003742__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003743{
3744 typename _Alloc::template rebind<__shared_ptr_emplace>::other __a(__data_.first());
3745 __data_.first().~_Alloc();
3746 __a.deallocate(this, 1);
3747}
3748
Howard Hinnant33be35e2012-09-14 00:39:16 +00003749template<class _Tp> class _LIBCPP_VISIBLE enable_shared_from_this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003750
3751template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00003752class _LIBCPP_VISIBLE shared_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003753{
Howard Hinnant324bb032010-08-22 00:02:43 +00003754public:
3755 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003756private:
3757 element_type* __ptr_;
3758 __shared_weak_count* __cntrl_;
3759
3760 struct __nat {int __for_bool_;};
3761public:
Howard Hinnant46e94932012-07-07 20:56:04 +00003762 _LIBCPP_CONSTEXPR shared_ptr() _NOEXCEPT;
3763 _LIBCPP_CONSTEXPR shared_ptr(nullptr_t) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003764 template<class _Yp,
3765 class = typename enable_if
3766 <
3767 is_convertible<_Yp*, element_type*>::value
3768 >::type
3769 >
3770 explicit shared_ptr(_Yp* __p);
3771 template<class _Yp, class _Dp,
3772 class = typename enable_if
3773 <
3774 is_convertible<_Yp*, element_type*>::value
3775 >::type
3776 >
3777 shared_ptr(_Yp* __p, _Dp __d);
3778 template<class _Yp, class _Dp, class _Alloc,
3779 class = typename enable_if
3780 <
3781 is_convertible<_Yp*, element_type*>::value
3782 >::type
3783 >
3784 shared_ptr(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003785 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
3786 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
Howard Hinnant1694d232011-05-28 14:41:13 +00003787 template<class _Yp> shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT;
3788 shared_ptr(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003789 template<class _Yp>
3790 shared_ptr(const shared_ptr<_Yp>& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003791 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3792 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003793#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003794 shared_ptr(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003795 template<class _Yp> shared_ptr(shared_ptr<_Yp>&& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003796 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3797 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003798#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003799 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r,
Howard Hinnant324bb032010-08-22 00:02:43 +00003800 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type= __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003801#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003802 template<class _Yp,
3803 class = typename enable_if
3804 <
3805 is_convertible<_Yp*, element_type*>::value
3806 >::type
3807 >
3808 shared_ptr(auto_ptr<_Yp>&& __r);
Howard Hinnant324bb032010-08-22 00:02:43 +00003809#else
Howard Hinnant57199402012-01-02 17:56:02 +00003810 template<class _Yp,
3811 class = typename enable_if
3812 <
3813 is_convertible<_Yp*, element_type*>::value
3814 >::type
3815 >
3816 shared_ptr(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003817#endif
Howard Hinnant73d21a42010-09-04 23:28:19 +00003818#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003819 template <class _Yp, class _Dp,
3820 class = typename enable_if
3821 <
3822 !is_array<_Yp>::value &&
3823 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3824 >::type
3825 >
3826 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003827 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003828 template <class _Yp, class _Dp,
3829 class = typename enable_if
3830 <
3831 !is_array<_Yp>::value &&
3832 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3833 >::type
3834 >
3835 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003836 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003837#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003838 template <class _Yp, class _Dp,
3839 class = typename enable_if
3840 <
3841 !is_array<_Yp>::value &&
3842 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3843 >::type
3844 > shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003845 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003846 template <class _Yp, class _Dp,
3847 class = typename enable_if
3848 <
3849 !is_array<_Yp>::value &&
3850 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3851 >::type
3852 >
3853 shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003854 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003855#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003856
3857 ~shared_ptr();
3858
Howard Hinnant1694d232011-05-28 14:41:13 +00003859 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003860 template<class _Yp>
3861 typename enable_if
3862 <
3863 is_convertible<_Yp*, element_type*>::value,
3864 shared_ptr&
3865 >::type
3866 operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003867#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003868 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003869 template<class _Yp>
3870 typename enable_if
3871 <
3872 is_convertible<_Yp*, element_type*>::value,
3873 shared_ptr<_Tp>&
3874 >::type
3875 operator=(shared_ptr<_Yp>&& __r);
3876 template<class _Yp>
3877 typename enable_if
3878 <
3879 !is_array<_Yp>::value &&
3880 is_convertible<_Yp*, element_type*>::value,
3881 shared_ptr&
3882 >::type
3883 operator=(auto_ptr<_Yp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003884#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003885 template<class _Yp>
3886 typename enable_if
3887 <
3888 !is_array<_Yp>::value &&
3889 is_convertible<_Yp*, element_type*>::value,
3890 shared_ptr&
3891 >::type
3892 operator=(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003893#endif
Howard Hinnant57199402012-01-02 17:56:02 +00003894 template <class _Yp, class _Dp>
3895 typename enable_if
3896 <
3897 !is_array<_Yp>::value &&
3898 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3899 shared_ptr&
3900 >::type
Howard Hinnant73d21a42010-09-04 23:28:19 +00003901#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003902 operator=(unique_ptr<_Yp, _Dp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003903#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003904 operator=(unique_ptr<_Yp, _Dp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003905#endif
3906
Howard Hinnant1694d232011-05-28 14:41:13 +00003907 void swap(shared_ptr& __r) _NOEXCEPT;
3908 void reset() _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003909 template<class _Yp>
3910 typename enable_if
3911 <
3912 is_convertible<_Yp*, element_type*>::value,
3913 void
3914 >::type
3915 reset(_Yp* __p);
3916 template<class _Yp, class _Dp>
3917 typename enable_if
3918 <
3919 is_convertible<_Yp*, element_type*>::value,
3920 void
3921 >::type
3922 reset(_Yp* __p, _Dp __d);
3923 template<class _Yp, class _Dp, class _Alloc>
3924 typename enable_if
3925 <
3926 is_convertible<_Yp*, element_type*>::value,
3927 void
3928 >::type
3929 reset(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003930
Howard Hinnant82894812010-09-22 16:48:34 +00003931 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003932 element_type* get() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003933 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003934 typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT
3935 {return *__ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003936 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003937 element_type* operator->() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003938 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003939 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00003940 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003941 bool unique() const _NOEXCEPT {return use_count() == 1;}
Howard Hinnant82894812010-09-22 16:48:34 +00003942 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +00003943 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return get() != 0;}
Howard Hinnant99968442011-11-29 18:15:50 +00003944 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003945 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003946 bool owner_before(shared_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003947 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant99968442011-11-29 18:15:50 +00003948 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003949 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003950 bool owner_before(weak_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003951 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant5fec82d2012-07-30 01:40:57 +00003952 _LIBCPP_INLINE_VISIBILITY
3953 bool
3954 __owner_equivalent(const shared_ptr& __p) const
3955 {return __cntrl_ == __p.__cntrl_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003956
Howard Hinnantd4444702010-08-11 17:04:31 +00003957#ifndef _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003958 template <class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003959 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003960 _Dp* __get_deleter() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003961 {return (_Dp*)(__cntrl_ ? __cntrl_->__get_deleter(typeid(_Dp)) : 0);}
Howard Hinnant324bb032010-08-22 00:02:43 +00003962#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003963
3964#ifndef _LIBCPP_HAS_NO_VARIADICS
3965
3966 template<class ..._Args>
3967 static
3968 shared_ptr<_Tp>
3969 make_shared(_Args&& ...__args);
3970
3971 template<class _Alloc, class ..._Args>
3972 static
3973 shared_ptr<_Tp>
3974 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3975
3976#else // _LIBCPP_HAS_NO_VARIADICS
3977
3978 static shared_ptr<_Tp> make_shared();
3979
3980 template<class _A0>
3981 static shared_ptr<_Tp> make_shared(_A0&);
3982
3983 template<class _A0, class _A1>
3984 static shared_ptr<_Tp> make_shared(_A0&, _A1&);
3985
3986 template<class _A0, class _A1, class _A2>
3987 static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&);
3988
3989 template<class _Alloc>
3990 static shared_ptr<_Tp>
3991 allocate_shared(const _Alloc& __a);
3992
3993 template<class _Alloc, class _A0>
3994 static shared_ptr<_Tp>
3995 allocate_shared(const _Alloc& __a, _A0& __a0);
3996
3997 template<class _Alloc, class _A0, class _A1>
3998 static shared_ptr<_Tp>
3999 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
4000
4001 template<class _Alloc, class _A0, class _A1, class _A2>
4002 static shared_ptr<_Tp>
4003 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
4004
4005#endif // _LIBCPP_HAS_NO_VARIADICS
4006
4007private:
4008
4009 template <class _Yp>
Howard Hinnant82894812010-09-22 16:48:34 +00004010 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004011 void
Howard Hinnant1694d232011-05-28 14:41:13 +00004012 __enable_weak_this(const enable_shared_from_this<_Yp>* __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004013 {
4014 if (__e)
4015 __e->__weak_this_ = *this;
4016 }
4017
Howard Hinnant82894812010-09-22 16:48:34 +00004018 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004019 void __enable_weak_this(const void*) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004020
Howard Hinnant82894812010-09-22 16:48:34 +00004021 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
4022 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004023};
4024
4025template<class _Tp>
4026inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant46e94932012-07-07 20:56:04 +00004027_LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00004028shared_ptr<_Tp>::shared_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004029 : __ptr_(0),
4030 __cntrl_(0)
4031{
4032}
4033
4034template<class _Tp>
4035inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant46e94932012-07-07 20:56:04 +00004036_LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00004037shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004038 : __ptr_(0),
4039 __cntrl_(0)
4040{
4041}
4042
4043template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004044template<class _Yp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004045shared_ptr<_Tp>::shared_ptr(_Yp* __p)
4046 : __ptr_(__p)
4047{
4048 unique_ptr<_Yp> __hold(__p);
4049 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4050 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>());
4051 __hold.release();
4052 __enable_weak_this(__p);
4053}
4054
4055template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004056template<class _Yp, class _Dp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004057shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d)
4058 : __ptr_(__p)
4059{
4060#ifndef _LIBCPP_NO_EXCEPTIONS
4061 try
4062 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004063#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004064 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4065 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>());
4066 __enable_weak_this(__p);
4067#ifndef _LIBCPP_NO_EXCEPTIONS
4068 }
4069 catch (...)
4070 {
4071 __d(__p);
4072 throw;
4073 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004074#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004075}
4076
4077template<class _Tp>
4078template<class _Dp>
4079shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
4080 : __ptr_(0)
4081{
4082#ifndef _LIBCPP_NO_EXCEPTIONS
4083 try
4084 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004085#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004086 typedef __shared_ptr_pointer<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk;
4087 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>());
4088#ifndef _LIBCPP_NO_EXCEPTIONS
4089 }
4090 catch (...)
4091 {
4092 __d(__p);
4093 throw;
4094 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004095#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004096}
4097
4098template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004099template<class _Yp, class _Dp, class _Alloc, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004100shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a)
4101 : __ptr_(__p)
4102{
4103#ifndef _LIBCPP_NO_EXCEPTIONS
4104 try
4105 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004106#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004107 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
4108 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4109 typedef __allocator_destructor<_A2> _D2;
4110 _A2 __a2(__a);
4111 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4112 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4113 __cntrl_ = __hold2.release();
4114 __enable_weak_this(__p);
4115#ifndef _LIBCPP_NO_EXCEPTIONS
4116 }
4117 catch (...)
4118 {
4119 __d(__p);
4120 throw;
4121 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004122#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004123}
4124
4125template<class _Tp>
4126template<class _Dp, class _Alloc>
4127shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
4128 : __ptr_(0)
4129{
4130#ifndef _LIBCPP_NO_EXCEPTIONS
4131 try
4132 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004133#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004134 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
4135 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4136 typedef __allocator_destructor<_A2> _D2;
4137 _A2 __a2(__a);
4138 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4139 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4140 __cntrl_ = __hold2.release();
4141#ifndef _LIBCPP_NO_EXCEPTIONS
4142 }
4143 catch (...)
4144 {
4145 __d(__p);
4146 throw;
4147 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004148#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004149}
4150
4151template<class _Tp>
4152template<class _Yp>
4153inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004154shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004155 : __ptr_(__p),
4156 __cntrl_(__r.__cntrl_)
4157{
4158 if (__cntrl_)
4159 __cntrl_->__add_shared();
4160}
4161
4162template<class _Tp>
4163inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004164shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004165 : __ptr_(__r.__ptr_),
4166 __cntrl_(__r.__cntrl_)
4167{
4168 if (__cntrl_)
4169 __cntrl_->__add_shared();
4170}
4171
4172template<class _Tp>
4173template<class _Yp>
4174inline _LIBCPP_INLINE_VISIBILITY
4175shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r,
4176 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004177 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004178 : __ptr_(__r.__ptr_),
4179 __cntrl_(__r.__cntrl_)
4180{
4181 if (__cntrl_)
4182 __cntrl_->__add_shared();
4183}
4184
Howard Hinnant73d21a42010-09-04 23:28:19 +00004185#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004186
4187template<class _Tp>
4188inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004189shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004190 : __ptr_(__r.__ptr_),
4191 __cntrl_(__r.__cntrl_)
4192{
4193 __r.__ptr_ = 0;
4194 __r.__cntrl_ = 0;
4195}
4196
4197template<class _Tp>
4198template<class _Yp>
4199inline _LIBCPP_INLINE_VISIBILITY
4200shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r,
4201 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004202 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004203 : __ptr_(__r.__ptr_),
4204 __cntrl_(__r.__cntrl_)
4205{
4206 __r.__ptr_ = 0;
4207 __r.__cntrl_ = 0;
4208}
4209
Howard Hinnant73d21a42010-09-04 23:28:19 +00004210#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004211
4212template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004213template<class _Yp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004214#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004215shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r)
4216#else
Howard Hinnant92172b82010-08-21 21:14:53 +00004217shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004218#endif
4219 : __ptr_(__r.get())
4220{
4221 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4222 __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>());
4223 __enable_weak_this(__r.get());
4224 __r.release();
4225}
4226
4227template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004228template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004229#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004230shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4231#else
4232shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4233#endif
4234 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type)
4235 : __ptr_(__r.get())
4236{
4237 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4238 __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), allocator<_Yp>());
4239 __enable_weak_this(__r.get());
4240 __r.release();
4241}
4242
4243template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004244template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004245#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004246shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4247#else
4248shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4249#endif
4250 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type)
4251 : __ptr_(__r.get())
4252{
4253 typedef __shared_ptr_pointer<_Yp*,
4254 reference_wrapper<typename remove_reference<_Dp>::type>,
4255 allocator<_Yp> > _CntrlBlk;
4256 __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), allocator<_Yp>());
4257 __enable_weak_this(__r.get());
4258 __r.release();
4259}
4260
4261#ifndef _LIBCPP_HAS_NO_VARIADICS
4262
4263template<class _Tp>
4264template<class ..._Args>
4265shared_ptr<_Tp>
4266shared_ptr<_Tp>::make_shared(_Args&& ...__args)
4267{
4268 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4269 typedef allocator<_CntrlBlk> _A2;
4270 typedef __allocator_destructor<_A2> _D2;
4271 _A2 __a2;
4272 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004273 ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004274 shared_ptr<_Tp> __r;
4275 __r.__ptr_ = __hold2.get()->get();
4276 __r.__cntrl_ = __hold2.release();
4277 __r.__enable_weak_this(__r.__ptr_);
4278 return __r;
4279}
4280
4281template<class _Tp>
4282template<class _Alloc, class ..._Args>
4283shared_ptr<_Tp>
4284shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
4285{
4286 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4287 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4288 typedef __allocator_destructor<_A2> _D2;
4289 _A2 __a2(__a);
4290 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004291 ::new(__hold2.get()) _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004292 shared_ptr<_Tp> __r;
4293 __r.__ptr_ = __hold2.get()->get();
4294 __r.__cntrl_ = __hold2.release();
4295 __r.__enable_weak_this(__r.__ptr_);
4296 return __r;
4297}
4298
4299#else // _LIBCPP_HAS_NO_VARIADICS
4300
4301template<class _Tp>
4302shared_ptr<_Tp>
4303shared_ptr<_Tp>::make_shared()
4304{
4305 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4306 typedef allocator<_CntrlBlk> _Alloc2;
4307 typedef __allocator_destructor<_Alloc2> _D2;
4308 _Alloc2 __alloc2;
4309 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4310 ::new(__hold2.get()) _CntrlBlk(__alloc2);
4311 shared_ptr<_Tp> __r;
4312 __r.__ptr_ = __hold2.get()->get();
4313 __r.__cntrl_ = __hold2.release();
4314 __r.__enable_weak_this(__r.__ptr_);
4315 return __r;
4316}
4317
4318template<class _Tp>
4319template<class _A0>
4320shared_ptr<_Tp>
4321shared_ptr<_Tp>::make_shared(_A0& __a0)
4322{
4323 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4324 typedef allocator<_CntrlBlk> _Alloc2;
4325 typedef __allocator_destructor<_Alloc2> _D2;
4326 _Alloc2 __alloc2;
4327 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4328 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0);
4329 shared_ptr<_Tp> __r;
4330 __r.__ptr_ = __hold2.get()->get();
4331 __r.__cntrl_ = __hold2.release();
4332 __r.__enable_weak_this(__r.__ptr_);
4333 return __r;
4334}
4335
4336template<class _Tp>
4337template<class _A0, class _A1>
4338shared_ptr<_Tp>
4339shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4340{
4341 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4342 typedef allocator<_CntrlBlk> _Alloc2;
4343 typedef __allocator_destructor<_Alloc2> _D2;
4344 _Alloc2 __alloc2;
4345 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4346 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4347 shared_ptr<_Tp> __r;
4348 __r.__ptr_ = __hold2.get()->get();
4349 __r.__cntrl_ = __hold2.release();
4350 __r.__enable_weak_this(__r.__ptr_);
4351 return __r;
4352}
4353
4354template<class _Tp>
4355template<class _A0, class _A1, class _A2>
4356shared_ptr<_Tp>
4357shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4358{
4359 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4360 typedef allocator<_CntrlBlk> _Alloc2;
4361 typedef __allocator_destructor<_Alloc2> _D2;
4362 _Alloc2 __alloc2;
4363 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4364 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4365 shared_ptr<_Tp> __r;
4366 __r.__ptr_ = __hold2.get()->get();
4367 __r.__cntrl_ = __hold2.release();
4368 __r.__enable_weak_this(__r.__ptr_);
4369 return __r;
4370}
4371
4372template<class _Tp>
4373template<class _Alloc>
4374shared_ptr<_Tp>
4375shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
4376{
4377 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4378 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4379 typedef __allocator_destructor<_Alloc2> _D2;
4380 _Alloc2 __alloc2(__a);
4381 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4382 ::new(__hold2.get()) _CntrlBlk(__a);
4383 shared_ptr<_Tp> __r;
4384 __r.__ptr_ = __hold2.get()->get();
4385 __r.__cntrl_ = __hold2.release();
4386 __r.__enable_weak_this(__r.__ptr_);
4387 return __r;
4388}
4389
4390template<class _Tp>
4391template<class _Alloc, class _A0>
4392shared_ptr<_Tp>
4393shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
4394{
4395 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4396 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4397 typedef __allocator_destructor<_Alloc2> _D2;
4398 _Alloc2 __alloc2(__a);
4399 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4400 ::new(__hold2.get()) _CntrlBlk(__a, __a0);
4401 shared_ptr<_Tp> __r;
4402 __r.__ptr_ = __hold2.get()->get();
4403 __r.__cntrl_ = __hold2.release();
4404 __r.__enable_weak_this(__r.__ptr_);
4405 return __r;
4406}
4407
4408template<class _Tp>
4409template<class _Alloc, class _A0, class _A1>
4410shared_ptr<_Tp>
4411shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4412{
4413 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4414 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4415 typedef __allocator_destructor<_Alloc2> _D2;
4416 _Alloc2 __alloc2(__a);
4417 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4418 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1);
4419 shared_ptr<_Tp> __r;
4420 __r.__ptr_ = __hold2.get()->get();
4421 __r.__cntrl_ = __hold2.release();
4422 __r.__enable_weak_this(__r.__ptr_);
4423 return __r;
4424}
4425
4426template<class _Tp>
4427template<class _Alloc, class _A0, class _A1, class _A2>
4428shared_ptr<_Tp>
4429shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4430{
4431 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4432 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4433 typedef __allocator_destructor<_Alloc2> _D2;
4434 _Alloc2 __alloc2(__a);
4435 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4436 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1, __a2);
4437 shared_ptr<_Tp> __r;
4438 __r.__ptr_ = __hold2.get()->get();
4439 __r.__cntrl_ = __hold2.release();
4440 __r.__enable_weak_this(__r.__ptr_);
4441 return __r;
4442}
4443
4444#endif // _LIBCPP_HAS_NO_VARIADICS
4445
4446template<class _Tp>
4447shared_ptr<_Tp>::~shared_ptr()
4448{
4449 if (__cntrl_)
4450 __cntrl_->__release_shared();
4451}
4452
4453template<class _Tp>
4454inline _LIBCPP_INLINE_VISIBILITY
4455shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004456shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004457{
4458 shared_ptr(__r).swap(*this);
4459 return *this;
4460}
4461
4462template<class _Tp>
4463template<class _Yp>
4464inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004465typename enable_if
4466<
4467 is_convertible<_Yp*, _Tp*>::value,
4468 shared_ptr<_Tp>&
4469>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004470shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004471{
4472 shared_ptr(__r).swap(*this);
4473 return *this;
4474}
4475
Howard Hinnant73d21a42010-09-04 23:28:19 +00004476#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004477
4478template<class _Tp>
4479inline _LIBCPP_INLINE_VISIBILITY
4480shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004481shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004482{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004483 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004484 return *this;
4485}
4486
4487template<class _Tp>
4488template<class _Yp>
4489inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004490typename enable_if
4491<
4492 is_convertible<_Yp*, _Tp*>::value,
4493 shared_ptr<_Tp>&
4494>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004495shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r)
4496{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004497 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004498 return *this;
4499}
4500
4501template<class _Tp>
4502template<class _Yp>
4503inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004504typename enable_if
4505<
4506 !is_array<_Yp>::value &&
4507 is_convertible<_Yp*, _Tp*>::value,
4508 shared_ptr<_Tp>&
4509>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004510shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r)
4511{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004512 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004513 return *this;
4514}
4515
4516template<class _Tp>
4517template <class _Yp, class _Dp>
4518inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004519typename enable_if
4520<
4521 !is_array<_Yp>::value &&
4522 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4523 shared_ptr<_Tp>&
4524>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004525shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r)
4526{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004527 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004528 return *this;
4529}
4530
Howard Hinnant73d21a42010-09-04 23:28:19 +00004531#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004532
4533template<class _Tp>
4534template<class _Yp>
4535inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004536typename enable_if
4537<
4538 !is_array<_Yp>::value &&
4539 is_convertible<_Yp*, _Tp*>::value,
4540 shared_ptr<_Tp>&
4541>::type
Howard Hinnant324bb032010-08-22 00:02:43 +00004542shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004543{
4544 shared_ptr(__r).swap(*this);
4545 return *this;
4546}
4547
4548template<class _Tp>
4549template <class _Yp, class _Dp>
4550inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004551typename enable_if
4552<
4553 !is_array<_Yp>::value &&
4554 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4555 shared_ptr<_Tp>&
4556>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004557shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r)
4558{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004559 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004560 return *this;
4561}
4562
Howard Hinnant73d21a42010-09-04 23:28:19 +00004563#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004564
4565template<class _Tp>
4566inline _LIBCPP_INLINE_VISIBILITY
4567void
Howard Hinnant1694d232011-05-28 14:41:13 +00004568shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004569{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004570 _VSTD::swap(__ptr_, __r.__ptr_);
4571 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004572}
4573
4574template<class _Tp>
4575inline _LIBCPP_INLINE_VISIBILITY
4576void
Howard Hinnant1694d232011-05-28 14:41:13 +00004577shared_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004578{
4579 shared_ptr().swap(*this);
4580}
4581
4582template<class _Tp>
4583template<class _Yp>
4584inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004585typename enable_if
4586<
4587 is_convertible<_Yp*, _Tp*>::value,
4588 void
4589>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004590shared_ptr<_Tp>::reset(_Yp* __p)
4591{
4592 shared_ptr(__p).swap(*this);
4593}
4594
4595template<class _Tp>
4596template<class _Yp, class _Dp>
4597inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004598typename enable_if
4599<
4600 is_convertible<_Yp*, _Tp*>::value,
4601 void
4602>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004603shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d)
4604{
4605 shared_ptr(__p, __d).swap(*this);
4606}
4607
4608template<class _Tp>
4609template<class _Yp, class _Dp, class _Alloc>
4610inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004611typename enable_if
4612<
4613 is_convertible<_Yp*, _Tp*>::value,
4614 void
4615>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004616shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a)
4617{
4618 shared_ptr(__p, __d, __a).swap(*this);
4619}
4620
4621#ifndef _LIBCPP_HAS_NO_VARIADICS
4622
Howard Hinnant324bb032010-08-22 00:02:43 +00004623template<class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004624inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004625typename enable_if
4626<
4627 !is_array<_Tp>::value,
4628 shared_ptr<_Tp>
4629>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004630make_shared(_Args&& ...__args)
4631{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004632 return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004633}
4634
Howard Hinnant324bb032010-08-22 00:02:43 +00004635template<class _Tp, class _Alloc, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004636inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004637typename enable_if
4638<
4639 !is_array<_Tp>::value,
4640 shared_ptr<_Tp>
4641>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004642allocate_shared(const _Alloc& __a, _Args&& ...__args)
4643{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004644 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004645}
4646
4647#else // _LIBCPP_HAS_NO_VARIADICS
4648
4649template<class _Tp>
4650inline _LIBCPP_INLINE_VISIBILITY
4651shared_ptr<_Tp>
4652make_shared()
4653{
4654 return shared_ptr<_Tp>::make_shared();
4655}
4656
4657template<class _Tp, class _A0>
4658inline _LIBCPP_INLINE_VISIBILITY
4659shared_ptr<_Tp>
4660make_shared(_A0& __a0)
4661{
4662 return shared_ptr<_Tp>::make_shared(__a0);
4663}
4664
4665template<class _Tp, class _A0, class _A1>
4666inline _LIBCPP_INLINE_VISIBILITY
4667shared_ptr<_Tp>
4668make_shared(_A0& __a0, _A1& __a1)
4669{
4670 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4671}
4672
Howard Hinnant324bb032010-08-22 00:02:43 +00004673template<class _Tp, class _A0, class _A1, class _A2>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004674inline _LIBCPP_INLINE_VISIBILITY
4675shared_ptr<_Tp>
4676make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4677{
4678 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4679}
4680
4681template<class _Tp, class _Alloc>
4682inline _LIBCPP_INLINE_VISIBILITY
4683shared_ptr<_Tp>
4684allocate_shared(const _Alloc& __a)
4685{
4686 return shared_ptr<_Tp>::allocate_shared(__a);
4687}
4688
4689template<class _Tp, class _Alloc, class _A0>
4690inline _LIBCPP_INLINE_VISIBILITY
4691shared_ptr<_Tp>
4692allocate_shared(const _Alloc& __a, _A0& __a0)
4693{
4694 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
4695}
4696
4697template<class _Tp, class _Alloc, class _A0, class _A1>
4698inline _LIBCPP_INLINE_VISIBILITY
4699shared_ptr<_Tp>
4700allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4701{
4702 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4703}
4704
4705template<class _Tp, class _Alloc, class _A0, class _A1, class _A2>
4706inline _LIBCPP_INLINE_VISIBILITY
4707shared_ptr<_Tp>
4708allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4709{
4710 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
4711}
4712
4713#endif // _LIBCPP_HAS_NO_VARIADICS
4714
4715template<class _Tp, class _Up>
4716inline _LIBCPP_INLINE_VISIBILITY
4717bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004718operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004719{
4720 return __x.get() == __y.get();
4721}
4722
4723template<class _Tp, class _Up>
4724inline _LIBCPP_INLINE_VISIBILITY
4725bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004726operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004727{
4728 return !(__x == __y);
4729}
4730
4731template<class _Tp, class _Up>
4732inline _LIBCPP_INLINE_VISIBILITY
4733bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004734operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004735{
Howard Hinnant3fadda32012-02-21 21:02:58 +00004736 typedef typename common_type<_Tp*, _Up*>::type _V;
4737 return less<_V>()(__x.get(), __y.get());
4738}
4739
4740template<class _Tp, class _Up>
4741inline _LIBCPP_INLINE_VISIBILITY
4742bool
4743operator>(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4744{
4745 return __y < __x;
4746}
4747
4748template<class _Tp, class _Up>
4749inline _LIBCPP_INLINE_VISIBILITY
4750bool
4751operator<=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4752{
4753 return !(__y < __x);
4754}
4755
4756template<class _Tp, class _Up>
4757inline _LIBCPP_INLINE_VISIBILITY
4758bool
4759operator>=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4760{
4761 return !(__x < __y);
4762}
4763
4764template<class _Tp>
4765inline _LIBCPP_INLINE_VISIBILITY
4766bool
4767operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4768{
4769 return !__x;
4770}
4771
4772template<class _Tp>
4773inline _LIBCPP_INLINE_VISIBILITY
4774bool
4775operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4776{
4777 return !__x;
4778}
4779
4780template<class _Tp>
4781inline _LIBCPP_INLINE_VISIBILITY
4782bool
4783operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4784{
4785 return static_cast<bool>(__x);
4786}
4787
4788template<class _Tp>
4789inline _LIBCPP_INLINE_VISIBILITY
4790bool
4791operator!=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4792{
4793 return static_cast<bool>(__x);
4794}
4795
4796template<class _Tp>
4797inline _LIBCPP_INLINE_VISIBILITY
4798bool
4799operator<(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4800{
4801 return less<_Tp*>()(__x.get(), nullptr);
4802}
4803
4804template<class _Tp>
4805inline _LIBCPP_INLINE_VISIBILITY
4806bool
4807operator<(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4808{
4809 return less<_Tp*>()(nullptr, __x.get());
4810}
4811
4812template<class _Tp>
4813inline _LIBCPP_INLINE_VISIBILITY
4814bool
4815operator>(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4816{
4817 return nullptr < __x;
4818}
4819
4820template<class _Tp>
4821inline _LIBCPP_INLINE_VISIBILITY
4822bool
4823operator>(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4824{
4825 return __x < nullptr;
4826}
4827
4828template<class _Tp>
4829inline _LIBCPP_INLINE_VISIBILITY
4830bool
4831operator<=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4832{
4833 return !(nullptr < __x);
4834}
4835
4836template<class _Tp>
4837inline _LIBCPP_INLINE_VISIBILITY
4838bool
4839operator<=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4840{
4841 return !(__x < nullptr);
4842}
4843
4844template<class _Tp>
4845inline _LIBCPP_INLINE_VISIBILITY
4846bool
4847operator>=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4848{
4849 return !(__x < nullptr);
4850}
4851
4852template<class _Tp>
4853inline _LIBCPP_INLINE_VISIBILITY
4854bool
4855operator>=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4856{
4857 return !(nullptr < __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004858}
4859
4860template<class _Tp>
4861inline _LIBCPP_INLINE_VISIBILITY
4862void
Howard Hinnant1694d232011-05-28 14:41:13 +00004863swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004864{
4865 __x.swap(__y);
4866}
4867
4868template<class _Tp, class _Up>
4869inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004870typename enable_if
4871<
4872 !is_array<_Tp>::value && !is_array<_Up>::value,
4873 shared_ptr<_Tp>
4874>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004875static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004876{
4877 return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get()));
4878}
4879
4880template<class _Tp, class _Up>
4881inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004882typename enable_if
4883<
4884 !is_array<_Tp>::value && !is_array<_Up>::value,
4885 shared_ptr<_Tp>
4886>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004887dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004888{
4889 _Tp* __p = dynamic_cast<_Tp*>(__r.get());
4890 return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>();
4891}
4892
4893template<class _Tp, class _Up>
Howard Hinnant57199402012-01-02 17:56:02 +00004894typename enable_if
4895<
4896 is_array<_Tp>::value == is_array<_Up>::value,
4897 shared_ptr<_Tp>
4898>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004899const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004900{
Howard Hinnant57199402012-01-02 17:56:02 +00004901 typedef typename remove_extent<_Tp>::type _RTp;
4902 return shared_ptr<_Tp>(__r, const_cast<_RTp*>(__r.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004903}
4904
Howard Hinnantd4444702010-08-11 17:04:31 +00004905#ifndef _LIBCPP_NO_RTTI
4906
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004907template<class _Dp, class _Tp>
4908inline _LIBCPP_INLINE_VISIBILITY
4909_Dp*
Howard Hinnant1694d232011-05-28 14:41:13 +00004910get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004911{
4912 return __p.template __get_deleter<_Dp>();
4913}
4914
Howard Hinnant324bb032010-08-22 00:02:43 +00004915#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00004916
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004917template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004918class _LIBCPP_VISIBLE weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004919{
Howard Hinnant324bb032010-08-22 00:02:43 +00004920public:
4921 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004922private:
4923 element_type* __ptr_;
4924 __shared_weak_count* __cntrl_;
4925
Howard Hinnant324bb032010-08-22 00:02:43 +00004926public:
Howard Hinnant46e94932012-07-07 20:56:04 +00004927 _LIBCPP_CONSTEXPR weak_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004928 template<class _Yp> weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004929 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4930 _NOEXCEPT;
4931 weak_ptr(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004932 template<class _Yp> weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004933 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4934 _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004935
Howard Hinnant57199402012-01-02 17:56:02 +00004936#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4937 weak_ptr(weak_ptr&& __r) _NOEXCEPT;
4938 template<class _Yp> weak_ptr(weak_ptr<_Yp>&& __r,
4939 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4940 _NOEXCEPT;
4941#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00004942 ~weak_ptr();
4943
Howard Hinnant1694d232011-05-28 14:41:13 +00004944 weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00004945 template<class _Yp>
4946 typename enable_if
4947 <
4948 is_convertible<_Yp*, element_type*>::value,
4949 weak_ptr&
4950 >::type
4951 operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT;
4952
4953#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4954
4955 weak_ptr& operator=(weak_ptr&& __r) _NOEXCEPT;
4956 template<class _Yp>
4957 typename enable_if
4958 <
4959 is_convertible<_Yp*, element_type*>::value,
4960 weak_ptr&
4961 >::type
4962 operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT;
4963
4964#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
4965
4966 template<class _Yp>
4967 typename enable_if
4968 <
4969 is_convertible<_Yp*, element_type*>::value,
4970 weak_ptr&
4971 >::type
4972 operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004973
Howard Hinnant1694d232011-05-28 14:41:13 +00004974 void swap(weak_ptr& __r) _NOEXCEPT;
4975 void reset() _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004976
Howard Hinnant82894812010-09-22 16:48:34 +00004977 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004978 long use_count() const _NOEXCEPT
4979 {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00004980 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004981 bool expired() const _NOEXCEPT
4982 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
4983 shared_ptr<_Tp> lock() const _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00004984 template<class _Up>
4985 _LIBCPP_INLINE_VISIBILITY
4986 bool owner_before(const shared_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004987 {return __cntrl_ < __r.__cntrl_;}
Howard Hinnant82894812010-09-22 16:48:34 +00004988 template<class _Up>
4989 _LIBCPP_INLINE_VISIBILITY
4990 bool owner_before(const weak_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004991 {return __cntrl_ < __r.__cntrl_;}
4992
Howard Hinnant82894812010-09-22 16:48:34 +00004993 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
4994 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004995};
4996
4997template<class _Tp>
4998inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant46e94932012-07-07 20:56:04 +00004999_LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00005000weak_ptr<_Tp>::weak_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005001 : __ptr_(0),
5002 __cntrl_(0)
5003{
5004}
5005
5006template<class _Tp>
5007inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005008weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005009 : __ptr_(__r.__ptr_),
5010 __cntrl_(__r.__cntrl_)
5011{
5012 if (__cntrl_)
5013 __cntrl_->__add_weak();
5014}
5015
5016template<class _Tp>
5017template<class _Yp>
5018inline _LIBCPP_INLINE_VISIBILITY
5019weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005020 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005021 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005022 : __ptr_(__r.__ptr_),
5023 __cntrl_(__r.__cntrl_)
5024{
5025 if (__cntrl_)
5026 __cntrl_->__add_weak();
5027}
5028
5029template<class _Tp>
5030template<class _Yp>
5031inline _LIBCPP_INLINE_VISIBILITY
5032weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005033 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005034 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005035 : __ptr_(__r.__ptr_),
5036 __cntrl_(__r.__cntrl_)
5037{
5038 if (__cntrl_)
5039 __cntrl_->__add_weak();
5040}
5041
Howard Hinnant57199402012-01-02 17:56:02 +00005042#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5043
5044template<class _Tp>
5045inline _LIBCPP_INLINE_VISIBILITY
5046weak_ptr<_Tp>::weak_ptr(weak_ptr&& __r) _NOEXCEPT
5047 : __ptr_(__r.__ptr_),
5048 __cntrl_(__r.__cntrl_)
5049{
5050 __r.__ptr_ = 0;
5051 __r.__cntrl_ = 0;
5052}
5053
5054template<class _Tp>
5055template<class _Yp>
5056inline _LIBCPP_INLINE_VISIBILITY
5057weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp>&& __r,
5058 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
5059 _NOEXCEPT
5060 : __ptr_(__r.__ptr_),
5061 __cntrl_(__r.__cntrl_)
5062{
5063 __r.__ptr_ = 0;
5064 __r.__cntrl_ = 0;
5065}
5066
5067#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5068
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005069template<class _Tp>
5070weak_ptr<_Tp>::~weak_ptr()
5071{
5072 if (__cntrl_)
5073 __cntrl_->__release_weak();
5074}
5075
5076template<class _Tp>
5077inline _LIBCPP_INLINE_VISIBILITY
5078weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00005079weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005080{
5081 weak_ptr(__r).swap(*this);
5082 return *this;
5083}
5084
5085template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005086template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005087inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005088typename enable_if
5089<
5090 is_convertible<_Yp*, _Tp*>::value,
5091 weak_ptr<_Tp>&
5092>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005093weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005094{
5095 weak_ptr(__r).swap(*this);
5096 return *this;
5097}
5098
Howard Hinnant57199402012-01-02 17:56:02 +00005099#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5100
5101template<class _Tp>
5102inline _LIBCPP_INLINE_VISIBILITY
5103weak_ptr<_Tp>&
5104weak_ptr<_Tp>::operator=(weak_ptr&& __r) _NOEXCEPT
5105{
5106 weak_ptr(_VSTD::move(__r)).swap(*this);
5107 return *this;
5108}
5109
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005110template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005111template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005112inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005113typename enable_if
5114<
5115 is_convertible<_Yp*, _Tp*>::value,
5116 weak_ptr<_Tp>&
5117>::type
5118weak_ptr<_Tp>::operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT
5119{
5120 weak_ptr(_VSTD::move(__r)).swap(*this);
5121 return *this;
5122}
5123
5124#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5125
5126template<class _Tp>
5127template<class _Yp>
5128inline _LIBCPP_INLINE_VISIBILITY
5129typename enable_if
5130<
5131 is_convertible<_Yp*, _Tp*>::value,
5132 weak_ptr<_Tp>&
5133>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005134weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005135{
5136 weak_ptr(__r).swap(*this);
5137 return *this;
5138}
5139
5140template<class _Tp>
5141inline _LIBCPP_INLINE_VISIBILITY
5142void
Howard Hinnant1694d232011-05-28 14:41:13 +00005143weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005144{
Howard Hinnant0949eed2011-06-30 21:18:19 +00005145 _VSTD::swap(__ptr_, __r.__ptr_);
5146 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005147}
5148
5149template<class _Tp>
5150inline _LIBCPP_INLINE_VISIBILITY
5151void
Howard Hinnant1694d232011-05-28 14:41:13 +00005152swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005153{
5154 __x.swap(__y);
5155}
5156
5157template<class _Tp>
5158inline _LIBCPP_INLINE_VISIBILITY
5159void
Howard Hinnant1694d232011-05-28 14:41:13 +00005160weak_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005161{
5162 weak_ptr().swap(*this);
5163}
5164
5165template<class _Tp>
5166template<class _Yp>
5167shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r,
5168 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
5169 : __ptr_(__r.__ptr_),
5170 __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_)
5171{
5172 if (__cntrl_ == 0)
5173#ifndef _LIBCPP_NO_EXCEPTIONS
5174 throw bad_weak_ptr();
5175#else
5176 assert(!"bad_weak_ptr");
5177#endif
5178}
5179
5180template<class _Tp>
5181shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00005182weak_ptr<_Tp>::lock() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005183{
5184 shared_ptr<_Tp> __r;
5185 __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_;
5186 if (__r.__cntrl_)
5187 __r.__ptr_ = __ptr_;
5188 return __r;
5189}
5190
Howard Hinnant324bb032010-08-22 00:02:43 +00005191template <class _Tp> struct owner_less;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005192
5193template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005194struct _LIBCPP_VISIBLE owner_less<shared_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005195 : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool>
Howard Hinnant324bb032010-08-22 00:02:43 +00005196{
5197 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005198 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005199 bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5200 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005201 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005202 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5203 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005204 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005205 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5206 {return __x.owner_before(__y);}
Howard Hinnant324bb032010-08-22 00:02:43 +00005207};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005208
5209template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005210struct _LIBCPP_VISIBLE owner_less<weak_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005211 : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool>
5212{
Howard Hinnant324bb032010-08-22 00:02:43 +00005213 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005214 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005215 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5216 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005217 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005218 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5219 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005220 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005221 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5222 {return __x.owner_before(__y);}
5223};
5224
5225template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005226class _LIBCPP_VISIBLE enable_shared_from_this
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005227{
5228 mutable weak_ptr<_Tp> __weak_this_;
Howard Hinnant324bb032010-08-22 00:02:43 +00005229protected:
Howard Hinnant46e94932012-07-07 20:56:04 +00005230 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00005231 enable_shared_from_this() _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005232 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005233 enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005234 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005235 enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT
5236 {return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +00005237 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005238 ~enable_shared_from_this() {}
Howard Hinnant324bb032010-08-22 00:02:43 +00005239public:
Howard Hinnant82894812010-09-22 16:48:34 +00005240 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005241 shared_ptr<_Tp> shared_from_this()
5242 {return shared_ptr<_Tp>(__weak_this_);}
Howard Hinnant82894812010-09-22 16:48:34 +00005243 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005244 shared_ptr<_Tp const> shared_from_this() const
5245 {return shared_ptr<const _Tp>(__weak_this_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005246
5247 template <class _Up> friend class shared_ptr;
5248};
5249
Howard Hinnant21aefc32010-06-03 16:42:57 +00005250template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005251struct _LIBCPP_VISIBLE hash<shared_ptr<_Tp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00005252{
5253 typedef shared_ptr<_Tp> argument_type;
5254 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005255 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005256 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00005257 {
5258 return hash<_Tp*>()(__ptr.get());
5259 }
5260};
5261
Howard Hinnant99968442011-11-29 18:15:50 +00005262template<class _CharT, class _Traits, class _Yp>
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005263inline _LIBCPP_INLINE_VISIBILITY
5264basic_ostream<_CharT, _Traits>&
Howard Hinnant99968442011-11-29 18:15:50 +00005265operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p);
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005266
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005267#if __has_feature(cxx_atomic)
5268
5269class __sp_mut
5270{
Howard Hinnant9c0df142012-10-30 19:06:59 +00005271 void* __lx;
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005272public:
5273 void lock() _NOEXCEPT;
5274 void unlock() _NOEXCEPT;
5275
5276private:
5277 _LIBCPP_CONSTEXPR __sp_mut(void*) _NOEXCEPT;
5278 __sp_mut(const __sp_mut&);
5279 __sp_mut& operator=(const __sp_mut&);
5280
Howard Hinnant33be35e2012-09-14 00:39:16 +00005281 friend _LIBCPP_VISIBLE __sp_mut& __get_sp_mut(const void*);
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005282};
5283
Howard Hinnant33be35e2012-09-14 00:39:16 +00005284_LIBCPP_VISIBLE __sp_mut& __get_sp_mut(const void*);
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005285
5286template <class _Tp>
5287inline _LIBCPP_INLINE_VISIBILITY
5288bool
5289atomic_is_lock_free(const shared_ptr<_Tp>*)
5290{
5291 return false;
5292}
5293
5294template <class _Tp>
5295shared_ptr<_Tp>
5296atomic_load(const shared_ptr<_Tp>* __p)
5297{
5298 __sp_mut& __m = __get_sp_mut(__p);
5299 __m.lock();
5300 shared_ptr<_Tp> __q = *__p;
5301 __m.unlock();
5302 return __q;
5303}
5304
5305template <class _Tp>
5306inline _LIBCPP_INLINE_VISIBILITY
5307shared_ptr<_Tp>
5308atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order)
5309{
5310 return atomic_load(__p);
5311}
5312
5313template <class _Tp>
5314void
5315atomic_store(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r)
5316{
5317 __sp_mut& __m = __get_sp_mut(__p);
5318 __m.lock();
5319 __p->swap(__r);
5320 __m.unlock();
5321}
5322
5323template <class _Tp>
5324inline _LIBCPP_INLINE_VISIBILITY
5325void
5326atomic_store_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
5327{
5328 atomic_store(__p, __r);
5329}
5330
5331template <class _Tp>
5332shared_ptr<_Tp>
5333atomic_exchange(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r)
5334{
5335 __sp_mut& __m = __get_sp_mut(__p);
5336 __m.lock();
5337 __p->swap(__r);
5338 __m.unlock();
5339 return __r;
5340}
5341
5342template <class _Tp>
5343inline _LIBCPP_INLINE_VISIBILITY
5344shared_ptr<_Tp>
5345atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
5346{
5347 return atomic_exchange(__p, __r);
5348}
5349
5350template <class _Tp>
5351bool
5352atomic_compare_exchange_strong(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w)
5353{
5354 __sp_mut& __m = __get_sp_mut(__p);
5355 __m.lock();
5356 if (__p->__owner_equivalent(*__v))
5357 {
5358 *__p = __w;
5359 __m.unlock();
5360 return true;
5361 }
5362 *__v = *__p;
5363 __m.unlock();
5364 return false;
5365}
5366
5367template <class _Tp>
5368inline _LIBCPP_INLINE_VISIBILITY
5369bool
5370atomic_compare_exchange_weak(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w)
5371{
5372 return atomic_compare_exchange_strong(__p, __v, __w);
5373}
5374
5375template <class _Tp>
5376inline _LIBCPP_INLINE_VISIBILITY
5377bool
5378atomic_compare_exchange_strong_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
5379 shared_ptr<_Tp> __w, memory_order, memory_order)
5380{
5381 return atomic_compare_exchange_strong(__p, __v, __w);
5382}
5383
5384template <class _Tp>
5385inline _LIBCPP_INLINE_VISIBILITY
5386bool
5387atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
5388 shared_ptr<_Tp> __w, memory_order, memory_order)
5389{
5390 return atomic_compare_exchange_weak(__p, __v, __w);
5391}
5392
5393#endif // __has_feature(cxx_atomic)
5394
Howard Hinnant324bb032010-08-22 00:02:43 +00005395//enum class
Howard Hinnant82894812010-09-22 16:48:34 +00005396struct _LIBCPP_VISIBLE pointer_safety
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005397{
Howard Hinnant9c0df142012-10-30 19:06:59 +00005398 enum __lx
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005399 {
5400 relaxed,
5401 preferred,
5402 strict
5403 };
5404
Howard Hinnant9c0df142012-10-30 19:06:59 +00005405 __lx __v_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005406
Howard Hinnant82894812010-09-22 16:48:34 +00005407 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9c0df142012-10-30 19:06:59 +00005408 pointer_safety(__lx __v) : __v_(__v) {}
Howard Hinnant82894812010-09-22 16:48:34 +00005409 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005410 operator int() const {return __v_;}
5411};
5412
5413void declare_reachable(void* __p);
5414void declare_no_pointers(char* __p, size_t __n);
5415void undeclare_no_pointers(char* __p, size_t __n);
Howard Hinnant1694d232011-05-28 14:41:13 +00005416pointer_safety get_pointer_safety() _NOEXCEPT;
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005417void* __undeclare_reachable(void* __p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005418
5419template <class _Tp>
5420inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005421_Tp*
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005422undeclare_reachable(_Tp* __p)
5423{
5424 return static_cast<_Tp*>(__undeclare_reachable(__p));
5425}
5426
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005427void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005428
5429_LIBCPP_END_NAMESPACE_STD
5430
5431#endif // _LIBCPP_MEMORY