gem5
v20.0.0.3
|
Struct for holding general thread state that is needed across CPU models. More...
#include <thread_state.hh>
Public Types | |
typedef ThreadContext::Status | Status |
Public Member Functions | |
ThreadState (BaseCPU *cpu, ThreadID _tid, Process *_process) | |
virtual | ~ThreadState () |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
int | cpuId () const |
uint32_t | socketId () const |
ContextID | contextId () const |
void | setContextId (ContextID id) |
void | setThreadId (ThreadID id) |
ThreadID | threadId () const |
Tick | readLastActivate () const |
Tick | readLastSuspend () const |
void | initMemProxies (ThreadContext *tc) |
Initialise the physical and virtual port proxies and tie them to the data port of the CPU. More... | |
void | dumpFuncProfile () |
EndQuiesceEvent * | getQuiesceEvent () |
void | profileClear () |
void | profileSample () |
Kernel::Statistics * | getKernelStats () |
PortProxy & | getPhysProxy () |
PortProxy & | getVirtProxy () |
Process * | getProcessPtr () |
void | setProcessPtr (Process *p) |
Counter | readFuncExeInst () const |
Reads the number of instructions functionally executed and committed. More... | |
void | setFuncExeInst (Counter new_val) |
Sets the total number of instructions functionally executed and committed. More... | |
Status | status () const |
Returns the status of this thread. More... | |
void | setStatus (Status new_status) |
Sets the status of this thread. More... | |
![]() | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Public Attributes | |
Counter | numInst |
Number of instructions committed. More... | |
Stats::Scalar | numInsts |
Stat for number instructions committed. More... | |
Counter | numOp |
Number of ops (including micro ops) committed. More... | |
Stats::Scalar | numOps |
Stat for number ops (including micro ops) committed. More... | |
Stats::Scalar | numMemRefs |
Stat for number of memory references. More... | |
Counter | numLoad |
Number of simulated loads, used for tracking events based on the number of loads committed. More... | |
Counter | startNumLoad |
The number of simulated loads committed prior to this run. More... | |
Tick | lastActivate |
Last time activate was called on this thread. More... | |
Tick | lastSuspend |
Last time suspend was called on this thread. More... | |
FunctionProfile * | profile |
ProfileNode * | profileNode |
Addr | profilePC |
EndQuiesceEvent * | quiesceEvent |
Kernel::Statistics * | kernelStats |
Counter | funcExeInst |
unsigned | storeCondFailures |
Protected Attributes | |
ThreadContext::Status | _status |
BaseCPU * | baseCpu |
ContextID | _contextId |
ThreadID | _threadId |
Process * | process |
PortProxy * | physProxy |
A port proxy outgoing only for functional accesses to physical addresses. More... | |
PortProxy * | virtProxy |
A translating port proxy, outgoing only, for functional accesse to virtual addresses. More... | |
Additional Inherited Members | |
![]() | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
Struct for holding general thread state that is needed across CPU models.
This includes things such as pointers to the process, memory, quiesce events, and certain stats. This can be expanded to hold more thread-specific stats within it.
Definition at line 54 of file thread_state.hh.
Definition at line 55 of file thread_state.hh.
Definition at line 44 of file thread_state.cc.
|
virtual |
Definition at line 54 of file thread_state.cc.
|
inline |
Definition at line 69 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::contextId(), and SimpleThread::contextId().
|
inline |
Definition at line 65 of file thread_state.hh.
Referenced by SimpleThread::cpuId().
void ThreadState::dumpFuncProfile | ( | ) |
|
inline |
Definition at line 97 of file thread_state.hh.
Referenced by SimpleThread::getKernelStats().
PortProxy & ThreadState::getPhysProxy | ( | ) |
Definition at line 124 of file thread_state.cc.
References FullSystem, and physProxy.
Referenced by O3ThreadContext< Impl >::getPhysProxy(), and SimpleThread::getPhysProxy().
|
inline |
Definition at line 103 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::getProcessPtr(), and SimpleThread::getProcessPtr().
|
inline |
Definition at line 91 of file thread_state.hh.
Referenced by SimpleThread::getQuiesceEvent().
PortProxy & ThreadState::getVirtProxy | ( | ) |
Definition at line 132 of file thread_state.cc.
References virtProxy.
Referenced by SimpleThread::getVirtProxy().
void ThreadState::initMemProxies | ( | ThreadContext * | tc | ) |
Initialise the physical and virtual port proxies and tie them to the data port of the CPU.
tc | ThreadContext for the virtual-to-physical translation |
Definition at line 100 of file thread_state.cc.
References baseCpu, BaseCPU::cacheLineSize(), FullSystem, BaseCPU::getSendFunctional(), SETranslatingPortProxy::NextPage, physProxy, and virtProxy.
Referenced by O3ThreadContext< Impl >::initMemProxies(), and SimpleThread::initMemProxies().
void ThreadState::profileClear | ( | ) |
Definition at line 139 of file thread_state.cc.
References FunctionProfile::clear(), and profile.
Referenced by SimpleThread::profileClear().
void ThreadState::profileSample | ( | ) |
Definition at line 146 of file thread_state.cc.
References profile, profileNode, profilePC, and FunctionProfile::sample().
Referenced by SimpleThread::profileSample().
|
inline |
Reads the number of instructions functionally executed and committed.
Definition at line 110 of file thread_state.hh.
Referenced by SimpleThread::readFuncExeInst().
|
inline |
Definition at line 77 of file thread_state.hh.
Referenced by SimpleThread::readLastActivate().
|
inline |
Definition at line 79 of file thread_state.hh.
Referenced by SimpleThread::readLastSuspend().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 63 of file thread_state.cc.
References _status, FullSystem, funcExeInst, kernelStats, quiesceEvent, Event::scheduled(), Kernel::Statistics::serialize(), SERIALIZE_ENUM, SERIALIZE_SCALAR, and Event::when().
Referenced by O3ThreadState< Impl >::serialize(), and SimpleThread::serialize().
|
inline |
Definition at line 71 of file thread_state.hh.
References ArmISA::id.
Referenced by O3ThreadContext< Impl >::setContextId(), and SimpleThread::setContextId().
|
inline |
Sets the total number of instructions functionally executed and committed.
Definition at line 115 of file thread_state.hh.
|
inline |
Definition at line 105 of file thread_state.hh.
References MipsISA::p.
Referenced by O3ThreadContext< Impl >::setProcessPtr(), and SimpleThread::setProcessPtr().
|
inline |
Sets the status of this thread.
Definition at line 121 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::setStatus().
|
inline |
Definition at line 73 of file thread_state.hh.
References ArmISA::id.
Referenced by O3ThreadContext< Impl >::setThreadId(), and SimpleThread::setThreadId().
|
inline |
Definition at line 67 of file thread_state.hh.
Referenced by SimpleThread::socketId().
|
inline |
Returns the status of this thread.
Definition at line 118 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::status().
|
inline |
Definition at line 75 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::conditionalSquash(), O3ThreadContext< Impl >::getDecoderPtr(), O3ThreadContext< Impl >::getIsaPtr(), O3ThreadContext< Impl >::instAddr(), O3ThreadContext< Impl >::microPC(), O3ThreadContext< Impl >::nextInstAddr(), O3ThreadContext< Impl >::pcState(), O3ThreadContext< Impl >::readMiscReg(), O3ThreadContext< Impl >::readMiscRegNoEffect(), O3ThreadContext< Impl >::readVecLaneFlat(), O3ThreadContext< Impl >::setVecLaneFlat(), O3ThreadContext< Impl >::syscall(), O3ThreadContext< Impl >::threadId(), and SimpleThread::threadId().
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 81 of file thread_state.cc.
References _status, baseCpu, FullSystem, funcExeInst, kernelStats, quiesceEvent, EventManager::schedule(), Kernel::Statistics::unserialize(), UNSERIALIZE_ENUM, and UNSERIALIZE_SCALAR.
Referenced by O3ThreadState< Impl >::unserialize(), and SimpleThread::unserialize().
|
protected |
Definition at line 151 of file thread_state.hh.
Referenced by SimpleThread::copyState().
|
protected |
Definition at line 145 of file thread_state.hh.
Referenced by SimpleThread::activate(), SimpleThread::copyState(), SimpleThread::halt(), serialize(), SimpleThread::suspend(), and unserialize().
|
protected |
Definition at line 154 of file thread_state.hh.
Referenced by SimpleThread::activate(), SimpleThread::copyState(), SimpleThread::halt(), and SimpleThread::suspend().
|
protected |
Definition at line 148 of file thread_state.hh.
Referenced by SimpleThread::activate(), SimpleThread::dumpFuncProfile(), SimpleThread::halt(), initMemProxies(), SimpleThread::SimpleThread(), SimpleThread::suspend(), and unserialize().
Counter ThreadState::funcExeInst |
Definition at line 187 of file thread_state.hh.
Referenced by SimpleThread::copyState(), BaseSimpleCPU::countInst(), O3ThreadContext< Impl >::readFuncExeInst(), serialize(), SimpleThread::takeOverFrom(), and unserialize().
Kernel::Statistics* ThreadState::kernelStats |
Definition at line 169 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::getKernelStats(), SimpleThread::regStats(), serialize(), CheckerCPU::setSystem(), SimpleThread::SimpleThread(), SimpleThread::takeOverFrom(), and unserialize().
Tick ThreadState::lastActivate |
Last time activate was called on this thread.
Definition at line 158 of file thread_state.hh.
Referenced by SimpleThread::activate(), BaseKvmCPU::activateContext(), and SimpleThread::suspend().
Tick ThreadState::lastSuspend |
Last time suspend was called on this thread.
Definition at line 161 of file thread_state.hh.
Referenced by BaseKvmCPU::activateContext(), and SimpleThread::suspend().
Counter ThreadState::numInst |
Number of instructions committed.
Definition at line 126 of file thread_state.hh.
Stats::Scalar ThreadState::numInsts |
Stat for number instructions committed.
Definition at line 128 of file thread_state.hh.
Counter ThreadState::numLoad |
Number of simulated loads, used for tracking events based on the number of loads committed.
Definition at line 139 of file thread_state.hh.
Stats::Scalar ThreadState::numMemRefs |
Stat for number of memory references.
Definition at line 134 of file thread_state.hh.
Counter ThreadState::numOp |
Number of ops (including micro ops) committed.
Definition at line 130 of file thread_state.hh.
Stats::Scalar ThreadState::numOps |
Stat for number ops (including micro ops) committed.
Definition at line 132 of file thread_state.hh.
|
protected |
A port proxy outgoing only for functional accesses to physical addresses.
Definition at line 176 of file thread_state.hh.
Referenced by getPhysProxy(), initMemProxies(), and ~ThreadState().
|
protected |
Definition at line 172 of file thread_state.hh.
Referenced by O3ThreadState< Impl >::syscall().
FunctionProfile* ThreadState::profile |
Definition at line 164 of file thread_state.hh.
Referenced by O3ThreadState< Impl >::dumpFuncProfile(), SimpleThread::dumpFuncProfile(), O3ThreadState< Impl >::O3ThreadState(), BaseSimpleCPU::postExecute(), profileClear(), profileSample(), and SimpleThread::SimpleThread().
ProfileNode* ThreadState::profileNode |
Definition at line 165 of file thread_state.hh.
Referenced by O3ThreadState< Impl >::O3ThreadState(), BaseSimpleCPU::postExecute(), profileSample(), and SimpleThread::SimpleThread().
Addr ThreadState::profilePC |
Definition at line 166 of file thread_state.hh.
Referenced by O3ThreadState< Impl >::O3ThreadState(), BaseSimpleCPU::postExecute(), profileSample(), and SimpleThread::SimpleThread().
EndQuiesceEvent* ThreadState::quiesceEvent |
Definition at line 167 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::getQuiesceEvent(), serialize(), SimpleThread::SimpleThread(), and unserialize().
Counter ThreadState::startNumLoad |
The number of simulated loads committed prior to this run.
Definition at line 142 of file thread_state.hh.
unsigned ThreadState::storeCondFailures |
Definition at line 192 of file thread_state.hh.
Referenced by O3ThreadContext< Impl >::readStCondFailures(), O3ThreadContext< Impl >::setStCondFailures(), and SimpleThread::takeOverFrom().
|
protected |
A translating port proxy, outgoing only, for functional accesse to virtual addresses.
Definition at line 180 of file thread_state.hh.
Referenced by getVirtProxy(), initMemProxies(), and ~ThreadState().