gem5  v20.0.0.3
Public Types | Public Member Functions | Public Attributes | Private Attributes | List of all members
O3ThreadState< Impl > Struct Template Reference

Class that has various thread state, such as the status, the current instruction being processed, whether or not the thread has a trap pending or is being externally updated, the ThreadContext pointer, etc. More...

#include <commit.hh>

Inheritance diagram for O3ThreadState< Impl >:
ThreadState Serializable

Public Types

typedef ThreadContext::Status Status
 
typedef Impl::O3CPU O3CPU
 
- Public Types inherited from ThreadState
typedef ThreadContext::Status Status
 

Public Member Functions

 O3ThreadState (O3CPU *_cpu, int _thread_num, Process *_process)
 
void serialize (CheckpointOut &cp) const override
 Serialize an object. More...
 
void unserialize (CheckpointIn &cp) override
 Unserialize an object. More...
 
ThreadContextgetTC ()
 Returns a pointer to the TC of this thread. More...
 
void syscall (Fault *fault)
 Handles the syscall. More...
 
void dumpFuncProfile ()
 
- Public Member Functions inherited from ThreadState
 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 ()
 
EndQuiesceEventgetQuiesceEvent ()
 
void profileClear ()
 
void profileSample ()
 
Kernel::StatisticsgetKernelStats ()
 
PortProxygetPhysProxy ()
 
PortProxygetVirtProxy ()
 
ProcessgetProcessPtr ()
 
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...
 
- Public Member Functions inherited from Serializable
 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

PCEventQueue pcEventQueue
 
EventQueue comInstEventQueue
 An instruction-based event queue. More...
 
bool noSquashFromTC
 
bool trapPending
 Whether or not the thread is currently waiting on a trap, and thus able to be externally updated without squashing. More...
 
ThreadContexttc
 Pointer to the ThreadContext of this thread. More...
 
- Public Attributes inherited from ThreadState
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...
 
FunctionProfileprofile
 
ProfileNodeprofileNode
 
Addr profilePC
 
EndQuiesceEventquiesceEvent
 
Kernel::StatisticskernelStats
 
Counter funcExeInst
 
unsigned storeCondFailures
 

Private Attributes

O3CPUcpu
 Pointer to the CPU. More...
 

Additional Inherited Members

- Static Public Member Functions inherited from Serializable
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)
 
- Protected Attributes inherited from ThreadState
ThreadContext::Status _status
 
BaseCPUbaseCpu
 
ContextID _contextId
 
ThreadID _threadId
 
Processprocess
 
PortProxyphysProxy
 A port proxy outgoing only for functional accesses to physical addresses. More...
 
PortProxyvirtProxy
 A translating port proxy, outgoing only, for functional accesse to virtual addresses. More...
 

Detailed Description

template<class Impl>
struct O3ThreadState< Impl >

Class that has various thread state, such as the status, the current instruction being processed, whether or not the thread has a trap pending or is being externally updated, the ThreadContext pointer, etc.

It also handles anything related to a specific thread's process, such as syscalls and checking valid addresses.

Definition at line 56 of file commit.hh.

Member Typedef Documentation

◆ O3CPU

template<class Impl>
typedef Impl::O3CPU O3ThreadState< Impl >::O3CPU

Definition at line 68 of file thread_state.hh.

◆ Status

template<class Impl>
typedef ThreadContext::Status O3ThreadState< Impl >::Status

Definition at line 67 of file thread_state.hh.

Constructor & Destructor Documentation

◆ O3ThreadState()

template<class Impl>
O3ThreadState< Impl >::O3ThreadState ( O3CPU _cpu,
int  _thread_num,
Process _process 
)
inline

Member Function Documentation

◆ dumpFuncProfile()

template<class Impl>
void O3ThreadState< Impl >::dumpFuncProfile ( )
inline

◆ getTC()

template<class Impl>
ThreadContext* O3ThreadState< Impl >::getTC ( )
inline

Returns a pointer to the TC of this thread.

Definition at line 146 of file thread_state.hh.

References O3ThreadState< Impl >::tc.

◆ serialize()

template<class Impl>
void O3ThreadState< Impl >::serialize ( CheckpointOut cp) const
inlineoverridevirtual

Serialize an object.

Output an object's state into the current checkpoint section.

Parameters
cpCheckpoint state

Implements Serializable.

Definition at line 121 of file thread_state.hh.

References ThreadState::serialize(), and O3ThreadState< Impl >::tc.

◆ syscall()

template<class Impl>
void O3ThreadState< Impl >::syscall ( Fault fault)
inline

Handles the syscall.

Definition at line 149 of file thread_state.hh.

References ThreadState::process, and Process::syscall().

◆ unserialize()

template<class Impl>
void O3ThreadState< Impl >::unserialize ( CheckpointIn cp)
inlineoverridevirtual

Unserialize an object.

Read an object's state from the current checkpoint section.

Parameters
cpCheckpoint state

Implements Serializable.

Definition at line 129 of file thread_state.hh.

References O3ThreadState< Impl >::tc, and ThreadState::unserialize().

Member Data Documentation

◆ comInstEventQueue

template<class Impl>
EventQueue O3ThreadState< Impl >::comInstEventQueue

An instruction-based event queue.

Used for scheduling events based on number of instructions committed.

Definition at line 80 of file thread_state.hh.

◆ cpu

template<class Impl>
O3CPU* O3ThreadState< Impl >::cpu
private

Pointer to the CPU.

Definition at line 72 of file thread_state.hh.

◆ noSquashFromTC

template<class Impl>
bool O3ThreadState< Impl >::noSquashFromTC

Definition at line 90 of file thread_state.hh.

Referenced by O3ThreadContext< Impl >::conditionalSquash().

◆ pcEventQueue

template<class Impl>
PCEventQueue O3ThreadState< Impl >::pcEventQueue

Definition at line 75 of file thread_state.hh.

◆ tc

template<class Impl>
ThreadContext* O3ThreadState< Impl >::tc

◆ trapPending

template<class Impl>
bool O3ThreadState< Impl >::trapPending

Whether or not the thread is currently waiting on a trap, and thus able to be externally updated without squashing.

Definition at line 95 of file thread_state.hh.

Referenced by O3ThreadContext< Impl >::conditionalSquash().


The documentation for this struct was generated from the following files:

Generated on Fri Jul 3 2020 15:53:18 for gem5 by doxygen 1.8.13