Commit 848ca96f by Paolo Carlini Committed by Paolo Carlini

re PR libstdc++/49559 ([C++0x] stable_sort calls self-move-assignment operator)

2011-07-11  Paolo Carlini  <paolo.carlini@oracle.com>

	PR libstdc++/49559
	* include/bits/stl_algo.h (__move_merge_backward): Remove.
	(__move_merge_adaptive, __move_merge_adaptive_backward): New.
	(__merge_adaptive): Use the latter two.
	(__rotate_adaptive): Avoid self move-assignment.
	* include/bits/stl_algobase.h (move_backward): Fix comment.
	* testsuite/25_algorithms/stable_sort/49559.cc: New.
	* testsuite/25_algorithms/inplace_merge/49559.cc: Likewise.
	* testsuite/25_algorithms/inplace_merge/moveable.cc: Extend.
	* testsuite/25_algorithms/inplace_merge/moveable2.cc: Likewise.
	* testsuite/util/testsuite_rvalref.h (rvalstruct::operator=
	(rvalstruct&&)): Check for self move-assignment.

From-SVN: r176174
parent f9610d20
2011-07-11 Paolo Carlini <paolo.carlini@oracle.com>
PR libstdc++/49559
* include/bits/stl_algo.h (__move_merge_backward): Remove.
(__move_merge_adaptive, __move_merge_adaptive_backward): New.
(__merge_adaptive): Use the latter two.
(__rotate_adaptive): Avoid self move-assignment.
* include/bits/stl_algobase.h (move_backward): Fix comment.
* testsuite/25_algorithms/stable_sort/49559.cc: New.
* testsuite/25_algorithms/inplace_merge/49559.cc: Likewise.
* testsuite/25_algorithms/inplace_merge/moveable.cc: Extend.
* testsuite/25_algorithms/inplace_merge/moveable2.cc: Likewise.
* testsuite/util/testsuite_rvalref.h (rvalstruct::operator=
(rvalstruct&&)): Check for self move-assignment.
2011-07-11 Paolo Carlini <paolo.carlini@oracle.com>
* testsuite/util/testsuite_allocator.h (propagating_allocator<>::
operator=(const propagating_allocator<>&)): Retun *this.
......
......@@ -641,7 +641,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
* loop count will be known (and therefore a candidate for compiler
* optimizations such as unrolling).
*
* Result may not be in the range [first,last). Use move instead. Note
* Result may not be in the range (first,last]. Use move instead. Note
* that the start of the output range may overlap [first,last).
*/
template<typename _BI1, typename _BI2>
......
// { dg-options "-std=gnu++0x" }
// Copyright (C) 2011 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/>.
#undef _GLIBCXX_CONCEPT_CHECKS
// XXX FIXME: parallel-mode should deal correctly with moveable-only types
// per C++0x, at minimum smoothly fall back to serial.
#undef _GLIBCXX_PARALLEL
#include <algorithm>
#include <testsuite_hooks.h>
#include <testsuite_iterators.h>
#include <testsuite_rvalref.h>
using __gnu_test::test_container;
using __gnu_test::bidirectional_iterator_wrapper;
using __gnu_test::rvalstruct;
typedef test_container<rvalstruct, bidirectional_iterator_wrapper> Container;
const int A[] = { 0, 1, 2, 3, 4, 5 };
const int N = 6;
bool are_ordered(const rvalstruct& lhs, const rvalstruct& rhs)
{ return lhs < rhs; }
// libstdc++/49559
void test01()
{
bool test __attribute__((unused)) = true;
rvalstruct s1[6];
std::copy(A, A + N, s1);
Container con1(s1, s1 + N);
std::inplace_merge(con1.begin(), con1.it(4), con1.end());
VERIFY( s1[0] == 0 && s1[1] == 1 && s1[2] == 2
&& s1[3] == 3 && s1[4] == 4 && s1[5] == 5 );
VERIFY( s1[0].valid && s1[1].valid && s1[2].valid
&& s1[3].valid && s1[4].valid && s1[5].valid );
rvalstruct s2[6];
std::copy(A, A + N, s2);
Container con2(s2, s2 + N);
std::inplace_merge(con2.begin(), con2.it(4), con2.end(), are_ordered);
VERIFY( s2[0] == 0 && s2[1] == 1 && s2[2] == 2
&& s2[3] == 3 && s2[4] == 4 && s2[5] == 5 );
VERIFY( s2[0].valid && s2[1].valid && s2[2].valid
&& s2[3].valid && s2[4].valid && s2[5].valid );
}
int
main()
{
test01();
return 0;
}
......@@ -35,13 +35,59 @@ test01()
{
bool test __attribute__((unused)) = true;
int array[]={0,2,4,1,3,5};
rvalstruct rv_array[6];
std::copy(array, array + 6, rv_array);
container con(rv_array, rv_array + 6);
std::inplace_merge(con.begin(), con.it(3), con.end());
VERIFY( rv_array[0] == 0 && rv_array[1] == 1 && rv_array[2] == 2
&& rv_array[3] == 3 && rv_array[4] == 4 && rv_array[5] == 5 );
int array1[]={0,2,4,1,3,5};
rvalstruct rv_array1[6];
std::copy(array1, array1 + 6, rv_array1);
container con1(rv_array1, rv_array1 + 6);
std::inplace_merge(con1.begin(), con1.it(3), con1.end());
VERIFY( rv_array1[0] == 0 && rv_array1[1] == 1 && rv_array1[2] == 2
&& rv_array1[3] == 3 && rv_array1[4] == 4 && rv_array1[5] == 5 );
int array2[]={0,2,4,5,1,3};
rvalstruct rv_array2[6];
std::copy(array2, array2 + 6, rv_array2);
container con2(rv_array2, rv_array2 + 6);
std::inplace_merge(con2.begin(), con2.it(4), con2.end());
VERIFY( rv_array2[0] == 0 && rv_array2[1] == 1 && rv_array2[2] == 2
&& rv_array2[3] == 3 && rv_array2[4] == 4 && rv_array2[5] == 5 );
int array3[]={1,1,1,2,2,2};
rvalstruct rv_array3[6];
std::copy(array3, array3 + 6, rv_array3);
container con3(rv_array3, rv_array3 + 6);
std::inplace_merge(con3.begin(), con3.it(3), con3.end());
VERIFY( rv_array3[0] == 1 && rv_array3[1] == 1 && rv_array3[2] == 1
&& rv_array3[3] == 2 && rv_array3[4] == 2 && rv_array3[5] == 2 );
int array4[]={1,1,1,1,2,2};
rvalstruct rv_array4[6];
std::copy(array4, array4 + 6, rv_array4);
container con4(rv_array4, rv_array4 + 6);
std::inplace_merge(con4.begin(), con4.it(4), con4.end());
VERIFY( rv_array4[0] == 1 && rv_array4[1] == 1 && rv_array4[2] == 1
&& rv_array4[3] == 1 && rv_array4[4] == 2 && rv_array4[5] == 2 );
int array5[]={3,3,3,3};
rvalstruct rv_array5[4];
std::copy(array5, array5 + 4, rv_array5);
container con5(rv_array5, rv_array5 + 4);
std::inplace_merge(con5.begin(), con5.it(2), con5.end());
VERIFY( rv_array5[0] == 3 && rv_array5[1] == 3 && rv_array5[2] == 3
&& rv_array5[3] == 3 );
int array6[]={3,3,3};
rvalstruct rv_array6[3];
std::copy(array6, array6 + 3, rv_array6);
container con6(rv_array6, rv_array6 + 3);
std::inplace_merge(con6.begin(), con6.it(0), con6.end());
VERIFY( rv_array6[0] == 3 && rv_array6[1] == 3 && rv_array6[2] == 3 );
int array7[]={3,3};
rvalstruct rv_array7[2];
std::copy(array7, array7 + 2, rv_array7);
container con7(rv_array7, rv_array7 + 2);
std::inplace_merge(con7.begin(), con7.it(2), con7.end());
VERIFY( rv_array7[0] == 3 && rv_array7[1] == 3 );
}
int
......
// { dg-options "-std=gnu++0x" }
// Copyright (C) 2009 Free Software Foundation, Inc.
// Copyright (C) 2009, 2010, 2011 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
......@@ -39,13 +39,59 @@ test01()
{
bool test __attribute__((unused)) = true;
int array[]={0,2,4,1,3,5};
rvalstruct rv_array[6];
std::copy(array, array + 6, rv_array);
container con(rv_array, rv_array + 6);
std::inplace_merge(con.begin(), con.it(3), con.end(), are_ordered);
VERIFY( rv_array[0] == 0 && rv_array[1] == 1 && rv_array[2] == 2
&& rv_array[3] == 3 && rv_array[4] == 4 && rv_array[5] == 5 );
int array1[]={0,2,4,1,3,5};
rvalstruct rv_array1[6];
std::copy(array1, array1 + 6, rv_array1);
container con1(rv_array1, rv_array1 + 6);
std::inplace_merge(con1.begin(), con1.it(3), con1.end(), are_ordered);
VERIFY( rv_array1[0] == 0 && rv_array1[1] == 1 && rv_array1[2] == 2
&& rv_array1[3] == 3 && rv_array1[4] == 4 && rv_array1[5] == 5 );
int array2[]={0,2,4,5,1,3};
rvalstruct rv_array2[6];
std::copy(array2, array2 + 6, rv_array2);
container con2(rv_array2, rv_array2 + 6);
std::inplace_merge(con2.begin(), con2.it(4), con2.end(), are_ordered);
VERIFY( rv_array2[0] == 0 && rv_array2[1] == 1 && rv_array2[2] == 2
&& rv_array2[3] == 3 && rv_array2[4] == 4 && rv_array2[5] == 5 );
int array3[]={1,1,1,2,2,2};
rvalstruct rv_array3[6];
std::copy(array3, array3 + 6, rv_array3);
container con3(rv_array3, rv_array3 + 6);
std::inplace_merge(con3.begin(), con3.it(3), con3.end(), are_ordered);
VERIFY( rv_array3[0] == 1 && rv_array3[1] == 1 && rv_array3[2] == 1
&& rv_array3[3] == 2 && rv_array3[4] == 2 && rv_array3[5] == 2 );
int array4[]={1,1,1,1,2,2};
rvalstruct rv_array4[6];
std::copy(array4, array4 + 6, rv_array4);
container con4(rv_array4, rv_array4 + 6);
std::inplace_merge(con4.begin(), con4.it(4), con4.end(), are_ordered);
VERIFY( rv_array4[0] == 1 && rv_array4[1] == 1 && rv_array4[2] == 1
&& rv_array4[3] == 1 && rv_array4[4] == 2 && rv_array4[5] == 2 );
int array5[]={3,3,3,3};
rvalstruct rv_array5[4];
std::copy(array5, array5 + 4, rv_array5);
container con5(rv_array5, rv_array5 + 4);
std::inplace_merge(con5.begin(), con5.it(2), con5.end(), are_ordered);
VERIFY( rv_array5[0] == 3 && rv_array5[1] == 3 && rv_array5[2] == 3
&& rv_array5[3] == 3 );
int array6[]={3,3,3};
rvalstruct rv_array6[3];
std::copy(array6, array6 + 3, rv_array6);
container con6(rv_array6, rv_array6 + 3);
std::inplace_merge(con6.begin(), con6.it(0), con6.end(), are_ordered);
VERIFY( rv_array6[0] == 3 && rv_array6[1] == 3 && rv_array6[2] == 3 );
int array7[]={3,3};
rvalstruct rv_array7[2];
std::copy(array7, array7 + 2, rv_array7);
container con7(rv_array7, rv_array7 + 2);
std::inplace_merge(con7.begin(), con7.it(2), con7.end(), are_ordered);
VERIFY( rv_array7[0] == 3 && rv_array7[1] == 3 );
}
int
......
// { dg-options "-std=gnu++0x" }
// Copyright (C) 2011 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/>.
#undef _GLIBCXX_CONCEPT_CHECKS
// XXX FIXME: parallel-mode should deal correctly with moveable-only types
// per C++0x, at minimum smoothly fall back to serial.
#undef _GLIBCXX_PARALLEL
#include <algorithm>
#include <testsuite_hooks.h>
#include <testsuite_iterators.h>
#include <testsuite_rvalref.h>
using __gnu_test::test_container;
using __gnu_test::random_access_iterator_wrapper;
using __gnu_test::rvalstruct;
typedef test_container<rvalstruct, random_access_iterator_wrapper> Container;
const int A[] = { 10 };
const int N = 1;
bool order(const rvalstruct& lhs, const rvalstruct& rhs)
{ return lhs < rhs; }
// libstdc++/49559
void test01()
{
bool test __attribute__((unused)) = true;
rvalstruct s1[1];
std::copy(A, A + 1, s1);
Container con1(s1, s1 + 1);
std::stable_sort(con1.begin(), con1.end());
VERIFY( s1[0] == 10 );
VERIFY( s1[0].valid );
rvalstruct s2[1];
std::copy(A, A + 1, s2);
Container con2(s2, s2 + 1);
std::stable_sort(con2.begin(), con2.end(), order);
VERIFY( s2[0] == 10 );
VERIFY( s2[0].valid );
}
int
main()
{
test01();
return 0;
}
......@@ -68,6 +68,7 @@ namespace __gnu_test
operator=(rvalstruct&& in)
{
bool test __attribute__((unused)) = true;
VERIFY( this != &in );
VERIFY( in.valid == true );
val = in.val;
in.valid = false;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment