gem5
v19.0.0.0
|
The SimpleThread object provides a combination of the ThreadState object and the ThreadContext interface. More...
#include <simple_thread.hh>
Public Types | |
typedef ThreadContext::Status | Status |
![]() | |
typedef ThreadContext::Status | Status |
![]() | |
enum | Status { Active, Suspended, Halting, Halted } |
Public Member Functions | |
std::string | name () const |
SimpleThread (BaseCPU *_cpu, int _thread_num, System *_system, BaseTLB *_itb, BaseTLB *_dtb, TheISA::ISA *_isa, bool use_kernel_stats=true) | |
SimpleThread (BaseCPU *_cpu, int _thread_num, System *_system, Process *_process, BaseTLB *_itb, BaseTLB *_dtb, TheISA::ISA *_isa) | |
virtual | ~SimpleThread () |
void | takeOverFrom (ThreadContext *oldContext) override |
void | regStats (const std::string &name) override |
void | copyState (ThreadContext *oldContext) |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
void | startup () |
ThreadContext * | getTC () |
Returns the pointer to this SimpleThread's ThreadContext. More... | |
void | demapPage (Addr vaddr, uint64_t asn) |
void | demapInstPage (Addr vaddr, uint64_t asn) |
void | demapDataPage (Addr vaddr, uint64_t asn) |
void | dumpFuncProfile () override |
bool | schedule (PCEvent *e) override |
bool | remove (PCEvent *e) override |
void | scheduleInstCountEvent (Event *event, Tick count) override |
void | descheduleInstCountEvent (Event *event) override |
Tick | getCurrentInstCount () override |
BaseCPU * | getCpuPtr () override |
int | cpuId () const override |
uint32_t | socketId () const override |
int | threadId () const override |
void | setThreadId (int id) override |
ContextID | contextId () const override |
void | setContextId (ContextID id) override |
BaseTLB * | getITBPtr () override |
BaseTLB * | getDTBPtr () override |
CheckerCPU * | getCheckerCpuPtr () override |
BaseISA * | getIsaPtr () override |
TheISA::Decoder * | getDecoderPtr () override |
System * | getSystemPtr () override |
Kernel::Statistics * | getKernelStats () override |
PortProxy & | getPhysProxy () override |
PortProxy & | getVirtProxy () override |
void | initMemProxies (ThreadContext *tc) override |
Initialise the physical and virtual port proxies and tie them to the data port of the CPU. More... | |
Process * | getProcessPtr () override |
void | setProcessPtr (Process *p) override |
Status | status () const override |
void | setStatus (Status newStatus) override |
void | activate () override |
Set the status to Active. More... | |
void | suspend () override |
Set the status to Suspended. More... | |
void | halt () override |
Set the status to Halted. More... | |
EndQuiesceEvent * | getQuiesceEvent () override |
Tick | readLastActivate () override |
Tick | readLastSuspend () override |
void | profileClear () override |
void | profileSample () override |
void | copyArchRegs (ThreadContext *tc) override |
void | clearArchRegs () override |
RegVal | readIntReg (RegIndex reg_idx) const override |
RegVal | readFloatReg (RegIndex reg_idx) const override |
const VecRegContainer & | readVecReg (const RegId ®) const override |
VecRegContainer & | getWritableVecReg (const RegId ®) override |
const VecElem & | readVecElem (const RegId ®) const override |
const VecPredRegContainer & | readVecPredReg (const RegId ®) const override |
VecPredRegContainer & | getWritableVecPredReg (const RegId ®) override |
RegVal | readCCReg (RegIndex reg_idx) const override |
void | setIntReg (RegIndex reg_idx, RegVal val) override |
void | setFloatReg (RegIndex reg_idx, RegVal val) override |
void | setVecReg (const RegId ®, const VecRegContainer &val) override |
void | setVecElem (const RegId ®, const VecElem &val) override |
void | setVecPredReg (const RegId ®, const VecPredRegContainer &val) override |
void | setCCReg (RegIndex reg_idx, RegVal val) override |
TheISA::PCState | pcState () const override |
void | pcState (const TheISA::PCState &val) override |
void | pcStateNoRecord (const TheISA::PCState &val) override |
Addr | instAddr () const override |
Addr | nextInstAddr () const override |
MicroPC | microPC () const override |
bool | readPredicate () const |
void | setPredicate (bool val) |
RegVal | readMiscRegNoEffect (RegIndex misc_reg) const override |
RegVal | readMiscReg (RegIndex misc_reg) override |
void | setMiscRegNoEffect (RegIndex misc_reg, RegVal val) override |
void | setMiscReg (RegIndex misc_reg, RegVal val) override |
RegId | flattenRegId (const RegId ®Id) const override |
unsigned | readStCondFailures () const override |
bool | readMemAccPredicate () |
void | setMemAccPredicate (bool val) |
void | setStCondFailures (unsigned sc_failures) override |
Counter | readFuncExeInst () const override |
void | syscall (Fault *fault) override |
RegVal | readIntRegFlat (RegIndex idx) const override |
Flat register interfaces. More... | |
void | setIntRegFlat (RegIndex idx, RegVal val) override |
RegVal | readFloatRegFlat (RegIndex idx) const override |
void | setFloatRegFlat (RegIndex idx, RegVal val) override |
const VecRegContainer & | readVecRegFlat (RegIndex reg) const override |
VecRegContainer & | getWritableVecRegFlat (RegIndex reg) override |
void | setVecRegFlat (RegIndex reg, const VecRegContainer &val) override |
template<typename T > | |
VecLaneT< T, true > | readVecLaneFlat (RegIndex reg, int lId) const |
template<typename LD > | |
void | setVecLaneFlat (RegIndex reg, int lId, const LD &val) |
const VecElem & | readVecElemFlat (RegIndex reg, const ElemIndex &elemIndex) const override |
void | setVecElemFlat (RegIndex reg, const ElemIndex &elemIndex, const VecElem &val) override |
const VecPredRegContainer & | readVecPredRegFlat (RegIndex reg) const override |
VecPredRegContainer & | getWritableVecPredRegFlat (RegIndex reg) override |
void | setVecPredRegFlat (RegIndex reg, const VecPredRegContainer &val) override |
RegVal | readCCRegFlat (RegIndex idx) const override |
void | setCCRegFlat (RegIndex idx, RegVal val) override |
template<typename T > | |
VecLaneT< T, true > | readVecLane (const RegId ®) const |
Vector Register Lane Interfaces. More... | |
virtual ConstVecLane8 | readVec8BitLaneReg (const RegId ®) const override |
Reads source vector 8bit operand. More... | |
virtual ConstVecLane16 | readVec16BitLaneReg (const RegId ®) const override |
Reads source vector 16bit operand. More... | |
virtual ConstVecLane32 | readVec32BitLaneReg (const RegId ®) const override |
Reads source vector 32bit operand. More... | |
virtual ConstVecLane64 | readVec64BitLaneReg (const RegId ®) const override |
Reads source vector 64bit operand. More... | |
template<typename LD > | |
void | setVecLaneT (const RegId ®, const LD &val) |
Write a lane of the destination vector register. More... | |
virtual void | setVecLane (const RegId ®, const LaneData< LaneSize::Byte > &val) override |
Write a lane of the destination vector register. More... | |
virtual void | setVecLane (const RegId ®, const LaneData< LaneSize::TwoByte > &val) override |
virtual void | setVecLane (const RegId ®, const LaneData< LaneSize::FourByte > &val) override |
virtual void | setVecLane (const RegId ®, const LaneData< LaneSize::EightByte > &val) override |
![]() | |
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) |
![]() | |
virtual | ~ThreadContext () |
void | quiesce () |
Quiesce thread context. More... | |
void | quiesceTick (Tick resume) |
Quiesce, suspend, and schedule activate at resume. More... | |
void | setNPC (Addr val) |
virtual int | exit () |
Public Attributes | |
PCEventQueue | pcEventQueue |
EventQueue | comInstEventQueue |
An instruction-based event queue. More... | |
System * | system |
BaseTLB * | itb |
BaseTLB * | dtb |
TheISA::Decoder | decoder |
![]() | |
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 |
![]() | |
int | intResult = DefaultIntResult |
double | floatResult = DefaultFloatResult |
int | intOffset = 0 |
Protected Types | |
typedef TheISA::MachInst | MachInst |
using | VecRegContainer = TheISA::VecRegContainer |
using | VecElem = TheISA::VecElem |
using | VecPredRegContainer = TheISA::VecPredRegContainer |
![]() | |
typedef TheISA::MachInst | MachInst |
using | VecRegContainer = TheISA::VecRegContainer |
using | VecElem = TheISA::VecElem |
using | VecPredRegContainer = TheISA::VecPredRegContainer |
Protected Attributes | |
std::array< RegVal, TheISA::NumFloatRegs > | floatRegs |
std::array< RegVal, TheISA::NumIntRegs > | intRegs |
std::array< VecRegContainer, TheISA::NumVecRegs > | vecRegs |
std::array< VecPredRegContainer, TheISA::NumVecPredRegs > | vecPredRegs |
std::array< RegVal, TheISA::NumCCRegs > | ccRegs |
TheISA::ISA *const | isa |
TheISA::PCState | _pcState |
bool | predicate |
Did this instruction execute or is it predicated false. More... | |
bool | memAccPredicate |
True if the memory access should be skipped for this instruction. More... | |
![]() | |
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 () |
Get the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
static void | unserializeGlobals (CheckpointIn &cp) |
![]() | |
static void | compare (ThreadContext *one, ThreadContext *two) |
function to compare two thread contexts (for debugging) More... | |
![]() | |
static int | ckptCount = 0 |
static int | ckptMaxCount = 0 |
static int | ckptPrevCount = -1 |
![]() | |
static const int | ints [] |
static const double | floats [] |
static const int | DefaultIntResult = 0 |
static const double | DefaultFloatResult = 0.0 |
The SimpleThread object provides a combination of the ThreadState object and the ThreadContext interface.
It implements the ThreadContext interface and adds to the ThreadState object by adding all the objects needed for simple functional execution, including a simple architectural register file, and pointers to the ITB and DTB in full system mode. For CPU models that do not need more advanced ways to hold state (i.e. a separate physical register file, or separate fetch and commit PC's), this SimpleThread class provides all the necessary state for full architecture-level functional simulation. See the AtomicSimpleCPU or TimingSimpleCPU for examples.
Definition at line 98 of file simple_thread.hh.
|
protected |
Definition at line 101 of file simple_thread.hh.
Definition at line 106 of file simple_thread.hh.
|
protected |
Definition at line 103 of file simple_thread.hh.
|
protected |
Definition at line 104 of file simple_thread.hh.
|
protected |
Definition at line 102 of file simple_thread.hh.
SimpleThread::SimpleThread | ( | BaseCPU * | _cpu, |
int | _thread_num, | ||
System * | _system, | ||
BaseTLB * | _itb, | ||
BaseTLB * | _dtb, | ||
TheISA::ISA * | _isa, | ||
bool | use_kernel_stats = true |
||
) |
Definition at line 88 of file simple_thread.cc.
References ThreadState::baseCpu, clearArchRegs(), dumpFuncProfile(), ThreadState::kernelStats, System::kernelSymtab, BaseCPU::params(), ThreadState::profile, ThreadState::profileNode, ThreadState::profilePC, ThreadState::quiesceEvent, registerExitCallback(), and system.
SimpleThread::SimpleThread | ( | BaseCPU * | _cpu, |
int | _thread_num, | ||
System * | _system, | ||
Process * | _process, | ||
BaseTLB * | _itb, | ||
BaseTLB * | _dtb, | ||
TheISA::ISA * | _isa | ||
) |
Definition at line 76 of file simple_thread.cc.
References clearArchRegs(), and ThreadState::quiesceEvent.
|
inlinevirtual |
Definition at line 154 of file simple_thread.hh.
References name(), serialize(), takeOverFrom(), and unserialize().
|
overridevirtual |
Set the status to Active.
Implements ThreadContext.
Definition at line 172 of file simple_thread.cc.
References ThreadState::_status, ThreadState::_threadId, BaseCPU::activateContext(), ThreadContext::Active, ThreadState::baseCpu, curTick(), ThreadState::lastActivate, and status().
Referenced by BaseKvmCPU::wakeup().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 292 of file simple_thread.hh.
Referenced by CheckerThreadContext< TC >::clearArchRegs(), and SimpleThread().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 224 of file simple_thread.hh.
References ThreadState::contextId().
Referenced by Minor::ExecContext::contextId(), TimingSimpleCPU::fetch(), TimingSimpleCPU::initiateMemAMO(), TimingSimpleCPU::initiateMemRead(), and TimingSimpleCPU::writeMem().
|
overridevirtual |
Implements ThreadContext.
Definition at line 214 of file simple_thread.cc.
References AlphaISA::copyRegs().
Referenced by CheckerThreadContext< TC >::copyArchRegs(), and copyState().
void SimpleThread::copyState | ( | ThreadContext * | oldContext | ) |
Definition at line 130 of file simple_thread.cc.
References ThreadState::_contextId, ThreadState::_status, ThreadState::_threadId, ThreadContext::contextId(), copyArchRegs(), FullSystem, ThreadState::funcExeInst, ThreadContext::readFuncExeInst(), ThreadContext::status(), and ThreadContext::threadId().
Referenced by CheckerThreadContext< TC >::takeOverFrom().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 220 of file simple_thread.hh.
References ThreadState::cpuId().
|
inline |
Definition at line 188 of file simple_thread.hh.
References BaseTLB::demapPage().
|
inline |
Definition at line 183 of file simple_thread.hh.
References BaseTLB::demapPage().
|
inline |
Definition at line 177 of file simple_thread.hh.
References BaseTLB::demapPage().
Referenced by SimpleExecContext::demapPage().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 208 of file simple_thread.hh.
References EventQueue::deschedule().
|
overridevirtual |
Implements ThreadContext.
Definition at line 164 of file simple_thread.cc.
References ThreadState::baseCpu, OutputDirectory::close(), OutputDirectory::create(), csprintf(), FunctionProfile::dump(), SimObject::name(), X86ISA::os, ThreadState::profile, and simout.
Referenced by SimpleThread().
Implements ThreadContext.
Definition at line 580 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 231 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 218 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 213 of file simple_thread.hh.
References EventQueue::getCurTick().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 229 of file simple_thread.hh.
Referenced by Minor::ExecContext::demapDataPage(), and Minor::ExecContext::demapPage().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 233 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 227 of file simple_thread.hh.
Referenced by Minor::ExecContext::demapInstPage(), and Minor::ExecContext::demapPage().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 240 of file simple_thread.hh.
References ThreadState::getKernelStats().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 245 of file simple_thread.hh.
References ThreadState::getPhysProxy().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 253 of file simple_thread.hh.
References ThreadState::getProcessPtr().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 270 of file simple_thread.hh.
References ThreadState::getQuiesceEvent().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 237 of file simple_thread.hh.
References X86ISA::system.
|
inline |
Returns the pointer to this SimpleThread's ThreadContext.
Used when a ThreadContext must be passed to objects outside of the CPU.
Definition at line 175 of file simple_thread.hh.
Referenced by AtomicSimpleCPU::amoMem(), BaseKvmCPU::BaseKvmCPU(), BaseSimpleCPU::BaseSimpleCPU(), BaseSimpleCPU::checkForInterrupts(), BaseKvmCPU::doMMIOAccess(), TimingSimpleCPU::fetch(), TimingSimpleCPU::handleReadPacket(), TimingSimpleCPU::handleWritePacket(), TimingSimpleCPU::initiateMemAMO(), TimingSimpleCPU::initiateMemRead(), MinorCPU::MinorCPU(), BaseSimpleCPU::preExecute(), AtomicSimpleCPU::readMem(), CheckerCPU::setSystem(), Minor::ExecContext::tcBase(), SimpleExecContext::tcBase(), AtomicSimpleCPU::tick(), AtomicSimpleCPU::writeMem(), and TimingSimpleCPU::writeMem().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 246 of file simple_thread.hh.
References ThreadState::getVirtProxy().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 454 of file simple_thread.hh.
References DPRINTF, RegId::index(), AlphaISA::NumVecPredRegs, and VecPredRegContainer< NumBits, Packed >::print().
Referenced by Minor::ExecContext::getWritableVecPredRegOperand(), CheckerCPU::getWritableVecPredRegOperand(), and SimpleExecContext::getWritableVecPredRegOperand().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 342 of file simple_thread.hh.
References DPRINTF, RegId::index(), AlphaISA::NumVecRegs, and VecRegContainer< Sz >::print().
Referenced by Minor::ExecContext::getWritableVecRegOperand(), CheckerCPU::getWritableVecRegOperand(), and SimpleExecContext::getWritableVecRegOperand().
|
inlineoverridevirtual |
|
overridevirtual |
Set the status to Halted.
Implements ThreadContext.
Definition at line 196 of file simple_thread.cc.
References ThreadState::_status, ThreadState::_threadId, ThreadState::baseCpu, BaseCPU::haltContext(), ThreadContext::Halted, and status().
|
inlineoverridevirtual |
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
Implements ThreadContext.
Definition at line 248 of file simple_thread.hh.
References ThreadState::initMemProxies().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 549 of file simple_thread.hh.
Referenced by TimingSimpleCPU::initiateMemAMO(), TimingSimpleCPU::initiateMemRead(), CheckerCPU::instAddr(), BaseSimpleCPU::setupFetchRequest(), and TimingSimpleCPU::writeMem().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 551 of file simple_thread.hh.
Referenced by AtomicSimpleCPU::isCpuDrained(), TimingSimpleCPU::isCpuDrained(), and CheckerCPU::microPC().
|
inline |
Definition at line 125 of file simple_thread.hh.
References csprintf().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 550 of file simple_thread.hh.
Referenced by CheckerCPU::nextInstAddr().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 540 of file simple_thread.hh.
Referenced by BaseSimpleCPU::advancePC(), AtomicSimpleCPU::amoMem(), Minor::LSQ::LSQRequest::completeDisabledMemAccess(), CheckerCPU::dumpAndExit(), TimingSimpleCPU::fetch(), CheckerCPU::genMemFragmentRequest(), Minor::ExecContext::pcState(), CheckerThreadContext< TC >::pcState(), SimpleExecContext::pcState(), CheckerCPU::pcState(), BaseSimpleCPU::preExecute(), SimPoint::profile(), AtomicSimpleCPU::tick(), Minor::LSQ::tryToSendToTransfers(), and Minor::LSQ::LSQRequest::tryToSuppressFault().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 286 of file simple_thread.hh.
References ThreadState::profileClear().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 287 of file simple_thread.hh.
References ThreadState::profileSample().
Implements ThreadContext.
Definition at line 466 of file simple_thread.hh.
References DPRINTF, and AlphaISA::NumCCRegs.
Referenced by CheckerCPU::readCCRegOperand(), SimpleExecContext::readCCRegOperand(), and Minor::ExecContext::readCCRegOperand().
Implements ThreadContext.
Definition at line 698 of file simple_thread.hh.
Implements ThreadContext.
Definition at line 320 of file simple_thread.hh.
References DPRINTF, and AlphaISA::NumFloatRegs.
Referenced by Minor::ExecContext::readFloatRegOperandBits(), SimpleExecContext::readFloatRegOperandBits(), and CheckerCPU::readFloatRegOperandBits().
Implements ThreadContext.
Definition at line 625 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 606 of file simple_thread.hh.
References ThreadState::readFuncExeInst().
Implements ThreadContext.
Definition at line 309 of file simple_thread.hh.
References DPRINTF, and AlphaISA::NumIntRegs.
Referenced by Minor::ExecContext::readIntRegOperand(), SimpleExecContext::readIntRegOperand(), and CheckerCPU::readIntRegOperand().
Flat register interfaces.
Some architectures have different registers visible in different modes. Such architectures "flatten" a register (see flattenRegId()) to map it into the gem5 register file. This interface provides a flat interface to the underlying register file, which allows for example serialization code to access all registers.
Implements ThreadContext.
Definition at line 617 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 276 of file simple_thread.hh.
References ThreadState::readLastActivate().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 281 of file simple_thread.hh.
References ThreadState::readLastSuspend().
|
inline |
Definition at line 588 of file simple_thread.hh.
Referenced by Minor::ExecContext::readMemAccPredicate(), CheckerCPU::readMemAccPredicate(), and SimpleExecContext::readMemAccPredicate().
Implements ThreadContext.
Definition at line 562 of file simple_thread.hh.
Referenced by Minor::ExecContext::readMiscReg(), SimpleExecContext::readMiscReg(), CheckerCPU::readMiscReg(), Minor::ExecContext::readMiscRegOperand(), SimpleExecContext::readMiscRegOperand(), and CheckerCPU::readMiscRegOperand().
Implements ThreadContext.
Definition at line 556 of file simple_thread.hh.
Referenced by Minor::ExecContext::readMiscRegNoEffect(), and CheckerCPU::readMiscRegNoEffect().
|
inline |
Definition at line 552 of file simple_thread.hh.
Referenced by Minor::ExecContext::readPredicate(), CheckerCPU::readPredicate(), and SimpleExecContext::readPredicate().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 585 of file simple_thread.hh.
Referenced by SimpleExecContext::readStCondFailures(), and CheckerCPU::readStCondFailures().
|
inlineoverridevirtual |
Reads source vector 16bit operand.
Implements ThreadContext.
Definition at line 376 of file simple_thread.hh.
References X86ISA::reg.
Referenced by CheckerCPU::readVec16BitLaneOperand(), and Minor::ExecContext::readVec16BitLaneOperand().
|
inlineoverridevirtual |
Reads source vector 32bit operand.
Implements ThreadContext.
Definition at line 383 of file simple_thread.hh.
References X86ISA::reg.
Referenced by CheckerCPU::readVec32BitLaneOperand(), and Minor::ExecContext::readVec32BitLaneOperand().
|
inlineoverridevirtual |
Reads source vector 64bit operand.
Implements ThreadContext.
Definition at line 390 of file simple_thread.hh.
References X86ISA::reg.
Referenced by CheckerCPU::readVec64BitLaneOperand(), and Minor::ExecContext::readVec64BitLaneOperand().
|
inlineoverridevirtual |
Reads source vector 8bit operand.
Implements ThreadContext.
Definition at line 369 of file simple_thread.hh.
References X86ISA::reg.
Referenced by CheckerCPU::readVec8BitLaneOperand(), and Minor::ExecContext::readVec8BitLaneOperand().
Implements ThreadContext.
Definition at line 432 of file simple_thread.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), and AlphaISA::NumVecRegs.
Referenced by Minor::ExecContext::readVecElemOperand(), CheckerCPU::readVecElemOperand(), and SimpleExecContext::readVecElemOperand().
Vector Register Lane Interfaces.
Reads source vector <T> operand.
Definition at line 357 of file simple_thread.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), and AlphaISA::NumVecRegs.
Referenced by SimpleExecContext::readVecLaneOperand().
|
inline |
Definition at line 655 of file simple_thread.hh.
References X86ISA::reg.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 443 of file simple_thread.hh.
References DPRINTF, RegId::index(), AlphaISA::NumVecPredRegs, and VecPredRegContainer< NumBits, Packed >::print().
Referenced by Minor::ExecContext::readVecPredRegOperand(), CheckerCPU::readVecPredRegOperand(), and SimpleExecContext::readVecPredRegOperand().
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 331 of file simple_thread.hh.
References DPRINTF, RegId::index(), AlphaISA::NumVecRegs, and VecRegContainer< Sz >::print().
Referenced by Minor::ExecContext::readVecRegOperand(), CheckerCPU::readVecRegOperand(), and SimpleExecContext::readVecRegOperand().
|
inlineoverridevirtual |
|
overridevirtual |
Implements ThreadContext.
Definition at line 207 of file simple_thread.cc.
References FullSystem, ThreadState::kernelStats, and Kernel::Statistics::regStats().
Referenced by CheckerThreadContext< TC >::regStats().
|
inlineoverridevirtual |
Implements PCEventScope.
Definition at line 200 of file simple_thread.hh.
References ArmISA::e, and PCEventQueue::remove().
|
inlineoverridevirtual |
Implements PCEventScope.
Definition at line 199 of file simple_thread.hh.
References PCEventQueue::schedule().
Implements ThreadContext.
Definition at line 203 of file simple_thread.hh.
References EventQueue::schedule().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 143 of file simple_thread.cc.
References ThreadState::serialize().
Referenced by BaseKvmCPU::serializeThread().
Implements ThreadContext.
Definition at line 531 of file simple_thread.hh.
References DPRINTF, and AlphaISA::NumCCRegs.
Referenced by CheckerThreadContext< TC >::setCCReg(), SimpleExecContext::setCCRegOperand(), CheckerCPU::setCCRegOperand(), and Minor::ExecContext::setCCRegOperand().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 225 of file simple_thread.hh.
References ThreadState::setContextId().
Referenced by CheckerThreadContext< TC >::setContextId().
Implements ThreadContext.
Definition at line 488 of file simple_thread.hh.
References DPRINTF, and AlphaISA::NumFloatRegs.
Referenced by Minor::ExecContext::ExecContext(), BaseSimpleCPU::preExecute(), CheckerThreadContext< TC >::setFloatReg(), Minor::ExecContext::setFloatRegOperandBits(), SimpleExecContext::setFloatRegOperandBits(), and CheckerCPU::setFloatRegOperandBits().
Implements ThreadContext.
Definition at line 478 of file simple_thread.hh.
References DPRINTF, and AlphaISA::NumIntRegs.
Referenced by Minor::ExecContext::ExecContext(), BaseSimpleCPU::preExecute(), CheckerThreadContext< TC >::setIntReg(), SimpleExecContext::setIntRegOperand(), Minor::ExecContext::setIntRegOperand(), and CheckerCPU::setIntRegOperand().
|
inline |
Definition at line 594 of file simple_thread.hh.
References X86ISA::val.
Referenced by Minor::ExecContext::setMemAccPredicate(), CheckerCPU::setMemAccPredicate(), and SimpleExecContext::setMemAccPredicate().
Implements ThreadContext.
Definition at line 574 of file simple_thread.hh.
Referenced by Minor::ExecContext::setMiscReg(), SimpleExecContext::setMiscReg(), CheckerThreadContext< TC >::setMiscReg(), CheckerCPU::setMiscReg(), Minor::ExecContext::setMiscRegOperand(), and SimpleExecContext::setMiscRegOperand().
Implements ThreadContext.
Definition at line 568 of file simple_thread.hh.
Referenced by CheckerThreadContext< TC >::setMiscRegNoEffect(), and CheckerCPU::setMiscRegNoEffect().
|
inline |
Definition at line 553 of file simple_thread.hh.
References X86ISA::val.
Referenced by Minor::ExecContext::setPredicate(), CheckerCPU::setPredicate(), and SimpleExecContext::setPredicate().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 254 of file simple_thread.hh.
References ThreadState::setProcessPtr().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 258 of file simple_thread.hh.
References MipsISA::halt.
Referenced by BaseKvmCPU::BaseKvmCPU(), MinorCPU::MinorCPU(), and CheckerThreadContext< TC >::setStatus().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 600 of file simple_thread.hh.
Referenced by SimpleExecContext::setStCondFailures().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 223 of file simple_thread.hh.
References ThreadState::setThreadId().
Referenced by CheckerThreadContext< TC >::setThreadId().
Implements ThreadContext.
Definition at line 511 of file simple_thread.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), AlphaISA::NumVecRegs, and X86ISA::val.
Referenced by CheckerThreadContext< TC >::setVecElem(), Minor::ExecContext::setVecElemOperand(), SimpleExecContext::setVecElemOperand(), and CheckerCPU::setVecElemOperand().
|
inlineoverridevirtual |
Write a lane of the destination vector register.
Implements ThreadContext.
Definition at line 407 of file simple_thread.hh.
Referenced by CheckerCPU::setVecLaneOperandT(), Minor::ExecContext::setVecLaneOperandT(), and SimpleExecContext::setVecLaneOperandT().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 412 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 418 of file simple_thread.hh.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 424 of file simple_thread.hh.
|
inline |
Definition at line 662 of file simple_thread.hh.
References X86ISA::reg.
|
inline |
Write a lane of the destination vector register.
Definition at line 398 of file simple_thread.hh.
References DPRINTF, RegId::elemIndex(), RegId::index(), AlphaISA::NumVecRegs, and X86ISA::val.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 521 of file simple_thread.hh.
References DPRINTF, RegId::index(), AlphaISA::NumVecPredRegs, and VecPredRegContainer< NumBits, Packed >::print().
Referenced by CheckerThreadContext< TC >::setVecPredReg(), Minor::ExecContext::setVecPredRegOperand(), SimpleExecContext::setVecPredRegOperand(), and CheckerCPU::setVecPredRegOperand().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 693 of file simple_thread.hh.
References X86ISA::reg, and X86ISA::val.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 501 of file simple_thread.hh.
References DPRINTF, RegId::index(), AlphaISA::NumVecRegs, and VecRegContainer< Sz >::print().
Referenced by CheckerThreadContext< TC >::setVecReg(), Minor::ExecContext::setVecRegOperand(), SimpleExecContext::setVecRegOperand(), and CheckerCPU::setVecRegOperand().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 648 of file simple_thread.hh.
References X86ISA::reg, and X86ISA::val.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 221 of file simple_thread.hh.
References ThreadState::socketId().
void SimpleThread::startup | ( | ) |
Definition at line 158 of file simple_thread.cc.
References isa.
Referenced by BaseKvmCPU::startup().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 256 of file simple_thread.hh.
Referenced by activate(), halt(), suspend(), and BaseKvmCPU::wakeup().
|
overridevirtual |
Set the status to Suspended.
Implements ThreadContext.
Definition at line 183 of file simple_thread.cc.
References ThreadState::_status, ThreadState::_threadId, ThreadState::baseCpu, curTick(), ThreadState::lastActivate, ThreadState::lastSuspend, status(), BaseCPU::suspendContext(), and ThreadContext::Suspended.
Referenced by X86KvmCPU::deliverInterrupts(), and BaseKvmCPU::handleKvmExit().
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 612 of file simple_thread.hh.
Referenced by Minor::ExecContext::syscall(), and SimpleExecContext::syscall().
|
overridevirtual |
Implements ThreadContext.
Definition at line 119 of file simple_thread.cc.
References decoder, ThreadState::funcExeInst, ThreadContext::getDecoderPtr(), ThreadContext::getKernelStats(), ThreadState::kernelStats, ThreadContext::readFuncExeInst(), and ThreadState::storeCondFailures.
|
inlineoverridevirtual |
Implements ThreadContext.
Definition at line 222 of file simple_thread.hh.
References ThreadState::threadId().
Referenced by SimpleExecContext::armMonitor(), SimpleExecContext::getAddrMonitor(), SimpleExecContext::mwait(), and SimpleExecContext::mwaitAtomic().
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Implements Serializable.
Definition at line 151 of file simple_thread.cc.
References ThreadState::unserialize().
Referenced by BaseKvmCPU::unserializeThread().
|
protected |
Definition at line 116 of file simple_thread.hh.
|
protected |
Definition at line 113 of file simple_thread.hh.
EventQueue SimpleThread::comInstEventQueue |
An instruction-based event queue.
Used for scheduling events based on number of instructions committed.
Definition at line 135 of file simple_thread.hh.
Referenced by BaseSimpleCPU::preExecute(), BaseKvmCPU::setupInstStop(), and BaseKvmCPU::tick().
TheISA::Decoder SimpleThread::decoder |
Definition at line 142 of file simple_thread.hh.
Referenced by BaseSimpleCPU::advancePC(), BaseSimpleCPU::checkForInterrupts(), BaseSimpleCPU::preExecute(), and takeOverFrom().
BaseTLB* SimpleThread::dtb |
Definition at line 140 of file simple_thread.hh.
Referenced by AtomicSimpleCPU::amoMem(), TimingSimpleCPU::initiateMemAMO(), TimingSimpleCPU::initiateMemRead(), Minor::ExecContext::mwaitAtomic(), CheckerCPU::mwaitAtomic(), SimpleExecContext::mwaitAtomic(), AtomicSimpleCPU::readMem(), AtomicSimpleCPU::writeMem(), and TimingSimpleCPU::writeMem().
|
protected |
Definition at line 109 of file simple_thread.hh.
|
protected |
Definition at line 110 of file simple_thread.hh.
|
protected |
Definition at line 114 of file simple_thread.hh.
Referenced by startup().
BaseTLB* SimpleThread::itb |
Definition at line 139 of file simple_thread.hh.
Referenced by TimingSimpleCPU::fetch(), and AtomicSimpleCPU::tick().
|
protected |
True if the memory access should be skipped for this instruction.
Definition at line 122 of file simple_thread.hh.
PCEventQueue SimpleThread::pcEventQueue |
Definition at line 130 of file simple_thread.hh.
|
protected |
Did this instruction execute or is it predicated false.
Definition at line 119 of file simple_thread.hh.
System* SimpleThread::system |
Definition at line 137 of file simple_thread.hh.
Referenced by SimpleThread().
|
protected |
Definition at line 112 of file simple_thread.hh.
|
protected |
Definition at line 111 of file simple_thread.hh.