Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | // -*- C++ -*- |
| 2 | //===-------------------------- memory ------------------------------------===// |
| 3 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 4 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 6 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 7 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 8 | // |
| 9 | //===----------------------------------------------------------------------===// |
| 10 | |
| 11 | #ifndef _LIBCPP_MEMORY |
| 12 | #define _LIBCPP_MEMORY |
| 13 | |
| 14 | /* |
| 15 | memory synopsis |
| 16 | |
| 17 | namespace std |
| 18 | { |
| 19 | |
| 20 | struct allocator_arg_t { }; |
| 21 | constexpr allocator_arg_t allocator_arg = allocator_arg_t(); |
| 22 | |
| 23 | template <class T, class Alloc> struct uses_allocator; |
| 24 | |
| 25 | template <class Ptr> |
| 26 | struct pointer_traits |
| 27 | { |
| 28 | typedef Ptr pointer; |
| 29 | typedef <details> element_type; |
| 30 | typedef <details> difference_type; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 31 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 32 | template <class U> using rebind = <details>; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 33 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 34 | static pointer pointer_to(<details>); |
| 35 | }; |
| 36 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 37 | template <class T> |
| 38 | struct 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 Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 49 | template <class Alloc> |
| 50 | struct 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 Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 67 | | pointer_traits<pointer>::difference_type |
| 68 | difference_type; |
| 69 | typedef Alloc::size_type |
| 70 | | make_unsigned<difference_type>::type |
| 71 | size_type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 72 | 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 Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 85 | static void deallocate(allocator_type& a, pointer p, size_type n) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 86 | |
| 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 | |
Marshall Clow | 08b4f3f | 2013-08-27 20:22:15 +0000 | [diff] [blame] | 93 | static size_type max_size(const allocator_type& a); // noexcept in C++14 |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 94 | |
| 95 | static allocator_type |
| 96 | select_on_container_copy_construction(const allocator_type& a); |
| 97 | }; |
| 98 | |
| 99 | template <> |
| 100 | class allocator<void> |
| 101 | { |
| 102 | public: |
| 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 | |
| 110 | template <class T> |
| 111 | class allocator |
| 112 | { |
| 113 | public: |
| 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 Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 124 | 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 Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 130 | pointer allocate(size_type, allocator<void>::const_pointer hint = 0); |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 131 | 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 Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 137 | }; |
| 138 | |
| 139 | template <class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 140 | bool operator==(const allocator<T>&, const allocator<U>&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 141 | |
| 142 | template <class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 143 | bool operator!=(const allocator<T>&, const allocator<U>&) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 144 | |
| 145 | template <class OutputIterator, class T> |
| 146 | class 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 | { |
| 153 | public: |
| 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 Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 161 | template <class T> pair<T*,ptrdiff_t> get_temporary_buffer(ptrdiff_t n) noexcept; |
| 162 | template <class T> void return_temporary_buffer(T* p) noexcept; |
| 163 | |
| 164 | template <class T> T* addressof(T& r) noexcept; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 165 | |
| 166 | template <class InputIterator, class ForwardIterator> |
| 167 | ForwardIterator |
| 168 | uninitialized_copy(InputIterator first, InputIterator last, ForwardIterator result); |
| 169 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 170 | template <class InputIterator, class Size, class ForwardIterator> |
| 171 | ForwardIterator |
| 172 | uninitialized_copy_n(InputIterator first, Size n, ForwardIterator result); |
| 173 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 174 | template <class ForwardIterator, class T> |
| 175 | void uninitialized_fill(ForwardIterator first, ForwardIterator last, const T& x); |
| 176 | |
| 177 | template <class ForwardIterator, class Size, class T> |
Howard Hinnant | 2f6a627 | 2010-11-18 16:13:03 +0000 | [diff] [blame] | 178 | ForwardIterator |
| 179 | uninitialized_fill_n(ForwardIterator first, Size n, const T& x); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 180 | |
| 181 | template <class Y> struct auto_ptr_ref {}; |
| 182 | |
| 183 | template<class X> |
| 184 | class auto_ptr |
| 185 | { |
| 186 | public: |
| 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 Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 208 | template <class T> |
| 209 | struct default_delete |
| 210 | { |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 211 | constexpr default_delete() noexcept = default; |
| 212 | template <class U> default_delete(const default_delete<U>&) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 213 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 214 | void operator()(T*) const noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 215 | }; |
| 216 | |
| 217 | template <class T> |
| 218 | struct default_delete<T[]> |
| 219 | { |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 220 | constexpr default_delete() noexcept = default; |
| 221 | void operator()(T*) const noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 222 | template <class U> void operator()(U*) const = delete; |
| 223 | }; |
| 224 | |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 225 | template <class T, class D = default_delete<T>> |
| 226 | class unique_ptr |
| 227 | { |
| 228 | public: |
| 229 | typedef see below pointer; |
| 230 | typedef T element_type; |
| 231 | typedef D deleter_type; |
| 232 | |
| 233 | // constructors |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 234 | 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 Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 240 | template <class U, class E> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 241 | unique_ptr(unique_ptr<U, E>&& u) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 242 | template <class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 243 | unique_ptr(auto_ptr<U>&& u) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 244 | |
| 245 | // destructor |
| 246 | ~unique_ptr(); |
| 247 | |
| 248 | // assignment |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 249 | 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 Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 252 | |
| 253 | // observers |
| 254 | typename add_lvalue_reference<T>::type operator*() const; |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 255 | 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 Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 260 | |
| 261 | // modifiers |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 262 | pointer release() noexcept; |
| 263 | void reset(pointer p = pointer()) noexcept; |
| 264 | void swap(unique_ptr& u) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | template <class T, class D> |
| 268 | class unique_ptr<T[], D> |
| 269 | { |
| 270 | public: |
| 271 | typedef implementation-defined pointer; |
| 272 | typedef T element_type; |
| 273 | typedef D deleter_type; |
| 274 | |
| 275 | // constructors |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 276 | 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 Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 282 | |
| 283 | // destructor |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 284 | ~unique_ptr(); |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 285 | |
| 286 | // assignment |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 287 | unique_ptr& operator=(unique_ptr&& u) noexcept; |
| 288 | unique_ptr& operator=(nullptr_t) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 289 | |
| 290 | // observers |
| 291 | T& operator[](size_t i) const; |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 292 | 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 Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 296 | |
| 297 | // modifiers |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 298 | pointer release() noexcept; |
| 299 | void reset(pointer p = pointer()) noexcept; |
| 300 | void reset(nullptr_t) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 301 | template <class U> void reset(U) = delete; |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 302 | void swap(unique_ptr& u) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 303 | }; |
| 304 | |
| 305 | template <class T, class D> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 306 | void swap(unique_ptr<T, D>& x, unique_ptr<T, D>& y) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 307 | |
| 308 | template <class T1, class D1, class T2, class D2> |
| 309 | bool operator==(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y); |
| 310 | template <class T1, class D1, class T2, class D2> |
| 311 | bool operator!=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y); |
| 312 | template <class T1, class D1, class T2, class D2> |
| 313 | bool operator<(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y); |
| 314 | template <class T1, class D1, class T2, class D2> |
| 315 | bool operator<=(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y); |
| 316 | template <class T1, class D1, class T2, class D2> |
| 317 | bool operator>(const unique_ptr<T1, D1>& x, const unique_ptr<T2, D2>& y); |
| 318 | template <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 Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 321 | template <class T, class D> |
| 322 | bool operator==(const unique_ptr<T, D>& x, nullptr_t) noexcept; |
| 323 | template <class T, class D> |
| 324 | bool operator==(nullptr_t, const unique_ptr<T, D>& y) noexcept; |
| 325 | template <class T, class D> |
| 326 | bool operator!=(const unique_ptr<T, D>& x, nullptr_t) noexcept; |
| 327 | template <class T, class D> |
| 328 | bool operator!=(nullptr_t, const unique_ptr<T, D>& y) noexcept; |
| 329 | |
| 330 | template <class T, class D> |
| 331 | bool operator<(const unique_ptr<T, D>& x, nullptr_t); |
| 332 | template <class T, class D> |
| 333 | bool operator<(nullptr_t, const unique_ptr<T, D>& y); |
| 334 | template <class T, class D> |
| 335 | bool operator<=(const unique_ptr<T, D>& x, nullptr_t); |
| 336 | template <class T, class D> |
| 337 | bool operator<=(nullptr_t, const unique_ptr<T, D>& y); |
| 338 | template <class T, class D> |
| 339 | bool operator>(const unique_ptr<T, D>& x, nullptr_t); |
| 340 | template <class T, class D> |
| 341 | bool operator>(nullptr_t, const unique_ptr<T, D>& y); |
| 342 | template <class T, class D> |
| 343 | bool operator>=(const unique_ptr<T, D>& x, nullptr_t); |
| 344 | template <class T, class D> |
| 345 | bool operator>=(nullptr_t, const unique_ptr<T, D>& y); |
| 346 | |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 347 | class bad_weak_ptr |
| 348 | : public std::exception |
| 349 | { |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 350 | bad_weak_ptr() noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 351 | }; |
| 352 | |
Marshall Clow | fd7481e | 2013-07-01 18:16:03 +0000 | [diff] [blame] | 353 | template<class T, class... Args> unique_ptr<T> make_unique(Args&&... args); // C++14 |
| 354 | template<class T> unique_ptr<T> make_unique(size_t n); // C++14 |
| 355 | template<class T, class... Args> unspecified make_unique(Args&&...) = delete; // C++14, T == U[N] |
| 356 | |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 357 | template<class T> |
| 358 | class shared_ptr |
| 359 | { |
| 360 | public: |
| 361 | typedef T element_type; |
| 362 | |
| 363 | // constructors: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 364 | constexpr shared_ptr() noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 365 | template<class Y> explicit shared_ptr(Y* p); |
| 366 | template<class Y, class D> shared_ptr(Y* p, D d); |
| 367 | template<class Y, class D, class A> shared_ptr(Y* p, D d, A a); |
| 368 | template <class D> shared_ptr(nullptr_t p, D d); |
| 369 | template <class D, class A> shared_ptr(nullptr_t p, D d, A a); |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 370 | template<class Y> shared_ptr(const shared_ptr<Y>& r, T *p) noexcept; |
| 371 | shared_ptr(const shared_ptr& r) noexcept; |
| 372 | template<class Y> shared_ptr(const shared_ptr<Y>& r) noexcept; |
| 373 | shared_ptr(shared_ptr&& r) noexcept; |
| 374 | template<class Y> shared_ptr(shared_ptr<Y>&& r) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 375 | template<class Y> explicit shared_ptr(const weak_ptr<Y>& r); |
| 376 | template<class Y> shared_ptr(auto_ptr<Y>&& r); |
| 377 | template <class Y, class D> shared_ptr(unique_ptr<Y, D>&& r); |
| 378 | shared_ptr(nullptr_t) : shared_ptr() { } |
| 379 | |
| 380 | // destructor: |
| 381 | ~shared_ptr(); |
| 382 | |
| 383 | // assignment: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 384 | shared_ptr& operator=(const shared_ptr& r) noexcept; |
| 385 | template<class Y> shared_ptr& operator=(const shared_ptr<Y>& r) noexcept; |
| 386 | shared_ptr& operator=(shared_ptr&& r) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 387 | template<class Y> shared_ptr& operator=(shared_ptr<Y>&& r); |
| 388 | template<class Y> shared_ptr& operator=(auto_ptr<Y>&& r); |
| 389 | template <class Y, class D> shared_ptr& operator=(unique_ptr<Y, D>&& r); |
| 390 | |
| 391 | // modifiers: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 392 | void swap(shared_ptr& r) noexcept; |
| 393 | void reset() noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 394 | template<class Y> void reset(Y* p); |
| 395 | template<class Y, class D> void reset(Y* p, D d); |
| 396 | template<class Y, class D, class A> void reset(Y* p, D d, A a); |
| 397 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 398 | // observers: |
| 399 | T* get() const noexcept; |
| 400 | T& operator*() const noexcept; |
| 401 | T* operator->() const noexcept; |
| 402 | long use_count() const noexcept; |
| 403 | bool unique() const noexcept; |
| 404 | explicit operator bool() const noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 405 | template<class U> bool owner_before(shared_ptr<U> const& b) const; |
| 406 | template<class U> bool owner_before(weak_ptr<U> const& b) const; |
| 407 | }; |
| 408 | |
| 409 | // shared_ptr comparisons: |
| 410 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 411 | bool operator==(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 412 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 413 | bool operator!=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 414 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 415 | bool operator<(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 416 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 417 | bool operator>(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 418 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 419 | bool operator<=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 420 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 421 | bool operator>=(shared_ptr<T> const& a, shared_ptr<U> const& b) noexcept; |
| 422 | |
| 423 | template <class T> |
| 424 | bool operator==(const shared_ptr<T>& x, nullptr_t) noexcept; |
| 425 | template <class T> |
| 426 | bool operator==(nullptr_t, const shared_ptr<T>& y) noexcept; |
| 427 | template <class T> |
| 428 | bool operator!=(const shared_ptr<T>& x, nullptr_t) noexcept; |
| 429 | template <class T> |
| 430 | bool operator!=(nullptr_t, const shared_ptr<T>& y) noexcept; |
| 431 | template <class T> |
| 432 | bool operator<(const shared_ptr<T>& x, nullptr_t) noexcept; |
| 433 | template <class T> |
| 434 | bool operator<(nullptr_t, const shared_ptr<T>& y) noexcept; |
| 435 | template <class T> |
| 436 | bool operator<=(const shared_ptr<T>& x, nullptr_t) noexcept; |
| 437 | template <class T> |
| 438 | bool operator<=(nullptr_t, const shared_ptr<T>& y) noexcept; |
| 439 | template <class T> |
| 440 | bool operator>(const shared_ptr<T>& x, nullptr_t) noexcept; |
| 441 | template <class T> |
| 442 | bool operator>(nullptr_t, const shared_ptr<T>& y) noexcept; |
| 443 | template <class T> |
| 444 | bool operator>=(const shared_ptr<T>& x, nullptr_t) noexcept; |
| 445 | template <class T> |
| 446 | bool operator>=(nullptr_t, const shared_ptr<T>& y) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 447 | |
| 448 | // shared_ptr specialized algorithms: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 449 | template<class T> void swap(shared_ptr<T>& a, shared_ptr<T>& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 450 | |
| 451 | // shared_ptr casts: |
| 452 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 453 | shared_ptr<T> static_pointer_cast(shared_ptr<U> const& r) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 454 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 455 | shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const& r) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 456 | template<class T, class U> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 457 | shared_ptr<T> const_pointer_cast(shared_ptr<U> const& r) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 458 | |
| 459 | // shared_ptr I/O: |
| 460 | template<class E, class T, class Y> |
| 461 | basic_ostream<E, T>& operator<< (basic_ostream<E, T>& os, shared_ptr<Y> const& p); |
| 462 | |
| 463 | // shared_ptr get_deleter: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 464 | template<class D, class T> D* get_deleter(shared_ptr<T> const& p) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 465 | |
| 466 | template<class T, class... Args> |
| 467 | shared_ptr<T> make_shared(Args&&... args); |
| 468 | template<class T, class A, class... Args> |
| 469 | shared_ptr<T> allocate_shared(const A& a, Args&&... args); |
| 470 | |
| 471 | template<class T> |
| 472 | class weak_ptr |
| 473 | { |
| 474 | public: |
| 475 | typedef T element_type; |
| 476 | |
| 477 | // constructors |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 478 | constexpr weak_ptr() noexcept; |
| 479 | template<class Y> weak_ptr(shared_ptr<Y> const& r) noexcept; |
| 480 | weak_ptr(weak_ptr const& r) noexcept; |
| 481 | template<class Y> weak_ptr(weak_ptr<Y> const& r) noexcept; |
Marshall Clow | 23ef151 | 2014-03-05 03:12:04 +0000 | [diff] [blame] | 482 | weak_ptr(weak_ptr&& r) noexcept; // C++14 |
| 483 | template<class Y> weak_ptr(weak_ptr<Y>&& r) noexcept; // C++14 |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 484 | |
| 485 | // destructor |
| 486 | ~weak_ptr(); |
| 487 | |
| 488 | // assignment |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 489 | weak_ptr& operator=(weak_ptr const& r) noexcept; |
| 490 | template<class Y> weak_ptr& operator=(weak_ptr<Y> const& r) noexcept; |
| 491 | template<class Y> weak_ptr& operator=(shared_ptr<Y> const& r) noexcept; |
Marshall Clow | 23ef151 | 2014-03-05 03:12:04 +0000 | [diff] [blame] | 492 | weak_ptr& operator=(weak_ptr&& r) noexcept; // C++14 |
| 493 | template<class Y> weak_ptr& operator=(weak_ptr<Y>&& r) noexcept; // C++14 |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 494 | |
| 495 | // modifiers |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 496 | void swap(weak_ptr& r) noexcept; |
| 497 | void reset() noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 498 | |
| 499 | // observers |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 500 | long use_count() const noexcept; |
| 501 | bool expired() const noexcept; |
| 502 | shared_ptr<T> lock() const noexcept; |
Marshall Clow | 1b5f3ad | 2013-09-03 14:37:50 +0000 | [diff] [blame] | 503 | template<class U> bool owner_before(shared_ptr<U> const& b) const; |
| 504 | template<class U> bool owner_before(weak_ptr<U> const& b) const; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 505 | }; |
| 506 | |
| 507 | // weak_ptr specialized algorithms: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 508 | template<class T> void swap(weak_ptr<T>& a, weak_ptr<T>& b) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 509 | |
| 510 | // class owner_less: |
| 511 | template<class T> struct owner_less; |
| 512 | |
| 513 | template<class T> |
| 514 | struct owner_less<shared_ptr<T>> |
| 515 | : binary_function<shared_ptr<T>, shared_ptr<T>, bool> |
| 516 | { |
| 517 | typedef bool result_type; |
| 518 | bool operator()(shared_ptr<T> const&, shared_ptr<T> const&) const; |
| 519 | bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const; |
| 520 | bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const; |
| 521 | }; |
| 522 | |
| 523 | template<class T> |
| 524 | struct owner_less<weak_ptr<T>> |
| 525 | : binary_function<weak_ptr<T>, weak_ptr<T>, bool> |
| 526 | { |
| 527 | typedef bool result_type; |
| 528 | bool operator()(weak_ptr<T> const&, weak_ptr<T> const&) const; |
| 529 | bool operator()(shared_ptr<T> const&, weak_ptr<T> const&) const; |
| 530 | bool operator()(weak_ptr<T> const&, shared_ptr<T> const&) const; |
| 531 | }; |
| 532 | |
| 533 | template<class T> |
| 534 | class enable_shared_from_this |
| 535 | { |
| 536 | protected: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 537 | constexpr enable_shared_from_this() noexcept; |
| 538 | enable_shared_from_this(enable_shared_from_this const&) noexcept; |
| 539 | enable_shared_from_this& operator=(enable_shared_from_this const&) noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 540 | ~enable_shared_from_this(); |
| 541 | public: |
| 542 | shared_ptr<T> shared_from_this(); |
| 543 | shared_ptr<T const> shared_from_this() const; |
| 544 | }; |
| 545 | |
| 546 | template<class T> |
| 547 | bool atomic_is_lock_free(const shared_ptr<T>* p); |
| 548 | template<class T> |
| 549 | shared_ptr<T> atomic_load(const shared_ptr<T>* p); |
| 550 | template<class T> |
| 551 | shared_ptr<T> atomic_load_explicit(const shared_ptr<T>* p, memory_order mo); |
| 552 | template<class T> |
| 553 | void atomic_store(shared_ptr<T>* p, shared_ptr<T> r); |
| 554 | template<class T> |
| 555 | void atomic_store_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo); |
| 556 | template<class T> |
| 557 | shared_ptr<T> atomic_exchange(shared_ptr<T>* p, shared_ptr<T> r); |
| 558 | template<class T> |
| 559 | shared_ptr<T> |
| 560 | atomic_exchange_explicit(shared_ptr<T>* p, shared_ptr<T> r, memory_order mo); |
| 561 | template<class T> |
| 562 | bool |
| 563 | atomic_compare_exchange_weak(shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w); |
| 564 | template<class T> |
| 565 | bool |
| 566 | atomic_compare_exchange_strong( shared_ptr<T>* p, shared_ptr<T>* v, shared_ptr<T> w); |
| 567 | template<class T> |
| 568 | bool |
| 569 | atomic_compare_exchange_weak_explicit(shared_ptr<T>* p, shared_ptr<T>* v, |
| 570 | shared_ptr<T> w, memory_order success, |
| 571 | memory_order failure); |
| 572 | template<class T> |
| 573 | bool |
| 574 | atomic_compare_exchange_strong_explicit(shared_ptr<T>* p, shared_ptr<T>* v, |
| 575 | shared_ptr<T> w, memory_order success, |
| 576 | memory_order failure); |
| 577 | // Hash support |
| 578 | template <class T> struct hash; |
| 579 | template <class T, class D> struct hash<unique_ptr<T, D> >; |
| 580 | template <class T> struct hash<shared_ptr<T> >; |
| 581 | |
| 582 | // Pointer safety |
| 583 | enum class pointer_safety { relaxed, preferred, strict }; |
| 584 | void declare_reachable(void *p); |
| 585 | template <class T> T *undeclare_reachable(T *p); |
| 586 | void declare_no_pointers(char *p, size_t n); |
| 587 | void undeclare_no_pointers(char *p, size_t n); |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 588 | pointer_safety get_pointer_safety() noexcept; |
Howard Hinnant | e92c3d7 | 2010-08-19 18:39:17 +0000 | [diff] [blame] | 589 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 590 | void* align(size_t alignment, size_t size, void*& ptr, size_t& space); |
| 591 | |
| 592 | } // std |
| 593 | |
| 594 | */ |
| 595 | |
| 596 | #include <__config> |
| 597 | #include <type_traits> |
| 598 | #include <typeinfo> |
| 599 | #include <cstddef> |
| 600 | #include <cstdint> |
| 601 | #include <new> |
| 602 | #include <utility> |
| 603 | #include <limits> |
| 604 | #include <iterator> |
| 605 | #include <__functional_base> |
Howard Hinnant | 464aa5c | 2011-07-18 15:51:59 +0000 | [diff] [blame] | 606 | #include <iosfwd> |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 607 | #include <tuple> |
Howard Hinnant | b0bfd9b | 2012-02-15 00:41:34 +0000 | [diff] [blame] | 608 | #include <cstring> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 609 | #if defined(_LIBCPP_NO_EXCEPTIONS) |
| 610 | #include <cassert> |
| 611 | #endif |
| 612 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 613 | #if __has_feature(cxx_atomic) && !defined(_LIBCPP_HAS_NO_THREADS) |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 614 | # include <atomic> |
| 615 | #endif |
| 616 | |
Howard Hinnant | 66c6f97 | 2011-11-29 16:45:27 +0000 | [diff] [blame] | 617 | #include <__undef_min_max> |
Saleem Abdulrasool | f1b30c4 | 2015-02-13 22:15:32 +0000 | [diff] [blame^] | 618 | #include <__undef___deallocate> |
Howard Hinnant | 66c6f97 | 2011-11-29 16:45:27 +0000 | [diff] [blame] | 619 | |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 620 | #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 621 | #pragma GCC system_header |
Howard Hinnant | 08e1747 | 2011-10-17 20:05:10 +0000 | [diff] [blame] | 622 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 623 | |
| 624 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 625 | |
Howard Hinnant | a4e87ab | 2013-08-08 18:38:55 +0000 | [diff] [blame] | 626 | // addressof moved to <__functional_base> |
Douglas Gregor | 35d2fcf | 2011-06-22 22:17:44 +0000 | [diff] [blame] | 627 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 628 | template <class _Tp> class allocator; |
| 629 | |
| 630 | template <> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 631 | class _LIBCPP_TYPE_VIS_ONLY allocator<void> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 632 | { |
| 633 | public: |
| 634 | typedef void* pointer; |
| 635 | typedef const void* const_pointer; |
| 636 | typedef void value_type; |
| 637 | |
| 638 | template <class _Up> struct rebind {typedef allocator<_Up> other;}; |
| 639 | }; |
| 640 | |
Howard Hinnant | a187787 | 2012-01-19 23:15:22 +0000 | [diff] [blame] | 641 | template <> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 642 | class _LIBCPP_TYPE_VIS_ONLY allocator<const void> |
Howard Hinnant | a187787 | 2012-01-19 23:15:22 +0000 | [diff] [blame] | 643 | { |
| 644 | public: |
| 645 | typedef const void* pointer; |
| 646 | typedef const void* const_pointer; |
| 647 | typedef const void value_type; |
| 648 | |
| 649 | template <class _Up> struct rebind {typedef allocator<_Up> other;}; |
| 650 | }; |
| 651 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 652 | // pointer_traits |
| 653 | |
| 654 | template <class _Tp> |
| 655 | struct __has_element_type |
| 656 | { |
| 657 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 658 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 659 | template <class _Up> static __two __test(...); |
| 660 | template <class _Up> static char __test(typename _Up::element_type* = 0); |
| 661 | public: |
| 662 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 663 | }; |
| 664 | |
| 665 | template <class _Ptr, bool = __has_element_type<_Ptr>::value> |
| 666 | struct __pointer_traits_element_type; |
| 667 | |
| 668 | template <class _Ptr> |
| 669 | struct __pointer_traits_element_type<_Ptr, true> |
| 670 | { |
| 671 | typedef typename _Ptr::element_type type; |
| 672 | }; |
| 673 | |
| 674 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 675 | |
| 676 | template <template <class, class...> class _Sp, class _Tp, class ..._Args> |
| 677 | struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, true> |
| 678 | { |
| 679 | typedef typename _Sp<_Tp, _Args...>::element_type type; |
| 680 | }; |
| 681 | |
| 682 | template <template <class, class...> class _Sp, class _Tp, class ..._Args> |
| 683 | struct __pointer_traits_element_type<_Sp<_Tp, _Args...>, false> |
| 684 | { |
| 685 | typedef _Tp type; |
| 686 | }; |
| 687 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 688 | #else // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 689 | |
| 690 | template <template <class> class _Sp, class _Tp> |
| 691 | struct __pointer_traits_element_type<_Sp<_Tp>, true> |
| 692 | { |
| 693 | typedef typename _Sp<_Tp>::element_type type; |
| 694 | }; |
| 695 | |
| 696 | template <template <class> class _Sp, class _Tp> |
| 697 | struct __pointer_traits_element_type<_Sp<_Tp>, false> |
| 698 | { |
| 699 | typedef _Tp type; |
| 700 | }; |
| 701 | |
| 702 | template <template <class, class> class _Sp, class _Tp, class _A0> |
| 703 | struct __pointer_traits_element_type<_Sp<_Tp, _A0>, true> |
| 704 | { |
| 705 | typedef typename _Sp<_Tp, _A0>::element_type type; |
| 706 | }; |
| 707 | |
| 708 | template <template <class, class> class _Sp, class _Tp, class _A0> |
| 709 | struct __pointer_traits_element_type<_Sp<_Tp, _A0>, false> |
| 710 | { |
| 711 | typedef _Tp type; |
| 712 | }; |
| 713 | |
| 714 | template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1> |
| 715 | struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, true> |
| 716 | { |
| 717 | typedef typename _Sp<_Tp, _A0, _A1>::element_type type; |
| 718 | }; |
| 719 | |
| 720 | template <template <class, class, class> class _Sp, class _Tp, class _A0, class _A1> |
| 721 | struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1>, false> |
| 722 | { |
| 723 | typedef _Tp type; |
| 724 | }; |
| 725 | |
| 726 | template <template <class, class, class, class> class _Sp, class _Tp, class _A0, |
| 727 | class _A1, class _A2> |
| 728 | struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, true> |
| 729 | { |
| 730 | typedef typename _Sp<_Tp, _A0, _A1, _A2>::element_type type; |
| 731 | }; |
| 732 | |
| 733 | template <template <class, class, class, class> class _Sp, class _Tp, class _A0, |
| 734 | class _A1, class _A2> |
| 735 | struct __pointer_traits_element_type<_Sp<_Tp, _A0, _A1, _A2>, false> |
| 736 | { |
| 737 | typedef _Tp type; |
| 738 | }; |
| 739 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 740 | #endif // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 741 | |
| 742 | template <class _Tp> |
| 743 | struct __has_difference_type |
| 744 | { |
| 745 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 746 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 747 | template <class _Up> static __two __test(...); |
| 748 | template <class _Up> static char __test(typename _Up::difference_type* = 0); |
| 749 | public: |
| 750 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 751 | }; |
| 752 | |
| 753 | template <class _Ptr, bool = __has_difference_type<_Ptr>::value> |
| 754 | struct __pointer_traits_difference_type |
| 755 | { |
| 756 | typedef ptrdiff_t type; |
| 757 | }; |
| 758 | |
| 759 | template <class _Ptr> |
| 760 | struct __pointer_traits_difference_type<_Ptr, true> |
| 761 | { |
| 762 | typedef typename _Ptr::difference_type type; |
| 763 | }; |
| 764 | |
| 765 | template <class _Tp, class _Up> |
| 766 | struct __has_rebind |
| 767 | { |
| 768 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 769 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 770 | template <class _Xp> static __two __test(...); |
| 771 | template <class _Xp> static char __test(typename _Xp::template rebind<_Up>* = 0); |
| 772 | public: |
| 773 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 774 | }; |
| 775 | |
| 776 | template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value> |
| 777 | struct __pointer_traits_rebind |
| 778 | { |
| 779 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 780 | typedef typename _Tp::template rebind<_Up> type; |
| 781 | #else |
| 782 | typedef typename _Tp::template rebind<_Up>::other type; |
| 783 | #endif |
| 784 | }; |
| 785 | |
| 786 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 787 | |
| 788 | template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up> |
| 789 | struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, true> |
| 790 | { |
| 791 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 792 | typedef typename _Sp<_Tp, _Args...>::template rebind<_Up> type; |
| 793 | #else |
| 794 | typedef typename _Sp<_Tp, _Args...>::template rebind<_Up>::other type; |
| 795 | #endif |
| 796 | }; |
| 797 | |
| 798 | template <template <class, class...> class _Sp, class _Tp, class ..._Args, class _Up> |
| 799 | struct __pointer_traits_rebind<_Sp<_Tp, _Args...>, _Up, false> |
| 800 | { |
| 801 | typedef _Sp<_Up, _Args...> type; |
| 802 | }; |
| 803 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 804 | #else // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 805 | |
| 806 | template <template <class> class _Sp, class _Tp, class _Up> |
| 807 | struct __pointer_traits_rebind<_Sp<_Tp>, _Up, true> |
| 808 | { |
| 809 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 810 | typedef typename _Sp<_Tp>::template rebind<_Up> type; |
| 811 | #else |
| 812 | typedef typename _Sp<_Tp>::template rebind<_Up>::other type; |
| 813 | #endif |
| 814 | }; |
| 815 | |
| 816 | template <template <class> class _Sp, class _Tp, class _Up> |
| 817 | struct __pointer_traits_rebind<_Sp<_Tp>, _Up, false> |
| 818 | { |
| 819 | typedef _Sp<_Up> type; |
| 820 | }; |
| 821 | |
| 822 | template <template <class, class> class _Sp, class _Tp, class _A0, class _Up> |
| 823 | struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, true> |
| 824 | { |
| 825 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 826 | typedef typename _Sp<_Tp, _A0>::template rebind<_Up> type; |
| 827 | #else |
| 828 | typedef typename _Sp<_Tp, _A0>::template rebind<_Up>::other type; |
| 829 | #endif |
| 830 | }; |
| 831 | |
| 832 | template <template <class, class> class _Sp, class _Tp, class _A0, class _Up> |
| 833 | struct __pointer_traits_rebind<_Sp<_Tp, _A0>, _Up, false> |
| 834 | { |
| 835 | typedef _Sp<_Up, _A0> type; |
| 836 | }; |
| 837 | |
| 838 | template <template <class, class, class> class _Sp, class _Tp, class _A0, |
| 839 | class _A1, class _Up> |
| 840 | struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, true> |
| 841 | { |
| 842 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 843 | typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up> type; |
| 844 | #else |
| 845 | typedef typename _Sp<_Tp, _A0, _A1>::template rebind<_Up>::other type; |
| 846 | #endif |
| 847 | }; |
| 848 | |
| 849 | template <template <class, class, class> class _Sp, class _Tp, class _A0, |
| 850 | class _A1, class _Up> |
| 851 | struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1>, _Up, false> |
| 852 | { |
| 853 | typedef _Sp<_Up, _A0, _A1> type; |
| 854 | }; |
| 855 | |
| 856 | template <template <class, class, class, class> class _Sp, class _Tp, class _A0, |
| 857 | class _A1, class _A2, class _Up> |
| 858 | struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, true> |
| 859 | { |
| 860 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 861 | typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up> type; |
| 862 | #else |
| 863 | typedef typename _Sp<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type; |
| 864 | #endif |
| 865 | }; |
| 866 | |
| 867 | template <template <class, class, class, class> class _Sp, class _Tp, class _A0, |
| 868 | class _A1, class _A2, class _Up> |
| 869 | struct __pointer_traits_rebind<_Sp<_Tp, _A0, _A1, _A2>, _Up, false> |
| 870 | { |
| 871 | typedef _Sp<_Up, _A0, _A1, _A2> type; |
| 872 | }; |
| 873 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 874 | #endif // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 875 | |
| 876 | template <class _Ptr> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 877 | struct _LIBCPP_TYPE_VIS_ONLY pointer_traits |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 878 | { |
| 879 | typedef _Ptr pointer; |
| 880 | typedef typename __pointer_traits_element_type<pointer>::type element_type; |
| 881 | typedef typename __pointer_traits_difference_type<pointer>::type difference_type; |
| 882 | |
| 883 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
Howard Hinnant | 6b41c60 | 2011-05-11 20:21:19 +0000 | [diff] [blame] | 884 | template <class _Up> using rebind = typename __pointer_traits_rebind<pointer, _Up>::type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 885 | #else |
| 886 | template <class _Up> struct rebind |
| 887 | {typedef typename __pointer_traits_rebind<pointer, _Up>::type other;}; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 888 | #endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 889 | |
| 890 | private: |
| 891 | struct __nat {}; |
| 892 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 893 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 894 | static pointer pointer_to(typename conditional<is_void<element_type>::value, |
| 895 | __nat, element_type>::type& __r) |
| 896 | {return pointer::pointer_to(__r);} |
| 897 | }; |
| 898 | |
| 899 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 900 | struct _LIBCPP_TYPE_VIS_ONLY pointer_traits<_Tp*> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 901 | { |
| 902 | typedef _Tp* pointer; |
| 903 | typedef _Tp element_type; |
| 904 | typedef ptrdiff_t difference_type; |
| 905 | |
| 906 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 907 | template <class _Up> using rebind = _Up*; |
| 908 | #else |
| 909 | template <class _Up> struct rebind {typedef _Up* other;}; |
| 910 | #endif |
| 911 | |
| 912 | private: |
| 913 | struct __nat {}; |
| 914 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 915 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 916 | static pointer pointer_to(typename conditional<is_void<element_type>::value, |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 917 | __nat, element_type>::type& __r) _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 918 | {return _VSTD::addressof(__r);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 919 | }; |
| 920 | |
| 921 | // allocator_traits |
| 922 | |
| 923 | namespace __has_pointer_type_imp |
| 924 | { |
Howard Hinnant | 8127758 | 2013-09-21 01:45:05 +0000 | [diff] [blame] | 925 | template <class _Up> static __two __test(...); |
| 926 | template <class _Up> static char __test(typename _Up::pointer* = 0); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 927 | } |
| 928 | |
| 929 | template <class _Tp> |
| 930 | struct __has_pointer_type |
Howard Hinnant | 8127758 | 2013-09-21 01:45:05 +0000 | [diff] [blame] | 931 | : public integral_constant<bool, sizeof(__has_pointer_type_imp::__test<_Tp>(0)) == 1> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 932 | { |
| 933 | }; |
| 934 | |
| 935 | namespace __pointer_type_imp |
| 936 | { |
| 937 | |
| 938 | template <class _Tp, class _Dp, bool = __has_pointer_type<_Dp>::value> |
| 939 | struct __pointer_type |
| 940 | { |
| 941 | typedef typename _Dp::pointer type; |
| 942 | }; |
| 943 | |
| 944 | template <class _Tp, class _Dp> |
| 945 | struct __pointer_type<_Tp, _Dp, false> |
| 946 | { |
| 947 | typedef _Tp* type; |
| 948 | }; |
| 949 | |
Howard Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 950 | } // __pointer_type_imp |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 951 | |
| 952 | template <class _Tp, class _Dp> |
| 953 | struct __pointer_type |
| 954 | { |
| 955 | typedef typename __pointer_type_imp::__pointer_type<_Tp, typename remove_reference<_Dp>::type>::type type; |
| 956 | }; |
| 957 | |
| 958 | template <class _Tp> |
| 959 | struct __has_const_pointer |
| 960 | { |
| 961 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 962 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 963 | template <class _Up> static __two __test(...); |
| 964 | template <class _Up> static char __test(typename _Up::const_pointer* = 0); |
| 965 | public: |
| 966 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 967 | }; |
| 968 | |
| 969 | template <class _Tp, class _Ptr, class _Alloc, bool = __has_const_pointer<_Alloc>::value> |
| 970 | struct __const_pointer |
| 971 | { |
| 972 | typedef typename _Alloc::const_pointer type; |
| 973 | }; |
| 974 | |
| 975 | template <class _Tp, class _Ptr, class _Alloc> |
| 976 | struct __const_pointer<_Tp, _Ptr, _Alloc, false> |
| 977 | { |
| 978 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 979 | typedef typename pointer_traits<_Ptr>::template rebind<const _Tp> type; |
| 980 | #else |
| 981 | typedef typename pointer_traits<_Ptr>::template rebind<const _Tp>::other type; |
| 982 | #endif |
| 983 | }; |
| 984 | |
| 985 | template <class _Tp> |
| 986 | struct __has_void_pointer |
| 987 | { |
| 988 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 989 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 990 | template <class _Up> static __two __test(...); |
| 991 | template <class _Up> static char __test(typename _Up::void_pointer* = 0); |
| 992 | public: |
| 993 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 994 | }; |
| 995 | |
| 996 | template <class _Ptr, class _Alloc, bool = __has_void_pointer<_Alloc>::value> |
| 997 | struct __void_pointer |
| 998 | { |
| 999 | typedef typename _Alloc::void_pointer type; |
| 1000 | }; |
| 1001 | |
| 1002 | template <class _Ptr, class _Alloc> |
| 1003 | struct __void_pointer<_Ptr, _Alloc, false> |
| 1004 | { |
| 1005 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 1006 | typedef typename pointer_traits<_Ptr>::template rebind<void> type; |
| 1007 | #else |
| 1008 | typedef typename pointer_traits<_Ptr>::template rebind<void>::other type; |
| 1009 | #endif |
| 1010 | }; |
| 1011 | |
| 1012 | template <class _Tp> |
| 1013 | struct __has_const_void_pointer |
| 1014 | { |
| 1015 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 1016 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1017 | template <class _Up> static __two __test(...); |
| 1018 | template <class _Up> static char __test(typename _Up::const_void_pointer* = 0); |
| 1019 | public: |
| 1020 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 1021 | }; |
| 1022 | |
| 1023 | template <class _Ptr, class _Alloc, bool = __has_const_void_pointer<_Alloc>::value> |
| 1024 | struct __const_void_pointer |
| 1025 | { |
| 1026 | typedef typename _Alloc::const_void_pointer type; |
| 1027 | }; |
| 1028 | |
| 1029 | template <class _Ptr, class _Alloc> |
| 1030 | struct __const_void_pointer<_Ptr, _Alloc, false> |
| 1031 | { |
| 1032 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 1033 | typedef typename pointer_traits<_Ptr>::template rebind<const void> type; |
| 1034 | #else |
| 1035 | typedef typename pointer_traits<_Ptr>::template rebind<const void>::other type; |
| 1036 | #endif |
| 1037 | }; |
| 1038 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1039 | template <class _Tp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1040 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 1041 | _Tp* |
| 1042 | __to_raw_pointer(_Tp* __p) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1043 | { |
| 1044 | return __p; |
| 1045 | } |
| 1046 | |
| 1047 | template <class _Pointer> |
| 1048 | inline _LIBCPP_INLINE_VISIBILITY |
| 1049 | typename pointer_traits<_Pointer>::element_type* |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1050 | __to_raw_pointer(_Pointer __p) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1051 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1052 | return _VSTD::__to_raw_pointer(__p.operator->()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1053 | } |
| 1054 | |
| 1055 | template <class _Tp> |
| 1056 | struct __has_size_type |
| 1057 | { |
| 1058 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 1059 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1060 | template <class _Up> static __two __test(...); |
| 1061 | template <class _Up> static char __test(typename _Up::size_type* = 0); |
| 1062 | public: |
| 1063 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 1064 | }; |
| 1065 | |
Howard Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 1066 | template <class _Alloc, class _DiffType, bool = __has_size_type<_Alloc>::value> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1067 | struct __size_type |
| 1068 | { |
Howard Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 1069 | typedef typename make_unsigned<_DiffType>::type type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1070 | }; |
| 1071 | |
Howard Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 1072 | template <class _Alloc, class _DiffType> |
| 1073 | struct __size_type<_Alloc, _DiffType, true> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1074 | { |
| 1075 | typedef typename _Alloc::size_type type; |
| 1076 | }; |
| 1077 | |
| 1078 | template <class _Tp> |
| 1079 | struct __has_propagate_on_container_copy_assignment |
| 1080 | { |
| 1081 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 1082 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1083 | template <class _Up> static __two __test(...); |
| 1084 | template <class _Up> static char __test(typename _Up::propagate_on_container_copy_assignment* = 0); |
| 1085 | public: |
| 1086 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 1087 | }; |
| 1088 | |
| 1089 | template <class _Alloc, bool = __has_propagate_on_container_copy_assignment<_Alloc>::value> |
| 1090 | struct __propagate_on_container_copy_assignment |
| 1091 | { |
| 1092 | typedef false_type type; |
| 1093 | }; |
| 1094 | |
| 1095 | template <class _Alloc> |
| 1096 | struct __propagate_on_container_copy_assignment<_Alloc, true> |
| 1097 | { |
| 1098 | typedef typename _Alloc::propagate_on_container_copy_assignment type; |
| 1099 | }; |
| 1100 | |
| 1101 | template <class _Tp> |
| 1102 | struct __has_propagate_on_container_move_assignment |
| 1103 | { |
| 1104 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 1105 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1106 | template <class _Up> static __two __test(...); |
| 1107 | template <class _Up> static char __test(typename _Up::propagate_on_container_move_assignment* = 0); |
| 1108 | public: |
| 1109 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 1110 | }; |
| 1111 | |
| 1112 | template <class _Alloc, bool = __has_propagate_on_container_move_assignment<_Alloc>::value> |
| 1113 | struct __propagate_on_container_move_assignment |
| 1114 | { |
| 1115 | typedef false_type type; |
| 1116 | }; |
| 1117 | |
| 1118 | template <class _Alloc> |
| 1119 | struct __propagate_on_container_move_assignment<_Alloc, true> |
| 1120 | { |
| 1121 | typedef typename _Alloc::propagate_on_container_move_assignment type; |
| 1122 | }; |
| 1123 | |
| 1124 | template <class _Tp> |
| 1125 | struct __has_propagate_on_container_swap |
| 1126 | { |
| 1127 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 1128 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1129 | template <class _Up> static __two __test(...); |
| 1130 | template <class _Up> static char __test(typename _Up::propagate_on_container_swap* = 0); |
| 1131 | public: |
| 1132 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 1133 | }; |
| 1134 | |
| 1135 | template <class _Alloc, bool = __has_propagate_on_container_swap<_Alloc>::value> |
| 1136 | struct __propagate_on_container_swap |
| 1137 | { |
| 1138 | typedef false_type type; |
| 1139 | }; |
| 1140 | |
| 1141 | template <class _Alloc> |
| 1142 | struct __propagate_on_container_swap<_Alloc, true> |
| 1143 | { |
| 1144 | typedef typename _Alloc::propagate_on_container_swap type; |
| 1145 | }; |
| 1146 | |
| 1147 | template <class _Tp, class _Up, bool = __has_rebind<_Tp, _Up>::value> |
| 1148 | struct __has_rebind_other |
| 1149 | { |
| 1150 | private: |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 1151 | struct __two {char __lx; char __lxx;}; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1152 | template <class _Xp> static __two __test(...); |
| 1153 | template <class _Xp> static char __test(typename _Xp::template rebind<_Up>::other* = 0); |
| 1154 | public: |
| 1155 | static const bool value = sizeof(__test<_Tp>(0)) == 1; |
| 1156 | }; |
| 1157 | |
| 1158 | template <class _Tp, class _Up> |
| 1159 | struct __has_rebind_other<_Tp, _Up, false> |
| 1160 | { |
| 1161 | static const bool value = false; |
| 1162 | }; |
| 1163 | |
| 1164 | template <class _Tp, class _Up, bool = __has_rebind_other<_Tp, _Up>::value> |
| 1165 | struct __allocator_traits_rebind |
| 1166 | { |
| 1167 | typedef typename _Tp::template rebind<_Up>::other type; |
| 1168 | }; |
| 1169 | |
| 1170 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 1171 | |
| 1172 | template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up> |
| 1173 | struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, true> |
| 1174 | { |
| 1175 | typedef typename _Alloc<_Tp, _Args...>::template rebind<_Up>::other type; |
| 1176 | }; |
| 1177 | |
| 1178 | template <template <class, class...> class _Alloc, class _Tp, class ..._Args, class _Up> |
| 1179 | struct __allocator_traits_rebind<_Alloc<_Tp, _Args...>, _Up, false> |
| 1180 | { |
| 1181 | typedef _Alloc<_Up, _Args...> type; |
| 1182 | }; |
| 1183 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1184 | #else // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1185 | |
| 1186 | template <template <class> class _Alloc, class _Tp, class _Up> |
| 1187 | struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, true> |
| 1188 | { |
| 1189 | typedef typename _Alloc<_Tp>::template rebind<_Up>::other type; |
| 1190 | }; |
| 1191 | |
| 1192 | template <template <class> class _Alloc, class _Tp, class _Up> |
| 1193 | struct __allocator_traits_rebind<_Alloc<_Tp>, _Up, false> |
| 1194 | { |
| 1195 | typedef _Alloc<_Up> type; |
| 1196 | }; |
| 1197 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1198 | template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up> |
| 1199 | struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, true> |
| 1200 | { |
| 1201 | typedef typename _Alloc<_Tp, _A0>::template rebind<_Up>::other type; |
| 1202 | }; |
| 1203 | |
| 1204 | template <template <class, class> class _Alloc, class _Tp, class _A0, class _Up> |
| 1205 | struct __allocator_traits_rebind<_Alloc<_Tp, _A0>, _Up, false> |
| 1206 | { |
| 1207 | typedef _Alloc<_Up, _A0> type; |
| 1208 | }; |
| 1209 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1210 | template <template <class, class, class> class _Alloc, class _Tp, class _A0, |
| 1211 | class _A1, class _Up> |
| 1212 | struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, true> |
| 1213 | { |
| 1214 | typedef typename _Alloc<_Tp, _A0, _A1>::template rebind<_Up>::other type; |
| 1215 | }; |
| 1216 | |
| 1217 | template <template <class, class, class> class _Alloc, class _Tp, class _A0, |
| 1218 | class _A1, class _Up> |
| 1219 | struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1>, _Up, false> |
| 1220 | { |
| 1221 | typedef _Alloc<_Up, _A0, _A1> type; |
| 1222 | }; |
| 1223 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1224 | template <template <class, class, class, class> class _Alloc, class _Tp, class _A0, |
| 1225 | class _A1, class _A2, class _Up> |
| 1226 | struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, true> |
| 1227 | { |
| 1228 | typedef typename _Alloc<_Tp, _A0, _A1, _A2>::template rebind<_Up>::other type; |
| 1229 | }; |
| 1230 | |
| 1231 | template <template <class, class, class, class> class _Alloc, class _Tp, class _A0, |
| 1232 | class _A1, class _A2, class _Up> |
| 1233 | struct __allocator_traits_rebind<_Alloc<_Tp, _A0, _A1, _A2>, _Up, false> |
| 1234 | { |
| 1235 | typedef _Alloc<_Up, _A0, _A1, _A2> type; |
| 1236 | }; |
| 1237 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1238 | #endif // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1239 | |
| 1240 | #ifndef _LIBCPP_HAS_NO_ADVANCED_SFINAE |
| 1241 | |
| 1242 | template <class _Alloc, class _SizeType, class _ConstVoidPtr> |
| 1243 | auto |
| 1244 | __has_allocate_hint_test(_Alloc&& __a, _SizeType&& __sz, _ConstVoidPtr&& __p) |
| 1245 | -> decltype(__a.allocate(__sz, __p), true_type()); |
| 1246 | |
| 1247 | template <class _Alloc, class _SizeType, class _ConstVoidPtr> |
| 1248 | auto |
| 1249 | __has_allocate_hint_test(const _Alloc& __a, _SizeType&& __sz, _ConstVoidPtr&& __p) |
| 1250 | -> false_type; |
| 1251 | |
| 1252 | template <class _Alloc, class _SizeType, class _ConstVoidPtr> |
| 1253 | struct __has_allocate_hint |
| 1254 | : integral_constant<bool, |
| 1255 | is_same< |
| 1256 | decltype(__has_allocate_hint_test(declval<_Alloc>(), |
| 1257 | declval<_SizeType>(), |
| 1258 | declval<_ConstVoidPtr>())), |
| 1259 | true_type>::value> |
| 1260 | { |
| 1261 | }; |
| 1262 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1263 | #else // _LIBCPP_HAS_NO_ADVANCED_SFINAE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1264 | |
| 1265 | template <class _Alloc, class _SizeType, class _ConstVoidPtr> |
| 1266 | struct __has_allocate_hint |
| 1267 | : true_type |
| 1268 | { |
| 1269 | }; |
| 1270 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1271 | #endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1272 | |
Howard Hinnant | 23369ee | 2011-07-29 21:35:53 +0000 | [diff] [blame] | 1273 | #if !defined(_LIBCPP_HAS_NO_ADVANCED_SFINAE) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1274 | |
| 1275 | template <class _Alloc, class _Tp, class ..._Args> |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1276 | decltype(_VSTD::declval<_Alloc>().construct(_VSTD::declval<_Tp*>(), |
| 1277 | _VSTD::declval<_Args>()...), |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1278 | true_type()) |
| 1279 | __has_construct_test(_Alloc&& __a, _Tp* __p, _Args&& ...__args); |
| 1280 | |
| 1281 | template <class _Alloc, class _Pointer, class ..._Args> |
| 1282 | false_type |
| 1283 | __has_construct_test(const _Alloc& __a, _Pointer&& __p, _Args&& ...__args); |
| 1284 | |
| 1285 | template <class _Alloc, class _Pointer, class ..._Args> |
| 1286 | struct __has_construct |
| 1287 | : integral_constant<bool, |
| 1288 | is_same< |
| 1289 | decltype(__has_construct_test(declval<_Alloc>(), |
| 1290 | declval<_Pointer>(), |
| 1291 | declval<_Args>()...)), |
| 1292 | true_type>::value> |
| 1293 | { |
| 1294 | }; |
| 1295 | |
| 1296 | template <class _Alloc, class _Pointer> |
| 1297 | auto |
| 1298 | __has_destroy_test(_Alloc&& __a, _Pointer&& __p) |
| 1299 | -> decltype(__a.destroy(__p), true_type()); |
| 1300 | |
| 1301 | template <class _Alloc, class _Pointer> |
| 1302 | auto |
| 1303 | __has_destroy_test(const _Alloc& __a, _Pointer&& __p) |
| 1304 | -> false_type; |
| 1305 | |
| 1306 | template <class _Alloc, class _Pointer> |
| 1307 | struct __has_destroy |
| 1308 | : integral_constant<bool, |
| 1309 | is_same< |
| 1310 | decltype(__has_destroy_test(declval<_Alloc>(), |
| 1311 | declval<_Pointer>())), |
| 1312 | true_type>::value> |
| 1313 | { |
| 1314 | }; |
| 1315 | |
| 1316 | template <class _Alloc> |
| 1317 | auto |
| 1318 | __has_max_size_test(_Alloc&& __a) |
| 1319 | -> decltype(__a.max_size(), true_type()); |
| 1320 | |
| 1321 | template <class _Alloc> |
| 1322 | auto |
| 1323 | __has_max_size_test(const volatile _Alloc& __a) |
| 1324 | -> false_type; |
| 1325 | |
| 1326 | template <class _Alloc> |
| 1327 | struct __has_max_size |
| 1328 | : integral_constant<bool, |
| 1329 | is_same< |
| 1330 | decltype(__has_max_size_test(declval<_Alloc&>())), |
| 1331 | true_type>::value> |
| 1332 | { |
| 1333 | }; |
| 1334 | |
| 1335 | template <class _Alloc> |
| 1336 | auto |
| 1337 | __has_select_on_container_copy_construction_test(_Alloc&& __a) |
| 1338 | -> decltype(__a.select_on_container_copy_construction(), true_type()); |
| 1339 | |
| 1340 | template <class _Alloc> |
| 1341 | auto |
| 1342 | __has_select_on_container_copy_construction_test(const volatile _Alloc& __a) |
| 1343 | -> false_type; |
| 1344 | |
| 1345 | template <class _Alloc> |
| 1346 | struct __has_select_on_container_copy_construction |
| 1347 | : integral_constant<bool, |
| 1348 | is_same< |
| 1349 | decltype(__has_select_on_container_copy_construction_test(declval<_Alloc&>())), |
| 1350 | true_type>::value> |
| 1351 | { |
| 1352 | }; |
| 1353 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1354 | #else // _LIBCPP_HAS_NO_ADVANCED_SFINAE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1355 | |
| 1356 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 1357 | |
| 1358 | template <class _Alloc, class _Pointer, class ..._Args> |
| 1359 | struct __has_construct |
| 1360 | : false_type |
| 1361 | { |
| 1362 | }; |
| 1363 | |
Howard Hinnant | b0bfd9b | 2012-02-15 00:41:34 +0000 | [diff] [blame] | 1364 | #else // _LIBCPP_HAS_NO_VARIADICS |
| 1365 | |
| 1366 | template <class _Alloc, class _Pointer, class _Args> |
| 1367 | struct __has_construct |
| 1368 | : false_type |
| 1369 | { |
| 1370 | }; |
| 1371 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1372 | #endif // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1373 | |
| 1374 | template <class _Alloc, class _Pointer> |
| 1375 | struct __has_destroy |
| 1376 | : false_type |
| 1377 | { |
| 1378 | }; |
| 1379 | |
| 1380 | template <class _Alloc> |
| 1381 | struct __has_max_size |
| 1382 | : true_type |
| 1383 | { |
| 1384 | }; |
| 1385 | |
| 1386 | template <class _Alloc> |
| 1387 | struct __has_select_on_container_copy_construction |
| 1388 | : false_type |
| 1389 | { |
| 1390 | }; |
| 1391 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1392 | #endif // _LIBCPP_HAS_NO_ADVANCED_SFINAE |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1393 | |
Howard Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 1394 | template <class _Alloc, class _Ptr, bool = __has_difference_type<_Alloc>::value> |
| 1395 | struct __alloc_traits_difference_type |
| 1396 | { |
| 1397 | typedef typename pointer_traits<_Ptr>::difference_type type; |
| 1398 | }; |
| 1399 | |
| 1400 | template <class _Alloc, class _Ptr> |
| 1401 | struct __alloc_traits_difference_type<_Alloc, _Ptr, true> |
| 1402 | { |
| 1403 | typedef typename _Alloc::difference_type type; |
| 1404 | }; |
| 1405 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1406 | template <class _Alloc> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 1407 | struct _LIBCPP_TYPE_VIS_ONLY allocator_traits |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1408 | { |
| 1409 | typedef _Alloc allocator_type; |
| 1410 | typedef typename allocator_type::value_type value_type; |
| 1411 | |
| 1412 | typedef typename __pointer_type<value_type, allocator_type>::type pointer; |
| 1413 | typedef typename __const_pointer<value_type, pointer, allocator_type>::type const_pointer; |
| 1414 | typedef typename __void_pointer<pointer, allocator_type>::type void_pointer; |
| 1415 | typedef typename __const_void_pointer<pointer, allocator_type>::type const_void_pointer; |
| 1416 | |
Howard Hinnant | 4776107 | 2010-11-18 01:40:00 +0000 | [diff] [blame] | 1417 | typedef typename __alloc_traits_difference_type<allocator_type, pointer>::type difference_type; |
| 1418 | typedef typename __size_type<allocator_type, difference_type>::type size_type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1419 | |
| 1420 | typedef typename __propagate_on_container_copy_assignment<allocator_type>::type |
| 1421 | propagate_on_container_copy_assignment; |
| 1422 | typedef typename __propagate_on_container_move_assignment<allocator_type>::type |
| 1423 | propagate_on_container_move_assignment; |
| 1424 | typedef typename __propagate_on_container_swap<allocator_type>::type |
| 1425 | propagate_on_container_swap; |
| 1426 | |
| 1427 | #ifndef _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
| 1428 | template <class _Tp> using rebind_alloc = |
Howard Hinnant | 6b41c60 | 2011-05-11 20:21:19 +0000 | [diff] [blame] | 1429 | typename __allocator_traits_rebind<allocator_type, _Tp>::type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1430 | template <class _Tp> using rebind_traits = allocator_traits<rebind_alloc<_Tp>>; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1431 | #else // _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1432 | template <class _Tp> struct rebind_alloc |
| 1433 | {typedef typename __allocator_traits_rebind<allocator_type, _Tp>::type other;}; |
| 1434 | template <class _Tp> struct rebind_traits |
| 1435 | {typedef allocator_traits<typename rebind_alloc<_Tp>::other> other;}; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1436 | #endif // _LIBCPP_HAS_NO_TEMPLATE_ALIASES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1437 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1438 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1439 | static pointer allocate(allocator_type& __a, size_type __n) |
| 1440 | {return __a.allocate(__n);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1441 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1442 | static pointer allocate(allocator_type& __a, size_type __n, const_void_pointer __hint) |
| 1443 | {return allocate(__a, __n, __hint, |
| 1444 | __has_allocate_hint<allocator_type, size_type, const_void_pointer>());} |
| 1445 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1446 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1447 | static void deallocate(allocator_type& __a, pointer __p, size_type __n) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1448 | {__a.deallocate(__p, __n);} |
| 1449 | |
| 1450 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 1451 | template <class _Tp, class... _Args> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1452 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1453 | static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args) |
Marshall Clow | 3f5579f | 2014-11-11 19:22:33 +0000 | [diff] [blame] | 1454 | {__construct(__has_construct<allocator_type, _Tp*, _Args...>(), |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1455 | __a, __p, _VSTD::forward<_Args>(__args)...);} |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1456 | #else // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1457 | template <class _Tp> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1458 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1459 | static void construct(allocator_type& __a, _Tp* __p) |
| 1460 | { |
| 1461 | ::new ((void*)__p) _Tp(); |
| 1462 | } |
| 1463 | template <class _Tp, class _A0> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1464 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1465 | static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0) |
| 1466 | { |
| 1467 | ::new ((void*)__p) _Tp(__a0); |
| 1468 | } |
| 1469 | template <class _Tp, class _A0, class _A1> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1470 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1471 | static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0, |
| 1472 | const _A1& __a1) |
| 1473 | { |
| 1474 | ::new ((void*)__p) _Tp(__a0, __a1); |
| 1475 | } |
| 1476 | template <class _Tp, class _A0, class _A1, class _A2> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1477 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1478 | static void construct(allocator_type& __a, _Tp* __p, const _A0& __a0, |
| 1479 | const _A1& __a1, const _A2& __a2) |
| 1480 | { |
| 1481 | ::new ((void*)__p) _Tp(__a0, __a1, __a2); |
| 1482 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1483 | #endif // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1484 | |
| 1485 | template <class _Tp> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1486 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1487 | static void destroy(allocator_type& __a, _Tp* __p) |
| 1488 | {__destroy(__has_destroy<allocator_type, _Tp*>(), __a, __p);} |
| 1489 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1490 | _LIBCPP_INLINE_VISIBILITY |
Marshall Clow | 08b4f3f | 2013-08-27 20:22:15 +0000 | [diff] [blame] | 1491 | static size_type max_size(const allocator_type& __a) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1492 | {return __max_size(__has_max_size<const allocator_type>(), __a);} |
| 1493 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1494 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1495 | static allocator_type |
| 1496 | select_on_container_copy_construction(const allocator_type& __a) |
| 1497 | {return select_on_container_copy_construction( |
| 1498 | __has_select_on_container_copy_construction<const allocator_type>(), |
| 1499 | __a);} |
| 1500 | |
Howard Hinnant | b0bfd9b | 2012-02-15 00:41:34 +0000 | [diff] [blame] | 1501 | template <class _Ptr> |
| 1502 | _LIBCPP_INLINE_VISIBILITY |
| 1503 | static |
| 1504 | void |
| 1505 | __construct_forward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __begin2) |
| 1506 | { |
| 1507 | for (; __begin1 != __end1; ++__begin1, ++__begin2) |
| 1508 | construct(__a, _VSTD::__to_raw_pointer(__begin2), _VSTD::move_if_noexcept(*__begin1)); |
| 1509 | } |
| 1510 | |
| 1511 | template <class _Tp> |
| 1512 | _LIBCPP_INLINE_VISIBILITY |
| 1513 | static |
| 1514 | typename enable_if |
| 1515 | < |
| 1516 | (is_same<allocator_type, allocator<_Tp> >::value |
| 1517 | || !__has_construct<allocator_type, _Tp*, _Tp>::value) && |
| 1518 | is_trivially_move_constructible<_Tp>::value, |
| 1519 | void |
| 1520 | >::type |
| 1521 | __construct_forward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __begin2) |
| 1522 | { |
| 1523 | ptrdiff_t _Np = __end1 - __begin1; |
| 1524 | _VSTD::memcpy(__begin2, __begin1, _Np * sizeof(_Tp)); |
| 1525 | __begin2 += _Np; |
| 1526 | } |
| 1527 | |
| 1528 | template <class _Ptr> |
| 1529 | _LIBCPP_INLINE_VISIBILITY |
| 1530 | static |
| 1531 | void |
| 1532 | __construct_backward(allocator_type& __a, _Ptr __begin1, _Ptr __end1, _Ptr& __end2) |
| 1533 | { |
| 1534 | while (__end1 != __begin1) |
Howard Hinnant | f619e23 | 2013-01-11 20:36:59 +0000 | [diff] [blame] | 1535 | { |
| 1536 | construct(__a, _VSTD::__to_raw_pointer(__end2-1), _VSTD::move_if_noexcept(*--__end1)); |
| 1537 | --__end2; |
| 1538 | } |
Howard Hinnant | b0bfd9b | 2012-02-15 00:41:34 +0000 | [diff] [blame] | 1539 | } |
| 1540 | |
| 1541 | template <class _Tp> |
| 1542 | _LIBCPP_INLINE_VISIBILITY |
| 1543 | static |
| 1544 | typename enable_if |
| 1545 | < |
| 1546 | (is_same<allocator_type, allocator<_Tp> >::value |
| 1547 | || !__has_construct<allocator_type, _Tp*, _Tp>::value) && |
| 1548 | is_trivially_move_constructible<_Tp>::value, |
| 1549 | void |
| 1550 | >::type |
| 1551 | __construct_backward(allocator_type& __a, _Tp* __begin1, _Tp* __end1, _Tp*& __end2) |
| 1552 | { |
| 1553 | ptrdiff_t _Np = __end1 - __begin1; |
| 1554 | __end2 -= _Np; |
| 1555 | _VSTD::memcpy(__end2, __begin1, _Np * sizeof(_Tp)); |
| 1556 | } |
| 1557 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1558 | private: |
| 1559 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1560 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1561 | static pointer allocate(allocator_type& __a, size_type __n, |
| 1562 | const_void_pointer __hint, true_type) |
| 1563 | {return __a.allocate(__n, __hint);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1564 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1565 | static pointer allocate(allocator_type& __a, size_type __n, |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 1566 | const_void_pointer, false_type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1567 | {return __a.allocate(__n);} |
| 1568 | |
| 1569 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 1570 | template <class _Tp, class... _Args> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1571 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1572 | static void __construct(true_type, allocator_type& __a, _Tp* __p, _Args&&... __args) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1573 | {__a.construct(__p, _VSTD::forward<_Args>(__args)...);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1574 | template <class _Tp, class... _Args> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1575 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1576 | static void __construct(false_type, allocator_type&, _Tp* __p, _Args&&... __args) |
| 1577 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1578 | ::new ((void*)__p) _Tp(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1579 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 1580 | #endif // _LIBCPP_HAS_NO_VARIADICS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1581 | |
| 1582 | template <class _Tp> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1583 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1584 | static void __destroy(true_type, allocator_type& __a, _Tp* __p) |
| 1585 | {__a.destroy(__p);} |
| 1586 | template <class _Tp> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1587 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1588 | static void __destroy(false_type, allocator_type&, _Tp* __p) |
| 1589 | { |
| 1590 | __p->~_Tp(); |
| 1591 | } |
| 1592 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1593 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1594 | static size_type __max_size(true_type, const allocator_type& __a) |
| 1595 | {return __a.max_size();} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1596 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1597 | static size_type __max_size(false_type, const allocator_type&) |
| 1598 | {return numeric_limits<size_type>::max();} |
| 1599 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1600 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1601 | static allocator_type |
| 1602 | select_on_container_copy_construction(true_type, const allocator_type& __a) |
| 1603 | {return __a.select_on_container_copy_construction();} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 1604 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1605 | static allocator_type |
| 1606 | select_on_container_copy_construction(false_type, const allocator_type& __a) |
| 1607 | {return __a;} |
| 1608 | }; |
| 1609 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1610 | // allocator |
| 1611 | |
| 1612 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 1613 | class _LIBCPP_TYPE_VIS_ONLY allocator |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1614 | { |
| 1615 | public: |
| 1616 | typedef size_t size_type; |
| 1617 | typedef ptrdiff_t difference_type; |
| 1618 | typedef _Tp* pointer; |
| 1619 | typedef const _Tp* const_pointer; |
| 1620 | typedef _Tp& reference; |
| 1621 | typedef const _Tp& const_reference; |
| 1622 | typedef _Tp value_type; |
| 1623 | |
Howard Hinnant | 18884f4 | 2011-06-02 21:38:57 +0000 | [diff] [blame] | 1624 | typedef true_type propagate_on_container_move_assignment; |
| 1625 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1626 | template <class _Up> struct rebind {typedef allocator<_Up> other;}; |
| 1627 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1628 | _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {} |
| 1629 | template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {} |
| 1630 | _LIBCPP_INLINE_VISIBILITY pointer address(reference __x) const _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1631 | {return _VSTD::addressof(__x);} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1632 | _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1633 | {return _VSTD::addressof(__x);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1634 | _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0) |
Richard Smith | 73c1fce | 2014-06-04 19:54:15 +0000 | [diff] [blame] | 1635 | {return static_cast<pointer>(_VSTD::__allocate(__n * sizeof(_Tp)));} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1636 | _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT |
Richard Smith | 73c1fce | 2014-06-04 19:54:15 +0000 | [diff] [blame] | 1637 | {_VSTD::__deallocate((void*)__p);} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1638 | _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT |
| 1639 | {return size_type(~0) / sizeof(_Tp);} |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 1640 | #if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1641 | template <class _Up, class... _Args> |
| 1642 | _LIBCPP_INLINE_VISIBILITY |
| 1643 | void |
| 1644 | construct(_Up* __p, _Args&&... __args) |
| 1645 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1646 | ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1647 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 1648 | #else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1649 | _LIBCPP_INLINE_VISIBILITY |
| 1650 | void |
| 1651 | construct(pointer __p) |
| 1652 | { |
| 1653 | ::new((void*)__p) _Tp(); |
| 1654 | } |
Michael J. Spencer | 626916f | 2010-12-10 19:47:54 +0000 | [diff] [blame] | 1655 | # if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 1656 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1657 | template <class _A0> |
| 1658 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 1659 | void |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1660 | construct(pointer __p, _A0& __a0) |
| 1661 | { |
| 1662 | ::new((void*)__p) _Tp(__a0); |
| 1663 | } |
| 1664 | template <class _A0> |
| 1665 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 1666 | void |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1667 | construct(pointer __p, const _A0& __a0) |
| 1668 | { |
| 1669 | ::new((void*)__p) _Tp(__a0); |
| 1670 | } |
Michael J. Spencer | 626916f | 2010-12-10 19:47:54 +0000 | [diff] [blame] | 1671 | # endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1672 | template <class _A0, class _A1> |
| 1673 | _LIBCPP_INLINE_VISIBILITY |
| 1674 | void |
| 1675 | construct(pointer __p, _A0& __a0, _A1& __a1) |
| 1676 | { |
| 1677 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1678 | } |
| 1679 | template <class _A0, class _A1> |
| 1680 | _LIBCPP_INLINE_VISIBILITY |
| 1681 | void |
| 1682 | construct(pointer __p, const _A0& __a0, _A1& __a1) |
| 1683 | { |
| 1684 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1685 | } |
| 1686 | template <class _A0, class _A1> |
| 1687 | _LIBCPP_INLINE_VISIBILITY |
| 1688 | void |
| 1689 | construct(pointer __p, _A0& __a0, const _A1& __a1) |
| 1690 | { |
| 1691 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1692 | } |
| 1693 | template <class _A0, class _A1> |
| 1694 | _LIBCPP_INLINE_VISIBILITY |
| 1695 | void |
| 1696 | construct(pointer __p, const _A0& __a0, const _A1& __a1) |
| 1697 | { |
| 1698 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1699 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 1700 | #endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1701 | _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();} |
| 1702 | }; |
| 1703 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1704 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 1705 | class _LIBCPP_TYPE_VIS_ONLY allocator<const _Tp> |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1706 | { |
| 1707 | public: |
| 1708 | typedef size_t size_type; |
| 1709 | typedef ptrdiff_t difference_type; |
| 1710 | typedef const _Tp* pointer; |
| 1711 | typedef const _Tp* const_pointer; |
| 1712 | typedef const _Tp& reference; |
| 1713 | typedef const _Tp& const_reference; |
Howard Hinnant | 9360e9f | 2013-06-07 01:56:37 +0000 | [diff] [blame] | 1714 | typedef const _Tp value_type; |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1715 | |
| 1716 | typedef true_type propagate_on_container_move_assignment; |
| 1717 | |
| 1718 | template <class _Up> struct rebind {typedef allocator<_Up> other;}; |
| 1719 | |
| 1720 | _LIBCPP_INLINE_VISIBILITY allocator() _NOEXCEPT {} |
| 1721 | template <class _Up> _LIBCPP_INLINE_VISIBILITY allocator(const allocator<_Up>&) _NOEXCEPT {} |
| 1722 | _LIBCPP_INLINE_VISIBILITY const_pointer address(const_reference __x) const _NOEXCEPT |
| 1723 | {return _VSTD::addressof(__x);} |
| 1724 | _LIBCPP_INLINE_VISIBILITY pointer allocate(size_type __n, allocator<void>::const_pointer = 0) |
Richard Smith | 73c1fce | 2014-06-04 19:54:15 +0000 | [diff] [blame] | 1725 | {return static_cast<pointer>(_VSTD::__allocate(__n * sizeof(_Tp)));} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1726 | _LIBCPP_INLINE_VISIBILITY void deallocate(pointer __p, size_type) _NOEXCEPT |
Richard Smith | 73c1fce | 2014-06-04 19:54:15 +0000 | [diff] [blame] | 1727 | {_VSTD::__deallocate((void*)__p);} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1728 | _LIBCPP_INLINE_VISIBILITY size_type max_size() const _NOEXCEPT |
| 1729 | {return size_type(~0) / sizeof(_Tp);} |
| 1730 | #if !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
| 1731 | template <class _Up, class... _Args> |
| 1732 | _LIBCPP_INLINE_VISIBILITY |
| 1733 | void |
| 1734 | construct(_Up* __p, _Args&&... __args) |
| 1735 | { |
| 1736 | ::new((void*)__p) _Up(_VSTD::forward<_Args>(__args)...); |
| 1737 | } |
| 1738 | #else // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
| 1739 | _LIBCPP_INLINE_VISIBILITY |
| 1740 | void |
| 1741 | construct(pointer __p) |
| 1742 | { |
| 1743 | ::new((void*)__p) _Tp(); |
| 1744 | } |
| 1745 | # if defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 1746 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1747 | template <class _A0> |
| 1748 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 1749 | void |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1750 | construct(pointer __p, _A0& __a0) |
| 1751 | { |
| 1752 | ::new((void*)__p) _Tp(__a0); |
| 1753 | } |
| 1754 | template <class _A0> |
| 1755 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 1756 | void |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1757 | construct(pointer __p, const _A0& __a0) |
| 1758 | { |
| 1759 | ::new((void*)__p) _Tp(__a0); |
| 1760 | } |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1761 | # endif // defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
| 1762 | template <class _A0, class _A1> |
| 1763 | _LIBCPP_INLINE_VISIBILITY |
| 1764 | void |
| 1765 | construct(pointer __p, _A0& __a0, _A1& __a1) |
| 1766 | { |
| 1767 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1768 | } |
| 1769 | template <class _A0, class _A1> |
| 1770 | _LIBCPP_INLINE_VISIBILITY |
| 1771 | void |
| 1772 | construct(pointer __p, const _A0& __a0, _A1& __a1) |
| 1773 | { |
| 1774 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1775 | } |
| 1776 | template <class _A0, class _A1> |
| 1777 | _LIBCPP_INLINE_VISIBILITY |
| 1778 | void |
| 1779 | construct(pointer __p, _A0& __a0, const _A1& __a1) |
| 1780 | { |
| 1781 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1782 | } |
| 1783 | template <class _A0, class _A1> |
| 1784 | _LIBCPP_INLINE_VISIBILITY |
| 1785 | void |
| 1786 | construct(pointer __p, const _A0& __a0, const _A1& __a1) |
| 1787 | { |
| 1788 | ::new((void*)__p) _Tp(__a0, __a1); |
| 1789 | } |
| 1790 | #endif // !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) && !defined(_LIBCPP_HAS_NO_VARIADICS) |
| 1791 | _LIBCPP_INLINE_VISIBILITY void destroy(pointer __p) {__p->~_Tp();} |
| 1792 | }; |
| 1793 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1794 | template <class _Tp, class _Up> |
| 1795 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1796 | bool operator==(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return true;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1797 | |
| 1798 | template <class _Tp, class _Up> |
| 1799 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1800 | bool operator!=(const allocator<_Tp>&, const allocator<_Up>&) _NOEXCEPT {return false;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1801 | |
| 1802 | template <class _OutputIterator, class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 1803 | class _LIBCPP_TYPE_VIS_ONLY raw_storage_iterator |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1804 | : public iterator<output_iterator_tag, |
| 1805 | _Tp, // purposefully not C++03 |
| 1806 | ptrdiff_t, // purposefully not C++03 |
| 1807 | _Tp*, // purposefully not C++03 |
| 1808 | raw_storage_iterator<_OutputIterator, _Tp>&> // purposefully not C++03 |
| 1809 | { |
| 1810 | private: |
| 1811 | _OutputIterator __x_; |
| 1812 | public: |
| 1813 | _LIBCPP_INLINE_VISIBILITY explicit raw_storage_iterator(_OutputIterator __x) : __x_(__x) {} |
| 1814 | _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator*() {return *this;} |
| 1815 | _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator=(const _Tp& __element) |
| 1816 | {::new(&*__x_) _Tp(__element); return *this;} |
| 1817 | _LIBCPP_INLINE_VISIBILITY raw_storage_iterator& operator++() {++__x_; return *this;} |
| 1818 | _LIBCPP_INLINE_VISIBILITY raw_storage_iterator operator++(int) |
| 1819 | {raw_storage_iterator __t(*this); ++__x_; return __t;} |
| 1820 | }; |
| 1821 | |
| 1822 | template <class _Tp> |
| 1823 | pair<_Tp*, ptrdiff_t> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1824 | get_temporary_buffer(ptrdiff_t __n) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1825 | { |
| 1826 | pair<_Tp*, ptrdiff_t> __r(0, 0); |
| 1827 | const ptrdiff_t __m = (~ptrdiff_t(0) ^ |
| 1828 | ptrdiff_t(ptrdiff_t(1) << (sizeof(ptrdiff_t) * __CHAR_BIT__ - 1))) |
| 1829 | / sizeof(_Tp); |
| 1830 | if (__n > __m) |
| 1831 | __n = __m; |
| 1832 | while (__n > 0) |
| 1833 | { |
| 1834 | __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow)); |
| 1835 | if (__r.first) |
| 1836 | { |
| 1837 | __r.second = __n; |
| 1838 | break; |
| 1839 | } |
| 1840 | __n /= 2; |
| 1841 | } |
| 1842 | return __r; |
| 1843 | } |
| 1844 | |
| 1845 | template <class _Tp> |
| 1846 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1847 | void return_temporary_buffer(_Tp* __p) _NOEXCEPT {::operator delete(__p);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1848 | |
| 1849 | template <class _Tp> |
| 1850 | struct auto_ptr_ref |
| 1851 | { |
| 1852 | _Tp* __ptr_; |
| 1853 | }; |
| 1854 | |
| 1855 | template<class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 1856 | class _LIBCPP_TYPE_VIS_ONLY auto_ptr |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1857 | { |
| 1858 | private: |
| 1859 | _Tp* __ptr_; |
| 1860 | public: |
| 1861 | typedef _Tp element_type; |
| 1862 | |
| 1863 | _LIBCPP_INLINE_VISIBILITY explicit auto_ptr(_Tp* __p = 0) throw() : __ptr_(__p) {} |
| 1864 | _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr& __p) throw() : __ptr_(__p.release()) {} |
| 1865 | template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr<_Up>& __p) throw() |
| 1866 | : __ptr_(__p.release()) {} |
| 1867 | _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr& __p) throw() |
| 1868 | {reset(__p.release()); return *this;} |
| 1869 | template<class _Up> _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr<_Up>& __p) throw() |
| 1870 | {reset(__p.release()); return *this;} |
| 1871 | _LIBCPP_INLINE_VISIBILITY auto_ptr& operator=(auto_ptr_ref<_Tp> __p) throw() |
| 1872 | {reset(__p.__ptr_); return *this;} |
| 1873 | _LIBCPP_INLINE_VISIBILITY ~auto_ptr() throw() {delete __ptr_;} |
| 1874 | |
| 1875 | _LIBCPP_INLINE_VISIBILITY _Tp& operator*() const throw() |
| 1876 | {return *__ptr_;} |
| 1877 | _LIBCPP_INLINE_VISIBILITY _Tp* operator->() const throw() {return __ptr_;} |
| 1878 | _LIBCPP_INLINE_VISIBILITY _Tp* get() const throw() {return __ptr_;} |
| 1879 | _LIBCPP_INLINE_VISIBILITY _Tp* release() throw() |
| 1880 | { |
| 1881 | _Tp* __t = __ptr_; |
| 1882 | __ptr_ = 0; |
| 1883 | return __t; |
| 1884 | } |
| 1885 | _LIBCPP_INLINE_VISIBILITY void reset(_Tp* __p = 0) throw() |
| 1886 | { |
| 1887 | if (__ptr_ != __p) |
| 1888 | delete __ptr_; |
| 1889 | __ptr_ = __p; |
| 1890 | } |
| 1891 | |
| 1892 | _LIBCPP_INLINE_VISIBILITY auto_ptr(auto_ptr_ref<_Tp> __p) throw() : __ptr_(__p.__ptr_) {} |
| 1893 | template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr_ref<_Up>() throw() |
| 1894 | {auto_ptr_ref<_Up> __t; __t.__ptr_ = release(); return __t;} |
| 1895 | template<class _Up> _LIBCPP_INLINE_VISIBILITY operator auto_ptr<_Up>() throw() |
| 1896 | {return auto_ptr<_Up>(release());} |
| 1897 | }; |
| 1898 | |
| 1899 | template <> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 1900 | class _LIBCPP_TYPE_VIS_ONLY auto_ptr<void> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1901 | { |
| 1902 | public: |
| 1903 | typedef void element_type; |
| 1904 | }; |
| 1905 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1906 | template <class _T1, class _T2, bool = is_same<typename remove_cv<_T1>::type, |
| 1907 | typename remove_cv<_T2>::type>::value, |
Howard Hinnant | d4cf215 | 2011-12-11 20:31:33 +0000 | [diff] [blame] | 1908 | bool = is_empty<_T1>::value |
| 1909 | #if __has_feature(is_final) |
| 1910 | && !__is_final(_T1) |
| 1911 | #endif |
| 1912 | , |
| 1913 | bool = is_empty<_T2>::value |
| 1914 | #if __has_feature(is_final) |
| 1915 | && !__is_final(_T2) |
| 1916 | #endif |
| 1917 | > |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1918 | struct __libcpp_compressed_pair_switch; |
| 1919 | |
| 1920 | template <class _T1, class _T2, bool IsSame> |
| 1921 | struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, false> {enum {value = 0};}; |
| 1922 | |
| 1923 | template <class _T1, class _T2, bool IsSame> |
| 1924 | struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, true, false> {enum {value = 1};}; |
| 1925 | |
| 1926 | template <class _T1, class _T2, bool IsSame> |
| 1927 | struct __libcpp_compressed_pair_switch<_T1, _T2, IsSame, false, true> {enum {value = 2};}; |
| 1928 | |
| 1929 | template <class _T1, class _T2> |
| 1930 | struct __libcpp_compressed_pair_switch<_T1, _T2, false, true, true> {enum {value = 3};}; |
| 1931 | |
| 1932 | template <class _T1, class _T2> |
| 1933 | struct __libcpp_compressed_pair_switch<_T1, _T2, true, true, true> {enum {value = 1};}; |
| 1934 | |
| 1935 | template <class _T1, class _T2, unsigned = __libcpp_compressed_pair_switch<_T1, _T2>::value> |
| 1936 | class __libcpp_compressed_pair_imp; |
| 1937 | |
| 1938 | template <class _T1, class _T2> |
| 1939 | class __libcpp_compressed_pair_imp<_T1, _T2, 0> |
| 1940 | { |
| 1941 | private: |
| 1942 | _T1 __first_; |
| 1943 | _T2 __second_; |
| 1944 | public: |
| 1945 | typedef _T1 _T1_param; |
| 1946 | typedef _T2 _T2_param; |
| 1947 | |
| 1948 | typedef typename remove_reference<_T1>::type& _T1_reference; |
| 1949 | typedef typename remove_reference<_T2>::type& _T2_reference; |
| 1950 | |
| 1951 | typedef const typename remove_reference<_T1>::type& _T1_const_reference; |
| 1952 | typedef const typename remove_reference<_T2>::type& _T2_const_reference; |
| 1953 | |
| 1954 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1955 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1956 | : __first_(_VSTD::forward<_T1_param>(__t1)) {} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 1957 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1958 | : __second_(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1959 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 1960 | : __first_(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1961 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 1962 | #if defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 1963 | |
| 1964 | _LIBCPP_INLINE_VISIBILITY |
| 1965 | __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) |
| 1966 | _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && |
| 1967 | is_nothrow_copy_constructible<_T2>::value) |
| 1968 | : __first_(__p.first()), |
| 1969 | __second_(__p.second()) {} |
| 1970 | |
| 1971 | _LIBCPP_INLINE_VISIBILITY |
| 1972 | __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) |
| 1973 | _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && |
| 1974 | is_nothrow_copy_assignable<_T2>::value) |
| 1975 | { |
| 1976 | __first_ = __p.first(); |
| 1977 | __second_ = __p.second(); |
| 1978 | return *this; |
| 1979 | } |
| 1980 | |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 1981 | _LIBCPP_INLINE_VISIBILITY |
| 1982 | __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 1983 | _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && |
| 1984 | is_nothrow_move_constructible<_T2>::value) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 1985 | : __first_(_VSTD::forward<_T1>(__p.first())), |
| 1986 | __second_(_VSTD::forward<_T2>(__p.second())) {} |
| 1987 | |
| 1988 | _LIBCPP_INLINE_VISIBILITY |
| 1989 | __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) |
| 1990 | _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && |
| 1991 | is_nothrow_move_assignable<_T2>::value) |
| 1992 | { |
| 1993 | __first_ = _VSTD::forward<_T1>(__p.first()); |
| 1994 | __second_ = _VSTD::forward<_T2>(__p.second()); |
| 1995 | return *this; |
| 1996 | } |
| 1997 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 1998 | #endif // defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 8c23819 | 2013-05-06 16:58:36 +0000 | [diff] [blame] | 1999 | |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2000 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 2001 | |
| 2002 | template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2> |
| 2003 | _LIBCPP_INLINE_VISIBILITY |
| 2004 | __libcpp_compressed_pair_imp(piecewise_construct_t __pc, |
| 2005 | tuple<_Args1...> __first_args, |
| 2006 | tuple<_Args2...> __second_args, |
| 2007 | __tuple_indices<_I1...>, |
| 2008 | __tuple_indices<_I2...>) |
Marshall Clow | ba6dbf4 | 2014-06-24 00:46:19 +0000 | [diff] [blame] | 2009 | : __first_(_VSTD::forward<_Args1>(_VSTD::get<_I1>(__first_args))...), |
| 2010 | __second_(_VSTD::forward<_Args2>(_VSTD::get<_I2>(__second_args))...) |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2011 | {} |
| 2012 | |
| 2013 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 2014 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2015 | _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;} |
| 2016 | _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2017 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2018 | _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;} |
| 2019 | _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2020 | |
| 2021 | _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2022 | _NOEXCEPT_(__is_nothrow_swappable<_T1>::value && |
Marshall Clow | 394451d | 2014-06-30 15:35:09 +0000 | [diff] [blame] | 2023 | __is_nothrow_swappable<_T2>::value) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2024 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2025 | using _VSTD::swap; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2026 | swap(__first_, __x.__first_); |
| 2027 | swap(__second_, __x.__second_); |
| 2028 | } |
| 2029 | }; |
| 2030 | |
| 2031 | template <class _T1, class _T2> |
| 2032 | class __libcpp_compressed_pair_imp<_T1, _T2, 1> |
| 2033 | : private _T1 |
| 2034 | { |
| 2035 | private: |
| 2036 | _T2 __second_; |
| 2037 | public: |
| 2038 | typedef _T1 _T1_param; |
| 2039 | typedef _T2 _T2_param; |
| 2040 | |
| 2041 | typedef _T1& _T1_reference; |
| 2042 | typedef typename remove_reference<_T2>::type& _T2_reference; |
| 2043 | |
| 2044 | typedef const _T1& _T1_const_reference; |
| 2045 | typedef const typename remove_reference<_T2>::type& _T2_const_reference; |
| 2046 | |
| 2047 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2048 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2049 | : _T1(_VSTD::forward<_T1_param>(__t1)) {} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2050 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2051 | : __second_(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2052 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2053 | : _T1(_VSTD::forward<_T1_param>(__t1)), __second_(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2054 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2055 | #if defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2056 | |
| 2057 | _LIBCPP_INLINE_VISIBILITY |
| 2058 | __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) |
| 2059 | _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && |
| 2060 | is_nothrow_copy_constructible<_T2>::value) |
| 2061 | : _T1(__p.first()), __second_(__p.second()) {} |
| 2062 | |
| 2063 | _LIBCPP_INLINE_VISIBILITY |
| 2064 | __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) |
| 2065 | _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && |
| 2066 | is_nothrow_copy_assignable<_T2>::value) |
| 2067 | { |
| 2068 | _T1::operator=(__p.first()); |
| 2069 | __second_ = __p.second(); |
| 2070 | return *this; |
| 2071 | } |
| 2072 | |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2073 | _LIBCPP_INLINE_VISIBILITY |
| 2074 | __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2075 | _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && |
| 2076 | is_nothrow_move_constructible<_T2>::value) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2077 | : _T1(_VSTD::move(__p.first())), __second_(_VSTD::forward<_T2>(__p.second())) {} |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2078 | |
| 2079 | _LIBCPP_INLINE_VISIBILITY |
| 2080 | __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) |
| 2081 | _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && |
| 2082 | is_nothrow_move_assignable<_T2>::value) |
| 2083 | { |
| 2084 | _T1::operator=(_VSTD::move(__p.first())); |
| 2085 | __second_ = _VSTD::forward<_T2>(__p.second()); |
| 2086 | return *this; |
| 2087 | } |
| 2088 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2089 | #endif // defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 8c23819 | 2013-05-06 16:58:36 +0000 | [diff] [blame] | 2090 | |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2091 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 2092 | |
| 2093 | template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2> |
| 2094 | _LIBCPP_INLINE_VISIBILITY |
| 2095 | __libcpp_compressed_pair_imp(piecewise_construct_t __pc, |
| 2096 | tuple<_Args1...> __first_args, |
| 2097 | tuple<_Args2...> __second_args, |
| 2098 | __tuple_indices<_I1...>, |
| 2099 | __tuple_indices<_I2...>) |
Marshall Clow | ba6dbf4 | 2014-06-24 00:46:19 +0000 | [diff] [blame] | 2100 | : _T1(_VSTD::forward<_Args1>(_VSTD::get<_I1>(__first_args))...), |
| 2101 | __second_(_VSTD::forward<_Args2>(_VSTD::get<_I2>(__second_args))...) |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2102 | {} |
| 2103 | |
| 2104 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 2105 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2106 | _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;} |
| 2107 | _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2108 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2109 | _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return __second_;} |
| 2110 | _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return __second_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2111 | |
| 2112 | _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2113 | _NOEXCEPT_(__is_nothrow_swappable<_T1>::value && |
Marshall Clow | 394451d | 2014-06-30 15:35:09 +0000 | [diff] [blame] | 2114 | __is_nothrow_swappable<_T2>::value) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2115 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2116 | using _VSTD::swap; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2117 | swap(__second_, __x.__second_); |
| 2118 | } |
| 2119 | }; |
| 2120 | |
| 2121 | template <class _T1, class _T2> |
| 2122 | class __libcpp_compressed_pair_imp<_T1, _T2, 2> |
| 2123 | : private _T2 |
| 2124 | { |
| 2125 | private: |
| 2126 | _T1 __first_; |
| 2127 | public: |
| 2128 | typedef _T1 _T1_param; |
| 2129 | typedef _T2 _T2_param; |
| 2130 | |
| 2131 | typedef typename remove_reference<_T1>::type& _T1_reference; |
| 2132 | typedef _T2& _T2_reference; |
| 2133 | |
| 2134 | typedef const typename remove_reference<_T1>::type& _T1_const_reference; |
| 2135 | typedef const _T2& _T2_const_reference; |
| 2136 | |
| 2137 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {} |
| 2138 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2139 | : __first_(_VSTD::forward<_T1_param>(__t1)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2140 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2141 | : _T2(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2142 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2143 | _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && |
| 2144 | is_nothrow_move_constructible<_T2>::value) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2145 | : _T2(_VSTD::forward<_T2_param>(__t2)), __first_(_VSTD::forward<_T1_param>(__t1)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2146 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2147 | #if defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2148 | |
| 2149 | _LIBCPP_INLINE_VISIBILITY |
| 2150 | __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) |
| 2151 | _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && |
| 2152 | is_nothrow_copy_constructible<_T2>::value) |
| 2153 | : _T2(__p.second()), __first_(__p.first()) {} |
| 2154 | |
| 2155 | _LIBCPP_INLINE_VISIBILITY |
| 2156 | __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) |
| 2157 | _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && |
| 2158 | is_nothrow_copy_assignable<_T2>::value) |
| 2159 | { |
| 2160 | _T2::operator=(__p.second()); |
| 2161 | __first_ = __p.first(); |
| 2162 | return *this; |
| 2163 | } |
| 2164 | |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2165 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2166 | __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2167 | _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && |
| 2168 | is_nothrow_move_constructible<_T2>::value) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2169 | : _T2(_VSTD::forward<_T2>(__p.second())), __first_(_VSTD::move(__p.first())) {} |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2170 | |
| 2171 | _LIBCPP_INLINE_VISIBILITY |
| 2172 | __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) |
| 2173 | _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && |
| 2174 | is_nothrow_move_assignable<_T2>::value) |
| 2175 | { |
| 2176 | _T2::operator=(_VSTD::forward<_T2>(__p.second())); |
| 2177 | __first_ = _VSTD::move(__p.first()); |
| 2178 | return *this; |
| 2179 | } |
| 2180 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2181 | #endif // defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 8c23819 | 2013-05-06 16:58:36 +0000 | [diff] [blame] | 2182 | |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2183 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 2184 | |
| 2185 | template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2> |
| 2186 | _LIBCPP_INLINE_VISIBILITY |
| 2187 | __libcpp_compressed_pair_imp(piecewise_construct_t __pc, |
| 2188 | tuple<_Args1...> __first_args, |
| 2189 | tuple<_Args2...> __second_args, |
| 2190 | __tuple_indices<_I1...>, |
| 2191 | __tuple_indices<_I2...>) |
Marshall Clow | ba6dbf4 | 2014-06-24 00:46:19 +0000 | [diff] [blame] | 2192 | : _T2(_VSTD::forward<_Args2>(_VSTD::get<_I2>(__second_args))...), |
| 2193 | __first_(_VSTD::forward<_Args1>(_VSTD::get<_I1>(__first_args))...) |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2194 | |
| 2195 | {} |
| 2196 | |
| 2197 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 2198 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2199 | _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return __first_;} |
| 2200 | _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return __first_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2201 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2202 | _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;} |
| 2203 | _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2204 | |
| 2205 | _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp& __x) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2206 | _NOEXCEPT_(__is_nothrow_swappable<_T1>::value && |
Marshall Clow | 394451d | 2014-06-30 15:35:09 +0000 | [diff] [blame] | 2207 | __is_nothrow_swappable<_T2>::value) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2208 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2209 | using _VSTD::swap; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2210 | swap(__first_, __x.__first_); |
| 2211 | } |
| 2212 | }; |
| 2213 | |
| 2214 | template <class _T1, class _T2> |
| 2215 | class __libcpp_compressed_pair_imp<_T1, _T2, 3> |
| 2216 | : private _T1, |
| 2217 | private _T2 |
| 2218 | { |
| 2219 | public: |
| 2220 | typedef _T1 _T1_param; |
| 2221 | typedef _T2 _T2_param; |
| 2222 | |
| 2223 | typedef _T1& _T1_reference; |
| 2224 | typedef _T2& _T2_reference; |
| 2225 | |
| 2226 | typedef const _T1& _T1_const_reference; |
| 2227 | typedef const _T2& _T2_const_reference; |
| 2228 | |
| 2229 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp() {} |
| 2230 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T1_param __t1) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2231 | : _T1(_VSTD::forward<_T1_param>(__t1)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2232 | _LIBCPP_INLINE_VISIBILITY explicit __libcpp_compressed_pair_imp(_T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2233 | : _T2(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2234 | _LIBCPP_INLINE_VISIBILITY __libcpp_compressed_pair_imp(_T1_param __t1, _T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2235 | : _T1(_VSTD::forward<_T1_param>(__t1)), _T2(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2236 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2237 | #if defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2238 | |
| 2239 | _LIBCPP_INLINE_VISIBILITY |
| 2240 | __libcpp_compressed_pair_imp(const __libcpp_compressed_pair_imp& __p) |
| 2241 | _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && |
| 2242 | is_nothrow_copy_constructible<_T2>::value) |
| 2243 | : _T1(__p.first()), _T2(__p.second()) {} |
| 2244 | |
| 2245 | _LIBCPP_INLINE_VISIBILITY |
| 2246 | __libcpp_compressed_pair_imp& operator=(const __libcpp_compressed_pair_imp& __p) |
| 2247 | _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && |
| 2248 | is_nothrow_copy_assignable<_T2>::value) |
| 2249 | { |
| 2250 | _T1::operator=(__p.first()); |
| 2251 | _T2::operator=(__p.second()); |
| 2252 | return *this; |
| 2253 | } |
| 2254 | |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2255 | _LIBCPP_INLINE_VISIBILITY |
| 2256 | __libcpp_compressed_pair_imp(__libcpp_compressed_pair_imp&& __p) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2257 | _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && |
| 2258 | is_nothrow_move_constructible<_T2>::value) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2259 | : _T1(_VSTD::move(__p.first())), _T2(_VSTD::move(__p.second())) {} |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2260 | |
| 2261 | _LIBCPP_INLINE_VISIBILITY |
| 2262 | __libcpp_compressed_pair_imp& operator=(__libcpp_compressed_pair_imp&& __p) |
| 2263 | _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && |
| 2264 | is_nothrow_move_assignable<_T2>::value) |
| 2265 | { |
| 2266 | _T1::operator=(_VSTD::move(__p.first())); |
| 2267 | _T2::operator=(_VSTD::move(__p.second())); |
| 2268 | return *this; |
| 2269 | } |
| 2270 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2271 | #endif // defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 8c23819 | 2013-05-06 16:58:36 +0000 | [diff] [blame] | 2272 | |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2273 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 2274 | |
| 2275 | template <class... _Args1, class... _Args2, size_t... _I1, size_t... _I2> |
| 2276 | _LIBCPP_INLINE_VISIBILITY |
| 2277 | __libcpp_compressed_pair_imp(piecewise_construct_t __pc, |
| 2278 | tuple<_Args1...> __first_args, |
| 2279 | tuple<_Args2...> __second_args, |
| 2280 | __tuple_indices<_I1...>, |
| 2281 | __tuple_indices<_I2...>) |
Marshall Clow | ba6dbf4 | 2014-06-24 00:46:19 +0000 | [diff] [blame] | 2282 | : _T1(_VSTD::forward<_Args1>(_VSTD::get<_I1>(__first_args))...), |
| 2283 | _T2(_VSTD::forward<_Args2>(_VSTD::get<_I2>(__second_args))...) |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2284 | {} |
| 2285 | |
| 2286 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 2287 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2288 | _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return *this;} |
| 2289 | _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return *this;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2290 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2291 | _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return *this;} |
| 2292 | _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return *this;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2293 | |
Howard Hinnant | ec3773c | 2011-12-01 20:21:04 +0000 | [diff] [blame] | 2294 | _LIBCPP_INLINE_VISIBILITY void swap(__libcpp_compressed_pair_imp&) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2295 | _NOEXCEPT_(__is_nothrow_swappable<_T1>::value && |
Marshall Clow | 394451d | 2014-06-30 15:35:09 +0000 | [diff] [blame] | 2296 | __is_nothrow_swappable<_T2>::value) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2297 | { |
| 2298 | } |
| 2299 | }; |
| 2300 | |
| 2301 | template <class _T1, class _T2> |
| 2302 | class __compressed_pair |
| 2303 | : private __libcpp_compressed_pair_imp<_T1, _T2> |
| 2304 | { |
| 2305 | typedef __libcpp_compressed_pair_imp<_T1, _T2> base; |
| 2306 | public: |
| 2307 | typedef typename base::_T1_param _T1_param; |
| 2308 | typedef typename base::_T2_param _T2_param; |
| 2309 | |
| 2310 | typedef typename base::_T1_reference _T1_reference; |
| 2311 | typedef typename base::_T2_reference _T2_reference; |
| 2312 | |
| 2313 | typedef typename base::_T1_const_reference _T1_const_reference; |
| 2314 | typedef typename base::_T2_const_reference _T2_const_reference; |
| 2315 | |
| 2316 | _LIBCPP_INLINE_VISIBILITY __compressed_pair() {} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2317 | _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T1_param __t1) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2318 | : base(_VSTD::forward<_T1_param>(__t1)) {} |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2319 | _LIBCPP_INLINE_VISIBILITY explicit __compressed_pair(_T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2320 | : base(_VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2321 | _LIBCPP_INLINE_VISIBILITY __compressed_pair(_T1_param __t1, _T2_param __t2) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2322 | : base(_VSTD::forward<_T1_param>(__t1), _VSTD::forward<_T2_param>(__t2)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2323 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2324 | #if defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2325 | |
| 2326 | _LIBCPP_INLINE_VISIBILITY |
| 2327 | __compressed_pair(const __compressed_pair& __p) |
| 2328 | _NOEXCEPT_(is_nothrow_copy_constructible<_T1>::value && |
| 2329 | is_nothrow_copy_constructible<_T2>::value) |
| 2330 | : base(__p) {} |
| 2331 | |
| 2332 | _LIBCPP_INLINE_VISIBILITY |
| 2333 | __compressed_pair& operator=(const __compressed_pair& __p) |
| 2334 | _NOEXCEPT_(is_nothrow_copy_assignable<_T1>::value && |
| 2335 | is_nothrow_copy_assignable<_T2>::value) |
| 2336 | { |
| 2337 | base::operator=(__p); |
| 2338 | return *this; |
| 2339 | } |
| 2340 | |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2341 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2342 | __compressed_pair(__compressed_pair&& __p) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2343 | _NOEXCEPT_(is_nothrow_move_constructible<_T1>::value && |
| 2344 | is_nothrow_move_constructible<_T2>::value) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2345 | : base(_VSTD::move(__p)) {} |
Howard Hinnant | 61aa601 | 2011-07-01 19:24:36 +0000 | [diff] [blame] | 2346 | |
| 2347 | _LIBCPP_INLINE_VISIBILITY |
| 2348 | __compressed_pair& operator=(__compressed_pair&& __p) |
| 2349 | _NOEXCEPT_(is_nothrow_move_assignable<_T1>::value && |
| 2350 | is_nothrow_move_assignable<_T2>::value) |
| 2351 | { |
| 2352 | base::operator=(_VSTD::move(__p)); |
| 2353 | return *this; |
| 2354 | } |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2355 | |
Howard Hinnant | 3f81e9e | 2013-11-13 00:39:22 +0000 | [diff] [blame] | 2356 | #endif // defined(_LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS) && !defined(_LIBCPP_HAS_NO_RVALUE_REFERENCES) |
Howard Hinnant | 8c23819 | 2013-05-06 16:58:36 +0000 | [diff] [blame] | 2357 | |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2358 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 2359 | |
| 2360 | template <class... _Args1, class... _Args2> |
| 2361 | _LIBCPP_INLINE_VISIBILITY |
| 2362 | __compressed_pair(piecewise_construct_t __pc, tuple<_Args1...> __first_args, |
| 2363 | tuple<_Args2...> __second_args) |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2364 | : base(__pc, _VSTD::move(__first_args), _VSTD::move(__second_args), |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 2365 | typename __make_tuple_indices<sizeof...(_Args1)>::type(), |
| 2366 | typename __make_tuple_indices<sizeof...(_Args2) >::type()) |
| 2367 | {} |
| 2368 | |
| 2369 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 2370 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2371 | _LIBCPP_INLINE_VISIBILITY _T1_reference first() _NOEXCEPT {return base::first();} |
| 2372 | _LIBCPP_INLINE_VISIBILITY _T1_const_reference first() const _NOEXCEPT {return base::first();} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2373 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2374 | _LIBCPP_INLINE_VISIBILITY _T2_reference second() _NOEXCEPT {return base::second();} |
| 2375 | _LIBCPP_INLINE_VISIBILITY _T2_const_reference second() const _NOEXCEPT {return base::second();} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2376 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2377 | _LIBCPP_INLINE_VISIBILITY void swap(__compressed_pair& __x) |
| 2378 | _NOEXCEPT_(__is_nothrow_swappable<_T1>::value && |
Marshall Clow | 394451d | 2014-06-30 15:35:09 +0000 | [diff] [blame] | 2379 | __is_nothrow_swappable<_T2>::value) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2380 | {base::swap(__x);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2381 | }; |
| 2382 | |
| 2383 | template <class _T1, class _T2> |
| 2384 | inline _LIBCPP_INLINE_VISIBILITY |
| 2385 | void |
| 2386 | swap(__compressed_pair<_T1, _T2>& __x, __compressed_pair<_T1, _T2>& __y) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2387 | _NOEXCEPT_(__is_nothrow_swappable<_T1>::value && |
Marshall Clow | 394451d | 2014-06-30 15:35:09 +0000 | [diff] [blame] | 2388 | __is_nothrow_swappable<_T2>::value) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2389 | {__x.swap(__y);} |
| 2390 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2391 | // __same_or_less_cv_qualified |
| 2392 | |
| 2393 | template <class _Ptr1, class _Ptr2, |
| 2394 | bool = is_same<typename remove_cv<typename pointer_traits<_Ptr1>::element_type>::type, |
| 2395 | typename remove_cv<typename pointer_traits<_Ptr2>::element_type>::type |
| 2396 | >::value |
| 2397 | > |
| 2398 | struct __same_or_less_cv_qualified_imp |
| 2399 | : is_convertible<_Ptr1, _Ptr2> {}; |
| 2400 | |
| 2401 | template <class _Ptr1, class _Ptr2> |
| 2402 | struct __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2, false> |
| 2403 | : false_type {}; |
| 2404 | |
Marshall Clow | 5f64a2b | 2014-04-26 05:19:48 +0000 | [diff] [blame] | 2405 | template <class _Ptr1, class _Ptr2, bool = is_pointer<_Ptr1>::value || |
| 2406 | is_same<_Ptr1, _Ptr2>::value || |
| 2407 | __has_element_type<_Ptr1>::value> |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2408 | struct __same_or_less_cv_qualified |
| 2409 | : __same_or_less_cv_qualified_imp<_Ptr1, _Ptr2> {}; |
| 2410 | |
| 2411 | template <class _Ptr1, class _Ptr2> |
Marshall Clow | 5f64a2b | 2014-04-26 05:19:48 +0000 | [diff] [blame] | 2412 | struct __same_or_less_cv_qualified<_Ptr1, _Ptr2, false> |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2413 | : false_type {}; |
| 2414 | |
| 2415 | // default_delete |
| 2416 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2417 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 2418 | struct _LIBCPP_TYPE_VIS_ONLY default_delete |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2419 | { |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2420 | #ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
| 2421 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT = default; |
| 2422 | #else |
| 2423 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT {} |
| 2424 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2425 | template <class _Up> |
| 2426 | _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up>&, |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2427 | typename enable_if<is_convertible<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {} |
| 2428 | _LIBCPP_INLINE_VISIBILITY void operator() (_Tp* __ptr) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2429 | { |
| 2430 | static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type"); |
Howard Hinnant | 05e7d24 | 2013-04-24 19:44:26 +0000 | [diff] [blame] | 2431 | static_assert(!is_void<_Tp>::value, "default_delete can not delete incomplete type"); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2432 | delete __ptr; |
| 2433 | } |
| 2434 | }; |
| 2435 | |
| 2436 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 2437 | struct _LIBCPP_TYPE_VIS_ONLY default_delete<_Tp[]> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2438 | { |
Howard Hinnant | 8e84350 | 2011-12-18 21:19:44 +0000 | [diff] [blame] | 2439 | public: |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2440 | #ifndef _LIBCPP_HAS_NO_DEFAULTED_FUNCTIONS |
| 2441 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT = default; |
| 2442 | #else |
| 2443 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR default_delete() _NOEXCEPT {} |
| 2444 | #endif |
Howard Hinnant | 8e84350 | 2011-12-18 21:19:44 +0000 | [diff] [blame] | 2445 | template <class _Up> |
| 2446 | _LIBCPP_INLINE_VISIBILITY default_delete(const default_delete<_Up[]>&, |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2447 | typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) _NOEXCEPT {} |
Howard Hinnant | 8e84350 | 2011-12-18 21:19:44 +0000 | [diff] [blame] | 2448 | template <class _Up> |
| 2449 | _LIBCPP_INLINE_VISIBILITY |
| 2450 | void operator() (_Up* __ptr, |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2451 | typename enable_if<__same_or_less_cv_qualified<_Up*, _Tp*>::value>::type* = 0) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2452 | { |
| 2453 | static_assert(sizeof(_Tp) > 0, "default_delete can not delete incomplete type"); |
Howard Hinnant | 05e7d24 | 2013-04-24 19:44:26 +0000 | [diff] [blame] | 2454 | static_assert(!is_void<_Tp>::value, "default_delete can not delete incomplete type"); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2455 | delete [] __ptr; |
| 2456 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2457 | }; |
| 2458 | |
| 2459 | template <class _Tp, class _Dp = default_delete<_Tp> > |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 2460 | class _LIBCPP_TYPE_VIS_ONLY unique_ptr |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2461 | { |
| 2462 | public: |
| 2463 | typedef _Tp element_type; |
| 2464 | typedef _Dp deleter_type; |
| 2465 | typedef typename __pointer_type<_Tp, deleter_type>::type pointer; |
| 2466 | private: |
| 2467 | __compressed_pair<pointer, deleter_type> __ptr_; |
| 2468 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2469 | #ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2470 | unique_ptr(unique_ptr&); |
| 2471 | template <class _Up, class _Ep> |
| 2472 | unique_ptr(unique_ptr<_Up, _Ep>&); |
| 2473 | unique_ptr& operator=(unique_ptr&); |
| 2474 | template <class _Up, class _Ep> |
| 2475 | unique_ptr& operator=(unique_ptr<_Up, _Ep>&); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2476 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2477 | |
| 2478 | struct __nat {int __for_bool_;}; |
| 2479 | |
| 2480 | typedef typename remove_reference<deleter_type>::type& _Dp_reference; |
| 2481 | typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference; |
| 2482 | public: |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2483 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2484 | : __ptr_(pointer()) |
| 2485 | { |
| 2486 | static_assert(!is_pointer<deleter_type>::value, |
| 2487 | "unique_ptr constructed with null function pointer deleter"); |
| 2488 | } |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2489 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2490 | : __ptr_(pointer()) |
| 2491 | { |
| 2492 | static_assert(!is_pointer<deleter_type>::value, |
| 2493 | "unique_ptr constructed with null function pointer deleter"); |
| 2494 | } |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2495 | _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2496 | : __ptr_(_VSTD::move(__p)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2497 | { |
| 2498 | static_assert(!is_pointer<deleter_type>::value, |
| 2499 | "unique_ptr constructed with null function pointer deleter"); |
| 2500 | } |
| 2501 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2502 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2503 | _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename conditional< |
| 2504 | is_reference<deleter_type>::value, |
| 2505 | deleter_type, |
| 2506 | typename add_lvalue_reference<const deleter_type>::type>::type __d) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2507 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2508 | : __ptr_(__p, __d) {} |
| 2509 | |
| 2510 | _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, typename remove_reference<deleter_type>::type&& __d) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2511 | _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2512 | : __ptr_(__p, _VSTD::move(__d)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2513 | { |
| 2514 | static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference"); |
| 2515 | } |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2516 | _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2517 | : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2518 | template <class _Up, class _Ep> |
| 2519 | _LIBCPP_INLINE_VISIBILITY |
| 2520 | unique_ptr(unique_ptr<_Up, _Ep>&& __u, |
| 2521 | typename enable_if |
| 2522 | < |
| 2523 | !is_array<_Up>::value && |
| 2524 | is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value && |
| 2525 | is_convertible<_Ep, deleter_type>::value && |
| 2526 | ( |
| 2527 | !is_reference<deleter_type>::value || |
| 2528 | is_same<deleter_type, _Ep>::value |
| 2529 | ), |
| 2530 | __nat |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2531 | >::type = __nat()) _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2532 | : __ptr_(__u.release(), _VSTD::forward<_Ep>(__u.get_deleter())) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2533 | |
| 2534 | template <class _Up> |
| 2535 | _LIBCPP_INLINE_VISIBILITY unique_ptr(auto_ptr<_Up>&& __p, |
| 2536 | typename enable_if< |
| 2537 | is_convertible<_Up*, _Tp*>::value && |
| 2538 | is_same<_Dp, default_delete<_Tp> >::value, |
| 2539 | __nat |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2540 | >::type = __nat()) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2541 | : __ptr_(__p.release()) |
| 2542 | { |
| 2543 | } |
| 2544 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2545 | _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2546 | { |
| 2547 | reset(__u.release()); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2548 | __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2549 | return *this; |
| 2550 | } |
| 2551 | |
| 2552 | template <class _Up, class _Ep> |
| 2553 | _LIBCPP_INLINE_VISIBILITY |
| 2554 | typename enable_if |
| 2555 | < |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2556 | !is_array<_Up>::value && |
| 2557 | is_convertible<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value && |
| 2558 | is_assignable<deleter_type&, _Ep&&>::value, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2559 | unique_ptr& |
| 2560 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2561 | operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2562 | { |
| 2563 | reset(__u.release()); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2564 | __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2565 | return *this; |
| 2566 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2567 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2568 | |
| 2569 | _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>() |
| 2570 | { |
| 2571 | return __rv<unique_ptr>(*this); |
| 2572 | } |
| 2573 | |
| 2574 | _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2575 | : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2576 | |
| 2577 | template <class _Up, class _Ep> |
| 2578 | _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr<_Up, _Ep> __u) |
| 2579 | { |
| 2580 | reset(__u.release()); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2581 | __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2582 | return *this; |
| 2583 | } |
| 2584 | |
| 2585 | _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2586 | : __ptr_(_VSTD::move(__p), _VSTD::move(__d)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2587 | |
| 2588 | template <class _Up> |
| 2589 | _LIBCPP_INLINE_VISIBILITY |
| 2590 | typename enable_if< |
| 2591 | is_convertible<_Up*, _Tp*>::value && |
| 2592 | is_same<_Dp, default_delete<_Tp> >::value, |
| 2593 | unique_ptr& |
| 2594 | >::type |
| 2595 | operator=(auto_ptr<_Up> __p) |
| 2596 | {reset(__p.release()); return *this;} |
| 2597 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2598 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2599 | _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();} |
| 2600 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2601 | _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2602 | { |
| 2603 | reset(); |
| 2604 | return *this; |
| 2605 | } |
| 2606 | |
| 2607 | _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator*() const |
| 2608 | {return *__ptr_.first();} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2609 | _LIBCPP_INLINE_VISIBILITY pointer operator->() const _NOEXCEPT {return __ptr_.first();} |
| 2610 | _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();} |
| 2611 | _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT |
| 2612 | {return __ptr_.second();} |
| 2613 | _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT |
| 2614 | {return __ptr_.second();} |
Howard Hinnant | 7786188 | 2012-02-21 21:46:43 +0000 | [diff] [blame] | 2615 | _LIBCPP_INLINE_VISIBILITY |
| 2616 | _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT |
| 2617 | {return __ptr_.first() != nullptr;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2618 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2619 | _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2620 | { |
| 2621 | pointer __t = __ptr_.first(); |
| 2622 | __ptr_.first() = pointer(); |
| 2623 | return __t; |
| 2624 | } |
| 2625 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2626 | _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2627 | { |
| 2628 | pointer __tmp = __ptr_.first(); |
| 2629 | __ptr_.first() = __p; |
| 2630 | if (__tmp) |
| 2631 | __ptr_.second()(__tmp); |
| 2632 | } |
| 2633 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2634 | _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) _NOEXCEPT |
| 2635 | {__ptr_.swap(__u.__ptr_);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2636 | }; |
| 2637 | |
| 2638 | template <class _Tp, class _Dp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 2639 | class _LIBCPP_TYPE_VIS_ONLY unique_ptr<_Tp[], _Dp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2640 | { |
| 2641 | public: |
| 2642 | typedef _Tp element_type; |
| 2643 | typedef _Dp deleter_type; |
| 2644 | typedef typename __pointer_type<_Tp, deleter_type>::type pointer; |
| 2645 | private: |
| 2646 | __compressed_pair<pointer, deleter_type> __ptr_; |
| 2647 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2648 | #ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2649 | unique_ptr(unique_ptr&); |
| 2650 | template <class _Up> |
| 2651 | unique_ptr(unique_ptr<_Up>&); |
| 2652 | unique_ptr& operator=(unique_ptr&); |
| 2653 | template <class _Up> |
| 2654 | unique_ptr& operator=(unique_ptr<_Up>&); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2655 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2656 | |
| 2657 | struct __nat {int __for_bool_;}; |
| 2658 | |
| 2659 | typedef typename remove_reference<deleter_type>::type& _Dp_reference; |
| 2660 | typedef const typename remove_reference<deleter_type>::type& _Dp_const_reference; |
| 2661 | public: |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2662 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2663 | : __ptr_(pointer()) |
| 2664 | { |
| 2665 | static_assert(!is_pointer<deleter_type>::value, |
| 2666 | "unique_ptr constructed with null function pointer deleter"); |
| 2667 | } |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2668 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR unique_ptr(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2669 | : __ptr_(pointer()) |
| 2670 | { |
| 2671 | static_assert(!is_pointer<deleter_type>::value, |
| 2672 | "unique_ptr constructed with null function pointer deleter"); |
| 2673 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2674 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 2675 | template <class _Pp> |
| 2676 | _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(_Pp __p, |
| 2677 | typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value, __nat>::type = __nat()) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2678 | : __ptr_(__p) |
| 2679 | { |
| 2680 | static_assert(!is_pointer<deleter_type>::value, |
| 2681 | "unique_ptr constructed with null function pointer deleter"); |
| 2682 | } |
| 2683 | |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 2684 | template <class _Pp> |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 2685 | _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, typename conditional< |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2686 | is_reference<deleter_type>::value, |
| 2687 | deleter_type, |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 2688 | typename add_lvalue_reference<const deleter_type>::type>::type __d, |
| 2689 | typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value, __nat>::type = __nat()) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2690 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2691 | : __ptr_(__p, __d) {} |
| 2692 | |
| 2693 | _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename conditional< |
| 2694 | is_reference<deleter_type>::value, |
| 2695 | deleter_type, |
| 2696 | typename add_lvalue_reference<const deleter_type>::type>::type __d) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2697 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2698 | : __ptr_(pointer(), __d) {} |
| 2699 | |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 2700 | template <class _Pp> |
| 2701 | _LIBCPP_INLINE_VISIBILITY unique_ptr(_Pp __p, |
| 2702 | typename remove_reference<deleter_type>::type&& __d, |
| 2703 | typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value, __nat>::type = __nat()) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2704 | _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2705 | : __ptr_(__p, _VSTD::move(__d)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2706 | { |
| 2707 | static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference"); |
| 2708 | } |
| 2709 | |
| 2710 | _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, typename remove_reference<deleter_type>::type&& __d) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2711 | _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2712 | : __ptr_(pointer(), _VSTD::move(__d)) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2713 | { |
| 2714 | static_assert(!is_reference<deleter_type>::value, "rvalue deleter bound to reference"); |
| 2715 | } |
| 2716 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2717 | _LIBCPP_INLINE_VISIBILITY unique_ptr(unique_ptr&& __u) _NOEXCEPT |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2718 | : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2719 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2720 | _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(unique_ptr&& __u) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2721 | { |
| 2722 | reset(__u.release()); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2723 | __ptr_.second() = _VSTD::forward<deleter_type>(__u.get_deleter()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2724 | return *this; |
| 2725 | } |
Howard Hinnant | 8e84350 | 2011-12-18 21:19:44 +0000 | [diff] [blame] | 2726 | |
| 2727 | template <class _Up, class _Ep> |
| 2728 | _LIBCPP_INLINE_VISIBILITY |
| 2729 | unique_ptr(unique_ptr<_Up, _Ep>&& __u, |
| 2730 | typename enable_if |
| 2731 | < |
| 2732 | is_array<_Up>::value && |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2733 | __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value |
Howard Hinnant | 8e84350 | 2011-12-18 21:19:44 +0000 | [diff] [blame] | 2734 | && is_convertible<_Ep, deleter_type>::value && |
| 2735 | ( |
| 2736 | !is_reference<deleter_type>::value || |
| 2737 | is_same<deleter_type, _Ep>::value |
| 2738 | ), |
| 2739 | __nat |
| 2740 | >::type = __nat() |
| 2741 | ) _NOEXCEPT |
| 2742 | : __ptr_(__u.release(), _VSTD::forward<deleter_type>(__u.get_deleter())) {} |
| 2743 | |
| 2744 | |
| 2745 | template <class _Up, class _Ep> |
| 2746 | _LIBCPP_INLINE_VISIBILITY |
| 2747 | typename enable_if |
| 2748 | < |
| 2749 | is_array<_Up>::value && |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 2750 | __same_or_less_cv_qualified<typename unique_ptr<_Up, _Ep>::pointer, pointer>::value && |
| 2751 | is_assignable<deleter_type&, _Ep&&>::value, |
Howard Hinnant | 8e84350 | 2011-12-18 21:19:44 +0000 | [diff] [blame] | 2752 | unique_ptr& |
| 2753 | >::type |
| 2754 | operator=(unique_ptr<_Up, _Ep>&& __u) _NOEXCEPT |
| 2755 | { |
| 2756 | reset(__u.release()); |
| 2757 | __ptr_.second() = _VSTD::forward<_Ep>(__u.get_deleter()); |
| 2758 | return *this; |
| 2759 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2760 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2761 | |
| 2762 | _LIBCPP_INLINE_VISIBILITY explicit unique_ptr(pointer __p) |
| 2763 | : __ptr_(__p) |
| 2764 | { |
| 2765 | static_assert(!is_pointer<deleter_type>::value, |
| 2766 | "unique_ptr constructed with null function pointer deleter"); |
| 2767 | } |
| 2768 | |
| 2769 | _LIBCPP_INLINE_VISIBILITY unique_ptr(pointer __p, deleter_type __d) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2770 | : __ptr_(__p, _VSTD::forward<deleter_type>(__d)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2771 | |
| 2772 | _LIBCPP_INLINE_VISIBILITY unique_ptr(nullptr_t, deleter_type __d) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2773 | : __ptr_(pointer(), _VSTD::forward<deleter_type>(__d)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2774 | |
| 2775 | _LIBCPP_INLINE_VISIBILITY operator __rv<unique_ptr>() |
| 2776 | { |
| 2777 | return __rv<unique_ptr>(*this); |
| 2778 | } |
| 2779 | |
| 2780 | _LIBCPP_INLINE_VISIBILITY unique_ptr(__rv<unique_ptr> __u) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2781 | : __ptr_(__u->release(), _VSTD::forward<deleter_type>(__u->get_deleter())) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2782 | |
| 2783 | _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(__rv<unique_ptr> __u) |
| 2784 | { |
| 2785 | reset(__u->release()); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 2786 | __ptr_.second() = _VSTD::forward<deleter_type>(__u->get_deleter()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2787 | return *this; |
| 2788 | } |
| 2789 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2790 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2791 | _LIBCPP_INLINE_VISIBILITY ~unique_ptr() {reset();} |
| 2792 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2793 | _LIBCPP_INLINE_VISIBILITY unique_ptr& operator=(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2794 | { |
| 2795 | reset(); |
| 2796 | return *this; |
| 2797 | } |
| 2798 | |
| 2799 | _LIBCPP_INLINE_VISIBILITY typename add_lvalue_reference<_Tp>::type operator[](size_t __i) const |
| 2800 | {return __ptr_.first()[__i];} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2801 | _LIBCPP_INLINE_VISIBILITY pointer get() const _NOEXCEPT {return __ptr_.first();} |
| 2802 | _LIBCPP_INLINE_VISIBILITY _Dp_reference get_deleter() _NOEXCEPT |
| 2803 | {return __ptr_.second();} |
| 2804 | _LIBCPP_INLINE_VISIBILITY _Dp_const_reference get_deleter() const _NOEXCEPT |
| 2805 | {return __ptr_.second();} |
Howard Hinnant | 7786188 | 2012-02-21 21:46:43 +0000 | [diff] [blame] | 2806 | _LIBCPP_INLINE_VISIBILITY |
| 2807 | _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT |
| 2808 | {return __ptr_.first() != nullptr;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2809 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2810 | _LIBCPP_INLINE_VISIBILITY pointer release() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2811 | { |
| 2812 | pointer __t = __ptr_.first(); |
| 2813 | __ptr_.first() = pointer(); |
| 2814 | return __t; |
| 2815 | } |
| 2816 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2817 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 2818 | template <class _Pp> |
| 2819 | _LIBCPP_INLINE_VISIBILITY |
| 2820 | typename enable_if<__same_or_less_cv_qualified<_Pp, pointer>::value, void>::type |
| 2821 | reset(_Pp __p) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2822 | { |
| 2823 | pointer __tmp = __ptr_.first(); |
| 2824 | __ptr_.first() = __p; |
| 2825 | if (__tmp) |
| 2826 | __ptr_.second()(__tmp); |
| 2827 | } |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2828 | _LIBCPP_INLINE_VISIBILITY void reset(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2829 | { |
| 2830 | pointer __tmp = __ptr_.first(); |
| 2831 | __ptr_.first() = nullptr; |
| 2832 | if (__tmp) |
| 2833 | __ptr_.second()(__tmp); |
| 2834 | } |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2835 | _LIBCPP_INLINE_VISIBILITY void reset() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2836 | { |
| 2837 | pointer __tmp = __ptr_.first(); |
| 2838 | __ptr_.first() = nullptr; |
| 2839 | if (__tmp) |
| 2840 | __ptr_.second()(__tmp); |
| 2841 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2842 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2843 | _LIBCPP_INLINE_VISIBILITY void reset(pointer __p = pointer()) |
| 2844 | { |
| 2845 | pointer __tmp = __ptr_.first(); |
| 2846 | __ptr_.first() = __p; |
| 2847 | if (__tmp) |
| 2848 | __ptr_.second()(__tmp); |
| 2849 | } |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2850 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2851 | |
| 2852 | _LIBCPP_INLINE_VISIBILITY void swap(unique_ptr& __u) {__ptr_.swap(__u.__ptr_);} |
| 2853 | private: |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 2854 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2855 | #ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2856 | template <class _Up> |
| 2857 | explicit unique_ptr(_Up); |
| 2858 | template <class _Up> |
| 2859 | unique_ptr(_Up __u, |
| 2860 | typename conditional< |
| 2861 | is_reference<deleter_type>::value, |
| 2862 | deleter_type, |
| 2863 | typename add_lvalue_reference<const deleter_type>::type>::type, |
| 2864 | typename enable_if |
| 2865 | < |
| 2866 | is_convertible<_Up, pointer>::value, |
| 2867 | __nat |
| 2868 | >::type = __nat()); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 2869 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2870 | }; |
| 2871 | |
| 2872 | template <class _Tp, class _Dp> |
| 2873 | inline _LIBCPP_INLINE_VISIBILITY |
| 2874 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 2875 | swap(unique_ptr<_Tp, _Dp>& __x, unique_ptr<_Tp, _Dp>& __y) _NOEXCEPT {__x.swap(__y);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2876 | |
| 2877 | template <class _T1, class _D1, class _T2, class _D2> |
| 2878 | inline _LIBCPP_INLINE_VISIBILITY |
| 2879 | bool |
| 2880 | operator==(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __x.get() == __y.get();} |
| 2881 | |
| 2882 | template <class _T1, class _D1, class _T2, class _D2> |
| 2883 | inline _LIBCPP_INLINE_VISIBILITY |
| 2884 | bool |
| 2885 | operator!=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x == __y);} |
| 2886 | |
| 2887 | template <class _T1, class _D1, class _T2, class _D2> |
| 2888 | inline _LIBCPP_INLINE_VISIBILITY |
| 2889 | bool |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2890 | operator< (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) |
| 2891 | { |
| 2892 | typedef typename unique_ptr<_T1, _D1>::pointer _P1; |
| 2893 | typedef typename unique_ptr<_T2, _D2>::pointer _P2; |
Eric Fiselier | 8492cd8 | 2015-02-05 23:01:40 +0000 | [diff] [blame] | 2894 | typedef typename common_type<_P1, _P2>::type _Vp; |
| 2895 | return less<_Vp>()(__x.get(), __y.get()); |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2896 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 2897 | |
| 2898 | template <class _T1, class _D1, class _T2, class _D2> |
| 2899 | inline _LIBCPP_INLINE_VISIBILITY |
| 2900 | bool |
| 2901 | operator> (const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return __y < __x;} |
| 2902 | |
| 2903 | template <class _T1, class _D1, class _T2, class _D2> |
| 2904 | inline _LIBCPP_INLINE_VISIBILITY |
| 2905 | bool |
| 2906 | operator<=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__y < __x);} |
| 2907 | |
| 2908 | template <class _T1, class _D1, class _T2, class _D2> |
| 2909 | inline _LIBCPP_INLINE_VISIBILITY |
| 2910 | bool |
| 2911 | operator>=(const unique_ptr<_T1, _D1>& __x, const unique_ptr<_T2, _D2>& __y) {return !(__x < __y);} |
| 2912 | |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2913 | template <class _T1, class _D1> |
| 2914 | inline _LIBCPP_INLINE_VISIBILITY |
| 2915 | bool |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2916 | operator==(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2917 | { |
| 2918 | return !__x; |
| 2919 | } |
| 2920 | |
| 2921 | template <class _T1, class _D1> |
| 2922 | inline _LIBCPP_INLINE_VISIBILITY |
| 2923 | bool |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2924 | operator==(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2925 | { |
| 2926 | return !__x; |
| 2927 | } |
| 2928 | |
| 2929 | template <class _T1, class _D1> |
| 2930 | inline _LIBCPP_INLINE_VISIBILITY |
| 2931 | bool |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2932 | operator!=(const unique_ptr<_T1, _D1>& __x, nullptr_t) _NOEXCEPT |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2933 | { |
| 2934 | return static_cast<bool>(__x); |
| 2935 | } |
| 2936 | |
| 2937 | template <class _T1, class _D1> |
| 2938 | inline _LIBCPP_INLINE_VISIBILITY |
| 2939 | bool |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 2940 | operator!=(nullptr_t, const unique_ptr<_T1, _D1>& __x) _NOEXCEPT |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 2941 | { |
| 2942 | return static_cast<bool>(__x); |
| 2943 | } |
| 2944 | |
| 2945 | template <class _T1, class _D1> |
| 2946 | inline _LIBCPP_INLINE_VISIBILITY |
| 2947 | bool |
| 2948 | operator<(const unique_ptr<_T1, _D1>& __x, nullptr_t) |
| 2949 | { |
| 2950 | typedef typename unique_ptr<_T1, _D1>::pointer _P1; |
| 2951 | return less<_P1>()(__x.get(), nullptr); |
| 2952 | } |
| 2953 | |
| 2954 | template <class _T1, class _D1> |
| 2955 | inline _LIBCPP_INLINE_VISIBILITY |
| 2956 | bool |
| 2957 | operator<(nullptr_t, const unique_ptr<_T1, _D1>& __x) |
| 2958 | { |
| 2959 | typedef typename unique_ptr<_T1, _D1>::pointer _P1; |
| 2960 | return less<_P1>()(nullptr, __x.get()); |
| 2961 | } |
| 2962 | |
| 2963 | template <class _T1, class _D1> |
| 2964 | inline _LIBCPP_INLINE_VISIBILITY |
| 2965 | bool |
| 2966 | operator>(const unique_ptr<_T1, _D1>& __x, nullptr_t) |
| 2967 | { |
| 2968 | return nullptr < __x; |
| 2969 | } |
| 2970 | |
| 2971 | template <class _T1, class _D1> |
| 2972 | inline _LIBCPP_INLINE_VISIBILITY |
| 2973 | bool |
| 2974 | operator>(nullptr_t, const unique_ptr<_T1, _D1>& __x) |
| 2975 | { |
| 2976 | return __x < nullptr; |
| 2977 | } |
| 2978 | |
| 2979 | template <class _T1, class _D1> |
| 2980 | inline _LIBCPP_INLINE_VISIBILITY |
| 2981 | bool |
| 2982 | operator<=(const unique_ptr<_T1, _D1>& __x, nullptr_t) |
| 2983 | { |
| 2984 | return !(nullptr < __x); |
| 2985 | } |
| 2986 | |
| 2987 | template <class _T1, class _D1> |
| 2988 | inline _LIBCPP_INLINE_VISIBILITY |
| 2989 | bool |
| 2990 | operator<=(nullptr_t, const unique_ptr<_T1, _D1>& __x) |
| 2991 | { |
| 2992 | return !(__x < nullptr); |
| 2993 | } |
| 2994 | |
| 2995 | template <class _T1, class _D1> |
| 2996 | inline _LIBCPP_INLINE_VISIBILITY |
| 2997 | bool |
| 2998 | operator>=(const unique_ptr<_T1, _D1>& __x, nullptr_t) |
| 2999 | { |
| 3000 | return !(__x < nullptr); |
| 3001 | } |
| 3002 | |
| 3003 | template <class _T1, class _D1> |
| 3004 | inline _LIBCPP_INLINE_VISIBILITY |
| 3005 | bool |
| 3006 | operator>=(nullptr_t, const unique_ptr<_T1, _D1>& __x) |
| 3007 | { |
| 3008 | return !(nullptr < __x); |
| 3009 | } |
| 3010 | |
Howard Hinnant | 87073e4 | 2012-05-01 15:37:54 +0000 | [diff] [blame] | 3011 | #ifdef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 3012 | |
| 3013 | template <class _Tp, class _Dp> |
| 3014 | inline _LIBCPP_INLINE_VISIBILITY |
| 3015 | unique_ptr<_Tp, _Dp> |
| 3016 | move(unique_ptr<_Tp, _Dp>& __t) |
| 3017 | { |
| 3018 | return unique_ptr<_Tp, _Dp>(__rv<unique_ptr<_Tp, _Dp> >(__t)); |
| 3019 | } |
| 3020 | |
| 3021 | #endif |
| 3022 | |
Marshall Clow | fd7481e | 2013-07-01 18:16:03 +0000 | [diff] [blame] | 3023 | #if _LIBCPP_STD_VER > 11 |
| 3024 | |
| 3025 | template<class _Tp> |
| 3026 | struct __unique_if |
| 3027 | { |
| 3028 | typedef unique_ptr<_Tp> __unique_single; |
| 3029 | }; |
| 3030 | |
| 3031 | template<class _Tp> |
| 3032 | struct __unique_if<_Tp[]> |
| 3033 | { |
| 3034 | typedef unique_ptr<_Tp[]> __unique_array_unknown_bound; |
| 3035 | }; |
| 3036 | |
| 3037 | template<class _Tp, size_t _Np> |
| 3038 | struct __unique_if<_Tp[_Np]> |
| 3039 | { |
| 3040 | typedef void __unique_array_known_bound; |
| 3041 | }; |
| 3042 | |
| 3043 | template<class _Tp, class... _Args> |
Marshall Clow | fb55110 | 2013-07-02 20:06:09 +0000 | [diff] [blame] | 3044 | inline _LIBCPP_INLINE_VISIBILITY |
Marshall Clow | fd7481e | 2013-07-01 18:16:03 +0000 | [diff] [blame] | 3045 | typename __unique_if<_Tp>::__unique_single |
| 3046 | make_unique(_Args&&... __args) |
| 3047 | { |
| 3048 | return unique_ptr<_Tp>(new _Tp(_VSTD::forward<_Args>(__args)...)); |
| 3049 | } |
| 3050 | |
| 3051 | template<class _Tp> |
Marshall Clow | fb55110 | 2013-07-02 20:06:09 +0000 | [diff] [blame] | 3052 | inline _LIBCPP_INLINE_VISIBILITY |
Marshall Clow | fd7481e | 2013-07-01 18:16:03 +0000 | [diff] [blame] | 3053 | typename __unique_if<_Tp>::__unique_array_unknown_bound |
| 3054 | make_unique(size_t __n) |
| 3055 | { |
| 3056 | typedef typename remove_extent<_Tp>::type _Up; |
| 3057 | return unique_ptr<_Tp>(new _Up[__n]()); |
| 3058 | } |
| 3059 | |
| 3060 | template<class _Tp, class... _Args> |
| 3061 | typename __unique_if<_Tp>::__unique_array_known_bound |
| 3062 | make_unique(_Args&&...) = delete; |
| 3063 | |
| 3064 | #endif // _LIBCPP_STD_VER > 11 |
| 3065 | |
Howard Hinnant | 2b1b2d4 | 2011-06-14 19:58:17 +0000 | [diff] [blame] | 3066 | template <class _Tp> struct hash; |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3067 | |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3068 | template <class _Size> |
| 3069 | inline _LIBCPP_INLINE_VISIBILITY |
| 3070 | _Size |
| 3071 | __loadword(const void* __p) |
| 3072 | { |
| 3073 | _Size __r; |
| 3074 | std::memcpy(&__r, __p, sizeof(__r)); |
| 3075 | return __r; |
| 3076 | } |
| 3077 | |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3078 | // We use murmur2 when size_t is 32 bits, and cityhash64 when size_t |
| 3079 | // is 64 bits. This is because cityhash64 uses 64bit x 64bit |
| 3080 | // multiplication, which can be very slow on 32-bit systems. |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3081 | template <class _Size, size_t = sizeof(_Size)*__CHAR_BIT__> |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3082 | struct __murmur2_or_cityhash; |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3083 | |
| 3084 | template <class _Size> |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3085 | struct __murmur2_or_cityhash<_Size, 32> |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3086 | { |
| 3087 | _Size operator()(const void* __key, _Size __len); |
| 3088 | }; |
| 3089 | |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3090 | // murmur2 |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3091 | template <class _Size> |
| 3092 | _Size |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3093 | __murmur2_or_cityhash<_Size, 32>::operator()(const void* __key, _Size __len) |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3094 | { |
| 3095 | const _Size __m = 0x5bd1e995; |
| 3096 | const _Size __r = 24; |
| 3097 | _Size __h = __len; |
| 3098 | const unsigned char* __data = static_cast<const unsigned char*>(__key); |
| 3099 | for (; __len >= 4; __data += 4, __len -= 4) |
| 3100 | { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3101 | _Size __k = __loadword<_Size>(__data); |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3102 | __k *= __m; |
| 3103 | __k ^= __k >> __r; |
| 3104 | __k *= __m; |
| 3105 | __h *= __m; |
| 3106 | __h ^= __k; |
| 3107 | } |
| 3108 | switch (__len) |
| 3109 | { |
| 3110 | case 3: |
| 3111 | __h ^= __data[2] << 16; |
| 3112 | case 2: |
| 3113 | __h ^= __data[1] << 8; |
| 3114 | case 1: |
| 3115 | __h ^= __data[0]; |
| 3116 | __h *= __m; |
| 3117 | } |
| 3118 | __h ^= __h >> 13; |
| 3119 | __h *= __m; |
| 3120 | __h ^= __h >> 15; |
| 3121 | return __h; |
| 3122 | } |
| 3123 | |
| 3124 | template <class _Size> |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3125 | struct __murmur2_or_cityhash<_Size, 64> |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3126 | { |
| 3127 | _Size operator()(const void* __key, _Size __len); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3128 | |
| 3129 | private: |
| 3130 | // Some primes between 2^63 and 2^64. |
| 3131 | static const _Size __k0 = 0xc3a5c85c97cb3127ULL; |
| 3132 | static const _Size __k1 = 0xb492b66fbe98f273ULL; |
| 3133 | static const _Size __k2 = 0x9ae16a3b2f90404fULL; |
| 3134 | static const _Size __k3 = 0xc949d7c7509e6557ULL; |
| 3135 | |
| 3136 | static _Size __rotate(_Size __val, int __shift) { |
| 3137 | return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift))); |
| 3138 | } |
| 3139 | |
| 3140 | static _Size __rotate_by_at_least_1(_Size __val, int __shift) { |
| 3141 | return (__val >> __shift) | (__val << (64 - __shift)); |
| 3142 | } |
| 3143 | |
| 3144 | static _Size __shift_mix(_Size __val) { |
| 3145 | return __val ^ (__val >> 47); |
| 3146 | } |
| 3147 | |
| 3148 | static _Size __hash_len_16(_Size __u, _Size __v) { |
| 3149 | const _Size __mul = 0x9ddfea08eb382d69ULL; |
| 3150 | _Size __a = (__u ^ __v) * __mul; |
| 3151 | __a ^= (__a >> 47); |
| 3152 | _Size __b = (__v ^ __a) * __mul; |
| 3153 | __b ^= (__b >> 47); |
| 3154 | __b *= __mul; |
| 3155 | return __b; |
| 3156 | } |
| 3157 | |
| 3158 | static _Size __hash_len_0_to_16(const char* __s, _Size __len) { |
| 3159 | if (__len > 8) { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3160 | const _Size __a = __loadword<_Size>(__s); |
| 3161 | const _Size __b = __loadword<_Size>(__s + __len - 8); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3162 | return __hash_len_16(__a, __rotate_by_at_least_1(__b + __len, __len)) ^ __b; |
| 3163 | } |
| 3164 | if (__len >= 4) { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3165 | const uint32_t __a = __loadword<uint32_t>(__s); |
| 3166 | const uint32_t __b = __loadword<uint32_t>(__s + __len - 4); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3167 | return __hash_len_16(__len + (__a << 3), __b); |
| 3168 | } |
| 3169 | if (__len > 0) { |
| 3170 | const unsigned char __a = __s[0]; |
| 3171 | const unsigned char __b = __s[__len >> 1]; |
| 3172 | const unsigned char __c = __s[__len - 1]; |
| 3173 | const uint32_t __y = static_cast<uint32_t>(__a) + |
| 3174 | (static_cast<uint32_t>(__b) << 8); |
| 3175 | const uint32_t __z = __len + (static_cast<uint32_t>(__c) << 2); |
| 3176 | return __shift_mix(__y * __k2 ^ __z * __k3) * __k2; |
| 3177 | } |
| 3178 | return __k2; |
| 3179 | } |
| 3180 | |
| 3181 | static _Size __hash_len_17_to_32(const char *__s, _Size __len) { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3182 | const _Size __a = __loadword<_Size>(__s) * __k1; |
| 3183 | const _Size __b = __loadword<_Size>(__s + 8); |
| 3184 | const _Size __c = __loadword<_Size>(__s + __len - 8) * __k2; |
| 3185 | const _Size __d = __loadword<_Size>(__s + __len - 16) * __k0; |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3186 | return __hash_len_16(__rotate(__a - __b, 43) + __rotate(__c, 30) + __d, |
| 3187 | __a + __rotate(__b ^ __k3, 20) - __c + __len); |
| 3188 | } |
| 3189 | |
| 3190 | // Return a 16-byte hash for 48 bytes. Quick and dirty. |
| 3191 | // Callers do best to use "random-looking" values for a and b. |
| 3192 | static pair<_Size, _Size> __weak_hash_len_32_with_seeds( |
| 3193 | _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b) { |
| 3194 | __a += __w; |
| 3195 | __b = __rotate(__b + __a + __z, 21); |
| 3196 | const _Size __c = __a; |
| 3197 | __a += __x; |
| 3198 | __a += __y; |
| 3199 | __b += __rotate(__a, 44); |
| 3200 | return pair<_Size, _Size>(__a + __z, __b + __c); |
| 3201 | } |
| 3202 | |
| 3203 | // Return a 16-byte hash for s[0] ... s[31], a, and b. Quick and dirty. |
| 3204 | static pair<_Size, _Size> __weak_hash_len_32_with_seeds( |
| 3205 | const char* __s, _Size __a, _Size __b) { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3206 | return __weak_hash_len_32_with_seeds(__loadword<_Size>(__s), |
| 3207 | __loadword<_Size>(__s + 8), |
| 3208 | __loadword<_Size>(__s + 16), |
| 3209 | __loadword<_Size>(__s + 24), |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3210 | __a, |
| 3211 | __b); |
| 3212 | } |
| 3213 | |
| 3214 | // Return an 8-byte hash for 33 to 64 bytes. |
| 3215 | static _Size __hash_len_33_to_64(const char *__s, size_t __len) { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3216 | _Size __z = __loadword<_Size>(__s + 24); |
| 3217 | _Size __a = __loadword<_Size>(__s) + |
| 3218 | (__len + __loadword<_Size>(__s + __len - 16)) * __k0; |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3219 | _Size __b = __rotate(__a + __z, 52); |
| 3220 | _Size __c = __rotate(__a, 37); |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3221 | __a += __loadword<_Size>(__s + 8); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3222 | __c += __rotate(__a, 7); |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3223 | __a += __loadword<_Size>(__s + 16); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3224 | _Size __vf = __a + __z; |
| 3225 | _Size __vs = __b + __rotate(__a, 31) + __c; |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3226 | __a = __loadword<_Size>(__s + 16) + __loadword<_Size>(__s + __len - 32); |
| 3227 | __z += __loadword<_Size>(__s + __len - 8); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3228 | __b = __rotate(__a + __z, 52); |
| 3229 | __c = __rotate(__a, 37); |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3230 | __a += __loadword<_Size>(__s + __len - 24); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3231 | __c += __rotate(__a, 7); |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3232 | __a += __loadword<_Size>(__s + __len - 16); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3233 | _Size __wf = __a + __z; |
| 3234 | _Size __ws = __b + __rotate(__a, 31) + __c; |
| 3235 | _Size __r = __shift_mix((__vf + __ws) * __k2 + (__wf + __vs) * __k0); |
| 3236 | return __shift_mix(__r * __k0 + __vs) * __k2; |
| 3237 | } |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3238 | }; |
| 3239 | |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3240 | // cityhash64 |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3241 | template <class _Size> |
| 3242 | _Size |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3243 | __murmur2_or_cityhash<_Size, 64>::operator()(const void* __key, _Size __len) |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3244 | { |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3245 | const char* __s = static_cast<const char*>(__key); |
| 3246 | if (__len <= 32) { |
| 3247 | if (__len <= 16) { |
| 3248 | return __hash_len_0_to_16(__s, __len); |
| 3249 | } else { |
| 3250 | return __hash_len_17_to_32(__s, __len); |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3251 | } |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3252 | } else if (__len <= 64) { |
| 3253 | return __hash_len_33_to_64(__s, __len); |
| 3254 | } |
| 3255 | |
| 3256 | // For strings over 64 bytes we hash the end first, and then as we |
| 3257 | // loop we keep 56 bytes of state: v, w, x, y, and z. |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3258 | _Size __x = __loadword<_Size>(__s + __len - 40); |
| 3259 | _Size __y = __loadword<_Size>(__s + __len - 16) + |
| 3260 | __loadword<_Size>(__s + __len - 56); |
| 3261 | _Size __z = __hash_len_16(__loadword<_Size>(__s + __len - 48) + __len, |
| 3262 | __loadword<_Size>(__s + __len - 24)); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3263 | pair<_Size, _Size> __v = __weak_hash_len_32_with_seeds(__s + __len - 64, __len, __z); |
| 3264 | pair<_Size, _Size> __w = __weak_hash_len_32_with_seeds(__s + __len - 32, __y + __k1, __x); |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3265 | __x = __x * __k1 + __loadword<_Size>(__s); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3266 | |
| 3267 | // Decrease len to the nearest multiple of 64, and operate on 64-byte chunks. |
| 3268 | __len = (__len - 1) & ~static_cast<_Size>(63); |
| 3269 | do { |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3270 | __x = __rotate(__x + __y + __v.first + __loadword<_Size>(__s + 8), 37) * __k1; |
| 3271 | __y = __rotate(__y + __v.second + __loadword<_Size>(__s + 48), 42) * __k1; |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3272 | __x ^= __w.second; |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3273 | __y += __v.first + __loadword<_Size>(__s + 40); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3274 | __z = __rotate(__z + __w.first, 33) * __k1; |
| 3275 | __v = __weak_hash_len_32_with_seeds(__s, __v.second * __k1, __x + __w.first); |
| 3276 | __w = __weak_hash_len_32_with_seeds(__s + 32, __z + __w.second, |
Howard Hinnant | 24ae8f8 | 2013-07-03 17:39:28 +0000 | [diff] [blame] | 3277 | __y + __loadword<_Size>(__s + 16)); |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3278 | std::swap(__z, __x); |
| 3279 | __s += 64; |
| 3280 | __len -= 64; |
| 3281 | } while (__len != 0); |
| 3282 | return __hash_len_16( |
| 3283 | __hash_len_16(__v.first, __w.first) + __shift_mix(__y) * __k1 + __z, |
| 3284 | __hash_len_16(__v.second, __w.second) + __x); |
Howard Hinnant | 40c13d3 | 2011-12-05 00:08:45 +0000 | [diff] [blame] | 3285 | } |
| 3286 | |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3287 | template <class _Tp, size_t = sizeof(_Tp) / sizeof(size_t)> |
| 3288 | struct __scalar_hash; |
| 3289 | |
| 3290 | template <class _Tp> |
| 3291 | struct __scalar_hash<_Tp, 0> |
| 3292 | : public unary_function<_Tp, size_t> |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3293 | { |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3294 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3295 | size_t operator()(_Tp __v) const _NOEXCEPT |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3296 | { |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3297 | union |
| 3298 | { |
| 3299 | _Tp __t; |
| 3300 | size_t __a; |
| 3301 | } __u; |
| 3302 | __u.__a = 0; |
| 3303 | __u.__t = __v; |
| 3304 | return __u.__a; |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3305 | } |
| 3306 | }; |
| 3307 | |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3308 | template <class _Tp> |
| 3309 | struct __scalar_hash<_Tp, 1> |
| 3310 | : public unary_function<_Tp, size_t> |
| 3311 | { |
| 3312 | _LIBCPP_INLINE_VISIBILITY |
| 3313 | size_t operator()(_Tp __v) const _NOEXCEPT |
| 3314 | { |
| 3315 | union |
| 3316 | { |
| 3317 | _Tp __t; |
| 3318 | size_t __a; |
| 3319 | } __u; |
| 3320 | __u.__t = __v; |
| 3321 | return __u.__a; |
| 3322 | } |
| 3323 | }; |
| 3324 | |
| 3325 | template <class _Tp> |
| 3326 | struct __scalar_hash<_Tp, 2> |
| 3327 | : public unary_function<_Tp, size_t> |
| 3328 | { |
| 3329 | _LIBCPP_INLINE_VISIBILITY |
| 3330 | size_t operator()(_Tp __v) const _NOEXCEPT |
| 3331 | { |
| 3332 | union |
| 3333 | { |
| 3334 | _Tp __t; |
| 3335 | struct |
| 3336 | { |
| 3337 | size_t __a; |
| 3338 | size_t __b; |
| 3339 | }; |
| 3340 | } __u; |
| 3341 | __u.__t = __v; |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3342 | return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u)); |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3343 | } |
| 3344 | }; |
| 3345 | |
| 3346 | template <class _Tp> |
| 3347 | struct __scalar_hash<_Tp, 3> |
| 3348 | : public unary_function<_Tp, size_t> |
| 3349 | { |
| 3350 | _LIBCPP_INLINE_VISIBILITY |
| 3351 | size_t operator()(_Tp __v) const _NOEXCEPT |
| 3352 | { |
| 3353 | union |
| 3354 | { |
| 3355 | _Tp __t; |
| 3356 | struct |
| 3357 | { |
| 3358 | size_t __a; |
| 3359 | size_t __b; |
| 3360 | size_t __c; |
| 3361 | }; |
| 3362 | } __u; |
| 3363 | __u.__t = __v; |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3364 | return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u)); |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3365 | } |
| 3366 | }; |
| 3367 | |
| 3368 | template <class _Tp> |
| 3369 | struct __scalar_hash<_Tp, 4> |
| 3370 | : public unary_function<_Tp, size_t> |
| 3371 | { |
| 3372 | _LIBCPP_INLINE_VISIBILITY |
| 3373 | size_t operator()(_Tp __v) const _NOEXCEPT |
| 3374 | { |
| 3375 | union |
| 3376 | { |
| 3377 | _Tp __t; |
| 3378 | struct |
| 3379 | { |
| 3380 | size_t __a; |
| 3381 | size_t __b; |
| 3382 | size_t __c; |
| 3383 | size_t __d; |
| 3384 | }; |
| 3385 | } __u; |
| 3386 | __u.__t = __v; |
Howard Hinnant | c00f75d | 2011-12-10 20:28:56 +0000 | [diff] [blame] | 3387 | return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u)); |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3388 | } |
| 3389 | }; |
| 3390 | |
| 3391 | template<class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3392 | struct _LIBCPP_TYPE_VIS_ONLY hash<_Tp*> |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 3393 | : public unary_function<_Tp*, size_t> |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3394 | { |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 3395 | _LIBCPP_INLINE_VISIBILITY |
| 3396 | size_t operator()(_Tp* __v) const _NOEXCEPT |
| 3397 | { |
| 3398 | union |
| 3399 | { |
| 3400 | _Tp* __t; |
| 3401 | size_t __a; |
| 3402 | } __u; |
| 3403 | __u.__t = __v; |
| 3404 | return __murmur2_or_cityhash<size_t>()(&__u, sizeof(__u)); |
| 3405 | } |
Howard Hinnant | cf2654b | 2011-12-03 21:11:36 +0000 | [diff] [blame] | 3406 | }; |
| 3407 | |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3408 | template <class _Tp, class _Dp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3409 | struct _LIBCPP_TYPE_VIS_ONLY hash<unique_ptr<_Tp, _Dp> > |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3410 | { |
| 3411 | typedef unique_ptr<_Tp, _Dp> argument_type; |
| 3412 | typedef size_t result_type; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3413 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3414 | result_type operator()(const argument_type& __ptr) const _NOEXCEPT |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 3415 | { |
| 3416 | typedef typename argument_type::pointer pointer; |
| 3417 | return hash<pointer>()(__ptr.get()); |
| 3418 | } |
| 3419 | }; |
| 3420 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3421 | struct __destruct_n |
| 3422 | { |
| 3423 | private: |
| 3424 | size_t size; |
| 3425 | |
| 3426 | template <class _Tp> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3427 | _LIBCPP_INLINE_VISIBILITY void __process(_Tp* __p, false_type) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3428 | {for (size_t __i = 0; __i < size; ++__i, ++__p) __p->~_Tp();} |
| 3429 | |
| 3430 | template <class _Tp> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3431 | _LIBCPP_INLINE_VISIBILITY void __process(_Tp*, true_type) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3432 | {} |
| 3433 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3434 | _LIBCPP_INLINE_VISIBILITY void __incr(false_type) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3435 | {++size;} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3436 | _LIBCPP_INLINE_VISIBILITY void __incr(true_type) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3437 | {} |
| 3438 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3439 | _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, false_type) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3440 | {size = __s;} |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3441 | _LIBCPP_INLINE_VISIBILITY void __set(size_t, true_type) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3442 | {} |
| 3443 | public: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3444 | _LIBCPP_INLINE_VISIBILITY explicit __destruct_n(size_t __s) _NOEXCEPT |
| 3445 | : size(__s) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3446 | |
| 3447 | template <class _Tp> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3448 | _LIBCPP_INLINE_VISIBILITY void __incr(_Tp*) _NOEXCEPT |
Howard Hinnant | 1468b66 | 2010-11-19 22:17:28 +0000 | [diff] [blame] | 3449 | {__incr(integral_constant<bool, is_trivially_destructible<_Tp>::value>());} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3450 | |
| 3451 | template <class _Tp> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3452 | _LIBCPP_INLINE_VISIBILITY void __set(size_t __s, _Tp*) _NOEXCEPT |
Howard Hinnant | 1468b66 | 2010-11-19 22:17:28 +0000 | [diff] [blame] | 3453 | {__set(__s, integral_constant<bool, is_trivially_destructible<_Tp>::value>());} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3454 | |
| 3455 | template <class _Tp> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3456 | _LIBCPP_INLINE_VISIBILITY void operator()(_Tp* __p) _NOEXCEPT |
Howard Hinnant | 1468b66 | 2010-11-19 22:17:28 +0000 | [diff] [blame] | 3457 | {__process(__p, integral_constant<bool, is_trivially_destructible<_Tp>::value>());} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3458 | }; |
| 3459 | |
| 3460 | template <class _Alloc> |
| 3461 | class __allocator_destructor |
| 3462 | { |
| 3463 | typedef allocator_traits<_Alloc> __alloc_traits; |
| 3464 | public: |
| 3465 | typedef typename __alloc_traits::pointer pointer; |
| 3466 | typedef typename __alloc_traits::size_type size_type; |
| 3467 | private: |
| 3468 | _Alloc& __alloc_; |
| 3469 | size_type __s_; |
| 3470 | public: |
| 3471 | _LIBCPP_INLINE_VISIBILITY __allocator_destructor(_Alloc& __a, size_type __s) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3472 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3473 | : __alloc_(__a), __s_(__s) {} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3474 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3475 | void operator()(pointer __p) _NOEXCEPT |
| 3476 | {__alloc_traits::deallocate(__alloc_, __p, __s_);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3477 | }; |
| 3478 | |
| 3479 | template <class _InputIterator, class _ForwardIterator> |
| 3480 | _ForwardIterator |
| 3481 | uninitialized_copy(_InputIterator __f, _InputIterator __l, _ForwardIterator __r) |
| 3482 | { |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3483 | typedef typename iterator_traits<_ForwardIterator>::value_type value_type; |
Howard Hinnant | 8292d74 | 2011-12-29 17:45:35 +0000 | [diff] [blame] | 3484 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3485 | _ForwardIterator __s = __r; |
| 3486 | try |
| 3487 | { |
| 3488 | #endif |
| 3489 | for (; __f != __l; ++__f, ++__r) |
| 3490 | ::new(&*__r) value_type(*__f); |
| 3491 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3492 | } |
| 3493 | catch (...) |
| 3494 | { |
| 3495 | for (; __s != __r; ++__s) |
| 3496 | __s->~value_type(); |
| 3497 | throw; |
| 3498 | } |
| 3499 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3500 | return __r; |
| 3501 | } |
| 3502 | |
| 3503 | template <class _InputIterator, class _Size, class _ForwardIterator> |
| 3504 | _ForwardIterator |
| 3505 | uninitialized_copy_n(_InputIterator __f, _Size __n, _ForwardIterator __r) |
| 3506 | { |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3507 | typedef typename iterator_traits<_ForwardIterator>::value_type value_type; |
Howard Hinnant | 8292d74 | 2011-12-29 17:45:35 +0000 | [diff] [blame] | 3508 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3509 | _ForwardIterator __s = __r; |
| 3510 | try |
| 3511 | { |
| 3512 | #endif |
| 3513 | for (; __n > 0; ++__f, ++__r, --__n) |
| 3514 | ::new(&*__r) value_type(*__f); |
| 3515 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3516 | } |
| 3517 | catch (...) |
| 3518 | { |
| 3519 | for (; __s != __r; ++__s) |
| 3520 | __s->~value_type(); |
| 3521 | throw; |
| 3522 | } |
| 3523 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3524 | return __r; |
| 3525 | } |
| 3526 | |
| 3527 | template <class _ForwardIterator, class _Tp> |
| 3528 | void |
| 3529 | uninitialized_fill(_ForwardIterator __f, _ForwardIterator __l, const _Tp& __x) |
| 3530 | { |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3531 | typedef typename iterator_traits<_ForwardIterator>::value_type value_type; |
Howard Hinnant | 8292d74 | 2011-12-29 17:45:35 +0000 | [diff] [blame] | 3532 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3533 | _ForwardIterator __s = __f; |
| 3534 | try |
| 3535 | { |
| 3536 | #endif |
| 3537 | for (; __f != __l; ++__f) |
| 3538 | ::new(&*__f) value_type(__x); |
| 3539 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3540 | } |
| 3541 | catch (...) |
| 3542 | { |
| 3543 | for (; __s != __f; ++__s) |
| 3544 | __s->~value_type(); |
| 3545 | throw; |
| 3546 | } |
| 3547 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3548 | } |
| 3549 | |
| 3550 | template <class _ForwardIterator, class _Size, class _Tp> |
Howard Hinnant | 2f6a627 | 2010-11-18 16:13:03 +0000 | [diff] [blame] | 3551 | _ForwardIterator |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3552 | uninitialized_fill_n(_ForwardIterator __f, _Size __n, const _Tp& __x) |
| 3553 | { |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3554 | typedef typename iterator_traits<_ForwardIterator>::value_type value_type; |
Howard Hinnant | 8292d74 | 2011-12-29 17:45:35 +0000 | [diff] [blame] | 3555 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3556 | _ForwardIterator __s = __f; |
| 3557 | try |
| 3558 | { |
| 3559 | #endif |
| 3560 | for (; __n > 0; ++__f, --__n) |
| 3561 | ::new(&*__f) value_type(__x); |
| 3562 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 3563 | } |
| 3564 | catch (...) |
| 3565 | { |
| 3566 | for (; __s != __f; ++__s) |
| 3567 | __s->~value_type(); |
| 3568 | throw; |
| 3569 | } |
| 3570 | #endif |
Howard Hinnant | 2f6a627 | 2010-11-18 16:13:03 +0000 | [diff] [blame] | 3571 | return __f; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3572 | } |
| 3573 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3574 | class _LIBCPP_EXCEPTION_ABI bad_weak_ptr |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3575 | : public std::exception |
| 3576 | { |
| 3577 | public: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3578 | virtual ~bad_weak_ptr() _NOEXCEPT; |
| 3579 | virtual const char* what() const _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3580 | }; |
| 3581 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3582 | template<class _Tp> class _LIBCPP_TYPE_VIS_ONLY weak_ptr; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3583 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3584 | class _LIBCPP_TYPE_VIS __shared_count |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3585 | { |
| 3586 | __shared_count(const __shared_count&); |
| 3587 | __shared_count& operator=(const __shared_count&); |
| 3588 | |
| 3589 | protected: |
| 3590 | long __shared_owners_; |
| 3591 | virtual ~__shared_count(); |
| 3592 | private: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3593 | virtual void __on_zero_shared() _NOEXCEPT = 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3594 | |
| 3595 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3596 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3597 | explicit __shared_count(long __refs = 0) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3598 | : __shared_owners_(__refs) {} |
| 3599 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3600 | void __add_shared() _NOEXCEPT; |
| 3601 | bool __release_shared() _NOEXCEPT; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3602 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3603 | long use_count() const _NOEXCEPT {return __shared_owners_ + 1;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3604 | }; |
| 3605 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3606 | class _LIBCPP_TYPE_VIS __shared_weak_count |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3607 | : private __shared_count |
| 3608 | { |
| 3609 | long __shared_weak_owners_; |
| 3610 | |
| 3611 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3612 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3613 | explicit __shared_weak_count(long __refs = 0) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3614 | : __shared_count(__refs), |
| 3615 | __shared_weak_owners_(__refs) {} |
| 3616 | protected: |
| 3617 | virtual ~__shared_weak_count(); |
| 3618 | |
| 3619 | public: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3620 | void __add_shared() _NOEXCEPT; |
| 3621 | void __add_weak() _NOEXCEPT; |
| 3622 | void __release_shared() _NOEXCEPT; |
| 3623 | void __release_weak() _NOEXCEPT; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3624 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3625 | long use_count() const _NOEXCEPT {return __shared_count::use_count();} |
| 3626 | __shared_weak_count* lock() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3627 | |
Howard Hinnant | 4a0e74f | 2013-02-25 15:50:36 +0000 | [diff] [blame] | 3628 | // Define the function out only if we build static libc++ without RTTI. |
| 3629 | // Otherwise we may break clients who need to compile their projects with |
| 3630 | // -fno-rtti and yet link against a libc++.dylib compiled |
| 3631 | // without -fno-rtti. |
| 3632 | #if !defined(_LIBCPP_NO_RTTI) || !defined(_LIBCPP_BUILD_STATIC) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3633 | virtual const void* __get_deleter(const type_info&) const _NOEXCEPT; |
Howard Hinnant | 4a0e74f | 2013-02-25 15:50:36 +0000 | [diff] [blame] | 3634 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3635 | private: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3636 | virtual void __on_zero_shared_weak() _NOEXCEPT = 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3637 | }; |
| 3638 | |
| 3639 | template <class _Tp, class _Dp, class _Alloc> |
| 3640 | class __shared_ptr_pointer |
| 3641 | : public __shared_weak_count |
| 3642 | { |
| 3643 | __compressed_pair<__compressed_pair<_Tp, _Dp>, _Alloc> __data_; |
| 3644 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3645 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3646 | __shared_ptr_pointer(_Tp __p, _Dp __d, _Alloc __a) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 3647 | : __data_(__compressed_pair<_Tp, _Dp>(__p, _VSTD::move(__d)), _VSTD::move(__a)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3648 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 3649 | #ifndef _LIBCPP_NO_RTTI |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3650 | virtual const void* __get_deleter(const type_info&) const _NOEXCEPT; |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 3651 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3652 | |
| 3653 | private: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3654 | virtual void __on_zero_shared() _NOEXCEPT; |
| 3655 | virtual void __on_zero_shared_weak() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3656 | }; |
| 3657 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 3658 | #ifndef _LIBCPP_NO_RTTI |
| 3659 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3660 | template <class _Tp, class _Dp, class _Alloc> |
| 3661 | const void* |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3662 | __shared_ptr_pointer<_Tp, _Dp, _Alloc>::__get_deleter(const type_info& __t) const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3663 | { |
Marshall Clow | 4b3ca8c | 2014-11-17 19:05:50 +0000 | [diff] [blame] | 3664 | return __t == typeid(_Dp) ? _VSTD::addressof(__data_.first().second()) : 0; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3665 | } |
| 3666 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3667 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 3668 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3669 | template <class _Tp, class _Dp, class _Alloc> |
| 3670 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3671 | __shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3672 | { |
| 3673 | __data_.first().second()(__data_.first().first()); |
| 3674 | __data_.first().second().~_Dp(); |
| 3675 | } |
| 3676 | |
| 3677 | template <class _Tp, class _Dp, class _Alloc> |
| 3678 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3679 | __shared_ptr_pointer<_Tp, _Dp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3680 | { |
Eric Fiselier | 8492cd8 | 2015-02-05 23:01:40 +0000 | [diff] [blame] | 3681 | typedef typename __allocator_traits_rebind<_Alloc, __shared_ptr_pointer>::type _Al; |
| 3682 | typedef allocator_traits<_Al> _ATraits; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 3683 | typedef pointer_traits<typename _ATraits::pointer> _PTraits; |
| 3684 | |
Eric Fiselier | 8492cd8 | 2015-02-05 23:01:40 +0000 | [diff] [blame] | 3685 | _Al __a(__data_.second()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3686 | __data_.second().~_Alloc(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 3687 | __a.deallocate(_PTraits::pointer_to(*this), 1); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3688 | } |
| 3689 | |
| 3690 | template <class _Tp, class _Alloc> |
| 3691 | class __shared_ptr_emplace |
| 3692 | : public __shared_weak_count |
| 3693 | { |
| 3694 | __compressed_pair<_Alloc, _Tp> __data_; |
| 3695 | public: |
| 3696 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 3697 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3698 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3699 | __shared_ptr_emplace(_Alloc __a) |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 3700 | : __data_(_VSTD::move(__a)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3701 | |
| 3702 | template <class ..._Args> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3703 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3704 | __shared_ptr_emplace(_Alloc __a, _Args&& ...__args) |
Howard Hinnant | 6cc99fa | 2011-12-19 17:58:44 +0000 | [diff] [blame] | 3705 | : __data_(piecewise_construct, _VSTD::forward_as_tuple(__a), |
| 3706 | _VSTD::forward_as_tuple(_VSTD::forward<_Args>(__args)...)) {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3707 | |
| 3708 | #else // _LIBCPP_HAS_NO_VARIADICS |
| 3709 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3710 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3711 | __shared_ptr_emplace(_Alloc __a) |
| 3712 | : __data_(__a) {} |
| 3713 | |
| 3714 | template <class _A0> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3715 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3716 | __shared_ptr_emplace(_Alloc __a, _A0& __a0) |
| 3717 | : __data_(__a, _Tp(__a0)) {} |
| 3718 | |
| 3719 | template <class _A0, class _A1> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3720 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3721 | __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1) |
| 3722 | : __data_(__a, _Tp(__a0, __a1)) {} |
| 3723 | |
| 3724 | template <class _A0, class _A1, class _A2> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3725 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3726 | __shared_ptr_emplace(_Alloc __a, _A0& __a0, _A1& __a1, _A2& __a2) |
| 3727 | : __data_(__a, _Tp(__a0, __a1, __a2)) {} |
| 3728 | |
| 3729 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 3730 | |
| 3731 | private: |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3732 | virtual void __on_zero_shared() _NOEXCEPT; |
| 3733 | virtual void __on_zero_shared_weak() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3734 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3735 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3736 | _Tp* get() _NOEXCEPT {return &__data_.second();} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3737 | }; |
| 3738 | |
| 3739 | template <class _Tp, class _Alloc> |
| 3740 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3741 | __shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3742 | { |
| 3743 | __data_.second().~_Tp(); |
| 3744 | } |
| 3745 | |
| 3746 | template <class _Tp, class _Alloc> |
| 3747 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3748 | __shared_ptr_emplace<_Tp, _Alloc>::__on_zero_shared_weak() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3749 | { |
Eric Fiselier | 8492cd8 | 2015-02-05 23:01:40 +0000 | [diff] [blame] | 3750 | typedef typename __allocator_traits_rebind<_Alloc, __shared_ptr_emplace>::type _Al; |
| 3751 | typedef allocator_traits<_Al> _ATraits; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 3752 | typedef pointer_traits<typename _ATraits::pointer> _PTraits; |
Eric Fiselier | 8492cd8 | 2015-02-05 23:01:40 +0000 | [diff] [blame] | 3753 | _Al __a(__data_.first()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3754 | __data_.first().~_Alloc(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 3755 | __a.deallocate(_PTraits::pointer_to(*this), 1); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3756 | } |
| 3757 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3758 | template<class _Tp> class _LIBCPP_TYPE_VIS_ONLY enable_shared_from_this; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3759 | |
| 3760 | template<class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 3761 | class _LIBCPP_TYPE_VIS_ONLY shared_ptr |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3762 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3763 | public: |
| 3764 | typedef _Tp element_type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3765 | private: |
| 3766 | element_type* __ptr_; |
| 3767 | __shared_weak_count* __cntrl_; |
| 3768 | |
| 3769 | struct __nat {int __for_bool_;}; |
| 3770 | public: |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 3771 | _LIBCPP_CONSTEXPR shared_ptr() _NOEXCEPT; |
| 3772 | _LIBCPP_CONSTEXPR shared_ptr(nullptr_t) _NOEXCEPT; |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 3773 | template<class _Yp> |
| 3774 | explicit shared_ptr(_Yp* __p, |
| 3775 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat()); |
| 3776 | template<class _Yp, class _Dp> |
| 3777 | shared_ptr(_Yp* __p, _Dp __d, |
| 3778 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat()); |
| 3779 | template<class _Yp, class _Dp, class _Alloc> |
| 3780 | shared_ptr(_Yp* __p, _Dp __d, _Alloc __a, |
| 3781 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3782 | template <class _Dp> shared_ptr(nullptr_t __p, _Dp __d); |
| 3783 | template <class _Dp, class _Alloc> shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a); |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3784 | template<class _Yp> shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT; |
| 3785 | shared_ptr(const shared_ptr& __r) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3786 | template<class _Yp> |
| 3787 | shared_ptr(const shared_ptr<_Yp>& __r, |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3788 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat()) |
| 3789 | _NOEXCEPT; |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3790 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3791 | shared_ptr(shared_ptr&& __r) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3792 | template<class _Yp> shared_ptr(shared_ptr<_Yp>&& __r, |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3793 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type = __nat()) |
| 3794 | _NOEXCEPT; |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3795 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3796 | template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r, |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3797 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type= __nat()); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3798 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 3799 | template<class _Yp> |
| 3800 | shared_ptr(auto_ptr<_Yp>&& __r, |
| 3801 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat()); |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3802 | #else |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 3803 | template<class _Yp> |
| 3804 | shared_ptr(auto_ptr<_Yp> __r, |
| 3805 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type = __nat()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3806 | #endif |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3807 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 3808 | template <class _Yp, class _Dp> |
| 3809 | shared_ptr(unique_ptr<_Yp, _Dp>&&, |
| 3810 | typename enable_if |
| 3811 | < |
| 3812 | !is_lvalue_reference<_Dp>::value && |
| 3813 | !is_array<_Yp>::value && |
| 3814 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 3815 | __nat |
| 3816 | >::type = __nat()); |
| 3817 | template <class _Yp, class _Dp> |
| 3818 | shared_ptr(unique_ptr<_Yp, _Dp>&&, |
| 3819 | typename enable_if |
| 3820 | < |
| 3821 | is_lvalue_reference<_Dp>::value && |
| 3822 | !is_array<_Yp>::value && |
| 3823 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 3824 | __nat |
| 3825 | >::type = __nat()); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3826 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 3827 | template <class _Yp, class _Dp> |
| 3828 | shared_ptr(unique_ptr<_Yp, _Dp>, |
| 3829 | typename enable_if |
| 3830 | < |
| 3831 | !is_lvalue_reference<_Dp>::value && |
| 3832 | !is_array<_Yp>::value && |
| 3833 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 3834 | __nat |
| 3835 | >::type = __nat()); |
| 3836 | template <class _Yp, class _Dp> |
| 3837 | shared_ptr(unique_ptr<_Yp, _Dp>, |
| 3838 | typename enable_if |
| 3839 | < |
| 3840 | is_lvalue_reference<_Dp>::value && |
| 3841 | !is_array<_Yp>::value && |
| 3842 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 3843 | __nat |
| 3844 | >::type = __nat()); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3845 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3846 | |
| 3847 | ~shared_ptr(); |
| 3848 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3849 | shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT; |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3850 | template<class _Yp> |
| 3851 | typename enable_if |
| 3852 | < |
| 3853 | is_convertible<_Yp*, element_type*>::value, |
| 3854 | shared_ptr& |
| 3855 | >::type |
| 3856 | operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT; |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3857 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3858 | shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT; |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3859 | template<class _Yp> |
| 3860 | typename enable_if |
| 3861 | < |
| 3862 | is_convertible<_Yp*, element_type*>::value, |
| 3863 | shared_ptr<_Tp>& |
| 3864 | >::type |
| 3865 | operator=(shared_ptr<_Yp>&& __r); |
| 3866 | template<class _Yp> |
| 3867 | typename enable_if |
| 3868 | < |
| 3869 | !is_array<_Yp>::value && |
| 3870 | is_convertible<_Yp*, element_type*>::value, |
Howard Hinnant | 37c4acf | 2013-09-13 23:56:00 +0000 | [diff] [blame] | 3871 | shared_ptr |
| 3872 | >::type& |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3873 | operator=(auto_ptr<_Yp>&& __r); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3874 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3875 | template<class _Yp> |
| 3876 | typename enable_if |
| 3877 | < |
| 3878 | !is_array<_Yp>::value && |
| 3879 | is_convertible<_Yp*, element_type*>::value, |
| 3880 | shared_ptr& |
| 3881 | >::type |
| 3882 | operator=(auto_ptr<_Yp> __r); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3883 | #endif |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3884 | template <class _Yp, class _Dp> |
| 3885 | typename enable_if |
| 3886 | < |
| 3887 | !is_array<_Yp>::value && |
| 3888 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 3889 | shared_ptr& |
| 3890 | >::type |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3891 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3892 | operator=(unique_ptr<_Yp, _Dp>&& __r); |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 3893 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3894 | operator=(unique_ptr<_Yp, _Dp> __r); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3895 | #endif |
| 3896 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3897 | void swap(shared_ptr& __r) _NOEXCEPT; |
| 3898 | void reset() _NOEXCEPT; |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 3899 | template<class _Yp> |
| 3900 | typename enable_if |
| 3901 | < |
| 3902 | is_convertible<_Yp*, element_type*>::value, |
| 3903 | void |
| 3904 | >::type |
| 3905 | reset(_Yp* __p); |
| 3906 | template<class _Yp, class _Dp> |
| 3907 | typename enable_if |
| 3908 | < |
| 3909 | is_convertible<_Yp*, element_type*>::value, |
| 3910 | void |
| 3911 | >::type |
| 3912 | reset(_Yp* __p, _Dp __d); |
| 3913 | template<class _Yp, class _Dp, class _Alloc> |
| 3914 | typename enable_if |
| 3915 | < |
| 3916 | is_convertible<_Yp*, element_type*>::value, |
| 3917 | void |
| 3918 | >::type |
| 3919 | reset(_Yp* __p, _Dp __d, _Alloc __a); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3920 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3921 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3922 | element_type* get() const _NOEXCEPT {return __ptr_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3923 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3924 | typename add_lvalue_reference<element_type>::type operator*() const _NOEXCEPT |
| 3925 | {return *__ptr_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3926 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3927 | element_type* operator->() const _NOEXCEPT {return __ptr_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3928 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3929 | long use_count() const _NOEXCEPT {return __cntrl_ ? __cntrl_->use_count() : 0;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3930 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3931 | bool unique() const _NOEXCEPT {return use_count() == 1;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3932 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 7786188 | 2012-02-21 21:46:43 +0000 | [diff] [blame] | 3933 | _LIBCPP_EXPLICIT operator bool() const _NOEXCEPT {return get() != 0;} |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 3934 | template <class _Up> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3935 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 3936 | bool owner_before(shared_ptr<_Up> const& __p) const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3937 | {return __cntrl_ < __p.__cntrl_;} |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 3938 | template <class _Up> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3939 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 3940 | bool owner_before(weak_ptr<_Up> const& __p) const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3941 | {return __cntrl_ < __p.__cntrl_;} |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 3942 | _LIBCPP_INLINE_VISIBILITY |
| 3943 | bool |
| 3944 | __owner_equivalent(const shared_ptr& __p) const |
| 3945 | {return __cntrl_ == __p.__cntrl_;} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3946 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 3947 | #ifndef _LIBCPP_NO_RTTI |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3948 | template <class _Dp> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 3949 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 3950 | _Dp* __get_deleter() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3951 | {return (_Dp*)(__cntrl_ ? __cntrl_->__get_deleter(typeid(_Dp)) : 0);} |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 3952 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 3953 | |
| 3954 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 3955 | |
| 3956 | template<class ..._Args> |
| 3957 | static |
| 3958 | shared_ptr<_Tp> |
| 3959 | make_shared(_Args&& ...__args); |
| 3960 | |
| 3961 | template<class _Alloc, class ..._Args> |
| 3962 | static |
| 3963 | shared_ptr<_Tp> |
| 3964 | allocate_shared(const _Alloc& __a, _Args&& ...__args); |
| 3965 | |
| 3966 | #else // _LIBCPP_HAS_NO_VARIADICS |
| 3967 | |
| 3968 | static shared_ptr<_Tp> make_shared(); |
| 3969 | |
| 3970 | template<class _A0> |
| 3971 | static shared_ptr<_Tp> make_shared(_A0&); |
| 3972 | |
| 3973 | template<class _A0, class _A1> |
| 3974 | static shared_ptr<_Tp> make_shared(_A0&, _A1&); |
| 3975 | |
| 3976 | template<class _A0, class _A1, class _A2> |
| 3977 | static shared_ptr<_Tp> make_shared(_A0&, _A1&, _A2&); |
| 3978 | |
| 3979 | template<class _Alloc> |
| 3980 | static shared_ptr<_Tp> |
| 3981 | allocate_shared(const _Alloc& __a); |
| 3982 | |
| 3983 | template<class _Alloc, class _A0> |
| 3984 | static shared_ptr<_Tp> |
| 3985 | allocate_shared(const _Alloc& __a, _A0& __a0); |
| 3986 | |
| 3987 | template<class _Alloc, class _A0, class _A1> |
| 3988 | static shared_ptr<_Tp> |
| 3989 | allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1); |
| 3990 | |
| 3991 | template<class _Alloc, class _A0, class _A1, class _A2> |
| 3992 | static shared_ptr<_Tp> |
| 3993 | allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2); |
| 3994 | |
| 3995 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 3996 | |
| 3997 | private: |
| 3998 | |
| 3999 | template <class _Yp> |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4000 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4001 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4002 | __enable_weak_this(const enable_shared_from_this<_Yp>* __e) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4003 | { |
| 4004 | if (__e) |
| 4005 | __e->__weak_this_ = *this; |
| 4006 | } |
| 4007 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4008 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4009 | void __enable_weak_this(const void*) _NOEXCEPT {} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4010 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 4011 | template <class _Up> friend class _LIBCPP_TYPE_VIS_ONLY shared_ptr; |
| 4012 | template <class _Up> friend class _LIBCPP_TYPE_VIS_ONLY weak_ptr; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4013 | }; |
| 4014 | |
| 4015 | template<class _Tp> |
| 4016 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 4017 | _LIBCPP_CONSTEXPR |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4018 | shared_ptr<_Tp>::shared_ptr() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4019 | : __ptr_(0), |
| 4020 | __cntrl_(0) |
| 4021 | { |
| 4022 | } |
| 4023 | |
| 4024 | template<class _Tp> |
| 4025 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 4026 | _LIBCPP_CONSTEXPR |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4027 | shared_ptr<_Tp>::shared_ptr(nullptr_t) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4028 | : __ptr_(0), |
| 4029 | __cntrl_(0) |
| 4030 | { |
| 4031 | } |
| 4032 | |
| 4033 | template<class _Tp> |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4034 | template<class _Yp> |
| 4035 | shared_ptr<_Tp>::shared_ptr(_Yp* __p, |
| 4036 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4037 | : __ptr_(__p) |
| 4038 | { |
| 4039 | unique_ptr<_Yp> __hold(__p); |
| 4040 | typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk; |
| 4041 | __cntrl_ = new _CntrlBlk(__p, default_delete<_Yp>(), allocator<_Yp>()); |
| 4042 | __hold.release(); |
| 4043 | __enable_weak_this(__p); |
| 4044 | } |
| 4045 | |
| 4046 | template<class _Tp> |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4047 | template<class _Yp, class _Dp> |
| 4048 | shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, |
| 4049 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4050 | : __ptr_(__p) |
| 4051 | { |
| 4052 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4053 | try |
| 4054 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4055 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4056 | typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk; |
| 4057 | __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Yp>()); |
| 4058 | __enable_weak_this(__p); |
| 4059 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4060 | } |
| 4061 | catch (...) |
| 4062 | { |
| 4063 | __d(__p); |
| 4064 | throw; |
| 4065 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4066 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4067 | } |
| 4068 | |
| 4069 | template<class _Tp> |
| 4070 | template<class _Dp> |
| 4071 | shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d) |
| 4072 | : __ptr_(0) |
| 4073 | { |
| 4074 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4075 | try |
| 4076 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4077 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4078 | typedef __shared_ptr_pointer<nullptr_t, _Dp, allocator<_Tp> > _CntrlBlk; |
| 4079 | __cntrl_ = new _CntrlBlk(__p, __d, allocator<_Tp>()); |
| 4080 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4081 | } |
| 4082 | catch (...) |
| 4083 | { |
| 4084 | __d(__p); |
| 4085 | throw; |
| 4086 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4087 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4088 | } |
| 4089 | |
| 4090 | template<class _Tp> |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4091 | template<class _Yp, class _Dp, class _Alloc> |
| 4092 | shared_ptr<_Tp>::shared_ptr(_Yp* __p, _Dp __d, _Alloc __a, |
| 4093 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4094 | : __ptr_(__p) |
| 4095 | { |
| 4096 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4097 | try |
| 4098 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4099 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4100 | typedef __shared_ptr_pointer<_Yp*, _Dp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4101 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4102 | typedef __allocator_destructor<_A2> _D2; |
| 4103 | _A2 __a2(__a); |
| 4104 | unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4105 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4106 | _CntrlBlk(__p, __d, __a); |
| 4107 | __cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4108 | __enable_weak_this(__p); |
| 4109 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4110 | } |
| 4111 | catch (...) |
| 4112 | { |
| 4113 | __d(__p); |
| 4114 | throw; |
| 4115 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4116 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4117 | } |
| 4118 | |
| 4119 | template<class _Tp> |
| 4120 | template<class _Dp, class _Alloc> |
| 4121 | shared_ptr<_Tp>::shared_ptr(nullptr_t __p, _Dp __d, _Alloc __a) |
| 4122 | : __ptr_(0) |
| 4123 | { |
| 4124 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4125 | try |
| 4126 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4127 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4128 | typedef __shared_ptr_pointer<nullptr_t, _Dp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4129 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4130 | typedef __allocator_destructor<_A2> _D2; |
| 4131 | _A2 __a2(__a); |
| 4132 | unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4133 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4134 | _CntrlBlk(__p, __d, __a); |
| 4135 | __cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4136 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 4137 | } |
| 4138 | catch (...) |
| 4139 | { |
| 4140 | __d(__p); |
| 4141 | throw; |
| 4142 | } |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4143 | #endif // _LIBCPP_NO_EXCEPTIONS |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4144 | } |
| 4145 | |
| 4146 | template<class _Tp> |
| 4147 | template<class _Yp> |
| 4148 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4149 | shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, element_type *__p) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4150 | : __ptr_(__p), |
| 4151 | __cntrl_(__r.__cntrl_) |
| 4152 | { |
| 4153 | if (__cntrl_) |
| 4154 | __cntrl_->__add_shared(); |
| 4155 | } |
| 4156 | |
| 4157 | template<class _Tp> |
| 4158 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4159 | shared_ptr<_Tp>::shared_ptr(const shared_ptr& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4160 | : __ptr_(__r.__ptr_), |
| 4161 | __cntrl_(__r.__cntrl_) |
| 4162 | { |
| 4163 | if (__cntrl_) |
| 4164 | __cntrl_->__add_shared(); |
| 4165 | } |
| 4166 | |
| 4167 | template<class _Tp> |
| 4168 | template<class _Yp> |
| 4169 | inline _LIBCPP_INLINE_VISIBILITY |
| 4170 | shared_ptr<_Tp>::shared_ptr(const shared_ptr<_Yp>& __r, |
| 4171 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4172 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4173 | : __ptr_(__r.__ptr_), |
| 4174 | __cntrl_(__r.__cntrl_) |
| 4175 | { |
| 4176 | if (__cntrl_) |
| 4177 | __cntrl_->__add_shared(); |
| 4178 | } |
| 4179 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4180 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4181 | |
| 4182 | template<class _Tp> |
| 4183 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4184 | shared_ptr<_Tp>::shared_ptr(shared_ptr&& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4185 | : __ptr_(__r.__ptr_), |
| 4186 | __cntrl_(__r.__cntrl_) |
| 4187 | { |
| 4188 | __r.__ptr_ = 0; |
| 4189 | __r.__cntrl_ = 0; |
| 4190 | } |
| 4191 | |
| 4192 | template<class _Tp> |
| 4193 | template<class _Yp> |
| 4194 | inline _LIBCPP_INLINE_VISIBILITY |
| 4195 | shared_ptr<_Tp>::shared_ptr(shared_ptr<_Yp>&& __r, |
| 4196 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4197 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4198 | : __ptr_(__r.__ptr_), |
| 4199 | __cntrl_(__r.__cntrl_) |
| 4200 | { |
| 4201 | __r.__ptr_ = 0; |
| 4202 | __r.__cntrl_ = 0; |
| 4203 | } |
| 4204 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4205 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4206 | |
| 4207 | template<class _Tp> |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4208 | template<class _Yp> |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4209 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4210 | shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp>&& __r, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4211 | #else |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4212 | shared_ptr<_Tp>::shared_ptr(auto_ptr<_Yp> __r, |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4213 | #endif |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4214 | typename enable_if<is_convertible<_Yp*, element_type*>::value, __nat>::type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4215 | : __ptr_(__r.get()) |
| 4216 | { |
| 4217 | typedef __shared_ptr_pointer<_Yp*, default_delete<_Yp>, allocator<_Yp> > _CntrlBlk; |
| 4218 | __cntrl_ = new _CntrlBlk(__r.get(), default_delete<_Yp>(), allocator<_Yp>()); |
| 4219 | __enable_weak_this(__r.get()); |
| 4220 | __r.release(); |
| 4221 | } |
| 4222 | |
| 4223 | template<class _Tp> |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4224 | template <class _Yp, class _Dp> |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4225 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4226 | shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r, |
| 4227 | #else |
| 4228 | shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r, |
| 4229 | #endif |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4230 | typename enable_if |
| 4231 | < |
| 4232 | !is_lvalue_reference<_Dp>::value && |
| 4233 | !is_array<_Yp>::value && |
| 4234 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 4235 | __nat |
| 4236 | >::type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4237 | : __ptr_(__r.get()) |
| 4238 | { |
| 4239 | typedef __shared_ptr_pointer<_Yp*, _Dp, allocator<_Yp> > _CntrlBlk; |
| 4240 | __cntrl_ = new _CntrlBlk(__r.get(), __r.get_deleter(), allocator<_Yp>()); |
| 4241 | __enable_weak_this(__r.get()); |
| 4242 | __r.release(); |
| 4243 | } |
| 4244 | |
| 4245 | template<class _Tp> |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4246 | template <class _Yp, class _Dp> |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4247 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4248 | shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp>&& __r, |
| 4249 | #else |
| 4250 | shared_ptr<_Tp>::shared_ptr(unique_ptr<_Yp, _Dp> __r, |
| 4251 | #endif |
Logan Chien | e1678a1 | 2014-01-31 09:30:46 +0000 | [diff] [blame] | 4252 | typename enable_if |
| 4253 | < |
| 4254 | is_lvalue_reference<_Dp>::value && |
| 4255 | !is_array<_Yp>::value && |
| 4256 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, element_type*>::value, |
| 4257 | __nat |
| 4258 | >::type) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4259 | : __ptr_(__r.get()) |
| 4260 | { |
| 4261 | typedef __shared_ptr_pointer<_Yp*, |
| 4262 | reference_wrapper<typename remove_reference<_Dp>::type>, |
| 4263 | allocator<_Yp> > _CntrlBlk; |
| 4264 | __cntrl_ = new _CntrlBlk(__r.get(), ref(__r.get_deleter()), allocator<_Yp>()); |
| 4265 | __enable_weak_this(__r.get()); |
| 4266 | __r.release(); |
| 4267 | } |
| 4268 | |
| 4269 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 4270 | |
| 4271 | template<class _Tp> |
| 4272 | template<class ..._Args> |
| 4273 | shared_ptr<_Tp> |
| 4274 | shared_ptr<_Tp>::make_shared(_Args&& ...__args) |
| 4275 | { |
| 4276 | typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk; |
| 4277 | typedef allocator<_CntrlBlk> _A2; |
| 4278 | typedef __allocator_destructor<_A2> _D2; |
| 4279 | _A2 __a2; |
| 4280 | unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1)); |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4281 | ::new(__hold2.get()) _CntrlBlk(__a2, _VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4282 | shared_ptr<_Tp> __r; |
| 4283 | __r.__ptr_ = __hold2.get()->get(); |
| 4284 | __r.__cntrl_ = __hold2.release(); |
| 4285 | __r.__enable_weak_this(__r.__ptr_); |
| 4286 | return __r; |
| 4287 | } |
| 4288 | |
| 4289 | template<class _Tp> |
| 4290 | template<class _Alloc, class ..._Args> |
| 4291 | shared_ptr<_Tp> |
| 4292 | shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _Args&& ...__args) |
| 4293 | { |
| 4294 | typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4295 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _A2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4296 | typedef __allocator_destructor<_A2> _D2; |
| 4297 | _A2 __a2(__a); |
| 4298 | unique_ptr<_CntrlBlk, _D2> __hold2(__a2.allocate(1), _D2(__a2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4299 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4300 | _CntrlBlk(__a, _VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4301 | shared_ptr<_Tp> __r; |
| 4302 | __r.__ptr_ = __hold2.get()->get(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4303 | __r.__cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4304 | __r.__enable_weak_this(__r.__ptr_); |
| 4305 | return __r; |
| 4306 | } |
| 4307 | |
| 4308 | #else // _LIBCPP_HAS_NO_VARIADICS |
| 4309 | |
| 4310 | template<class _Tp> |
| 4311 | shared_ptr<_Tp> |
| 4312 | shared_ptr<_Tp>::make_shared() |
| 4313 | { |
| 4314 | typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk; |
| 4315 | typedef allocator<_CntrlBlk> _Alloc2; |
| 4316 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4317 | _Alloc2 __alloc2; |
| 4318 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
| 4319 | ::new(__hold2.get()) _CntrlBlk(__alloc2); |
| 4320 | shared_ptr<_Tp> __r; |
| 4321 | __r.__ptr_ = __hold2.get()->get(); |
| 4322 | __r.__cntrl_ = __hold2.release(); |
| 4323 | __r.__enable_weak_this(__r.__ptr_); |
| 4324 | return __r; |
| 4325 | } |
| 4326 | |
| 4327 | template<class _Tp> |
| 4328 | template<class _A0> |
| 4329 | shared_ptr<_Tp> |
| 4330 | shared_ptr<_Tp>::make_shared(_A0& __a0) |
| 4331 | { |
| 4332 | typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk; |
| 4333 | typedef allocator<_CntrlBlk> _Alloc2; |
| 4334 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4335 | _Alloc2 __alloc2; |
| 4336 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
| 4337 | ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0); |
| 4338 | shared_ptr<_Tp> __r; |
| 4339 | __r.__ptr_ = __hold2.get()->get(); |
| 4340 | __r.__cntrl_ = __hold2.release(); |
| 4341 | __r.__enable_weak_this(__r.__ptr_); |
| 4342 | return __r; |
| 4343 | } |
| 4344 | |
| 4345 | template<class _Tp> |
| 4346 | template<class _A0, class _A1> |
| 4347 | shared_ptr<_Tp> |
| 4348 | shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1) |
| 4349 | { |
| 4350 | typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk; |
| 4351 | typedef allocator<_CntrlBlk> _Alloc2; |
| 4352 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4353 | _Alloc2 __alloc2; |
| 4354 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
| 4355 | ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1); |
| 4356 | shared_ptr<_Tp> __r; |
| 4357 | __r.__ptr_ = __hold2.get()->get(); |
| 4358 | __r.__cntrl_ = __hold2.release(); |
| 4359 | __r.__enable_weak_this(__r.__ptr_); |
| 4360 | return __r; |
| 4361 | } |
| 4362 | |
| 4363 | template<class _Tp> |
| 4364 | template<class _A0, class _A1, class _A2> |
| 4365 | shared_ptr<_Tp> |
| 4366 | shared_ptr<_Tp>::make_shared(_A0& __a0, _A1& __a1, _A2& __a2) |
| 4367 | { |
| 4368 | typedef __shared_ptr_emplace<_Tp, allocator<_Tp> > _CntrlBlk; |
| 4369 | typedef allocator<_CntrlBlk> _Alloc2; |
| 4370 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4371 | _Alloc2 __alloc2; |
| 4372 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
| 4373 | ::new(__hold2.get()) _CntrlBlk(__alloc2, __a0, __a1, __a2); |
| 4374 | shared_ptr<_Tp> __r; |
| 4375 | __r.__ptr_ = __hold2.get()->get(); |
| 4376 | __r.__cntrl_ = __hold2.release(); |
| 4377 | __r.__enable_weak_this(__r.__ptr_); |
| 4378 | return __r; |
| 4379 | } |
| 4380 | |
| 4381 | template<class _Tp> |
| 4382 | template<class _Alloc> |
| 4383 | shared_ptr<_Tp> |
| 4384 | shared_ptr<_Tp>::allocate_shared(const _Alloc& __a) |
| 4385 | { |
| 4386 | typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4387 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4388 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4389 | _Alloc2 __alloc2(__a); |
| 4390 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4391 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4392 | _CntrlBlk(__a); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4393 | shared_ptr<_Tp> __r; |
| 4394 | __r.__ptr_ = __hold2.get()->get(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4395 | __r.__cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4396 | __r.__enable_weak_this(__r.__ptr_); |
| 4397 | return __r; |
| 4398 | } |
| 4399 | |
| 4400 | template<class _Tp> |
| 4401 | template<class _Alloc, class _A0> |
| 4402 | shared_ptr<_Tp> |
| 4403 | shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0) |
| 4404 | { |
| 4405 | typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4406 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4407 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4408 | _Alloc2 __alloc2(__a); |
| 4409 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4410 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4411 | _CntrlBlk(__a, __a0); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4412 | shared_ptr<_Tp> __r; |
| 4413 | __r.__ptr_ = __hold2.get()->get(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4414 | __r.__cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4415 | __r.__enable_weak_this(__r.__ptr_); |
| 4416 | return __r; |
| 4417 | } |
| 4418 | |
| 4419 | template<class _Tp> |
| 4420 | template<class _Alloc, class _A0, class _A1> |
| 4421 | shared_ptr<_Tp> |
| 4422 | shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1) |
| 4423 | { |
| 4424 | typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4425 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4426 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4427 | _Alloc2 __alloc2(__a); |
| 4428 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4429 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4430 | _CntrlBlk(__a, __a0, __a1); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4431 | shared_ptr<_Tp> __r; |
| 4432 | __r.__ptr_ = __hold2.get()->get(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4433 | __r.__cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4434 | __r.__enable_weak_this(__r.__ptr_); |
| 4435 | return __r; |
| 4436 | } |
| 4437 | |
| 4438 | template<class _Tp> |
| 4439 | template<class _Alloc, class _A0, class _A1, class _A2> |
| 4440 | shared_ptr<_Tp> |
| 4441 | shared_ptr<_Tp>::allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2) |
| 4442 | { |
| 4443 | typedef __shared_ptr_emplace<_Tp, _Alloc> _CntrlBlk; |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4444 | typedef typename __allocator_traits_rebind<_Alloc, _CntrlBlk>::type _Alloc2; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4445 | typedef __allocator_destructor<_Alloc2> _D2; |
| 4446 | _Alloc2 __alloc2(__a); |
| 4447 | unique_ptr<_CntrlBlk, _D2> __hold2(__alloc2.allocate(1), _D2(__alloc2, 1)); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4448 | ::new(static_cast<void*>(_VSTD::addressof(*__hold2.get()))) |
| 4449 | _CntrlBlk(__a, __a0, __a1, __a2); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4450 | shared_ptr<_Tp> __r; |
| 4451 | __r.__ptr_ = __hold2.get()->get(); |
Eric Fiselier | 4e7d536 | 2014-10-23 04:12:28 +0000 | [diff] [blame] | 4452 | __r.__cntrl_ = _VSTD::addressof(*__hold2.release()); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4453 | __r.__enable_weak_this(__r.__ptr_); |
| 4454 | return __r; |
| 4455 | } |
| 4456 | |
| 4457 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 4458 | |
| 4459 | template<class _Tp> |
| 4460 | shared_ptr<_Tp>::~shared_ptr() |
| 4461 | { |
| 4462 | if (__cntrl_) |
| 4463 | __cntrl_->__release_shared(); |
| 4464 | } |
| 4465 | |
| 4466 | template<class _Tp> |
| 4467 | inline _LIBCPP_INLINE_VISIBILITY |
| 4468 | shared_ptr<_Tp>& |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4469 | shared_ptr<_Tp>::operator=(const shared_ptr& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4470 | { |
| 4471 | shared_ptr(__r).swap(*this); |
| 4472 | return *this; |
| 4473 | } |
| 4474 | |
| 4475 | template<class _Tp> |
| 4476 | template<class _Yp> |
| 4477 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4478 | typename enable_if |
| 4479 | < |
| 4480 | is_convertible<_Yp*, _Tp*>::value, |
| 4481 | shared_ptr<_Tp>& |
| 4482 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4483 | shared_ptr<_Tp>::operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4484 | { |
| 4485 | shared_ptr(__r).swap(*this); |
| 4486 | return *this; |
| 4487 | } |
| 4488 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4489 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4490 | |
| 4491 | template<class _Tp> |
| 4492 | inline _LIBCPP_INLINE_VISIBILITY |
| 4493 | shared_ptr<_Tp>& |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4494 | shared_ptr<_Tp>::operator=(shared_ptr&& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4495 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4496 | shared_ptr(_VSTD::move(__r)).swap(*this); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4497 | return *this; |
| 4498 | } |
| 4499 | |
| 4500 | template<class _Tp> |
| 4501 | template<class _Yp> |
| 4502 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4503 | typename enable_if |
| 4504 | < |
| 4505 | is_convertible<_Yp*, _Tp*>::value, |
| 4506 | shared_ptr<_Tp>& |
| 4507 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4508 | shared_ptr<_Tp>::operator=(shared_ptr<_Yp>&& __r) |
| 4509 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4510 | shared_ptr(_VSTD::move(__r)).swap(*this); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4511 | return *this; |
| 4512 | } |
| 4513 | |
| 4514 | template<class _Tp> |
| 4515 | template<class _Yp> |
| 4516 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4517 | typename enable_if |
| 4518 | < |
| 4519 | !is_array<_Yp>::value && |
| 4520 | is_convertible<_Yp*, _Tp*>::value, |
Howard Hinnant | 37c4acf | 2013-09-13 23:56:00 +0000 | [diff] [blame] | 4521 | shared_ptr<_Tp> |
| 4522 | >::type& |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4523 | shared_ptr<_Tp>::operator=(auto_ptr<_Yp>&& __r) |
| 4524 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4525 | shared_ptr(_VSTD::move(__r)).swap(*this); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4526 | return *this; |
| 4527 | } |
| 4528 | |
| 4529 | template<class _Tp> |
| 4530 | template <class _Yp, class _Dp> |
| 4531 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4532 | typename enable_if |
| 4533 | < |
| 4534 | !is_array<_Yp>::value && |
| 4535 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value, |
| 4536 | shared_ptr<_Tp>& |
| 4537 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4538 | shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp>&& __r) |
| 4539 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4540 | shared_ptr(_VSTD::move(__r)).swap(*this); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4541 | return *this; |
| 4542 | } |
| 4543 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4544 | #else // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4545 | |
| 4546 | template<class _Tp> |
| 4547 | template<class _Yp> |
| 4548 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4549 | typename enable_if |
| 4550 | < |
| 4551 | !is_array<_Yp>::value && |
| 4552 | is_convertible<_Yp*, _Tp*>::value, |
| 4553 | shared_ptr<_Tp>& |
| 4554 | >::type |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4555 | shared_ptr<_Tp>::operator=(auto_ptr<_Yp> __r) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4556 | { |
| 4557 | shared_ptr(__r).swap(*this); |
| 4558 | return *this; |
| 4559 | } |
| 4560 | |
| 4561 | template<class _Tp> |
| 4562 | template <class _Yp, class _Dp> |
| 4563 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4564 | typename enable_if |
| 4565 | < |
| 4566 | !is_array<_Yp>::value && |
| 4567 | is_convertible<typename unique_ptr<_Yp, _Dp>::pointer, _Tp*>::value, |
| 4568 | shared_ptr<_Tp>& |
| 4569 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4570 | shared_ptr<_Tp>::operator=(unique_ptr<_Yp, _Dp> __r) |
| 4571 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4572 | shared_ptr(_VSTD::move(__r)).swap(*this); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4573 | return *this; |
| 4574 | } |
| 4575 | |
Howard Hinnant | 73d21a4 | 2010-09-04 23:28:19 +0000 | [diff] [blame] | 4576 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4577 | |
| 4578 | template<class _Tp> |
| 4579 | inline _LIBCPP_INLINE_VISIBILITY |
| 4580 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4581 | shared_ptr<_Tp>::swap(shared_ptr& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4582 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4583 | _VSTD::swap(__ptr_, __r.__ptr_); |
| 4584 | _VSTD::swap(__cntrl_, __r.__cntrl_); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4585 | } |
| 4586 | |
| 4587 | template<class _Tp> |
| 4588 | inline _LIBCPP_INLINE_VISIBILITY |
| 4589 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4590 | shared_ptr<_Tp>::reset() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4591 | { |
| 4592 | shared_ptr().swap(*this); |
| 4593 | } |
| 4594 | |
| 4595 | template<class _Tp> |
| 4596 | template<class _Yp> |
| 4597 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4598 | typename enable_if |
| 4599 | < |
| 4600 | is_convertible<_Yp*, _Tp*>::value, |
| 4601 | void |
| 4602 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4603 | shared_ptr<_Tp>::reset(_Yp* __p) |
| 4604 | { |
| 4605 | shared_ptr(__p).swap(*this); |
| 4606 | } |
| 4607 | |
| 4608 | template<class _Tp> |
| 4609 | template<class _Yp, class _Dp> |
| 4610 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4611 | typename enable_if |
| 4612 | < |
| 4613 | is_convertible<_Yp*, _Tp*>::value, |
| 4614 | void |
| 4615 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4616 | shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d) |
| 4617 | { |
| 4618 | shared_ptr(__p, __d).swap(*this); |
| 4619 | } |
| 4620 | |
| 4621 | template<class _Tp> |
| 4622 | template<class _Yp, class _Dp, class _Alloc> |
| 4623 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4624 | typename enable_if |
| 4625 | < |
| 4626 | is_convertible<_Yp*, _Tp*>::value, |
| 4627 | void |
| 4628 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4629 | shared_ptr<_Tp>::reset(_Yp* __p, _Dp __d, _Alloc __a) |
| 4630 | { |
| 4631 | shared_ptr(__p, __d, __a).swap(*this); |
| 4632 | } |
| 4633 | |
| 4634 | #ifndef _LIBCPP_HAS_NO_VARIADICS |
| 4635 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4636 | template<class _Tp, class ..._Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4637 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4638 | typename enable_if |
| 4639 | < |
| 4640 | !is_array<_Tp>::value, |
| 4641 | shared_ptr<_Tp> |
| 4642 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4643 | make_shared(_Args&& ...__args) |
| 4644 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4645 | return shared_ptr<_Tp>::make_shared(_VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4646 | } |
| 4647 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4648 | template<class _Tp, class _Alloc, class ..._Args> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4649 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4650 | typename enable_if |
| 4651 | < |
| 4652 | !is_array<_Tp>::value, |
| 4653 | shared_ptr<_Tp> |
| 4654 | >::type |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4655 | allocate_shared(const _Alloc& __a, _Args&& ...__args) |
| 4656 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 4657 | return shared_ptr<_Tp>::allocate_shared(__a, _VSTD::forward<_Args>(__args)...); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4658 | } |
| 4659 | |
| 4660 | #else // _LIBCPP_HAS_NO_VARIADICS |
| 4661 | |
| 4662 | template<class _Tp> |
| 4663 | inline _LIBCPP_INLINE_VISIBILITY |
| 4664 | shared_ptr<_Tp> |
| 4665 | make_shared() |
| 4666 | { |
| 4667 | return shared_ptr<_Tp>::make_shared(); |
| 4668 | } |
| 4669 | |
| 4670 | template<class _Tp, class _A0> |
| 4671 | inline _LIBCPP_INLINE_VISIBILITY |
| 4672 | shared_ptr<_Tp> |
| 4673 | make_shared(_A0& __a0) |
| 4674 | { |
| 4675 | return shared_ptr<_Tp>::make_shared(__a0); |
| 4676 | } |
| 4677 | |
| 4678 | template<class _Tp, class _A0, class _A1> |
| 4679 | inline _LIBCPP_INLINE_VISIBILITY |
| 4680 | shared_ptr<_Tp> |
| 4681 | make_shared(_A0& __a0, _A1& __a1) |
| 4682 | { |
| 4683 | return shared_ptr<_Tp>::make_shared(__a0, __a1); |
| 4684 | } |
| 4685 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4686 | template<class _Tp, class _A0, class _A1, class _A2> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4687 | inline _LIBCPP_INLINE_VISIBILITY |
| 4688 | shared_ptr<_Tp> |
| 4689 | make_shared(_A0& __a0, _A1& __a1, _A2& __a2) |
| 4690 | { |
| 4691 | return shared_ptr<_Tp>::make_shared(__a0, __a1, __a2); |
| 4692 | } |
| 4693 | |
| 4694 | template<class _Tp, class _Alloc> |
| 4695 | inline _LIBCPP_INLINE_VISIBILITY |
| 4696 | shared_ptr<_Tp> |
| 4697 | allocate_shared(const _Alloc& __a) |
| 4698 | { |
| 4699 | return shared_ptr<_Tp>::allocate_shared(__a); |
| 4700 | } |
| 4701 | |
| 4702 | template<class _Tp, class _Alloc, class _A0> |
| 4703 | inline _LIBCPP_INLINE_VISIBILITY |
| 4704 | shared_ptr<_Tp> |
| 4705 | allocate_shared(const _Alloc& __a, _A0& __a0) |
| 4706 | { |
| 4707 | return shared_ptr<_Tp>::allocate_shared(__a, __a0); |
| 4708 | } |
| 4709 | |
| 4710 | template<class _Tp, class _Alloc, class _A0, class _A1> |
| 4711 | inline _LIBCPP_INLINE_VISIBILITY |
| 4712 | shared_ptr<_Tp> |
| 4713 | allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1) |
| 4714 | { |
| 4715 | return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1); |
| 4716 | } |
| 4717 | |
| 4718 | template<class _Tp, class _Alloc, class _A0, class _A1, class _A2> |
| 4719 | inline _LIBCPP_INLINE_VISIBILITY |
| 4720 | shared_ptr<_Tp> |
| 4721 | allocate_shared(const _Alloc& __a, _A0& __a0, _A1& __a1, _A2& __a2) |
| 4722 | { |
| 4723 | return shared_ptr<_Tp>::allocate_shared(__a, __a0, __a1, __a2); |
| 4724 | } |
| 4725 | |
| 4726 | #endif // _LIBCPP_HAS_NO_VARIADICS |
| 4727 | |
| 4728 | template<class _Tp, class _Up> |
| 4729 | inline _LIBCPP_INLINE_VISIBILITY |
| 4730 | bool |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4731 | operator==(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4732 | { |
| 4733 | return __x.get() == __y.get(); |
| 4734 | } |
| 4735 | |
| 4736 | template<class _Tp, class _Up> |
| 4737 | inline _LIBCPP_INLINE_VISIBILITY |
| 4738 | bool |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4739 | operator!=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4740 | { |
| 4741 | return !(__x == __y); |
| 4742 | } |
| 4743 | |
| 4744 | template<class _Tp, class _Up> |
| 4745 | inline _LIBCPP_INLINE_VISIBILITY |
| 4746 | bool |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4747 | operator<(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4748 | { |
Eric Fiselier | 8492cd8 | 2015-02-05 23:01:40 +0000 | [diff] [blame] | 4749 | typedef typename common_type<_Tp*, _Up*>::type _Vp; |
| 4750 | return less<_Vp>()(__x.get(), __y.get()); |
Howard Hinnant | 3fadda3 | 2012-02-21 21:02:58 +0000 | [diff] [blame] | 4751 | } |
| 4752 | |
| 4753 | template<class _Tp, class _Up> |
| 4754 | inline _LIBCPP_INLINE_VISIBILITY |
| 4755 | bool |
| 4756 | operator>(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT |
| 4757 | { |
| 4758 | return __y < __x; |
| 4759 | } |
| 4760 | |
| 4761 | template<class _Tp, class _Up> |
| 4762 | inline _LIBCPP_INLINE_VISIBILITY |
| 4763 | bool |
| 4764 | operator<=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT |
| 4765 | { |
| 4766 | return !(__y < __x); |
| 4767 | } |
| 4768 | |
| 4769 | template<class _Tp, class _Up> |
| 4770 | inline _LIBCPP_INLINE_VISIBILITY |
| 4771 | bool |
| 4772 | operator>=(const shared_ptr<_Tp>& __x, const shared_ptr<_Up>& __y) _NOEXCEPT |
| 4773 | { |
| 4774 | return !(__x < __y); |
| 4775 | } |
| 4776 | |
| 4777 | template<class _Tp> |
| 4778 | inline _LIBCPP_INLINE_VISIBILITY |
| 4779 | bool |
| 4780 | operator==(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT |
| 4781 | { |
| 4782 | return !__x; |
| 4783 | } |
| 4784 | |
| 4785 | template<class _Tp> |
| 4786 | inline _LIBCPP_INLINE_VISIBILITY |
| 4787 | bool |
| 4788 | operator==(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT |
| 4789 | { |
| 4790 | return !__x; |
| 4791 | } |
| 4792 | |
| 4793 | template<class _Tp> |
| 4794 | inline _LIBCPP_INLINE_VISIBILITY |
| 4795 | bool |
| 4796 | operator!=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT |
| 4797 | { |
| 4798 | return static_cast<bool>(__x); |
| 4799 | } |
| 4800 | |
| 4801 | template<class _Tp> |
| 4802 | inline _LIBCPP_INLINE_VISIBILITY |
| 4803 | bool |
| 4804 | operator!=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT |
| 4805 | { |
| 4806 | return static_cast<bool>(__x); |
| 4807 | } |
| 4808 | |
| 4809 | template<class _Tp> |
| 4810 | inline _LIBCPP_INLINE_VISIBILITY |
| 4811 | bool |
| 4812 | operator<(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT |
| 4813 | { |
| 4814 | return less<_Tp*>()(__x.get(), nullptr); |
| 4815 | } |
| 4816 | |
| 4817 | template<class _Tp> |
| 4818 | inline _LIBCPP_INLINE_VISIBILITY |
| 4819 | bool |
| 4820 | operator<(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT |
| 4821 | { |
| 4822 | return less<_Tp*>()(nullptr, __x.get()); |
| 4823 | } |
| 4824 | |
| 4825 | template<class _Tp> |
| 4826 | inline _LIBCPP_INLINE_VISIBILITY |
| 4827 | bool |
| 4828 | operator>(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT |
| 4829 | { |
| 4830 | return nullptr < __x; |
| 4831 | } |
| 4832 | |
| 4833 | template<class _Tp> |
| 4834 | inline _LIBCPP_INLINE_VISIBILITY |
| 4835 | bool |
| 4836 | operator>(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT |
| 4837 | { |
| 4838 | return __x < nullptr; |
| 4839 | } |
| 4840 | |
| 4841 | template<class _Tp> |
| 4842 | inline _LIBCPP_INLINE_VISIBILITY |
| 4843 | bool |
| 4844 | operator<=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT |
| 4845 | { |
| 4846 | return !(nullptr < __x); |
| 4847 | } |
| 4848 | |
| 4849 | template<class _Tp> |
| 4850 | inline _LIBCPP_INLINE_VISIBILITY |
| 4851 | bool |
| 4852 | operator<=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT |
| 4853 | { |
| 4854 | return !(__x < nullptr); |
| 4855 | } |
| 4856 | |
| 4857 | template<class _Tp> |
| 4858 | inline _LIBCPP_INLINE_VISIBILITY |
| 4859 | bool |
| 4860 | operator>=(const shared_ptr<_Tp>& __x, nullptr_t) _NOEXCEPT |
| 4861 | { |
| 4862 | return !(__x < nullptr); |
| 4863 | } |
| 4864 | |
| 4865 | template<class _Tp> |
| 4866 | inline _LIBCPP_INLINE_VISIBILITY |
| 4867 | bool |
| 4868 | operator>=(nullptr_t, const shared_ptr<_Tp>& __x) _NOEXCEPT |
| 4869 | { |
| 4870 | return !(nullptr < __x); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4871 | } |
| 4872 | |
| 4873 | template<class _Tp> |
| 4874 | inline _LIBCPP_INLINE_VISIBILITY |
| 4875 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4876 | swap(shared_ptr<_Tp>& __x, shared_ptr<_Tp>& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4877 | { |
| 4878 | __x.swap(__y); |
| 4879 | } |
| 4880 | |
| 4881 | template<class _Tp, class _Up> |
| 4882 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4883 | typename enable_if |
| 4884 | < |
| 4885 | !is_array<_Tp>::value && !is_array<_Up>::value, |
| 4886 | shared_ptr<_Tp> |
| 4887 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4888 | static_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4889 | { |
| 4890 | return shared_ptr<_Tp>(__r, static_cast<_Tp*>(__r.get())); |
| 4891 | } |
| 4892 | |
| 4893 | template<class _Tp, class _Up> |
| 4894 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4895 | typename enable_if |
| 4896 | < |
| 4897 | !is_array<_Tp>::value && !is_array<_Up>::value, |
| 4898 | shared_ptr<_Tp> |
| 4899 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4900 | dynamic_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4901 | { |
| 4902 | _Tp* __p = dynamic_cast<_Tp*>(__r.get()); |
| 4903 | return __p ? shared_ptr<_Tp>(__r, __p) : shared_ptr<_Tp>(); |
| 4904 | } |
| 4905 | |
| 4906 | template<class _Tp, class _Up> |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4907 | typename enable_if |
| 4908 | < |
| 4909 | is_array<_Tp>::value == is_array<_Up>::value, |
| 4910 | shared_ptr<_Tp> |
| 4911 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4912 | const_pointer_cast(const shared_ptr<_Up>& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4913 | { |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4914 | typedef typename remove_extent<_Tp>::type _RTp; |
| 4915 | return shared_ptr<_Tp>(__r, const_cast<_RTp*>(__r.get())); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4916 | } |
| 4917 | |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 4918 | #ifndef _LIBCPP_NO_RTTI |
| 4919 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4920 | template<class _Dp, class _Tp> |
| 4921 | inline _LIBCPP_INLINE_VISIBILITY |
| 4922 | _Dp* |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4923 | get_deleter(const shared_ptr<_Tp>& __p) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4924 | { |
| 4925 | return __p.template __get_deleter<_Dp>(); |
| 4926 | } |
| 4927 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4928 | #endif // _LIBCPP_NO_RTTI |
Howard Hinnant | d444470 | 2010-08-11 17:04:31 +0000 | [diff] [blame] | 4929 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4930 | template<class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 4931 | class _LIBCPP_TYPE_VIS_ONLY weak_ptr |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4932 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4933 | public: |
| 4934 | typedef _Tp element_type; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4935 | private: |
| 4936 | element_type* __ptr_; |
| 4937 | __shared_weak_count* __cntrl_; |
| 4938 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4939 | public: |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 4940 | _LIBCPP_CONSTEXPR weak_ptr() _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4941 | template<class _Yp> weak_ptr(shared_ptr<_Yp> const& __r, |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4942 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0) |
| 4943 | _NOEXCEPT; |
| 4944 | weak_ptr(weak_ptr const& __r) _NOEXCEPT; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4945 | template<class _Yp> weak_ptr(weak_ptr<_Yp> const& __r, |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4946 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0) |
| 4947 | _NOEXCEPT; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4948 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4949 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 4950 | weak_ptr(weak_ptr&& __r) _NOEXCEPT; |
| 4951 | template<class _Yp> weak_ptr(weak_ptr<_Yp>&& __r, |
| 4952 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type = 0) |
| 4953 | _NOEXCEPT; |
| 4954 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4955 | ~weak_ptr(); |
| 4956 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4957 | weak_ptr& operator=(weak_ptr const& __r) _NOEXCEPT; |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 4958 | template<class _Yp> |
| 4959 | typename enable_if |
| 4960 | < |
| 4961 | is_convertible<_Yp*, element_type*>::value, |
| 4962 | weak_ptr& |
| 4963 | >::type |
| 4964 | operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT; |
| 4965 | |
| 4966 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 4967 | |
| 4968 | weak_ptr& operator=(weak_ptr&& __r) _NOEXCEPT; |
| 4969 | template<class _Yp> |
| 4970 | typename enable_if |
| 4971 | < |
| 4972 | is_convertible<_Yp*, element_type*>::value, |
| 4973 | weak_ptr& |
| 4974 | >::type |
| 4975 | operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT; |
| 4976 | |
| 4977 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 4978 | |
| 4979 | template<class _Yp> |
| 4980 | typename enable_if |
| 4981 | < |
| 4982 | is_convertible<_Yp*, element_type*>::value, |
| 4983 | weak_ptr& |
| 4984 | >::type |
| 4985 | operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4986 | |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4987 | void swap(weak_ptr& __r) _NOEXCEPT; |
| 4988 | void reset() _NOEXCEPT; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 4989 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4990 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4991 | long use_count() const _NOEXCEPT |
| 4992 | {return __cntrl_ ? __cntrl_->use_count() : 0;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4993 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 4994 | bool expired() const _NOEXCEPT |
| 4995 | {return __cntrl_ == 0 || __cntrl_->use_count() == 0;} |
| 4996 | shared_ptr<_Tp> lock() const _NOEXCEPT; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 4997 | template<class _Up> |
| 4998 | _LIBCPP_INLINE_VISIBILITY |
| 4999 | bool owner_before(const shared_ptr<_Up>& __r) const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5000 | {return __cntrl_ < __r.__cntrl_;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5001 | template<class _Up> |
| 5002 | _LIBCPP_INLINE_VISIBILITY |
| 5003 | bool owner_before(const weak_ptr<_Up>& __r) const |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5004 | {return __cntrl_ < __r.__cntrl_;} |
| 5005 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5006 | template <class _Up> friend class _LIBCPP_TYPE_VIS_ONLY weak_ptr; |
| 5007 | template <class _Up> friend class _LIBCPP_TYPE_VIS_ONLY shared_ptr; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5008 | }; |
| 5009 | |
| 5010 | template<class _Tp> |
| 5011 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 5012 | _LIBCPP_CONSTEXPR |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5013 | weak_ptr<_Tp>::weak_ptr() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5014 | : __ptr_(0), |
| 5015 | __cntrl_(0) |
| 5016 | { |
| 5017 | } |
| 5018 | |
| 5019 | template<class _Tp> |
| 5020 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5021 | weak_ptr<_Tp>::weak_ptr(weak_ptr const& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5022 | : __ptr_(__r.__ptr_), |
| 5023 | __cntrl_(__r.__cntrl_) |
| 5024 | { |
| 5025 | if (__cntrl_) |
| 5026 | __cntrl_->__add_weak(); |
| 5027 | } |
| 5028 | |
| 5029 | template<class _Tp> |
| 5030 | template<class _Yp> |
| 5031 | inline _LIBCPP_INLINE_VISIBILITY |
| 5032 | weak_ptr<_Tp>::weak_ptr(shared_ptr<_Yp> const& __r, |
Howard Hinnant | e003ce4 | 2011-05-22 00:09:02 +0000 | [diff] [blame] | 5033 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5034 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5035 | : __ptr_(__r.__ptr_), |
| 5036 | __cntrl_(__r.__cntrl_) |
| 5037 | { |
| 5038 | if (__cntrl_) |
| 5039 | __cntrl_->__add_weak(); |
| 5040 | } |
| 5041 | |
| 5042 | template<class _Tp> |
| 5043 | template<class _Yp> |
| 5044 | inline _LIBCPP_INLINE_VISIBILITY |
| 5045 | weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp> const& __r, |
Howard Hinnant | e003ce4 | 2011-05-22 00:09:02 +0000 | [diff] [blame] | 5046 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type) |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5047 | _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5048 | : __ptr_(__r.__ptr_), |
| 5049 | __cntrl_(__r.__cntrl_) |
| 5050 | { |
| 5051 | if (__cntrl_) |
| 5052 | __cntrl_->__add_weak(); |
| 5053 | } |
| 5054 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 5055 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 5056 | |
| 5057 | template<class _Tp> |
| 5058 | inline _LIBCPP_INLINE_VISIBILITY |
| 5059 | weak_ptr<_Tp>::weak_ptr(weak_ptr&& __r) _NOEXCEPT |
| 5060 | : __ptr_(__r.__ptr_), |
| 5061 | __cntrl_(__r.__cntrl_) |
| 5062 | { |
| 5063 | __r.__ptr_ = 0; |
| 5064 | __r.__cntrl_ = 0; |
| 5065 | } |
| 5066 | |
| 5067 | template<class _Tp> |
| 5068 | template<class _Yp> |
| 5069 | inline _LIBCPP_INLINE_VISIBILITY |
| 5070 | weak_ptr<_Tp>::weak_ptr(weak_ptr<_Yp>&& __r, |
| 5071 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat*>::type) |
| 5072 | _NOEXCEPT |
| 5073 | : __ptr_(__r.__ptr_), |
| 5074 | __cntrl_(__r.__cntrl_) |
| 5075 | { |
| 5076 | __r.__ptr_ = 0; |
| 5077 | __r.__cntrl_ = 0; |
| 5078 | } |
| 5079 | |
| 5080 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 5081 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5082 | template<class _Tp> |
| 5083 | weak_ptr<_Tp>::~weak_ptr() |
| 5084 | { |
| 5085 | if (__cntrl_) |
| 5086 | __cntrl_->__release_weak(); |
| 5087 | } |
| 5088 | |
| 5089 | template<class _Tp> |
| 5090 | inline _LIBCPP_INLINE_VISIBILITY |
| 5091 | weak_ptr<_Tp>& |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5092 | weak_ptr<_Tp>::operator=(weak_ptr const& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5093 | { |
| 5094 | weak_ptr(__r).swap(*this); |
| 5095 | return *this; |
| 5096 | } |
| 5097 | |
| 5098 | template<class _Tp> |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5099 | template<class _Yp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5100 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 5101 | typename enable_if |
| 5102 | < |
| 5103 | is_convertible<_Yp*, _Tp*>::value, |
| 5104 | weak_ptr<_Tp>& |
| 5105 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5106 | weak_ptr<_Tp>::operator=(weak_ptr<_Yp> const& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5107 | { |
| 5108 | weak_ptr(__r).swap(*this); |
| 5109 | return *this; |
| 5110 | } |
| 5111 | |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 5112 | #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 5113 | |
| 5114 | template<class _Tp> |
| 5115 | inline _LIBCPP_INLINE_VISIBILITY |
| 5116 | weak_ptr<_Tp>& |
| 5117 | weak_ptr<_Tp>::operator=(weak_ptr&& __r) _NOEXCEPT |
| 5118 | { |
| 5119 | weak_ptr(_VSTD::move(__r)).swap(*this); |
| 5120 | return *this; |
| 5121 | } |
| 5122 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5123 | template<class _Tp> |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5124 | template<class _Yp> |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5125 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 5719940 | 2012-01-02 17:56:02 +0000 | [diff] [blame] | 5126 | typename enable_if |
| 5127 | < |
| 5128 | is_convertible<_Yp*, _Tp*>::value, |
| 5129 | weak_ptr<_Tp>& |
| 5130 | >::type |
| 5131 | weak_ptr<_Tp>::operator=(weak_ptr<_Yp>&& __r) _NOEXCEPT |
| 5132 | { |
| 5133 | weak_ptr(_VSTD::move(__r)).swap(*this); |
| 5134 | return *this; |
| 5135 | } |
| 5136 | |
| 5137 | #endif // _LIBCPP_HAS_NO_RVALUE_REFERENCES |
| 5138 | |
| 5139 | template<class _Tp> |
| 5140 | template<class _Yp> |
| 5141 | inline _LIBCPP_INLINE_VISIBILITY |
| 5142 | typename enable_if |
| 5143 | < |
| 5144 | is_convertible<_Yp*, _Tp*>::value, |
| 5145 | weak_ptr<_Tp>& |
| 5146 | >::type |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5147 | weak_ptr<_Tp>::operator=(shared_ptr<_Yp> const& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5148 | { |
| 5149 | weak_ptr(__r).swap(*this); |
| 5150 | return *this; |
| 5151 | } |
| 5152 | |
| 5153 | template<class _Tp> |
| 5154 | inline _LIBCPP_INLINE_VISIBILITY |
| 5155 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5156 | weak_ptr<_Tp>::swap(weak_ptr& __r) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5157 | { |
Howard Hinnant | 0949eed | 2011-06-30 21:18:19 +0000 | [diff] [blame] | 5158 | _VSTD::swap(__ptr_, __r.__ptr_); |
| 5159 | _VSTD::swap(__cntrl_, __r.__cntrl_); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5160 | } |
| 5161 | |
| 5162 | template<class _Tp> |
| 5163 | inline _LIBCPP_INLINE_VISIBILITY |
| 5164 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5165 | swap(weak_ptr<_Tp>& __x, weak_ptr<_Tp>& __y) _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5166 | { |
| 5167 | __x.swap(__y); |
| 5168 | } |
| 5169 | |
| 5170 | template<class _Tp> |
| 5171 | inline _LIBCPP_INLINE_VISIBILITY |
| 5172 | void |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5173 | weak_ptr<_Tp>::reset() _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5174 | { |
| 5175 | weak_ptr().swap(*this); |
| 5176 | } |
| 5177 | |
| 5178 | template<class _Tp> |
| 5179 | template<class _Yp> |
| 5180 | shared_ptr<_Tp>::shared_ptr(const weak_ptr<_Yp>& __r, |
| 5181 | typename enable_if<is_convertible<_Yp*, _Tp*>::value, __nat>::type) |
| 5182 | : __ptr_(__r.__ptr_), |
| 5183 | __cntrl_(__r.__cntrl_ ? __r.__cntrl_->lock() : __r.__cntrl_) |
| 5184 | { |
| 5185 | if (__cntrl_ == 0) |
| 5186 | #ifndef _LIBCPP_NO_EXCEPTIONS |
| 5187 | throw bad_weak_ptr(); |
| 5188 | #else |
| 5189 | assert(!"bad_weak_ptr"); |
| 5190 | #endif |
| 5191 | } |
| 5192 | |
| 5193 | template<class _Tp> |
| 5194 | shared_ptr<_Tp> |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5195 | weak_ptr<_Tp>::lock() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5196 | { |
| 5197 | shared_ptr<_Tp> __r; |
| 5198 | __r.__cntrl_ = __cntrl_ ? __cntrl_->lock() : __cntrl_; |
| 5199 | if (__r.__cntrl_) |
| 5200 | __r.__ptr_ = __ptr_; |
| 5201 | return __r; |
| 5202 | } |
| 5203 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5204 | template <class _Tp> struct owner_less; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5205 | |
| 5206 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5207 | struct _LIBCPP_TYPE_VIS_ONLY owner_less<shared_ptr<_Tp> > |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5208 | : binary_function<shared_ptr<_Tp>, shared_ptr<_Tp>, bool> |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5209 | { |
| 5210 | typedef bool result_type; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5211 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5212 | bool operator()(shared_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const |
| 5213 | {return __x.owner_before(__y);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5214 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5215 | bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const |
| 5216 | {return __x.owner_before(__y);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5217 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5218 | bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const |
| 5219 | {return __x.owner_before(__y);} |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5220 | }; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5221 | |
| 5222 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5223 | struct _LIBCPP_TYPE_VIS_ONLY owner_less<weak_ptr<_Tp> > |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5224 | : binary_function<weak_ptr<_Tp>, weak_ptr<_Tp>, bool> |
| 5225 | { |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5226 | typedef bool result_type; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5227 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5228 | bool operator()( weak_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const |
| 5229 | {return __x.owner_before(__y);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5230 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5231 | bool operator()(shared_ptr<_Tp> const& __x, weak_ptr<_Tp> const& __y) const |
| 5232 | {return __x.owner_before(__y);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5233 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5234 | bool operator()( weak_ptr<_Tp> const& __x, shared_ptr<_Tp> const& __y) const |
| 5235 | {return __x.owner_before(__y);} |
| 5236 | }; |
| 5237 | |
| 5238 | template<class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5239 | class _LIBCPP_TYPE_VIS_ONLY enable_shared_from_this |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5240 | { |
| 5241 | mutable weak_ptr<_Tp> __weak_this_; |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5242 | protected: |
Howard Hinnant | 46e9493 | 2012-07-07 20:56:04 +0000 | [diff] [blame] | 5243 | _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5244 | enable_shared_from_this() _NOEXCEPT {} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5245 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5246 | enable_shared_from_this(enable_shared_from_this const&) _NOEXCEPT {} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5247 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5248 | enable_shared_from_this& operator=(enable_shared_from_this const&) _NOEXCEPT |
| 5249 | {return *this;} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5250 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5251 | ~enable_shared_from_this() {} |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5252 | public: |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5253 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5254 | shared_ptr<_Tp> shared_from_this() |
| 5255 | {return shared_ptr<_Tp>(__weak_this_);} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5256 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5257 | shared_ptr<_Tp const> shared_from_this() const |
| 5258 | {return shared_ptr<const _Tp>(__weak_this_);} |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5259 | |
| 5260 | template <class _Up> friend class shared_ptr; |
| 5261 | }; |
| 5262 | |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 5263 | template <class _Tp> |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5264 | struct _LIBCPP_TYPE_VIS_ONLY hash<shared_ptr<_Tp> > |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 5265 | { |
| 5266 | typedef shared_ptr<_Tp> argument_type; |
| 5267 | typedef size_t result_type; |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5268 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 1694d23 | 2011-05-28 14:41:13 +0000 | [diff] [blame] | 5269 | result_type operator()(const argument_type& __ptr) const _NOEXCEPT |
Howard Hinnant | 21aefc3 | 2010-06-03 16:42:57 +0000 | [diff] [blame] | 5270 | { |
| 5271 | return hash<_Tp*>()(__ptr.get()); |
| 5272 | } |
| 5273 | }; |
| 5274 | |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 5275 | template<class _CharT, class _Traits, class _Yp> |
Howard Hinnant | 464aa5c | 2011-07-18 15:51:59 +0000 | [diff] [blame] | 5276 | inline _LIBCPP_INLINE_VISIBILITY |
| 5277 | basic_ostream<_CharT, _Traits>& |
Howard Hinnant | 9996844 | 2011-11-29 18:15:50 +0000 | [diff] [blame] | 5278 | operator<<(basic_ostream<_CharT, _Traits>& __os, shared_ptr<_Yp> const& __p); |
Howard Hinnant | 464aa5c | 2011-07-18 15:51:59 +0000 | [diff] [blame] | 5279 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 5280 | #if __has_feature(cxx_atomic) && !defined(_LIBCPP_HAS_NO_THREADS) |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 5281 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5282 | class _LIBCPP_TYPE_VIS __sp_mut |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 5283 | { |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 5284 | void* __lx; |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 5285 | public: |
| 5286 | void lock() _NOEXCEPT; |
| 5287 | void unlock() _NOEXCEPT; |
| 5288 | |
| 5289 | private: |
| 5290 | _LIBCPP_CONSTEXPR __sp_mut(void*) _NOEXCEPT; |
| 5291 | __sp_mut(const __sp_mut&); |
| 5292 | __sp_mut& operator=(const __sp_mut&); |
| 5293 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 5294 | friend _LIBCPP_FUNC_VIS __sp_mut& __get_sp_mut(const void*); |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 5295 | }; |
| 5296 | |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 5297 | _LIBCPP_FUNC_VIS __sp_mut& __get_sp_mut(const void*); |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 5298 | |
| 5299 | template <class _Tp> |
| 5300 | inline _LIBCPP_INLINE_VISIBILITY |
| 5301 | bool |
| 5302 | atomic_is_lock_free(const shared_ptr<_Tp>*) |
| 5303 | { |
| 5304 | return false; |
| 5305 | } |
| 5306 | |
| 5307 | template <class _Tp> |
| 5308 | shared_ptr<_Tp> |
| 5309 | atomic_load(const shared_ptr<_Tp>* __p) |
| 5310 | { |
| 5311 | __sp_mut& __m = __get_sp_mut(__p); |
| 5312 | __m.lock(); |
| 5313 | shared_ptr<_Tp> __q = *__p; |
| 5314 | __m.unlock(); |
| 5315 | return __q; |
| 5316 | } |
| 5317 | |
| 5318 | template <class _Tp> |
| 5319 | inline _LIBCPP_INLINE_VISIBILITY |
| 5320 | shared_ptr<_Tp> |
| 5321 | atomic_load_explicit(const shared_ptr<_Tp>* __p, memory_order) |
| 5322 | { |
| 5323 | return atomic_load(__p); |
| 5324 | } |
| 5325 | |
| 5326 | template <class _Tp> |
| 5327 | void |
| 5328 | atomic_store(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r) |
| 5329 | { |
| 5330 | __sp_mut& __m = __get_sp_mut(__p); |
| 5331 | __m.lock(); |
| 5332 | __p->swap(__r); |
| 5333 | __m.unlock(); |
| 5334 | } |
| 5335 | |
| 5336 | template <class _Tp> |
| 5337 | inline _LIBCPP_INLINE_VISIBILITY |
| 5338 | void |
| 5339 | atomic_store_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order) |
| 5340 | { |
| 5341 | atomic_store(__p, __r); |
| 5342 | } |
| 5343 | |
| 5344 | template <class _Tp> |
| 5345 | shared_ptr<_Tp> |
| 5346 | atomic_exchange(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r) |
| 5347 | { |
| 5348 | __sp_mut& __m = __get_sp_mut(__p); |
| 5349 | __m.lock(); |
| 5350 | __p->swap(__r); |
| 5351 | __m.unlock(); |
| 5352 | return __r; |
| 5353 | } |
| 5354 | |
| 5355 | template <class _Tp> |
| 5356 | inline _LIBCPP_INLINE_VISIBILITY |
| 5357 | shared_ptr<_Tp> |
| 5358 | atomic_exchange_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp> __r, memory_order) |
| 5359 | { |
| 5360 | return atomic_exchange(__p, __r); |
| 5361 | } |
| 5362 | |
| 5363 | template <class _Tp> |
| 5364 | bool |
| 5365 | atomic_compare_exchange_strong(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w) |
| 5366 | { |
| 5367 | __sp_mut& __m = __get_sp_mut(__p); |
| 5368 | __m.lock(); |
| 5369 | if (__p->__owner_equivalent(*__v)) |
| 5370 | { |
| 5371 | *__p = __w; |
| 5372 | __m.unlock(); |
| 5373 | return true; |
| 5374 | } |
| 5375 | *__v = *__p; |
| 5376 | __m.unlock(); |
| 5377 | return false; |
| 5378 | } |
| 5379 | |
| 5380 | template <class _Tp> |
| 5381 | inline _LIBCPP_INLINE_VISIBILITY |
| 5382 | bool |
| 5383 | atomic_compare_exchange_weak(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, shared_ptr<_Tp> __w) |
| 5384 | { |
| 5385 | return atomic_compare_exchange_strong(__p, __v, __w); |
| 5386 | } |
| 5387 | |
| 5388 | template <class _Tp> |
| 5389 | inline _LIBCPP_INLINE_VISIBILITY |
| 5390 | bool |
| 5391 | atomic_compare_exchange_strong_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, |
| 5392 | shared_ptr<_Tp> __w, memory_order, memory_order) |
| 5393 | { |
| 5394 | return atomic_compare_exchange_strong(__p, __v, __w); |
| 5395 | } |
| 5396 | |
| 5397 | template <class _Tp> |
| 5398 | inline _LIBCPP_INLINE_VISIBILITY |
| 5399 | bool |
| 5400 | atomic_compare_exchange_weak_explicit(shared_ptr<_Tp>* __p, shared_ptr<_Tp>* __v, |
| 5401 | shared_ptr<_Tp> __w, memory_order, memory_order) |
| 5402 | { |
| 5403 | return atomic_compare_exchange_weak(__p, __v, __w); |
| 5404 | } |
| 5405 | |
Jonathan Roelofs | 8d86b2e | 2014-09-05 19:45:05 +0000 | [diff] [blame] | 5406 | #endif // __has_feature(cxx_atomic) && !defined(_LIBCPP_HAS_NO_THREADS) |
Howard Hinnant | 5fec82d | 2012-07-30 01:40:57 +0000 | [diff] [blame] | 5407 | |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5408 | //enum class |
Howard Hinnant | 83eade6 | 2013-03-06 23:30:19 +0000 | [diff] [blame] | 5409 | struct _LIBCPP_TYPE_VIS pointer_safety |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5410 | { |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 5411 | enum __lx |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5412 | { |
| 5413 | relaxed, |
| 5414 | preferred, |
| 5415 | strict |
| 5416 | }; |
| 5417 | |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 5418 | __lx __v_; |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5419 | |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5420 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 9c0df14 | 2012-10-30 19:06:59 +0000 | [diff] [blame] | 5421 | pointer_safety(__lx __v) : __v_(__v) {} |
Howard Hinnant | 8289481 | 2010-09-22 16:48:34 +0000 | [diff] [blame] | 5422 | _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5423 | operator int() const {return __v_;} |
| 5424 | }; |
| 5425 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5426 | _LIBCPP_FUNC_VIS void declare_reachable(void* __p); |
| 5427 | _LIBCPP_FUNC_VIS void declare_no_pointers(char* __p, size_t __n); |
| 5428 | _LIBCPP_FUNC_VIS void undeclare_no_pointers(char* __p, size_t __n); |
| 5429 | _LIBCPP_FUNC_VIS pointer_safety get_pointer_safety() _NOEXCEPT; |
| 5430 | _LIBCPP_FUNC_VIS void* __undeclare_reachable(void* __p); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5431 | |
| 5432 | template <class _Tp> |
| 5433 | inline _LIBCPP_INLINE_VISIBILITY |
Howard Hinnant | 324bb03 | 2010-08-22 00:02:43 +0000 | [diff] [blame] | 5434 | _Tp* |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5435 | undeclare_reachable(_Tp* __p) |
| 5436 | { |
| 5437 | return static_cast<_Tp*>(__undeclare_reachable(__p)); |
| 5438 | } |
| 5439 | |
Howard Hinnant | 0f678bd | 2013-08-12 18:38:34 +0000 | [diff] [blame] | 5440 | _LIBCPP_FUNC_VIS void* align(size_t __align, size_t __sz, void*& __ptr, size_t& __space); |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 5441 | |
| 5442 | _LIBCPP_END_NAMESPACE_STD |
| 5443 | |
| 5444 | #endif // _LIBCPP_MEMORY |