diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2009-07-08 23:02:20 -0700 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2009-07-08 23:02:20 -0700 |
commit | 25884a87733cd35ef6613aaef9a8a08194267552 (patch) | |
tree | 3eb831102c76206ba5ba4e19b94810be67ce108f /src/arch/alpha | |
parent | 32daf6fc3fd34af0023ae74c2a1f8dd597f87242 (diff) | |
download | gem5-25884a87733cd35ef6613aaef9a8a08194267552.tar.xz |
Registers: Get rid of the float register width parameter.
Diffstat (limited to 'src/arch/alpha')
-rw-r--r-- | src/arch/alpha/floatregfile.hh | 33 | ||||
-rw-r--r-- | src/arch/alpha/regfile.hh | 24 |
2 files changed, 0 insertions, 57 deletions
diff --git a/src/arch/alpha/floatregfile.hh b/src/arch/alpha/floatregfile.hh index f6abb1f86..eb8a92d89 100644 --- a/src/arch/alpha/floatregfile.hh +++ b/src/arch/alpha/floatregfile.hh @@ -42,18 +42,9 @@ class Checkpoint; namespace AlphaISA { -const int SingleWidth = 32; -const int SingleBytes = SingleWidth / 4; -const int DoubleWidth = 64; -const int DoubleBytes = DoubleWidth / 4; -const int QuadWidth = 128; -const int QuadBytes = QuadWidth / 4; - class FloatRegFile { public: - static const int regWidth = DoubleWidth; - union { uint64_t q[NumFloatRegs]; // integer qword view double d[NumFloatRegs]; // double-precision floating point view @@ -70,24 +61,12 @@ class FloatRegFile return d[floatReg]; } - FloatReg - readReg(int floatReg, int width) - { - return readReg(floatReg); - } - FloatRegBits readRegBits(int floatReg) { return q[floatReg]; } - FloatRegBits - readRegBits(int floatReg, int width) - { - return readRegBits(floatReg); - } - void setReg(int floatReg, const FloatReg &val) { @@ -95,23 +74,11 @@ class FloatRegFile } void - setReg(int floatReg, const FloatReg &val, int width) - { - setReg(floatReg, val); - } - - void setRegBits(int floatReg, const FloatRegBits &val) { q[floatReg] = val; } - void - setRegBits(int floatReg, const FloatRegBits &val, int width) - { - setRegBits(floatReg, val); - } - }; } // namespace AlphaISA diff --git a/src/arch/alpha/regfile.hh b/src/arch/alpha/regfile.hh index 59b76efd5..0a39a94a9 100644 --- a/src/arch/alpha/regfile.hh +++ b/src/arch/alpha/regfile.hh @@ -112,24 +112,12 @@ class RegFile { return floatRegFile.d[floatReg]; } - FloatReg - readFloatReg(int floatReg, int width) - { - return readFloatReg(floatReg); - } - FloatRegBits readFloatRegBits(int floatReg) { return floatRegFile.q[floatReg]; } - FloatRegBits - readFloatRegBits(int floatReg, int width) - { - return readFloatRegBits(floatReg); - } - void setFloatReg(int floatReg, const FloatReg &val) { @@ -137,23 +125,11 @@ class RegFile { } void - setFloatReg(int floatReg, const FloatReg &val, int width) - { - setFloatReg(floatReg, val); - } - - void setFloatRegBits(int floatReg, const FloatRegBits &val) { floatRegFile.q[floatReg] = val; } - void - setFloatRegBits(int floatReg, const FloatRegBits &val, int width) - { - setFloatRegBits(floatReg, val); - } - IntReg readIntReg(int intReg) { |