gem5
v20.1.0.0
|
#include <Sequencer.hh>
Public Types | |
typedef RubySequencerParams | Params |
Public Types inherited from RubyPort | |
typedef RubyPortParams | Params |
Public Types inherited from ClockedObject | |
typedef ClockedObjectParams | Params |
Parameters of ClockedObject. More... | |
Public Types inherited from SimObject | |
typedef SimObjectParams | Params |
Public Member Functions | |
Sequencer (const Params *) | |
~Sequencer () | |
void | writeCallbackScFail (Addr address, DataBlock &data) |
Proxy function to writeCallback that first invalidates the line address in the local monitor. More... | |
virtual void | wakeup () |
void | resetStats () override |
Callback to reset stats. More... | |
void | collateStats () |
void | regStats () override |
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) override |
virtual bool | empty () const |
int | outstandingCount () const override |
bool | isDeadlockEventScheduled () const override |
void | descheduleDeadlockEvent () override |
virtual void | print (std::ostream &out) const |
void | markRemoved () |
void | evictionCallback (Addr address) |
int | coreId () const |
virtual int | functionalWrite (Packet *func_pkt) override |
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 |
bool | llscCheckMonitor (const Addr) |
Searches for cache line address in the global monitor tagged with this Sequencer object's version id. More... | |
void | llscClearLocalMonitor () |
Removes all addresses from the local monitor. More... | |
Public Member Functions inherited from RubyPort | |
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 |
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are partially executed or are partially in flight. More... | |
bool | isCPUSequencer () |
Public Member Functions inherited from ClockedObject | |
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... | |
Public Member Functions inherited from SimObject | |
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... | |
Public Member Functions inherited from EventManager | |
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) |
This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More... | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. More... | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
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 Member Functions inherited from Drainable | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
Public Member Functions inherited from Stats::Group | |
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... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Public Member Functions inherited from Clocked | |
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 |
Protected Member Functions | |
virtual RequestStatus | insertRequest (PacketPtr pkt, RubyRequestType primary_type, RubyRequestType secondary_type) |
Protected Member Functions inherited from RubyPort | |
void | trySendRetries () |
void | ruby_hit_callback (PacketPtr pkt) |
void | testDrainComplete () |
void | ruby_eviction_callback (Addr address) |
bool | recvTimingResp (PacketPtr pkt, PortID request_port_id) |
Called by the PIO port when receiving a timing response. More... | |
Protected Member Functions inherited from Drainable | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Member Functions inherited from Clocked | |
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... | |
Protected Attributes | |
std::unordered_map< Addr, std::list< SequencerRequest > > | m_RequestTable |
Cycles | m_deadlock_threshold |
Protected Attributes inherited from RubyPort | |
RubySystem * | m_ruby_system |
uint32_t | m_version |
AbstractController * | m_controller |
MessageBuffer * | m_mandatory_q_ptr |
bool | m_usingRubyTester |
System * | system |
std::vector< MemResponsePort * > | response_ports |
Protected Attributes inherited from SimObject | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
Protected Attributes inherited from EventManager | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
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) |
Sequencer (const Sequencer &obj) | |
Sequencer & | operator= (const Sequencer &obj) |
void | llscLoadLinked (const Addr) |
Places the cache line address into the global monitor tagged with this Sequencer object's version id. More... | |
void | llscClearMonitor (const Addr) |
Removes the cache line address from the global monitor. More... | |
bool | llscStoreConditional (const Addr) |
Searches for cache line address in the global monitor tagged with this Sequencer object's version id. More... | |
Additional Inherited Members | |
Static Public Member Functions inherited from SimObject | |
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 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) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
Public Attributes inherited from ClockedObject | |
PowerState * | powerState |
Definition at line 80 of file Sequencer.hh.
typedef RubySequencerParams Sequencer::Params |
Definition at line 83 of file Sequencer.hh.
Sequencer::Sequencer | ( | const Params * | p | ) |
Definition at line 70 of file Sequencer.cc.
References wakeup().
Sequencer::~Sequencer | ( | ) |
Definition at line 90 of file Sequencer.cc.
|
private |
void Sequencer::collateStats | ( | ) |
|
inline |
|
inlineoverridevirtual |
Implements RubyPort.
Definition at line 123 of file Sequencer.hh.
References deadlockCheckEvent, and EventManager::deschedule().
|
virtual |
Reimplemented in HTMSequencer.
Definition at line 572 of file Sequencer.cc.
References m_RequestTable.
Referenced by HTMSequencer::empty().
void Sequencer::evictionCallback | ( | Addr | address | ) |
Definition at line 770 of file Sequencer.cc.
References llscClearMonitor(), and RubyPort::ruby_eviction_callback().
|
overridevirtual |
Reimplemented from RubyPort.
Definition at line 194 of file Sequencer.cc.
References RubyPort::functionalWrite(), and m_RequestTable.
|
inline |
Definition at line 175 of file Sequencer.hh.
References m_FirstResponseToCompletionDelayHist, and ArmISA::t.
|
inline |
Definition at line 171 of file Sequencer.hh.
References m_ForwardToFirstResponseDelayHist, and ArmISA::t.
|
inline |
Definition at line 141 of file Sequencer.hh.
References m_hitLatencyHist.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 145 of file Sequencer.hh.
References m_hitMachLatencyHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 142 of file Sequencer.hh.
References m_hitTypeLatencyHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 148 of file Sequencer.hh.
References m_hitTypeMachLatencyHist, MipsISA::r, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 178 of file Sequencer.hh.
References m_IncompleteTimes, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 167 of file Sequencer.hh.
References m_InitialToForwardDelayHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 163 of file Sequencer.hh.
References m_IssueToInitialDelayHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 137 of file Sequencer.hh.
References m_latencyHist.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 151 of file Sequencer.hh.
References m_missLatencyHist.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 156 of file Sequencer.hh.
References m_missMachLatencyHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 153 of file Sequencer.hh.
References m_missTypeLatencyHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 160 of file Sequencer.hh.
References m_missTypeMachLatencyHist, MipsISA::r, and ArmISA::t.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 135 of file Sequencer.hh.
References m_outstandReqHist.
Referenced by Profiler::collateStats().
|
inline |
Definition at line 138 of file Sequencer.hh.
References m_typeLatencyHist, and ArmISA::t.
Referenced by Profiler::collateStats().
|
private |
Definition at line 494 of file Sequencer.cc.
References Packet::cmdString(), data, DPRINTF, Packet::findNextSenderState(), Packet::getAddr(), Packet::getConstPtr(), RubySystem::getCooldownEnabled(), getOffset(), Packet::getSize(), RubySystem::getWarmupEnabled(), Packet::isFlush(), llscLoadLinked(), RubyPort::m_ruby_system, SequencerRequest::m_type, RubyPort::m_usingRubyTester, makeLineAddress(), SubBlock::mergeFrom(), SequencerRequest::pkt, Packet::req, ArmISA::rs, RubyPort::ruby_hit_callback(), Packet::setData(), RubyTester::SenderState::subBlock, RubyPort::testDrainComplete(), type, warn_once, and Packet::writeData().
Referenced by readCallback(), and writeCallback().
|
protectedvirtual |
Reimplemented in HTMSequencer.
Definition at line 240 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 HTMSequencer::insertRequest(), and makeRequest().
|
inlineoverridevirtual |
Implements RubyPort.
Definition at line 120 of file Sequencer.hh.
References deadlockCheckEvent, and Event::scheduled().
|
private |
Definition at line 694 of file Sequencer.cc.
References Clocked::clockEdge(), coreId(), curTick(), Clocked::cyclesToTicks(), DPRINTFR, MessageBuffer::enqueue(), Packet::getAddr(), Packet::getHtmTransactionUid(), Packet::getPtr(), Packet::getSize(), InvalidContextID, Packet::isFlush(), Packet::isHtmTransactional(), RubyPort::m_controller, RubyPort::m_mandatory_q_ptr, RubyPort::m_version, AbstractController::mandatoryQueueLatency(), MipsISA::pc, printAddress(), and Packet::req.
Referenced by makeRequest(), and readCallback().
bool Sequencer::llscCheckMonitor | ( | const Addr | address | ) |
Searches for cache line address in the global monitor tagged with this Sequencer object's version id.
Definition at line 138 of file Sequencer.cc.
References AbstractCacheEntry::isLocked(), CacheMemory::lookup(), m_dataCache_ptr, RubyPort::m_version, and makeLineAddress().
void Sequencer::llscClearLocalMonitor | ( | ) |
Removes all addresses from the local monitor.
This is independent of this Sequencer object's version id.
Definition at line 153 of file Sequencer.cc.
References CacheMemory::clearLockedAll(), m_dataCache_ptr, and RubyPort::m_version.
|
private |
Removes the cache line address from the global monitor.
This is independent of this Sequencer object's version id.
Definition at line 106 of file Sequencer.cc.
References AbstractCacheEntry::clearLocked(), DPRINTF, AbstractCacheEntry::isLocked(), CacheMemory::lookup(), m_dataCache_ptr, and RubyPort::m_version.
Referenced by evictionCallback(), writeCallback(), and writeCallbackScFail().
|
private |
Places the cache line address into the global monitor tagged with this Sequencer object's version id.
Definition at line 95 of file Sequencer.cc.
References DPRINTF, CacheMemory::lookup(), m_dataCache_ptr, RubyPort::m_version, and AbstractCacheEntry::setLocked().
Referenced by hitCallback().
|
private |
Searches for cache line address in the global monitor tagged with this Sequencer object's version id.
If a match is found, the entry is is erased from the global monitor.
Definition at line 117 of file Sequencer.cc.
References AbstractCacheEntry::clearLocked(), DPRINTF, AbstractCacheEntry::isLocked(), CacheMemory::lookup(), m_dataCache_ptr, and RubyPort::m_version.
Referenced by writeCallback().
|
overridevirtual |
Implements RubyPort.
Definition at line 578 of file Sequencer.cc.
References DPRINTF, X86ISA::FlagShift, Packet::getAddr(), System::getArch(), htmCmdToRubyRequestType(), 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 267 of file Sequencer.cc.
References m_outstanding_count.
Referenced by HTMSequencer::htmCallback(), readCallback(), and writeCallback().
|
inlineoverridevirtual |
|
virtual |
Reimplemented in HTMSequencer.
Definition at line 755 of file Sequencer.cc.
References m_outstanding_count, m_RequestTable, and RubyPort::m_version.
Referenced by operator<<(), and HTMSequencer::print().
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 439 of file Sequencer.cc.
References data, hitCallback(), issueRequest(), m_RequestTable, SequencerRequest::m_second_type, SequencerRequest::m_type, makeLineAddress(), markRemoved(), SequencerRequest::pkt, and recordMissLatency().
|
private |
Definition at line 273 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 764 of file Sequencer.cc.
References DPRINTF.
|
overridevirtual |
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 777 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().
Referenced by HTMSequencer::regStats().
|
overridevirtual |
Callback to reset stats.
Reimplemented from Stats::Group.
Definition at line 208 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().
|
virtual |
Reimplemented in HTMSequencer.
Definition at line 159 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(), and HTMSequencer::wakeup().
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 346 of file Sequencer.cc.
References AbstractController::blockOnQueue(), data, hitCallback(), llscClearMonitor(), llscStoreConditional(), RubyPort::m_controller, RubyPort::m_mandatory_q_ptr, m_RequestTable, SequencerRequest::m_type, makeLineAddress(), markRemoved(), SequencerRequest::pkt, recordMissLatency(), Packet::req, and AbstractController::unblock().
Referenced by writeCallbackScFail().
Proxy function to writeCallback that first invalidates the line address in the local monitor.
Definition at line 339 of file Sequencer.cc.
References data, llscClearMonitor(), and writeCallback().
|
private |
Definition at line 266 of file Sequencer.hh.
Referenced by descheduleDeadlockEvent(), insertRequest(), isDeadlockEventScheduled(), and wakeup().
|
private |
Definition at line 228 of file Sequencer.hh.
Referenced by coreId().
|
private |
Definition at line 221 of file Sequencer.hh.
|
private |
Definition at line 214 of file Sequencer.hh.
Referenced by llscCheckMonitor(), llscClearLocalMonitor(), llscClearMonitor(), llscLoadLinked(), and llscStoreConditional().
|
private |
Definition at line 226 of file Sequencer.hh.
|
protected |
Definition at line 205 of file Sequencer.hh.
Referenced by insertRequest(), HTMSequencer::wakeup(), and wakeup().
|
private |
Definition at line 263 of file Sequencer.hh.
Referenced by getFirstResponseToCompletionDelayHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 262 of file Sequencer.hh.
Referenced by getForwardRequestToFirstResponseHist(), 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 241 of file Sequencer.hh.
Referenced by getHitLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Histograms for profiling the latencies for requests that did not required external messages.
Definition at line 246 of file Sequencer.hh.
Referenced by getHitMachLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 242 of file Sequencer.hh.
Referenced by getHitTypeLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 247 of file Sequencer.hh.
Referenced by getHitTypeMachLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 264 of file Sequencer.hh.
Referenced by getIncompleteTimes(), recordMissLatency(), and resetStats().
|
private |
Definition at line 261 of file Sequencer.hh.
Referenced by getInitialToForwardDelayHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 222 of file Sequencer.hh.
|
private |
Definition at line 215 of file Sequencer.hh.
|
private |
Histograms for recording the breakdown of miss latency.
Definition at line 260 of file Sequencer.hh.
Referenced by getIssueToInitialDelayHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Histogram for holding latency profile of all requests.
Definition at line 236 of file Sequencer.hh.
Referenced by getLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 212 of file Sequencer.hh.
Referenced by makeRequest().
|
private |
Histogram for holding latency profile of all requests that miss in the controller connected to this sequencer.
Definition at line 251 of file Sequencer.hh.
Referenced by getMissLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Histograms for profiling the latencies for requests that required external messages.
Definition at line 256 of file Sequencer.hh.
Referenced by getMissMachLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 252 of file Sequencer.hh.
Referenced by getMissTypeLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 257 of file Sequencer.hh.
Referenced by getMissTypeMachLatencyHist(), recordMissLatency(), regStats(), and resetStats().
|
private |
Definition at line 225 of file Sequencer.hh.
Referenced by insertRequest(), makeRequest(), markRemoved(), outstandingCount(), print(), and wakeup().
|
private |
Histogram for number of outstanding requests per cycle.
Definition at line 233 of file Sequencer.hh.
Referenced by getOutstandReqHist(), insertRequest(), regStats(), and resetStats().
|
protected |
Definition at line 203 of file Sequencer.hh.
Referenced by empty(), functionalWrite(), HTMSequencer::htmCallback(), insertRequest(), print(), readCallback(), wakeup(), and writeCallback().
|
private |
Definition at line 230 of file Sequencer.hh.
|
private |
Definition at line 237 of file Sequencer.hh.
Referenced by getTypeLatencyHist(), recordMissLatency(), regStats(), and resetStats().