gem5
v22.0.0.1
|
MinorCPU is an in-order CPU model with four fixed pipeline stages: More...
#include <cpu.hh>
Classes | |
class | MinorCPUPort |
Provide a non-protected base class for Minor's Ports as derived classes are created by Fetch1 and Execute. More... | |
Public Member Functions | |
MinorCPU (const BaseMinorCPUParams ¶ms) | |
~MinorCPU () | |
void | init () override |
Starting, waking and initialisation. More... | |
void | startup () override |
void | wakeup (ThreadID tid) override |
void | regStats () override |
Stats interface from SimObject (by way of BaseCPU) More... | |
Counter | totalInsts () const override |
Simple inst count interface from BaseCPU. More... | |
Counter | totalOps () const override |
void | serializeThread (CheckpointOut &cp, ThreadID tid) const override |
void | unserializeThread (CheckpointIn &cp, ThreadID tid) override |
void | serialize (CheckpointOut &cp) const override |
Serialize pipeline data. More... | |
void | unserialize (CheckpointIn &cp) override |
DrainState | drain () override |
Drain interface. More... | |
void | drainResume () override |
void | signalDrainDone () |
Signal from Pipeline that MinorCPU should signal that a drain is complete and set its drainState. More... | |
void | memWriteback () override |
void | switchOut () override |
Switching interface from BaseCPU. More... | |
void | takeOverFrom (BaseCPU *old_cpu) override |
void | activateContext (ThreadID thread_id) override |
Thread activation interface from BaseCPU. More... | |
void | suspendContext (ThreadID thread_id) override |
std::vector< ThreadID > | roundRobinPriority (ThreadID priority) |
Thread scheduling utility functions. More... | |
std::vector< ThreadID > | randomPriority () |
void | tick () |
The tick method in the MinorCPU is simply updating the cycle counters as the ticking of the pipeline stages is already handled by the Pipeline object. More... | |
void | wakeupOnEvent (unsigned int stage_id) |
Interface for stages to signal that they have become active after a callback or eventq event where the pipeline itself may have already been idled. More... | |
Public Attributes | |
minor::MinorActivityRecorder * | activityRecorder |
Activity recording for pipeline. More... | |
std::vector< minor::MinorThread * > | threads |
These are thread state-representing objects for this CPU. More... | |
enums::ThreadPolicy | threadPolicy |
Thread Scheduling Policy (RoundRobin, Random, etc) More... | |
minor::MinorStats | stats |
Processor-specific statistics. More... | |
EventFunctionWrapper * | fetchEventWrapper |
Protected Member Functions | |
Port & | getDataPort () override |
Return a reference to the data port. More... | |
Port & | getInstPort () override |
Return a reference to the instruction port. More... | |
Protected Attributes | |
minor::Pipeline * | pipeline |
pipeline is a container for the clockable pipeline stage objects. More... | |
MinorCPU is an in-order CPU model with four fixed pipeline stages:
Fetch1 - fetches lines from memory Fetch2 - decomposes lines into macro-op instructions Decode - decomposes macro-ops into micro-ops Execute - executes those micro-ops
This pipeline is carried in the MinorCPU::pipeline object. The exec_context interface is not carried by MinorCPU but by minor::ExecContext objects created by minor::Execute.
gem5::MinorCPU::MinorCPU | ( | const BaseMinorCPUParams & | params | ) |
Definition at line 50 of file cpu.cc.
References activityRecorder, fatal, fetchEventWrapper, gem5::FullSystem, gem5::SimpleThread::getTC(), gem5::ThreadContext::Halted, gem5::ArmISA::i, gem5::SimpleThread::setStatus(), and threads.
gem5::MinorCPU::~MinorCPU | ( | ) |
Definition at line 85 of file cpu.cc.
References fetchEventWrapper, pipeline, and threads.
|
override |
Thread activation interface from BaseCPU.
Definition at line 252 of file cpu.cc.
References gem5::minor::Pipeline::CPUStageId, DPRINTF, fetchEventWrapper, gem5::minor::MinorStats::quiesceCycles, stats, threads, and wakeupOnEvent().
|
override |
Drain interface.
Definition at line 165 of file cpu.cc.
References DPRINTF, gem5::Drained, and gem5::Draining.
|
override |
|
overrideprotected |
|
overrideprotected |
|
override |
Starting, waking and initialisation.
Definition at line 98 of file cpu.cc.
References fatal, gem5::statistics::init, and gem5::X86ISA::system.
|
override |
|
inline |
Definition at line 182 of file cpu.hh.
References gem5::Random::gen, gem5::ArmISA::i, and gem5::random_mt.
Referenced by gem5::minor::Execute::getCommittingThread(), gem5::minor::Execute::getIssuingThread(), gem5::minor::Decode::getScheduledThread(), gem5::minor::Fetch2::getScheduledThread(), and gem5::minor::Fetch1::getScheduledThread().
|
override |
|
inline |
Thread scheduling utility functions.
Definition at line 173 of file cpu.hh.
References gem5::ArmISA::i.
Referenced by gem5::minor::Execute::getCommittingThread(), gem5::minor::Execute::getIssuingThread(), gem5::minor::Decode::getScheduledThread(), gem5::minor::Fetch2::getScheduledThread(), and gem5::minor::Fetch1::getScheduledThread().
|
override |
|
override |
void gem5::MinorCPU::signalDrainDone | ( | ) |
Signal from Pipeline that MinorCPU should signal that a drain is complete and set its drainState.
Definition at line 189 of file cpu.cc.
References DPRINTF, and gem5::Drainable::signalDrainDone().
Referenced by gem5::minor::Pipeline::evaluate().
|
override |
|
override |
|
override |
Switching interface from BaseCPU.
Definition at line 232 of file cpu.cc.
References activityRecorder, DPRINTF, and gem5::ActivityRecorder::reset().
|
override |
Definition at line 244 of file cpu.cc.
References DPRINTF, and gem5::takeOverFrom().
|
inline |
The tick method in the MinorCPU is simply updating the cycle counters as the ticking of the pipeline stages is already handled by the Pipeline object.
Definition at line 199 of file cpu.hh.
Referenced by gem5::minor::Pipeline::evaluate().
|
override |
Simple inst count interface from BaseCPU.
Definition at line 313 of file cpu.cc.
References gem5::ArmISA::i, and threads.
|
override |
Definition at line 324 of file cpu.cc.
References gem5::ArmISA::i, and threads.
|
override |
Definition at line 136 of file cpu.cc.
References gem5::unserialize().
|
override |
|
override |
Definition at line 143 of file cpu.cc.
References DPRINTF, gem5::ArmISA::status, gem5::ThreadContext::Suspended, and threads.
Referenced by drainResume(), gem5::minor::LSQ::recvTimingSnoopReq(), and gem5::minor::LSQ::threadSnoop().
void gem5::MinorCPU::wakeupOnEvent | ( | unsigned int | stage_id | ) |
Interface for stages to signal that they have become active after a callback or eventq event where the pipeline itself may have already been idled.
The stage argument should be from the enumeration Pipeline::StageId
Definition at line 291 of file cpu.cc.
References gem5::ActivityRecorder::activateStage(), activityRecorder, and DPRINTF.
Referenced by activateContext(), gem5::minor::Execute::drain(), gem5::minor::Execute::drainResume(), gem5::minor::Execute::evaluate(), gem5::minor::Fetch1::evaluate(), gem5::minor::Fetch1::recvTimingResp(), gem5::minor::LSQ::recvTimingResp(), gem5::minor::Fetch1::tryToSendToTransfers(), and gem5::minor::Fetch1::wakeupFetch().
minor::MinorActivityRecorder* gem5::MinorCPU::activityRecorder |
Activity recording for pipeline.
This belongs to Pipeline but stages will access it through the CPU as the MinorCPU object actually mediates idling behaviour
Definition at line 96 of file cpu.hh.
Referenced by gem5::minor::Decode::evaluate(), gem5::minor::Fetch2::evaluate(), gem5::minor::Execute::evaluate(), gem5::minor::Fetch1::evaluate(), gem5::minor::Execute::issue(), MinorCPU(), switchOut(), and wakeupOnEvent().
EventFunctionWrapper* gem5::MinorCPU::fetchEventWrapper |
Definition at line 206 of file cpu.hh.
Referenced by activateContext(), MinorCPU(), and ~MinorCPU().
|
protected |
pipeline is a container for the clockable pipeline stage objects.
Elements of pipeline call TheISA to implement the model.
Definition at line 90 of file cpu.hh.
Referenced by ~MinorCPU().
minor::MinorStats gem5::MinorCPU::stats |
Processor-specific statistics.
Definition at line 140 of file cpu.hh.
Referenced by activateContext(), gem5::minor::Execute::commit(), gem5::minor::Execute::commitInst(), and gem5::minor::Execute::doInstCommitAccounting().
enums::ThreadPolicy gem5::MinorCPU::threadPolicy |
Thread Scheduling Policy (RoundRobin, Random, etc)
Definition at line 120 of file cpu.hh.
Referenced by gem5::minor::Execute::getCommittingThread(), gem5::minor::Execute::getIssuingThread(), gem5::minor::Decode::getScheduledThread(), gem5::minor::Fetch2::getScheduledThread(), and gem5::minor::Fetch1::getScheduledThread().
std::vector<minor::MinorThread *> gem5::MinorCPU::threads |
These are thread state-representing objects for this CPU.
If you need a ThreadContext for any reason, use threads[threadId]->getTC()
Definition at line 101 of file cpu.hh.
Referenced by activateContext(), gem5::minor::Execute::commitInst(), gem5::minor::Execute::doInstCommitAccounting(), gem5::minor::Fetch2::evaluate(), gem5::minor::Execute::Execute(), gem5::minor::Execute::executeMemRefInst(), gem5::minor::Fetch1::Fetch1(), gem5::minor::Fetch1::fetchLine(), gem5::minor::Execute::handleMemResponse(), gem5::minor::Execute::issue(), MinorCPU(), gem5::minor::LSQ::pushRequest(), serializeThread(), suspendContext(), totalInsts(), totalOps(), gem5::minor::Execute::tryPCEvents(), gem5::minor::LSQ::tryToSendToTransfers(), unserializeThread(), wakeup(), and ~MinorCPU().