40 #include "params/MemDelay.hh" 41 #include "params/SimpleMemDelay.hh" 45 masterPort(
name() +
"-master", *this),
46 slavePort(
name() +
"-slave", *this),
47 reqQueue(*this, masterPort),
48 respQueue(*this, slavePort),
49 snoopRespQueue(*this, masterPort)
57 fatal(
"Memory delay is not connected on both sides.\n");
64 if (if_name ==
"master") {
66 }
else if (if_name ==
"slave") {
170 readReqDelay(p->read_req),
171 readRespDelay(p->read_resp),
172 writeReqDelay(p->write_req),
173 writeRespDelay(p->write_resp)
203 SimpleMemDelayParams::create()
Ports are used to interface objects to each other.
#define fatal(...)
This implements a cprintf based fatal() function.
const std::string & name()
SimpleMemDelay(const SimpleMemDelayParams *params)
bool recvTimingReq(PacketPtr pkt) override
Receive a timing request from the peer.
Tick sendAtomicSnoop(PacketPtr pkt)
Send an atomic snoop request packet, where the data is moved and the state is updated in zero time...
This abstract component provides a mechanism to delay packets.
The QueuedMasterPort combines two queues, a request queue and a snoop response queue, that both share the same port.
RespPacketQueue respQueue
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
bool isConnected() const
Is this port currently connected to a peer?
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
bool recvTimingSnoopResp(PacketPtr pkt) override
Receive a timing snoop response from the peer.
const Tick writeRespDelay
SnoopRespPacketQueue snoopRespQueue
Tick recvAtomicSnoop(PacketPtr pkt) override
Receive an atomic snoop request packet from our peer.
Tick delayReq(PacketPtr pkt) override
Delay a request by some number of ticks.
void schedTimingSnoopResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing snoop response.
void sendFunctionalSnoop(PacketPtr pkt) const
Send a functional snoop request packet, where the data is instantly updated everywhere in the memory ...
Tick curTick()
The current simulated tick.
virtual Port & getPort(const std::string &if_name, PortID idx=InvalidPortID)
Get a port with a given name and index.
Tick recvAtomic(PacketPtr pkt) override
Receive an atomic request packet from the peer.
void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
uint64_t Tick
Tick count type.
MasterPort(const std::string &_name, MemDelay &_parent)
virtual Tick delayReq(PacketPtr pkt)
Delay a request by some number of ticks.
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.
virtual Tick delaySnoopResp(PacketPtr pkt)
Delay a snoop response by some number of ticks.
Tick delayResp(PacketPtr pkt) override
Delay a response by some number of ticks.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
Delay packets by a constant time.
SlavePort(const std::string &_name, MemDelay &_parent)
bool trySatisfyFunctional(PacketPtr pkt)
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
void recvFunctionalSnoop(PacketPtr pkt) override
Receive a functional snoop request packet from the peer.
void makeResponse()
Take a request packet and modify it in place to be suitable for returning as a response to that reque...
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
void schedTimingReq(PacketPtr pkt, Tick when)
Schedule the sending of a timing request.
MemDelay(const MemDelayParams *params)
void recvFunctional(PacketPtr pkt) override
Receive a functional request packet from the peer.
void sendTimingSnoopReq(PacketPtr pkt)
Attempt to send a timing snoop request packet to the master port by calling its corresponding receive...
void sendFunctional(PacketPtr pkt) const
Send a functional request packet, where the data is instantly updated everywhere in the memory system...
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
virtual Tick delayResp(PacketPtr pkt)
Delay a response by some number of ticks.
Tick sendAtomic(PacketPtr pkt)
Send an atomic request packet, where the data is moved and the state is updated in zero time...