Skip to content

Commit

Permalink
2014-10-09 Ville Voutilainen <ville.voutilainen@gmail.com>
Browse files Browse the repository at this point in the history
	PR libstdc++/60132
    	* include/std/type_traits (is_trivially_copyable,
    	is_trivially_constructible, is_trivially_default_constructible,
    	is_trivially_copy_constructible, is_trivially_move_constructible,
    	is_trivially_assignable, is_trivially_copy_assignable,
    	is_trivially_move_assignable): New.
    	* testsuite/20_util/is_trivially_assignable/requirements/
    	typedefs.cc: Likewise.
    	* testsuite/20_util/is_trivially_assignable/requirements/
    	explicit_instantiation.cc: Likewise.
    	* testsuite/20_util/is_trivially_assignable/value.cc: Likewise.
	* testsuite/20_util/is_trivially_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_trivially_constructible/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_trivially_constructible/value.cc: Likewise.
	* testsuite/20_util/is_trivially_copyable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_trivially_copyable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_trivially_copyable/value.cc: Likewise.
	* testsuite/20_util/is_trivially_copy_assignable/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_trivially_copy_assignable/requirements/
	explicit_instantiation.cc: Likewise.
	* testsuite/20_util/is_trivially_copy_assignable/value.cc: Likewise.
	* testsuite/20_util/is_trivially_copy_constructible/requirements/
	typedefs.cc: Likewise.
	* testsuite/20_util/is_trivially_copy_constructible/requirements/
	explicit_instantiation.cc: Likewise.
    	* testsuite/20_util/is_trivially_copy_constructible/value.cc: Likewise.
    	* testsuite/20_util/is_trivially_default_constructible/requirements/
    	typedefs.cc: Likewise.
    	* testsuite/20_util/is_trivially_default_constructible/requirements/
    	explicit_instantiation.cc: Likewise.
    	* testsuite/20_util/is_trivially_default_constructible/
	value.cc: Likewise.
    	* testsuite/20_util/is_trivially_move_assignable/requirements/
    	typedefs.cc: Likewise.
    	* testsuite/20_util/is_trivially_move_assignable/requirements/
    	explicit_instantiation.cc: Likewise.
    	* testsuite/20_util/is_trivially_move_assignable/value.cc: Likewise.
    	* testsuite/20_util/is_trivially_move_constructible/requirements/
    	typedefs.cc: Likewise.
    	* testsuite/20_util/is_trivially_move_constructible/requirements/
    	explicit_instantiation.cc: Likewise.
    	* testsuite/20_util/is_trivially_move_constructible/value.cc:
	Likewise.
	* testsuite/20_util/declval/requirements/1_neg.cc: Adjust dg-error
	line number.
	* testsuite/20_util/make_signed/requirements/typedefs_neg.cc:
	Likewise.
	* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
	Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216032 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
paolo committed Oct 9, 2014
1 parent 61a892d commit 285dc59
Show file tree
Hide file tree
Showing 29 changed files with 1,469 additions and 14 deletions.
57 changes: 57 additions & 0 deletions libstdc++-v3/ChangeLog
@@ -1,3 +1,60 @@
2014-10-09 Ville Voutilainen <ville.voutilainen@gmail.com>

PR libstdc++/60132
* include/std/type_traits (is_trivially_copyable,
is_trivially_constructible, is_trivially_default_constructible,
is_trivially_copy_constructible, is_trivially_move_constructible,
is_trivially_assignable, is_trivially_copy_assignable,
is_trivially_move_assignable): New.
* testsuite/20_util/is_trivially_assignable/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_assignable/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_assignable/value.cc: Likewise.
* testsuite/20_util/is_trivially_constructible/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_constructible/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_constructible/value.cc: Likewise.
* testsuite/20_util/is_trivially_copyable/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_copyable/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_copyable/value.cc: Likewise.
* testsuite/20_util/is_trivially_copy_assignable/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_copy_assignable/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_copy_assignable/value.cc: Likewise.
* testsuite/20_util/is_trivially_copy_constructible/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_copy_constructible/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_copy_constructible/value.cc: Likewise.
* testsuite/20_util/is_trivially_default_constructible/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_default_constructible/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_default_constructible/
value.cc: Likewise.
* testsuite/20_util/is_trivially_move_assignable/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_move_assignable/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_move_assignable/value.cc: Likewise.
* testsuite/20_util/is_trivially_move_constructible/requirements/
typedefs.cc: Likewise.
* testsuite/20_util/is_trivially_move_constructible/requirements/
explicit_instantiation.cc: Likewise.
* testsuite/20_util/is_trivially_move_constructible/value.cc:
Likewise.
* testsuite/20_util/declval/requirements/1_neg.cc: Adjust dg-error
line number.
* testsuite/20_util/make_signed/requirements/typedefs_neg.cc:
Likewise.
* testsuite/20_util/make_unsigned/requirements/typedefs_neg.cc:
Likewise.

