blob: abdfda8f21d18e44a240ea76a23934bfdb96494e [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <experimental/memory_resource>
// memory_resource * new_delete_resource()
// The lifetime of the value returned by 'new_delete_resource()' should
// never end, even very late into program termination. This test constructs
// attempts to use 'new_delete_resource()' very late in program termination
// to detect lifetime issues.
#include <experimental/memory_resource>
#include <type_traits>
#include <cassert>
namespace ex = std::experimental::pmr;
struct POSType {
ex::memory_resource* res = nullptr;
void* ptr = nullptr;
int n = 0;
POSType() {res = ex::new_delete_resource(); ptr = res->allocate(42); n = 42; }
POSType(ex::memory_resource* r, void* p, int s) : res(r), ptr(p), n(s) {}
~POSType() { if (ptr) res->deallocate(ptr, n); }
};
void swap(POSType & L, POSType & R) {
std::swap(L.res, R.res);
std::swap(L.ptr, R.ptr);
std::swap(L.n, R.n);
}
POSType constructed_before_resources;
// Constructs resources
ex::memory_resource* resource = ex::new_delete_resource();
POSType constructed_after_resources(resource, resource->allocate(1024), 1024);
int main()
{
swap(constructed_after_resources, constructed_before_resources);
}