61,68d60
< /** Current status of the thread. */
< Status _status;
<
< /** Current instruction the thread is committing. Only set and
< * used for DTB faults currently.
< */
< TheISA::MachInst inst;
<
84,85c76,77
< O3ThreadState(FullCPU *_cpu, int _thread_num, FunctionalMemory *_mem)
< : ThreadState(-1, _thread_num, _mem),
---
> O3ThreadState(FullCPU *_cpu, int _thread_num, )
> : ThreadState(-1, _thread_num),
102,120d93
< /** Returns the status of this thread. */
< Status status() const { return _status; }
<
< /** Sets the status of this thread. */
< void setStatus(Status new_status) { _status = new_status; }
<
< /** Sets the current instruction being committed. */
< void setInst(TheISA::MachInst _inst) { inst = _inst; }
<
< /** Reads the number of instructions functionally executed and
< * committed.
< */
< Counter readFuncExeInst() { return funcExeInst; }
<
< /** Sets the total number of instructions functionally executed
< * and committed.
< */
< void setFuncExeInst(Counter new_val) { funcExeInst = new_val; }
<