Gabe Black has uploaded this change for review. ( https://gem5-review.googlesource.com/c/public/gem5/+/13620

Change subject: mips: Change the integer and fp register widths to be 64 bits.
......................................................................

mips: Change the integer and fp register widths to be 64 bits.

This makes them more consistent with the other architectures, helping
to facilitate having a single, unified type across ISAs in the future.

Change-Id: I65efb10e39d453281b8429eeedbb46fa6b023a2b
---
M src/arch/mips/registers.hh
1 file changed, 3 insertions(+), 3 deletions(-)



diff --git a/src/arch/mips/registers.hh b/src/arch/mips/registers.hh
index 55c2dee..dbac839 100644
--- a/src/arch/mips/registers.hh
+++ b/src/arch/mips/registers.hh
@@ -278,11 +278,11 @@

 const int TotalNumRegs = NumIntRegs + NumFloatRegs + NumMiscRegs;

-typedef uint32_t IntReg;
+typedef uint64_t IntReg;

 // floating point register file entry type
-typedef uint32_t FloatRegBits;
-typedef float FloatReg;
+typedef uint64_t FloatRegBits;
+typedef double FloatReg;

 // cop-0/cop-1 system control register
 typedef uint64_t MiscReg;

--
To view, visit https://gem5-review.googlesource.com/c/public/gem5/+/13620
To unsubscribe, or for help writing mail filters, visit https://gem5-review.googlesource.com/settings

Gerrit-Project: public/gem5
Gerrit-Branch: master
Gerrit-Change-Id: I65efb10e39d453281b8429eeedbb46fa6b023a2b
Gerrit-Change-Number: 13620
Gerrit-PatchSet: 1
Gerrit-Owner: Gabe Black <[email protected]>
Gerrit-MessageType: newchange
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev

Reply via email to