gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mem_sink.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018-2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  *
37  * Author: Matteo Andreozzi
38  */
39 
40 #include "debug/Drain.hh"
41 #include "debug/QOS.hh"
42 #include "mem_sink.hh"
43 #include "params/QoSMemSinkInterface.hh"
44 #include "sim/system.hh"
45 
46 namespace QoS {
47 
48 MemSinkCtrl::MemSinkCtrl(const QoSMemSinkCtrlParams &p)
49  : MemCtrl(p), requestLatency(p.request_latency),
50  responseLatency(p.response_latency),
51  memoryPacketSize(p.memory_packet_size),
52  readBufferSize(p.read_buffer_size),
53  writeBufferSize(p.write_buffer_size), port(name() + ".port", *this),
54  interface(p.interface),
55  retryRdReq(false), retryWrReq(false), nextRequest(0), nextReqEvent(this),
56  stats(this)
57 {
58  // Resize read and write queue to allocate space
59  // for configured QoS priorities
60  readQueue.resize(numPriorities());
61  writeQueue.resize(numPriorities());
62 
63  interface->setMemCtrl(this);
64 }
65 
67 {}
68 
69 void
71 {
72  MemCtrl::init();
73 
74  // Allow unconnected memories as this is used in several ruby
75  // systems at the moment
76  if (port.isConnected()) {
78  }
79 }
80 
81 bool
82 MemSinkCtrl::readQueueFull(const uint64_t packets) const
83 {
84  return (totalReadQueueSize + packets > readBufferSize);
85 }
86 
87 bool
88 MemSinkCtrl::writeQueueFull(const uint64_t packets) const
89 {
90  return (totalWriteQueueSize + packets > writeBufferSize);
91 }
92 
93 Tick
95 {
97  "%s Should not see packets where cache is responding\n",
98  __func__);
99 
100  interface->access(pkt);
101  return responseLatency;
102 }
103 
104 void
106 {
107  pkt->pushLabel(name());
108 
110 
111  pkt->popLabel();
112 }
113 
114 Port &
115 MemSinkCtrl::getPort(const std::string &interface, PortID idx)
116 {
117  if (interface != "port") {
118  return MemCtrl::getPort(interface, idx);
119  } else {
120  return port;
121  }
122 }
123 
124 bool
126 {
127  // Request accepted
128  bool req_accepted = true;
129 
130  panic_if(!(pkt->isRead() || pkt->isWrite()),
131  "%s. Should only see "
132  "read and writes at memory controller\n",
133  __func__);
134 
135  panic_if(pkt->cacheResponding(),
136  "%s. Should not see packets where cache is responding\n",
137  __func__);
138 
139  DPRINTF(QOS,
140  "%s: REQUESTOR %s request %s addr %lld size %d\n",
141  __func__,
142  _system->getRequestorName(pkt->req->requestorId()),
143  pkt->cmdString(), pkt->getAddr(), pkt->getSize());
144 
145  uint64_t required_entries = divCeil(pkt->getSize(), memoryPacketSize);
146 
147  assert(required_entries);
148 
149  // Schedule packet
150  uint8_t pkt_priority = qosSchedule({&readQueue, &writeQueue},
151  memoryPacketSize, pkt);
152 
153  if (pkt->isRead()) {
154  if (readQueueFull(required_entries)) {
155  DPRINTF(QOS,
156  "%s Read queue full, not accepting\n", __func__);
157  // Remember that we have to retry this port
158  retryRdReq = true;
160  req_accepted = false;
161  } else {
162  // Enqueue the incoming packet into corresponding
163  // QoS priority queue
164  readQueue.at(pkt_priority).push_back(pkt);
165  queuePolicy->enqueuePacket(pkt);
166  }
167  } else {
168  if (writeQueueFull(required_entries)) {
169  DPRINTF(QOS,
170  "%s Write queue full, not accepting\n", __func__);
171  // Remember that we have to retry this port
172  retryWrReq = true;
174  req_accepted = false;
175  } else {
176  // Enqueue the incoming packet into corresponding QoS
177  // priority queue
178  writeQueue.at(pkt_priority).push_back(pkt);
179  queuePolicy->enqueuePacket(pkt);
180  }
181  }
182 
183  if (req_accepted) {
184  // The packet is accepted - log it
185  logRequest(pkt->isRead()? READ : WRITE,
186  pkt->req->requestorId(),
187  pkt->qosValue(),
188  pkt->getAddr(),
189  required_entries);
190  }
191 
192  // Check if we have to process next request event
193  if (!nextReqEvent.scheduled()) {
194  DPRINTF(QOS,
195  "%s scheduling next request at "
196  "time %d (next is %d)\n", __func__,
197  std::max(curTick(), nextRequest), nextRequest);
198  schedule(nextReqEvent, std::max(curTick(), nextRequest));
199  }
200  return req_accepted;
201 }
202 
203 void
205 {
206  PacketPtr pkt = nullptr;
207 
208  // Evaluate bus direction
210 
211  // Record turnaround stats and update current state direction
213 
214  // Set current bus state
216 
217  // Access current direction buffer
218  std::vector<PacketQueue>* queue_ptr = (busState == READ ? &readQueue :
219  &writeQueue);
220 
221  DPRINTF(QOS,
222  "%s DUMPING %s queues status\n", __func__,
223  (busState == WRITE ? "WRITE" : "READ"));
224 
225  if (DTRACE(QOS)) {
226  for (uint8_t i = 0; i < numPriorities(); ++i) {
227  std::string plist = "";
228  for (auto& e : (busState == WRITE ? writeQueue[i]: readQueue[i])) {
229  plist += (std::to_string(e->req->requestorId())) + " ";
230  }
231  DPRINTF(QOS,
232  "%s priority Queue [%i] contains %i elements, "
233  "packets are: [%s]\n", __func__, i,
235  readQueueSizes[i],
236  plist);
237  }
238  }
239 
240  uint8_t curr_prio = numPriorities();
241 
242  for (auto queue = (*queue_ptr).rbegin();
243  queue != (*queue_ptr).rend(); ++queue) {
244 
245  curr_prio--;
246 
247  DPRINTF(QOS,
248  "%s checking %s queue [%d] priority [%d packets]\n",
249  __func__, (busState == READ? "READ" : "WRITE"),
250  curr_prio, queue->size());
251 
252  if (!queue->empty()) {
253  // Call the queue policy to select packet from priority queue
254  auto p_it = queuePolicy->selectPacket(&(*queue));
255  pkt = *p_it;
256  queue->erase(p_it);
257 
258  DPRINTF(QOS,
259  "%s scheduling packet address %d for requestor %s from "
260  "priority queue %d\n", __func__, pkt->getAddr(),
261  _system->getRequestorName(pkt->req->requestorId()),
262  curr_prio);
263  break;
264  }
265  }
266 
267  assert(pkt);
268 
269  // Setup next request service time - do it here as retry request
270  // hands over control to the port
272 
273  uint64_t removed_entries = divCeil(pkt->getSize(), memoryPacketSize);
274 
275  DPRINTF(QOS,
276  "%s scheduled packet address %d for requestor %s size is %d, "
277  "corresponds to %d memory packets\n", __func__, pkt->getAddr(),
278  _system->getRequestorName(pkt->req->requestorId()),
279  pkt->getSize(), removed_entries);
280 
281  // Schedule response
282  panic_if(!pkt->needsResponse(),
283  "%s response not required\n", __func__);
284 
285  // Do the actual memory access which also turns the packet
286  // into a response
287  interface->access(pkt);
288 
289  // Log the response
290  logResponse(pkt->isRead()? READ : WRITE,
291  pkt->req->requestorId(),
292  pkt->qosValue(),
293  pkt->getAddr(),
294  removed_entries, responseLatency);
295 
296  // Schedule the response
298  DPRINTF(QOS,
299  "%s response scheduled at time %d\n",
300  __func__, curTick() + responseLatency);
301 
302  // Finally - handle retry requests - this handles control
303  // to the port, so do it last
304  if (busState == READ && retryRdReq) {
305  retryRdReq = false;
306  port.sendRetryReq();
307  } else if (busState == WRITE && retryWrReq) {
308  retryWrReq = false;
309  port.sendRetryReq();
310  }
311 
312  // Check if we have to schedule another request event
314  !nextReqEvent.scheduled()) {
315 
317  DPRINTF(QOS,
318  "%s scheduling next request event at tick %d\n",
319  __func__, curTick() + requestLatency);
320  }
321 }
322 
325 {
327  DPRINTF(Drain,
328  "%s queues have requests, waiting to drain\n",
329  __func__);
330  return DrainState::Draining;
331  } else {
332  return DrainState::Drained;
333  }
334 }
335 
337  : Stats::Group(parent),
338  ADD_STAT(numReadRetries, UNIT_COUNT, "Number of read retries"),
339  ADD_STAT(numWriteRetries, UNIT_COUNT, "Number of write retries")
340 {
341 }
342 
344  MemSinkCtrl& m)
345  : QueuedResponsePort(n, &m, queue, true),
346  memory(m), queue(memory, *this, true)
347 {}
348 
351 {
352  AddrRangeList ranges;
353  ranges.push_back(memory.interface->getAddrRange());
354  return ranges;
355 }
356 
357 Tick
359 {
360  return memory.recvAtomic(pkt);
361 }
362 
363 void
365 {
366  pkt->pushLabel(memory.name());
367 
368  if (!queue.trySatisfyFunctional(pkt)) {
369  // Default implementation of SimpleTimingPort::recvFunctional()
370  // calls recvAtomic() and throws away the latency; we can save a
371  // little here by just not calculating the latency.
372  memory.recvFunctional(pkt);
373  }
374 
375  pkt->popLabel();
376 }
377 
378 bool
380 {
381  return memory.recvTimingReq(pkt);
382 }
383 
384 } // namespace QoS
385 
386 QoSMemSinkInterface::QoSMemSinkInterface(const QoSMemSinkInterfaceParams &_p)
387  : AbstractMemory(_p)
388 {
389 }
QoS::MemSinkCtrl::MemoryPort::getAddrRanges
AddrRangeList getAddrRanges() const
Gets the configured address ranges for this port.
Definition: mem_sink.cc:350
QoS::MemSinkCtrl::MemSinkCtrlStats::MemSinkCtrlStats
MemSinkCtrlStats(Stats::Group *parent)
Definition: mem_sink.cc:336
QoS
Definition: mem_ctrl.cc:42
QoS::MemSinkCtrl::MemSinkCtrl
MemSinkCtrl(const QoSMemSinkCtrlParams &)
QoS Memory Sink Constructor.
Definition: mem_sink.cc:48
QoSMemSinkInterface::setMemCtrl
void setMemCtrl(QoS::MemSinkCtrl *_ctrl)
Setting a pointer to the interface.
Definition: mem_sink.hh:264
QoS::MemCtrl
The QoS::MemCtrl is a base class for Memory objects which support QoS - it provides access to a set o...
Definition: mem_ctrl.hh:59
QoS::MemCtrl::setCurrentBusState
void setCurrentBusState()
Set current bus direction (READ or WRITE) from next selected one.
Definition: mem_ctrl.hh:219
system.hh
Packet::cacheResponding
bool cacheResponding() const
Definition: packet.hh:620
QoS::MemSinkCtrl::interface
QoSMemSinkInterface *const interface
Create pointer to interface of actual media.
Definition: mem_sink.hh:173
QoS::MemCtrl::WRITE
@ WRITE
Definition: mem_ctrl.hh:63
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
memory
Definition: mem.h:38
QoS::MemCtrl::schedule
uint8_t schedule(RequestorID id, uint64_t data)
Definition: mem_ctrl.cc:207
QoS::MemCtrl::recordTurnaroundStats
void recordTurnaroundStats()
Record statistics on turnarounds based on busStateNext and busState values.
Definition: mem_ctrl.cc:348
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
QoS::MemSinkCtrl::nextReqEvent
EventWrapper< MemSinkCtrl, &MemSinkCtrl::processNextReqEvent > nextReqEvent
Event wrapper to schedule next request handler function.
Definition: mem_sink.hh:214
QoS::MemSinkCtrl::processNextReqEvent
void processNextReqEvent()
Processes the next Request event according to configured request latency.
Definition: mem_sink.cc:204
QoS::MemSinkCtrl::readQueue
std::vector< PacketQueue > readQueue
QoS-aware (per priority) incoming read requests packets queue.
Definition: mem_sink.hh:198
QoS::MemSinkCtrl::stats
MemSinkCtrlStats stats
Definition: mem_sink.hh:255
QoS::MemCtrl::numPriorities
uint8_t numPriorities() const
Gets the total number of priority levels in the QoS memory controller.
Definition: mem_ctrl.hh:346
QoS::MemSinkCtrl::MemoryPort::MemoryPort
MemoryPort(const std::string &, MemSinkCtrl &)
Constructor.
Definition: mem_sink.cc:343
sc_dt::to_string
const std::string to_string(sc_enc enc)
Definition: sc_fxdefs.cc:91
Packet::isRead
bool isRead() const
Definition: packet.hh:557
QoS::MemSinkCtrl::writeQueueFull
bool writeQueueFull(const uint64_t packets) const
Check if the write queue has room for more entries.
Definition: mem_sink.cc:88
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
QoS::MemSinkCtrl::readBufferSize
const uint64_t readBufferSize
Read request packets queue buffer size in #packets.
Definition: mem_sink.hh:162
QoS::MemSinkCtrl::recvTimingReq
bool recvTimingReq(PacketPtr pkt)
Receive a Packet in Timing mode.
Definition: mem_sink.cc:125
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
Packet::pushLabel
void pushLabel(const std::string &lbl)
Push label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1394
Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:341
QoS::MemCtrl::READ
@ READ
Definition: mem_ctrl.hh:63
DTRACE
#define DTRACE(x)
Definition: debug.hh:156
std::vector
STL vector class.
Definition: stl.hh:37
QoS::MemSinkCtrl::recvFunctional
void recvFunctional(PacketPtr pkt)
Receive a Packet in Functional mode.
Definition: mem_sink.cc:105
Packet::getSize
unsigned getSize() const
Definition: packet.hh:765
QoS::MemSinkCtrl::MemSinkCtrlStats::numReadRetries
Stats::Scalar numReadRetries
Count the number of read retries.
Definition: mem_sink.hh:189
QueuedResponsePort::schedTimingResp
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
Definition: qport.hh:90
QoS::MemSinkCtrl::MemoryPort::recvFunctional
void recvFunctional(PacketPtr pkt)
Receive a Packet in Functional mode.
Definition: mem_sink.cc:364
AbstractMemory::functionalAccess
void functionalAccess(PacketPtr pkt)
Perform an untimed memory read or write without changing anything but the memory itself.
Definition: abstract_mem.cc:470
DrainState::Drained
@ Drained
Buffers drained, ready for serialization/handover.
QoS::MemCtrl::qosSchedule
uint8_t qosSchedule(std::initializer_list< Queues * > queues_ptr, uint64_t queue_entry_size, const PacketPtr pkt)
Assign priority to a packet by executing the configured QoS policy.
Definition: mem_ctrl.hh:475
DrainState
DrainState
Object drain/handover states.
Definition: drain.hh:71
ArmISA::n
Bitfield< 31 > n
Definition: miscregs_types.hh:450
AbstractMemory
An abstract memory represents a contiguous block of physical memory, with an associated address range...
Definition: abstract_mem.hh:104
QoS::MemCtrl::logResponse
void logResponse(BusState dir, RequestorID id, uint8_t qos, Addr addr, uint64_t entries, double delay)
Called upon receiving a response, updates statistics and updates queues status.
Definition: mem_ctrl.cc:138
QoS::MemSinkCtrl::MemoryPort::recvTimingReq
bool recvTimingReq(PacketPtr pkt)
Receive a Packet in Timing mode.
Definition: mem_sink.cc:379
QoS::MemCtrl::totalWriteQueueSize
uint64_t totalWriteQueueSize
Total write request packets queue length in #packets.
Definition: mem_ctrl.hh:113
QoS::MemSinkCtrl
QoS Memory Sink.
Definition: mem_sink.hh:61
Packet::qosValue
uint8_t qosValue() const
QoS Value getter Returns 0 if QoS value was never set (constructor default).
Definition: packet.hh:730
divCeil
T divCeil(const T &a, const U &b)
Definition: intmath.hh:114
AbstractMemory::access
void access(PacketPtr pkt)
Perform an untimed memory access and update all the state (e.g.
Definition: abstract_mem.cc:368
QoS::MemSinkCtrl::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Receive a Packet in Atomic mode.
Definition: mem_sink.cc:94
QoS::MemCtrl::logRequest
void logRequest(BusState dir, RequestorID id, uint8_t qos, Addr addr, uint64_t entries)
Called upon receiving a request or updates statistics and updates queues status.
Definition: mem_ctrl.cc:81
QoS::MemCtrl::busStateNext
BusState busStateNext
bus state for next request event triggered
Definition: mem_ctrl.hh:122
SimObject::getPort
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:120
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
Packet::cmdString
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
Definition: packet.hh:552
mem_sink.hh
QoS::MemCtrl::_system
System * _system
Pointer to the System object.
Definition: mem_ctrl.hh:155
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
Packet::needsResponse
bool needsResponse() const
Definition: packet.hh:571
QoS::MemCtrl::totalReadQueueSize
uint64_t totalReadQueueSize
Total read request packets queue length in #packets.
Definition: mem_ctrl.hh:110
QoS::MemSinkCtrl::init
void init() override
Initializes this object.
Definition: mem_sink.cc:70
QoS::MemSinkCtrl::getPort
Port & getPort(const std::string &if_name, PortID=InvalidPortID) override
Getter method to access this memory's response port.
Definition: mem_sink.cc:115
QueuedResponsePort
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:58
QoS::MemSinkCtrl::drain
DrainState drain() override
Checks and return the Drain state of this SimObject.
Definition: mem_sink.cc:324
QoSMemSinkInterface::QoSMemSinkInterface
QoSMemSinkInterface(const QoSMemSinkInterfaceParams &_p)
Definition: mem_sink.cc:386
QoS::MemSinkCtrl::writeBufferSize
const uint64_t writeBufferSize
Write request packets queue buffer size in #packets.
Definition: mem_sink.hh:165
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
QoS::MemSinkCtrl::readQueueFull
bool readQueueFull(const uint64_t packets) const
Check if the read queue has room for more entries.
Definition: mem_sink.cc:82
QoS::MemSinkCtrl::writeQueue
std::vector< PacketQueue > writeQueue
QoS-aware (per priority) incoming read requests packets queue.
Definition: mem_sink.hh:203
name
const std::string & name()
Definition: trace.cc:48
QoS::MemCtrl::readQueueSizes
std::vector< uint64_t > readQueueSizes
Read request packets queue length in #packets, per QoS priority.
Definition: mem_ctrl.hh:104
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
QoS::MemSinkCtrl::memoryPacketSize
const uint64_t memoryPacketSize
Memory packet size in bytes.
Definition: mem_sink.hh:159
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
QoS::MemSinkCtrl::MemSinkCtrlStats::numWriteRetries
Stats::Scalar numWriteRetries
Count the number of write retries.
Definition: mem_sink.hh:192
QoS::MemSinkCtrl::retryRdReq
bool retryRdReq
Read request pending.
Definition: mem_sink.hh:176
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
QoS::MemSinkCtrl::port
MemoryPort port
Memory response port.
Definition: mem_sink.hh:168
QoS::MemSinkCtrl::MemoryPort::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Receive a Packet in Atomic mode.
Definition: mem_sink.cc:358
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Stats::Group
Statistics container.
Definition: group.hh:87
Port::isConnected
bool isConnected() const
Is this port currently connected to a peer?
Definition: port.hh:128
SimObject::init
virtual void init()
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: sim_object.cc:70
QoS::MemSinkCtrl::nextRequest
Tick nextRequest
Next request service time.
Definition: mem_sink.hh:182
Packet::isWrite
bool isWrite() const
Definition: packet.hh:558
QoS::MemSinkCtrl::~MemSinkCtrl
virtual ~MemSinkCtrl()
Definition: mem_sink.cc:66
System::getRequestorName
std::string getRequestorName(RequestorID requestor_id)
Get the name of an object for a given request id.
Definition: system.cc:636
Stats
Definition: statistics.cc:53
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
ResponsePort::sendRetryReq
void sendRetryReq()
Send a retry to the request port that previously attempted a sendTimingReq to this response port and ...
Definition: port.hh:398
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
std::list< AddrRange >
QoS::MemSinkCtrl::retryWrReq
bool retryWrReq
Write request pending.
Definition: mem_sink.hh:179
ResponsePort::sendRangeChange
void sendRangeChange() const
Called by the owner to send a range change.
Definition: port.hh:293
QoS::MemSinkCtrl::requestLatency
const Tick requestLatency
Memory between requests latency (ticks)
Definition: mem_sink.hh:153
QoS::MemCtrl::queuePolicy
const std::unique_ptr< QueuePolicy > queuePolicy
QoS Queue Policy: selects packet among same-priority queue.
Definition: mem_ctrl.hh:73
QoS::MemSinkCtrl::responseLatency
const Tick responseLatency
Memory response latency (ticks)
Definition: mem_sink.hh:156
QoS::MemCtrl::busState
BusState busState
Bus state used to control the read/write switching and drive the scheduling of the next request.
Definition: mem_ctrl.hh:119
QoS::MemCtrl::selectNextBusState
BusState selectNextBusState()
Returns next bus direction (READ or WRITE) based on configured policy.
Definition: mem_ctrl.cc:236
Packet::popLabel
void popLabel()
Pop label for PrintReq (safe to call unconditionally).
Definition: packet.hh:1404
DrainState::Draining
@ Draining
Draining buffers pending serialization/handover.
ArmISA::m
Bitfield< 0 > m
Definition: miscregs_types.hh:389
QoS::MemCtrl::writeQueueSizes
std::vector< uint64_t > writeQueueSizes
Write request packets queue length in #packets, per QoS priority.
Definition: mem_ctrl.hh:107

Generated on Tue Jun 22 2021 15:28:29 for gem5 by doxygen 1.8.17