66 panic(
"SimpleTimingPort should never see packets with the " 67 "cacheResponding flag set\n");
#define panic(...)
This implements a cprintf based panic() function.
bool recvTimingReq(PacketPtr pkt)
Implemented using recvAtomic().
bool cacheResponding() const
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
Declaration of SimpleTimingPort.
Tick curTick()
The current simulated tick.
bool needsResponse() const
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
void recvFunctional(PacketPtr pkt)
Implemented using recvAtomic().
uint64_t Tick
Tick count type.
std::unique_ptr< Packet > pendingDelete
Upstream caches need this packet until true is returned, so hold it for deletion until a subsequent c...
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
virtual Tick recvAtomic(PacketPtr pkt)=0
Receive an atomic request packet from the peer.
RespPacketQueue & respQueue
Packet queue used to store outgoing responses.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
SimpleTimingPort(const std::string &name, SimObject *owner)
Create a new SimpleTimingPort that relies on a packet queue to hold responses, and implements recvTim...
Abstract superclass for simulation objects.