vecmem 1.14.0
Loading...
Searching...
No Matches
debug_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 <unordered_map>
17
18namespace vecmem::details {
19
22
23public:
29 debug_memory_resource_impl(memory_resource& upstream);
30
32 void* allocate(std::size_t, std::size_t);
34 void deallocate(void* p, std::size_t, std::size_t);
35
36private:
38 memory_resource& m_upstream;
40 std::unordered_map<void*, std::pair<std::size_t, std::size_t>>
41 m_allocations;
42
43}; // class debug_memory_resource_impl
44
45} // namespace vecmem::details
Implementation for vecmem::details::debug_memory_resource.
Definition debug_memory_resource_impl.hpp:21
void deallocate(void *p, std::size_t, std::size_t)
Deallocate previously allocated memory.
Definition debug_memory_resource_impl.cpp:69
void * allocate(std::size_t, std::size_t)
Allocate memory with a chosen memory resource.
Definition debug_memory_resource_impl.cpp: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