template<typename UpstreamMemoryResourceType>
class cetl::pmr::UnsynchronizedBufferMemoryResourceDelegate< UpstreamMemoryResourceType >
Memory resource that supports a single allocation request within a single, contiguous block of memory.
Without any memory barriers or other synchronization primitives this is one of the simplest possible implementations of a std::pmr::memory_resource with only one feature of supporting an, optional, upstream allocator.
- Delegate Class
- You will need an implementation of memory_resource that uses this class as a delegate since this class does not directly rely on any C++17 nor CETL pf17 types. This allows you to use it with std::pmr::memory_resource or cetl::pf17::pmr::memory_resource.
- Over-Alignment
- This class supports over-alignment but you will need to over-provision the backing array to support this feature. For example, if the buffer is too small to support the requested alignment then the allocation will fail as this example, using the delegate via cetl::pf17::pmr::UnsynchronizedArrayMemoryResource, demonstrates:
void* r = nullptr;
#if defined(__cpp_exceptions)
try
{
#endif
r = resource.allocate(64, 128);
#if defined(__cpp_exceptions)
{
}
#endif
By over-provisioning the buffer the same alignment will succeed:
resource.deallocate(r, 64, 128);
(See full example here...)
- Template Parameters
-
MemoryResourceType | The type of the upstream memory resource to use. |