vecmem 1.14.0
Loading...
Searching...
No Matches
instrumenting_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/instrumenting_memory_resource.hpp"
13#include "vecmem/memory/memory_resource.hpp"
14
15// System include(s).
16#include <cstddef>
17#include <functional>
18#include <vector>
19
20namespace vecmem::details {
21
24
25public:
32
37 const std::vector<instrumenting_memory_resource::memory_event>& get_events(
38 void) const;
39
49 void add_pre_allocate_hook(std::function<void(std::size_t, std::size_t)> f);
50
63 std::function<void(std::size_t, std::size_t, void*)> f);
64
76 std::function<void(void*, std::size_t, std::size_t)> f);
77
79 void* allocate(std::size_t, std::size_t);
80
82 void deallocate(void* p, std::size_t, std::size_t);
83
84private:
85 /*
86 * The upstream memory resource to which requests for allocation and
87 * deallocation will be forwarded.
88 */
89 memory_resource& m_upstream;
90
91 /*
92 * This list stores a chronological set of requests that were passed to
93 * this memory resource.
94 */
95 std::vector<instrumenting_memory_resource::memory_event> m_events;
96
97 /*
98 * The list of all pre-allocation hooks.
99 */
100 std::vector<std::function<void(std::size_t, std::size_t)>>
101 m_pre_allocate_hooks;
102
103 /*
104 * The list of all post-allocation hooks.
105 */
106 std::vector<std::function<void(std::size_t, std::size_t, void*)>>
107 m_post_allocate_hooks;
108
109 /*
110 * The list of all pre-deallocation hooks.
111 */
112 std::vector<std::function<void(void*, std::size_t, std::size_t)>>
113 m_pre_deallocate_hooks;
114
115}; // class instrumenting_memory_resource_impl
116
117} // namespace vecmem::details
Implementation for vecmem::details::instrumenting_memory_resource.
Definition instrumenting_memory_resource_impl.hpp:23
void deallocate(void *p, std::size_t, std::size_t)
Deallocate previously allocated memory.
Definition instrumenting_memory_resource_impl.cpp:119
void add_post_allocate_hook(std::function< void(std::size_t, std::size_t, void *)> f)
Add a post-allocation hook.
Definition instrumenting_memory_resource_impl.cpp:33
void * allocate(std::size_t, std::size_t)
Allocate memory with a upstream memory resource.
Definition instrumenting_memory_resource_impl.cpp:45
void add_pre_allocate_hook(std::function< void(std::size_t, std::size_t)> f)
Add a pre-allocation hook.
Definition instrumenting_memory_resource_impl.cpp:27
void add_pre_deallocate_hook(std::function< void(void *, std::size_t, std::size_t)> f)
Add a pre-deallocation hook.
Definition instrumenting_memory_resource_impl.cpp:39
const std::vector< instrumenting_memory_resource::memory_event > & get_events(void) const
Return a list of memory allocation and deallocation events in chronological order.
Definition instrumenting_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