style: this file did not conform to style

This commit is contained in:
Nathan Binkert 2008-09-09 16:27:17 -07:00
parent 496d3f2789
commit 09a8fb0b52

View file

@ -37,7 +37,6 @@
using namespace MipsISA;
using namespace std;
void
IntRegFile::clear()
{
@ -55,18 +54,20 @@ IntRegFile::setShadowSet(int css)
IntReg
IntRegFile::readReg(int intReg)
{
if(intReg < NumIntRegs)
{ // Regular GPR Read
DPRINTF(MipsPRA,"Reading Reg: %d, CurrShadowSet: %d\n",intReg,currShadowSet);
if (intReg < NumIntRegs) {
// Regular GPR Read
DPRINTF(MipsPRA, "Reading Reg: %d, CurrShadowSet: %d\n", intReg,
currShadowSet);
if (intReg >= NumIntArchRegs * NumShadowRegSets) {
return regs[intReg + NumIntRegs * currShadowSet];
} else {
int index = intReg + NumIntArchRegs * currShadowSet;
index = index % NumIntArchRegs;
return regs[index];
}
else {
return regs[(intReg + NumIntArchRegs*currShadowSet) % NumIntArchRegs];
}
}
else
{ // Read from shadow GPR .. probably called by RDPGPR
} else {
// Read from shadow GPR .. probably called by RDPGPR
return regs[intReg];
}
}
@ -75,20 +76,16 @@ Fault
IntRegFile::setReg(int intReg, const IntReg &val)
{
if (intReg != ZeroReg) {
if(intReg < NumIntRegs)
{
if(intReg >= NumIntArchRegs*NumShadowRegSets){
if (intReg < NumIntRegs) {
if (intReg >= NumIntArchRegs * NumShadowRegSets)
regs[intReg] = val;
}
else{
else
regs[intReg + NumIntRegs * currShadowSet] = val;
}
}
else{
} else {
regs[intReg] = val;
}
}
return NoFault;
}
@ -103,4 +100,3 @@ IntRegFile::unserialize(Checkpoint *cp, const std::string &section)
{
UNSERIALIZE_ARRAY(regs, NumIntRegs);
}