109a110,112
> /** Values to be written to the destination misc. registers. */
> MiscReg _destMiscRegVal[TheISA::MaxMiscDestRegs];
>
114,116c117,118
< int _destMiscRegIdx[MaxInstDestRegs];
< /** Values to be written to the destination misc. registers. */
< MiscReg _destMiscRegVal[MaxInstDestRegs];
---
> short _destMiscRegIdx[TheISA::MaxMiscDestRegs];
>
118c120
< int _numDestMiscRegs;
---
> uint8_t _numDestMiscRegs;
120d121
< public:
121a123
> public:
125,129c127,131
< Tick decodeTick;
< Tick renameTick;
< Tick dispatchTick;
< Tick issueTick;
< Tick completeTick;
---
> uint32_t decodeTick;
> uint32_t renameTick;
> uint32_t dispatchTick;
> uint32_t issueTick;
> uint32_t completeTick;
147a150
> assert(_numDestMiscRegs < TheISA::MaxMiscDestRegs);