Searched refs:funcExeInst (Results 1 - 9 of 9) sorted by relevance

/gem5/src/cpu/
H A Dthread_state.hh128 Counter readFuncExeInst() const { return funcExeInst; }
133 void setFuncExeInst(Counter new_val) { funcExeInst = new_val; }
205 Counter funcExeInst; member in struct:ThreadState
H A Dthread_state.cc52 funcExeInst(0), storeCondFailures(0)
69 SERIALIZE_SCALAR(funcExeInst);
88 UNSERIALIZE_SCALAR(funcExeInst);
H A Dsimple_thread.cc123 funcExeInst = oldContext->readFuncExeInst();
134 funcExeInst = oldContext->readFuncExeInst();
/gem5/src/cpu/o3/
H A Dthread_context_impl.hh80 thread->funcExeInst = old_context->readFuncExeInst();
196 this->thread->funcExeInst = tc->readFuncExeInst();
H A Dthread_context.hh429 /** Reads the funcExeInst counter. */
430 Counter readFuncExeInst() const override { return thread->funcExeInst; }
H A Dcommit_impl.hh1041 thread[tid]->funcExeInst++;
1165 thread[tid]->funcExeInst--;
H A Dcpu.cc929 ++(this->thread[tid]->funcExeInst);
934 // Decrease funcExeInst by one as the normal commit will handle
936 --(this->thread[tid]->funcExeInst);
/gem5/src/cpu/checker/
H A Dcpu_impl.hh376 thread->funcExeInst++;
/gem5/src/cpu/simple/
H A Dbase.cc178 t_info.thread->funcExeInst++;

Completed in 24 milliseconds