blob: 4e1f704681b5b588170064f2f2e554fe8d2efeff [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)
Howard Hinnantf619e232013-01-11 20:36:59 +00001574 {
1575 construct(__a, _VSTD::__to_raw_pointer(__end2-1), _VSTD::move_if_noexcept(*--__end1));
1576 --__end2;
1577 }
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +00001578 }
1579
1580 template <class _Tp>
1581 _LIBCPP_INLINE_VISIBILITY
1582 static
1583 typename enable_if
1584 <
1585 (is_same<allocator_type, allocator<_Tp> >::value
1586 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1587 is_trivially_move_constructible<_Tp>::value,
1588 void
1589 >::type
1590 __construct_backward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __end2)
1591 {
1592 ptrdiff_t _Np = __end1 - __begin1;
1593 __end2 -= _Np;
1594 _VSTD::memcpy(__end2, __begin1, _Np * sizeof(_Tp));
1595 }
1596
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001597private:
1598
Howard Hinnant82894812010-09-22 16:48:34 +00001599 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001600 static pointer allocate(allocator_type& __a, size_type __n,
1601 const_void_pointer __hint, true_type)
1602 {return __a.allocate(__n, __hint);}
Howard Hinnant82894812010-09-22 16:48:34 +00001603 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001604 static pointer allocate(allocator_type& __a, size_type __n,
Howard Hinnantec3773c2011-12-01 20:21:04 +00001605 const_void_pointer, false_type)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001606 {return __a.allocate(__n);}
1607
1608#ifndef _LIBCPP_HAS_NO_VARIADICS
1609 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001610 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001611 static void __construct(true_type, allocator_type& __a, _Tp* __p, _Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001612 {__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001613 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001614 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001615 static void __construct(false_type, allocator_type&, _Tp* __p, _Args&&... __args)
1616 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001617 ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001618 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001619#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001620
1621 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001622 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001623 static void __destroy(true_type, allocator_type& __a, _Tp* __p)
1624 {__a.destroy(__p);}
1625 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001626 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001627 static void __destroy(false_type, allocator_type&, _Tp* __p)
1628 {
1629 __p->~_Tp();
1630 }
1631
Howard Hinnant82894812010-09-22 16:48:34 +00001632 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001633 static size_type __max_size(true_type, const allocator_type& __a)
1634 {return __a.max_size();}
Howard Hinnant82894812010-09-22 16:48:34 +00001635 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001636 static size_type __max_size(false_type, const allocator_type&)
1637 {return numeric_limits<size_type>::max();}
1638
Howard Hinnant82894812010-09-22 16:48:34 +00001639 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001640 static allocator_type
1641 select_on_container_copy_construction(true_type, const allocator_type& __a)
1642 {return __a.select_on_container_copy_construction();}
Howard Hinnant82894812010-09-22 16:48:34 +00001643 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001644 static allocator_type
1645 select_on_container_copy_construction(false_type, const allocator_type& __a)
1646 {return __a;}
1647};
1648
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001649// allocator
1650
1651template <class _Tp>
Howard Hinnant36cdf022010-09-10 16:42:26 +00001652class _LIBCPP_VISIBLE allocator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001653{
1654public:
1655 typedef size_t size_type;
1656 typedef ptrdiff_t difference_type;
1657 typedef _Tp* pointer;
1658 typedef const _Tp* const_pointer;
1659 typedef _Tp& reference;
1660 typedef const _Tp& const_reference;
1661 typedef _Tp value_type;
1662
Howard Hinnant18884f42011-06-02 21:38:57 +00001663 typedef true_type propagate_on_container_move_assignment;
1664
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001665 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1666
Howard Hinnant1694d232011-05-28 14:41:13 +00001667 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1668 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1669 _LIBCPP_INLINE_VISIBILITY pointer address(reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001670 {return _VSTD::addressof(__x);}
Howard Hinnant1694d232011-05-28 14:41:13 +00001671 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001672 {return _VSTD::addressof(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001673 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1674 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
Howard Hinnant1694d232011-05-28 14:41:13 +00001675 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1676 {::operator delete((void*)__p);}
1677 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1678 {return size_type(~0) / sizeof(_Tp);}
Howard Hinnant73d21a42010-09-04 23:28:19 +00001679#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001680 template <class _Up, class... _Args>
1681 _LIBCPP_INLINE_VISIBILITY
1682 void
1683 construct(_Up* __p, _Args&&... __args)
1684 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001685 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001686 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001687#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001688 _LIBCPP_INLINE_VISIBILITY
1689 void
1690 construct(pointer __p)
1691 {
1692 ::new((void*)__p) _Tp();
1693 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001694# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant87073e42012-05-01 15:37:54 +00001695
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001696 template <class _A0>
1697 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001698 void
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001699 construct(pointer __p, _A0& __a0)
1700 {
1701 ::new((void*)__p) _Tp(__a0);
1702 }
1703 template <class _A0>
1704 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001705 void
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001706 construct(pointer __p, const _A0& __a0)
1707 {
1708 ::new((void*)__p) _Tp(__a0);
1709 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001710# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001711 template <class _A0, class _A1>
1712 _LIBCPP_INLINE_VISIBILITY
1713 void
1714 construct(pointer __p, _A0& __a0, _A1& __a1)
1715 {
1716 ::new((void*)__p) _Tp(__a0, __a1);
1717 }
1718 template <class _A0, class _A1>
1719 _LIBCPP_INLINE_VISIBILITY
1720 void
1721 construct(pointer __p, const _A0& __a0, _A1& __a1)
1722 {
1723 ::new((void*)__p) _Tp(__a0, __a1);
1724 }
1725 template <class _A0, class _A1>
1726 _LIBCPP_INLINE_VISIBILITY
1727 void
1728 construct(pointer __p, _A0& __a0, const _A1& __a1)
1729 {
1730 ::new((void*)__p) _Tp(__a0, __a1);
1731 }
1732 template <class _A0, class _A1>
1733 _LIBCPP_INLINE_VISIBILITY
1734 void
1735 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1736 {
1737 ::new((void*)__p) _Tp(__a0, __a1);
1738 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001739#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001740 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1741};
1742
Howard Hinnant57199402012-01-02 17:56:02 +00001743template <class _Tp>
1744class _LIBCPP_VISIBLE allocator<const _Tp>
1745{
1746public:
1747 typedef size_t size_type;
1748 typedef ptrdiff_t difference_type;
1749 typedef const _Tp* pointer;
1750 typedef const _Tp* const_pointer;
1751 typedef const _Tp& reference;
1752 typedef const _Tp& const_reference;
1753 typedef _Tp value_type;
1754
1755 typedef true_type propagate_on_container_move_assignment;
1756
1757 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1758
1759 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1760 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1761 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
1762 {return _VSTD::addressof(__x);}
1763 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1764 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
1765 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1766 {::operator delete((void*)__p);}
1767 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1768 {return size_type(~0) / sizeof(_Tp);}
1769#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1770 template <class _Up, class... _Args>
1771 _LIBCPP_INLINE_VISIBILITY
1772 void
1773 construct(_Up* __p, _Args&&... __args)
1774 {
1775 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
1776 }
1777#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1778 _LIBCPP_INLINE_VISIBILITY
1779 void
1780 construct(pointer __p)
1781 {
1782 ::new((void*)__p) _Tp();
1783 }
1784# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant87073e42012-05-01 15:37:54 +00001785
Howard Hinnant57199402012-01-02 17:56:02 +00001786 template <class _A0>
1787 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001788 void
Howard Hinnant57199402012-01-02 17:56:02 +00001789 construct(pointer __p, _A0& __a0)
1790 {
1791 ::new((void*)__p) _Tp(__a0);
1792 }
1793 template <class _A0>
1794 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001795 void
Howard Hinnant57199402012-01-02 17:56:02 +00001796 construct(pointer __p, const _A0& __a0)
1797 {
1798 ::new((void*)__p) _Tp(__a0);
1799 }
Howard Hinnant57199402012-01-02 17:56:02 +00001800# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1801 template <class _A0, class _A1>
1802 _LIBCPP_INLINE_VISIBILITY
1803 void
1804 construct(pointer __p, _A0& __a0, _A1& __a1)
1805 {
1806 ::new((void*)__p) _Tp(__a0, __a1);
1807 }
1808 template <class _A0, class _A1>
1809 _LIBCPP_INLINE_VISIBILITY
1810 void
1811 construct(pointer __p, const _A0& __a0, _A1& __a1)
1812 {
1813 ::new((void*)__p) _Tp(__a0, __a1);
1814 }
1815 template <class _A0, class _A1>
1816 _LIBCPP_INLINE_VISIBILITY
1817 void
1818 construct(pointer __p, _A0& __a0, const _A1& __a1)
1819 {
1820 ::new((void*)__p) _Tp(__a0, __a1);
1821 }
1822 template <class _A0, class _A1>
1823 _LIBCPP_INLINE_VISIBILITY
1824 void
1825 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1826 {
1827 ::new((void*)__p) _Tp(__a0, __a1);
1828 }
1829#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1830 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1831};
1832
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001833template <class _Tp, class _Up>
1834inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001835bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001836
1837template <class _Tp, class _Up>
1838inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001839bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001840
1841template <class _OutputIterator, class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001842class _LIBCPP_VISIBLE raw_storage_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001843 : public iterator<output_iterator_tag,
1844 _Tp, // purposefully not C++03
1845 ptrdiff_t, // purposefully not C++03
1846 _Tp*, // purposefully not C++03
1847 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1848{
1849private:
1850 _OutputIterator __x_;
1851public:
1852 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
1853 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
1854 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
1855 {::new(&*__x_) _Tp(__element); return *this;}
1856 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
1857 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
1858 {raw_storage_iterator __t(*this); ++__x_; return __t;}
1859};
1860
1861template <class _Tp>
1862pair<_Tp*, ptrdiff_t>
Howard Hinnant1694d232011-05-28 14:41:13 +00001863get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001864{
1865 pair<_Tp*, ptrdiff_t> __r(0, 0);
1866 const ptrdiff_t __m = (~ptrdiff_t(0) ^
1867 ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1)))
1868 / sizeof(_Tp);
1869 if (__n > __m)
1870 __n = __m;
1871 while (__n > 0)
1872 {
1873 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
1874 if (__r.first)
1875 {
1876 __r.second = __n;
1877 break;
1878 }
1879 __n /= 2;
1880 }
1881 return __r;
1882}
1883
1884template <class _Tp>
1885inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001886void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001887
1888template <class _Tp>
1889struct auto_ptr_ref
1890{
1891 _Tp* __ptr_;
1892};
1893
1894template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001895class _LIBCPP_VISIBLE auto_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001896{
1897private:
1898 _Tp* __ptr_;
1899public:
1900 typedef _Tp element_type;
1901
1902 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}
1903 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}
1904 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw()
1905 : __ptr_(__p.release()) {}
1906 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw()
1907 {reset(__p.release()); return *this;}
1908 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw()
1909 {reset(__p.release()); return *this;}
1910 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()
1911 {reset(__p.__ptr_); return *this;}
1912 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}
1913
1914 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw()
1915 {return *__ptr_;}
1916 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}
1917 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}
1918 _LIBCPP_INLINE_VISIBILITY _Tp* release() throw()
1919 {
1920 _Tp* __t = __ptr_;
1921 __ptr_ = 0;
1922 return __t;
1923 }
1924 _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw()
1925 {
1926 if (__ptr_ != __p)
1927 delete __ptr_;
1928 __ptr_ = __p;
1929 }
1930
1931 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}
1932 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()
1933 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
1934 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw()
1935 {return auto_ptr<_Up>(release());}
1936};
1937
1938template <>
Howard Hinnant82894812010-09-22 16:48:34 +00001939class _LIBCPP_VISIBLE auto_ptr<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001940{
1941public:
1942 typedef void element_type;
1943};
1944
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001945template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type,
1946 typename remove_cv<_T2>::type>::value,
Howard Hinnantd4cf2152011-12-11 20:31:33 +00001947 bool = is_empty<_T1>::value
1948#if __has_feature(is_final)
1949 && !__is_final(_T1)
1950#endif
1951 ,
1952 bool = is_empty<_T2>::value
1953#if __has_feature(is_final)
1954 && !__is_final(_T2)
1955#endif
1956 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001957struct __libcpp_compressed_pair_switch;
1958
1959template <class _T1, class _T2, bool IsSame>
1960struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};};
1961
1962template <class _T1, class _T2, bool IsSame>
1963struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};};
1964
1965template <class _T1, class _T2, bool IsSame>
1966struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};};
1967
1968template <class _T1, class _T2>
1969struct __libcpp_compressed_pair_switch<_T1, _T2, false, true, true> {enum {value = 3};};
1970
1971template <class _T1, class _T2>
1972struct __libcpp_compressed_pair_switch<_T1, _T2, true, true, true> {enum {value = 1};};
1973
1974template <class _T1, class _T2, unsigned = __libcpp_compressed_pair_switch<_T1, _T2>::value>
1975class __libcpp_compressed_pair_imp;
1976
1977template <class _T1, class _T2>
1978class __libcpp_compressed_pair_imp<_T1, _T2, 0>
1979{
1980private:
1981 _T1 __first_;
1982 _T2 __second_;
1983public:
1984 typedef _T1 _T1_param;
1985 typedef _T2 _T2_param;
1986
1987 typedef typename remove_reference<_T1>::type& _T1_reference;
1988 typedef typename remove_reference<_T2>::type& _T2_reference;
1989
1990 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
1991 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
1992
1993 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00001994 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001995 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00001996 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001997 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001998 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001999 : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002000
Howard Hinnant61aa6012011-07-01 19:24:36 +00002001#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2002
2003 _LIBCPP_INLINE_VISIBILITY
2004 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2005 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2006 is_nothrow_copy_constructible<_T2>::value)
2007 : __first_(__p.first()),
2008 __second_(__p.second()) {}
2009
2010 _LIBCPP_INLINE_VISIBILITY
2011 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2012 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2013 is_nothrow_copy_assignable<_T2>::value)
2014 {
2015 __first_ = __p.first();
2016 __second_ = __p.second();
2017 return *this;
2018 }
2019
Howard Hinnant73d21a42010-09-04 23:28:19 +00002020#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002021
2022 _LIBCPP_INLINE_VISIBILITY
2023 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002024 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2025 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002026 : __first_(_VSTD::forward<_T1>(__p.first())),
2027 __second_(_VSTD::forward<_T2>(__p.second())) {}
2028
2029 _LIBCPP_INLINE_VISIBILITY
2030 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2031 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2032 is_nothrow_move_assignable<_T2>::value)
2033 {
2034 __first_ = _VSTD::forward<_T1>(__p.first());
2035 __second_ = _VSTD::forward<_T2>(__p.second());
2036 return *this;
2037 }
2038
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002039#ifndef _LIBCPP_HAS_NO_VARIADICS
2040
2041 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2042 _LIBCPP_INLINE_VISIBILITY
2043 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2044 tuple<_Args1...> __first_args,
2045 tuple<_Args2...> __second_args,
2046 __tuple_indices<_I1...>,
2047 __tuple_indices<_I2...>)
2048 : __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2049 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2050 {}
2051
2052#endif // _LIBCPP_HAS_NO_VARIADICS
2053
Howard Hinnant73d21a42010-09-04 23:28:19 +00002054#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002055
Howard Hinnant61aa6012011-07-01 19:24:36 +00002056#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2057
Howard Hinnant1694d232011-05-28 14:41:13 +00002058 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2059 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002060
Howard Hinnant1694d232011-05-28 14:41:13 +00002061 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2062 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002063
2064 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002065 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2066 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002067 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002068 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002069 swap(__first_, __x.__first_);
2070 swap(__second_, __x.__second_);
2071 }
2072};
2073
2074template <class _T1, class _T2>
2075class __libcpp_compressed_pair_imp<_T1, _T2, 1>
2076 : private _T1
2077{
2078private:
2079 _T2 __second_;
2080public:
2081 typedef _T1 _T1_param;
2082 typedef _T2 _T2_param;
2083
2084 typedef _T1& _T1_reference;
2085 typedef typename remove_reference<_T2>::type& _T2_reference;
2086
2087 typedef const _T1& _T1_const_reference;
2088 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
2089
2090 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002091 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002092 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002093 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002094 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002095 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002096 : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002097
Howard Hinnant61aa6012011-07-01 19:24:36 +00002098#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2099
2100 _LIBCPP_INLINE_VISIBILITY
2101 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2102 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2103 is_nothrow_copy_constructible<_T2>::value)
2104 : _T1(__p.first()), __second_(__p.second()) {}
2105
2106 _LIBCPP_INLINE_VISIBILITY
2107 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2108 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2109 is_nothrow_copy_assignable<_T2>::value)
2110 {
2111 _T1::operator=(__p.first());
2112 __second_ = __p.second();
2113 return *this;
2114 }
2115
Howard Hinnant73d21a42010-09-04 23:28:19 +00002116#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002117
2118 _LIBCPP_INLINE_VISIBILITY
2119 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002120 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2121 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002122 : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002123
2124 _LIBCPP_INLINE_VISIBILITY
2125 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2126 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2127 is_nothrow_move_assignable<_T2>::value)
2128 {
2129 _T1::operator=(_VSTD::move(__p.first()));
2130 __second_ = _VSTD::forward<_T2>(__p.second());
2131 return *this;
2132 }
2133
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002134#ifndef _LIBCPP_HAS_NO_VARIADICS
2135
2136 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2137 _LIBCPP_INLINE_VISIBILITY
2138 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2139 tuple<_Args1...> __first_args,
2140 tuple<_Args2...> __second_args,
2141 __tuple_indices<_I1...>,
2142 __tuple_indices<_I2...>)
2143 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2144 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2145 {}
2146
2147#endif // _LIBCPP_HAS_NO_VARIADICS
2148
Howard Hinnant73d21a42010-09-04 23:28:19 +00002149#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002150
Howard Hinnant61aa6012011-07-01 19:24:36 +00002151#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2152
Howard Hinnant1694d232011-05-28 14:41:13 +00002153 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2154 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002155
Howard Hinnant1694d232011-05-28 14:41:13 +00002156 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2157 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002158
2159 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002160 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2161 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002162 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002163 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002164 swap(__second_, __x.__second_);
2165 }
2166};
2167
2168template <class _T1, class _T2>
2169class __libcpp_compressed_pair_imp<_T1, _T2, 2>
2170 : private _T2
2171{
2172private:
2173 _T1 __first_;
2174public:
2175 typedef _T1 _T1_param;
2176 typedef _T2 _T2_param;
2177
2178 typedef typename remove_reference<_T1>::type& _T1_reference;
2179 typedef _T2& _T2_reference;
2180
2181 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
2182 typedef const _T2& _T2_const_reference;
2183
2184 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2185 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002186 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002187 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002188 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002189 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant1694d232011-05-28 14:41:13 +00002190 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2191 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002192 : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002193
Howard Hinnant61aa6012011-07-01 19:24:36 +00002194#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2195
2196 _LIBCPP_INLINE_VISIBILITY
2197 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2198 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2199 is_nothrow_copy_constructible<_T2>::value)
2200 : _T2(__p.second()), __first_(__p.first()) {}
2201
2202 _LIBCPP_INLINE_VISIBILITY
2203 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2204 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2205 is_nothrow_copy_assignable<_T2>::value)
2206 {
2207 _T2::operator=(__p.second());
2208 __first_ = __p.first();
2209 return *this;
2210 }
2211
Howard Hinnant73d21a42010-09-04 23:28:19 +00002212#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002213
2214 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002215 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002216 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2217 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002218 : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002219
2220 _LIBCPP_INLINE_VISIBILITY
2221 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2222 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2223 is_nothrow_move_assignable<_T2>::value)
2224 {
2225 _T2::operator=(_VSTD::forward<_T2>(__p.second()));
2226 __first_ = _VSTD::move(__p.first());
2227 return *this;
2228 }
2229
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002230#ifndef _LIBCPP_HAS_NO_VARIADICS
2231
2232 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2233 _LIBCPP_INLINE_VISIBILITY
2234 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2235 tuple<_Args1...> __first_args,
2236 tuple<_Args2...> __second_args,
2237 __tuple_indices<_I1...>,
2238 __tuple_indices<_I2...>)
2239 : _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...),
2240 __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...)
2241
2242 {}
2243
2244#endif // _LIBCPP_HAS_NO_VARIADICS
2245
Howard Hinnant73d21a42010-09-04 23:28:19 +00002246#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002247
Howard Hinnant61aa6012011-07-01 19:24:36 +00002248#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2249
Howard Hinnant1694d232011-05-28 14:41:13 +00002250 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2251 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002252
Howard Hinnant1694d232011-05-28 14:41:13 +00002253 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2254 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002255
2256 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002257 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2258 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002259 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002260 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002261 swap(__first_, __x.__first_);
2262 }
2263};
2264
2265template <class _T1, class _T2>
2266class __libcpp_compressed_pair_imp<_T1, _T2, 3>
2267 : private _T1,
2268 private _T2
2269{
2270public:
2271 typedef _T1 _T1_param;
2272 typedef _T2 _T2_param;
2273
2274 typedef _T1& _T1_reference;
2275 typedef _T2& _T2_reference;
2276
2277 typedef const _T1& _T1_const_reference;
2278 typedef const _T2& _T2_const_reference;
2279
2280 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2281 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002282 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002283 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002284 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002285 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002286 : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002287
Howard Hinnant61aa6012011-07-01 19:24:36 +00002288#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2289
2290 _LIBCPP_INLINE_VISIBILITY
2291 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2292 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2293 is_nothrow_copy_constructible<_T2>::value)
2294 : _T1(__p.first()), _T2(__p.second()) {}
2295
2296 _LIBCPP_INLINE_VISIBILITY
2297 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2298 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2299 is_nothrow_copy_assignable<_T2>::value)
2300 {
2301 _T1::operator=(__p.first());
2302 _T2::operator=(__p.second());
2303 return *this;
2304 }
2305
Howard Hinnant73d21a42010-09-04 23:28:19 +00002306#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002307
2308 _LIBCPP_INLINE_VISIBILITY
2309 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002310 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2311 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002312 : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002313
2314 _LIBCPP_INLINE_VISIBILITY
2315 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2316 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2317 is_nothrow_move_assignable<_T2>::value)
2318 {
2319 _T1::operator=(_VSTD::move(__p.first()));
2320 _T2::operator=(_VSTD::move(__p.second()));
2321 return *this;
2322 }
2323
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002324#ifndef _LIBCPP_HAS_NO_VARIADICS
2325
2326 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2327 _LIBCPP_INLINE_VISIBILITY
2328 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2329 tuple<_Args1...> __first_args,
2330 tuple<_Args2...> __second_args,
2331 __tuple_indices<_I1...>,
2332 __tuple_indices<_I2...>)
2333 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2334 _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2335 {}
2336
2337#endif // _LIBCPP_HAS_NO_VARIADICS
2338
Howard Hinnant73d21a42010-09-04 23:28:19 +00002339#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002340
Howard Hinnant61aa6012011-07-01 19:24:36 +00002341#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2342
Howard Hinnant1694d232011-05-28 14:41:13 +00002343 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2344 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002345
Howard Hinnant1694d232011-05-28 14:41:13 +00002346 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2347 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002348
Howard Hinnantec3773c2011-12-01 20:21:04 +00002349 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp&)
Howard Hinnant1694d232011-05-28 14:41:13 +00002350 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2351 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002352 {
2353 }
2354};
2355
2356template <class _T1, class _T2>
2357class __compressed_pair
2358 : private __libcpp_compressed_pair_imp<_T1, _T2>
2359{
2360 typedef __libcpp_compressed_pair_imp<_T1, _T2> base;
2361public:
2362 typedef typename base::_T1_param _T1_param;
2363 typedef typename base::_T2_param _T2_param;
2364
2365 typedef typename base::_T1_reference _T1_reference;
2366 typedef typename base::_T2_reference _T2_reference;
2367
2368 typedef typename base::_T1_const_reference _T1_const_reference;
2369 typedef typename base::_T2_const_reference _T2_const_reference;
2370
2371 _LIBCPP_INLINE_VISIBILITY __compressed_pair() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002372 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002373 : base(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002374 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002375 : base(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002376 _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002377 : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002378
Howard Hinnant61aa6012011-07-01 19:24:36 +00002379#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2380
2381 _LIBCPP_INLINE_VISIBILITY
2382 __compressed_pair(const __compressed_pair& __p)
2383 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2384 is_nothrow_copy_constructible<_T2>::value)
2385 : base(__p) {}
2386
2387 _LIBCPP_INLINE_VISIBILITY
2388 __compressed_pair& operator=(const __compressed_pair& __p)
2389 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2390 is_nothrow_copy_assignable<_T2>::value)
2391 {
2392 base::operator=(__p);
2393 return *this;
2394 }
2395
Howard Hinnant73d21a42010-09-04 23:28:19 +00002396#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002397 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002398 __compressed_pair(__compressed_pair&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002399 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2400 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002401 : base(_VSTD::move(__p)) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002402
2403 _LIBCPP_INLINE_VISIBILITY
2404 __compressed_pair& operator=(__compressed_pair&& __p)
2405 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2406 is_nothrow_move_assignable<_T2>::value)
2407 {
2408 base::operator=(_VSTD::move(__p));
2409 return *this;
2410 }
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002411
2412#ifndef _LIBCPP_HAS_NO_VARIADICS
2413
2414 template <class... _Args1, class... _Args2>
2415 _LIBCPP_INLINE_VISIBILITY
2416 __compressed_pair(piecewise_construct_t __pc, tuple<_Args1...> __first_args,
2417 tuple<_Args2...> __second_args)
Howard Hinnant57199402012-01-02 17:56:02 +00002418 : base(__pc, _VSTD::move(__first_args), _VSTD::move(__second_args),
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002419 typename __make_tuple_indices<sizeof...(_Args1)>::type(),
2420 typename __make_tuple_indices<sizeof...(_Args2) >::type())
2421 {}
2422
2423#endif // _LIBCPP_HAS_NO_VARIADICS
2424
Howard Hinnant73d21a42010-09-04 23:28:19 +00002425#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002426
Howard Hinnant61aa6012011-07-01 19:24:36 +00002427#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2428
Howard Hinnant1694d232011-05-28 14:41:13 +00002429 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return base::first();}
2430 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002431
Howard Hinnant1694d232011-05-28 14:41:13 +00002432 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return base::second();}
2433 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return base::second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002434
Howard Hinnant1694d232011-05-28 14:41:13 +00002435 _LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x)
2436 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2437 __is_nothrow_swappable<_T1>::value)
2438 {base::swap(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002439};
2440
2441template <class _T1, class _T2>
2442inline _LIBCPP_INLINE_VISIBILITY
2443void
2444swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
Howard Hinnant1694d232011-05-28 14:41:13 +00002445 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2446 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002447 {__x.swap(__y);}
2448
Howard Hinnant57199402012-01-02 17:56:02 +00002449// __same_or_less_cv_qualified
2450
2451template <class _Ptr1, class _Ptr2,
2452 bool = is_same<typename remove_cv<typename pointer_traits<_Ptr1>::element_type>::type,
2453 typename remove_cv<typename pointer_traits<_Ptr2>::element_type>::type
2454 >::value
2455 >
2456struct __same_or_less_cv_qualified_imp
2457 : is_convertible<_Ptr1, _Ptr2> {};
2458
2459template <class _Ptr1, class _Ptr2>
2460struct __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2, false>
2461 : false_type {};
2462
2463template <class _Ptr1, class _Ptr2, bool = is_scalar<_Ptr1>::value &&
2464 !is_pointer<_Ptr1>::value>
2465struct __same_or_less_cv_qualified
2466 : __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2> {};
2467
2468template <class _Ptr1, class _Ptr2>
2469struct __same_or_less_cv_qualified<_Ptr1, _Ptr2, true>
2470 : false_type {};
2471
2472// default_delete
2473
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002474template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002475struct _LIBCPP_VISIBLE default_delete
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002476{
Howard Hinnant46e94932012-07-07 20:56:04 +00002477#ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2478 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT = default;
2479#else
2480 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT {}
2481#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002482 template <class _Up>
2483 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up>&,
Howard Hinnant1694d232011-05-28 14:41:13 +00002484 typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
2485 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002486 {
2487 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2488 delete __ptr;
2489 }
2490};
2491
2492template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002493struct _LIBCPP_VISIBLE default_delete<_Tp[]>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002494{
Howard Hinnant8e843502011-12-18 21:19:44 +00002495public:
Howard Hinnant46e94932012-07-07 20:56:04 +00002496#ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2497 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT = default;
2498#else
2499 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT {}
2500#endif
Howard Hinnant8e843502011-12-18 21:19:44 +00002501 template <class _Up>
2502 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up[]>&,
Howard Hinnant57199402012-01-02 17:56:02 +00002503 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
Howard Hinnant8e843502011-12-18 21:19:44 +00002504 template <class _Up>
2505 _LIBCPP_INLINE_VISIBILITY
2506 void operator() (_Up* __ptr,
Howard Hinnant57199402012-01-02 17:56:02 +00002507 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002508 {
2509 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2510 delete [] __ptr;
2511 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002512};
2513
2514template <class _Tp, class _Dp = default_delete<_Tp> >
Howard Hinnant82894812010-09-22 16:48:34 +00002515class _LIBCPP_VISIBLE unique_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002516{
2517public:
2518 typedef _Tp element_type;
2519 typedef _Dp deleter_type;
2520 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2521private:
2522 __compressed_pair<pointer, deleter_type> __ptr_;
2523
Howard Hinnant57199402012-01-02 17:56:02 +00002524#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002525 unique_ptr(unique_ptr&);
2526 template <class _Up, class _Ep>
2527 unique_ptr(unique_ptr<_Up, _Ep>&);
2528 unique_ptr& operator=(unique_ptr&);
2529 template <class _Up, class _Ep>
2530 unique_ptr& operator=(unique_ptr<_Up, _Ep>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002531#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002532
2533 struct __nat {int __for_bool_;};
2534
2535 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2536 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2537public:
Howard Hinnant46e94932012-07-07 20:56:04 +00002538 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002539 : __ptr_(pointer())
2540 {
2541 static_assert(!is_pointer<deleter_type>::value,
2542 "unique_ptr constructed with null function pointer deleter");
2543 }
Howard Hinnant46e94932012-07-07 20:56:04 +00002544 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002545 : __ptr_(pointer())
2546 {
2547 static_assert(!is_pointer<deleter_type>::value,
2548 "unique_ptr constructed with null function pointer deleter");
2549 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002550 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002551 : __ptr_(_VSTD::move(__p))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002552 {
2553 static_assert(!is_pointer<deleter_type>::value,
2554 "unique_ptr constructed with null function pointer deleter");
2555 }
2556
Howard Hinnant73d21a42010-09-04 23:28:19 +00002557#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002558 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename conditional<
2559 is_reference<deleter_type>::value,
2560 deleter_type,
2561 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002562 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002563 : __ptr_(__p, __d) {}
2564
2565 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002566 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002567 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002568 {
2569 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2570 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002571 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002572 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002573 template <class _Up, class _Ep>
2574 _LIBCPP_INLINE_VISIBILITY
2575 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2576 typename enable_if
2577 <
2578 !is_array<_Up>::value &&
2579 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2580 is_convertible<_Ep, deleter_type>::value &&
2581 (
2582 !is_reference<deleter_type>::value ||
2583 is_same<deleter_type, _Ep>::value
2584 ),
2585 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002586 >::type = __nat()) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002587 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002588
2589 template <class _Up>
2590 _LIBCPP_INLINE_VISIBILITY unique_ptr(auto_ptr<_Up>&& __p,
2591 typename enable_if<
2592 is_convertible<_Up*, _Tp*>::value &&
2593 is_same<_Dp, default_delete<_Tp> >::value,
2594 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002595 >::type = __nat()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002596 : __ptr_(__p.release())
2597 {
2598 }
2599
Howard Hinnant1694d232011-05-28 14:41:13 +00002600 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002601 {
2602 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002603 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002604 return *this;
2605 }
2606
2607 template <class _Up, class _Ep>
2608 _LIBCPP_INLINE_VISIBILITY
2609 typename enable_if
2610 <
Howard Hinnant57199402012-01-02 17:56:02 +00002611 !is_array<_Up>::value &&
2612 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2613 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002614 unique_ptr&
2615 >::type
Howard Hinnant1694d232011-05-28 14:41:13 +00002616 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002617 {
2618 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002619 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002620 return *this;
2621 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002622#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002623
2624 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2625 {
2626 return __rv<unique_ptr>(*this);
2627 }
2628
2629 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002630 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002631
2632 template <class _Up, class _Ep>
2633 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr<_Up, _Ep> __u)
2634 {
2635 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002636 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002637 return *this;
2638 }
2639
2640 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002641 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002642
2643 template <class _Up>
2644 _LIBCPP_INLINE_VISIBILITY
2645 typename enable_if<
2646 is_convertible<_Up*, _Tp*>::value &&
2647 is_same<_Dp, default_delete<_Tp> >::value,
2648 unique_ptr&
2649 >::type
2650 operator=(auto_ptr<_Up> __p)
2651 {reset(__p.release()); return *this;}
2652
Howard Hinnant73d21a42010-09-04 23:28:19 +00002653#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002654 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2655
Howard Hinnant1694d232011-05-28 14:41:13 +00002656 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002657 {
2658 reset();
2659 return *this;
2660 }
2661
2662 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator*() const
2663 {return *__ptr_.first();}
Howard Hinnant1694d232011-05-28 14:41:13 +00002664 _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT {return __ptr_.first();}
2665 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2666 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2667 {return __ptr_.second();}
2668 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2669 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002670 _LIBCPP_INLINE_VISIBILITY
2671 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2672 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002673
Howard Hinnant1694d232011-05-28 14:41:13 +00002674 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002675 {
2676 pointer __t = __ptr_.first();
2677 __ptr_.first() = pointer();
2678 return __t;
2679 }
2680
Howard Hinnant1694d232011-05-28 14:41:13 +00002681 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002682 {
2683 pointer __tmp = __ptr_.first();
2684 __ptr_.first() = __p;
2685 if (__tmp)
2686 __ptr_.second()(__tmp);
2687 }
2688
Howard Hinnant1694d232011-05-28 14:41:13 +00002689 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) _NOEXCEPT
2690 {__ptr_.swap(__u.__ptr_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002691};
2692
2693template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00002694class _LIBCPP_VISIBLE unique_ptr<_Tp[], _Dp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002695{
2696public:
2697 typedef _Tp element_type;
2698 typedef _Dp deleter_type;
2699 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2700private:
2701 __compressed_pair<pointer, deleter_type> __ptr_;
2702
Howard Hinnant57199402012-01-02 17:56:02 +00002703#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002704 unique_ptr(unique_ptr&);
2705 template <class _Up>
2706 unique_ptr(unique_ptr<_Up>&);
2707 unique_ptr& operator=(unique_ptr&);
2708 template <class _Up>
2709 unique_ptr& operator=(unique_ptr<_Up>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002710#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002711
2712 struct __nat {int __for_bool_;};
2713
2714 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2715 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2716public:
Howard Hinnant46e94932012-07-07 20:56:04 +00002717 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002718 : __ptr_(pointer())
2719 {
2720 static_assert(!is_pointer<deleter_type>::value,
2721 "unique_ptr constructed with null function pointer deleter");
2722 }
Howard Hinnant46e94932012-07-07 20:56:04 +00002723 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002724 : __ptr_(pointer())
2725 {
2726 static_assert(!is_pointer<deleter_type>::value,
2727 "unique_ptr constructed with null function pointer deleter");
2728 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002729#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002730 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002731 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002732 >
Howard Hinnant99968442011-11-29 18:15:50 +00002733 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002734 : __ptr_(__p)
2735 {
2736 static_assert(!is_pointer<deleter_type>::value,
2737 "unique_ptr constructed with null function pointer deleter");
2738 }
2739
Howard Hinnant99968442011-11-29 18:15:50 +00002740 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002741 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002742 >
Howard Hinnant99968442011-11-29 18:15:50 +00002743 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename conditional<
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002744 is_reference<deleter_type>::value,
2745 deleter_type,
2746 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002747 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002748 : __ptr_(__p, __d) {}
2749
2750 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename conditional<
2751 is_reference<deleter_type>::value,
2752 deleter_type,
2753 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002754 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002755 : __ptr_(pointer(), __d) {}
2756
Howard Hinnant99968442011-11-29 18:15:50 +00002757 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002758 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002759 >
Howard Hinnant99968442011-11-29 18:15:50 +00002760 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002761 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002762 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002763 {
2764 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2765 }
2766
2767 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002768 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002769 : __ptr_(pointer(), _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002770 {
2771 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2772 }
2773
Howard Hinnant1694d232011-05-28 14:41:13 +00002774 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002775 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002776
Howard Hinnant1694d232011-05-28 14:41:13 +00002777 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002778 {
2779 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002780 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002781 return *this;
2782 }
Howard Hinnant8e843502011-12-18 21:19:44 +00002783
2784 template <class _Up, class _Ep>
2785 _LIBCPP_INLINE_VISIBILITY
2786 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2787 typename enable_if
2788 <
2789 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002790 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value
Howard Hinnant8e843502011-12-18 21:19:44 +00002791 && is_convertible<_Ep, deleter_type>::value &&
2792 (
2793 !is_reference<deleter_type>::value ||
2794 is_same<deleter_type, _Ep>::value
2795 ),
2796 __nat
2797 >::type = __nat()
2798 ) _NOEXCEPT
2799 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
2800
2801
2802 template <class _Up, class _Ep>
2803 _LIBCPP_INLINE_VISIBILITY
2804 typename enable_if
2805 <
2806 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002807 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2808 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnant8e843502011-12-18 21:19:44 +00002809 unique_ptr&
2810 >::type
2811 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
2812 {
2813 reset(__u.release());
2814 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2815 return *this;
2816 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002817#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002818
2819 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p)
2820 : __ptr_(__p)
2821 {
2822 static_assert(!is_pointer<deleter_type>::value,
2823 "unique_ptr constructed with null function pointer deleter");
2824 }
2825
2826 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002827 : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002828
2829 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002830 : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002831
2832 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2833 {
2834 return __rv<unique_ptr>(*this);
2835 }
2836
2837 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002838 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002839
2840 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(__rv<unique_ptr> __u)
2841 {
2842 reset(__u->release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002843 __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002844 return *this;
2845 }
2846
Howard Hinnant73d21a42010-09-04 23:28:19 +00002847#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002848 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2849
Howard Hinnant1694d232011-05-28 14:41:13 +00002850 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002851 {
2852 reset();
2853 return *this;
2854 }
2855
2856 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator[](size_t __i) const
2857 {return __ptr_.first()[__i];}
Howard Hinnant1694d232011-05-28 14:41:13 +00002858 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2859 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2860 {return __ptr_.second();}
2861 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2862 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002863 _LIBCPP_INLINE_VISIBILITY
2864 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2865 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002866
Howard Hinnant1694d232011-05-28 14:41:13 +00002867 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002868 {
2869 pointer __t = __ptr_.first();
2870 __ptr_.first() = pointer();
2871 return __t;
2872 }
2873
Howard Hinnant73d21a42010-09-04 23:28:19 +00002874#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002875 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002876 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002877 >
Howard Hinnant99968442011-11-29 18:15:50 +00002878 _LIBCPP_INLINE_VISIBILITY void reset(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002879 {
2880 pointer __tmp = __ptr_.first();
2881 __ptr_.first() = __p;
2882 if (__tmp)
2883 __ptr_.second()(__tmp);
2884 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002885 _LIBCPP_INLINE_VISIBILITY void reset(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002886 {
2887 pointer __tmp = __ptr_.first();
2888 __ptr_.first() = nullptr;
2889 if (__tmp)
2890 __ptr_.second()(__tmp);
2891 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002892 _LIBCPP_INLINE_VISIBILITY void reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002893 {
2894 pointer __tmp = __ptr_.first();
2895 __ptr_.first() = nullptr;
2896 if (__tmp)
2897 __ptr_.second()(__tmp);
2898 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002899#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002900 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer())
2901 {
2902 pointer __tmp = __ptr_.first();
2903 __ptr_.first() = __p;
2904 if (__tmp)
2905 __ptr_.second()(__tmp);
2906 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002907#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002908
2909 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) {__ptr_.swap(__u.__ptr_);}
2910private:
Howard Hinnant324bb032010-08-22 00:02:43 +00002911
Howard Hinnant73d21a42010-09-04 23:28:19 +00002912#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002913 template <class _Up>
2914 explicit unique_ptr(_Up);
2915 template <class _Up>
2916 unique_ptr(_Up __u,
2917 typename conditional<
2918 is_reference<deleter_type>::value,
2919 deleter_type,
2920 typename add_lvalue_reference<const deleter_type>::type>::type,
2921 typename enable_if
2922 <
2923 is_convertible<_Up, pointer>::value,
2924 __nat
2925 >::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00002926#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002927};
2928
2929template <class _Tp, class _Dp>
2930inline _LIBCPP_INLINE_VISIBILITY
2931void
Howard Hinnant1694d232011-05-28 14:41:13 +00002932swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002933
2934template <class _T1, class _D1, class _T2, class _D2>
2935inline _LIBCPP_INLINE_VISIBILITY
2936bool
2937operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
2938
2939template <class _T1, class _D1, class _T2, class _D2>
2940inline _LIBCPP_INLINE_VISIBILITY
2941bool
2942operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
2943
2944template <class _T1, class _D1, class _T2, class _D2>
2945inline _LIBCPP_INLINE_VISIBILITY
2946bool
Howard Hinnant3fadda32012-02-21 21:02:58 +00002947operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y)
2948{
2949 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2950 typedef typename unique_ptr<_T2, _D2>::pointer _P2;
2951 typedef typename common_type<_P1, _P2>::type _V;
2952 return less<_V>()(__x.get(), __y.get());
2953}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002954
2955template <class _T1, class _D1, class _T2, class _D2>
2956inline _LIBCPP_INLINE_VISIBILITY
2957bool
2958operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
2959
2960template <class _T1, class _D1, class _T2, class _D2>
2961inline _LIBCPP_INLINE_VISIBILITY
2962bool
2963operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);}
2964
2965template <class _T1, class _D1, class _T2, class _D2>
2966inline _LIBCPP_INLINE_VISIBILITY
2967bool
2968operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);}
2969
Howard Hinnant3fadda32012-02-21 21:02:58 +00002970template <class _T1, class _D1>
2971inline _LIBCPP_INLINE_VISIBILITY
2972bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002973operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002974{
2975 return !__x;
2976}
2977
2978template <class _T1, class _D1>
2979inline _LIBCPP_INLINE_VISIBILITY
2980bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002981operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002982{
2983 return !__x;
2984}
2985
2986template <class _T1, class _D1>
2987inline _LIBCPP_INLINE_VISIBILITY
2988bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002989operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002990{
2991 return static_cast<bool>(__x);
2992}
2993
2994template <class _T1, class _D1>
2995inline _LIBCPP_INLINE_VISIBILITY
2996bool
Howard Hinnant46e94932012-07-07 20:56:04 +00002997operator!=(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT
Howard Hinnant3fadda32012-02-21 21:02:58 +00002998{
2999 return static_cast<bool>(__x);
3000}
3001
3002template <class _T1, class _D1>
3003inline _LIBCPP_INLINE_VISIBILITY
3004bool
3005operator<(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3006{
3007 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3008 return less<_P1>()(__x.get(), nullptr);
3009}
3010
3011template <class _T1, class _D1>
3012inline _LIBCPP_INLINE_VISIBILITY
3013bool
3014operator<(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3015{
3016 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3017 return less<_P1>()(nullptr, __x.get());
3018}
3019
3020template <class _T1, class _D1>
3021inline _LIBCPP_INLINE_VISIBILITY
3022bool
3023operator>(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3024{
3025 return nullptr < __x;
3026}
3027
3028template <class _T1, class _D1>
3029inline _LIBCPP_INLINE_VISIBILITY
3030bool
3031operator>(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3032{
3033 return __x < nullptr;
3034}
3035
3036template <class _T1, class _D1>
3037inline _LIBCPP_INLINE_VISIBILITY
3038bool
3039operator<=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3040{
3041 return !(nullptr < __x);
3042}
3043
3044template <class _T1, class _D1>
3045inline _LIBCPP_INLINE_VISIBILITY
3046bool
3047operator<=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3048{
3049 return !(__x < nullptr);
3050}
3051
3052template <class _T1, class _D1>
3053inline _LIBCPP_INLINE_VISIBILITY
3054bool
3055operator>=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3056{
3057 return !(__x < nullptr);
3058}
3059
3060template <class _T1, class _D1>
3061inline _LIBCPP_INLINE_VISIBILITY
3062bool
3063operator>=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3064{
3065 return !(nullptr < __x);
3066}
3067
Howard Hinnant87073e42012-05-01 15:37:54 +00003068#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3069
3070template <class _Tp, class _Dp>
3071inline _LIBCPP_INLINE_VISIBILITY
3072unique_ptr<_Tp, _Dp>
3073move(unique_ptr<_Tp, _Dp>& __t)
3074{
3075 return unique_ptr<_Tp, _Dp>(__rv<unique_ptr<_Tp, _Dp> >(__t));
3076}
3077
3078#endif
3079
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00003080template <class _Tp> struct hash;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003081
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003082// We use murmur2 when size_t is 32 bits, and cityhash64 when size_t
3083// is 64 bits. This is because cityhash64 uses 64bit x 64bit
3084// multiplication, which can be very slow on 32-bit systems.
Howard Hinnant40c13d32011-12-05 00:08:45 +00003085template <class _Size, size_t = sizeof(_Size)*__CHAR_BIT__>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003086struct __murmur2_or_cityhash;
Howard Hinnant40c13d32011-12-05 00:08:45 +00003087
3088template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003089struct __murmur2_or_cityhash<_Size, 32>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003090{
3091 _Size operator()(const void* __key, _Size __len);
3092};
3093
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003094// murmur2
Howard Hinnant40c13d32011-12-05 00:08:45 +00003095template <class _Size>
3096_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003097__murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003098{
3099 const _Size __m = 0x5bd1e995;
3100 const _Size __r = 24;
3101 _Size __h = __len;
3102 const unsigned char* __data = static_cast<const unsigned char*>(__key);
3103 for (; __len >= 4; __data += 4, __len -= 4)
3104 {
3105 _Size __k = *(const _Size*)__data;
3106 __k *= __m;
3107 __k ^= __k >> __r;
3108 __k *= __m;
3109 __h *= __m;
3110 __h ^= __k;
3111 }
3112 switch (__len)
3113 {
3114 case 3:
3115 __h ^= __data[2] << 16;
3116 case 2:
3117 __h ^= __data[1] << 8;
3118 case 1:
3119 __h ^= __data[0];
3120 __h *= __m;
3121 }
3122 __h ^= __h >> 13;
3123 __h *= __m;
3124 __h ^= __h >> 15;
3125 return __h;
3126}
3127
3128template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003129struct __murmur2_or_cityhash<_Size, 64>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003130{
3131 _Size operator()(const void* __key, _Size __len);
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003132
3133 private:
3134 // Some primes between 2^63 and 2^64.
3135 static const _Size __k0 = 0xc3a5c85c97cb3127ULL;
3136 static const _Size __k1 = 0xb492b66fbe98f273ULL;
3137 static const _Size __k2 = 0x9ae16a3b2f90404fULL;
3138 static const _Size __k3 = 0xc949d7c7509e6557ULL;
3139
3140 static _Size __rotate(_Size __val, int __shift) {
3141 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift)));
3142 }
3143
3144 static _Size __rotate_by_at_least_1(_Size __val, int __shift) {
3145 return (__val >> __shift) | (__val << (64 - __shift));
3146 }
3147
3148 static _Size __shift_mix(_Size __val) {
3149 return __val ^ (__val >> 47);
3150 }
3151
3152 static _Size __hash_len_16(_Size __u, _Size __v) {
3153 const _Size __mul = 0x9ddfea08eb382d69ULL;
3154 _Size __a = (__u ^ __v) * __mul;
3155 __a ^= (__a >> 47);
3156 _Size __b = (__v ^ __a) * __mul;
3157 __b ^= (__b >> 47);
3158 __b *= __mul;
3159 return __b;
3160 }
3161
3162 static _Size __hash_len_0_to_16(const char* __s, _Size __len) {
3163 if (__len > 8) {
3164 const _Size __a = *(const _Size*)__s;
3165 const _Size __b = *(const _Size*)(__s + __len - 8);
3166 return __hash_len_16(__a, __rotate_by_at_least_1(__b + __len, __len)) ^ __b;
3167 }
3168 if (__len >= 4) {
3169 const uint32_t __a = *(const uint32_t*)(__s);
3170 const uint32_t __b = *(const uint32_t*)(__s + __len - 4);
3171 return __hash_len_16(__len + (__a << 3), __b);
3172 }
3173 if (__len > 0) {
3174 const unsigned char __a = __s[0];
3175 const unsigned char __b = __s[__len >> 1];
3176 const unsigned char __c = __s[__len - 1];
3177 const uint32_t __y = static_cast<uint32_t>(__a) +
3178 (static_cast<uint32_t>(__b) << 8);
3179 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
3180 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
3181 }
3182 return __k2;
3183 }
3184
3185 static _Size __hash_len_17_to_32(const char *__s, _Size __len) {
3186 const _Size __a = *(const _Size*)(__s) * __k1;
3187 const _Size __b = *(const _Size*)(__s + 8);
3188 const _Size __c = *(const _Size*)(__s + __len - 8) * __k2;
3189 const _Size __d = *(const _Size*)(__s + __len - 16) * __k0;
3190 return __hash_len_16(__rotate(__a - __b, 43) + __rotate(__c, 30) + __d,
3191 __a + __rotate(__b ^ __k3, 20) - __c + __len);
3192 }
3193
3194 // Return a 16-byte hash for 48 bytes. Quick and dirty.
3195 // Callers do best to use "random-looking" values for a and b.
3196 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3197 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) {
3198 __a += __w;
3199 __b = __rotate(__b + __a + __z, 21);
3200 const _Size __c = __a;
3201 __a += __x;
3202 __a += __y;
3203 __b += __rotate(__a, 44);
3204 return pair<_Size, _Size>(__a + __z, __b + __c);
3205 }
3206
3207 // Return a 16-byte hash for s[0] ... s[31], a, and b. Quick and dirty.
3208 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3209 const char* __s, _Size __a, _Size __b) {
3210 return __weak_hash_len_32_with_seeds(*(const _Size*)(__s),
3211 *(const _Size*)(__s + 8),
3212 *(const _Size*)(__s + 16),
3213 *(const _Size*)(__s + 24),
3214 __a,
3215 __b);
3216 }
3217
3218 // Return an 8-byte hash for 33 to 64 bytes.
3219 static _Size __hash_len_33_to_64(const char *__s, size_t __len) {
3220 _Size __z = *(const _Size*)(__s + 24);
3221 _Size __a = *(const _Size*)(__s) +
3222 (__len + *(const _Size*)(__s + __len - 16)) * __k0;
3223 _Size __b = __rotate(__a + __z, 52);
3224 _Size __c = __rotate(__a, 37);
3225 __a += *(const _Size*)(__s + 8);
3226 __c += __rotate(__a, 7);
3227 __a += *(const _Size*)(__s + 16);
3228 _Size __vf = __a + __z;
3229 _Size __vs = __b + __rotate(__a, 31) + __c;
3230 __a = *(const _Size*)(__s + 16) + *(const _Size*)(__s + __len - 32);
3231 __z += *(const _Size*)(__s + __len - 8);
3232 __b = __rotate(__a + __z, 52);
3233 __c = __rotate(__a, 37);
3234 __a += *(const _Size*)(__s + __len - 24);
3235 __c += __rotate(__a, 7);
3236 __a += *(const _Size*)(__s + __len - 16);
3237 _Size __wf = __a + __z;
3238 _Size __ws = __b + __rotate(__a, 31) + __c;
3239 _Size __r = __shift_mix((__vf + __ws) * __k2 + (__wf + __vs) * __k0);
3240 return __shift_mix(__r * __k0 + __vs) * __k2;
3241 }
Howard Hinnant40c13d32011-12-05 00:08:45 +00003242};
3243
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003244// cityhash64
Howard Hinnant40c13d32011-12-05 00:08:45 +00003245template <class _Size>
3246_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003247__murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003248{
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003249 const char* __s = static_cast<const char*>(__key);
3250 if (__len <= 32) {
3251 if (__len <= 16) {
3252 return __hash_len_0_to_16(__s, __len);
3253 } else {
3254 return __hash_len_17_to_32(__s, __len);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003255 }
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003256 } else if (__len <= 64) {
3257 return __hash_len_33_to_64(__s, __len);
3258 }
3259
3260 // For strings over 64 bytes we hash the end first, and then as we
3261 // loop we keep 56 bytes of state: v, w, x, y, and z.
3262 _Size __x = *(const _Size*)(__s + __len - 40);
3263 _Size __y = *(const _Size*)(__s + __len - 16) +
3264 *(const _Size*)(__s + __len - 56);
3265 _Size __z = __hash_len_16(*(const _Size*)(__s + __len - 48) + __len,
3266 *(const _Size*)(__s + __len - 24));
3267 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z);
3268 pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x);
3269 __x = __x * __k1 + *(const _Size*)(__s);
3270
3271 // Decrease len to the nearest multiple of 64, and operate on 64-byte chunks.
3272 __len = (__len - 1) & ~static_cast<_Size>(63);
3273 do {
3274 __x = __rotate(__x + __y + __v.first + *(const _Size*)(__s + 8), 37) * __k1;
3275 __y = __rotate(__y + __v.second + *(const _Size*)(__s + 48), 42) * __k1;
3276 __x ^= __w.second;
3277 __y += __v.first + *(const _Size*)(__s + 40);
3278 __z = __rotate(__z + __w.first, 33) * __k1;
3279 __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first);
3280 __w = __weak_hash_len_32_with_seeds(__s + 32, __z + __w.second,
3281 __y + *(const _Size*)(__s + 16));
3282 std::swap(__z, __x);
3283 __s += 64;
3284 __len -= 64;
3285 } while (__len != 0);
3286 return __hash_len_16(
3287 __hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z,
3288 __hash_len_16(__v.second, __w.second) + __x);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003289}
3290
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003291template <class _Tp, size_t = sizeof(_Tp) / sizeof(size_t)>
3292struct __scalar_hash;
3293
3294template <class _Tp>
3295struct __scalar_hash<_Tp, 0>
3296 : public unary_function<_Tp, size_t>
Howard Hinnant21aefc32010-06-03 16:42:57 +00003297{
Howard Hinnant82894812010-09-22 16:48:34 +00003298 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003299 size_t operator()(_Tp __v) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003300 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003301 union
3302 {
3303 _Tp __t;
3304 size_t __a;
3305 } __u;
3306 __u.__a = 0;
3307 __u.__t = __v;
3308 return __u.__a;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003309 }
3310};
3311
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003312template <class _Tp>
3313struct __scalar_hash<_Tp, 1>
3314 : public unary_function<_Tp, size_t>
3315{
3316 _LIBCPP_INLINE_VISIBILITY
3317 size_t operator()(_Tp __v) const _NOEXCEPT
3318 {
3319 union
3320 {
3321 _Tp __t;
3322 size_t __a;
3323 } __u;
3324 __u.__t = __v;
3325 return __u.__a;
3326 }
3327};
3328
3329template <class _Tp>
3330struct __scalar_hash<_Tp, 2>
3331 : public unary_function<_Tp, size_t>
3332{
3333 _LIBCPP_INLINE_VISIBILITY
3334 size_t operator()(_Tp __v) const _NOEXCEPT
3335 {
3336 union
3337 {
3338 _Tp __t;
3339 struct
3340 {
3341 size_t __a;
3342 size_t __b;
3343 };
3344 } __u;
3345 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003346 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003347 }
3348};
3349
3350template <class _Tp>
3351struct __scalar_hash<_Tp, 3>
3352 : public unary_function<_Tp, size_t>
3353{
3354 _LIBCPP_INLINE_VISIBILITY
3355 size_t operator()(_Tp __v) const _NOEXCEPT
3356 {
3357 union
3358 {
3359 _Tp __t;
3360 struct
3361 {
3362 size_t __a;
3363 size_t __b;
3364 size_t __c;
3365 };
3366 } __u;
3367 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003368 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003369 }
3370};
3371
3372template <class _Tp>
3373struct __scalar_hash<_Tp, 4>
3374 : public unary_function<_Tp, size_t>
3375{
3376 _LIBCPP_INLINE_VISIBILITY
3377 size_t operator()(_Tp __v) const _NOEXCEPT
3378 {
3379 union
3380 {
3381 _Tp __t;
3382 struct
3383 {
3384 size_t __a;
3385 size_t __b;
3386 size_t __c;
3387 size_t __d;
3388 };
3389 } __u;
3390 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003391 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003392 }
3393};
3394
3395template<class _Tp>
3396struct _LIBCPP_VISIBLE hash<_Tp*>
Howard Hinnant5fec82d2012-07-30 01:40:57 +00003397 : public unary_function<_Tp*, size_t>
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003398{
Howard Hinnant5fec82d2012-07-30 01:40:57 +00003399 _LIBCPP_INLINE_VISIBILITY
3400 size_t operator()(_Tp* __v) const _NOEXCEPT
3401 {
3402 union
3403 {
3404 _Tp* __t;
3405 size_t __a;
3406 } __u;
3407 __u.__t = __v;
3408 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
3409 }
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003410};
3411
Howard Hinnant21aefc32010-06-03 16:42:57 +00003412template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003413struct _LIBCPP_VISIBLE hash<unique_ptr<_Tp, _Dp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00003414{
3415 typedef unique_ptr<_Tp, _Dp> argument_type;
3416 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00003417 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003418 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003419 {
3420 typedef typename argument_type::pointer pointer;
3421 return hash<pointer>()(__ptr.get());
3422 }
3423};
3424
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003425struct __destruct_n
3426{
3427private:
3428 size_t size;
3429
3430 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003431 _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003432 {for (size_t __i = 0; __i < size; ++__i, ++__p) __p->~_Tp();}
3433
3434 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003435 _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003436 {}
3437
Howard Hinnant1694d232011-05-28 14:41:13 +00003438 _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003439 {++size;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003440 _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003441 {}
3442
Howard Hinnant1694d232011-05-28 14:41:13 +00003443 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003444 {size = __s;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003445 _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003446 {}
3447public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003448 _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT
3449 : size(__s) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003450
3451 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003452 _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003453 {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003454
3455 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003456 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003457 {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003458
3459 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003460 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003461 {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003462};
3463
3464template <class _Alloc>
3465class __allocator_destructor
3466{
3467 typedef allocator_traits<_Alloc> __alloc_traits;
3468public:
3469 typedef typename __alloc_traits::pointer pointer;
3470 typedef typename __alloc_traits::size_type size_type;
3471private:
3472 _Alloc& __alloc_;
3473 size_type __s_;
3474public:
3475 _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s)
Howard Hinnant1694d232011-05-28 14:41:13 +00003476 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003477 : __alloc_(__a), __s_(__s) {}
Howard Hinnant82894812010-09-22 16:48:34 +00003478 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003479 void operator()(pointer __p) _NOEXCEPT
3480 {__alloc_traits::deallocate(__alloc_, __p, __s_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003481};
3482
3483template <class _InputIterator, class _ForwardIterator>
3484_ForwardIterator
3485uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r)
3486{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003487 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003488#ifndef _LIBCPP_NO_EXCEPTIONS
3489 _ForwardIterator __s = __r;
3490 try
3491 {
3492#endif
3493 for (; __f != __l; ++__f, ++__r)
3494 ::new(&*__r) value_type(*__f);
3495#ifndef _LIBCPP_NO_EXCEPTIONS
3496 }
3497 catch (...)
3498 {
3499 for (; __s != __r; ++__s)
3500 __s->~value_type();
3501 throw;
3502 }
3503#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003504 return __r;
3505}
3506
3507template <class _InputIterator, class _Size, class _ForwardIterator>
3508_ForwardIterator
3509uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r)
3510{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003511 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003512#ifndef _LIBCPP_NO_EXCEPTIONS
3513 _ForwardIterator __s = __r;
3514 try
3515 {
3516#endif
3517 for (; __n > 0; ++__f, ++__r, --__n)
3518 ::new(&*__r) value_type(*__f);
3519#ifndef _LIBCPP_NO_EXCEPTIONS
3520 }
3521 catch (...)
3522 {
3523 for (; __s != __r; ++__s)
3524 __s->~value_type();
3525 throw;
3526 }
3527#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003528 return __r;
3529}
3530
3531template <class _ForwardIterator, class _Tp>
3532void
3533uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x)
3534{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003535 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003536#ifndef _LIBCPP_NO_EXCEPTIONS
3537 _ForwardIterator __s = __f;
3538 try
3539 {
3540#endif
3541 for (; __f != __l; ++__f)
3542 ::new(&*__f) value_type(__x);
3543#ifndef _LIBCPP_NO_EXCEPTIONS
3544 }
3545 catch (...)
3546 {
3547 for (; __s != __f; ++__s)
3548 __s->~value_type();
3549 throw;
3550 }
3551#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003552}
3553
3554template <class _ForwardIterator, class _Size, class _Tp>
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003555_ForwardIterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003556uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x)
3557{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003558 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003559#ifndef _LIBCPP_NO_EXCEPTIONS
3560 _ForwardIterator __s = __f;
3561 try
3562 {
3563#endif
3564 for (; __n > 0; ++__f, --__n)
3565 ::new(&*__f) value_type(__x);
3566#ifndef _LIBCPP_NO_EXCEPTIONS
3567 }
3568 catch (...)
3569 {
3570 for (; __s != __f; ++__s)
3571 __s->~value_type();
3572 throw;
3573 }
3574#endif
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003575 return __f;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003576}
3577
Howard Hinnant82894812010-09-22 16:48:34 +00003578class _LIBCPP_EXCEPTION_ABI bad_weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003579 : public std::exception
3580{
3581public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003582 virtual ~bad_weak_ptr() _NOEXCEPT;
3583 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003584};
3585
Howard Hinnant33be35e2012-09-14 00:39:16 +00003586template<class _Tp> class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003587
3588class __shared_count
3589{
3590 __shared_count(const __shared_count&);
3591 __shared_count& operator=(const __shared_count&);
3592
3593protected:
3594 long __shared_owners_;
3595 virtual ~__shared_count();
3596private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003597 virtual void __on_zero_shared() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003598
3599public:
Howard Hinnant82894812010-09-22 16:48:34 +00003600 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003601 explicit __shared_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003602 : __shared_owners_(__refs) {}
3603
Howard Hinnant1694d232011-05-28 14:41:13 +00003604 void __add_shared() _NOEXCEPT;
3605 bool __release_shared() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003606 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003607 long use_count() const _NOEXCEPT {return __shared_owners_ + 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003608};
3609
3610class __shared_weak_count
3611 : private __shared_count
3612{
3613 long __shared_weak_owners_;
3614
3615public:
Howard Hinnant82894812010-09-22 16:48:34 +00003616 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003617 explicit __shared_weak_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003618 : __shared_count(__refs),
3619 __shared_weak_owners_(__refs) {}
3620protected:
3621 virtual ~__shared_weak_count();
3622
3623public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003624 void __add_shared() _NOEXCEPT;
3625 void __add_weak() _NOEXCEPT;
3626 void __release_shared() _NOEXCEPT;
3627 void __release_weak() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003628 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003629 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
3630 __shared_weak_count* lock() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003631
Howard Hinnant4a0e74f2013-02-25 15:50:36 +00003632 // Define the function out only if we build static libc++ without RTTI.
3633 // Otherwise we may break clients who need to compile their projects with
3634 // -fno-rtti and yet link against a libc++.dylib compiled
3635 // without -fno-rtti.
3636#if !defined(_LIBCPP_NO_RTTI) || !defined(_LIBCPP_BUILD_STATIC)
Howard Hinnant1694d232011-05-28 14:41:13 +00003637 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnant4a0e74f2013-02-25 15:50:36 +00003638#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003639private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003640 virtual void __on_zero_shared_weak() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003641};
3642
3643template <class _Tp, class _Dp, class _Alloc>
3644class __shared_ptr_pointer
3645 : public __shared_weak_count
3646{
3647 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_;
3648public:
Howard Hinnant82894812010-09-22 16:48:34 +00003649 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003650 __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003651 : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003652
Howard Hinnantd4444702010-08-11 17:04:31 +00003653#ifndef _LIBCPP_NO_RTTI
Howard Hinnant1694d232011-05-28 14:41:13 +00003654 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantd4444702010-08-11 17:04:31 +00003655#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003656
3657private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003658 virtual void __on_zero_shared() _NOEXCEPT;
3659 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003660};
3661
Howard Hinnantd4444702010-08-11 17:04:31 +00003662#ifndef _LIBCPP_NO_RTTI
3663
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003664template <class _Tp, class _Dp, class _Alloc>
3665const void*
Howard Hinnant1694d232011-05-28 14:41:13 +00003666__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003667{
3668 return __t == typeid(_Dp) ? &__data_.first().second() : 0;
3669}
3670
Howard Hinnant324bb032010-08-22 00:02:43 +00003671#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00003672
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003673template <class _Tp, class _Dp, class _Alloc>
3674void
Howard Hinnant1694d232011-05-28 14:41:13 +00003675__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003676{
3677 __data_.first().second()(__data_.first().first());
3678 __data_.first().second().~_Dp();
3679}
3680
3681template <class _Tp, class _Dp, class _Alloc>
3682void
Howard Hinnant1694d232011-05-28 14:41:13 +00003683__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003684{
3685 typename _Alloc::template rebind<__shared_ptr_pointer>::other __a(__data_.second());
3686 __data_.second().~_Alloc();
3687 __a.deallocate(this, 1);
3688}
3689
3690template <class _Tp, class _Alloc>
3691class __shared_ptr_emplace
3692 : public __shared_weak_count
3693{
3694 __compressed_pair<_Alloc, _Tp> __data_;
3695public:
3696#ifndef _LIBCPP_HAS_NO_VARIADICS
3697
Howard Hinnant82894812010-09-22 16:48:34 +00003698 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003699 __shared_ptr_emplace(_Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003700 : __data_(_VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003701
3702 template <class ..._Args>
Howard Hinnant82894812010-09-22 16:48:34 +00003703 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003704 __shared_ptr_emplace(_Alloc __a, _Args&& ...__args)
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00003705 : __data_(piecewise_construct, _VSTD::forward_as_tuple(__a),
3706 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003707
3708#else // _LIBCPP_HAS_NO_VARIADICS
3709
Howard Hinnant82894812010-09-22 16:48:34 +00003710 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003711 __shared_ptr_emplace(_Alloc __a)
3712 : __data_(__a) {}
3713
3714 template <class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00003715 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003716 __shared_ptr_emplace(_Alloc __a, _A0& __a0)
3717 : __data_(__a, _Tp(__a0)) {}
3718
3719 template <class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00003720 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003721 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3722 : __data_(__a, _Tp(__a0, __a1)) {}
3723
3724 template <class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00003725 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003726 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3727 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3728
3729#endif // _LIBCPP_HAS_NO_VARIADICS
3730
3731private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003732 virtual void __on_zero_shared() _NOEXCEPT;
3733 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003734public:
Howard Hinnant82894812010-09-22 16:48:34 +00003735 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003736 _Tp* get() _NOEXCEPT {return &__data_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003737};
3738
3739template <class _Tp, class _Alloc>
3740void
Howard Hinnant1694d232011-05-28 14:41:13 +00003741__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003742{
3743 __data_.second().~_Tp();
3744}
3745
3746template <class _Tp, class _Alloc>
3747void
Howard Hinnant1694d232011-05-28 14:41:13 +00003748__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003749{
3750 typename _Alloc::template rebind<__shared_ptr_emplace>::other __a(__data_.first());
3751 __data_.first().~_Alloc();
3752 __a.deallocate(this, 1);
3753}
3754
Howard Hinnant33be35e2012-09-14 00:39:16 +00003755template<class _Tp> class _LIBCPP_VISIBLE enable_shared_from_this;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003756
3757template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00003758class _LIBCPP_VISIBLE shared_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003759{
Howard Hinnant324bb032010-08-22 00:02:43 +00003760public:
3761 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003762private:
3763 element_type* __ptr_;
3764 __shared_weak_count* __cntrl_;
3765
3766 struct __nat {int __for_bool_;};
3767public:
Howard Hinnant46e94932012-07-07 20:56:04 +00003768 _LIBCPP_CONSTEXPR shared_ptr() _NOEXCEPT;
3769 _LIBCPP_CONSTEXPR shared_ptr(nullptr_t) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003770 template<class _Yp,
3771 class = typename enable_if
3772 <
3773 is_convertible<_Yp*, element_type*>::value
3774 >::type
3775 >
3776 explicit shared_ptr(_Yp* __p);
3777 template<class _Yp, class _Dp,
3778 class = typename enable_if
3779 <
3780 is_convertible<_Yp*, element_type*>::value
3781 >::type
3782 >
3783 shared_ptr(_Yp* __p, _Dp __d);
3784 template<class _Yp, class _Dp, class _Alloc,
3785 class = typename enable_if
3786 <
3787 is_convertible<_Yp*, element_type*>::value
3788 >::type
3789 >
3790 shared_ptr(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003791 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
3792 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
Howard Hinnant1694d232011-05-28 14:41:13 +00003793 template<class _Yp> shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT;
3794 shared_ptr(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003795 template<class _Yp>
3796 shared_ptr(const shared_ptr<_Yp>& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003797 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3798 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003799#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003800 shared_ptr(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003801 template<class _Yp> shared_ptr(shared_ptr<_Yp>&& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003802 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3803 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003804#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003805 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r,
Howard Hinnant324bb032010-08-22 00:02:43 +00003806 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type= __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003807#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003808 template<class _Yp,
3809 class = typename enable_if
3810 <
3811 is_convertible<_Yp*, element_type*>::value
3812 >::type
3813 >
3814 shared_ptr(auto_ptr<_Yp>&& __r);
Howard Hinnant324bb032010-08-22 00:02:43 +00003815#else
Howard Hinnant57199402012-01-02 17:56:02 +00003816 template<class _Yp,
3817 class = typename enable_if
3818 <
3819 is_convertible<_Yp*, element_type*>::value
3820 >::type
3821 >
3822 shared_ptr(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003823#endif
Howard Hinnant73d21a42010-09-04 23:28:19 +00003824#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003825 template <class _Yp, class _Dp,
3826 class = typename enable_if
3827 <
3828 !is_array<_Yp>::value &&
3829 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3830 >::type
3831 >
3832 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003833 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003834 template <class _Yp, class _Dp,
3835 class = typename enable_if
3836 <
3837 !is_array<_Yp>::value &&
3838 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3839 >::type
3840 >
3841 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003842 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003843#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003844 template <class _Yp, class _Dp,
3845 class = typename enable_if
3846 <
3847 !is_array<_Yp>::value &&
3848 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3849 >::type
3850 > shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003851 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003852 template <class _Yp, class _Dp,
3853 class = typename enable_if
3854 <
3855 !is_array<_Yp>::value &&
3856 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3857 >::type
3858 >
3859 shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003860 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003861#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003862
3863 ~shared_ptr();
3864
Howard Hinnant1694d232011-05-28 14:41:13 +00003865 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003866 template<class _Yp>
3867 typename enable_if
3868 <
3869 is_convertible<_Yp*, element_type*>::value,
3870 shared_ptr&
3871 >::type
3872 operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003873#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003874 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003875 template<class _Yp>
3876 typename enable_if
3877 <
3878 is_convertible<_Yp*, element_type*>::value,
3879 shared_ptr<_Tp>&
3880 >::type
3881 operator=(shared_ptr<_Yp>&& __r);
3882 template<class _Yp>
3883 typename enable_if
3884 <
3885 !is_array<_Yp>::value &&
3886 is_convertible<_Yp*, element_type*>::value,
3887 shared_ptr&
3888 >::type
3889 operator=(auto_ptr<_Yp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003890#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003891 template<class _Yp>
3892 typename enable_if
3893 <
3894 !is_array<_Yp>::value &&
3895 is_convertible<_Yp*, element_type*>::value,
3896 shared_ptr&
3897 >::type
3898 operator=(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003899#endif
Howard Hinnant57199402012-01-02 17:56:02 +00003900 template <class _Yp, class _Dp>
3901 typename enable_if
3902 <
3903 !is_array<_Yp>::value &&
3904 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3905 shared_ptr&
3906 >::type
Howard Hinnant73d21a42010-09-04 23:28:19 +00003907#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003908 operator=(unique_ptr<_Yp, _Dp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003909#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003910 operator=(unique_ptr<_Yp, _Dp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003911#endif
3912
Howard Hinnant1694d232011-05-28 14:41:13 +00003913 void swap(shared_ptr& __r) _NOEXCEPT;
3914 void reset() _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003915 template<class _Yp>
3916 typename enable_if
3917 <
3918 is_convertible<_Yp*, element_type*>::value,
3919 void
3920 >::type
3921 reset(_Yp* __p);
3922 template<class _Yp, class _Dp>
3923 typename enable_if
3924 <
3925 is_convertible<_Yp*, element_type*>::value,
3926 void
3927 >::type
3928 reset(_Yp* __p, _Dp __d);
3929 template<class _Yp, class _Dp, class _Alloc>
3930 typename enable_if
3931 <
3932 is_convertible<_Yp*, element_type*>::value,
3933 void
3934 >::type
3935 reset(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003936
Howard Hinnant82894812010-09-22 16:48:34 +00003937 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003938 element_type* get() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003939 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003940 typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT
3941 {return *__ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003942 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003943 element_type* operator->() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003944 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003945 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00003946 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003947 bool unique() const _NOEXCEPT {return use_count() == 1;}
Howard Hinnant82894812010-09-22 16:48:34 +00003948 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +00003949 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return get() != 0;}
Howard Hinnant99968442011-11-29 18:15:50 +00003950 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003951 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003952 bool owner_before(shared_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003953 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant99968442011-11-29 18:15:50 +00003954 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003955 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003956 bool owner_before(weak_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003957 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant5fec82d2012-07-30 01:40:57 +00003958 _LIBCPP_INLINE_VISIBILITY
3959 bool
3960 __owner_equivalent(const shared_ptr& __p) const
3961 {return __cntrl_ == __p.__cntrl_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003962
Howard Hinnantd4444702010-08-11 17:04:31 +00003963#ifndef _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003964 template <class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003965 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003966 _Dp* __get_deleter() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003967 {return (_Dp*)(__cntrl_ ? __cntrl_->__get_deleter(typeid(_Dp)) : 0);}
Howard Hinnant324bb032010-08-22 00:02:43 +00003968#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003969
3970#ifndef _LIBCPP_HAS_NO_VARIADICS
3971
3972 template<class ..._Args>
3973 static
3974 shared_ptr<_Tp>
3975 make_shared(_Args&& ...__args);
3976
3977 template<class _Alloc, class ..._Args>
3978 static
3979 shared_ptr<_Tp>
3980 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3981
3982#else // _LIBCPP_HAS_NO_VARIADICS
3983
3984 static shared_ptr<_Tp> make_shared();
3985
3986 template<class _A0>
3987 static shared_ptr<_Tp> make_shared(_A0&);
3988
3989 template<class _A0, class _A1>
3990 static shared_ptr<_Tp> make_shared(_A0&, _A1&);
3991
3992 template<class _A0, class _A1, class _A2>
3993 static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&);
3994
3995 template<class _Alloc>
3996 static shared_ptr<_Tp>
3997 allocate_shared(const _Alloc& __a);
3998
3999 template<class _Alloc, class _A0>
4000 static shared_ptr<_Tp>
4001 allocate_shared(const _Alloc& __a, _A0& __a0);
4002
4003 template<class _Alloc, class _A0, class _A1>
4004 static shared_ptr<_Tp>
4005 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
4006
4007 template<class _Alloc, class _A0, class _A1, class _A2>
4008 static shared_ptr<_Tp>
4009 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
4010
4011#endif // _LIBCPP_HAS_NO_VARIADICS
4012
4013private:
4014
4015 template <class _Yp>
Howard Hinnant82894812010-09-22 16:48:34 +00004016 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004017 void
Howard Hinnant1694d232011-05-28 14:41:13 +00004018 __enable_weak_this(const enable_shared_from_this<_Yp>* __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004019 {
4020 if (__e)
4021 __e->__weak_this_ = *this;
4022 }
4023
Howard Hinnant82894812010-09-22 16:48:34 +00004024 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004025 void __enable_weak_this(const void*) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004026
Howard Hinnant82894812010-09-22 16:48:34 +00004027 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
4028 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004029};
4030
4031template<class _Tp>
4032inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant46e94932012-07-07 20:56:04 +00004033_LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00004034shared_ptr<_Tp>::shared_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004035 : __ptr_(0),
4036 __cntrl_(0)
4037{
4038}
4039
4040template<class _Tp>
4041inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant46e94932012-07-07 20:56:04 +00004042_LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00004043shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004044 : __ptr_(0),
4045 __cntrl_(0)
4046{
4047}
4048
4049template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004050template<class _Yp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004051shared_ptr<_Tp>::shared_ptr(_Yp* __p)
4052 : __ptr_(__p)
4053{
4054 unique_ptr<_Yp> __hold(__p);
4055 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4056 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>());
4057 __hold.release();
4058 __enable_weak_this(__p);
4059}
4060
4061template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004062template<class _Yp, class _Dp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004063shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d)
4064 : __ptr_(__p)
4065{
4066#ifndef _LIBCPP_NO_EXCEPTIONS
4067 try
4068 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004069#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004070 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4071 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>());
4072 __enable_weak_this(__p);
4073#ifndef _LIBCPP_NO_EXCEPTIONS
4074 }
4075 catch (...)
4076 {
4077 __d(__p);
4078 throw;
4079 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004080#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004081}
4082
4083template<class _Tp>
4084template<class _Dp>
4085shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
4086 : __ptr_(0)
4087{
4088#ifndef _LIBCPP_NO_EXCEPTIONS
4089 try
4090 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004091#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004092 typedef __shared_ptr_pointer<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk;
4093 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>());
4094#ifndef _LIBCPP_NO_EXCEPTIONS
4095 }
4096 catch (...)
4097 {
4098 __d(__p);
4099 throw;
4100 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004101#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004102}
4103
4104template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004105template<class _Yp, class _Dp, class _Alloc, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004106shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a)
4107 : __ptr_(__p)
4108{
4109#ifndef _LIBCPP_NO_EXCEPTIONS
4110 try
4111 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004112#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004113 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
4114 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4115 typedef __allocator_destructor<_A2> _D2;
4116 _A2 __a2(__a);
4117 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4118 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4119 __cntrl_ = __hold2.release();
4120 __enable_weak_this(__p);
4121#ifndef _LIBCPP_NO_EXCEPTIONS
4122 }
4123 catch (...)
4124 {
4125 __d(__p);
4126 throw;
4127 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004128#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004129}
4130
4131template<class _Tp>
4132template<class _Dp, class _Alloc>
4133shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
4134 : __ptr_(0)
4135{
4136#ifndef _LIBCPP_NO_EXCEPTIONS
4137 try
4138 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004139#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004140 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
4141 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4142 typedef __allocator_destructor<_A2> _D2;
4143 _A2 __a2(__a);
4144 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4145 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4146 __cntrl_ = __hold2.release();
4147#ifndef _LIBCPP_NO_EXCEPTIONS
4148 }
4149 catch (...)
4150 {
4151 __d(__p);
4152 throw;
4153 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004154#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004155}
4156
4157template<class _Tp>
4158template<class _Yp>
4159inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004160shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004161 : __ptr_(__p),
4162 __cntrl_(__r.__cntrl_)
4163{
4164 if (__cntrl_)
4165 __cntrl_->__add_shared();
4166}
4167
4168template<class _Tp>
4169inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004170shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004171 : __ptr_(__r.__ptr_),
4172 __cntrl_(__r.__cntrl_)
4173{
4174 if (__cntrl_)
4175 __cntrl_->__add_shared();
4176}
4177
4178template<class _Tp>
4179template<class _Yp>
4180inline _LIBCPP_INLINE_VISIBILITY
4181shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r,
4182 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004183 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004184 : __ptr_(__r.__ptr_),
4185 __cntrl_(__r.__cntrl_)
4186{
4187 if (__cntrl_)
4188 __cntrl_->__add_shared();
4189}
4190
Howard Hinnant73d21a42010-09-04 23:28:19 +00004191#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004192
4193template<class _Tp>
4194inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004195shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004196 : __ptr_(__r.__ptr_),
4197 __cntrl_(__r.__cntrl_)
4198{
4199 __r.__ptr_ = 0;
4200 __r.__cntrl_ = 0;
4201}
4202
4203template<class _Tp>
4204template<class _Yp>
4205inline _LIBCPP_INLINE_VISIBILITY
4206shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r,
4207 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004208 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004209 : __ptr_(__r.__ptr_),
4210 __cntrl_(__r.__cntrl_)
4211{
4212 __r.__ptr_ = 0;
4213 __r.__cntrl_ = 0;
4214}
4215
Howard Hinnant73d21a42010-09-04 23:28:19 +00004216#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004217
4218template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004219template<class _Yp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004220#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004221shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r)
4222#else
Howard Hinnant92172b82010-08-21 21:14:53 +00004223shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004224#endif
4225 : __ptr_(__r.get())
4226{
4227 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4228 __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>());
4229 __enable_weak_this(__r.get());
4230 __r.release();
4231}
4232
4233template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004234template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004235#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004236shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4237#else
4238shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4239#endif
4240 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type)
4241 : __ptr_(__r.get())
4242{
4243 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4244 __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), allocator<_Yp>());
4245 __enable_weak_this(__r.get());
4246 __r.release();
4247}
4248
4249template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004250template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004251#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004252shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4253#else
4254shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4255#endif
4256 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type)
4257 : __ptr_(__r.get())
4258{
4259 typedef __shared_ptr_pointer<_Yp*,
4260 reference_wrapper<typename remove_reference<_Dp>::type>,
4261 allocator<_Yp> > _CntrlBlk;
4262 __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), allocator<_Yp>());
4263 __enable_weak_this(__r.get());
4264 __r.release();
4265}
4266
4267#ifndef _LIBCPP_HAS_NO_VARIADICS
4268
4269template<class _Tp>
4270template<class ..._Args>
4271shared_ptr<_Tp>
4272shared_ptr<_Tp>::make_shared(_Args&& ...__args)
4273{
4274 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4275 typedef allocator<_CntrlBlk> _A2;
4276 typedef __allocator_destructor<_A2> _D2;
4277 _A2 __a2;
4278 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004279 ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004280 shared_ptr<_Tp> __r;
4281 __r.__ptr_ = __hold2.get()->get();
4282 __r.__cntrl_ = __hold2.release();
4283 __r.__enable_weak_this(__r.__ptr_);
4284 return __r;
4285}
4286
4287template<class _Tp>
4288template<class _Alloc, class ..._Args>
4289shared_ptr<_Tp>
4290shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
4291{
4292 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4293 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4294 typedef __allocator_destructor<_A2> _D2;
4295 _A2 __a2(__a);
4296 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004297 ::new(__hold2.get()) _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004298 shared_ptr<_Tp> __r;
4299 __r.__ptr_ = __hold2.get()->get();
4300 __r.__cntrl_ = __hold2.release();
4301 __r.__enable_weak_this(__r.__ptr_);
4302 return __r;
4303}
4304
4305#else // _LIBCPP_HAS_NO_VARIADICS
4306
4307template<class _Tp>
4308shared_ptr<_Tp>
4309shared_ptr<_Tp>::make_shared()
4310{
4311 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4312 typedef allocator<_CntrlBlk> _Alloc2;
4313 typedef __allocator_destructor<_Alloc2> _D2;
4314 _Alloc2 __alloc2;
4315 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4316 ::new(__hold2.get()) _CntrlBlk(__alloc2);
4317 shared_ptr<_Tp> __r;
4318 __r.__ptr_ = __hold2.get()->get();
4319 __r.__cntrl_ = __hold2.release();
4320 __r.__enable_weak_this(__r.__ptr_);
4321 return __r;
4322}
4323
4324template<class _Tp>
4325template<class _A0>
4326shared_ptr<_Tp>
4327shared_ptr<_Tp>::make_shared(_A0& __a0)
4328{
4329 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4330 typedef allocator<_CntrlBlk> _Alloc2;
4331 typedef __allocator_destructor<_Alloc2> _D2;
4332 _Alloc2 __alloc2;
4333 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4334 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0);
4335 shared_ptr<_Tp> __r;
4336 __r.__ptr_ = __hold2.get()->get();
4337 __r.__cntrl_ = __hold2.release();
4338 __r.__enable_weak_this(__r.__ptr_);
4339 return __r;
4340}
4341
4342template<class _Tp>
4343template<class _A0, class _A1>
4344shared_ptr<_Tp>
4345shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4346{
4347 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4348 typedef allocator<_CntrlBlk> _Alloc2;
4349 typedef __allocator_destructor<_Alloc2> _D2;
4350 _Alloc2 __alloc2;
4351 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4352 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4353 shared_ptr<_Tp> __r;
4354 __r.__ptr_ = __hold2.get()->get();
4355 __r.__cntrl_ = __hold2.release();
4356 __r.__enable_weak_this(__r.__ptr_);
4357 return __r;
4358}
4359
4360template<class _Tp>
4361template<class _A0, class _A1, class _A2>
4362shared_ptr<_Tp>
4363shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4364{
4365 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4366 typedef allocator<_CntrlBlk> _Alloc2;
4367 typedef __allocator_destructor<_Alloc2> _D2;
4368 _Alloc2 __alloc2;
4369 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4370 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4371 shared_ptr<_Tp> __r;
4372 __r.__ptr_ = __hold2.get()->get();
4373 __r.__cntrl_ = __hold2.release();
4374 __r.__enable_weak_this(__r.__ptr_);
4375 return __r;
4376}
4377
4378template<class _Tp>
4379template<class _Alloc>
4380shared_ptr<_Tp>
4381shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
4382{
4383 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4384 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4385 typedef __allocator_destructor<_Alloc2> _D2;
4386 _Alloc2 __alloc2(__a);
4387 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4388 ::new(__hold2.get()) _CntrlBlk(__a);
4389 shared_ptr<_Tp> __r;
4390 __r.__ptr_ = __hold2.get()->get();
4391 __r.__cntrl_ = __hold2.release();
4392 __r.__enable_weak_this(__r.__ptr_);
4393 return __r;
4394}
4395
4396template<class _Tp>
4397template<class _Alloc, class _A0>
4398shared_ptr<_Tp>
4399shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
4400{
4401 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4402 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4403 typedef __allocator_destructor<_Alloc2> _D2;
4404 _Alloc2 __alloc2(__a);
4405 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4406 ::new(__hold2.get()) _CntrlBlk(__a, __a0);
4407 shared_ptr<_Tp> __r;
4408 __r.__ptr_ = __hold2.get()->get();
4409 __r.__cntrl_ = __hold2.release();
4410 __r.__enable_weak_this(__r.__ptr_);
4411 return __r;
4412}
4413
4414template<class _Tp>
4415template<class _Alloc, class _A0, class _A1>
4416shared_ptr<_Tp>
4417shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4418{
4419 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4420 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4421 typedef __allocator_destructor<_Alloc2> _D2;
4422 _Alloc2 __alloc2(__a);
4423 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4424 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1);
4425 shared_ptr<_Tp> __r;
4426 __r.__ptr_ = __hold2.get()->get();
4427 __r.__cntrl_ = __hold2.release();
4428 __r.__enable_weak_this(__r.__ptr_);
4429 return __r;
4430}
4431
4432template<class _Tp>
4433template<class _Alloc, class _A0, class _A1, class _A2>
4434shared_ptr<_Tp>
4435shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4436{
4437 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4438 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4439 typedef __allocator_destructor<_Alloc2> _D2;
4440 _Alloc2 __alloc2(__a);
4441 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4442 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1, __a2);
4443 shared_ptr<_Tp> __r;
4444 __r.__ptr_ = __hold2.get()->get();
4445 __r.__cntrl_ = __hold2.release();
4446 __r.__enable_weak_this(__r.__ptr_);
4447 return __r;
4448}
4449
4450#endif // _LIBCPP_HAS_NO_VARIADICS
4451
4452template<class _Tp>
4453shared_ptr<_Tp>::~shared_ptr()
4454{
4455 if (__cntrl_)
4456 __cntrl_->__release_shared();
4457}
4458
4459template<class _Tp>
4460inline _LIBCPP_INLINE_VISIBILITY
4461shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004462shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004463{
4464 shared_ptr(__r).swap(*this);
4465 return *this;
4466}
4467
4468template<class _Tp>
4469template<class _Yp>
4470inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004471typename enable_if
4472<
4473 is_convertible<_Yp*, _Tp*>::value,
4474 shared_ptr<_Tp>&
4475>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004476shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004477{
4478 shared_ptr(__r).swap(*this);
4479 return *this;
4480}
4481
Howard Hinnant73d21a42010-09-04 23:28:19 +00004482#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004483
4484template<class _Tp>
4485inline _LIBCPP_INLINE_VISIBILITY
4486shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004487shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004488{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004489 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004490 return *this;
4491}
4492
4493template<class _Tp>
4494template<class _Yp>
4495inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004496typename enable_if
4497<
4498 is_convertible<_Yp*, _Tp*>::value,
4499 shared_ptr<_Tp>&
4500>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004501shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r)
4502{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004503 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004504 return *this;
4505}
4506
4507template<class _Tp>
4508template<class _Yp>
4509inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004510typename enable_if
4511<
4512 !is_array<_Yp>::value &&
4513 is_convertible<_Yp*, _Tp*>::value,
4514 shared_ptr<_Tp>&
4515>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004516shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r)
4517{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004518 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004519 return *this;
4520}
4521
4522template<class _Tp>
4523template <class _Yp, class _Dp>
4524inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004525typename enable_if
4526<
4527 !is_array<_Yp>::value &&
4528 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4529 shared_ptr<_Tp>&
4530>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004531shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r)
4532{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004533 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004534 return *this;
4535}
4536
Howard Hinnant73d21a42010-09-04 23:28:19 +00004537#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004538
4539template<class _Tp>
4540template<class _Yp>
4541inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004542typename enable_if
4543<
4544 !is_array<_Yp>::value &&
4545 is_convertible<_Yp*, _Tp*>::value,
4546 shared_ptr<_Tp>&
4547>::type
Howard Hinnant324bb032010-08-22 00:02:43 +00004548shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004549{
4550 shared_ptr(__r).swap(*this);
4551 return *this;
4552}
4553
4554template<class _Tp>
4555template <class _Yp, class _Dp>
4556inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004557typename enable_if
4558<
4559 !is_array<_Yp>::value &&
4560 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4561 shared_ptr<_Tp>&
4562>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004563shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r)
4564{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004565 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004566 return *this;
4567}
4568
Howard Hinnant73d21a42010-09-04 23:28:19 +00004569#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004570
4571template<class _Tp>
4572inline _LIBCPP_INLINE_VISIBILITY
4573void
Howard Hinnant1694d232011-05-28 14:41:13 +00004574shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004575{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004576 _VSTD::swap(__ptr_, __r.__ptr_);
4577 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004578}
4579
4580template<class _Tp>
4581inline _LIBCPP_INLINE_VISIBILITY
4582void
Howard Hinnant1694d232011-05-28 14:41:13 +00004583shared_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004584{
4585 shared_ptr().swap(*this);
4586}
4587
4588template<class _Tp>
4589template<class _Yp>
4590inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004591typename enable_if
4592<
4593 is_convertible<_Yp*, _Tp*>::value,
4594 void
4595>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004596shared_ptr<_Tp>::reset(_Yp* __p)
4597{
4598 shared_ptr(__p).swap(*this);
4599}
4600
4601template<class _Tp>
4602template<class _Yp, class _Dp>
4603inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004604typename enable_if
4605<
4606 is_convertible<_Yp*, _Tp*>::value,
4607 void
4608>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004609shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d)
4610{
4611 shared_ptr(__p, __d).swap(*this);
4612}
4613
4614template<class _Tp>
4615template<class _Yp, class _Dp, class _Alloc>
4616inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004617typename enable_if
4618<
4619 is_convertible<_Yp*, _Tp*>::value,
4620 void
4621>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004622shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a)
4623{
4624 shared_ptr(__p, __d, __a).swap(*this);
4625}
4626
4627#ifndef _LIBCPP_HAS_NO_VARIADICS
4628
Howard Hinnant324bb032010-08-22 00:02:43 +00004629template<class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004630inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004631typename enable_if
4632<
4633 !is_array<_Tp>::value,
4634 shared_ptr<_Tp>
4635>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004636make_shared(_Args&& ...__args)
4637{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004638 return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004639}
4640
Howard Hinnant324bb032010-08-22 00:02:43 +00004641template<class _Tp, class _Alloc, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004642inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004643typename enable_if
4644<
4645 !is_array<_Tp>::value,
4646 shared_ptr<_Tp>
4647>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004648allocate_shared(const _Alloc& __a, _Args&& ...__args)
4649{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004650 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004651}
4652
4653#else // _LIBCPP_HAS_NO_VARIADICS
4654
4655template<class _Tp>
4656inline _LIBCPP_INLINE_VISIBILITY
4657shared_ptr<_Tp>
4658make_shared()
4659{
4660 return shared_ptr<_Tp>::make_shared();
4661}
4662
4663template<class _Tp, class _A0>
4664inline _LIBCPP_INLINE_VISIBILITY
4665shared_ptr<_Tp>
4666make_shared(_A0& __a0)
4667{
4668 return shared_ptr<_Tp>::make_shared(__a0);
4669}
4670
4671template<class _Tp, class _A0, class _A1>
4672inline _LIBCPP_INLINE_VISIBILITY
4673shared_ptr<_Tp>
4674make_shared(_A0& __a0, _A1& __a1)
4675{
4676 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4677}
4678
Howard Hinnant324bb032010-08-22 00:02:43 +00004679template<class _Tp, class _A0, class _A1, class _A2>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004680inline _LIBCPP_INLINE_VISIBILITY
4681shared_ptr<_Tp>
4682make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4683{
4684 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4685}
4686
4687template<class _Tp, class _Alloc>
4688inline _LIBCPP_INLINE_VISIBILITY
4689shared_ptr<_Tp>
4690allocate_shared(const _Alloc& __a)
4691{
4692 return shared_ptr<_Tp>::allocate_shared(__a);
4693}
4694
4695template<class _Tp, class _Alloc, class _A0>
4696inline _LIBCPP_INLINE_VISIBILITY
4697shared_ptr<_Tp>
4698allocate_shared(const _Alloc& __a, _A0& __a0)
4699{
4700 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
4701}
4702
4703template<class _Tp, class _Alloc, class _A0, class _A1>
4704inline _LIBCPP_INLINE_VISIBILITY
4705shared_ptr<_Tp>
4706allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4707{
4708 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4709}
4710
4711template<class _Tp, class _Alloc, class _A0, class _A1, class _A2>
4712inline _LIBCPP_INLINE_VISIBILITY
4713shared_ptr<_Tp>
4714allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4715{
4716 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
4717}
4718
4719#endif // _LIBCPP_HAS_NO_VARIADICS
4720
4721template<class _Tp, class _Up>
4722inline _LIBCPP_INLINE_VISIBILITY
4723bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004724operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004725{
4726 return __x.get() == __y.get();
4727}
4728
4729template<class _Tp, class _Up>
4730inline _LIBCPP_INLINE_VISIBILITY
4731bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004732operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004733{
4734 return !(__x == __y);
4735}
4736
4737template<class _Tp, class _Up>
4738inline _LIBCPP_INLINE_VISIBILITY
4739bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004740operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004741{
Howard Hinnant3fadda32012-02-21 21:02:58 +00004742 typedef typename common_type<_Tp*, _Up*>::type _V;
4743 return less<_V>()(__x.get(), __y.get());
4744}
4745
4746template<class _Tp, class _Up>
4747inline _LIBCPP_INLINE_VISIBILITY
4748bool
4749operator>(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4750{
4751 return __y < __x;
4752}
4753
4754template<class _Tp, class _Up>
4755inline _LIBCPP_INLINE_VISIBILITY
4756bool
4757operator<=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4758{
4759 return !(__y < __x);
4760}
4761
4762template<class _Tp, class _Up>
4763inline _LIBCPP_INLINE_VISIBILITY
4764bool
4765operator>=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4766{
4767 return !(__x < __y);
4768}
4769
4770template<class _Tp>
4771inline _LIBCPP_INLINE_VISIBILITY
4772bool
4773operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4774{
4775 return !__x;
4776}
4777
4778template<class _Tp>
4779inline _LIBCPP_INLINE_VISIBILITY
4780bool
4781operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4782{
4783 return !__x;
4784}
4785
4786template<class _Tp>
4787inline _LIBCPP_INLINE_VISIBILITY
4788bool
4789operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4790{
4791 return static_cast<bool>(__x);
4792}
4793
4794template<class _Tp>
4795inline _LIBCPP_INLINE_VISIBILITY
4796bool
4797operator!=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4798{
4799 return static_cast<bool>(__x);
4800}
4801
4802template<class _Tp>
4803inline _LIBCPP_INLINE_VISIBILITY
4804bool
4805operator<(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4806{
4807 return less<_Tp*>()(__x.get(), nullptr);
4808}
4809
4810template<class _Tp>
4811inline _LIBCPP_INLINE_VISIBILITY
4812bool
4813operator<(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4814{
4815 return less<_Tp*>()(nullptr, __x.get());
4816}
4817
4818template<class _Tp>
4819inline _LIBCPP_INLINE_VISIBILITY
4820bool
4821operator>(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4822{
4823 return nullptr < __x;
4824}
4825
4826template<class _Tp>
4827inline _LIBCPP_INLINE_VISIBILITY
4828bool
4829operator>(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4830{
4831 return __x < nullptr;
4832}
4833
4834template<class _Tp>
4835inline _LIBCPP_INLINE_VISIBILITY
4836bool
4837operator<=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4838{
4839 return !(nullptr < __x);
4840}
4841
4842template<class _Tp>
4843inline _LIBCPP_INLINE_VISIBILITY
4844bool
4845operator<=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4846{
4847 return !(__x < nullptr);
4848}
4849
4850template<class _Tp>
4851inline _LIBCPP_INLINE_VISIBILITY
4852bool
4853operator>=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4854{
4855 return !(__x < nullptr);
4856}
4857
4858template<class _Tp>
4859inline _LIBCPP_INLINE_VISIBILITY
4860bool
4861operator>=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4862{
4863 return !(nullptr < __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004864}
4865
4866template<class _Tp>
4867inline _LIBCPP_INLINE_VISIBILITY
4868void
Howard Hinnant1694d232011-05-28 14:41:13 +00004869swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004870{
4871 __x.swap(__y);
4872}
4873
4874template<class _Tp, class _Up>
4875inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004876typename enable_if
4877<
4878 !is_array<_Tp>::value && !is_array<_Up>::value,
4879 shared_ptr<_Tp>
4880>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004881static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004882{
4883 return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get()));
4884}
4885
4886template<class _Tp, class _Up>
4887inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004888typename enable_if
4889<
4890 !is_array<_Tp>::value && !is_array<_Up>::value,
4891 shared_ptr<_Tp>
4892>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004893dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004894{
4895 _Tp* __p = dynamic_cast<_Tp*>(__r.get());
4896 return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>();
4897}
4898
4899template<class _Tp, class _Up>
Howard Hinnant57199402012-01-02 17:56:02 +00004900typename enable_if
4901<
4902 is_array<_Tp>::value == is_array<_Up>::value,
4903 shared_ptr<_Tp>
4904>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004905const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004906{
Howard Hinnant57199402012-01-02 17:56:02 +00004907 typedef typename remove_extent<_Tp>::type _RTp;
4908 return shared_ptr<_Tp>(__r, const_cast<_RTp*>(__r.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004909}
4910
Howard Hinnantd4444702010-08-11 17:04:31 +00004911#ifndef _LIBCPP_NO_RTTI
4912
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004913template<class _Dp, class _Tp>
4914inline _LIBCPP_INLINE_VISIBILITY
4915_Dp*
Howard Hinnant1694d232011-05-28 14:41:13 +00004916get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004917{
4918 return __p.template __get_deleter<_Dp>();
4919}
4920
Howard Hinnant324bb032010-08-22 00:02:43 +00004921#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00004922
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004923template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004924class _LIBCPP_VISIBLE weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004925{
Howard Hinnant324bb032010-08-22 00:02:43 +00004926public:
4927 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004928private:
4929 element_type* __ptr_;
4930 __shared_weak_count* __cntrl_;
4931
Howard Hinnant324bb032010-08-22 00:02:43 +00004932public:
Howard Hinnant46e94932012-07-07 20:56:04 +00004933 _LIBCPP_CONSTEXPR weak_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004934 template<class _Yp> weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004935 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4936 _NOEXCEPT;
4937 weak_ptr(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004938 template<class _Yp> weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004939 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4940 _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004941
Howard Hinnant57199402012-01-02 17:56:02 +00004942#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4943 weak_ptr(weak_ptr&& __r) _NOEXCEPT;
4944 template<class _Yp> weak_ptr(weak_ptr<_Yp>&& __r,
4945 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4946 _NOEXCEPT;
4947#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00004948 ~weak_ptr();
4949
Howard Hinnant1694d232011-05-28 14:41:13 +00004950 weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00004951 template<class _Yp>
4952 typename enable_if
4953 <
4954 is_convertible<_Yp*, element_type*>::value,
4955 weak_ptr&
4956 >::type
4957 operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT;
4958
4959#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4960
4961 weak_ptr& operator=(weak_ptr&& __r) _NOEXCEPT;
4962 template<class _Yp>
4963 typename enable_if
4964 <
4965 is_convertible<_Yp*, element_type*>::value,
4966 weak_ptr&
4967 >::type
4968 operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT;
4969
4970#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
4971
4972 template<class _Yp>
4973 typename enable_if
4974 <
4975 is_convertible<_Yp*, element_type*>::value,
4976 weak_ptr&
4977 >::type
4978 operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004979
Howard Hinnant1694d232011-05-28 14:41:13 +00004980 void swap(weak_ptr& __r) _NOEXCEPT;
4981 void reset() _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004982
Howard Hinnant82894812010-09-22 16:48:34 +00004983 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004984 long use_count() const _NOEXCEPT
4985 {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00004986 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004987 bool expired() const _NOEXCEPT
4988 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
4989 shared_ptr<_Tp> lock() const _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00004990 template<class _Up>
4991 _LIBCPP_INLINE_VISIBILITY
4992 bool owner_before(const shared_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004993 {return __cntrl_ < __r.__cntrl_;}
Howard Hinnant82894812010-09-22 16:48:34 +00004994 template<class _Up>
4995 _LIBCPP_INLINE_VISIBILITY
4996 bool owner_before(const weak_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004997 {return __cntrl_ < __r.__cntrl_;}
4998
Howard Hinnant82894812010-09-22 16:48:34 +00004999 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
5000 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005001};
5002
5003template<class _Tp>
5004inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant46e94932012-07-07 20:56:04 +00005005_LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00005006weak_ptr<_Tp>::weak_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005007 : __ptr_(0),
5008 __cntrl_(0)
5009{
5010}
5011
5012template<class _Tp>
5013inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005014weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005015 : __ptr_(__r.__ptr_),
5016 __cntrl_(__r.__cntrl_)
5017{
5018 if (__cntrl_)
5019 __cntrl_->__add_weak();
5020}
5021
5022template<class _Tp>
5023template<class _Yp>
5024inline _LIBCPP_INLINE_VISIBILITY
5025weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005026 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005027 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005028 : __ptr_(__r.__ptr_),
5029 __cntrl_(__r.__cntrl_)
5030{
5031 if (__cntrl_)
5032 __cntrl_->__add_weak();
5033}
5034
5035template<class _Tp>
5036template<class _Yp>
5037inline _LIBCPP_INLINE_VISIBILITY
5038weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005039 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005040 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005041 : __ptr_(__r.__ptr_),
5042 __cntrl_(__r.__cntrl_)
5043{
5044 if (__cntrl_)
5045 __cntrl_->__add_weak();
5046}
5047
Howard Hinnant57199402012-01-02 17:56:02 +00005048#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5049
5050template<class _Tp>
5051inline _LIBCPP_INLINE_VISIBILITY
5052weak_ptr<_Tp>::weak_ptr(weak_ptr&& __r) _NOEXCEPT
5053 : __ptr_(__r.__ptr_),
5054 __cntrl_(__r.__cntrl_)
5055{
5056 __r.__ptr_ = 0;
5057 __r.__cntrl_ = 0;
5058}
5059
5060template<class _Tp>
5061template<class _Yp>
5062inline _LIBCPP_INLINE_VISIBILITY
5063weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp>&& __r,
5064 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
5065 _NOEXCEPT
5066 : __ptr_(__r.__ptr_),
5067 __cntrl_(__r.__cntrl_)
5068{
5069 __r.__ptr_ = 0;
5070 __r.__cntrl_ = 0;
5071}
5072
5073#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5074
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005075template<class _Tp>
5076weak_ptr<_Tp>::~weak_ptr()
5077{
5078 if (__cntrl_)
5079 __cntrl_->__release_weak();
5080}
5081
5082template<class _Tp>
5083inline _LIBCPP_INLINE_VISIBILITY
5084weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00005085weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005086{
5087 weak_ptr(__r).swap(*this);
5088 return *this;
5089}
5090
5091template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005092template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005093inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005094typename enable_if
5095<
5096 is_convertible<_Yp*, _Tp*>::value,
5097 weak_ptr<_Tp>&
5098>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005099weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005100{
5101 weak_ptr(__r).swap(*this);
5102 return *this;
5103}
5104
Howard Hinnant57199402012-01-02 17:56:02 +00005105#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5106
5107template<class _Tp>
5108inline _LIBCPP_INLINE_VISIBILITY
5109weak_ptr<_Tp>&
5110weak_ptr<_Tp>::operator=(weak_ptr&& __r) _NOEXCEPT
5111{
5112 weak_ptr(_VSTD::move(__r)).swap(*this);
5113 return *this;
5114}
5115
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005116template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005117template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005118inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005119typename enable_if
5120<
5121 is_convertible<_Yp*, _Tp*>::value,
5122 weak_ptr<_Tp>&
5123>::type
5124weak_ptr<_Tp>::operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT
5125{
5126 weak_ptr(_VSTD::move(__r)).swap(*this);
5127 return *this;
5128}
5129
5130#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5131
5132template<class _Tp>
5133template<class _Yp>
5134inline _LIBCPP_INLINE_VISIBILITY
5135typename enable_if
5136<
5137 is_convertible<_Yp*, _Tp*>::value,
5138 weak_ptr<_Tp>&
5139>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005140weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005141{
5142 weak_ptr(__r).swap(*this);
5143 return *this;
5144}
5145
5146template<class _Tp>
5147inline _LIBCPP_INLINE_VISIBILITY
5148void
Howard Hinnant1694d232011-05-28 14:41:13 +00005149weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005150{
Howard Hinnant0949eed2011-06-30 21:18:19 +00005151 _VSTD::swap(__ptr_, __r.__ptr_);
5152 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005153}
5154
5155template<class _Tp>
5156inline _LIBCPP_INLINE_VISIBILITY
5157void
Howard Hinnant1694d232011-05-28 14:41:13 +00005158swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005159{
5160 __x.swap(__y);
5161}
5162
5163template<class _Tp>
5164inline _LIBCPP_INLINE_VISIBILITY
5165void
Howard Hinnant1694d232011-05-28 14:41:13 +00005166weak_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005167{
5168 weak_ptr().swap(*this);
5169}
5170
5171template<class _Tp>
5172template<class _Yp>
5173shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r,
5174 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
5175 : __ptr_(__r.__ptr_),
5176 __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_)
5177{
5178 if (__cntrl_ == 0)
5179#ifndef _LIBCPP_NO_EXCEPTIONS
5180 throw bad_weak_ptr();
5181#else
5182 assert(!"bad_weak_ptr");
5183#endif
5184}
5185
5186template<class _Tp>
5187shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00005188weak_ptr<_Tp>::lock() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005189{
5190 shared_ptr<_Tp> __r;
5191 __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_;
5192 if (__r.__cntrl_)
5193 __r.__ptr_ = __ptr_;
5194 return __r;
5195}
5196
Howard Hinnant324bb032010-08-22 00:02:43 +00005197template <class _Tp> struct owner_less;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005198
5199template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005200struct _LIBCPP_VISIBLE owner_less<shared_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005201 : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool>
Howard Hinnant324bb032010-08-22 00:02:43 +00005202{
5203 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005204 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005205 bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5206 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005207 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005208 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5209 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005210 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005211 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5212 {return __x.owner_before(__y);}
Howard Hinnant324bb032010-08-22 00:02:43 +00005213};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005214
5215template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005216struct _LIBCPP_VISIBLE owner_less<weak_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005217 : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool>
5218{
Howard Hinnant324bb032010-08-22 00:02:43 +00005219 typedef bool result_type;
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, weak_ptr<_Tp> const& __y) const
5222 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005223 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005224 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5225 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005226 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005227 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5228 {return __x.owner_before(__y);}
5229};
5230
5231template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005232class _LIBCPP_VISIBLE enable_shared_from_this
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005233{
5234 mutable weak_ptr<_Tp> __weak_this_;
Howard Hinnant324bb032010-08-22 00:02:43 +00005235protected:
Howard Hinnant46e94932012-07-07 20:56:04 +00005236 _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR
Howard Hinnant1694d232011-05-28 14:41:13 +00005237 enable_shared_from_this() _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005238 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005239 enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005240 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005241 enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT
5242 {return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +00005243 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005244 ~enable_shared_from_this() {}
Howard Hinnant324bb032010-08-22 00:02:43 +00005245public:
Howard Hinnant82894812010-09-22 16:48:34 +00005246 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005247 shared_ptr<_Tp> shared_from_this()
5248 {return shared_ptr<_Tp>(__weak_this_);}
Howard Hinnant82894812010-09-22 16:48:34 +00005249 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005250 shared_ptr<_Tp const> shared_from_this() const
5251 {return shared_ptr<const _Tp>(__weak_this_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005252
5253 template <class _Up> friend class shared_ptr;
5254};
5255
Howard Hinnant21aefc32010-06-03 16:42:57 +00005256template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005257struct _LIBCPP_VISIBLE hash<shared_ptr<_Tp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00005258{
5259 typedef shared_ptr<_Tp> argument_type;
5260 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005261 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005262 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00005263 {
5264 return hash<_Tp*>()(__ptr.get());
5265 }
5266};
5267
Howard Hinnant99968442011-11-29 18:15:50 +00005268template<class _CharT, class _Traits, class _Yp>
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005269inline _LIBCPP_INLINE_VISIBILITY
5270basic_ostream<_CharT, _Traits>&
Howard Hinnant99968442011-11-29 18:15:50 +00005271operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p);
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005272
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005273#if __has_feature(cxx_atomic)
5274
5275class __sp_mut
5276{
Howard Hinnant9c0df142012-10-30 19:06:59 +00005277 void* __lx;
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005278public:
5279 void lock() _NOEXCEPT;
5280 void unlock() _NOEXCEPT;
5281
5282private:
5283 _LIBCPP_CONSTEXPR __sp_mut(void*) _NOEXCEPT;
5284 __sp_mut(const __sp_mut&);
5285 __sp_mut& operator=(const __sp_mut&);
5286
Howard Hinnant33be35e2012-09-14 00:39:16 +00005287 friend _LIBCPP_VISIBLE __sp_mut& __get_sp_mut(const void*);
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005288};
5289
Howard Hinnant33be35e2012-09-14 00:39:16 +00005290_LIBCPP_VISIBLE __sp_mut& __get_sp_mut(const void*);
Howard Hinnant5fec82d2012-07-30 01:40:57 +00005291
5292template <class _Tp>
5293inline _LIBCPP_INLINE_VISIBILITY
5294bool
5295atomic_is_lock_free(const shared_ptr<_Tp>*)
5296{
5297 return false;
5298}
5299
5300template <class _Tp>
5301shared_ptr<_Tp>
5302atomic_load(const shared_ptr<_Tp>* __p)
5303{
5304 __sp_mut& __m = __get_sp_mut(__p);
5305 __m.lock();
5306 shared_ptr<_Tp> __q = *__p;
5307 __m.unlock();
5308 return __q;
5309}
5310
5311template <class _Tp>
5312inline _LIBCPP_INLINE_VISIBILITY
5313shared_ptr<_Tp>
5314atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order)
5315{
5316 return atomic_load(__p);
5317}
5318
5319template <class _Tp>
5320void
5321atomic_store(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r)
5322{
5323 __sp_mut& __m = __get_sp_mut(__p);
5324 __m.lock();
5325 __p->swap(__r);
5326 __m.unlock();
5327}
5328
5329template <class _Tp>
5330inline _LIBCPP_INLINE_VISIBILITY
5331void
5332atomic_store_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
5333{
5334 atomic_store(__p, __r);
5335}
5336
5337template <class _Tp>
5338shared_ptr<_Tp>
5339atomic_exchange(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r)
5340{
5341 __sp_mut& __m = __get_sp_mut(__p);
5342 __m.lock();
5343 __p->swap(__r);
5344 __m.unlock();
5345 return __r;
5346}
5347
5348template <class _Tp>
5349inline _LIBCPP_INLINE_VISIBILITY
5350shared_ptr<_Tp>
5351atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order)
5352{
5353 return atomic_exchange(__p, __r);
5354}
5355
5356template <class _Tp>
5357bool
5358atomic_compare_exchange_strong(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w)
5359{
5360 __sp_mut& __m = __get_sp_mut(__p);
5361 __m.lock();
5362 if (__p->__owner_equivalent(*__v))
5363 {
5364 *__p = __w;
5365 __m.unlock();
5366 return true;
5367 }
5368 *__v = *__p;
5369 __m.unlock();
5370 return false;
5371}
5372
5373template <class _Tp>
5374inline _LIBCPP_INLINE_VISIBILITY
5375bool
5376atomic_compare_exchange_weak(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w)
5377{
5378 return atomic_compare_exchange_strong(__p, __v, __w);
5379}
5380
5381template <class _Tp>
5382inline _LIBCPP_INLINE_VISIBILITY
5383bool
5384atomic_compare_exchange_strong_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
5385 shared_ptr<_Tp> __w, memory_order, memory_order)
5386{
5387 return atomic_compare_exchange_strong(__p, __v, __w);
5388}
5389
5390template <class _Tp>
5391inline _LIBCPP_INLINE_VISIBILITY
5392bool
5393atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v,
5394 shared_ptr<_Tp> __w, memory_order, memory_order)
5395{
5396 return atomic_compare_exchange_weak(__p, __v, __w);
5397}
5398
5399#endif // __has_feature(cxx_atomic)
5400
Howard Hinnant324bb032010-08-22 00:02:43 +00005401//enum class
Howard Hinnant82894812010-09-22 16:48:34 +00005402struct _LIBCPP_VISIBLE pointer_safety
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005403{
Howard Hinnant9c0df142012-10-30 19:06:59 +00005404 enum __lx
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005405 {
5406 relaxed,
5407 preferred,
5408 strict
5409 };
5410
Howard Hinnant9c0df142012-10-30 19:06:59 +00005411 __lx __v_;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005412
Howard Hinnant82894812010-09-22 16:48:34 +00005413 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant9c0df142012-10-30 19:06:59 +00005414 pointer_safety(__lx __v) : __v_(__v) {}
Howard Hinnant82894812010-09-22 16:48:34 +00005415 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005416 operator int() const {return __v_;}
5417};
5418
5419void declare_reachable(void* __p);
5420void declare_no_pointers(char* __p, size_t __n);
5421void undeclare_no_pointers(char* __p, size_t __n);
Howard Hinnant1694d232011-05-28 14:41:13 +00005422pointer_safety get_pointer_safety() _NOEXCEPT;
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005423void* __undeclare_reachable(void* __p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005424
5425template <class _Tp>
5426inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005427_Tp*
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005428undeclare_reachable(_Tp* __p)
5429{
5430 return static_cast<_Tp*>(__undeclare_reachable(__p));
5431}
5432
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005433void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005434
5435_LIBCPP_END_NAMESPACE_STD
5436
5437#endif // _LIBCPP_MEMORY