gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
RubyPort.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2012-2013,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  * Copyright (c) 2009-2013 Advanced Micro Devices, Inc.
15  * Copyright (c) 2011 Mark D. Hill and David A. Wood
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms, with or without
19  * modification, are permitted provided that the following conditions are
20  * met: redistributions of source code must retain the above copyright
21  * notice, this list of conditions and the following disclaimer;
22  * redistributions in binary form must reproduce the above copyright
23  * notice, this list of conditions and the following disclaimer in the
24  * documentation and/or other materials provided with the distribution;
25  * neither the name of the copyright holders nor the names of its
26  * contributors may be used to endorse or promote products derived from
27  * this software without specific prior written permission.
28  *
29  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40  */
41 
43 
45 #include "debug/Config.hh"
46 #include "debug/Drain.hh"
47 #include "debug/Ruby.hh"
48 #include "mem/ruby/protocol/AccessPermission.hh"
50 #include "mem/simple_mem.hh"
51 #include "sim/full_system.hh"
52 #include "sim/system.hh"
53 
55  : ClockedObject(p), m_ruby_system(p.ruby_system), m_version(p.version),
56  m_controller(NULL), m_mandatory_q_ptr(NULL),
57  m_usingRubyTester(p.using_ruby_tester), system(p.system),
58  pioRequestPort(csprintf("%s.pio-request-port", name()), this),
59  pioResponsePort(csprintf("%s.pio-response-port", name()), this),
60  memRequestPort(csprintf("%s.mem-request-port", name()), this),
61  memResponsePort(csprintf("%s-mem-response-port", name()), this,
62  p.ruby_system->getAccessBackingStore(), -1,
63  p.no_retry_on_stall),
64  gotAddrRanges(p.port_interrupt_out_port_connection_count),
65  m_isCPUSequencer(p.is_cpu_sequencer)
66 {
67  assert(m_version != -1);
68 
69  // create the response ports based on the number of connected ports
70  for (size_t i = 0; i < p.port_in_ports_connection_count; ++i) {
72  ("%s.response_ports%d", name(), i), this,
73  p.ruby_system->getAccessBackingStore(),
74  i, p.no_retry_on_stall));
75  }
76 
77  // create the request ports based on the number of connected ports
78  for (size_t i = 0; i < p.port_interrupt_out_port_connection_count; ++i) {
80  "%s.request_ports%d", name(), i), this));
81  }
82 }
83 
84 void
86 {
87  assert(m_controller != NULL);
89  for (const auto &response_port : response_ports)
90  response_port->sendRangeChange();
91 }
92 
93 Port &
94 RubyPort::getPort(const std::string &if_name, PortID idx)
95 {
96  if (if_name == "mem_request_port") {
97  return memRequestPort;
98  } else if (if_name == "pio_request_port") {
99  return pioRequestPort;
100  } else if (if_name == "mem_response_port") {
101  return memResponsePort;
102  } else if (if_name == "pio_response_port") {
103  return pioResponsePort;
104  } else if (if_name == "interrupt_out_port") {
105  // used by the x86 CPUs to connect the interrupt PIO and interrupt
106  // response port
107  if (idx >= static_cast<PortID>(request_ports.size())) {
108  panic("%s: unknown %s index (%d)\n", __func__, if_name, idx);
109  }
110 
111  return *request_ports[idx];
112  } else if (if_name == "in_ports") {
113  // used by the CPUs to connect the caches to the interconnect, and
114  // for the x86 case also the interrupt request port
115  if (idx >= static_cast<PortID>(response_ports.size())) {
116  panic("%s: unknown %s index (%d)\n", __func__, if_name, idx);
117  }
118 
119  return *response_ports[idx];
120  }
121 
122  // pass it along to our super class
123  return ClockedObject::getPort(if_name, idx);
124 }
125 
127  RubyPort *_port)
128  : QueuedRequestPort(_name, _port, reqQueue, snoopRespQueue),
129  reqQueue(*_port, *this), snoopRespQueue(*_port, *this)
130 {
131  DPRINTF(RubyPort, "Created request pioport on sequencer %s\n", _name);
132 }
133 
135  RubyPort *_port)
136  : QueuedResponsePort(_name, _port, queue), queue(*_port, *this)
137 {
138  DPRINTF(RubyPort, "Created response pioport on sequencer %s\n", _name);
139 }
140 
142  RubyPort *_port)
143  : QueuedRequestPort(_name, _port, reqQueue, snoopRespQueue),
144  reqQueue(*_port, *this), snoopRespQueue(*_port, *this)
145 {
146  DPRINTF(RubyPort, "Created request memport on ruby sequencer %s\n", _name);
147 }
148 
150 MemResponsePort::MemResponsePort(const std::string &_name, RubyPort *_port,
151  bool _access_backing_store, PortID id,
152  bool _no_retry_on_stall)
153  : QueuedResponsePort(_name, _port, queue, id), queue(*_port, *this),
154  access_backing_store(_access_backing_store),
155  no_retry_on_stall(_no_retry_on_stall)
156 {
157  DPRINTF(RubyPort, "Created response memport on ruby sequencer %s\n",
158  _name);
159 }
160 
161 bool
163 {
164  RubyPort *rp = static_cast<RubyPort *>(&owner);
165  DPRINTF(RubyPort, "Response for address: 0x%#x\n", pkt->getAddr());
166 
167  // send next cycle
169  pkt, curTick() + rp->m_ruby_system->clockPeriod());
170  return true;
171 }
172 
174 {
175  // got a response from a device
176  assert(pkt->isResponse());
177  assert(!pkt->htmTransactionFailedInCache());
178 
179  // First we must retrieve the request port from the sender State
180  RubyPort::SenderState *senderState =
181  safe_cast<RubyPort::SenderState *>(pkt->popSenderState());
182  MemResponsePort *port = senderState->port;
183  assert(port != NULL);
184  delete senderState;
185 
186  // In FS mode, ruby memory will receive pio responses from devices
187  // and it must forward these responses back to the particular CPU.
188  DPRINTF(RubyPort, "Pio response for address %#x, going to %s\n",
189  pkt->getAddr(), port->name());
190 
191  // attempt to send the response in the next cycle
192  RubyPort *rp = static_cast<RubyPort *>(&owner);
193  port->schedTimingResp(pkt, curTick() + rp->m_ruby_system->clockPeriod());
194 
195  return true;
196 }
197 
198 bool
200 {
201  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
202 
203  for (size_t i = 0; i < ruby_port->request_ports.size(); ++i) {
204  AddrRangeList l = ruby_port->request_ports[i]->getAddrRanges();
205  for (auto it = l.begin(); it != l.end(); ++it) {
206  if (it->contains(pkt->getAddr())) {
207  // generally it is not safe to assume success here as
208  // the port could be blocked
209  M5_VAR_USED bool success =
210  ruby_port->request_ports[i]->sendTimingReq(pkt);
211  assert(success);
212  return true;
213  }
214  }
215  }
216  panic("Should never reach here!\n");
217 }
218 
219 Tick
221 {
222  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
223  // Only atomic_noncaching mode supported!
224  if (!ruby_port->system->bypassCaches()) {
225  panic("Ruby supports atomic accesses only in noncaching mode\n");
226  }
227 
228  for (size_t i = 0; i < ruby_port->request_ports.size(); ++i) {
229  AddrRangeList l = ruby_port->request_ports[i]->getAddrRanges();
230  for (auto it = l.begin(); it != l.end(); ++it) {
231  if (it->contains(pkt->getAddr())) {
232  return ruby_port->request_ports[i]->sendAtomic(pkt);
233  }
234  }
235  }
236  panic("Could not find address in Ruby PIO address ranges!\n");
237 }
238 
239 bool
241 {
242  DPRINTF(RubyPort, "Timing request for address %#x on port %d\n",
243  pkt->getAddr(), id);
244  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
245 
246  if (pkt->cacheResponding())
247  panic("RubyPort should never see request with the "
248  "cacheResponding flag set\n");
249 
250  // ruby doesn't support cache maintenance operations at the
251  // moment, as a workaround, we respond right away
252  if (pkt->req->isCacheMaintenance()) {
253  warn_once("Cache maintenance operations are not supported in Ruby.\n");
254  pkt->makeResponse();
255  schedTimingResp(pkt, curTick());
256  return true;
257  }
258  // Check for pio requests and directly send them to the dedicated
259  // pio port.
260  if (pkt->cmd != MemCmd::MemSyncReq) {
261  if (!isPhysMemAddress(pkt)) {
262  assert(!pkt->req->isHTMCmd());
263  assert(ruby_port->memRequestPort.isConnected());
264  DPRINTF(RubyPort, "Request address %#x assumed to be a "
265  "pio address\n", pkt->getAddr());
266 
267  // Save the port in the sender state object to be used later to
268  // route the response
269  pkt->pushSenderState(new SenderState(this));
270 
271  // send next cycle
272  RubySystem *rs = ruby_port->m_ruby_system;
273  ruby_port->memRequestPort.schedTimingReq(pkt,
274  curTick() + rs->clockPeriod());
275  return true;
276  }
277  }
278 
279  // Save the port in the sender state object to be used later to
280  // route the response
281  pkt->pushSenderState(new SenderState(this));
282 
283  // Submit the ruby request
284  RequestStatus requestStatus = ruby_port->makeRequest(pkt);
285 
286  // If the request successfully issued then we should return true.
287  // Otherwise, we need to tell the port to retry at a later point
288  // and return false.
289  if (requestStatus == RequestStatus_Issued) {
290  DPRINTF(RubyPort, "Request %s 0x%x issued\n", pkt->cmdString(),
291  pkt->getAddr());
292  return true;
293  }
294 
295  // pop off sender state as this request failed to issue
296  SenderState *ss = safe_cast<SenderState *>(pkt->popSenderState());
297  delete ss;
298 
299  if (pkt->cmd != MemCmd::MemSyncReq) {
301  "Request %s for address %#x did not issue because %s\n",
302  pkt->cmdString(), pkt->getAddr(),
303  RequestStatus_to_string(requestStatus));
304  }
305 
306  addToRetryList();
307 
308  return false;
309 }
310 
311 Tick
313 {
314  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
315  // Only atomic_noncaching mode supported!
316  if (!ruby_port->system->bypassCaches()) {
317  panic("Ruby supports atomic accesses only in noncaching mode\n");
318  }
319 
320  // Check for pio requests and directly send them to the dedicated
321  // pio port.
322  if (pkt->cmd != MemCmd::MemSyncReq) {
323  if (!isPhysMemAddress(pkt)) {
324  assert(ruby_port->memRequestPort.isConnected());
325  DPRINTF(RubyPort, "Request address %#x assumed to be a "
326  "pio address\n", pkt->getAddr());
327 
328  // Save the port in the sender state object to be used later to
329  // route the response
330  pkt->pushSenderState(new SenderState(this));
331 
332  // send next cycle
333  Tick req_ticks = ruby_port->memRequestPort.sendAtomic(pkt);
334  return ruby_port->ticksToCycles(req_ticks);
335  }
336 
337  assert(getOffset(pkt->getAddr()) + pkt->getSize() <=
339  }
340 
341  // Find appropriate directory for address
342  // This assumes that protocols have a Directory machine,
343  // which has its memPort hooked up to memory. This can
344  // fail for some custom protocols.
345  MachineID id = ruby_port->m_controller->mapAddressToMachine(
346  pkt->getAddr(), MachineType_Directory);
347  RubySystem *rs = ruby_port->m_ruby_system;
348  AbstractController *directory =
349  rs->m_abstract_controls[id.getType()][id.getNum()];
350  Tick latency = directory->recvAtomic(pkt);
351  if (access_backing_store)
352  rs->getPhysMem()->access(pkt);
353  return latency;
354 }
355 
356 void
358 {
359  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
360 
361  //
362  // Unless the request port do not want retries (e.g., the Ruby tester),
363  // record the stalled M5 port for later retry when the sequencer
364  // becomes free.
365  //
366  if (!no_retry_on_stall && !ruby_port->onRetryList(this)) {
367  ruby_port->addToRetryList(this);
368  }
369 }
370 
371 void
373 {
374  DPRINTF(RubyPort, "Functional access for address: %#x\n", pkt->getAddr());
375 
376  M5_VAR_USED RubyPort *rp = static_cast<RubyPort *>(&owner);
377  RubySystem *rs = rp->m_ruby_system;
378 
379  // Check for pio requests and directly send them to the dedicated
380  // pio port.
381  if (!isPhysMemAddress(pkt)) {
382  DPRINTF(RubyPort, "Pio Request for address: 0x%#x\n", pkt->getAddr());
383  assert(rp->pioRequestPort.isConnected());
384  rp->pioRequestPort.sendFunctional(pkt);
385  return;
386  }
387 
388  assert(pkt->getAddr() + pkt->getSize() <=
390 
391  if (access_backing_store) {
392  // The attached physmem contains the official version of data.
393  // The following command performs the real functional access.
394  // This line should be removed once Ruby supplies the official version
395  // of data.
396  rs->getPhysMem()->functionalAccess(pkt);
397  } else {
398  bool accessSucceeded = false;
399  bool needsResponse = pkt->needsResponse();
400 
401  // Do the functional access on ruby memory
402  if (pkt->isRead()) {
403  accessSucceeded = rs->functionalRead(pkt);
404  } else if (pkt->isWrite()) {
405  accessSucceeded = rs->functionalWrite(pkt);
406  } else {
407  panic("Unsupported functional command %s\n", pkt->cmdString());
408  }
409 
410  // Unless the request port explicitly said otherwise, generate an error
411  // if the functional request failed
412  if (!accessSucceeded && !pkt->suppressFuncError()) {
413  fatal("Ruby functional %s failed for address %#x\n",
414  pkt->isWrite() ? "write" : "read", pkt->getAddr());
415  }
416 
417  // turn packet around to go back to request port if response expected
418  if (needsResponse) {
419  // The pkt is already turned into a reponse if the directory
420  // forwarded the request to the memory controller (see
421  // AbstractController::functionalMemoryWrite and
422  // AbstractMemory::functionalAccess)
423  if (!pkt->isResponse())
424  pkt->makeResponse();
425  pkt->setFunctionalResponseStatus(accessSucceeded);
426  }
427 
428  DPRINTF(RubyPort, "Functional access %s!\n",
429  accessSucceeded ? "successful":"failed");
430  }
431 }
432 
433 void
435 {
436  DPRINTF(RubyPort, "Hit callback for %s 0x%x\n", pkt->cmdString(),
437  pkt->getAddr());
438 
439  // The packet was destined for memory and has not yet been turned
440  // into a response
441  assert(system->isMemAddr(pkt->getAddr()) || system->isDeviceMemAddr(pkt));
442  assert(pkt->isRequest());
443 
444  // First we must retrieve the request port from the sender State
445  RubyPort::SenderState *senderState =
446  safe_cast<RubyPort::SenderState *>(pkt->popSenderState());
447  MemResponsePort *port = senderState->port;
448  assert(port != NULL);
449  delete senderState;
450 
451  port->hitCallback(pkt);
452 
453  trySendRetries();
454 }
455 
456 void
458 {
459  //
460  // If we had to stall the MemResponsePorts, wake them up because the
461  // sequencer likely has free resources now.
462  //
463  if (!retryList.empty()) {
464  // Record the current list of ports to retry on a temporary list
465  // before calling sendRetryReq on those ports. sendRetryReq will cause
466  // an immediate retry, which may result in the ports being put back on
467  // the list. Therefore we want to clear the retryList before calling
468  // sendRetryReq.
470 
471  retryList.clear();
472 
473  for (auto i = curRetryList.begin(); i != curRetryList.end(); ++i) {
475  "Sequencer may now be free. SendRetry to port %s\n",
476  (*i)->name());
477  (*i)->sendRetryReq();
478  }
479  }
480 }
481 
482 void
484 {
485  //If we weren't able to drain before, we might be able to now.
486  if (drainState() == DrainState::Draining) {
487  unsigned int drainCount = outstandingCount();
488  DPRINTF(Drain, "Drain count: %u\n", drainCount);
489  if (drainCount == 0) {
490  DPRINTF(Drain, "RubyPort done draining, signaling drain done\n");
491  signalDrainDone();
492  }
493  }
494 }
495 
498 {
499  if (isDeadlockEventScheduled()) {
501  }
502 
503  //
504  // If the RubyPort is not empty, then it needs to clear all outstanding
505  // requests before it should call signalDrainDone()
506  //
507  DPRINTF(Config, "outstanding count %d\n", outstandingCount());
508  if (outstandingCount() > 0) {
509  DPRINTF(Drain, "RubyPort not drained\n");
510  return DrainState::Draining;
511  } else {
512  return DrainState::Drained;
513  }
514 }
515 
516 void
518 {
519  bool needsResponse = pkt->needsResponse();
520 
521  // Unless specified at configuration, all responses except failed SC
522  // and Flush operations access M5 physical memory.
523  bool accessPhysMem = access_backing_store;
524 
525  if (pkt->isLLSC()) {
526  if (pkt->isWrite()) {
527  if (pkt->req->getExtraData() != 0) {
528  //
529  // Successful SC packets convert to normal writes
530  //
531  pkt->convertScToWrite();
532  } else {
533  //
534  // Failed SC packets don't access physical memory and thus
535  // the RubyPort itself must convert it to a response.
536  //
537  accessPhysMem = false;
538  }
539  } else {
540  //
541  // All LL packets convert to normal loads so that M5 PhysMem does
542  // not lock the blocks.
543  //
544  pkt->convertLlToRead();
545  }
546  }
547 
548  // Flush, acquire, release requests don't access physical memory
549  if (pkt->isFlush() || pkt->cmd == MemCmd::MemSyncReq
550  || pkt->cmd == MemCmd::WriteCompleteResp) {
551  accessPhysMem = false;
552  }
553 
554  if (pkt->req->isKernel()) {
555  accessPhysMem = false;
556  needsResponse = true;
557  }
558 
559  DPRINTF(RubyPort, "Hit callback needs response %d\n", needsResponse);
560 
561  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
562  RubySystem *rs = ruby_port->m_ruby_system;
563  if (accessPhysMem) {
564  // We must check device memory first in case it overlaps with the
565  // system memory range.
566  if (ruby_port->system->isDeviceMemAddr(pkt)) {
567  auto dmem = ruby_port->system->getDeviceMemory(pkt->requestorId());
568  dmem->access(pkt);
569  } else if (ruby_port->system->isMemAddr(pkt->getAddr())) {
570  rs->getPhysMem()->access(pkt);
571  } else {
572  panic("Packet is in neither device nor system memory!");
573  }
574  } else if (needsResponse) {
575  pkt->makeResponse();
576  }
577 
578  // turn packet around to go back to request port if response expected
579  if (needsResponse || pkt->isResponse()) {
580  DPRINTF(RubyPort, "Sending packet back over port\n");
581  // Send a response in the same cycle. There is no need to delay the
582  // response because the response latency is already incurred in the
583  // Ruby protocol.
584  schedTimingResp(pkt, curTick());
585  } else {
586  delete pkt;
587  }
588 
589  DPRINTF(RubyPort, "Hit callback done!\n");
590 }
591 
594 {
595  // at the moment the assumption is that the request port does not care
596  AddrRangeList ranges;
597  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
598 
599  for (size_t i = 0; i < ruby_port->request_ports.size(); ++i) {
600  ranges.splice(ranges.begin(),
601  ruby_port->request_ports[i]->getAddrRanges());
602  }
603  for (M5_VAR_USED const auto &r : ranges)
604  DPRINTF(RubyPort, "%s\n", r.to_string());
605  return ranges;
606 }
607 
608 bool
610 {
611  RubyPort *ruby_port = static_cast<RubyPort *>(&owner);
612  return ruby_port->system->isMemAddr(pkt->getAddr())
613  || ruby_port->system->isDeviceMemAddr(pkt);
614 }
615 
616 void
618 {
619  DPRINTF(RubyPort, "Sending invalidations.\n");
620  // Allocate the invalidate request and packet on the stack, as it is
621  // assumed they will not be modified or deleted by receivers.
622  // TODO: should this really be using funcRequestorId?
623  auto request = std::make_shared<Request>(
624  address, RubySystem::getBlockSizeBytes(), 0,
626 
627  // Use a single packet to signal all snooping ports of the invalidation.
628  // This assumes that snooping ports do NOT modify the packet/request
629  Packet pkt(request, MemCmd::InvalidateReq);
630  for (CpuPortIter p = response_ports.begin(); p != response_ports.end();
631  ++p) {
632  // check if the connected request port is snooping
633  if ((*p)->isSnooping()) {
634  // send as a snoop request
635  (*p)->sendTimingSnoopReq(&pkt);
636  }
637  }
638 }
639 
640 void
642 {
643  RubyPort &r = static_cast<RubyPort &>(owner);
644  r.gotAddrRanges--;
645  if (r.gotAddrRanges == 0 && FullSystem) {
646  r.pioResponsePort.sendRangeChange();
647  }
648 }
649 
650 int
652 {
653  int num_written = 0;
654  for (auto port : response_ports) {
655  if (port->trySatisfyFunctional(func_pkt)) {
656  num_written += 1;
657  }
658  }
659  return num_written;
660 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
RubyPort::MemResponsePort::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
Definition: RubyPort.cc:312
Packet::isResponse
bool isResponse() const
Definition: packet.hh:561
RubyPort::isDeadlockEventScheduled
virtual bool isDeadlockEventScheduled() const =0
RubyPort::ruby_hit_callback
void ruby_hit_callback(PacketPtr pkt)
Definition: RubyPort.cc:434
RubyPort::init
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: RubyPort.cc:85
system.hh
Packet::cacheResponding
bool cacheResponding() const
Definition: packet.hh:620
RubySystem::getBlockSizeBytes
static uint32_t getBlockSizeBytes()
Definition: RubySystem.hh:61
AbstractController::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Definition: AbstractController.cc:391
Packet::getAddr
Addr getAddr() const
Definition: packet.hh:755
makeLineAddress
Addr makeLineAddress(Addr addr)
Definition: Address.cc:54
Packet::convertLlToRead
void convertLlToRead()
When ruby is in use, Ruby will monitor the cache line and the phys memory should treat LL ops as norm...
Definition: packet.hh:813
RubyPort::Params
RubyPortParams Params
Definition: RubyPort.hh:146
warn_once
#define warn_once(...)
Definition: logging.hh:243
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
RubyPort::PioRequestPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: RubyPort.cc:162
AbstractController::getMandatoryQueue
virtual MessageBuffer * getMandatoryQueue() const =0
RubyPort::MemResponsePort::addToRetryList
void addToRetryList()
Definition: RubyPort.cc:357
RubyPort::PioResponsePort::recvAtomic
Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
Definition: RubyPort.cc:220
RubyPort::PioResponsePort::recvTimingReq
bool recvTimingReq(PacketPtr pkt)
Receive a timing request from the peer.
Definition: RubyPort.cc:199
RubyPort::testDrainComplete
void testDrainComplete()
Definition: RubyPort.cc:483
Packet::isRead
bool isRead() const
Definition: packet.hh:557
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
AbstractController::mapAddressToMachine
MachineID mapAddressToMachine(Addr addr, MachineType mtype) const
Map an address to the correct MachineID.
Definition: AbstractController.cc:397
AbstractController.hh
RubyPort::RubyPort
RubyPort(const Params &p)
Definition: RubyPort.cc:54
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
RubyPort::drain
DrainState drain() override
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are pa...
Definition: RubyPort.cc:497
Packet::req
RequestPtr req
A pointer to the original request.
Definition: packet.hh:341
Packet::isLLSC
bool isLLSC() const
Definition: packet.hh:583
Packet::requestorId
RequestorID requestorId() const
Definition: packet.hh:741
std::vector
STL vector class.
Definition: stl.hh:37
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
Packet::getSize
unsigned getSize() const
Definition: packet.hh:765
AbstractController
Definition: AbstractController.hh:76
RubyPort::MemResponsePort::recvFunctional
void recvFunctional(PacketPtr pkt)
Receive a functional request packet from the peer.
Definition: RubyPort.cc:372
RubyPort::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: RubyPort.cc:94
Packet::isRequest
bool isRequest() const
Definition: packet.hh:560
RubyPort::PioResponsePort::getAddrRanges
AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: RubyPort.cc:593
RubyPort::onRetryList
bool onRetryList(MemResponsePort *port)
Definition: RubyPort.hh:198
QueuedResponsePort::schedTimingResp
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
Definition: qport.hh:90
Packet::convertScToWrite
void convertScToWrite()
It has been determined that the SC packet should successfully update memory.
Definition: packet.hh:801
RubyPort::MemRequestPort::MemRequestPort
MemRequestPort(const std::string &_name, RubyPort *_port)
Definition: RubyPort.cc:141
RubyPort::makeRequest
virtual RequestStatus makeRequest(PacketPtr pkt)=0
MachineID
Definition: MachineID.hh:50
QueuedRequestPort::schedTimingReq
void schedTimingReq(PacketPtr pkt, Tick when)
Schedule the sending of a timing request.
Definition: qport.hh:146
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
RubyPort::m_mandatory_q_ptr
MessageBuffer * m_mandatory_q_ptr
Definition: RubyPort.hh:191
DrainState::Drained
@ Drained
Buffers drained, ready for serialization/handover.
RubyPort::m_controller
AbstractController * m_controller
Definition: RubyPort.hh:190
DrainState
DrainState
Object drain/handover states.
Definition: drain.hh:71
MemCmd::WriteCompleteResp
@ WriteCompleteResp
Definition: packet.hh:88
X86ISA::system
Bitfield< 15 > system
Definition: misc.hh:997
RubyPort::response_ports
std::vector< MemResponsePort * > response_ports
Definition: RubyPort.hh:195
RubyPort::MemResponsePort
Definition: RubyPort.hh:75
ArmISA::ss
Bitfield< 21 > ss
Definition: miscregs_types.hh:56
AbstractMemory::access
void access(PacketPtr pkt)
Perform an untimed memory access and update all the state (e.g.
Definition: abstract_mem.cc:368
QueuedRequestPort
The QueuedRequestPort combines two queues, a request queue and a snoop response queue,...
Definition: qport.hh:106
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
SenderState
RubyTester::SenderState SenderState
Definition: Check.cc:37
RubySystem
Definition: RubySystem.hh:52
Packet::cmdString
const std::string & cmdString() const
Return the string name of the cmd field (for debugging and tracing).
Definition: packet.hh:552
RubyPort
Definition: RubyPort.hh:58
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
Packet::needsResponse
bool needsResponse() const
Definition: packet.hh:571
MipsISA::r
r
Definition: pra_constants.hh:95
RubyTester.hh
RubyPort::MemResponsePort::MemResponsePort
MemResponsePort(const std::string &_name, RubyPort *_port, bool _access_backing_store, PortID id, bool _no_retry_on_stall)
Definition: RubyPort.cc:150
Packet::suppressFuncError
bool suppressFuncError() const
Definition: packet.hh:719
System::bypassCaches
bool bypassCaches() const
Should caches be bypassed?
Definition: system.hh:274
Drainable::signalDrainDone
void signalDrainDone() const
Signal that an object is drained.
Definition: drain.hh:301
QueuedResponsePort
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:58
RubyPort::PioRequestPort
Definition: RubyPort.hh:105
RubyPort::memRequestPort
MemRequestPort memRequestPort
Definition: RubyPort.hh:211
RubyPort::system
System * system
Definition: RubyPort.hh:193
RubyPort::memResponsePort
MemResponsePort memResponsePort
Definition: RubyPort.hh:212
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Port::name
const std::string name() const
Return port name (for DPRINTF).
Definition: port.hh:106
Packet::makeResponse
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
Definition: packet.hh:1005
name
const std::string & name()
Definition: trace.cc:48
Packet::htmTransactionFailedInCache
bool htmTransactionFailedInCache() const
Returns whether or not this packet/request has returned from the cache hierarchy in a failed transact...
Definition: packet.cc:524
Clocked::clockPeriod
Tick clockPeriod() const
Definition: clocked_object.hh:214
Request::funcRequestorId
@ funcRequestorId
This requestor id is used for functional requests that don't come from a particular device.
Definition: request.hh:252
full_system.hh
RubyPort::functionalWrite
virtual int functionalWrite(Packet *func_pkt)
Definition: RubyPort.cc:651
RubyPort::PioResponsePort::PioResponsePort
PioResponsePort(const std::string &_name, RubyPort *_port)
Definition: RubyPort.cc:134
Drainable::drainState
DrainState drainState() const
Return the current drain state of an object.
Definition: drain.hh:320
RubyPort::pioRequestPort
PioRequestPort pioRequestPort
Definition: RubyPort.hh:209
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:182
RubyPort::addToRetryList
void addToRetryList(MemResponsePort *port)
Definition: RubyPort.hh:203
RubyPort::MemRequestPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: RubyPort.cc:173
Packet::cmd
MemCmd cmd
The command field of the packet.
Definition: packet.hh:336
Packet::pushSenderState
void pushSenderState(SenderState *sender_state)
Push a new sender state to the packet and make the current sender state the predecessor of the new on...
Definition: packet.cc:332
System::isDeviceMemAddr
bool isDeviceMemAddr(PacketPtr pkt) const
Similar to isMemAddr but for devices.
Definition: system.cc:421
RubyPort::PioRequestPort::recvRangeChange
void recvRangeChange()
Called to receive an address range change from the peer response port.
Definition: RubyPort.cc:641
Clocked::ticksToCycles
Cycles ticksToCycles(Tick t) const
Definition: clocked_object.hh:219
MemCmd::MemSyncReq
@ MemSyncReq
Definition: packet.hh:116
RubyPort::retryList
std::vector< MemResponsePort * > retryList
Definition: RubyPort.hh:223
RubyPort::request_ports
std::vector< PioRequestPort * > request_ports
Definition: RubyPort.hh:217
RubyPort::descheduleDeadlockEvent
virtual void descheduleDeadlockEvent()=0
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
Packet::popSenderState
SenderState * popSenderState()
Pop the top of the state stack and return a pointer to it.
Definition: packet.cc:340
RubyPort::SenderState::port
MemResponsePort * port
Definition: RubyPort.hh:141
getOffset
Addr getOffset(Addr addr)
Definition: Address.cc:48
RubyPort::MemResponsePort::hitCallback
void hitCallback(PacketPtr pkt)
Definition: RubyPort.cc:517
Port::isConnected
bool isConnected() const
Is this port currently connected to a peer?
Definition: port.hh:128
MemCmd::InvalidateReq
@ InvalidateReq
Definition: packet.hh:134
ArmISA::rs
Bitfield< 9, 8 > rs
Definition: miscregs_types.hh:372
Packet::isWrite
bool isWrite() const
Definition: packet.hh:558
RubyPort::PioRequestPort::PioRequestPort
PioRequestPort(const std::string &_name, RubyPort *_port)
Definition: RubyPort.cc:126
RubyPort::pioResponsePort
PioResponsePort pioResponsePort
Definition: RubyPort.hh:210
RubyPort::outstandingCount
virtual int outstandingCount() const =0
System::getDeviceMemory
AbstractMemory * getDeviceMemory(RequestorID _id) const
Return a pointer to the device memory.
Definition: system.cc:430
curTick
Tick curTick()
The universal simulation clock.
Definition: cur_tick.hh:43
Packet::isFlush
bool isFlush() const
Definition: packet.hh:586
RequestPort::sendAtomic
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time,...
Definition: port.hh:461
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
std::list< AddrRange >
RubyPort::trySendRetries
void trySendRetries()
Definition: RubyPort.cc:457
MipsISA::l
Bitfield< 5 > l
Definition: pra_constants.hh:320
RubyPort::MemResponsePort::isPhysMemAddress
bool isPhysMemAddress(PacketPtr pkt) const
Definition: RubyPort.cc:609
RubyPort.hh
RubyPort::m_ruby_system
RubySystem * m_ruby_system
Definition: RubyPort.hh:188
RubyPort::m_version
uint32_t m_version
Definition: RubyPort.hh:189
System::isMemAddr
bool isMemAddr(Addr addr) const
Check if a physical address is within a range of a memory that is part of the global address map.
Definition: system.cc:407
Packet::setFunctionalResponseStatus
void setFunctionalResponseStatus(bool success)
Definition: packet.hh:1029
RubyPort::SenderState
Definition: RubyPort.hh:139
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
RubyPort::CpuPortIter
std::vector< MemResponsePort * >::iterator CpuPortIter
Vector of M5 Ports attached to this Ruby port.
Definition: RubyPort.hh:216
RubyPort::ruby_eviction_callback
void ruby_eviction_callback(Addr address)
Definition: RubyPort.cc:617
DrainState::Draining
@ Draining
Draining buffers pending serialization/handover.
ArmISA::id
Bitfield< 33 > id
Definition: miscregs_types.hh:247
RubyPort::MemResponsePort::recvTimingReq
bool recvTimingReq(PacketPtr pkt)
Receive a timing request from the peer.
Definition: RubyPort.cc:240
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
simple_mem.hh

Generated on Tue Mar 23 2021 19:41:28 for gem5 by doxygen 1.8.17