| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #ifndef IPHONE_FIRESTORE_PORT_BITS_H_
- #define IPHONE_FIRESTORE_PORT_BITS_H_
- // Various bit-twiddling functions, all of which are static members of the Bits
- // class (making it effectively a namespace). Operands are unsigned integers.
- // Munging bits in _signed_ integers is fraught with peril! For example,
- // -5 << n has undefined behavior (for some values of n).
- #include <stdint.h>
- class Bits_Port32_Test;
- class Bits_Port64_Test;
- namespace Firestore {
- class Bits {
- public:
- // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0.
- static int Log2Floor(uint32_t n);
- static int Log2Floor64(uint64_t n);
- // Potentially faster version of Log2Floor() that returns an
- // undefined value if n == 0
- static int Log2FloorNonZero(uint32_t n);
- static int Log2FloorNonZero64(uint64_t n);
- private:
- // Portable implementations.
- static int Log2Floor_Portable(uint32_t n);
- static int Log2Floor64_Portable(uint64_t n);
- static int Log2FloorNonZero_Portable(uint32_t n);
- static int Log2FloorNonZero64_Portable(uint64_t n);
- Bits(Bits const&) = delete;
- void operator=(Bits const&) = delete;
- // Allow tests to call _Portable variants directly.
- friend class ::Bits_Port32_Test;
- friend class ::Bits_Port64_Test;
- };
- // ------------------------------------------------------------------------
- // Implementation details follow
- // ------------------------------------------------------------------------
- #if defined(__GNUC__)
- inline int Bits::Log2Floor(uint32_t n) {
- return n == 0 ? -1 : 31 ^ __builtin_clz(n);
- }
- inline int Bits::Log2FloorNonZero(uint32_t n) {
- return 31 ^ __builtin_clz(n);
- }
- inline int Bits::Log2Floor64(uint64_t n) {
- return n == 0 ? -1 : 63 ^ __builtin_clzll(n);
- }
- inline int Bits::Log2FloorNonZero64(uint64_t n) {
- return 63 ^ __builtin_clzll(n);
- }
- #elif defined(COMPILER_MSVC)
- inline int Bits::Log2FloorNonZero(uint32 n) {
- #ifdef _M_IX86
- _asm {
- bsr ebx, n
- mov n, ebx
- }
- return n;
- #else
- return Bits::Log2FloorNonZero_Portable(n);
- #endif
- }
- inline int Bits::Log2Floor(uint32 n) {
- #ifdef _M_IX86
- _asm {
- xor ebx, ebx
- mov eax, n
- and eax, eax
- jz return_ebx
- bsr ebx, eax
- return_ebx:
- mov n, ebx
- }
- return n;
- #else
- return Bits::Log2Floor_Portable(n);
- #endif
- }
- inline int Bits::Log2Floor64(uint64_t n) {
- return Bits::Log2Floor64_Portable(n);
- }
- inline int Bits::Log2FloorNonZero64(uint64_t n) {
- return Bits::Log2FloorNonZero64_Portable(n);
- }
- #else // !__GNUC__ && !COMPILER_MSVC
- inline int Bits::Log2Floor64(uint64_t n) {
- return Bits::Log2Floor64_Portable(n);
- }
- inline int Bits::Log2FloorNonZero64(uint64_t n) {
- return Bits::Log2FloorNonZero64_Portable(n);
- }
- #endif
- inline int Bits::Log2FloorNonZero_Portable(uint32_t n) {
- // Just use the common routine
- return Log2Floor(n);
- }
- // Log2Floor64() is defined in terms of Log2Floor32(), Log2FloorNonZero32()
- inline int Bits::Log2Floor64_Portable(uint64_t n) {
- const uint32_t topbits = static_cast<uint32_t>(n >> 32);
- if (topbits == 0) {
- // Top bits are zero, so scan in bottom bits
- return Log2Floor(static_cast<uint32_t>(n));
- } else {
- return 32 + Log2FloorNonZero(topbits);
- }
- }
- // Log2FloorNonZero64() is defined in terms of Log2FloorNonZero32()
- inline int Bits::Log2FloorNonZero64_Portable(uint64_t n) {
- const uint32_t topbits = static_cast<uint32_t>(n >> 32);
- if (topbits == 0) {
- // Top bits are zero, so scan in bottom bits
- return Log2FloorNonZero(static_cast<uint32_t>(n));
- } else {
- return 32 + Log2FloorNonZero(topbits);
- }
- }
- } // namespace Firestore
- #endif // IPHONE_FIRESTORE_PORT_BITS_H_
|