2014-10-08 Jonathan Wakely <jwakely@redhat.com>

* include/bits/locale_facets.tcc (num_put::_M_insert_float): Do not
Expand Down
61 changes: 52 additions & 9 deletions libstdc++-v3/include/std/type_traits
Expand Up @@ -606,7 +606,11 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
: public integral_constant<bool, __is_trivial(_Tp)>
{ };

// is_trivially_copyable (still unimplemented)
// is_trivially_copyable
template<typename _Tp>
struct is_trivially_copyable
: public integral_constant<bool, __is_trivially_copyable(_Tp)>
{ };

/// is_standard_layout
template<typename _Tp>
Expand Down Expand Up @@ -1282,19 +1286,58 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
: public __is_nt_move_assignable_impl<_Tp>
{ };

/// is_trivially_constructible (still unimplemented)
/// is_trivially_constructible
template<typename _Tp, typename... _Args>
struct is_trivially_constructible
: public __and_<is_constructible<_Tp, _Args...>, integral_constant<bool,
__is_trivially_constructible(_Tp, _Args...)>>::type
{ };

/// is_trivially_default_constructible (still unimplemented)

/// is_trivially_copy_constructible (still unimplemented)
/// is_trivially_default_constructible
template<typename _Tp>
struct is_trivially_default_constructible
: public is_trivially_constructible<_Tp>::type
{ };

/// is_trivially_move_constructible (still unimplemented)
/// is_trivially_copy_constructible
template<typename _Tp>
struct is_trivially_copy_constructible
: public __and_<is_copy_constructible<_Tp>,
integral_constant<bool,
__is_trivially_constructible(_Tp, const _Tp&)>>::type
{ };

/// is_trivially_move_constructible
template<typename _Tp>
struct is_trivially_move_constructible
: public __and_<is_move_constructible<_Tp>,
integral_constant<bool,
__is_trivially_constructible(_Tp, _Tp&&)>>::type
{ };

/// is_trivially_assignable (still unimplemented)
/// is_trivially_assignable
template<typename _Tp, typename _Up>
struct is_trivially_assignable
: public __and_<is_assignable<_Tp, _Up>,
integral_constant<bool,
__is_trivially_assignable(_Tp, _Up)>>::type
{ };

/// is_trivially_copy_assignable (still unimplemented)
/// is_trivially_copy_assignable
template<typename _Tp>
struct is_trivially_copy_assignable
: public __and_<is_copy_assignable<_Tp>,
integral_constant<bool,
__is_trivially_assignable(_Tp&, const _Tp&)>>::type
{ };

/// is_trivially_move_assignable (still unimplemented)
/// is_trivially_move_assignable
template<typename _Tp>
struct is_trivially_move_assignable
: public __and_<is_move_assignable<_Tp>,
integral_constant<bool,
__is_trivially_assignable(_Tp&, _Tp&&)>>::type
{ };

/// is_trivially_destructible
template<typename _Tp>
Expand Down
Expand Up @@ -19,7 +19,7 @@
// with this library; see the file COPYING3. If not see
// <http://www.gnu.org/licenses/>.

// { dg-error "static assertion failed" "" { target *-*-* } 2099 }
// { dg-error "static assertion failed" "" { target *-*-* } 2142 }

#include <utility>

Expand Down
@@ -0,0 +1,31 @@
// { dg-options "-std=gnu++11" }
// { dg-do compile }
//
// 2014-10-09 Ville Voutilainen <ville.voutilainen@gmail.com>
//
// Copyright (C) 2014 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/>.

// NB: This file is for testing type_traits with NO OTHER INCLUDES.

#include <type_traits>

namespace std
{
typedef short test_type;
template struct is_trivially_assignable<test_type, test_type>;
}
@@ -0,0 +1,37 @@
// { dg-options "-std=gnu++11" }
//
// 2014-10-09 Ville Voutilainen <ville.voutilainen@gmail.com>
//
// Copyright (C) 2014 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/>.

//
// NB: This file is for testing type_traits with NO OTHER INCLUDES.

#include <type_traits>

// { dg-do compile }

void test01()
{
// Check for required typedefs
typedef std::is_trivially_assignable<int, int> test_type;
typedef test_type::value_type value_type;
typedef test_type::type type;
typedef test_type::type::value_type type_value_type;
typedef test_type::type::type type_type;
}
135 changes: 135 additions & 0 deletions libstdc++-v3/testsuite/20_util/is_trivially_assignable/value.cc
@@ -0,0 +1,135 @@
// { dg-options "-std=gnu++11" }
// { dg-do compile }
//
// 2014-10-09 Ville Voutilainen <ville.voutilainen@gmail.com>
//
// Copyright (C) 2014 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/>.

