vecmem 1.14.0
Loading...
Searching...
No Matches
contiguous_memory_resource.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/details/memory_resource_base.hpp"
13#include "vecmem/memory/memory_resource.hpp"
14#include "vecmem/vecmem_core_export.hpp"
15
16// System include(s).
17#include <cstddef>
18#include <memory>
19
20namespace vecmem {
21
22// Forward declaration(s).
23namespace details {
24class contiguous_memory_resource_impl;
25}
26
43
44public:
52 contiguous_memory_resource(memory_resource& upstream, std::size_t size);
65
71 delete;
72
73private:
76
79 virtual void* do_allocate(std::size_t, std::size_t) override final;
82 virtual void do_deallocate(void* p, std::size_t,
83 std::size_t) override final;
84
86
88 std::unique_ptr<details::contiguous_memory_resource_impl> m_impl;
89
90}; // class contiguous_memory_resource
91
92} // namespace vecmem
Downstream allocator that ensures that allocations are contiguous.
Definition contiguous_memory_resource.hpp:42
contiguous_memory_resource(const contiguous_memory_resource &)=delete
Disallow copying the memory resource.
VECMEM_CORE_EXPORT contiguous_memory_resource & operator=(contiguous_memory_resource &&rhs)
Move assignment operator.
VECMEM_CORE_EXPORT ~contiguous_memory_resource()
Deconstruct the contiguous 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.
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 contiguous_memory_resource(contiguous_memory_resource &&parent)
Move constructor.
contiguous_memory_resource & operator=(const contiguous_memory_resource &)=delete
Disallow copying the memory resource.
Base class for implementations of the vecmem::memory_resource interface.
Definition memory_resource_base.hpp:25
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