diff --git a/libcxx/docs/Status/SpaceshipProjects.csv b/libcxx/docs/Status/SpaceshipProjects.csv --- a/libcxx/docs/Status/SpaceshipProjects.csv +++ b/libcxx/docs/Status/SpaceshipProjects.csv @@ -10,7 +10,7 @@ | `partial_order `_",None,Arthur O'Dwyer,In progress [alg.three.way],| `lexicographical_compare_three_way `_,[comparisons.three.way],Christopher Di Bella,In progress [coroutine.handle.compare],| coroutine_handle,[comparisons.three.way],Unassigned,Not started -[pairs.spec],| `pair `_,[expos.only.func],Kent Ross,In progress +[pairs.spec],| `pair `_,[expos.only.func],Kent Ross,Complete [syserr.errcat.nonvirtuals],| error_category,[comparisons.three.way],Unassigned,Not started [syserr.compare],"| error_code | error_condition",None,Unassigned,Not started diff --git a/libcxx/include/CMakeLists.txt b/libcxx/include/CMakeLists.txt --- a/libcxx/include/CMakeLists.txt +++ b/libcxx/include/CMakeLists.txt @@ -100,6 +100,7 @@ __compare/common_comparison_category.h __compare/compare_three_way_result.h __compare/ordering.h + __compare/synth_three_way.h __concepts/arithmetic.h __concepts/assignable.h __concepts/boolean_testable.h @@ -121,6 +122,7 @@ __concepts/same_as.h __concepts/semiregular.h __concepts/swappable.h + __concepts/three_way_comparable.h __concepts/totally_ordered.h __config __debug diff --git a/libcxx/include/__compare/synth_three_way.h b/libcxx/include/__compare/synth_three_way.h new file mode 100644 --- /dev/null +++ b/libcxx/include/__compare/synth_three_way.h @@ -0,0 +1,51 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +#ifndef _LIBCPP___COMPARE_SYNTH_THREE_WAY_H +#define _LIBCPP___COMPARE_SYNTH_THREE_WAY_H + +#include <__config> +#include <__compare/ordering.h> +#include <__concepts/boolean_testable.h> +#include <__concepts/three_way_comparable.h> +#include <__utility/declval.h> + +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + +_LIBCPP_BEGIN_NAMESPACE_STD + +#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) && !defined(_LIBCPP_HAS_NO_CONCEPTS) + +// [expos.only.func] + +constexpr auto __synth_three_way = + [](const _Tp& __t, const _Up& __u) + requires requires { + { __t < __u } -> __boolean_testable; + { __u < __t } -> __boolean_testable; + } + { + if constexpr (three_way_comparable_with<_Tp, _Up>) { + return __t <=> __u; + } else { + if (__t < __u) return weak_ordering::less; + if (__u < __t) return weak_ordering::greater; + return weak_ordering::equivalent; + } + }; + +template +using __synth_three_way_result = decltype(__synth_three_way(declval<_Tp&>(), declval<_Up&>())); + +#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) && !defined(_LIBCPP_HAS_NO_CONCEPTS) + +_LIBCPP_END_NAMESPACE_STD + +#endif // _LIBCPP___COMPARE_SYNTH_THREE_WAY_H diff --git a/libcxx/include/__concepts/three_way_comparable.h b/libcxx/include/__concepts/three_way_comparable.h new file mode 100644 --- /dev/null +++ b/libcxx/include/__concepts/three_way_comparable.h @@ -0,0 +1,52 @@ +// THIS FILE NOT FOR REVIEW +#ifndef INCLUDE___CONCEPTS_THREE_WAY_COMPARABLE_H_ +#define INCLUDE___CONCEPTS_THREE_WAY_COMPARABLE_H_ + +#include <__compare/common_comparison_category.h> +#include <__compare/ordering.h> +#include <__concepts/common_reference_with.h> +#include <__concepts/equality_comparable.h> +#include <__concepts/same_as.h> +#include <__concepts/totally_ordered.h> +#include <__config> +#include + +#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) +#pragma GCC system_header +#endif + +_LIBCPP_BEGIN_NAMESPACE_STD + +#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS) && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) + +template +concept __compares_as = + same_as, Cat>; + +template +concept three_way_comparable = + __weakly_equality_comparable_with && + __partially_ordered_with && + requires(const remove_reference_t& a, const remove_reference_t& b) { + { a <=> b } -> __compares_as; + }; + +template +concept three_way_comparable_with = + three_way_comparable && + three_way_comparable && + common_reference_with&, const remove_reference_t&> && + three_way_comparable< + common_reference_t&, const remove_reference_t&>, Cat> && + __weakly_equality_comparable_with && + __partially_ordered_with && + requires(const remove_reference_t& t, const remove_reference_t& u) { + { t <=> u } -> __compares_as; + { u <=> t } -> __compares_as; + }; + +#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_CONCEPTS) && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) + +_LIBCPP_END_NAMESPACE_STD + +#endif //INCLUDE___CONCEPTS_THREE_WAY_COMPARABLE_H_ diff --git a/libcxx/include/__utility/pair.h b/libcxx/include/__utility/pair.h --- a/libcxx/include/__utility/pair.h +++ b/libcxx/include/__utility/pair.h @@ -9,6 +9,8 @@ #ifndef _LIBCPP___UTILITY_PAIR_H #define _LIBCPP___UTILITY_PAIR_H +#include <__compare/common_comparison_category.h> +#include <__compare/synth_three_way.h> #include <__config> #include <__functional/unwrap_ref.h> #include <__tuple> @@ -323,6 +325,21 @@ return __x.first == __y.first && __x.second == __y.second; } +#if _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) && !defined(_LIBCPP_HAS_NO_CONCEPTS) + +template +_LIBCPP_HIDE_FROM_ABI constexpr +common_comparison_category_t< + __synth_three_way_result<_T1>, + __synth_three_way_result<_T2> > +operator<=>(const pair<_T1,_T2>& __x, const pair<_T1,_T2>& __y) +{ + if (auto __c = _VSTD::__synth_three_way(__x.first, __y.first); __c != 0) return __c; + return _VSTD::__synth_three_way(__x.second, __y.second); +} + +#else // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) && !defined(_LIBCPP_HAS_NO_CONCEPTS) + template inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX11 bool @@ -363,6 +380,8 @@ return !(__y < __x); } +#endif // _LIBCPP_STD_VER > 17 && !defined(_LIBCPP_HAS_NO_SPACESHIP_OPERATOR) && !defined(_LIBCPP_HAS_NO_CONCEPTS) + template inline _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR_AFTER_CXX17 typename enable_if diff --git a/libcxx/include/concepts b/libcxx/include/concepts --- a/libcxx/include/concepts +++ b/libcxx/include/concepts @@ -150,6 +150,7 @@ #include <__concepts/same_as.h> #include <__concepts/semiregular.h> #include <__concepts/swappable.h> +#include <__concepts/three_way_comparable.h> // NOT FOR REVIEW #include <__concepts/totally_ordered.h> #include <__config> #include diff --git a/libcxx/include/module.modulemap b/libcxx/include/module.modulemap --- a/libcxx/include/module.modulemap +++ b/libcxx/include/module.modulemap @@ -363,6 +363,7 @@ module common_comparison_category { private header "__compare/common_comparison_category.h" } module compare_three_way_result { private header "__compare/compare_three_way_result.h" } module ordering { private header "__compare/ordering.h" } + module synth_three_way { private header "__compare/synth_three_way.h" } } } module complex { @@ -395,6 +396,7 @@ module same_as { private header "__concepts/same_as.h" } module semiregular { private header "__concepts/semiregular.h" } module swappable { private header "__concepts/swappable.h" } + module three_way_comparable { private header "__concepts/three_way_comparable.h" } module totally_ordered { private header "__concepts/totally_ordered.h" } } } diff --git a/libcxx/include/utility b/libcxx/include/utility --- a/libcxx/include/utility +++ b/libcxx/include/utility @@ -96,11 +96,15 @@ }; template bool operator==(const pair&, const pair&); // constexpr in C++14 -template bool operator!=(const pair&, const pair&); // constexpr in C++14 -template bool operator< (const pair&, const pair&); // constexpr in C++14 -template bool operator> (const pair&, const pair&); // constexpr in C++14 -template bool operator>=(const pair&, const pair&); // constexpr in C++14 -template bool operator<=(const pair&, const pair&); // constexpr in C++14 +template bool operator!=(const pair&, const pair&); // constexpr in C++14, removed in C++20 +template bool operator< (const pair&, const pair&); // constexpr in C++14, removed in C++20 +template bool operator> (const pair&, const pair&); // constexpr in C++14, removed in C++20 +template bool operator>=(const pair&, const pair&); // constexpr in C++14, removed in C++20 +template bool operator<=(const pair&, const pair&); // constexpr in C++14, removed in C++20 +template + constexpr common_comparison_type_t, + synth-three-way-result > + operator<=>(const pair&, const pair&); // C++20 template pair make_pair(T1&&, T2&&); // constexpr in C++14 template diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/compare/synth_three_way.module.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/compare/synth_three_way.module.verify.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/libcxx/diagnostics/detail.headers/compare/synth_three_way.module.verify.cpp @@ -0,0 +1,16 @@ +// -*- C++ -*- +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// REQUIRES: modules-build + +// WARNING: This test was generated by 'generate_private_header_tests.py' +// and should not be edited manually. + +// expected-error@*:* {{use of private header from outside its module: '__compare/synth_three_way.h'}} +#include <__compare/synth_three_way.h> diff --git a/libcxx/test/libcxx/diagnostics/detail.headers/concepts/three_way_comparable.module.verify.cpp b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/three_way_comparable.module.verify.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/libcxx/diagnostics/detail.headers/concepts/three_way_comparable.module.verify.cpp @@ -0,0 +1,16 @@ +// -*- C++ -*- +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// REQUIRES: modules-build + +// WARNING: This test was generated by 'generate_private_header_tests.py' +// and should not be edited manually. + +// expected-error@*:* {{use of private header from outside its module: '__concepts/three_way_comparable.h'}} +#include <__concepts/three_way_comparable.h> diff --git a/libcxx/test/libcxx/library/description/conventions/expos.only.func/synth_three_way.pass.cpp b/libcxx/test/libcxx/library/description/conventions/expos.only.func/synth_three_way.pass.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/libcxx/library/description/conventions/expos.only.func/synth_three_way.pass.cpp @@ -0,0 +1,111 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// UNSUPPORTED: c++03, c++11, c++14, c++17, libcpp-no-concepts + +// template auto __synth_three_way(T __t, U __u); + +#include +#include +#include +#include // Includes synth-three-way via std::pair::operator<=> + +#include "test_macros.h" + +// A custom three-way result type +struct CustomEquality { + friend constexpr bool operator==(const CustomEquality&, int) noexcept { return true; } + friend constexpr bool operator<(const CustomEquality&, int) noexcept { return false; } + friend constexpr bool operator<(int, const CustomEquality&) noexcept { return false; } +}; + +constexpr bool test() { + assert(std::__synth_three_way(1, 2) == std::strong_ordering::less); + ASSERT_SAME_TYPE(std::strong_ordering, std::__synth_three_way_result); + + { + struct NoSpaceship { + int value; + constexpr bool operator==(const NoSpaceship&) const = default; + constexpr bool operator<(const NoSpaceship& other) const { return value < other.value; } + }; + assert(NoSpaceship{1} < NoSpaceship{2}); + assert(!(NoSpaceship{1} < NoSpaceship{1})); + assert(std::__synth_three_way(NoSpaceship{1}, NoSpaceship{1}) == std::weak_ordering::equivalent); + assert(std::__synth_three_way(NoSpaceship{2}, NoSpaceship{1}) == std::weak_ordering::greater); + assert(std::__synth_three_way(NoSpaceship{1}, NoSpaceship{2}) == std::weak_ordering::less); + ASSERT_SAME_TYPE(std::weak_ordering, std::__synth_three_way_result); + } + { + struct WithSpaceship { + int value; + constexpr bool operator==(const WithSpaceship&) const = default; + constexpr std::strong_ordering operator<=>(const WithSpaceship& other) const { return value <=> other.value; } + }; + assert(WithSpaceship{1} < WithSpaceship{2}); + assert(!(WithSpaceship{1} < WithSpaceship{1})); + assert(std::__synth_three_way(WithSpaceship{1}, WithSpaceship{1}) == std::strong_ordering::equivalent); + assert(std::__synth_three_way(WithSpaceship{2}, WithSpaceship{1}) == std::strong_ordering::greater); + assert(std::__synth_three_way(WithSpaceship{1}, WithSpaceship{2}) == std::strong_ordering::less); + ASSERT_SAME_TYPE(std::strong_ordering, std::__synth_three_way_result); + } + { + struct WithPartialSpaceship { + double value; + constexpr bool operator==(const WithPartialSpaceship&) const = default; + constexpr std::partial_ordering operator<=>(const WithPartialSpaceship& other) const { + return value <=> other.value; + } + }; + assert(WithPartialSpaceship{1.0} < WithPartialSpaceship{2.0}); + assert(!(WithPartialSpaceship{1.0} < WithPartialSpaceship{1.0})); + assert(std::__synth_three_way(WithPartialSpaceship{1.0}, WithPartialSpaceship{1.0}) == + std::partial_ordering::equivalent); + assert(std::__synth_three_way(WithPartialSpaceship{2.0}, WithPartialSpaceship{1.0}) == + std::partial_ordering::greater); + assert(std::__synth_three_way(WithPartialSpaceship{1.0}, WithPartialSpaceship{2.0}) == std::partial_ordering::less); + assert(std::__synth_three_way(WithPartialSpaceship{std::numeric_limits::quiet_NaN()}, + WithPartialSpaceship{std::numeric_limits::quiet_NaN()}) == + std::partial_ordering::unordered); + ASSERT_SAME_TYPE(std::partial_ordering, std::__synth_three_way_result); + } + { + // Types with operator<=> but no operator== are not three_way_comparable and will fall back to operator< and + // compare as weakly ordered. + struct SpaceshipNoEquals { + constexpr std::strong_ordering operator<=>(const SpaceshipNoEquals&) const { + return std::strong_ordering::equivalent; + } + constexpr bool operator<(const SpaceshipNoEquals&) const { return false; } + }; + assert(std::__synth_three_way(SpaceshipNoEquals{}, SpaceshipNoEquals{}) == std::weak_ordering::equivalent); + ASSERT_SAME_TYPE(std::weak_ordering, std::__synth_three_way_result); + } + { + // Custom three-way-comparison result types cannot satisfy standard concepts (and therefore synth-three-way) + // because they are not understood by std::common_comparison_category, but they can still be used in + // the same way as standard orderings to do comparisons, and thus can be used by synth-three-way to yield a + // weakly-ordered result. + struct CustomSpaceship { + constexpr CustomEquality operator<=>(const CustomSpaceship&) const { return CustomEquality(); } + }; + assert((CustomSpaceship() <=> CustomSpaceship()) == 0); + assert(!(CustomSpaceship() < CustomSpaceship())); + assert(std::__synth_three_way(CustomSpaceship(), CustomSpaceship()) == std::weak_ordering::equivalent); + ASSERT_SAME_TYPE(std::weak_ordering, std::__synth_three_way_result); + } + + return true; +} + +int main(int, char**) { + static_assert(test()); + assert(test()); + + return 0; +} diff --git a/libcxx/test/std/utilities/utility/pairs/pairs.spec/three_way_comparison.pass.cpp b/libcxx/test/std/utilities/utility/pairs/pairs.spec/three_way_comparison.pass.cpp new file mode 100644 --- /dev/null +++ b/libcxx/test/std/utilities/utility/pairs/pairs.spec/three_way_comparison.pass.cpp @@ -0,0 +1,66 @@ +//===----------------------------------------------------------------------===// +// +// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. +// See https://llvm.org/LICENSE.txt for license information. +// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception +// +//===----------------------------------------------------------------------===// + +// + +// template struct pair + +// template bool operator<=>(const pair&, const pair&); + +// UNSUPPORTED: c++03, c++11, c++14, c++17, libcpp-no-concepts + +#include +#include +#include +#include + +#include "test_macros.h" + +constexpr bool test() { + { + // Pairs of types that both have strong ordering should compare with strong ordering. + assert((std::make_pair(1, 1) <=> std::make_pair(1, 2)) < 0); + assert((std::make_pair(2, 1) <=> std::make_pair(1, 2)) > 0); + auto same = std::make_pair(0, 0) <=> std::make_pair(0, 0); + assert(same == 0); + ASSERT_SAME_TYPE(std::strong_ordering, decltype(same)); + } + { + // Pairs of int and a type with no spaceship operator should compare with weak ordering. + struct NoSpaceship { + int value; + constexpr bool operator==(const NoSpaceship&) const = default; + constexpr bool operator<(const NoSpaceship& other) const { return value < other.value; } + }; + assert((std::make_pair(1, NoSpaceship{1}) <=> std::make_pair(1, NoSpaceship{2})) < 0); + assert((std::make_pair(2, NoSpaceship{1}) <=> std::make_pair(1, NoSpaceship{2})) > 0); + auto same = std::make_pair(0, NoSpaceship{0}) <=> std::make_pair(0, NoSpaceship{0}); + assert(same == 0); + ASSERT_SAME_TYPE(std::weak_ordering, decltype(same)); + } + { + // Pairs of int (strongly ordered) and double (partially ordered) should compare with partial ordering. + assert((std::make_pair(1, 1.0) <=> std::make_pair(1, 2.0)) < 0); + assert((std::make_pair(2, 1.0) <=> std::make_pair(1, 1.0)) > 0); + assert((std::make_pair(std::numeric_limits::quiet_NaN(), 1) + <=> std::make_pair(std::numeric_limits::quiet_NaN(), 2)) + == std::partial_ordering::unordered); + auto same = std::make_pair(0, 0.0) <=> std::make_pair(0, 0.0); + assert(same == 0); + ASSERT_SAME_TYPE(std::partial_ordering, decltype(same)); + } + + return true; +} + +int main(int, char**) { + static_assert(test()); + assert(test()); + + return 0; +}