#include <type_traits>
#include <testsuite_tr1.h>

struct HasTemplateCAssign
{
HasTemplateCAssign& operator=(const HasTemplateCAssign&) = default;
template <class T>
HasTemplateCAssign& operator=(T&&);
};

struct MoveOnly
{
MoveOnly& operator=(MoveOnly&&) = default;
};

struct MoveOnly2
{
MoveOnly2& operator=(MoveOnly2&&) = delete;
};

void test01()
{
using std::is_trivially_assignable;
using namespace __gnu_test;

static_assert(test_property<is_trivially_assignable,
int, int>(false), "");
static_assert(test_property<is_trivially_assignable,
int&, int>(true), "");
static_assert(test_property<is_trivially_assignable,
int&, int&>(true), "");
static_assert(test_property<is_trivially_assignable,
int&, int&&>(true), "");
static_assert(test_property<is_trivially_assignable,
int&, const int&>(true), "");

static_assert(test_property<is_trivially_assignable,
TType, TType>(true), "");
static_assert(test_property<is_trivially_assignable,
TType&, TType>(true), "");
static_assert(test_property<is_trivially_assignable,
TType&, TType&>(true), "");
static_assert(test_property<is_trivially_assignable,
TType&, TType&&>(true), "");
static_assert(test_property<is_trivially_assignable,
TType&, const TType&>(true), "");
static_assert(test_property<is_trivially_assignable,
PODType, PODType>(true), "");
static_assert(test_property<is_trivially_assignable,
NType&, NType&>(false), "");
static_assert(test_property<is_trivially_assignable,
SLType, SLType>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::Empty, assign::Empty>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::Abstract, assign::Abstract>(false), "");
static_assert(test_property<is_trivially_assignable,
assign::Ellipsis, assign::Ellipsis>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::DelEllipsis, assign::DelEllipsis>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::Any, assign::Any>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::DelDef, assign::DelDef>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::DelCopy, assign::DelCopy>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::Nontrivial, assign::Nontrivial>(false), "");
static_assert(test_property<is_trivially_assignable,
assign::AnyAssign, assign::AnyAssign>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::DelAnyAssign, assign::DelAnyAssign>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::DelCopyAssign, assign::DelCopyAssign>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::MO, assign::MO>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::MO, assign::MO&&>(true), "");
static_assert(test_property<is_trivially_assignable,
assign::MO, assign::MO&>(false), "");
static_assert(test_property<is_trivially_assignable,
assign::MO, const assign::MO&>(false), "");
static_assert(test_property<is_trivially_assignable,
CopyConsOnlyType, CopyConsOnlyType>(false), "");
static_assert(test_property<is_trivially_assignable,
CopyConsOnlyType, const CopyConsOnlyType&>(false), "");
static_assert(test_property<is_trivially_assignable,
MoveConsOnlyType, MoveConsOnlyType>(false), "");
static_assert(test_property<is_trivially_assignable,
MoveConsOnlyType, MoveConsOnlyType&&>(false), "");
static_assert(test_property<is_trivially_assignable,
HasTemplateCAssign, HasTemplateCAssign>(false), "");
static_assert(test_property<is_trivially_assignable,
HasTemplateCAssign, const HasTemplateCAssign&>(true), "");
static_assert(test_property<is_trivially_assignable,
ClassType, DerivedType>(true), "");
static_assert(test_property<is_trivially_assignable,
ClassType, DerivedType&>(true), "");
static_assert(test_property<is_trivially_assignable,
ClassType, DerivedType&&>(true), "");
static_assert(test_property<is_trivially_assignable,
ClassType, const DerivedType&>(true), "");
static_assert(test_property<is_trivially_assignable,
MoveOnly, MoveOnly>(true), "");
static_assert(test_property<is_trivially_assignable,
MoveOnly, MoveOnly&&>(true), "");
static_assert(test_property<is_trivially_assignable,
MoveOnly, MoveOnly&>(false), "");
static_assert(test_property<is_trivially_assignable,
MoveOnly, const MoveOnly&>(false), "");
static_assert(test_property<is_trivially_assignable,
MoveOnly2, MoveOnly2>(false), "");
}
@@ -0,0 +1,31 @@
// { dg-options "-std=gnu++11" }
// { dg-do compile }
//
// 2014-10-09 Ville Voutilainen <ville.voutilainen@gmail.com>
//
// Copyright (C) 2014 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/>.

// NB: This file is for testing type_traits with NO OTHER INCLUDES.

#include <type_traits>

namespace std
{
typedef short test_type;
template struct is_trivially_constructible<test_type>;
}

0 comments on commit 285dc59

Please sign in to comment.