29 #ifndef CASA_CONTAINERS_ALLOCATOR_H_
30 #define CASA_CONTAINERS_ALLOCATOR_H_
32 #include <casacore/casa/config.h>
41 #include <type_traits>
45 #ifndef CASA_DEFAULT_ALIGNMENT
46 # define CASA_DEFAULT_ALIGNMENT (32UL) // AVX/AVX2 alignment
80 template<
typename T,
size_t ALIGNMENT = CASA_DEFAULT_ALIGNMENT>
93 template<
typename TOther>
104 template<
typename TOther>
112 if (elements > this->max_size()) {
113 throw std::bad_alloc();
116 int result = posix_memalign(&memptr, ALIGNMENT,
sizeof(T) * elements);
118 throw std::bad_alloc();
120 return static_cast<pointer>(memptr);
128 template<
typename T,
size_t ALIGNMENT>
134 template<
typename T,
size_t ALIGNMENT>
151 template<
typename TOther>
162 template<
typename TOther>
170 if (elements > this->max_size()) {
171 throw std::bad_alloc();
173 return new T[elements];
179 template<
typename U,
typename... Args>
215 template<
typename T>
friend class Block;
217 template<
typename T2>
219 typedef typename std::allocator<T2>::size_type
size_type;
220 typedef typename std::allocator<T2>::pointer
pointer;
235 template<
typename Allocator>
242 return allocator.allocate(elements, ptr);
251 for (i = 0; i < n; ++i) {
263 for (i = 0; i < n; ++i) {
264 allocator.construct(&ptr[i], initial_value);
274 for (i = 0; i < n; ++i) {
293 return typeid(Allocator);
301 template<
typename Allocator>
303 return get_allocator_raw<Allocator>();
306 template<
typename Allocator>
328 template<
typename Allocator>
329 Allocator Allocator_private::BulkAllocatorImpl<Allocator>::allocator;
344 template<
typename T,
typename Sub>
354 return Allocator_private::get_allocator<typename facade_type::type>();
378 template<
typename T,
size_t ALIGNMENT = CASA_DEFAULT_ALIGNMENT>
387 template<
typename T,
size_t ALIGNMENT>
virtual Allocator_private::BulkAllocator< T > * getAllocator() const =0
std::allocator< T2 >::pointer pointer
AlignedAllocator< T >::type type
std::allocator< T2 >::const_pointer const_pointer
void construct(U *ptr, U const &value)
Super::const_reference const_reference
static constexpr ArrayInitPolicy NO_INIT
Don't initialize elements in the array.
An allocator which allocates aligned memory.
static constexpr size_t alignment
Super::const_pointer const_pointer
static NewDelAllocator< T > value
an instance of this allocator.
std::allocator< T > std11_allocator
std::allocator< T2 >::size_type size_type
An aligned allocator with the default alignment.
void deallocate(pointer ptr, size_type)
virtual void construct(pointer ptr, size_type n, const_pointer src)=0
virtual void destroy(pointer ptr, size_type n)=0
~new_del_allocator() noexcept
static AllocSpec< T > const value
bool operator==(const casacore_allocator< T, ALIGNMENT > &, const casacore_allocator< T, ALIGNMENT > &)
Super::difference_type difference_type
Allocator::const_pointer const_pointer
Allocator::size_type size_type
new_del_allocator< TOther > other
new_del_allocator() noexcept
pointer allocate(size_type elements, const void *=0)
A global enum used by some Array/Block constructors.
static AlignedAllocator< T, ALIGNMENT > value
an instance of this allocator.
Super::size_type size_type
static DefaultAllocator< T > value
an instance of this allocator.
new_del_allocator< T > type
virtual void deallocate(pointer ptr, size_type size) override
casacore_allocator< TOther > other
virtual pointer allocate(size_type elements, const void *ptr=0) override
new_del_allocator(const new_del_allocator &other) noexcept
Super::value_type value_type
virtual std::type_info const & allocator_typeid() const =0
virtual ~BulkAllocatorImpl() override
casacore_allocator< T, ALIGNMENT > type
new_del_allocator(const new_del_allocator< TOther > &) noexcept
Super::const_pointer const_pointer
virtual pointer allocate(size_type elements, const void *ptr=0)=0
virtual std::type_info const & allocator_typeid() const override
Super::const_reference const_reference
Allocator::value_type value_type
virtual void destroy(pointer ptr, size_type n) override
~casacore_allocator() noexcept
void deallocate(pointer ptr, size_type)
void construct(U *ptr, U &&value)
virtual void deallocate(pointer ptr, size_type size)=0
BulkAllocator< T > * allocator
constexpr ArrayInitPolicy(bool v)
bool Bool
Define the standard types used by Casacore.
virtual void construct(pointer ptr, size_type n, const_pointer src) override
static BulkAllocatorImpl< Allocator > * get_allocator_raw()
static constexpr ArrayInitPolicy INIT
Initialize all elements in the array with the default value.
virtual void construct(pointer ptr, size_type n, value_type const &initial_value) override
A templated N-D Array class with zero origin. Array<T, Alloc> is a templated, N-dimensional, Array class. The origin is zero, but by default indices are zero-based. This Array class is the base class for the Vector, Matrix, and Cube subclasses.
std::allocator< T2 >::value_type value_type
Bool operator!=(ArrayInitPolicy const &other)
pointer allocate(size_type elements, const void *=0)
virtual void construct(pointer ptr, size_type n) override
static Allocator allocator
void construct(U *, Args &&...)
void construct(U *ptr, U &value)
virtual Allocator_private::BulkAllocator< T > * getAllocator() const override
Bool operator==(ArrayInitPolicy const &other)
AllocSpec(BulkAllocator< T > *alloc)
Super::value_type value_type
casacore_allocator(const casacore_allocator &other) noexcept
Super::reference reference
virtual ~AbstractAllocator()
static BulkAllocator< typename Allocator::value_type > * get_allocator()
An allocator behaves like operator new[]/delete[].
Super::reference reference
casacore_allocator(const casacore_allocator< TOther > &) noexcept
std11_allocator< T > Super
Super::size_type size_type
Allocator::pointer pointer
bool operator!=(const casacore_allocator< T, ALIGNMENT > &, const casacore_allocator< T, ALIGNMENT > &)
Super::difference_type difference_type
std11_allocator< T > Super
LatticeExprNode value(const LatticeExprNode &expr)
This function returns the value of the expression without a mask.