447,448c447,448
< /** Reads the commit PC of a specific thread. */
< Addr readPC(ThreadID tid);
---
> /** Sets the commit PC state of a specific thread. */
> void pcState(const TheISA::PCState &newPCState, ThreadID tid);
450,451c450,451
< /** Sets the commit PC of a specific thread. */
< void setPC(Addr new_PC, ThreadID tid);
---
> /** Reads the commit PC state of a specific thread. */
> TheISA::PCState pcState(ThreadID tid);
452a453,455
> /** Reads the commit PC of a specific thread. */
> Addr instAddr(ThreadID tid);
>
454c457
< Addr readMicroPC(ThreadID tid);
---
> MicroPC microPC(ThreadID tid);
456,458d458
< /** Sets the commmit micro PC of a specific thread. */
< void setMicroPC(Addr new_microPC, ThreadID tid);
<
460c460
< Addr readNextPC(ThreadID tid);
---
> Addr nextInstAddr(ThreadID tid);
462,476d461
< /** Sets the next PC of a specific thread. */
< void setNextPC(Addr val, ThreadID tid);
<
< /** Reads the next NPC of a specific thread. */
< Addr readNextNPC(ThreadID tid);
<
< /** Sets the next NPC of a specific thread. */
< void setNextNPC(Addr val, ThreadID tid);
<
< /** Reads the commit next micro PC of a specific thread. */
< Addr readNextMicroPC(ThreadID tid);
<
< /** Sets the commit next micro PC of a specific thread. */
< void setNextMicroPC(Addr val, ThreadID tid);
<