MISCREG_UNIQ,
MISCREG_LOCKFLAG,
MISCREG_LOCKADDR,
- MISCREG_INTR
+ MISCREG_INTR,
+ NUM_MISCREGS
};
// semantically meaningful register indices
const int NumIntArchRegs = 32;
const int NumPALShadowRegs = 8;
const int NumFloatArchRegs = 32;
-// @todo: Figure out what this number really should be.
-const int NumMiscArchRegs = 77;
+const int NumMiscArchRegs = NUM_MISCREGS;
const int NumIntRegs = NumIntArchRegs + NumPALShadowRegs;
const int NumFloatRegs = NumFloatArchRegs;
const int NumMiscRegs = NumMiscArchRegs;
const int TotalNumRegs =
- NumIntRegs + NumFloatRegs + NumMiscRegs + NumInternalProcRegs;
+ NumIntRegs + NumFloatRegs + NumMiscRegs;
const int TotalDataRegs = NumIntRegs + NumFloatRegs;
numPhysicalRegs = numPhysicalIntRegs + numPhysicalFloatRegs;
//Resize scoreboard appropriately
- regScoreBoard.resize(numPhysicalRegs + (numMiscRegs * activeThreads));
+ resize(numPhysicalRegs + (numMiscRegs * activeThreads));
//Initialize values
for (int i=0; i < numLogicalIntRegs * activeThreads; i++) {
+ assert(indexInBounds(i));
regScoreBoard[i] = 1;
}
for (int i= numPhysicalIntRegs;
i < numPhysicalIntRegs + (numLogicalFloatRegs * activeThreads);
i++) {
+ assert(indexInBounds(i));
regScoreBoard[i] = 1;
}
for (int i = numPhysicalRegs;
i < numPhysicalRegs + (numMiscRegs * activeThreads);
i++) {
+ assert(indexInBounds(i));
regScoreBoard[i] = 1;
}
}
}
#endif
+ assert(indexInBounds(phys_reg));
return regScoreBoard[phys_reg];
}
{
DPRINTF(Scoreboard, "Setting reg %i as ready\n", phys_reg);
+ assert(indexInBounds(phys_reg));
regScoreBoard[phys_reg] = 1;
}
}
#endif
+ assert(indexInBounds(ready_reg));
regScoreBoard[ready_reg] = 0;
}
/** The logical index of the zero register. */
int zeroRegIdx;
+
+ int currentSize;
+
+ void
+ resize(int newSize)
+ {
+ currentSize = newSize;
+ regScoreBoard.resize(newSize);
+ }
+
+ bool
+ indexInBounds(int idx)
+ {
+ return idx < currentSize;
+ }
};
#endif