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#if __cplusplus >= 202002L
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)
557 struct _Sp_make_shared_tag
560 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
561 friend class _Sp_counted_ptr_inplace;
563 static const type_info&
564 _S_ti() noexcept _GLIBCXX_VISIBILITY(default)
566 alignas(type_info)
static constexpr char __tag[
sizeof(type_info)] = { };
567 return reinterpret_cast<const type_info&
>(__tag);
570 static bool _S_eq(
const type_info&)
noexcept;
573 template<
typename _Alloc>
574 struct _Sp_alloc_shared_tag
579 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
580 class _Sp_counted_ptr_inplace final :
public _Sp_counted_base<_Lp>
582 class _Impl : _Sp_ebo_helper<0, _Alloc>
584 typedef _Sp_ebo_helper<0, _Alloc> _A_base;
587 explicit _Impl(_Alloc __a) noexcept : _A_base(__a) { }
589 _Alloc& _M_alloc() noexcept {
return _A_base::_S_get(*
this); }
591 __gnu_cxx::__aligned_buffer<_Tp> _M_storage;
595 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_ptr_inplace>;
598 template<
typename... _Args>
599 _Sp_counted_ptr_inplace(_Alloc __a, _Args&&... __args)
604 allocator_traits<_Alloc>::construct(__a, _M_ptr(),
605 std::forward<_Args>(__args)...);
608 ~_Sp_counted_ptr_inplace() noexcept { }
611 _M_dispose() noexcept
613 allocator_traits<_Alloc>::destroy(_M_impl._M_alloc(), _M_ptr());
618 _M_destroy() noexcept
620 __allocator_type __a(_M_impl._M_alloc());
621 __allocated_ptr<__allocator_type> __guard_ptr{ __a,
this };
622 this->~_Sp_counted_ptr_inplace();
626 friend class __shared_count<_Lp>;
633 auto __ptr =
const_cast<typename remove_cv<_Tp>::type*
>(_M_ptr());
638 if (&__ti == &_Sp_make_shared_tag::_S_ti()
641 __ti ==
typeid(_Sp_make_shared_tag)
643 _Sp_make_shared_tag::_S_eq(__ti)
650 _Tp* _M_ptr() noexcept {
return _M_impl._M_storage._M_ptr(); }
655#if __cplusplus >= 202002L
656# define __cpp_lib_smart_ptr_for_overwrite 202002L
657 struct _Sp_overwrite_tag { };
663 template<
typename _Tp,
typename _Alloc, _Lock_policy _Lp>
664 requires is_same_v<typename _Alloc::value_type, _Sp_overwrite_tag>
665 class _Sp_counted_ptr_inplace<_Tp, _Alloc, _Lp> final
667 template<typename _Tp, template<typename> class _Alloc, _Lock_policy _Lp>
668 class _Sp_counted_ptr_inplace<_Tp, _Alloc<_Sp_overwrite_tag>, _Lp> final
670 :
public _Sp_counted_base<_Lp>
672 [[no_unique_address]] _Alloc _M_alloc;
679 friend class __shared_count<_Lp>;
684 using __allocator_type = __alloc_rebind<_Alloc, _Sp_counted_ptr_inplace>;
686 _Sp_counted_ptr_inplace(
const _Alloc& __a)
689 ::new((
void*)_M_ptr()) _Tp;
692 ~_Sp_counted_ptr_inplace() noexcept { }
695 _M_dispose() noexcept
702 _M_destroy() noexcept
704 using pointer =
typename allocator_traits<__allocator_type>::pointer;
705 __allocator_type __a(_M_alloc);
706 auto __p = pointer_traits<pointer>::pointer_to(*
this);
707 __allocated_ptr<__allocator_type> __guard_ptr{ __a, __p };
708 this->~_Sp_counted_ptr_inplace();
717#if __cplusplus <= 201703L
718# define __cpp_lib_shared_ptr_arrays 201611L
720# define __cpp_lib_shared_ptr_arrays 201707L
722 struct _Sp_overwrite_tag;
725 template<
typename _Alloc>
726 struct _Sp_counted_array_base
728 [[no_unique_address]] _Alloc _M_alloc{};
730 bool _M_overwrite =
false;
732 typename allocator_traits<_Alloc>::pointer
733 _M_alloc_array(
size_t __tail)
735 return allocator_traits<_Alloc>::allocate(_M_alloc, _M_n + __tail);
739 _M_dealloc_array(
typename allocator_traits<_Alloc>::pointer __p,
742 allocator_traits<_Alloc>::deallocate(_M_alloc, __p, _M_n + __tail);
746 template<
typename _Init>
748 _M_init(
typename allocator_traits<_Alloc>::value_type* __p,
751 using _Tp = remove_pointer_t<_Init>;
752 using _Up =
typename allocator_traits<_Alloc>::value_type;
754 if constexpr (is_same_v<_Init, _Sp_overwrite_tag>)
759 else if (__init ==
nullptr)
760 std::__uninitialized_default_n_a(__p, _M_n, _M_alloc);
761 else if constexpr (!is_array_v<_Tp>)
762 std::__uninitialized_fill_n_a(__p, _M_n, *__init, _M_alloc);
765#pragma GCC diagnostic push
766#pragma GCC diagnostic ignored "-Wunused-local-typedefs"
769 using value_type = _Up;
770 using difference_type = ptrdiff_t;
771 using pointer =
const _Up*;
772 using reference =
const _Up&;
773 using iterator_category = forward_iterator_tag;
779 _Iter& operator++() { ++_M_pos;
return *
this; }
780 _Iter operator++(
int) {
auto __i(*
this); ++_M_pos;
return __i; }
782 reference
operator*()
const {
return _M_p[_M_pos % _M_len]; }
783 pointer operator->()
const {
return _M_p + (_M_pos % _M_len); }
785 bool operator==(
const _Iter& __i)
const
786 {
return _M_pos == __i._M_pos; }
788#pragma GCC diagnostic pop
790 _Iter __first{_S_first_elem(__init),
sizeof(_Tp) /
sizeof(_Up)};
791 _Iter __last = __first;
792 __last._M_pos = _M_n;
793 std::__uninitialized_copy_a(__first, __last, __p, _M_alloc);
800 _M_dispose_array(
typename allocator_traits<_Alloc>::value_type* __p)
803 std::destroy_n(__p, _M_n);
808 allocator_traits<_Alloc>::destroy(_M_alloc, __p + __n);
813 template<
typename _Tp>
815 _S_first_elem(_Tp* __p) {
return __p; }
817 template<
typename _Tp,
size_t _Nm>
819 _S_first_elem(_Tp (*__p)[_Nm]) {
return _S_first_elem(*__p); }
824 template<
typename _Alloc, _Lock_policy _Lp>
825 class _Sp_counted_array final
826 :
public _Sp_counted_base<_Lp>, _Sp_counted_array_base<_Alloc>
828 using pointer =
typename allocator_traits<_Alloc>::pointer;
830 pointer _M_alloc_ptr;
834 friend class __shared_count<_Lp>;
837 _Sp_counted_array(
const _Sp_counted_array_base<_Alloc>& __a,
838 pointer __p) noexcept
839 : _Sp_counted_array_base<_Alloc>(__a), _M_alloc_ptr(__p)
842 ~_Sp_counted_array() =
default;
845 _M_dispose() noexcept
848 this->_M_dispose_array(_M_ptr());
853 _M_destroy() noexcept
855 _Sp_counted_array_base<_Alloc> __a = *
this;
856 pointer __p = _M_alloc_ptr;
857 this->~_Sp_counted_array();
858 __a._M_dealloc_array(__p, _S_tail());
863 static constexpr size_t
867 using _Tp =
typename allocator_traits<_Alloc>::value_type;
870 size_t __bytes =
sizeof(_Sp_counted_array);
873 if constexpr (
alignof(_Tp) <
alignof(_Sp_counted_array))
874 __bytes +=
alignof(_Sp_counted_array) -
alignof(_Tp);
876 return (__bytes +
sizeof(_Tp) - 1) /
sizeof(_Tp);
886 struct __sp_array_delete
888 template<
typename _Yp>
889 void operator()(_Yp* __p)
const {
delete[] __p; }
892 template<_Lock_policy _Lp>
896 template<
typename _Tp>
897 struct __not_alloc_shared_tag {
using type = void; };
899 template<
typename _Tp>
900 struct __not_alloc_shared_tag<_Sp_alloc_shared_tag<_Tp>> { };
902#if __cpp_lib_shared_ptr_arrays >= 201707L
903 template<
typename _Alloc>
904 struct __not_alloc_shared_tag<_Sp_counted_array_base<_Alloc>> { };
908 constexpr __shared_count() noexcept : _M_pi(0)
911 template<
typename _Ptr>
913 __shared_count(_Ptr __p) : _M_pi(0)
917 _M_pi =
new _Sp_counted_ptr<_Ptr, _Lp>(__p);
922 __throw_exception_again;
926 template<
typename _Ptr>
927 __shared_count(_Ptr __p, false_type)
928 : __shared_count(__p)
931 template<
typename _Ptr>
932 __shared_count(_Ptr __p, true_type)
933 : __shared_count(__p, __sp_array_delete{}, allocator<void>())
936 template<
typename _Ptr,
typename _Deleter,
937 typename =
typename __not_alloc_shared_tag<_Deleter>::type>
938 __shared_count(_Ptr __p, _Deleter __d)
939 : __shared_count(__p,
std::move(__d), allocator<void>())
942 template<
typename _Ptr,
typename _Deleter,
typename _Alloc,
943 typename =
typename __not_alloc_shared_tag<_Deleter>::type>
944 __shared_count(_Ptr __p, _Deleter __d, _Alloc __a) : _M_pi(0)
946 typedef _Sp_counted_deleter<_Ptr, _Deleter, _Alloc, _Lp> _Sp_cd_type;
949 typename _Sp_cd_type::__allocator_type __a2(__a);
950 auto __guard = std::__allocate_guarded(__a2);
951 _Sp_cd_type* __mem = __guard.get();
959 __throw_exception_again;
963 template<
typename _Tp,
typename _Alloc,
typename... _Args>
964 __shared_count(_Tp*& __p, _Sp_alloc_shared_tag<_Alloc> __a,
967 typedef _Sp_counted_ptr_inplace<_Tp, _Alloc, _Lp> _Sp_cp_type;
968 typename _Sp_cp_type::__allocator_type __a2(__a._M_a);
969 auto __guard = std::__allocate_guarded(__a2);
970 _Sp_cp_type* __mem = __guard.get();
971 auto __pi = ::new (__mem)
972 _Sp_cp_type(__a._M_a, std::forward<_Args>(__args)...);
975 __p = __pi->_M_ptr();
978#if __cpp_lib_shared_ptr_arrays >= 201707L
979 template<
typename _Tp,
typename _Alloc,
typename _Init>
980 __shared_count(_Tp*& __p,
const _Sp_counted_array_base<_Alloc>& __a,
983 using _Up = remove_all_extents_t<_Tp>;
984 static_assert(is_same_v<_Up, typename _Alloc::value_type>);
986 using _Sp_ca_type = _Sp_counted_array<_Alloc, _Lp>;
987 const size_t __tail = _Sp_ca_type::_S_tail();
989 struct _Guarded_ptr : _Sp_counted_array_base<_Alloc>
991 typename allocator_traits<_Alloc>::pointer _M_ptr;
993 _Guarded_ptr(_Sp_counted_array_base<_Alloc> __a)
994 : _Sp_counted_array_base<_Alloc>(__a),
995 _M_ptr(this->_M_alloc_array(_Sp_ca_type::_S_tail()))
1001 this->_M_dealloc_array(_M_ptr, _Sp_ca_type::_S_tail());
1005 _Guarded_ptr __guard{__a};
1007 __guard._M_init(__raw, __init);
1009 void* __c = __raw + __a._M_n;
1010 if constexpr (
alignof(_Up) <
alignof(_Sp_ca_type))
1012 size_t __space =
sizeof(_Up) * __tail;
1013 __c =
std::align(
alignof(_Sp_ca_type),
sizeof(_Sp_ca_type),
1016 auto __pi = ::new(__c) _Sp_ca_type(__guard, __guard._M_ptr);
1017 __guard._M_ptr =
nullptr;
1019 __p =
reinterpret_cast<_Tp*
>(__raw);
1023#if _GLIBCXX_USE_DEPRECATED
1024#pragma GCC diagnostic push
1025#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1027 template<
typename _Tp>
1030#pragma GCC diagnostic pop
1034 template<
typename _Tp,
typename _Del>
1040 if (__r.get() ==
nullptr)
1043 using _Ptr =
typename unique_ptr<_Tp, _Del>::pointer;
1044 using _Del2 = __conditional_t<is_reference<_Del>::value,
1045 reference_wrapper<typename remove_reference<_Del>::type>,
1048 = _Sp_counted_deleter<_Ptr, _Del2, allocator<void>, _Lp>;
1049 using _Alloc = allocator<_Sp_cd_type>;
1050 using _Alloc_traits = allocator_traits<_Alloc>;
1052 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1);
1056 _Alloc_traits::construct(__a, __mem, __r.release(),
1057 std::forward<_Del>(__r.get_deleter()));
1062 explicit __shared_count(
const __weak_count<_Lp>& __r);
1066 __shared_count(
const __weak_count<_Lp>& __r, std::nothrow_t)
noexcept;
1068 ~__shared_count() noexcept
1070 if (_M_pi !=
nullptr)
1071 _M_pi->_M_release();
1074 __shared_count(
const __shared_count& __r) noexcept
1077 if (_M_pi !=
nullptr)
1078 _M_pi->_M_add_ref_copy();
1082 operator=(
const __shared_count& __r)
noexcept
1084 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1087 if (__tmp !=
nullptr)
1088 __tmp->_M_add_ref_copy();
1089 if (_M_pi !=
nullptr)
1090 _M_pi->_M_release();
1097 _M_swap(__shared_count& __r)
noexcept
1099 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1105 _M_get_use_count() const noexcept
1106 {
return _M_pi ? _M_pi->_M_get_use_count() : 0; }
1109 _M_unique() const noexcept
1110 {
return this->_M_get_use_count() == 1; }
1114 {
return _M_pi ? _M_pi->_M_get_deleter(__ti) :
nullptr; }
1117 _M_less(
const __shared_count& __rhs)
const noexcept
1121 _M_less(
const __weak_count<_Lp>& __rhs)
const noexcept
1126 operator==(
const __shared_count& __a,
const __shared_count& __b)
noexcept
1127 {
return __a._M_pi == __b._M_pi; }
1130 friend class __weak_count<_Lp>;
1131#if __cplusplus >= 202002L
1132 template<
typename>
friend class _Sp_atomic;
1135 _Sp_counted_base<_Lp>* _M_pi;
1139 template<_Lock_policy _Lp>
1143 constexpr __weak_count() noexcept : _M_pi(
nullptr)
1146 __weak_count(
const __shared_count<_Lp>& __r) noexcept
1149 if (_M_pi !=
nullptr)
1150 _M_pi->_M_weak_add_ref();
1153 __weak_count(
const __weak_count& __r) noexcept
1156 if (_M_pi !=
nullptr)
1157 _M_pi->_M_weak_add_ref();
1160 __weak_count(__weak_count&& __r) noexcept
1162 { __r._M_pi =
nullptr; }
1164 ~__weak_count() noexcept
1166 if (_M_pi !=
nullptr)
1167 _M_pi->_M_weak_release();
1171 operator=(
const __shared_count<_Lp>& __r)
noexcept
1173 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1174 if (__tmp !=
nullptr)
1175 __tmp->_M_weak_add_ref();
1176 if (_M_pi !=
nullptr)
1177 _M_pi->_M_weak_release();
1183 operator=(
const __weak_count& __r)
noexcept
1185 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1186 if (__tmp !=
nullptr)
1187 __tmp->_M_weak_add_ref();
1188 if (_M_pi !=
nullptr)
1189 _M_pi->_M_weak_release();
1195 operator=(__weak_count&& __r)
noexcept
1197 if (_M_pi !=
nullptr)
1198 _M_pi->_M_weak_release();
1200 __r._M_pi =
nullptr;
1205 _M_swap(__weak_count& __r)
noexcept
1207 _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
1213 _M_get_use_count() const noexcept
1214 {
return _M_pi !=
nullptr ? _M_pi->_M_get_use_count() : 0; }
1217 _M_less(
const __weak_count& __rhs)
const noexcept
1221 _M_less(
const __shared_count<_Lp>& __rhs)
const noexcept
1226 operator==(
const __weak_count& __a,
const __weak_count& __b)
noexcept
1227 {
return __a._M_pi == __b._M_pi; }
1230 friend class __shared_count<_Lp>;
1231#if __cplusplus >= 202002L
1232 template<
typename>
friend class _Sp_atomic;
1235 _Sp_counted_base<_Lp>* _M_pi;
1239 template<_Lock_policy _Lp>
1241 __shared_count<_Lp>::__shared_count(
const __weak_count<_Lp>& __r)
1244 if (_M_pi ==
nullptr || !_M_pi->_M_add_ref_lock_nothrow())
1245 __throw_bad_weak_ptr();
1249 template<_Lock_policy _Lp>
1251 __shared_count<_Lp>::
1252 __shared_count(
const __weak_count<_Lp>& __r, std::nothrow_t) noexcept
1255 if (_M_pi && !_M_pi->_M_add_ref_lock_nothrow())
1263 template<
typename _Yp_ptr,
typename _Tp_ptr>
1264 struct __sp_compatible_with
1268 template<
typename _Yp,
typename _Tp>
1269 struct __sp_compatible_with<_Yp*, _Tp*>
1270 : is_convertible<_Yp*, _Tp*>::type
1273 template<
typename _Up,
size_t _Nm>
1274 struct __sp_compatible_with<_Up(*)[_Nm], _Up(*)[]>
1278 template<
typename _Up,
size_t _Nm>
1279 struct __sp_compatible_with<_Up(*)[_Nm],
const _Up(*)[]>
1283 template<
typename _Up,
size_t _Nm>
1284 struct __sp_compatible_with<_Up(*)[_Nm],
volatile _Up(*)[]>
1288 template<
typename _Up,
size_t _Nm>
1289 struct __sp_compatible_with<_Up(*)[_Nm],
const volatile _Up(*)[]>
1294 template<
typename _Up,
size_t _Nm,
typename _Yp,
typename =
void>
1295 struct __sp_is_constructible_arrN
1299 template<
typename _Up,
size_t _Nm,
typename _Yp>
1300 struct __sp_is_constructible_arrN<_Up, _Nm, _Yp, __void_t<_Yp[_Nm]>>
1301 : is_convertible<_Yp(*)[_Nm], _Up(*)[_Nm]>::type
1305 template<
typename _Up,
typename _Yp,
typename =
void>
1306 struct __sp_is_constructible_arr
1310 template<
typename _Up,
typename _Yp>
1311 struct __sp_is_constructible_arr<_Up, _Yp, __void_t<_Yp[]>>
1312 : is_convertible<_Yp(*)[], _Up(*)[]>::type
1316 template<
typename _Tp,
typename _Yp>
1317 struct __sp_is_constructible;
1320 template<
typename _Up,
size_t _Nm,
typename _Yp>
1321 struct __sp_is_constructible<_Up[_Nm], _Yp>
1322 : __sp_is_constructible_arrN<_Up, _Nm, _Yp>::type
1326 template<
typename _Up,
typename _Yp>
1327 struct __sp_is_constructible<_Up[], _Yp>
1328 : __sp_is_constructible_arr<_Up, _Yp>::type
1332 template<
typename _Tp,
typename _Yp>
1333 struct __sp_is_constructible
1334 : is_convertible<_Yp*, _Tp*>::type
1339 template<
typename _Tp, _Lock_policy _Lp,
1340 bool = is_array<_Tp>::value,
bool = is_void<_Tp>::value>
1341 class __shared_ptr_access
1344 using element_type = _Tp;
1349 __glibcxx_assert(_M_get() !=
nullptr);
1354 operator->() const noexcept
1356 _GLIBCXX_DEBUG_PEDASSERT(_M_get() !=
nullptr);
1362 _M_get() const noexcept
1363 {
return static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get(); }
1367 template<
typename _Tp, _Lock_policy _Lp>
1368 class __shared_ptr_access<_Tp, _Lp, false, true>
1371 using element_type = _Tp;
1374 operator->() const noexcept
1376 auto __ptr =
static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get();
1377 _GLIBCXX_DEBUG_PEDASSERT(__ptr !=
nullptr);
1383 template<
typename _Tp, _Lock_policy _Lp>
1384 class __shared_ptr_access<_Tp, _Lp, true, false>
1387 using element_type =
typename remove_extent<_Tp>::type;
1389#if __cplusplus <= 201402L
1390 [[__deprecated__(
"shared_ptr<T[]>::operator* is absent from C++17")]]
1394 __glibcxx_assert(_M_get() !=
nullptr);
1398 [[__deprecated__(
"shared_ptr<T[]>::operator-> is absent from C++17")]]
1400 operator->() const noexcept
1402 _GLIBCXX_DEBUG_PEDASSERT(_M_get() !=
nullptr);
1408 operator[](ptrdiff_t __i)
const noexcept
1410 __glibcxx_assert(_M_get() !=
nullptr);
1411 __glibcxx_assert(!extent<_Tp>::value || __i < extent<_Tp>::value);
1412 return _M_get()[__i];
1417 _M_get() const noexcept
1418 {
return static_cast<const __shared_ptr<_Tp, _Lp>*
>(
this)->get(); }
1421 template<
typename _Tp, _Lock_policy _Lp>
1423 :
public __shared_ptr_access<_Tp, _Lp>
1426 using element_type =
typename remove_extent<_Tp>::type;
1430 template<
typename _Yp>
1432 =
typename enable_if<__sp_is_constructible<_Tp, _Yp>::value>::type;
1435 template<
typename _Yp,
typename _Res =
void>
1436 using _Compatible =
typename
1437 enable_if<__sp_compatible_with<_Yp*, _Tp*>::value, _Res>::type;
1440 template<
typename _Yp>
1441 using _Assignable = _Compatible<_Yp, __shared_ptr&>;
1444 template<
typename _Yp,
typename _Del,
typename _Res = void,
1445 typename _Ptr =
typename unique_ptr<_Yp, _Del>::pointer>
1446 using _UniqCompatible = __enable_if_t<__and_<
1447 __sp_compatible_with<_Yp*, _Tp*>,
1448 is_convertible<_Ptr, element_type*>,
1449 is_move_constructible<_Del>
1453 template<
typename _Yp,
typename _Del>
1454 using _UniqAssignable = _UniqCompatible<_Yp, _Del, __shared_ptr&>;
1458#if __cplusplus > 201402L
1459 using weak_type = __weak_ptr<_Tp, _Lp>;
1462 constexpr __shared_ptr() noexcept
1463 : _M_ptr(0), _M_refcount()
1466 template<
typename _Yp,
typename = _SafeConv<_Yp>>
1468 __shared_ptr(_Yp* __p)
1469 : _M_ptr(__p), _M_refcount(__p, typename is_array<_Tp>::type())
1471 static_assert( !is_void<_Yp>::value,
"incomplete type" );
1472 static_assert(
sizeof(_Yp) > 0,
"incomplete type" );
1473 _M_enable_shared_from_this_with(__p);
1476 template<
typename _Yp,
typename _Deleter,
typename = _SafeConv<_Yp>>
1477 __shared_ptr(_Yp* __p, _Deleter __d)
1478 : _M_ptr(__p), _M_refcount(__p,
std::
move(__d))
1480 static_assert(__is_invocable<_Deleter&, _Yp*&>::value,
1481 "deleter expression d(p) is well-formed");
1482 _M_enable_shared_from_this_with(__p);
1485 template<
typename _Yp,
typename _Deleter,
typename _Alloc,
1486 typename = _SafeConv<_Yp>>
1487 __shared_ptr(_Yp* __p, _Deleter __d, _Alloc __a)
1490 static_assert(__is_invocable<_Deleter&, _Yp*&>::value,
1491 "deleter expression d(p) is well-formed");
1492 _M_enable_shared_from_this_with(__p);
1495 template<
typename _Deleter>
1496 __shared_ptr(nullptr_t __p, _Deleter __d)
1497 : _M_ptr(0), _M_refcount(__p,
std::
move(__d))
1500 template<
typename _Deleter,
typename _Alloc>
1501 __shared_ptr(nullptr_t __p, _Deleter __d, _Alloc __a)
1506 template<
typename _Yp>
1507 __shared_ptr(
const __shared_ptr<_Yp, _Lp>& __r,
1508 element_type* __p) noexcept
1509 : _M_ptr(__p), _M_refcount(__r._M_refcount)
1513 template<
typename _Yp>
1514 __shared_ptr(__shared_ptr<_Yp, _Lp>&& __r,
1515 element_type* __p) noexcept
1516 : _M_ptr(__p), _M_refcount()
1518 _M_refcount._M_swap(__r._M_refcount);
1519 __r._M_ptr =
nullptr;
1522 __shared_ptr(
const __shared_ptr&)
noexcept =
default;
1523 __shared_ptr& operator=(
const __shared_ptr&)
noexcept =
default;
1524 ~__shared_ptr() =
default;
1526 template<
typename _Yp,
typename = _Compatible<_Yp>>
1527 __shared_ptr(
const __shared_ptr<_Yp, _Lp>& __r) noexcept
1528 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
1531 __shared_ptr(__shared_ptr&& __r) noexcept
1532 : _M_ptr(__r._M_ptr), _M_refcount()
1534 _M_refcount._M_swap(__r._M_refcount);
1535 __r._M_ptr =
nullptr;
1538 template<
typename _Yp,
typename = _Compatible<_Yp>>
1539 __shared_ptr(__shared_ptr<_Yp, _Lp>&& __r) noexcept
1540 : _M_ptr(__r._M_ptr), _M_refcount()
1542 _M_refcount._M_swap(__r._M_refcount);
1543 __r._M_ptr =
nullptr;
1546 template<
typename _Yp,
typename = _Compatible<_Yp>>
1547 explicit __shared_ptr(
const __weak_ptr<_Yp, _Lp>& __r)
1548 : _M_refcount(__r._M_refcount)
1552 _M_ptr = __r._M_ptr;
1556 template<
typename _Yp,
typename _Del,
1557 typename = _UniqCompatible<_Yp, _Del>>
1558 __shared_ptr(unique_ptr<_Yp, _Del>&& __r)
1559 : _M_ptr(__r.get()), _M_refcount()
1561 auto __raw = __to_address(__r.get());
1562 _M_refcount = __shared_count<_Lp>(
std::move(__r));
1563 _M_enable_shared_from_this_with(__raw);
1566#if __cplusplus <= 201402L && _GLIBCXX_USE_DEPRECATED
1569 template<
typename _Tp1,
typename _Del,
1570 typename enable_if<__and_<
1571 __not_<is_array<_Tp>>, is_array<_Tp1>,
1572 is_convertible<typename unique_ptr<_Tp1, _Del>::pointer, _Tp*>
1573 >::value,
bool>::type =
true>
1574 __shared_ptr(unique_ptr<_Tp1, _Del>&& __r, __sp_array_delete)
1575 : _M_ptr(__r.get()), _M_refcount()
1577 auto __raw = __to_address(__r.get());
1578 _M_refcount = __shared_count<_Lp>(
std::move(__r));
1579 _M_enable_shared_from_this_with(__raw);
1584#if _GLIBCXX_USE_DEPRECATED
1585#pragma GCC diagnostic push
1586#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1588 template<
typename _Yp,
typename = _Compatible<_Yp>>
1589 __shared_ptr(auto_ptr<_Yp>&& __r);
1590#pragma GCC diagnostic pop
1593 constexpr __shared_ptr(nullptr_t) noexcept : __shared_ptr() { }
1595 template<
typename _Yp>
1597 operator=(
const __shared_ptr<_Yp, _Lp>& __r)
noexcept
1599 _M_ptr = __r._M_ptr;
1600 _M_refcount = __r._M_refcount;
1604#if _GLIBCXX_USE_DEPRECATED
1605#pragma GCC diagnostic push
1606#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
1607 template<
typename _Yp>
1609 operator=(auto_ptr<_Yp>&& __r)
1611 __shared_ptr(
std::move(__r)).swap(*
this);
1614#pragma GCC diagnostic pop
1618 operator=(__shared_ptr&& __r)
noexcept
1620 __shared_ptr(
std::move(__r)).swap(*
this);
1626 operator=(__shared_ptr<_Yp, _Lp>&& __r)
noexcept
1628 __shared_ptr(
std::move(__r)).swap(*
this);
1632 template<
typename _Yp,
typename _Del>
1633 _UniqAssignable<_Yp, _Del>
1634 operator=(unique_ptr<_Yp, _Del>&& __r)
1636 __shared_ptr(
std::move(__r)).swap(*
this);
1642 { __shared_ptr().swap(*
this); }
1644 template<
typename _Yp>
1649 __glibcxx_assert(__p ==
nullptr || __p != _M_ptr);
1650 __shared_ptr(__p).swap(*
this);
1653 template<
typename _Yp,
typename _Deleter>
1655 reset(_Yp* __p, _Deleter __d)
1656 { __shared_ptr(__p,
std::move(__d)).swap(*
this); }
1658 template<
typename _Yp,
typename _Deleter,
typename _Alloc>
1660 reset(_Yp* __p, _Deleter __d, _Alloc __a)
1665 get() const noexcept
1669 explicit operator bool() const noexcept
1670 {
return _M_ptr !=
nullptr; }
1674 unique() const noexcept
1675 {
return _M_refcount._M_unique(); }
1679 use_count() const noexcept
1680 {
return _M_refcount._M_get_use_count(); }
1684 swap(__shared_ptr<_Tp, _Lp>& __other)
noexcept
1687 _M_refcount._M_swap(__other._M_refcount);
1697 template<
typename _Tp1>
1699 owner_before(__shared_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1700 {
return _M_refcount._M_less(__rhs._M_refcount); }
1702 template<
typename _Tp1>
1704 owner_before(__weak_ptr<_Tp1, _Lp>
const& __rhs)
const noexcept
1705 {
return _M_refcount._M_less(__rhs._M_refcount); }
1710 template<
typename _Alloc,
typename... _Args>
1711 __shared_ptr(_Sp_alloc_shared_tag<_Alloc> __tag, _Args&&... __args)
1712 : _M_ptr(), _M_refcount(_M_ptr, __tag,
std::
forward<_Args>(__args)...)
1713 { _M_enable_shared_from_this_with(_M_ptr); }
1715 template<
typename _Tp1, _Lock_policy _Lp1,
typename _Alloc,
1717 friend __shared_ptr<_Tp1, _Lp1>
1718 __allocate_shared(
const _Alloc& __a, _Args&&... __args);
1720#if __cpp_lib_shared_ptr_arrays >= 201707L
1722 template<
typename _Alloc,
typename _Init = const remove_extent_t<_Tp>*>
1723 __shared_ptr(
const _Sp_counted_array_base<_Alloc>& __a,
1724 _Init __init =
nullptr)
1725 : _M_ptr(), _M_refcount(_M_ptr, __a, __init)
1731 __shared_ptr(
const __weak_ptr<_Tp, _Lp>& __r, std::nothrow_t) noexcept
1732 : _M_refcount(__r._M_refcount, std::nothrow)
1734 _M_ptr = _M_refcount._M_get_use_count() ? __r._M_ptr :
nullptr;
1737 friend class __weak_ptr<_Tp, _Lp>;
1741 template<
typename _Yp>
1742 using __esft_base_t =
decltype(__enable_shared_from_this_base(
1744 std::declval<_Yp*>()));
1747 template<
typename _Yp,
typename =
void>
1748 struct __has_esft_base
1751 template<
typename _Yp>
1752 struct __has_esft_base<_Yp, __void_t<__esft_base_t<_Yp>>>
1753 : __not_<is_array<_Tp>> { };
1755 template<typename _Yp, typename _Yp2 = typename remove_cv<_Yp>::type>
1756 typename enable_if<__has_esft_base<_Yp2>::value>::type
1757 _M_enable_shared_from_this_with(_Yp* __p)
noexcept
1759 if (
auto __base = __enable_shared_from_this_base(_M_refcount, __p))
1760 __base->_M_weak_assign(
const_cast<_Yp2*
>(__p), _M_refcount);
1763 template<typename _Yp, typename _Yp2 = typename remove_cv<_Yp>::type>
1764 typename enable_if<!__has_esft_base<_Yp2>::value>::type
1765 _M_enable_shared_from_this_with(_Yp*)
noexcept
1770 {
return _M_refcount._M_get_deleter(__ti); }
1772 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __shared_ptr;
1773 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __weak_ptr;
1775 template<
typename _Del,
typename _Tp1, _Lock_policy _Lp1>
1776 friend _Del* get_deleter(
const __shared_ptr<_Tp1, _Lp1>&)
noexcept;
1778 template<
typename _Del,
typename _Tp1>
1779 friend _Del* get_deleter(
const shared_ptr<_Tp1>&)
noexcept;
1781#if __cplusplus >= 202002L
1782 friend _Sp_atomic<shared_ptr<_Tp>>;
1785 element_type* _M_ptr;
1786 __shared_count<_Lp> _M_refcount;
1791 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1793 operator==(
const __shared_ptr<_Tp1, _Lp>& __a,
1794 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1795 {
return __a.get() == __b.get(); }
1797 template<
typename _Tp, _Lock_policy _Lp>
1799 operator==(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1802#ifdef __cpp_lib_three_way_comparison
1803 template<
typename _Tp,
typename _Up, _Lock_policy _Lp>
1804 inline strong_ordering
1805 operator<=>(
const __shared_ptr<_Tp, _Lp>& __a,
1806 const __shared_ptr<_Up, _Lp>& __b)
noexcept
1807 {
return compare_three_way()(__a.get(), __b.get()); }
1809 template<
typename _Tp, _Lock_policy _Lp>
1810 inline strong_ordering
1811 operator<=>(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1813 using pointer =
typename __shared_ptr<_Tp, _Lp>::element_type*;
1814 return compare_three_way()(__a.get(),
static_cast<pointer
>(
nullptr));
1817 template<
typename _Tp, _Lock_policy _Lp>
1819 operator==(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1822 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1824 operator!=(
const __shared_ptr<_Tp1, _Lp>& __a,
1825 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1826 {
return __a.get() != __b.get(); }
1828 template<
typename _Tp, _Lock_policy _Lp>
1830 operator!=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1831 {
return (
bool)__a; }
1833 template<
typename _Tp, _Lock_policy _Lp>
1835 operator!=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1836 {
return (
bool)__a; }
1838 template<
typename _Tp,
typename _Up, _Lock_policy _Lp>
1840 operator<(
const __shared_ptr<_Tp, _Lp>& __a,
1841 const __shared_ptr<_Up, _Lp>& __b)
noexcept
1843 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1844 using _Up_elt =
typename __shared_ptr<_Up, _Lp>::element_type;
1845 using _Vp =
typename common_type<_Tp_elt*, _Up_elt*>::type;
1846 return less<_Vp>()(__a.get(), __b.get());
1849 template<
typename _Tp, _Lock_policy _Lp>
1851 operator<(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1853 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1854 return less<_Tp_elt*>()(__a.get(),
nullptr);
1857 template<
typename _Tp, _Lock_policy _Lp>
1859 operator<(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1861 using _Tp_elt =
typename __shared_ptr<_Tp, _Lp>::element_type;
1862 return less<_Tp_elt*>()(
nullptr, __a.get());
1865 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1867 operator<=(
const __shared_ptr<_Tp1, _Lp>& __a,
1868 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1869 {
return !(__b < __a); }
1871 template<
typename _Tp, _Lock_policy _Lp>
1873 operator<=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1874 {
return !(
nullptr < __a); }
1876 template<
typename _Tp, _Lock_policy _Lp>
1878 operator<=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1879 {
return !(__a <
nullptr); }
1881 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1883 operator>(
const __shared_ptr<_Tp1, _Lp>& __a,
1884 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1885 {
return (__b < __a); }
1887 template<
typename _Tp, _Lock_policy _Lp>
1889 operator>(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1890 {
return nullptr < __a; }
1892 template<
typename _Tp, _Lock_policy _Lp>
1894 operator>(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1895 {
return __a <
nullptr; }
1897 template<
typename _Tp1,
typename _Tp2, _Lock_policy _Lp>
1899 operator>=(
const __shared_ptr<_Tp1, _Lp>& __a,
1900 const __shared_ptr<_Tp2, _Lp>& __b)
noexcept
1901 {
return !(__a < __b); }
1903 template<
typename _Tp, _Lock_policy _Lp>
1905 operator>=(
const __shared_ptr<_Tp, _Lp>& __a, nullptr_t)
noexcept
1906 {
return !(__a <
nullptr); }
1908 template<
typename _Tp, _Lock_policy _Lp>
1910 operator>=(nullptr_t,
const __shared_ptr<_Tp, _Lp>& __a)
noexcept
1911 {
return !(
nullptr < __a); }
1915 template<
typename _Tp, _Lock_policy _Lp>
1917 swap(__shared_ptr<_Tp, _Lp>& __a, __shared_ptr<_Tp, _Lp>& __b)
noexcept
1927 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1928 inline __shared_ptr<_Tp, _Lp>
1931 using _Sp = __shared_ptr<_Tp, _Lp>;
1932 return _Sp(__r,
static_cast<typename _Sp::element_type*
>(__r.get()));
1940 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1941 inline __shared_ptr<_Tp, _Lp>
1944 using _Sp = __shared_ptr<_Tp, _Lp>;
1945 return _Sp(__r,
const_cast<typename _Sp::element_type*
>(__r.get()));
1953 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1954 inline __shared_ptr<_Tp, _Lp>
1957 using _Sp = __shared_ptr<_Tp, _Lp>;
1958 if (
auto* __p =
dynamic_cast<typename _Sp::element_type*
>(__r.get()))
1959 return _Sp(__r, __p);
1963#if __cplusplus > 201402L
1964 template<
typename _Tp,
typename _Tp1, _Lock_policy _Lp>
1965 inline __shared_ptr<_Tp, _Lp>
1966 reinterpret_pointer_cast(
const __shared_ptr<_Tp1, _Lp>& __r)
noexcept
1968 using _Sp = __shared_ptr<_Tp, _Lp>;
1969 return _Sp(__r,
reinterpret_cast<typename _Sp::element_type*
>(__r.get()));
1973 template<
typename _Tp, _Lock_policy _Lp>
1976 template<
typename _Yp,
typename _Res =
void>
1977 using _Compatible =
typename
1978 enable_if<__sp_compatible_with<_Yp*, _Tp*>::value, _Res>::type;
1981 template<
typename _Yp>
1982 using _Assignable = _Compatible<_Yp, __weak_ptr&>;
1985 using element_type =
typename remove_extent<_Tp>::type;
1987 constexpr __weak_ptr() noexcept
1988 : _M_ptr(
nullptr), _M_refcount()
1991 __weak_ptr(
const __weak_ptr&)
noexcept =
default;
1993 ~__weak_ptr() =
default;
2009 template<
typename _Yp,
typename = _Compatible<_Yp>>
2010 __weak_ptr(
const __weak_ptr<_Yp, _Lp>& __r) noexcept
2011 : _M_refcount(__r._M_refcount)
2012 { _M_ptr = __r.lock().get(); }
2014 template<
typename _Yp,
typename = _Compatible<_Yp>>
2015 __weak_ptr(
const __shared_ptr<_Yp, _Lp>& __r) noexcept
2016 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
2019 __weak_ptr(__weak_ptr&& __r) noexcept
2020 : _M_ptr(__r._M_ptr), _M_refcount(
std::move(__r._M_refcount))
2021 { __r._M_ptr =
nullptr; }
2023 template<
typename _Yp,
typename = _Compatible<_Yp>>
2024 __weak_ptr(__weak_ptr<_Yp, _Lp>&& __r) noexcept
2025 : _M_ptr(__r.lock().get()), _M_refcount(
std::move(__r._M_refcount))
2026 { __r._M_ptr =
nullptr; }
2029 operator=(
const __weak_ptr& __r)
noexcept =
default;
2031 template<
typename _Yp>
2033 operator=(
const __weak_ptr<_Yp, _Lp>& __r)
noexcept
2035 _M_ptr = __r.lock().get();
2036 _M_refcount = __r._M_refcount;
2040 template<
typename _Yp>
2042 operator=(
const __shared_ptr<_Yp, _Lp>& __r)
noexcept
2044 _M_ptr = __r._M_ptr;
2045 _M_refcount = __r._M_refcount;
2050 operator=(__weak_ptr&& __r)
noexcept
2056 template<
typename _Yp>
2058 operator=(__weak_ptr<_Yp, _Lp>&& __r)
noexcept
2060 _M_ptr = __r.lock().get();
2061 _M_refcount =
std::move(__r._M_refcount);
2062 __r._M_ptr =
nullptr;
2066 __shared_ptr<_Tp, _Lp>
2067 lock() const noexcept
2068 {
return __shared_ptr<element_type, _Lp>(*
this, std::nothrow); }
2071 use_count() const noexcept
2072 {
return _M_refcount._M_get_use_count(); }
2075 expired() const noexcept
2076 {
return _M_refcount._M_get_use_count() == 0; }
2078 template<
typename _Tp1>
2080 owner_before(
const __shared_ptr<_Tp1, _Lp>& __rhs)
const noexcept
2081 {
return _M_refcount._M_less(__rhs._M_refcount); }
2083 template<
typename _Tp1>
2085 owner_before(
const __weak_ptr<_Tp1, _Lp>& __rhs)
const noexcept
2086 {
return _M_refcount._M_less(__rhs._M_refcount); }
2090 { __weak_ptr().swap(*
this); }
2093 swap(__weak_ptr& __s)
noexcept
2096 _M_refcount._M_swap(__s._M_refcount);
2102 _M_assign(_Tp* __ptr,
const __shared_count<_Lp>& __refcount)
noexcept
2104 if (use_count() == 0)
2107 _M_refcount = __refcount;
2111 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __shared_ptr;
2112 template<
typename _Tp1, _Lock_policy _Lp1>
friend class __weak_ptr;
2113 friend class __enable_shared_from_this<_Tp, _Lp>;
2114 friend class enable_shared_from_this<_Tp>;
2115#if __cplusplus >= 202002L
2116 friend _Sp_atomic<weak_ptr<_Tp>>;
2119 element_type* _M_ptr;
2120 __weak_count<_Lp> _M_refcount;
2124 template<
typename _Tp, _Lock_policy _Lp>
2126 swap(__weak_ptr<_Tp, _Lp>& __a, __weak_ptr<_Tp, _Lp>& __b)
noexcept
2129#pragma GCC diagnostic push
2130#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
2131 template<
typename _Tp,
typename _Tp1>
2132 struct _Sp_owner_less :
public binary_function<_Tp, _Tp, bool>
2135 operator()(
const _Tp& __lhs,
const _Tp& __rhs)
const noexcept
2136 {
return __lhs.owner_before(__rhs); }
2139 operator()(
const _Tp& __lhs,
const _Tp1& __rhs)
const noexcept
2140 {
return __lhs.owner_before(__rhs); }
2143 operator()(
const _Tp1& __lhs,
const _Tp& __rhs)
const noexcept
2144 {
return __lhs.owner_before(__rhs); }
2146#pragma GCC diagnostic pop
2149 struct _Sp_owner_less<void, void>
2151 template<
typename _Tp,
typename _Up>
2153 operator()(
const _Tp& __lhs,
const _Up& __rhs)
const noexcept
2154 ->
decltype(__lhs.owner_before(__rhs))
2155 {
return __lhs.owner_before(__rhs); }
2157 using is_transparent = void;
2160 template<
typename _Tp, _Lock_policy _Lp>
2161 struct owner_less<__shared_ptr<_Tp, _Lp>>
2162 :
public _Sp_owner_less<__shared_ptr<_Tp, _Lp>, __weak_ptr<_Tp, _Lp>>
2165 template<
typename _Tp, _Lock_policy _Lp>
2166 struct owner_less<__weak_ptr<_Tp, _Lp>>
2167 :
public _Sp_owner_less<__weak_ptr<_Tp, _Lp>, __shared_ptr<_Tp, _Lp>>
2171 template<
typename _Tp, _Lock_policy _Lp>
2172 class __enable_shared_from_this
2175 constexpr __enable_shared_from_this() noexcept { }
2177 __enable_shared_from_this(
const __enable_shared_from_this&)
noexcept { }
2179 __enable_shared_from_this&
2180 operator=(
const __enable_shared_from_this&)
noexcept
2183 ~__enable_shared_from_this() { }
2186 __shared_ptr<_Tp, _Lp>
2188 {
return __shared_ptr<_Tp, _Lp>(this->_M_weak_this); }
2190 __shared_ptr<const _Tp, _Lp>
2191 shared_from_this()
const
2192 {
return __shared_ptr<const _Tp, _Lp>(this->_M_weak_this); }
2194#if __cplusplus > 201402L || !defined(__STRICT_ANSI__)
2195 __weak_ptr<_Tp, _Lp>
2196 weak_from_this() noexcept
2197 {
return this->_M_weak_this; }
2199 __weak_ptr<const _Tp, _Lp>
2200 weak_from_this() const noexcept
2201 {
return this->_M_weak_this; }
2205 template<
typename _Tp1>
2207 _M_weak_assign(_Tp1* __p,
const __shared_count<_Lp>& __n)
const noexcept
2208 { _M_weak_this._M_assign(__p, __n); }
2210 friend const __enable_shared_from_this*
2211 __enable_shared_from_this_base(
const __shared_count<_Lp>&,
2212 const __enable_shared_from_this* __p)
2215 template<
typename, _Lock_policy>
2216 friend class __shared_ptr;
2218 mutable __weak_ptr<_Tp, _Lp> _M_weak_this;
2221 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy,
2222 typename _Alloc,
typename... _Args>
2223 inline __shared_ptr<_Tp, _Lp>
2224 __allocate_shared(
const _Alloc& __a, _Args&&... __args)
2226 static_assert(!is_array<_Tp>::value,
"make_shared<T[]> not supported");
2228 return __shared_ptr<_Tp, _Lp>(_Sp_alloc_shared_tag<_Alloc>{__a},
2229 std::forward<_Args>(__args)...);
2232 template<
typename _Tp, _Lock_policy _Lp = __default_lock_policy,
2234 inline __shared_ptr<_Tp, _Lp>
2235 __make_shared(_Args&&... __args)
2237 typedef typename std::remove_const<_Tp>::type _Tp_nc;
2239 std::forward<_Args>(__args)...);
2243 template<
typename _Tp, _Lock_policy _Lp>
2244 struct hash<__shared_ptr<_Tp, _Lp>>
2245 :
public __hash_base<size_t, __shared_ptr<_Tp, _Lp>>
2248 operator()(
const __shared_ptr<_Tp, _Lp>& __s)
const noexcept
2255_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.
integral_constant< bool, true > true_type
The type used as a compile-time boolean with true value.
integral_constant< bool, 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.
void swap(any &__x, any &__y) noexcept
Exchange the states of two any objects.
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.
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.