|
|
|
|
|
|
|
|
|
|
| #ifndef _BIT_
|
| #define _BIT_
|
| #include <yvals_core.h>
|
| #if _STL_COMPILER_PREPROCESSOR
|
| #if !_HAS_CXX20
|
| _EMIT_STL_WARNING(STL4038, "The contents of <bit> are available only with C++20 or later.");
|
| #else
|
|
|
| #include <__msvc_bit_utils.hpp>
|
| #include <cstdlib>
|
| #include <type_traits>
|
|
|
| #include _STL_INTRIN_HEADER
|
|
|
| #pragma pack(push, _CRT_PACKING)
|
| #pragma warning(push, _STL_WARNING_LEVEL)
|
| #pragma warning(disable : _STL_DISABLED_WARNINGS)
|
| _STL_DISABLE_CLANG_WARNINGS
|
| #pragma push_macro("new")
|
| #undef new
|
|
|
| _STD_BEGIN
|
|
|
| _EXPORT_STD template <class _To, class _From>
|
| requires (sizeof(_To) == sizeof(_From)) && is_trivially_copyable_v<_To> && is_trivially_copyable_v<_From>
|
| _NODISCARD constexpr _To bit_cast(const _From& _Val) noexcept {
|
| return __builtin_bit_cast(_To, _Val);
|
| }
|
|
|
| #if _HAS_CXX23
|
| _NODISCARD constexpr unsigned short _Byteswap_ushort(const unsigned short _Val) noexcept {
|
| if (_STD is_constant_evaluated()) {
|
| return static_cast<unsigned short>((_Val << 8) | (_Val >> 8));
|
| } else {
|
| return _byteswap_ushort(_Val);
|
| }
|
| }
|
|
|
| _NODISCARD constexpr unsigned long _Byteswap_ulong(const unsigned long _Val) noexcept {
|
| if (_STD is_constant_evaluated()) {
|
| return (_Val << 24) | ((_Val << 8) & 0x00FF'0000) | ((_Val >> 8) & 0x0000'FF00) | (_Val >> 24);
|
| } else {
|
| return _byteswap_ulong(_Val);
|
| }
|
| }
|
|
|
| _NODISCARD constexpr unsigned long long _Byteswap_uint64(const unsigned long long _Val) noexcept {
|
| if (_STD is_constant_evaluated()) {
|
| return (_Val << 56) | ((_Val << 40) & 0x00FF'0000'0000'0000) | ((_Val << 24) & 0x0000'FF00'0000'0000)
|
| | ((_Val << 8) & 0x0000'00FF'0000'0000) | ((_Val >> 8) & 0x0000'0000'FF00'0000)
|
| | ((_Val >> 24) & 0x0000'0000'00FF'0000) | ((_Val >> 40) & 0x0000'0000'0000'FF00) | (_Val >> 56);
|
| } else {
|
| return _byteswap_uint64(_Val);
|
| }
|
| }
|
|
|
| _EXPORT_STD template <class _Ty>
|
| requires is_integral_v<_Ty>
|
| _NODISCARD constexpr _Ty byteswap(const _Ty _Val) noexcept {
|
| if constexpr (sizeof(_Ty) == 1) {
|
| return _Val;
|
| } else if constexpr (sizeof(_Ty) == 2) {
|
| return static_cast<_Ty>(_Byteswap_ushort(static_cast<unsigned short>(_Val)));
|
| } else if constexpr (sizeof(_Ty) == 4) {
|
| return static_cast<_Ty>(_Byteswap_ulong(static_cast<unsigned long>(_Val)));
|
| } else if constexpr (sizeof(_Ty) == 8) {
|
| return static_cast<_Ty>(_Byteswap_uint64(static_cast<unsigned long long>(_Val)));
|
| } else {
|
| _STL_INTERNAL_STATIC_ASSERT(false);
|
| }
|
| }
|
| #endif
|
|
|
| template <class _Ty>
|
| concept _Standard_unsigned_integral = _Is_standard_unsigned_integer<_Ty>;
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int countl_zero(_Ty _Val) noexcept;
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr bool has_single_bit(const _Ty _Val) noexcept {
|
| #if _POPCNT_INTRINSICS_ALWAYS_AVAILABLE
|
| if (!_STD is_constant_evaluated()) {
|
| return _Unchecked_popcount(_Val) == 1;
|
| }
|
| #endif
|
|
|
| return (_Val ^ (_Val - 1)) > _Val - 1;
|
| }
|
|
|
| inline void _Precondition_violation_in_bit_ceil() noexcept {}
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr _Ty bit_ceil(const _Ty _Val) noexcept {
|
| if (_Val <= 1u) {
|
| return _Ty{1};
|
| }
|
|
|
| const int _Num = _Unsigned_integer_digits<_Ty> - _STD countl_zero(static_cast<_Ty>(_Val - 1));
|
|
|
| if constexpr (sizeof(_Ty) < sizeof(unsigned int)) {
|
| if (_STD is_constant_evaluated()) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| if (_Num == _Unsigned_integer_digits<_Ty>) {
|
| _Precondition_violation_in_bit_ceil();
|
| }
|
| }
|
| }
|
|
|
| return static_cast<_Ty>(_Ty{1} << _Num);
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr _Ty bit_floor(const _Ty _Val) noexcept {
|
| if (_Val == 0) {
|
| return 0;
|
| }
|
|
|
| return static_cast<_Ty>(_Ty{1} << (_Unsigned_integer_digits<_Ty> - 1 - _STD countl_zero(_Val)));
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int bit_width(const _Ty _Val) noexcept {
|
| return _Unsigned_integer_digits<_Ty> - _STD countl_zero(_Val);
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr _Ty rotr(_Ty _Val, int _Rotation) noexcept;
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr _Ty rotl(const _Ty _Val, const int _Rotation) noexcept {
|
| constexpr auto _Digits = _Unsigned_integer_digits<_Ty>;
|
|
|
| if (!_STD is_constant_evaluated()) {
|
| if constexpr (_Digits == 64) {
|
| return _rotl64(_Val, _Rotation);
|
| } else if constexpr (_Digits == 32) {
|
| return _rotl(_Val, _Rotation);
|
| } else if constexpr (_Digits == 16) {
|
| return _rotl16(_Val, static_cast<unsigned char>(_Rotation));
|
| } else {
|
| _STL_INTERNAL_STATIC_ASSERT(_Digits == 8);
|
| return _rotl8(_Val, static_cast<unsigned char>(_Rotation));
|
| }
|
| }
|
|
|
| const auto _Remainder = _Rotation % _Digits;
|
| if (_Remainder > 0) {
|
| return static_cast<_Ty>(
|
| static_cast<_Ty>(_Val << _Remainder) | static_cast<_Ty>(_Val >> (_Digits - _Remainder)));
|
| } else if (_Remainder == 0) {
|
| return _Val;
|
| } else {
|
| return _STD rotr(_Val, -_Remainder);
|
| }
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr _Ty rotr(const _Ty _Val, const int _Rotation) noexcept {
|
| constexpr auto _Digits = _Unsigned_integer_digits<_Ty>;
|
|
|
| if (!_STD is_constant_evaluated()) {
|
| if constexpr (_Digits == 64) {
|
| return _rotr64(_Val, _Rotation);
|
| } else if constexpr (_Digits == 32) {
|
| return _rotr(_Val, _Rotation);
|
| } else if constexpr (_Digits == 16) {
|
| return _rotr16(_Val, static_cast<unsigned char>(_Rotation));
|
| } else {
|
| _STL_INTERNAL_STATIC_ASSERT(_Digits == 8);
|
| return _rotr8(_Val, static_cast<unsigned char>(_Rotation));
|
| }
|
| }
|
|
|
| const auto _Remainder = _Rotation % _Digits;
|
| if (_Remainder > 0) {
|
| return static_cast<_Ty>(
|
| static_cast<_Ty>(_Val >> _Remainder) | static_cast<_Ty>(_Val << (_Digits - _Remainder)));
|
| } else if (_Remainder == 0) {
|
| return _Val;
|
| } else {
|
| return _STD rotl(_Val, -_Remainder);
|
| }
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int countl_zero(const _Ty _Val) noexcept {
|
| #if _HAS_COUNTL_ZERO_INTRINSICS
|
| #if (defined(_M_IX86) && !defined(_M_HYBRID_X86_ARM64)) || (defined(_M_X64) && !defined(_M_ARM64EC))
|
| if (!_STD is_constant_evaluated()) {
|
| return _Checked_x86_x64_countl_zero(_Val);
|
| }
|
| #elif defined(_M_ARM64) || defined(_M_ARM64EC) || defined(_M_HYBRID_X86_ARM64)
|
| if (!_STD is_constant_evaluated()) {
|
| return _Checked_arm64_countl_zero(_Val);
|
| }
|
| #endif
|
| #endif
|
|
|
| return _Countl_zero_fallback(_Val);
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int countl_one(const _Ty _Val) noexcept {
|
| return _STD countl_zero(static_cast<_Ty>(~_Val));
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int countr_zero(const _Ty _Val) noexcept {
|
| return _Countr_zero(_Val);
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int countr_one(const _Ty _Val) noexcept {
|
| return _Countr_zero(static_cast<_Ty>(~_Val));
|
| }
|
|
|
| _EXPORT_STD template <_Standard_unsigned_integral _Ty>
|
| _NODISCARD constexpr int popcount(const _Ty _Val) noexcept {
|
| return _Popcount(_Val);
|
| }
|
|
|
| _EXPORT_STD enum class endian { little = 0, big = 1, native = little };
|
|
|
| _STD_END
|
| #pragma pop_macro("new")
|
| _STL_RESTORE_CLANG_WARNINGS
|
| #pragma warning(pop)
|
| #pragma pack(pop)
|
| #endif
|
| #endif
|
| #endif
|
|
|