49#ifndef _SHARED_PTR_BASE_H
50#define _SHARED_PTR_BASE_H 1
63#if __cplusplus >= 202002L
70namespace std _GLIBCXX_VISIBILITY(default)
72_GLIBCXX_BEGIN_NAMESPACE_VERSION
74#if _GLIBCXX_USE_DEPRECATED
75#pragma GCC diagnostic push
76#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
77 template<
typename>
class auto_ptr;
78#pragma GCC diagnostic pop
88 virtual char const*
what() const noexcept;
95 __throw_bad_weak_ptr()
98 using __gnu_cxx::_Lock_policy;
99 using __gnu_cxx::__default_lock_policy;
100 using __gnu_cxx::_S_single;
101 using __gnu_cxx::_S_mutex;
102 using __gnu_cxx::_S_atomic;
105 template<_Lock_policy _Lp>
110 enum { _S_need_barriers = 0 };
114 class _Mutex_base<_S_mutex>
115 :
public __gnu_cxx::__mutex
121 enum { _S_need_barriers = 1 };
124 template<_Lock_policy _Lp = __default_lock_policy>
125 class _Sp_counted_base
126 :
public _Mutex_base<_Lp>
129 _Sp_counted_base() noexcept
130 : _M_use_count(1), _M_weak_count(1) { }
133 ~_Sp_counted_base() noexcept
139 _M_dispose() noexcept = 0;
143 _M_destroy() noexcept
152 { __gnu_cxx::__atomic_add_dispatch(&_M_use_count, 1); }
158 if (!_M_add_ref_lock_nothrow())
159 __throw_bad_weak_ptr();
164 _M_add_ref_lock_nothrow() noexcept;
168 _M_release() noexcept;
172 _M_release_last_use() noexcept
174 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_use_count);
180 if (_Mutex_base<_Lp>::_S_need_barriers)
182 __atomic_thread_fence (__ATOMIC_ACQ_REL);
186 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_weak_count);
187 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_weak_count,
190 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_weak_count);
196 __attribute__((__noinline__))
198 _M_release_last_use_cold() noexcept
199 { _M_release_last_use(); }
203 _M_weak_add_ref() noexcept
204 { __gnu_cxx::__atomic_add_dispatch(&_M_weak_count, 1); }
208 _M_weak_release() noexcept
211 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_weak_count);
212 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_weak_count, -1) == 1)
214 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_weak_count);
215 if (_Mutex_base<_Lp>::_S_need_barriers)
219 __atomic_thread_fence (__ATOMIC_ACQ_REL);
226 _M_get_use_count() const noexcept
230 return __atomic_load_n(&_M_use_count, __ATOMIC_RELAXED);
234 _Sp_counted_base(_Sp_counted_base
const&) =
delete;
235 _Sp_counted_base& operator=(_Sp_counted_base
const&) =
delete;
237 _Atomic_word _M_use_count;
238 _Atomic_word _M_weak_count;
243 _Sp_counted_base<_S_single>::
244 _M_add_ref_lock_nothrow() noexcept
246 if (_M_use_count == 0)
254 _Sp_counted_base<_S_mutex>::
255 _M_add_ref_lock_nothrow() noexcept
258 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, 1) == 0)
268 _Sp_counted_base<_S_atomic>::
269 _M_add_ref_lock_nothrow() noexcept
272 _Atomic_word __count = _M_get_use_count();
280 while (!__atomic_compare_exchange_n(&_M_use_count, &__count, __count + 1,
281 true, __ATOMIC_ACQ_REL,
288 _Sp_counted_base<_S_single>::_M_add_ref_copy()
293 _Sp_counted_base<_S_single>::_M_release() noexcept
295 if (--_M_use_count == 0)
298 if (--_M_weak_count == 0)
305 _Sp_counted_base<_S_mutex>::_M_release() noexcept
308 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_use_count);
309 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, -1) == 1)
311 _M_release_last_use();
317 _Sp_counted_base<_S_atomic>::_M_release() noexcept
319 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_use_count);
321 constexpr bool __lock_free
322 = __atomic_always_lock_free(
sizeof(
long long), 0)
323 && __atomic_always_lock_free(
sizeof(_Atomic_word), 0);
324 constexpr bool __double_word
325 =
sizeof(
long long) == 2 *
sizeof(_Atomic_word);
328 constexpr bool __aligned = __alignof(
long long) <=
alignof(
void*);
329 if _GLIBCXX17_CONSTEXPR (__lock_free && __double_word && __aligned)
331 constexpr int __wordbits = __CHAR_BIT__ *
sizeof(_Atomic_word);
332 constexpr int __shiftbits = __double_word ? __wordbits : 0;
333 constexpr long long __unique_ref = 1LL + (1LL << __shiftbits);
334 auto __both_counts =
reinterpret_cast<long long*
>(&_M_use_count);
336 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_weak_count);
337 if (__atomic_load_n(__both_counts, __ATOMIC_ACQUIRE) == __unique_ref)
343 _M_weak_count = _M_use_count = 0;
344 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_use_count);
345 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_weak_count);
350 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, -1) == 1)
353 _M_release_last_use_cold();
359 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, -1) == 1)
361 _M_release_last_use();
367 _Sp_counted_base<_S_single>::_M_weak_add_ref() noexcept
372 _Sp_counted_base<_S_single>::_M_weak_release() noexcept
374 if (--_M_weak_count == 0)
380 _Sp_counted_base<_S_single>::_M_get_use_count() const noexcept
381 {
return _M_use_count; }
385 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy>
388 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy>
391 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy>
392 class __enable_shared_from_this;
394 template<
typename _Tp>
397 template<
typename _Tp>
400 template<
typename _Tp>
403 template<
typename _Tp>
404 class enable_shared_from_this;
406 template<_Lock_policy _Lp = __default_lock_policy>
409 template<_Lock_policy _Lp = __default_lock_policy>
410 class __shared_count;
412#ifdef __glibcxx_atomic_shared_ptr
418 template<
typename _Ptr, _Lock_policy _Lp>
419 class _Sp_counted_ptr final :
public _Sp_counted_base<_Lp>
423 _Sp_counted_ptr(_Ptr __p) noexcept
427 _M_dispose() noexcept
431 _M_destroy() noexcept
438 _Sp_counted_ptr(
const _Sp_counted_ptr&) =
delete;
439 _Sp_counted_ptr& operator=(
const _Sp_counted_ptr&) =
delete;
447 _Sp_counted_ptr<nullptr_t, _S_single>::_M_dispose() noexcept { }
451 _Sp_counted_ptr<nullptr_t, _S_mutex>::_M_dispose() noexcept { }
455 _Sp_counted_ptr<nullptr_t, _S_atomic>::_M_dispose() noexcept { }
462 template<
int _Nm,
typename _Tp,
463 bool __use_ebo = !__is_final(_Tp) && __is_empty(_Tp)>
464 struct _Sp_ebo_helper;
467 template<
int _Nm,
typename _Tp>
468 struct _Sp_ebo_helper<_Nm, _Tp, true> :
private _Tp
470 explicit _Sp_ebo_helper(
const _Tp& __tp) : _Tp(__tp) { }
471 explicit _Sp_ebo_helper(_Tp&& __tp) : _Tp(
std::move(__tp)) { }
474 _S_get(_Sp_ebo_helper& __eboh) {
return static_cast<_Tp&
>(__eboh); }
478 template<
int _Nm,
typename _Tp>
479 struct _Sp_ebo_helper<_Nm, _Tp, false>
481 explicit _Sp_ebo_helper(
const _Tp& __tp) : _M_tp(__tp) { }
482 explicit _Sp_ebo_helper(_Tp&& __tp) : _M_tp(
std::move(__tp)) { }
485 _S_get(_Sp_ebo_helper& __eboh)
486 {
return __eboh._M_tp; }
493 template<
typename _Ptr,
typename _Deleter,
typename _Alloc, _Lock_policy _Lp>
494 class _Sp_counted_deleter final :
public _Sp_counted_base<_Lp>
496 class _Impl : _Sp_ebo_helper<0, _Deleter>, _Sp_ebo_helper<1, _Alloc>
498 typedef _Sp_ebo_helper<0, _Deleter> _Del_base;
499 typedef _Sp_ebo_helper<1, _Alloc> _Alloc_base;
502 _Impl(_Ptr __p, _Deleter __d,
const _Alloc& __a) noexcept
503 : _Del_base(
std::move(__d)), _Alloc_base(__a), _M_ptr(__p)
506 _Deleter& _M_del() noexcept {
return _Del_base::_S_get(*
this); }
507 _Alloc& _M_alloc() noexcept {
return _Alloc_base::_S_get(*
this); }
513 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_deleter>;
516 _Sp_counted_deleter(_Ptr __p, _Deleter __d) noexcept
517 : _M_impl(__p,
std::move(__d), _Alloc()) { }
520 _Sp_counted_deleter(_Ptr __p, _Deleter __d,
const _Alloc& __a) noexcept
523 ~_Sp_counted_deleter() noexcept { }
526 _M_dispose() noexcept
527 { _M_impl._M_del()(_M_impl._M_ptr); }
530 _M_destroy() noexcept
532 __allocator_type __a(_M_impl._M_alloc());
533 __allocated_ptr<__allocator_type> __guard_ptr{ __a,
this };
534 this->~_Sp_counted_deleter();
538 _M_get_deleter(
const type_info& __ti [[__gnu__::__unused__]])
noexcept
543 return __ti ==
typeid(_Deleter)
552#ifdef __glibcxx_out_ptr
553 template<
typename,
typename,
typename...>
friend class out_ptr_t;
560 struct _Sp_make_shared_tag
563 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
564 friend class _Sp_counted_ptr_inplace;
566 static const type_info&
567 _S_ti() noexcept _GLIBCXX_VISIBILITY(default)
569 alignas(type_info)
static constexpr char __tag[
sizeof(type_info)] = { };
570 return reinterpret_cast<const type_info&
>(__tag);
573 static bool _S_eq(
const type_info&)
noexcept;
576 template<
typename _Alloc>
577 struct _Sp_alloc_shared_tag
582 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
583 class _Sp_counted_ptr_inplace final :
public _Sp_counted_base<_Lp>
585 class _Impl : _Sp_ebo_helper<0, _Alloc>
587 typedef _Sp_ebo_helper<0, _Alloc> _A_base;
590 explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { }
592 _Alloc& _M_alloc() noexcept {
return _A_base::_S_get(*
this); }
594 __gnu_cxx::__aligned_buffer<_Tp> _M_storage;
598 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_ptr_inplace>;
601 template<
typename... _Args>
602 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args)
608 std::forward<_Args>(__args)...);
611 ~_Sp_counted_ptr_inplace() noexcept { }
614 _M_dispose() noexcept
621 _M_destroy() noexcept
623 __allocator_type __a(_M_impl._M_alloc());
624 __allocated_ptr<__allocator_type> __guard_ptr{ __a,
this };
625 this->~_Sp_counted_ptr_inplace();
629 friend class __shared_count<_Lp>;
636 auto __ptr =
const_cast<typename remove_cv<_Tp>::type*
>(_M_ptr());
641 if (&__ti == &_Sp_make_shared_tag::_S_ti()
644 __ti ==
typeid(_Sp_make_shared_tag)
646 _Sp_make_shared_tag::_S_eq(__ti)
653 _Tp* _M_ptr() noexcept {
return _M_impl._M_storage._M_ptr(); }
658#ifdef __glibcxx_smart_ptr_for_overwrite
659 struct _Sp_overwrite_tag { };
665 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
666 requires is_same_v<typename _Alloc::value_type, _Sp_overwrite_tag>
667 class _Sp_counted_ptr_inplace<_Tp, _Alloc, _Lp> final
669 template<typename _Tp, template<typename> class _Alloc, _Lock_policy _Lp>
670 class _Sp_counted_ptr_inplace<_Tp, _Alloc<_Sp_overwrite_tag>, _Lp> final
672 :
public _Sp_counted_base<_Lp>
674 [[no_unique_address]] _Alloc _M_alloc;
681 friend class __shared_count<_Lp>;
686 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_ptr_inplace>;
688 _Sp_counted_ptr_inplace(
const _Alloc& __a)
691 ::new((
void*)_M_ptr()) _Tp;
694 ~_Sp_counted_ptr_inplace() noexcept { }
697 _M_dispose() noexcept
704 _M_destroy() noexcept
706 using pointer =
typename allocator_traits<__allocator_type>::pointer;
707 __allocator_type __a(_M_alloc);
708 auto __p = pointer_traits<pointer>::pointer_to(*
this);
709 __allocated_ptr<__allocator_type> __guard_ptr{ __a, __p };
710 this->~_Sp_counted_ptr_inplace();
719#if __glibcxx_shared_ptr_arrays >= 201707L
720 struct _Sp_overwrite_tag;
723 template<
typename _Alloc>
724 struct _Sp_counted_array_base
726 [[no_unique_address]] _Alloc _M_alloc{};
728 bool _M_overwrite =
false;
730 typename allocator_traits<_Alloc>::pointer
731 _M_alloc_array(
size_t __tail)
733 return allocator_traits<_Alloc>::allocate(_M_alloc, _M_n + __tail);
737 _M_dealloc_array(
typename allocator_traits<_Alloc>::pointer __p,
740 allocator_traits<_Alloc>::deallocate(_M_alloc, __p, _M_n + __tail);
744 template<
typename _Init>
746 _M_init(
typename allocator_traits<_Alloc>::value_type* __p,
749 using _Tp = remove_pointer_t<_Init>;
750 using _Up =
typename allocator_traits<_Alloc>::value_type;
752 if constexpr (is_same_v<_Init, _Sp_overwrite_tag>)
757 else if (__init ==
nullptr)
758 std::__uninitialized_default_n_a(__p, _M_n, _M_alloc);
759 else if constexpr (!is_array_v<_Tp>)
760 std::__uninitialized_fill_n_a(__p, _M_n, *__init, _M_alloc);
763#pragma GCC diagnostic push
764#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
767 using value_type = _Up;
768 using difference_type = ptrdiff_t;
769 using pointer =
const _Up*;
770 using reference =
const _Up&;
771 using iterator_category = forward_iterator_tag;
777 _Iter& operator++() { ++_M_pos;
return *
this; }
778 _Iter operator++(
int) {
auto __i(*
this); ++_M_pos;
return __i; }
780 reference
operator*()
const {
return _M_p[_M_pos % _M_len]; }
781 pointer operator->()
const {
return _M_p + (_M_pos % _M_len); }
783 bool operator==(
const _Iter& __i)
const
784 {
return _M_pos == __i._M_pos; }
786#pragma GCC diagnostic pop
788 _Iter __first{_S_first_elem(__init),
sizeof(_Tp) /
sizeof(_Up)};
789 _Iter __last = __first;
790 __last._M_pos = _M_n;
791 std::__uninitialized_copy_a(__first, __last, __p, _M_alloc);
798 _M_dispose_array(
typename allocator_traits<_Alloc>::value_type* __p)
801 std::destroy_n(__p, _M_n);
806 allocator_traits<_Alloc>::destroy(_M_alloc, __p + __n);
811 template<
typename _Tp>
813 _S_first_elem(_Tp* __p) {
return __p; }
815 template<
typename _Tp,
size_t _Nm>
817 _S_first_elem(_Tp (*__p)[_Nm]) {
return _S_first_elem(*__p); }
822 template<
typename _Alloc, _Lock_policy _Lp>
823 class _Sp_counted_array final
824 :
public _Sp_counted_base<_Lp>, _Sp_counted_array_base<_Alloc>
826 using pointer =
typename allocator_traits<_Alloc>::pointer;
828 pointer _M_alloc_ptr;
832 friend class __shared_count<_Lp>;
835 _Sp_counted_array(
const _Sp_counted_array_base<_Alloc>& __a,
836 pointer __p) noexcept
837 : _Sp_counted_array_base<_Alloc>(__a), _M_alloc_ptr(__p)
840 ~_Sp_counted_array() =
default;
843 _M_dispose() noexcept
846 this->_M_dispose_array(_M_ptr());
851 _M_destroy() noexcept
853 _Sp_counted_array_base<_Alloc> __a = *
this;
854 pointer __p = _M_alloc_ptr;
855 this->~_Sp_counted_array();
856 __a._M_dealloc_array(__p, _S_tail());
861 static constexpr size_t
865 using _Tp =
typename allocator_traits<_Alloc>::value_type;
868 size_t __bytes =
sizeof(_Sp_counted_array);
871 if constexpr (
alignof(_Tp) <
alignof(_Sp_counted_array))
872 __bytes +=
alignof(_Sp_counted_array) -
alignof(_Tp);
874 return (__bytes +
sizeof(_Tp) - 1) /
sizeof(_Tp);
884 struct __sp_array_delete
886 template<
typename _Yp>
887 void operator()(_Yp* __p)
const {
delete[] __p; }
890 template<_Lock_policy _Lp>
894 template<
typename _Tp>
895 struct __not_alloc_shared_tag {
using type = void; };
897 template<
typename _Tp>
898 struct __not_alloc_shared_tag<_Sp_alloc_shared_tag<_Tp>> { };
900#if __glibcxx_shared_ptr_arrays >= 201707L
901 template<
typename _Alloc>
902 struct __not_alloc_shared_tag<_Sp_counted_array_base<_Alloc>> { };
906 constexpr __shared_count() noexcept : _M_pi(0)
909 template<
typename _Ptr>
911 __shared_count(_Ptr __p) : _M_pi(0)
915 _M_pi =
new _Sp_counted_ptr<_Ptr, _Lp>(__p);
920 __throw_exception_again;
924 template<
typename _Ptr>
925 __shared_count(_Ptr __p, false_type)
926 : __shared_count(__p)
929 template<
typename _Ptr>
930 __shared_count(_Ptr __p, true_type)
931 : __shared_count(__p, __sp_array_delete{}, allocator<void>())
934 template<
typename _Ptr,
typename _Deleter,
935 typename =
typename __not_alloc_shared_tag<_Deleter>::type>
936 __shared_count(_Ptr __p, _Deleter __d)
937 : __shared_count(__p,
std::
move(__d), allocator<void>())
940 template<
typename _Ptr,
typename _Deleter,
typename _Alloc,
941 typename =
typename __not_alloc_shared_tag<_Deleter>::type>
942 __shared_count(_Ptr __p, _Deleter __d, _Alloc __a) : _M_pi(0)
944 typedef _Sp_counted_deleter<_Ptr, _Deleter, _Alloc, _Lp> _Sp_cd_type;
947 typename _Sp_cd_type::__allocator_type __a2(__a);
948 auto __guard = std::__allocate_guarded(__a2);
949 _Sp_cd_type* __mem = __guard.get();
957 __throw_exception_again;
961 template<
typename _Tp,
typename _Alloc,
typename... _Args>
962 __shared_count(_Tp*& __p, _Sp_alloc_shared_tag<_Alloc> __a,
965 typedef _Sp_counted_ptr_inplace<_Tp, _Alloc, _Lp> _Sp_cp_type;
966 typename _Sp_cp_type::__allocator_type __a2(__a._M_a);
967 auto __guard = std::__allocate_guarded(__a2);
968 _Sp_cp_type* __mem = __guard.get();
969 auto __pi = ::new (__mem)
970 _Sp_cp_type(__a._M_a, std::forward<_Args>(__args)...);
973 __p = __pi->_M_ptr();
976#if __glibcxx_shared_ptr_arrays >= 201707L
977 template<
typename _Tp,
typename _Alloc,
typename _Init>
978 __shared_count(_Tp*& __p,
const _Sp_counted_array_base<_Alloc>& __a,
981 using _Up = remove_all_extents_t<_Tp>;
982 static_assert(is_same_v<_Up, typename _Alloc::value_type>);
984 using _Sp_ca_type = _Sp_counted_array<_Alloc, _Lp>;
985 const size_t __tail = _Sp_ca_type::_S_tail();
987 struct _Guarded_ptr : _Sp_counted_array_base<_Alloc>
989 typename allocator_traits<_Alloc>::pointer _M_ptr;
991 _Guarded_ptr(_Sp_counted_array_base<_Alloc> __a)
992 : _Sp_counted_array_base<_Alloc>(__a),
993 _M_ptr(this->_M_alloc_array(_Sp_ca_type::_S_tail()))
999 this->_M_dealloc_array(_M_ptr, _Sp_ca_type::_S_tail());
1003 _Guarded_ptr __guard{__a};
1005 __guard._M_init(__raw, __init);
1007 void* __c = __raw + __a._M_n;
1008 if constexpr (
alignof(_Up) <
alignof(_Sp_ca_type))
1010 size_t __space =
sizeof(_Up) * __tail;
1011 __c =
std::align(
alignof(_Sp_ca_type),
sizeof(_Sp_ca_type),
1014 auto __pi = ::new(__c) _Sp_ca_type(__guard, __guard._M_ptr);
1015 __guard._M_ptr =
nullptr;
1017 __p =
reinterpret_cast<_Tp*
>(__raw);
1021#if _GLIBCXX_USE_DEPRECATED
1022#pragma GCC diagnostic push
1023#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1025 template<
typename _Tp>
1028#pragma GCC diagnostic pop
1032 template<
typename _Tp,
typename _Del>
1038 if (__r.get() ==
nullptr)
1041 using _Ptr =
typename unique_ptr<_Tp, _Del>::pointer;
1042 using _Del2 = __conditional_t<is_reference<_Del>::value,
1043 reference_wrapper<typename remove_reference<_Del>::type>,
1046 = _Sp_counted_deleter<_Ptr, _Del2, allocator<void>, _Lp>;
1047 using _Alloc = allocator<_Sp_cd_type>;
1048 using _Alloc_traits = allocator_traits<_Alloc>;
1050 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1);
1054 _Alloc_traits::construct(__a, __mem, __r.release(),
1055 std::forward<_Del>(__r.get_deleter()));
1060 explicit __shared_count(
const __weak_count<_Lp>& __r);
1064 __shared_count(
const __weak_count<_Lp>& __r, std::nothrow_t)
noexcept;
1066 ~__shared_count() noexcept
1068 if (_M_pi !=
nullptr)
1069 _M_pi->_M_release();
1072 __shared_count(
const __shared_count& __r) noexcept
1075 if (_M_pi !=
nullptr)
1076 _M_pi->_M_add_ref_copy();
1080 operator=(
const __shared_count& __r)
noexcept
1082 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1085 if (__tmp !=
nullptr)
1086 __tmp->_M_add_ref_copy();
1087 if (_M_pi !=
nullptr)
1088 _M_pi->_M_release();
1095 _M_swap(__shared_count& __r)
noexcept
1097 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1103 _M_get_use_count() const noexcept
1104 {
return _M_pi ? _M_pi->_M_get_use_count() : 0; }
1107 _M_unique() const noexcept
1108 {
return this->_M_get_use_count() == 1; }
1112 {
return _M_pi ? _M_pi->_M_get_deleter(__ti) :
nullptr; }
1115 _M_less(
const __shared_count& __rhs)
const noexcept
1119 _M_less(
const __weak_count<_Lp>& __rhs)
const noexcept
1124 operator==(
const __shared_count& __a,
const __shared_count& __b)
noexcept
1125 {
return __a._M_pi == __b._M_pi; }
1128 friend class __weak_count<_Lp>;
1129#ifdef __glibcxx_atomic_shared_ptr
1130 template<
typename>
friend class _Sp_atomic;
1132#ifdef __glibcxx_out_ptr
1133 template<
typename,
typename,
typename...>
friend class out_ptr_t;
1136 _Sp_counted_base<_Lp>* _M_pi;
1140 template<_Lock_policy _Lp>
1144 constexpr __weak_count() noexcept : _M_pi(
nullptr)
1147 __weak_count(
const __shared_count<_Lp>& __r) noexcept
1150 if (_M_pi !=
nullptr)
1151 _M_pi->_M_weak_add_ref();
1154 __weak_count(
const __weak_count& __r) noexcept
1157 if (_M_pi !=
nullptr)
1158 _M_pi->_M_weak_add_ref();
1161 __weak_count(__weak_count&& __r) noexcept
1163 { __r._M_pi =
nullptr; }
1165 ~__weak_count() noexcept
1167 if (_M_pi !=
nullptr)
1168 _M_pi->_M_weak_release();
1172 operator=(
const __shared_count<_Lp>& __r)
noexcept
1174 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1175 if (__tmp !=
nullptr)
1176 __tmp->_M_weak_add_ref();
1177 if (_M_pi !=
nullptr)
1178 _M_pi->_M_weak_release();
1184 operator=(
const __weak_count& __r)
noexcept
1186 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1187 if (__tmp !=
nullptr)
1188 __tmp->_M_weak_add_ref();
1189 if (_M_pi !=
nullptr)
1190 _M_pi->_M_weak_release();
1196 operator=(__weak_count&& __r)
noexcept
1198 if (_M_pi !=
nullptr)
1199 _M_pi->_M_weak_release();
1201 __r._M_pi =
nullptr;
1206 _M_swap(__weak_count& __r)
noexcept
1208 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1214 _M_get_use_count() const noexcept
1215 {
return _M_pi !=
nullptr ? _M_pi->_M_get_use_count() : 0; }
1218 _M_less(
const __weak_count& __rhs)
const noexcept
1222 _M_less(
const __shared_count<_Lp>& __rhs)
const noexcept
1227 operator==(
const __weak_count& __a,
const __weak_count& __b)
noexcept
1228 {
return __a._M_pi == __b._M_pi; }
1231 friend class __shared_count<_Lp>;
1232#ifdef __glibcxx_atomic_shared_ptr
1233 template<
typename>
friend class _Sp_atomic;
1236 _Sp_counted_base<_Lp>* _M_pi;
1240 template<_Lock_policy _Lp>
1242 __shared_count<_Lp>::__shared_count(
const __weak_count<_Lp>& __r)
1245 if (_M_pi ==
nullptr || !_M_pi->_M_add_ref_lock_nothrow())
1246 __throw_bad_weak_ptr();
1250 template<_Lock_policy _Lp>
1252 __shared_count<_Lp>::
1253 __shared_count(
const __weak_count<_Lp>& __r, std::nothrow_t) noexcept
1256 if (_M_pi && !_M_pi->_M_add_ref_lock_nothrow())
1264 template<
typename _Yp_ptr,
typename _Tp_ptr>
1265 struct __sp_compatible_with
1269 template<
typename _Yp,
typename _Tp>
1270 struct __sp_compatible_with<_Yp*, _Tp*>
1271 : is_convertible<_Yp*, _Tp*>::type
1274 template<
typename _Up,
size_t _Nm>
1275 struct __sp_compatible_with<_Up(*)[_Nm], _Up(*)[]>
1279 template<
typename _Up,
size_t _Nm>
1280 struct __sp_compatible_with<_Up(*)[_Nm],
const _Up(*)[]>
1284 template<
typename _Up,
size_t _Nm>
1285 struct __sp_compatible_with<_Up(*)[_Nm],
volatile _Up(*)[]>
1289 template<
typename _Up,
size_t _Nm>
1290 struct __sp_compatible_with<_Up(*)[_Nm],
const volatile _Up(*)[]>
1295 template<
typename _Up,
size_t _Nm,
typename _Yp,
typename =
void>
1296 struct __sp_is_constructible_arrN
1300 template<
typename _Up,
size_t _Nm,
typename _Yp>
1301 struct __sp_is_constructible_arrN<_Up, _Nm, _Yp, __void_t<_Yp[_Nm]>>
1302 : is_convertible<_Yp(*)[_Nm], _Up(*)[_Nm]>::type
1306 template<
typename _Up,
typename _Yp,
typename =
void>
1307 struct __sp_is_constructible_arr
1311 template<
typename _Up,
typename _Yp>
1312 struct __sp_is_constructible_arr<_Up, _Yp, __void_t<_Yp[]>>
1313 : is_convertible<_Yp(*)[], _Up(*)[]>::type
1317 template<
typename _Tp,
typename _Yp>
1318 struct __sp_is_constructible;
1321 template<
typename _Up,
size_t _Nm,
typename _Yp>
1322 struct __sp_is_constructible<_Up[_Nm], _Yp>
1323 : __sp_is_constructible_arrN<_Up, _Nm, _Yp>::type
1327 template<
typename _Up,
typename _Yp>
1328 struct __sp_is_constructible<_Up[], _Yp>
1329 : __sp_is_constructible_arr<_Up, _Yp>::type
1333 template<
typename _Tp,
typename _Yp>
1334 struct __sp_is_constructible
1335 : is_convertible<_Yp*, _Tp*>::type
1340 template<
typename _Tp, _Lock_policy _Lp,
1341 bool = is_array<_Tp>::value,
bool = is_void<_Tp>::value>
1342 class __shared_ptr_access
1345 using element_type = _Tp;
1350 __glibcxx_assert(_M_get() !=
nullptr);
1355 operator->() const noexcept
1357 _GLIBCXX_DEBUG_PEDASSERT(_M_get() !=
nullptr);
1363 _M_get() const noexcept
1364 {
return static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get(); }
1368 template<
typename _Tp, _Lock_policy _Lp>
1369 class __shared_ptr_access<_Tp, _Lp, false, true>
1372 using element_type = _Tp;
1375 operator->() const noexcept
1377 auto __ptr =
static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get();
1378 _GLIBCXX_DEBUG_PEDASSERT(__ptr !=
nullptr);
1384 template<
typename _Tp, _Lock_policy _Lp>
1385 class __shared_ptr_access<_Tp, _Lp, true, false>
1388 using element_type =
typename remove_extent<_Tp>::type;
1390#if __cplusplus <= 201402L
1391 [[__deprecated__(
"shared_ptr<T[]>::operator* is absent from C++17")]]
1395 __glibcxx_assert(_M_get() !=
nullptr);
1399 [[__deprecated__(
"shared_ptr<T[]>::operator-> is absent from C++17")]]
1401 operator->() const noexcept
1403 _GLIBCXX_DEBUG_PEDASSERT(_M_get() !=
nullptr);
1409 operator[](ptrdiff_t __i)
const noexcept
1411 __glibcxx_assert(_M_get() !=
nullptr);
1412 __glibcxx_assert(!extent<_Tp>::value || __i < extent<_Tp>::value);
1413 return _M_get()[__i];
1418 _M_get() const noexcept
1419 {
return static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get(); }
1422 template<
typename _Tp, _Lock_policy _Lp>
1424 :
public __shared_ptr_access<_Tp, _Lp>
1427 using element_type =
typename remove_extent<_Tp>::type;
1431 template<
typename _Yp>
1433 =
typename enable_if<__sp_is_constructible<_Tp, _Yp>::value>::type;
1436 template<
typename _Yp,
typename _Res =
void>
1437 using _Compatible =
typename
1438 enable_if<__sp_compatible_with<_Yp*, _Tp*>::value, _Res>::type;
1441 template<
typename _Yp>
1442 using _Assignable = _Compatible<_Yp, __shared_ptr&>;
1445 template<
typename _Yp,
typename _Del,
typename _Res = void,
1446 typename _Ptr =
typename unique_ptr<_Yp, _Del>::pointer>
1447 using _UniqCompatible = __enable_if_t<__and_<
1448 __sp_compatible_with<_Yp*, _Tp*>,
1449 is_convertible<_Ptr, element_type*>,
1450 is_move_constructible<_Del>
1454 template<
typename _Yp,
typename _Del>
1455 using _UniqAssignable = _UniqCompatible<_Yp, _Del, __shared_ptr&>;
1459#if __cplusplus > 201402L
1460 using weak_type = __weak_ptr<_Tp, _Lp>;
1463 constexpr __shared_ptr() noexcept
1464 : _M_ptr(0), _M_refcount()
1467 template<
typename _Yp,
typename = _SafeConv<_Yp>>
1469 __shared_ptr(_Yp* __p)
1470 : _M_ptr(__p), _M_refcount(__p, typename is_array<_Tp>::type())
1472 static_assert( !is_void<_Yp>::value,
"incomplete type" );
1473 static_assert(
sizeof(_Yp) > 0,
"incomplete type" );
1474 _M_enable_shared_from_this_with(__p);
1477 template<
typename _Yp,
typename _Deleter,
typename = _SafeConv<_Yp>>
1478 __shared_ptr(_Yp* __p, _Deleter __d)
1479 : _M_ptr(__p), _M_refcount(__p,
std::
move(__d))
1481 static_assert(__is_invocable<_Deleter&, _Yp*&>::value,
1482 "deleter expression d(p) is well-formed");
1483 _M_enable_shared_from_this_with(__p);
1486 template<
typename _Yp,
typename _Deleter,
typename _Alloc,
1487 typename = _SafeConv<_Yp>>
1488 __shared_ptr(_Yp* __p, _Deleter __d, _Alloc __a)
1491 static_assert(__is_invocable<_Deleter&, _Yp*&>::value,
1492 "deleter expression d(p) is well-formed");
1493 _M_enable_shared_from_this_with(__p);
1496 template<
typename _Deleter>
1497 __shared_ptr(nullptr_t __p, _Deleter __d)
1498 : _M_ptr(0), _M_refcount(__p,
std::
move(__d))
1501 template<
typename _Deleter,
typename _Alloc>
1502 __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
1507 template<
typename _Yp>
1508 __shared_ptr(
const __shared_ptr<_Yp, _Lp>& __r,
1509 element_type* __p) noexcept
1510 : _M_ptr(__p), _M_refcount(__r._M_refcount)
1514 template<
typename _Yp>
1515 __shared_ptr(__shared_ptr<_Yp, _Lp>&& __r,
1516 element_type* __p) noexcept
1517 : _M_ptr(__p), _M_refcount()
1519 _M_refcount._M_swap(__r._M_refcount);
1520 __r._M_ptr =
nullptr;
1523 __shared_ptr(
const __shared_ptr&)
noexcept =
default;
1524 __shared_ptr& operator=(
const __shared_ptr&)
noexcept =
default;
1525 ~__shared_ptr() =
default;
1527 template<
typename _Yp,
typename = _Compatible<_Yp>>
1528 __shared_ptr(
const __shared_ptr<_Yp, _Lp>& __r) noexcept
1529 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
1532 __shared_ptr(__shared_ptr&& __r) noexcept
1533 : _M_ptr(__r._M_ptr), _M_refcount()
1535 _M_refcount._M_swap(__r._M_refcount);
1536 __r._M_ptr =
nullptr;
1539 template<
typename _Yp,
typename = _Compatible<_Yp>>
1540 __shared_ptr(__shared_ptr<_Yp, _Lp>&& __r) noexcept
1541 : _M_ptr(__r._M_ptr), _M_refcount()
1543 _M_refcount._M_swap(__r._M_refcount);
1544 __r._M_ptr =
nullptr;
1547 template<
typename _Yp,
typename = _Compatible<_Yp>>
1548 explicit __shared_ptr(
const __weak_ptr<_Yp, _Lp>& __r)
1549 : _M_refcount(__r._M_refcount)
1553 _M_ptr = __r._M_ptr;
1557 template<
typename _Yp,
typename _Del,
1558 typename = _UniqCompatible<_Yp, _Del>>
1559 __shared_ptr(unique_ptr<_Yp, _Del>&& __r)
1560 : _M_ptr(__r.get()), _M_refcount()
1562 auto __raw = __to_address(__r.get());
1563 _M_refcount = __shared_count<_Lp>(
std::move(__r));
1564 _M_enable_shared_from_this_with(__raw);
1567#if __cplusplus <= 201402L && _GLIBCXX_USE_DEPRECATED
1570 template<
typename _Tp1,
typename _Del,
1571 typename enable_if<__and_<
1572 __not_<is_array<_Tp>>, is_array<_Tp1>,
1573 is_convertible<typename unique_ptr<_Tp1, _Del>::pointer, _Tp*>
1574 >::value,
bool>::type =
true>
1575 __shared_ptr(unique_ptr<_Tp1, _Del>&& __r, __sp_array_delete)
1576 : _M_ptr(__r.get()), _M_refcount()
1578 auto __raw = __to_address(__r.get());
1579 _M_refcount = __shared_count<_Lp>(
std::move(__r));
1580 _M_enable_shared_from_this_with(__raw);
1585#if _GLIBCXX_USE_DEPRECATED
1586#pragma GCC diagnostic push
1587#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1589 template<
typename _Yp,
typename = _Compatible<_Yp>>
1590 __shared_ptr(auto_ptr<_Yp>&& __r);
1591#pragma GCC diagnostic pop
1594 constexpr __shared_ptr(nullptr_t) noexcept : __shared_ptr() { }
1596 template<
typename _Yp>
1598 operator=(
const __shared_ptr<_Yp, _Lp>& __r)
noexcept
1600 _M_ptr = __r._M_ptr;
1601 _M_refcount = __r._M_refcount;
1605#if _GLIBCXX_USE_DEPRECATED
1606#pragma GCC diagnostic push
1607#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1608 template<
typename _Yp>
1610 operator=(auto_ptr<_Yp>&& __r)
1612 __shared_ptr(
std::move(__r)).swap(*
this);
1615#pragma GCC diagnostic pop
1619 operator=(__shared_ptr&& __r)
noexcept
1621 __shared_ptr(
std::move(__r)).swap(*
this);
1627 operator=(__shared_ptr<_Yp, _Lp>&& __r)
noexcept
1629 __shared_ptr(
std::move(__r)).swap(*
this);
1633 template<
typename _Yp,
typename _Del>
1634 _UniqAssignable<_Yp, _Del>
1635 operator=(unique_ptr<_Yp, _Del>&& __r)
1637 __shared_ptr(
std::move(__r)).swap(*
this);
1643 { __shared_ptr().swap(*
this); }
1645 template<
typename _Yp>
1650 __glibcxx_assert(__p ==
nullptr || __p != _M_ptr);
1651 __shared_ptr(__p).swap(*
this);
1654 template<
typename _Yp,
typename _Deleter>
1656 reset(_Yp* __p, _Deleter __d)
1657 { __shared_ptr(__p,
std::move(__d)).swap(*
this); }
1659 template<
typename _Yp,
typename _Deleter,
typename _Alloc>
1661 reset(_Yp* __p, _Deleter __d, _Alloc __a)
1666 get() const noexcept
1670 explicit operator bool() const noexcept
1671 {
return _M_ptr !=
nullptr; }
1675 unique() const noexcept
1676 {
return _M_refcount._M_unique(); }
1680 use_count() const noexcept
1681 {
return _M_refcount._M_get_use_count(); }
1685 swap(__shared_ptr<_Tp, _Lp>& __other)
noexcept
1687 std::swap(_M_ptr, __other._M_ptr);
1688 _M_refcount._M_swap(__other._M_refcount);
1698 template<
typename _Tp1>
1700 owner_before(__shared_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1701 {
return _M_refcount._M_less(__rhs._M_refcount); }
1703 template<
typename _Tp1>
1705 owner_before(__weak_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1706 {
return _M_refcount._M_less(__rhs._M_refcount); }
1711 template<
typename _Alloc,
typename... _Args>
1712 __shared_ptr(_Sp_alloc_shared_tag<_Alloc> __tag, _Args&&... __args)
1713 : _M_ptr(), _M_refcount(_M_ptr, __tag,
std::
forward<_Args>(__args)...)
1714 { _M_enable_shared_from_this_with(_M_ptr); }
1716 template<
typename _Tp1, _Lock_policy _Lp1,
typename _Alloc,
1718 friend __shared_ptr<_Tp1, _Lp1>
1719 __allocate_shared(
const _Alloc& __a, _Args&&... __args);
1721#if __glibcxx_shared_ptr_arrays >= 201707L
1723 template<
typename _Alloc,
typename _Init = const remove_extent_t<_Tp>*>
1724 __shared_ptr(
const _Sp_counted_array_base<_Alloc>& __a,
1725 _Init __init =
nullptr)
1726 : _M_ptr(), _M_refcount(_M_ptr, __a, __init)
1732 __shared_ptr(
const __weak_ptr<_Tp, _Lp>& __r, std::nothrow_t) noexcept
1733 : _M_refcount(__r._M_refcount, std::nothrow)
1735 _M_ptr = _M_refcount._M_get_use_count() ? __r._M_ptr :
nullptr;
1738 friend class __weak_ptr<_Tp, _Lp>;
1742 template<
typename _Yp>
1743 using __esft_base_t =
decltype(__enable_shared_from_this_base(
1745 std::declval<_Yp*>()));
1748 template<
typename _Yp,
typename =
void>
1749 struct __has_esft_base
1752 template<
typename _Yp>
1753 struct __has_esft_base<_Yp, __void_t<__esft_base_t<_Yp>>>
1754 : __not_<is_array<_Tp>> { };
1756 template<typename _Yp, typename _Yp2 = typename remove_cv<_Yp>::type>
1757 typename enable_if<__has_esft_base<_Yp2>::value>::type
1758 _M_enable_shared_from_this_with(_Yp* __p)
noexcept
1760 if (
auto __base = __enable_shared_from_this_base(_M_refcount, __p))
1761 __base->_M_weak_assign(
const_cast<_Yp2*
>(__p), _M_refcount);
1764 template<typename _Yp, typename _Yp2 = typename remove_cv<_Yp>::type>
1765 typename enable_if<!__has_esft_base<_Yp2>::value>::type
1766 _M_enable_shared_from_this_with(_Yp*)
noexcept
1771 {
return _M_refcount._M_get_deleter(__ti); }
1773 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __shared_ptr;
1774 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __weak_ptr;
1776 template<
typename _Del,
typename _Tp1, _Lock_policy _Lp1>
1777 friend _Del* get_deleter(
const __shared_ptr<_Tp1, _Lp1>&)
noexcept;
1779 template<
typename _Del,
typename _Tp1>
1780 friend _Del* get_deleter(
const shared_ptr<_Tp1>&)
noexcept;
1782#ifdef __glibcxx_atomic_shared_ptr
1783 friend _Sp_atomic<shared_ptr<_Tp>>;
1785#ifdef __glibcxx_out_ptr
1786 template<
typename,
typename,
typename...>
friend class out_ptr_t;
1789 element_type* _M_ptr;
1790 __shared_count<_Lp> _M_refcount;
1795 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1797 operator==(
const __shared_ptr<_Tp1, _Lp>& __a,
1798 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1799 {
return __a.get() == __b.get(); }
1801 template<
typename _Tp, _Lock_policy _Lp>
1803 operator==(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1806#ifdef __cpp_lib_three_way_comparison
1807 template<
typename _Tp,
typename _Up, _Lock_policy _Lp>
1808 inline strong_ordering
1809 operator<=>(
const __shared_ptr<_Tp, _Lp>& __a,
1810 const __shared_ptr<_Up, _Lp>& __b)
noexcept
1811 {
return compare_three_way()(__a.get(), __b.get()); }
1813 template<
typename _Tp, _Lock_policy _Lp>
1814 inline strong_ordering
1815 operator<=>(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1817 using pointer =
typename __shared_ptr<_Tp, _Lp>::element_type*;
1818 return compare_three_way()(__a.get(),
static_cast<pointer
>(
nullptr));
1821 template<
typename _Tp, _Lock_policy _Lp>
1823 operator==(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1826 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1828 operator!=(
const __shared_ptr<_Tp1, _Lp>& __a,
1829 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1830 {
return __a.get() != __b.get(); }
1832 template<
typename _Tp, _Lock_policy _Lp>
1834 operator!=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1835 {
return (
bool)__a; }
1837 template<
typename _Tp, _Lock_policy _Lp>
1839 operator!=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1840 {
return (
bool)__a; }
1842 template<
typename _Tp,
typename _Up, _Lock_policy _Lp>
1844 operator<(
const __shared_ptr<_Tp, _Lp>& __a,
1845 const __shared_ptr<_Up, _Lp>& __b)
noexcept
1847 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1848 using _Up_elt =
typename __shared_ptr<_Up, _Lp>::element_type;
1849 using _Vp =
typename common_type<_Tp_elt*, _Up_elt*>::type;
1850 return less<_Vp>()(__a.get(), __b.get());
1853 template<
typename _Tp, _Lock_policy _Lp>
1855 operator<(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1857 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1858 return less<_Tp_elt*>()(__a.get(),
nullptr);
1861 template<
typename _Tp, _Lock_policy _Lp>
1863 operator<(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1865 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1866 return less<_Tp_elt*>()(
nullptr, __a.get());
1869 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1871 operator<=(
const __shared_ptr<_Tp1, _Lp>& __a,
1872 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1873 {
return !(__b < __a); }
1875 template<
typename _Tp, _Lock_policy _Lp>
1877 operator<=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1878 {
return !(
nullptr < __a); }
1880 template<
typename _Tp, _Lock_policy _Lp>
1882 operator<=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1883 {
return !(__a <
nullptr); }
1885 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1887 operator>(
const __shared_ptr<_Tp1, _Lp>& __a,
1888 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1889 {
return (__b < __a); }
1891 template<
typename _Tp, _Lock_policy _Lp>
1893 operator>(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1894 {
return nullptr < __a; }
1896 template<
typename _Tp, _Lock_policy _Lp>
1898 operator>(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1899 {
return __a <
nullptr; }
1901 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1903 operator>=(
const __shared_ptr<_Tp1, _Lp>& __a,
1904 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1905 {
return !(__a < __b); }
1907 template<
typename _Tp, _Lock_policy _Lp>
1909 operator>=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1910 {
return !(__a <
nullptr); }
1912 template<
typename _Tp, _Lock_policy _Lp>
1914 operator>=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1915 {
return !(
nullptr < __a); }
1919 template<
typename _Tp, _Lock_policy _Lp>
1921 swap(__shared_ptr<_Tp, _Lp>& __a, __shared_ptr<_Tp, _Lp>& __b)
noexcept
1931 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1932 inline __shared_ptr<_Tp, _Lp>
1935 using _Sp = __shared_ptr<_Tp, _Lp>;
1936 return _Sp(__r,
static_cast<typename _Sp::element_type*
>(__r.get()));
1944 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1945 inline __shared_ptr<_Tp, _Lp>
1948 using _Sp = __shared_ptr<_Tp, _Lp>;
1949 return _Sp(__r,
const_cast<typename _Sp::element_type*
>(__r.get()));
1957 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1958 inline __shared_ptr<_Tp, _Lp>
1961 using _Sp = __shared_ptr<_Tp, _Lp>;
1962 if (
auto* __p =
dynamic_cast<typename _Sp::element_type*
>(__r.get()))
1963 return _Sp(__r, __p);
1967#if __cplusplus > 201402L
1968 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1969 inline __shared_ptr<_Tp, _Lp>
1970 reinterpret_pointer_cast(
const __shared_ptr<_Tp1, _Lp>& __r)
noexcept
1972 using _Sp = __shared_ptr<_Tp, _Lp>;
1973 return _Sp(__r,
reinterpret_cast<typename _Sp::element_type*
>(__r.get()));
1977 template<
typename _Tp, _Lock_policy _Lp>
1980 template<
typename _Yp,
typename _Res =
void>
1981 using _Compatible =
typename
1982 enable_if<__sp_compatible_with<_Yp*, _Tp*>::value, _Res>::type;
1985 template<
typename _Yp>
1986 using _Assignable = _Compatible<_Yp, __weak_ptr&>;
1989 using element_type =
typename remove_extent<_Tp>::type;
1991 constexpr __weak_ptr() noexcept
1992 : _M_ptr(
nullptr), _M_refcount()
1995 __weak_ptr(
const __weak_ptr&)
noexcept =
default;
1997 ~__weak_ptr() =
default;
2013 template<
typename _Yp,
typename = _Compatible<_Yp>>
2014 __weak_ptr(
const __weak_ptr<_Yp, _Lp>& __r) noexcept
2015 : _M_refcount(__r._M_refcount)
2016 { _M_ptr = __r.lock().get(); }
2018 template<
typename _Yp,
typename = _Compatible<_Yp>>
2019 __weak_ptr(
const __shared_ptr<_Yp, _Lp>& __r) noexcept
2020 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
2023 __weak_ptr(__weak_ptr&& __r) noexcept
2024 : _M_ptr(__r._M_ptr), _M_refcount(
std::move(__r._M_refcount))
2025 { __r._M_ptr =
nullptr; }
2027 template<
typename _Yp,
typename = _Compatible<_Yp>>
2028 __weak_ptr(__weak_ptr<_Yp, _Lp>&& __r) noexcept
2029 : _M_ptr(__r.lock().get()), _M_refcount(
std::move(__r._M_refcount))
2030 { __r._M_ptr =
nullptr; }
2033 operator=(
const __weak_ptr& __r)
noexcept =
default;
2035 template<
typename _Yp>
2037 operator=(
const __weak_ptr<_Yp, _Lp>& __r)
noexcept
2039 _M_ptr = __r.lock().get();
2040 _M_refcount = __r._M_refcount;
2044 template<
typename _Yp>
2046 operator=(
const __shared_ptr<_Yp, _Lp>& __r)
noexcept
2048 _M_ptr = __r._M_ptr;
2049 _M_refcount = __r._M_refcount;
2054 operator=(__weak_ptr&& __r)
noexcept
2060 template<
typename _Yp>
2062 operator=(__weak_ptr<_Yp, _Lp>&& __r)
noexcept
2064 _M_ptr = __r.lock().get();
2065 _M_refcount =
std::move(__r._M_refcount);
2066 __r._M_ptr =
nullptr;
2070 __shared_ptr<_Tp, _Lp>
2071 lock() const noexcept
2072 {
return __shared_ptr<element_type, _Lp>(*
this, std::nothrow); }
2075 use_count() const noexcept
2076 {
return _M_refcount._M_get_use_count(); }
2079 expired() const noexcept
2080 {
return _M_refcount._M_get_use_count() == 0; }
2082 template<
typename _Tp1>
2084 owner_before(
const __shared_ptr<_Tp1, _Lp>& __rhs)
const noexcept
2085 {
return _M_refcount._M_less(__rhs._M_refcount); }
2087 template<
typename _Tp1>
2089 owner_before(
const __weak_ptr<_Tp1, _Lp>& __rhs)
const noexcept
2090 {
return _M_refcount._M_less(__rhs._M_refcount); }
2094 { __weak_ptr().swap(*
this); }
2097 swap(__weak_ptr& __s)
noexcept
2099 std::swap(_M_ptr, __s._M_ptr);
2100 _M_refcount._M_swap(__s._M_refcount);
2106 _M_assign(_Tp* __ptr,
const __shared_count<_Lp>& __refcount)
noexcept
2108 if (use_count() == 0)
2111 _M_refcount = __refcount;
2115 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __shared_ptr;
2116 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __weak_ptr;
2117 friend class __enable_shared_from_this<_Tp, _Lp>;
2118 friend class enable_shared_from_this<_Tp>;
2119#ifdef __glibcxx_atomic_shared_ptr
2120 friend _Sp_atomic<weak_ptr<_Tp>>;
2123 element_type* _M_ptr;
2124 __weak_count<_Lp> _M_refcount;
2128 template<
typename _Tp, _Lock_policy _Lp>
2130 swap(__weak_ptr<_Tp, _Lp>& __a, __weak_ptr<_Tp, _Lp>& __b)
noexcept
2133#pragma GCC diagnostic push
2134#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
2135 template<
typename _Tp,
typename _Tp1>
2136 struct _Sp_owner_less :
public binary_function<_Tp, _Tp, bool>
2139 operator()(
const _Tp& __lhs,
const _Tp& __rhs)
const noexcept
2140 {
return __lhs.owner_before(__rhs); }
2143 operator()(
const _Tp& __lhs,
const _Tp1& __rhs)
const noexcept
2144 {
return __lhs.owner_before(__rhs); }
2147 operator()(
const _Tp1& __lhs,
const _Tp& __rhs)
const noexcept
2148 {
return __lhs.owner_before(__rhs); }
2150#pragma GCC diagnostic pop
2153 struct _Sp_owner_less<void, void>
2155 template<
typename _Tp,
typename _Up>
2157 operator()(
const _Tp& __lhs,
const _Up& __rhs)
const noexcept
2158 ->
decltype(__lhs.owner_before(__rhs))
2159 {
return __lhs.owner_before(__rhs); }
2161 using is_transparent = void;
2164 template<
typename _Tp, _Lock_policy _Lp>
2165 struct owner_less<__shared_ptr<_Tp, _Lp>>
2166 :
public _Sp_owner_less<__shared_ptr<_Tp, _Lp>, __weak_ptr<_Tp, _Lp>>
2169 template<
typename _Tp, _Lock_policy _Lp>
2170 struct owner_less<__weak_ptr<_Tp, _Lp>>
2171 :
public _Sp_owner_less<__weak_ptr<_Tp, _Lp>, __shared_ptr<_Tp, _Lp>>
2175 template<
typename _Tp, _Lock_policy _Lp>
2176 class __enable_shared_from_this
2179 constexpr __enable_shared_from_this() noexcept { }
2181 __enable_shared_from_this(
const __enable_shared_from_this&)
noexcept { }
2183 __enable_shared_from_this&
2184 operator=(
const __enable_shared_from_this&)
noexcept
2187 ~__enable_shared_from_this() { }
2190 __shared_ptr<_Tp, _Lp>
2192 {
return __shared_ptr<_Tp, _Lp>(this->_M_weak_this); }
2194 __shared_ptr<const _Tp, _Lp>
2195 shared_from_this()
const
2196 {
return __shared_ptr<const _Tp, _Lp>(this->_M_weak_this); }
2198#if __cplusplus > 201402L || !defined(__STRICT_ANSI__)
2199 __weak_ptr<_Tp, _Lp>
2200 weak_from_this() noexcept
2201 {
return this->_M_weak_this; }
2203 __weak_ptr<const _Tp, _Lp>
2204 weak_from_this() const noexcept
2205 {
return this->_M_weak_this; }
2209 template<
typename _Tp1>
2211 _M_weak_assign(_Tp1* __p,
const __shared_count<_Lp>& __n)
const noexcept
2212 { _M_weak_this._M_assign(__p, __n); }
2214 friend const __enable_shared_from_this*
2215 __enable_shared_from_this_base(
const __shared_count<_Lp>&,
2216 const __enable_shared_from_this* __p)
2219 template<
typename, _Lock_policy>
2220 friend class __shared_ptr;
2222 mutable __weak_ptr<_Tp, _Lp> _M_weak_this;
2225 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy,
2226 typename _Alloc,
typename... _Args>
2227 inline __shared_ptr<_Tp, _Lp>
2228 __allocate_shared(
const _Alloc& __a, _Args&&... __args)
2230 static_assert(!is_array<_Tp>::value,
"make_shared<T[]> not supported");
2232 return __shared_ptr<_Tp, _Lp>(_Sp_alloc_shared_tag<_Alloc>{__a},
2233 std::forward<_Args>(__args)...);
2236 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy,
2238 inline __shared_ptr<_Tp, _Lp>
2239 __make_shared(_Args&&... __args)
2241 typedef typename std::remove_const<_Tp>::type _Tp_nc;
2243 std::forward<_Args>(__args)...);
2247 template<
typename _Tp, _Lock_policy _Lp>
2248 struct hash<__shared_ptr<_Tp, _Lp>>
2249 :
public __hash_base<size_t, __shared_ptr<_Tp, _Lp>>
2252 operator()(
const __shared_ptr<_Tp, _Lp>& __s)
const noexcept
2259_GLIBCXX_END_NAMESPACE_VERSION
constexpr bool operator<=(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr bool operator>=(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr bool operator<(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr bool operator>(const duration< _Rep1, _Period1 > &__lhs, const duration< _Rep2, _Period2 > &__rhs)
constexpr complex< _Tp > operator*(const complex< _Tp > &__x, const complex< _Tp > &__y)
Return new complex value x times y.
_ForwardIterator uninitialized_default_construct_n(_ForwardIterator __first, _Size __count)
Default-initializes objects in the range [first,first+count).
void * align(size_t __align, size_t __size, void *&__ptr, size_t &__space) noexcept
Fit aligned storage in buffer.
constexpr _Tp * to_address(_Tp *__ptr) noexcept
Obtain address referenced by a pointer to an object.
__bool_constant< true > true_type
The type used as a compile-time boolean with true value.
__bool_constant< false > false_type
The type used as a compile-time boolean with false value.
auto declval() noexcept -> decltype(__declval< _Tp >(0))
constexpr std::remove_reference< _Tp >::type && move(_Tp &&__t) noexcept
Convert a value to an rvalue.
constexpr _Tp * __addressof(_Tp &__r) noexcept
Same as C++11 std::addressof.
constexpr _Tp && forward(typename std::remove_reference< _Tp >::type &__t) noexcept
Forward an lvalue.
void lock(_L1 &__l1, _L2 &__l2, _L3 &... __l3)
Generic lock.
ISO C++ entities toplevel namespace is std.
__shared_ptr< _Tp, _Lp > dynamic_pointer_cast(const __shared_ptr< _Tp1, _Lp > &__r) noexcept
dynamic_pointer_cast
__shared_ptr< _Tp, _Lp > static_pointer_cast(const __shared_ptr< _Tp1, _Lp > &__r) noexcept
static_pointer_cast
__shared_ptr< _Tp, _Lp > const_pointer_cast(const __shared_ptr< _Tp1, _Lp > &__r) noexcept
const_pointer_cast
constexpr _Iterator __base(_Iterator __it)
Primary class template hash.
static constexpr void construct(_Alloc &__a, _Tp *__p, _Args &&... __args) noexcept(_S_nothrow_construct< _Tp, _Args... >())
Construct an object of type _Tp
static constexpr void destroy(_Alloc &__a, _Tp *__p) noexcept(_S_nothrow_destroy< _Tp >())
Destroy an object of type _Tp.
The standard allocator, as per C++03 [20.4.1].
Base class for all library exceptions.
A simple smart pointer providing strict ownership semantics.
Exception possibly thrown by shared_ptr.
virtual char const * what() const noexcept
One of the comparison functors.
A move-only smart pointer that manages unique ownership of a resource.