libstdc++: Add comparison operators to std::shared_ptr (PR 94562)
authorJonathan Wakely <jwakely@redhat.com>
Tue, 14 Apr 2020 20:54:55 +0000 (21:54 +0100)
committerJonathan Wakely <jwakely@redhat.com>
Tue, 14 Apr 2020 20:54:55 +0000 (21:54 +0100)
This also implements the proposed resolution to LWG issue 3247, so that
the ill-formed <=> expression with nullptr is not used.

PR libstdc++/94562
* include/bits/shared_ptr.h (operator<=>): Define for C++20.
* include/bits/shared_ptr_base.h (operator<=>): Likewise.
* include/bits/unique_ptr.h (operator<=>): Add inline specifier.
* testsuite/20_util/shared_ptr/comparison/cmp_c++20.cc: New test.
* testsuite/20_util/shared_ptr/comparison/less.cc: Do not expect
std::less<A*> to be used when comparing std::shared_ptr<A> objects in
C++20.

libstdc++-v3/ChangeLog
libstdc++-v3/include/bits/shared_ptr.h
libstdc++-v3/include/bits/shared_ptr_base.h
libstdc++-v3/include/bits/unique_ptr.h
libstdc++-v3/testsuite/20_util/shared_ptr/comparison/cmp_c++20.cc [new file with mode: 0644]
libstdc++-v3/testsuite/20_util/shared_ptr/comparison/less.cc

index 085ca6aec4566e037e2f86a991e762f188171a24..417c8c440c6cfeabd79fda7593c4e47d646ce4c0 100644 (file)
@@ -1,5 +1,14 @@
 2020-04-14  Jonathan Wakely  <jwakely@redhat.com>
 
+       PR libstdc++/94562
+       * include/bits/shared_ptr.h (operator<=>): Define for C++20.
+       * include/bits/shared_ptr_base.h (operator<=>): Likewise.
+       * include/bits/unique_ptr.h (operator<=>): Add inline specifier.
+       * testsuite/20_util/shared_ptr/comparison/cmp_c++20.cc: New test.
+       * testsuite/20_util/shared_ptr/comparison/less.cc: Do not expect
+       std::less<A*> to be used when comparing std::shared_ptr<A> objects in
+       C++20.
+
        PR libstdc++/94565
        * libsupc++/compare (__unspec): Add noexcept-specifier to constructor.
        * testsuite/18_support/comparisons/categories/94565.cc: New test.
index c4df3582e2064a8c88a6df3c90f542a306922365..0c393e2313220bd9a4ebcb8aa8b053147e863593 100644 (file)
@@ -442,6 +442,21 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     operator==(const shared_ptr<_Tp>& __a, nullptr_t) noexcept
     { return !__a; }
 
+#ifdef __cpp_lib_three_way_comparison
+  template<typename _Tp, typename _Up>
+    inline strong_ordering
+    operator<=>(const shared_ptr<_Tp>& __a,
+               const shared_ptr<_Up>& __b) noexcept
+    { return compare_three_way()(__a.get(), __b.get()); }
+
+  template<typename _Tp>
+    inline strong_ordering
+    operator<=>(const shared_ptr<_Tp>& __a, nullptr_t) noexcept
+    {
+      using pointer = typename shared_ptr<_Tp>::element_type*;
+      return compare_three_way()(__a.get(), static_cast<pointer>(nullptr));
+    }
+#else
   /// shared_ptr comparison with nullptr
   template<typename _Tp>
     _GLIBCXX_NODISCARD inline bool
@@ -548,6 +563,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     _GLIBCXX_NODISCARD inline bool
     operator>=(nullptr_t, const shared_ptr<_Tp>& __a) noexcept
     { return !(nullptr < __a); }
+#endif
 
   // 20.7.2.2.8 shared_ptr specialized algorithms.
 
index c9017ede4cb8ab47b684d0512f3783aec29ae1c7..ff578e66117cb3ee8c03c3dcc6c8c99f6f9adae0 100644 (file)
@@ -54,6 +54,9 @@
 #include <bits/refwrap.h>
 #include <bits/stl_function.h>
 #include <ext/aligned_buffer.h>
