mem: Update port terminology
authorShivani Parekh <shparekh@ucdavis.edu>
Thu, 6 Aug 2020 00:35:08 +0000 (17:35 -0700)
committerShivani Parekh <shparekh@ucdavis.edu>
Wed, 26 Aug 2020 16:48:13 +0000 (16:48 +0000)
Change-Id: Ib4fc8cad7139d4971e74930295a69e576f6da3cf
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/32314
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
Maintainer: Jason Lowe-Power <power.jg@gmail.com>
Tested-by: kokoro <noreply+kokoro@google.com>
41 files changed:
src/mem/AddrMapper.py
src/mem/Bridge.py
src/mem/CommMonitor.py
src/mem/ExternalMaster.py
src/mem/MemChecker.py
src/mem/MemDelay.py
src/mem/SerialLink.py
src/mem/XBar.py
src/mem/addr_mapper.hh
src/mem/bridge.cc
src/mem/bridge.hh
src/mem/cache/Cache.py
src/mem/cache/base.hh
src/mem/coherent_xbar.cc
src/mem/coherent_xbar.hh
src/mem/comm_monitor.hh
src/mem/external_master.hh
src/mem/hmc_controller.cc
src/mem/mem_checker_monitor.hh
src/mem/mem_delay.cc
src/mem/mem_delay.hh
src/mem/noncoherent_xbar.cc
src/mem/noncoherent_xbar.hh
src/mem/packet_queue.cc
src/mem/packet_queue.hh
src/mem/port_proxy.hh
src/mem/qos/QoSMemSinkCtrl.py
src/mem/qport.hh
src/mem/ruby/network/MessageBuffer.py
src/mem/ruby/slicc_interface/AbstractController.cc
src/mem/ruby/slicc_interface/AbstractController.hh
src/mem/ruby/slicc_interface/Controller.py
src/mem/ruby/system/Sequencer.py
src/mem/serial_link.cc
src/mem/serial_link.hh
src/mem/snoop_filter.cc
src/mem/snoop_filter.hh
src/mem/token_port.cc
src/mem/token_port.hh
src/mem/xbar.cc
src/mem/xbar.hh

index 1e8dfea1f48a65a0d6a7f0db8d32ad2b6df2dae0..52d7ef82969d03fd4ab711f1194f36d630f958c6 100644 (file)
@@ -48,8 +48,8 @@ class AddrMapper(SimObject):
     abstract = True
 
     # one port in each direction
-    master = MasterPort("Master port")
-    slave = SlavePort("Slave port")
+    master = RequestPort("Master port")
+    slave = ResponsePort("Slave port")
 
 
 # Range address mapper that maps a set of original ranges to a set of
index 95caa0cefc2f637b0c5600235cf64d846f21df9f..a89e7f9934da91ec68d6a3a9c915b2f7c016dccf 100644 (file)
@@ -42,8 +42,8 @@ from m5.objects.ClockedObject import ClockedObject
 class Bridge(ClockedObject):
     type = 'Bridge'
     cxx_header = "mem/bridge.hh"
-    slave = SlavePort('Slave port')
-    master = MasterPort('Master port')
+    slave = ResponsePort('Slave port')
+    master = RequestPort('Master port')
     req_size = Param.Unsigned(16, "The number of requests to buffer")
     resp_size = Param.Unsigned(16, "The number of responses to buffer")
     delay = Param.Latency('0ns', "The latency of this bridge")
index b1229c7fb34238c57dc29fce7c58e19ecd1f23aa..0fd884d7f3b17d9fbf0a8f6b3103156cfbab1a1e 100644 (file)
@@ -47,8 +47,8 @@ class CommMonitor(SimObject):
     system = Param.System(Parent.any, "System that the monitor belongs to.")
 
     # one port in each direction
-    master = MasterPort("Master port")
-    slave = SlavePort("Slave port")
+    master = RequestPort("Master port")
+    slave = ResponsePort("Slave port")
 
     # control the sample period window length of this monitor
     sample_period = Param.Clock("1ms", "Sample period for histograms")
index bcc38365fe2756d0cbbc3a18f2b83f98de9897dc..6d8b5df2b8cba067ceb39ccdee8b1add1a887d9d 100644 (file)
@@ -41,7 +41,7 @@ class ExternalMaster(SimObject):
     type = 'ExternalMaster'
     cxx_header = "mem/external_master.hh"
 
-    port = MasterPort("Master port")
+    port = RequestPort("Master port")
 
     port_type = Param.String('stub', 'Registered external port handler'
         ' to pass this port to in instantiation')
index 06719622425d7946e3d32342bce90119dea28962..714ea79fda381ad30aa973ce5d4d25170df74117 100644 (file)
@@ -46,10 +46,10 @@ class MemCheckerMonitor(SimObject):
     cxx_header = "mem/mem_checker_monitor.hh"
 
     # one port in each direction
-    master = MasterPort("Master port")
-    slave = SlavePort("Slave port")
-    cpu_side = SlavePort("Alias for slave")
-    mem_side = MasterPort("Alias for master")
+    master = RequestPort("Master port")
+    slave = ResponsePort("Slave port")
+    cpu_side = ResponsePort("Alias for slave")
+    mem_side = RequestPort("Alias for master")
     warn_only = Param.Bool(False, "Warn about violations only")
     memchecker = Param.MemChecker("Instance shared with other monitors")
 
index fdc0350c67ff9afc352474275b80e18b459da7b7..7ffb608100b5cd2385b1b2368de1f217eb46ac9f 100644 (file)
@@ -41,8 +41,8 @@ class MemDelay(ClockedObject):
     cxx_header = 'mem/mem_delay.hh'
     abstract = True
 
-    master = MasterPort("Master port")
-    slave = SlavePort("Slave port")
+    master = RequestPort("Master port")
+    slave = ResponsePort("Slave port")
 
 class SimpleMemDelay(MemDelay):
     type = 'SimpleMemDelay'
index 254c623ebe965e1a05585fe53af1b43546285d70..2174bc7a626b169da93efebb1a4114f53d2bbbf9 100644 (file)
@@ -46,8 +46,8 @@ from m5.objects.ClockedObject import ClockedObject
 class SerialLink(ClockedObject):
     type = 'SerialLink'
     cxx_header = "mem/serial_link.hh"
-    slave = SlavePort('Slave port')
-    master = MasterPort('Master port')
+    slave = ResponsePort('Slave port')
+    master = RequestPort('Master port')
     req_size = Param.Unsigned(16, "The number of requests to buffer")
     resp_size = Param.Unsigned(16, "The number of responses to buffer")
     delay = Param.Latency('0ns', "The latency of this serial_link")
index 84aae9948f0d1a3d416b2e0453f0dd76f5527c30..af135876d2b76d5db7aa3751aac8042daceb1164 100644 (file)
@@ -78,7 +78,7 @@ class BaseXBar(ClockedObject):
 
     # The default port can be left unconnected, or be used to connect
     # a default slave port
-    default = MasterPort("Port for connecting an optional default slave")
+    default = RequestPort("Port for connecting an optional default slave")
 
     # The default port can be used unconditionally, or based on
     # address range, in which case it may overlap with other
