From 0e89c366f707ff4ca4738f879fd5e6934bc57cc4 Mon Sep 17 00:00:00 2001 From: idealvin Date: Wed, 4 Sep 2024 18:44:31 +0800 Subject: [PATCH] unique, shared support virtual base class --- include/co/mem.h | 56 ++++++++++++++++++++++++++++++------------------ 1 file changed, 35 insertions(+), 21 deletions(-) diff --git a/include/co/mem.h b/include/co/mem.h index 2fa04d034..7a5a1ba92 100644 --- a/include/co/mem.h +++ b/include/co/mem.h @@ -171,7 +171,7 @@ class unique { if (_p) { static_cast(sizeof(T)); _p->~T(); - co::free(_s, _s->n); + co::free((char*)_p - _s[-2], _s[-1]); _p = 0; } } @@ -187,20 +187,23 @@ class unique { } private: - struct S { T o; size_t n; }; - union { S* _s; T* _p; }; + union { T* _p; uint32* _s; }; }; template inline unique make_unique(Args&&... args) { - struct S { T o; size_t n; }; - S* const s = (S*) co::alloc(sizeof(S)); + struct S { uint32 o; uint32 n; T t; }; + static_assert(alignof(S) <= 1024, ""); + const size_t off = (size_t) &((S*)0)->t; + S* const s = (S*) co::alloc(sizeof(S), alignof(S)); + T* const t = &s->t; if (s) { - new(s) T(std::forward(args)...); - s->n = sizeof(S); + new(t) T(std::forward(args)...); + ((uint32*)t)[-1] = sizeof(S); + ((uint32*)t)[-2] = (uint32)off; } unique x; - *(void**)&x = s; + *(void**)&x = t; return x; } @@ -217,7 +220,7 @@ class shared { shared(const shared& x) noexcept { _s = x._s; - if (_s) atomic_inc(&_s->refn, mo_relaxed); + if (_s) this->_ref(); } shared(shared&& x) noexcept { @@ -242,7 +245,7 @@ class shared { > = 0> shared(const shared& x) noexcept { _p = x.get(); - if (_s) atomic_inc(&_s->refn, mo_relaxed); + if (_s) this->_ref(); } templaterefn, mo_acq_rel) == 0) { + if (this->_unref() == 0) { static_cast(sizeof(T)); _p->~T(); - co::free(_s, _s->size); + co::free((char*)_p - _s[-2], _s[-1]); } _p = 0; } } size_t ref_count() const noexcept { - return _s ? atomic_load(&_s->refn, mo_relaxed) : 0; + return _s ? atomic_load(&_s[-3], mo_relaxed) : 0; } size_t use_count() const noexcept { @@ -307,21 +310,32 @@ class shared { } private: - struct S { T o; uint32 refn; uint32 size; }; - union { S* _s; T* _p; }; + union { T* _p; uint32* _s; }; + + void _ref() { + atomic_inc(&_s[-3], mo_relaxed); + } + + uint32 _unref() { + return atomic_dec(&_s[-3], mo_acq_rel); + } }; template inline shared make_shared(Args&&... args) { - struct S { T o; uint32 refn; uint32 size; }; - S* const s = (S*) co::alloc(sizeof(S)); + struct S { uint32 r; uint32 o; uint32 n; T t; }; + static_assert(alignof(S) <= 1024, ""); + const size_t off = (size_t) &((S*)0)->t; + S* const s = (S*) co::alloc(sizeof(S), alignof(S)); + T* const t = &s->t; if (s) { - new(s) T(std::forward(args)...); - s->refn = 1; - s->size = sizeof(S); + new(t) T(std::forward(args)...); + ((uint32*)t)[-1] = sizeof(S); + ((uint32*)t)[-2] = (uint32)off; + ((uint32*)t)[-3] = 1; } shared x; - *(void**)&x = s; + *(void**)&x = t; return x; }