54 :
Port(name, _id), _slavePort(NULL), owner(*_owner)
65 auto *slave_port =
dynamic_cast<SlavePort *
>(&peer);
67 fatal(
"Attempt to bind port %s to non-slave port %s.",
74 _slavePort->slaveBind(*
this);
81 panic(
"Attempting to unbind master port %s that is not connected\n",
97 auto req = std::make_shared<Request>(
102 pkt.senderState = &prs;
111 :
Port(name, id), _masterPort(NULL), defaultBackdoorWarned(false),
138 warn(
"Port %s doesn't support requesting a back door.",
name());
A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
#define panic(...)
This implements a cprintf based panic() function.
Ports are used to interface objects to each other.
#define fatal(...)
This implements a cprintf based fatal() function.
const std::string & name()
Object used to maintain state of a PrintReq.
void slaveUnbind()
Called by the master port to unbind.
bool defaultBackdoorWarned
A SlavePort is a specialisation of a port.
SlavePort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Slave port.
MasterPort(const std::string &name, SimObject *_owner, PortID id=InvalidPortID)
Master port.
Tick recvAtomicBackdoor(PacketPtr pkt, MemBackdoorPtr &backdoor) override
Default implementations.
This master id is used for functional requests that don't come from a particular device.
virtual void unbind()
Dettach from a peer port.
uint64_t Tick
Tick count type.
void bind(Port &peer) override
Bind this master port to a slave port.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void printAddr(Addr a)
Inject a PrintReq for the given address to print the state of that address throughout the memory syst...
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.
void slaveBind(MasterPort &master_port)
Called by the master port to bind.
AddrRangeList getAddrRanges() const
Get the address ranges of the connected slave port.
virtual AddrRangeList getAddrRanges() const =0
Get a list of the non-overlapping address ranges the owner is responsible for.
virtual void bind(Port &peer)
Attach to a peer port.
const std::string name() const
Return port name (for DPRINTF).
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.
void unbind() override
Unbind this master port and the associated slave port.
Abstract superclass for simulation objects.