aligned_alloc.hpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. /*
  2. (c) 2014-2015 Glen Joseph Fernandes
  3. <glenjofe -at- gmail.com>
  4. Distributed under the Boost Software
  5. License, Version 1.0.
  6. http://boost.org/LICENSE_1_0.txt
  7. */
  8. #ifndef BOOST_ALIGN_DETAIL_ALIGNED_ALLOC_HPP
  9. #define BOOST_ALIGN_DETAIL_ALIGNED_ALLOC_HPP
  10. #include <boost/align/detail/is_alignment.hpp>
  11. #include <boost/align/align.hpp>
  12. #include <boost/align/alignment_of.hpp>
  13. #include <boost/assert.hpp>
  14. #include <cstdlib>
  15. namespace boost {
  16. namespace alignment {
  17. inline void* aligned_alloc(std::size_t alignment, std::size_t size)
  18. BOOST_NOEXCEPT
  19. {
  20. BOOST_ASSERT(detail::is_alignment(alignment));
  21. enum {
  22. min_align = alignment_of<void*>::value
  23. };
  24. if (alignment < min_align) {
  25. alignment = min_align;
  26. }
  27. std::size_t n = size + alignment - min_align;
  28. void* r = 0;
  29. void* p = std::malloc(sizeof(void*) + n);
  30. if (p) {
  31. r = static_cast<char*>(p) + sizeof p;
  32. (void)align(alignment, size, r, n);
  33. *(static_cast<void**>(r) - 1) = p;
  34. }
  35. return r;
  36. }
  37. inline void aligned_free(void* ptr) BOOST_NOEXCEPT
  38. {
  39. if (ptr) {
  40. std::free(*(static_cast<void**>(ptr) - 1));
  41. }
  42. }
  43. } /* .alignment */
  44. } /* .boost */
  45. #endif