38 #ifndef __MEM_QPORT_HH__ 39 #define __MEM_QPORT_HH__ 135 snoopRespQueue(snoop_resp_queue)
167 #endif // __MEM_QPORT_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
void retry()
Retry sending a packet from the queue.
Declaration of a simple PacketQueue that is associated with a port on which it attempts to send packe...
const PortID InvalidPortID
void recvRespRetry()
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
void recvRetrySnoopResp()
Called by the peer if sendTimingSnoopResp was called on this protocol (causing recvTimingSnoopResp to...
void schedSendTiming(PacketPtr pkt, Tick when)
Add a packet to the transmit list, and schedule a send event.
virtual ~QueuedSlavePort()
The QueuedMasterPort combines two queues, a request queue and a snoop response queue, that both share the same port.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
A queued port is a port that has an infinite queue for outgoing packets and thus decouples the module...
A SlavePort is a specialisation of a port.
void schedTimingSnoopResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing snoop response.
void schedTimingResp(PacketPtr pkt, Tick when)
Schedule the sending of a timing response.
uint64_t Tick
Tick count type.
SnoopRespPacketQueue & snoopRespQueue
Packet queue used to store outgoing snoop responses.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
QueuedMasterPort(const std::string &name, SimObject *owner, ReqPacketQueue &req_queue, SnoopRespPacketQueue &snoop_resp_queue, PortID id=InvalidPortID)
Create a QueuedPort with a given name, owner, and a supplied implementation of two packet queues...
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
ReqPacketQueue & reqQueue
Packet queue used to store outgoing requests.
void schedTimingReq(PacketPtr pkt, Tick when)
Schedule the sending of a timing request.
const PortID id
A numeric identifier to distinguish ports in a vector, and set to InvalidPortID in case this port is ...
RespPacketQueue & respQueue
Packet queue used to store outgoing responses.
const std::string name() const
Return port name (for DPRINTF).
virtual ~QueuedMasterPort()
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
bool trySatisfyFunctional(PacketPtr pkt)
Check the list of buffered packets against the supplied functional request.
Abstract superclass for simulation objects.
QueuedSlavePort(const std::string &name, SimObject *owner, RespPacketQueue &resp_queue, PortID id=InvalidPortID)
Create a QueuedPort with a given name, owner, and a supplied implementation of a packet queue...