gem5  v19.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
mem_delay.hh
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  * Authors: Andreas Sandberg
38  */
39 
40 #ifndef __MEM_MEM_DELAY_HH__
41 #define __MEM_MEM_DELAY_HH__
42 
43 #include "mem/qport.hh"
44 #include "sim/clocked_object.hh"
45 
46 struct MemDelayParams;
47 struct SimpleMemDelayParams;
48 
64 class MemDelay : public ClockedObject
65 {
66 
67  public:
68  MemDelay(const MemDelayParams *params);
69 
70  void init() override;
71 
72  protected: // Port interface
73  Port &getPort(const std::string &if_name,
74  PortID idx=InvalidPortID) override;
75 
77  {
78  public:
79  MasterPort(const std::string &_name, MemDelay &_parent);
80 
81  protected:
82  bool recvTimingResp(PacketPtr pkt) override;
83 
84  void recvFunctionalSnoop(PacketPtr pkt) override;
85 
86  Tick recvAtomicSnoop(PacketPtr pkt) override;
87 
88  void recvTimingSnoopReq(PacketPtr pkt) override;
89 
90  void recvRangeChange() override {
92  }
93 
94  bool isSnooping() const override {
95  return parent.slavePort.isSnooping();
96  }
97 
98  private:
100  };
101 
102  class SlavePort : public QueuedSlavePort
103  {
104  public:
105  SlavePort(const std::string &_name, MemDelay &_parent);
106 
107  protected:
108  Tick recvAtomic(PacketPtr pkt) override;
109  bool recvTimingReq(PacketPtr pkt) override;
110  void recvFunctional(PacketPtr pkt) override;
111  bool recvTimingSnoopResp(PacketPtr pkt) override;
112 
113  AddrRangeList getAddrRanges() const override {
115  }
116 
117  bool tryTiming(PacketPtr pkt) override { return true; }
118 
119  private:
120 
122 
123  };
124 
126 
129 
133 
134  protected:
140  virtual Tick delayReq(PacketPtr pkt) { return 0; }
141 
147  virtual Tick delayResp(PacketPtr pkt) { return 0; }
148 
154  virtual Tick delaySnoopResp(PacketPtr pkt) { return 0; }
155 };
156 
165 class SimpleMemDelay : public MemDelay
166 {
167  public:
168  SimpleMemDelay(const SimpleMemDelayParams *params);
169 
170  protected:
171  Tick delayReq(PacketPtr pkt) override;
172  Tick delayResp(PacketPtr pkt) override;
173 
174  protected: // Params
177 
180 };
181 
182 #endif //__MEM_MEM_DELAY_HH__
Ports are used to interface objects to each other.
Definition: port.hh:60
void sendRangeChange() const
Called by the owner to send a range change.
Definition: port.hh:286
const PortID InvalidPortID
Definition: types.hh:238
MasterPort masterPort
Definition: mem_delay.hh:127
bool tryTiming(PacketPtr pkt) override
Availability request from the peer.
Definition: mem_delay.hh:117
const Tick readReqDelay
Definition: mem_delay.hh:175
This abstract component provides a mechanism to delay packets.
Definition: mem_delay.hh:64
The QueuedMasterPort combines two queues, a request queue and a snoop response queue, that both share the same port.
Definition: qport.hh:108
RespPacketQueue respQueue
Definition: mem_delay.hh:131
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Definition: qport.hh:60
const Tick writeRespDelay
Definition: mem_delay.hh:179
SnoopRespPacketQueue snoopRespQueue
Definition: mem_delay.hh:132
const Params * params() const
Tick recvAtomicSnoop(PacketPtr pkt) override
Receive an atomic snoop request packet from our peer.
Definition: mem_delay.cc:110
Declaration of the queued port.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
Definition: mem_delay.cc:56
void recvRangeChange() override
Called to receive an address range change from the peer slave port.
Definition: mem_delay.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:64
uint64_t Tick
Tick count type.
Definition: types.hh:63
MasterPort(const std::string &_name, MemDelay &_parent)
Definition: mem_delay.cc:82
virtual Tick delayReq(PacketPtr pkt)
Delay a request by some number of ticks.
Definition: mem_delay.hh:140
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
ClockedObject declaration and implementation.
void recvTimingSnoopReq(PacketPtr pkt) override
Receive a timing snoop request from the peer.
Definition: mem_delay.cc:118
MemDelay & parent
Definition: mem_delay.hh:99
virtual Tick delaySnoopResp(PacketPtr pkt)
Delay a snoop response by some number of ticks.
Definition: mem_delay.hh:154
AddrRangeList getAddrRanges() const override
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: mem_delay.hh:113
bool isSnooping() const override
Determine if this master port is snooping or not.
Definition: mem_delay.hh:94
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
Definition: qport.hh:162
Delay packets by a constant time.
Definition: mem_delay.hh:165
MemDelay & parent
Definition: mem_delay.hh:121
const Tick writeReqDelay
Definition: mem_delay.hh:178
bool isSnooping() const
Find out if the peer master port is snooping or not.
Definition: port.hh:280
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
Definition: packet.hh:255
SlavePort slavePort
Definition: mem_delay.hh:128
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
Definition: mem_delay.cc:100
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
Definition: mem_delay.cc:90
ReqPacketQueue reqQueue
Definition: mem_delay.hh:130
AddrRangeList getAddrRanges() const
Get the address ranges of the connected slave port.
Definition: port.cc:93
MemDelay(const MemDelayParams *params)
Definition: mem_delay.cc:45
const Tick readRespDelay
Definition: mem_delay.hh:176
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
virtual Tick delayResp(PacketPtr pkt)
Delay a response by some number of ticks.
Definition: mem_delay.hh:147
friend class SlavePort
Definition: port.hh:78

Generated on Fri Feb 28 2020 16:27:02 for gem5 by doxygen 1.8.13