46 policy(p->qos_policy),
47 turnPolicy(p->qos_turnaround_policy),
49 _numPriorities(p->qos_priorities),
50 qosPriorityEscalation(p->qos_priority_escalation),
51 qosSyncroScheduler(p->qos_syncro_scheduler),
52 totalReadQueueSize(0), totalWriteQueueSize(0),
94 "QoSMemCtrl::logRequest MASTER %s [id %d] address %d" 95 " prio %d this master q packets %d" 96 " - queue size %d - requested entries %d\n",
104 }
else if (dir ==
WRITE) {
110 for (
auto j = 0;
j < entries; ++
j) {
126 "QoSMemCtrl::logRequest MASTER %s [id %d]" 127 " registering priority distance %d for priority %d" 135 "QoSMemCtrl::logRequest MASTER %s [id %d] prio %d " 136 "this master q packets %d - new queue size %d\n",
144 Addr addr, uint64_t entries,
double delay)
147 "Logging response with invalid master\n");
150 "QoSMemCtrl::logResponse MASTER %s [id %d] address %d prio" 151 " %d this master q packets %d" 152 " - queue size %d - requested entries %d\n",
160 }
else if (dir ==
WRITE) {
166 "QoSMemCtrl::logResponse master %s negative packets for priority" 171 for (
auto j = 0;
j < entries; ++
j) {
174 "QoSMemCtrl::logResponse master %s unmatched response for" 175 " address %d received",
masters[m_id], addr);
178 uint64_t requestTime = it->second.front();
181 it->second.pop_front();
184 if (it->second.empty()) {
188 double latency = (double) (
curTick() + delay - requestTime)
205 "QoSMemCtrl::logResponse MASTER %s [id %d] prio %d " 206 "this master q packets %d - new queue size %d\n",
215 return policy->schedule(m_id, data);
218 "QoSScheduler::schedule master ID [%d] " 219 "data received [%d], but QoS scheduler not initialized\n",
233 DPRINTF(QOS,
"QoSScheduler::schedule Packet received [Qv %d], " 234 "but QoS scheduler not initialized\n",
247 "QoSMemoryTurnaround::selectBusState running policy %s\n",
253 "QoSMemoryTurnaround::selectBusState running " 254 "default bus direction selection policy\n");
276 "QoSMemCtrl::addMaster registering" 277 " Master %s [id %d]\n",
287 "Average QoS priority value for accepted requests"),
289 "Average QoS priority distance between assigned and " 293 "per QoS priority minimum request to response latency (s)"),
295 "per QoS priority maximum request to response latency (s)"),
297 "Number of turnarounds from READ to WRITE"),
299 "Number of turnarounds from WRITE to READ"),
301 "Number of times bus staying in READ state"),
303 "Number of times bus staying in WRITE state")
312 using namespace Stats;
315 const auto max_masters = system->
maxMasters();
331 .
init(num_priorities)
336 .
init(num_priorities)
340 for (
int i = 0;
i < max_masters;
i++) {
346 for (
int j = 0;
j < num_priorities; ++
j) {
357 stats.numWriteReadTurnArounds++;
359 stats.numReadWriteTurnArounds++;
363 stats.numStayReadState++;
365 stats.numStayWriteState++;
QoS::MemCtrl::MemCtrlStats stats
void logResponse(BusState dir, MasterID m_id, uint8_t qos, Addr addr, uint64_t entries, double delay)
Called upon receiving a response, updates statistics and updates queues status.
Derived & subname(off_type index, const std::string &name)
Set the subfield name for the given index, and marks this stat to print at the end of simulation...
BusState busStateNext
bus state for next request event triggered
std::string getMasterName(MasterID master_id)
Get the name of an object for a given request id.
const std::unique_ptr< QueuePolicy > queuePolicy
QoS Queue Policy: selects packet among same-priority queue.
uint64_t totalReadQueueSize
Total read request packets queue length in #packets.
const FlagsType nonan
Don't print if this is NAN.
Stats::Vector priorityMinLatency
per-priority minimum latency
void addMaster(const MasterID m_id)
Initializes dynamically counters and statistics for a given Master.
void value(VCounter &vec) const
double s
These variables equal the number of ticks in the unit of time they're named after in a double...
std::vector< Tick > serviceTick
Vector of QoS priorities/last service time.
uint8_t numPriorities() const
Gets the total number of priority levels in the QoS memory controller.
Derived & flags(Flags _flags)
Set the flags and marks this stat to print at the end of simulation.
const std::unique_ptr< TurnaroundPolicy > turnPolicy
QoS Bus Turnaround Policy: selects the bus direction (READ/WRITE)
Derived & init(size_type size)
Set this vector to have the given size.
std::unordered_map< MasterID, const std::string > masters
Hash of master ID - master name.
RequestPtr req
A pointer to the original request.
MemCtrl(const QoSMemCtrlParams *)
QoS Memory base class.
Tick curTick()
The current simulated tick.
Stats::VectorStandardDeviation avgPriorityDistance
per-master average QoS distance between assigned and queued values
MemCtrlStats(MemCtrl &mc)
std::vector< uint64_t > readQueueSizes
Read request packets queue length in #packets, per QoS priority.
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
BusState busState
Bus state used to control the read/write switching and drive the scheduling of the next request...
void recordTurnaroundStats()
Record statistics on turnarounds based on busStateNext and busState values.
uint64_t getTotalWriteQueueSize() const
Gets the total combined WRITE queues size.
uint64_t totalWriteQueueSize
Total write request packets queue length in #packets.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
bool hasMaster(MasterID m_id) const
hasMaster returns true if the selected master(ID) has been registered in the memory controller...
Derived & precision(int _precision)
Set the precision and marks this stat to print at the end of simulation.
const uint8_t _numPriorities
Number of configured QoS priorities.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
void regStats() override
Callback to set stat parameters.
MasterID maxMasters()
Get the number of masters registered in the system.
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
const std::unique_ptr< Policy > policy
QoS Policy, assigns QoS priority to the incoming packets.
Stats::VectorStandardDeviation avgPriority
per-master average QoS priority
System * system() const
read the system pointer Implemented for completeness with the setter
uint64_t getTotalReadQueueSize() const
Gets the total combined READ queues size.
void logRequest(BusState dir, MasterID m_id, uint8_t qos, Addr addr, uint64_t entries)
Called upon receiving a request or updates statistics and updates queues status.
System * _system
Pointer to the System object.
std::unordered_map< MasterID, std::unordered_map< uint64_t, std::deque< uint64_t > > > requestTimes
Hash of masters - address of request - queue of times of request.
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Stats::Vector priorityMaxLatency
per-priority maximum latency
BusState getBusState() const
Gets the current bus state.
An abstract memory represents a contiguous block of physical memory, with an associated address range...
void init() override
Initializes this object.
virtual void regStats()
Callback to set stat parameters.
std::unordered_map< MasterID, std::vector< uint64_t > > packetPriorities
Hash of masters - number of packets queued per priority.
VectorStandardDeviation & init(size_type size)
Initialize storage for this distribution.
std::vector< uint64_t > writeQueueSizes
Write request packets queue length in #packets, per QoS priority.
const FlagsType nozero
Don't print if this is zero.
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
std::vector< Info * > stats
The QoS::MemCtrl is a base class for Memory objects which support QoS - it provides access to a set o...
uint8_t schedule(MasterID m_id, uint64_t data)
const std::string to_string(sc_enc enc)
BusState selectNextBusState()
Returns next bus direction (READ or WRITE) based on configured policy.