#ifndef _LIBCPP___BIT_BYTESWAP_H
#define _LIBCPP___BIT_BYTESWAP_H
#include <__concepts/arithmetic.h>
#include <__config>
#include <__type_traits/is_same.h>
#include <__type_traits/remove_cv.h>
#include <climits>
#include <cstdint>
#include <limits>
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
# pragma GCC system_header
#endif
_LIBCPP_BEGIN_NAMESPACE_STD
#if _LIBCPP_STD_VER >= 23
template <integral _Tp>
[[nodiscard]] _LIBCPP_HIDE_FROM_ABI constexpr _Tp byteswap(_Tp __val) noexcept {
static_assert(is_same_v<remove_cv_t<_Tp>, bool> ||
numeric_limits<_Tp>::digits + numeric_limits<_Tp>::is_signed == sizeof(_Tp) * CHAR_BIT,
"std::byteswap requires T to have no padding bits");
if constexpr (sizeof(_Tp) == 1) {
return __val;
# if __has_builtin(__builtin_bswapg)
} else {
return __builtin_bswapg(__val);
}
# else
} else if constexpr (sizeof(_Tp) == 2) {
return __builtin_bswap16(__val);
} else if constexpr (sizeof(_Tp) == 4) {
return __builtin_bswap32(__val);
} else if constexpr (sizeof(_Tp) == 8) {
return __builtin_bswap64(__val);
# if _LIBCPP_HAS_INT128
} else if constexpr (sizeof(_Tp) == 16) {
# if __has_builtin(__builtin_bswap128)
return __builtin_bswap128(__val);
# else
return (static_cast<_Tp>(byteswap(static_cast<uint64_t>(__val))) << 64) |
static_cast<_Tp>(byteswap(static_cast<uint64_t>(__val >> 64)));
# endif # endif } else {
static_assert(sizeof(_Tp) == 0, "byteswap is unimplemented for integral types of this size");
}
# endif }
#endif
_LIBCPP_END_NAMESPACE_STD
#endif