#include "cetl/pf17/memory_resource.hpp"
Public Types | |
using | is_reallocate_defined |
Public Member Functions | |
memory_resource_traits (const memory_resource_traits &)=delete | |
memory_resource_traits & | operator= (const memory_resource_traits &)=delete |
Static Public Member Functions | |
static constexpr std::size_t | max_size (const T &mr) noexcept |
static constexpr void * | reallocate (T &mr, void *ptr, std::size_t old_size_bytes, std::size_t new_size_bytes, std::size_t alignment=alignof(std::max_align_t)) |
Used to access extensions to std::pmr::memory_resource that are only found in CETL.
Proper defaults are provided when using std::pmr::memory_resource.
T | The type of the memory_resource to access. |
using cetl::pf17::pmr::deviant::memory_resource_traits< T >::is_reallocate_defined |
std::true_type
if T implements reallocate
otherwise std::false_type
.
|
inlinestaticconstexprnoexcept |
If using a CETL memory_resource, returns the result of calling the memory_resource's max_size method otherwise returns std::numeric_limits<std::size_t>::max().
mr | A reference to the memory_resource to query. |
Referenced by cetl::pf17::pmr::deviant::basic_monotonic_buffer_resource::do_max_size(), and cetl::pf17::pmr::polymorphic_allocator< T >::max_size().
|
inlinestaticconstexpr |
If supported, this will delegate to the memory_resource's reallocate method otherwise it will return nullptr.
This follows a similar behaviour contract described by std::reallocate with the implementation defined behaviour for zero-length reallocations being to always return nullptr.
mr | The memory_resource to use for allocation. |
ptr | The pointer to reallocate. If the reallocation is successful this pointer is invalid and must not be used even if it's address is the same as the returned pointer. This pointer remains valid for any failure. |
old_size_bytes | The number of bytes returned by the original allocation. |
new_size_bytes | The number of bytes to change ptr to hold. |
alignment | The alignment of the allocated memory. CETL will treat an inability to properly align or to support re-alignment of memory as an allocation failure. |
std::bad_alloc | Throws if any allocation errors occur. Implementations shall not leak memory even if the allocation fails. |