vecmem 1.14.0
Loading...
Searching...
No Matches
arena_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#include <limits>
17#include <set>
18
19namespace vecmem::details {
20
23
24public:
25 // default initial size for the arena
26 static constexpr std::size_t default_initial_size =
27 std::numeric_limits<std::size_t>::max();
28 // default maximum size for the arena
29 static constexpr std::size_t default_maximum_size =
30 std::numeric_limits<std::size_t>::max();
31 // reserved memory that should not be allocated (64 MiB)
32 static constexpr std::size_t reserverd_size = 1u << 26u;
33
34 // Construct an `arena`
35 //
36 // @param[in] arena the arena from withc to allocate
37 // superblocks
38 explicit arena_memory_resource_impl(std::size_t initial_size,
39 std::size_t maximum_size,
40 memory_resource& mm);
41
43
44 // Allocates memory of size at least `bytes`
45 //
46 // @param[in] bytes the size in bytes of the allocation
47 // @param[in] alignment the alignment of the allocation (unused)
48 // @return void* pointer to the newly allocated memory
49 void* allocate(std::size_t bytes, std::size_t alignment = 0);
50
51 // Deallocate memory pointed to by `p`, and keeping all free superblocks.
52 // return the block to the set that have the free blocks.
53 //
54 // @param[in] p the pointer of the memory
55 // @param[in] bytes the size in bytes of the deallocation
56 // @param[in] alignment the alignment of the deallocation (unused)
57 // @return if the allocation was found, false otherwise
58 bool deallocate(void* p, std::size_t bytes, std::size_t alignment = 0);
59
60private:
62 class block {
63
64 public:
65 // construct a default block.
66 block() = default;
67
68 // construct a block given a pointer and size.
69 //
70 // @param[in] pointer the address for the beginning of the block.
71 // @param[in] size the size of the block
72 block(void* pointer, std::size_t size);
73
74 // returns the underlying pointer
75 void* pointer() const;
76
77 // returns the size of the block
78 std::size_t size() const;
79
80 // returns true if this block is valid (non-null), false otherwise
81 bool is_valid() const;
82
83 // returns true if this block is a Superblock, false otherwise
84 bool is_superblock() const;
85
86 // verifies wheter this block can be merged to the beginning of block b
87 //
88 // @param[in] b the block to check for contiguity
89 // @return true if this block's `pointer` + `size` == `b.ptr`, and `not
90 // b.isHead`, false otherwise
91 bool is_contiguous_before(block const& b) const;
92
93 // is this block large enough to fit that size of bytes?
94 //
95 // @param[in] size_of_bytes the size in bytes to check for fit
96 // @return true if this block is at least size_of_bytes
97 bool fits(std::size_t size_of_bytes) const;
98
99 // split this block into two by the given size
100 //
101 // @param[in] size the size in bytes of the first block
102 // @return std::pair<block, block> a pair of blocks split by size
103 std::pair<block, block> split(std::size_t size) const;
104
105 // coalesce two contiguos blocks into one, this->is_contiguous_before(b)
106 // must be true
107 //
108 // @param[in] b block to merge
109 // @return block the merged block
110 block merge(block const& b) const;
111
112 // used by std::set to compare blocks
113 bool operator<(block const& b) const;
114
115 private:
116 char* pointer_{}; // raw memory pointer
117 std::size_t size_{}; // size in bytes
118 };
119
120 static block first_fit(std::set<block>& free_blocks, std::size_t size);
121 static block coalesce_block(std::set<block>& free_blocks, block const& b);
122
123 // @brief Get an available memory block of at least `size` bytes.
124 //
125 // @param[in] size The number of bytes to allocate.
126 // @return block A block of memory of at least `size` bytes.
127 block get_block(std::size_t size);
128
129 // Allocate space from upstream to supply the arena and return a superblock.
130 //
131 // @return block A superblock.
132 block expand_arena(std::size_t size);
133
134 // Finds, frees and returns the block associated with pointer `p`.
135 //
136 // @param[in] p The pointer to the memory to free.
137 // @param[in] size The size of the memory to free. Must be equal to the
138 // original allocation size. return The (now freed) block associated with
139 // `p`. The caller is expected to return the block to the arena.
140 block free_block(void* p, std::size_t size) noexcept;
141
142 memory_resource& mm_;
143 // The size of superblocks to allocate in case of is necessarry
144 std::size_t size_superblocks_{};
145 // The maximum size of the arena
146 std::size_t maximum_size_;
147 // The current size of the arena
148 std::size_t current_size_{};
149 // Address-ordered set of free blocks
150 std::set<block> free_blocks_;
151 std::set<block> allocated_blocks_;
152
153}; // class arena_memory_resource_impl
154
155} // namespace vecmem::details
Implementation backend for vecmem::details::arena_page_memory_resource.
Definition arena_memory_resource_impl.hpp:22
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