Replaced all instanced of DoubleWord to DWord and DoubleWordI to DWordI

This commit is contained in:
Santosh Srivatsan
2021-12-13 19:55:02 -05:00
parent e82d5fe48f
commit 4abfca4cb2
9 changed files with 60 additions and 60 deletions

View File

@@ -11,7 +11,7 @@ class Core;
class Instr;
class pipeline_trace_t;
struct DomStackEntry {
DomStackEntry(const ThreadMask &tmask, DoubleWord PC)
DomStackEntry(const ThreadMask &tmask, DWord PC)
: tmask(tmask)
, PC(PC)
, fallThrough(false)
@@ -26,7 +26,7 @@ struct DomStackEntry {
{}
ThreadMask tmask;
DoubleWord PC;
DWord PC;
bool fallThrough;
bool unanimous;
};
@@ -66,11 +66,11 @@ public:
return id_;
}
DoubleWord getPC() const {
DWord getPC() const {
return PC_;
}
void setPC(DoubleWord PC) {
void setPC(DWord PC) {
PC_ = PC;
}
@@ -99,11 +99,11 @@ private:
Core *core_;
bool active_;
DoubleWord PC_;
DWord PC_;
ThreadMask tmask_;
std::vector<std::vector<DoubleWord>> ireg_file_;
std::vector<std::vector<DoubleWord>> freg_file_;
std::vector<std::vector<DWord>> ireg_file_;
std::vector<std::vector<DWord>> freg_file_;
std::vector<std::vector<Byte>> vreg_file_;
std::stack<DomStackEntry> dom_stack_;