LWG DR 2315. weak_ptr should be movable
authorJonathan Wakely <jwakely@redhat.com>
Wed, 12 Nov 2014 11:54:08 +0000 (11:54 +0000)
committerJonathan Wakely <redi@gcc.gnu.org>
Wed, 12 Nov 2014 11:54:08 +0000 (11:54 +0000)
* include/bits/shared_ptr.h (weak_ptr): Add move constructor and
assignment.
* include/bits/shared_ptr_base.h (__weak_count, __weak_ptr): Likewise.
Use nullptr and injected class name.
* testsuite/20_util/shared_ptr/cons/43820_neg.cc: Adjust dg-error.
* testsuite/20_util/shared_ptr/cons/void_neg.cc: Adjust dg-error.

From-SVN: r217413

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/shared_ptr.h
libstdc++-v3/include/bits/shared_ptr_base.h
libstdc++-v3/testsuite/20_util/shared_ptr/cons/43820_neg.cc
libstdc++-v3/testsuite/20_util/shared_ptr/cons/void_neg.cc

index 2657b06d984712a410ced532aea3d517c6648b2b..30a3ba6e5aebdde62d9edc28e80907f753f4129b 100644 (file)
@@ -1,3 +1,12 @@
+2014-11-12  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/shared_ptr.h (weak_ptr): Add move constructor and
+       assignment.
+       * include/bits/shared_ptr_base.h (__weak_count, __weak_ptr): Likewise.
+       Use nullptr and injected class name.
+       * testsuite/20_util/shared_ptr/cons/43820_neg.cc: Adjust dg-error.
+       * testsuite/20_util/shared_ptr/cons/void_neg.cc: Adjust dg-error.
+
 2014-11-12  Jonathan Wakely  <jwakely@redhat.com>
 
        PR c++/33911
index f611e53c179646d44d5a26232796bf2fb9453a63..c2d56eb7170169e7e15f4c580647e5285bdf446d 100644 (file)
@@ -465,19 +465,30 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     class weak_ptr : public __weak_ptr<_Tp>
     {
     public:
-      constexpr weak_ptr() noexcept
-      : __weak_ptr<_Tp>() { }
+      constexpr weak_ptr() noexcept = default;
 
       template<typename _Tp1, typename = typename
               std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type>
-       weak_ptr(const weak_ptr<_Tp1>& __r) noexcept
+       weak_ptr(const shared_ptr<_Tp1>& __r) noexcept
        : __weak_ptr<_Tp>(__r) { }
 
+      weak_ptr(const weak_ptr&) noexcept = default;
+
       template<typename _Tp1, typename = typename
               std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type>
-       weak_ptr(const shared_ptr<_Tp1>& __r) noexcept
+       weak_ptr(const weak_ptr<_Tp1>& __r) noexcept
        : __weak_ptr<_Tp>(__r) { }
 
+      weak_ptr(weak_ptr&&) noexcept = default;
+
+      template<typename _Tp1, typename = typename
+              std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type>
+       weak_ptr(weak_ptr<_Tp1>&& __r) noexcept
+       : __weak_ptr<_Tp>(std::move(__r)) { }
+
+      weak_ptr&
+      operator=(const weak_ptr& __r) noexcept = default;
+
       template<typename _Tp1>
        weak_ptr&
        operator=(const weak_ptr<_Tp1>& __r) noexcept
@@ -494,6 +505,17 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
          return *this;
        }
 
+      weak_ptr&
+      operator=(weak_ptr&& __r) noexcept = default;
+
+      template<typename _Tp1>
+       weak_ptr&
+       operator=(weak_ptr<_Tp1>&& __r) noexcept
+       {
+         this->__weak_ptr<_Tp>::operator=(std::move(__r));
+         return *this;
+       }
+
       shared_ptr<_Tp>
       lock() const noexcept
       { return shared_ptr<_Tp>(*this, std::nothrow); }
