vecmem 1.14.0
Loading...
Searching...
No Matches
unique_alloc_deleter.hpp
1/*
2 * VecMem project, part of the ACTS project (R&D line)
3 *
4 * (c) 2021 CERN for the benefit of the ACTS project
5 *
6 * Mozilla Public License Version 2.0
7 */
8
9#pragma once
10
11#include <cassert>
12#include <type_traits>
13
14#include "vecmem/memory/memory_resource.hpp"
15#include "vecmem/vecmem_core_export.hpp"
16
17namespace vecmem::details {
32template <typename T>
34 /*
35 * Similarly, we cannot destroy objects, so we need to ensure that
36 * deallocation of objects is semantically equivalent to their destruction.
37 */
38 static_assert(std::is_trivially_destructible_v<std::remove_extent_t<T>>,
39 "Allocation pointer type must be trivially destructible.");
40
41public:
48 unique_alloc_deleter(void) = default;
49
61 unique_alloc_deleter(memory_resource& mr, std::size_t s, std::size_t a = 0)
62 : m_mr(&mr), m_size(s), m_align(a) {}
63
70
77
86
95
101 void operator()(void* p) const {
102 assert(m_mr != nullptr || m_size == 0u);
103
104 /*
105 * Non-null pointers with a zero size can happen.
106 */
107 if (m_size == 0u) {
108 return;
109 }
110
111 /*
112 * Deallocate the memory that we were using.
113 */
114 if (m_align > 0) {
115 m_mr->deallocate(p, m_size, m_align);
116 } else {
117 m_mr->deallocate(p, m_size);
118 }
119 }
120
121private:
122 memory_resource* m_mr;
123 std::size_t m_size;
124 std::size_t m_align;
125};
126} // namespace vecmem::details
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
A deleter class for trivial allocations.
Definition unique_alloc_deleter.hpp:33
unique_alloc_deleter(void)=default
Default-construct a new unique allocation deleter.
unique_alloc_deleter & operator=(unique_alloc_deleter &&i)=default
Move-assign a unique allocation deleter.
unique_alloc_deleter(unique_alloc_deleter &&i)=default
Move a unique allocation deleter.
unique_alloc_deleter & operator=(const unique_alloc_deleter &i)=default
Copy-assign a unique allocation deleter.
unique_alloc_deleter(memory_resource &mr, std::size_t s, std::size_t a=0)
Construct a new unique allocation deleter.
Definition unique_alloc_deleter.hpp:61
void operator()(void *p) const
Activate the deletion mechanism of the deleter.
Definition unique_alloc_deleter.hpp:101
unique_alloc_deleter(const unique_alloc_deleter &i)=default
Copy a unique allocation deleter.