12#include "vecmem/memory/instrumenting_memory_resource.hpp"
13#include "vecmem/memory/memory_resource.hpp"
37 const std::vector<instrumenting_memory_resource::memory_event>&
get_events(
63 std::function<
void(std::size_t, std::size_t,
void*)>
f);
76 std::function<
void(
void*, std::size_t, std::size_t)>
f);
79 void*
allocate(std::size_t, std::size_t);
89 memory_resource& m_upstream;
95 std::vector<instrumenting_memory_resource::memory_event> m_events;
100 std::vector<std::function<
void(std::size_t, std::size_t)>>
101 m_pre_allocate_hooks;
106 std::vector<std::function<
void(std::size_t, std::size_t,
void*)>>
107 m_post_allocate_hooks;
112 std::vector<std::function<
void(
void*, std::size_t, std::size_t)>>
113 m_pre_deallocate_hooks;
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