vecmem 1.14.0
Loading...
Searching...
No Matches
Public Member Functions | List of all members
vecmem::allocator Class Reference

An allocator class that wraps a memory resource. More...

#include <vecmem/memory/allocator.hpp>

Public Member Functions

 allocator (memory_resource &mem)
 Construct an allocator.
 
voidallocate_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 >
Tallocate_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>
Tnew_object (Args &&... args)
 Allocate and construct a new object.
 
template<typename T >
void delete_object (T *p)
 Deconstruct and deallocate an object.
 

Detailed Description

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.

Warning
Deallocating memory allocated with a different allocator (or rather, with an allocator using a different upstream memory resource) than the one doing the deallocation is not well-defined and should be avoided.

Constructor & Destructor Documentation

◆ allocator()

vecmem::allocator::allocator ( memory_resource &  mem)

Construct an allocator.

Construct a new allocator on a given upstream memory resource.

Parameters
[in]memThe memory resource to use for allocations.

Member Function Documentation

◆ allocate_bytes()

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.

Parameters
[in]bytesThe number of bytes to allocate.
[in]alignmentThe alignment boundary for the allocation.

◆ allocate_object()

template<typename T >
T * vecmem::allocator::allocate_object ( std::size_t  n = 1)

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.

Note
The space allocated by this method is not initialized in any way.
Template Parameters
TThe type of object to allocate space for.
Parameters
[in]nThe number of objects of type T to allocate space for.

◆ deallocate_bytes()

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.

Warning
The onus is on the user to remember the size of each allocation, and this method might be too low-level for most purposes.
Parameters
[in]pThe pointer to deallocate.
[in]bytesThe number of bytes to deallocate.
[in]alignmentThe alignment boundary for the deallocation.

◆ deallocate_object()

template<typename T >
void vecmem::allocator::deallocate_object ( T p,
std::size_t  n = 1 
)

Deallocate space for (a number of) objects.

A mid-level deallocator which abstracts away calculating the size of the deallocation.

Note
The space deallocated by this method is not deconstructed.
Template Parameters
TThe type of object to deallocater.
Parameters
[in]nThe number of objects of type T to deallocate.

◆ delete_object()

template<typename T >
void vecmem::allocator::delete_object ( T p)

Deconstruct and deallocate an object.

The highest-level deallocator we provide, this deconstructs and then deallocates an object.

Template Parameters
TThe type of object to delete.
Parameters
[in]pThe object to delete.

◆ new_object()

template<typename T , typename... Args>
T * vecmem::allocator::new_object ( Args &&...  args)

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.

Template Parameters
TThe type to construct.
ArgsThe constructor parameter pack.
Parameters
[in]argsThe arguments to pass on to the class constructor.

The documentation for this class was generated from the following files: