vecmem 1.14.0
Loading...
Searching...
No Matches
contiguous_memory_resource_impl.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021-2023 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8
9#pragma once
10
11// Local include(s).
12#include "vecmem/memory/memory_resource.hpp"
13
14// System include(s).
15#include <cstddef>
16
17namespace vecmem::details {
18
21
22public:
25 std::size_t size);
28
30 void* allocate(std::size_t size, std::size_t alignment);
32 void deallocate(void* ptr, std::size_t size, std::size_t alignment);
33
34private:
36 memory_resource& m_upstream;
38 const std::size_t m_size;
40 void* const m_begin;
42 void* m_next;
43
44}; // class contiguous_memory_resource_impl
45
46} // namespace vecmem::details
Implementation of vecmem::contiguous_memory_resource.
Definition contiguous_memory_resource_impl.hpp:20
~contiguous_memory_resource_impl()
Destructor.
Definition contiguous_memory_resource_impl.cpp:33
void deallocate(void *ptr, std::size_t size, std::size_t alignment)
De-allocate a previously allocated memory block.
Definition contiguous_memory_resource_impl.cpp:82
void * allocate(std::size_t size, std::size_t alignment)
Allocate memory from the resource's contiguous memory block.
Definition contiguous_memory_resource_impl.cpp:43
Namespace for types that should not be used directly by clients.
Definition array.hpp:23
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35