summaryrefslogtreecommitdiffstats
path: root/src/common/bit_util.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-05-06fixup! common: bit_util: Add BIT macro.bunnei1-2/+0
2021-05-06common: bit_util: Add BIT macro.bunnei1-0/+2
2021-01-22common: Add missing include to bit_util.hbunnei1-0/+1
2021-01-21bit_util: Unify implementations of MostSignificantBit32/MostSignificantBit64Lioncash1-35/+13
We can use the standardized CLZ facilities to perform this. This also allows us to make utilizing functions constexpr and eliminate the inclusion of an intrinsics header.
2021-01-15common/bit_util: Replace CLZ/CTZ operations with standardized onesLioncash1-76/+0
Makes for less code that we need to maintain.
2020-08-15common: Make use of [[nodiscard]] where applicableLioncash1-17/+17
Now that clang-format makes [[nodiscard]] attributes format sensibly, we can apply them to several functions within the common library to allow the compiler to complain about any misuses of the functions.
2019-06-21texture_cache: Optimize GetMipBlockHeight and GetMipBlockDepthFernando Sahmkow1-0/+44
2019-04-05common/bit_util: Make CountLeading/CountTrailing functions have the same return typesLioncash1-8/+8
Makes the return type consistently uniform (like the intrinsics we're wrapping). This also conveniently silences a truncation warning within the kernel multi_level_queue.
2019-03-27Fixes and corrections on formatting.Fernando Sahmkow1-1/+0
2019-03-27Implement intrinsics CountTrailingZeroes and test it.Fernando Sahmkow1-12/+33
2019-03-27Implement a MultiLevelQueueFernando Sahmkow1-0/+19
2018-12-21common: Add basic bit manipulation utility function to CommonLioncash1-0/+61