blob: 7177549b868f8680983f6d427ce9e6d24d70b55c [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 Hinnantbc8d3f92010-05-11 19:42:16 +0000599#if defined(_LIBCPP_NO_EXCEPTIONS)
600 #include <cassert>
601#endif
602
Howard Hinnant66c6f972011-11-29 16:45:27 +0000603#include <__undef_min_max>
604
Howard Hinnant08e17472011-10-17 20:05:10 +0000605#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000606#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000607#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000608
609_LIBCPP_BEGIN_NAMESPACE_STD
610
611// allocator_arg_t
612
Howard Hinnant82894812010-09-22 16:48:34 +0000613struct _LIBCPP_VISIBLE allocator_arg_t { };
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000614
615extern const allocator_arg_t allocator_arg;
616
617// 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 Hinnantbc8d3f92010-05-11 19:42:16 +0000680// pointer_traits
681
682template <class _Tp>
683struct __has_element_type
684{
685private:
686 struct __two {char _; char __;};
687 template <class _Up> static __two __test(...);
688 template <class _Up> static char __test(typename _Up::element_type* = 0);
689public:
690 static const bool value = sizeof(__test<_Tp>(0)) == 1;
691};
692
693template <class _Ptr, bool = __has_element_type<_Ptr>::value>
694struct __pointer_traits_element_type;
695
696template <class _Ptr>
697struct __pointer_traits_element_type<_Ptr, true>
698{
699 typedef typename _Ptr::element_type type;
700};
701
702#ifndef _LIBCPP_HAS_NO_VARIADICS
703
704template <template <class, class...> class _Sp, class _Tp, class ..._Args>
705struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, true>
706{
707 typedef typename _Sp<_Tp, _Args...>::element_type type;
708};
709
710template <template <class, class...> class _Sp, class _Tp, class ..._Args>
711struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, false>
712{
713 typedef _Tp type;
714};
715
Howard Hinnant324bb032010-08-22 00:02:43 +0000716#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000717
718template <template <class> class _Sp, class _Tp>
719struct __pointer_traits_element_type<_Sp<_Tp>, true>
720{
721 typedef typename _Sp<_Tp>::element_type type;
722};
723
724template <template <class> class _Sp, class _Tp>
725struct __pointer_traits_element_type<_Sp<_Tp>, false>
726{
727 typedef _Tp type;
728};
729
730template <template <class, class> class _Sp, class _Tp, class _A0>
731struct __pointer_traits_element_type<_Sp<_Tp, _A0>, true>
732{
733 typedef typename _Sp<_Tp, _A0>::element_type type;
734};
735
736template <template <class, class> class _Sp, class _Tp, class _A0>
737struct __pointer_traits_element_type<_Sp<_Tp, _A0>, false>
738{
739 typedef _Tp type;
740};
741
742template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
743struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, true>
744{
745 typedef typename _Sp<_Tp, _A0, _A1>::element_type type;
746};
747
748template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
749struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, false>
750{
751 typedef _Tp type;
752};
753
754template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
755 class _A1, class _A2>
756struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, true>
757{
758 typedef typename _Sp<_Tp, _A0, _A1, _A2>::element_type type;
759};
760
761template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
762 class _A1, class _A2>
763struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, false>
764{
765 typedef _Tp type;
766};
767
Howard Hinnant324bb032010-08-22 00:02:43 +0000768#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000769
770template <class _Tp>
771struct __has_difference_type
772{
773private:
774 struct __two {char _; char __;};
775 template <class _Up> static __two __test(...);
776 template <class _Up> static char __test(typename _Up::difference_type* = 0);
777public:
778 static const bool value = sizeof(__test<_Tp>(0)) == 1;
779};
780
781template <class _Ptr, bool = __has_difference_type<_Ptr>::value>
782struct __pointer_traits_difference_type
783{
784 typedef ptrdiff_t type;
785};
786
787template <class _Ptr>
788struct __pointer_traits_difference_type<_Ptr, true>
789{
790 typedef typename _Ptr::difference_type type;
791};
792
793template <class _Tp, class _Up>
794struct __has_rebind
795{
796private:
797 struct __two {char _; char __;};
798 template <class _Xp> static __two __test(...);
799 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0);
800public:
801 static const bool value = sizeof(__test<_Tp>(0)) == 1;
802};
803
804template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
805struct __pointer_traits_rebind
806{
807#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
808 typedef typename _Tp::template rebind<_Up> type;
809#else
810 typedef typename _Tp::template rebind<_Up>::other type;
811#endif
812};
813
814#ifndef _LIBCPP_HAS_NO_VARIADICS
815
816template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
817struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, true>
818{
819#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
820 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up> type;
821#else
822 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up>::other type;
823#endif
824};
825
826template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
827struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, false>
828{
829 typedef _Sp<_Up, _Args...> type;
830};
831
Howard Hinnant324bb032010-08-22 00:02:43 +0000832#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000833
834template <template <class> class _Sp, class _Tp, class _Up>
835struct __pointer_traits_rebind<_Sp<_Tp>, _Up, true>
836{
837#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
838 typedef typename _Sp<_Tp>::template rebind<_Up> type;
839#else
840 typedef typename _Sp<_Tp>::template rebind<_Up>::other type;
841#endif
842};
843
844template <template <class> class _Sp, class _Tp, class _Up>
845struct __pointer_traits_rebind<_Sp<_Tp>, _Up, false>
846{
847 typedef _Sp<_Up> type;
848};
849
850template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
851struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, true>
852{
853#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
854 typedef typename _Sp<_Tp, _A0>::template rebind<_Up> type;
855#else
856 typedef typename _Sp<_Tp, _A0>::template rebind<_Up>::other type;
857#endif
858};
859
860template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
861struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, false>
862{
863 typedef _Sp<_Up, _A0> type;
864};
865
866template <template <class, class, class> class _Sp, class _Tp, class _A0,
867 class _A1, class _Up>
868struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, true>
869{
870#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
871 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up> type;
872#else
873 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up>::other type;
874#endif
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, false>
880{
881 typedef _Sp<_Up, _A0, _A1> type;
882};
883
884template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
885 class _A1, class _A2, class _Up>
886struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, true>
887{
888#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
889 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up> type;
890#else
891 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
892#endif
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, false>
898{
899 typedef _Sp<_Up, _A0, _A1, _A2> type;
900};
901
Howard Hinnant324bb032010-08-22 00:02:43 +0000902#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000903
904template <class _Ptr>
Howard Hinnant82894812010-09-22 16:48:34 +0000905struct _LIBCPP_VISIBLE pointer_traits
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000906{
907 typedef _Ptr pointer;
908 typedef typename __pointer_traits_element_type<pointer>::type element_type;
909 typedef typename __pointer_traits_difference_type<pointer>::type difference_type;
910
911#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnant6b41c602011-05-11 20:21:19 +0000912 template <class _Up> using rebind = typename __pointer_traits_rebind<pointer, _Up>::type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000913#else
914 template <class _Up> struct rebind
915 {typedef typename __pointer_traits_rebind<pointer, _Up>::type other;};
Howard Hinnant324bb032010-08-22 00:02:43 +0000916#endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000917
918private:
919 struct __nat {};
920public:
Howard Hinnant82894812010-09-22 16:48:34 +0000921 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000922 static pointer pointer_to(typename conditional<is_void<element_type>::value,
923 __nat, element_type>::type& __r)
924 {return pointer::pointer_to(__r);}
925};
926
927template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +0000928struct _LIBCPP_VISIBLE pointer_traits<_Tp*>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000929{
930 typedef _Tp* pointer;
931 typedef _Tp element_type;
932 typedef ptrdiff_t difference_type;
933
934#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
935 template <class _Up> using rebind = _Up*;
936#else
937 template <class _Up> struct rebind {typedef _Up* other;};
938#endif
939
940private:
941 struct __nat {};
942public:
Howard Hinnant82894812010-09-22 16:48:34 +0000943 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000944 static pointer pointer_to(typename conditional<is_void<element_type>::value,
Howard Hinnant1694d232011-05-28 14:41:13 +0000945 __nat, element_type>::type& __r) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +0000946 {return _VSTD::addressof(__r);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000947};
948
949// allocator_traits
950
951namespace __has_pointer_type_imp
952{
953 template <class _Up> static __two test(...);
954 template <class _Up> static char test(typename _Up::pointer* = 0);
955}
956
957template <class _Tp>
958struct __has_pointer_type
959 : public integral_constant<bool, sizeof(__has_pointer_type_imp::test<_Tp>(0)) == 1>
960{
961};
962
963namespace __pointer_type_imp
964{
965
966template <class _Tp, class _Dp, bool = __has_pointer_type<_Dp>::value>
967struct __pointer_type
968{
969 typedef typename _Dp::pointer type;
970};
971
972template <class _Tp, class _Dp>
973struct __pointer_type<_Tp, _Dp, false>
974{
975 typedef _Tp* type;
976};
977
Howard Hinnant47761072010-11-18 01:40:00 +0000978} // __pointer_type_imp
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000979
980template <class _Tp, class _Dp>
981struct __pointer_type
982{
983 typedef typename __pointer_type_imp::__pointer_type<_Tp, typename remove_reference<_Dp>::type>::type type;
984};
985
986template <class _Tp>
987struct __has_const_pointer
988{
989private:
990 struct __two {char _; char __;};
991 template <class _Up> static __two __test(...);
992 template <class _Up> static char __test(typename _Up::const_pointer* = 0);
993public:
994 static const bool value = sizeof(__test<_Tp>(0)) == 1;
995};
996
997template <class _Tp, class _Ptr, class _Alloc, bool = __has_const_pointer<_Alloc>::value>
998struct __const_pointer
999{
1000 typedef typename _Alloc::const_pointer type;
1001};
1002
1003template <class _Tp, class _Ptr, class _Alloc>
1004struct __const_pointer<_Tp, _Ptr, _Alloc, false>
1005{
1006#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1007 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp> type;
1008#else
1009 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp>::other type;
1010#endif
1011};
1012
1013template <class _Tp>
1014struct __has_void_pointer
1015{
1016private:
1017 struct __two {char _; char __;};
1018 template <class _Up> static __two __test(...);
1019 template <class _Up> static char __test(typename _Up::void_pointer* = 0);
1020public:
1021 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1022};
1023
1024template <class _Ptr, class _Alloc, bool = __has_void_pointer<_Alloc>::value>
1025struct __void_pointer
1026{
1027 typedef typename _Alloc::void_pointer type;
1028};
1029
1030template <class _Ptr, class _Alloc>
1031struct __void_pointer<_Ptr, _Alloc, false>
1032{
1033#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1034 typedef typename pointer_traits<_Ptr>::template rebind<void> type;
1035#else
1036 typedef typename pointer_traits<_Ptr>::template rebind<void>::other type;
1037#endif
1038};
1039
1040template <class _Tp>
1041struct __has_const_void_pointer
1042{
1043private:
1044 struct __two {char _; char __;};
1045 template <class _Up> static __two __test(...);
1046 template <class _Up> static char __test(typename _Up::const_void_pointer* = 0);
1047public:
1048 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1049};
1050
1051template <class _Ptr, class _Alloc, bool = __has_const_void_pointer<_Alloc>::value>
1052struct __const_void_pointer
1053{
1054 typedef typename _Alloc::const_void_pointer type;
1055};
1056
1057template <class _Ptr, class _Alloc>
1058struct __const_void_pointer<_Ptr, _Alloc, false>
1059{
1060#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1061 typedef typename pointer_traits<_Ptr>::template rebind<const void> type;
1062#else
1063 typedef typename pointer_traits<_Ptr>::template rebind<const void>::other type;
1064#endif
1065};
1066
Howard Hinnant99968442011-11-29 18:15:50 +00001067template <class _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001068inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001069_Tp*
1070__to_raw_pointer(_Tp* __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001071{
1072 return __p;
1073}
1074
1075template <class _Pointer>
1076inline _LIBCPP_INLINE_VISIBILITY
1077typename pointer_traits<_Pointer>::element_type*
Howard Hinnant1694d232011-05-28 14:41:13 +00001078__to_raw_pointer(_Pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001079{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001080 return _VSTD::__to_raw_pointer(__p.operator->());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001081}
1082
1083template <class _Tp>
1084struct __has_size_type
1085{
1086private:
1087 struct __two {char _; char __;};
1088 template <class _Up> static __two __test(...);
1089 template <class _Up> static char __test(typename _Up::size_type* = 0);
1090public:
1091 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1092};
1093
Howard Hinnant47761072010-11-18 01:40:00 +00001094template <class _Alloc, class _DiffType, bool = __has_size_type<_Alloc>::value>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001095struct __size_type
1096{
Howard Hinnant47761072010-11-18 01:40:00 +00001097 typedef typename make_unsigned<_DiffType>::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001098};
1099
Howard Hinnant47761072010-11-18 01:40:00 +00001100template <class _Alloc, class _DiffType>
1101struct __size_type<_Alloc, _DiffType, true>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001102{
1103 typedef typename _Alloc::size_type type;
1104};
1105
1106template <class _Tp>
1107struct __has_propagate_on_container_copy_assignment
1108{
1109private:
1110 struct __two {char _; char __;};
1111 template <class _Up> static __two __test(...);
1112 template <class _Up> static char __test(typename _Up::propagate_on_container_copy_assignment* = 0);
1113public:
1114 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1115};
1116
1117template <class _Alloc, bool = __has_propagate_on_container_copy_assignment<_Alloc>::value>
1118struct __propagate_on_container_copy_assignment
1119{
1120 typedef false_type type;
1121};
1122
1123template <class _Alloc>
1124struct __propagate_on_container_copy_assignment<_Alloc, true>
1125{
1126 typedef typename _Alloc::propagate_on_container_copy_assignment type;
1127};
1128
1129template <class _Tp>
1130struct __has_propagate_on_container_move_assignment
1131{
1132private:
1133 struct __two {char _; char __;};
1134 template <class _Up> static __two __test(...);
1135 template <class _Up> static char __test(typename _Up::propagate_on_container_move_assignment* = 0);
1136public:
1137 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1138};
1139
1140template <class _Alloc, bool = __has_propagate_on_container_move_assignment<_Alloc>::value>
1141struct __propagate_on_container_move_assignment
1142{
1143 typedef false_type type;
1144};
1145
1146template <class _Alloc>
1147struct __propagate_on_container_move_assignment<_Alloc, true>
1148{
1149 typedef typename _Alloc::propagate_on_container_move_assignment type;
1150};
1151
1152template <class _Tp>
1153struct __has_propagate_on_container_swap
1154{
1155private:
1156 struct __two {char _; char __;};
1157 template <class _Up> static __two __test(...);
1158 template <class _Up> static char __test(typename _Up::propagate_on_container_swap* = 0);
1159public:
1160 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1161};
1162
1163template <class _Alloc, bool = __has_propagate_on_container_swap<_Alloc>::value>
1164struct __propagate_on_container_swap
1165{
1166 typedef false_type type;
1167};
1168
1169template <class _Alloc>
1170struct __propagate_on_container_swap<_Alloc, true>
1171{
1172 typedef typename _Alloc::propagate_on_container_swap type;
1173};
1174
1175template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
1176struct __has_rebind_other
1177{
1178private:
1179 struct __two {char _; char __;};
1180 template <class _Xp> static __two __test(...);
1181 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>::other* = 0);
1182public:
1183 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1184};
1185
1186template <class _Tp, class _Up>
1187struct __has_rebind_other<_Tp, _Up, false>
1188{
1189 static const bool value = false;
1190};
1191
1192template <class _Tp, class _Up, bool = __has_rebind_other<_Tp, _Up>::value>
1193struct __allocator_traits_rebind
1194{
1195 typedef typename _Tp::template rebind<_Up>::other type;
1196};
1197
1198#ifndef _LIBCPP_HAS_NO_VARIADICS
1199
1200template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1201struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, true>
1202{
1203 typedef typename _Alloc<_Tp, _Args...>::template rebind<_Up>::other type;
1204};
1205
1206template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1207struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, false>
1208{
1209 typedef _Alloc<_Up, _Args...> type;
1210};
1211
Howard Hinnant324bb032010-08-22 00:02:43 +00001212#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001213
1214template <template <class> class _Alloc, class _Tp, class _Up>
1215struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, true>
1216{
1217 typedef typename _Alloc<_Tp>::template rebind<_Up>::other type;
1218};
1219
1220template <template <class> class _Alloc, class _Tp, class _Up>
1221struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, false>
1222{
1223 typedef _Alloc<_Up> type;
1224};
1225
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001226template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1227struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, true>
1228{
1229 typedef typename _Alloc<_Tp, _A0>::template rebind<_Up>::other type;
1230};
1231
1232template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1233struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, false>
1234{
1235 typedef _Alloc<_Up, _A0> type;
1236};
1237
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001238template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1239 class _A1, class _Up>
1240struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, true>
1241{
1242 typedef typename _Alloc<_Tp, _A0, _A1>::template rebind<_Up>::other type;
1243};
1244
1245template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1246 class _A1, class _Up>
1247struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, false>
1248{
1249 typedef _Alloc<_Up, _A0, _A1> type;
1250};
1251
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001252template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1253 class _A1, class _A2, class _Up>
1254struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, true>
1255{
1256 typedef typename _Alloc<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
1257};
1258
1259template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1260 class _A1, class _A2, class _Up>
1261struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, false>
1262{
1263 typedef _Alloc<_Up, _A0, _A1, _A2> type;
1264};
1265
Howard Hinnant324bb032010-08-22 00:02:43 +00001266#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001267
1268#ifndef _LIBCPP_HAS_NO_ADVANCED_SFINAE
1269
1270template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1271auto
1272__has_allocate_hint_test(_Alloc&& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1273 -> decltype(__a.allocate(__sz, __p), true_type());
1274
1275template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1276auto
1277__has_allocate_hint_test(const _Alloc& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1278 -> false_type;
1279
1280template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1281struct __has_allocate_hint
1282 : integral_constant<bool,
1283 is_same<
1284 decltype(__has_allocate_hint_test(declval<_Alloc>(),
1285 declval<_SizeType>(),
1286 declval<_ConstVoidPtr>())),
1287 true_type>::value>
1288{
1289};
1290
Howard Hinnant324bb032010-08-22 00:02:43 +00001291#else // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001292
1293template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1294struct __has_allocate_hint
1295 : true_type
1296{
1297};
1298
Howard Hinnant324bb032010-08-22 00:02:43 +00001299#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001300
Howard Hinnant23369ee2011-07-29 21:35:53 +00001301#if !defined(_LIBCPP_HAS_NO_ADVANCED_SFINAE) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001302
1303template <class _Alloc, class _Tp, class ..._Args>
Howard Hinnant0949eed2011-06-30 21:18:19 +00001304decltype(_VSTD::declval<_Alloc>().construct(_VSTD::declval<_Tp*>(),
1305 _VSTD::declval<_Args>()...),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001306 true_type())
1307__has_construct_test(_Alloc&& __a, _Tp* __p, _Args&& ...__args);
1308
1309template <class _Alloc, class _Pointer, class ..._Args>
1310false_type
1311__has_construct_test(const _Alloc& __a, _Pointer&& __p, _Args&& ...__args);
1312
1313template <class _Alloc, class _Pointer, class ..._Args>
1314struct __has_construct
1315 : integral_constant<bool,
1316 is_same<
1317 decltype(__has_construct_test(declval<_Alloc>(),
1318 declval<_Pointer>(),
1319 declval<_Args>()...)),
1320 true_type>::value>
1321{
1322};
1323
1324template <class _Alloc, class _Pointer>
1325auto
1326__has_destroy_test(_Alloc&& __a, _Pointer&& __p)
1327 -> decltype(__a.destroy(__p), true_type());
1328
1329template <class _Alloc, class _Pointer>
1330auto
1331__has_destroy_test(const _Alloc& __a, _Pointer&& __p)
1332 -> false_type;
1333
1334template <class _Alloc, class _Pointer>
1335struct __has_destroy
1336 : integral_constant<bool,
1337 is_same<
1338 decltype(__has_destroy_test(declval<_Alloc>(),
1339 declval<_Pointer>())),
1340 true_type>::value>
1341{
1342};
1343
1344template <class _Alloc>
1345auto
1346__has_max_size_test(_Alloc&& __a)
1347 -> decltype(__a.max_size(), true_type());
1348
1349template <class _Alloc>
1350auto
1351__has_max_size_test(const volatile _Alloc& __a)
1352 -> false_type;
1353
1354template <class _Alloc>
1355struct __has_max_size
1356 : integral_constant<bool,
1357 is_same<
1358 decltype(__has_max_size_test(declval<_Alloc&>())),
1359 true_type>::value>
1360{
1361};
1362
1363template <class _Alloc>
1364auto
1365__has_select_on_container_copy_construction_test(_Alloc&& __a)
1366 -> decltype(__a.select_on_container_copy_construction(), true_type());
1367
1368template <class _Alloc>
1369auto
1370__has_select_on_container_copy_construction_test(const volatile _Alloc& __a)
1371 -> false_type;
1372
1373template <class _Alloc>
1374struct __has_select_on_container_copy_construction
1375 : integral_constant<bool,
1376 is_same<
1377 decltype(__has_select_on_container_copy_construction_test(declval<_Alloc&>())),
1378 true_type>::value>
1379{
1380};
1381
Howard Hinnant324bb032010-08-22 00:02:43 +00001382#else // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001383
1384#ifndef _LIBCPP_HAS_NO_VARIADICS
1385
1386template <class _Alloc, class _Pointer, class ..._Args>
1387struct __has_construct
1388 : false_type
1389{
1390};
1391
Howard Hinnant324bb032010-08-22 00:02:43 +00001392#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001393
1394template <class _Alloc, class _Pointer>
1395struct __has_destroy
1396 : false_type
1397{
1398};
1399
1400template <class _Alloc>
1401struct __has_max_size
1402 : true_type
1403{
1404};
1405
1406template <class _Alloc>
1407struct __has_select_on_container_copy_construction
1408 : false_type
1409{
1410};
1411
Howard Hinnant324bb032010-08-22 00:02:43 +00001412#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001413
Howard Hinnant47761072010-11-18 01:40:00 +00001414template <class _Alloc, class _Ptr, bool = __has_difference_type<_Alloc>::value>
1415struct __alloc_traits_difference_type
1416{
1417 typedef typename pointer_traits<_Ptr>::difference_type type;
1418};
1419
1420template <class _Alloc, class _Ptr>
1421struct __alloc_traits_difference_type<_Alloc, _Ptr, true>
1422{
1423 typedef typename _Alloc::difference_type type;
1424};
1425
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001426template <class _Alloc>
Howard Hinnant82894812010-09-22 16:48:34 +00001427struct _LIBCPP_VISIBLE allocator_traits
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001428{
1429 typedef _Alloc allocator_type;
1430 typedef typename allocator_type::value_type value_type;
1431
1432 typedef typename __pointer_type<value_type, allocator_type>::type pointer;
1433 typedef typename __const_pointer<value_type, pointer, allocator_type>::type const_pointer;
1434 typedef typename __void_pointer<pointer, allocator_type>::type void_pointer;
1435 typedef typename __const_void_pointer<pointer, allocator_type>::type const_void_pointer;
1436
Howard Hinnant47761072010-11-18 01:40:00 +00001437 typedef typename __alloc_traits_difference_type<allocator_type, pointer>::type difference_type;
1438 typedef typename __size_type<allocator_type, difference_type>::type size_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001439
1440 typedef typename __propagate_on_container_copy_assignment<allocator_type>::type
1441 propagate_on_container_copy_assignment;
1442 typedef typename __propagate_on_container_move_assignment<allocator_type>::type
1443 propagate_on_container_move_assignment;
1444 typedef typename __propagate_on_container_swap<allocator_type>::type
1445 propagate_on_container_swap;
1446
1447#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1448 template <class _Tp> using rebind_alloc =
Howard Hinnant6b41c602011-05-11 20:21:19 +00001449 typename __allocator_traits_rebind<allocator_type, _Tp>::type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001450 template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
Howard Hinnant324bb032010-08-22 00:02:43 +00001451#else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001452 template <class _Tp> struct rebind_alloc
1453 {typedef typename __allocator_traits_rebind<allocator_type, _Tp>::type other;};
1454 template <class _Tp> struct rebind_traits
1455 {typedef allocator_traits<typename rebind_alloc<_Tp>::other> other;};
Howard Hinnant324bb032010-08-22 00:02:43 +00001456#endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001457
Howard Hinnant82894812010-09-22 16:48:34 +00001458 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001459 static pointer allocate(allocator_type& __a, size_type __n)
1460 {return __a.allocate(__n);}
Howard Hinnant82894812010-09-22 16:48:34 +00001461 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001462 static pointer allocate(allocator_type& __a, size_type __n, const_void_pointer __hint)
1463 {return allocate(__a, __n, __hint,
1464 __has_allocate_hint<allocator_type, size_type, const_void_pointer>());}
1465
Howard Hinnant82894812010-09-22 16:48:34 +00001466 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001467 static void deallocate(allocator_type& __a, pointer __p, size_type __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001468 {__a.deallocate(__p, __n);}
1469
1470#ifndef _LIBCPP_HAS_NO_VARIADICS
1471 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001472 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001473 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args)
1474 {__construct(__has_construct<allocator_type, pointer, _Args...>(),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001475 __a, __p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnant324bb032010-08-22 00:02:43 +00001476#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001477 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001478 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001479 static void construct(allocator_type& __a, _Tp* __p)
1480 {
1481 ::new ((void*)__p) _Tp();
1482 }
1483 template <class _Tp, class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00001484 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001485 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0)
1486 {
1487 ::new ((void*)__p) _Tp(__a0);
1488 }
1489 template <class _Tp, class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00001490 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001491 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0,
1492 const _A1& __a1)
1493 {
1494 ::new ((void*)__p) _Tp(__a0, __a1);
1495 }
1496 template <class _Tp, class _A0, class _A1, class _A2>
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, const _A0& __a0,
1499 const _A1& __a1, const _A2& __a2)
1500 {
1501 ::new ((void*)__p) _Tp(__a0, __a1, __a2);
1502 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001503#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001504
1505 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001506 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001507 static void destroy(allocator_type& __a, _Tp* __p)
1508 {__destroy(__has_destroy<allocator_type, _Tp*>(), __a, __p);}
1509
Howard Hinnant82894812010-09-22 16:48:34 +00001510 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001511 static size_type max_size(const allocator_type& __a)
1512 {return __max_size(__has_max_size<const allocator_type>(), __a);}
1513
Howard Hinnant82894812010-09-22 16:48:34 +00001514 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001515 static allocator_type
1516 select_on_container_copy_construction(const allocator_type& __a)
1517 {return select_on_container_copy_construction(
1518 __has_select_on_container_copy_construction<const allocator_type>(),
1519 __a);}
1520
1521private:
1522
Howard Hinnant82894812010-09-22 16:48:34 +00001523 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001524 static pointer allocate(allocator_type& __a, size_type __n,
1525 const_void_pointer __hint, true_type)
1526 {return __a.allocate(__n, __hint);}
Howard Hinnant82894812010-09-22 16:48:34 +00001527 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001528 static pointer allocate(allocator_type& __a, size_type __n,
1529 const_void_pointer __hint, false_type)
1530 {return __a.allocate(__n);}
1531
1532#ifndef _LIBCPP_HAS_NO_VARIADICS
1533 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001534 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001535 static void __construct(true_type, allocator_type& __a, _Tp* __p, _Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001536 {__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001537 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001538 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001539 static void __construct(false_type, allocator_type&, _Tp* __p, _Args&&... __args)
1540 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001541 ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001542 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001543#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001544
1545 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001546 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001547 static void __destroy(true_type, allocator_type& __a, _Tp* __p)
1548 {__a.destroy(__p);}
1549 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001550 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001551 static void __destroy(false_type, allocator_type&, _Tp* __p)
1552 {
1553 __p->~_Tp();
1554 }
1555
Howard Hinnant82894812010-09-22 16:48:34 +00001556 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001557 static size_type __max_size(true_type, const allocator_type& __a)
1558 {return __a.max_size();}
Howard Hinnant82894812010-09-22 16:48:34 +00001559 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001560 static size_type __max_size(false_type, const allocator_type&)
1561 {return numeric_limits<size_type>::max();}
1562
Howard Hinnant82894812010-09-22 16:48:34 +00001563 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001564 static allocator_type
1565 select_on_container_copy_construction(true_type, const allocator_type& __a)
1566 {return __a.select_on_container_copy_construction();}
Howard Hinnant82894812010-09-22 16:48:34 +00001567 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001568 static allocator_type
1569 select_on_container_copy_construction(false_type, const allocator_type& __a)
1570 {return __a;}
1571};
1572
1573// uses_allocator
1574
1575template <class _Tp>
1576struct __has_allocator_type
1577{
1578private:
1579 struct __two {char _; char __;};
1580 template <class _Up> static __two __test(...);
1581 template <class _Up> static char __test(typename _Up::allocator_type* = 0);
1582public:
1583 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1584};
1585
1586template <class _Tp, class _Alloc, bool = __has_allocator_type<_Tp>::value>
1587struct __uses_allocator
1588 : public integral_constant<bool,
1589 is_convertible<_Alloc, typename _Tp::allocator_type>::value>
1590{
1591};
1592
1593template <class _Tp, class _Alloc>
1594struct __uses_allocator<_Tp, _Alloc, false>
1595 : public false_type
1596{
1597};
1598
1599template <class _Tp, class _Alloc>
Howard Hinnant82894812010-09-22 16:48:34 +00001600struct _LIBCPP_VISIBLE uses_allocator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001601 : public __uses_allocator<_Tp, _Alloc>
1602{
1603};
1604
Howard Hinnantac38bae2011-01-11 20:02:45 +00001605#ifndef _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001606
1607// uses-allocator construction
1608
1609template <class _Tp, class _Alloc, class ..._Args>
1610struct __uses_alloc_ctor_imp
1611{
1612 static const bool __ua = uses_allocator<_Tp, _Alloc>::value;
1613 static const bool __ic =
1614 is_constructible<_Tp, allocator_arg_t, _Alloc, _Args...>::value;
1615 static const int value = __ua ? 2 - __ic : 0;
1616};
1617
1618template <class _Tp, class _Alloc, class ..._Args>
1619struct __uses_alloc_ctor
1620 : integral_constant<int, __uses_alloc_ctor_imp<_Tp, _Alloc, _Args...>::value>
1621 {};
1622
Howard Hinnantac38bae2011-01-11 20:02:45 +00001623#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001624
1625// allocator
1626
1627template <class _Tp>
Howard Hinnant36cdf022010-09-10 16:42:26 +00001628class _LIBCPP_VISIBLE allocator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001629{
1630public:
1631 typedef size_t size_type;
1632 typedef ptrdiff_t difference_type;
1633 typedef _Tp* pointer;
1634 typedef const _Tp* const_pointer;
1635 typedef _Tp& reference;
1636 typedef const _Tp& const_reference;
1637 typedef _Tp value_type;
1638
Howard Hinnant18884f42011-06-02 21:38:57 +00001639 typedef true_type propagate_on_container_move_assignment;
1640
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001641 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1642
Howard Hinnant1694d232011-05-28 14:41:13 +00001643 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1644 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1645 _LIBCPP_INLINE_VISIBILITY pointer address(reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001646 {return _VSTD::addressof(__x);}
Howard Hinnant1694d232011-05-28 14:41:13 +00001647 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001648 {return _VSTD::addressof(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001649 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1650 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
Howard Hinnant1694d232011-05-28 14:41:13 +00001651 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1652 {::operator delete((void*)__p);}
1653 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1654 {return size_type(~0) / sizeof(_Tp);}
Howard Hinnant73d21a42010-09-04 23:28:19 +00001655#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001656 template <class _Up, class... _Args>
1657 _LIBCPP_INLINE_VISIBILITY
1658 void
1659 construct(_Up* __p, _Args&&... __args)
1660 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001661 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001662 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001663#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001664 _LIBCPP_INLINE_VISIBILITY
1665 void
1666 construct(pointer __p)
1667 {
1668 ::new((void*)__p) _Tp();
1669 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001670# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001671 template <class _A0>
1672 _LIBCPP_INLINE_VISIBILITY
1673 typename enable_if
1674 <
1675 !is_convertible<_A0, __rv<_A0> >::value,
1676 void
1677 >::type
1678 construct(pointer __p, _A0& __a0)
1679 {
1680 ::new((void*)__p) _Tp(__a0);
1681 }
1682 template <class _A0>
1683 _LIBCPP_INLINE_VISIBILITY
1684 typename enable_if
1685 <
1686 !is_convertible<_A0, __rv<_A0> >::value,
1687 void
1688 >::type
1689 construct(pointer __p, const _A0& __a0)
1690 {
1691 ::new((void*)__p) _Tp(__a0);
1692 }
1693 template <class _A0>
1694 _LIBCPP_INLINE_VISIBILITY
1695 typename enable_if
1696 <
1697 is_convertible<_A0, __rv<_A0> >::value,
1698 void
1699 >::type
1700 construct(pointer __p, _A0 __a0)
1701 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001702 ::new((void*)__p) _Tp(_VSTD::move(__a0));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001703 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001704# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001705 template <class _A0, class _A1>
1706 _LIBCPP_INLINE_VISIBILITY
1707 void
1708 construct(pointer __p, _A0& __a0, _A1& __a1)
1709 {
1710 ::new((void*)__p) _Tp(__a0, __a1);
1711 }
1712 template <class _A0, class _A1>
1713 _LIBCPP_INLINE_VISIBILITY
1714 void
1715 construct(pointer __p, const _A0& __a0, _A1& __a1)
1716 {
1717 ::new((void*)__p) _Tp(__a0, __a1);
1718 }
1719 template <class _A0, class _A1>
1720 _LIBCPP_INLINE_VISIBILITY
1721 void
1722 construct(pointer __p, _A0& __a0, const _A1& __a1)
1723 {
1724 ::new((void*)__p) _Tp(__a0, __a1);
1725 }
1726 template <class _A0, class _A1>
1727 _LIBCPP_INLINE_VISIBILITY
1728 void
1729 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1730 {
1731 ::new((void*)__p) _Tp(__a0, __a1);
1732 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001733#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001734 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1735};
1736
1737template <class _Tp, class _Up>
1738inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001739bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001740
1741template <class _Tp, class _Up>
1742inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001743bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001744
1745template <class _OutputIterator, class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001746class _LIBCPP_VISIBLE raw_storage_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001747 : public iterator<output_iterator_tag,
1748 _Tp, // purposefully not C++03
1749 ptrdiff_t, // purposefully not C++03
1750 _Tp*, // purposefully not C++03
1751 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1752{
1753private:
1754 _OutputIterator __x_;
1755public:
1756 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
1757 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
1758 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
1759 {::new(&*__x_) _Tp(__element); return *this;}
1760 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
1761 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
1762 {raw_storage_iterator __t(*this); ++__x_; return __t;}
1763};
1764
1765template <class _Tp>
1766pair<_Tp*, ptrdiff_t>
Howard Hinnant1694d232011-05-28 14:41:13 +00001767get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001768{
1769 pair<_Tp*, ptrdiff_t> __r(0, 0);
1770 const ptrdiff_t __m = (~ptrdiff_t(0) ^
1771 ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1)))
1772 / sizeof(_Tp);
1773 if (__n > __m)
1774 __n = __m;
1775 while (__n > 0)
1776 {
1777 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
1778 if (__r.first)
1779 {
1780 __r.second = __n;
1781 break;
1782 }
1783 __n /= 2;
1784 }
1785 return __r;
1786}
1787
1788template <class _Tp>
1789inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001790void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001791
1792template <class _Tp>
1793struct auto_ptr_ref
1794{
1795 _Tp* __ptr_;
1796};
1797
1798template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001799class _LIBCPP_VISIBLE auto_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001800{
1801private:
1802 _Tp* __ptr_;
1803public:
1804 typedef _Tp element_type;
1805
1806 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}
1807 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}
1808 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw()
1809 : __ptr_(__p.release()) {}
1810 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw()
1811 {reset(__p.release()); return *this;}
1812 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw()
1813 {reset(__p.release()); return *this;}
1814 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()
1815 {reset(__p.__ptr_); return *this;}
1816 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}
1817
1818 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw()
1819 {return *__ptr_;}
1820 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}
1821 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}
1822 _LIBCPP_INLINE_VISIBILITY _Tp* release() throw()
1823 {
1824 _Tp* __t = __ptr_;
1825 __ptr_ = 0;
1826 return __t;
1827 }
1828 _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw()
1829 {
1830 if (__ptr_ != __p)
1831 delete __ptr_;
1832 __ptr_ = __p;
1833 }
1834
1835 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}
1836 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()
1837 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
1838 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw()
1839 {return auto_ptr<_Up>(release());}
1840};
1841
1842template <>
Howard Hinnant82894812010-09-22 16:48:34 +00001843class _LIBCPP_VISIBLE auto_ptr<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001844{
1845public:
1846 typedef void element_type;
1847};
1848
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001849template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type,
1850 typename remove_cv<_T2>::type>::value,
1851 bool = is_empty<_T1>::value,
1852 bool = is_empty<_T2>::value>
1853struct __libcpp_compressed_pair_switch;
1854
1855template <class _T1, class _T2, bool IsSame>
1856struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};};
1857
1858template <class _T1, class _T2, bool IsSame>
1859struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};};
1860
1861template <class _T1, class _T2, bool IsSame>
1862struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};};
1863
1864template <class _T1, class _T2>
1865struct __libcpp_compressed_pair_switch<_T1, _T2, false, true, true> {enum {value = 3};};
1866
1867template <class _T1, class _T2>
1868struct __libcpp_compressed_pair_switch<_T1, _T2, true, true, true> {enum {value = 1};};
1869
1870template <class _T1, class _T2, unsigned = __libcpp_compressed_pair_switch<_T1, _T2>::value>
1871class __libcpp_compressed_pair_imp;
1872
1873template <class _T1, class _T2>
1874class __libcpp_compressed_pair_imp<_T1, _T2, 0>
1875{
1876private:
1877 _T1 __first_;
1878 _T2 __second_;
1879public:
1880 typedef _T1 _T1_param;
1881 typedef _T2 _T2_param;
1882
1883 typedef typename remove_reference<_T1>::type& _T1_reference;
1884 typedef typename remove_reference<_T2>::type& _T2_reference;
1885
1886 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
1887 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
1888
1889 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
1890 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1, int = 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001891 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001892 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2, int* = 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001893 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001894 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001895 : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001896
Howard Hinnant61aa6012011-07-01 19:24:36 +00001897#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1898
1899 _LIBCPP_INLINE_VISIBILITY
1900 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
1901 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
1902 is_nothrow_copy_constructible<_T2>::value)
1903 : __first_(__p.first()),
1904 __second_(__p.second()) {}
1905
1906 _LIBCPP_INLINE_VISIBILITY
1907 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
1908 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
1909 is_nothrow_copy_assignable<_T2>::value)
1910 {
1911 __first_ = __p.first();
1912 __second_ = __p.second();
1913 return *this;
1914 }
1915
Howard Hinnant73d21a42010-09-04 23:28:19 +00001916#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00001917
1918 _LIBCPP_INLINE_VISIBILITY
1919 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00001920 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
1921 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant61aa6012011-07-01 19:24:36 +00001922 : __first_(_VSTD::forward<_T1>(__p.first())),
1923 __second_(_VSTD::forward<_T2>(__p.second())) {}
1924
1925 _LIBCPP_INLINE_VISIBILITY
1926 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
1927 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
1928 is_nothrow_move_assignable<_T2>::value)
1929 {
1930 __first_ = _VSTD::forward<_T1>(__p.first());
1931 __second_ = _VSTD::forward<_T2>(__p.second());
1932 return *this;
1933 }
1934
Howard Hinnant73d21a42010-09-04 23:28:19 +00001935#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001936
Howard Hinnant61aa6012011-07-01 19:24:36 +00001937#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1938
Howard Hinnant1694d232011-05-28 14:41:13 +00001939 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
1940 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001941
Howard Hinnant1694d232011-05-28 14:41:13 +00001942 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
1943 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001944
1945 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00001946 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
1947 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001948 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001949 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001950 swap(__first_, __x.__first_);
1951 swap(__second_, __x.__second_);
1952 }
1953};
1954
1955template <class _T1, class _T2>
1956class __libcpp_compressed_pair_imp<_T1, _T2, 1>
1957 : private _T1
1958{
1959private:
1960 _T2 __second_;
1961public:
1962 typedef _T1 _T1_param;
1963 typedef _T2 _T2_param;
1964
1965 typedef _T1& _T1_reference;
1966 typedef typename remove_reference<_T2>::type& _T2_reference;
1967
1968 typedef const _T1& _T1_const_reference;
1969 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
1970
1971 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
1972 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1, int = 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001973 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001974 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2, int* = 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001975 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001976 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001977 : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001978
Howard Hinnant61aa6012011-07-01 19:24:36 +00001979#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1980
1981 _LIBCPP_INLINE_VISIBILITY
1982 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
1983 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
1984 is_nothrow_copy_constructible<_T2>::value)
1985 : _T1(__p.first()), __second_(__p.second()) {}
1986
1987 _LIBCPP_INLINE_VISIBILITY
1988 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
1989 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
1990 is_nothrow_copy_assignable<_T2>::value)
1991 {
1992 _T1::operator=(__p.first());
1993 __second_ = __p.second();
1994 return *this;
1995 }
1996
Howard Hinnant73d21a42010-09-04 23:28:19 +00001997#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00001998
1999 _LIBCPP_INLINE_VISIBILITY
2000 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002001 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2002 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002003 : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002004
2005 _LIBCPP_INLINE_VISIBILITY
2006 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2007 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2008 is_nothrow_move_assignable<_T2>::value)
2009 {
2010 _T1::operator=(_VSTD::move(__p.first()));
2011 __second_ = _VSTD::forward<_T2>(__p.second());
2012 return *this;
2013 }
2014
Howard Hinnant73d21a42010-09-04 23:28:19 +00002015#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002016
Howard Hinnant61aa6012011-07-01 19:24:36 +00002017#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2018
Howard Hinnant1694d232011-05-28 14:41:13 +00002019 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2020 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002021
Howard Hinnant1694d232011-05-28 14:41:13 +00002022 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2023 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002024
2025 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002026 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2027 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002028 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002029 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002030 swap(__second_, __x.__second_);
2031 }
2032};
2033
2034template <class _T1, class _T2>
2035class __libcpp_compressed_pair_imp<_T1, _T2, 2>
2036 : private _T2
2037{
2038private:
2039 _T1 __first_;
2040public:
2041 typedef _T1 _T1_param;
2042 typedef _T2 _T2_param;
2043
2044 typedef typename remove_reference<_T1>::type& _T1_reference;
2045 typedef _T2& _T2_reference;
2046
2047 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
2048 typedef const _T2& _T2_const_reference;
2049
2050 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2051 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002052 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002053 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002054 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002055 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant1694d232011-05-28 14:41:13 +00002056 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2057 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002058 : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002059
Howard Hinnant61aa6012011-07-01 19:24:36 +00002060#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2061
2062 _LIBCPP_INLINE_VISIBILITY
2063 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2064 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2065 is_nothrow_copy_constructible<_T2>::value)
2066 : _T2(__p.second()), __first_(__p.first()) {}
2067
2068 _LIBCPP_INLINE_VISIBILITY
2069 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2070 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2071 is_nothrow_copy_assignable<_T2>::value)
2072 {
2073 _T2::operator=(__p.second());
2074 __first_ = __p.first();
2075 return *this;
2076 }
2077
Howard Hinnant73d21a42010-09-04 23:28:19 +00002078#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002079
2080 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002081 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002082 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2083 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002084 : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002085
2086 _LIBCPP_INLINE_VISIBILITY
2087 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2088 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2089 is_nothrow_move_assignable<_T2>::value)
2090 {
2091 _T2::operator=(_VSTD::forward<_T2>(__p.second()));
2092 __first_ = _VSTD::move(__p.first());
2093 return *this;
2094 }
2095
Howard Hinnant73d21a42010-09-04 23:28:19 +00002096#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002097
Howard Hinnant61aa6012011-07-01 19:24:36 +00002098#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2099
Howard Hinnant1694d232011-05-28 14:41:13 +00002100 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2101 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002102
Howard Hinnant1694d232011-05-28 14:41:13 +00002103 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2104 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002105
2106 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002107 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2108 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002109 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002110 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002111 swap(__first_, __x.__first_);
2112 }
2113};
2114
2115template <class _T1, class _T2>
2116class __libcpp_compressed_pair_imp<_T1, _T2, 3>
2117 : private _T1,
2118 private _T2
2119{
2120public:
2121 typedef _T1 _T1_param;
2122 typedef _T2 _T2_param;
2123
2124 typedef _T1& _T1_reference;
2125 typedef _T2& _T2_reference;
2126
2127 typedef const _T1& _T1_const_reference;
2128 typedef const _T2& _T2_const_reference;
2129
2130 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2131 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002132 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002133 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002134 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002135 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002136 : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002137
Howard Hinnant61aa6012011-07-01 19:24:36 +00002138#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2139
2140 _LIBCPP_INLINE_VISIBILITY
2141 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2142 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2143 is_nothrow_copy_constructible<_T2>::value)
2144 : _T1(__p.first()), _T2(__p.second()) {}
2145
2146 _LIBCPP_INLINE_VISIBILITY
2147 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2148 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2149 is_nothrow_copy_assignable<_T2>::value)
2150 {
2151 _T1::operator=(__p.first());
2152 _T2::operator=(__p.second());
2153 return *this;
2154 }
2155
Howard Hinnant73d21a42010-09-04 23:28:19 +00002156#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002157
2158 _LIBCPP_INLINE_VISIBILITY
2159 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002160 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2161 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002162 : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002163
2164 _LIBCPP_INLINE_VISIBILITY
2165 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2166 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2167 is_nothrow_move_assignable<_T2>::value)
2168 {
2169 _T1::operator=(_VSTD::move(__p.first()));
2170 _T2::operator=(_VSTD::move(__p.second()));
2171 return *this;
2172 }
2173
Howard Hinnant73d21a42010-09-04 23:28:19 +00002174#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002175
Howard Hinnant61aa6012011-07-01 19:24:36 +00002176#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2177
Howard Hinnant1694d232011-05-28 14:41:13 +00002178 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2179 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002180
Howard Hinnant1694d232011-05-28 14:41:13 +00002181 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2182 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002183
2184 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002185 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2186 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002187 {
2188 }
2189};
2190
2191template <class _T1, class _T2>
2192class __compressed_pair
2193 : private __libcpp_compressed_pair_imp<_T1, _T2>
2194{
2195 typedef __libcpp_compressed_pair_imp<_T1, _T2> base;
2196public:
2197 typedef typename base::_T1_param _T1_param;
2198 typedef typename base::_T2_param _T2_param;
2199
2200 typedef typename base::_T1_reference _T1_reference;
2201 typedef typename base::_T2_reference _T2_reference;
2202
2203 typedef typename base::_T1_const_reference _T1_const_reference;
2204 typedef typename base::_T2_const_reference _T2_const_reference;
2205
2206 _LIBCPP_INLINE_VISIBILITY __compressed_pair() {}
2207 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T1_param __t1, int = 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002208 : base(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002209 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T2_param __t2, int* = 0)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002210 : base(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002211 _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002212 : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002213
Howard Hinnant61aa6012011-07-01 19:24:36 +00002214#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2215
2216 _LIBCPP_INLINE_VISIBILITY
2217 __compressed_pair(const __compressed_pair& __p)
2218 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2219 is_nothrow_copy_constructible<_T2>::value)
2220 : base(__p) {}
2221
2222 _LIBCPP_INLINE_VISIBILITY
2223 __compressed_pair& operator=(const __compressed_pair& __p)
2224 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2225 is_nothrow_copy_assignable<_T2>::value)
2226 {
2227 base::operator=(__p);
2228 return *this;
2229 }
2230
Howard Hinnant73d21a42010-09-04 23:28:19 +00002231#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002232 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002233 __compressed_pair(__compressed_pair&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002234 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2235 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002236 : base(_VSTD::move(__p)) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002237
2238 _LIBCPP_INLINE_VISIBILITY
2239 __compressed_pair& operator=(__compressed_pair&& __p)
2240 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2241 is_nothrow_move_assignable<_T2>::value)
2242 {
2243 base::operator=(_VSTD::move(__p));
2244 return *this;
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 base::first();}
2251 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::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 base::second();}
2254 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return base::second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002255
Howard Hinnant1694d232011-05-28 14:41:13 +00002256 _LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x)
2257 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2258 __is_nothrow_swappable<_T1>::value)
2259 {base::swap(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002260};
2261
2262template <class _T1, class _T2>
2263inline _LIBCPP_INLINE_VISIBILITY
2264void
2265swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
Howard Hinnant1694d232011-05-28 14:41:13 +00002266 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2267 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002268 {__x.swap(__y);}
2269
2270template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002271struct _LIBCPP_VISIBLE default_delete
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002272{
Howard Hinnant1694d232011-05-28 14:41:13 +00002273 _LIBCPP_INLINE_VISIBILITY default_delete() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002274 template <class _Up>
2275 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up>&,
Howard Hinnant1694d232011-05-28 14:41:13 +00002276 typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
2277 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002278 {
2279 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2280 delete __ptr;
2281 }
2282};
2283
2284template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002285struct _LIBCPP_VISIBLE default_delete<_Tp[]>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002286{
Howard Hinnant1694d232011-05-28 14:41:13 +00002287 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002288 {
2289 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2290 delete [] __ptr;
2291 }
2292private:
2293 template <class _Up> void operator() (_Up*) const;
2294};
2295
2296template <class _Tp, class _Dp = default_delete<_Tp> >
Howard Hinnant82894812010-09-22 16:48:34 +00002297class _LIBCPP_VISIBLE unique_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002298{
2299public:
2300 typedef _Tp element_type;
2301 typedef _Dp deleter_type;
2302 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2303private:
2304 __compressed_pair<pointer, deleter_type> __ptr_;
2305
Howard Hinnant73d21a42010-09-04 23:28:19 +00002306#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002307 unique_ptr(const unique_ptr&);
2308 unique_ptr& operator=(const unique_ptr&);
2309 template <class _Up, class _Ep>
2310 unique_ptr(const unique_ptr<_Up, _Ep>&);
2311 template <class _Up, class _Ep>
2312 unique_ptr& operator=(const unique_ptr<_Up, _Ep>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002313#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002314 unique_ptr(unique_ptr&);
2315 template <class _Up, class _Ep>
2316 unique_ptr(unique_ptr<_Up, _Ep>&);
2317 unique_ptr& operator=(unique_ptr&);
2318 template <class _Up, class _Ep>
2319 unique_ptr& operator=(unique_ptr<_Up, _Ep>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002320#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002321
2322 struct __nat {int __for_bool_;};
2323
2324 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2325 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2326public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002327 _LIBCPP_INLINE_VISIBILITY unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002328 : __ptr_(pointer())
2329 {
2330 static_assert(!is_pointer<deleter_type>::value,
2331 "unique_ptr constructed with null function pointer deleter");
2332 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002333 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002334 : __ptr_(pointer())
2335 {
2336 static_assert(!is_pointer<deleter_type>::value,
2337 "unique_ptr constructed with null function pointer deleter");
2338 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002339 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002340 : __ptr_(_VSTD::move(__p))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002341 {
2342 static_assert(!is_pointer<deleter_type>::value,
2343 "unique_ptr constructed with null function pointer deleter");
2344 }
2345
Howard Hinnant73d21a42010-09-04 23:28:19 +00002346#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002347 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename conditional<
2348 is_reference<deleter_type>::value,
2349 deleter_type,
2350 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002351 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002352 : __ptr_(__p, __d) {}
2353
2354 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002355 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002356 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002357 {
2358 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2359 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002360 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002361 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002362 template <class _Up, class _Ep>
2363 _LIBCPP_INLINE_VISIBILITY
2364 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2365 typename enable_if
2366 <
2367 !is_array<_Up>::value &&
2368 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2369 is_convertible<_Ep, deleter_type>::value &&
2370 (
2371 !is_reference<deleter_type>::value ||
2372 is_same<deleter_type, _Ep>::value
2373 ),
2374 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002375 >::type = __nat()) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002376 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002377
2378 template <class _Up>
2379 _LIBCPP_INLINE_VISIBILITY unique_ptr(auto_ptr<_Up>&& __p,
2380 typename enable_if<
2381 is_convertible<_Up*, _Tp*>::value &&
2382 is_same<_Dp, default_delete<_Tp> >::value,
2383 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002384 >::type = __nat()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002385 : __ptr_(__p.release())
2386 {
2387 }
2388
Howard Hinnant1694d232011-05-28 14:41:13 +00002389 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002390 {
2391 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002392 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002393 return *this;
2394 }
2395
2396 template <class _Up, class _Ep>
2397 _LIBCPP_INLINE_VISIBILITY
2398 typename enable_if
2399 <
2400 !is_array<_Up>::value,
2401 unique_ptr&
2402 >::type
Howard Hinnant1694d232011-05-28 14:41:13 +00002403 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002404 {
2405 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002406 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002407 return *this;
2408 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002409#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002410
2411 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2412 {
2413 return __rv<unique_ptr>(*this);
2414 }
2415
2416 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002417 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002418
2419 template <class _Up, class _Ep>
2420 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr<_Up, _Ep> __u)
2421 {
2422 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002423 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002424 return *this;
2425 }
2426
2427 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002428 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002429
2430 template <class _Up>
2431 _LIBCPP_INLINE_VISIBILITY
2432 typename enable_if<
2433 is_convertible<_Up*, _Tp*>::value &&
2434 is_same<_Dp, default_delete<_Tp> >::value,
2435 unique_ptr&
2436 >::type
2437 operator=(auto_ptr<_Up> __p)
2438 {reset(__p.release()); return *this;}
2439
Howard Hinnant73d21a42010-09-04 23:28:19 +00002440#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002441 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2442
Howard Hinnant1694d232011-05-28 14:41:13 +00002443 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002444 {
2445 reset();
2446 return *this;
2447 }
2448
2449 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator*() const
2450 {return *__ptr_.first();}
Howard Hinnant1694d232011-05-28 14:41:13 +00002451 _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT {return __ptr_.first();}
2452 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2453 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2454 {return __ptr_.second();}
2455 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2456 {return __ptr_.second();}
2457 _LIBCPP_INLINE_VISIBILITY operator int __nat::*() const
2458 _NOEXCEPT
2459 {return __ptr_.first() ? &__nat::__for_bool_ : 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002460
Howard Hinnant1694d232011-05-28 14:41:13 +00002461 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002462 {
2463 pointer __t = __ptr_.first();
2464 __ptr_.first() = pointer();
2465 return __t;
2466 }
2467
Howard Hinnant1694d232011-05-28 14:41:13 +00002468 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002469 {
2470 pointer __tmp = __ptr_.first();
2471 __ptr_.first() = __p;
2472 if (__tmp)
2473 __ptr_.second()(__tmp);
2474 }
2475
Howard Hinnant1694d232011-05-28 14:41:13 +00002476 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) _NOEXCEPT
2477 {__ptr_.swap(__u.__ptr_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002478};
2479
2480template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00002481class _LIBCPP_VISIBLE unique_ptr<_Tp[], _Dp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002482{
2483public:
2484 typedef _Tp element_type;
2485 typedef _Dp deleter_type;
2486 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2487private:
2488 __compressed_pair<pointer, deleter_type> __ptr_;
2489
Howard Hinnant73d21a42010-09-04 23:28:19 +00002490#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002491 unique_ptr(const unique_ptr&);
2492 unique_ptr& operator=(const unique_ptr&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002493#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002494 unique_ptr(unique_ptr&);
2495 template <class _Up>
2496 unique_ptr(unique_ptr<_Up>&);
2497 unique_ptr& operator=(unique_ptr&);
2498 template <class _Up>
2499 unique_ptr& operator=(unique_ptr<_Up>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002500#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002501
2502 struct __nat {int __for_bool_;};
2503
2504 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2505 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2506public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002507 _LIBCPP_INLINE_VISIBILITY unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002508 : __ptr_(pointer())
2509 {
2510 static_assert(!is_pointer<deleter_type>::value,
2511 "unique_ptr constructed with null function pointer deleter");
2512 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002513 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002514 : __ptr_(pointer())
2515 {
2516 static_assert(!is_pointer<deleter_type>::value,
2517 "unique_ptr constructed with null function pointer deleter");
2518 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002519#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002520 template <class _Pp,
2521 class = typename enable_if<is_same<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002522 >
Howard Hinnant99968442011-11-29 18:15:50 +00002523 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002524 : __ptr_(__p)
2525 {
2526 static_assert(!is_pointer<deleter_type>::value,
2527 "unique_ptr constructed with null function pointer deleter");
2528 }
2529
Howard Hinnant99968442011-11-29 18:15:50 +00002530 template <class _Pp,
2531 class = typename enable_if<is_same<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002532 >
Howard Hinnant99968442011-11-29 18:15:50 +00002533 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename conditional<
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002534 is_reference<deleter_type>::value,
2535 deleter_type,
2536 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002537 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002538 : __ptr_(__p, __d) {}
2539
2540 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename conditional<
2541 is_reference<deleter_type>::value,
2542 deleter_type,
2543 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002544 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002545 : __ptr_(pointer(), __d) {}
2546
Howard Hinnant99968442011-11-29 18:15:50 +00002547 template <class _Pp,
2548 class = typename enable_if<is_same<_Pp, pointer>::value ||
2549 is_same<_Pp, nullptr_t>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002550 >
Howard Hinnant99968442011-11-29 18:15:50 +00002551 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002552 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002553 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002554 {
2555 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2556 }
2557
2558 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002559 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002560 : __ptr_(pointer(), _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002561 {
2562 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2563 }
2564
Howard Hinnant1694d232011-05-28 14:41:13 +00002565 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002566 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002567
Howard Hinnant1694d232011-05-28 14:41:13 +00002568 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002569 {
2570 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002571 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002572 return *this;
2573 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002574#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002575
2576 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p)
2577 : __ptr_(__p)
2578 {
2579 static_assert(!is_pointer<deleter_type>::value,
2580 "unique_ptr constructed with null function pointer deleter");
2581 }
2582
2583 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002584 : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002585
2586 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002587 : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002588
2589 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2590 {
2591 return __rv<unique_ptr>(*this);
2592 }
2593
2594 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002595 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002596
2597 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(__rv<unique_ptr> __u)
2598 {
2599 reset(__u->release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002600 __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002601 return *this;
2602 }
2603
Howard Hinnant73d21a42010-09-04 23:28:19 +00002604#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002605 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2606
Howard Hinnant1694d232011-05-28 14:41:13 +00002607 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002608 {
2609 reset();
2610 return *this;
2611 }
2612
2613 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator[](size_t __i) const
2614 {return __ptr_.first()[__i];}
Howard Hinnant1694d232011-05-28 14:41:13 +00002615 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2616 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2617 {return __ptr_.second();}
2618 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2619 {return __ptr_.second();}
2620 _LIBCPP_INLINE_VISIBILITY operator int __nat::*() const _NOEXCEPT
2621 {return __ptr_.first() ? &__nat::__for_bool_ : 0;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002622
Howard Hinnant1694d232011-05-28 14:41:13 +00002623 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002624 {
2625 pointer __t = __ptr_.first();
2626 __ptr_.first() = pointer();
2627 return __t;
2628 }
2629
Howard Hinnant73d21a42010-09-04 23:28:19 +00002630#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002631 template <class _Pp,
2632 class = typename enable_if<is_same<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002633 >
Howard Hinnant99968442011-11-29 18:15:50 +00002634 _LIBCPP_INLINE_VISIBILITY void reset(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002635 {
2636 pointer __tmp = __ptr_.first();
2637 __ptr_.first() = __p;
2638 if (__tmp)
2639 __ptr_.second()(__tmp);
2640 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002641 _LIBCPP_INLINE_VISIBILITY void reset(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002642 {
2643 pointer __tmp = __ptr_.first();
2644 __ptr_.first() = nullptr;
2645 if (__tmp)
2646 __ptr_.second()(__tmp);
2647 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002648 _LIBCPP_INLINE_VISIBILITY void reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002649 {
2650 pointer __tmp = __ptr_.first();
2651 __ptr_.first() = nullptr;
2652 if (__tmp)
2653 __ptr_.second()(__tmp);
2654 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002655#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002656 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer())
2657 {
2658 pointer __tmp = __ptr_.first();
2659 __ptr_.first() = __p;
2660 if (__tmp)
2661 __ptr_.second()(__tmp);
2662 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002663#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002664
2665 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) {__ptr_.swap(__u.__ptr_);}
2666private:
Howard Hinnant324bb032010-08-22 00:02:43 +00002667
Howard Hinnant73d21a42010-09-04 23:28:19 +00002668#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002669 template <class _Up>
2670 explicit unique_ptr(_Up);
2671 template <class _Up>
2672 unique_ptr(_Up __u,
2673 typename conditional<
2674 is_reference<deleter_type>::value,
2675 deleter_type,
2676 typename add_lvalue_reference<const deleter_type>::type>::type,
2677 typename enable_if
2678 <
2679 is_convertible<_Up, pointer>::value,
2680 __nat
2681 >::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00002682#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002683};
2684
2685template <class _Tp, class _Dp>
2686inline _LIBCPP_INLINE_VISIBILITY
2687void
Howard Hinnant1694d232011-05-28 14:41:13 +00002688swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002689
2690template <class _T1, class _D1, class _T2, class _D2>
2691inline _LIBCPP_INLINE_VISIBILITY
2692bool
2693operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
2694
2695template <class _T1, class _D1, class _T2, class _D2>
2696inline _LIBCPP_INLINE_VISIBILITY
2697bool
2698operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
2699
2700template <class _T1, class _D1, class _T2, class _D2>
2701inline _LIBCPP_INLINE_VISIBILITY
2702bool
2703operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() < __y.get();}
2704
2705template <class _T1, class _D1, class _T2, class _D2>
2706inline _LIBCPP_INLINE_VISIBILITY
2707bool
2708operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
2709
2710template <class _T1, class _D1, class _T2, class _D2>
2711inline _LIBCPP_INLINE_VISIBILITY
2712bool
2713operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);}
2714
2715template <class _T1, class _D1, class _T2, class _D2>
2716inline _LIBCPP_INLINE_VISIBILITY
2717bool
2718operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);}
2719
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00002720template <class _Tp> struct hash;
Howard Hinnant21aefc32010-06-03 16:42:57 +00002721
2722template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002723struct _LIBCPP_VISIBLE hash<_Tp*>
Howard Hinnant21aefc32010-06-03 16:42:57 +00002724 : public unary_function<_Tp*, size_t>
2725{
Howard Hinnant82894812010-09-22 16:48:34 +00002726 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002727 size_t operator()(_Tp* __v) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00002728 {
2729 const size_t* const __p = reinterpret_cast<const size_t*>(&__v);
2730 return *__p;
2731 }
2732};
2733
2734template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00002735struct _LIBCPP_VISIBLE hash<unique_ptr<_Tp, _Dp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00002736{
2737 typedef unique_ptr<_Tp, _Dp> argument_type;
2738 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00002739 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002740 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00002741 {
2742 typedef typename argument_type::pointer pointer;
2743 return hash<pointer>()(__ptr.get());
2744 }
2745};
2746
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002747struct __destruct_n
2748{
2749private:
2750 size_t size;
2751
2752 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00002753 _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002754 {for (size_t __i = 0; __i < size; ++__i, ++__p) __p->~_Tp();}
2755
2756 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00002757 _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002758 {}
2759
Howard Hinnant1694d232011-05-28 14:41:13 +00002760 _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002761 {++size;}
Howard Hinnant1694d232011-05-28 14:41:13 +00002762 _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002763 {}
2764
Howard Hinnant1694d232011-05-28 14:41:13 +00002765 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002766 {size = __s;}
Howard Hinnant1694d232011-05-28 14:41:13 +00002767 _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002768 {}
2769public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002770 _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT
2771 : size(__s) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002772
2773 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00002774 _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00002775 {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002776
2777 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00002778 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00002779 {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002780
2781 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00002782 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00002783 {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002784};
2785
2786template <class _Alloc>
2787class __allocator_destructor
2788{
2789 typedef allocator_traits<_Alloc> __alloc_traits;
2790public:
2791 typedef typename __alloc_traits::pointer pointer;
2792 typedef typename __alloc_traits::size_type size_type;
2793private:
2794 _Alloc& __alloc_;
2795 size_type __s_;
2796public:
2797 _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s)
Howard Hinnant1694d232011-05-28 14:41:13 +00002798 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002799 : __alloc_(__a), __s_(__s) {}
Howard Hinnant82894812010-09-22 16:48:34 +00002800 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002801 void operator()(pointer __p) _NOEXCEPT
2802 {__alloc_traits::deallocate(__alloc_, __p, __s_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002803};
2804
2805template <class _InputIterator, class _ForwardIterator>
2806_ForwardIterator
2807uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r)
2808{
2809 __destruct_n __d(0);
2810 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
2811 unique_ptr<value_type, __destruct_n&> __h(&*__r, __d);
2812 for (; __f != __l; ++__f, ++__r, __d.__incr((value_type*)0))
2813 ::new(&*__r) value_type(*__f);
2814 __h.release();
2815 return __r;
2816}
2817
2818template <class _InputIterator, class _Size, class _ForwardIterator>
2819_ForwardIterator
2820uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r)
2821{
2822 __destruct_n __d(0);
2823 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
2824 unique_ptr<value_type, __destruct_n&> __h(&*__r, __d);
2825 for (; __n > 0; ++__f, ++__r, __d.__incr((value_type*)0), --__n)
2826 ::new(&*__r) value_type(*__f);
2827 __h.release();
2828 return __r;
2829}
2830
2831template <class _ForwardIterator, class _Tp>
2832void
2833uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x)
2834{
2835 __destruct_n __d(0);
2836 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
2837 unique_ptr<value_type, __destruct_n&> __h(&*__f, __d);
2838 for (; __f != __l; ++__f, __d.__incr((value_type*)0))
2839 ::new(&*__f) value_type(__x);
2840 __h.release();
2841}
2842
2843template <class _ForwardIterator, class _Size, class _Tp>
Howard Hinnant2f6a6272010-11-18 16:13:03 +00002844_ForwardIterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002845uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x)
2846{
2847 __destruct_n __d(0);
2848 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
2849 unique_ptr<value_type, __destruct_n&> __h(&*__f, __d);
2850 for (; __n > 0; ++__f, --__n, __d.__incr((value_type*)0))
2851 ::new(&*__f) value_type(__x);
2852 __h.release();
Howard Hinnant2f6a6272010-11-18 16:13:03 +00002853 return __f;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002854}
2855
Howard Hinnant82894812010-09-22 16:48:34 +00002856class _LIBCPP_EXCEPTION_ABI bad_weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002857 : public std::exception
2858{
2859public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002860 virtual ~bad_weak_ptr() _NOEXCEPT;
2861 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002862};
2863
2864template<class _Tp> class weak_ptr;
2865
2866class __shared_count
2867{
2868 __shared_count(const __shared_count&);
2869 __shared_count& operator=(const __shared_count&);
2870
2871protected:
2872 long __shared_owners_;
2873 virtual ~__shared_count();
2874private:
Howard Hinnant1694d232011-05-28 14:41:13 +00002875 virtual void __on_zero_shared() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002876
2877public:
Howard Hinnant82894812010-09-22 16:48:34 +00002878 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002879 explicit __shared_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002880 : __shared_owners_(__refs) {}
2881
Howard Hinnant1694d232011-05-28 14:41:13 +00002882 void __add_shared() _NOEXCEPT;
2883 bool __release_shared() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00002884 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002885 long use_count() const _NOEXCEPT {return __shared_owners_ + 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002886};
2887
2888class __shared_weak_count
2889 : private __shared_count
2890{
2891 long __shared_weak_owners_;
2892
2893public:
Howard Hinnant82894812010-09-22 16:48:34 +00002894 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002895 explicit __shared_weak_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002896 : __shared_count(__refs),
2897 __shared_weak_owners_(__refs) {}
2898protected:
2899 virtual ~__shared_weak_count();
2900
2901public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002902 void __add_shared() _NOEXCEPT;
2903 void __add_weak() _NOEXCEPT;
2904 void __release_shared() _NOEXCEPT;
2905 void __release_weak() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00002906 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00002907 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
2908 __shared_weak_count* lock() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002909
Howard Hinnant1694d232011-05-28 14:41:13 +00002910 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002911private:
Howard Hinnant1694d232011-05-28 14:41:13 +00002912 virtual void __on_zero_shared_weak() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002913};
2914
2915template <class _Tp, class _Dp, class _Alloc>
2916class __shared_ptr_pointer
2917 : public __shared_weak_count
2918{
2919 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_;
2920public:
Howard Hinnant82894812010-09-22 16:48:34 +00002921 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002922 __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002923 : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002924
Howard Hinnantd4444702010-08-11 17:04:31 +00002925#ifndef _LIBCPP_NO_RTTI
Howard Hinnant1694d232011-05-28 14:41:13 +00002926 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantd4444702010-08-11 17:04:31 +00002927#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002928
2929private:
Howard Hinnant1694d232011-05-28 14:41:13 +00002930 virtual void __on_zero_shared() _NOEXCEPT;
2931 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002932};
2933
Howard Hinnantd4444702010-08-11 17:04:31 +00002934#ifndef _LIBCPP_NO_RTTI
2935
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002936template <class _Tp, class _Dp, class _Alloc>
2937const void*
Howard Hinnant1694d232011-05-28 14:41:13 +00002938__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002939{
2940 return __t == typeid(_Dp) ? &__data_.first().second() : 0;
2941}
2942
Howard Hinnant324bb032010-08-22 00:02:43 +00002943#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00002944
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002945template <class _Tp, class _Dp, class _Alloc>
2946void
Howard Hinnant1694d232011-05-28 14:41:13 +00002947__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002948{
2949 __data_.first().second()(__data_.first().first());
2950 __data_.first().second().~_Dp();
2951}
2952
2953template <class _Tp, class _Dp, class _Alloc>
2954void
Howard Hinnant1694d232011-05-28 14:41:13 +00002955__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002956{
2957 typename _Alloc::template rebind<__shared_ptr_pointer>::other __a(__data_.second());
2958 __data_.second().~_Alloc();
2959 __a.deallocate(this, 1);
2960}
2961
2962template <class _Tp, class _Alloc>
2963class __shared_ptr_emplace
2964 : public __shared_weak_count
2965{
2966 __compressed_pair<_Alloc, _Tp> __data_;
2967public:
2968#ifndef _LIBCPP_HAS_NO_VARIADICS
2969
Howard Hinnant82894812010-09-22 16:48:34 +00002970 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002971 __shared_ptr_emplace(_Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002972 : __data_(_VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002973
2974 template <class ..._Args>
Howard Hinnant82894812010-09-22 16:48:34 +00002975 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002976 __shared_ptr_emplace(_Alloc __a, _Args&& ...__args)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002977 : __data_(_VSTD::move(__a), _Tp(_VSTD::forward<_Args>(__args)...)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002978
2979#else // _LIBCPP_HAS_NO_VARIADICS
2980
Howard Hinnant82894812010-09-22 16:48:34 +00002981 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002982 __shared_ptr_emplace(_Alloc __a)
2983 : __data_(__a) {}
2984
2985 template <class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00002986 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002987 __shared_ptr_emplace(_Alloc __a, _A0& __a0)
2988 : __data_(__a, _Tp(__a0)) {}
2989
2990 template <class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00002991 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002992 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
2993 : __data_(__a, _Tp(__a0, __a1)) {}
2994
2995 template <class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00002996 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002997 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
2998 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
2999
3000#endif // _LIBCPP_HAS_NO_VARIADICS
3001
3002private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003003 virtual void __on_zero_shared() _NOEXCEPT;
3004 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003005public:
Howard Hinnant82894812010-09-22 16:48:34 +00003006 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003007 _Tp* get() _NOEXCEPT {return &__data_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003008};
3009
3010template <class _Tp, class _Alloc>
3011void
Howard Hinnant1694d232011-05-28 14:41:13 +00003012__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003013{
3014 __data_.second().~_Tp();
3015}
3016
3017template <class _Tp, class _Alloc>
3018void
Howard Hinnant1694d232011-05-28 14:41:13 +00003019__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003020{
3021 typename _Alloc::template rebind<__shared_ptr_emplace>::other __a(__data_.first());
3022 __data_.first().~_Alloc();
3023 __a.deallocate(this, 1);
3024}
3025
3026template<class _Tp> class enable_shared_from_this;
3027
3028template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00003029class _LIBCPP_VISIBLE shared_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003030{
Howard Hinnant324bb032010-08-22 00:02:43 +00003031public:
3032 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003033private:
3034 element_type* __ptr_;
3035 __shared_weak_count* __cntrl_;
3036
3037 struct __nat {int __for_bool_;};
3038public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003039 shared_ptr() _NOEXCEPT;
3040 shared_ptr(nullptr_t) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003041 template<class _Yp> explicit shared_ptr(_Yp* __p);
Howard Hinnant324bb032010-08-22 00:02:43 +00003042 template<class _Yp, class _Dp> shared_ptr(_Yp* __p, _Dp __d);
3043 template<class _Yp, class _Dp, class _Alloc> shared_ptr(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003044 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
3045 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
Howard Hinnant1694d232011-05-28 14:41:13 +00003046 template<class _Yp> shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT;
3047 shared_ptr(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003048 template<class _Yp>
3049 shared_ptr(const shared_ptr<_Yp>& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003050 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3051 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003052#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003053 shared_ptr(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003054 template<class _Yp> shared_ptr(shared_ptr<_Yp>&& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003055 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3056 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003057#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003058 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r,
Howard Hinnant324bb032010-08-22 00:02:43 +00003059 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type= __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003060#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00003061 template<class _Yp> shared_ptr(auto_ptr<_Yp>&& __r);
3062#else
3063 template<class _Yp> shared_ptr(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003064#endif
Howard Hinnant73d21a42010-09-04 23:28:19 +00003065#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003066private:
Howard Hinnant324bb032010-08-22 00:02:43 +00003067 template <class _Yp, class _Dp> shared_ptr(const unique_ptr<_Yp, _Dp>& __r);// = delete;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003068public:
3069 template <class _Yp, class _Dp> shared_ptr(unique_ptr<_Yp, _Dp>&&,
3070 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
3071 template <class _Yp, class _Dp> shared_ptr(unique_ptr<_Yp, _Dp>&&,
3072 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003073#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003074 template <class _Yp, class _Dp> shared_ptr(unique_ptr<_Yp, _Dp>,
3075 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
3076 template <class _Yp, class _Dp> shared_ptr(unique_ptr<_Yp, _Dp>,
3077 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003078#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003079
3080 ~shared_ptr();
3081
Howard Hinnant1694d232011-05-28 14:41:13 +00003082 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT;
3083 template<class _Yp> shared_ptr& operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003084#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003085 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00003086 template<class _Yp> shared_ptr& operator=(shared_ptr<_Yp>&& __r);
3087 template<class _Yp> shared_ptr& operator=(auto_ptr<_Yp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003088#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00003089 template<class _Yp> shared_ptr& operator=(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003090#endif
Howard Hinnant73d21a42010-09-04 23:28:19 +00003091#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003092private:
Howard Hinnant324bb032010-08-22 00:02:43 +00003093 template <class _Yp, class _Dp> shared_ptr& operator=(const unique_ptr<_Yp, _Dp>& __r);// = delete;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003094public:
Howard Hinnant324bb032010-08-22 00:02:43 +00003095 template <class _Yp, class _Dp> shared_ptr& operator=(unique_ptr<_Yp, _Dp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003096#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00003097 template <class _Yp, class _Dp> shared_ptr& operator=(unique_ptr<_Yp, _Dp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003098#endif
3099
Howard Hinnant1694d232011-05-28 14:41:13 +00003100 void swap(shared_ptr& __r) _NOEXCEPT;
3101 void reset() _NOEXCEPT;
3102 template<class _Yp> void reset(_Yp* __p) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003103 template<class _Yp, class _Dp> void reset(_Yp* __p, _Dp __d);
3104 template<class _Yp, class _Dp, class _Alloc> void reset(_Yp* __p, _Dp __d, _Alloc __a);
3105
Howard Hinnant82894812010-09-22 16:48:34 +00003106 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003107 element_type* get() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003108 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003109 typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT
3110 {return *__ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003111 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003112 element_type* operator->() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003113 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003114 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00003115 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003116 bool unique() const _NOEXCEPT {return use_count() == 1;}
Howard Hinnant82894812010-09-22 16:48:34 +00003117 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003118 /*explicit*/ operator bool() const _NOEXCEPT {return get() != 0;}
Howard Hinnant99968442011-11-29 18:15:50 +00003119 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003120 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003121 bool owner_before(shared_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003122 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant99968442011-11-29 18:15:50 +00003123 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003124 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003125 bool owner_before(weak_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003126 {return __cntrl_ < __p.__cntrl_;}
3127
Howard Hinnantd4444702010-08-11 17:04:31 +00003128#ifndef _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003129 template <class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003130 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003131 _Dp* __get_deleter() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003132 {return (_Dp*)(__cntrl_ ? __cntrl_->__get_deleter(typeid(_Dp)) : 0);}
Howard Hinnant324bb032010-08-22 00:02:43 +00003133#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003134
3135#ifndef _LIBCPP_HAS_NO_VARIADICS
3136
3137 template<class ..._Args>
3138 static
3139 shared_ptr<_Tp>
3140 make_shared(_Args&& ...__args);
3141
3142 template<class _Alloc, class ..._Args>
3143 static
3144 shared_ptr<_Tp>
3145 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3146
3147#else // _LIBCPP_HAS_NO_VARIADICS
3148
3149 static shared_ptr<_Tp> make_shared();
3150
3151 template<class _A0>
3152 static shared_ptr<_Tp> make_shared(_A0&);
3153
3154 template<class _A0, class _A1>
3155 static shared_ptr<_Tp> make_shared(_A0&, _A1&);
3156
3157 template<class _A0, class _A1, class _A2>
3158 static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&);
3159
3160 template<class _Alloc>
3161 static shared_ptr<_Tp>
3162 allocate_shared(const _Alloc& __a);
3163
3164 template<class _Alloc, class _A0>
3165 static shared_ptr<_Tp>
3166 allocate_shared(const _Alloc& __a, _A0& __a0);
3167
3168 template<class _Alloc, class _A0, class _A1>
3169 static shared_ptr<_Tp>
3170 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
3171
3172 template<class _Alloc, class _A0, class _A1, class _A2>
3173 static shared_ptr<_Tp>
3174 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
3175
3176#endif // _LIBCPP_HAS_NO_VARIADICS
3177
3178private:
3179
3180 template <class _Yp>
Howard Hinnant82894812010-09-22 16:48:34 +00003181 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003182 void
Howard Hinnant1694d232011-05-28 14:41:13 +00003183 __enable_weak_this(const enable_shared_from_this<_Yp>* __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003184 {
3185 if (__e)
3186 __e->__weak_this_ = *this;
3187 }
3188
Howard Hinnant82894812010-09-22 16:48:34 +00003189 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003190 void __enable_weak_this(const void*) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003191
Howard Hinnant82894812010-09-22 16:48:34 +00003192 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
3193 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003194};
3195
3196template<class _Tp>
3197inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003198shared_ptr<_Tp>::shared_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003199 : __ptr_(0),
3200 __cntrl_(0)
3201{
3202}
3203
3204template<class _Tp>
3205inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003206shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003207 : __ptr_(0),
3208 __cntrl_(0)
3209{
3210}
3211
3212template<class _Tp>
3213template<class _Yp>
3214shared_ptr<_Tp>::shared_ptr(_Yp* __p)
3215 : __ptr_(__p)
3216{
3217 unique_ptr<_Yp> __hold(__p);
3218 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
3219 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>());
3220 __hold.release();
3221 __enable_weak_this(__p);
3222}
3223
3224template<class _Tp>
3225template<class _Yp, class _Dp>
3226shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d)
3227 : __ptr_(__p)
3228{
3229#ifndef _LIBCPP_NO_EXCEPTIONS
3230 try
3231 {
Howard Hinnant324bb032010-08-22 00:02:43 +00003232#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003233 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
3234 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>());
3235 __enable_weak_this(__p);
3236#ifndef _LIBCPP_NO_EXCEPTIONS
3237 }
3238 catch (...)
3239 {
3240 __d(__p);
3241 throw;
3242 }
Howard Hinnant324bb032010-08-22 00:02:43 +00003243#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003244}
3245
3246template<class _Tp>
3247template<class _Dp>
3248shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
3249 : __ptr_(0)
3250{
3251#ifndef _LIBCPP_NO_EXCEPTIONS
3252 try
3253 {
Howard Hinnant324bb032010-08-22 00:02:43 +00003254#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003255 typedef __shared_ptr_pointer<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk;
3256 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>());
3257#ifndef _LIBCPP_NO_EXCEPTIONS
3258 }
3259 catch (...)
3260 {
3261 __d(__p);
3262 throw;
3263 }
Howard Hinnant324bb032010-08-22 00:02:43 +00003264#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003265}
3266
3267template<class _Tp>
3268template<class _Yp, class _Dp, class _Alloc>
3269shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a)
3270 : __ptr_(__p)
3271{
3272#ifndef _LIBCPP_NO_EXCEPTIONS
3273 try
3274 {
Howard Hinnant324bb032010-08-22 00:02:43 +00003275#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003276 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
3277 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
3278 typedef __allocator_destructor<_A2> _D2;
3279 _A2 __a2(__a);
3280 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
3281 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
3282 __cntrl_ = __hold2.release();
3283 __enable_weak_this(__p);
3284#ifndef _LIBCPP_NO_EXCEPTIONS
3285 }
3286 catch (...)
3287 {
3288 __d(__p);
3289 throw;
3290 }
Howard Hinnant324bb032010-08-22 00:02:43 +00003291#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003292}
3293
3294template<class _Tp>
3295template<class _Dp, class _Alloc>
3296shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
3297 : __ptr_(0)
3298{
3299#ifndef _LIBCPP_NO_EXCEPTIONS
3300 try
3301 {
Howard Hinnant324bb032010-08-22 00:02:43 +00003302#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003303 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
3304 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
3305 typedef __allocator_destructor<_A2> _D2;
3306 _A2 __a2(__a);
3307 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
3308 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
3309 __cntrl_ = __hold2.release();
3310#ifndef _LIBCPP_NO_EXCEPTIONS
3311 }
3312 catch (...)
3313 {
3314 __d(__p);
3315 throw;
3316 }
Howard Hinnant324bb032010-08-22 00:02:43 +00003317#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003318}
3319
3320template<class _Tp>
3321template<class _Yp>
3322inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003323shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003324 : __ptr_(__p),
3325 __cntrl_(__r.__cntrl_)
3326{
3327 if (__cntrl_)
3328 __cntrl_->__add_shared();
3329}
3330
3331template<class _Tp>
3332inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003333shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003334 : __ptr_(__r.__ptr_),
3335 __cntrl_(__r.__cntrl_)
3336{
3337 if (__cntrl_)
3338 __cntrl_->__add_shared();
3339}
3340
3341template<class _Tp>
3342template<class _Yp>
3343inline _LIBCPP_INLINE_VISIBILITY
3344shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r,
3345 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00003346 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003347 : __ptr_(__r.__ptr_),
3348 __cntrl_(__r.__cntrl_)
3349{
3350 if (__cntrl_)
3351 __cntrl_->__add_shared();
3352}
3353
Howard Hinnant73d21a42010-09-04 23:28:19 +00003354#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003355
3356template<class _Tp>
3357inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003358shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003359 : __ptr_(__r.__ptr_),
3360 __cntrl_(__r.__cntrl_)
3361{
3362 __r.__ptr_ = 0;
3363 __r.__cntrl_ = 0;
3364}
3365
3366template<class _Tp>
3367template<class _Yp>
3368inline _LIBCPP_INLINE_VISIBILITY
3369shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r,
3370 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00003371 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003372 : __ptr_(__r.__ptr_),
3373 __cntrl_(__r.__cntrl_)
3374{
3375 __r.__ptr_ = 0;
3376 __r.__cntrl_ = 0;
3377}
3378
Howard Hinnant73d21a42010-09-04 23:28:19 +00003379#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003380
3381template<class _Tp>
3382template<class _Yp>
Howard Hinnant73d21a42010-09-04 23:28:19 +00003383#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003384shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r)
3385#else
Howard Hinnant92172b82010-08-21 21:14:53 +00003386shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003387#endif
3388 : __ptr_(__r.get())
3389{
3390 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
3391 __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>());
3392 __enable_weak_this(__r.get());
3393 __r.release();
3394}
3395
3396template<class _Tp>
3397template <class _Yp, class _Dp>
Howard Hinnant73d21a42010-09-04 23:28:19 +00003398#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003399shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
3400#else
3401shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
3402#endif
3403 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type)
3404 : __ptr_(__r.get())
3405{
3406 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
3407 __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), allocator<_Yp>());
3408 __enable_weak_this(__r.get());
3409 __r.release();
3410}
3411
3412template<class _Tp>
3413template <class _Yp, class _Dp>
Howard Hinnant73d21a42010-09-04 23:28:19 +00003414#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003415shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
3416#else
3417shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
3418#endif
3419 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type)
3420 : __ptr_(__r.get())
3421{
3422 typedef __shared_ptr_pointer<_Yp*,
3423 reference_wrapper<typename remove_reference<_Dp>::type>,
3424 allocator<_Yp> > _CntrlBlk;
3425 __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), allocator<_Yp>());
3426 __enable_weak_this(__r.get());
3427 __r.release();
3428}
3429
3430#ifndef _LIBCPP_HAS_NO_VARIADICS
3431
3432template<class _Tp>
3433template<class ..._Args>
3434shared_ptr<_Tp>
3435shared_ptr<_Tp>::make_shared(_Args&& ...__args)
3436{
3437 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
3438 typedef allocator<_CntrlBlk> _A2;
3439 typedef __allocator_destructor<_A2> _D2;
3440 _A2 __a2;
3441 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00003442 ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003443 shared_ptr<_Tp> __r;
3444 __r.__ptr_ = __hold2.get()->get();
3445 __r.__cntrl_ = __hold2.release();
3446 __r.__enable_weak_this(__r.__ptr_);
3447 return __r;
3448}
3449
3450template<class _Tp>
3451template<class _Alloc, class ..._Args>
3452shared_ptr<_Tp>
3453shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
3454{
3455 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
3456 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
3457 typedef __allocator_destructor<_A2> _D2;
3458 _A2 __a2(__a);
3459 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00003460 ::new(__hold2.get()) _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003461 shared_ptr<_Tp> __r;
3462 __r.__ptr_ = __hold2.get()->get();
3463 __r.__cntrl_ = __hold2.release();
3464 __r.__enable_weak_this(__r.__ptr_);
3465 return __r;
3466}
3467
3468#else // _LIBCPP_HAS_NO_VARIADICS
3469
3470template<class _Tp>
3471shared_ptr<_Tp>
3472shared_ptr<_Tp>::make_shared()
3473{
3474 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
3475 typedef allocator<_CntrlBlk> _Alloc2;
3476 typedef __allocator_destructor<_Alloc2> _D2;
3477 _Alloc2 __alloc2;
3478 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3479 ::new(__hold2.get()) _CntrlBlk(__alloc2);
3480 shared_ptr<_Tp> __r;
3481 __r.__ptr_ = __hold2.get()->get();
3482 __r.__cntrl_ = __hold2.release();
3483 __r.__enable_weak_this(__r.__ptr_);
3484 return __r;
3485}
3486
3487template<class _Tp>
3488template<class _A0>
3489shared_ptr<_Tp>
3490shared_ptr<_Tp>::make_shared(_A0& __a0)
3491{
3492 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
3493 typedef allocator<_CntrlBlk> _Alloc2;
3494 typedef __allocator_destructor<_Alloc2> _D2;
3495 _Alloc2 __alloc2;
3496 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3497 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0);
3498 shared_ptr<_Tp> __r;
3499 __r.__ptr_ = __hold2.get()->get();
3500 __r.__cntrl_ = __hold2.release();
3501 __r.__enable_weak_this(__r.__ptr_);
3502 return __r;
3503}
3504
3505template<class _Tp>
3506template<class _A0, class _A1>
3507shared_ptr<_Tp>
3508shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
3509{
3510 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
3511 typedef allocator<_CntrlBlk> _Alloc2;
3512 typedef __allocator_destructor<_Alloc2> _D2;
3513 _Alloc2 __alloc2;
3514 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3515 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
3516 shared_ptr<_Tp> __r;
3517 __r.__ptr_ = __hold2.get()->get();
3518 __r.__cntrl_ = __hold2.release();
3519 __r.__enable_weak_this(__r.__ptr_);
3520 return __r;
3521}
3522
3523template<class _Tp>
3524template<class _A0, class _A1, class _A2>
3525shared_ptr<_Tp>
3526shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
3527{
3528 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
3529 typedef allocator<_CntrlBlk> _Alloc2;
3530 typedef __allocator_destructor<_Alloc2> _D2;
3531 _Alloc2 __alloc2;
3532 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3533 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
3534 shared_ptr<_Tp> __r;
3535 __r.__ptr_ = __hold2.get()->get();
3536 __r.__cntrl_ = __hold2.release();
3537 __r.__enable_weak_this(__r.__ptr_);
3538 return __r;
3539}
3540
3541template<class _Tp>
3542template<class _Alloc>
3543shared_ptr<_Tp>
3544shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
3545{
3546 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
3547 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
3548 typedef __allocator_destructor<_Alloc2> _D2;
3549 _Alloc2 __alloc2(__a);
3550 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3551 ::new(__hold2.get()) _CntrlBlk(__a);
3552 shared_ptr<_Tp> __r;
3553 __r.__ptr_ = __hold2.get()->get();
3554 __r.__cntrl_ = __hold2.release();
3555 __r.__enable_weak_this(__r.__ptr_);
3556 return __r;
3557}
3558
3559template<class _Tp>
3560template<class _Alloc, class _A0>
3561shared_ptr<_Tp>
3562shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
3563{
3564 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
3565 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
3566 typedef __allocator_destructor<_Alloc2> _D2;
3567 _Alloc2 __alloc2(__a);
3568 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3569 ::new(__hold2.get()) _CntrlBlk(__a, __a0);
3570 shared_ptr<_Tp> __r;
3571 __r.__ptr_ = __hold2.get()->get();
3572 __r.__cntrl_ = __hold2.release();
3573 __r.__enable_weak_this(__r.__ptr_);
3574 return __r;
3575}
3576
3577template<class _Tp>
3578template<class _Alloc, class _A0, class _A1>
3579shared_ptr<_Tp>
3580shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
3581{
3582 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
3583 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
3584 typedef __allocator_destructor<_Alloc2> _D2;
3585 _Alloc2 __alloc2(__a);
3586 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3587 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1);
3588 shared_ptr<_Tp> __r;
3589 __r.__ptr_ = __hold2.get()->get();
3590 __r.__cntrl_ = __hold2.release();
3591 __r.__enable_weak_this(__r.__ptr_);
3592 return __r;
3593}
3594
3595template<class _Tp>
3596template<class _Alloc, class _A0, class _A1, class _A2>
3597shared_ptr<_Tp>
3598shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
3599{
3600 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
3601 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
3602 typedef __allocator_destructor<_Alloc2> _D2;
3603 _Alloc2 __alloc2(__a);
3604 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
3605 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1, __a2);
3606 shared_ptr<_Tp> __r;
3607 __r.__ptr_ = __hold2.get()->get();
3608 __r.__cntrl_ = __hold2.release();
3609 __r.__enable_weak_this(__r.__ptr_);
3610 return __r;
3611}
3612
3613#endif // _LIBCPP_HAS_NO_VARIADICS
3614
3615template<class _Tp>
3616shared_ptr<_Tp>::~shared_ptr()
3617{
3618 if (__cntrl_)
3619 __cntrl_->__release_shared();
3620}
3621
3622template<class _Tp>
3623inline _LIBCPP_INLINE_VISIBILITY
3624shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00003625shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003626{
3627 shared_ptr(__r).swap(*this);
3628 return *this;
3629}
3630
3631template<class _Tp>
3632template<class _Yp>
3633inline _LIBCPP_INLINE_VISIBILITY
3634shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00003635shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003636{
3637 shared_ptr(__r).swap(*this);
3638 return *this;
3639}
3640
Howard Hinnant73d21a42010-09-04 23:28:19 +00003641#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003642
3643template<class _Tp>
3644inline _LIBCPP_INLINE_VISIBILITY
3645shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00003646shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003647{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003648 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003649 return *this;
3650}
3651
3652template<class _Tp>
3653template<class _Yp>
3654inline _LIBCPP_INLINE_VISIBILITY
3655shared_ptr<_Tp>&
3656shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r)
3657{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003658 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003659 return *this;
3660}
3661
3662template<class _Tp>
3663template<class _Yp>
3664inline _LIBCPP_INLINE_VISIBILITY
3665shared_ptr<_Tp>&
3666shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r)
3667{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003668 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003669 return *this;
3670}
3671
3672template<class _Tp>
3673template <class _Yp, class _Dp>
3674inline _LIBCPP_INLINE_VISIBILITY
3675shared_ptr<_Tp>&
3676shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r)
3677{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003678 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003679 return *this;
3680}
3681
Howard Hinnant73d21a42010-09-04 23:28:19 +00003682#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003683
3684template<class _Tp>
3685template<class _Yp>
3686inline _LIBCPP_INLINE_VISIBILITY
3687shared_ptr<_Tp>&
Howard Hinnant324bb032010-08-22 00:02:43 +00003688shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003689{
3690 shared_ptr(__r).swap(*this);
3691 return *this;
3692}
3693
3694template<class _Tp>
3695template <class _Yp, class _Dp>
3696inline _LIBCPP_INLINE_VISIBILITY
3697shared_ptr<_Tp>&
3698shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r)
3699{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003700 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003701 return *this;
3702}
3703
Howard Hinnant73d21a42010-09-04 23:28:19 +00003704#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003705
3706template<class _Tp>
3707inline _LIBCPP_INLINE_VISIBILITY
3708void
Howard Hinnant1694d232011-05-28 14:41:13 +00003709shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003710{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003711 _VSTD::swap(__ptr_, __r.__ptr_);
3712 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003713}
3714
3715template<class _Tp>
3716inline _LIBCPP_INLINE_VISIBILITY
3717void
Howard Hinnant1694d232011-05-28 14:41:13 +00003718shared_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003719{
3720 shared_ptr().swap(*this);
3721}
3722
3723template<class _Tp>
3724template<class _Yp>
3725inline _LIBCPP_INLINE_VISIBILITY
3726void
3727shared_ptr<_Tp>::reset(_Yp* __p)
3728{
3729 shared_ptr(__p).swap(*this);
3730}
3731
3732template<class _Tp>
3733template<class _Yp, class _Dp>
3734inline _LIBCPP_INLINE_VISIBILITY
3735void
3736shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d)
3737{
3738 shared_ptr(__p, __d).swap(*this);
3739}
3740
3741template<class _Tp>
3742template<class _Yp, class _Dp, class _Alloc>
3743inline _LIBCPP_INLINE_VISIBILITY
3744void
3745shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a)
3746{
3747 shared_ptr(__p, __d, __a).swap(*this);
3748}
3749
3750#ifndef _LIBCPP_HAS_NO_VARIADICS
3751
Howard Hinnant324bb032010-08-22 00:02:43 +00003752template<class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003753inline _LIBCPP_INLINE_VISIBILITY
3754shared_ptr<_Tp>
3755make_shared(_Args&& ...__args)
3756{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003757 return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003758}
3759
Howard Hinnant324bb032010-08-22 00:02:43 +00003760template<class _Tp, class _Alloc, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003761inline _LIBCPP_INLINE_VISIBILITY
3762shared_ptr<_Tp>
3763allocate_shared(const _Alloc& __a, _Args&& ...__args)
3764{
Howard Hinnant0949eed2011-06-30 21:18:19 +00003765 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003766}
3767
3768#else // _LIBCPP_HAS_NO_VARIADICS
3769
3770template<class _Tp>
3771inline _LIBCPP_INLINE_VISIBILITY
3772shared_ptr<_Tp>
3773make_shared()
3774{
3775 return shared_ptr<_Tp>::make_shared();
3776}
3777
3778template<class _Tp, class _A0>
3779inline _LIBCPP_INLINE_VISIBILITY
3780shared_ptr<_Tp>
3781make_shared(_A0& __a0)
3782{
3783 return shared_ptr<_Tp>::make_shared(__a0);
3784}
3785
3786template<class _Tp, class _A0, class _A1>
3787inline _LIBCPP_INLINE_VISIBILITY
3788shared_ptr<_Tp>
3789make_shared(_A0& __a0, _A1& __a1)
3790{
3791 return shared_ptr<_Tp>::make_shared(__a0, __a1);
3792}
3793
Howard Hinnant324bb032010-08-22 00:02:43 +00003794template<class _Tp, class _A0, class _A1, class _A2>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003795inline _LIBCPP_INLINE_VISIBILITY
3796shared_ptr<_Tp>
3797make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
3798{
3799 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
3800}
3801
3802template<class _Tp, class _Alloc>
3803inline _LIBCPP_INLINE_VISIBILITY
3804shared_ptr<_Tp>
3805allocate_shared(const _Alloc& __a)
3806{
3807 return shared_ptr<_Tp>::allocate_shared(__a);
3808}
3809
3810template<class _Tp, class _Alloc, class _A0>
3811inline _LIBCPP_INLINE_VISIBILITY
3812shared_ptr<_Tp>
3813allocate_shared(const _Alloc& __a, _A0& __a0)
3814{
3815 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
3816}
3817
3818template<class _Tp, class _Alloc, class _A0, class _A1>
3819inline _LIBCPP_INLINE_VISIBILITY
3820shared_ptr<_Tp>
3821allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
3822{
3823 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
3824}
3825
3826template<class _Tp, class _Alloc, class _A0, class _A1, class _A2>
3827inline _LIBCPP_INLINE_VISIBILITY
3828shared_ptr<_Tp>
3829allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
3830{
3831 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
3832}
3833
3834#endif // _LIBCPP_HAS_NO_VARIADICS
3835
3836template<class _Tp, class _Up>
3837inline _LIBCPP_INLINE_VISIBILITY
3838bool
Howard Hinnant1694d232011-05-28 14:41:13 +00003839operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003840{
3841 return __x.get() == __y.get();
3842}
3843
3844template<class _Tp, class _Up>
3845inline _LIBCPP_INLINE_VISIBILITY
3846bool
Howard Hinnant1694d232011-05-28 14:41:13 +00003847operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003848{
3849 return !(__x == __y);
3850}
3851
3852template<class _Tp, class _Up>
3853inline _LIBCPP_INLINE_VISIBILITY
3854bool
Howard Hinnant1694d232011-05-28 14:41:13 +00003855operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003856{
3857 return __x.get() < __y.get();
3858}
3859
3860template<class _Tp>
3861inline _LIBCPP_INLINE_VISIBILITY
3862void
Howard Hinnant1694d232011-05-28 14:41:13 +00003863swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003864{
3865 __x.swap(__y);
3866}
3867
3868template<class _Tp, class _Up>
3869inline _LIBCPP_INLINE_VISIBILITY
3870shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003871static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003872{
3873 return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get()));
3874}
3875
3876template<class _Tp, class _Up>
3877inline _LIBCPP_INLINE_VISIBILITY
3878shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003879dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003880{
3881 _Tp* __p = dynamic_cast<_Tp*>(__r.get());
3882 return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>();
3883}
3884
3885template<class _Tp, class _Up>
3886shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003887const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003888{
3889 return shared_ptr<_Tp>(__r, const_cast<_Tp*>(__r.get()));
3890}
3891
Howard Hinnantd4444702010-08-11 17:04:31 +00003892#ifndef _LIBCPP_NO_RTTI
3893
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003894template<class _Dp, class _Tp>
3895inline _LIBCPP_INLINE_VISIBILITY
3896_Dp*
Howard Hinnant1694d232011-05-28 14:41:13 +00003897get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003898{
3899 return __p.template __get_deleter<_Dp>();
3900}
3901
Howard Hinnant324bb032010-08-22 00:02:43 +00003902#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00003903
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003904template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00003905class _LIBCPP_VISIBLE weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003906{
Howard Hinnant324bb032010-08-22 00:02:43 +00003907public:
3908 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003909private:
3910 element_type* __ptr_;
3911 __shared_weak_count* __cntrl_;
3912
Howard Hinnant324bb032010-08-22 00:02:43 +00003913public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003914 weak_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003915 template<class _Yp> weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003916 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
3917 _NOEXCEPT;
3918 weak_ptr(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003919 template<class _Yp> weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003920 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
3921 _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00003922
3923 ~weak_ptr();
3924
Howard Hinnant1694d232011-05-28 14:41:13 +00003925 weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT;
3926 template<class _Yp> weak_ptr& operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT;
3927 template<class _Yp> weak_ptr& operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00003928
Howard Hinnant1694d232011-05-28 14:41:13 +00003929 void swap(weak_ptr& __r) _NOEXCEPT;
3930 void reset() _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00003931
Howard Hinnant82894812010-09-22 16:48:34 +00003932 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003933 long use_count() const _NOEXCEPT
3934 {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00003935 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003936 bool expired() const _NOEXCEPT
3937 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
3938 shared_ptr<_Tp> lock() const _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003939 template<class _Up>
3940 _LIBCPP_INLINE_VISIBILITY
3941 bool owner_before(const shared_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003942 {return __cntrl_ < __r.__cntrl_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003943 template<class _Up>
3944 _LIBCPP_INLINE_VISIBILITY
3945 bool owner_before(const weak_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003946 {return __cntrl_ < __r.__cntrl_;}
3947
Howard Hinnant82894812010-09-22 16:48:34 +00003948 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
3949 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003950};
3951
3952template<class _Tp>
3953inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003954weak_ptr<_Tp>::weak_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003955 : __ptr_(0),
3956 __cntrl_(0)
3957{
3958}
3959
3960template<class _Tp>
3961inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003962weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003963 : __ptr_(__r.__ptr_),
3964 __cntrl_(__r.__cntrl_)
3965{
3966 if (__cntrl_)
3967 __cntrl_->__add_weak();
3968}
3969
3970template<class _Tp>
3971template<class _Yp>
3972inline _LIBCPP_INLINE_VISIBILITY
3973weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00003974 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00003975 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003976 : __ptr_(__r.__ptr_),
3977 __cntrl_(__r.__cntrl_)
3978{
3979 if (__cntrl_)
3980 __cntrl_->__add_weak();
3981}
3982
3983template<class _Tp>
3984template<class _Yp>
3985inline _LIBCPP_INLINE_VISIBILITY
3986weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00003987 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00003988 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003989 : __ptr_(__r.__ptr_),
3990 __cntrl_(__r.__cntrl_)
3991{
3992 if (__cntrl_)
3993 __cntrl_->__add_weak();
3994}
3995
3996template<class _Tp>
3997weak_ptr<_Tp>::~weak_ptr()
3998{
3999 if (__cntrl_)
4000 __cntrl_->__release_weak();
4001}
4002
4003template<class _Tp>
4004inline _LIBCPP_INLINE_VISIBILITY
4005weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004006weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004007{
4008 weak_ptr(__r).swap(*this);
4009 return *this;
4010}
4011
4012template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00004013template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004014inline _LIBCPP_INLINE_VISIBILITY
4015weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004016weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004017{
4018 weak_ptr(__r).swap(*this);
4019 return *this;
4020}
4021
4022template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00004023template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004024inline _LIBCPP_INLINE_VISIBILITY
4025weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004026weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004027{
4028 weak_ptr(__r).swap(*this);
4029 return *this;
4030}
4031
4032template<class _Tp>
4033inline _LIBCPP_INLINE_VISIBILITY
4034void
Howard Hinnant1694d232011-05-28 14:41:13 +00004035weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004036{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004037 _VSTD::swap(__ptr_, __r.__ptr_);
4038 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004039}
4040
4041template<class _Tp>
4042inline _LIBCPP_INLINE_VISIBILITY
4043void
Howard Hinnant1694d232011-05-28 14:41:13 +00004044swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004045{
4046 __x.swap(__y);
4047}
4048
4049template<class _Tp>
4050inline _LIBCPP_INLINE_VISIBILITY
4051void
Howard Hinnant1694d232011-05-28 14:41:13 +00004052weak_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004053{
4054 weak_ptr().swap(*this);
4055}
4056
4057template<class _Tp>
4058template<class _Yp>
4059shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r,
4060 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
4061 : __ptr_(__r.__ptr_),
4062 __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_)
4063{
4064 if (__cntrl_ == 0)
4065#ifndef _LIBCPP_NO_EXCEPTIONS
4066 throw bad_weak_ptr();
4067#else
4068 assert(!"bad_weak_ptr");
4069#endif
4070}
4071
4072template<class _Tp>
4073shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00004074weak_ptr<_Tp>::lock() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004075{
4076 shared_ptr<_Tp> __r;
4077 __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_;
4078 if (__r.__cntrl_)
4079 __r.__ptr_ = __ptr_;
4080 return __r;
4081}
4082
Howard Hinnant324bb032010-08-22 00:02:43 +00004083template <class _Tp> struct owner_less;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004084
4085template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004086struct _LIBCPP_VISIBLE owner_less<shared_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004087 : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool>
Howard Hinnant324bb032010-08-22 00:02:43 +00004088{
4089 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00004090 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004091 bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
4092 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00004093 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004094 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
4095 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00004096 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004097 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
4098 {return __x.owner_before(__y);}
Howard Hinnant324bb032010-08-22 00:02:43 +00004099};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004100
4101template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004102struct _LIBCPP_VISIBLE owner_less<weak_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004103 : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool>
4104{
Howard Hinnant324bb032010-08-22 00:02:43 +00004105 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00004106 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004107 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
4108 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00004109 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004110 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
4111 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00004112 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004113 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
4114 {return __x.owner_before(__y);}
4115};
4116
4117template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004118class _LIBCPP_VISIBLE enable_shared_from_this
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004119{
4120 mutable weak_ptr<_Tp> __weak_this_;
Howard Hinnant324bb032010-08-22 00:02:43 +00004121protected:
Howard Hinnant82894812010-09-22 16:48:34 +00004122 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004123 enable_shared_from_this() _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00004124 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004125 enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00004126 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004127 enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT
4128 {return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +00004129 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004130 ~enable_shared_from_this() {}
Howard Hinnant324bb032010-08-22 00:02:43 +00004131public:
Howard Hinnant82894812010-09-22 16:48:34 +00004132 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004133 shared_ptr<_Tp> shared_from_this()
4134 {return shared_ptr<_Tp>(__weak_this_);}
Howard Hinnant82894812010-09-22 16:48:34 +00004135 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004136 shared_ptr<_Tp const> shared_from_this() const
4137 {return shared_ptr<const _Tp>(__weak_this_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004138
4139 template <class _Up> friend class shared_ptr;
4140};
4141
Howard Hinnant21aefc32010-06-03 16:42:57 +00004142template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004143struct _LIBCPP_VISIBLE hash<shared_ptr<_Tp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00004144{
4145 typedef shared_ptr<_Tp> argument_type;
4146 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00004147 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004148 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00004149 {
4150 return hash<_Tp*>()(__ptr.get());
4151 }
4152};
4153
Howard Hinnant99968442011-11-29 18:15:50 +00004154template<class _CharT, class _Traits, class _Yp>
Howard Hinnant464aa5c2011-07-18 15:51:59 +00004155inline _LIBCPP_INLINE_VISIBILITY
4156basic_ostream<_CharT, _Traits>&
Howard Hinnant99968442011-11-29 18:15:50 +00004157operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p);
Howard Hinnant464aa5c2011-07-18 15:51:59 +00004158
Howard Hinnant324bb032010-08-22 00:02:43 +00004159//enum class
Howard Hinnant82894812010-09-22 16:48:34 +00004160struct _LIBCPP_VISIBLE pointer_safety
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004161{
4162 enum _
4163 {
4164 relaxed,
4165 preferred,
4166 strict
4167 };
4168
4169 _ __v_;
4170
Howard Hinnant82894812010-09-22 16:48:34 +00004171 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004172 pointer_safety(_ __v) : __v_(__v) {}
Howard Hinnant82894812010-09-22 16:48:34 +00004173 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004174 operator int() const {return __v_;}
4175};
4176
4177void declare_reachable(void* __p);
4178void declare_no_pointers(char* __p, size_t __n);
4179void undeclare_no_pointers(char* __p, size_t __n);
Howard Hinnant1694d232011-05-28 14:41:13 +00004180pointer_safety get_pointer_safety() _NOEXCEPT;
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00004181void* __undeclare_reachable(void* __p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004182
4183template <class _Tp>
4184inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00004185_Tp*
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004186undeclare_reachable(_Tp* __p)
4187{
4188 return static_cast<_Tp*>(__undeclare_reachable(__p));
4189}
4190
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00004191void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004192
4193_LIBCPP_END_NAMESPACE_STD
4194
4195#endif // _LIBCPP_MEMORY