index 7736b261fe6907a8a266be347dc82a317902b60e..5e680a8345b6230d31ac4d2be9b3060719c0c415 100644 (file)
@@ -98,13 +98,13 @@ class AddrMapper : public SimObject
 
     };
 
-    class MapperMasterPort : public MasterPort
+    class MapperMasterPort : public RequestPort
     {
 
       public:
 
         MapperMasterPort(const std::string& _name, AddrMapper& _mapper)
-            : MasterPort(_name, &_mapper), mapper(_mapper)
+            : RequestPort(_name, &_mapper), mapper(_mapper)
         { }
 
       protected:
@@ -153,13 +153,13 @@ class AddrMapper : public SimObject
     /** Instance of master port, facing the memory side */
     MapperMasterPort masterPort;
 
-    class MapperSlavePort : public SlavePort
+    class MapperSlavePort : public ResponsePort
     {
 
       public:
 
         MapperSlavePort(const std::string& _name, AddrMapper& _mapper)
-            : SlavePort(_name, &_mapper), mapper(_mapper)
+            : ResponsePort(_name, &_mapper), mapper(_mapper)
         { }
 
       protected:
index fea5a4bef5d940300327c1fe85f379883eb0316d..3cf61f5086f067cc6c4628de438b0ec925aca3fa 100644 (file)
@@ -55,7 +55,7 @@ Bridge::BridgeSlavePort::BridgeSlavePort(const std::string& _name,
                                          BridgeMasterPort& _masterPort,
                                          Cycles _delay, int _resp_limit,
                                          std::vector<AddrRange> _ranges)
-    : SlavePort(_name, &_bridge), bridge(_bridge), masterPort(_masterPort),
+    : ResponsePort(_name, &_bridge), bridge(_bridge), masterPort(_masterPort),
       delay(_delay), ranges(_ranges.begin(), _ranges.end()),
       outstandingResponses(0), retryReq(false), respQueueLimit(_resp_limit),
       sendEvent([this]{ trySendTiming(); }, _name)
@@ -66,7 +66,7 @@ Bridge::BridgeMasterPort::BridgeMasterPort(const std::string& _name,
                                            Bridge& _bridge,
                                            BridgeSlavePort& _slavePort,
                                            Cycles _delay, int _req_limit)
-    : MasterPort(_name, &_bridge), bridge(_bridge), slavePort(_slavePort),
+    : RequestPort(_name, &_bridge), bridge(_bridge), slavePort(_slavePort),
       delay(_delay), reqQueueLimit(_req_limit),
       sendEvent([this]{ trySendTiming(); }, _name)
 {
index de4cb8de81cb8fa9d8d9fd06bbc566176c25e9c0..dca863daaf68e6e9d7e1aa1d166e2845b3fdbff8 100644 (file)
@@ -96,7 +96,7 @@ class Bridge : public ClockedObject
      * is responsible for. The slave port also has a buffer for the
      * responses not yet sent.
      */
-    class BridgeSlavePort : public SlavePort
+    class BridgeSlavePort : public ResponsePort
     {
 
       private:
@@ -216,7 +216,7 @@ class Bridge : public ClockedObject
      * responses. The master port has a buffer for the requests not
      * yet sent.
      */
-    class BridgeMasterPort : public MasterPort
+    class BridgeMasterPort : public RequestPort
     {
 
       private:
index 4f4e44588d1c890bf7cc09069a33c134d07b293a..9b20b656a975ced75cde7bd655f019a7d5275d7f 100644 (file)
@@ -107,8 +107,8 @@ class BaseCache(ClockedObject):
     sequential_access = Param.Bool(False,
         "Whether to access tags and data sequentially")
 
-    cpu_side = SlavePort("Upstream port closer to the CPU and/or device")
-    mem_side = MasterPort("Downstream port closer to memory")
+    cpu_side = ResponsePort("Upstream port closer to the CPU and/or device")
+    mem_side = RequestPort("Downstream port closer to memory")
 
     addr_ranges = VectorParam.AddrRange([AllMemory],
          "Address range for the CPU-side port (to allow striping)")
index d30de3f136b58cea758f3ef92d23e94bec1192a5..c129661a10c51c565ce53b71da3810feb1e1d1dd 100644 (file)
@@ -79,7 +79,7 @@ namespace Prefetcher {
     class Base;
 }
 class MSHR;
-class MasterPort;
+class RequestPort;
 class QueueEntry;
 struct BaseCacheParams;
 
@@ -166,7 +166,7 @@ class BaseCache : public ClockedObject
 
       public:
 
-        CacheReqPacketQueue(BaseCache &cache, MasterPort &port,
+        CacheReqPacketQueue(BaseCache &cache, RequestPort &port,
                             SnoopRespPacketQueue &snoop_resp_queue,
                             const std::string &label) :
             ReqPacketQueue(cache, port, label), cache(cache),
index 7fb9c346eaf11fcfdbe8b0c3d54417eb9ca361a2..c5778fb6e31d103e707959bf4563cb8e8df3b090 100644 (file)
@@ -68,7 +68,7 @@ CoherentXBar::CoherentXBar(const CoherentXBarParams *p)
     // are enumerated starting from zero
     for (int i = 0; i < p->port_master_connection_count; ++i) {
         std::string portName = csprintf("%s.master[%d]", name(), i);
-        MasterPort* bp = new CoherentXBarMasterPort(portName, *this, i);
+        RequestPort* bp = new CoherentXBarMasterPort(portName, *this, i);
         masterPorts.push_back(bp);
         reqLayers.push_back(new ReqLayer(*bp, *this,
                                          csprintf("reqLayer%d", i)));
@@ -81,7 +81,7 @@ CoherentXBar::CoherentXBar(const CoherentXBarParams *p)
     if (p->port_default_connection_count) {
         defaultPortID = masterPorts.size();
         std::string portName = name() + ".default";
-        MasterPort* bp = new CoherentXBarMasterPort(portName, *this,
+        RequestPort* bp = new CoherentXBarMasterPort(portName, *this,
                                                     defaultPortID);
         masterPorts.push_back(bp);
         reqLayers.push_back(new ReqLayer(*bp, *this, csprintf("reqLayer%d",
@@ -142,7 +142,7 @@ bool
 CoherentXBar::recvTimingReq(PacketPtr pkt, PortID slave_port_id)
 {
     // determine the source port based on the id
-    SlavePort *src_port = slavePorts[slave_port_id];
+    ResponsePort *src_port = slavePorts[slave_port_id];
 
     // remember if the packet is an express snoop
     bool is_express_snoop = pkt->isExpressSnoop();
@@ -439,7 +439,7 @@ bool
 CoherentXBar::recvTimingResp(PacketPtr pkt, PortID master_port_id)
 {
     // determine the source port based on the id
-    MasterPort *src_port = masterPorts[master_port_id];
+    RequestPort *src_port = masterPorts[master_port_id];
 
     // determine the destination
     const auto route_lookup = routeTo.find(pkt->req);
@@ -561,7 +561,7 @@ bool
 CoherentXBar::recvTimingSnoopResp(PacketPtr pkt, PortID slave_port_id)
 {
     // determine the source port based on the id
-    SlavePort* src_port = slavePorts[slave_port_id];
+    ResponsePort* src_port = slavePorts[slave_port_id];
 
     // get the destination
     const auto route_lookup = routeTo.find(pkt->req);
@@ -589,7 +589,7 @@ CoherentXBar::recvTimingSnoopResp(PacketPtr pkt, PortID slave_port_id)
         }
     } else {
         // get the master port that mirrors this slave port internally
-        MasterPort* snoop_port = snoopRespPorts[slave_port_id];
+        RequestPort* snoop_port = snoopRespPorts[slave_port_id];
         assert(dest_port_id < respLayers.size());
         if (!respLayers[dest_port_id]->tryTiming(snoop_port)) {
             DPRINTF(CoherentXBar, "%s: src %s packet %s BUSY\n", __func__,
index c70f7c1e537504c79c08f1911612f6b88873db93..300fc0c408fcad24f273d6f0491478debc806c31 100644 (file)
@@ -146,7 +146,7 @@ class CoherentXBar : public BaseXBar
      * instantiated for each of the slave interfaces connecting to the
      * crossbar.
      */
-    class CoherentXBarMasterPort : public MasterPort
+    class CoherentXBarMasterPort : public RequestPort
     {
       private:
         /** A reference to the crossbar to which this port belongs. */
@@ -156,7 +156,7 @@ class CoherentXBar : public BaseXBar
 
         CoherentXBarMasterPort(const std::string &_name,
                               CoherentXBar &_xbar, PortID _id)
-            : MasterPort(_name, &_xbar, _id), xbar(_xbar)
+            : RequestPort(_name, &_xbar, _id), xbar(_xbar)
         { }
 
       protected:
@@ -203,7 +203,7 @@ class CoherentXBar : public BaseXBar
      * from a slave port and forwarding it through an outgoing slave
      * port. It is effectively a dangling master port.
      */
-    class SnoopRespPort : public MasterPort
+    class SnoopRespPort : public RequestPort
     {
 
       private:
@@ -217,7 +217,7 @@ class CoherentXBar : public BaseXBar
          * Create a snoop response port that mirrors a given slave port.
          */
         SnoopRespPort(QueuedSlavePort& slave_port, CoherentXBar& _xbar) :
-            MasterPort(slave_port.name() + ".snoopRespPort", &_xbar),
+            RequestPort(slave_port.name() + ".snoopRespPort", &_xbar),
             slavePort(slave_port) { }
 
         /**
index 309077a7a2b0a8c7a2e866d328694363d503a082..33cf4d8ecacc40b86c85dfaa168ba783bd0cc79d 100644 (file)
@@ -117,13 +117,13 @@ class CommMonitor : public SimObject
      * send function of the slave port is called. Besides this, these
      * functions can also perform actions for capturing statistics.
      */
-    class MonitorMasterPort : public MasterPort
+    class MonitorMasterPort : public RequestPort
     {
 
       public:
 
         MonitorMasterPort(const std::string& _name, CommMonitor& _mon)
-            : MasterPort(_name, &_mon), mon(_mon)
+            : RequestPort(_name, &_mon), mon(_mon)
         { }
 
       protected:
@@ -183,13 +183,13 @@ class CommMonitor : public SimObject
      * send function of the master port is called. Besides this, these
      * functions can also perform actions for capturing statistics.
      */
-    class MonitorSlavePort : public SlavePort
+    class MonitorSlavePort : public ResponsePort
     {
 
       public:
 
         MonitorSlavePort(const std::string& _name, CommMonitor& _mon)
-            : SlavePort(_name, &_mon), mon(_mon)
+            : ResponsePort(_name, &_mon), mon(_mon)
         { }
 
       protected:
index 1988c9bdaa5bfa43e1a6b50679aa8f5b9e29eee0..d7aec112f4d803346488d7b3a1ecfb6d2f7204f6 100644 (file)
@@ -48,9 +48,9 @@
  * port which is to be bound to.  A port handler will usually construct a
  * bridge object in the external system to accomodate the port-to-port
  * mapping but this bridge is not exposed to gem5 other than be the
- * presentation of the MasterPort which can be bound.
+ * presentation of the RequestPort which can be bound.
  *
- * The external port must provide a gem5 MasterPort interface.
+ * The external port must provide a gem5 RequestPort interface.
  */
 
 #ifndef __MEM_EXTERNAL_MASTER_HH__
@@ -64,7 +64,7 @@ class ExternalMaster : public SimObject
 {
   public:
     /** Derive from this class to create an external port interface */
-    class ExternalPort : public MasterPort
+    class ExternalPort : public RequestPort
     {
       protected:
         ExternalMaster &owner;
@@ -72,7 +72,7 @@ class ExternalMaster : public SimObject
       public:
         ExternalPort(const std::string &name_,
             ExternalMaster &owner_) :
-            MasterPort(name_, &owner_), owner(owner_)
+            RequestPort(name_, &owner_), owner(owner_)
         { }
 
         ~ExternalPort() { }
@@ -83,7 +83,7 @@ class ExternalMaster : public SimObject
 
     /* Handlers are specific to *types* of port not specific port
      * instantiations.  A handler will typically build a bridge to the
-     * external port from gem5 and provide gem5 with a MasterPort that can be
+     * external port from gem5 and provide gem5 with a RequestPort that can be
      * bound to for each call to Handler::getExternalPort.*/
     class Handler
     {
index b706098a1362ff5427f3d4f7c577f68cb04eb184..e7b3f6a4fdbf5c4cbef6b505528c1642fae123b2 100644 (file)
@@ -43,7 +43,7 @@ int HMCController::rotate_counter()
 bool HMCController::recvTimingReq(PacketPtr pkt, PortID slave_port_id)
 {
     // determine the source port based on the id
-    SlavePort *src_port = slavePorts[slave_port_id];
+    ResponsePort *src_port = slavePorts[slave_port_id];
 
     // we should never see express snoops on a non-coherent component
     assert(!pkt->isExpressSnoop());
index 2bef3e52b52e72ca7abafd3d6150dac62f958320..c2fb80d59807d2235aac4dac0f85ea393242c086 100644 (file)
@@ -88,13 +88,13 @@ class MemCheckerMonitor : public SimObject
      * send function of the slave port is called. Besides this, these
      * functions can also perform actions for capturing statistics.
      */
-    class MonitorMasterPort : public MasterPort
+    class MonitorMasterPort : public RequestPort
     {
 
       public:
 
         MonitorMasterPort(const std::string& _name, MemCheckerMonitor& _mon)
-            : MasterPort(_name, &_mon), mon(_mon)
+            : RequestPort(_name, &_mon), mon(_mon)
         { }
 
       protected:
@@ -149,13 +149,13 @@ class MemCheckerMonitor : public SimObject
      * send function of the master port is called. Besides this, these
      * functions can also perform actions for capturing statistics.
      */
-    class MonitorSlavePort : public SlavePort
+    class MonitorSlavePort : public ResponsePort
     {
 
       public:
 
         MonitorSlavePort(const std::string& _name, MemCheckerMonitor& _mon)
-            : SlavePort(_name, &_mon), mon(_mon)
+            : ResponsePort(_name, &_mon), mon(_mon)
         { }
 
       protected:
index 9adc072bb78bd066908b61cac8e6349d96635d1b..9b4e7b63edf4fa5875781dbd2ac44a5ac2d9a735 100644 (file)
@@ -77,7 +77,7 @@ MemDelay::trySatisfyFunctional(PacketPtr pkt)
         masterPort.trySatisfyFunctional(pkt);
 }
 
-MemDelay::MasterPort::MasterPort(const std::string &_name, MemDelay &_parent)
+MemDelay::RequestPort::RequestPort(const std::string &_name, MemDelay &_parent)
     : QueuedMasterPort(_name, &_parent,
                        _parent.reqQueue, _parent.snoopRespQueue),
       parent(_parent)
@@ -85,7 +85,7 @@ MemDelay::MasterPort::MasterPort(const std::string &_name, MemDelay &_parent)
 }
 
 bool
-MemDelay::MasterPort::recvTimingResp(PacketPtr pkt)
+MemDelay::RequestPort::recvTimingResp(PacketPtr pkt)
 {
     // technically the packet only reaches us after the header delay,
     // and typically we also need to deserialise any payload
@@ -100,7 +100,7 @@ MemDelay::MasterPort::recvTimingResp(PacketPtr pkt)
 }
 
 void
-MemDelay::MasterPort::recvFunctionalSnoop(PacketPtr pkt)
+MemDelay::RequestPort::recvFunctionalSnoop(PacketPtr pkt)
 {
     if (parent.trySatisfyFunctional(pkt)) {
         pkt->makeResponse();
@@ -110,7 +110,7 @@ MemDelay::MasterPort::recvFunctionalSnoop(PacketPtr pkt)
 }
 
 Tick
-MemDelay::MasterPort::recvAtomicSnoop(PacketPtr pkt)
+MemDelay::RequestPort::recvAtomicSnoop(PacketPtr pkt)
 {
     const Tick delay = parent.delaySnoopResp(pkt);
 
@@ -118,20 +118,21 @@ MemDelay::MasterPort::recvAtomicSnoop(PacketPtr pkt)
 }
 
 void
-MemDelay::MasterPort::recvTimingSnoopReq(PacketPtr pkt)
+MemDelay::RequestPort::recvTimingSnoopReq(PacketPtr pkt)
 {
     parent.slavePort.sendTimingSnoopReq(pkt);
 }
 
 
-MemDelay::SlavePort::SlavePort(const std::string &_name, MemDelay &_parent)
+MemDelay::ResponsePort::
+ResponsePort(const std::string &_name, MemDelay &_parent)
     : QueuedSlavePort(_name, &_parent, _parent.respQueue),
       parent(_parent)
 {
 }
 
 Tick
-MemDelay::SlavePort::recvAtomic(PacketPtr pkt)
+MemDelay::ResponsePort::recvAtomic(PacketPtr pkt)
 {
     const Tick delay = parent.delayReq(pkt) + parent.delayResp(pkt);
 
@@ -139,7 +140,7 @@ MemDelay::SlavePort::recvAtomic(PacketPtr pkt)
 }
 
 bool
-MemDelay::SlavePort::recvTimingReq(PacketPtr pkt)
+MemDelay::ResponsePort::recvTimingReq(PacketPtr pkt)
 {
     // technically the packet only reaches us after the header
     // delay, and typically we also need to deserialise any
@@ -155,7 +156,7 @@ MemDelay::SlavePort::recvTimingReq(PacketPtr pkt)
 }
 
 void
-MemDelay::SlavePort::recvFunctional(PacketPtr pkt)
+MemDelay::ResponsePort::recvFunctional(PacketPtr pkt)
 {
     if (parent.trySatisfyFunctional(pkt)) {
         pkt->makeResponse();
@@ -165,7 +166,7 @@ MemDelay::SlavePort::recvFunctional(PacketPtr pkt)
 }
 
 bool
-MemDelay::SlavePort::recvTimingSnoopResp(PacketPtr pkt)
+MemDelay::ResponsePort::recvTimingSnoopResp(PacketPtr pkt)
 {
     const Tick when = curTick() + parent.delaySnoopResp(pkt);
 
index d2125ae9022ff63e78cbc8cd5f2ce7873346ae61..d337b3df67a56da0a9ed7a0c85dce47e1775587b 100644 (file)
@@ -71,10 +71,10 @@ class MemDelay : public ClockedObject
     Port &getPort(const std::string &if_name,
                   PortID idx=InvalidPortID) override;
 
-    class MasterPort : public QueuedMasterPort
+    class RequestPort : public QueuedMasterPort
     {
       public:
-        MasterPort(const std::string &_name, MemDelay &_parent);
+        RequestPort(const std::string &_name, MemDelay &_parent);
 
       protected:
         bool recvTimingResp(PacketPtr pkt) override;
@@ -97,10 +97,10 @@ class MemDelay : public ClockedObject
         MemDelay& parent;
     };
 
-    class SlavePort : public QueuedSlavePort
+    class ResponsePort : public QueuedSlavePort
     {
       public:
-        SlavePort(const std::string &_name, MemDelay &_parent);
+        ResponsePort(const std::string &_name, MemDelay &_parent);
 
       protected:
         Tick recvAtomic(PacketPtr pkt) override;
@@ -122,8 +122,8 @@ class MemDelay : public ClockedObject
 
     bool trySatisfyFunctional(PacketPtr pkt);
 
-    MasterPort masterPort;
-    SlavePort slavePort;
+    RequestPort masterPort;
+    ResponsePort slavePort;
 
     ReqPacketQueue reqQueue;
     RespPacketQueue respQueue;
index 7f8a05b4577c1f29dc31b18f1a49a4ad1eea12bc..47be023244c2d449d75be64f14e2c53ce2d4c94d 100644 (file)
@@ -58,7 +58,7 @@ NoncoherentXBar::NoncoherentXBar(const NoncoherentXBarParams *p)
     // are enumerated starting from zero
     for (int i = 0; i < p->port_master_connection_count; ++i) {
         std::string portName = csprintf("%s.master[%d]", name(), i);
-        MasterPort* bp = new NoncoherentXBarMasterPort(portName, *this, i);
+        RequestPort* bp = new NoncoherentXBarMasterPort(portName, *this, i);
         masterPorts.push_back(bp);
         reqLayers.push_back(new ReqLayer(*bp, *this,
                                          csprintf("reqLayer%d", i)));
@@ -69,7 +69,7 @@ NoncoherentXBar::NoncoherentXBar(const NoncoherentXBarParams *p)
     if (p->port_default_connection_count) {
         defaultPortID = masterPorts.size();
         std::string portName = name() + ".default";
-        MasterPort* bp = new NoncoherentXBarMasterPort(portName, *this,
+        RequestPort* bp = new NoncoherentXBarMasterPort(portName, *this,
                                                       defaultPortID);
         masterPorts.push_back(bp);
         reqLayers.push_back(new ReqLayer(*bp, *this, csprintf("reqLayer%d",
@@ -98,7 +98,7 @@ bool
 NoncoherentXBar::recvTimingReq(PacketPtr pkt, PortID slave_port_id)
 {
     // determine the source port based on the id
-    SlavePort *src_port = slavePorts[slave_port_id];
+    ResponsePort *src_port = slavePorts[slave_port_id];
 
     // we should never see express snoops on a non-coherent crossbar
     assert(!pkt->isExpressSnoop());
@@ -176,7 +176,7 @@ bool
 NoncoherentXBar::recvTimingResp(PacketPtr pkt, PortID master_port_id)
 {
     // determine the source port based on the id
-    MasterPort *src_port = masterPorts[master_port_id];
+    RequestPort *src_port = masterPorts[master_port_id];
 
     // determine the destination
     const auto route_lookup = routeTo.find(pkt->req);
index 86658d0f67a69ac24136a91a8175e02166ae2ddc..1d3541ca1961e8007552270ea7ff57eb406f2dd6 100644 (file)
@@ -135,7 +135,7 @@ class NoncoherentXBar : public BaseXBar
      * instantiated for each of the slave ports connecting to the
      * crossbar.
      */
-    class NoncoherentXBarMasterPort : public MasterPort
+    class NoncoherentXBarMasterPort : public RequestPort
     {
       private:
 
@@ -146,7 +146,7 @@ class NoncoherentXBar : public BaseXBar
 
         NoncoherentXBarMasterPort(const std::string &_name,
                                  NoncoherentXBar &_xbar, PortID _id)
-            : MasterPort(_name, &_xbar, _id), xbar(_xbar)
+            : RequestPort(_name, &_xbar, _id), xbar(_xbar)
         { }
 
       protected:
index acf29dd8f0fd4a041efb187b0f93694a36567d30..dab133c40bad88b81d3396fb9d4906ad3d596988 100644 (file)
@@ -232,7 +232,7 @@ PacketQueue::drain()
     }
 }
 
-ReqPacketQueue::ReqPacketQueue(EventManager& _em, MasterPort& _masterPort,
+ReqPacketQueue::ReqPacketQueue(EventManager& _em, RequestPort& _masterPort,
                                const std::string _label)
     : PacketQueue(_em, _label, name(_masterPort, _label)),
       masterPort(_masterPort)
@@ -246,7 +246,7 @@ ReqPacketQueue::sendTiming(PacketPtr pkt)
 }
 
 SnoopRespPacketQueue::SnoopRespPacketQueue(EventManager& _em,
-                                           MasterPort& _masterPort,
+                                           RequestPort& _masterPort,
                                            bool force_order,
                                            const std::string _label)
     : PacketQueue(_em, _label, name(_masterPort, _label), force_order),
@@ -260,7 +260,7 @@ SnoopRespPacketQueue::sendTiming(PacketPtr pkt)
     return masterPort.sendTimingSnoopResp(pkt);
 }
 
-RespPacketQueue::RespPacketQueue(EventManager& _em, SlavePort& _slavePort,
+RespPacketQueue::RespPacketQueue(EventManager& _em, ResponsePort& _slavePort,
                                  bool force_order,
                                  const std::string _label)
     : PacketQueue(_em, _label, name(_slavePort, _label), force_order),
index a50c858b9afd38f789dfe77a42b9008ba0f1624a..1fc92a2500a46ee3e4bcfe6d19c1d5d7c821e312 100644 (file)
@@ -224,11 +224,11 @@ class ReqPacketQueue : public PacketQueue
 
   protected:
 
-    MasterPort& masterPort;
+    RequestPort& masterPort;
 
     // Static definition so it can be called when constructing the parent
     // without us being completely initialized.
-    static const std::string name(const MasterPort& masterPort,
+    static const std::string name(const RequestPort& masterPort,
                                   const std::string& label)
     { return masterPort.name() + "-" + label; }
 
@@ -243,7 +243,7 @@ class ReqPacketQueue : public PacketQueue
      * @param _masterPort Master port used to send the packets
      * @param _label Label to push on the label stack for print request packets
      */
-    ReqPacketQueue(EventManager& _em, MasterPort& _masterPort,
+    ReqPacketQueue(EventManager& _em, RequestPort& _masterPort,
                    const std::string _label = "ReqPacketQueue");
 
     virtual ~ReqPacketQueue() { }
@@ -260,11 +260,11 @@ class SnoopRespPacketQueue : public PacketQueue
 
   protected:
 
-    MasterPort& masterPort;
+    RequestPort& masterPort;
 
     // Static definition so it can be called when constructing the parent
     // without us being completely initialized.
-    static const std::string name(const MasterPort& masterPort,
+    static const std::string name(const RequestPort& masterPort,
                                   const std::string& label)
     { return masterPort.name() + "-" + label; }
 
@@ -280,7 +280,7 @@ class SnoopRespPacketQueue : public PacketQueue
      * @param force_order Force insertion order for packets with same address
      * @param _label Label to push on the label stack for print request packets
      */
-    SnoopRespPacketQueue(EventManager& _em, MasterPort& _masterPort,
+    SnoopRespPacketQueue(EventManager& _em, RequestPort& _masterPort,
                          bool force_order = false,
                          const std::string _label = "SnoopRespPacketQueue");
 
@@ -298,11 +298,11 @@ class RespPacketQueue : public PacketQueue
 
   protected:
 
-    SlavePort& slavePort;
+    ResponsePort& slavePort;
 
     // Static definition so it can be called when constructing the parent
     // without us being completely initialized.
-    static const std::string name(const SlavePort& slavePort,
+    static const std::string name(const ResponsePort& slavePort,
                                   const std::string& label)
     { return slavePort.name() + "-" + label; }
 
@@ -318,7 +318,7 @@ class RespPacketQueue : public PacketQueue
      * @param force_order Force insertion order for packets with same address
      * @param _label Label to push on the label stack for print request packets
      */
-    RespPacketQueue(EventManager& _em, SlavePort& _slavePort,
+    RespPacketQueue(EventManager& _em, ResponsePort& _slavePort,
                     bool force_order = false,
                     const std::string _label = "RespPacketQueue");
 
index 88a150b7e65361ab1a18be5e5c07708267df3699..9f3945be8ad1a9aa6c7cf8b2e38c672ab795b007 100644 (file)
@@ -100,7 +100,7 @@ class PortProxy : FunctionalRequestProtocol
     PortProxy(SendFunctionalFunc func, unsigned int cacheLineSize) :
         sendFunctional(func), _cacheLineSize(cacheLineSize)
     {}
-    PortProxy(const MasterPort &port, unsigned int cacheLineSize) :
+    PortProxy(const RequestPort &port, unsigned int cacheLineSize) :
         sendFunctional([&port](PacketPtr pkt)->void {
                 port.sendFunctional(pkt);
             }), _cacheLineSize(cacheLineSize)
index 572cad5c494b8a4f72697bc650f05bc111187ca8..6c4f2632ddd82491423fbc577389db7a466198cf 100644 (file)
@@ -42,7 +42,7 @@ class QoSMemSinkCtrl(QoSMemCtrl):
     type = 'QoSMemSinkCtrl'
     cxx_header = "mem/qos/mem_sink.hh"
     cxx_class = "QoS::MemSinkCtrl"
-    port = SlavePort("Slave ports")
+    port = ResponsePort("Response ports")
 
     # the basic configuration of the controller architecture, note
     # that each entry corresponds to a burst for the specific DRAM
index 7651e2c82af12b44438fdf0f2e73c0c1896089c7..97a20654834cee307e331c3d49fe6282c5b08eaf 100644 (file)
@@ -55,7 +55,7 @@
  * queue is a parameter to allow tailoring of the queue implementation
  * (used in the cache).
  */
-class QueuedSlavePort : public SlavePort
+class QueuedSlavePort : public ResponsePort
 {
 
   protected:
@@ -76,7 +76,7 @@ class QueuedSlavePort : public SlavePort
      */
     QueuedSlavePort(const std::string& name, SimObject* owner,
                     RespPacketQueue &resp_queue, PortID id = InvalidPortID) :
-        SlavePort(name, owner, id), respQueue(resp_queue)
+        ResponsePort(name, owner, id), respQueue(resp_queue)
     { }
 
     virtual ~QueuedSlavePort() { }
@@ -103,7 +103,7 @@ class QueuedSlavePort : public SlavePort
  * independent, and so each queue manages its own flow control
  * (retries).
  */
-class QueuedMasterPort : public MasterPort
+class QueuedMasterPort : public RequestPort
 {
 
   protected:
@@ -131,7 +131,7 @@ class QueuedMasterPort : public MasterPort
                      ReqPacketQueue &req_queue,
                      SnoopRespPacketQueue &snoop_resp_queue,
                      PortID id = InvalidPortID) :
-        MasterPort(name, owner, id), reqQueue(req_queue),
+        RequestPort(name, owner, id), reqQueue(req_queue),
         snoopRespQueue(snoop_resp_queue)
     { }
 
index 689ec62aeb47f730e9a1cf1f57a09a92e28633cd..c796960cc2e143d054902268e9e5fd244ed2f7d4 100644 (file)
@@ -40,5 +40,5 @@ class MessageBuffer(SimObject):
                                        random delays if RubySystem \
                                        randomization flag is True)")
 
-    master = MasterPort("Master port to MessageBuffer receiver")
-    slave = SlavePort("Slave port from MessageBuffer sender")
+    master = RequestPort("Master port to MessageBuffer receiver")
+    slave = ResponsePort("Slave port from MessageBuffer sender")
index 599a54b88af2baed245234f734e47ee9c183f243..dd3a9e7aafcf231228ffff0ab74db5bd3782955e 100644 (file)
@@ -373,6 +373,6 @@ AbstractController::MemoryPort::recvReqRetry()
 AbstractController::MemoryPort::MemoryPort(const std::string &_name,
                                            AbstractController *_controller,
                                            PortID id)
-    : MasterPort(_name, _controller, id), controller(_controller)
+    : RequestPort(_name, _controller, id), controller(_controller)
 {
 }
index 4820e5c075100651409b6df69f898a51d81609af..daa52da6227f91ae4e8f2ec160993b901ad9557d 100644 (file)
@@ -218,7 +218,7 @@ class AbstractController : public ClockedObject, public Consumer
      * Port that forwards requests and receives responses from the
      * memory controller.
      */
-    class MemoryPort : public MasterPort
+    class MemoryPort : public RequestPort
     {
       private:
         // Controller that operates this port.
index ae4263c0ddf1033432a954de8223e635b44506d4..2c6c655c15401b47c5205206879558989594295b 100644 (file)
@@ -66,5 +66,5 @@ class RubyController(ClockedObject):
         Param.Cycles(1, "Default latency for requests added to the " \
                         "mandatory queue on top-level controllers")
 
-    memory = MasterPort("Port for attaching a memory controller")
+    memory = RequestPort("Port for attaching a memory controller")
     system = Param.System(Parent.any, "system object parameter")
index 781f77c696223dac22d5674178d17c334ba8a812..f97224dfcf15731ef4e63f290fb47eeca8eb9977 100644 (file)
@@ -36,10 +36,10 @@ class RubyPort(ClockedObject):
 
    slave = VectorSlavePort("CPU slave port")
    master = VectorMasterPort("CPU master port")
-   pio_master_port = MasterPort("Ruby mem master port")
-   mem_master_port = MasterPort("Ruby mem master port")
-   pio_slave_port = SlavePort("Ruby pio slave port")
-   mem_slave_port = SlavePort("Ruby memory port")
+   pio_master_port = RequestPort("Ruby mem master port")
+   mem_master_port = RequestPort("Ruby mem master port")
+   pio_slave_port = ResponsePort("Ruby pio slave port")
+   mem_slave_port = ResponsePort("Ruby memory port")
 
    using_ruby_tester = Param.Bool(False, "")
    no_retry_on_stall = Param.Bool(False, "")
index ca73ffddb7e1d3b0b32fb127954fdecc7cd76a5d..d05328e12a118f0d36b5a66630ac24a238622b85 100644 (file)
@@ -57,7 +57,7 @@ SerialLink::SerialLinkSlavePort::SerialLinkSlavePort(const std::string& _name,
                                          Cycles _delay, int _resp_limit,
                                          const std::vector<AddrRange>&
                                          _ranges)
-    : SlavePort(_name, &_serial_link), serial_link(_serial_link),
+    : ResponsePort(_name, &_serial_link), serial_link(_serial_link),
       masterPort(_masterPort), delay(_delay),
       ranges(_ranges.begin(), _ranges.end()),
       outstandingResponses(0), retryReq(false),
@@ -70,7 +70,7 @@ SerialLink::SerialLinkMasterPort::SerialLinkMasterPort(const std::string&
                                            _name, SerialLink& _serial_link,
                                            SerialLinkSlavePort& _slavePort,
                                            Cycles _delay, int _req_limit)
-    : MasterPort(_name, &_serial_link), serial_link(_serial_link),
+    : RequestPort(_name, &_serial_link), serial_link(_serial_link),
       slavePort(_slavePort), delay(_delay), reqQueueLimit(_req_limit),
       sendEvent([this]{ trySendTiming(); }, _name)
 {
index 418300439af301386999a2e05b6acc77861709da..7f047ef1f5607a80b300bd24036d67fde9161afa 100644 (file)
@@ -91,7 +91,7 @@ class SerialLink : public ClockedObject
      * is responsible for. The slave port also has a buffer for the
      * responses not yet sent.
      */
-    class SerialLinkSlavePort : public SlavePort
+    class SerialLinkSlavePort : public ResponsePort
     {
 
       private:
@@ -207,7 +207,7 @@ class SerialLink : public ClockedObject
      * responses. The master port has a buffer for the requests not
      * yet sent.
      */
-    class SerialLinkMasterPort : public MasterPort
+    class SerialLinkMasterPort : public RequestPort
     {
 
       private:
index 26a2f70743b43dfec0a70a854fb510bc5f5e05ce..d9ac521117ccd6baf19f4ab88dd28d9fdf498443 100644 (file)
@@ -61,7 +61,7 @@ SnoopFilter::eraseIfNullEntry(SnoopFilterCache::iterator& sf_it)
 }
 
 std::pair<SnoopFilter::SnoopList, Cycles>
-SnoopFilter::lookupRequest(const Packet* cpkt, const SlavePort& slave_port)
+SnoopFilter::lookupRequest(const Packet* cpkt, const ResponsePort& slave_port)
 {
     DPRINTF(SnoopFilter, "%s: src %s packet %s\n", __func__,
             slave_port.name(), cpkt->print());
@@ -240,8 +240,8 @@ SnoopFilter::lookupSnoop(const Packet* cpkt)
 
 void
 SnoopFilter::updateSnoopResponse(const Packet* cpkt,
-                                 const SlavePort& rsp_port,
-                                 const SlavePort& req_port)
+                                 const ResponsePort& rsp_port,
+                                 const ResponsePort& req_port)
 {
     DPRINTF(SnoopFilter, "%s: rsp %s req %s packet %s\n",
             __func__, rsp_port.name(), req_port.name(), cpkt->print());
@@ -297,7 +297,7 @@ SnoopFilter::updateSnoopResponse(const Packet* cpkt,
 
 void
 SnoopFilter::updateSnoopForward(const Packet* cpkt,
-        const SlavePort& rsp_port, const MasterPort& req_port)
+        const ResponsePort& rsp_port, const RequestPort& req_port)
 {
     DPRINTF(SnoopFilter, "%s: rsp %s req %s packet %s\n",
             __func__, rsp_port.name(), req_port.name(), cpkt->print());
@@ -333,7 +333,7 @@ SnoopFilter::updateSnoopForward(const Packet* cpkt,
 }
 
 void
-SnoopFilter::updateResponse(const Packet* cpkt, const SlavePort& slave_port)
+SnoopFilter::updateResponse(const Packet* cpkt, const ResponsePort& slave_port)
 {
     DPRINTF(SnoopFilter, "%s: src %s packet %s\n",
             __func__, slave_port.name(), cpkt->print());
index f45bfeb31141f56ccf9936cc79d5f19d6e8a97ae..62d764ed9cf0bc9561a69318e0dc8556ede418e9 100644 (file)
@@ -135,7 +135,7 @@ class SnoopFilter : public SimObject {
      * @return Pair of a vector of snoop target ports and lookup latency.
      */
     std::pair<SnoopList, Cycles> lookupRequest(const Packet* cpkt,
-                                               const SlavePort& slave_port);
+                                               const ResponsePort& slave_port);
 
     /**
      * For an un-successful request, revert the change to the snoop
@@ -154,8 +154,8 @@ class SnoopFilter : public SimObject {
      * additional steering thanks to the snoop filter.
      *
      * @param cpkt Pointer to const Packet containing the snoop.
-     * @return Pair with a vector of SlavePorts that need snooping and a lookup
-     *         latency.
+     * @return Pair with a vector of ResponsePorts that need snooping and a
+     * lookup latency.
      */
     std::pair<SnoopList, Cycles> lookupSnoop(const Packet* cpkt);
 
@@ -165,12 +165,12 @@ class SnoopFilter : public SimObject {
      * will update the corresponding state in the filter.
      *
      * @param cpkt     Pointer to const Packet holding the snoop response.
-     * @param rsp_port SlavePort that sends the response.
-     * @param req_port SlavePort that made the original request and is the
+     * @param rsp_port ResponsePort that sends the response.
+     * @param req_port ResponsePort that made the original request and is the
      *                 destination of the snoop response.
      */
-    void updateSnoopResponse(const Packet *cpkt, const SlavePort& rsp_port,
-                             const SlavePort& req_port);
+    void updateSnoopResponse(const Packet *cpkt, const ResponsePort& rsp_port,
+                             const ResponsePort& req_port);
 
     /**
      * Pass snoop responses that travel downward through the snoop
@@ -178,11 +178,11 @@ class SnoopFilter : public SimObject {
      * additional routing happens.
      *
      * @param cpkt     Pointer to const Packet holding the snoop response.
-     * @param rsp_port SlavePort that sends the response.
-     * @param req_port MasterPort through which the response is forwarded.
+     * @param rsp_port ResponsePort that sends the response.
+     * @param req_port RequestPort through which the response is forwarded.
      */
-    void updateSnoopForward(const Packet *cpkt, const SlavePort& rsp_port,
-                            const MasterPort& req_port);
+    void updateSnoopForward(const Packet *cpkt, const ResponsePort& rsp_port,
+                            const RequestPort& req_port);
 
     /**
      * Update the snoop filter with a response from below (outer /
@@ -190,10 +190,10 @@ class SnoopFilter : public SimObject {
      * the snoop filter.
      *
      * @param cpkt       Pointer to const Packet holding the snoop response.
-     * @param slave_port SlavePort that made the original request and
+     * @param slave_port ResponsePort that made the original request and
      *                   is the target of this response.
      */
-    void updateResponse(const Packet *cpkt, const SlavePort& slave_port);
+    void updateResponse(const Packet *cpkt, const ResponsePort& slave_port);
 
     virtual void regStats();
 
@@ -206,7 +206,7 @@ class SnoopFilter : public SimObject {
     typedef std::bitset<SNOOP_MASK_SIZE> SnoopMask;
 
     /**
-    * Per cache line item tracking a bitmask of SlavePorts who have an
+    * Per cache line item tracking a bitmask of ResponsePorts who have an
     * outstanding request to this line (requested) or already share a
     * cache line with this address (holder).
     */
@@ -239,14 +239,14 @@ class SnoopFilter : public SimObject {
 
     /**
      * Convert a single port to a corresponding, one-hot bitmask
-     * @param port SlavePort that should be converted.
+     * @param port ResponsePort that should be converted.
      * @return One-hot bitmask corresponding to the port.
      */
-    SnoopMask portToMask(const SlavePort& port) const;
+    SnoopMask portToMask(const ResponsePort& port) const;
     /**
      * Converts a bitmask of ports into the corresponing list of ports
      * @param ports SnoopMask of the requested ports
-     * @return SnoopList containing all the requested SlavePorts
+     * @return SnoopList containing all the requested ResponsePorts
      */
     SnoopList maskToPortList(SnoopMask ports) const;
 
@@ -320,7 +320,7 @@ class SnoopFilter : public SimObject {
 };
 
 inline SnoopFilter::SnoopMask
-SnoopFilter::portToMask(const SlavePort& port) const
+SnoopFilter::portToMask(const ResponsePort& port) const
 {
     assert(port.getId() != InvalidPortID);
     // if this is not a snooping port, return a zero mask
index 46d91164a87f3002cfd9ba3ab2c8d0d80bd18737..648d041d64d5c78d6ca6f37953b66f11d1d322e9 100644 (file)
@@ -42,7 +42,7 @@
 void
 TokenMasterPort::bind(Port &peer)
 {
-    MasterPort::bind(peer);
+    RequestPort::bind(peer);
 }
 
 void
@@ -88,10 +88,10 @@ void
 TokenSlavePort::bind(Port& peer)
 {
     // TokenSlavePort is allowed to bind to either TokenMasterPort or a
-    // MasterPort as fallback. If the type is a MasterPort, tokenMasterPort
+    // RequestPort as fallback. If the type is a RequestPort, tokenMasterPort
     // is set to nullptr to indicate tokens should not be exchanged.
     auto *token_master_port = dynamic_cast<TokenMasterPort*>(&peer);
-    auto *master_port = dynamic_cast<MasterPort*>(&peer);
+    auto *master_port = dynamic_cast<RequestPort*>(&peer);
     if (!token_master_port && !master_port) {
         fatal("Attempt to bind port %s to unsupported slave port %s.",
               name(), peer.name());
@@ -109,7 +109,7 @@ TokenSlavePort::bind(Port& peer)
 void
 TokenSlavePort::unbind()
 {
-    SlavePort::responderUnbind();
+    ResponsePort::responderUnbind();
     tokenMasterPort = nullptr;
 }
 
@@ -121,7 +121,7 @@ TokenSlavePort::recvRespRetry()
              "Attempted to retry a response when no retry was queued!\n");
 
     PacketPtr pkt = respQueue.front();
-    bool success = SlavePort::sendTimingResp(pkt);
+    bool success = ResponsePort::sendTimingResp(pkt);
 
     if (success) {
         respQueue.pop_front();
@@ -131,7 +131,7 @@ TokenSlavePort::recvRespRetry()
 bool
 TokenSlavePort::sendTimingResp(PacketPtr pkt)
 {
-    bool success = SlavePort::sendTimingResp(pkt);
+    bool success = ResponsePort::sendTimingResp(pkt);
 
     if (!success) {
         respQueue.push_back(pkt);
index 7112a41e7f095597bbd147fa98067448975c84b2..358ee03bd997aee89426fa39f6e3951ff07411a3 100644 (file)
@@ -40,7 +40,7 @@
 class TokenManager;
 class TokenSlavePort;
 
-class TokenMasterPort : public MasterPort
+class TokenMasterPort : public RequestPort
 {
   private:
     /* Manager to track tokens between this token port pair. */
@@ -49,7 +49,7 @@ class TokenMasterPort : public MasterPort
   public:
     TokenMasterPort(const std::string& name, SimObject* owner,
                     PortID id = InvalidPortID) :
-        MasterPort(name, owner, id), tokenManager(nullptr)
+        RequestPort(name, owner, id), tokenManager(nullptr)
     { }
 
     /**
@@ -87,7 +87,7 @@ class TokenMasterPort : public MasterPort
     void setTokenManager(TokenManager *_tokenManager);
 };
 
-class TokenSlavePort : public SlavePort
+class TokenSlavePort : public ResponsePort
 {
   private:
     TokenMasterPort *tokenMasterPort;
@@ -99,7 +99,7 @@ class TokenSlavePort : public SlavePort
   public:
     TokenSlavePort(const std::string& name, ClockedObject *owner,
                    PortID id = InvalidPortID) :
-        SlavePort(name, owner, id), tokenMasterPort(nullptr)
+        ResponsePort(name, owner, id), tokenMasterPort(nullptr)
     { }
     ~TokenSlavePort() { }
 
index f0b4ba3a7d221a0231c164457127e47ee22540cc..5e2c28c4bdf6b3ba3dd4c0dd071d2bd395285ee9 100644 (file)
@@ -592,8 +592,8 @@ BaseXBar::Layer<SrcType, DstType>::drain()
 
 /**
  * Crossbar layer template instantiations. Could be removed with _impl.hh
- * file, but since there are only two given options (MasterPort and
- * SlavePort) it seems a bit excessive at this point.
+ * file, but since there are only two given options (RequestPort and
+ * ResponsePort) it seems a bit excessive at this point.
  */
-template class BaseXBar::Layer<SlavePort, MasterPort>;
-template class BaseXBar::Layer<MasterPort, SlavePort>;
+template class BaseXBar::Layer<ResponsePort, RequestPort>;
+template class BaseXBar::Layer<RequestPort, ResponsePort>;
index 086d7f41e3a7dc4702c8dc55d54437c1cc5e683f..535277addeda1860a4ba1dad696b64b03a62f4ad 100644 (file)
@@ -165,7 +165,7 @@ class BaseXBar : public ClockedObject
 
         /**
          * Sending the actual retry, in a manner specific to the
-         * individual layers. Note that for a MasterPort, there is
+         * individual layers. Note that for a RequestPort, there is
          * both a RequestLayer and a SnoopResponseLayer using the same
          * port, but using different functions for the flow control.
          */
@@ -231,7 +231,7 @@ class BaseXBar : public ClockedObject
 
     };
 
-    class ReqLayer : public Layer<SlavePort, MasterPort>
+    class ReqLayer : public Layer<ResponsePort, RequestPort>
     {
       public:
         /**
@@ -241,19 +241,20 @@ class BaseXBar : public ClockedObject
          * @param _xbar the crossbar this layer belongs to
          * @param _name the layer's name
          */
-        ReqLayer(MasterPort& _port, BaseXBar& _xbar, const std::string& _name) :
+        ReqLayer(RequestPort& _port, BaseXBar& _xbar,
+        const std::string& _name) :
             Layer(_port, _xbar, _name)
         {}
 
       protected:
         void
-        sendRetry(SlavePort* retry_port) override
+        sendRetry(ResponsePort* retry_port) override
         {
             retry_port->sendRetryReq();
         }
     };
 
-    class RespLayer : public Layer<MasterPort, SlavePort>
+    class RespLayer : public Layer<RequestPort, ResponsePort>
     {
       public:
         /**
@@ -263,20 +264,20 @@ class BaseXBar : public ClockedObject
          * @param _xbar the crossbar this layer belongs to
          * @param _name the layer's name
          */
-        RespLayer(SlavePort& _port, BaseXBar& _xbar,
+        RespLayer(ResponsePort& _port, BaseXBar& _xbar,
                   const std::string& _name) :
             Layer(_port, _xbar, _name)
         {}
 
       protected:
         void
-        sendRetry(MasterPort* retry_port) override
+        sendRetry(RequestPort* retry_port) override
         {
             retry_port->sendRetryResp();
         }
     };
 
-    class SnoopRespLayer : public Layer<SlavePort, MasterPort>
+    class SnoopRespLayer : public Layer<ResponsePort, RequestPort>
     {
       public:
         /**
@@ -286,7 +287,7 @@ class BaseXBar : public ClockedObject
          * @param _xbar the crossbar this layer belongs to
          * @param _name the layer's name
          */
-        SnoopRespLayer(MasterPort& _port, BaseXBar& _xbar,
+        SnoopRespLayer(RequestPort& _port, BaseXBar& _xbar,
                        const std::string& _name) :
             Layer(_port, _xbar, _name)
         {}
@@ -294,7 +295,7 @@ class BaseXBar : public ClockedObject
       protected:
 
         void
-        sendRetry(SlavePort* retry_port) override
+        sendRetry(ResponsePort* retry_port) override
         {
             retry_port->sendRetrySnoopResp();
         }
@@ -373,7 +374,7 @@ class BaseXBar : public ClockedObject
 
     /** The master and slave ports of the crossbar */
     std::vector<QueuedSlavePort*> slavePorts;
-    std::vector<MasterPort*> masterPorts;
+    std::vector<RequestPort*> masterPorts;
 
     /** Port that handles requests that don't match any of the interfaces.*/
     PortID defaultPortID;