我将尽力使这个问题尽可能短,但是要显示大量代码,以便使人们了解我要实现的目标以及如何解决当前问题。
这是我原始的类声明及其所有构造函数:
Register.h -原始版本
#include <bitset>
#include <cassert>
#include <cstdint>
#include <iostream>
typedef std::uint8_t u8;
typedef std::uint16_t u16;
typedef std::uint32_t u32;
typedef std::uint64_t u64;
const u16 BYTE = 0x08, WORD = 0x10, DWORD = 0x20, QWORD = 0x40;
typedef std::bitset<BYTE> Byte;
typedef std::bitset<WORD> Word;
typedef std::bitset<DWORD> DWord;
typedef std::bitset<QWORD> QWord;
template<typename T>
void getByteFrom(T val, u8 idx, u8& res) {
res = ((val >> (idx * 8) & 0xff));
}
template<typename T>
void getWordFrom(T val, u8 idx, u16& res) {
res = ((val >> (idx * 16) & 0xffff));
}
template<typename T>
void getDWordFrom(T val, u8 idx, u32& res) {
res = ((val >> (idx * 32) & 0xffffffff));
}
template<typename T>
struct Register {
T data;
Register() = default;
};
struct Reg8 : public Register<u8> {
u8 value; // must be declared before std::bitset<T>
Byte bits;
// Default 0 Initialized Constructor
Reg8() : value{ 0 }, bits{ value } { this->data = 0; }
// Constructors by Register Sized Values
explicit Reg8(u8 val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg8(u16 val) : value{ static_cast<u8>( val ) }, bits{ value } {
this->data = value;
}
explicit Reg8(u32 val) : value{ static_cast<u8>( val ) }, bits{ value } {
//this->data = value;
}
explicit Reg8(u64 val) : value{ static_cast<u8>( val ) }, bits{ value } {
//this->data = value;
}
Reg8(u16 val, u8 idx ) {
assert( idx == 0 || idx == 1 );
getByteFrom(val, idx, this->value);
bits = value;
this->data = value;
}
Reg8(u32 val, u8 idx) {
assert(idx <= 0 && idx >= 3);
getByteFrom(val, idx, this->value);
bits = value;
this->data = value;
}
Reg8(u64 val, u8 idx) {
assert(idx <= 0 && idx >= 7);
getByteFrom(val, idx, this->value);
bits = value;
this->data = value;
}
// Constructors by Register Types
template<typename T>
explicit Reg8(Register<T>* reg) {
this->value = static_cast<u8>( reg->data );
this->bits = value;
}
};
struct Reg16 : public Register<u16> {
u16 value; // must be declared before std::bitset<T>
Word bits;
// Default 0 Initialized Constructor
Reg16() : value{ 0 }, bits{ value } { this->data = 0; }
// Constructors by Register Sized Values
explicit Reg16(u16& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg16( u8& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg16(u32& val) : value{ static_cast<u16>(val) }, bits{ value } {
this->data = value;
}
explicit Reg16(u64& val) : value{ static_cast<u16>(val) }, bits{ value } {
this->data = value;
}
Reg16( u32 val, u8 idx) {
assert(idx == 0 || idx == 1);
getWordFrom(val, idx, this->value);
bits = value;
this->data = value;
}
Reg16(u64 val, u8 idx) {
assert(idx <= 0 || idx <= 3);
getWordFrom(val, idx, this->value);
bits = value;
this->data = value;
}
// Constructors by Register Types
template<typename T>
explicit Reg16(Register<T>* reg) {
this->value = static_cast<u16>(reg->data);
this->bits = value;
}
};
struct Reg32 : public Register<u32> {
u32 value; // must be declared before std::bitset<T>
DWord bits;
// Default 0 Initialized Constructor
Reg32() : value{ 0 }, bits{ value } { this->data = 0; }
// Constructors by Register Sized Values
explicit Reg32(u32& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg32( u8& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg32(u16& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg32(u64& val) : value{ static_cast<u32>(val) }, bits{ value } {
this->data = value;
}
Reg32(u64 val, u8 idx) {
assert(idx == 0 || idx == 1);
getDWordFrom(val, idx, this->value);
bits = value;
this->data = value;
}
// Constructors by Register Types
template<typename T>
explicit Reg32(Register<T>* reg) {
this->value = static_cast<u32>(reg->data);
this->bits = value;
}
};
struct Reg64 : public Register<u64> {
u64 value; // must be declared before std::bitset<T>
QWord bits;
// Default 0 Initialized Constructor
Reg64() : value{ 0 }, bits{ value } { this->data = 0; }
// Constructors by Register Sized Values
explicit Reg64(u64& val) : value{ val }, bits{ value }{
this->data = value;
}
explicit Reg64( u8& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg64(u16& val) : value{ val }, bits{ value } {
this->data = value;
}
explicit Reg64(u32& val) : value{ val }, bits{ value } {
this->data = value;
}
// Constructors by Register Types
template<typename T>
explicit Reg64(Register<T>* reg) {
this->value = static_cast<u64>(reg->data);
this->bits = value;
}
};
std::ostream& operator<<(std::ostream& os, const Reg8& r);
std::ostream& operator<<(std::ostream& os, const Reg16& r);
std::ostream& operator<<(std::ostream& os, const Reg32& r);
std::ostream& operator<<(std::ostream& os, const Reg64& r);
现在我去将它们变成模板类,以减少很多代码重复。这就是我到目前为止所拥有的:
Register.h -较新版本
template<typename Ty>
struct Register_t {
static constexpr u16 BitCount = sizeof(Ty) * CHAR_BIT;
Ty currentValue;
Ty previousValue;
std::bitset<BitCount> bits;
Register_t() :
currentValue{ 0 },
previousValue{ 0 },
bits{ 0 }{}
template<typename U>
explicit Register_t(U val) :
currentValue{ static_cast<Ty>(val) },
previousValue{ 0 },
bits{ currentValue } {}
template<typename U>
explicit Register_t(Register_t<U>& r) {
this->currentValue = static_cast<Ty>(r->currentValue);
this->bits = r->bits;
}
};
template<typename Ty>
struct Register : public Register_t<Ty> {
Register() = default;
explicit Register(Ty val) : Register_t<Ty>( val ) {}
// Reg8
template<typename U>
Register( u16 val, u8 idx) {
assert(idx == 0 || idx == 1);
getByteFrom(val, idx, currentValue);
this->bits = this->currentValue;
}
Register(u32 val, u8 idx) {
assert(idx <= 0 && idx >= 3);
getByteFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
Register(u64 val, u8 idx) {
assert(idx <= 0 && idx <= 7);
getByteFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
// Reg16
Register(u32 val, u8 idx) {
assert(idx == 0 || idx == 1);
getWordFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
Register(u64 val, u8 idx) {
assert(idx <= 0 && idx <= 3);
getWordFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
// Reg32
Register(u64 val, u8 idx) {
assert(idx == 0 || idx == 1);
getDWordFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
};
using Reg8 = Register<u8>;
using Reg16 = Register<u16>;
using Reg32 = Register<u32>;
using Reg64 = Register<u64>;
现在涉及到std::uintx_t
类型以及索引值的构造函数。一些构造函数声明匹配,例如:
在原始版本中,Reg8
具有Reg8(u32 val, u8 idx)
,而Reg16
具有Reg16(u32 val, u8 idx)
。而且,如果您仔细观察,Reg8(...)
断言idx <= 0 && idx >= 3
,而Reg16(...)
断言idx == 0 || idx == 1
。
但是,当我尝试将这些类作为模板并移植到构造函数上时,它们现在变得模棱两可。我不知道如何确定使用哪个断言来区分是Reg8
,Reg16
,Reg32
等。
答案 0 :(得分:1)
如果要确定类型并做出适当的反应,那么为什么要完全使用通用模板?有两个选项,确定类型和分支(通过完全不使用模板,专门化模板或可能使用SFINAE)或编写 real 通用代码。前者不是很有用,因为最终会得到比没有模板更多的样板。
后者取决于您的要求,但看起来可能像这样:
template <typename T>
T getXFrom(T val, std::uint8_t idx) {
return val >> (idx * CHAR_BIT);
}
template <typename T>
class Register {
public:
template <typename U>
Register(U val, std::uint8_t idx) {
static_assert(std::is_integral_v<U>);
assert(idx >= 0 && idx < sizeof(U));
currentValue = getXFrom(val, idx);
}
private:
T currentValue;
};
根据要求,下面是有关如何进行专门化的示例(使用基类减少冗余):
template <typename T>
class Register {
protected:
T currentValue;
};
template <typename>
class RegisterImpl;
template <>
class RegisterImpl<uint8_t> : Register<uint8_t> {
public:
template <typename U>
RegisterImpl(U val, std::uint8_t idx) {
// uint8_t asserts...
}
};
template <>
class RegisterImpl<uint16_t> : Register<uint16_t> {
public:
template <typename U>
RegisterImpl(U val, std::uint8_t idx) {
// uint16_t asserts...
}
};
答案 1 :(得分:1)
在我看来,您班上的所有事情都归结为使用您类型的无符号版本的sizeof
和numeric_limits::max
。
我已经为我写了一份粗略的草稿,以示我对班级的看法:
template <typename T>
struct Register {
T data;
T value;
bitset<sizeof(T) * CHAR_BIT> bits;
Register() : data(), value() {}
template <typename P>
explicit Register(const P val) : data(static_cast<T>(val)), value(data), bits(data) {}
template <typename P>
Register(const P val, const unsigned char idx) : data(static_cast<T>((val >> std::size(bits) * idx) & numeric_limits<make_unsigned_t<T>>::max())), value(data), bits(data) {
assert(idx == '\0' || idx < sizeof(P) / sizeof(T));
}
template <typename P>
Register(const Register<P>& reg) : data(static_cast<T>(reg.data)), value(data), bits(data) {}
};
template <typename T>
ostream& operator<<(ostream& os, const Register<T>& r) {
os << "Reg" << size(r.bits) << '(' << r.data << ")\nhex: 0x" << uppercase << setfill('0') << setw(sizeof(T) * 2) << hex << r.data << dec << "\nbin: ";
for(std::size_t i = 0; i < size(r.bits); ++i) {
cout.put('0' + r.bits[i]);
}
return os << endl << endl;
}
template <>
ostream& operator<<<unsigned char>(ostream& os, const Register<unsigned char>& r) {
os << "Reg" << size(r.bits) << '(' << static_cast<int>(r.data) << ")\nhex: 0x" << uppercase << setfill('0') << setw(sizeof(unsigned char) * 2) << hex << static_cast<int>(r.data) << dec << "\nbin: ";
for(std::size_t i = 0; i < size(r.bits); ++i) {
cout.put('0' + r.bits[i]);
}
return os << endl << endl;
}
答案 2 :(得分:0)
我想我已经解决了我的问题;我能够进行编译,构建和运行,并且可以获得一些预期的结果,但是我没有做足够的单元测试来验证所有案例是否都能按预期工作,但这是我到目前为止提出的。我已经将我的代码分别分成两个文件,以使其正常工作...
注册。h
#pragma once
#include <algorithm>
#include <assert.h>
#include <bitset>
#include <cstdint>
namespace vpc {
typedef std::int8_t i8;
typedef std::int16_t i16;
typedef std::int32_t i32;
typedef std::int64_t i64;
typedef std::uint8_t u8;
typedef std::uint16_t u16;
typedef std::uint32_t u32;
typedef std::uint64_t u64;
const u16 BYTE = 0x08;
const u16 WORD = 0x10;
const u16 DWORD = 0x20;
const u16 QWORD = 0x40;
typedef std::bitset<BYTE> Byte;
typedef std::bitset<WORD> Word;
typedef std::bitset<DWORD> DWord;
typedef std::bitset<QWORD> QWord;
// Helper Functions
template<typename T>
void getByteFrom(T val, u8 idx, u8& res) {
res = ((val >> (idx * 8) & 0xff));
}
template<typename T>
void getWordFrom(T val, u8 idx, u16& res) {
res = ((val >> (idx * 16) & 0xffff));
}
template<typename T>
void getDWordFrom(T val, u8 idx, u32& res) {
res = ((val >> (idx * 32) & 0xffffffff));
}
template<typename T>
struct Register_t {
static constexpr u16 BitCount = sizeof(T) * CHAR_BIT;
T currentValue;
T previousValue;
std::bitset<BitCount> bits;
Register_t() :
currentValue{ 0 },
previousValue{ 0 },
bits{ 0 }
{}
template<typename U>
explicit Register_t(U val) :
currentValue{ static_cast<T>(val) },
previousValue{ 0 },
bits{ currentValue }
{}
template<typename U>
explicit Register_t(Register_t<U>& r) : previousValue{ 0 }
{
this->currentValue = static_cast<T>(r.currentValue);
this->bits = currentValue;
}
};
template<typename T>
struct Register : public Register_t<T> {
Register() : Register_t<T>() {}
explicit Register(T val) : Register_t<T>( val ) {}
template<typename U>
explicit Register(Register_t<U>& r) : Register_t<T>( r ) {}
// These are the constructors with matching declarations
// that were giving me trouble with ambiguous calls
Register(u16 val, u8 idx);
Register(u32 val, u8 idx);
Register(u64 val, u8 idx);
};
using Reg8 = Register<u8>;
using Reg16 = Register<u16>;
using Reg32 = Register<u32>;
using Reg64 = Register<u64>;
std::ostream& operator<<(std::ostream& os, const Reg8& reg);
std::ostream& operator<<(std::ostream& os, const Reg16& reg);
std::ostream& operator<<(std::ostream& os, const Reg32& reg);
std::ostream& operator<<(std::ostream& os, const Reg64& reg);
} // namespace vpc
我现在在Register.cpp
中定义了它们,以防止LNK Error 2005 - object already defined
。
Register.cpp
#include "Register.h"
#include <iostream>
#include <iomanip>
namespace vpc {
template<>
Register<u8>::Register(u16 val, u8 idx) {
assert(idx == 0 || idx == 1);
getByteFrom(val, idx, currentValue);
this->bits = this->currentValue;
}
template<>
Register<u8>::Register(u32 val, u8 idx) {
assert(idx >= 0 && idx <= 3);
getByteFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
template<>
Register<u8>::Register(u64 val, u8 idx) {
assert(idx >= 0 && idx <= 7);
getByteFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
// Reg16
template<>
Register<u16>::Register(u32 val, u8 idx) {
assert(idx == 0 || idx == 1);
getWordFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
template<>
Register<u16>::Register(u64 val, u8 idx) {
assert(idx >= 0 && idx <= 3);
getWordFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
// Reg32
template<>
Register<u32>::Register(u64 val, u8 idx) {
assert(idx == 0 || idx == 1);
getDWordFrom(val, idx, this->currentValue);
this->bits = this->currentValue;
}
std::ostream& operator<<(std::ostream& os, const Reg8& r) {
os << "Reg8(" << +r.currentValue << ")\n"
<< "hex: " << "0x" << std::uppercase
<< std::setfill('0') << std::setw(2) << std::hex
<< +r.currentValue << std::dec << '\n'
<< "bin: " << r.bits << '\n' << std::endl;
return os;
}
std::ostream& operator<<(std::ostream& os, const Reg16& r) {
os << "Reg16(" << r.currentValue << ")\n"
<< "hex: " << "0x" << std::uppercase
<< std::setfill('0') << std::setw(4) << std::hex
<< r.currentValue << std::dec << '\n'
<< "bin: " << r.bits << '\n' << std::endl;
return os;
}
std::ostream& operator<<(std::ostream& os, const Reg32& r) {
os << "Reg32(" << r.currentValue << ")\n"
<< "hex: " << "0x" << std::uppercase
<< std::setfill('0') << std::setw(8) << std::hex
<< r.currentValue << std::dec << '\n'
<< "bin: " << r.bits << '\n' << std::endl;
return os;
}
std::ostream& operator<<(std::ostream& os, const Reg64& r) {
os << "Reg64(" << r.currentValue << ")\n"
<< "hex: " << "0x" << std::uppercase
<< std::setfill('0') << std::setw(16) << std::hex
<< r.currentValue << std::dec << '\n'
<< "bin: " << r.bits << '\n' << std::endl;
return os;
}
} // namespace vpc
现在我的应用程序:
main.cpp
#include <iostream>
#include "Register.h"
int main() {
using namespace vpc;
u16 val = 1420;
Reg16 r16(val); // used to show a 16 bit register
Reg8 r8A(val, 0); // construct an 8 bit register from low byte of val
Reg8 r8B(val, 1); // construct an 8 bit register from high byte of val
std::cout << r16 << r8A << r8B;
return EXIT_SUCCESS;
}
我正在获取此输出:
Reg16(1420)
hex: 0x058C
bin: 0000010110001100
Reg8(140)
hex: 0x8C
bin: 10001100
Reg8(5)
hex: 0x05
bin: 00000101