12#include "vecmem/memory/details/memory_resource_base.hpp"
13#include "vecmem/memory/memory_resource.hpp"
14#include "vecmem/vecmem_core_export.hpp"
24class contiguous_memory_resource_impl;
79 virtual void*
do_allocate(std::size_t, std::size_t)
override final;
83 std::size_t)
override final;
88 std::unique_ptr<details::contiguous_memory_resource_impl> m_impl;
Downstream allocator that ensures that allocations are contiguous.
Definition contiguous_memory_resource.hpp:42
contiguous_memory_resource(const contiguous_memory_resource &)=delete
Disallow copying the memory resource.
VECMEM_CORE_EXPORT contiguous_memory_resource & operator=(contiguous_memory_resource &&rhs)
Move assignment operator.
VECMEM_CORE_EXPORT ~contiguous_memory_resource()
Deconstruct the contiguous memory resource.
virtual VECMEM_CORE_EXPORT void * do_allocate(std::size_t, std::size_t) override final
Allocate memory with one of the underlying resources.
virtual VECMEM_CORE_EXPORT void do_deallocate(void *p, std::size_t, std::size_t) override final
De-allocate a previously allocated memory block.
VECMEM_CORE_EXPORT contiguous_memory_resource(contiguous_memory_resource &&parent)
Move constructor.
contiguous_memory_resource & operator=(const contiguous_memory_resource &)=delete
Disallow copying the memory resource.
Base class for implementations of the vecmem::memory_resource interface.
Definition memory_resource_base.hpp:25
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35