gem5 v23.0.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Classes | Namespaces
port_wrapper.hh File Reference

PortWrapper Object Declaration. More...

#include <functional>
#include "mem/port.hh"

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.
 

Detailed Description

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.


Generated on Mon Jul 10 2023 15:32:07 for gem5 by doxygen 1.9.7