mirror of
https://github.com/darlinghq/darling-libcxx.git
synced 2024-11-27 22:00:30 +00:00
Fix PR31378 - std::list::remove should not require a default constructible allocator.
In list::remove we collect the nodes we're removing in a seperate list instance. However we construct this list using the default constructor which default constructs the allocator. However allocators are not required to be default constructible. This patch fixes the construction of the second list. git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@289735 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7b7dedb244
commit
bad1d6c248
@ -2091,7 +2091,7 @@ template <class _Tp, class _Alloc>
|
||||
void
|
||||
list<_Tp, _Alloc>::remove(const value_type& __x)
|
||||
{
|
||||
list<_Tp, _Alloc> __deleted_nodes; // collect the nodes we're removing
|
||||
list<_Tp, _Alloc> __deleted_nodes(get_allocator()); // collect the nodes we're removing
|
||||
for (const_iterator __i = begin(), __e = end(); __i != __e;)
|
||||
{
|
||||
if (*__i == __x)
|
||||
|
@ -14,56 +14,70 @@
|
||||
#include <list>
|
||||
#include <cassert>
|
||||
|
||||
#include "test_macros.h"
|
||||
#include "min_allocator.h"
|
||||
|
||||
struct S {
|
||||
S(int i) : i_(new int(i)) {}
|
||||
S(const S &rhs) : i_(new int(*rhs.i_)) {}
|
||||
S& operator = (const S &rhs) { *i_ = *rhs.i_; return *this; }
|
||||
~S () { delete i_; i_ = NULL; }
|
||||
bool operator == (const S &rhs) const { return *i_ == *rhs.i_; }
|
||||
int get () const { return *i_; }
|
||||
int *i_;
|
||||
};
|
||||
S(int i) : i_(new int(i)) {}
|
||||
S(const S &rhs) : i_(new int(*rhs.i_)) {}
|
||||
S &operator=(const S &rhs) {
|
||||
*i_ = *rhs.i_;
|
||||
return *this;
|
||||
}
|
||||
~S() {
|
||||
delete i_;
|
||||
i_ = NULL;
|
||||
}
|
||||
bool operator==(const S &rhs) const { return *i_ == *rhs.i_; }
|
||||
int get() const { return *i_; }
|
||||
int *i_;
|
||||
};
|
||||
|
||||
|
||||
int main()
|
||||
{
|
||||
{
|
||||
int main() {
|
||||
{
|
||||
int a1[] = {1, 2, 3, 4};
|
||||
int a2[] = {1, 2, 4};
|
||||
std::list<int> c(a1, a1+4);
|
||||
std::list<int> c(a1, a1 + 4);
|
||||
c.remove(3);
|
||||
assert(c == std::list<int>(a2, a2+3));
|
||||
}
|
||||
{ // LWG issue #526
|
||||
assert(c == std::list<int>(a2, a2 + 3));
|
||||
}
|
||||
{ // LWG issue #526
|
||||
int a1[] = {1, 2, 1, 3, 5, 8, 11};
|
||||
int a2[] = { 2, 3, 5, 8, 11};
|
||||
std::list<int> c(a1, a1+7);
|
||||
int a2[] = {2, 3, 5, 8, 11};
|
||||
std::list<int> c(a1, a1 + 7);
|
||||
c.remove(c.front());
|
||||
assert(c == std::list<int>(a2, a2+5));
|
||||
}
|
||||
{
|
||||
assert(c == std::list<int>(a2, a2 + 5));
|
||||
}
|
||||
{
|
||||
int a1[] = {1, 2, 1, 3, 5, 8, 11, 1};
|
||||
int a2[] = { 2, 3, 5, 8, 11 };
|
||||
int a2[] = {2, 3, 5, 8, 11};
|
||||
std::list<S> c;
|
||||
for(int *ip = a1; ip < a1+8; ++ip)
|
||||
c.push_back(S(*ip));
|
||||
for (int *ip = a1; ip < a1 + 8; ++ip)
|
||||
c.push_back(S(*ip));
|
||||
c.remove(c.front());
|
||||
std::list<S>::const_iterator it = c.begin();
|
||||
for(int *ip = a2; ip < a2+5; ++ip, ++it) {
|
||||
assert ( it != c.end());
|
||||
assert ( *ip == it->get());
|
||||
}
|
||||
assert ( it == c.end ());
|
||||
for (int *ip = a2; ip < a2 + 5; ++ip, ++it) {
|
||||
assert(it != c.end());
|
||||
assert(*ip == it->get());
|
||||
}
|
||||
#if TEST_STD_VER >= 11
|
||||
{
|
||||
assert(it == c.end());
|
||||
}
|
||||
{
|
||||
typedef no_default_allocator<int> Alloc;
|
||||
typedef std::list<int, Alloc> List;
|
||||
int a1[] = {1, 2, 3, 4};
|
||||
int a2[] = {1, 2, 4};
|
||||
std::list<int, min_allocator<int>> c(a1, a1+4);
|
||||
List c(a1, a1 + 4, Alloc::create());
|
||||
c.remove(3);
|
||||
assert((c == std::list<int, min_allocator<int>>(a2, a2+3)));
|
||||
}
|
||||
assert(c == List(a2, a2 + 3, Alloc::create()));
|
||||
}
|
||||
#if TEST_STD_VER >= 11
|
||||
{
|
||||
int a1[] = {1, 2, 3, 4};
|
||||
int a2[] = {1, 2, 4};
|
||||
std::list<int, min_allocator<int>> c(a1, a1 + 4);
|
||||
c.remove(3);
|
||||
assert((c == std::list<int, min_allocator<int>>(a2, a2 + 3)));
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
@ -20,6 +20,10 @@
|
||||
#include "test_macros.h"
|
||||
#include "type_id.h"
|
||||
|
||||
#if TEST_STD_VER < 11
|
||||
#error This header requires C++11 or greater
|
||||
#endif
|
||||
|
||||
struct AllocController;
|
||||
// 'AllocController' is a concrete type that instruments and controls the
|
||||
// behavior of of test allocators.
|
||||
|
@ -42,6 +42,44 @@ public:
|
||||
friend bool operator!=(bare_allocator x, bare_allocator y) {return !(x == y);}
|
||||
};
|
||||
|
||||
|
||||
template <class T>
|
||||
class no_default_allocator
|
||||
{
|
||||
#if TEST_STD_VER >= 11
|
||||
no_default_allocator() = delete;
|
||||
#else
|
||||
no_default_allocator();
|
||||
#endif
|
||||
struct construct_tag {};
|
||||
explicit no_default_allocator(construct_tag) {}
|
||||
|
||||
public:
|
||||
static no_default_allocator create() {
|
||||
construct_tag tag;
|
||||
return no_default_allocator(tag);
|
||||
}
|
||||
|
||||
public:
|
||||
typedef T value_type;
|
||||
|
||||
template <class U>
|
||||
no_default_allocator(no_default_allocator<U>) TEST_NOEXCEPT {}
|
||||
|
||||
T* allocate(std::size_t n)
|
||||
{
|
||||
return static_cast<T*>(::operator new(n*sizeof(T)));
|
||||
}
|
||||
|
||||
void deallocate(T* p, std::size_t)
|
||||
{
|
||||
return ::operator delete(static_cast<void*>(p));
|
||||
}
|
||||
|
||||
friend bool operator==(no_default_allocator, no_default_allocator) {return true;}
|
||||
friend bool operator!=(no_default_allocator x, no_default_allocator y) {return !(x == y);}
|
||||
};
|
||||
|
||||
struct malloc_allocator_base {
|
||||
static size_t alloc_count;
|
||||
static size_t dealloc_count;
|
||||
|
Loading…
Reference in New Issue
Block a user