gem5 v23.0.0.1
|
PortWrapper Object Declaration. More...
Go to the source code of this file.
Classes | |
class | gem5::RequestPortWrapper |
The RequestPortWrapper converts inherit-based RequestPort into callback-based. More... | |
class | gem5::ResponsePortWrapper |
The ResponsePortWrapper converts inherit-based ResponsePort into callback-based. More... | |
Namespaces | |
namespace | gem5 |
Reference material can be found at the JEDEC website: UFS standard http://www.jedec.org/standards-documents/results/jesd220 UFS HCI specification http://www.jedec.org/standards-documents/results/jesd223. | |
PortWrapper Object Declaration.
The RequestPortWrapper and ResponsePortWrapper converts inherit-based RequestPort and ResponsePort into callback-based. This help reducing redundant code and increase code reusability in most cases, allowing composition over inheritance pattern.
Example usage:
class MySimObject : public SimObject { public: ResponsePortWrapper inPort;
MySimObject(...) : inPort("in_port", this)... { inPort.setGetAddrRangesCallback([this]() { return getRange(); });
inPort.setAtomicCallbacks([this](PacketPtr packet) { // process the packet ... return Tick(); }); }
private: AddrRangeList getRange() const {...} };
Definition in file port_wrapper.hh.