1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
//===----------------------------------------------------------------------===//
//
// 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
// <memory>
// template <class T>
// constexpr void destroy_at(T*);
#include <memory>
#include <cassert>
#include <type_traits>
#include "test_macros.h"
struct Counted {
int* counter_;
TEST_CONSTEXPR Counted(int* counter) : counter_(counter) { ++*counter_; }
TEST_CONSTEXPR_CXX20 ~Counted() { --*counter_; }
friend void operator&(Counted) = delete;
};
struct VirtualCounted {
int* counter_;
TEST_CONSTEXPR VirtualCounted(int* counter) : counter_(counter) { ++*counter_; }
TEST_CONSTEXPR_CXX20 virtual ~VirtualCounted() { --*counter_; }
void operator&() const = delete;
};
struct DerivedCounted : VirtualCounted {
TEST_CONSTEXPR DerivedCounted(int* counter) : VirtualCounted(counter) { }
TEST_CONSTEXPR_CXX20 ~DerivedCounted() override { }
};
#if TEST_STD_VER > 17
constexpr bool test_arrays() {
{
using Array = Counted[3];
using Alloc = std::allocator<Array>;
Alloc alloc;
Array* ptr = std::allocator_traits<Alloc>::allocate(alloc, 1);
Array& arr = *ptr;
int counter = 0;
for (int i = 0; i != 3; ++i)
std::allocator_traits<Alloc>::construct(alloc, std::addressof(arr[i]), &counter);
assert(counter == 3);
std::destroy_at(ptr);
ASSERT_SAME_TYPE(decltype(std::destroy_at(ptr)), void);
assert(counter == 0);
std::allocator_traits<Alloc>::deallocate(alloc, ptr, 1);
}
{
using Array = Counted[3][2];
using Alloc = std::allocator<Array>;
Alloc alloc;
Array* ptr = std::allocator_traits<Alloc>::allocate(alloc, 1);
Array& arr = *ptr;
int counter = 0;
for (int i = 0; i != 3; ++i)
for (int j = 0; j != 2; ++j)
std::allocator_traits<Alloc>::construct(alloc, std::addressof(arr[i][j]), &counter);
assert(counter == 3 * 2);
std::destroy_at(ptr);
ASSERT_SAME_TYPE(decltype(std::destroy_at(ptr)), void);
assert(counter == 0);
std::allocator_traits<Alloc>::deallocate(alloc, ptr, 1);
}
return true;
}
#endif
TEST_CONSTEXPR_CXX20 bool test() {
{
using Alloc = std::allocator<Counted>;
Alloc alloc;
Counted* ptr1 = std::allocator_traits<Alloc>::allocate(alloc, 1);
Counted* ptr2 = std::allocator_traits<Alloc>::allocate(alloc, 1);
int counter = 0;
std::allocator_traits<Alloc>::construct(alloc, ptr1, &counter);
std::allocator_traits<Alloc>::construct(alloc, ptr2, &counter);
assert(counter == 2);
std::destroy_at(ptr1);
ASSERT_SAME_TYPE(decltype(std::destroy_at(ptr1)), void);
assert(counter == 1);
std::destroy_at(ptr2);
assert(counter == 0);
std::allocator_traits<Alloc>::deallocate(alloc, ptr1, 1);
std::allocator_traits<Alloc>::deallocate(alloc, ptr2, 1);
}
{
using Alloc = std::allocator<DerivedCounted>;
Alloc alloc;
DerivedCounted* ptr1 = std::allocator_traits<Alloc>::allocate(alloc, 1);
DerivedCounted* ptr2 = std::allocator_traits<Alloc>::allocate(alloc, 1);
int counter = 0;
std::allocator_traits<Alloc>::construct(alloc, ptr1, &counter);
std::allocator_traits<Alloc>::construct(alloc, ptr2, &counter);
assert(counter == 2);
std::destroy_at(ptr1);
ASSERT_SAME_TYPE(decltype(std::destroy_at(ptr1)), void);
assert(counter == 1);
std::destroy_at(ptr2);
assert(counter == 0);
std::allocator_traits<Alloc>::deallocate(alloc, ptr1, 1);
std::allocator_traits<Alloc>::deallocate(alloc, ptr2, 1);
}
return true;
}
int main(int, char**) {
test();
#if TEST_STD_VER > 17
test_arrays();
static_assert(test());
// TODO: Until std::construct_at has support for arrays, it's impossible to test this
// in a constexpr context (see https://reviews.llvm.org/D114903).
// static_assert(test_arrays());
#endif
return 0;
}
|