Fixed the number of integer registers. There are MaxGL+1 sets of globals, not just...
authorGabe Black <gblack@eecs.umich.edu>
Fri, 26 Jan 2007 21:38:29 +0000 (16:38 -0500)
committerGabe Black <gblack@eecs.umich.edu>
Fri, 26 Jan 2007 21:38:29 +0000 (16:38 -0500)
--HG--
extra : convert_revision : 6fd090f112611db1e72a1f129dff03687d52930a

src/arch/sparc/intregfile.hh
src/arch/sparc/regfile.cc

index 716d45a657f1e3c1ae9170bcceef4e69d6a63d21..665c7aa313e2fa44b3d96906884f35ad23b42d1b 100644 (file)
@@ -48,7 +48,7 @@ namespace SparcISA
     std::string getIntRegName(RegIndex);
 
     const int NumIntArchRegs = 32;
-    const int NumIntRegs = MaxGL * 8 + NWindows * 16 + NumMicroIntRegs;
+    const int NumIntRegs = (MaxGL + 1) * 8 + NWindows * 16 + NumMicroIntRegs;
 
     class IntRegFile
     {
index 4be411d179487f7a53ba4ab0a45c18b3d94309b5..d39892e736433bc2fe2f36c795b7b0b4b7a6b8a3 100644 (file)
@@ -157,6 +157,8 @@ int SparcISA::flattenIntIndex(ThreadContext * tc, int reg)
     int cwp = tc->readMiscReg(MISCREG_CWP);
     //DPRINTF(Sparc, "Global Level = %d, Current Window Pointer = %d\n", gl, cwp);
     int newReg;
+    //The total number of global registers
+    int numGlobals = (MaxGL + 1) * 8;
     if(reg < 8)
     {
         //Global register
@@ -167,14 +169,14 @@ int SparcISA::flattenIntIndex(ThreadContext * tc, int reg)
     {
         //Regular windowed register
         //Put it in the window pointed to by cwp
-        newReg = MaxGL * 8 +
+        newReg = numGlobals +
             ((reg - 8 - cwp * 16 + NWindows * 16) % (NWindows * 16));
     }
     else if(reg < NumIntArchRegs + NumMicroIntRegs)
     {
         //Microcode register
         //Displace from the end of the regular registers
-        newReg = reg - NumIntArchRegs + MaxGL * 8 + NWindows * 16;
+        newReg = reg - NumIntArchRegs + numGlobals + NWindows * 16;
     }
     else if(reg < 2 * NumIntArchRegs + NumMicroIntRegs)
     {
@@ -189,7 +191,7 @@ int SparcISA::flattenIntIndex(ThreadContext * tc, int reg)
         {
             //Windowed register from the previous window
             //Put it in the window before the one pointed to by cwp
-            newReg = MaxGL * 8 +
+            newReg = numGlobals +
                 ((reg - 8 - (cwp - 1) * 16 + NWindows * 16) % (NWindows * 16));
         }
     }
@@ -206,7 +208,7 @@ int SparcISA::flattenIntIndex(ThreadContext * tc, int reg)
         {
             //Windowed register from the next window
             //Put it in the window after the one pointed to by cwp
-            newReg = MaxGL * 8 +
+            newReg = numGlobals +
                 ((reg - 8 - (cwp + 1) * 16 + NWindows * 16) % (NWindows * 16));
         }
     }