14#include "vecmem/memory/details/unique_alloc_deleter.hpp"
15#include "vecmem/memory/details/unique_obj_deleter.hpp"
16#include "vecmem/memory/memory_resource.hpp"
17#include "vecmem/vecmem_core_export.hpp"
29 return reinterpret_cast<T>(0xf000U);
88template <
typename T,
typename...
Args>
95 std::size_t
s =
sizeof(
T);
96 T*
p =
static_cast<T*
>(
m.allocate(
s));
102 new (
p)
T(std::forward<Args>(
a)...);
128typename std::enable_if_t<std::is_array_v<T> && std::extent_v<T> == 0,
142 std::size_t
s =
n *
sizeof(std::remove_extent_t<T>);
143 pointer_t
p =
static_cast<pointer_t
>(
m.allocate(
s));
148 for (std::size_t
i = 0;
i <
n; ++
i) {
149 new (&
p[
i]) std::remove_extent_t<T>();
189 static_assert(!(std::is_array_v<T> && std::extent_v<T> == 0),
190 "Allocation pointer type cannot be an unbounded array.");
197 static_assert(std::is_trivially_constructible_v<std::remove_extent_t<T>>,
198 "Allocation pointer type must be trivially constructible.");
201 std::conditional_t<std::is_array_v<T>, std::decay_t<T>,
T*>;
207 std::size_t
s =
sizeof(
T);
208 pointer_t
p =
static_cast<pointer_t
>(
m.allocate(
s));
248 static_assert(std::is_array_v<T>,
249 "Allocation pointer type must be an array type.");
250 static_assert(std::extent_v<T> == 0,
251 "Allocation pointer type must be unbounded.");
258 static_assert(std::is_trivially_constructible_v<std::remove_extent_t<T>>,
259 "Allocation pointer type must be trivially constructible.");
262 std::conditional_t<std::is_array_v<T>, std::decay_t<T>,
T*>;
267 details::get_nonexistent_pointer<pointer_t>());
274 std::size_t
s =
n *
sizeof(std::remove_extent_t<T>);
275 pointer_t
p =
static_cast<pointer_t
>(
m.allocate(
s));
321template <
typename T,
typename C>
327 static_assert(!(std::is_array_v<T> && std::extent_v<T> == 0),
328 "Allocation pointer type cannot be an ubounded array.");
336 static_assert(std::is_trivially_copyable_v<std::remove_extent_t<T>>,
337 "Allocation pointer type must be trivially copyable.");
340 std::conditional_t<std::is_array_v<T>, std::decay_t<T>,
T*>;
346 std::size_t
s =
sizeof(
T);
347 pointer_t
p =
static_cast<pointer_t
>(
m.allocate(
s));
395template <
typename T,
typename C>
397 const std::remove_extent_t<T>*
f,
402 static_assert(std::is_array_v<T>,
403 "Allocation pointer type must be an array type.");
404 static_assert(std::extent_v<T> == 0,
405 "Allocation pointer type must be unbounded.");
413 static_assert(std::is_trivially_copyable_v<std::remove_extent_t<T>>,
414 "Allocation pointer type must be trivially copyable.");
417 std::conditional_t<std::is_array_v<T>, std::decay_t<T>,
T*>;
422 details::get_nonexistent_pointer<pointer_t>());
429 std::size_t
s =
n *
sizeof(std::remove_extent_t<T>);
430 pointer_t
p =
static_cast<pointer_t
>(
m.allocate(
s));
T get_nonexistent_pointer()
Helper function for generating a nonexistent, but still "aligned" pointer.
Definition unique_ptr.hpp:28
Main namespace for the vecmem classes/functions.
Definition atomic_ref.hpp:16
std::unique_ptr< T, details::unique_obj_deleter< T > > unique_obj_ptr
A unique pointer type for non-trivial objects.
Definition unique_ptr.hpp:51
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35
unique_alloc_ptr< T > make_unique_alloc(memory_resource &m)
Create a unique allocation pointer to a type.
Definition unique_ptr.hpp:185
std::unique_ptr< T, details::unique_alloc_deleter< T > > unique_alloc_ptr
A unique pointer type for trivial types.
Definition unique_ptr.hpp:69
std::enable_if_t<!std::is_array_v< T >, unique_obj_ptr< T > > make_unique_obj(memory_resource &m, Args &&... a)
Create a unique object pointer to a newly constructed object.
Definition unique_ptr.hpp:90
A deleter class for trivial allocations.
Definition unique_alloc_deleter.hpp:33
A deleter class for non-trivial objects.
Definition unique_obj_deleter.hpp:44