83c83
< assert(phys_reg->flatIdx < numPhysRegs);
---
> assert(phys_reg->flatIndex() < numPhysRegs);
90c90
< bool ready = regScoreBoard[phys_reg->flatIdx];
---
> bool ready = regScoreBoard[phys_reg->flatIndex()];
101c101
< assert(phys_reg->flatIdx < numPhysRegs);
---
> assert(phys_reg->flatIndex() < numPhysRegs);
109,110c109,110
< DPRINTF(Scoreboard, "Setting reg %i (%s) as ready\n", phys_reg->regIdx,
< RegClassStrings[phys_reg->regClass]);
---
> DPRINTF(Scoreboard, "Setting reg %i (%s) as ready\n",
> phys_reg->index(), phys_reg->className());
112c112
< regScoreBoard[phys_reg->flatIdx] = true;
---
> regScoreBoard[phys_reg->flatIndex()] = true;
118c118
< assert(phys_reg->flatIdx < numPhysRegs);
---
> assert(phys_reg->flatIndex() < numPhysRegs);
130c130
< regScoreBoard[phys_reg->flatIdx] = false;
---
> regScoreBoard[phys_reg->flatIndex()] = false;