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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182
|
//===----------------------------------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
// <memory>
// shared_ptr
// template<class T, class A, class... Args>
// shared_ptr<T> allocate_shared(const A& a, Args&&... args);
// This test checks that allocator_traits::construct and allocator_traits::destroy
// are used in allocate_shared as requested for the resolution of LWG2070. Note
// that LWG2070 was resolved by P0674R1 (which is a C++20 paper), but we implement
// LWG issue resolutions as DRs per our policy.
#include <cassert>
#include <cstddef>
#include <cstdint>
#include <memory>
#include <new>
#include <utility>
#include "test_macros.h"
static bool construct_called = false;
static bool destroy_called = false;
static unsigned allocator_id = 0;
template <class T>
struct MyAllocator {
public:
typedef T value_type;
typedef T* pointer;
unsigned id = 0;
MyAllocator() = default;
MyAllocator(int i) : id(i) {}
template <class U>
MyAllocator(MyAllocator<U> const& other) : id(other.id) {}
pointer allocate(std::ptrdiff_t n) {
return pointer(static_cast<T*>(::operator new(n * sizeof(T))));
}
void deallocate(pointer p, std::ptrdiff_t) { return ::operator delete(p); }
template <typename ...Args>
void construct(T* p, Args&& ...args) {
construct_called = true;
destroy_called = false;
allocator_id = id;
::new (p) T(std::forward<Args>(args)...);
}
void destroy(T* p) {
construct_called = false;
destroy_called = true;
allocator_id = id;
p->~T();
}
};
struct Private;
class Factory {
public:
static std::shared_ptr<Private> allocate();
};
template <class T>
struct FactoryAllocator;
struct Private {
int id;
private:
friend FactoryAllocator<Private>;
Private(int i) : id(i) {}
~Private() {}
};
template <class T>
struct FactoryAllocator : std::allocator<T> {
FactoryAllocator() = default;
template <class T1>
FactoryAllocator(FactoryAllocator<T1>) {}
template <class T1>
struct rebind {
typedef FactoryAllocator<T1> other;
};
void construct(void* p, int id) { ::new (p) Private(id); }
void destroy(Private* p) { p->~Private(); }
};
std::shared_ptr<Private> Factory::allocate() {
FactoryAllocator<Private> factory_alloc;
return std::allocate_shared<Private>(factory_alloc, 42);
}
struct mchar {
char c;
};
struct Foo {
int val;
Foo(int v) : val(v) {}
Foo(Foo a, Foo b) : val(a.val + b.val) {}
};
void test_aligned(void* p, std::size_t align) {
assert(reinterpret_cast<std::uintptr_t>(p) % align == 0);
}
int main(int, char**) {
{
std::shared_ptr<int> p = std::allocate_shared<int>(MyAllocator<int>());
assert(construct_called);
}
assert(destroy_called);
{
std::shared_ptr<Foo> p =
std::allocate_shared<Foo>(MyAllocator<Foo>(), Foo(42), Foo(100));
assert(construct_called);
assert(p->val == 142);
}
assert(destroy_called);
{ // Make sure allocator is copied.
std::shared_ptr<int> p = std::allocate_shared<int>(MyAllocator<int>(3));
assert(allocator_id == 3);
allocator_id = 0;
}
assert(allocator_id == 3);
{
std::shared_ptr<int> p = std::allocate_shared<int>(MyAllocator<int>(), 42);
assert(construct_called);
assert(*p == 42);
}
assert(destroy_called);
{ // Make sure allocator is properly re-bound.
std::shared_ptr<int> p =
std::allocate_shared<int>(MyAllocator<mchar>(), 42);
assert(construct_called);
assert(*p == 42);
}
assert(destroy_called);
{
// Make sure that we call the correct allocator::construct. Private has a private constructor
// so the construct method must be called on its friend Factory's allocator
// (Factory::Allocator).
std::shared_ptr<Private> p = Factory().allocate();
assert(p->id == 42);
}
#if TEST_STD_VER >= 11
{
struct Bar {
std::max_align_t y;
};
std::shared_ptr<Bar> p;
test_aligned(p.get(), alignof(Bar));
}
#endif
return 0;
}
|