gem5 v24.0.0.0
|
#include <signal.hh>
Public Member Functions | |
SignalSourcePort (const std::string &_name, PortID _id=InvalidPortID) | |
SignalSourcePort (const std::string &_name, PortID _id, const State &init_state) | |
void | set (const State &new_state, const bool bypass_on_change=false) |
const State & | state () const |
void | bind (Port &peer) override |
Attach to a peer port. | |
void | unbind () override |
Dettach from a peer port. | |
Public Member Functions inherited from gem5::Port | |
virtual | ~Port () |
Virtual destructor due to inheritance. | |
Port & | getPeer () |
Return a reference to this port's peer. | |
const std::string | name () const |
Return port name (for DPRINTF). | |
PortID | getId () const |
Get the port id. | |
bool | isConnected () const |
Is this port currently connected to a peer? | |
void | takeOverFrom (Port *old) |
A utility function to make it easier to swap out ports. | |
Private Attributes | |
SignalSinkPort< State > * | sink = nullptr |
State | _state |
Additional Inherited Members | |
Protected Member Functions inherited from gem5::Port | |
void | reportUnbound () const |
Port (const std::string &_name, PortID _id) | |
Abstract base class for ports. | |
Protected Attributes inherited from gem5::Port | |
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. | |
Port * | _peer |
A pointer to this port's peer. | |
bool | _connected |
Whether this port is currently connected to a peer port. | |
|
inline |
Definition at line 104 of file signal.hh.
References gem5::SignalSourcePort< State >::_state.
|
inline |
Definition at line 111 of file signal.hh.
References gem5::SignalSourcePort< State >::_state.
|
inlineoverridevirtual |
Attach to a peer port.
Reimplemented from gem5::Port.
Definition at line 130 of file signal.hh.
References gem5::Port::bind(), fatal_if, gem5::Port::name(), and gem5::SignalSourcePort< State >::sink.
|
inline |
Definition at line 121 of file signal.hh.
References gem5::SignalSourcePort< State >::_state, and gem5::SignalSourcePort< State >::sink.
Referenced by gem5::fastmodel::ResetControllerExample::Registers::Registers().
|
inline |
Definition at line 127 of file signal.hh.
References gem5::SignalSourcePort< State >::_state.
|
inlineoverridevirtual |
Dettach from a peer port.
Reimplemented from gem5::Port.
Definition at line 138 of file signal.hh.
References gem5::SignalSourcePort< State >::sink, and gem5::Port::unbind().
|
private |
Definition at line 101 of file signal.hh.
Referenced by gem5::SignalSourcePort< State >::set(), gem5::SignalSourcePort< State >::SignalSourcePort(), gem5::SignalSourcePort< State >::SignalSourcePort(), and gem5::SignalSourcePort< State >::state().
|
private |
Definition at line 100 of file signal.hh.
Referenced by gem5::SignalSourcePort< State >::bind(), gem5::SignalSourcePort< State >::set(), and gem5::SignalSourcePort< State >::unbind().