2016-07-01 14:01:06 +01:00
|
|
|
/* This file is part of the dynarmic project.
|
|
|
|
* Copyright (c) 2016 MerryMage
|
|
|
|
* This software may be used and distributed according to the terms of the GNU
|
|
|
|
* General Public License version 2 or any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2016-09-02 21:57:50 +01:00
|
|
|
#include <bitset>
|
2016-07-01 14:01:06 +01:00
|
|
|
#include <climits>
|
2016-09-03 21:48:03 +01:00
|
|
|
#include <cstddef>
|
2016-07-01 14:01:06 +01:00
|
|
|
|
2016-07-18 15:11:16 +01:00
|
|
|
#include "common/assert.h"
|
2016-07-01 14:01:06 +01:00
|
|
|
|
|
|
|
namespace Dynarmic {
|
|
|
|
namespace Common {
|
|
|
|
|
|
|
|
/// The size of a type in terms of bits
|
|
|
|
template<typename T>
|
|
|
|
constexpr size_t BitSize() {
|
|
|
|
return sizeof(T) * CHAR_BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Extract bits [begin_bit, end_bit] inclusive from value of type T.
|
|
|
|
template<size_t begin_bit, size_t end_bit, typename T>
|
|
|
|
constexpr T Bits(const T value) {
|
|
|
|
static_assert(begin_bit < end_bit,
|
|
|
|
"invalid bit range (position of beginning bit cannot be greater than that of end bit)");
|
|
|
|
static_assert(begin_bit < BitSize<T>(), "begin_bit must be smaller than size of T");
|
|
|
|
static_assert(end_bit < BitSize<T>(), "begin_bit must be smaller than size of T");
|
|
|
|
|
|
|
|
return (value >> begin_bit) & ((1 << (end_bit - begin_bit + 1)) - 1);
|
|
|
|
}
|
|
|
|
|
2016-07-18 15:11:16 +01:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:4554)
|
|
|
|
#endif
|
2016-07-01 14:01:06 +01:00
|
|
|
/// Extracts a single bit at bit_position from value of type T.
|
|
|
|
template<size_t bit_position, typename T>
|
2016-07-04 10:22:11 +01:00
|
|
|
constexpr bool Bit(const T value) {
|
2016-07-01 14:01:06 +01:00
|
|
|
static_assert(bit_position < BitSize<T>(), "bit_position must be smaller than size of T");
|
|
|
|
|
2016-07-18 10:28:17 +01:00
|
|
|
return ((value >> bit_position) & 1) != 0;
|
2016-07-01 14:01:06 +01:00
|
|
|
}
|
|
|
|
|
2016-07-18 15:11:16 +01:00
|
|
|
/// Extracts a single bit at bit_position from value of type T.
|
|
|
|
template<typename T>
|
2016-12-29 10:08:35 +00:00
|
|
|
inline bool Bit(size_t bit_position, const T value) {
|
2016-07-18 15:11:16 +01:00
|
|
|
ASSERT_MSG(bit_position < BitSize<T>(), "bit_position must be smaller than size of T");
|
|
|
|
|
|
|
|
return ((value >> bit_position) & 1) != 0;
|
|
|
|
}
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2016-12-21 14:13:50 +00:00
|
|
|
/// Sign-extends a value that has bit_count bits to the full bitwidth of type T.
|
2016-07-01 14:01:06 +01:00
|
|
|
template<size_t bit_count, typename T>
|
|
|
|
inline T SignExtend(const T value) {
|
|
|
|
static_assert(bit_count <= BitSize<T>(), "bit_count larger than bitsize of T");
|
|
|
|
|
|
|
|
constexpr T mask = static_cast<T>(1ULL << bit_count) - 1;
|
2016-07-04 10:22:11 +01:00
|
|
|
const bool signbit = Bit<bit_count - 1, T>(value);
|
|
|
|
if (signbit) {
|
2016-07-01 14:01:06 +01:00
|
|
|
return value | ~mask;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2016-12-21 14:13:50 +00:00
|
|
|
/// Sign-extends a value that has bit_count bits to the full bitwidth of type T.
|
|
|
|
template<typename T>
|
|
|
|
inline T SignExtend(const size_t bit_count, const T value) {
|
|
|
|
ASSERT_MSG(bit_count <= BitSize<T>(), "bit_count larger than bitsize of T");
|
|
|
|
|
|
|
|
const T mask = static_cast<T>(1ULL << bit_count) - 1;
|
|
|
|
const bool signbit = Bit<T>(bit_count - 1, value);
|
|
|
|
if (signbit) {
|
|
|
|
return value | ~mask;
|
|
|
|
}
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2016-09-02 21:57:50 +01:00
|
|
|
template <typename Integral>
|
|
|
|
inline size_t BitCount(Integral value) {
|
|
|
|
return std::bitset<BitSize<Integral>()>(value).count();
|
2016-07-18 15:11:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Common
|
|
|
|
} // namespace Dynarmic
|