/* (c) 2014 Glen Joseph Fernandes glenjofe at gmail dot com Distributed under the Boost Software License, Version 1.0. http://boost.org/LICENSE_1_0.txt */ #ifndef BOOST_ALIGN_ALIGNED_ALLOCATOR_HPP #define BOOST_ALIGN_ALIGNED_ALLOCATOR_HPP #include #include #include #include #include #include #include #include #include #include #include #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #include #endif namespace boost { namespace alignment { template class aligned_allocator { BOOST_STATIC_ASSERT(detail:: is_alignment_constant::value); public: typedef T value_type; typedef T* pointer; typedef const T* const_pointer; typedef void* void_pointer; typedef const void* const_void_pointer; typedef std::size_t size_type; typedef std::ptrdiff_t difference_type; typedef T& reference; typedef const T& const_reference; private: typedef detail::max_align::value> MaxAlign; public: template struct rebind { typedef aligned_allocator other; }; #if !defined(BOOST_NO_CXX11_DEFAULTED_FUNCTIONS) aligned_allocator() BOOST_NOEXCEPT = default; #else aligned_allocator() BOOST_NOEXCEPT { } #endif template aligned_allocator(const aligned_allocator&) BOOST_NOEXCEPT { } pointer address(reference value) const BOOST_NOEXCEPT { return detail::addressof(value); } const_pointer address(const_reference value) const BOOST_NOEXCEPT { return detail::addressof(value); } pointer allocate(size_type size, const_void_pointer = 0) { void* p = aligned_alloc(MaxAlign::value, sizeof(T) * size); if (!p && size > 0) { boost::throw_exception(std::bad_alloc()); } return static_cast(p); } void deallocate(pointer ptr, size_type) { alignment::aligned_free(ptr); } BOOST_CONSTEXPR size_type max_size() const BOOST_NOEXCEPT { return detail::max_count_of::value; } #if !defined(BOOST_NO_CXX11_RVALUE_REFERENCES) #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) template void construct(U* ptr, Args&&... args) { void* p = ptr; ::new(p) U(std::forward(args)...); } #else template void construct(U* ptr, V&& value) { void* p = ptr; ::new(p) U(std::forward(value)); } #endif #else template void construct(U* ptr, const V& value) { void* p = ptr; ::new(p) U(value); } #endif template void construct(U* ptr) { void* p = ptr; ::new(p) U(); } template void destroy(U* ptr) { (void)ptr; ptr->~U(); } }; template class aligned_allocator { BOOST_STATIC_ASSERT(detail:: is_alignment_constant::value); public: typedef void value_type; typedef void* pointer; typedef const void* const_pointer; template struct rebind { typedef aligned_allocator other; }; }; template inline bool operator==(const aligned_allocator&, const aligned_allocator&) BOOST_NOEXCEPT { return true; } template inline bool operator!=(const aligned_allocator&, const aligned_allocator&) BOOST_NOEXCEPT { return false; } } } #endif