index 6f85ffad955e68df7b6184a258f46e4ee4338607..ea74000eb0918cfa6b504ee8fd734f2d7251b89e 100644 (file)
@@ -721,55 +721,69 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     class __weak_count
     {
     public:
-      constexpr __weak_count() noexcept : _M_pi(0)
+      constexpr __weak_count() noexcept : _M_pi(nullptr)
       { }
 
       __weak_count(const __shared_count<_Lp>& __r) noexcept
       : _M_pi(__r._M_pi)
       {
-       if (_M_pi != 0)
+       if (_M_pi != nullptr)
          _M_pi->_M_weak_add_ref();
       }
 
-      __weak_count(const __weak_count<_Lp>& __r) noexcept
+      __weak_count(const __weak_count& __r) noexcept
       : _M_pi(__r._M_pi)
       {
-       if (_M_pi != 0)
+       if (_M_pi != nullptr)
          _M_pi->_M_weak_add_ref();
       }
 
+      __weak_count(__weak_count&& __r) noexcept
+      : _M_pi(__r._M_pi)
+      { __r._M_pi = nullptr; }
+
       ~__weak_count() noexcept
       {
-       if (_M_pi != 0)
+       if (_M_pi != nullptr)
          _M_pi->_M_weak_release();
       }
 
-      __weak_count<_Lp>&
+      __weak_count&
       operator=(const __shared_count<_Lp>& __r) noexcept
       {
        _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
-       if (__tmp != 0)
+       if (__tmp != nullptr)
          __tmp->_M_weak_add_ref();
-       if (_M_pi != 0)
+       if (_M_pi != nullptr)
          _M_pi->_M_weak_release();
        _M_pi = __tmp;
        return *this;
       }
 
-      __weak_count<_Lp>&
-      operator=(const __weak_count<_Lp>& __r) noexcept
+      __weak_count&
+      operator=(const __weak_count& __r) noexcept
       {
        _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
-       if (__tmp != 0)
+       if (__tmp != nullptr)
          __tmp->_M_weak_add_ref();
-       if (_M_pi != 0)
+       if (_M_pi != nullptr)
          _M_pi->_M_weak_release();
        _M_pi = __tmp;
        return *this;
       }
 
+      __weak_count&
+      operator=(__weak_count&& __r) noexcept
+      {
+       if (_M_pi != nullptr)
+         _M_pi->_M_weak_release();
+       _M_pi = __r._M_pi;
+        __r._M_pi = nullptr;
+       return *this;
+      }
+
       void
-      _M_swap(__weak_count<_Lp>& __r) noexcept
+      _M_swap(__weak_count& __r) noexcept
       {
        _Sp_counted_base<_Lp>* __tmp = __r._M_pi;
        __r._M_pi = _M_pi;
@@ -778,7 +792,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
       long
       _M_get_use_count() const noexcept
-      { return _M_pi != 0 ? _M_pi->_M_get_use_count() : 0; }
+      { return _M_pi != nullptr ? _M_pi->_M_get_use_count() : 0; }
 
       bool
       _M_less(const __weak_count& __rhs) const noexcept
@@ -1321,11 +1335,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
       typedef _Tp element_type;
 
       constexpr __weak_ptr() noexcept
-      : _M_ptr(0), _M_refcount()
+      : _M_ptr(nullptr), _M_refcount()
       { }
 
       __weak_ptr(const __weak_ptr&) noexcept = default;
-      __weak_ptr& operator=(const __weak_ptr&) noexcept = default;
+
       ~__weak_ptr() = default;
 
       // The "obvious" converting constructor implementation:
@@ -1354,6 +1368,19 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
        : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount)
        { }
 
+      __weak_ptr(__weak_ptr&& __r) noexcept
+      : _M_ptr(__r._M_ptr), _M_refcount(std::move(__r._M_refcount))
+      { __r._M_ptr = nullptr; }
+
+      template<typename _Tp1, typename = typename
+              std::enable_if<std::is_convertible<_Tp1*, _Tp*>::value>::type>
+       __weak_ptr(__weak_ptr<_Tp1, _Lp>&& __r) noexcept
+       : _M_ptr(__r.lock().get()), _M_refcount(std::move(__r._M_refcount))
+        { __r._M_ptr = nullptr; }
+
+      __weak_ptr&
+      operator=(const __weak_ptr& __r) noexcept = default;
+
       template<typename _Tp1>
        __weak_ptr&
        operator=(const __weak_ptr<_Tp1, _Lp>& __r) noexcept
@@ -1372,6 +1399,25 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
          return *this;
        }
 
+      __weak_ptr&
+      operator=(__weak_ptr&& __r) noexcept
+      {
+       _M_ptr = __r._M_ptr;
+       _M_refcount = std::move(__r._M_refcount);
+       __r._M_ptr = nullptr;
+       return *this;
+      }
+
+      template<typename _Tp1>
+       __weak_ptr&
+       operator=(__weak_ptr<_Tp1, _Lp>&& __r) noexcept
+       {
+         _M_ptr = __r.lock().get();
+         _M_refcount = std::move(__r._M_refcount);
+         __r._M_ptr = nullptr;
+         return *this;
+       }
+
       __shared_ptr<_Tp, _Lp>
       lock() const noexcept
       { return __shared_ptr<element_type, _Lp>(*this, std::nothrow); }
index 8bbb59133db9dd84bb918da2949c20d6e8b37231..be33279510a29c03f166c63d057b6f3b81b93791 100644 (file)
@@ -32,7 +32,7 @@ void test01()
 {
   X* px = 0;
   std::shared_ptr<X> p1(px);   // { dg-error "here" }
-  // { dg-error "incomplete" "" { target *-*-* } 864 }
+  // { dg-error "incomplete" "" { target *-*-* } 878 }
 
   std::shared_ptr<X> p9(ap());  // { dg-error "here" }
   // { dg-error "incomplete" "" { target *-*-* } 307 }
index 1ea114c7085cc538649b9bda7bc57ea52109d9c3..17e036f5f44390e5cc1ed7df0de42dc2b7d81620 100644 (file)
@@ -25,5 +25,5 @@
 void test01()
 {
   std::shared_ptr<void> p((void*)nullptr);   // { dg-error "here" }
-  // { dg-error "incomplete" "" { target *-*-* } 863 }
+  // { dg-error "incomplete" "" { target *-*-* } 877 }
 }