blob: 4bddd56b27cdd9286c05a578167aadb0cc608fab [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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, c++17
// XFAIL: availability-pmr-missing
// test_memory_resource requires RTTI for dynamic_cast
// UNSUPPORTED: no-rtti
// <memory_resource>
// polymorphic_allocator::allocate_bytes()
// polymorphic_allocator::deallocate_bytes()
#include <algorithm>
#include <cassert>
#include <concepts>
#include <memory_resource>
#include "tracking_mem_res.h"
template <class T>
void test() {
std::size_t last_size = 0;
std::size_t last_alignment = 0;
TrackingMemRes resource(&last_size, &last_alignment);
std::pmr::polymorphic_allocator<T> allocator(&resource);
{
std::same_as<void*> decltype(auto) allocation = allocator.allocate_bytes(13);
auto ptr = static_cast<char*>(allocation);
std::fill(ptr, ptr + 13, '0');
assert(last_size == 13);
assert(last_alignment == alignof(std::max_align_t));
allocator.deallocate_bytes(allocation, 13);
assert(last_size == 13);
assert(last_alignment == alignof(std::max_align_t));
}
{
void* allocation = allocator.allocate_bytes(13, 64);
auto ptr = static_cast<char*>(allocation);
std::fill(ptr, ptr + 13, '0');
assert(last_size == 13);
assert(last_alignment == 64);
allocator.deallocate_bytes(allocation, 13, 64);
assert(last_size == 13);
assert(last_alignment == 64);
}
}
struct S {};
int main(int, char**) {
test<std::byte>();
test<S>();
return 0;
}