12#include "vecmem/memory/details/memory_resource_base.hpp"
13#include "vecmem/memory/memory_resource.hpp"
14#include "vecmem/vecmem_core_export.hpp"
26class instrumenting_memory_resource_impl;
75 enum class type { ALLOCATION, DEALLOCATION };
110 const std::vector<memory_event>&
get_events(
void)
const;
137 std::function<
void(std::size_t, std::size_t,
void*)>
f);
151 std::function<
void(
void*, std::size_t, std::size_t)>
f);
159 virtual void*
do_allocate(std::size_t, std::size_t)
override final;
163 std::size_t)
override final;
168 std::unique_ptr<details::instrumenting_memory_resource_impl> m_impl;
Base class for implementations of the vecmem::memory_resource interface.
Definition memory_resource_base.hpp:25
This memory resource forwards allocation and deallocation requests to the upstream resource while rec...
Definition instrumenting_memory_resource.hpp:38
VECMEM_CORE_EXPORT 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.cpp:40
instrumenting_memory_resource(const instrumenting_memory_resource &)=delete
Disallow copying the memory resource.
virtual VECMEM_CORE_EXPORT void * do_allocate(std::size_t, std::size_t) override final
Allocate memory with one of the underlying resources.
VECMEM_CORE_EXPORT 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.cpp:46
VECMEM_CORE_EXPORT const std::vector< memory_event > & get_events(void) const
Return a list of memory allocation and deallocation events in chronological order.
Definition instrumenting_memory_resource.cpp:29
VECMEM_CORE_EXPORT instrumenting_memory_resource & operator=(instrumenting_memory_resource &&rhs)
Move assignment operator.
instrumenting_memory_resource & operator=(const instrumenting_memory_resource &)=delete
Disallow copying the memory resource.
VECMEM_CORE_EXPORT void add_pre_allocate_hook(std::function< void(std::size_t, std::size_t)> f)
Add a pre-allocation hook.
Definition instrumenting_memory_resource.cpp:34
virtual VECMEM_CORE_EXPORT void do_deallocate(void *p, std::size_t, std::size_t) override final
De-allocate a previously allocated memory block.
VECMEM_CORE_EXPORT ~instrumenting_memory_resource()
Destructor.
VECMEM_CORE_EXPORT instrumenting_memory_resource(instrumenting_memory_resource &&parent)
Move constructor.
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
Structure describing a memory resource event.
Definition instrumenting_memory_resource.hpp:70
std::size_t m_align
The alignment of the request.
Definition instrumenting_memory_resource.hpp:95
std::size_t m_size
The size of the request.
Definition instrumenting_memory_resource.hpp:93
void * m_ptr
The pointer that was returned or deallocated.
Definition instrumenting_memory_resource.hpp:98
std::size_t m_time
The time taken to perform the request in nanoseconds.
Definition instrumenting_memory_resource.hpp:101
type m_type
The type of event (allocation or deallocation).
Definition instrumenting_memory_resource.hpp:90
type
Classify an event as an alloction or a deallocation.
Definition instrumenting_memory_resource.hpp:75