gem5
v22.1.0.0
|
#include <reset_port.hh>
Public Member Functions | |
ResetRequestPort (const std::string &_name, PortID _id) | |
void | bind (Port &p) override |
Attach to a peer port. More... | |
void | unbind () override |
Dettach from a peer port. More... | |
void | requestReset () |
![]() | |
virtual | ~Port () |
Virtual destructor due to inheritance. More... | |
Port & | getPeer () |
Return a reference to this port's peer. More... | |
const std::string | name () const |
Return port name (for DPRINTF). More... | |
PortID | getId () const |
Get the port id. More... | |
bool | isConnected () const |
Is this port currently connected to a peer? More... | |
void | takeOverFrom (Port *old) |
A utility function to make it easier to swap out ports. More... | |
Private Attributes | |
ResetResponsePortBase * | peer = nullptr |
Additional Inherited Members | |
![]() | |
void | reportUnbound () const |
Port (const std::string &_name, PortID _id) | |
Abstract base class for ports. More... | |
![]() | |
const PortID | id |
A numeric identifier to distinguish ports in a vector, and set to InvalidPortID in case this port is not part of a vector. More... | |
Port * | _peer |
A pointer to this port's peer. More... | |
bool | _connected |
Whether this port is currently connected to a peer port. More... | |
Definition at line 57 of file reset_port.hh.
|
inline |
Definition at line 60 of file reset_port.hh.
|
overridevirtual |
Attach to a peer port.
Reimplemented from gem5::Port.
Definition at line 36 of file reset_port.cc.
References gem5::Port::bind(), fatal_if, gem5::Port::name(), gem5::VegaISA::p, and peer.
void gem5::ResetRequestPort::requestReset | ( | ) |
Definition at line 52 of file reset_port.cc.
References peer, and gem5::ResetResponsePortBase::requestReset().
|
overridevirtual |
Dettach from a peer port.
Reimplemented from gem5::Port.
Definition at line 45 of file reset_port.cc.
References peer, and gem5::Port::unbind().
|
private |
Definition at line 67 of file reset_port.hh.
Referenced by bind(), requestReset(), and unbind().