assume_aligned.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. // -*- C++ -*-
  2. //===----------------------------------------------------------------------===//
  3. //
  4. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  5. // See https://llvm.org/LICENSE.txt for license information.
  6. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #ifndef _LIBCPP___MEMORY_ASSUME_ALIGNED_H
  10. #define _LIBCPP___MEMORY_ASSUME_ALIGNED_H
  11. #include <__assert>
  12. #include <__config>
  13. #include <__type_traits/is_constant_evaluated.h>
  14. #include <cstddef>
  15. #include <cstdint>
  16. #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
  17. # pragma GCC system_header
  18. #endif
  19. _LIBCPP_BEGIN_NAMESPACE_STD
  20. template <size_t _Np, class _Tp>
  21. _LIBCPP_NODISCARD _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __assume_aligned(_Tp* __ptr) {
  22. static_assert(_Np != 0 && (_Np & (_Np - 1)) == 0,
  23. "std::assume_aligned<N>(p) requires N to be a power of two");
  24. if (__libcpp_is_constant_evaluated()) {
  25. return __ptr;
  26. } else {
  27. _LIBCPP_ASSERT_UNCATEGORIZED(reinterpret_cast<uintptr_t>(__ptr) % _Np == 0, "Alignment assumption is violated");
  28. return static_cast<_Tp*>(__builtin_assume_aligned(__ptr, _Np));
  29. }
  30. }
  31. #if _LIBCPP_STD_VER >= 20
  32. template <size_t _Np, class _Tp>
  33. [[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _Tp* assume_aligned(_Tp* __ptr) {
  34. return std::__assume_aligned<_Np>(__ptr);
  35. }
  36. #endif // _LIBCPP_STD_VER >= 20
  37. _LIBCPP_END_NAMESPACE_STD
  38. #endif // _LIBCPP___MEMORY_ASSUME_ALIGNED_H