Fix std::pair on FreeBSD
Summary: FreeBSD ships an old ABI for std::pair which requires that it have non-trivial copy/move constructors. Currently the non-trivial copy/move is achieved by providing explicit definitions of the constructors. This is problematic because it means the constructors don't SFINAE properly. In order to SFINAE copy/move constructors they have to be explicitly defaulted and hense non-trivial. This patch attempts to provide SFINAE'ing copy/move constructors for std::pair while still making them non-trivial. It does this by adding a base class with a non-trivial copy constructor and then allowing pair's constructors to be generated by the compiler. This also allows the constructors to be constexpr. Reviewers: emaste, theraven, rsmith, dim Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D25389 git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@283944 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -7,49 +7,142 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
// The test fails due to the missing is_trivially_constructible intrinsic.
|
||||
// XFAIL: gcc-4.9
|
||||
|
||||
// <utility>
|
||||
|
||||
// template <class T1, class T2> struct pair
|
||||
|
||||
// Test that we properly provide the old non-trivial copy operations
|
||||
// when the ABI macro is defined.
|
||||
// Test that we properly provide the trivial copy operations by default.
|
||||
|
||||
// FreeBSD provides the old ABI. This test checks the new ABI so we need
|
||||
// to manually turn it on.
|
||||
#undef _LIBCPP_ABI_UNSTABLE
|
||||
#undef _LIBCPP_ABI_VERSION
|
||||
#define _LIBCPP_ABI_VERSION 1
|
||||
#define _LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR
|
||||
|
||||
#include <utility>
|
||||
#include <type_traits>
|
||||
#include <cstdlib>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
|
||||
#if TEST_STD_VER >= 11
|
||||
struct Dummy {
|
||||
Dummy(Dummy const&) = delete;
|
||||
Dummy(Dummy &&) = default;
|
||||
};
|
||||
#if !defined(_LIBCPP_DEPRECATED_ABI_DISABLE_PAIR_TRIVIAL_COPY_CTOR)
|
||||
#error trivial ctor ABI macro defined
|
||||
#endif
|
||||
|
||||
template <class T>
|
||||
struct HasNonTrivialABI : std::integral_constant<bool,
|
||||
!std::is_trivially_destructible<T>::value
|
||||
|| (std::is_copy_constructible<T>::value && !std::is_trivially_copy_constructible<T>::value)
|
||||
#if TEST_STD_VER >= 11
|
||||
|| (std::is_move_constructible<T>::value && !std::is_trivially_move_constructible<T>::value)
|
||||
#endif
|
||||
> {};
|
||||
|
||||
#if TEST_STD_VER >= 11
|
||||
struct NonTrivialDtor {
|
||||
NonTrivialDtor(NonTrivialDtor const&) = default;
|
||||
~NonTrivialDtor();
|
||||
};
|
||||
NonTrivialDtor::~NonTrivialDtor() {}
|
||||
static_assert(HasNonTrivialABI<NonTrivialDtor>::value, "");
|
||||
|
||||
struct NonTrivialCopy {
|
||||
NonTrivialCopy(NonTrivialCopy const&);
|
||||
};
|
||||
NonTrivialCopy::NonTrivialCopy(NonTrivialCopy const&) {}
|
||||
static_assert(HasNonTrivialABI<NonTrivialCopy>::value, "");
|
||||
|
||||
struct NonTrivialMove {
|
||||
NonTrivialMove(NonTrivialMove const&) = default;
|
||||
NonTrivialMove(NonTrivialMove&&);
|
||||
};
|
||||
NonTrivialMove::NonTrivialMove(NonTrivialMove&&) {}
|
||||
static_assert(HasNonTrivialABI<NonTrivialMove>::value, "");
|
||||
|
||||
struct DeletedCopy {
|
||||
DeletedCopy(DeletedCopy const&) = delete;
|
||||
DeletedCopy(DeletedCopy&&) = default;
|
||||
};
|
||||
static_assert(!HasNonTrivialABI<DeletedCopy>::value, "");
|
||||
|
||||
struct TrivialMove {
|
||||
TrivialMove(TrivialMove &&) = default;
|
||||
};
|
||||
static_assert(!HasNonTrivialABI<TrivialMove>::value, "");
|
||||
|
||||
struct Trivial {
|
||||
Trivial(Trivial const&) = default;
|
||||
};
|
||||
static_assert(!HasNonTrivialABI<Trivial>::value, "");
|
||||
#endif
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
typedef std::pair<int, short> P;
|
||||
{
|
||||
typedef std::pair<int, short> P;
|
||||
static_assert(std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copyable<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
#if TEST_STD_VER >= 11
|
||||
{
|
||||
typedef std::pair<int, short> P;
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copyable<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
{
|
||||
using P1 = std::pair<Dummy, int>;
|
||||
// These lines fail because the non-trivial constructors do not provide
|
||||
// SFINAE.
|
||||
// static_assert(!std::is_copy_constructible<P1>::value, "");
|
||||
// static_assert(!std::is_trivially_copy_constructible<P1>::value, "");
|
||||
static_assert(std::is_move_constructible<P1>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P1>::value, "");
|
||||
static_assert(!std::is_trivially_copyable<P>::value, "");
|
||||
using P = std::pair<NonTrivialDtor, int>;
|
||||
static_assert(!std::is_trivially_destructible<P>::value, "");
|
||||
static_assert(std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
{
|
||||
using P = std::pair<NonTrivialCopy, int>;
|
||||
static_assert(std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
{
|
||||
using P = std::pair<NonTrivialMove, int>;
|
||||
static_assert(std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
{
|
||||
using P = std::pair<DeletedCopy, int>;
|
||||
static_assert(!std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
{
|
||||
using P = std::pair<Trivial, int>;
|
||||
static_assert(std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
{
|
||||
using P = std::pair<TrivialMove, int>;
|
||||
static_assert(!std::is_copy_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_copy_constructible<P>::value, "");
|
||||
static_assert(std::is_move_constructible<P>::value, "");
|
||||
static_assert(!std::is_trivially_move_constructible<P>::value, "");
|
||||
static_assert(HasNonTrivialABI<P>::value, "");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user