Go to the documentation of this file.
41 #ifndef __MEM_RUBY_SYSTEM_SEQUENCER_HH__
42 #define __MEM_RUBY_SYSTEM_SEQUENCER_HH__
46 #include <unordered_map>
49 #include "mem/ruby/protocol/MachineType.hh"
50 #include "mem/ruby/protocol/RubyRequestType.hh"
51 #include "mem/ruby/protocol/SequencerRequestType.hh"
54 #include "params/RubySequencer.hh"
69 RubyRequestType _m_second_type,
Cycles _issue_time)
84 std::ostream&
operator<<(std::ostream& out,
const SequencerRequest& obj);
107 const bool externalHit =
false,
108 const MachineType mach = MachineType_NUM,
112 const bool noCoales =
false);
123 const bool externalHit =
false,
124 const MachineType mach = MachineType_NUM,
130 RubyRequestType requestType,
131 const MachineType mach = MachineType_NUM,
137 virtual bool empty()
const;
146 virtual void print(std::ostream& out)
const;
206 const MachineType mach,
const bool externalHit,
207 const Cycles initialRequestTime,
208 const Cycles forwardRequestTime,
209 const Cycles firstResponseTime,
210 const bool was_coalesced);
213 const MachineType respondingMach,
214 bool isExternalHit,
Cycles initialRequestTime,
215 Cycles forwardRequestTime,
216 Cycles firstResponseTime);
232 RubyRequestType primary_type,
233 RubyRequestType secondary_type);
358 #endif // __MEM_RUBY_SYSTEM_SEQUENCER_HH__
std::vector< statistics::Histogram * > m_FirstResponseToCompletionDelayHist
std::unordered_map< Addr, std::list< SequencerRequest > > m_RequestTable
std::vector< statistics::Histogram * > m_hitMachLatencyHist
Histograms for profiling the latencies for requests that did not required external messages.
uint64_t m_unaddressedTransactionCnt
Cycles m_deadlock_threshold
statistics::Histogram & getTypeLatencyHist(uint32_t t)
RequestStatus makeRequest(PacketPtr pkt) override
void writeCallbackScFail(Addr address, DataBlock &data)
Proxy function to writeCallback that first invalidates the line address in the local monitor.
void issueRequest(PacketPtr pkt, RubyRequestType type)
Cycles m_inst_cache_hit_latency
std::unordered_map< uint64_t, SequencerRequest > m_UnaddressedRequestTable
statistics::Histogram & getOutstandReqHist()
uint64_t getCurrentUnaddressedTransactionID() const
Generate the current unaddressed transaction ID based on the counter and the Sequencer object's versi...
CacheMemory * m_dataCache_ptr
statistics::Histogram m_outstandReqHist
Histogram for number of outstanding requests per cycle.
std::ostream & operator<<(std::ostream &os, const BoolVec &myvector)
Cycles m_data_cache_hit_latency
statistics::Histogram & getIssueToInitialDelayHist(uint32_t t) const
void hitCallback(SequencerRequest *srequest, DataBlock &data, bool llscSuccess, const MachineType mach, const bool externalHit, const Cycles initialRequestTime, const Cycles forwardRequestTime, const Cycles firstResponseTime, const bool was_coalesced)
statistics::Histogram & getHitMachLatencyHist(uint32_t t)
virtual RequestStatus insertRequest(PacketPtr pkt, RubyRequestType primary_type, RubyRequestType secondary_type)
RubySequencerParams Params
void incrementUnaddressedTransactionCnt()
Increment the unaddressed transaction counter.
statistics::Counter getIncompleteTimes(const MachineType t) const
bool isDeadlockEventScheduled() const override
statistics::Histogram m_missLatencyHist
Histogram for holding latency profile of all requests that miss in the controller connected to this s...
SequencerRequest(PacketPtr _pkt, RubyRequestType _m_type, RubyRequestType _m_second_type, Cycles _issue_time)
int outstandingCount() const override
statistics::Histogram & getMissMachLatencyHist(uint32_t t) const
void recordRequestType(SequencerRequestType requestType)
statistics::Histogram & getLatencyHist()
bool functionalWrite(Packet *func_pkt) const
statistics::Histogram & getMissTypeMachLatencyHist(uint32_t r, uint32_t t) const
Cycles is a wrapper class for representing cycle counts, i.e.
std::vector< statistics::Histogram * > m_missMachLatencyHist
Histograms for profiling the latencies for requests that required external messages.
std::vector< std::vector< statistics::Histogram * > > m_missTypeMachLatencyHist
statistics::Histogram & getMissTypeLatencyHist(uint32_t t)
void evictionCallback(Addr address)
Sequencer & operator=(const Sequencer &obj)
statistics::Histogram & getHitTypeLatencyHist(uint32_t t)
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))
void recordMissLatency(SequencerRequest *srequest, bool llscSuccess, const MachineType respondingMach, bool isExternalHit, Cycles initialRequestTime, Cycles forwardRequestTime, Cycles firstResponseTime)
std::vector< statistics::Histogram * > m_ForwardToFirstResponseDelayHist
bool llscStoreConditional(const Addr)
Searches for cache line address in the global monitor tagged with this Sequencer object's version id.
statistics::Histogram m_latencyHist
Histogram for holding latency profile of all requests.
bool llscCheckMonitor(const Addr)
Searches for cache line address in the global monitor tagged with this Sequencer object's version id.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
std::vector< statistics::Histogram * > m_IssueToInitialDelayHist
Histograms for recording the breakdown of miss latency.
RubyRequestType m_second_type
void llscClearLocalMonitor()
Removes all addresses from the local monitor.
std::vector< statistics::Histogram * > m_missTypeLatencyHist
std::vector< statistics::Histogram * > m_InitialToForwardDelayHist
void writeUniqueCallback(Addr address, DataBlock &data)
virtual int functionalWrite(Packet *func_pkt) override
std::vector< std::vector< statistics::Histogram * > > m_hitTypeMachLatencyHist
statistics::Histogram & getHitTypeMachLatencyHist(uint32_t r, uint32_t t)
void resetStats() override
Callback to reset stats.
void descheduleDeadlockEvent() override
statistics::Histogram m_hitLatencyHist
Histogram for holding latency profile of all requests that hit in the controller connected to this se...
std::vector< statistics::Histogram * > m_hitTypeLatencyHist
Sequencer(const Params &)
bool m_runningGarnetStandalone
virtual bool empty() const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
statistics::Histogram & getInitialToForwardDelayHist(const MachineType t) const
void deschedule(Event &event)
int m_max_outstanding_requests
virtual void print(std::ostream &out) const
void llscLoadLinked(const Addr)
Places the cache line address into the global monitor tagged with this Sequencer object's version id.
void llscClearMonitor(const Addr)
Removes the cache line address from the global monitor.
statistics::Histogram & getForwardRequestToFirstResponseHist(const MachineType t) const
statistics::Histogram & getHitLatencyHist()
double Counter
All counters are of 64-bit values.
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), const bool noCoales=false)
bool trySatisfyFunctional(PacketPtr other)
Check a functional request against a memory value stored in another packet (i.e.
void unaddressedCallback(Addr unaddressedReqId, RubyRequestType requestType, const MachineType mach=MachineType_NUM, const Cycles initialRequestTime=Cycles(0), const Cycles forwardRequestTime=Cycles(0), const Cycles firstResponseTime=Cycles(0))
EventFunctionWrapper deadlockCheckEvent
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
bool m_deadlock_check_scheduled
statistics::Histogram & getFirstResponseToCompletionDelayHist(const MachineType t) const
statistics::Histogram & getMissLatencyHist()
std::vector< statistics::Counter > m_IncompleteTimes
std::vector< statistics::Histogram * > m_typeLatencyHist
bool scheduled() const
Determine if the current event is scheduled.
Generated on Thu Jun 16 2022 10:41:58 for gem5 by doxygen 1.8.17