blob: aa24f960aecf1b1747f6c90a562967427b17b6d2 [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001// -*- C++ -*-
2//===-------------------------- memory ------------------------------------===//
3//
Howard Hinnantf5256e12010-05-11 21:36:01 +00004// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00008//
9//===----------------------------------------------------------------------===//
10
11#ifndef _LIBCPP_MEMORY
12#define _LIBCPP_MEMORY
13
14/*
15 memory synopsis
16
17namespace std
18{
19
20struct allocator_arg_t { };
21constexpr allocator_arg_t allocator_arg = allocator_arg_t();
22
23template <class T, class Alloc> struct uses_allocator;
24
25template <class Ptr>
26struct pointer_traits
27{
28 typedef Ptr pointer;
29 typedef <details> element_type;
30 typedef <details> difference_type;
Howard Hinnant324bb032010-08-22 00:02:43 +000031
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000032 template <class U> using rebind = <details>;
Howard Hinnant324bb032010-08-22 00:02:43 +000033
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000034 static pointer pointer_to(<details>);
35};
36
Howard Hinnant1694d232011-05-28 14:41:13 +000037template <class T>
38struct pointer_traits<T*>
39{
40 typedef T* pointer;
41 typedef T element_type;
42 typedef ptrdiff_t difference_type;
43
44 template <class U> using rebind = U*;
45
46 static pointer pointer_to(<details>) noexcept;
47};
48
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000049template <class Alloc>
50struct allocator_traits
51{
52 typedef Alloc allocator_type;
53 typedef typename allocator_type::value_type
54 value_type;
55
56 typedef Alloc::pointer | value_type* pointer;
57 typedef Alloc::const_pointer
58 | pointer_traits<pointer>::rebind<const value_type>
59 const_pointer;
60 typedef Alloc::void_pointer
61 | pointer_traits<pointer>::rebind<void>
62 void_pointer;
63 typedef Alloc::const_void_pointer
64 | pointer_traits<pointer>::rebind<const void>
65 const_void_pointer;
66 typedef Alloc::difference_type
Howard Hinnant47761072010-11-18 01:40:00 +000067 | pointer_traits<pointer>::difference_type
68 difference_type;
69 typedef Alloc::size_type
70 | make_unsigned<difference_type>::type
71 size_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000072 typedef Alloc::propagate_on_container_copy_assignment
73 | false_type propagate_on_container_copy_assignment;
74 typedef Alloc::propagate_on_container_move_assignment
75 | false_type propagate_on_container_move_assignment;
76 typedef Alloc::propagate_on_container_swap
77 | false_type propagate_on_container_swap;
78
79 template <class T> using rebind_alloc = Alloc::rebind<U>::other | Alloc<T, Args...>;
80 template <class T> using rebind_traits = allocator_traits<rebind_alloc<T>>;
81
82 static pointer allocate(allocator_type& a, size_type n);
83 static pointer allocate(allocator_type& a, size_type n, const_void_pointer hint);
84
Howard Hinnant1694d232011-05-28 14:41:13 +000085 static void deallocate(allocator_type& a, pointer p, size_type n) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000086
87 template <class T, class... Args>
88 static void construct(allocator_type& a, T* p, Args&&... args);
89
90 template <class T>
91 static void destroy(allocator_type& a, T* p);
92
93 static size_type max_size(const allocator_type& a);
94
95 static allocator_type
96 select_on_container_copy_construction(const allocator_type& a);
97};
98
99template <>
100class allocator<void>
101{
102public:
103 typedef void* pointer;
104 typedef const void* const_pointer;
105 typedef void value_type;
106
107 template <class _Up> struct rebind {typedef allocator<_Up> other;};
108};
109
110template <class T>
111class allocator
112{
113public:
114 typedef size_t size_type;
115 typedef ptrdiff_t difference_type;
116 typedef T* pointer;
117 typedef const T* const_pointer;
118 typedef typename add_lvalue_reference<T>::type reference;
119 typedef typename add_lvalue_reference<const T>::type const_reference;
120 typedef T value_type;
121
122 template <class U> struct rebind {typedef allocator<U> other;};
123
Howard Hinnant1694d232011-05-28 14:41:13 +0000124 allocator() noexcept;
125 allocator(const allocator&) noexcept;
126 template <class U> allocator(const allocator<U>&) noexcept;
127 ~allocator();
128 pointer address(reference x) const noexcept;
129 const_pointer address(const_reference x) const noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000130 pointer allocate(size_type, allocator<void>::const_pointer hint = 0);
Howard Hinnant1694d232011-05-28 14:41:13 +0000131 void deallocate(pointer p, size_type n) noexcept;
132 size_type max_size() const noexcept;
133 template<class U, class... Args>
134 void construct(U* p, Args&&... args);
135 template <class U>
136 void destroy(U* p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000137};
138
139template <class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000140bool operator==(const allocator<T>&, const allocator<U>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000141
142template <class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000143bool operator!=(const allocator<T>&, const allocator<U>&) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000144
145template <class OutputIterator, class T>
146class raw_storage_iterator
147 : public iterator<output_iterator_tag,
148 T, // purposefully not C++03
149 ptrdiff_t, // purposefully not C++03
150 T*, // purposefully not C++03
151 raw_storage_iterator&> // purposefully not C++03
152{
153public:
154 explicit raw_storage_iterator(OutputIterator x);
155 raw_storage_iterator& operator*();
156 raw_storage_iterator& operator=(const T& element);
157 raw_storage_iterator& operator++();
158 raw_storage_iterator operator++(int);
159};
160
Howard Hinnant1694d232011-05-28 14:41:13 +0000161template <class T> pair<T*,ptrdiff_t> get_temporary_buffer(ptrdiff_t n) noexcept;
162template <class T> void return_temporary_buffer(T* p) noexcept;
163
164template <class T> T* addressof(T& r) noexcept;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000165
166template <class InputIterator, class ForwardIterator>
167ForwardIterator
168uninitialized_copy(InputIterator first, InputIterator last, ForwardIterator result);
169
Howard Hinnant1694d232011-05-28 14:41:13 +0000170template <class InputIterator, class Size, class ForwardIterator>
171ForwardIterator
172uninitialized_copy_n(InputIterator first, Size n, ForwardIterator result);
173
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000174template <class ForwardIterator, class T>
175void uninitialized_fill(ForwardIterator first, ForwardIterator last, const T& x);
176
177template <class ForwardIterator, class Size, class T>
Howard Hinnant2f6a6272010-11-18 16:13:03 +0000178ForwardIterator
179uninitialized_fill_n(ForwardIterator first, Size n, const T& x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000180
181template <class Y> struct auto_ptr_ref {};
182
183template<class X>
184class auto_ptr
185{
186public:
187 typedef X element_type;
188
189 explicit auto_ptr(X* p =0) throw();
190 auto_ptr(auto_ptr&) throw();
191 template<class Y> auto_ptr(auto_ptr<Y>&) throw();
192 auto_ptr& operator=(auto_ptr&) throw();
193 template<class Y> auto_ptr& operator=(auto_ptr<Y>&) throw();
194 auto_ptr& operator=(auto_ptr_ref<X> r) throw();
195 ~auto_ptr() throw();
196
197 typename add_lvalue_reference<X>::type operator*() const throw();
198 X* operator->() const throw();
199 X* get() const throw();
200 X* release() throw();
201 void reset(X* p =0) throw();
202
203 auto_ptr(auto_ptr_ref<X>) throw();
204 template<class Y> operator auto_ptr_ref<Y>() throw();
205 template<class Y> operator auto_ptr<Y>() throw();
206};
207
Howard Hinnante92c3d72010-08-19 18:39:17 +0000208template <class T>
209struct default_delete
210{
Howard Hinnant1694d232011-05-28 14:41:13 +0000211 constexpr default_delete() noexcept = default;
212 template <class U> default_delete(const default_delete<U>&) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000213
Howard Hinnant1694d232011-05-28 14:41:13 +0000214 void operator()(T*) const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000215};
216
217template <class T>
218struct default_delete<T[]>
219{
Howard Hinnant1694d232011-05-28 14:41:13 +0000220 constexpr default_delete() noexcept = default;
221 void operator()(T*) const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000222 template <class U> void operator()(U*) const = delete;
223};
224
Howard Hinnante92c3d72010-08-19 18:39:17 +0000225template <class T, class D = default_delete<T>>
226class unique_ptr
227{
228public:
229 typedef see below pointer;
230 typedef T element_type;
231 typedef D deleter_type;
232
233 // constructors
Howard Hinnant1694d232011-05-28 14:41:13 +0000234 constexpr unique_ptr() noexcept;
235 explicit unique_ptr(pointer p) noexcept;
236 unique_ptr(pointer p, see below d1) noexcept;
237 unique_ptr(pointer p, see below d2) noexcept;
238 unique_ptr(unique_ptr&& u) noexcept;
239 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
Howard Hinnante92c3d72010-08-19 18:39:17 +0000240 template <class U, class E>
Howard Hinnant1694d232011-05-28 14:41:13 +0000241 unique_ptr(unique_ptr<U, E>&& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000242 template <class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000243 unique_ptr(auto_ptr<U>&& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000244
245 // destructor
246 ~unique_ptr();
247
248 // assignment
Howard Hinnant1694d232011-05-28 14:41:13 +0000249 unique_ptr& operator=(unique_ptr&& u) noexcept;
250 template <class U, class E> unique_ptr& operator=(unique_ptr<U, E>&& u) noexcept;
251 unique_ptr& operator=(nullptr_t) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000252
253 // observers
254 typename add_lvalue_reference<T>::type operator*() const;
Howard Hinnant1694d232011-05-28 14:41:13 +0000255 pointer operator->() const noexcept;
256 pointer get() const noexcept;
257 deleter_type& get_deleter() noexcept;
258 const deleter_type& get_deleter() const noexcept;
259 explicit operator bool() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000260
261 // modifiers
Howard Hinnant1694d232011-05-28 14:41:13 +0000262 pointer release() noexcept;
263 void reset(pointer p = pointer()) noexcept;
264 void swap(unique_ptr& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000265};
266
267template <class T, class D>
268class unique_ptr<T[], D>
269{
270public:
271 typedef implementation-defined pointer;
272 typedef T element_type;
273 typedef D deleter_type;
274
275 // constructors
Howard Hinnant1694d232011-05-28 14:41:13 +0000276 constexpr unique_ptr() noexcept;
277 explicit unique_ptr(pointer p) noexcept;
278 unique_ptr(pointer p, see below d) noexcept;
279 unique_ptr(pointer p, see below d) noexcept;
280 unique_ptr(unique_ptr&& u) noexcept;
281 unique_ptr(nullptr_t) noexcept : unique_ptr() { }
Howard Hinnante92c3d72010-08-19 18:39:17 +0000282
283 // destructor
Howard Hinnant324bb032010-08-22 00:02:43 +0000284 ~unique_ptr();
Howard Hinnante92c3d72010-08-19 18:39:17 +0000285
286 // assignment
Howard Hinnant1694d232011-05-28 14:41:13 +0000287 unique_ptr& operator=(unique_ptr&& u) noexcept;
288 unique_ptr& operator=(nullptr_t) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000289
290 // observers
291 T& operator[](size_t i) const;
Howard Hinnant1694d232011-05-28 14:41:13 +0000292 pointer get() const noexcept;
293 deleter_type& get_deleter() noexcept;
294 const deleter_type& get_deleter() const noexcept;
295 explicit operator bool() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000296
297 // modifiers
Howard Hinnant1694d232011-05-28 14:41:13 +0000298 pointer release() noexcept;
299 void reset(pointer p = pointer()) noexcept;
300 void reset(nullptr_t) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000301 template <class U> void reset(U) = delete;
Howard Hinnant1694d232011-05-28 14:41:13 +0000302 void swap(unique_ptr& u) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000303};
304
305template <class T, class D>
Howard Hinnant1694d232011-05-28 14:41:13 +0000306 void swap(unique_ptr<T, D>& x, unique_ptr<T, D>& y) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000307
308template <class T1, class D1, class T2, class D2>
309 bool operator==(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
310template <class T1, class D1, class T2, class D2>
311 bool operator!=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
312template <class T1, class D1, class T2, class D2>
313 bool operator<(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
314template <class T1, class D1, class T2, class D2>
315 bool operator<=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
316template <class T1, class D1, class T2, class D2>
317 bool operator>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
318template <class T1, class D1, class T2, class D2>
319 bool operator>=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y);
320
Howard Hinnant1694d232011-05-28 14:41:13 +0000321template <class T, class D>
322 bool operator==(const unique_ptr<T, D>& x, nullptr_t) noexcept;
323template <class T, class D>
324 bool operator==(nullptr_t, const unique_ptr<T, D>& y) noexcept;
325template <class T, class D>
326 bool operator!=(const unique_ptr<T, D>& x, nullptr_t) noexcept;
327template <class T, class D>
328 bool operator!=(nullptr_t, const unique_ptr<T, D>& y) noexcept;
329
330template <class T, class D>
331 bool operator<(const unique_ptr<T, D>& x, nullptr_t);
332template <class T, class D>
333 bool operator<(nullptr_t, const unique_ptr<T, D>& y);
334template <class T, class D>
335 bool operator<=(const unique_ptr<T, D>& x, nullptr_t);
336template <class T, class D>
337 bool operator<=(nullptr_t, const unique_ptr<T, D>& y);
338template <class T, class D>
339 bool operator>(const unique_ptr<T, D>& x, nullptr_t);
340template <class T, class D>
341 bool operator>(nullptr_t, const unique_ptr<T, D>& y);
342template <class T, class D>
343 bool operator>=(const unique_ptr<T, D>& x, nullptr_t);
344template <class T, class D>
345 bool operator>=(nullptr_t, const unique_ptr<T, D>& y);
346
Howard Hinnante92c3d72010-08-19 18:39:17 +0000347class bad_weak_ptr
348 : public std::exception
349{
Howard Hinnant1694d232011-05-28 14:41:13 +0000350 bad_weak_ptr() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000351};
352
353template<class T>
354class shared_ptr
355{
356public:
357 typedef T element_type;
358
359 // constructors:
Howard Hinnant1694d232011-05-28 14:41:13 +0000360 constexpr shared_ptr() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000361 template<class Y> explicit shared_ptr(Y* p);
362 template<class Y, class D> shared_ptr(Y* p, D d);
363 template<class Y, class D, class A> shared_ptr(Y* p, D d, A a);
364 template <class D> shared_ptr(nullptr_t p, D d);
365 template <class D, class A> shared_ptr(nullptr_t p, D d, A a);
Howard Hinnant1694d232011-05-28 14:41:13 +0000366 template<class Y> shared_ptr(const shared_ptr<Y>& r, T *p) noexcept;
367 shared_ptr(const shared_ptr& r) noexcept;
368 template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept;
369 shared_ptr(shared_ptr&& r) noexcept;
370 template<class Y> shared_ptr(shared_ptr<Y>&& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000371 template<class Y> explicit shared_ptr(const weak_ptr<Y>& r);
372 template<class Y> shared_ptr(auto_ptr<Y>&& r);
373 template <class Y, class D> shared_ptr(unique_ptr<Y, D>&& r);
374 shared_ptr(nullptr_t) : shared_ptr() { }
375
376 // destructor:
377 ~shared_ptr();
378
379 // assignment:
Howard Hinnant1694d232011-05-28 14:41:13 +0000380 shared_ptr& operator=(const shared_ptr& r) noexcept;
381 template<class Y> shared_ptr& operator=(const shared_ptr<Y>& r) noexcept;
382 shared_ptr& operator=(shared_ptr&& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000383 template<class Y> shared_ptr& operator=(shared_ptr<Y>&& r);
384 template<class Y> shared_ptr& operator=(auto_ptr<Y>&& r);
385 template <class Y, class D> shared_ptr& operator=(unique_ptr<Y, D>&& r);
386
387 // modifiers:
Howard Hinnant1694d232011-05-28 14:41:13 +0000388 void swap(shared_ptr& r) noexcept;
389 void reset() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000390 template<class Y> void reset(Y* p);
391 template<class Y, class D> void reset(Y* p, D d);
392 template<class Y, class D, class A> void reset(Y* p, D d, A a);
393
Howard Hinnant1694d232011-05-28 14:41:13 +0000394 // observers:
395 T* get() const noexcept;
396 T& operator*() const noexcept;
397 T* operator->() const noexcept;
398 long use_count() const noexcept;
399 bool unique() const noexcept;
400 explicit operator bool() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000401 template<class U> bool owner_before(shared_ptr<U> const& b) const;
402 template<class U> bool owner_before(weak_ptr<U> const& b) const;
403};
404
405// shared_ptr comparisons:
406template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000407 bool operator==(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000408template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000409 bool operator!=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000410template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000411 bool operator<(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000412template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000413 bool operator>(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000414template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000415 bool operator<=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000416template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000417 bool operator>=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept;
418
419template <class T>
420 bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept;
421template <class T>
422 bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept;
423template <class T>
424 bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept;
425template <class T>
426 bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept;
427template <class T>
428 bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept;
429template <class T>
430bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept;
431template <class T>
432 bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept;
433template <class T>
434 bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept;
435template <class T>
436 bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept;
437template <class T>
438 bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept;
439template <class T>
440 bool operator>=(const shared_ptr<T>& x, nullptr_t) noexcept;
441template <class T>
442 bool operator>=(nullptr_t, const shared_ptr<T>& y) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000443
444// shared_ptr specialized algorithms:
Howard Hinnant1694d232011-05-28 14:41:13 +0000445template<class T> void swap(shared_ptr<T>& a, shared_ptr<T>& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000446
447// shared_ptr casts:
448template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000449 shared_ptr<T> static_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000450template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000451 shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000452template<class T, class U>
Howard Hinnant1694d232011-05-28 14:41:13 +0000453 shared_ptr<T> const_pointer_cast(shared_ptr<U> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000454
455// shared_ptr I/O:
456template<class E, class T, class Y>
457 basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, shared_ptr<Y> const& p);
458
459// shared_ptr get_deleter:
Howard Hinnant1694d232011-05-28 14:41:13 +0000460template<class D, class T> D* get_deleter(shared_ptr<T> const& p) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000461
462template<class T, class... Args>
463 shared_ptr<T> make_shared(Args&&... args);
464template<class T, class A, class... Args>
465 shared_ptr<T> allocate_shared(const A& a, Args&&... args);
466
467template<class T>
468class weak_ptr
469{
470public:
471 typedef T element_type;
472
473 // constructors
Howard Hinnant1694d232011-05-28 14:41:13 +0000474 constexpr weak_ptr() noexcept;
475 template<class Y> weak_ptr(shared_ptr<Y> const& r) noexcept;
476 weak_ptr(weak_ptr const& r) noexcept;
477 template<class Y> weak_ptr(weak_ptr<Y> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000478
479 // destructor
480 ~weak_ptr();
481
482 // assignment
Howard Hinnant1694d232011-05-28 14:41:13 +0000483 weak_ptr& operator=(weak_ptr const& r) noexcept;
484 template<class Y> weak_ptr& operator=(weak_ptr<Y> const& r) noexcept;
485 template<class Y> weak_ptr& operator=(shared_ptr<Y> const& r) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000486
487 // modifiers
Howard Hinnant1694d232011-05-28 14:41:13 +0000488 void swap(weak_ptr& r) noexcept;
489 void reset() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000490
491 // observers
Howard Hinnant1694d232011-05-28 14:41:13 +0000492 long use_count() const noexcept;
493 bool expired() const noexcept;
494 shared_ptr<T> lock() const noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000495 template<class U> bool owner_before(shared_ptr<U> const& b);
496 template<class U> bool owner_before(weak_ptr<U> const& b);
497};
498
499// weak_ptr specialized algorithms:
Howard Hinnant1694d232011-05-28 14:41:13 +0000500template<class T> void swap(weak_ptr<T>& a, weak_ptr<T>& b) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000501
502// class owner_less:
503template<class T> struct owner_less;
504
505template<class T>
506struct owner_less<shared_ptr<T>>
507 : binary_function<shared_ptr<T>, shared_ptr<T>, bool>
508{
509 typedef bool result_type;
510 bool operator()(shared_ptr<T> const&, shared_ptr<T> const&) const;
511 bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const;
512 bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const;
513};
514
515template<class T>
516struct owner_less<weak_ptr<T>>
517 : binary_function<weak_ptr<T>, weak_ptr<T>, bool>
518{
519 typedef bool result_type;
520 bool operator()(weak_ptr<T> const&, weak_ptr<T> const&) const;
521 bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const;
522 bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const;
523};
524
525template<class T>
526class enable_shared_from_this
527{
528protected:
Howard Hinnant1694d232011-05-28 14:41:13 +0000529 constexpr enable_shared_from_this() noexcept;
530 enable_shared_from_this(enable_shared_from_this const&) noexcept;
531 enable_shared_from_this& operator=(enable_shared_from_this const&) noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000532 ~enable_shared_from_this();
533public:
534 shared_ptr<T> shared_from_this();
535 shared_ptr<T const> shared_from_this() const;
536};
537
538template<class T>
539 bool atomic_is_lock_free(const shared_ptr<T>* p);
540template<class T>
541 shared_ptr<T> atomic_load(const shared_ptr<T>* p);
542template<class T>
543 shared_ptr<T> atomic_load_explicit(const shared_ptr<T>* p, memory_order mo);
544template<class T>
545 void atomic_store(shared_ptr<T>* p, shared_ptr<T> r);
546template<class T>
547 void atomic_store_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo);
548template<class T>
549 shared_ptr<T> atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r);
550template<class T>
551 shared_ptr<T>
552 atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo);
553template<class T>
554 bool
555 atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w);
556template<class T>
557 bool
558 atomic_compare_exchange_strong( shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w);
559template<class T>
560 bool
561 atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
562 shared_ptr<T> w, memory_order success,
563 memory_order failure);
564template<class T>
565 bool
566 atomic_compare_exchange_strong_explicit(shared_ptr<T>* p, shared_ptr<T>* v,
567 shared_ptr<T> w, memory_order success,
568 memory_order failure);
569// Hash support
570template <class T> struct hash;
571template <class T, class D> struct hash<unique_ptr<T, D> >;
572template <class T> struct hash<shared_ptr<T> >;
573
574// Pointer safety
575enum class pointer_safety { relaxed, preferred, strict };
576void declare_reachable(void *p);
577template <class T> T *undeclare_reachable(T *p);
578void declare_no_pointers(char *p, size_t n);
579void undeclare_no_pointers(char *p, size_t n);
Howard Hinnant1694d232011-05-28 14:41:13 +0000580pointer_safety get_pointer_safety() noexcept;
Howard Hinnante92c3d72010-08-19 18:39:17 +0000581
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000582void* align(size_t alignment, size_t size, void*& ptr, size_t& space);
583
584} // std
585
586*/
587
588#include <__config>
589#include <type_traits>
590#include <typeinfo>
591#include <cstddef>
592#include <cstdint>
593#include <new>
594#include <utility>
595#include <limits>
596#include <iterator>
597#include <__functional_base>
Howard Hinnant464aa5c2011-07-18 15:51:59 +0000598#include <iosfwd>
Howard Hinnant6cc99fa2011-12-19 17:58:44 +0000599#include <tuple>
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +0000600#include <cstring>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000601#if defined(_LIBCPP_NO_EXCEPTIONS)
602 #include <cassert>
603#endif
604
Howard Hinnant66c6f972011-11-29 16:45:27 +0000605#include <__undef_min_max>
606
Howard Hinnant08e17472011-10-17 20:05:10 +0000607#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000608#pragma GCC system_header
Howard Hinnant08e17472011-10-17 20:05:10 +0000609#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000610
611_LIBCPP_BEGIN_NAMESPACE_STD
612
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000613// addressof
614
615template <class _Tp>
616inline _LIBCPP_INLINE_VISIBILITY
617_Tp*
Howard Hinnant1694d232011-05-28 14:41:13 +0000618addressof(_Tp& __x) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000619{
620 return (_Tp*)&(char&)__x;
621}
622
Douglas Gregor35d2fcf2011-06-22 22:17:44 +0000623#if defined(_LIBCPP_HAS_OBJC_ARC) && !defined(_LIBCPP_PREDEFINED_OBJC_ARC_ADDRESSOF)
624// Objective-C++ Automatic Reference Counting uses qualified pointers
625// that require special addressof() signatures. When
626// _LIBCPP_PREDEFINED_OBJC_ARC_ADDRESSOF is defined, the compiler
627// itself is providing these definitions. Otherwise, we provide them.
628template <class _Tp>
629inline _LIBCPP_INLINE_VISIBILITY
630__strong _Tp*
631addressof(__strong _Tp& __x) _NOEXCEPT
632{
633 return &__x;
634}
635
636#ifdef _LIBCPP_HAS_OBJC_ARC_WEAK
637template <class _Tp>
638inline _LIBCPP_INLINE_VISIBILITY
639__weak _Tp*
640addressof(__weak _Tp& __x) _NOEXCEPT
641{
642 return &__x;
643}
644#endif
645
646template <class _Tp>
647inline _LIBCPP_INLINE_VISIBILITY
648__autoreleasing _Tp*
649addressof(__autoreleasing _Tp& __x) _NOEXCEPT
650{
651 return &__x;
652}
653
654template <class _Tp>
655inline _LIBCPP_INLINE_VISIBILITY
656__unsafe_unretained _Tp*
657addressof(__unsafe_unretained _Tp& __x) _NOEXCEPT
658{
659 return &__x;
660}
661#endif
662
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000663template <class _Tp> class allocator;
664
665template <>
Howard Hinnant82894812010-09-22 16:48:34 +0000666class _LIBCPP_VISIBLE allocator<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000667{
668public:
669 typedef void* pointer;
670 typedef const void* const_pointer;
671 typedef void value_type;
672
673 template <class _Up> struct rebind {typedef allocator<_Up> other;};
674};
675
Howard Hinnanta1877872012-01-19 23:15:22 +0000676template <>
677class _LIBCPP_VISIBLE allocator<const void>
678{
679public:
680 typedef const void* pointer;
681 typedef const void* const_pointer;
682 typedef const void value_type;
683
684 template <class _Up> struct rebind {typedef allocator<_Up> other;};
685};
686
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000687// pointer_traits
688
689template <class _Tp>
690struct __has_element_type
691{
692private:
693 struct __two {char _; char __;};
694 template <class _Up> static __two __test(...);
695 template <class _Up> static char __test(typename _Up::element_type* = 0);
696public:
697 static const bool value = sizeof(__test<_Tp>(0)) == 1;
698};
699
700template <class _Ptr, bool = __has_element_type<_Ptr>::value>
701struct __pointer_traits_element_type;
702
703template <class _Ptr>
704struct __pointer_traits_element_type<_Ptr, true>
705{
706 typedef typename _Ptr::element_type type;
707};
708
709#ifndef _LIBCPP_HAS_NO_VARIADICS
710
711template <template <class, class...> class _Sp, class _Tp, class ..._Args>
712struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, true>
713{
714 typedef typename _Sp<_Tp, _Args...>::element_type type;
715};
716
717template <template <class, class...> class _Sp, class _Tp, class ..._Args>
718struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, false>
719{
720 typedef _Tp type;
721};
722
Howard Hinnant324bb032010-08-22 00:02:43 +0000723#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000724
725template <template <class> class _Sp, class _Tp>
726struct __pointer_traits_element_type<_Sp<_Tp>, true>
727{
728 typedef typename _Sp<_Tp>::element_type type;
729};
730
731template <template <class> class _Sp, class _Tp>
732struct __pointer_traits_element_type<_Sp<_Tp>, false>
733{
734 typedef _Tp type;
735};
736
737template <template <class, class> class _Sp, class _Tp, class _A0>
738struct __pointer_traits_element_type<_Sp<_Tp, _A0>, true>
739{
740 typedef typename _Sp<_Tp, _A0>::element_type type;
741};
742
743template <template <class, class> class _Sp, class _Tp, class _A0>
744struct __pointer_traits_element_type<_Sp<_Tp, _A0>, false>
745{
746 typedef _Tp type;
747};
748
749template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
750struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, true>
751{
752 typedef typename _Sp<_Tp, _A0, _A1>::element_type type;
753};
754
755template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1>
756struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, false>
757{
758 typedef _Tp 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>, true>
764{
765 typedef typename _Sp<_Tp, _A0, _A1, _A2>::element_type type;
766};
767
768template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
769 class _A1, class _A2>
770struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, false>
771{
772 typedef _Tp type;
773};
774
Howard Hinnant324bb032010-08-22 00:02:43 +0000775#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000776
777template <class _Tp>
778struct __has_difference_type
779{
780private:
781 struct __two {char _; char __;};
782 template <class _Up> static __two __test(...);
783 template <class _Up> static char __test(typename _Up::difference_type* = 0);
784public:
785 static const bool value = sizeof(__test<_Tp>(0)) == 1;
786};
787
788template <class _Ptr, bool = __has_difference_type<_Ptr>::value>
789struct __pointer_traits_difference_type
790{
791 typedef ptrdiff_t type;
792};
793
794template <class _Ptr>
795struct __pointer_traits_difference_type<_Ptr, true>
796{
797 typedef typename _Ptr::difference_type type;
798};
799
800template <class _Tp, class _Up>
801struct __has_rebind
802{
803private:
804 struct __two {char _; char __;};
805 template <class _Xp> static __two __test(...);
806 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0);
807public:
808 static const bool value = sizeof(__test<_Tp>(0)) == 1;
809};
810
811template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
812struct __pointer_traits_rebind
813{
814#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
815 typedef typename _Tp::template rebind<_Up> type;
816#else
817 typedef typename _Tp::template rebind<_Up>::other type;
818#endif
819};
820
821#ifndef _LIBCPP_HAS_NO_VARIADICS
822
823template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
824struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, true>
825{
826#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
827 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up> type;
828#else
829 typedef typename _Sp<_Tp, _Args...>::template rebind<_Up>::other type;
830#endif
831};
832
833template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up>
834struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, false>
835{
836 typedef _Sp<_Up, _Args...> type;
837};
838
Howard Hinnant324bb032010-08-22 00:02:43 +0000839#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000840
841template <template <class> class _Sp, class _Tp, class _Up>
842struct __pointer_traits_rebind<_Sp<_Tp>, _Up, true>
843{
844#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
845 typedef typename _Sp<_Tp>::template rebind<_Up> type;
846#else
847 typedef typename _Sp<_Tp>::template rebind<_Up>::other type;
848#endif
849};
850
851template <template <class> class _Sp, class _Tp, class _Up>
852struct __pointer_traits_rebind<_Sp<_Tp>, _Up, false>
853{
854 typedef _Sp<_Up> type;
855};
856
857template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
858struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, true>
859{
860#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
861 typedef typename _Sp<_Tp, _A0>::template rebind<_Up> type;
862#else
863 typedef typename _Sp<_Tp, _A0>::template rebind<_Up>::other type;
864#endif
865};
866
867template <template <class, class> class _Sp, class _Tp, class _A0, class _Up>
868struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, false>
869{
870 typedef _Sp<_Up, _A0> type;
871};
872
873template <template <class, class, class> class _Sp, class _Tp, class _A0,
874 class _A1, class _Up>
875struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, true>
876{
877#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
878 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up> type;
879#else
880 typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up>::other type;
881#endif
882};
883
884template <template <class, class, class> class _Sp, class _Tp, class _A0,
885 class _A1, class _Up>
886struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, false>
887{
888 typedef _Sp<_Up, _A0, _A1> type;
889};
890
891template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
892 class _A1, class _A2, class _Up>
893struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, true>
894{
895#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
896 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up> type;
897#else
898 typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
899#endif
900};
901
902template <template <class, class, class, class> class _Sp, class _Tp, class _A0,
903 class _A1, class _A2, class _Up>
904struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, false>
905{
906 typedef _Sp<_Up, _A0, _A1, _A2> type;
907};
908
Howard Hinnant324bb032010-08-22 00:02:43 +0000909#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000910
911template <class _Ptr>
Howard Hinnant82894812010-09-22 16:48:34 +0000912struct _LIBCPP_VISIBLE pointer_traits
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000913{
914 typedef _Ptr pointer;
915 typedef typename __pointer_traits_element_type<pointer>::type element_type;
916 typedef typename __pointer_traits_difference_type<pointer>::type difference_type;
917
918#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnant6b41c602011-05-11 20:21:19 +0000919 template <class _Up> using rebind = typename __pointer_traits_rebind<pointer, _Up>::type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000920#else
921 template <class _Up> struct rebind
922 {typedef typename __pointer_traits_rebind<pointer, _Up>::type other;};
Howard Hinnant324bb032010-08-22 00:02:43 +0000923#endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000924
925private:
926 struct __nat {};
927public:
Howard Hinnant82894812010-09-22 16:48:34 +0000928 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000929 static pointer pointer_to(typename conditional<is_void<element_type>::value,
930 __nat, element_type>::type& __r)
931 {return pointer::pointer_to(__r);}
932};
933
934template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +0000935struct _LIBCPP_VISIBLE pointer_traits<_Tp*>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000936{
937 typedef _Tp* pointer;
938 typedef _Tp element_type;
939 typedef ptrdiff_t difference_type;
940
941#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
942 template <class _Up> using rebind = _Up*;
943#else
944 template <class _Up> struct rebind {typedef _Up* other;};
945#endif
946
947private:
948 struct __nat {};
949public:
Howard Hinnant82894812010-09-22 16:48:34 +0000950 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000951 static pointer pointer_to(typename conditional<is_void<element_type>::value,
Howard Hinnant1694d232011-05-28 14:41:13 +0000952 __nat, element_type>::type& __r) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +0000953 {return _VSTD::addressof(__r);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000954};
955
956// allocator_traits
957
958namespace __has_pointer_type_imp
959{
960 template <class _Up> static __two test(...);
961 template <class _Up> static char test(typename _Up::pointer* = 0);
962}
963
964template <class _Tp>
965struct __has_pointer_type
966 : public integral_constant<bool, sizeof(__has_pointer_type_imp::test<_Tp>(0)) == 1>
967{
968};
969
970namespace __pointer_type_imp
971{
972
973template <class _Tp, class _Dp, bool = __has_pointer_type<_Dp>::value>
974struct __pointer_type
975{
976 typedef typename _Dp::pointer type;
977};
978
979template <class _Tp, class _Dp>
980struct __pointer_type<_Tp, _Dp, false>
981{
982 typedef _Tp* type;
983};
984
Howard Hinnant47761072010-11-18 01:40:00 +0000985} // __pointer_type_imp
Howard Hinnantbc8d3f92010-05-11 19:42:16 +0000986
987template <class _Tp, class _Dp>
988struct __pointer_type
989{
990 typedef typename __pointer_type_imp::__pointer_type<_Tp, typename remove_reference<_Dp>::type>::type type;
991};
992
993template <class _Tp>
994struct __has_const_pointer
995{
996private:
997 struct __two {char _; char __;};
998 template <class _Up> static __two __test(...);
999 template <class _Up> static char __test(typename _Up::const_pointer* = 0);
1000public:
1001 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1002};
1003
1004template <class _Tp, class _Ptr, class _Alloc, bool = __has_const_pointer<_Alloc>::value>
1005struct __const_pointer
1006{
1007 typedef typename _Alloc::const_pointer type;
1008};
1009
1010template <class _Tp, class _Ptr, class _Alloc>
1011struct __const_pointer<_Tp, _Ptr, _Alloc, false>
1012{
1013#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1014 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp> type;
1015#else
1016 typedef typename pointer_traits<_Ptr>::template rebind<const _Tp>::other type;
1017#endif
1018};
1019
1020template <class _Tp>
1021struct __has_void_pointer
1022{
1023private:
1024 struct __two {char _; char __;};
1025 template <class _Up> static __two __test(...);
1026 template <class _Up> static char __test(typename _Up::void_pointer* = 0);
1027public:
1028 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1029};
1030
1031template <class _Ptr, class _Alloc, bool = __has_void_pointer<_Alloc>::value>
1032struct __void_pointer
1033{
1034 typedef typename _Alloc::void_pointer type;
1035};
1036
1037template <class _Ptr, class _Alloc>
1038struct __void_pointer<_Ptr, _Alloc, false>
1039{
1040#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1041 typedef typename pointer_traits<_Ptr>::template rebind<void> type;
1042#else
1043 typedef typename pointer_traits<_Ptr>::template rebind<void>::other type;
1044#endif
1045};
1046
1047template <class _Tp>
1048struct __has_const_void_pointer
1049{
1050private:
1051 struct __two {char _; char __;};
1052 template <class _Up> static __two __test(...);
1053 template <class _Up> static char __test(typename _Up::const_void_pointer* = 0);
1054public:
1055 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1056};
1057
1058template <class _Ptr, class _Alloc, bool = __has_const_void_pointer<_Alloc>::value>
1059struct __const_void_pointer
1060{
1061 typedef typename _Alloc::const_void_pointer type;
1062};
1063
1064template <class _Ptr, class _Alloc>
1065struct __const_void_pointer<_Ptr, _Alloc, false>
1066{
1067#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1068 typedef typename pointer_traits<_Ptr>::template rebind<const void> type;
1069#else
1070 typedef typename pointer_traits<_Ptr>::template rebind<const void>::other type;
1071#endif
1072};
1073
Howard Hinnant99968442011-11-29 18:15:50 +00001074template <class _Tp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001075inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00001076_Tp*
1077__to_raw_pointer(_Tp* __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001078{
1079 return __p;
1080}
1081
1082template <class _Pointer>
1083inline _LIBCPP_INLINE_VISIBILITY
1084typename pointer_traits<_Pointer>::element_type*
Howard Hinnant1694d232011-05-28 14:41:13 +00001085__to_raw_pointer(_Pointer __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001086{
Howard Hinnant0949eed2011-06-30 21:18:19 +00001087 return _VSTD::__to_raw_pointer(__p.operator->());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001088}
1089
1090template <class _Tp>
1091struct __has_size_type
1092{
1093private:
1094 struct __two {char _; char __;};
1095 template <class _Up> static __two __test(...);
1096 template <class _Up> static char __test(typename _Up::size_type* = 0);
1097public:
1098 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1099};
1100
Howard Hinnant47761072010-11-18 01:40:00 +00001101template <class _Alloc, class _DiffType, bool = __has_size_type<_Alloc>::value>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001102struct __size_type
1103{
Howard Hinnant47761072010-11-18 01:40:00 +00001104 typedef typename make_unsigned<_DiffType>::type type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001105};
1106
Howard Hinnant47761072010-11-18 01:40:00 +00001107template <class _Alloc, class _DiffType>
1108struct __size_type<_Alloc, _DiffType, true>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001109{
1110 typedef typename _Alloc::size_type type;
1111};
1112
1113template <class _Tp>
1114struct __has_propagate_on_container_copy_assignment
1115{
1116private:
1117 struct __two {char _; char __;};
1118 template <class _Up> static __two __test(...);
1119 template <class _Up> static char __test(typename _Up::propagate_on_container_copy_assignment* = 0);
1120public:
1121 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1122};
1123
1124template <class _Alloc, bool = __has_propagate_on_container_copy_assignment<_Alloc>::value>
1125struct __propagate_on_container_copy_assignment
1126{
1127 typedef false_type type;
1128};
1129
1130template <class _Alloc>
1131struct __propagate_on_container_copy_assignment<_Alloc, true>
1132{
1133 typedef typename _Alloc::propagate_on_container_copy_assignment type;
1134};
1135
1136template <class _Tp>
1137struct __has_propagate_on_container_move_assignment
1138{
1139private:
1140 struct __two {char _; char __;};
1141 template <class _Up> static __two __test(...);
1142 template <class _Up> static char __test(typename _Up::propagate_on_container_move_assignment* = 0);
1143public:
1144 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1145};
1146
1147template <class _Alloc, bool = __has_propagate_on_container_move_assignment<_Alloc>::value>
1148struct __propagate_on_container_move_assignment
1149{
1150 typedef false_type type;
1151};
1152
1153template <class _Alloc>
1154struct __propagate_on_container_move_assignment<_Alloc, true>
1155{
1156 typedef typename _Alloc::propagate_on_container_move_assignment type;
1157};
1158
1159template <class _Tp>
1160struct __has_propagate_on_container_swap
1161{
1162private:
1163 struct __two {char _; char __;};
1164 template <class _Up> static __two __test(...);
1165 template <class _Up> static char __test(typename _Up::propagate_on_container_swap* = 0);
1166public:
1167 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1168};
1169
1170template <class _Alloc, bool = __has_propagate_on_container_swap<_Alloc>::value>
1171struct __propagate_on_container_swap
1172{
1173 typedef false_type type;
1174};
1175
1176template <class _Alloc>
1177struct __propagate_on_container_swap<_Alloc, true>
1178{
1179 typedef typename _Alloc::propagate_on_container_swap type;
1180};
1181
1182template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value>
1183struct __has_rebind_other
1184{
1185private:
1186 struct __two {char _; char __;};
1187 template <class _Xp> static __two __test(...);
1188 template <class _Xp> static char __test(typename _Xp::template rebind<_Up>::other* = 0);
1189public:
1190 static const bool value = sizeof(__test<_Tp>(0)) == 1;
1191};
1192
1193template <class _Tp, class _Up>
1194struct __has_rebind_other<_Tp, _Up, false>
1195{
1196 static const bool value = false;
1197};
1198
1199template <class _Tp, class _Up, bool = __has_rebind_other<_Tp, _Up>::value>
1200struct __allocator_traits_rebind
1201{
1202 typedef typename _Tp::template rebind<_Up>::other type;
1203};
1204
1205#ifndef _LIBCPP_HAS_NO_VARIADICS
1206
1207template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1208struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, true>
1209{
1210 typedef typename _Alloc<_Tp, _Args...>::template rebind<_Up>::other type;
1211};
1212
1213template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up>
1214struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, false>
1215{
1216 typedef _Alloc<_Up, _Args...> type;
1217};
1218
Howard Hinnant324bb032010-08-22 00:02:43 +00001219#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001220
1221template <template <class> class _Alloc, class _Tp, class _Up>
1222struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, true>
1223{
1224 typedef typename _Alloc<_Tp>::template rebind<_Up>::other type;
1225};
1226
1227template <template <class> class _Alloc, class _Tp, class _Up>
1228struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, false>
1229{
1230 typedef _Alloc<_Up> type;
1231};
1232
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001233template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1234struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, true>
1235{
1236 typedef typename _Alloc<_Tp, _A0>::template rebind<_Up>::other type;
1237};
1238
1239template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up>
1240struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, false>
1241{
1242 typedef _Alloc<_Up, _A0> type;
1243};
1244
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001245template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1246 class _A1, class _Up>
1247struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, true>
1248{
1249 typedef typename _Alloc<_Tp, _A0, _A1>::template rebind<_Up>::other type;
1250};
1251
1252template <template <class, class, class> class _Alloc, class _Tp, class _A0,
1253 class _A1, class _Up>
1254struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, false>
1255{
1256 typedef _Alloc<_Up, _A0, _A1> type;
1257};
1258
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001259template <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, true>
1262{
1263 typedef typename _Alloc<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type;
1264};
1265
1266template <template <class, class, class, class> class _Alloc, class _Tp, class _A0,
1267 class _A1, class _A2, class _Up>
1268struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, false>
1269{
1270 typedef _Alloc<_Up, _A0, _A1, _A2> type;
1271};
1272
Howard Hinnant324bb032010-08-22 00:02:43 +00001273#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001274
1275#ifndef _LIBCPP_HAS_NO_ADVANCED_SFINAE
1276
1277template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1278auto
1279__has_allocate_hint_test(_Alloc&& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1280 -> decltype(__a.allocate(__sz, __p), true_type());
1281
1282template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1283auto
1284__has_allocate_hint_test(const _Alloc& __a, _SizeType&& __sz, _ConstVoidPtr&& __p)
1285 -> false_type;
1286
1287template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1288struct __has_allocate_hint
1289 : integral_constant<bool,
1290 is_same<
1291 decltype(__has_allocate_hint_test(declval<_Alloc>(),
1292 declval<_SizeType>(),
1293 declval<_ConstVoidPtr>())),
1294 true_type>::value>
1295{
1296};
1297
Howard Hinnant324bb032010-08-22 00:02:43 +00001298#else // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001299
1300template <class _Alloc, class _SizeType, class _ConstVoidPtr>
1301struct __has_allocate_hint
1302 : true_type
1303{
1304};
1305
Howard Hinnant324bb032010-08-22 00:02:43 +00001306#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001307
Howard Hinnant23369ee2011-07-29 21:35:53 +00001308#if !defined(_LIBCPP_HAS_NO_ADVANCED_SFINAE) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001309
1310template <class _Alloc, class _Tp, class ..._Args>
Howard Hinnant0949eed2011-06-30 21:18:19 +00001311decltype(_VSTD::declval<_Alloc>().construct(_VSTD::declval<_Tp*>(),
1312 _VSTD::declval<_Args>()...),
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001313 true_type())
1314__has_construct_test(_Alloc&& __a, _Tp* __p, _Args&& ...__args);
1315
1316template <class _Alloc, class _Pointer, class ..._Args>
1317false_type
1318__has_construct_test(const _Alloc& __a, _Pointer&& __p, _Args&& ...__args);
1319
1320template <class _Alloc, class _Pointer, class ..._Args>
1321struct __has_construct
1322 : integral_constant<bool,
1323 is_same<
1324 decltype(__has_construct_test(declval<_Alloc>(),
1325 declval<_Pointer>(),
1326 declval<_Args>()...)),
1327 true_type>::value>
1328{
1329};
1330
1331template <class _Alloc, class _Pointer>
1332auto
1333__has_destroy_test(_Alloc&& __a, _Pointer&& __p)
1334 -> decltype(__a.destroy(__p), true_type());
1335
1336template <class _Alloc, class _Pointer>
1337auto
1338__has_destroy_test(const _Alloc& __a, _Pointer&& __p)
1339 -> false_type;
1340
1341template <class _Alloc, class _Pointer>
1342struct __has_destroy
1343 : integral_constant<bool,
1344 is_same<
1345 decltype(__has_destroy_test(declval<_Alloc>(),
1346 declval<_Pointer>())),
1347 true_type>::value>
1348{
1349};
1350
1351template <class _Alloc>
1352auto
1353__has_max_size_test(_Alloc&& __a)
1354 -> decltype(__a.max_size(), true_type());
1355
1356template <class _Alloc>
1357auto
1358__has_max_size_test(const volatile _Alloc& __a)
1359 -> false_type;
1360
1361template <class _Alloc>
1362struct __has_max_size
1363 : integral_constant<bool,
1364 is_same<
1365 decltype(__has_max_size_test(declval<_Alloc&>())),
1366 true_type>::value>
1367{
1368};
1369
1370template <class _Alloc>
1371auto
1372__has_select_on_container_copy_construction_test(_Alloc&& __a)
1373 -> decltype(__a.select_on_container_copy_construction(), true_type());
1374
1375template <class _Alloc>
1376auto
1377__has_select_on_container_copy_construction_test(const volatile _Alloc& __a)
1378 -> false_type;
1379
1380template <class _Alloc>
1381struct __has_select_on_container_copy_construction
1382 : integral_constant<bool,
1383 is_same<
1384 decltype(__has_select_on_container_copy_construction_test(declval<_Alloc&>())),
1385 true_type>::value>
1386{
1387};
1388
Howard Hinnant324bb032010-08-22 00:02:43 +00001389#else // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001390
1391#ifndef _LIBCPP_HAS_NO_VARIADICS
1392
1393template <class _Alloc, class _Pointer, class ..._Args>
1394struct __has_construct
1395 : false_type
1396{
1397};
1398
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +00001399#else // _LIBCPP_HAS_NO_VARIADICS
1400
1401template <class _Alloc, class _Pointer, class _Args>
1402struct __has_construct
1403 : false_type
1404{
1405};
1406
Howard Hinnant324bb032010-08-22 00:02:43 +00001407#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001408
1409template <class _Alloc, class _Pointer>
1410struct __has_destroy
1411 : false_type
1412{
1413};
1414
1415template <class _Alloc>
1416struct __has_max_size
1417 : true_type
1418{
1419};
1420
1421template <class _Alloc>
1422struct __has_select_on_container_copy_construction
1423 : false_type
1424{
1425};
1426
Howard Hinnant324bb032010-08-22 00:02:43 +00001427#endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001428
Howard Hinnant47761072010-11-18 01:40:00 +00001429template <class _Alloc, class _Ptr, bool = __has_difference_type<_Alloc>::value>
1430struct __alloc_traits_difference_type
1431{
1432 typedef typename pointer_traits<_Ptr>::difference_type type;
1433};
1434
1435template <class _Alloc, class _Ptr>
1436struct __alloc_traits_difference_type<_Alloc, _Ptr, true>
1437{
1438 typedef typename _Alloc::difference_type type;
1439};
1440
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001441template <class _Alloc>
Howard Hinnant82894812010-09-22 16:48:34 +00001442struct _LIBCPP_VISIBLE allocator_traits
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001443{
1444 typedef _Alloc allocator_type;
1445 typedef typename allocator_type::value_type value_type;
1446
1447 typedef typename __pointer_type<value_type, allocator_type>::type pointer;
1448 typedef typename __const_pointer<value_type, pointer, allocator_type>::type const_pointer;
1449 typedef typename __void_pointer<pointer, allocator_type>::type void_pointer;
1450 typedef typename __const_void_pointer<pointer, allocator_type>::type const_void_pointer;
1451
Howard Hinnant47761072010-11-18 01:40:00 +00001452 typedef typename __alloc_traits_difference_type<allocator_type, pointer>::type difference_type;
1453 typedef typename __size_type<allocator_type, difference_type>::type size_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001454
1455 typedef typename __propagate_on_container_copy_assignment<allocator_type>::type
1456 propagate_on_container_copy_assignment;
1457 typedef typename __propagate_on_container_move_assignment<allocator_type>::type
1458 propagate_on_container_move_assignment;
1459 typedef typename __propagate_on_container_swap<allocator_type>::type
1460 propagate_on_container_swap;
1461
1462#ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES
1463 template <class _Tp> using rebind_alloc =
Howard Hinnant6b41c602011-05-11 20:21:19 +00001464 typename __allocator_traits_rebind<allocator_type, _Tp>::type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001465 template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>;
Howard Hinnant324bb032010-08-22 00:02:43 +00001466#else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001467 template <class _Tp> struct rebind_alloc
1468 {typedef typename __allocator_traits_rebind<allocator_type, _Tp>::type other;};
1469 template <class _Tp> struct rebind_traits
1470 {typedef allocator_traits<typename rebind_alloc<_Tp>::other> other;};
Howard Hinnant324bb032010-08-22 00:02:43 +00001471#endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001472
Howard Hinnant82894812010-09-22 16:48:34 +00001473 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001474 static pointer allocate(allocator_type& __a, size_type __n)
1475 {return __a.allocate(__n);}
Howard Hinnant82894812010-09-22 16:48:34 +00001476 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001477 static pointer allocate(allocator_type& __a, size_type __n, const_void_pointer __hint)
1478 {return allocate(__a, __n, __hint,
1479 __has_allocate_hint<allocator_type, size_type, const_void_pointer>());}
1480
Howard Hinnant82894812010-09-22 16:48:34 +00001481 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001482 static void deallocate(allocator_type& __a, pointer __p, size_type __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001483 {__a.deallocate(__p, __n);}
1484
1485#ifndef _LIBCPP_HAS_NO_VARIADICS
1486 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001487 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001488 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args)
1489 {__construct(__has_construct<allocator_type, pointer, _Args...>(),
Howard Hinnant0949eed2011-06-30 21:18:19 +00001490 __a, __p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnant324bb032010-08-22 00:02:43 +00001491#else // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001492 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001493 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001494 static void construct(allocator_type& __a, _Tp* __p)
1495 {
1496 ::new ((void*)__p) _Tp();
1497 }
1498 template <class _Tp, class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00001499 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001500 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0)
1501 {
1502 ::new ((void*)__p) _Tp(__a0);
1503 }
1504 template <class _Tp, class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00001505 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001506 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0,
1507 const _A1& __a1)
1508 {
1509 ::new ((void*)__p) _Tp(__a0, __a1);
1510 }
1511 template <class _Tp, class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00001512 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001513 static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0,
1514 const _A1& __a1, const _A2& __a2)
1515 {
1516 ::new ((void*)__p) _Tp(__a0, __a1, __a2);
1517 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001518#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001519
1520 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001521 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001522 static void destroy(allocator_type& __a, _Tp* __p)
1523 {__destroy(__has_destroy<allocator_type, _Tp*>(), __a, __p);}
1524
Howard Hinnant82894812010-09-22 16:48:34 +00001525 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001526 static size_type max_size(const allocator_type& __a)
1527 {return __max_size(__has_max_size<const allocator_type>(), __a);}
1528
Howard Hinnant82894812010-09-22 16:48:34 +00001529 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001530 static allocator_type
1531 select_on_container_copy_construction(const allocator_type& __a)
1532 {return select_on_container_copy_construction(
1533 __has_select_on_container_copy_construction<const allocator_type>(),
1534 __a);}
1535
Howard Hinnantb0bfd9b2012-02-15 00:41:34 +00001536 template <class _Ptr>
1537 _LIBCPP_INLINE_VISIBILITY
1538 static
1539 void
1540 __construct_forward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __begin2)
1541 {
1542 for (; __begin1 != __end1; ++__begin1, ++__begin2)
1543 construct(__a, _VSTD::__to_raw_pointer(__begin2), _VSTD::move_if_noexcept(*__begin1));
1544 }
1545
1546 template <class _Tp>
1547 _LIBCPP_INLINE_VISIBILITY
1548 static
1549 typename enable_if
1550 <
1551 (is_same<allocator_type, allocator<_Tp> >::value
1552 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1553 is_trivially_move_constructible<_Tp>::value,
1554 void
1555 >::type
1556 __construct_forward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2)
1557 {
1558 ptrdiff_t _Np = __end1 - __begin1;
1559 _VSTD::memcpy(__begin2, __begin1, _Np * sizeof(_Tp));
1560 __begin2 += _Np;
1561 }
1562
1563 template <class _Ptr>
1564 _LIBCPP_INLINE_VISIBILITY
1565 static
1566 void
1567 __construct_backward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __end2)
1568 {
1569 while (__end1 != __begin1)
1570 construct(__a, _VSTD::__to_raw_pointer(--__end2), _VSTD::move_if_noexcept(*--__end1));
1571 }
1572
1573 template <class _Tp>
1574 _LIBCPP_INLINE_VISIBILITY
1575 static
1576 typename enable_if
1577 <
1578 (is_same<allocator_type, allocator<_Tp> >::value
1579 || !__has_construct<allocator_type, _Tp*, _Tp>::value) &&
1580 is_trivially_move_constructible<_Tp>::value,
1581 void
1582 >::type
1583 __construct_backward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __end2)
1584 {
1585 ptrdiff_t _Np = __end1 - __begin1;
1586 __end2 -= _Np;
1587 _VSTD::memcpy(__end2, __begin1, _Np * sizeof(_Tp));
1588 }
1589
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001590private:
1591
Howard Hinnant82894812010-09-22 16:48:34 +00001592 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001593 static pointer allocate(allocator_type& __a, size_type __n,
1594 const_void_pointer __hint, true_type)
1595 {return __a.allocate(__n, __hint);}
Howard Hinnant82894812010-09-22 16:48:34 +00001596 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001597 static pointer allocate(allocator_type& __a, size_type __n,
Howard Hinnantec3773c2011-12-01 20:21:04 +00001598 const_void_pointer, false_type)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001599 {return __a.allocate(__n);}
1600
1601#ifndef _LIBCPP_HAS_NO_VARIADICS
1602 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001603 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001604 static void __construct(true_type, allocator_type& __a, _Tp* __p, _Args&&... __args)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001605 {__a.construct(__p, _VSTD::forward<_Args>(__args)...);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001606 template <class _Tp, class... _Args>
Howard Hinnant82894812010-09-22 16:48:34 +00001607 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001608 static void __construct(false_type, allocator_type&, _Tp* __p, _Args&&... __args)
1609 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001610 ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001611 }
Howard Hinnant324bb032010-08-22 00:02:43 +00001612#endif // _LIBCPP_HAS_NO_VARIADICS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001613
1614 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001615 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001616 static void __destroy(true_type, allocator_type& __a, _Tp* __p)
1617 {__a.destroy(__p);}
1618 template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001619 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001620 static void __destroy(false_type, allocator_type&, _Tp* __p)
1621 {
1622 __p->~_Tp();
1623 }
1624
Howard Hinnant82894812010-09-22 16:48:34 +00001625 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001626 static size_type __max_size(true_type, const allocator_type& __a)
1627 {return __a.max_size();}
Howard Hinnant82894812010-09-22 16:48:34 +00001628 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001629 static size_type __max_size(false_type, const allocator_type&)
1630 {return numeric_limits<size_type>::max();}
1631
Howard Hinnant82894812010-09-22 16:48:34 +00001632 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001633 static allocator_type
1634 select_on_container_copy_construction(true_type, const allocator_type& __a)
1635 {return __a.select_on_container_copy_construction();}
Howard Hinnant82894812010-09-22 16:48:34 +00001636 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001637 static allocator_type
1638 select_on_container_copy_construction(false_type, const allocator_type& __a)
1639 {return __a;}
1640};
1641
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001642// allocator
1643
1644template <class _Tp>
Howard Hinnant36cdf022010-09-10 16:42:26 +00001645class _LIBCPP_VISIBLE allocator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001646{
1647public:
1648 typedef size_t size_type;
1649 typedef ptrdiff_t difference_type;
1650 typedef _Tp* pointer;
1651 typedef const _Tp* const_pointer;
1652 typedef _Tp& reference;
1653 typedef const _Tp& const_reference;
1654 typedef _Tp value_type;
1655
Howard Hinnant18884f42011-06-02 21:38:57 +00001656 typedef true_type propagate_on_container_move_assignment;
1657
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001658 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1659
Howard Hinnant1694d232011-05-28 14:41:13 +00001660 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1661 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1662 _LIBCPP_INLINE_VISIBILITY pointer address(reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001663 {return _VSTD::addressof(__x);}
Howard Hinnant1694d232011-05-28 14:41:13 +00001664 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00001665 {return _VSTD::addressof(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001666 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1667 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
Howard Hinnant1694d232011-05-28 14:41:13 +00001668 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1669 {::operator delete((void*)__p);}
1670 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1671 {return size_type(~0) / sizeof(_Tp);}
Howard Hinnant73d21a42010-09-04 23:28:19 +00001672#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001673 template <class _Up, class... _Args>
1674 _LIBCPP_INLINE_VISIBILITY
1675 void
1676 construct(_Up* __p, _Args&&... __args)
1677 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001678 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001679 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001680#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001681 _LIBCPP_INLINE_VISIBILITY
1682 void
1683 construct(pointer __p)
1684 {
1685 ::new((void*)__p) _Tp();
1686 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001687# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001688 template <class _A0>
1689 _LIBCPP_INLINE_VISIBILITY
1690 typename enable_if
1691 <
1692 !is_convertible<_A0, __rv<_A0> >::value,
1693 void
1694 >::type
1695 construct(pointer __p, _A0& __a0)
1696 {
1697 ::new((void*)__p) _Tp(__a0);
1698 }
1699 template <class _A0>
1700 _LIBCPP_INLINE_VISIBILITY
1701 typename enable_if
1702 <
1703 !is_convertible<_A0, __rv<_A0> >::value,
1704 void
1705 >::type
1706 construct(pointer __p, const _A0& __a0)
1707 {
1708 ::new((void*)__p) _Tp(__a0);
1709 }
1710 template <class _A0>
1711 _LIBCPP_INLINE_VISIBILITY
1712 typename enable_if
1713 <
1714 is_convertible<_A0, __rv<_A0> >::value,
1715 void
1716 >::type
1717 construct(pointer __p, _A0 __a0)
1718 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00001719 ::new((void*)__p) _Tp(_VSTD::move(__a0));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001720 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001721# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001722 template <class _A0, class _A1>
1723 _LIBCPP_INLINE_VISIBILITY
1724 void
1725 construct(pointer __p, _A0& __a0, _A1& __a1)
1726 {
1727 ::new((void*)__p) _Tp(__a0, __a1);
1728 }
1729 template <class _A0, class _A1>
1730 _LIBCPP_INLINE_VISIBILITY
1731 void
1732 construct(pointer __p, const _A0& __a0, _A1& __a1)
1733 {
1734 ::new((void*)__p) _Tp(__a0, __a1);
1735 }
1736 template <class _A0, class _A1>
1737 _LIBCPP_INLINE_VISIBILITY
1738 void
1739 construct(pointer __p, _A0& __a0, const _A1& __a1)
1740 {
1741 ::new((void*)__p) _Tp(__a0, __a1);
1742 }
1743 template <class _A0, class _A1>
1744 _LIBCPP_INLINE_VISIBILITY
1745 void
1746 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1747 {
1748 ::new((void*)__p) _Tp(__a0, __a1);
1749 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001750#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001751 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1752};
1753
Howard Hinnant57199402012-01-02 17:56:02 +00001754template <class _Tp>
1755class _LIBCPP_VISIBLE allocator<const _Tp>
1756{
1757public:
1758 typedef size_t size_type;
1759 typedef ptrdiff_t difference_type;
1760 typedef const _Tp* pointer;
1761 typedef const _Tp* const_pointer;
1762 typedef const _Tp& reference;
1763 typedef const _Tp& const_reference;
1764 typedef _Tp value_type;
1765
1766 typedef true_type propagate_on_container_move_assignment;
1767
1768 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1769
1770 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1771 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1772 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
1773 {return _VSTD::addressof(__x);}
1774 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1775 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
1776 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1777 {::operator delete((void*)__p);}
1778 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1779 {return size_type(~0) / sizeof(_Tp);}
1780#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1781 template <class _Up, class... _Args>
1782 _LIBCPP_INLINE_VISIBILITY
1783 void
1784 construct(_Up* __p, _Args&&... __args)
1785 {
1786 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
1787 }
1788#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1789 _LIBCPP_INLINE_VISIBILITY
1790 void
1791 construct(pointer __p)
1792 {
1793 ::new((void*)__p) _Tp();
1794 }
1795# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1796 template <class _A0>
1797 _LIBCPP_INLINE_VISIBILITY
1798 typename enable_if
1799 <
1800 !is_convertible<_A0, __rv<_A0> >::value,
1801 void
1802 >::type
1803 construct(pointer __p, _A0& __a0)
1804 {
1805 ::new((void*)__p) _Tp(__a0);
1806 }
1807 template <class _A0>
1808 _LIBCPP_INLINE_VISIBILITY
1809 typename enable_if
1810 <
1811 !is_convertible<_A0, __rv<_A0> >::value,
1812 void
1813 >::type
1814 construct(pointer __p, const _A0& __a0)
1815 {
1816 ::new((void*)__p) _Tp(__a0);
1817 }
1818 template <class _A0>
1819 _LIBCPP_INLINE_VISIBILITY
1820 typename enable_if
1821 <
1822 is_convertible<_A0, __rv<_A0> >::value,
1823 void
1824 >::type
1825 construct(pointer __p, _A0 __a0)
1826 {
1827 ::new((void*)__p) _Tp(_VSTD::move(__a0));
1828 }
1829# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1830 template <class _A0, class _A1>
1831 _LIBCPP_INLINE_VISIBILITY
1832 void
1833 construct(pointer __p, _A0& __a0, _A1& __a1)
1834 {
1835 ::new((void*)__p) _Tp(__a0, __a1);
1836 }
1837 template <class _A0, class _A1>
1838 _LIBCPP_INLINE_VISIBILITY
1839 void
1840 construct(pointer __p, const _A0& __a0, _A1& __a1)
1841 {
1842 ::new((void*)__p) _Tp(__a0, __a1);
1843 }
1844 template <class _A0, class _A1>
1845 _LIBCPP_INLINE_VISIBILITY
1846 void
1847 construct(pointer __p, _A0& __a0, const _A1& __a1)
1848 {
1849 ::new((void*)__p) _Tp(__a0, __a1);
1850 }
1851 template <class _A0, class _A1>
1852 _LIBCPP_INLINE_VISIBILITY
1853 void
1854 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1855 {
1856 ::new((void*)__p) _Tp(__a0, __a1);
1857 }
1858#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1859 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1860};
1861
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001862template <class _Tp, class _Up>
1863inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001864bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001865
1866template <class _Tp, class _Up>
1867inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001868bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001869
1870template <class _OutputIterator, class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001871class _LIBCPP_VISIBLE raw_storage_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001872 : public iterator<output_iterator_tag,
1873 _Tp, // purposefully not C++03
1874 ptrdiff_t, // purposefully not C++03
1875 _Tp*, // purposefully not C++03
1876 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1877{
1878private:
1879 _OutputIterator __x_;
1880public:
1881 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
1882 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
1883 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
1884 {::new(&*__x_) _Tp(__element); return *this;}
1885 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
1886 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
1887 {raw_storage_iterator __t(*this); ++__x_; return __t;}
1888};
1889
1890template <class _Tp>
1891pair<_Tp*, ptrdiff_t>
Howard Hinnant1694d232011-05-28 14:41:13 +00001892get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001893{
1894 pair<_Tp*, ptrdiff_t> __r(0, 0);
1895 const ptrdiff_t __m = (~ptrdiff_t(0) ^
1896 ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1)))
1897 / sizeof(_Tp);
1898 if (__n > __m)
1899 __n = __m;
1900 while (__n > 0)
1901 {
1902 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
1903 if (__r.first)
1904 {
1905 __r.second = __n;
1906 break;
1907 }
1908 __n /= 2;
1909 }
1910 return __r;
1911}
1912
1913template <class _Tp>
1914inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001915void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001916
1917template <class _Tp>
1918struct auto_ptr_ref
1919{
1920 _Tp* __ptr_;
1921};
1922
1923template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001924class _LIBCPP_VISIBLE auto_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001925{
1926private:
1927 _Tp* __ptr_;
1928public:
1929 typedef _Tp element_type;
1930
1931 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}
1932 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}
1933 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw()
1934 : __ptr_(__p.release()) {}
1935 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw()
1936 {reset(__p.release()); return *this;}
1937 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw()
1938 {reset(__p.release()); return *this;}
1939 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()
1940 {reset(__p.__ptr_); return *this;}
1941 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}
1942
1943 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw()
1944 {return *__ptr_;}
1945 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}
1946 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}
1947 _LIBCPP_INLINE_VISIBILITY _Tp* release() throw()
1948 {
1949 _Tp* __t = __ptr_;
1950 __ptr_ = 0;
1951 return __t;
1952 }
1953 _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw()
1954 {
1955 if (__ptr_ != __p)
1956 delete __ptr_;
1957 __ptr_ = __p;
1958 }
1959
1960 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}
1961 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()
1962 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
1963 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw()
1964 {return auto_ptr<_Up>(release());}
1965};
1966
1967template <>
Howard Hinnant82894812010-09-22 16:48:34 +00001968class _LIBCPP_VISIBLE auto_ptr<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001969{
1970public:
1971 typedef void element_type;
1972};
1973
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001974template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type,
1975 typename remove_cv<_T2>::type>::value,
Howard Hinnantd4cf2152011-12-11 20:31:33 +00001976 bool = is_empty<_T1>::value
1977#if __has_feature(is_final)
1978 && !__is_final(_T1)
1979#endif
1980 ,
1981 bool = is_empty<_T2>::value
1982#if __has_feature(is_final)
1983 && !__is_final(_T2)
1984#endif
1985 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001986struct __libcpp_compressed_pair_switch;
1987
1988template <class _T1, class _T2, bool IsSame>
1989struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};};
1990
1991template <class _T1, class _T2, bool IsSame>
1992struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};};
1993
1994template <class _T1, class _T2, bool IsSame>
1995struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};};
1996
1997template <class _T1, class _T2>
1998struct __libcpp_compressed_pair_switch<_T1, _T2, false, true, true> {enum {value = 3};};
1999
2000template <class _T1, class _T2>
2001struct __libcpp_compressed_pair_switch<_T1, _T2, true, true, true> {enum {value = 1};};
2002
2003template <class _T1, class _T2, unsigned = __libcpp_compressed_pair_switch<_T1, _T2>::value>
2004class __libcpp_compressed_pair_imp;
2005
2006template <class _T1, class _T2>
2007class __libcpp_compressed_pair_imp<_T1, _T2, 0>
2008{
2009private:
2010 _T1 __first_;
2011 _T2 __second_;
2012public:
2013 typedef _T1 _T1_param;
2014 typedef _T2 _T2_param;
2015
2016 typedef typename remove_reference<_T1>::type& _T1_reference;
2017 typedef typename remove_reference<_T2>::type& _T2_reference;
2018
2019 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
2020 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
2021
2022 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002023 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002024 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002025 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002026 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002027 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002028 : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002029
Howard Hinnant61aa6012011-07-01 19:24:36 +00002030#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2031
2032 _LIBCPP_INLINE_VISIBILITY
2033 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2034 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2035 is_nothrow_copy_constructible<_T2>::value)
2036 : __first_(__p.first()),
2037 __second_(__p.second()) {}
2038
2039 _LIBCPP_INLINE_VISIBILITY
2040 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2041 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2042 is_nothrow_copy_assignable<_T2>::value)
2043 {
2044 __first_ = __p.first();
2045 __second_ = __p.second();
2046 return *this;
2047 }
2048
Howard Hinnant73d21a42010-09-04 23:28:19 +00002049#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002050
2051 _LIBCPP_INLINE_VISIBILITY
2052 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002053 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2054 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002055 : __first_(_VSTD::forward<_T1>(__p.first())),
2056 __second_(_VSTD::forward<_T2>(__p.second())) {}
2057
2058 _LIBCPP_INLINE_VISIBILITY
2059 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2060 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2061 is_nothrow_move_assignable<_T2>::value)
2062 {
2063 __first_ = _VSTD::forward<_T1>(__p.first());
2064 __second_ = _VSTD::forward<_T2>(__p.second());
2065 return *this;
2066 }
2067
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002068#ifndef _LIBCPP_HAS_NO_VARIADICS
2069
2070 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2071 _LIBCPP_INLINE_VISIBILITY
2072 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2073 tuple<_Args1...> __first_args,
2074 tuple<_Args2...> __second_args,
2075 __tuple_indices<_I1...>,
2076 __tuple_indices<_I2...>)
2077 : __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2078 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2079 {}
2080
2081#endif // _LIBCPP_HAS_NO_VARIADICS
2082
Howard Hinnant73d21a42010-09-04 23:28:19 +00002083#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002084
Howard Hinnant61aa6012011-07-01 19:24:36 +00002085#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2086
Howard Hinnant1694d232011-05-28 14:41:13 +00002087 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2088 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002089
Howard Hinnant1694d232011-05-28 14:41:13 +00002090 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2091 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002092
2093 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002094 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2095 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002096 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002097 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002098 swap(__first_, __x.__first_);
2099 swap(__second_, __x.__second_);
2100 }
2101};
2102
2103template <class _T1, class _T2>
2104class __libcpp_compressed_pair_imp<_T1, _T2, 1>
2105 : private _T1
2106{
2107private:
2108 _T2 __second_;
2109public:
2110 typedef _T1 _T1_param;
2111 typedef _T2 _T2_param;
2112
2113 typedef _T1& _T1_reference;
2114 typedef typename remove_reference<_T2>::type& _T2_reference;
2115
2116 typedef const _T1& _T1_const_reference;
2117 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
2118
2119 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002120 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002121 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002122 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002123 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002124 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002125 : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002126
Howard Hinnant61aa6012011-07-01 19:24:36 +00002127#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2128
2129 _LIBCPP_INLINE_VISIBILITY
2130 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2131 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2132 is_nothrow_copy_constructible<_T2>::value)
2133 : _T1(__p.first()), __second_(__p.second()) {}
2134
2135 _LIBCPP_INLINE_VISIBILITY
2136 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2137 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2138 is_nothrow_copy_assignable<_T2>::value)
2139 {
2140 _T1::operator=(__p.first());
2141 __second_ = __p.second();
2142 return *this;
2143 }
2144
Howard Hinnant73d21a42010-09-04 23:28:19 +00002145#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002146
2147 _LIBCPP_INLINE_VISIBILITY
2148 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002149 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2150 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002151 : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002152
2153 _LIBCPP_INLINE_VISIBILITY
2154 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2155 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2156 is_nothrow_move_assignable<_T2>::value)
2157 {
2158 _T1::operator=(_VSTD::move(__p.first()));
2159 __second_ = _VSTD::forward<_T2>(__p.second());
2160 return *this;
2161 }
2162
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002163#ifndef _LIBCPP_HAS_NO_VARIADICS
2164
2165 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2166 _LIBCPP_INLINE_VISIBILITY
2167 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2168 tuple<_Args1...> __first_args,
2169 tuple<_Args2...> __second_args,
2170 __tuple_indices<_I1...>,
2171 __tuple_indices<_I2...>)
2172 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2173 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2174 {}
2175
2176#endif // _LIBCPP_HAS_NO_VARIADICS
2177
Howard Hinnant73d21a42010-09-04 23:28:19 +00002178#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002179
Howard Hinnant61aa6012011-07-01 19:24:36 +00002180#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2181
Howard Hinnant1694d232011-05-28 14:41:13 +00002182 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2183 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002184
Howard Hinnant1694d232011-05-28 14:41:13 +00002185 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2186 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002187
2188 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002189 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2190 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002191 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002192 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002193 swap(__second_, __x.__second_);
2194 }
2195};
2196
2197template <class _T1, class _T2>
2198class __libcpp_compressed_pair_imp<_T1, _T2, 2>
2199 : private _T2
2200{
2201private:
2202 _T1 __first_;
2203public:
2204 typedef _T1 _T1_param;
2205 typedef _T2 _T2_param;
2206
2207 typedef typename remove_reference<_T1>::type& _T1_reference;
2208 typedef _T2& _T2_reference;
2209
2210 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
2211 typedef const _T2& _T2_const_reference;
2212
2213 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2214 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002215 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002216 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002217 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002218 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant1694d232011-05-28 14:41:13 +00002219 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2220 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002221 : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002222
Howard Hinnant61aa6012011-07-01 19:24:36 +00002223#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2224
2225 _LIBCPP_INLINE_VISIBILITY
2226 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2227 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2228 is_nothrow_copy_constructible<_T2>::value)
2229 : _T2(__p.second()), __first_(__p.first()) {}
2230
2231 _LIBCPP_INLINE_VISIBILITY
2232 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2233 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2234 is_nothrow_copy_assignable<_T2>::value)
2235 {
2236 _T2::operator=(__p.second());
2237 __first_ = __p.first();
2238 return *this;
2239 }
2240
Howard Hinnant73d21a42010-09-04 23:28:19 +00002241#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002242
2243 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002244 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002245 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2246 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002247 : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002248
2249 _LIBCPP_INLINE_VISIBILITY
2250 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2251 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2252 is_nothrow_move_assignable<_T2>::value)
2253 {
2254 _T2::operator=(_VSTD::forward<_T2>(__p.second()));
2255 __first_ = _VSTD::move(__p.first());
2256 return *this;
2257 }
2258
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002259#ifndef _LIBCPP_HAS_NO_VARIADICS
2260
2261 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2262 _LIBCPP_INLINE_VISIBILITY
2263 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2264 tuple<_Args1...> __first_args,
2265 tuple<_Args2...> __second_args,
2266 __tuple_indices<_I1...>,
2267 __tuple_indices<_I2...>)
2268 : _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...),
2269 __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...)
2270
2271 {}
2272
2273#endif // _LIBCPP_HAS_NO_VARIADICS
2274
Howard Hinnant73d21a42010-09-04 23:28:19 +00002275#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002276
Howard Hinnant61aa6012011-07-01 19:24:36 +00002277#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2278
Howard Hinnant1694d232011-05-28 14:41:13 +00002279 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2280 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002281
Howard Hinnant1694d232011-05-28 14:41:13 +00002282 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2283 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002284
2285 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002286 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2287 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002288 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002289 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002290 swap(__first_, __x.__first_);
2291 }
2292};
2293
2294template <class _T1, class _T2>
2295class __libcpp_compressed_pair_imp<_T1, _T2, 3>
2296 : private _T1,
2297 private _T2
2298{
2299public:
2300 typedef _T1 _T1_param;
2301 typedef _T2 _T2_param;
2302
2303 typedef _T1& _T1_reference;
2304 typedef _T2& _T2_reference;
2305
2306 typedef const _T1& _T1_const_reference;
2307 typedef const _T2& _T2_const_reference;
2308
2309 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2310 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002311 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002312 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002313 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002314 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002315 : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002316
Howard Hinnant61aa6012011-07-01 19:24:36 +00002317#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2318
2319 _LIBCPP_INLINE_VISIBILITY
2320 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2321 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2322 is_nothrow_copy_constructible<_T2>::value)
2323 : _T1(__p.first()), _T2(__p.second()) {}
2324
2325 _LIBCPP_INLINE_VISIBILITY
2326 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2327 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2328 is_nothrow_copy_assignable<_T2>::value)
2329 {
2330 _T1::operator=(__p.first());
2331 _T2::operator=(__p.second());
2332 return *this;
2333 }
2334
Howard Hinnant73d21a42010-09-04 23:28:19 +00002335#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002336
2337 _LIBCPP_INLINE_VISIBILITY
2338 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002339 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2340 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002341 : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002342
2343 _LIBCPP_INLINE_VISIBILITY
2344 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2345 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2346 is_nothrow_move_assignable<_T2>::value)
2347 {
2348 _T1::operator=(_VSTD::move(__p.first()));
2349 _T2::operator=(_VSTD::move(__p.second()));
2350 return *this;
2351 }
2352
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002353#ifndef _LIBCPP_HAS_NO_VARIADICS
2354
2355 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2356 _LIBCPP_INLINE_VISIBILITY
2357 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2358 tuple<_Args1...> __first_args,
2359 tuple<_Args2...> __second_args,
2360 __tuple_indices<_I1...>,
2361 __tuple_indices<_I2...>)
2362 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2363 _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2364 {}
2365
2366#endif // _LIBCPP_HAS_NO_VARIADICS
2367
Howard Hinnant73d21a42010-09-04 23:28:19 +00002368#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002369
Howard Hinnant61aa6012011-07-01 19:24:36 +00002370#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2371
Howard Hinnant1694d232011-05-28 14:41:13 +00002372 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2373 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002374
Howard Hinnant1694d232011-05-28 14:41:13 +00002375 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2376 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002377
Howard Hinnantec3773c2011-12-01 20:21:04 +00002378 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp&)
Howard Hinnant1694d232011-05-28 14:41:13 +00002379 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2380 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002381 {
2382 }
2383};
2384
2385template <class _T1, class _T2>
2386class __compressed_pair
2387 : private __libcpp_compressed_pair_imp<_T1, _T2>
2388{
2389 typedef __libcpp_compressed_pair_imp<_T1, _T2> base;
2390public:
2391 typedef typename base::_T1_param _T1_param;
2392 typedef typename base::_T2_param _T2_param;
2393
2394 typedef typename base::_T1_reference _T1_reference;
2395 typedef typename base::_T2_reference _T2_reference;
2396
2397 typedef typename base::_T1_const_reference _T1_const_reference;
2398 typedef typename base::_T2_const_reference _T2_const_reference;
2399
2400 _LIBCPP_INLINE_VISIBILITY __compressed_pair() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002401 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002402 : base(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002403 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002404 : base(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002405 _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002406 : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002407
Howard Hinnant61aa6012011-07-01 19:24:36 +00002408#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2409
2410 _LIBCPP_INLINE_VISIBILITY
2411 __compressed_pair(const __compressed_pair& __p)
2412 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2413 is_nothrow_copy_constructible<_T2>::value)
2414 : base(__p) {}
2415
2416 _LIBCPP_INLINE_VISIBILITY
2417 __compressed_pair& operator=(const __compressed_pair& __p)
2418 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2419 is_nothrow_copy_assignable<_T2>::value)
2420 {
2421 base::operator=(__p);
2422 return *this;
2423 }
2424
Howard Hinnant73d21a42010-09-04 23:28:19 +00002425#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002426 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002427 __compressed_pair(__compressed_pair&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002428 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2429 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002430 : base(_VSTD::move(__p)) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002431
2432 _LIBCPP_INLINE_VISIBILITY
2433 __compressed_pair& operator=(__compressed_pair&& __p)
2434 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2435 is_nothrow_move_assignable<_T2>::value)
2436 {
2437 base::operator=(_VSTD::move(__p));
2438 return *this;
2439 }
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002440
2441#ifndef _LIBCPP_HAS_NO_VARIADICS
2442
2443 template <class... _Args1, class... _Args2>
2444 _LIBCPP_INLINE_VISIBILITY
2445 __compressed_pair(piecewise_construct_t __pc, tuple<_Args1...> __first_args,
2446 tuple<_Args2...> __second_args)
Howard Hinnant57199402012-01-02 17:56:02 +00002447 : base(__pc, _VSTD::move(__first_args), _VSTD::move(__second_args),
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002448 typename __make_tuple_indices<sizeof...(_Args1)>::type(),
2449 typename __make_tuple_indices<sizeof...(_Args2) >::type())
2450 {}
2451
2452#endif // _LIBCPP_HAS_NO_VARIADICS
2453
Howard Hinnant73d21a42010-09-04 23:28:19 +00002454#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002455
Howard Hinnant61aa6012011-07-01 19:24:36 +00002456#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2457
Howard Hinnant1694d232011-05-28 14:41:13 +00002458 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return base::first();}
2459 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002460
Howard Hinnant1694d232011-05-28 14:41:13 +00002461 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return base::second();}
2462 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return base::second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002463
Howard Hinnant1694d232011-05-28 14:41:13 +00002464 _LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x)
2465 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2466 __is_nothrow_swappable<_T1>::value)
2467 {base::swap(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002468};
2469
2470template <class _T1, class _T2>
2471inline _LIBCPP_INLINE_VISIBILITY
2472void
2473swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
Howard Hinnant1694d232011-05-28 14:41:13 +00002474 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2475 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002476 {__x.swap(__y);}
2477
Howard Hinnant57199402012-01-02 17:56:02 +00002478// __same_or_less_cv_qualified
2479
2480template <class _Ptr1, class _Ptr2,
2481 bool = is_same<typename remove_cv<typename pointer_traits<_Ptr1>::element_type>::type,
2482 typename remove_cv<typename pointer_traits<_Ptr2>::element_type>::type
2483 >::value
2484 >
2485struct __same_or_less_cv_qualified_imp
2486 : is_convertible<_Ptr1, _Ptr2> {};
2487
2488template <class _Ptr1, class _Ptr2>
2489struct __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2, false>
2490 : false_type {};
2491
2492template <class _Ptr1, class _Ptr2, bool = is_scalar<_Ptr1>::value &&
2493 !is_pointer<_Ptr1>::value>
2494struct __same_or_less_cv_qualified
2495 : __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2> {};
2496
2497template <class _Ptr1, class _Ptr2>
2498struct __same_or_less_cv_qualified<_Ptr1, _Ptr2, true>
2499 : false_type {};
2500
2501// default_delete
2502
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002503template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002504struct _LIBCPP_VISIBLE default_delete
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002505{
Howard Hinnant1694d232011-05-28 14:41:13 +00002506 _LIBCPP_INLINE_VISIBILITY default_delete() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002507 template <class _Up>
2508 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up>&,
Howard Hinnant1694d232011-05-28 14:41:13 +00002509 typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
2510 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002511 {
2512 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2513 delete __ptr;
2514 }
2515};
2516
2517template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002518struct _LIBCPP_VISIBLE default_delete<_Tp[]>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002519{
Howard Hinnant8e843502011-12-18 21:19:44 +00002520public:
2521 _LIBCPP_INLINE_VISIBILITY default_delete() _NOEXCEPT {}
2522 template <class _Up>
2523 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up[]>&,
Howard Hinnant57199402012-01-02 17:56:02 +00002524 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
Howard Hinnant8e843502011-12-18 21:19:44 +00002525 template <class _Up>
2526 _LIBCPP_INLINE_VISIBILITY
2527 void operator() (_Up* __ptr,
Howard Hinnant57199402012-01-02 17:56:02 +00002528 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002529 {
2530 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2531 delete [] __ptr;
2532 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002533};
2534
2535template <class _Tp, class _Dp = default_delete<_Tp> >
Howard Hinnant82894812010-09-22 16:48:34 +00002536class _LIBCPP_VISIBLE unique_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002537{
2538public:
2539 typedef _Tp element_type;
2540 typedef _Dp deleter_type;
2541 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2542private:
2543 __compressed_pair<pointer, deleter_type> __ptr_;
2544
Howard Hinnant57199402012-01-02 17:56:02 +00002545#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002546 unique_ptr(unique_ptr&);
2547 template <class _Up, class _Ep>
2548 unique_ptr(unique_ptr<_Up, _Ep>&);
2549 unique_ptr& operator=(unique_ptr&);
2550 template <class _Up, class _Ep>
2551 unique_ptr& operator=(unique_ptr<_Up, _Ep>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002552#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002553
2554 struct __nat {int __for_bool_;};
2555
2556 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2557 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2558public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002559 _LIBCPP_INLINE_VISIBILITY unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002560 : __ptr_(pointer())
2561 {
2562 static_assert(!is_pointer<deleter_type>::value,
2563 "unique_ptr constructed with null function pointer deleter");
2564 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002565 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002566 : __ptr_(pointer())
2567 {
2568 static_assert(!is_pointer<deleter_type>::value,
2569 "unique_ptr constructed with null function pointer deleter");
2570 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002571 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002572 : __ptr_(_VSTD::move(__p))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002573 {
2574 static_assert(!is_pointer<deleter_type>::value,
2575 "unique_ptr constructed with null function pointer deleter");
2576 }
2577
Howard Hinnant73d21a42010-09-04 23:28:19 +00002578#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002579 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename conditional<
2580 is_reference<deleter_type>::value,
2581 deleter_type,
2582 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002583 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002584 : __ptr_(__p, __d) {}
2585
2586 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002587 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002588 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002589 {
2590 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2591 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002592 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002593 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002594 template <class _Up, class _Ep>
2595 _LIBCPP_INLINE_VISIBILITY
2596 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2597 typename enable_if
2598 <
2599 !is_array<_Up>::value &&
2600 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2601 is_convertible<_Ep, deleter_type>::value &&
2602 (
2603 !is_reference<deleter_type>::value ||
2604 is_same<deleter_type, _Ep>::value
2605 ),
2606 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002607 >::type = __nat()) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002608 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002609
2610 template <class _Up>
2611 _LIBCPP_INLINE_VISIBILITY unique_ptr(auto_ptr<_Up>&& __p,
2612 typename enable_if<
2613 is_convertible<_Up*, _Tp*>::value &&
2614 is_same<_Dp, default_delete<_Tp> >::value,
2615 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002616 >::type = __nat()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002617 : __ptr_(__p.release())
2618 {
2619 }
2620
Howard Hinnant1694d232011-05-28 14:41:13 +00002621 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002622 {
2623 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002624 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002625 return *this;
2626 }
2627
2628 template <class _Up, class _Ep>
2629 _LIBCPP_INLINE_VISIBILITY
2630 typename enable_if
2631 <
Howard Hinnant57199402012-01-02 17:56:02 +00002632 !is_array<_Up>::value &&
2633 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2634 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002635 unique_ptr&
2636 >::type
Howard Hinnant1694d232011-05-28 14:41:13 +00002637 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002638 {
2639 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002640 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002641 return *this;
2642 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002643#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002644
2645 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2646 {
2647 return __rv<unique_ptr>(*this);
2648 }
2649
2650 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002651 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002652
2653 template <class _Up, class _Ep>
2654 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr<_Up, _Ep> __u)
2655 {
2656 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002657 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002658 return *this;
2659 }
2660
2661 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002662 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002663
2664 template <class _Up>
2665 _LIBCPP_INLINE_VISIBILITY
2666 typename enable_if<
2667 is_convertible<_Up*, _Tp*>::value &&
2668 is_same<_Dp, default_delete<_Tp> >::value,
2669 unique_ptr&
2670 >::type
2671 operator=(auto_ptr<_Up> __p)
2672 {reset(__p.release()); return *this;}
2673
Howard Hinnant73d21a42010-09-04 23:28:19 +00002674#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002675 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2676
Howard Hinnant1694d232011-05-28 14:41:13 +00002677 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002678 {
2679 reset();
2680 return *this;
2681 }
2682
2683 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator*() const
2684 {return *__ptr_.first();}
Howard Hinnant1694d232011-05-28 14:41:13 +00002685 _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT {return __ptr_.first();}
2686 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2687 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2688 {return __ptr_.second();}
2689 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2690 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002691 _LIBCPP_INLINE_VISIBILITY
2692 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2693 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002694
Howard Hinnant1694d232011-05-28 14:41:13 +00002695 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002696 {
2697 pointer __t = __ptr_.first();
2698 __ptr_.first() = pointer();
2699 return __t;
2700 }
2701
Howard Hinnant1694d232011-05-28 14:41:13 +00002702 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002703 {
2704 pointer __tmp = __ptr_.first();
2705 __ptr_.first() = __p;
2706 if (__tmp)
2707 __ptr_.second()(__tmp);
2708 }
2709
Howard Hinnant1694d232011-05-28 14:41:13 +00002710 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) _NOEXCEPT
2711 {__ptr_.swap(__u.__ptr_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002712};
2713
2714template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00002715class _LIBCPP_VISIBLE unique_ptr<_Tp[], _Dp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002716{
2717public:
2718 typedef _Tp element_type;
2719 typedef _Dp deleter_type;
2720 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2721private:
2722 __compressed_pair<pointer, deleter_type> __ptr_;
2723
Howard Hinnant57199402012-01-02 17:56:02 +00002724#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002725 unique_ptr(unique_ptr&);
2726 template <class _Up>
2727 unique_ptr(unique_ptr<_Up>&);
2728 unique_ptr& operator=(unique_ptr&);
2729 template <class _Up>
2730 unique_ptr& operator=(unique_ptr<_Up>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002731#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002732
2733 struct __nat {int __for_bool_;};
2734
2735 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2736 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2737public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002738 _LIBCPP_INLINE_VISIBILITY unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002739 : __ptr_(pointer())
2740 {
2741 static_assert(!is_pointer<deleter_type>::value,
2742 "unique_ptr constructed with null function pointer deleter");
2743 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002744 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002745 : __ptr_(pointer())
2746 {
2747 static_assert(!is_pointer<deleter_type>::value,
2748 "unique_ptr constructed with null function pointer deleter");
2749 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002750#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002751 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002752 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002753 >
Howard Hinnant99968442011-11-29 18:15:50 +00002754 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002755 : __ptr_(__p)
2756 {
2757 static_assert(!is_pointer<deleter_type>::value,
2758 "unique_ptr constructed with null function pointer deleter");
2759 }
2760
Howard Hinnant99968442011-11-29 18:15:50 +00002761 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002762 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002763 >
Howard Hinnant99968442011-11-29 18:15:50 +00002764 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename conditional<
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002765 is_reference<deleter_type>::value,
2766 deleter_type,
2767 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002768 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002769 : __ptr_(__p, __d) {}
2770
2771 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename conditional<
2772 is_reference<deleter_type>::value,
2773 deleter_type,
2774 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002775 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002776 : __ptr_(pointer(), __d) {}
2777
Howard Hinnant99968442011-11-29 18:15:50 +00002778 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002779 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002780 >
Howard Hinnant99968442011-11-29 18:15:50 +00002781 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002782 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002783 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002784 {
2785 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2786 }
2787
2788 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002789 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002790 : __ptr_(pointer(), _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002791 {
2792 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2793 }
2794
Howard Hinnant1694d232011-05-28 14:41:13 +00002795 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002796 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002797
Howard Hinnant1694d232011-05-28 14:41:13 +00002798 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002799 {
2800 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002801 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002802 return *this;
2803 }
Howard Hinnant8e843502011-12-18 21:19:44 +00002804
2805 template <class _Up, class _Ep>
2806 _LIBCPP_INLINE_VISIBILITY
2807 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2808 typename enable_if
2809 <
2810 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002811 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value
Howard Hinnant8e843502011-12-18 21:19:44 +00002812 && is_convertible<_Ep, deleter_type>::value &&
2813 (
2814 !is_reference<deleter_type>::value ||
2815 is_same<deleter_type, _Ep>::value
2816 ),
2817 __nat
2818 >::type = __nat()
2819 ) _NOEXCEPT
2820 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
2821
2822
2823 template <class _Up, class _Ep>
2824 _LIBCPP_INLINE_VISIBILITY
2825 typename enable_if
2826 <
2827 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002828 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2829 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnant8e843502011-12-18 21:19:44 +00002830 unique_ptr&
2831 >::type
2832 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
2833 {
2834 reset(__u.release());
2835 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2836 return *this;
2837 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002838#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002839
2840 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p)
2841 : __ptr_(__p)
2842 {
2843 static_assert(!is_pointer<deleter_type>::value,
2844 "unique_ptr constructed with null function pointer deleter");
2845 }
2846
2847 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002848 : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002849
2850 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002851 : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002852
2853 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2854 {
2855 return __rv<unique_ptr>(*this);
2856 }
2857
2858 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002859 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002860
2861 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(__rv<unique_ptr> __u)
2862 {
2863 reset(__u->release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002864 __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002865 return *this;
2866 }
2867
Howard Hinnant73d21a42010-09-04 23:28:19 +00002868#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002869 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2870
Howard Hinnant1694d232011-05-28 14:41:13 +00002871 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002872 {
2873 reset();
2874 return *this;
2875 }
2876
2877 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator[](size_t __i) const
2878 {return __ptr_.first()[__i];}
Howard Hinnant1694d232011-05-28 14:41:13 +00002879 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2880 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2881 {return __ptr_.second();}
2882 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2883 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002884 _LIBCPP_INLINE_VISIBILITY
2885 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2886 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002887
Howard Hinnant1694d232011-05-28 14:41:13 +00002888 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002889 {
2890 pointer __t = __ptr_.first();
2891 __ptr_.first() = pointer();
2892 return __t;
2893 }
2894
Howard Hinnant73d21a42010-09-04 23:28:19 +00002895#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002896 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002897 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002898 >
Howard Hinnant99968442011-11-29 18:15:50 +00002899 _LIBCPP_INLINE_VISIBILITY void reset(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002900 {
2901 pointer __tmp = __ptr_.first();
2902 __ptr_.first() = __p;
2903 if (__tmp)
2904 __ptr_.second()(__tmp);
2905 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002906 _LIBCPP_INLINE_VISIBILITY void reset(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002907 {
2908 pointer __tmp = __ptr_.first();
2909 __ptr_.first() = nullptr;
2910 if (__tmp)
2911 __ptr_.second()(__tmp);
2912 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002913 _LIBCPP_INLINE_VISIBILITY void reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002914 {
2915 pointer __tmp = __ptr_.first();
2916 __ptr_.first() = nullptr;
2917 if (__tmp)
2918 __ptr_.second()(__tmp);
2919 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002920#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002921 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer())
2922 {
2923 pointer __tmp = __ptr_.first();
2924 __ptr_.first() = __p;
2925 if (__tmp)
2926 __ptr_.second()(__tmp);
2927 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002928#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002929
2930 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) {__ptr_.swap(__u.__ptr_);}
2931private:
Howard Hinnant324bb032010-08-22 00:02:43 +00002932
Howard Hinnant73d21a42010-09-04 23:28:19 +00002933#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002934 template <class _Up>
2935 explicit unique_ptr(_Up);
2936 template <class _Up>
2937 unique_ptr(_Up __u,
2938 typename conditional<
2939 is_reference<deleter_type>::value,
2940 deleter_type,
2941 typename add_lvalue_reference<const deleter_type>::type>::type,
2942 typename enable_if
2943 <
2944 is_convertible<_Up, pointer>::value,
2945 __nat
2946 >::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00002947#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002948};
2949
2950template <class _Tp, class _Dp>
2951inline _LIBCPP_INLINE_VISIBILITY
2952void
Howard Hinnant1694d232011-05-28 14:41:13 +00002953swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002954
2955template <class _T1, class _D1, class _T2, class _D2>
2956inline _LIBCPP_INLINE_VISIBILITY
2957bool
2958operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
2959
2960template <class _T1, class _D1, class _T2, class _D2>
2961inline _LIBCPP_INLINE_VISIBILITY
2962bool
2963operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
2964
2965template <class _T1, class _D1, class _T2, class _D2>
2966inline _LIBCPP_INLINE_VISIBILITY
2967bool
Howard Hinnant3fadda32012-02-21 21:02:58 +00002968operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y)
2969{
2970 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2971 typedef typename unique_ptr<_T2, _D2>::pointer _P2;
2972 typedef typename common_type<_P1, _P2>::type _V;
2973 return less<_V>()(__x.get(), __y.get());
2974}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002975
2976template <class _T1, class _D1, class _T2, class _D2>
2977inline _LIBCPP_INLINE_VISIBILITY
2978bool
2979operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
2980
2981template <class _T1, class _D1, class _T2, class _D2>
2982inline _LIBCPP_INLINE_VISIBILITY
2983bool
2984operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);}
2985
2986template <class _T1, class _D1, class _T2, class _D2>
2987inline _LIBCPP_INLINE_VISIBILITY
2988bool
2989operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);}
2990
Howard Hinnant3fadda32012-02-21 21:02:58 +00002991template <class _T1, class _D1>
2992inline _LIBCPP_INLINE_VISIBILITY
2993bool
2994operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t)
2995{
2996 return !__x;
2997}
2998
2999template <class _T1, class _D1>
3000inline _LIBCPP_INLINE_VISIBILITY
3001bool
3002operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3003{
3004 return !__x;
3005}
3006
3007template <class _T1, class _D1>
3008inline _LIBCPP_INLINE_VISIBILITY
3009bool
3010operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3011{
3012 return static_cast<bool>(__x);
3013}
3014
3015template <class _T1, class _D1>
3016inline _LIBCPP_INLINE_VISIBILITY
3017bool
3018operator!=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3019{
3020 return static_cast<bool>(__x);
3021}
3022
3023template <class _T1, class _D1>
3024inline _LIBCPP_INLINE_VISIBILITY
3025bool
3026operator<(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3027{
3028 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3029 return less<_P1>()(__x.get(), nullptr);
3030}
3031
3032template <class _T1, class _D1>
3033inline _LIBCPP_INLINE_VISIBILITY
3034bool
3035operator<(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3036{
3037 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3038 return less<_P1>()(nullptr, __x.get());
3039}
3040
3041template <class _T1, class _D1>
3042inline _LIBCPP_INLINE_VISIBILITY
3043bool
3044operator>(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3045{
3046 return nullptr < __x;
3047}
3048
3049template <class _T1, class _D1>
3050inline _LIBCPP_INLINE_VISIBILITY
3051bool
3052operator>(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3053{
3054 return __x < nullptr;
3055}
3056
3057template <class _T1, class _D1>
3058inline _LIBCPP_INLINE_VISIBILITY
3059bool
3060operator<=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3061{
3062 return !(nullptr < __x);
3063}
3064
3065template <class _T1, class _D1>
3066inline _LIBCPP_INLINE_VISIBILITY
3067bool
3068operator<=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3069{
3070 return !(__x < nullptr);
3071}
3072
3073template <class _T1, class _D1>
3074inline _LIBCPP_INLINE_VISIBILITY
3075bool
3076operator>=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3077{
3078 return !(__x < nullptr);
3079}
3080
3081template <class _T1, class _D1>
3082inline _LIBCPP_INLINE_VISIBILITY
3083bool
3084operator>=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3085{
3086 return !(nullptr < __x);
3087}
3088
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00003089template <class _Tp> struct hash;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003090
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003091// We use murmur2 when size_t is 32 bits, and cityhash64 when size_t
3092// is 64 bits. This is because cityhash64 uses 64bit x 64bit
3093// multiplication, which can be very slow on 32-bit systems.
Howard Hinnant40c13d32011-12-05 00:08:45 +00003094template <class _Size, size_t = sizeof(_Size)*__CHAR_BIT__>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003095struct __murmur2_or_cityhash;
Howard Hinnant40c13d32011-12-05 00:08:45 +00003096
3097template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003098struct __murmur2_or_cityhash<_Size, 32>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003099{
3100 _Size operator()(const void* __key, _Size __len);
3101};
3102
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003103// murmur2
Howard Hinnant40c13d32011-12-05 00:08:45 +00003104template <class _Size>
3105_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003106__murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003107{
3108 const _Size __m = 0x5bd1e995;
3109 const _Size __r = 24;
3110 _Size __h = __len;
3111 const unsigned char* __data = static_cast<const unsigned char*>(__key);
3112 for (; __len >= 4; __data += 4, __len -= 4)
3113 {
3114 _Size __k = *(const _Size*)__data;
3115 __k *= __m;
3116 __k ^= __k >> __r;
3117 __k *= __m;
3118 __h *= __m;
3119 __h ^= __k;
3120 }
3121 switch (__len)
3122 {
3123 case 3:
3124 __h ^= __data[2] << 16;
3125 case 2:
3126 __h ^= __data[1] << 8;
3127 case 1:
3128 __h ^= __data[0];
3129 __h *= __m;
3130 }
3131 __h ^= __h >> 13;
3132 __h *= __m;
3133 __h ^= __h >> 15;
3134 return __h;
3135}
3136
3137template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003138struct __murmur2_or_cityhash<_Size, 64>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003139{
3140 _Size operator()(const void* __key, _Size __len);
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003141
3142 private:
3143 // Some primes between 2^63 and 2^64.
3144 static const _Size __k0 = 0xc3a5c85c97cb3127ULL;
3145 static const _Size __k1 = 0xb492b66fbe98f273ULL;
3146 static const _Size __k2 = 0x9ae16a3b2f90404fULL;
3147 static const _Size __k3 = 0xc949d7c7509e6557ULL;
3148
3149 static _Size __rotate(_Size __val, int __shift) {
3150 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift)));
3151 }
3152
3153 static _Size __rotate_by_at_least_1(_Size __val, int __shift) {
3154 return (__val >> __shift) | (__val << (64 - __shift));
3155 }
3156
3157 static _Size __shift_mix(_Size __val) {
3158 return __val ^ (__val >> 47);
3159 }
3160
3161 static _Size __hash_len_16(_Size __u, _Size __v) {
3162 const _Size __mul = 0x9ddfea08eb382d69ULL;
3163 _Size __a = (__u ^ __v) * __mul;
3164 __a ^= (__a >> 47);
3165 _Size __b = (__v ^ __a) * __mul;
3166 __b ^= (__b >> 47);
3167 __b *= __mul;
3168 return __b;
3169 }
3170
3171 static _Size __hash_len_0_to_16(const char* __s, _Size __len) {
3172 if (__len > 8) {
3173 const _Size __a = *(const _Size*)__s;
3174 const _Size __b = *(const _Size*)(__s + __len - 8);
3175 return __hash_len_16(__a, __rotate_by_at_least_1(__b + __len, __len)) ^ __b;
3176 }
3177 if (__len >= 4) {
3178 const uint32_t __a = *(const uint32_t*)(__s);
3179 const uint32_t __b = *(const uint32_t*)(__s + __len - 4);
3180 return __hash_len_16(__len + (__a << 3), __b);
3181 }
3182 if (__len > 0) {
3183 const unsigned char __a = __s[0];
3184 const unsigned char __b = __s[__len >> 1];
3185 const unsigned char __c = __s[__len - 1];
3186 const uint32_t __y = static_cast<uint32_t>(__a) +
3187 (static_cast<uint32_t>(__b) << 8);
3188 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
3189 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
3190 }
3191 return __k2;
3192 }
3193
3194 static _Size __hash_len_17_to_32(const char *__s, _Size __len) {
3195 const _Size __a = *(const _Size*)(__s) * __k1;
3196 const _Size __b = *(const _Size*)(__s + 8);
3197 const _Size __c = *(const _Size*)(__s + __len - 8) * __k2;
3198 const _Size __d = *(const _Size*)(__s + __len - 16) * __k0;
3199 return __hash_len_16(__rotate(__a - __b, 43) + __rotate(__c, 30) + __d,
3200 __a + __rotate(__b ^ __k3, 20) - __c + __len);
3201 }
3202
3203 // Return a 16-byte hash for 48 bytes. Quick and dirty.
3204 // Callers do best to use "random-looking" values for a and b.
3205 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3206 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) {
3207 __a += __w;
3208 __b = __rotate(__b + __a + __z, 21);
3209 const _Size __c = __a;
3210 __a += __x;
3211 __a += __y;
3212 __b += __rotate(__a, 44);
3213 return pair<_Size, _Size>(__a + __z, __b + __c);
3214 }
3215
3216 // Return a 16-byte hash for s[0] ... s[31], a, and b. Quick and dirty.
3217 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3218 const char* __s, _Size __a, _Size __b) {
3219 return __weak_hash_len_32_with_seeds(*(const _Size*)(__s),
3220 *(const _Size*)(__s + 8),
3221 *(const _Size*)(__s + 16),
3222 *(const _Size*)(__s + 24),
3223 __a,
3224 __b);
3225 }
3226
3227 // Return an 8-byte hash for 33 to 64 bytes.
3228 static _Size __hash_len_33_to_64(const char *__s, size_t __len) {
3229 _Size __z = *(const _Size*)(__s + 24);
3230 _Size __a = *(const _Size*)(__s) +
3231 (__len + *(const _Size*)(__s + __len - 16)) * __k0;
3232 _Size __b = __rotate(__a + __z, 52);
3233 _Size __c = __rotate(__a, 37);
3234 __a += *(const _Size*)(__s + 8);
3235 __c += __rotate(__a, 7);
3236 __a += *(const _Size*)(__s + 16);
3237 _Size __vf = __a + __z;
3238 _Size __vs = __b + __rotate(__a, 31) + __c;
3239 __a = *(const _Size*)(__s + 16) + *(const _Size*)(__s + __len - 32);
3240 __z += *(const _Size*)(__s + __len - 8);
3241 __b = __rotate(__a + __z, 52);
3242 __c = __rotate(__a, 37);
3243 __a += *(const _Size*)(__s + __len - 24);
3244 __c += __rotate(__a, 7);
3245 __a += *(const _Size*)(__s + __len - 16);
3246 _Size __wf = __a + __z;
3247 _Size __ws = __b + __rotate(__a, 31) + __c;
3248 _Size __r = __shift_mix((__vf + __ws) * __k2 + (__wf + __vs) * __k0);
3249 return __shift_mix(__r * __k0 + __vs) * __k2;
3250 }
Howard Hinnant40c13d32011-12-05 00:08:45 +00003251};
3252
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003253// cityhash64
Howard Hinnant40c13d32011-12-05 00:08:45 +00003254template <class _Size>
3255_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003256__murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003257{
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003258 const char* __s = static_cast<const char*>(__key);
3259 if (__len <= 32) {
3260 if (__len <= 16) {
3261 return __hash_len_0_to_16(__s, __len);
3262 } else {
3263 return __hash_len_17_to_32(__s, __len);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003264 }
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003265 } else if (__len <= 64) {
3266 return __hash_len_33_to_64(__s, __len);
3267 }
3268
3269 // For strings over 64 bytes we hash the end first, and then as we
3270 // loop we keep 56 bytes of state: v, w, x, y, and z.
3271 _Size __x = *(const _Size*)(__s + __len - 40);
3272 _Size __y = *(const _Size*)(__s + __len - 16) +
3273 *(const _Size*)(__s + __len - 56);
3274 _Size __z = __hash_len_16(*(const _Size*)(__s + __len - 48) + __len,
3275 *(const _Size*)(__s + __len - 24));
3276 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z);
3277 pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x);
3278 __x = __x * __k1 + *(const _Size*)(__s);
3279
3280 // Decrease len to the nearest multiple of 64, and operate on 64-byte chunks.
3281 __len = (__len - 1) & ~static_cast<_Size>(63);
3282 do {
3283 __x = __rotate(__x + __y + __v.first + *(const _Size*)(__s + 8), 37) * __k1;
3284 __y = __rotate(__y + __v.second + *(const _Size*)(__s + 48), 42) * __k1;
3285 __x ^= __w.second;
3286 __y += __v.first + *(const _Size*)(__s + 40);
3287 __z = __rotate(__z + __w.first, 33) * __k1;
3288 __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first);
3289 __w = __weak_hash_len_32_with_seeds(__s + 32, __z + __w.second,
3290 __y + *(const _Size*)(__s + 16));
3291 std::swap(__z, __x);
3292 __s += 64;
3293 __len -= 64;
3294 } while (__len != 0);
3295 return __hash_len_16(
3296 __hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z,
3297 __hash_len_16(__v.second, __w.second) + __x);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003298}
3299
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003300template <class _Tp, size_t = sizeof(_Tp) / sizeof(size_t)>
3301struct __scalar_hash;
3302
3303template <class _Tp>
3304struct __scalar_hash<_Tp, 0>
3305 : public unary_function<_Tp, size_t>
Howard Hinnant21aefc32010-06-03 16:42:57 +00003306{
Howard Hinnant82894812010-09-22 16:48:34 +00003307 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003308 size_t operator()(_Tp __v) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003309 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003310 union
3311 {
3312 _Tp __t;
3313 size_t __a;
3314 } __u;
3315 __u.__a = 0;
3316 __u.__t = __v;
3317 return __u.__a;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003318 }
3319};
3320
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003321template <class _Tp>
3322struct __scalar_hash<_Tp, 1>
3323 : public unary_function<_Tp, size_t>
3324{
3325 _LIBCPP_INLINE_VISIBILITY
3326 size_t operator()(_Tp __v) const _NOEXCEPT
3327 {
3328 union
3329 {
3330 _Tp __t;
3331 size_t __a;
3332 } __u;
3333 __u.__t = __v;
3334 return __u.__a;
3335 }
3336};
3337
3338template <class _Tp>
3339struct __scalar_hash<_Tp, 2>
3340 : public unary_function<_Tp, size_t>
3341{
3342 _LIBCPP_INLINE_VISIBILITY
3343 size_t operator()(_Tp __v) const _NOEXCEPT
3344 {
3345 union
3346 {
3347 _Tp __t;
3348 struct
3349 {
3350 size_t __a;
3351 size_t __b;
3352 };
3353 } __u;
3354 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003355 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003356 }
3357};
3358
3359template <class _Tp>
3360struct __scalar_hash<_Tp, 3>
3361 : public unary_function<_Tp, size_t>
3362{
3363 _LIBCPP_INLINE_VISIBILITY
3364 size_t operator()(_Tp __v) const _NOEXCEPT
3365 {
3366 union
3367 {
3368 _Tp __t;
3369 struct
3370 {
3371 size_t __a;
3372 size_t __b;
3373 size_t __c;
3374 };
3375 } __u;
3376 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003377 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003378 }
3379};
3380
3381template <class _Tp>
3382struct __scalar_hash<_Tp, 4>
3383 : public unary_function<_Tp, size_t>
3384{
3385 _LIBCPP_INLINE_VISIBILITY
3386 size_t operator()(_Tp __v) const _NOEXCEPT
3387 {
3388 union
3389 {
3390 _Tp __t;
3391 struct
3392 {
3393 size_t __a;
3394 size_t __b;
3395 size_t __c;
3396 size_t __d;
3397 };
3398 } __u;
3399 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003400 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003401 }
3402};
3403
3404template<class _Tp>
3405struct _LIBCPP_VISIBLE hash<_Tp*>
3406 : public __scalar_hash<_Tp*>
3407{
3408};
3409
Howard Hinnant21aefc32010-06-03 16:42:57 +00003410template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003411struct _LIBCPP_VISIBLE hash<unique_ptr<_Tp, _Dp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00003412{
3413 typedef unique_ptr<_Tp, _Dp> argument_type;
3414 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00003415 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003416 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003417 {
3418 typedef typename argument_type::pointer pointer;
3419 return hash<pointer>()(__ptr.get());
3420 }
3421};
3422
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003423struct __destruct_n
3424{
3425private:
3426 size_t size;
3427
3428 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003429 _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003430 {for (size_t __i = 0; __i < size; ++__i, ++__p) __p->~_Tp();}
3431
3432 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003433 _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003434 {}
3435
Howard Hinnant1694d232011-05-28 14:41:13 +00003436 _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003437 {++size;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003438 _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003439 {}
3440
Howard Hinnant1694d232011-05-28 14:41:13 +00003441 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003442 {size = __s;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003443 _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003444 {}
3445public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003446 _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT
3447 : size(__s) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003448
3449 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003450 _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003451 {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003452
3453 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003454 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003455 {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003456
3457 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003458 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003459 {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003460};
3461
3462template <class _Alloc>
3463class __allocator_destructor
3464{
3465 typedef allocator_traits<_Alloc> __alloc_traits;
3466public:
3467 typedef typename __alloc_traits::pointer pointer;
3468 typedef typename __alloc_traits::size_type size_type;
3469private:
3470 _Alloc& __alloc_;
3471 size_type __s_;
3472public:
3473 _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s)
Howard Hinnant1694d232011-05-28 14:41:13 +00003474 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003475 : __alloc_(__a), __s_(__s) {}
Howard Hinnant82894812010-09-22 16:48:34 +00003476 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003477 void operator()(pointer __p) _NOEXCEPT
3478 {__alloc_traits::deallocate(__alloc_, __p, __s_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003479};
3480
3481template <class _InputIterator, class _ForwardIterator>
3482_ForwardIterator
3483uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r)
3484{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003485 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003486#ifndef _LIBCPP_NO_EXCEPTIONS
3487 _ForwardIterator __s = __r;
3488 try
3489 {
3490#endif
3491 for (; __f != __l; ++__f, ++__r)
3492 ::new(&*__r) value_type(*__f);
3493#ifndef _LIBCPP_NO_EXCEPTIONS
3494 }
3495 catch (...)
3496 {
3497 for (; __s != __r; ++__s)
3498 __s->~value_type();
3499 throw;
3500 }
3501#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003502 return __r;
3503}
3504
3505template <class _InputIterator, class _Size, class _ForwardIterator>
3506_ForwardIterator
3507uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r)
3508{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003509 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003510#ifndef _LIBCPP_NO_EXCEPTIONS
3511 _ForwardIterator __s = __r;
3512 try
3513 {
3514#endif
3515 for (; __n > 0; ++__f, ++__r, --__n)
3516 ::new(&*__r) value_type(*__f);
3517#ifndef _LIBCPP_NO_EXCEPTIONS
3518 }
3519 catch (...)
3520 {
3521 for (; __s != __r; ++__s)
3522 __s->~value_type();
3523 throw;
3524 }
3525#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003526 return __r;
3527}
3528
3529template <class _ForwardIterator, class _Tp>
3530void
3531uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x)
3532{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003533 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003534#ifndef _LIBCPP_NO_EXCEPTIONS
3535 _ForwardIterator __s = __f;
3536 try
3537 {
3538#endif
3539 for (; __f != __l; ++__f)
3540 ::new(&*__f) value_type(__x);
3541#ifndef _LIBCPP_NO_EXCEPTIONS
3542 }
3543 catch (...)
3544 {
3545 for (; __s != __f; ++__s)
3546 __s->~value_type();
3547 throw;
3548 }
3549#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003550}
3551
3552template <class _ForwardIterator, class _Size, class _Tp>
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003553_ForwardIterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003554uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x)
3555{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003556 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003557#ifndef _LIBCPP_NO_EXCEPTIONS
3558 _ForwardIterator __s = __f;
3559 try
3560 {
3561#endif
3562 for (; __n > 0; ++__f, --__n)
3563 ::new(&*__f) value_type(__x);
3564#ifndef _LIBCPP_NO_EXCEPTIONS
3565 }
3566 catch (...)
3567 {
3568 for (; __s != __f; ++__s)
3569 __s->~value_type();
3570 throw;
3571 }
3572#endif
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003573 return __f;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003574}
3575
Howard Hinnant82894812010-09-22 16:48:34 +00003576class _LIBCPP_EXCEPTION_ABI bad_weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003577 : public std::exception
3578{
3579public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003580 virtual ~bad_weak_ptr() _NOEXCEPT;
3581 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003582};
3583
3584template<class _Tp> class weak_ptr;
3585
3586class __shared_count
3587{
3588 __shared_count(const __shared_count&);
3589 __shared_count& operator=(const __shared_count&);
3590
3591protected:
3592 long __shared_owners_;
3593 virtual ~__shared_count();
3594private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003595 virtual void __on_zero_shared() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003596
3597public:
Howard Hinnant82894812010-09-22 16:48:34 +00003598 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003599 explicit __shared_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003600 : __shared_owners_(__refs) {}
3601
Howard Hinnant1694d232011-05-28 14:41:13 +00003602 void __add_shared() _NOEXCEPT;
3603 bool __release_shared() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003604 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003605 long use_count() const _NOEXCEPT {return __shared_owners_ + 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003606};
3607
3608class __shared_weak_count
3609 : private __shared_count
3610{
3611 long __shared_weak_owners_;
3612
3613public:
Howard Hinnant82894812010-09-22 16:48:34 +00003614 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003615 explicit __shared_weak_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003616 : __shared_count(__refs),
3617 __shared_weak_owners_(__refs) {}
3618protected:
3619 virtual ~__shared_weak_count();
3620
3621public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003622 void __add_shared() _NOEXCEPT;
3623 void __add_weak() _NOEXCEPT;
3624 void __release_shared() _NOEXCEPT;
3625 void __release_weak() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003626 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003627 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
3628 __shared_weak_count* lock() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003629
Howard Hinnant1694d232011-05-28 14:41:13 +00003630 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003631private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003632 virtual void __on_zero_shared_weak() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003633};
3634
3635template <class _Tp, class _Dp, class _Alloc>
3636class __shared_ptr_pointer
3637 : public __shared_weak_count
3638{
3639 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_;
3640public:
Howard Hinnant82894812010-09-22 16:48:34 +00003641 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003642 __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003643 : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003644
Howard Hinnantd4444702010-08-11 17:04:31 +00003645#ifndef _LIBCPP_NO_RTTI
Howard Hinnant1694d232011-05-28 14:41:13 +00003646 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantd4444702010-08-11 17:04:31 +00003647#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003648
3649private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003650 virtual void __on_zero_shared() _NOEXCEPT;
3651 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003652};
3653
Howard Hinnantd4444702010-08-11 17:04:31 +00003654#ifndef _LIBCPP_NO_RTTI
3655
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003656template <class _Tp, class _Dp, class _Alloc>
3657const void*
Howard Hinnant1694d232011-05-28 14:41:13 +00003658__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003659{
3660 return __t == typeid(_Dp) ? &__data_.first().second() : 0;
3661}
3662
Howard Hinnant324bb032010-08-22 00:02:43 +00003663#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00003664
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003665template <class _Tp, class _Dp, class _Alloc>
3666void
Howard Hinnant1694d232011-05-28 14:41:13 +00003667__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003668{
3669 __data_.first().second()(__data_.first().first());
3670 __data_.first().second().~_Dp();
3671}
3672
3673template <class _Tp, class _Dp, class _Alloc>
3674void
Howard Hinnant1694d232011-05-28 14:41:13 +00003675__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003676{
3677 typename _Alloc::template rebind<__shared_ptr_pointer>::other __a(__data_.second());
3678 __data_.second().~_Alloc();
3679 __a.deallocate(this, 1);
3680}
3681
3682template <class _Tp, class _Alloc>
3683class __shared_ptr_emplace
3684 : public __shared_weak_count
3685{
3686 __compressed_pair<_Alloc, _Tp> __data_;
3687public:
3688#ifndef _LIBCPP_HAS_NO_VARIADICS
3689
Howard Hinnant82894812010-09-22 16:48:34 +00003690 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003691 __shared_ptr_emplace(_Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003692 : __data_(_VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003693
3694 template <class ..._Args>
Howard Hinnant82894812010-09-22 16:48:34 +00003695 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003696 __shared_ptr_emplace(_Alloc __a, _Args&& ...__args)
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00003697 : __data_(piecewise_construct, _VSTD::forward_as_tuple(__a),
3698 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003699
3700#else // _LIBCPP_HAS_NO_VARIADICS
3701
Howard Hinnant82894812010-09-22 16:48:34 +00003702 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003703 __shared_ptr_emplace(_Alloc __a)
3704 : __data_(__a) {}
3705
3706 template <class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00003707 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003708 __shared_ptr_emplace(_Alloc __a, _A0& __a0)
3709 : __data_(__a, _Tp(__a0)) {}
3710
3711 template <class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00003712 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003713 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3714 : __data_(__a, _Tp(__a0, __a1)) {}
3715
3716 template <class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00003717 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003718 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3719 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3720
3721#endif // _LIBCPP_HAS_NO_VARIADICS
3722
3723private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003724 virtual void __on_zero_shared() _NOEXCEPT;
3725 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003726public:
Howard Hinnant82894812010-09-22 16:48:34 +00003727 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003728 _Tp* get() _NOEXCEPT {return &__data_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003729};
3730
3731template <class _Tp, class _Alloc>
3732void
Howard Hinnant1694d232011-05-28 14:41:13 +00003733__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003734{
3735 __data_.second().~_Tp();
3736}
3737
3738template <class _Tp, class _Alloc>
3739void
Howard Hinnant1694d232011-05-28 14:41:13 +00003740__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003741{
3742 typename _Alloc::template rebind<__shared_ptr_emplace>::other __a(__data_.first());
3743 __data_.first().~_Alloc();
3744 __a.deallocate(this, 1);
3745}
3746
3747template<class _Tp> class enable_shared_from_this;
3748
3749template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00003750class _LIBCPP_VISIBLE shared_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003751{
Howard Hinnant324bb032010-08-22 00:02:43 +00003752public:
3753 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003754private:
3755 element_type* __ptr_;
3756 __shared_weak_count* __cntrl_;
3757
3758 struct __nat {int __for_bool_;};
3759public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003760 shared_ptr() _NOEXCEPT;
3761 shared_ptr(nullptr_t) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003762 template<class _Yp,
3763 class = typename enable_if
3764 <
3765 is_convertible<_Yp*, element_type*>::value
3766 >::type
3767 >
3768 explicit shared_ptr(_Yp* __p);
3769 template<class _Yp, class _Dp,
3770 class = typename enable_if
3771 <
3772 is_convertible<_Yp*, element_type*>::value
3773 >::type
3774 >
3775 shared_ptr(_Yp* __p, _Dp __d);
3776 template<class _Yp, class _Dp, class _Alloc,
3777 class = typename enable_if
3778 <
3779 is_convertible<_Yp*, element_type*>::value
3780 >::type
3781 >
3782 shared_ptr(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003783 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
3784 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
Howard Hinnant1694d232011-05-28 14:41:13 +00003785 template<class _Yp> shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT;
3786 shared_ptr(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003787 template<class _Yp>
3788 shared_ptr(const shared_ptr<_Yp>& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003789 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3790 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003791#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003792 shared_ptr(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003793 template<class _Yp> shared_ptr(shared_ptr<_Yp>&& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003794 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3795 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003796#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003797 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r,
Howard Hinnant324bb032010-08-22 00:02:43 +00003798 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type= __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003799#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003800 template<class _Yp,
3801 class = typename enable_if
3802 <
3803 is_convertible<_Yp*, element_type*>::value
3804 >::type
3805 >
3806 shared_ptr(auto_ptr<_Yp>&& __r);
Howard Hinnant324bb032010-08-22 00:02:43 +00003807#else
Howard Hinnant57199402012-01-02 17:56:02 +00003808 template<class _Yp,
3809 class = typename enable_if
3810 <
3811 is_convertible<_Yp*, element_type*>::value
3812 >::type
3813 >
3814 shared_ptr(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003815#endif
Howard Hinnant73d21a42010-09-04 23:28:19 +00003816#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003817 template <class _Yp, class _Dp,
3818 class = typename enable_if
3819 <
3820 !is_array<_Yp>::value &&
3821 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3822 >::type
3823 >
3824 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003825 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003826 template <class _Yp, class _Dp,
3827 class = typename enable_if
3828 <
3829 !is_array<_Yp>::value &&
3830 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3831 >::type
3832 >
3833 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003834 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003835#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003836 template <class _Yp, class _Dp,
3837 class = typename enable_if
3838 <
3839 !is_array<_Yp>::value &&
3840 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3841 >::type
3842 > shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003843 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003844 template <class _Yp, class _Dp,
3845 class = typename enable_if
3846 <
3847 !is_array<_Yp>::value &&
3848 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3849 >::type
3850 >
3851 shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003852 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003853#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003854
3855 ~shared_ptr();
3856
Howard Hinnant1694d232011-05-28 14:41:13 +00003857 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003858 template<class _Yp>
3859 typename enable_if
3860 <
3861 is_convertible<_Yp*, element_type*>::value,
3862 shared_ptr&
3863 >::type
3864 operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003865#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003866 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003867 template<class _Yp>
3868 typename enable_if
3869 <
3870 is_convertible<_Yp*, element_type*>::value,
3871 shared_ptr<_Tp>&
3872 >::type
3873 operator=(shared_ptr<_Yp>&& __r);
3874 template<class _Yp>
3875 typename enable_if
3876 <
3877 !is_array<_Yp>::value &&
3878 is_convertible<_Yp*, element_type*>::value,
3879 shared_ptr&
3880 >::type
3881 operator=(auto_ptr<_Yp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003882#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003883 template<class _Yp>
3884 typename enable_if
3885 <
3886 !is_array<_Yp>::value &&
3887 is_convertible<_Yp*, element_type*>::value,
3888 shared_ptr&
3889 >::type
3890 operator=(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003891#endif
Howard Hinnant57199402012-01-02 17:56:02 +00003892 template <class _Yp, class _Dp>
3893 typename enable_if
3894 <
3895 !is_array<_Yp>::value &&
3896 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3897 shared_ptr&
3898 >::type
Howard Hinnant73d21a42010-09-04 23:28:19 +00003899#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003900 operator=(unique_ptr<_Yp, _Dp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003901#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003902 operator=(unique_ptr<_Yp, _Dp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003903#endif
3904
Howard Hinnant1694d232011-05-28 14:41:13 +00003905 void swap(shared_ptr& __r) _NOEXCEPT;
3906 void reset() _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003907 template<class _Yp>
3908 typename enable_if
3909 <
3910 is_convertible<_Yp*, element_type*>::value,
3911 void
3912 >::type
3913 reset(_Yp* __p);
3914 template<class _Yp, class _Dp>
3915 typename enable_if
3916 <
3917 is_convertible<_Yp*, element_type*>::value,
3918 void
3919 >::type
3920 reset(_Yp* __p, _Dp __d);
3921 template<class _Yp, class _Dp, class _Alloc>
3922 typename enable_if
3923 <
3924 is_convertible<_Yp*, element_type*>::value,
3925 void
3926 >::type
3927 reset(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003928
Howard Hinnant82894812010-09-22 16:48:34 +00003929 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003930 element_type* get() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003931 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003932 typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT
3933 {return *__ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003934 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003935 element_type* operator->() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003936 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003937 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00003938 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003939 bool unique() const _NOEXCEPT {return use_count() == 1;}
Howard Hinnant82894812010-09-22 16:48:34 +00003940 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +00003941 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return get() != 0;}
Howard Hinnant99968442011-11-29 18:15:50 +00003942 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003943 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003944 bool owner_before(shared_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003945 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant99968442011-11-29 18:15:50 +00003946 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003947 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003948 bool owner_before(weak_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003949 {return __cntrl_ < __p.__cntrl_;}
3950
Howard Hinnantd4444702010-08-11 17:04:31 +00003951#ifndef _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003952 template <class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003953 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003954 _Dp* __get_deleter() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003955 {return (_Dp*)(__cntrl_ ? __cntrl_->__get_deleter(typeid(_Dp)) : 0);}
Howard Hinnant324bb032010-08-22 00:02:43 +00003956#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003957
3958#ifndef _LIBCPP_HAS_NO_VARIADICS
3959
3960 template<class ..._Args>
3961 static
3962 shared_ptr<_Tp>
3963 make_shared(_Args&& ...__args);
3964
3965 template<class _Alloc, class ..._Args>
3966 static
3967 shared_ptr<_Tp>
3968 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3969
3970#else // _LIBCPP_HAS_NO_VARIADICS
3971
3972 static shared_ptr<_Tp> make_shared();
3973
3974 template<class _A0>
3975 static shared_ptr<_Tp> make_shared(_A0&);
3976
3977 template<class _A0, class _A1>
3978 static shared_ptr<_Tp> make_shared(_A0&, _A1&);
3979
3980 template<class _A0, class _A1, class _A2>
3981 static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&);
3982
3983 template<class _Alloc>
3984 static shared_ptr<_Tp>
3985 allocate_shared(const _Alloc& __a);
3986
3987 template<class _Alloc, class _A0>
3988 static shared_ptr<_Tp>
3989 allocate_shared(const _Alloc& __a, _A0& __a0);
3990
3991 template<class _Alloc, class _A0, class _A1>
3992 static shared_ptr<_Tp>
3993 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
3994
3995 template<class _Alloc, class _A0, class _A1, class _A2>
3996 static shared_ptr<_Tp>
3997 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
3998
3999#endif // _LIBCPP_HAS_NO_VARIADICS
4000
4001private:
4002
4003 template <class _Yp>
Howard Hinnant82894812010-09-22 16:48:34 +00004004 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004005 void
Howard Hinnant1694d232011-05-28 14:41:13 +00004006 __enable_weak_this(const enable_shared_from_this<_Yp>* __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004007 {
4008 if (__e)
4009 __e->__weak_this_ = *this;
4010 }
4011
Howard Hinnant82894812010-09-22 16:48:34 +00004012 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004013 void __enable_weak_this(const void*) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004014
Howard Hinnant82894812010-09-22 16:48:34 +00004015 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
4016 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004017};
4018
4019template<class _Tp>
4020inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004021shared_ptr<_Tp>::shared_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004022 : __ptr_(0),
4023 __cntrl_(0)
4024{
4025}
4026
4027template<class _Tp>
4028inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004029shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004030 : __ptr_(0),
4031 __cntrl_(0)
4032{
4033}
4034
4035template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004036template<class _Yp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004037shared_ptr<_Tp>::shared_ptr(_Yp* __p)
4038 : __ptr_(__p)
4039{
4040 unique_ptr<_Yp> __hold(__p);
4041 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4042 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>());
4043 __hold.release();
4044 __enable_weak_this(__p);
4045}
4046
4047template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004048template<class _Yp, class _Dp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004049shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d)
4050 : __ptr_(__p)
4051{
4052#ifndef _LIBCPP_NO_EXCEPTIONS
4053 try
4054 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004055#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004056 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4057 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>());
4058 __enable_weak_this(__p);
4059#ifndef _LIBCPP_NO_EXCEPTIONS
4060 }
4061 catch (...)
4062 {
4063 __d(__p);
4064 throw;
4065 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004066#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004067}
4068
4069template<class _Tp>
4070template<class _Dp>
4071shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
4072 : __ptr_(0)
4073{
4074#ifndef _LIBCPP_NO_EXCEPTIONS
4075 try
4076 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004077#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004078 typedef __shared_ptr_pointer<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk;
4079 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>());
4080#ifndef _LIBCPP_NO_EXCEPTIONS
4081 }
4082 catch (...)
4083 {
4084 __d(__p);
4085 throw;
4086 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004087#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004088}
4089
4090template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004091template<class _Yp, class _Dp, class _Alloc, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004092shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a)
4093 : __ptr_(__p)
4094{
4095#ifndef _LIBCPP_NO_EXCEPTIONS
4096 try
4097 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004098#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004099 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
4100 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4101 typedef __allocator_destructor<_A2> _D2;
4102 _A2 __a2(__a);
4103 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4104 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4105 __cntrl_ = __hold2.release();
4106 __enable_weak_this(__p);
4107#ifndef _LIBCPP_NO_EXCEPTIONS
4108 }
4109 catch (...)
4110 {
4111 __d(__p);
4112 throw;
4113 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004114#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004115}
4116
4117template<class _Tp>
4118template<class _Dp, class _Alloc>
4119shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
4120 : __ptr_(0)
4121{
4122#ifndef _LIBCPP_NO_EXCEPTIONS
4123 try
4124 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004125#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004126 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
4127 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4128 typedef __allocator_destructor<_A2> _D2;
4129 _A2 __a2(__a);
4130 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4131 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4132 __cntrl_ = __hold2.release();
4133#ifndef _LIBCPP_NO_EXCEPTIONS
4134 }
4135 catch (...)
4136 {
4137 __d(__p);
4138 throw;
4139 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004140#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004141}
4142
4143template<class _Tp>
4144template<class _Yp>
4145inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004146shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004147 : __ptr_(__p),
4148 __cntrl_(__r.__cntrl_)
4149{
4150 if (__cntrl_)
4151 __cntrl_->__add_shared();
4152}
4153
4154template<class _Tp>
4155inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004156shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004157 : __ptr_(__r.__ptr_),
4158 __cntrl_(__r.__cntrl_)
4159{
4160 if (__cntrl_)
4161 __cntrl_->__add_shared();
4162}
4163
4164template<class _Tp>
4165template<class _Yp>
4166inline _LIBCPP_INLINE_VISIBILITY
4167shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r,
4168 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004169 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004170 : __ptr_(__r.__ptr_),
4171 __cntrl_(__r.__cntrl_)
4172{
4173 if (__cntrl_)
4174 __cntrl_->__add_shared();
4175}
4176
Howard Hinnant73d21a42010-09-04 23:28:19 +00004177#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004178
4179template<class _Tp>
4180inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004181shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004182 : __ptr_(__r.__ptr_),
4183 __cntrl_(__r.__cntrl_)
4184{
4185 __r.__ptr_ = 0;
4186 __r.__cntrl_ = 0;
4187}
4188
4189template<class _Tp>
4190template<class _Yp>
4191inline _LIBCPP_INLINE_VISIBILITY
4192shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r,
4193 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004194 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004195 : __ptr_(__r.__ptr_),
4196 __cntrl_(__r.__cntrl_)
4197{
4198 __r.__ptr_ = 0;
4199 __r.__cntrl_ = 0;
4200}
4201
Howard Hinnant73d21a42010-09-04 23:28:19 +00004202#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004203
4204template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004205template<class _Yp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004206#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004207shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r)
4208#else
Howard Hinnant92172b82010-08-21 21:14:53 +00004209shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004210#endif
4211 : __ptr_(__r.get())
4212{
4213 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4214 __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>());
4215 __enable_weak_this(__r.get());
4216 __r.release();
4217}
4218
4219template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004220template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004221#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004222shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4223#else
4224shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4225#endif
4226 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type)
4227 : __ptr_(__r.get())
4228{
4229 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4230 __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), allocator<_Yp>());
4231 __enable_weak_this(__r.get());
4232 __r.release();
4233}
4234
4235template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004236template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004237#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004238shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4239#else
4240shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4241#endif
4242 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type)
4243 : __ptr_(__r.get())
4244{
4245 typedef __shared_ptr_pointer<_Yp*,
4246 reference_wrapper<typename remove_reference<_Dp>::type>,
4247 allocator<_Yp> > _CntrlBlk;
4248 __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), allocator<_Yp>());
4249 __enable_weak_this(__r.get());
4250 __r.release();
4251}
4252
4253#ifndef _LIBCPP_HAS_NO_VARIADICS
4254
4255template<class _Tp>
4256template<class ..._Args>
4257shared_ptr<_Tp>
4258shared_ptr<_Tp>::make_shared(_Args&& ...__args)
4259{
4260 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4261 typedef allocator<_CntrlBlk> _A2;
4262 typedef __allocator_destructor<_A2> _D2;
4263 _A2 __a2;
4264 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004265 ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004266 shared_ptr<_Tp> __r;
4267 __r.__ptr_ = __hold2.get()->get();
4268 __r.__cntrl_ = __hold2.release();
4269 __r.__enable_weak_this(__r.__ptr_);
4270 return __r;
4271}
4272
4273template<class _Tp>
4274template<class _Alloc, class ..._Args>
4275shared_ptr<_Tp>
4276shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
4277{
4278 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4279 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4280 typedef __allocator_destructor<_A2> _D2;
4281 _A2 __a2(__a);
4282 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004283 ::new(__hold2.get()) _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004284 shared_ptr<_Tp> __r;
4285 __r.__ptr_ = __hold2.get()->get();
4286 __r.__cntrl_ = __hold2.release();
4287 __r.__enable_weak_this(__r.__ptr_);
4288 return __r;
4289}
4290
4291#else // _LIBCPP_HAS_NO_VARIADICS
4292
4293template<class _Tp>
4294shared_ptr<_Tp>
4295shared_ptr<_Tp>::make_shared()
4296{
4297 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4298 typedef allocator<_CntrlBlk> _Alloc2;
4299 typedef __allocator_destructor<_Alloc2> _D2;
4300 _Alloc2 __alloc2;
4301 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4302 ::new(__hold2.get()) _CntrlBlk(__alloc2);
4303 shared_ptr<_Tp> __r;
4304 __r.__ptr_ = __hold2.get()->get();
4305 __r.__cntrl_ = __hold2.release();
4306 __r.__enable_weak_this(__r.__ptr_);
4307 return __r;
4308}
4309
4310template<class _Tp>
4311template<class _A0>
4312shared_ptr<_Tp>
4313shared_ptr<_Tp>::make_shared(_A0& __a0)
4314{
4315 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4316 typedef allocator<_CntrlBlk> _Alloc2;
4317 typedef __allocator_destructor<_Alloc2> _D2;
4318 _Alloc2 __alloc2;
4319 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4320 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0);
4321 shared_ptr<_Tp> __r;
4322 __r.__ptr_ = __hold2.get()->get();
4323 __r.__cntrl_ = __hold2.release();
4324 __r.__enable_weak_this(__r.__ptr_);
4325 return __r;
4326}
4327
4328template<class _Tp>
4329template<class _A0, class _A1>
4330shared_ptr<_Tp>
4331shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4332{
4333 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4334 typedef allocator<_CntrlBlk> _Alloc2;
4335 typedef __allocator_destructor<_Alloc2> _D2;
4336 _Alloc2 __alloc2;
4337 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4338 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4339 shared_ptr<_Tp> __r;
4340 __r.__ptr_ = __hold2.get()->get();
4341 __r.__cntrl_ = __hold2.release();
4342 __r.__enable_weak_this(__r.__ptr_);
4343 return __r;
4344}
4345
4346template<class _Tp>
4347template<class _A0, class _A1, class _A2>
4348shared_ptr<_Tp>
4349shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4350{
4351 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4352 typedef allocator<_CntrlBlk> _Alloc2;
4353 typedef __allocator_destructor<_Alloc2> _D2;
4354 _Alloc2 __alloc2;
4355 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4356 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4357 shared_ptr<_Tp> __r;
4358 __r.__ptr_ = __hold2.get()->get();
4359 __r.__cntrl_ = __hold2.release();
4360 __r.__enable_weak_this(__r.__ptr_);
4361 return __r;
4362}
4363
4364template<class _Tp>
4365template<class _Alloc>
4366shared_ptr<_Tp>
4367shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
4368{
4369 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4370 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4371 typedef __allocator_destructor<_Alloc2> _D2;
4372 _Alloc2 __alloc2(__a);
4373 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4374 ::new(__hold2.get()) _CntrlBlk(__a);
4375 shared_ptr<_Tp> __r;
4376 __r.__ptr_ = __hold2.get()->get();
4377 __r.__cntrl_ = __hold2.release();
4378 __r.__enable_weak_this(__r.__ptr_);
4379 return __r;
4380}
4381
4382template<class _Tp>
4383template<class _Alloc, class _A0>
4384shared_ptr<_Tp>
4385shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
4386{
4387 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4388 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4389 typedef __allocator_destructor<_Alloc2> _D2;
4390 _Alloc2 __alloc2(__a);
4391 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4392 ::new(__hold2.get()) _CntrlBlk(__a, __a0);
4393 shared_ptr<_Tp> __r;
4394 __r.__ptr_ = __hold2.get()->get();
4395 __r.__cntrl_ = __hold2.release();
4396 __r.__enable_weak_this(__r.__ptr_);
4397 return __r;
4398}
4399
4400template<class _Tp>
4401template<class _Alloc, class _A0, class _A1>
4402shared_ptr<_Tp>
4403shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4404{
4405 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4406 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4407 typedef __allocator_destructor<_Alloc2> _D2;
4408 _Alloc2 __alloc2(__a);
4409 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4410 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1);
4411 shared_ptr<_Tp> __r;
4412 __r.__ptr_ = __hold2.get()->get();
4413 __r.__cntrl_ = __hold2.release();
4414 __r.__enable_weak_this(__r.__ptr_);
4415 return __r;
4416}
4417
4418template<class _Tp>
4419template<class _Alloc, class _A0, class _A1, class _A2>
4420shared_ptr<_Tp>
4421shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4422{
4423 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4424 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4425 typedef __allocator_destructor<_Alloc2> _D2;
4426 _Alloc2 __alloc2(__a);
4427 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4428 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1, __a2);
4429 shared_ptr<_Tp> __r;
4430 __r.__ptr_ = __hold2.get()->get();
4431 __r.__cntrl_ = __hold2.release();
4432 __r.__enable_weak_this(__r.__ptr_);
4433 return __r;
4434}
4435
4436#endif // _LIBCPP_HAS_NO_VARIADICS
4437
4438template<class _Tp>
4439shared_ptr<_Tp>::~shared_ptr()
4440{
4441 if (__cntrl_)
4442 __cntrl_->__release_shared();
4443}
4444
4445template<class _Tp>
4446inline _LIBCPP_INLINE_VISIBILITY
4447shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004448shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004449{
4450 shared_ptr(__r).swap(*this);
4451 return *this;
4452}
4453
4454template<class _Tp>
4455template<class _Yp>
4456inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004457typename enable_if
4458<
4459 is_convertible<_Yp*, _Tp*>::value,
4460 shared_ptr<_Tp>&
4461>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004462shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004463{
4464 shared_ptr(__r).swap(*this);
4465 return *this;
4466}
4467
Howard Hinnant73d21a42010-09-04 23:28:19 +00004468#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004469
4470template<class _Tp>
4471inline _LIBCPP_INLINE_VISIBILITY
4472shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004473shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004474{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004475 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004476 return *this;
4477}
4478
4479template<class _Tp>
4480template<class _Yp>
4481inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004482typename enable_if
4483<
4484 is_convertible<_Yp*, _Tp*>::value,
4485 shared_ptr<_Tp>&
4486>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004487shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r)
4488{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004489 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004490 return *this;
4491}
4492
4493template<class _Tp>
4494template<class _Yp>
4495inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004496typename enable_if
4497<
4498 !is_array<_Yp>::value &&
4499 is_convertible<_Yp*, _Tp*>::value,
4500 shared_ptr<_Tp>&
4501>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004502shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r)
4503{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004504 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004505 return *this;
4506}
4507
4508template<class _Tp>
4509template <class _Yp, class _Dp>
4510inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004511typename enable_if
4512<
4513 !is_array<_Yp>::value &&
4514 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4515 shared_ptr<_Tp>&
4516>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004517shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r)
4518{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004519 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004520 return *this;
4521}
4522
Howard Hinnant73d21a42010-09-04 23:28:19 +00004523#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004524
4525template<class _Tp>
4526template<class _Yp>
4527inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004528typename enable_if
4529<
4530 !is_array<_Yp>::value &&
4531 is_convertible<_Yp*, _Tp*>::value,
4532 shared_ptr<_Tp>&
4533>::type
Howard Hinnant324bb032010-08-22 00:02:43 +00004534shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004535{
4536 shared_ptr(__r).swap(*this);
4537 return *this;
4538}
4539
4540template<class _Tp>
4541template <class _Yp, class _Dp>
4542inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004543typename enable_if
4544<
4545 !is_array<_Yp>::value &&
4546 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4547 shared_ptr<_Tp>&
4548>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004549shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r)
4550{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004551 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004552 return *this;
4553}
4554
Howard Hinnant73d21a42010-09-04 23:28:19 +00004555#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004556
4557template<class _Tp>
4558inline _LIBCPP_INLINE_VISIBILITY
4559void
Howard Hinnant1694d232011-05-28 14:41:13 +00004560shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004561{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004562 _VSTD::swap(__ptr_, __r.__ptr_);
4563 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004564}
4565
4566template<class _Tp>
4567inline _LIBCPP_INLINE_VISIBILITY
4568void
Howard Hinnant1694d232011-05-28 14:41:13 +00004569shared_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004570{
4571 shared_ptr().swap(*this);
4572}
4573
4574template<class _Tp>
4575template<class _Yp>
4576inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004577typename enable_if
4578<
4579 is_convertible<_Yp*, _Tp*>::value,
4580 void
4581>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004582shared_ptr<_Tp>::reset(_Yp* __p)
4583{
4584 shared_ptr(__p).swap(*this);
4585}
4586
4587template<class _Tp>
4588template<class _Yp, class _Dp>
4589inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004590typename enable_if
4591<
4592 is_convertible<_Yp*, _Tp*>::value,
4593 void
4594>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004595shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d)
4596{
4597 shared_ptr(__p, __d).swap(*this);
4598}
4599
4600template<class _Tp>
4601template<class _Yp, class _Dp, class _Alloc>
4602inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004603typename enable_if
4604<
4605 is_convertible<_Yp*, _Tp*>::value,
4606 void
4607>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004608shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a)
4609{
4610 shared_ptr(__p, __d, __a).swap(*this);
4611}
4612
4613#ifndef _LIBCPP_HAS_NO_VARIADICS
4614
Howard Hinnant324bb032010-08-22 00:02:43 +00004615template<class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004616inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004617typename enable_if
4618<
4619 !is_array<_Tp>::value,
4620 shared_ptr<_Tp>
4621>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004622make_shared(_Args&& ...__args)
4623{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004624 return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004625}
4626
Howard Hinnant324bb032010-08-22 00:02:43 +00004627template<class _Tp, class _Alloc, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004628inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004629typename enable_if
4630<
4631 !is_array<_Tp>::value,
4632 shared_ptr<_Tp>
4633>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004634allocate_shared(const _Alloc& __a, _Args&& ...__args)
4635{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004636 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004637}
4638
4639#else // _LIBCPP_HAS_NO_VARIADICS
4640
4641template<class _Tp>
4642inline _LIBCPP_INLINE_VISIBILITY
4643shared_ptr<_Tp>
4644make_shared()
4645{
4646 return shared_ptr<_Tp>::make_shared();
4647}
4648
4649template<class _Tp, class _A0>
4650inline _LIBCPP_INLINE_VISIBILITY
4651shared_ptr<_Tp>
4652make_shared(_A0& __a0)
4653{
4654 return shared_ptr<_Tp>::make_shared(__a0);
4655}
4656
4657template<class _Tp, class _A0, class _A1>
4658inline _LIBCPP_INLINE_VISIBILITY
4659shared_ptr<_Tp>
4660make_shared(_A0& __a0, _A1& __a1)
4661{
4662 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4663}
4664
Howard Hinnant324bb032010-08-22 00:02:43 +00004665template<class _Tp, class _A0, class _A1, class _A2>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004666inline _LIBCPP_INLINE_VISIBILITY
4667shared_ptr<_Tp>
4668make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4669{
4670 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4671}
4672
4673template<class _Tp, class _Alloc>
4674inline _LIBCPP_INLINE_VISIBILITY
4675shared_ptr<_Tp>
4676allocate_shared(const _Alloc& __a)
4677{
4678 return shared_ptr<_Tp>::allocate_shared(__a);
4679}
4680
4681template<class _Tp, class _Alloc, class _A0>
4682inline _LIBCPP_INLINE_VISIBILITY
4683shared_ptr<_Tp>
4684allocate_shared(const _Alloc& __a, _A0& __a0)
4685{
4686 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
4687}
4688
4689template<class _Tp, class _Alloc, class _A0, class _A1>
4690inline _LIBCPP_INLINE_VISIBILITY
4691shared_ptr<_Tp>
4692allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4693{
4694 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4695}
4696
4697template<class _Tp, class _Alloc, class _A0, class _A1, class _A2>
4698inline _LIBCPP_INLINE_VISIBILITY
4699shared_ptr<_Tp>
4700allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4701{
4702 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
4703}
4704
4705#endif // _LIBCPP_HAS_NO_VARIADICS
4706
4707template<class _Tp, class _Up>
4708inline _LIBCPP_INLINE_VISIBILITY
4709bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004710operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004711{
4712 return __x.get() == __y.get();
4713}
4714
4715template<class _Tp, class _Up>
4716inline _LIBCPP_INLINE_VISIBILITY
4717bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004718operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004719{
4720 return !(__x == __y);
4721}
4722
4723template<class _Tp, class _Up>
4724inline _LIBCPP_INLINE_VISIBILITY
4725bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004726operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004727{
Howard Hinnant3fadda32012-02-21 21:02:58 +00004728 typedef typename common_type<_Tp*, _Up*>::type _V;
4729 return less<_V>()(__x.get(), __y.get());
4730}
4731
4732template<class _Tp, class _Up>
4733inline _LIBCPP_INLINE_VISIBILITY
4734bool
4735operator>(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4736{
4737 return __y < __x;
4738}
4739
4740template<class _Tp, class _Up>
4741inline _LIBCPP_INLINE_VISIBILITY
4742bool
4743operator<=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4744{
4745 return !(__y < __x);
4746}
4747
4748template<class _Tp, class _Up>
4749inline _LIBCPP_INLINE_VISIBILITY
4750bool
4751operator>=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4752{
4753 return !(__x < __y);
4754}
4755
4756template<class _Tp>
4757inline _LIBCPP_INLINE_VISIBILITY
4758bool
4759operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4760{
4761 return !__x;
4762}
4763
4764template<class _Tp>
4765inline _LIBCPP_INLINE_VISIBILITY
4766bool
4767operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4768{
4769 return !__x;
4770}
4771
4772template<class _Tp>
4773inline _LIBCPP_INLINE_VISIBILITY
4774bool
4775operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4776{
4777 return static_cast<bool>(__x);
4778}
4779
4780template<class _Tp>
4781inline _LIBCPP_INLINE_VISIBILITY
4782bool
4783operator!=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4784{
4785 return static_cast<bool>(__x);
4786}
4787
4788template<class _Tp>
4789inline _LIBCPP_INLINE_VISIBILITY
4790bool
4791operator<(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4792{
4793 return less<_Tp*>()(__x.get(), nullptr);
4794}
4795
4796template<class _Tp>
4797inline _LIBCPP_INLINE_VISIBILITY
4798bool
4799operator<(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4800{
4801 return less<_Tp*>()(nullptr, __x.get());
4802}
4803
4804template<class _Tp>
4805inline _LIBCPP_INLINE_VISIBILITY
4806bool
4807operator>(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4808{
4809 return nullptr < __x;
4810}
4811
4812template<class _Tp>
4813inline _LIBCPP_INLINE_VISIBILITY
4814bool
4815operator>(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4816{
4817 return __x < nullptr;
4818}
4819
4820template<class _Tp>
4821inline _LIBCPP_INLINE_VISIBILITY
4822bool
4823operator<=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4824{
4825 return !(nullptr < __x);
4826}
4827
4828template<class _Tp>
4829inline _LIBCPP_INLINE_VISIBILITY
4830bool
4831operator<=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4832{
4833 return !(__x < nullptr);
4834}
4835
4836template<class _Tp>
4837inline _LIBCPP_INLINE_VISIBILITY
4838bool
4839operator>=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4840{
4841 return !(__x < nullptr);
4842}
4843
4844template<class _Tp>
4845inline _LIBCPP_INLINE_VISIBILITY
4846bool
4847operator>=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4848{
4849 return !(nullptr < __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004850}
4851
4852template<class _Tp>
4853inline _LIBCPP_INLINE_VISIBILITY
4854void
Howard Hinnant1694d232011-05-28 14:41:13 +00004855swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004856{
4857 __x.swap(__y);
4858}
4859
4860template<class _Tp, class _Up>
4861inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004862typename enable_if
4863<
4864 !is_array<_Tp>::value && !is_array<_Up>::value,
4865 shared_ptr<_Tp>
4866>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004867static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004868{
4869 return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get()));
4870}
4871
4872template<class _Tp, class _Up>
4873inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004874typename enable_if
4875<
4876 !is_array<_Tp>::value && !is_array<_Up>::value,
4877 shared_ptr<_Tp>
4878>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004879dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004880{
4881 _Tp* __p = dynamic_cast<_Tp*>(__r.get());
4882 return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>();
4883}
4884
4885template<class _Tp, class _Up>
Howard Hinnant57199402012-01-02 17:56:02 +00004886typename enable_if
4887<
4888 is_array<_Tp>::value == is_array<_Up>::value,
4889 shared_ptr<_Tp>
4890>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004891const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004892{
Howard Hinnant57199402012-01-02 17:56:02 +00004893 typedef typename remove_extent<_Tp>::type _RTp;
4894 return shared_ptr<_Tp>(__r, const_cast<_RTp*>(__r.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004895}
4896
Howard Hinnantd4444702010-08-11 17:04:31 +00004897#ifndef _LIBCPP_NO_RTTI
4898
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004899template<class _Dp, class _Tp>
4900inline _LIBCPP_INLINE_VISIBILITY
4901_Dp*
Howard Hinnant1694d232011-05-28 14:41:13 +00004902get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004903{
4904 return __p.template __get_deleter<_Dp>();
4905}
4906
Howard Hinnant324bb032010-08-22 00:02:43 +00004907#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00004908
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004909template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004910class _LIBCPP_VISIBLE weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004911{
Howard Hinnant324bb032010-08-22 00:02:43 +00004912public:
4913 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004914private:
4915 element_type* __ptr_;
4916 __shared_weak_count* __cntrl_;
4917
Howard Hinnant324bb032010-08-22 00:02:43 +00004918public:
Howard Hinnant1694d232011-05-28 14:41:13 +00004919 weak_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004920 template<class _Yp> weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004921 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4922 _NOEXCEPT;
4923 weak_ptr(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004924 template<class _Yp> weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004925 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4926 _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004927
Howard Hinnant57199402012-01-02 17:56:02 +00004928#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4929 weak_ptr(weak_ptr&& __r) _NOEXCEPT;
4930 template<class _Yp> weak_ptr(weak_ptr<_Yp>&& __r,
4931 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4932 _NOEXCEPT;
4933#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00004934 ~weak_ptr();
4935
Howard Hinnant1694d232011-05-28 14:41:13 +00004936 weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00004937 template<class _Yp>
4938 typename enable_if
4939 <
4940 is_convertible<_Yp*, element_type*>::value,
4941 weak_ptr&
4942 >::type
4943 operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT;
4944
4945#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4946
4947 weak_ptr& operator=(weak_ptr&& __r) _NOEXCEPT;
4948 template<class _Yp>
4949 typename enable_if
4950 <
4951 is_convertible<_Yp*, element_type*>::value,
4952 weak_ptr&
4953 >::type
4954 operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT;
4955
4956#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
4957
4958 template<class _Yp>
4959 typename enable_if
4960 <
4961 is_convertible<_Yp*, element_type*>::value,
4962 weak_ptr&
4963 >::type
4964 operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004965
Howard Hinnant1694d232011-05-28 14:41:13 +00004966 void swap(weak_ptr& __r) _NOEXCEPT;
4967 void reset() _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004968
Howard Hinnant82894812010-09-22 16:48:34 +00004969 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004970 long use_count() const _NOEXCEPT
4971 {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00004972 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004973 bool expired() const _NOEXCEPT
4974 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
4975 shared_ptr<_Tp> lock() const _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00004976 template<class _Up>
4977 _LIBCPP_INLINE_VISIBILITY
4978 bool owner_before(const shared_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004979 {return __cntrl_ < __r.__cntrl_;}
Howard Hinnant82894812010-09-22 16:48:34 +00004980 template<class _Up>
4981 _LIBCPP_INLINE_VISIBILITY
4982 bool owner_before(const weak_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004983 {return __cntrl_ < __r.__cntrl_;}
4984
Howard Hinnant82894812010-09-22 16:48:34 +00004985 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
4986 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004987};
4988
4989template<class _Tp>
4990inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004991weak_ptr<_Tp>::weak_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004992 : __ptr_(0),
4993 __cntrl_(0)
4994{
4995}
4996
4997template<class _Tp>
4998inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004999weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005000 : __ptr_(__r.__ptr_),
5001 __cntrl_(__r.__cntrl_)
5002{
5003 if (__cntrl_)
5004 __cntrl_->__add_weak();
5005}
5006
5007template<class _Tp>
5008template<class _Yp>
5009inline _LIBCPP_INLINE_VISIBILITY
5010weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005011 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005012 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005013 : __ptr_(__r.__ptr_),
5014 __cntrl_(__r.__cntrl_)
5015{
5016 if (__cntrl_)
5017 __cntrl_->__add_weak();
5018}
5019
5020template<class _Tp>
5021template<class _Yp>
5022inline _LIBCPP_INLINE_VISIBILITY
5023weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005024 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005025 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005026 : __ptr_(__r.__ptr_),
5027 __cntrl_(__r.__cntrl_)
5028{
5029 if (__cntrl_)
5030 __cntrl_->__add_weak();
5031}
5032
Howard Hinnant57199402012-01-02 17:56:02 +00005033#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5034
5035template<class _Tp>
5036inline _LIBCPP_INLINE_VISIBILITY
5037weak_ptr<_Tp>::weak_ptr(weak_ptr&& __r) _NOEXCEPT
5038 : __ptr_(__r.__ptr_),
5039 __cntrl_(__r.__cntrl_)
5040{
5041 __r.__ptr_ = 0;
5042 __r.__cntrl_ = 0;
5043}
5044
5045template<class _Tp>
5046template<class _Yp>
5047inline _LIBCPP_INLINE_VISIBILITY
5048weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp>&& __r,
5049 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
5050 _NOEXCEPT
5051 : __ptr_(__r.__ptr_),
5052 __cntrl_(__r.__cntrl_)
5053{
5054 __r.__ptr_ = 0;
5055 __r.__cntrl_ = 0;
5056}
5057
5058#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5059
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005060template<class _Tp>
5061weak_ptr<_Tp>::~weak_ptr()
5062{
5063 if (__cntrl_)
5064 __cntrl_->__release_weak();
5065}
5066
5067template<class _Tp>
5068inline _LIBCPP_INLINE_VISIBILITY
5069weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00005070weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005071{
5072 weak_ptr(__r).swap(*this);
5073 return *this;
5074}
5075
5076template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005077template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005078inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005079typename enable_if
5080<
5081 is_convertible<_Yp*, _Tp*>::value,
5082 weak_ptr<_Tp>&
5083>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005084weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005085{
5086 weak_ptr(__r).swap(*this);
5087 return *this;
5088}
5089
Howard Hinnant57199402012-01-02 17:56:02 +00005090#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5091
5092template<class _Tp>
5093inline _LIBCPP_INLINE_VISIBILITY
5094weak_ptr<_Tp>&
5095weak_ptr<_Tp>::operator=(weak_ptr&& __r) _NOEXCEPT
5096{
5097 weak_ptr(_VSTD::move(__r)).swap(*this);
5098 return *this;
5099}
5100
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005101template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005102template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005103inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005104typename enable_if
5105<
5106 is_convertible<_Yp*, _Tp*>::value,
5107 weak_ptr<_Tp>&
5108>::type
5109weak_ptr<_Tp>::operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT
5110{
5111 weak_ptr(_VSTD::move(__r)).swap(*this);
5112 return *this;
5113}
5114
5115#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5116
5117template<class _Tp>
5118template<class _Yp>
5119inline _LIBCPP_INLINE_VISIBILITY
5120typename enable_if
5121<
5122 is_convertible<_Yp*, _Tp*>::value,
5123 weak_ptr<_Tp>&
5124>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005125weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005126{
5127 weak_ptr(__r).swap(*this);
5128 return *this;
5129}
5130
5131template<class _Tp>
5132inline _LIBCPP_INLINE_VISIBILITY
5133void
Howard Hinnant1694d232011-05-28 14:41:13 +00005134weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005135{
Howard Hinnant0949eed2011-06-30 21:18:19 +00005136 _VSTD::swap(__ptr_, __r.__ptr_);
5137 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005138}
5139
5140template<class _Tp>
5141inline _LIBCPP_INLINE_VISIBILITY
5142void
Howard Hinnant1694d232011-05-28 14:41:13 +00005143swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005144{
5145 __x.swap(__y);
5146}
5147
5148template<class _Tp>
5149inline _LIBCPP_INLINE_VISIBILITY
5150void
Howard Hinnant1694d232011-05-28 14:41:13 +00005151weak_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005152{
5153 weak_ptr().swap(*this);
5154}
5155
5156template<class _Tp>
5157template<class _Yp>
5158shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r,
5159 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
5160 : __ptr_(__r.__ptr_),
5161 __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_)
5162{
5163 if (__cntrl_ == 0)
5164#ifndef _LIBCPP_NO_EXCEPTIONS
5165 throw bad_weak_ptr();
5166#else
5167 assert(!"bad_weak_ptr");
5168#endif
5169}
5170
5171template<class _Tp>
5172shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00005173weak_ptr<_Tp>::lock() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005174{
5175 shared_ptr<_Tp> __r;
5176 __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_;
5177 if (__r.__cntrl_)
5178 __r.__ptr_ = __ptr_;
5179 return __r;
5180}
5181
Howard Hinnant324bb032010-08-22 00:02:43 +00005182template <class _Tp> struct owner_less;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005183
5184template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005185struct _LIBCPP_VISIBLE owner_less<shared_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005186 : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool>
Howard Hinnant324bb032010-08-22 00:02:43 +00005187{
5188 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005189 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005190 bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5191 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005192 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005193 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5194 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005195 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005196 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5197 {return __x.owner_before(__y);}
Howard Hinnant324bb032010-08-22 00:02:43 +00005198};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005199
5200template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005201struct _LIBCPP_VISIBLE owner_less<weak_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005202 : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool>
5203{
Howard Hinnant324bb032010-08-22 00:02:43 +00005204 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005205 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005206 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5207 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005208 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005209 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5210 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005211 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005212 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5213 {return __x.owner_before(__y);}
5214};
5215
5216template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005217class _LIBCPP_VISIBLE enable_shared_from_this
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005218{
5219 mutable weak_ptr<_Tp> __weak_this_;
Howard Hinnant324bb032010-08-22 00:02:43 +00005220protected:
Howard Hinnant82894812010-09-22 16:48:34 +00005221 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005222 enable_shared_from_this() _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005223 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005224 enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005225 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005226 enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT
5227 {return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +00005228 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005229 ~enable_shared_from_this() {}
Howard Hinnant324bb032010-08-22 00:02:43 +00005230public:
Howard Hinnant82894812010-09-22 16:48:34 +00005231 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005232 shared_ptr<_Tp> shared_from_this()
5233 {return shared_ptr<_Tp>(__weak_this_);}
Howard Hinnant82894812010-09-22 16:48:34 +00005234 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005235 shared_ptr<_Tp const> shared_from_this() const
5236 {return shared_ptr<const _Tp>(__weak_this_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005237
5238 template <class _Up> friend class shared_ptr;
5239};
5240
Howard Hinnant21aefc32010-06-03 16:42:57 +00005241template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005242struct _LIBCPP_VISIBLE hash<shared_ptr<_Tp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00005243{
5244 typedef shared_ptr<_Tp> argument_type;
5245 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005246 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005247 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00005248 {
5249 return hash<_Tp*>()(__ptr.get());
5250 }
5251};
5252
Howard Hinnant99968442011-11-29 18:15:50 +00005253template<class _CharT, class _Traits, class _Yp>
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005254inline _LIBCPP_INLINE_VISIBILITY
5255basic_ostream<_CharT, _Traits>&
Howard Hinnant99968442011-11-29 18:15:50 +00005256operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p);
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005257
Howard Hinnant324bb032010-08-22 00:02:43 +00005258//enum class
Howard Hinnant82894812010-09-22 16:48:34 +00005259struct _LIBCPP_VISIBLE pointer_safety
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005260{
5261 enum _
5262 {
5263 relaxed,
5264 preferred,
5265 strict
5266 };
5267
5268 _ __v_;
5269
Howard Hinnant82894812010-09-22 16:48:34 +00005270 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005271 pointer_safety(_ __v) : __v_(__v) {}
Howard Hinnant82894812010-09-22 16:48:34 +00005272 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005273 operator int() const {return __v_;}
5274};
5275
5276void declare_reachable(void* __p);
5277void declare_no_pointers(char* __p, size_t __n);
5278void undeclare_no_pointers(char* __p, size_t __n);
Howard Hinnant1694d232011-05-28 14:41:13 +00005279pointer_safety get_pointer_safety() _NOEXCEPT;
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005280void* __undeclare_reachable(void* __p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005281
5282template <class _Tp>
5283inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005284_Tp*
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005285undeclare_reachable(_Tp* __p)
5286{
5287 return static_cast<_Tp*>(__undeclare_reachable(__p));
5288}
5289
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005290void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005291
5292_LIBCPP_END_NAMESPACE_STD
5293
5294#endif // _LIBCPP_MEMORY