+#if __cplusplus > 201703L
+# include <compare>
+#endif
 
 namespace std _GLIBCXX_VISIBILITY(default)
 {
@@ -1442,6 +1445,21 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     operator==(const __shared_ptr<_Tp, _Lp>& __a, nullptr_t) noexcept
     { return !__a; }
 
+#ifdef __cpp_lib_three_way_comparison
+  template<typename _Tp, typename _Up, _Lock_policy _Lp>
+    inline strong_ordering
+    operator<=>(const __shared_ptr<_Tp, _Lp>& __a,
+               const __shared_ptr<_Up, _Lp>& __b) noexcept
+    { return compare_three_way()(__a.get(), __b.get()); }
+
+  template<typename _Tp, _Lock_policy _Lp>
+    inline strong_ordering
+    operator<=>(const __shared_ptr<_Tp, _Lp>& __a, nullptr_t) noexcept
+    {
+      using pointer = typename __shared_ptr<_Tp, _Lp>::element_type*;
+      return compare_three_way()(__a.get(), static_cast<pointer>(nullptr));
+    }
+#else
   template<typename _Tp, _Lock_policy _Lp>
     inline bool
     operator==(nullptr_t, const __shared_ptr<_Tp, _Lp>& __a) noexcept
@@ -1537,6 +1555,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
     inline bool
     operator>=(nullptr_t, const __shared_ptr<_Tp, _Lp>& __a) noexcept
     { return !(nullptr < __a); }
+#endif // three-way comparison
 
   // 20.7.2.2.8 shared_ptr specialized algorithms.
   template<typename _Tp, _Lock_policy _Lp>
index 53c8def627df19ccd7b9c00291a45b28d5a6d29b..3695214808b72505426d20aea2069bd34e43daf8 100644 (file)
@@ -888,6 +888,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
   template<typename _Tp, typename _Dp, typename _Up, typename _Ep>
     requires three_way_comparable_with<typename unique_ptr<_Tp, _Dp>::pointer,
                                       typename unique_ptr<_Up, _Ep>::pointer>
+    inline
     compare_three_way_result_t<typename unique_ptr<_Tp, _Dp>::pointer,
                               typename unique_ptr<_Up, _Ep>::pointer>
     operator<=>(const unique_ptr<_Tp, _Dp>& __x,
@@ -896,11 +897,12 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
 
   template<typename _Tp, typename _Dp>
     requires three_way_comparable<typename unique_ptr<_Tp, _Dp>::pointer>
+    inline
     compare_three_way_result_t<typename unique_ptr<_Tp, _Dp>::pointer>
     operator<=>(const unique_ptr<_Tp, _Dp>& __x, nullptr_t)
     {
       using pointer = typename unique_ptr<_Tp, _Dp>::pointer;
-      return compare_three_way()(__x.get(), pointer(nullptr));
+      return compare_three_way()(__x.get(), static_cast<pointer>(nullptr));
     }
 #endif
   // @} relates unique_ptr
diff --git a/libstdc++-v3/testsuite/20_util/shared_ptr/comparison/cmp_c++20.cc b/libstdc++-v3/testsuite/20_util/shared_ptr/comparison/cmp_c++20.cc
new file mode 100644 (file)
index 0000000..5600bbf
--- /dev/null
@@ -0,0 +1,106 @@
+// Copyright (C) 2020 Free Software Foundation, Inc.
+//
+// This file is part of the GNU ISO C++ Library.  This library is free
+// software; you can redistribute it and/or modify it under the
+// terms of the GNU General Public License as published by the
+// Free Software Foundation; either version 3, or (at your option)
+// any later version.
+
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this library; see the file COPYING3.  If not see
+// <http://www.gnu.org/licenses/>.
+
+// { dg-options "-std=gnu++2a" }
+// { dg-do run { target c++2a } }
+
+#include <memory>
+#include <testsuite_hooks.h>
+
+void
+test01()
+{
+  std::shared_ptr<int> p0, p00;
+  VERIFY( p0 == p00 );
+  VERIFY( !(p0 < p00) );
+  VERIFY( !(p0 > p00) );
+  VERIFY( p0 <= p00 );
+  VERIFY( p0 >= p00 );
+  VERIFY( std::is_eq(p0 <=> p00) );
+
+  std::shared_ptr<int> p1(new int(1));
+  VERIFY( p1 == p1 );
+  VERIFY( !(p1 < p1) );
+  VERIFY( !(p1 > p1) );
+  VERIFY( p1 <= p1 );
+  VERIFY( p1 >= p1 );
+  VERIFY( std::is_eq(p1 <=> p1) );
+
+  std::shared_ptr<int> p11 = p1;
+  VERIFY( p11 == p1 );
+  VERIFY( !(p11 < p1) );
+  VERIFY( !(p11 > p1) );
+  VERIFY( p11 <= p1 );
+  VERIFY( p11 >= p1 );
+  VERIFY( std::is_eq(p11 <=> p1) );
+
+  std::shared_ptr<const int> p2(new int(1));
+  VERIFY( p1 >= p1 );
+  VERIFY( p1 != p2 );
+  VERIFY( (p1 < p2) || (p1 > p2) );
+  VERIFY( (p1 <= p2) || (p1 >= p2) );
+  VERIFY( std::is_neq(p1 <=> p2) );
+
+  VERIFY( p1 != p0 );
+  VERIFY( !(p1 < p0) );
+  VERIFY( p1 > p0 );
+  VERIFY( !(p1 <= p0) );
+  VERIFY( p1 >= p0 );
+  VERIFY( std::is_gt(p1 <=> p0) );
+  VERIFY( std::is_lt(p0 <=> p1) );
+}
+
+void
+test02()
+{
+  std::shared_ptr<int> p0;
+  VERIFY( p0 == nullptr );
+  VERIFY( !(p0 < nullptr) );
+  VERIFY( !(p0 > nullptr) );
+  VERIFY( p0 <= nullptr );
+  VERIFY( p0 >= nullptr );
+  VERIFY( std::is_eq(p0 <=> nullptr) );
+
+  VERIFY( nullptr == p0 );
+  VERIFY( !(nullptr < p0) );
+  VERIFY( !(nullptr > p0) );
+  VERIFY( nullptr <= p0 );
+  VERIFY( nullptr >= p0 );
+  VERIFY( std::is_eq(nullptr <=> p0) );
+
+  std::shared_ptr<int> p1(new int(1));
+  VERIFY( p1 != nullptr );
+  VERIFY( !(p1 < nullptr) );
+  VERIFY( p1 > nullptr );
+  VERIFY( !(p1 <= nullptr) );
+  VERIFY( p1 >= nullptr );
+  VERIFY( std::is_gt(p1 <=> nullptr) );
+
+  VERIFY( nullptr != p1 );
+  VERIFY( nullptr < p1 );
+  VERIFY( !(nullptr > p1) );
+  VERIFY( nullptr <= p1 );
+  VERIFY( !(nullptr >= p1) );
+  VERIFY( std::is_lt(nullptr <=> p1) );
+}
+
+int
+main()
+{
+  test01();
+  test02();
+}
index 8b42b3a9c1539ffe48de0cf0db00e98c11c2e47c..9ee65ffdf09726df11b2f11b4447f9241e515f0c 100644 (file)
@@ -46,7 +46,11 @@ test01()
   std::shared_ptr<A> p1;
   std::shared_ptr<A> p2;
   VERIFY( !less(p1, p2) && !less(p2, p1) );
+#ifndef __cpp_lib_three_way_comparison
+// In C++20 std::less<std::shared_ptr<A>> uses the operator< synthesized
+// from operator<=>, which uses std::compare_three_way not std::less<A*>.
   VERIFY( std::less<A*>::count == 2 );
+#endif
   return 0;
 }
 
@@ -86,7 +90,7 @@ test03()
 
   return 0;
 }
-int 
+int
 main()
 {
   test01();