#ifndef AL_MALLOC_H #define AL_MALLOC_H #include #include #include #include #include #include #include #include #include "pragmadefs.h" namespace gsl { template using owner = T; }; void al_free(gsl::owner ptr) noexcept; [[gnu::alloc_align(1), gnu::alloc_size(2), gnu::malloc]] gsl::owner al_malloc(size_t alignment, size_t size); [[gnu::alloc_align(1), gnu::alloc_size(2), gnu::malloc]] gsl::owner al_calloc(size_t alignment, size_t size); #define DISABLE_ALLOC \ void *operator new(size_t) = delete; \ void *operator new[](size_t) = delete; \ void operator delete(void*) noexcept = delete; \ void operator delete[](void*) noexcept = delete; #define DEF_PLACE_NEWDEL \ void *operator new(size_t) = delete; \ void *operator new[](size_t) = delete; \ void operator delete(gsl::owner block, void*) noexcept { al_free(block); } \ void operator delete(gsl::owner block) noexcept { al_free(block); } \ void operator delete[](gsl::owner block, void*) noexcept { al_free(block); } \ void operator delete[](gsl::owner block) noexcept { al_free(block); } enum FamCount : size_t { }; #define DEF_FAM_NEWDEL(T, FamMem) \ static constexpr size_t Sizeof(size_t count) noexcept \ { \ static_assert(&Sizeof == &T::Sizeof, \ "Incorrect container type specified"); \ return std::max(decltype(FamMem)::Sizeof(count, offsetof(T, FamMem)), \ sizeof(T)); \ } \ \ gsl::owner operator new(size_t /*size*/, FamCount count) \ { \ const auto align = std::align_val_t(alignof(T)); \ return ::new(align) std::byte[T::Sizeof(count)]; \ } \ void *operator new[](size_t /*size*/) = delete; \ void operator delete(gsl::owner block, FamCount) noexcept \ { \ const auto align = std::align_val_t(alignof(T)); \ ::operator delete[](static_cast>(block), align); \ } \ void operator delete(gsl::owner block) noexcept \ { \ const auto align = std::align_val_t(alignof(T)); \ ::operator delete[](static_cast>(block), align); \ } \ void operator delete[](void* /*block*/) = delete; namespace al { template struct allocator { static constexpr auto alignment = std::max(Align, alignof(T)); static constexpr auto AlignVal = std::align_val_t(alignment); using value_type = T; using reference = T&; using const_reference = const T&; using pointer = T*; using const_pointer = const T*; using size_type = std::size_t; using difference_type = std::ptrdiff_t; using is_always_equal = std::true_type; template struct rebind { using other = allocator; }; constexpr explicit allocator() noexcept = default; template constexpr explicit allocator(const allocator&) noexcept { } gsl::owner allocate(std::size_t n) { if(n > std::numeric_limits::max()/sizeof(T)) throw std::bad_alloc(); return reinterpret_cast>(::new(AlignVal) std::byte[n*sizeof(T)]); } void deallocate(gsl::owner p, std::size_t) noexcept { ::operator delete[](reinterpret_cast>(p), AlignVal); } }; template constexpr bool operator==(const allocator&, const allocator&) noexcept { return true; } template constexpr bool operator!=(const allocator&, const allocator&) noexcept { return false; } template constexpr T *to_address(T *p) noexcept { static_assert(!std::is_function::value, "Can't be a function type"); return p; } template constexpr auto to_address(const T &p) noexcept { return ::al::to_address(p.operator->()); } template constexpr T* construct_at(T *ptr, Args&& ...args) noexcept(std::is_nothrow_constructible_v) { /* NOLINTBEGIN(cppcoreguidelines-owning-memory) construct_at doesn't * necessarily handle the address from an owner, while placement new * expects to. */ return ::new(static_cast(ptr)) T{std::forward(args)...}; /* NOLINTEND(cppcoreguidelines-owning-memory) */ } } // namespace al #endif /* AL_MALLOC_H */