49#ifndef _SHARED_PTR_BASE_H
50#define _SHARED_PTR_BASE_H 1
63#if __cplusplus >= 202002L
69namespace std _GLIBCXX_VISIBILITY(default)
71_GLIBCXX_BEGIN_NAMESPACE_VERSION
73#if _GLIBCXX_USE_DEPRECATED
74#pragma GCC diagnostic push
75#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
77#pragma GCC diagnostic pop
87 virtual char const*
what() const noexcept;
94 __throw_bad_weak_ptr()
97 using __gnu_cxx::_Lock_policy;
98 using __gnu_cxx::__default_lock_policy;
99 using __gnu_cxx::_S_single;
100 using __gnu_cxx::_S_mutex;
101 using __gnu_cxx::_S_atomic;
104 template<_Lock_policy _Lp>
109 enum { _S_need_barriers = 0 };
113 class _Mutex_base<_S_mutex>
114 :
public __gnu_cxx::__mutex
120 enum { _S_need_barriers = 1 };
123 template<_Lock_policy _Lp = __default_lock_policy>
124 class _Sp_counted_base
125 :
public _Mutex_base<_Lp>
128 _Sp_counted_base() noexcept
129 : _M_use_count(1), _M_weak_count(1) { }
132 ~_Sp_counted_base() noexcept
138 _M_dispose() noexcept = 0;
142 _M_destroy() noexcept
146 _M_get_deleter(
const std::type_info&)
noexcept = 0;
151 { _S_chk(__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, 1)); }
157 if (!_M_add_ref_lock_nothrow())
158 __throw_bad_weak_ptr();
163 _M_add_ref_lock_nothrow() noexcept;
167 _M_release() noexcept;
171 _M_release_last_use() noexcept
173 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_use_count);
179 if (_Mutex_base<_Lp>::_S_need_barriers)
181 __atomic_thread_fence (__ATOMIC_ACQ_REL);
185 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_weak_count);
186 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_weak_count,
189 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_weak_count);
195 __attribute__((__noinline__))
197 _M_release_last_use_cold() noexcept
198 { _M_release_last_use(); }
202 _M_weak_add_ref() noexcept
206 constexpr _Atomic_word __max = -1;
207 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_weak_count, 1) == __max)
208 [[__unlikely__]] __builtin_trap();
213 _M_weak_release() noexcept
216 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_weak_count);
217 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_weak_count, -1) == 1)
219 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_weak_count);
220 if (_Mutex_base<_Lp>::_S_need_barriers)
224 __atomic_thread_fence (__ATOMIC_ACQ_REL);
231 _M_get_use_count() const noexcept
235 auto __count = __atomic_load_n(&_M_use_count, __ATOMIC_RELAXED);
240 return static_cast<_Unsigned_count_type
>(__count);
244 _Sp_counted_base(_Sp_counted_base
const&) =
delete;
245 _Sp_counted_base& operator=(_Sp_counted_base
const&) =
delete;
247#pragma GCC diagnostic push
248#pragma GCC diagnostic ignored "-Wignored-attributes"
250 using _Unsigned_count_type = make_unsigned<_Atomic_word>::type;
251#pragma GCC diagnostic pop
256 _S_chk(_Atomic_word __count)
258 constexpr _Atomic_word __max_atomic_word = _Unsigned_count_type(-1)/2;
276 constexpr _Atomic_word __max
277 =
sizeof(long) >
sizeof(_Atomic_word) ? -1 : __max_atomic_word;
279 if (__count == __max) [[__unlikely__]]
283 _Atomic_word _M_use_count;
284 _Atomic_word _M_weak_count;
292 _Sp_counted_base<_S_single>::_M_add_ref_copy()
294 _S_chk(_M_use_count);
295 __gnu_cxx::__atomic_add_single(&_M_use_count, 1);
300 _Sp_counted_base<_S_single>::_M_weak_release() noexcept
302 if (__gnu_cxx::__exchange_and_add_single(&_M_weak_count, -1) == 1)
308 _Sp_counted_base<_S_single>::_M_get_use_count() const noexcept
310 return static_cast<_Unsigned_count_type
>(_M_use_count);
316 _Sp_counted_base<_S_single>::
317 _M_add_ref_lock_nothrow() noexcept
319 if (_M_use_count == 0)
327 _Sp_counted_base<_S_mutex>::
328 _M_add_ref_lock_nothrow() noexcept
330 __gnu_cxx::__scoped_lock sentry(*
this);
331 if (
auto __c = __gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, 1))
348 _Sp_counted_base<_S_atomic>::
349 _M_add_ref_lock_nothrow() noexcept
352 _Atomic_word __count = _M_get_use_count();
360 while (!__atomic_compare_exchange_n(&_M_use_count, &__count, __count + 1,
361 true, __ATOMIC_ACQ_REL,
369 _Sp_counted_base<_S_single>::_M_release() noexcept
371 if (__gnu_cxx::__exchange_and_add_single(&_M_use_count, -1) == 1)
380 _Sp_counted_base<_S_mutex>::_M_release() noexcept
383 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_use_count);
384 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, -1) == 1)
386 _M_release_last_use();
392 _Sp_counted_base<_S_atomic>::_M_release() noexcept
394#pragma GCC diagnostic push
395#pragma GCC diagnostic ignored "-Wc++17-extensions"
396 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_use_count);
398 constexpr bool __lock_free
399 = __atomic_always_lock_free(
sizeof(
long long), 0)
400 && __atomic_always_lock_free(
sizeof(_Atomic_word), 0);
401 constexpr bool __double_word
402 =
sizeof(
long long) == 2 *
sizeof(_Atomic_word);
405 constexpr bool __aligned = __alignof(
long long) <=
alignof(
void*);
406 if constexpr (__lock_free && __double_word && __aligned)
408 constexpr int __wordbits = __CHAR_BIT__ *
sizeof(_Atomic_word);
409 constexpr int __shiftbits = __double_word ? __wordbits : 0;
410 constexpr long long __unique_ref = 1LL + (1LL << __shiftbits);
411 auto __both_counts =
reinterpret_cast<long long*
>(&_M_use_count);
413 _GLIBCXX_SYNCHRONIZATION_HAPPENS_BEFORE(&_M_weak_count);
414 if (__atomic_load_n(__both_counts, __ATOMIC_ACQUIRE) == __unique_ref)
420 _M_weak_count = _M_use_count = 0;
421 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_use_count);
422 _GLIBCXX_SYNCHRONIZATION_HAPPENS_AFTER(&_M_weak_count);
427 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, -1) == 1)
430 _M_release_last_use_cold();
436 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_use_count, -1) == 1)
438 _M_release_last_use();
440#pragma GCC diagnostic pop
444 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy>
447 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy>
450 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy>
451 class __enable_shared_from_this;
453 template<
typename _Tp>
456 template<
typename _Tp>
459 template<
typename _Tp>
462 template<
typename _Tp>
463 class enable_shared_from_this;
465 template<_Lock_policy _Lp = __default_lock_policy>
468 template<_Lock_policy _Lp = __default_lock_policy>
469 class __shared_count;
471#ifdef __glibcxx_atomic_shared_ptr
477 template<
typename _Ptr, _Lock_policy _Lp>
478 class _Sp_counted_ptr final :
public _Sp_counted_base<_Lp>
482 _Sp_counted_ptr(_Ptr __p) noexcept
486 _M_dispose() noexcept
490 _M_destroy() noexcept
494 _M_get_deleter(
const std::type_info&)
noexcept
497 _Sp_counted_ptr(
const _Sp_counted_ptr&) =
delete;
498 _Sp_counted_ptr& operator=(
const _Sp_counted_ptr&) =
delete;
506 _Sp_counted_ptr<nullptr_t, _S_single>::_M_dispose() noexcept { }
510 _Sp_counted_ptr<nullptr_t, _S_mutex>::_M_dispose() noexcept { }
514 _Sp_counted_ptr<nullptr_t, _S_atomic>::_M_dispose() noexcept { }
521 template<
int _Nm,
typename _Tp,
522 bool __use_ebo = !__is_final(_Tp) && __is_empty(_Tp)>
523 struct _Sp_ebo_helper;
526 template<
int _Nm,
typename _Tp>
527 struct _Sp_ebo_helper<_Nm, _Tp, true> :
private _Tp
529 explicit _Sp_ebo_helper(
const _Tp& __tp) : _Tp(__tp) { }
530 explicit _Sp_ebo_helper(_Tp&& __tp) : _Tp(
std::move(__tp)) { }
533 _S_get(_Sp_ebo_helper& __eboh) {
return static_cast<_Tp&
>(__eboh); }
537 template<
int _Nm,
typename _Tp>
538 struct _Sp_ebo_helper<_Nm, _Tp, false>
540 explicit _Sp_ebo_helper(
const _Tp& __tp) : _M_tp(__tp) { }
541 explicit _Sp_ebo_helper(_Tp&& __tp) : _M_tp(
std::move(__tp)) { }
544 _S_get(_Sp_ebo_helper& __eboh)
545 {
return __eboh._M_tp; }
552 template<
typename _Ptr,
typename _Deleter,
typename _Alloc, _Lock_policy _Lp>
553 class _Sp_counted_deleter final :
public _Sp_counted_base<_Lp>
555 class _Impl : _Sp_ebo_helper<0, _Deleter>, _Sp_ebo_helper<1, _Alloc>
557 typedef _Sp_ebo_helper<0, _Deleter> _Del_base;
558 typedef _Sp_ebo_helper<1, _Alloc> _Alloc_base;
561 _Impl(_Ptr __p, _Deleter __d,
const _Alloc& __a) noexcept
562 : _Del_base(
std::move(__d)), _Alloc_base(__a), _M_ptr(__p)
565 _Deleter& _M_del() noexcept {
return _Del_base::_S_get(*
this); }
566 _Alloc& _M_alloc() noexcept {
return _Alloc_base::_S_get(*
this); }
572 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_deleter>;
575 _Sp_counted_deleter(_Ptr __p, _Deleter __d) noexcept
576 : _M_impl(__p,
std::move(__d), _Alloc()) { }
579 _Sp_counted_deleter(_Ptr __p, _Deleter __d,
const _Alloc& __a) noexcept
582 ~_Sp_counted_deleter() noexcept { }
585 _M_dispose() noexcept
586 { _M_impl._M_del()(_M_impl._M_ptr); }
589 _M_destroy() noexcept
591 __allocator_type __a(_M_impl._M_alloc());
592 __allocated_ptr<__allocator_type> __guard_ptr{ __a,
this };
593 this->~_Sp_counted_deleter();
597 _M_get_deleter(
const type_info& __ti [[__gnu__::__unused__]])
noexcept
602 return __ti ==
typeid(_Deleter)
611#ifdef __glibcxx_out_ptr
612 template<
typename,
typename,
typename...>
friend class out_ptr_t;
619 struct _Sp_make_shared_tag
622 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
623 friend class _Sp_counted_ptr_inplace;
625 static const type_info&
626 _S_ti() noexcept _GLIBCXX_VISIBILITY(default)
628 alignas(type_info)
static constexpr char __tag[
sizeof(type_info)] = { };
629 return reinterpret_cast<const type_info&
>(__tag);
632 static bool _S_eq(
const type_info&)
noexcept;
635 template<
typename _Alloc>
636 struct _Sp_alloc_shared_tag
641 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
642 class _Sp_counted_ptr_inplace final :
public _Sp_counted_base<_Lp>
644 class _Impl : _Sp_ebo_helper<0, _Alloc>
646 typedef _Sp_ebo_helper<0, _Alloc> _A_base;
649 explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { }
651 _Alloc& _M_alloc() noexcept {
return _A_base::_S_get(*
this); }
653 __gnu_cxx::__aligned_buffer<__remove_cv_t<_Tp>> _M_storage;
657 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_ptr_inplace>;
660 template<
typename... _Args>
661 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args)
670 ~_Sp_counted_ptr_inplace() noexcept { }
673 _M_dispose() noexcept
680 _M_destroy() noexcept
682 __allocator_type __a(_M_impl._M_alloc());
683 __allocated_ptr<__allocator_type> __guard_ptr{ __a,
this };
684 this->~_Sp_counted_ptr_inplace();
688 friend class __shared_count<_Lp>;
693 _M_get_deleter(
const std::type_info& __ti)
noexcept override
699 if (&__ti == &_Sp_make_shared_tag::_S_ti()
702 __ti ==
typeid(_Sp_make_shared_tag)
704 _Sp_make_shared_tag::_S_eq(__ti)
712 _M_ptr() noexcept {
return _M_impl._M_storage._M_ptr(); }
717#ifdef __glibcxx_smart_ptr_for_overwrite
718 struct _Sp_overwrite_tag { };
724 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
725 requires is_same_v<typename _Alloc::value_type, _Sp_overwrite_tag>
726 class _Sp_counted_ptr_inplace<_Tp, _Alloc, _Lp> final
728 template<typename _Tp, template<typename> class _Alloc, _Lock_policy _Lp>
729 class _Sp_counted_ptr_inplace<_Tp, _Alloc<_Sp_overwrite_tag>, _Lp> final
731 :
public _Sp_counted_base<_Lp>
733 [[no_unique_address]] _Alloc _M_alloc;
736 remove_cv_t<_Tp> _M_obj;
740 friend class __shared_count<_Lp>;
745 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_ptr_inplace>;
747 _Sp_counted_ptr_inplace(
const _Alloc& __a)
750 ::new((
void*)_M_ptr()) _Tp;
753 ~_Sp_counted_ptr_inplace() noexcept { }
756 _M_dispose() noexcept
763 _M_destroy() noexcept
765 using pointer =
typename allocator_traits<__allocator_type>::pointer;
766 __allocator_type __a(_M_alloc);
767 auto __p = pointer_traits<pointer>::pointer_to(*
this);
768 __allocated_ptr<__allocator_type> __guard_ptr{ __a, __p };
769 this->~_Sp_counted_ptr_inplace();
773 _M_get_deleter(
const std::type_info&)
noexcept override
778#if __glibcxx_shared_ptr_arrays >= 201707L
779 struct _Sp_overwrite_tag;
782 template<
typename _Alloc>
783 struct _Sp_counted_array_base
785 [[no_unique_address]] _Alloc _M_alloc{};
787 bool _M_overwrite =
false;
789 typename allocator_traits<_Alloc>::pointer
790 _M_alloc_array(
size_t __tail)
792 return allocator_traits<_Alloc>::allocate(_M_alloc, _M_n + __tail);
796 _M_dealloc_array(
typename allocator_traits<_Alloc>::pointer __p,
799 allocator_traits<_Alloc>::deallocate(_M_alloc, __p, _M_n + __tail);
803 template<
typename _Init>
805 _M_init(
typename allocator_traits<_Alloc>::value_type* __p,
808 using _Tp = remove_pointer_t<_Init>;
809 using _Up =
typename allocator_traits<_Alloc>::value_type;
811 if constexpr (is_same_v<_Init, _Sp_overwrite_tag>)
816 else if (__init ==
nullptr)
817 std::__uninitialized_default_n_a(__p, _M_n, _M_alloc);
818 else if constexpr (!is_array_v<_Tp>)
819 std::__uninitialized_fill_n_a(__p, _M_n, *__init, _M_alloc);
822#pragma GCC diagnostic push
823#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
826 using value_type = _Up;
827 using difference_type = ptrdiff_t;
828 using pointer =
const _Up*;
829 using reference =
const _Up&;
830 using iterator_category = forward_iterator_tag;
836 _Iter& operator++() { ++_M_pos;
return *
this; }
837 _Iter operator++(
int) {
auto __i(*
this); ++_M_pos;
return __i; }
839 reference
operator*()
const {
return _M_p[_M_pos % _M_len]; }
840 pointer operator->()
const {
return _M_p + (_M_pos % _M_len); }
842 bool operator==(
const _Iter& __i)
const
843 {
return _M_pos == __i._M_pos; }
845#pragma GCC diagnostic pop
847 _Iter __first{_S_first_elem(__init),
sizeof(_Tp) /
sizeof(_Up)};
848 _Iter __last = __first;
849 __last._M_pos = _M_n;
850 std::__uninitialized_copy_a(__first, __last, __p, _M_alloc);
857 _M_dispose_array(
typename allocator_traits<_Alloc>::value_type* __p)
860 std::destroy_n(__p, _M_n);
865 allocator_traits<_Alloc>::destroy(_M_alloc, __p + __n);
870 template<
typename _Tp>
872 _S_first_elem(_Tp* __p) {
return __p; }
874 template<
typename _Tp,
size_t _Nm>
876 _S_first_elem(_Tp (*__p)[_Nm]) {
return _S_first_elem(*__p); }
881 template<
typename _Alloc, _Lock_policy _Lp>
882 class _Sp_counted_array final
883 :
public _Sp_counted_base<_Lp>, _Sp_counted_array_base<_Alloc>
885 using pointer =
typename allocator_traits<_Alloc>::pointer;
887 pointer _M_alloc_ptr;
891 friend class __shared_count<_Lp>;
894 _Sp_counted_array(
const _Sp_counted_array_base<_Alloc>& __a,
895 pointer __p) noexcept
896 : _Sp_counted_array_base<_Alloc>(__a), _M_alloc_ptr(__p)
899 ~_Sp_counted_array() =
default;
902 _M_dispose() noexcept
905 this->_M_dispose_array(_M_ptr());
910 _M_destroy() noexcept
912 _Sp_counted_array_base<_Alloc> __a = *
this;
913 pointer __p = _M_alloc_ptr;
914 this->~_Sp_counted_array();
915 __a._M_dealloc_array(__p, _S_tail());
920 static constexpr size_t
924 using _Tp =
typename allocator_traits<_Alloc>::value_type;
927 size_t __bytes =
sizeof(_Sp_counted_array);
930 if constexpr (
alignof(_Tp) <
alignof(_Sp_counted_array))
931 __bytes +=
alignof(_Sp_counted_array) -
alignof(_Tp);
933 return (__bytes +
sizeof(_Tp) - 1) /
sizeof(_Tp);
937 _M_get_deleter(
const std::type_info&)
noexcept override
943 struct __sp_array_delete
945 template<
typename _Yp>
946 void operator()(_Yp* __p)
const {
delete[] __p; }
949 template<_Lock_policy _Lp>
953 template<
typename _Tp>
954 struct __not_alloc_shared_tag {
using type = void; };
956 template<
typename _Tp>
957 struct __not_alloc_shared_tag<_Sp_alloc_shared_tag<_Tp>> { };
959#if __glibcxx_shared_ptr_arrays >= 201707L
960 template<
typename _Alloc>
961 struct __not_alloc_shared_tag<_Sp_counted_array_base<_Alloc>> { };
965 constexpr __shared_count() noexcept : _M_pi(0)
968 template<
typename _Ptr>
970 __shared_count(_Ptr __p) : _M_pi(0)
974 _M_pi =
new _Sp_counted_ptr<_Ptr, _Lp>(__p);
979 __throw_exception_again;
983 template<
typename _Ptr>
984 __shared_count(_Ptr __p, false_type)
985 : __shared_count(__p)
988 template<
typename _Ptr>
989 __shared_count(_Ptr __p, true_type)
990 : __shared_count(__p, __sp_array_delete{}, allocator<void>())
993 template<
typename _Ptr,
typename _Deleter,
994 typename =
typename __not_alloc_shared_tag<_Deleter>::type>
995 __shared_count(_Ptr __p, _Deleter __d)
996 : __shared_count(__p, std::
move(__d), allocator<void>())
999 template<
typename _Ptr,
typename _Deleter,
typename _Alloc,
1000 typename =
typename __not_alloc_shared_tag<_Deleter>::type>
1001 __shared_count(_Ptr __p, _Deleter __d, _Alloc __a) : _M_pi(0)
1003 typedef _Sp_counted_deleter<_Ptr, _Deleter, _Alloc, _Lp> _Sp_cd_type;
1006 typename _Sp_cd_type::__allocator_type __a2(__a);
1007 auto __guard = std::__allocate_guarded(__a2);
1008 _Sp_cd_type* __mem = __guard.get();
1016 __throw_exception_again;
1020 template<
typename _Tp,
typename _Alloc,
typename... _Args>
1021 __shared_count(_Tp*& __p, _Sp_alloc_shared_tag<_Alloc> __a,
1024 using _Tp2 = __remove_cv_t<_Tp>;
1025 using _Sp_cp_type = _Sp_counted_ptr_inplace<_Tp2, _Alloc, _Lp>;
1026 typename _Sp_cp_type::__allocator_type __a2(__a._M_a);
1027 auto __guard = std::__allocate_guarded(__a2);
1028 _Sp_cp_type* __mem = __guard.get();
1029 auto __pi = ::new (__mem)
1033 __p = __pi->_M_ptr();
1036#if __glibcxx_shared_ptr_arrays >= 201707L
1037 template<
typename _Tp,
typename _Alloc,
typename _Init>
1038 __shared_count(_Tp*& __p,
const _Sp_counted_array_base<_Alloc>& __a,
1041 using _Up = remove_all_extents_t<_Tp>;
1042 static_assert(is_same_v<_Up, typename _Alloc::value_type>);
1044 using _Sp_ca_type = _Sp_counted_array<_Alloc, _Lp>;
1045 const size_t __tail = _Sp_ca_type::_S_tail();
1047 struct _Guarded_ptr : _Sp_counted_array_base<_Alloc>
1049 typename allocator_traits<_Alloc>::pointer _M_ptr;
1051 _Guarded_ptr(_Sp_counted_array_base<_Alloc> __a)
1052 : _Sp_counted_array_base<_Alloc>(__a),
1053 _M_ptr(this->_M_alloc_array(_Sp_ca_type::_S_tail()))
1059 this->_M_dealloc_array(_M_ptr, _Sp_ca_type::_S_tail());
1063 _Guarded_ptr __guard{__a};
1065 __guard._M_init(__raw, __init);
1067 void* __c = __raw + __a._M_n;
1068 if constexpr (
alignof(_Up) <
alignof(_Sp_ca_type))
1070 size_t __space =
sizeof(_Up) * __tail;
1071 __c =
std::align(
alignof(_Sp_ca_type),
sizeof(_Sp_ca_type),
1074 auto __pi = ::new(__c) _Sp_ca_type(__guard, __guard._M_ptr);
1075 __guard._M_ptr =
nullptr;
1077 __p =
reinterpret_cast<_Tp*
>(__raw);
1081#if _GLIBCXX_USE_DEPRECATED
1082#pragma GCC diagnostic push
1083#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1085 template<
typename _Tp>
1087 __shared_count(std::auto_ptr<_Tp>&& __r);
1088#pragma GCC diagnostic pop
1092 template<
typename _Tp,
typename _Del>
1094 __shared_count(std::unique_ptr<_Tp, _Del>&& __r) : _M_pi(0)
1098 if (__r.get() ==
nullptr)
1101 using _Ptr =
typename unique_ptr<_Tp, _Del>::pointer;
1102 using _Del2 = __conditional_t<is_reference<_Del>::value,
1103 reference_wrapper<
typename remove_reference<_Del>::type>,
1106 = _Sp_counted_deleter<_Ptr, _Del2, allocator<void>, _Lp>;
1107 using _Alloc = allocator<_Sp_cd_type>;
1108 using _Alloc_traits = allocator_traits<_Alloc>;
1110 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1);
1114 _Alloc_traits::construct(__a, __mem, __r.release(),
1120 explicit __shared_count(
const __weak_count<_Lp>& __r);
1124 __shared_count(
const __weak_count<_Lp>& __r, std::nothrow_t)
noexcept;
1126 ~__shared_count() noexcept
1128 if (_M_pi !=
nullptr)
1129 _M_pi->_M_release();
1132 __shared_count(
const __shared_count& __r) noexcept
1135 if (_M_pi !=
nullptr)
1136 _M_pi->_M_add_ref_copy();
1140 operator=(
const __shared_count& __r)
noexcept
1142 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1145 if (__tmp !=
nullptr)
1146 __tmp->_M_add_ref_copy();
1147 if (_M_pi !=
nullptr)
1148 _M_pi->_M_release();
1155 _M_swap(__shared_count& __r)
noexcept
1157 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1163 _M_get_use_count() const noexcept
1164 {
return _M_pi ? _M_pi->_M_get_use_count() : 0; }
1167 _M_unique() const noexcept
1168 {
return this->_M_get_use_count() == 1; }
1171 _M_get_deleter(
const std::type_info& __ti)
const noexcept
1172 {
return _M_pi ? _M_pi->_M_get_deleter(__ti) :
nullptr; }
1175 _M_less(
const __shared_count& __rhs)
const noexcept
1176 {
return std::less<_Sp_counted_base<_Lp>*>()(this->_M_pi, __rhs._M_pi); }
1179 _M_less(
const __weak_count<_Lp>& __rhs)
const noexcept
1180 {
return std::less<_Sp_counted_base<_Lp>*>()(this->_M_pi, __rhs._M_pi); }
1182#ifdef __glibcxx_smart_ptr_owner_equality
1184 _M_owner_hash() const noexcept
1185 {
return std::hash<_Sp_counted_base<_Lp>*>()(this->_M_pi); }
1190 operator==(
const __shared_count& __a,
const __shared_count& __b)
noexcept
1191 {
return __a._M_pi == __b._M_pi; }
1194 friend class __weak_count<_Lp>;
1195#ifdef __glibcxx_atomic_shared_ptr
1196 template<
typename>
friend class _Sp_atomic;
1198#ifdef __glibcxx_out_ptr
1199 template<
typename,
typename,
typename...>
friend class out_ptr_t;
1202 _Sp_counted_base<_Lp>* _M_pi;
1206 template<_Lock_policy _Lp>
1210 constexpr __weak_count() noexcept : _M_pi(
nullptr)
1213 __weak_count(
const __shared_count<_Lp>& __r) noexcept
1216 if (_M_pi !=
nullptr)
1217 _M_pi->_M_weak_add_ref();
1220 __weak_count(
const __weak_count& __r) noexcept
1223 if (_M_pi !=
nullptr)
1224 _M_pi->_M_weak_add_ref();
1227 __weak_count(__weak_count&& __r) noexcept
1229 { __r._M_pi =
nullptr; }
1231 ~__weak_count() noexcept
1233 if (_M_pi !=
nullptr)
1234 _M_pi->_M_weak_release();
1238 operator=(
const __shared_count<_Lp>& __r)
noexcept
1240 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1241 if (__tmp !=
nullptr)
1242 __tmp->_M_weak_add_ref();
1243 if (_M_pi !=
nullptr)
1244 _M_pi->_M_weak_release();
1250 operator=(
const __weak_count& __r)
noexcept
1252 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1253 if (__tmp !=
nullptr)
1254 __tmp->_M_weak_add_ref();
1255 if (_M_pi !=
nullptr)
1256 _M_pi->_M_weak_release();
1262 operator=(__weak_count&& __r)
noexcept
1264 if (_M_pi !=
nullptr)
1265 _M_pi->_M_weak_release();
1267 __r._M_pi =
nullptr;
1272 _M_swap(__weak_count& __r)
noexcept
1274 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1280 _M_get_use_count() const noexcept
1281 {
return _M_pi !=
nullptr ? _M_pi->_M_get_use_count() : 0; }
1284 _M_less(
const __weak_count& __rhs)
const noexcept
1285 {
return std::less<_Sp_counted_base<_Lp>*>()(this->_M_pi, __rhs._M_pi); }
1288 _M_less(
const __shared_count<_Lp>& __rhs)
const noexcept
1289 {
return std::less<_Sp_counted_base<_Lp>*>()(this->_M_pi, __rhs._M_pi); }
1291#ifdef __glibcxx_smart_ptr_owner_equality
1293 _M_owner_hash() const noexcept
1294 {
return std::hash<_Sp_counted_base<_Lp>*>()(this->_M_pi); }
1299 operator==(
const __weak_count& __a,
const __weak_count& __b)
noexcept
1300 {
return __a._M_pi == __b._M_pi; }
1303 friend class __shared_count<_Lp>;
1304#ifdef __glibcxx_atomic_shared_ptr
1305 template<
typename>
friend class _Sp_atomic;
1308 _Sp_counted_base<_Lp>* _M_pi;
1312 template<_Lock_policy _Lp>
1314 __shared_count<_Lp>::__shared_count(
const __weak_count<_Lp>& __r)
1317 if (_M_pi ==
nullptr || !_M_pi->_M_add_ref_lock_nothrow())
1318 __throw_bad_weak_ptr();
1322 template<_Lock_policy _Lp>
1324 __shared_count<_Lp>::
1325 __shared_count(
const __weak_count<_Lp>& __r, std::nothrow_t) noexcept
1328 if (_M_pi && !_M_pi->_M_add_ref_lock_nothrow())
1336 template<
typename _Yp_ptr,
typename _Tp_ptr>
1337 struct __sp_compatible_with
1341 template<
typename _Yp,
typename _Tp>
1342 struct __sp_compatible_with<_Yp*, _Tp*>
1343 : is_convertible<_Yp*, _Tp*>::type
1346 template<
typename _Up,
size_t _Nm>
1347 struct __sp_compatible_with<_Up(*)[_Nm], _Up(*)[]>
1351 template<
typename _Up,
size_t _Nm>
1352 struct __sp_compatible_with<_Up(*)[_Nm],
const _Up(*)[]>
1356 template<
typename _Up,
size_t _Nm>
1357 struct __sp_compatible_with<_Up(*)[_Nm],
volatile _Up(*)[]>
1361 template<
typename _Up,
size_t _Nm>
1362 struct __sp_compatible_with<_Up(*)[_Nm],
const volatile _Up(*)[]>
1367 template<
typename _Up,
size_t _Nm,
typename _Yp,
typename =
void>
1368 struct __sp_is_constructible_arrN
1372 template<
typename _Up,
size_t _Nm,
typename _Yp>
1373 struct __sp_is_constructible_arrN<_Up, _Nm, _Yp, __void_t<_Yp[_Nm]>>
1374 : is_convertible<_Yp(*)[_Nm], _Up(*)[_Nm]>::type
1378 template<
typename _Up,
typename _Yp,
typename =
void>
1379 struct __sp_is_constructible_arr
1383 template<
typename _Up,
typename _Yp>
1384 struct __sp_is_constructible_arr<_Up, _Yp, __void_t<_Yp[]>>
1385 : is_convertible<_Yp(*)[], _Up(*)[]>::type
1389 template<
typename _Tp,
typename _Yp>
1390 struct __sp_is_constructible;
1393 template<
typename _Up,
size_t _Nm,
typename _Yp>
1394 struct __sp_is_constructible<_Up[_Nm], _Yp>
1395 : __sp_is_constructible_arrN<_Up, _Nm, _Yp>::type
1399 template<
typename _Up,
typename _Yp>
1400 struct __sp_is_constructible<_Up[], _Yp>
1401 : __sp_is_constructible_arr<_Up, _Yp>::type
1405 template<
typename _Tp,
typename _Yp>
1406 struct __sp_is_constructible
1407 : is_convertible<_Yp*, _Tp*>::type
1411 template<
typename _Tp>
1412 [[__gnu__::__always_inline__]]
1414 __shared_ptr_deref(_Tp* __p)
1416 __glibcxx_assert(__p !=
nullptr);
1421 template<
typename _Tp, _Lock_policy _Lp,
1423 class __shared_ptr_access
1426 using element_type = _Tp;
1429 operator*() const noexcept
1430 {
return *std::__shared_ptr_deref(_M_get()); }
1433 operator->() const noexcept
1435 _GLIBCXX_DEBUG_PEDASSERT(_M_get() !=
nullptr);
1441 _M_get() const noexcept
1442 {
return static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get(); }
1446 template<
typename _Tp, _Lock_policy _Lp>
1447 class __shared_ptr_access<_Tp, _Lp, false, true>
1450 using element_type = _Tp;
1453 operator->() const noexcept
1455 auto __ptr =
static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get();
1456 _GLIBCXX_DEBUG_PEDASSERT(__ptr !=
nullptr);
1462 template<
typename _Tp, _Lock_policy _Lp>
1463 class __shared_ptr_access<_Tp, _Lp, true, false>
1466 using element_type =
typename remove_extent<_Tp>::type;
1468#if __cplusplus <= 201402L
1469 [[__deprecated__(
"shared_ptr<T[]>::operator* is absent from C++17")]]
1471 operator*() const noexcept
1472 {
return *std::__shared_ptr_deref(_M_get()); }
1474 [[__deprecated__(
"shared_ptr<T[]>::operator-> is absent from C++17")]]
1476 operator->() const noexcept
1478 _GLIBCXX_DEBUG_PEDASSERT(_M_get() !=
nullptr);
1483#pragma GCC diagnostic push
1484#pragma GCC diagnostic ignored "-Wc++17-extensions"
1486 operator[](ptrdiff_t __i)
const noexcept
1488 if constexpr (extent<_Tp>::value)
1489 __glibcxx_assert(__i < extent<_Tp>::value);
1490 return std::__shared_ptr_deref(_M_get())[__i];
1492#pragma GCC diagnostic pop
1496 _M_get() const noexcept
1497 {
return static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get(); }
1500 template<
typename _Tp, _Lock_policy _Lp>
1502 :
public __shared_ptr_access<_Tp, _Lp>
1505 using element_type =
typename remove_extent<_Tp>::type;
1509 template<
typename _Yp>
1511 =
typename enable_if<__sp_is_constructible<_Tp, _Yp>::value>::type;
1514 template<
typename _Yp,
typename _Res =
void>
1515 using _Compatible =
typename
1516 enable_if<__sp_compatible_with<_Yp*, _Tp*>::value, _Res>::type;
1519 template<
typename _Yp>
1520 using _Assignable = _Compatible<_Yp, __shared_ptr&>;
1523 template<
typename _Yp,
typename _Del,
typename _Res = void,
1524 typename _Ptr =
typename unique_ptr<_Yp, _Del>::pointer>
1525 using _UniqCompatible = __enable_if_t<__and_<
1526 __sp_compatible_with<_Yp*, _Tp*>,
1527 is_convertible<_Ptr, element_type*>,
1528 is_move_constructible<_Del>
1532 template<
typename _Yp,
typename _Del>
1533 using _UniqAssignable = _UniqCompatible<_Yp, _Del, __shared_ptr&>;
1537#if __cplusplus > 201402L
1538 using weak_type = __weak_ptr<_Tp, _Lp>;
1541 constexpr __shared_ptr() noexcept
1542 : _M_ptr(0), _M_refcount()
1545 template<
typename _Yp,
typename = _SafeConv<_Yp>>
1547 __shared_ptr(_Yp* __p)
1548 : _M_ptr(__p), _M_refcount(__p, typename is_array<_Tp>::type())
1550 static_assert( !is_void<_Yp>::value,
"incomplete type" );
1551 static_assert(
sizeof(_Yp) > 0,
"incomplete type" );
1552 _M_enable_shared_from_this_with(__p);
1555 template<
typename _Yp,
typename _Deleter,
typename = _SafeConv<_Yp>>
1556 __shared_ptr(_Yp* __p, _Deleter __d)
1557 : _M_ptr(__p), _M_refcount(__p, std::
move(__d))
1559 static_assert(__is_invocable<_Deleter&, _Yp*&>::value,
1560 "deleter expression d(p) is well-formed");
1561 _M_enable_shared_from_this_with(__p);
1564 template<
typename _Yp,
typename _Deleter,
typename _Alloc,
1565 typename = _SafeConv<_Yp>>
1566 __shared_ptr(_Yp* __p, _Deleter __d, _Alloc __a)
1567 : _M_ptr(__p), _M_refcount(__p, std::
move(__d), std::
move(__a))
1569 static_assert(__is_invocable<_Deleter&, _Yp*&>::value,
1570 "deleter expression d(p) is well-formed");
1571 _M_enable_shared_from_this_with(__p);
1574 template<
typename _Deleter>
1575 __shared_ptr(nullptr_t __p, _Deleter __d)
1576 : _M_ptr(0), _M_refcount(__p, std::
move(__d))
1579 template<
typename _Deleter,
typename _Alloc>
1580 __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
1581 : _M_ptr(0), _M_refcount(__p, std::
move(__d), std::
move(__a))
1585 template<
typename _Yp>
1586 __shared_ptr(
const __shared_ptr<_Yp, _Lp>& __r,
1587 element_type* __p) noexcept
1588 : _M_ptr(__p), _M_refcount(__r._M_refcount)
1592 template<
typename _Yp>
1593 __shared_ptr(__shared_ptr<_Yp, _Lp>&& __r,
1594 element_type* __p) noexcept
1595 : _M_ptr(__p), _M_refcount()
1597 _M_refcount._M_swap(__r._M_refcount);
1598 __r._M_ptr =
nullptr;
1601 __shared_ptr(
const __shared_ptr&)
noexcept =
default;
1602 __shared_ptr& operator=(
const __shared_ptr&)
noexcept =
default;
1603 ~__shared_ptr() =
default;
1605 template<
typename _Yp,
typename = _Compatible<_Yp>>
1606 __shared_ptr(
const __shared_ptr<_Yp, _Lp>& __r) noexcept
1607 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
1610 __shared_ptr(__shared_ptr&& __r) noexcept
1611 : _M_ptr(__r._M_ptr), _M_refcount()
1613 _M_refcount._M_swap(__r._M_refcount);
1614 __r._M_ptr =
nullptr;
1617 template<
typename _Yp,
typename = _Compatible<_Yp>>
1618 __shared_ptr(__shared_ptr<_Yp, _Lp>&& __r) noexcept
1619 : _M_ptr(__r._M_ptr), _M_refcount()
1621 _M_refcount._M_swap(__r._M_refcount);
1622 __r._M_ptr =
nullptr;
1625 template<
typename _Yp,
typename = _Compatible<_Yp>>
1626 explicit __shared_ptr(
const __weak_ptr<_Yp, _Lp>& __r)
1627 : _M_refcount(__r._M_refcount)
1631 _M_ptr = __r._M_ptr;
1635 template<
typename _Yp,
typename _Del,
1636 typename = _UniqCompatible<_Yp, _Del>>
1637 __shared_ptr(unique_ptr<_Yp, _Del>&& __r)
1638 : _M_ptr(__r.get()), _M_refcount()
1640 auto __raw = std::__to_address(__r.get());
1641 _M_refcount = __shared_count<_Lp>(
std::move(__r));
1642 _M_enable_shared_from_this_with(__raw);
1645#if __cplusplus <= 201402L && _GLIBCXX_USE_DEPRECATED
1648 template<
typename _Tp1,
typename _Del,
1649 typename enable_if<__and_<
1650 __not_<is_array<_Tp>>, is_array<_Tp1>,
1651 is_convertible<typename unique_ptr<_Tp1, _Del>::pointer, _Tp*>
1652 >::value,
bool>::type =
true>
1653 __shared_ptr(unique_ptr<_Tp1, _Del>&& __r, __sp_array_delete)
1654 : _M_ptr(__r.get()), _M_refcount()
1656 auto __raw = std::__to_address(__r.get());
1657 _M_refcount = __shared_count<_Lp>(
std::move(__r));
1658 _M_enable_shared_from_this_with(__raw);
1663#if _GLIBCXX_USE_DEPRECATED
1664#pragma GCC diagnostic push
1665#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1667 template<
typename _Yp,
typename = _Compatible<_Yp>>
1668 __shared_ptr(auto_ptr<_Yp>&& __r);
1669#pragma GCC diagnostic pop
1672 constexpr __shared_ptr(nullptr_t) noexcept : __shared_ptr() { }
1674 template<
typename _Yp>
1676 operator=(
const __shared_ptr<_Yp, _Lp>& __r)
noexcept
1678 _M_ptr = __r._M_ptr;
1679 _M_refcount = __r._M_refcount;
1683#if _GLIBCXX_USE_DEPRECATED
1684#pragma GCC diagnostic push
1685#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1686 template<
typename _Yp>
1688 operator=(auto_ptr<_Yp>&& __r)
1690 __shared_ptr(
std::move(__r)).swap(*
this);
1693#pragma GCC diagnostic pop
1697 operator=(__shared_ptr&& __r)
noexcept
1699 __shared_ptr(
std::move(__r)).swap(*
this);
1705 operator=(__shared_ptr<_Yp, _Lp>&& __r)
noexcept
1707 __shared_ptr(
std::move(__r)).swap(*
this);
1711 template<
typename _Yp,
typename _Del>
1712 _UniqAssignable<_Yp, _Del>
1713 operator=(unique_ptr<_Yp, _Del>&& __r)
1715 __shared_ptr(
std::move(__r)).swap(*
this);
1721 { __shared_ptr().swap(*
this); }
1723 template<
typename _Yp>
1728 __glibcxx_assert(__p ==
nullptr || __p != _M_ptr);
1729 __shared_ptr(__p).swap(*
this);
1732 template<
typename _Yp,
typename _Deleter>
1734 reset(_Yp* __p, _Deleter __d)
1735 { __shared_ptr(__p,
std::move(__d)).swap(*
this); }
1737 template<
typename _Yp,
typename _Deleter,
typename _Alloc>
1739 reset(_Yp* __p, _Deleter __d, _Alloc __a)
1744 get() const noexcept
1748 explicit operator bool() const noexcept
1749 {
return _M_ptr !=
nullptr; }
1753 unique() const noexcept
1754 {
return _M_refcount._M_unique(); }
1758 use_count() const noexcept
1759 {
return _M_refcount._M_get_use_count(); }
1763 swap(__shared_ptr<_Tp, _Lp>& __other)
noexcept
1765 std::swap(_M_ptr, __other._M_ptr);
1766 _M_refcount._M_swap(__other._M_refcount);
1776 template<
typename _Tp1>
1778 owner_before(__shared_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1779 {
return _M_refcount._M_less(__rhs._M_refcount); }
1781 template<
typename _Tp1>
1783 owner_before(__weak_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1784 {
return _M_refcount._M_less(__rhs._M_refcount); }
1787#ifdef __glibcxx_smart_ptr_owner_equality
1788 size_t owner_hash() const noexcept {
return _M_refcount._M_owner_hash(); }
1790 template<
typename _Tp1>
1792 owner_equal(__shared_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1793 {
return _M_refcount == __rhs._M_refcount; }
1795 template<
typename _Tp1>
1797 owner_equal(__weak_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1798 {
return _M_refcount == __rhs._M_refcount; }
1803 template<
typename _Alloc,
typename... _Args>
1804 __shared_ptr(_Sp_alloc_shared_tag<_Alloc> __tag, _Args&&... __args)
1805 : _M_ptr(), _M_refcount(_M_ptr, __tag, std::
forward<_Args>(__args)...)
1806 { _M_enable_shared_from_this_with(_M_ptr); }
1808 template<
typename _Tp1, _Lock_policy _Lp1,
typename _Alloc,
1810 friend __shared_ptr<_Tp1, _Lp1>
1811 __allocate_shared(
const _Alloc& __a, _Args&&... __args);
1813#if __glibcxx_shared_ptr_arrays >= 201707L
1815 template<
typename _Alloc,
typename _Init = const remove_extent_t<_Tp>*>
1816 __shared_ptr(
const _Sp_counted_array_base<_Alloc>& __a,
1817 _Init __init =
nullptr)
1818 : _M_ptr(), _M_refcount(_M_ptr, __a, __init)
1824 __shared_ptr(
const __weak_ptr<_Tp, _Lp>& __r, std::nothrow_t) noexcept
1825 : _M_refcount(__r._M_refcount, std::nothrow)
1827 _M_ptr = _M_refcount._M_get_use_count() ? __r._M_ptr :
nullptr;
1830 friend class __weak_ptr<_Tp, _Lp>;
1834 template<
typename _Yp>
1835 using __esft_base_t =
decltype(__enable_shared_from_this_base(
1840 template<
typename _Yp,
typename =
void>
1841 struct __has_esft_base
1844 template<
typename _Yp>
1845 struct __has_esft_base<_Yp, __void_t<__esft_base_t<_Yp>>>
1846 : __not_<is_array<_Tp>> { };
1848 template<typename _Yp, typename _Yp2 = typename remove_cv<_Yp>::type>
1849 typename enable_if<__has_esft_base<_Yp2>::value>::type
1850 _M_enable_shared_from_this_with(_Yp* __p)
noexcept
1852 if (
auto __base = __enable_shared_from_this_base(_M_refcount, __p))
1853 __base->_M_weak_assign(
const_cast<_Yp2*
>(__p), _M_refcount);
1856 template<typename _Yp, typename _Yp2 = typename remove_cv<_Yp>::type>
1857 typename enable_if<!__has_esft_base<_Yp2>::value>::type
1858 _M_enable_shared_from_this_with(_Yp*)
noexcept
1862 _M_get_deleter(
const std::type_info& __ti)
const noexcept
1863 {
return _M_refcount._M_get_deleter(__ti); }
1865 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __shared_ptr;
1866 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __weak_ptr;
1868 template<
typename _Del,
typename _Tp1, _Lock_policy _Lp1>
1869 friend _Del* get_deleter(
const __shared_ptr<_Tp1, _Lp1>&)
noexcept;
1871 template<
typename _Del,
typename _Tp1>
1872 friend _Del* get_deleter(
const shared_ptr<_Tp1>&)
noexcept;
1874#ifdef __glibcxx_atomic_shared_ptr
1875 friend _Sp_atomic<shared_ptr<_Tp>>;
1877#ifdef __glibcxx_out_ptr
1878 template<
typename,
typename,
typename...>
friend class out_ptr_t;
1881 element_type* _M_ptr;
1882 __shared_count<_Lp> _M_refcount;
1887 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1889 operator==(
const __shared_ptr<_Tp1, _Lp>& __a,
1890 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1891 {
return __a.get() == __b.get(); }
1893 template<
typename _Tp, _Lock_policy _Lp>
1895 operator==(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1898#ifdef __cpp_lib_three_way_comparison
1899 template<
typename _Tp,
typename _Up, _Lock_policy _Lp>
1900 inline strong_ordering
1901 operator<=>(
const __shared_ptr<_Tp, _Lp>& __a,
1902 const __shared_ptr<_Up, _Lp>& __b)
noexcept
1903 {
return compare_three_way()(__a.get(), __b.get()); }
1905 template<
typename _Tp, _Lock_policy _Lp>
1906 inline strong_ordering
1907 operator<=>(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1909 using pointer =
typename __shared_ptr<_Tp, _Lp>::element_type*;
1910 return compare_three_way()(__a.get(),
static_cast<pointer
>(
nullptr));
1913 template<
typename _Tp, _Lock_policy _Lp>
1915 operator==(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1918 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1920 operator!=(
const __shared_ptr<_Tp1, _Lp>& __a,
1921 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1922 {
return __a.get() != __b.get(); }
1924 template<
typename _Tp, _Lock_policy _Lp>
1926 operator!=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1927 {
return (
bool)__a; }
1929 template<
typename _Tp, _Lock_policy _Lp>
1931 operator!=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1932 {
return (
bool)__a; }
1934 template<
typename _Tp,
typename _Up, _Lock_policy _Lp>
1936 operator<(
const __shared_ptr<_Tp, _Lp>& __a,
1937 const __shared_ptr<_Up, _Lp>& __b)
noexcept
1939 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1940 using _Up_elt =
typename __shared_ptr<_Up, _Lp>::element_type;
1942 return less<_Vp>()(__a.get(), __b.get());
1945 template<
typename _Tp, _Lock_policy _Lp>
1947 operator<(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1949 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1953 template<
typename _Tp, _Lock_policy _Lp>
1955 operator<(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1957 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1961 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1963 operator<=(
const __shared_ptr<_Tp1, _Lp>& __a,
1964 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1965 {
return !(__b < __a); }
1967 template<
typename _Tp, _Lock_policy _Lp>
1969 operator<=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1970 {
return !(
nullptr < __a); }
1972 template<
typename _Tp, _Lock_policy _Lp>
1974 operator<=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1975 {
return !(__a <
nullptr); }
1977 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1979 operator>(
const __shared_ptr<_Tp1, _Lp>& __a,
1980 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1981 {
return (__b < __a); }
1983 template<
typename _Tp, _Lock_policy _Lp>
1985 operator>(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1986 {
return nullptr < __a; }
1988 template<
typename _Tp, _Lock_policy _Lp>
1990 operator>(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1991 {
return __a <
nullptr; }
1993 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1995 operator>=(
const __shared_ptr<_Tp1, _Lp>& __a,
1996 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1997 {
return !(__a < __b); }
1999 template<
typename _Tp, _Lock_policy _Lp>
2001 operator>=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
2002 {
return !(__a <
nullptr); }
2004 template<
typename _Tp, _Lock_policy _Lp>
2006 operator>=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
2007 {
return !(
nullptr < __a); }
2011 template<
typename _Tp, _Lock_policy _Lp>
2013 swap(__shared_ptr<_Tp, _Lp>& __a, __shared_ptr<_Tp, _Lp>& __b)
noexcept
2023 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
2024 inline __shared_ptr<_Tp, _Lp>
2027 using _Sp = __shared_ptr<_Tp, _Lp>;
2028 return _Sp(__r,
static_cast<typename _Sp::element_type*
>(__r.get()));
2036 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
2037 inline __shared_ptr<_Tp, _Lp>
2040 using _Sp = __shared_ptr<_Tp, _Lp>;
2041 return _Sp(__r,
const_cast<typename _Sp::element_type*
>(__r.get()));
2049 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
2050 inline __shared_ptr<_Tp, _Lp>
2053 using _Sp = __shared_ptr<_Tp, _Lp>;
2054 if (
auto* __p =
dynamic_cast<typename _Sp::element_type*
>(__r.get()))
2055 return _Sp(__r, __p);
2059#if __cplusplus > 201402L
2060 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
2061 inline __shared_ptr<_Tp, _Lp>
2062 reinterpret_pointer_cast(
const __shared_ptr<_Tp1, _Lp>& __r)
noexcept
2064 using _Sp = __shared_ptr<_Tp, _Lp>;
2065 return _Sp(__r,
reinterpret_cast<typename _Sp::element_type*
>(__r.get()));
2069 template<
typename _Tp, _Lock_policy _Lp>
2073 using element_type =
typename remove_extent<_Tp>::type;
2076 template<
typename _Yp,
typename _Res =
void>
2077 using _Compatible =
typename
2081 template<
typename _Yp>
2082 using _Assignable = _Compatible<_Yp, __weak_ptr&>;
2084#pragma GCC diagnostic push
2085#pragma GCC diagnostic ignored "-Wc++17-extensions"
2087 template<
typename _Yp>
2088 static element_type*
2089 _S_safe_upcast(
const __weak_ptr<_Yp, _Lp>& __r)
2104 else if constexpr (__and_<is_scalar<_At>,
is_scalar<_Bt>>::value)
2106#if _GLIBCXX_USE_BUILTIN_TRAIT(__builtin_is_virtual_base_of)
2110 else if constexpr (!__builtin_is_virtual_base_of(_Tp, _Yp))
2117 return __r.lock().get();
2119#pragma GCC diagnostic pop
2122 constexpr __weak_ptr() noexcept
2123 : _M_ptr(
nullptr), _M_refcount()
2126 __weak_ptr(
const __weak_ptr&)
noexcept =
default;
2128 ~__weak_ptr() =
default;
2144 template<
typename _Yp,
typename = _Compatible<_Yp>>
2145 __weak_ptr(
const __weak_ptr<_Yp, _Lp>& __r) noexcept
2146 : _M_ptr(_S_safe_upcast(__r)), _M_refcount(__r._M_refcount)
2149 template<
typename _Yp,
typename = _Compatible<_Yp>>
2150 __weak_ptr(
const __shared_ptr<_Yp, _Lp>& __r) noexcept
2151 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
2154 __weak_ptr(__weak_ptr&& __r) noexcept
2155 : _M_ptr(__r._M_ptr), _M_refcount(
std::move(__r._M_refcount))
2156 { __r._M_ptr =
nullptr; }
2158 template<
typename _Yp,
typename = _Compatible<_Yp>>
2159 __weak_ptr(__weak_ptr<_Yp, _Lp>&& __r) noexcept
2160 : _M_ptr(_S_safe_upcast(__r)), _M_refcount(
std::move(__r._M_refcount))
2161 { __r._M_ptr =
nullptr; }
2164 operator=(
const __weak_ptr& __r)
noexcept =
default;
2166 template<
typename _Yp>
2168 operator=(
const __weak_ptr<_Yp, _Lp>& __r)
noexcept
2170 _M_ptr = _S_safe_upcast(__r);
2171 _M_refcount = __r._M_refcount;
2175 template<
typename _Yp>
2177 operator=(
const __shared_ptr<_Yp, _Lp>& __r)
noexcept
2179 _M_ptr = __r._M_ptr;
2180 _M_refcount = __r._M_refcount;
2185 operator=(__weak_ptr&& __r)
noexcept
2191 template<
typename _Yp>
2193 operator=(__weak_ptr<_Yp, _Lp>&& __r)
noexcept
2195 _M_ptr = _S_safe_upcast(__r);
2196 _M_refcount =
std::move(__r._M_refcount);
2197 __r._M_ptr =
nullptr;
2201 __shared_ptr<_Tp, _Lp>
2202 lock() const noexcept
2203 {
return __shared_ptr<_Tp, _Lp>(*
this, std::nothrow); }
2206 use_count() const noexcept
2207 {
return _M_refcount._M_get_use_count(); }
2210 expired() const noexcept
2211 {
return _M_refcount._M_get_use_count() == 0; }
2213 template<
typename _Tp1>
2215 owner_before(
const __shared_ptr<_Tp1, _Lp>& __rhs)
const noexcept
2216 {
return _M_refcount._M_less(__rhs._M_refcount); }
2218 template<
typename _Tp1>
2220 owner_before(
const __weak_ptr<_Tp1, _Lp>& __rhs)
const noexcept
2221 {
return _M_refcount._M_less(__rhs._M_refcount); }
2223#ifdef __glibcxx_smart_ptr_owner_equality
2224 size_t owner_hash() const noexcept {
return _M_refcount._M_owner_hash(); }
2226 template<
typename _Tp1>
2228 owner_equal(
const __shared_ptr<_Tp1, _Lp> & __rhs)
const noexcept
2229 {
return _M_refcount == __rhs._M_refcount; }
2231 template<
typename _Tp1>
2233 owner_equal(
const __weak_ptr<_Tp1, _Lp> & __rhs)
const noexcept
2234 {
return _M_refcount == __rhs._M_refcount; }
2239 { __weak_ptr().swap(*
this); }
2242 swap(__weak_ptr& __s)
noexcept
2244 std::swap(_M_ptr, __s._M_ptr);
2245 _M_refcount._M_swap(__s._M_refcount);
2251 _M_assign(_Tp* __ptr,
const __shared_count<_Lp>& __refcount)
noexcept
2253 if (use_count() == 0)
2256 _M_refcount = __refcount;
2260 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __shared_ptr;
2261 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __weak_ptr;
2262 friend class __enable_shared_from_this<_Tp, _Lp>;
2264#ifdef __glibcxx_atomic_shared_ptr
2265 friend _Sp_atomic<weak_ptr<_Tp>>;
2268 element_type* _M_ptr;
2269 __weak_count<_Lp> _M_refcount;
2273 template<
typename _Tp, _Lock_policy _Lp>
2275 swap(__weak_ptr<_Tp, _Lp>& __a, __weak_ptr<_Tp, _Lp>& __b)
noexcept
2278#pragma GCC diagnostic push
2279#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
2280 template<
typename _Tp,
typename _Tp1>
2284 operator()(
const _Tp& __lhs,
const _Tp& __rhs)
const noexcept
2285 {
return __lhs.owner_before(__rhs); }
2288 operator()(
const _Tp& __lhs,
const _Tp1& __rhs)
const noexcept
2289 {
return __lhs.owner_before(__rhs); }
2292 operator()(
const _Tp1& __lhs,
const _Tp& __rhs)
const noexcept
2293 {
return __lhs.owner_before(__rhs); }
2295#pragma GCC diagnostic pop
2298 struct _Sp_owner_less<void, void>
2300 template<
typename _Tp,
typename _Up>
2302 operator()(
const _Tp& __lhs,
const _Up& __rhs)
const noexcept
2303 ->
decltype(__lhs.owner_before(__rhs))
2304 {
return __lhs.owner_before(__rhs); }
2306 using is_transparent = void;
2309 template<
typename _Tp, _Lock_policy _Lp>
2311 :
public _Sp_owner_less<__shared_ptr<_Tp, _Lp>, __weak_ptr<_Tp, _Lp>>
2314 template<
typename _Tp, _Lock_policy _Lp>
2316 :
public _Sp_owner_less<__weak_ptr<_Tp, _Lp>, __shared_ptr<_Tp, _Lp>>
2320 template<
typename _Tp, _Lock_policy _Lp>
2321 class __enable_shared_from_this
2324 constexpr __enable_shared_from_this() noexcept { }
2326 __enable_shared_from_this(
const __enable_shared_from_this&)
noexcept { }
2328 __enable_shared_from_this&
2329 operator=(
const __enable_shared_from_this&)
noexcept
2332 ~__enable_shared_from_this() { }
2335 __shared_ptr<_Tp, _Lp>
2337 {
return __shared_ptr<_Tp, _Lp>(this->_M_weak_this); }
2339 __shared_ptr<const _Tp, _Lp>
2340 shared_from_this()
const
2341 {
return __shared_ptr<const _Tp, _Lp>(this->_M_weak_this); }
2343#if __cplusplus > 201402L || !defined(__STRICT_ANSI__)
2344 __weak_ptr<_Tp, _Lp>
2345 weak_from_this() noexcept
2346 {
return this->_M_weak_this; }
2348 __weak_ptr<const _Tp, _Lp>
2349 weak_from_this() const noexcept
2350 {
return this->_M_weak_this; }
2354 template<
typename _Tp1>
2356 _M_weak_assign(_Tp1* __p,
const __shared_count<_Lp>& __n)
const noexcept
2357 { _M_weak_this._M_assign(__p, __n); }
2359 friend const __enable_shared_from_this*
2360 __enable_shared_from_this_base(
const __shared_count<_Lp>&,
2361 const __enable_shared_from_this* __p)
2364 template<
typename, _Lock_policy>
2365 friend class __shared_ptr;
2367 mutable __weak_ptr<_Tp, _Lp> _M_weak_this;
2370 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy,
2371 typename _Alloc,
typename... _Args>
2372 inline __shared_ptr<_Tp, _Lp>
2373 __allocate_shared(
const _Alloc& __a, _Args&&... __args)
2377 return __shared_ptr<_Tp, _Lp>(_Sp_alloc_shared_tag<_Alloc>{__a},
2381 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy,
2383 inline __shared_ptr<_Tp, _Lp>
2384 __make_shared(_Args&&... __args)
2386 typedef typename std::remove_const<_Tp>::type _Tp_nc;
2387 return std::__allocate_shared<_Tp, _Lp>(std::allocator<_Tp_nc>(),
2392 template<
typename _Tp, _Lock_policy _Lp>
2393 struct hash<__shared_ptr<_Tp, _Lp>>
2394 :
public __hash_base<size_t, __shared_ptr<_Tp, _Lp>>
2397 operator()(
const __shared_ptr<_Tp, _Lp>& __s)
const noexcept
2404_GLIBCXX_END_NAMESPACE_VERSION
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.
Define a member typedef type only if a boolean constant is true.
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.
Base class for all library exceptions.
Primary template owner_less.
Base class allowing use of the member function shared_from_this.
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.