summaryrefslogtreecommitdiffstats
path: root/src/common/bit_util.h
blob: 14e53c27322e8945c341a3a219a702e90393d19f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <climits>
#include <cstddef>

#ifdef _MSC_VER
#include <intrin.h>
#endif

#include "common/common_types.h"

namespace Common {

/// Gets the size of a specified type T in bits.
template <typename T>
constexpr std::size_t BitSize() {
    return sizeof(T) * CHAR_BIT;
}

#ifdef _MSC_VER
inline u32 CountLeadingZeroes32(u32 value) {
    unsigned long leading_zero = 0;

    if (_BitScanReverse(&leading_zero, value) != 0) {
        return 31 - leading_zero;
    }

    return 32;
}

inline u64 CountLeadingZeroes64(u64 value) {
    unsigned long leading_zero = 0;

    if (_BitScanReverse64(&leading_zero, value) != 0) {
        return 63 - leading_zero;
    }

    return 64;
}
#else
inline u32 CountLeadingZeroes32(u32 value) {
    if (value == 0) {
        return 32;
    }

    return __builtin_clz(value);
}

inline u64 CountLeadingZeroes64(u64 value) {
    if (value == 0) {
        return 64;
    }

    return __builtin_clzll(value);
}
#endif

inline u32 CountTrailingZeroes32(u32 value) {
  u32 count = 0;
  while (((value >> count) & 0xf) == 0 && count < 32)
    count += 4;
  while (((value >> count) & 1) == 0 && count < 32)
    count++;
  return count;
}

inline u64 CountTrailingZeroes64(u64 value) {
  u64 count = 0;
  while (((value >> count) & 0xf) == 0 && count < 64)
    count += 4;
  while (((value >> count) & 1) == 0 && count < 64)
    count++;
  return count;
}

} // namespace Common