gem5  v20.0.0.3
mem_delay.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2018 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 
38 #include "mem/mem_delay.hh"
39 
40 #include "params/MemDelay.hh"
41 #include "params/SimpleMemDelay.hh"
42 
43 MemDelay::MemDelay(const MemDelayParams *p)
44  : ClockedObject(p),
45  masterPort(name() + "-master", *this),
46  slavePort(name() + "-slave", *this),
47  reqQueue(*this, masterPort),
48  respQueue(*this, slavePort),
49  snoopRespQueue(*this, masterPort)
50 {
51 }
52 
53 void
55 {
57  fatal("Memory delay is not connected on both sides.\n");
58 }
59 
60 
61 Port &
62 MemDelay::getPort(const std::string &if_name, PortID idx)
63 {
64  if (if_name == "master") {
65  return masterPort;
66  } else if (if_name == "slave") {
67  return slavePort;
68  } else {
69  return ClockedObject::getPort(if_name, idx);
70  }
71 }
72 
73 bool
75 {
76  return slavePort.trySatisfyFunctional(pkt) ||
78 }
79 
80 MemDelay::MasterPort::MasterPort(const std::string &_name, MemDelay &_parent)
81  : QueuedMasterPort(_name, &_parent,
82  _parent.reqQueue, _parent.snoopRespQueue),
83  parent(_parent)
84 {
85 }
86 
87 bool
89 {
90  const Tick when = curTick() + parent.delayResp(pkt);
91 
92  parent.slavePort.schedTimingResp(pkt, when);
93 
94  return true;
95 }
96 
97 void
99 {
100  if (parent.trySatisfyFunctional(pkt)) {
101  pkt->makeResponse();
102  } else {
104  }
105 }
106 
107 Tick
109 {
110  const Tick delay = parent.delaySnoopResp(pkt);
111 
112  return delay + parent.slavePort.sendAtomicSnoop(pkt);
113 }
114 
115 void
117 {
119 }
120 
121 
122 MemDelay::SlavePort::SlavePort(const std::string &_name, MemDelay &_parent)
123  : QueuedSlavePort(_name, &_parent, _parent.respQueue),
124  parent(_parent)
125 {
126 }
127 
128 Tick
130 {
131  const Tick delay = parent.delayReq(pkt) + parent.delayResp(pkt);
132 
133  return delay + parent.masterPort.sendAtomic(pkt);
134 }
135 
136 bool
138 {
139  const Tick when = curTick() + parent.delayReq(pkt);
140 
141  parent.masterPort.schedTimingReq(pkt, when);
142 
143  return true;
144 }
145 
146 void
148 {
149  if (parent.trySatisfyFunctional(pkt)) {
150  pkt->makeResponse();
151  } else {
153  }
154 }
155 
156 bool
158 {
159  const Tick when = curTick() + parent.delaySnoopResp(pkt);
160 
162 
163  return true;
164 }
165 
166 
167 
168 SimpleMemDelay::SimpleMemDelay(const SimpleMemDelayParams *p)
169  : MemDelay(p),
170  readReqDelay(p->read_req),
171  readRespDelay(p->read_resp),
172  writeReqDelay(p->write_req),
173  writeRespDelay(p->write_resp)
174 {
175 }
176 
177 Tick
179 {
180  if (pkt->isRead()) {
181  return readReqDelay;
182  } else if (pkt->isWrite()) {
183  return writeReqDelay;
184  } else {
185  return 0;
186  }
187 }
188 
189 Tick
191 {
192  if (pkt->isRead()) {
193  return readRespDelay;
194  } else if (pkt->isWrite()) {
195  return writeRespDelay;
196  } else {
197  return 0;
198  }
199 }
200 
201 
203 SimpleMemDelayParams::create()
204 {
205  return new SimpleMemDelay(this);
206 }
Ports are used to interface objects to each other.
Definition: port.hh:56
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:171
const std::string & name()
Definition: trace.cc:50
SimpleMemDelay(const SimpleMemDelayParams *params)
Definition: mem_delay.cc:168
MasterPort masterPort
Definition: mem_delay.hh:125
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Definition: mem_delay.cc:137
const Tick readReqDelay
Definition: mem_delay.hh:173
Tick sendAtomicSnoop(PacketPtr pkt)
Send an atomic snoop request packet, where the data is moved and the state is updated in zero time...
Definition: port.hh:317
This abstract component provides a mechanism to delay packets.
Definition: mem_delay.hh:62
The QueuedMasterPort combines two queues, a request queue and a snoop response queue, that both share the same port.
Definition: qport.hh:106
RespPacketQueue respQueue
Definition: mem_delay.hh:129
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
Definition: qport.hh:95
bool isConnected() const
Is this port currently connected to a peer?
Definition: port.hh:124
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:58
bool isWrite() const
Definition: packet.hh:523
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
Definition: mem_delay.cc:157
const Tick writeRespDelay
Definition: mem_delay.hh:177
SnoopRespPacketQueue snoopRespQueue
Definition: mem_delay.hh:130
bool isRead() const
Definition: packet.hh:522
Tick recvAtomicSnoop(PacketPtr pkt) override
Receive an atomic snoop request packet from our peer.
Definition: mem_delay.cc:108
Tick delayReq(PacketPtr pkt) override
Delay a request by some number of ticks.
Definition: mem_delay.cc:178
void schedTimingSnoopResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing snoop response.
Definition: qport.hh:155
void sendFunctionalSnoop(PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
Definition: port.hh:333
Tick curTick()
The current simulated tick.
Definition: core.hh:44
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Definition: sim_object.cc:123
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
Definition: mem_delay.cc:129
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: mem_delay.cc:54
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
Definition: qport.hh:90
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: mem_delay.cc:62
uint64_t Tick
Tick count type.
Definition: types.hh:61
MasterPort(const std::string &_name, MemDelay &_parent)
Definition: mem_delay.cc:80
virtual Tick delayReq(PacketPtr pkt)
Delay a request by some number of ticks.
Definition: mem_delay.hh:138
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: mem_delay.cc:116
MemDelay & parent
Definition: mem_delay.hh:97
virtual Tick delaySnoopResp(PacketPtr pkt)
Delay a snoop response by some number of ticks.
Definition: mem_delay.hh:152
Tick delayResp(PacketPtr pkt) override
Delay a response by some number of ticks.
Definition: mem_delay.cc:190
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
Definition: qport.hh:160
Delay packets by a constant time.
Definition: mem_delay.hh:163
MemDelay & parent
Definition: mem_delay.hh:119
const Tick writeReqDelay
Definition: mem_delay.hh:176
SlavePort(const std::string &_name, MemDelay &_parent)
Definition: mem_delay.cc:122
bool trySatisfyFunctional(PacketPtr pkt)
Definition: mem_delay.cc:74
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:249
SlavePort slavePort
Definition: mem_delay.hh:126
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: mem_delay.cc:98
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:931
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: mem_delay.cc:88
ReqPacketQueue reqQueue
Definition: mem_delay.hh:128
void schedTimingReq(PacketPtr pkt, Tick when)
Schedule the sending of a timing request.
Definition: qport.hh:146
MemDelay(const MemDelayParams *params)
Definition: mem_delay.cc:43
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
Definition: mem_delay.cc:147
void sendTimingSnoopReq(PacketPtr pkt)
Attempt to send a timing snoop request packet to the master port by calling its corresponding receive...
Definition: port.hh:366
const Tick readRespDelay
Definition: mem_delay.hh:174
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
Definition: port.hh:435
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:235
virtual Tick delayResp(PacketPtr pkt)
Delay a response by some number of ticks.
Definition: mem_delay.hh:145
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:423
Bitfield< 0 > p

Generated on Fri Jul 3 2020 15:53:03 for gem5 by doxygen 1.8.13