SPARC: Get rid of the setCWP function.
authorGabe Black <gblack@eecs.umich.edu>
Wed, 25 Feb 2009 18:21:40 +0000 (10:21 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Wed, 25 Feb 2009 18:21:40 +0000 (10:21 -0800)
src/arch/sparc/intregfile.cc
src/arch/sparc/intregfile.hh

index 6419f0f932f184d0c36c2786011fa2a0e1381a61..28299c9b3a55a13607699d67cb5d06559ed1eb3b 100644 (file)
@@ -73,7 +73,6 @@ IntRegFile::IntRegFile()
 {
     offset[Globals] = 0;
     regView[Globals] = regGlobals[0];
-    setCWP(0);
     clear();
 }
 
@@ -119,25 +118,6 @@ void IntRegFile::setReg(int intReg, const IntReg &val)
     } */
 }
 
-//This doesn't effect the actual CWP register.
-//It's purpose is to adjust the view of the register file
-//to what it would be if CWP = cwp.
-void IntRegFile::setCWP(int cwp)
-{
-    int index = ((NWindows - cwp) % NWindows) * 2;
-    if (index < 0)
-        panic("Index less than 0. cwp=%d nwin=%d\n", cwp, NWindows);
-    offset[Outputs] = FrameOffset + (index * RegsPerFrame);
-    offset[Locals] = FrameOffset + ((index+1) * RegsPerFrame);
-    offset[Inputs] = FrameOffset +
-        (((index+2) % (NWindows * 2)) * RegsPerFrame);
-    regView[Outputs] = regSegments[index];
-    regView[Locals] = regSegments[index+1];
-    regView[Inputs] = regSegments[(index+2) % (NWindows * 2)];
-
-    DPRINTF(RegisterWindows, "Changed the CWP value to %d\n", cwp);
-}
-
 void IntRegFile::setGlobals(int gl)
 {
     DPRINTF(RegisterWindows, "Now using %d globals\n", gl);
index 83ef1d17bd0fac7f316b0f3ffa2df8357b24a661..0d1fe413e17b3b344cef768ff1446f5e36b2b853 100644 (file)
@@ -102,11 +102,6 @@ namespace SparcISA
         void unserialize(Checkpoint *cp, const std::string &section);
 
       protected:
-        //This doesn't effect the actual CWP register.
-        //It's purpose is to adjust the view of the register file
-        //to what it would be if CWP = cwp.
-        void setCWP(int cwp);
-
         void setGlobals(int gl);
     };
 }