blob: 8456a942d1e28c78e219eeb782176c65742eb230 [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 Hinnant87073e42012-05-01 15:37:54 +00001688
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001689 template <class _A0>
1690 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001691 void
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001692 construct(pointer __p, _A0& __a0)
1693 {
1694 ::new((void*)__p) _Tp(__a0);
1695 }
1696 template <class _A0>
1697 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001698 void
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001699 construct(pointer __p, const _A0& __a0)
1700 {
1701 ::new((void*)__p) _Tp(__a0);
1702 }
Michael J. Spencer626916f2010-12-10 19:47:54 +00001703# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001704 template <class _A0, class _A1>
1705 _LIBCPP_INLINE_VISIBILITY
1706 void
1707 construct(pointer __p, _A0& __a0, _A1& __a1)
1708 {
1709 ::new((void*)__p) _Tp(__a0, __a1);
1710 }
1711 template <class _A0, class _A1>
1712 _LIBCPP_INLINE_VISIBILITY
1713 void
1714 construct(pointer __p, const _A0& __a0, _A1& __a1)
1715 {
1716 ::new((void*)__p) _Tp(__a0, __a1);
1717 }
1718 template <class _A0, class _A1>
1719 _LIBCPP_INLINE_VISIBILITY
1720 void
1721 construct(pointer __p, _A0& __a0, const _A1& __a1)
1722 {
1723 ::new((void*)__p) _Tp(__a0, __a1);
1724 }
1725 template <class _A0, class _A1>
1726 _LIBCPP_INLINE_VISIBILITY
1727 void
1728 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1729 {
1730 ::new((void*)__p) _Tp(__a0, __a1);
1731 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00001732#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001733 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1734};
1735
Howard Hinnant57199402012-01-02 17:56:02 +00001736template <class _Tp>
1737class _LIBCPP_VISIBLE allocator<const _Tp>
1738{
1739public:
1740 typedef size_t size_type;
1741 typedef ptrdiff_t difference_type;
1742 typedef const _Tp* pointer;
1743 typedef const _Tp* const_pointer;
1744 typedef const _Tp& reference;
1745 typedef const _Tp& const_reference;
1746 typedef _Tp value_type;
1747
1748 typedef true_type propagate_on_container_move_assignment;
1749
1750 template <class _Up> struct rebind {typedef allocator<_Up> other;};
1751
1752 _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {}
1753 template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {}
1754 _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT
1755 {return _VSTD::addressof(__x);}
1756 _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0)
1757 {return static_cast<pointer>(::operator new(__n * sizeof(_Tp)));}
1758 _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT
1759 {::operator delete((void*)__p);}
1760 _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT
1761 {return size_type(~0) / sizeof(_Tp);}
1762#if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1763 template <class _Up, class... _Args>
1764 _LIBCPP_INLINE_VISIBILITY
1765 void
1766 construct(_Up* __p, _Args&&... __args)
1767 {
1768 ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...);
1769 }
1770#else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1771 _LIBCPP_INLINE_VISIBILITY
1772 void
1773 construct(pointer __p)
1774 {
1775 ::new((void*)__p) _Tp();
1776 }
1777# if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
Howard Hinnant87073e42012-05-01 15:37:54 +00001778
Howard Hinnant57199402012-01-02 17:56:02 +00001779 template <class _A0>
1780 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001781 void
Howard Hinnant57199402012-01-02 17:56:02 +00001782 construct(pointer __p, _A0& __a0)
1783 {
1784 ::new((void*)__p) _Tp(__a0);
1785 }
1786 template <class _A0>
1787 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant87073e42012-05-01 15:37:54 +00001788 void
Howard Hinnant57199402012-01-02 17:56:02 +00001789 construct(pointer __p, const _A0& __a0)
1790 {
1791 ::new((void*)__p) _Tp(__a0);
1792 }
Howard Hinnant57199402012-01-02 17:56:02 +00001793# endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES)
1794 template <class _A0, class _A1>
1795 _LIBCPP_INLINE_VISIBILITY
1796 void
1797 construct(pointer __p, _A0& __a0, _A1& __a1)
1798 {
1799 ::new((void*)__p) _Tp(__a0, __a1);
1800 }
1801 template <class _A0, class _A1>
1802 _LIBCPP_INLINE_VISIBILITY
1803 void
1804 construct(pointer __p, const _A0& __a0, _A1& __a1)
1805 {
1806 ::new((void*)__p) _Tp(__a0, __a1);
1807 }
1808 template <class _A0, class _A1>
1809 _LIBCPP_INLINE_VISIBILITY
1810 void
1811 construct(pointer __p, _A0& __a0, const _A1& __a1)
1812 {
1813 ::new((void*)__p) _Tp(__a0, __a1);
1814 }
1815 template <class _A0, class _A1>
1816 _LIBCPP_INLINE_VISIBILITY
1817 void
1818 construct(pointer __p, const _A0& __a0, const _A1& __a1)
1819 {
1820 ::new((void*)__p) _Tp(__a0, __a1);
1821 }
1822#endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS)
1823 _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();}
1824};
1825
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001826template <class _Tp, class _Up>
1827inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001828bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001829
1830template <class _Tp, class _Up>
1831inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001832bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001833
1834template <class _OutputIterator, class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001835class _LIBCPP_VISIBLE raw_storage_iterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001836 : public iterator<output_iterator_tag,
1837 _Tp, // purposefully not C++03
1838 ptrdiff_t, // purposefully not C++03
1839 _Tp*, // purposefully not C++03
1840 raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03
1841{
1842private:
1843 _OutputIterator __x_;
1844public:
1845 _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {}
1846 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;}
1847 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element)
1848 {::new(&*__x_) _Tp(__element); return *this;}
1849 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;}
1850 _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int)
1851 {raw_storage_iterator __t(*this); ++__x_; return __t;}
1852};
1853
1854template <class _Tp>
1855pair<_Tp*, ptrdiff_t>
Howard Hinnant1694d232011-05-28 14:41:13 +00001856get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001857{
1858 pair<_Tp*, ptrdiff_t> __r(0, 0);
1859 const ptrdiff_t __m = (~ptrdiff_t(0) ^
1860 ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1)))
1861 / sizeof(_Tp);
1862 if (__n > __m)
1863 __n = __m;
1864 while (__n > 0)
1865 {
1866 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow));
1867 if (__r.first)
1868 {
1869 __r.second = __n;
1870 break;
1871 }
1872 __n /= 2;
1873 }
1874 return __r;
1875}
1876
1877template <class _Tp>
1878inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00001879void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001880
1881template <class _Tp>
1882struct auto_ptr_ref
1883{
1884 _Tp* __ptr_;
1885};
1886
1887template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00001888class _LIBCPP_VISIBLE auto_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001889{
1890private:
1891 _Tp* __ptr_;
1892public:
1893 typedef _Tp element_type;
1894
1895 _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {}
1896 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {}
1897 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw()
1898 : __ptr_(__p.release()) {}
1899 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw()
1900 {reset(__p.release()); return *this;}
1901 template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw()
1902 {reset(__p.release()); return *this;}
1903 _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw()
1904 {reset(__p.__ptr_); return *this;}
1905 _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;}
1906
1907 _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw()
1908 {return *__ptr_;}
1909 _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;}
1910 _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;}
1911 _LIBCPP_INLINE_VISIBILITY _Tp* release() throw()
1912 {
1913 _Tp* __t = __ptr_;
1914 __ptr_ = 0;
1915 return __t;
1916 }
1917 _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw()
1918 {
1919 if (__ptr_ != __p)
1920 delete __ptr_;
1921 __ptr_ = __p;
1922 }
1923
1924 _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {}
1925 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw()
1926 {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;}
1927 template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw()
1928 {return auto_ptr<_Up>(release());}
1929};
1930
1931template <>
Howard Hinnant82894812010-09-22 16:48:34 +00001932class _LIBCPP_VISIBLE auto_ptr<void>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001933{
1934public:
1935 typedef void element_type;
1936};
1937
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001938template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type,
1939 typename remove_cv<_T2>::type>::value,
Howard Hinnantd4cf2152011-12-11 20:31:33 +00001940 bool = is_empty<_T1>::value
1941#if __has_feature(is_final)
1942 && !__is_final(_T1)
1943#endif
1944 ,
1945 bool = is_empty<_T2>::value
1946#if __has_feature(is_final)
1947 && !__is_final(_T2)
1948#endif
1949 >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001950struct __libcpp_compressed_pair_switch;
1951
1952template <class _T1, class _T2, bool IsSame>
1953struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};};
1954
1955template <class _T1, class _T2, bool IsSame>
1956struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};};
1957
1958template <class _T1, class _T2, bool IsSame>
1959struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};};
1960
1961template <class _T1, class _T2>
1962struct __libcpp_compressed_pair_switch<_T1, _T2, false, true, true> {enum {value = 3};};
1963
1964template <class _T1, class _T2>
1965struct __libcpp_compressed_pair_switch<_T1, _T2, true, true, true> {enum {value = 1};};
1966
1967template <class _T1, class _T2, unsigned = __libcpp_compressed_pair_switch<_T1, _T2>::value>
1968class __libcpp_compressed_pair_imp;
1969
1970template <class _T1, class _T2>
1971class __libcpp_compressed_pair_imp<_T1, _T2, 0>
1972{
1973private:
1974 _T1 __first_;
1975 _T2 __second_;
1976public:
1977 typedef _T1 _T1_param;
1978 typedef _T2 _T2_param;
1979
1980 typedef typename remove_reference<_T1>::type& _T1_reference;
1981 typedef typename remove_reference<_T2>::type& _T2_reference;
1982
1983 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
1984 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
1985
1986 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00001987 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001988 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00001989 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001990 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001991 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00001992 : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001993
Howard Hinnant61aa6012011-07-01 19:24:36 +00001994#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
1995
1996 _LIBCPP_INLINE_VISIBILITY
1997 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
1998 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
1999 is_nothrow_copy_constructible<_T2>::value)
2000 : __first_(__p.first()),
2001 __second_(__p.second()) {}
2002
2003 _LIBCPP_INLINE_VISIBILITY
2004 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2005 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2006 is_nothrow_copy_assignable<_T2>::value)
2007 {
2008 __first_ = __p.first();
2009 __second_ = __p.second();
2010 return *this;
2011 }
2012
Howard Hinnant73d21a42010-09-04 23:28:19 +00002013#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002014
2015 _LIBCPP_INLINE_VISIBILITY
2016 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002017 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2018 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002019 : __first_(_VSTD::forward<_T1>(__p.first())),
2020 __second_(_VSTD::forward<_T2>(__p.second())) {}
2021
2022 _LIBCPP_INLINE_VISIBILITY
2023 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2024 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2025 is_nothrow_move_assignable<_T2>::value)
2026 {
2027 __first_ = _VSTD::forward<_T1>(__p.first());
2028 __second_ = _VSTD::forward<_T2>(__p.second());
2029 return *this;
2030 }
2031
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002032#ifndef _LIBCPP_HAS_NO_VARIADICS
2033
2034 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2035 _LIBCPP_INLINE_VISIBILITY
2036 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2037 tuple<_Args1...> __first_args,
2038 tuple<_Args2...> __second_args,
2039 __tuple_indices<_I1...>,
2040 __tuple_indices<_I2...>)
2041 : __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2042 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2043 {}
2044
2045#endif // _LIBCPP_HAS_NO_VARIADICS
2046
Howard Hinnant73d21a42010-09-04 23:28:19 +00002047#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002048
Howard Hinnant61aa6012011-07-01 19:24:36 +00002049#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2050
Howard Hinnant1694d232011-05-28 14:41:13 +00002051 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2052 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002053
Howard Hinnant1694d232011-05-28 14:41:13 +00002054 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2055 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002056
2057 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002058 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2059 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002060 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002061 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002062 swap(__first_, __x.__first_);
2063 swap(__second_, __x.__second_);
2064 }
2065};
2066
2067template <class _T1, class _T2>
2068class __libcpp_compressed_pair_imp<_T1, _T2, 1>
2069 : private _T1
2070{
2071private:
2072 _T2 __second_;
2073public:
2074 typedef _T1 _T1_param;
2075 typedef _T2 _T2_param;
2076
2077 typedef _T1& _T1_reference;
2078 typedef typename remove_reference<_T2>::type& _T2_reference;
2079
2080 typedef const _T1& _T1_const_reference;
2081 typedef const typename remove_reference<_T2>::type& _T2_const_reference;
2082
2083 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002084 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002085 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002086 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002087 : __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002088 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002089 : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002090
Howard Hinnant61aa6012011-07-01 19:24:36 +00002091#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2092
2093 _LIBCPP_INLINE_VISIBILITY
2094 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2095 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2096 is_nothrow_copy_constructible<_T2>::value)
2097 : _T1(__p.first()), __second_(__p.second()) {}
2098
2099 _LIBCPP_INLINE_VISIBILITY
2100 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2101 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2102 is_nothrow_copy_assignable<_T2>::value)
2103 {
2104 _T1::operator=(__p.first());
2105 __second_ = __p.second();
2106 return *this;
2107 }
2108
Howard Hinnant73d21a42010-09-04 23:28:19 +00002109#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002110
2111 _LIBCPP_INLINE_VISIBILITY
2112 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002113 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2114 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002115 : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002116
2117 _LIBCPP_INLINE_VISIBILITY
2118 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2119 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2120 is_nothrow_move_assignable<_T2>::value)
2121 {
2122 _T1::operator=(_VSTD::move(__p.first()));
2123 __second_ = _VSTD::forward<_T2>(__p.second());
2124 return *this;
2125 }
2126
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002127#ifndef _LIBCPP_HAS_NO_VARIADICS
2128
2129 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2130 _LIBCPP_INLINE_VISIBILITY
2131 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2132 tuple<_Args1...> __first_args,
2133 tuple<_Args2...> __second_args,
2134 __tuple_indices<_I1...>,
2135 __tuple_indices<_I2...>)
2136 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2137 __second_(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2138 {}
2139
2140#endif // _LIBCPP_HAS_NO_VARIADICS
2141
Howard Hinnant73d21a42010-09-04 23:28:19 +00002142#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002143
Howard Hinnant61aa6012011-07-01 19:24:36 +00002144#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2145
Howard Hinnant1694d232011-05-28 14:41:13 +00002146 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2147 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002148
Howard Hinnant1694d232011-05-28 14:41:13 +00002149 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;}
2150 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002151
2152 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002153 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2154 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002155 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002156 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002157 swap(__second_, __x.__second_);
2158 }
2159};
2160
2161template <class _T1, class _T2>
2162class __libcpp_compressed_pair_imp<_T1, _T2, 2>
2163 : private _T2
2164{
2165private:
2166 _T1 __first_;
2167public:
2168 typedef _T1 _T1_param;
2169 typedef _T2 _T2_param;
2170
2171 typedef typename remove_reference<_T1>::type& _T1_reference;
2172 typedef _T2& _T2_reference;
2173
2174 typedef const typename remove_reference<_T1>::type& _T1_const_reference;
2175 typedef const _T2& _T2_const_reference;
2176
2177 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2178 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002179 : __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002180 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002181 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002182 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant1694d232011-05-28 14:41:13 +00002183 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2184 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002185 : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002186
Howard Hinnant61aa6012011-07-01 19:24:36 +00002187#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2188
2189 _LIBCPP_INLINE_VISIBILITY
2190 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2191 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2192 is_nothrow_copy_constructible<_T2>::value)
2193 : _T2(__p.second()), __first_(__p.first()) {}
2194
2195 _LIBCPP_INLINE_VISIBILITY
2196 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2197 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2198 is_nothrow_copy_assignable<_T2>::value)
2199 {
2200 _T2::operator=(__p.second());
2201 __first_ = __p.first();
2202 return *this;
2203 }
2204
Howard Hinnant73d21a42010-09-04 23:28:19 +00002205#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002206
2207 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002208 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant61aa6012011-07-01 19:24:36 +00002209 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2210 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002211 : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002212
2213 _LIBCPP_INLINE_VISIBILITY
2214 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2215 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2216 is_nothrow_move_assignable<_T2>::value)
2217 {
2218 _T2::operator=(_VSTD::forward<_T2>(__p.second()));
2219 __first_ = _VSTD::move(__p.first());
2220 return *this;
2221 }
2222
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002223#ifndef _LIBCPP_HAS_NO_VARIADICS
2224
2225 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2226 _LIBCPP_INLINE_VISIBILITY
2227 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2228 tuple<_Args1...> __first_args,
2229 tuple<_Args2...> __second_args,
2230 __tuple_indices<_I1...>,
2231 __tuple_indices<_I2...>)
2232 : _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...),
2233 __first_(_VSTD::forward<_Args1>(get<_I1>(__first_args))...)
2234
2235 {}
2236
2237#endif // _LIBCPP_HAS_NO_VARIADICS
2238
Howard Hinnant73d21a42010-09-04 23:28:19 +00002239#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002240
Howard Hinnant61aa6012011-07-01 19:24:36 +00002241#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2242
Howard Hinnant1694d232011-05-28 14:41:13 +00002243 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;}
2244 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002245
Howard Hinnant1694d232011-05-28 14:41:13 +00002246 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2247 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002248
2249 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x)
Howard Hinnant1694d232011-05-28 14:41:13 +00002250 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2251 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002252 {
Howard Hinnant0949eed2011-06-30 21:18:19 +00002253 using _VSTD::swap;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002254 swap(__first_, __x.__first_);
2255 }
2256};
2257
2258template <class _T1, class _T2>
2259class __libcpp_compressed_pair_imp<_T1, _T2, 3>
2260 : private _T1,
2261 private _T2
2262{
2263public:
2264 typedef _T1 _T1_param;
2265 typedef _T2 _T2_param;
2266
2267 typedef _T1& _T1_reference;
2268 typedef _T2& _T2_reference;
2269
2270 typedef const _T1& _T1_const_reference;
2271 typedef const _T2& _T2_const_reference;
2272
2273 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {}
2274 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002275 : _T1(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002276 _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002277 : _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002278 _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002279 : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002280
Howard Hinnant61aa6012011-07-01 19:24:36 +00002281#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2282
2283 _LIBCPP_INLINE_VISIBILITY
2284 __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p)
2285 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2286 is_nothrow_copy_constructible<_T2>::value)
2287 : _T1(__p.first()), _T2(__p.second()) {}
2288
2289 _LIBCPP_INLINE_VISIBILITY
2290 __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p)
2291 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2292 is_nothrow_copy_assignable<_T2>::value)
2293 {
2294 _T1::operator=(__p.first());
2295 _T2::operator=(__p.second());
2296 return *this;
2297 }
2298
Howard Hinnant73d21a42010-09-04 23:28:19 +00002299#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002300
2301 _LIBCPP_INLINE_VISIBILITY
2302 __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002303 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2304 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002305 : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002306
2307 _LIBCPP_INLINE_VISIBILITY
2308 __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p)
2309 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2310 is_nothrow_move_assignable<_T2>::value)
2311 {
2312 _T1::operator=(_VSTD::move(__p.first()));
2313 _T2::operator=(_VSTD::move(__p.second()));
2314 return *this;
2315 }
2316
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002317#ifndef _LIBCPP_HAS_NO_VARIADICS
2318
2319 template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2>
2320 _LIBCPP_INLINE_VISIBILITY
2321 __libcpp_compressed_pair_imp(piecewise_construct_t __pc,
2322 tuple<_Args1...> __first_args,
2323 tuple<_Args2...> __second_args,
2324 __tuple_indices<_I1...>,
2325 __tuple_indices<_I2...>)
2326 : _T1(_VSTD::forward<_Args1>(get<_I1>(__first_args))...),
2327 _T2(_VSTD::forward<_Args2>(get<_I2>(__second_args))...)
2328 {}
2329
2330#endif // _LIBCPP_HAS_NO_VARIADICS
2331
Howard Hinnant73d21a42010-09-04 23:28:19 +00002332#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002333
Howard Hinnant61aa6012011-07-01 19:24:36 +00002334#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2335
Howard Hinnant1694d232011-05-28 14:41:13 +00002336 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;}
2337 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002338
Howard Hinnant1694d232011-05-28 14:41:13 +00002339 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;}
2340 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002341
Howard Hinnantec3773c2011-12-01 20:21:04 +00002342 _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp&)
Howard Hinnant1694d232011-05-28 14:41:13 +00002343 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2344 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002345 {
2346 }
2347};
2348
2349template <class _T1, class _T2>
2350class __compressed_pair
2351 : private __libcpp_compressed_pair_imp<_T1, _T2>
2352{
2353 typedef __libcpp_compressed_pair_imp<_T1, _T2> base;
2354public:
2355 typedef typename base::_T1_param _T1_param;
2356 typedef typename base::_T2_param _T2_param;
2357
2358 typedef typename base::_T1_reference _T1_reference;
2359 typedef typename base::_T2_reference _T2_reference;
2360
2361 typedef typename base::_T1_const_reference _T1_const_reference;
2362 typedef typename base::_T2_const_reference _T2_const_reference;
2363
2364 _LIBCPP_INLINE_VISIBILITY __compressed_pair() {}
Howard Hinnant57199402012-01-02 17:56:02 +00002365 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T1_param __t1)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002366 : base(_VSTD::forward<_T1_param>(__t1)) {}
Howard Hinnant57199402012-01-02 17:56:02 +00002367 _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002368 : base(_VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002369 _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002370 : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002371
Howard Hinnant61aa6012011-07-01 19:24:36 +00002372#ifdef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2373
2374 _LIBCPP_INLINE_VISIBILITY
2375 __compressed_pair(const __compressed_pair& __p)
2376 _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value &&
2377 is_nothrow_copy_constructible<_T2>::value)
2378 : base(__p) {}
2379
2380 _LIBCPP_INLINE_VISIBILITY
2381 __compressed_pair& operator=(const __compressed_pair& __p)
2382 _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value &&
2383 is_nothrow_copy_assignable<_T2>::value)
2384 {
2385 base::operator=(__p);
2386 return *this;
2387 }
2388
Howard Hinnant73d21a42010-09-04 23:28:19 +00002389#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant61aa6012011-07-01 19:24:36 +00002390 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002391 __compressed_pair(__compressed_pair&& __p)
Howard Hinnant1694d232011-05-28 14:41:13 +00002392 _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value &&
2393 is_nothrow_move_constructible<_T2>::value)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002394 : base(_VSTD::move(__p)) {}
Howard Hinnant61aa6012011-07-01 19:24:36 +00002395
2396 _LIBCPP_INLINE_VISIBILITY
2397 __compressed_pair& operator=(__compressed_pair&& __p)
2398 _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value &&
2399 is_nothrow_move_assignable<_T2>::value)
2400 {
2401 base::operator=(_VSTD::move(__p));
2402 return *this;
2403 }
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002404
2405#ifndef _LIBCPP_HAS_NO_VARIADICS
2406
2407 template <class... _Args1, class... _Args2>
2408 _LIBCPP_INLINE_VISIBILITY
2409 __compressed_pair(piecewise_construct_t __pc, tuple<_Args1...> __first_args,
2410 tuple<_Args2...> __second_args)
Howard Hinnant57199402012-01-02 17:56:02 +00002411 : base(__pc, _VSTD::move(__first_args), _VSTD::move(__second_args),
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00002412 typename __make_tuple_indices<sizeof...(_Args1)>::type(),
2413 typename __make_tuple_indices<sizeof...(_Args2) >::type())
2414 {}
2415
2416#endif // _LIBCPP_HAS_NO_VARIADICS
2417
Howard Hinnant73d21a42010-09-04 23:28:19 +00002418#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002419
Howard Hinnant61aa6012011-07-01 19:24:36 +00002420#endif // _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS
2421
Howard Hinnant1694d232011-05-28 14:41:13 +00002422 _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return base::first();}
2423 _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::first();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002424
Howard Hinnant1694d232011-05-28 14:41:13 +00002425 _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return base::second();}
2426 _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return base::second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002427
Howard Hinnant1694d232011-05-28 14:41:13 +00002428 _LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x)
2429 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2430 __is_nothrow_swappable<_T1>::value)
2431 {base::swap(__x);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002432};
2433
2434template <class _T1, class _T2>
2435inline _LIBCPP_INLINE_VISIBILITY
2436void
2437swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y)
Howard Hinnant1694d232011-05-28 14:41:13 +00002438 _NOEXCEPT_(__is_nothrow_swappable<_T1>::value &&
2439 __is_nothrow_swappable<_T1>::value)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002440 {__x.swap(__y);}
2441
Howard Hinnant57199402012-01-02 17:56:02 +00002442// __same_or_less_cv_qualified
2443
2444template <class _Ptr1, class _Ptr2,
2445 bool = is_same<typename remove_cv<typename pointer_traits<_Ptr1>::element_type>::type,
2446 typename remove_cv<typename pointer_traits<_Ptr2>::element_type>::type
2447 >::value
2448 >
2449struct __same_or_less_cv_qualified_imp
2450 : is_convertible<_Ptr1, _Ptr2> {};
2451
2452template <class _Ptr1, class _Ptr2>
2453struct __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2, false>
2454 : false_type {};
2455
2456template <class _Ptr1, class _Ptr2, bool = is_scalar<_Ptr1>::value &&
2457 !is_pointer<_Ptr1>::value>
2458struct __same_or_less_cv_qualified
2459 : __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2> {};
2460
2461template <class _Ptr1, class _Ptr2>
2462struct __same_or_less_cv_qualified<_Ptr1, _Ptr2, true>
2463 : false_type {};
2464
2465// default_delete
2466
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002467template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002468struct _LIBCPP_VISIBLE default_delete
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002469{
Howard Hinnant1694d232011-05-28 14:41:13 +00002470 _LIBCPP_INLINE_VISIBILITY default_delete() _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002471 template <class _Up>
2472 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up>&,
Howard Hinnant1694d232011-05-28 14:41:13 +00002473 typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
2474 _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002475 {
2476 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2477 delete __ptr;
2478 }
2479};
2480
2481template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00002482struct _LIBCPP_VISIBLE default_delete<_Tp[]>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002483{
Howard Hinnant8e843502011-12-18 21:19:44 +00002484public:
2485 _LIBCPP_INLINE_VISIBILITY default_delete() _NOEXCEPT {}
2486 template <class _Up>
2487 _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up[]>&,
Howard Hinnant57199402012-01-02 17:56:02 +00002488 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {}
Howard Hinnant8e843502011-12-18 21:19:44 +00002489 template <class _Up>
2490 _LIBCPP_INLINE_VISIBILITY
2491 void operator() (_Up* __ptr,
Howard Hinnant57199402012-01-02 17:56:02 +00002492 typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002493 {
2494 static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type");
2495 delete [] __ptr;
2496 }
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002497};
2498
2499template <class _Tp, class _Dp = default_delete<_Tp> >
Howard Hinnant82894812010-09-22 16:48:34 +00002500class _LIBCPP_VISIBLE unique_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002501{
2502public:
2503 typedef _Tp element_type;
2504 typedef _Dp deleter_type;
2505 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2506private:
2507 __compressed_pair<pointer, deleter_type> __ptr_;
2508
Howard Hinnant57199402012-01-02 17:56:02 +00002509#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002510 unique_ptr(unique_ptr&);
2511 template <class _Up, class _Ep>
2512 unique_ptr(unique_ptr<_Up, _Ep>&);
2513 unique_ptr& operator=(unique_ptr&);
2514 template <class _Up, class _Ep>
2515 unique_ptr& operator=(unique_ptr<_Up, _Ep>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002516#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002517
2518 struct __nat {int __for_bool_;};
2519
2520 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2521 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2522public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002523 _LIBCPP_INLINE_VISIBILITY unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002524 : __ptr_(pointer())
2525 {
2526 static_assert(!is_pointer<deleter_type>::value,
2527 "unique_ptr constructed with null function pointer deleter");
2528 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002529 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002530 : __ptr_(pointer())
2531 {
2532 static_assert(!is_pointer<deleter_type>::value,
2533 "unique_ptr constructed with null function pointer deleter");
2534 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002535 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002536 : __ptr_(_VSTD::move(__p))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002537 {
2538 static_assert(!is_pointer<deleter_type>::value,
2539 "unique_ptr constructed with null function pointer deleter");
2540 }
2541
Howard Hinnant73d21a42010-09-04 23:28:19 +00002542#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002543 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename conditional<
2544 is_reference<deleter_type>::value,
2545 deleter_type,
2546 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002547 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002548 : __ptr_(__p, __d) {}
2549
2550 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002551 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002552 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002553 {
2554 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2555 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002556 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002557 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002558 template <class _Up, class _Ep>
2559 _LIBCPP_INLINE_VISIBILITY
2560 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2561 typename enable_if
2562 <
2563 !is_array<_Up>::value &&
2564 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2565 is_convertible<_Ep, deleter_type>::value &&
2566 (
2567 !is_reference<deleter_type>::value ||
2568 is_same<deleter_type, _Ep>::value
2569 ),
2570 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002571 >::type = __nat()) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002572 : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002573
2574 template <class _Up>
2575 _LIBCPP_INLINE_VISIBILITY unique_ptr(auto_ptr<_Up>&& __p,
2576 typename enable_if<
2577 is_convertible<_Up*, _Tp*>::value &&
2578 is_same<_Dp, default_delete<_Tp> >::value,
2579 __nat
Howard Hinnant1694d232011-05-28 14:41:13 +00002580 >::type = __nat()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002581 : __ptr_(__p.release())
2582 {
2583 }
2584
Howard Hinnant1694d232011-05-28 14:41:13 +00002585 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002586 {
2587 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002588 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002589 return *this;
2590 }
2591
2592 template <class _Up, class _Ep>
2593 _LIBCPP_INLINE_VISIBILITY
2594 typename enable_if
2595 <
Howard Hinnant57199402012-01-02 17:56:02 +00002596 !is_array<_Up>::value &&
2597 is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2598 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002599 unique_ptr&
2600 >::type
Howard Hinnant1694d232011-05-28 14:41:13 +00002601 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002602 {
2603 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002604 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002605 return *this;
2606 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002607#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002608
2609 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2610 {
2611 return __rv<unique_ptr>(*this);
2612 }
2613
2614 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002615 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002616
2617 template <class _Up, class _Ep>
2618 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr<_Up, _Ep> __u)
2619 {
2620 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002621 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002622 return *this;
2623 }
2624
2625 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002626 : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002627
2628 template <class _Up>
2629 _LIBCPP_INLINE_VISIBILITY
2630 typename enable_if<
2631 is_convertible<_Up*, _Tp*>::value &&
2632 is_same<_Dp, default_delete<_Tp> >::value,
2633 unique_ptr&
2634 >::type
2635 operator=(auto_ptr<_Up> __p)
2636 {reset(__p.release()); return *this;}
2637
Howard Hinnant73d21a42010-09-04 23:28:19 +00002638#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002639 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2640
Howard Hinnant1694d232011-05-28 14:41:13 +00002641 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002642 {
2643 reset();
2644 return *this;
2645 }
2646
2647 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator*() const
2648 {return *__ptr_.first();}
Howard Hinnant1694d232011-05-28 14:41:13 +00002649 _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT {return __ptr_.first();}
2650 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2651 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2652 {return __ptr_.second();}
2653 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2654 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002655 _LIBCPP_INLINE_VISIBILITY
2656 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2657 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002658
Howard Hinnant1694d232011-05-28 14:41:13 +00002659 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002660 {
2661 pointer __t = __ptr_.first();
2662 __ptr_.first() = pointer();
2663 return __t;
2664 }
2665
Howard Hinnant1694d232011-05-28 14:41:13 +00002666 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002667 {
2668 pointer __tmp = __ptr_.first();
2669 __ptr_.first() = __p;
2670 if (__tmp)
2671 __ptr_.second()(__tmp);
2672 }
2673
Howard Hinnant1694d232011-05-28 14:41:13 +00002674 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) _NOEXCEPT
2675 {__ptr_.swap(__u.__ptr_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002676};
2677
2678template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00002679class _LIBCPP_VISIBLE unique_ptr<_Tp[], _Dp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002680{
2681public:
2682 typedef _Tp element_type;
2683 typedef _Dp deleter_type;
2684 typedef typename __pointer_type<_Tp, deleter_type>::type pointer;
2685private:
2686 __compressed_pair<pointer, deleter_type> __ptr_;
2687
Howard Hinnant57199402012-01-02 17:56:02 +00002688#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002689 unique_ptr(unique_ptr&);
2690 template <class _Up>
2691 unique_ptr(unique_ptr<_Up>&);
2692 unique_ptr& operator=(unique_ptr&);
2693 template <class _Up>
2694 unique_ptr& operator=(unique_ptr<_Up>&);
Howard Hinnant73d21a42010-09-04 23:28:19 +00002695#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002696
2697 struct __nat {int __for_bool_;};
2698
2699 typedef typename remove_reference<deleter_type>::type& _Dp_reference;
2700 typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference;
2701public:
Howard Hinnant1694d232011-05-28 14:41:13 +00002702 _LIBCPP_INLINE_VISIBILITY unique_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002703 : __ptr_(pointer())
2704 {
2705 static_assert(!is_pointer<deleter_type>::value,
2706 "unique_ptr constructed with null function pointer deleter");
2707 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002708 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002709 : __ptr_(pointer())
2710 {
2711 static_assert(!is_pointer<deleter_type>::value,
2712 "unique_ptr constructed with null function pointer deleter");
2713 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002714#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002715 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002716 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002717 >
Howard Hinnant99968442011-11-29 18:15:50 +00002718 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002719 : __ptr_(__p)
2720 {
2721 static_assert(!is_pointer<deleter_type>::value,
2722 "unique_ptr constructed with null function pointer deleter");
2723 }
2724
Howard Hinnant99968442011-11-29 18:15:50 +00002725 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002726 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002727 >
Howard Hinnant99968442011-11-29 18:15:50 +00002728 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename conditional<
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002729 is_reference<deleter_type>::value,
2730 deleter_type,
2731 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002732 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002733 : __ptr_(__p, __d) {}
2734
2735 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename conditional<
2736 is_reference<deleter_type>::value,
2737 deleter_type,
2738 typename add_lvalue_reference<const deleter_type>::type>::type __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002739 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002740 : __ptr_(pointer(), __d) {}
2741
Howard Hinnant99968442011-11-29 18:15:50 +00002742 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002743 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002744 >
Howard Hinnant99968442011-11-29 18:15:50 +00002745 _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002746 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002747 : __ptr_(__p, _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002748 {
2749 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2750 }
2751
2752 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename remove_reference<deleter_type>::type&& __d)
Howard Hinnant1694d232011-05-28 14:41:13 +00002753 _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002754 : __ptr_(pointer(), _VSTD::move(__d))
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002755 {
2756 static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference");
2757 }
2758
Howard Hinnant1694d232011-05-28 14:41:13 +00002759 _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT
Howard Hinnant0949eed2011-06-30 21:18:19 +00002760 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002761
Howard Hinnant1694d232011-05-28 14:41:13 +00002762 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002763 {
2764 reset(__u.release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002765 __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002766 return *this;
2767 }
Howard Hinnant8e843502011-12-18 21:19:44 +00002768
2769 template <class _Up, class _Ep>
2770 _LIBCPP_INLINE_VISIBILITY
2771 unique_ptr(unique_ptr<_Up, _Ep>&& __u,
2772 typename enable_if
2773 <
2774 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002775 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value
Howard Hinnant8e843502011-12-18 21:19:44 +00002776 && is_convertible<_Ep, deleter_type>::value &&
2777 (
2778 !is_reference<deleter_type>::value ||
2779 is_same<deleter_type, _Ep>::value
2780 ),
2781 __nat
2782 >::type = __nat()
2783 ) _NOEXCEPT
2784 : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {}
2785
2786
2787 template <class _Up, class _Ep>
2788 _LIBCPP_INLINE_VISIBILITY
2789 typename enable_if
2790 <
2791 is_array<_Up>::value &&
Howard Hinnant57199402012-01-02 17:56:02 +00002792 __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value &&
2793 is_assignable<deleter_type&, _Ep&&>::value,
Howard Hinnant8e843502011-12-18 21:19:44 +00002794 unique_ptr&
2795 >::type
2796 operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT
2797 {
2798 reset(__u.release());
2799 __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter());
2800 return *this;
2801 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002802#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002803
2804 _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p)
2805 : __ptr_(__p)
2806 {
2807 static_assert(!is_pointer<deleter_type>::value,
2808 "unique_ptr constructed with null function pointer deleter");
2809 }
2810
2811 _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002812 : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002813
2814 _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, deleter_type __d)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002815 : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002816
2817 _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>()
2818 {
2819 return __rv<unique_ptr>(*this);
2820 }
2821
2822 _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u)
Howard Hinnant0949eed2011-06-30 21:18:19 +00002823 : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002824
2825 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(__rv<unique_ptr> __u)
2826 {
2827 reset(__u->release());
Howard Hinnant0949eed2011-06-30 21:18:19 +00002828 __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002829 return *this;
2830 }
2831
Howard Hinnant73d21a42010-09-04 23:28:19 +00002832#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002833 _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();}
2834
Howard Hinnant1694d232011-05-28 14:41:13 +00002835 _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002836 {
2837 reset();
2838 return *this;
2839 }
2840
2841 _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator[](size_t __i) const
2842 {return __ptr_.first()[__i];}
Howard Hinnant1694d232011-05-28 14:41:13 +00002843 _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();}
2844 _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT
2845 {return __ptr_.second();}
2846 _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT
2847 {return __ptr_.second();}
Howard Hinnant77861882012-02-21 21:46:43 +00002848 _LIBCPP_INLINE_VISIBILITY
2849 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT
2850 {return __ptr_.first() != nullptr;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002851
Howard Hinnant1694d232011-05-28 14:41:13 +00002852 _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002853 {
2854 pointer __t = __ptr_.first();
2855 __ptr_.first() = pointer();
2856 return __t;
2857 }
2858
Howard Hinnant73d21a42010-09-04 23:28:19 +00002859#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant99968442011-11-29 18:15:50 +00002860 template <class _Pp,
Howard Hinnant57199402012-01-02 17:56:02 +00002861 class = typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002862 >
Howard Hinnant99968442011-11-29 18:15:50 +00002863 _LIBCPP_INLINE_VISIBILITY void reset(_Pp __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002864 {
2865 pointer __tmp = __ptr_.first();
2866 __ptr_.first() = __p;
2867 if (__tmp)
2868 __ptr_.second()(__tmp);
2869 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002870 _LIBCPP_INLINE_VISIBILITY void reset(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002871 {
2872 pointer __tmp = __ptr_.first();
2873 __ptr_.first() = nullptr;
2874 if (__tmp)
2875 __ptr_.second()(__tmp);
2876 }
Howard Hinnant1694d232011-05-28 14:41:13 +00002877 _LIBCPP_INLINE_VISIBILITY void reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002878 {
2879 pointer __tmp = __ptr_.first();
2880 __ptr_.first() = nullptr;
2881 if (__tmp)
2882 __ptr_.second()(__tmp);
2883 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002884#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002885 _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer())
2886 {
2887 pointer __tmp = __ptr_.first();
2888 __ptr_.first() = __p;
2889 if (__tmp)
2890 __ptr_.second()(__tmp);
2891 }
Howard Hinnant73d21a42010-09-04 23:28:19 +00002892#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002893
2894 _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) {__ptr_.swap(__u.__ptr_);}
2895private:
Howard Hinnant324bb032010-08-22 00:02:43 +00002896
Howard Hinnant73d21a42010-09-04 23:28:19 +00002897#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002898 template <class _Up>
2899 explicit unique_ptr(_Up);
2900 template <class _Up>
2901 unique_ptr(_Up __u,
2902 typename conditional<
2903 is_reference<deleter_type>::value,
2904 deleter_type,
2905 typename add_lvalue_reference<const deleter_type>::type>::type,
2906 typename enable_if
2907 <
2908 is_convertible<_Up, pointer>::value,
2909 __nat
2910 >::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00002911#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002912};
2913
2914template <class _Tp, class _Dp>
2915inline _LIBCPP_INLINE_VISIBILITY
2916void
Howard Hinnant1694d232011-05-28 14:41:13 +00002917swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002918
2919template <class _T1, class _D1, class _T2, class _D2>
2920inline _LIBCPP_INLINE_VISIBILITY
2921bool
2922operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();}
2923
2924template <class _T1, class _D1, class _T2, class _D2>
2925inline _LIBCPP_INLINE_VISIBILITY
2926bool
2927operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);}
2928
2929template <class _T1, class _D1, class _T2, class _D2>
2930inline _LIBCPP_INLINE_VISIBILITY
2931bool
Howard Hinnant3fadda32012-02-21 21:02:58 +00002932operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y)
2933{
2934 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2935 typedef typename unique_ptr<_T2, _D2>::pointer _P2;
2936 typedef typename common_type<_P1, _P2>::type _V;
2937 return less<_V>()(__x.get(), __y.get());
2938}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00002939
2940template <class _T1, class _D1, class _T2, class _D2>
2941inline _LIBCPP_INLINE_VISIBILITY
2942bool
2943operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;}
2944
2945template <class _T1, class _D1, class _T2, class _D2>
2946inline _LIBCPP_INLINE_VISIBILITY
2947bool
2948operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);}
2949
2950template <class _T1, class _D1, class _T2, class _D2>
2951inline _LIBCPP_INLINE_VISIBILITY
2952bool
2953operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);}
2954
Howard Hinnant3fadda32012-02-21 21:02:58 +00002955template <class _T1, class _D1>
2956inline _LIBCPP_INLINE_VISIBILITY
2957bool
2958operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t)
2959{
2960 return !__x;
2961}
2962
2963template <class _T1, class _D1>
2964inline _LIBCPP_INLINE_VISIBILITY
2965bool
2966operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x)
2967{
2968 return !__x;
2969}
2970
2971template <class _T1, class _D1>
2972inline _LIBCPP_INLINE_VISIBILITY
2973bool
2974operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
2975{
2976 return static_cast<bool>(__x);
2977}
2978
2979template <class _T1, class _D1>
2980inline _LIBCPP_INLINE_VISIBILITY
2981bool
2982operator!=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
2983{
2984 return static_cast<bool>(__x);
2985}
2986
2987template <class _T1, class _D1>
2988inline _LIBCPP_INLINE_VISIBILITY
2989bool
2990operator<(const unique_ptr<_T1, _D1>& __x, nullptr_t)
2991{
2992 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
2993 return less<_P1>()(__x.get(), nullptr);
2994}
2995
2996template <class _T1, class _D1>
2997inline _LIBCPP_INLINE_VISIBILITY
2998bool
2999operator<(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3000{
3001 typedef typename unique_ptr<_T1, _D1>::pointer _P1;
3002 return less<_P1>()(nullptr, __x.get());
3003}
3004
3005template <class _T1, class _D1>
3006inline _LIBCPP_INLINE_VISIBILITY
3007bool
3008operator>(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3009{
3010 return nullptr < __x;
3011}
3012
3013template <class _T1, class _D1>
3014inline _LIBCPP_INLINE_VISIBILITY
3015bool
3016operator>(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3017{
3018 return __x < nullptr;
3019}
3020
3021template <class _T1, class _D1>
3022inline _LIBCPP_INLINE_VISIBILITY
3023bool
3024operator<=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3025{
3026 return !(nullptr < __x);
3027}
3028
3029template <class _T1, class _D1>
3030inline _LIBCPP_INLINE_VISIBILITY
3031bool
3032operator<=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3033{
3034 return !(__x < nullptr);
3035}
3036
3037template <class _T1, class _D1>
3038inline _LIBCPP_INLINE_VISIBILITY
3039bool
3040operator>=(const unique_ptr<_T1, _D1>& __x, nullptr_t)
3041{
3042 return !(__x < nullptr);
3043}
3044
3045template <class _T1, class _D1>
3046inline _LIBCPP_INLINE_VISIBILITY
3047bool
3048operator>=(nullptr_t, const unique_ptr<_T1, _D1>& __x)
3049{
3050 return !(nullptr < __x);
3051}
3052
Howard Hinnant87073e42012-05-01 15:37:54 +00003053#ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES
3054
3055template <class _Tp, class _Dp>
3056inline _LIBCPP_INLINE_VISIBILITY
3057unique_ptr<_Tp, _Dp>
3058move(unique_ptr<_Tp, _Dp>& __t)
3059{
3060 return unique_ptr<_Tp, _Dp>(__rv<unique_ptr<_Tp, _Dp> >(__t));
3061}
3062
3063#endif
3064
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00003065template <class _Tp> struct hash;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003066
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003067// We use murmur2 when size_t is 32 bits, and cityhash64 when size_t
3068// is 64 bits. This is because cityhash64 uses 64bit x 64bit
3069// multiplication, which can be very slow on 32-bit systems.
Howard Hinnant40c13d32011-12-05 00:08:45 +00003070template <class _Size, size_t = sizeof(_Size)*__CHAR_BIT__>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003071struct __murmur2_or_cityhash;
Howard Hinnant40c13d32011-12-05 00:08:45 +00003072
3073template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003074struct __murmur2_or_cityhash<_Size, 32>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003075{
3076 _Size operator()(const void* __key, _Size __len);
3077};
3078
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003079// murmur2
Howard Hinnant40c13d32011-12-05 00:08:45 +00003080template <class _Size>
3081_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003082__murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003083{
3084 const _Size __m = 0x5bd1e995;
3085 const _Size __r = 24;
3086 _Size __h = __len;
3087 const unsigned char* __data = static_cast<const unsigned char*>(__key);
3088 for (; __len >= 4; __data += 4, __len -= 4)
3089 {
3090 _Size __k = *(const _Size*)__data;
3091 __k *= __m;
3092 __k ^= __k >> __r;
3093 __k *= __m;
3094 __h *= __m;
3095 __h ^= __k;
3096 }
3097 switch (__len)
3098 {
3099 case 3:
3100 __h ^= __data[2] << 16;
3101 case 2:
3102 __h ^= __data[1] << 8;
3103 case 1:
3104 __h ^= __data[0];
3105 __h *= __m;
3106 }
3107 __h ^= __h >> 13;
3108 __h *= __m;
3109 __h ^= __h >> 15;
3110 return __h;
3111}
3112
3113template <class _Size>
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003114struct __murmur2_or_cityhash<_Size, 64>
Howard Hinnant40c13d32011-12-05 00:08:45 +00003115{
3116 _Size operator()(const void* __key, _Size __len);
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003117
3118 private:
3119 // Some primes between 2^63 and 2^64.
3120 static const _Size __k0 = 0xc3a5c85c97cb3127ULL;
3121 static const _Size __k1 = 0xb492b66fbe98f273ULL;
3122 static const _Size __k2 = 0x9ae16a3b2f90404fULL;
3123 static const _Size __k3 = 0xc949d7c7509e6557ULL;
3124
3125 static _Size __rotate(_Size __val, int __shift) {
3126 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift)));
3127 }
3128
3129 static _Size __rotate_by_at_least_1(_Size __val, int __shift) {
3130 return (__val >> __shift) | (__val << (64 - __shift));
3131 }
3132
3133 static _Size __shift_mix(_Size __val) {
3134 return __val ^ (__val >> 47);
3135 }
3136
3137 static _Size __hash_len_16(_Size __u, _Size __v) {
3138 const _Size __mul = 0x9ddfea08eb382d69ULL;
3139 _Size __a = (__u ^ __v) * __mul;
3140 __a ^= (__a >> 47);
3141 _Size __b = (__v ^ __a) * __mul;
3142 __b ^= (__b >> 47);
3143 __b *= __mul;
3144 return __b;
3145 }
3146
3147 static _Size __hash_len_0_to_16(const char* __s, _Size __len) {
3148 if (__len > 8) {
3149 const _Size __a = *(const _Size*)__s;
3150 const _Size __b = *(const _Size*)(__s + __len - 8);
3151 return __hash_len_16(__a, __rotate_by_at_least_1(__b + __len, __len)) ^ __b;
3152 }
3153 if (__len >= 4) {
3154 const uint32_t __a = *(const uint32_t*)(__s);
3155 const uint32_t __b = *(const uint32_t*)(__s + __len - 4);
3156 return __hash_len_16(__len + (__a << 3), __b);
3157 }
3158 if (__len > 0) {
3159 const unsigned char __a = __s[0];
3160 const unsigned char __b = __s[__len >> 1];
3161 const unsigned char __c = __s[__len - 1];
3162 const uint32_t __y = static_cast<uint32_t>(__a) +
3163 (static_cast<uint32_t>(__b) << 8);
3164 const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2);
3165 return __shift_mix(__y * __k2 ^ __z * __k3) * __k2;
3166 }
3167 return __k2;
3168 }
3169
3170 static _Size __hash_len_17_to_32(const char *__s, _Size __len) {
3171 const _Size __a = *(const _Size*)(__s) * __k1;
3172 const _Size __b = *(const _Size*)(__s + 8);
3173 const _Size __c = *(const _Size*)(__s + __len - 8) * __k2;
3174 const _Size __d = *(const _Size*)(__s + __len - 16) * __k0;
3175 return __hash_len_16(__rotate(__a - __b, 43) + __rotate(__c, 30) + __d,
3176 __a + __rotate(__b ^ __k3, 20) - __c + __len);
3177 }
3178
3179 // Return a 16-byte hash for 48 bytes. Quick and dirty.
3180 // Callers do best to use "random-looking" values for a and b.
3181 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3182 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) {
3183 __a += __w;
3184 __b = __rotate(__b + __a + __z, 21);
3185 const _Size __c = __a;
3186 __a += __x;
3187 __a += __y;
3188 __b += __rotate(__a, 44);
3189 return pair<_Size, _Size>(__a + __z, __b + __c);
3190 }
3191
3192 // Return a 16-byte hash for s[0] ... s[31], a, and b. Quick and dirty.
3193 static pair<_Size, _Size> __weak_hash_len_32_with_seeds(
3194 const char* __s, _Size __a, _Size __b) {
3195 return __weak_hash_len_32_with_seeds(*(const _Size*)(__s),
3196 *(const _Size*)(__s + 8),
3197 *(const _Size*)(__s + 16),
3198 *(const _Size*)(__s + 24),
3199 __a,
3200 __b);
3201 }
3202
3203 // Return an 8-byte hash for 33 to 64 bytes.
3204 static _Size __hash_len_33_to_64(const char *__s, size_t __len) {
3205 _Size __z = *(const _Size*)(__s + 24);
3206 _Size __a = *(const _Size*)(__s) +
3207 (__len + *(const _Size*)(__s + __len - 16)) * __k0;
3208 _Size __b = __rotate(__a + __z, 52);
3209 _Size __c = __rotate(__a, 37);
3210 __a += *(const _Size*)(__s + 8);
3211 __c += __rotate(__a, 7);
3212 __a += *(const _Size*)(__s + 16);
3213 _Size __vf = __a + __z;
3214 _Size __vs = __b + __rotate(__a, 31) + __c;
3215 __a = *(const _Size*)(__s + 16) + *(const _Size*)(__s + __len - 32);
3216 __z += *(const _Size*)(__s + __len - 8);
3217 __b = __rotate(__a + __z, 52);
3218 __c = __rotate(__a, 37);
3219 __a += *(const _Size*)(__s + __len - 24);
3220 __c += __rotate(__a, 7);
3221 __a += *(const _Size*)(__s + __len - 16);
3222 _Size __wf = __a + __z;
3223 _Size __ws = __b + __rotate(__a, 31) + __c;
3224 _Size __r = __shift_mix((__vf + __ws) * __k2 + (__wf + __vs) * __k0);
3225 return __shift_mix(__r * __k0 + __vs) * __k2;
3226 }
Howard Hinnant40c13d32011-12-05 00:08:45 +00003227};
3228
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003229// cityhash64
Howard Hinnant40c13d32011-12-05 00:08:45 +00003230template <class _Size>
3231_Size
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003232__murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len)
Howard Hinnant40c13d32011-12-05 00:08:45 +00003233{
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003234 const char* __s = static_cast<const char*>(__key);
3235 if (__len <= 32) {
3236 if (__len <= 16) {
3237 return __hash_len_0_to_16(__s, __len);
3238 } else {
3239 return __hash_len_17_to_32(__s, __len);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003240 }
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003241 } else if (__len <= 64) {
3242 return __hash_len_33_to_64(__s, __len);
3243 }
3244
3245 // For strings over 64 bytes we hash the end first, and then as we
3246 // loop we keep 56 bytes of state: v, w, x, y, and z.
3247 _Size __x = *(const _Size*)(__s + __len - 40);
3248 _Size __y = *(const _Size*)(__s + __len - 16) +
3249 *(const _Size*)(__s + __len - 56);
3250 _Size __z = __hash_len_16(*(const _Size*)(__s + __len - 48) + __len,
3251 *(const _Size*)(__s + __len - 24));
3252 pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z);
3253 pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x);
3254 __x = __x * __k1 + *(const _Size*)(__s);
3255
3256 // Decrease len to the nearest multiple of 64, and operate on 64-byte chunks.
3257 __len = (__len - 1) & ~static_cast<_Size>(63);
3258 do {
3259 __x = __rotate(__x + __y + __v.first + *(const _Size*)(__s + 8), 37) * __k1;
3260 __y = __rotate(__y + __v.second + *(const _Size*)(__s + 48), 42) * __k1;
3261 __x ^= __w.second;
3262 __y += __v.first + *(const _Size*)(__s + 40);
3263 __z = __rotate(__z + __w.first, 33) * __k1;
3264 __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first);
3265 __w = __weak_hash_len_32_with_seeds(__s + 32, __z + __w.second,
3266 __y + *(const _Size*)(__s + 16));
3267 std::swap(__z, __x);
3268 __s += 64;
3269 __len -= 64;
3270 } while (__len != 0);
3271 return __hash_len_16(
3272 __hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z,
3273 __hash_len_16(__v.second, __w.second) + __x);
Howard Hinnant40c13d32011-12-05 00:08:45 +00003274}
3275
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003276template <class _Tp, size_t = sizeof(_Tp) / sizeof(size_t)>
3277struct __scalar_hash;
3278
3279template <class _Tp>
3280struct __scalar_hash<_Tp, 0>
3281 : public unary_function<_Tp, size_t>
Howard Hinnant21aefc32010-06-03 16:42:57 +00003282{
Howard Hinnant82894812010-09-22 16:48:34 +00003283 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003284 size_t operator()(_Tp __v) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003285 {
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003286 union
3287 {
3288 _Tp __t;
3289 size_t __a;
3290 } __u;
3291 __u.__a = 0;
3292 __u.__t = __v;
3293 return __u.__a;
Howard Hinnant21aefc32010-06-03 16:42:57 +00003294 }
3295};
3296
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003297template <class _Tp>
3298struct __scalar_hash<_Tp, 1>
3299 : public unary_function<_Tp, size_t>
3300{
3301 _LIBCPP_INLINE_VISIBILITY
3302 size_t operator()(_Tp __v) const _NOEXCEPT
3303 {
3304 union
3305 {
3306 _Tp __t;
3307 size_t __a;
3308 } __u;
3309 __u.__t = __v;
3310 return __u.__a;
3311 }
3312};
3313
3314template <class _Tp>
3315struct __scalar_hash<_Tp, 2>
3316 : public unary_function<_Tp, size_t>
3317{
3318 _LIBCPP_INLINE_VISIBILITY
3319 size_t operator()(_Tp __v) const _NOEXCEPT
3320 {
3321 union
3322 {
3323 _Tp __t;
3324 struct
3325 {
3326 size_t __a;
3327 size_t __b;
3328 };
3329 } __u;
3330 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003331 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003332 }
3333};
3334
3335template <class _Tp>
3336struct __scalar_hash<_Tp, 3>
3337 : public unary_function<_Tp, size_t>
3338{
3339 _LIBCPP_INLINE_VISIBILITY
3340 size_t operator()(_Tp __v) const _NOEXCEPT
3341 {
3342 union
3343 {
3344 _Tp __t;
3345 struct
3346 {
3347 size_t __a;
3348 size_t __b;
3349 size_t __c;
3350 };
3351 } __u;
3352 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003353 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003354 }
3355};
3356
3357template <class _Tp>
3358struct __scalar_hash<_Tp, 4>
3359 : public unary_function<_Tp, size_t>
3360{
3361 _LIBCPP_INLINE_VISIBILITY
3362 size_t operator()(_Tp __v) const _NOEXCEPT
3363 {
3364 union
3365 {
3366 _Tp __t;
3367 struct
3368 {
3369 size_t __a;
3370 size_t __b;
3371 size_t __c;
3372 size_t __d;
3373 };
3374 } __u;
3375 __u.__t = __v;
Howard Hinnantc00f75d2011-12-10 20:28:56 +00003376 return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u));
Howard Hinnantcf2654b2011-12-03 21:11:36 +00003377 }
3378};
3379
3380template<class _Tp>
3381struct _LIBCPP_VISIBLE hash<_Tp*>
3382 : public __scalar_hash<_Tp*>
3383{
3384};
3385
Howard Hinnant21aefc32010-06-03 16:42:57 +00003386template <class _Tp, class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003387struct _LIBCPP_VISIBLE hash<unique_ptr<_Tp, _Dp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00003388{
3389 typedef unique_ptr<_Tp, _Dp> argument_type;
3390 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00003391 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003392 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00003393 {
3394 typedef typename argument_type::pointer pointer;
3395 return hash<pointer>()(__ptr.get());
3396 }
3397};
3398
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003399struct __destruct_n
3400{
3401private:
3402 size_t size;
3403
3404 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003405 _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003406 {for (size_t __i = 0; __i < size; ++__i, ++__p) __p->~_Tp();}
3407
3408 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003409 _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003410 {}
3411
Howard Hinnant1694d232011-05-28 14:41:13 +00003412 _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003413 {++size;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003414 _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003415 {}
3416
Howard Hinnant1694d232011-05-28 14:41:13 +00003417 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003418 {size = __s;}
Howard Hinnant1694d232011-05-28 14:41:13 +00003419 _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003420 {}
3421public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003422 _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT
3423 : size(__s) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003424
3425 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003426 _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003427 {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003428
3429 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003430 _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003431 {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003432
3433 template <class _Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00003434 _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT
Howard Hinnant1468b662010-11-19 22:17:28 +00003435 {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003436};
3437
3438template <class _Alloc>
3439class __allocator_destructor
3440{
3441 typedef allocator_traits<_Alloc> __alloc_traits;
3442public:
3443 typedef typename __alloc_traits::pointer pointer;
3444 typedef typename __alloc_traits::size_type size_type;
3445private:
3446 _Alloc& __alloc_;
3447 size_type __s_;
3448public:
3449 _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s)
Howard Hinnant1694d232011-05-28 14:41:13 +00003450 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003451 : __alloc_(__a), __s_(__s) {}
Howard Hinnant82894812010-09-22 16:48:34 +00003452 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003453 void operator()(pointer __p) _NOEXCEPT
3454 {__alloc_traits::deallocate(__alloc_, __p, __s_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003455};
3456
3457template <class _InputIterator, class _ForwardIterator>
3458_ForwardIterator
3459uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r)
3460{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003461 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003462#ifndef _LIBCPP_NO_EXCEPTIONS
3463 _ForwardIterator __s = __r;
3464 try
3465 {
3466#endif
3467 for (; __f != __l; ++__f, ++__r)
3468 ::new(&*__r) value_type(*__f);
3469#ifndef _LIBCPP_NO_EXCEPTIONS
3470 }
3471 catch (...)
3472 {
3473 for (; __s != __r; ++__s)
3474 __s->~value_type();
3475 throw;
3476 }
3477#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003478 return __r;
3479}
3480
3481template <class _InputIterator, class _Size, class _ForwardIterator>
3482_ForwardIterator
3483uninitialized_copy_n(_InputIterator __f, _Size __n, _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 (; __n > 0; ++__f, ++__r, --__n)
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 _ForwardIterator, class _Tp>
3506void
3507uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x)
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 = __f;
3512 try
3513 {
3514#endif
3515 for (; __f != __l; ++__f)
3516 ::new(&*__f) value_type(__x);
3517#ifndef _LIBCPP_NO_EXCEPTIONS
3518 }
3519 catch (...)
3520 {
3521 for (; __s != __f; ++__s)
3522 __s->~value_type();
3523 throw;
3524 }
3525#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003526}
3527
3528template <class _ForwardIterator, class _Size, class _Tp>
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003529_ForwardIterator
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003530uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x)
3531{
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003532 typedef typename iterator_traits<_ForwardIterator>::value_type value_type;
Howard Hinnant8292d742011-12-29 17:45:35 +00003533#ifndef _LIBCPP_NO_EXCEPTIONS
3534 _ForwardIterator __s = __f;
3535 try
3536 {
3537#endif
3538 for (; __n > 0; ++__f, --__n)
3539 ::new(&*__f) value_type(__x);
3540#ifndef _LIBCPP_NO_EXCEPTIONS
3541 }
3542 catch (...)
3543 {
3544 for (; __s != __f; ++__s)
3545 __s->~value_type();
3546 throw;
3547 }
3548#endif
Howard Hinnant2f6a6272010-11-18 16:13:03 +00003549 return __f;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003550}
3551
Howard Hinnant82894812010-09-22 16:48:34 +00003552class _LIBCPP_EXCEPTION_ABI bad_weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003553 : public std::exception
3554{
3555public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003556 virtual ~bad_weak_ptr() _NOEXCEPT;
3557 virtual const char* what() const _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003558};
3559
3560template<class _Tp> class weak_ptr;
3561
3562class __shared_count
3563{
3564 __shared_count(const __shared_count&);
3565 __shared_count& operator=(const __shared_count&);
3566
3567protected:
3568 long __shared_owners_;
3569 virtual ~__shared_count();
3570private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003571 virtual void __on_zero_shared() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003572
3573public:
Howard Hinnant82894812010-09-22 16:48:34 +00003574 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003575 explicit __shared_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003576 : __shared_owners_(__refs) {}
3577
Howard Hinnant1694d232011-05-28 14:41:13 +00003578 void __add_shared() _NOEXCEPT;
3579 bool __release_shared() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003580 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003581 long use_count() const _NOEXCEPT {return __shared_owners_ + 1;}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003582};
3583
3584class __shared_weak_count
3585 : private __shared_count
3586{
3587 long __shared_weak_owners_;
3588
3589public:
Howard Hinnant82894812010-09-22 16:48:34 +00003590 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003591 explicit __shared_weak_count(long __refs = 0) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003592 : __shared_count(__refs),
3593 __shared_weak_owners_(__refs) {}
3594protected:
3595 virtual ~__shared_weak_count();
3596
3597public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003598 void __add_shared() _NOEXCEPT;
3599 void __add_weak() _NOEXCEPT;
3600 void __release_shared() _NOEXCEPT;
3601 void __release_weak() _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00003602 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003603 long use_count() const _NOEXCEPT {return __shared_count::use_count();}
3604 __shared_weak_count* lock() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003605
Howard Hinnant76265762012-05-18 13:06:21 +00003606#ifndef _LIBCPP_NO_RTTI
Howard Hinnant1694d232011-05-28 14:41:13 +00003607 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnant76265762012-05-18 13:06:21 +00003608#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003609private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003610 virtual void __on_zero_shared_weak() _NOEXCEPT = 0;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003611};
3612
3613template <class _Tp, class _Dp, class _Alloc>
3614class __shared_ptr_pointer
3615 : public __shared_weak_count
3616{
3617 __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_;
3618public:
Howard Hinnant82894812010-09-22 16:48:34 +00003619 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003620 __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003621 : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003622
Howard Hinnantd4444702010-08-11 17:04:31 +00003623#ifndef _LIBCPP_NO_RTTI
Howard Hinnant1694d232011-05-28 14:41:13 +00003624 virtual const void* __get_deleter(const type_info&) const _NOEXCEPT;
Howard Hinnantd4444702010-08-11 17:04:31 +00003625#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003626
3627private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003628 virtual void __on_zero_shared() _NOEXCEPT;
3629 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003630};
3631
Howard Hinnantd4444702010-08-11 17:04:31 +00003632#ifndef _LIBCPP_NO_RTTI
3633
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003634template <class _Tp, class _Dp, class _Alloc>
3635const void*
Howard Hinnant1694d232011-05-28 14:41:13 +00003636__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003637{
3638 return __t == typeid(_Dp) ? &__data_.first().second() : 0;
3639}
3640
Howard Hinnant324bb032010-08-22 00:02:43 +00003641#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00003642
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003643template <class _Tp, class _Dp, class _Alloc>
3644void
Howard Hinnant1694d232011-05-28 14:41:13 +00003645__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003646{
3647 __data_.first().second()(__data_.first().first());
3648 __data_.first().second().~_Dp();
3649}
3650
3651template <class _Tp, class _Dp, class _Alloc>
3652void
Howard Hinnant1694d232011-05-28 14:41:13 +00003653__shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003654{
3655 typename _Alloc::template rebind<__shared_ptr_pointer>::other __a(__data_.second());
3656 __data_.second().~_Alloc();
3657 __a.deallocate(this, 1);
3658}
3659
3660template <class _Tp, class _Alloc>
3661class __shared_ptr_emplace
3662 : public __shared_weak_count
3663{
3664 __compressed_pair<_Alloc, _Tp> __data_;
3665public:
3666#ifndef _LIBCPP_HAS_NO_VARIADICS
3667
Howard Hinnant82894812010-09-22 16:48:34 +00003668 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003669 __shared_ptr_emplace(_Alloc __a)
Howard Hinnant0949eed2011-06-30 21:18:19 +00003670 : __data_(_VSTD::move(__a)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003671
3672 template <class ..._Args>
Howard Hinnant82894812010-09-22 16:48:34 +00003673 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003674 __shared_ptr_emplace(_Alloc __a, _Args&& ...__args)
Howard Hinnant6cc99fa2011-12-19 17:58:44 +00003675 : __data_(piecewise_construct, _VSTD::forward_as_tuple(__a),
3676 _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)) {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003677
3678#else // _LIBCPP_HAS_NO_VARIADICS
3679
Howard Hinnant82894812010-09-22 16:48:34 +00003680 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003681 __shared_ptr_emplace(_Alloc __a)
3682 : __data_(__a) {}
3683
3684 template <class _A0>
Howard Hinnant82894812010-09-22 16:48:34 +00003685 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003686 __shared_ptr_emplace(_Alloc __a, _A0& __a0)
3687 : __data_(__a, _Tp(__a0)) {}
3688
3689 template <class _A0, class _A1>
Howard Hinnant82894812010-09-22 16:48:34 +00003690 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003691 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1)
3692 : __data_(__a, _Tp(__a0, __a1)) {}
3693
3694 template <class _A0, class _A1, class _A2>
Howard Hinnant82894812010-09-22 16:48:34 +00003695 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003696 __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2)
3697 : __data_(__a, _Tp(__a0, __a1, __a2)) {}
3698
3699#endif // _LIBCPP_HAS_NO_VARIADICS
3700
3701private:
Howard Hinnant1694d232011-05-28 14:41:13 +00003702 virtual void __on_zero_shared() _NOEXCEPT;
3703 virtual void __on_zero_shared_weak() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003704public:
Howard Hinnant82894812010-09-22 16:48:34 +00003705 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003706 _Tp* get() _NOEXCEPT {return &__data_.second();}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003707};
3708
3709template <class _Tp, class _Alloc>
3710void
Howard Hinnant1694d232011-05-28 14:41:13 +00003711__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003712{
3713 __data_.second().~_Tp();
3714}
3715
3716template <class _Tp, class _Alloc>
3717void
Howard Hinnant1694d232011-05-28 14:41:13 +00003718__shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003719{
3720 typename _Alloc::template rebind<__shared_ptr_emplace>::other __a(__data_.first());
3721 __data_.first().~_Alloc();
3722 __a.deallocate(this, 1);
3723}
3724
3725template<class _Tp> class enable_shared_from_this;
3726
3727template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00003728class _LIBCPP_VISIBLE shared_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003729{
Howard Hinnant324bb032010-08-22 00:02:43 +00003730public:
3731 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003732private:
3733 element_type* __ptr_;
3734 __shared_weak_count* __cntrl_;
3735
3736 struct __nat {int __for_bool_;};
3737public:
Howard Hinnant1694d232011-05-28 14:41:13 +00003738 shared_ptr() _NOEXCEPT;
3739 shared_ptr(nullptr_t) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003740 template<class _Yp,
3741 class = typename enable_if
3742 <
3743 is_convertible<_Yp*, element_type*>::value
3744 >::type
3745 >
3746 explicit shared_ptr(_Yp* __p);
3747 template<class _Yp, class _Dp,
3748 class = typename enable_if
3749 <
3750 is_convertible<_Yp*, element_type*>::value
3751 >::type
3752 >
3753 shared_ptr(_Yp* __p, _Dp __d);
3754 template<class _Yp, class _Dp, class _Alloc,
3755 class = typename enable_if
3756 <
3757 is_convertible<_Yp*, element_type*>::value
3758 >::type
3759 >
3760 shared_ptr(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003761 template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d);
3762 template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a);
Howard Hinnant1694d232011-05-28 14:41:13 +00003763 template<class _Yp> shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT;
3764 shared_ptr(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003765 template<class _Yp>
3766 shared_ptr(const shared_ptr<_Yp>& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003767 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3768 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003769#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003770 shared_ptr(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003771 template<class _Yp> shared_ptr(shared_ptr<_Yp>&& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00003772 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat())
3773 _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003774#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003775 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r,
Howard Hinnant324bb032010-08-22 00:02:43 +00003776 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type= __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003777#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003778 template<class _Yp,
3779 class = typename enable_if
3780 <
3781 is_convertible<_Yp*, element_type*>::value
3782 >::type
3783 >
3784 shared_ptr(auto_ptr<_Yp>&& __r);
Howard Hinnant324bb032010-08-22 00:02:43 +00003785#else
Howard Hinnant57199402012-01-02 17:56:02 +00003786 template<class _Yp,
3787 class = typename enable_if
3788 <
3789 is_convertible<_Yp*, element_type*>::value
3790 >::type
3791 >
3792 shared_ptr(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003793#endif
Howard Hinnant73d21a42010-09-04 23:28:19 +00003794#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003795 template <class _Yp, class _Dp,
3796 class = typename enable_if
3797 <
3798 !is_array<_Yp>::value &&
3799 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3800 >::type
3801 >
3802 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003803 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003804 template <class _Yp, class _Dp,
3805 class = typename enable_if
3806 <
3807 !is_array<_Yp>::value &&
3808 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3809 >::type
3810 >
3811 shared_ptr(unique_ptr<_Yp, _Dp>&&,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003812 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003813#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003814 template <class _Yp, class _Dp,
3815 class = typename enable_if
3816 <
3817 !is_array<_Yp>::value &&
3818 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3819 >::type
3820 > shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003821 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant57199402012-01-02 17:56:02 +00003822 template <class _Yp, class _Dp,
3823 class = typename enable_if
3824 <
3825 !is_array<_Yp>::value &&
3826 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value
3827 >::type
3828 >
3829 shared_ptr(unique_ptr<_Yp, _Dp>,
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003830 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type = __nat());
Howard Hinnant73d21a42010-09-04 23:28:19 +00003831#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003832
3833 ~shared_ptr();
3834
Howard Hinnant1694d232011-05-28 14:41:13 +00003835 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003836 template<class _Yp>
3837 typename enable_if
3838 <
3839 is_convertible<_Yp*, element_type*>::value,
3840 shared_ptr&
3841 >::type
3842 operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT;
Howard Hinnant73d21a42010-09-04 23:28:19 +00003843#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant1694d232011-05-28 14:41:13 +00003844 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003845 template<class _Yp>
3846 typename enable_if
3847 <
3848 is_convertible<_Yp*, element_type*>::value,
3849 shared_ptr<_Tp>&
3850 >::type
3851 operator=(shared_ptr<_Yp>&& __r);
3852 template<class _Yp>
3853 typename enable_if
3854 <
3855 !is_array<_Yp>::value &&
3856 is_convertible<_Yp*, element_type*>::value,
3857 shared_ptr&
3858 >::type
3859 operator=(auto_ptr<_Yp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003860#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003861 template<class _Yp>
3862 typename enable_if
3863 <
3864 !is_array<_Yp>::value &&
3865 is_convertible<_Yp*, element_type*>::value,
3866 shared_ptr&
3867 >::type
3868 operator=(auto_ptr<_Yp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003869#endif
Howard Hinnant57199402012-01-02 17:56:02 +00003870 template <class _Yp, class _Dp>
3871 typename enable_if
3872 <
3873 !is_array<_Yp>::value &&
3874 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value,
3875 shared_ptr&
3876 >::type
Howard Hinnant73d21a42010-09-04 23:28:19 +00003877#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003878 operator=(unique_ptr<_Yp, _Dp>&& __r);
Howard Hinnant73d21a42010-09-04 23:28:19 +00003879#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant57199402012-01-02 17:56:02 +00003880 operator=(unique_ptr<_Yp, _Dp> __r);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003881#endif
3882
Howard Hinnant1694d232011-05-28 14:41:13 +00003883 void swap(shared_ptr& __r) _NOEXCEPT;
3884 void reset() _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00003885 template<class _Yp>
3886 typename enable_if
3887 <
3888 is_convertible<_Yp*, element_type*>::value,
3889 void
3890 >::type
3891 reset(_Yp* __p);
3892 template<class _Yp, class _Dp>
3893 typename enable_if
3894 <
3895 is_convertible<_Yp*, element_type*>::value,
3896 void
3897 >::type
3898 reset(_Yp* __p, _Dp __d);
3899 template<class _Yp, class _Dp, class _Alloc>
3900 typename enable_if
3901 <
3902 is_convertible<_Yp*, element_type*>::value,
3903 void
3904 >::type
3905 reset(_Yp* __p, _Dp __d, _Alloc __a);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003906
Howard Hinnant82894812010-09-22 16:48:34 +00003907 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003908 element_type* get() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003909 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003910 typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT
3911 {return *__ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003912 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003913 element_type* operator->() const _NOEXCEPT {return __ptr_;}
Howard Hinnant82894812010-09-22 16:48:34 +00003914 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003915 long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00003916 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003917 bool unique() const _NOEXCEPT {return use_count() == 1;}
Howard Hinnant82894812010-09-22 16:48:34 +00003918 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant77861882012-02-21 21:46:43 +00003919 _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return get() != 0;}
Howard Hinnant99968442011-11-29 18:15:50 +00003920 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003921 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003922 bool owner_before(shared_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003923 {return __cntrl_ < __p.__cntrl_;}
Howard Hinnant99968442011-11-29 18:15:50 +00003924 template <class _Up>
Howard Hinnant82894812010-09-22 16:48:34 +00003925 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant99968442011-11-29 18:15:50 +00003926 bool owner_before(weak_ptr<_Up> const& __p) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003927 {return __cntrl_ < __p.__cntrl_;}
3928
Howard Hinnantd4444702010-08-11 17:04:31 +00003929#ifndef _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003930 template <class _Dp>
Howard Hinnant82894812010-09-22 16:48:34 +00003931 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003932 _Dp* __get_deleter() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003933 {return (_Dp*)(__cntrl_ ? __cntrl_->__get_deleter(typeid(_Dp)) : 0);}
Howard Hinnant324bb032010-08-22 00:02:43 +00003934#endif // _LIBCPP_NO_RTTI
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003935
3936#ifndef _LIBCPP_HAS_NO_VARIADICS
3937
3938 template<class ..._Args>
3939 static
3940 shared_ptr<_Tp>
3941 make_shared(_Args&& ...__args);
3942
3943 template<class _Alloc, class ..._Args>
3944 static
3945 shared_ptr<_Tp>
3946 allocate_shared(const _Alloc& __a, _Args&& ...__args);
3947
3948#else // _LIBCPP_HAS_NO_VARIADICS
3949
3950 static shared_ptr<_Tp> make_shared();
3951
3952 template<class _A0>
3953 static shared_ptr<_Tp> make_shared(_A0&);
3954
3955 template<class _A0, class _A1>
3956 static shared_ptr<_Tp> make_shared(_A0&, _A1&);
3957
3958 template<class _A0, class _A1, class _A2>
3959 static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&);
3960
3961 template<class _Alloc>
3962 static shared_ptr<_Tp>
3963 allocate_shared(const _Alloc& __a);
3964
3965 template<class _Alloc, class _A0>
3966 static shared_ptr<_Tp>
3967 allocate_shared(const _Alloc& __a, _A0& __a0);
3968
3969 template<class _Alloc, class _A0, class _A1>
3970 static shared_ptr<_Tp>
3971 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1);
3972
3973 template<class _Alloc, class _A0, class _A1, class _A2>
3974 static shared_ptr<_Tp>
3975 allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2);
3976
3977#endif // _LIBCPP_HAS_NO_VARIADICS
3978
3979private:
3980
3981 template <class _Yp>
Howard Hinnant82894812010-09-22 16:48:34 +00003982 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003983 void
Howard Hinnant1694d232011-05-28 14:41:13 +00003984 __enable_weak_this(const enable_shared_from_this<_Yp>* __e) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003985 {
3986 if (__e)
3987 __e->__weak_this_ = *this;
3988 }
3989
Howard Hinnant82894812010-09-22 16:48:34 +00003990 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003991 void __enable_weak_this(const void*) _NOEXCEPT {}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003992
Howard Hinnant82894812010-09-22 16:48:34 +00003993 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
3994 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00003995};
3996
3997template<class _Tp>
3998inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00003999shared_ptr<_Tp>::shared_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004000 : __ptr_(0),
4001 __cntrl_(0)
4002{
4003}
4004
4005template<class _Tp>
4006inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004007shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004008 : __ptr_(0),
4009 __cntrl_(0)
4010{
4011}
4012
4013template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004014template<class _Yp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004015shared_ptr<_Tp>::shared_ptr(_Yp* __p)
4016 : __ptr_(__p)
4017{
4018 unique_ptr<_Yp> __hold(__p);
4019 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4020 __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>());
4021 __hold.release();
4022 __enable_weak_this(__p);
4023}
4024
4025template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004026template<class _Yp, class _Dp, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004027shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d)
4028 : __ptr_(__p)
4029{
4030#ifndef _LIBCPP_NO_EXCEPTIONS
4031 try
4032 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004033#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004034 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4035 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>());
4036 __enable_weak_this(__p);
4037#ifndef _LIBCPP_NO_EXCEPTIONS
4038 }
4039 catch (...)
4040 {
4041 __d(__p);
4042 throw;
4043 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004044#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004045}
4046
4047template<class _Tp>
4048template<class _Dp>
4049shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d)
4050 : __ptr_(0)
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<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk;
4057 __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>());
4058#ifndef _LIBCPP_NO_EXCEPTIONS
4059 }
4060 catch (...)
4061 {
4062 __d(__p);
4063 throw;
4064 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004065#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004066}
4067
4068template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004069template<class _Yp, class _Dp, class _Alloc, class>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004070shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a)
4071 : __ptr_(__p)
4072{
4073#ifndef _LIBCPP_NO_EXCEPTIONS
4074 try
4075 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004076#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004077 typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk;
4078 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4079 typedef __allocator_destructor<_A2> _D2;
4080 _A2 __a2(__a);
4081 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4082 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4083 __cntrl_ = __hold2.release();
4084 __enable_weak_this(__p);
4085#ifndef _LIBCPP_NO_EXCEPTIONS
4086 }
4087 catch (...)
4088 {
4089 __d(__p);
4090 throw;
4091 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004092#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004093}
4094
4095template<class _Tp>
4096template<class _Dp, class _Alloc>
4097shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a)
4098 : __ptr_(0)
4099{
4100#ifndef _LIBCPP_NO_EXCEPTIONS
4101 try
4102 {
Howard Hinnant324bb032010-08-22 00:02:43 +00004103#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004104 typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk;
4105 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4106 typedef __allocator_destructor<_A2> _D2;
4107 _A2 __a2(__a);
4108 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
4109 ::new(__hold2.get()) _CntrlBlk(__p, __d, __a);
4110 __cntrl_ = __hold2.release();
4111#ifndef _LIBCPP_NO_EXCEPTIONS
4112 }
4113 catch (...)
4114 {
4115 __d(__p);
4116 throw;
4117 }
Howard Hinnant324bb032010-08-22 00:02:43 +00004118#endif // _LIBCPP_NO_EXCEPTIONS
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004119}
4120
4121template<class _Tp>
4122template<class _Yp>
4123inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004124shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004125 : __ptr_(__p),
4126 __cntrl_(__r.__cntrl_)
4127{
4128 if (__cntrl_)
4129 __cntrl_->__add_shared();
4130}
4131
4132template<class _Tp>
4133inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004134shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004135 : __ptr_(__r.__ptr_),
4136 __cntrl_(__r.__cntrl_)
4137{
4138 if (__cntrl_)
4139 __cntrl_->__add_shared();
4140}
4141
4142template<class _Tp>
4143template<class _Yp>
4144inline _LIBCPP_INLINE_VISIBILITY
4145shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r,
4146 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004147 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004148 : __ptr_(__r.__ptr_),
4149 __cntrl_(__r.__cntrl_)
4150{
4151 if (__cntrl_)
4152 __cntrl_->__add_shared();
4153}
4154
Howard Hinnant73d21a42010-09-04 23:28:19 +00004155#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004156
4157template<class _Tp>
4158inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004159shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004160 : __ptr_(__r.__ptr_),
4161 __cntrl_(__r.__cntrl_)
4162{
4163 __r.__ptr_ = 0;
4164 __r.__cntrl_ = 0;
4165}
4166
4167template<class _Tp>
4168template<class _Yp>
4169inline _LIBCPP_INLINE_VISIBILITY
4170shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r,
4171 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004172 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004173 : __ptr_(__r.__ptr_),
4174 __cntrl_(__r.__cntrl_)
4175{
4176 __r.__ptr_ = 0;
4177 __r.__cntrl_ = 0;
4178}
4179
Howard Hinnant73d21a42010-09-04 23:28:19 +00004180#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004181
4182template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004183template<class _Yp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004184#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004185shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r)
4186#else
Howard Hinnant92172b82010-08-21 21:14:53 +00004187shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004188#endif
4189 : __ptr_(__r.get())
4190{
4191 typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk;
4192 __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>());
4193 __enable_weak_this(__r.get());
4194 __r.release();
4195}
4196
4197template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004198template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004199#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004200shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4201#else
4202shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4203#endif
4204 typename enable_if<!is_lvalue_reference<_Dp>::value, __nat>::type)
4205 : __ptr_(__r.get())
4206{
4207 typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk;
4208 __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), allocator<_Yp>());
4209 __enable_weak_this(__r.get());
4210 __r.release();
4211}
4212
4213template<class _Tp>
Howard Hinnant57199402012-01-02 17:56:02 +00004214template <class _Yp, class _Dp, class>
Howard Hinnant73d21a42010-09-04 23:28:19 +00004215#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004216shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r,
4217#else
4218shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r,
4219#endif
4220 typename enable_if<is_lvalue_reference<_Dp>::value, __nat>::type)
4221 : __ptr_(__r.get())
4222{
4223 typedef __shared_ptr_pointer<_Yp*,
4224 reference_wrapper<typename remove_reference<_Dp>::type>,
4225 allocator<_Yp> > _CntrlBlk;
4226 __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), allocator<_Yp>());
4227 __enable_weak_this(__r.get());
4228 __r.release();
4229}
4230
4231#ifndef _LIBCPP_HAS_NO_VARIADICS
4232
4233template<class _Tp>
4234template<class ..._Args>
4235shared_ptr<_Tp>
4236shared_ptr<_Tp>::make_shared(_Args&& ...__args)
4237{
4238 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4239 typedef allocator<_CntrlBlk> _A2;
4240 typedef __allocator_destructor<_A2> _D2;
4241 _A2 __a2;
4242 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004243 ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004244 shared_ptr<_Tp> __r;
4245 __r.__ptr_ = __hold2.get()->get();
4246 __r.__cntrl_ = __hold2.release();
4247 __r.__enable_weak_this(__r.__ptr_);
4248 return __r;
4249}
4250
4251template<class _Tp>
4252template<class _Alloc, class ..._Args>
4253shared_ptr<_Tp>
4254shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args)
4255{
4256 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4257 typedef typename _Alloc::template rebind<_CntrlBlk>::other _A2;
4258 typedef __allocator_destructor<_A2> _D2;
4259 _A2 __a2(__a);
4260 unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1));
Howard Hinnant0949eed2011-06-30 21:18:19 +00004261 ::new(__hold2.get()) _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004262 shared_ptr<_Tp> __r;
4263 __r.__ptr_ = __hold2.get()->get();
4264 __r.__cntrl_ = __hold2.release();
4265 __r.__enable_weak_this(__r.__ptr_);
4266 return __r;
4267}
4268
4269#else // _LIBCPP_HAS_NO_VARIADICS
4270
4271template<class _Tp>
4272shared_ptr<_Tp>
4273shared_ptr<_Tp>::make_shared()
4274{
4275 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4276 typedef allocator<_CntrlBlk> _Alloc2;
4277 typedef __allocator_destructor<_Alloc2> _D2;
4278 _Alloc2 __alloc2;
4279 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4280 ::new(__hold2.get()) _CntrlBlk(__alloc2);
4281 shared_ptr<_Tp> __r;
4282 __r.__ptr_ = __hold2.get()->get();
4283 __r.__cntrl_ = __hold2.release();
4284 __r.__enable_weak_this(__r.__ptr_);
4285 return __r;
4286}
4287
4288template<class _Tp>
4289template<class _A0>
4290shared_ptr<_Tp>
4291shared_ptr<_Tp>::make_shared(_A0& __a0)
4292{
4293 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4294 typedef allocator<_CntrlBlk> _Alloc2;
4295 typedef __allocator_destructor<_Alloc2> _D2;
4296 _Alloc2 __alloc2;
4297 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4298 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0);
4299 shared_ptr<_Tp> __r;
4300 __r.__ptr_ = __hold2.get()->get();
4301 __r.__cntrl_ = __hold2.release();
4302 __r.__enable_weak_this(__r.__ptr_);
4303 return __r;
4304}
4305
4306template<class _Tp>
4307template<class _A0, class _A1>
4308shared_ptr<_Tp>
4309shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1)
4310{
4311 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4312 typedef allocator<_CntrlBlk> _Alloc2;
4313 typedef __allocator_destructor<_Alloc2> _D2;
4314 _Alloc2 __alloc2;
4315 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4316 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1);
4317 shared_ptr<_Tp> __r;
4318 __r.__ptr_ = __hold2.get()->get();
4319 __r.__cntrl_ = __hold2.release();
4320 __r.__enable_weak_this(__r.__ptr_);
4321 return __r;
4322}
4323
4324template<class _Tp>
4325template<class _A0, class _A1, class _A2>
4326shared_ptr<_Tp>
4327shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4328{
4329 typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk;
4330 typedef allocator<_CntrlBlk> _Alloc2;
4331 typedef __allocator_destructor<_Alloc2> _D2;
4332 _Alloc2 __alloc2;
4333 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4334 ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2);
4335 shared_ptr<_Tp> __r;
4336 __r.__ptr_ = __hold2.get()->get();
4337 __r.__cntrl_ = __hold2.release();
4338 __r.__enable_weak_this(__r.__ptr_);
4339 return __r;
4340}
4341
4342template<class _Tp>
4343template<class _Alloc>
4344shared_ptr<_Tp>
4345shared_ptr<_Tp>::allocate_shared(const _Alloc& __a)
4346{
4347 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4348 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4349 typedef __allocator_destructor<_Alloc2> _D2;
4350 _Alloc2 __alloc2(__a);
4351 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4352 ::new(__hold2.get()) _CntrlBlk(__a);
4353 shared_ptr<_Tp> __r;
4354 __r.__ptr_ = __hold2.get()->get();
4355 __r.__cntrl_ = __hold2.release();
4356 __r.__enable_weak_this(__r.__ptr_);
4357 return __r;
4358}
4359
4360template<class _Tp>
4361template<class _Alloc, class _A0>
4362shared_ptr<_Tp>
4363shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0)
4364{
4365 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4366 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4367 typedef __allocator_destructor<_Alloc2> _D2;
4368 _Alloc2 __alloc2(__a);
4369 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4370 ::new(__hold2.get()) _CntrlBlk(__a, __a0);
4371 shared_ptr<_Tp> __r;
4372 __r.__ptr_ = __hold2.get()->get();
4373 __r.__cntrl_ = __hold2.release();
4374 __r.__enable_weak_this(__r.__ptr_);
4375 return __r;
4376}
4377
4378template<class _Tp>
4379template<class _Alloc, class _A0, class _A1>
4380shared_ptr<_Tp>
4381shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4382{
4383 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4384 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4385 typedef __allocator_destructor<_Alloc2> _D2;
4386 _Alloc2 __alloc2(__a);
4387 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4388 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1);
4389 shared_ptr<_Tp> __r;
4390 __r.__ptr_ = __hold2.get()->get();
4391 __r.__cntrl_ = __hold2.release();
4392 __r.__enable_weak_this(__r.__ptr_);
4393 return __r;
4394}
4395
4396template<class _Tp>
4397template<class _Alloc, class _A0, class _A1, class _A2>
4398shared_ptr<_Tp>
4399shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4400{
4401 typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk;
4402 typedef typename _Alloc::template rebind<_CntrlBlk>::other _Alloc2;
4403 typedef __allocator_destructor<_Alloc2> _D2;
4404 _Alloc2 __alloc2(__a);
4405 unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1));
4406 ::new(__hold2.get()) _CntrlBlk(__a, __a0, __a1, __a2);
4407 shared_ptr<_Tp> __r;
4408 __r.__ptr_ = __hold2.get()->get();
4409 __r.__cntrl_ = __hold2.release();
4410 __r.__enable_weak_this(__r.__ptr_);
4411 return __r;
4412}
4413
4414#endif // _LIBCPP_HAS_NO_VARIADICS
4415
4416template<class _Tp>
4417shared_ptr<_Tp>::~shared_ptr()
4418{
4419 if (__cntrl_)
4420 __cntrl_->__release_shared();
4421}
4422
4423template<class _Tp>
4424inline _LIBCPP_INLINE_VISIBILITY
4425shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004426shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004427{
4428 shared_ptr(__r).swap(*this);
4429 return *this;
4430}
4431
4432template<class _Tp>
4433template<class _Yp>
4434inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004435typename enable_if
4436<
4437 is_convertible<_Yp*, _Tp*>::value,
4438 shared_ptr<_Tp>&
4439>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004440shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004441{
4442 shared_ptr(__r).swap(*this);
4443 return *this;
4444}
4445
Howard Hinnant73d21a42010-09-04 23:28:19 +00004446#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004447
4448template<class _Tp>
4449inline _LIBCPP_INLINE_VISIBILITY
4450shared_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00004451shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004452{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004453 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004454 return *this;
4455}
4456
4457template<class _Tp>
4458template<class _Yp>
4459inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004460typename enable_if
4461<
4462 is_convertible<_Yp*, _Tp*>::value,
4463 shared_ptr<_Tp>&
4464>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004465shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r)
4466{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004467 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004468 return *this;
4469}
4470
4471template<class _Tp>
4472template<class _Yp>
4473inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004474typename enable_if
4475<
4476 !is_array<_Yp>::value &&
4477 is_convertible<_Yp*, _Tp*>::value,
4478 shared_ptr<_Tp>&
4479>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004480shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r)
4481{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004482 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004483 return *this;
4484}
4485
4486template<class _Tp>
4487template <class _Yp, class _Dp>
4488inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004489typename enable_if
4490<
4491 !is_array<_Yp>::value &&
4492 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4493 shared_ptr<_Tp>&
4494>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004495shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r)
4496{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004497 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004498 return *this;
4499}
4500
Howard Hinnant73d21a42010-09-04 23:28:19 +00004501#else // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004502
4503template<class _Tp>
4504template<class _Yp>
4505inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004506typename enable_if
4507<
4508 !is_array<_Yp>::value &&
4509 is_convertible<_Yp*, _Tp*>::value,
4510 shared_ptr<_Tp>&
4511>::type
Howard Hinnant324bb032010-08-22 00:02:43 +00004512shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r)
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004513{
4514 shared_ptr(__r).swap(*this);
4515 return *this;
4516}
4517
4518template<class _Tp>
4519template <class _Yp, class _Dp>
4520inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004521typename enable_if
4522<
4523 !is_array<_Yp>::value &&
4524 is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value,
4525 shared_ptr<_Tp>&
4526>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004527shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r)
4528{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004529 shared_ptr(_VSTD::move(__r)).swap(*this);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004530 return *this;
4531}
4532
Howard Hinnant73d21a42010-09-04 23:28:19 +00004533#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004534
4535template<class _Tp>
4536inline _LIBCPP_INLINE_VISIBILITY
4537void
Howard Hinnant1694d232011-05-28 14:41:13 +00004538shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004539{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004540 _VSTD::swap(__ptr_, __r.__ptr_);
4541 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004542}
4543
4544template<class _Tp>
4545inline _LIBCPP_INLINE_VISIBILITY
4546void
Howard Hinnant1694d232011-05-28 14:41:13 +00004547shared_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004548{
4549 shared_ptr().swap(*this);
4550}
4551
4552template<class _Tp>
4553template<class _Yp>
4554inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004555typename enable_if
4556<
4557 is_convertible<_Yp*, _Tp*>::value,
4558 void
4559>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004560shared_ptr<_Tp>::reset(_Yp* __p)
4561{
4562 shared_ptr(__p).swap(*this);
4563}
4564
4565template<class _Tp>
4566template<class _Yp, class _Dp>
4567inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004568typename enable_if
4569<
4570 is_convertible<_Yp*, _Tp*>::value,
4571 void
4572>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004573shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d)
4574{
4575 shared_ptr(__p, __d).swap(*this);
4576}
4577
4578template<class _Tp>
4579template<class _Yp, class _Dp, class _Alloc>
4580inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004581typename enable_if
4582<
4583 is_convertible<_Yp*, _Tp*>::value,
4584 void
4585>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004586shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a)
4587{
4588 shared_ptr(__p, __d, __a).swap(*this);
4589}
4590
4591#ifndef _LIBCPP_HAS_NO_VARIADICS
4592
Howard Hinnant324bb032010-08-22 00:02:43 +00004593template<class _Tp, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004594inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004595typename enable_if
4596<
4597 !is_array<_Tp>::value,
4598 shared_ptr<_Tp>
4599>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004600make_shared(_Args&& ...__args)
4601{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004602 return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004603}
4604
Howard Hinnant324bb032010-08-22 00:02:43 +00004605template<class _Tp, class _Alloc, class ..._Args>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004606inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004607typename enable_if
4608<
4609 !is_array<_Tp>::value,
4610 shared_ptr<_Tp>
4611>::type
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004612allocate_shared(const _Alloc& __a, _Args&& ...__args)
4613{
Howard Hinnant0949eed2011-06-30 21:18:19 +00004614 return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004615}
4616
4617#else // _LIBCPP_HAS_NO_VARIADICS
4618
4619template<class _Tp>
4620inline _LIBCPP_INLINE_VISIBILITY
4621shared_ptr<_Tp>
4622make_shared()
4623{
4624 return shared_ptr<_Tp>::make_shared();
4625}
4626
4627template<class _Tp, class _A0>
4628inline _LIBCPP_INLINE_VISIBILITY
4629shared_ptr<_Tp>
4630make_shared(_A0& __a0)
4631{
4632 return shared_ptr<_Tp>::make_shared(__a0);
4633}
4634
4635template<class _Tp, class _A0, class _A1>
4636inline _LIBCPP_INLINE_VISIBILITY
4637shared_ptr<_Tp>
4638make_shared(_A0& __a0, _A1& __a1)
4639{
4640 return shared_ptr<_Tp>::make_shared(__a0, __a1);
4641}
4642
Howard Hinnant324bb032010-08-22 00:02:43 +00004643template<class _Tp, class _A0, class _A1, class _A2>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004644inline _LIBCPP_INLINE_VISIBILITY
4645shared_ptr<_Tp>
4646make_shared(_A0& __a0, _A1& __a1, _A2& __a2)
4647{
4648 return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2);
4649}
4650
4651template<class _Tp, class _Alloc>
4652inline _LIBCPP_INLINE_VISIBILITY
4653shared_ptr<_Tp>
4654allocate_shared(const _Alloc& __a)
4655{
4656 return shared_ptr<_Tp>::allocate_shared(__a);
4657}
4658
4659template<class _Tp, class _Alloc, class _A0>
4660inline _LIBCPP_INLINE_VISIBILITY
4661shared_ptr<_Tp>
4662allocate_shared(const _Alloc& __a, _A0& __a0)
4663{
4664 return shared_ptr<_Tp>::allocate_shared(__a, __a0);
4665}
4666
4667template<class _Tp, class _Alloc, class _A0, class _A1>
4668inline _LIBCPP_INLINE_VISIBILITY
4669shared_ptr<_Tp>
4670allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1)
4671{
4672 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1);
4673}
4674
4675template<class _Tp, class _Alloc, class _A0, class _A1, class _A2>
4676inline _LIBCPP_INLINE_VISIBILITY
4677shared_ptr<_Tp>
4678allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2)
4679{
4680 return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2);
4681}
4682
4683#endif // _LIBCPP_HAS_NO_VARIADICS
4684
4685template<class _Tp, class _Up>
4686inline _LIBCPP_INLINE_VISIBILITY
4687bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004688operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004689{
4690 return __x.get() == __y.get();
4691}
4692
4693template<class _Tp, class _Up>
4694inline _LIBCPP_INLINE_VISIBILITY
4695bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004696operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004697{
4698 return !(__x == __y);
4699}
4700
4701template<class _Tp, class _Up>
4702inline _LIBCPP_INLINE_VISIBILITY
4703bool
Howard Hinnant1694d232011-05-28 14:41:13 +00004704operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004705{
Howard Hinnant3fadda32012-02-21 21:02:58 +00004706 typedef typename common_type<_Tp*, _Up*>::type _V;
4707 return less<_V>()(__x.get(), __y.get());
4708}
4709
4710template<class _Tp, class _Up>
4711inline _LIBCPP_INLINE_VISIBILITY
4712bool
4713operator>(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4714{
4715 return __y < __x;
4716}
4717
4718template<class _Tp, class _Up>
4719inline _LIBCPP_INLINE_VISIBILITY
4720bool
4721operator<=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4722{
4723 return !(__y < __x);
4724}
4725
4726template<class _Tp, class _Up>
4727inline _LIBCPP_INLINE_VISIBILITY
4728bool
4729operator>=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT
4730{
4731 return !(__x < __y);
4732}
4733
4734template<class _Tp>
4735inline _LIBCPP_INLINE_VISIBILITY
4736bool
4737operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4738{
4739 return !__x;
4740}
4741
4742template<class _Tp>
4743inline _LIBCPP_INLINE_VISIBILITY
4744bool
4745operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4746{
4747 return !__x;
4748}
4749
4750template<class _Tp>
4751inline _LIBCPP_INLINE_VISIBILITY
4752bool
4753operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4754{
4755 return static_cast<bool>(__x);
4756}
4757
4758template<class _Tp>
4759inline _LIBCPP_INLINE_VISIBILITY
4760bool
4761operator!=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4762{
4763 return static_cast<bool>(__x);
4764}
4765
4766template<class _Tp>
4767inline _LIBCPP_INLINE_VISIBILITY
4768bool
4769operator<(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4770{
4771 return less<_Tp*>()(__x.get(), nullptr);
4772}
4773
4774template<class _Tp>
4775inline _LIBCPP_INLINE_VISIBILITY
4776bool
4777operator<(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4778{
4779 return less<_Tp*>()(nullptr, __x.get());
4780}
4781
4782template<class _Tp>
4783inline _LIBCPP_INLINE_VISIBILITY
4784bool
4785operator>(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4786{
4787 return nullptr < __x;
4788}
4789
4790template<class _Tp>
4791inline _LIBCPP_INLINE_VISIBILITY
4792bool
4793operator>(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4794{
4795 return __x < nullptr;
4796}
4797
4798template<class _Tp>
4799inline _LIBCPP_INLINE_VISIBILITY
4800bool
4801operator<=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4802{
4803 return !(nullptr < __x);
4804}
4805
4806template<class _Tp>
4807inline _LIBCPP_INLINE_VISIBILITY
4808bool
4809operator<=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4810{
4811 return !(__x < nullptr);
4812}
4813
4814template<class _Tp>
4815inline _LIBCPP_INLINE_VISIBILITY
4816bool
4817operator>=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT
4818{
4819 return !(__x < nullptr);
4820}
4821
4822template<class _Tp>
4823inline _LIBCPP_INLINE_VISIBILITY
4824bool
4825operator>=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT
4826{
4827 return !(nullptr < __x);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004828}
4829
4830template<class _Tp>
4831inline _LIBCPP_INLINE_VISIBILITY
4832void
Howard Hinnant1694d232011-05-28 14:41:13 +00004833swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004834{
4835 __x.swap(__y);
4836}
4837
4838template<class _Tp, class _Up>
4839inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004840typename enable_if
4841<
4842 !is_array<_Tp>::value && !is_array<_Up>::value,
4843 shared_ptr<_Tp>
4844>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004845static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004846{
4847 return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get()));
4848}
4849
4850template<class _Tp, class _Up>
4851inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00004852typename enable_if
4853<
4854 !is_array<_Tp>::value && !is_array<_Up>::value,
4855 shared_ptr<_Tp>
4856>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004857dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004858{
4859 _Tp* __p = dynamic_cast<_Tp*>(__r.get());
4860 return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>();
4861}
4862
4863template<class _Tp, class _Up>
Howard Hinnant57199402012-01-02 17:56:02 +00004864typename enable_if
4865<
4866 is_array<_Tp>::value == is_array<_Up>::value,
4867 shared_ptr<_Tp>
4868>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00004869const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004870{
Howard Hinnant57199402012-01-02 17:56:02 +00004871 typedef typename remove_extent<_Tp>::type _RTp;
4872 return shared_ptr<_Tp>(__r, const_cast<_RTp*>(__r.get()));
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004873}
4874
Howard Hinnantd4444702010-08-11 17:04:31 +00004875#ifndef _LIBCPP_NO_RTTI
4876
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004877template<class _Dp, class _Tp>
4878inline _LIBCPP_INLINE_VISIBILITY
4879_Dp*
Howard Hinnant1694d232011-05-28 14:41:13 +00004880get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004881{
4882 return __p.template __get_deleter<_Dp>();
4883}
4884
Howard Hinnant324bb032010-08-22 00:02:43 +00004885#endif // _LIBCPP_NO_RTTI
Howard Hinnantd4444702010-08-11 17:04:31 +00004886
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004887template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00004888class _LIBCPP_VISIBLE weak_ptr
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004889{
Howard Hinnant324bb032010-08-22 00:02:43 +00004890public:
4891 typedef _Tp element_type;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004892private:
4893 element_type* __ptr_;
4894 __shared_weak_count* __cntrl_;
4895
Howard Hinnant324bb032010-08-22 00:02:43 +00004896public:
Howard Hinnant1694d232011-05-28 14:41:13 +00004897 weak_ptr() _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004898 template<class _Yp> weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004899 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4900 _NOEXCEPT;
4901 weak_ptr(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004902 template<class _Yp> weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnant1694d232011-05-28 14:41:13 +00004903 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4904 _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004905
Howard Hinnant57199402012-01-02 17:56:02 +00004906#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4907 weak_ptr(weak_ptr&& __r) _NOEXCEPT;
4908 template<class _Yp> weak_ptr(weak_ptr<_Yp>&& __r,
4909 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0)
4910 _NOEXCEPT;
4911#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
Howard Hinnant324bb032010-08-22 00:02:43 +00004912 ~weak_ptr();
4913
Howard Hinnant1694d232011-05-28 14:41:13 +00004914 weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT;
Howard Hinnant57199402012-01-02 17:56:02 +00004915 template<class _Yp>
4916 typename enable_if
4917 <
4918 is_convertible<_Yp*, element_type*>::value,
4919 weak_ptr&
4920 >::type
4921 operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT;
4922
4923#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
4924
4925 weak_ptr& operator=(weak_ptr&& __r) _NOEXCEPT;
4926 template<class _Yp>
4927 typename enable_if
4928 <
4929 is_convertible<_Yp*, element_type*>::value,
4930 weak_ptr&
4931 >::type
4932 operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT;
4933
4934#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
4935
4936 template<class _Yp>
4937 typename enable_if
4938 <
4939 is_convertible<_Yp*, element_type*>::value,
4940 weak_ptr&
4941 >::type
4942 operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004943
Howard Hinnant1694d232011-05-28 14:41:13 +00004944 void swap(weak_ptr& __r) _NOEXCEPT;
4945 void reset() _NOEXCEPT;
Howard Hinnant324bb032010-08-22 00:02:43 +00004946
Howard Hinnant82894812010-09-22 16:48:34 +00004947 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004948 long use_count() const _NOEXCEPT
4949 {return __cntrl_ ? __cntrl_->use_count() : 0;}
Howard Hinnant82894812010-09-22 16:48:34 +00004950 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004951 bool expired() const _NOEXCEPT
4952 {return __cntrl_ == 0 || __cntrl_->use_count() == 0;}
4953 shared_ptr<_Tp> lock() const _NOEXCEPT;
Howard Hinnant82894812010-09-22 16:48:34 +00004954 template<class _Up>
4955 _LIBCPP_INLINE_VISIBILITY
4956 bool owner_before(const shared_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004957 {return __cntrl_ < __r.__cntrl_;}
Howard Hinnant82894812010-09-22 16:48:34 +00004958 template<class _Up>
4959 _LIBCPP_INLINE_VISIBILITY
4960 bool owner_before(const weak_ptr<_Up>& __r) const
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004961 {return __cntrl_ < __r.__cntrl_;}
4962
Howard Hinnant82894812010-09-22 16:48:34 +00004963 template <class _Up> friend class _LIBCPP_VISIBLE weak_ptr;
4964 template <class _Up> friend class _LIBCPP_VISIBLE shared_ptr;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004965};
4966
4967template<class _Tp>
4968inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004969weak_ptr<_Tp>::weak_ptr() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004970 : __ptr_(0),
4971 __cntrl_(0)
4972{
4973}
4974
4975template<class _Tp>
4976inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00004977weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004978 : __ptr_(__r.__ptr_),
4979 __cntrl_(__r.__cntrl_)
4980{
4981 if (__cntrl_)
4982 __cntrl_->__add_weak();
4983}
4984
4985template<class _Tp>
4986template<class _Yp>
4987inline _LIBCPP_INLINE_VISIBILITY
4988weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00004989 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00004990 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004991 : __ptr_(__r.__ptr_),
4992 __cntrl_(__r.__cntrl_)
4993{
4994 if (__cntrl_)
4995 __cntrl_->__add_weak();
4996}
4997
4998template<class _Tp>
4999template<class _Yp>
5000inline _LIBCPP_INLINE_VISIBILITY
5001weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r,
Howard Hinnante003ce42011-05-22 00:09:02 +00005002 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
Howard Hinnant1694d232011-05-28 14:41:13 +00005003 _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005004 : __ptr_(__r.__ptr_),
5005 __cntrl_(__r.__cntrl_)
5006{
5007 if (__cntrl_)
5008 __cntrl_->__add_weak();
5009}
5010
Howard Hinnant57199402012-01-02 17:56:02 +00005011#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5012
5013template<class _Tp>
5014inline _LIBCPP_INLINE_VISIBILITY
5015weak_ptr<_Tp>::weak_ptr(weak_ptr&& __r) _NOEXCEPT
5016 : __ptr_(__r.__ptr_),
5017 __cntrl_(__r.__cntrl_)
5018{
5019 __r.__ptr_ = 0;
5020 __r.__cntrl_ = 0;
5021}
5022
5023template<class _Tp>
5024template<class _Yp>
5025inline _LIBCPP_INLINE_VISIBILITY
5026weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp>&& __r,
5027 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type)
5028 _NOEXCEPT
5029 : __ptr_(__r.__ptr_),
5030 __cntrl_(__r.__cntrl_)
5031{
5032 __r.__ptr_ = 0;
5033 __r.__cntrl_ = 0;
5034}
5035
5036#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5037
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005038template<class _Tp>
5039weak_ptr<_Tp>::~weak_ptr()
5040{
5041 if (__cntrl_)
5042 __cntrl_->__release_weak();
5043}
5044
5045template<class _Tp>
5046inline _LIBCPP_INLINE_VISIBILITY
5047weak_ptr<_Tp>&
Howard Hinnant1694d232011-05-28 14:41:13 +00005048weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005049{
5050 weak_ptr(__r).swap(*this);
5051 return *this;
5052}
5053
5054template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005055template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005056inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005057typename enable_if
5058<
5059 is_convertible<_Yp*, _Tp*>::value,
5060 weak_ptr<_Tp>&
5061>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005062weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005063{
5064 weak_ptr(__r).swap(*this);
5065 return *this;
5066}
5067
Howard Hinnant57199402012-01-02 17:56:02 +00005068#ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
5069
5070template<class _Tp>
5071inline _LIBCPP_INLINE_VISIBILITY
5072weak_ptr<_Tp>&
5073weak_ptr<_Tp>::operator=(weak_ptr&& __r) _NOEXCEPT
5074{
5075 weak_ptr(_VSTD::move(__r)).swap(*this);
5076 return *this;
5077}
5078
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005079template<class _Tp>
Howard Hinnant324bb032010-08-22 00:02:43 +00005080template<class _Yp>
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005081inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant57199402012-01-02 17:56:02 +00005082typename enable_if
5083<
5084 is_convertible<_Yp*, _Tp*>::value,
5085 weak_ptr<_Tp>&
5086>::type
5087weak_ptr<_Tp>::operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT
5088{
5089 weak_ptr(_VSTD::move(__r)).swap(*this);
5090 return *this;
5091}
5092
5093#endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES
5094
5095template<class _Tp>
5096template<class _Yp>
5097inline _LIBCPP_INLINE_VISIBILITY
5098typename enable_if
5099<
5100 is_convertible<_Yp*, _Tp*>::value,
5101 weak_ptr<_Tp>&
5102>::type
Howard Hinnant1694d232011-05-28 14:41:13 +00005103weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005104{
5105 weak_ptr(__r).swap(*this);
5106 return *this;
5107}
5108
5109template<class _Tp>
5110inline _LIBCPP_INLINE_VISIBILITY
5111void
Howard Hinnant1694d232011-05-28 14:41:13 +00005112weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005113{
Howard Hinnant0949eed2011-06-30 21:18:19 +00005114 _VSTD::swap(__ptr_, __r.__ptr_);
5115 _VSTD::swap(__cntrl_, __r.__cntrl_);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005116}
5117
5118template<class _Tp>
5119inline _LIBCPP_INLINE_VISIBILITY
5120void
Howard Hinnant1694d232011-05-28 14:41:13 +00005121swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005122{
5123 __x.swap(__y);
5124}
5125
5126template<class _Tp>
5127inline _LIBCPP_INLINE_VISIBILITY
5128void
Howard Hinnant1694d232011-05-28 14:41:13 +00005129weak_ptr<_Tp>::reset() _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005130{
5131 weak_ptr().swap(*this);
5132}
5133
5134template<class _Tp>
5135template<class _Yp>
5136shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r,
5137 typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type)
5138 : __ptr_(__r.__ptr_),
5139 __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_)
5140{
5141 if (__cntrl_ == 0)
5142#ifndef _LIBCPP_NO_EXCEPTIONS
5143 throw bad_weak_ptr();
5144#else
5145 assert(!"bad_weak_ptr");
5146#endif
5147}
5148
5149template<class _Tp>
5150shared_ptr<_Tp>
Howard Hinnant1694d232011-05-28 14:41:13 +00005151weak_ptr<_Tp>::lock() const _NOEXCEPT
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005152{
5153 shared_ptr<_Tp> __r;
5154 __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_;
5155 if (__r.__cntrl_)
5156 __r.__ptr_ = __ptr_;
5157 return __r;
5158}
5159
Howard Hinnant324bb032010-08-22 00:02:43 +00005160template <class _Tp> struct owner_less;
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005161
5162template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005163struct _LIBCPP_VISIBLE owner_less<shared_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005164 : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool>
Howard Hinnant324bb032010-08-22 00:02:43 +00005165{
5166 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005167 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005168 bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5169 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005170 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005171 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5172 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005173 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005174 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5175 {return __x.owner_before(__y);}
Howard Hinnant324bb032010-08-22 00:02:43 +00005176};
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005177
5178template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005179struct _LIBCPP_VISIBLE owner_less<weak_ptr<_Tp> >
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005180 : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool>
5181{
Howard Hinnant324bb032010-08-22 00:02:43 +00005182 typedef bool result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005183 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005184 bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5185 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005186 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005187 bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const
5188 {return __x.owner_before(__y);}
Howard Hinnant82894812010-09-22 16:48:34 +00005189 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005190 bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const
5191 {return __x.owner_before(__y);}
5192};
5193
5194template<class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005195class _LIBCPP_VISIBLE enable_shared_from_this
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005196{
5197 mutable weak_ptr<_Tp> __weak_this_;
Howard Hinnant324bb032010-08-22 00:02:43 +00005198protected:
Howard Hinnant82894812010-09-22 16:48:34 +00005199 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005200 enable_shared_from_this() _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005201 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005202 enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {}
Howard Hinnant82894812010-09-22 16:48:34 +00005203 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005204 enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT
5205 {return *this;}
Howard Hinnant82894812010-09-22 16:48:34 +00005206 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005207 ~enable_shared_from_this() {}
Howard Hinnant324bb032010-08-22 00:02:43 +00005208public:
Howard Hinnant82894812010-09-22 16:48:34 +00005209 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005210 shared_ptr<_Tp> shared_from_this()
5211 {return shared_ptr<_Tp>(__weak_this_);}
Howard Hinnant82894812010-09-22 16:48:34 +00005212 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005213 shared_ptr<_Tp const> shared_from_this() const
5214 {return shared_ptr<const _Tp>(__weak_this_);}
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005215
5216 template <class _Up> friend class shared_ptr;
5217};
5218
Howard Hinnant21aefc32010-06-03 16:42:57 +00005219template <class _Tp>
Howard Hinnant82894812010-09-22 16:48:34 +00005220struct _LIBCPP_VISIBLE hash<shared_ptr<_Tp> >
Howard Hinnant21aefc32010-06-03 16:42:57 +00005221{
5222 typedef shared_ptr<_Tp> argument_type;
5223 typedef size_t result_type;
Howard Hinnant82894812010-09-22 16:48:34 +00005224 _LIBCPP_INLINE_VISIBILITY
Howard Hinnant1694d232011-05-28 14:41:13 +00005225 result_type operator()(const argument_type& __ptr) const _NOEXCEPT
Howard Hinnant21aefc32010-06-03 16:42:57 +00005226 {
5227 return hash<_Tp*>()(__ptr.get());
5228 }
5229};
5230
Howard Hinnant99968442011-11-29 18:15:50 +00005231template<class _CharT, class _Traits, class _Yp>
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005232inline _LIBCPP_INLINE_VISIBILITY
5233basic_ostream<_CharT, _Traits>&
Howard Hinnant99968442011-11-29 18:15:50 +00005234operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p);
Howard Hinnant464aa5c2011-07-18 15:51:59 +00005235
Howard Hinnant324bb032010-08-22 00:02:43 +00005236//enum class
Howard Hinnant82894812010-09-22 16:48:34 +00005237struct _LIBCPP_VISIBLE pointer_safety
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005238{
5239 enum _
5240 {
5241 relaxed,
5242 preferred,
5243 strict
5244 };
5245
5246 _ __v_;
5247
Howard Hinnant82894812010-09-22 16:48:34 +00005248 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005249 pointer_safety(_ __v) : __v_(__v) {}
Howard Hinnant82894812010-09-22 16:48:34 +00005250 _LIBCPP_INLINE_VISIBILITY
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005251 operator int() const {return __v_;}
5252};
5253
5254void declare_reachable(void* __p);
5255void declare_no_pointers(char* __p, size_t __n);
5256void undeclare_no_pointers(char* __p, size_t __n);
Howard Hinnant1694d232011-05-28 14:41:13 +00005257pointer_safety get_pointer_safety() _NOEXCEPT;
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005258void* __undeclare_reachable(void* __p);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005259
5260template <class _Tp>
5261inline _LIBCPP_INLINE_VISIBILITY
Howard Hinnant324bb032010-08-22 00:02:43 +00005262_Tp*
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005263undeclare_reachable(_Tp* __p)
5264{
5265 return static_cast<_Tp*>(__undeclare_reachable(__p));
5266}
5267
Howard Hinnant2b1b2d42011-06-14 19:58:17 +00005268void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space);
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00005269
5270_LIBCPP_END_NAMESPACE_STD
5271
5272#endif // _LIBCPP_MEMORY