vecmem 1.14.0
|
An allocator class that wraps a memory resource. More...
#include <vecmem/memory/allocator.hpp>
Public Member Functions | |
allocator (memory_resource &mem) | |
Construct an allocator. | |
void * | allocate_bytes (std::size_t bytes, std::size_t alignment=alignof(std::max_align_t)) |
Allocate a given number of bytes. | |
void | deallocate_bytes (void *p, std::size_t bytes, std::size_t alignment=alignof(std::max_align_t)) |
Deallocate a given number of bytes. | |
template<typename T > | |
T * | allocate_object (std::size_t n=1) |
Allocate space for (a number of) objects. | |
template<typename T > | |
void | deallocate_object (T *p, std::size_t n=1) |
Deallocate space for (a number of) objects. | |
template<typename T , typename... Args> | |
T * | new_object (Args &&... args) |
Allocate and construct a new object. | |
template<typename T > | |
void | delete_object (T *p) |
Deconstruct and deallocate an object. | |
An allocator class that wraps a memory resource.
Sometimes we want to construct objects outside of vectors, and for those cases we need a simpler allocator that uses a memory resource to set the allocation strategy. This class is inspired by std::pmr::polymorphic_allocator
but changes some things about it. Firstly, this class is not templated at a class level, and the templating only happens at a method level. This makes the class significantly easier to use. Secondly, this class emulates some of the C++20 functionality offered by the polymorphic allocator in a C++17 context.
vecmem::allocator::allocator | ( | memory_resource & | mem | ) |
Construct an allocator.
Construct a new allocator on a given upstream memory resource.
[in] | mem | The memory resource to use for allocations. |
void * vecmem::allocator::allocate_bytes | ( | std::size_t | bytes, |
std::size_t | alignment = alignof(std::max_align_t) |
||
) |
Allocate a given number of bytes.
The most low-level allocation method provided by the allocator simply allocates a number of untyped bytes, optionally with some alignment. This can be used directly, or by other allocation methods to build more high-level functionality.
[in] | bytes | The number of bytes to allocate. |
[in] | alignment | The alignment boundary for the allocation. |
Allocate space for (a number of) objects.
A mid-level allocator which abstracts away calculating the size of their allocation. The user simply provides the type and the number of objects to allocate space for.
T | The type of object to allocate space for. |
[in] | n | The number of objects of type T to allocate space for. |
void vecmem::allocator::deallocate_bytes | ( | void * | p, |
std::size_t | bytes, | ||
std::size_t | alignment = alignof(std::max_align_t) |
||
) |
Deallocate a given number of bytes.
The most low-level deallocation method simply deallocates a number of bytes.
[in] | p | The pointer to deallocate. |
[in] | bytes | The number of bytes to deallocate. |
[in] | alignment | The alignment boundary for the deallocation. |
Deallocate space for (a number of) objects.
A mid-level deallocator which abstracts away calculating the size of the deallocation.
T | The type of object to deallocater. |
[in] | n | The number of objects of type T to deallocate. |
Deconstruct and deallocate an object.
The highest-level deallocator we provide, this deconstructs and then deallocates an object.
T | The type of object to delete. |
[in] | p | The object to delete. |
Allocate and construct a new object.
The highest-level allocator we provide, this allocates memory for and then constructs an object of the given type. Parameters passed to this method are passed on to the constructor for the object.
T | The type to construct. |
Args | The constructor parameter pack. |
[in] | args | The arguments to pass on to the class constructor. |