gem5
v19.0.0.0
|
#include <Sequencer.hh>
Public Types | |
typedef RubySequencerParams | Params |
![]() | |
typedef RubyPortParams | Params |
![]() | |
typedef ClockedObjectParams | Params |
Parameters of ClockedObject. More... | |
![]() | |
typedef SimObjectParams | Params |
Public Member Functions | |
Sequencer (const Params *) | |
~Sequencer () | |
void | wakeup () |
void | resetStats () |
Callback to reset stats. More... | |
void | collateStats () |
void | regStats () |
Callback to set stat parameters. More... | |
void | writeCallback (Addr address, DataBlock &data, const bool externalHit=false, const MachineType mach=MachineType_NUM, const Cycles initialRequestTime=Cycles(0), const Cycles forwardRequestTime=Cycles(0), const Cycles firstResponseTime=Cycles(0)) |
void | readCallback (Addr address, DataBlock &data, const bool externalHit=false, const MachineType mach=MachineType_NUM, const Cycles initialRequestTime=Cycles(0), const Cycles forwardRequestTime=Cycles(0), const Cycles firstResponseTime=Cycles(0)) |
RequestStatus | makeRequest (PacketPtr pkt) |
bool | empty () const |
int | outstandingCount () const |
bool | isDeadlockEventScheduled () const |
void | descheduleDeadlockEvent () |
void | print (std::ostream &out) const |
void | checkCoherence (Addr address) |
void | markRemoved () |
void | evictionCallback (Addr address) |
void | invalidateSC (Addr address) |
int | coreId () const |
void | recordRequestType (SequencerRequestType requestType) |
Stats::Histogram & | getOutstandReqHist () |
Stats::Histogram & | getLatencyHist () |
Stats::Histogram & | getTypeLatencyHist (uint32_t t) |
Stats::Histogram & | getHitLatencyHist () |
Stats::Histogram & | getHitTypeLatencyHist (uint32_t t) |
Stats::Histogram & | getHitMachLatencyHist (uint32_t t) |
Stats::Histogram & | getHitTypeMachLatencyHist (uint32_t r, uint32_t t) |
Stats::Histogram & | getMissLatencyHist () |
Stats::Histogram & | getMissTypeLatencyHist (uint32_t t) |
Stats::Histogram & | getMissMachLatencyHist (uint32_t t) const |
Stats::Histogram & | getMissTypeMachLatencyHist (uint32_t r, uint32_t t) const |
Stats::Histogram & | getIssueToInitialDelayHist (uint32_t t) const |
Stats::Histogram & | getInitialToForwardDelayHist (const MachineType t) const |
Stats::Histogram & | getForwardRequestToFirstResponseHist (const MachineType t) const |
Stats::Histogram & | getFirstResponseToCompletionDelayHist (const MachineType t) const |
Stats::Counter | getIncompleteTimes (const MachineType t) const |
![]() | |
RubyPort (const Params *p) | |
virtual | ~RubyPort () |
void | init () override |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) override |
Get a port with a given name and index. More... | |
void | setController (AbstractController *_cntrl) |
uint32_t | getId () |
DrainState | drain () override |
Notify an object that it needs to drain its state. More... | |
bool | isCPUSequencer () |
![]() | |
ClockedObject (const ClockedObjectParams *p) | |
const Params * | params () const |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Enums::PwrState | pwrState () const |
std::string | pwrStateName () const |
std::vector< double > | pwrStateWeights () const |
Returns the percentage residency for each power state. More... | |
void | computeStats () |
Record stats values like state residency by computing the time difference from previous update. More... | |
void | pwrState (Enums::PwrState) |
![]() | |
const Params * | params () const |
SimObject (const Params *_params) | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | initState () |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
![]() | |
EventManager (EventManager &em) | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
void | setCurTick (Tick newVal) |
![]() | |
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) |
![]() | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
![]() | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
![]() | |
void | updateClockPeriod () |
Update the tick to the current tick. More... | |
Tick | clockEdge (Cycles cycles=Cycles(0)) const |
Determine the tick when a cycle begins, by default the current one, but the argument also enables the caller to determine a future cycle. More... | |
Cycles | curCycle () const |
Determine the current cycle, corresponding to a tick aligned to a clock edge. More... | |
Tick | nextCycle () const |
Based on the clock of the object, determine the start tick of the first cycle that is at least one cycle in the future. More... | |
uint64_t | frequency () const |
Tick | clockPeriod () const |
double | voltage () const |
Cycles | ticksToCycles (Tick t) const |
Tick | cyclesToTicks (Cycles c) const |
Private Member Functions | |
void | issueRequest (PacketPtr pkt, RubyRequestType type) |
void | hitCallback (SequencerRequest *srequest, DataBlock &data, bool llscSuccess, const MachineType mach, const bool externalHit, const Cycles initialRequestTime, const Cycles forwardRequestTime, const Cycles firstResponseTime) |
void | recordMissLatency (SequencerRequest *srequest, bool llscSuccess, const MachineType respondingMach, bool isExternalHit, Cycles initialRequestTime, Cycles forwardRequestTime, Cycles firstResponseTime) |
RequestStatus | insertRequest (PacketPtr pkt, RubyRequestType primary_type, RubyRequestType secondary_type) |
bool | handleLlsc (Addr address, SequencerRequest *request) |
Sequencer (const Sequencer &obj) | |
Sequencer & | operator= (const Sequencer &obj) |
Additional Inherited Members | |
![]() | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
![]() | |
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 int | ckptCount = 0 |
static int | ckptMaxCount = 0 |
static int | ckptPrevCount = -1 |
![]() | |
void | trySendRetries () |
void | ruby_hit_callback (PacketPtr pkt) |
void | testDrainComplete () |
void | ruby_eviction_callback (Addr address) |
bool | recvTimingResp (PacketPtr pkt, PortID master_port_id) |
Called by the PIO port when receiving a timing response. More... | |
![]() | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
![]() | |
Clocked (ClockDomain &clk_domain) | |
Create a clocked object and set the clock domain based on the parameters. More... | |
Clocked (Clocked &)=delete | |
Clocked & | operator= (Clocked &)=delete |
virtual | ~Clocked () |
Virtual destructor due to inheritance. More... | |
void | resetClock () const |
Reset the object's clock using the current global tick value. More... | |
virtual void | clockPeriodUpdated () |
A hook subclasses can implement so they can do any extra work that's needed when the clock rate is changed. More... | |
![]() | |
RubySystem * | m_ruby_system |
uint32_t | m_version |
AbstractController * | m_controller |
MessageBuffer * | m_mandatory_q_ptr |
bool | m_usingRubyTester |
System * | system |
std::vector< MemSlavePort * > | slave_ports |
![]() | |
Enums::PwrState | _currPwrState |
To keep track of the current power state. More... | |
Tick | prvEvalTick |
ClockedObject::ClockedObjectStats | stats |
![]() | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
![]() | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
Definition at line 59 of file Sequencer.hh.
typedef RubySequencerParams Sequencer::Params |
Definition at line 62 of file Sequencer.hh.
Sequencer::Sequencer | ( | const Params * | p | ) |
Definition at line 56 of file Sequencer.cc.
References m_coreId, m_dataCache_ptr, m_deadlock_threshold, m_instCache_ptr, m_max_outstanding_requests, m_outstanding_count, m_runningGarnetStandalone, MipsISA::p, and wakeup().
Sequencer::~Sequencer | ( | ) |
Definition at line 76 of file Sequencer.cc.
|
private |
void Sequencer::checkCoherence | ( | Addr | address | ) |
Definition at line 685 of file Sequencer.cc.
void Sequencer::collateStats | ( | ) |
|
inline |
Definition at line 104 of file Sequencer.hh.
Referenced by issueRequest().
|
inlinevirtual |
Implements RubyPort.
Definition at line 95 of file Sequencer.hh.
bool Sequencer::empty | ( | ) | const |
Definition at line 511 of file Sequencer.cc.
References m_RequestTable.
void Sequencer::evictionCallback | ( | Addr | address | ) |
Definition at line 696 of file Sequencer.cc.
References RubyPort::ruby_eviction_callback().
|
inline |
Definition at line 147 of file Sequencer.hh.
References ArmISA::t.
|
inline |
Definition at line 143 of file Sequencer.hh.
References ArmISA::t.
|
inline |
Definition at line 113 of file Sequencer.hh.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 117 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 114 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 120 of file Sequencer.hh.
References MipsISA::r, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 150 of file Sequencer.hh.
References SequencerRequest::pkt, ArmISA::t, and type.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 139 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 135 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 109 of file Sequencer.hh.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 123 of file Sequencer.hh.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 128 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 125 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 132 of file Sequencer.hh.
References MipsISA::r, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 107 of file Sequencer.hh.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 110 of file Sequencer.hh.
References ArmISA::t.
Referenced by Profiler::collateStats().
|
private |
Definition at line 190 of file Sequencer.cc.
References AbstractCacheEntry::clearLocked(), ArmISA::e, AbstractCacheEntry::isLocked(), CacheMemory::lookup(), m_dataCache_ptr, SequencerRequest::m_type, RubyPort::m_version, SequencerRequest::pkt, Packet::req, and AbstractCacheEntry::setLocked().
Referenced by writeCallback().
|
private |
Definition at line 439 of file Sequencer.cc.
References Packet::cmdString(), DPRINTF, CacheRecorder::enqueueNextFetchRequest(), CacheRecorder::enqueueNextFlushRequest(), Packet::findNextSenderState(), Packet::getAddr(), Packet::getConstPtr(), RubySystem::getCooldownEnabled(), DataBlock::getData(), getOffset(), Packet::getSize(), RubySystem::getWarmupEnabled(), Packet::isFlush(), RubySystem::m_cache_recorder, RubyPort::m_ruby_system, SequencerRequest::m_type, RubyPort::m_usingRubyTester, SequencerRequest::pkt, Packet::req, ArmISA::rs, RubyPort::ruby_hit_callback(), DataBlock::setData(), Packet::setData(), RubyPort::testDrainComplete(), type, warn_once, and Packet::writeData().
Referenced by readCallback(), and writeCallback().
|
private |
Definition at line 147 of file Sequencer.cc.
References Clocked::clockEdge(), Clocked::curCycle(), deadlockCheckEvent, Draining, Drainable::drainState(), Packet::getAddr(), m_deadlock_threshold, m_outstanding_count, m_outstandReqHist, m_RequestTable, makeLineAddress(), Stats::DistBase< Derived, Stor >::sample(), EventManager::schedule(), and Event::scheduled().
Referenced by makeRequest().
void Sequencer::invalidateSC | ( | Addr | address | ) |
Definition at line 179 of file Sequencer.cc.
References AbstractCacheEntry::clearLocked(), ArmISA::e, AbstractCacheEntry::isLocked(), CacheMemory::lookup(), m_dataCache_ptr, and RubyPort::m_version.
|
inlinevirtual |
Implements RubyPort.
Definition at line 92 of file Sequencer.hh.
|
private |
Definition at line 620 of file Sequencer.cc.
References Clocked::clockEdge(), coreId(), curTick(), Clocked::cyclesToTicks(), DPRINTFR, MessageBuffer::enqueue(), Packet::getAddr(), Packet::getPtr(), Packet::getSize(), InvalidContextID, Packet::isFlush(), RubyPort::m_controller, RubyPort::m_mandatory_q_ptr, RubyPort::m_version, AbstractController::mandatoryQueueLatency(), MipsISA::pc, printAddress(), and Packet::req.
Referenced by makeRequest(), and readCallback().
|
virtual |
Implements RubyPort.
Definition at line 517 of file Sequencer.cc.
References DPRINTF, X86ISA::FlagShift, Packet::getAddr(), System::getArch(), insertRequest(), AbstractController::isBlocked(), Packet::isFlush(), Packet::isLLSC(), Packet::isRead(), issueRequest(), Packet::isWrite(), RubyPort::m_controller, m_max_outstanding_requests, m_outstanding_count, makeLineAddress(), panic, Packet::req, ArmISA::status, X86ISA::StoreCheck, and RubyPort::system.
Referenced by CacheRecorder::enqueueNextFetchRequest(), and CacheRecorder::enqueueNextFlushRequest().
void Sequencer::markRemoved | ( | ) |
Definition at line 173 of file Sequencer.cc.
References m_outstanding_count.
Referenced by readCallback(), and writeCallback().
|
inlinevirtual |
Implements RubyPort.
Definition at line 90 of file Sequencer.hh.
void Sequencer::print | ( | std::ostream & | out | ) | const |
Definition at line 673 of file Sequencer.cc.
References m_outstanding_count, m_RequestTable, and RubyPort::m_version.
Referenced by operator<<().
void Sequencer::readCallback | ( | Addr | address, |
DataBlock & | data, | ||
const bool | externalHit = false , |
||
const MachineType | mach = MachineType_NUM , |
||
const Cycles | initialRequestTime = Cycles(0) , |
||
const Cycles | forwardRequestTime = Cycles(0) , |
||
const Cycles | firstResponseTime = Cycles(0) |
||
) |
Definition at line 386 of file Sequencer.cc.
References hitCallback(), issueRequest(), m_RequestTable, SequencerRequest::m_second_type, SequencerRequest::m_type, makeLineAddress(), markRemoved(), SequencerRequest::pkt, and recordMissLatency().
|
private |
Definition at line 235 of file Sequencer.cc.
References Clocked::curCycle(), curTick(), DPRINTFR, Packet::getAddr(), SequencerRequest::issue_time, m_FirstResponseToCompletionDelayHist, m_ForwardToFirstResponseDelayHist, m_hitLatencyHist, m_hitMachLatencyHist, m_hitTypeLatencyHist, m_hitTypeMachLatencyHist, m_IncompleteTimes, m_InitialToForwardDelayHist, m_IssueToInitialDelayHist, m_latencyHist, m_missLatencyHist, m_missMachLatencyHist, m_missTypeLatencyHist, m_missTypeMachLatencyHist, SequencerRequest::m_type, m_typeLatencyHist, RubyPort::m_version, SequencerRequest::pkt, printAddress(), Stats::DistBase< Derived, Stor >::sample(), and type.
Referenced by readCallback(), and writeCallback().
void Sequencer::recordRequestType | ( | SequencerRequestType | requestType | ) |
Definition at line 690 of file Sequencer.cc.
References DPRINTF.
|
virtual |
Callback to set stat parameters.
This callback is typically used for complex stats (e.g., distributions) that need parameters in addition to a name and a description. Stat names and descriptions should typically be set from the constructor usingo from the constructor using the ADD_STAT macro.
Reimplemented from Stats::Group.
Definition at line 702 of file Sequencer.cc.
References ArmISA::i, Stats::Histogram::init(), ArmISA::j, m_FirstResponseToCompletionDelayHist, m_ForwardToFirstResponseDelayHist, m_hitLatencyHist, m_hitMachLatencyHist, m_hitTypeLatencyHist, m_hitTypeMachLatencyHist, m_InitialToForwardDelayHist, m_IssueToInitialDelayHist, m_latencyHist, m_missLatencyHist, m_missMachLatencyHist, m_missTypeLatencyHist, m_missTypeMachLatencyHist, m_outstandReqHist, m_typeLatencyHist, and Stats::Group::regStats().
|
virtual |
Callback to reset stats.
Reimplemented from Stats::Group.
Definition at line 115 of file Sequencer.cc.
References ArmISA::i, ArmISA::j, m_FirstResponseToCompletionDelayHist, m_ForwardToFirstResponseDelayHist, m_hitLatencyHist, m_hitMachLatencyHist, m_hitTypeLatencyHist, m_hitTypeMachLatencyHist, m_IncompleteTimes, m_InitialToForwardDelayHist, m_IssueToInitialDelayHist, m_latencyHist, m_missLatencyHist, m_missMachLatencyHist, m_missTypeLatencyHist, m_missTypeMachLatencyHist, m_outstandReqHist, m_typeLatencyHist, and Stats::DistBase< Derived, Stor >::reset().
void Sequencer::wakeup | ( | ) |
Definition at line 81 of file Sequencer.cc.
References Clocked::clockEdge(), Clocked::clockPeriod(), Clocked::curCycle(), deadlockCheckEvent, Draining, Drainable::drainState(), m_deadlock_threshold, m_outstanding_count, m_RequestTable, RubyPort::m_version, panic, and EventManager::schedule().
Referenced by Sequencer().
void Sequencer::writeCallback | ( | Addr | address, |
DataBlock & | data, | ||
const bool | externalHit = false , |
||
const MachineType | mach = MachineType_NUM , |
||
const Cycles | initialRequestTime = Cycles(0) , |
||
const Cycles | forwardRequestTime = Cycles(0) , |
||
const Cycles | firstResponseTime = Cycles(0) |
||
) |
Definition at line 301 of file Sequencer.cc.
References AbstractController::blockOnQueue(), handleLlsc(), hitCallback(), RubyPort::m_controller, RubyPort::m_mandatory_q_ptr, m_RequestTable, m_runningGarnetStandalone, SequencerRequest::m_type, makeLineAddress(), markRemoved(), recordMissLatency(), and AbstractController::unblock().
|
private |
Definition at line 236 of file Sequencer.hh.
Referenced by insertRequest(), and wakeup().
|
private |
Definition at line 198 of file Sequencer.hh.
Referenced by Sequencer().
|
private |
Definition at line 188 of file Sequencer.hh.
|
private |
Definition at line 181 of file Sequencer.hh.
Referenced by handleLlsc(), invalidateSC(), and Sequencer().
|
private |
Definition at line 196 of file Sequencer.hh.
|
private |
Definition at line 179 of file Sequencer.hh.
Referenced by insertRequest(), Sequencer(), and wakeup().
|
private |
Definition at line 233 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 232 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Histogram for holding latency profile of all requests that hit in the controller connected to this sequencer.
Definition at line 211 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Histograms for profiling the latencies for requests that did not required external messages.
Definition at line 216 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 212 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 217 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 234 of file Sequencer.hh.
Referenced by recordMissLatency(), and resetStats().
|
private |
Definition at line 231 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 189 of file Sequencer.hh.
|
private |
Definition at line 182 of file Sequencer.hh.
Referenced by Sequencer().
|
private |
Histograms for recording the breakdown of miss latency.
Definition at line 230 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Histogram for holding latency profile of all requests.
Definition at line 206 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 178 of file Sequencer.hh.
Referenced by makeRequest(), and Sequencer().
|
private |
Histogram for holding latency profile of all requests that miss in the controller connected to this sequencer.
Definition at line 221 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Histograms for profiling the latencies for requests that required external messages.
Definition at line 226 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 222 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 227 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 195 of file Sequencer.hh.
Referenced by insertRequest(), makeRequest(), markRemoved(), print(), Sequencer(), and wakeup().
|
private |
Histogram for number of outstanding requests per cycle.
Definition at line 203 of file Sequencer.hh.
Referenced by insertRequest(), regStats(), and resetStats().
|
private |
Definition at line 192 of file Sequencer.hh.
Referenced by empty(), insertRequest(), print(), readCallback(), wakeup(), and writeCallback().
|
private |
Definition at line 200 of file Sequencer.hh.
Referenced by Sequencer(), and writeCallback().
|
private |
Definition at line 207 of file Sequencer.hh.
Referenced by recordMissLatency(), regStats(), and resetStats().