26 static constexpr std::size_t default_initial_size =
27 std::numeric_limits<std::size_t>::max();
29 static constexpr std::size_t default_maximum_size =
30 std::numeric_limits<std::size_t>::max();
32 static constexpr std::size_t reserverd_size = 1u << 26u;
49 void* allocate(std::size_t
bytes, std::size_t alignment = 0);
58 bool deallocate(
void*
p, std::size_t
bytes, std::size_t alignment = 0);
72 block(
void* pointer, std::size_t size);
75 void* pointer()
const;
78 std::size_t size()
const;
81 bool is_valid()
const;
84 bool is_superblock()
const;
91 bool is_contiguous_before(block
const&
b)
const;
103 std::pair<block, block> split(std::size_t size)
const;
110 block merge(block
const&
b)
const;
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);
127 block get_block(std::size_t size);
132 block expand_arena(std::size_t size);
140 block free_block(
void*
p, std::size_t size)
noexcept;
142 memory_resource& mm_;
144 std::size_t size_superblocks_{};
146 std::size_t maximum_size_;
148 std::size_t current_size_{};
150 std::set<block> free_blocks_;
151 std::set<block> allocated_blocks_;
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35