Go to the documentation of this file.
29 #ifndef __CPU_TESTERS_TRAFFIC_GEN_GUPS_GEN_HH__
30 #define __CPU_TESTERS_TRAFFIC_GEN_GUPS_GEN_HH__
41 #include <unordered_map>
46 #include "params/GUPSGen.hh"
125 virtual void init()
override;
127 virtual void startup()
override;
335 #endif // __CPU_TESTERS_TRAFFIC_GEN_GUPS_GEN_HH__
This is a simple scalar statistic, like a counter.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
GenPort port
An instance of GenPort to communicate with the outside.
const std::string name() const
Return port name (for DPRINTF).
GUPSGen(const GUPSGenParams ¶ms)
statistics::Scalar totalUpdates
EventFunctionWrapper nextSendEvent
Corresponding event to the sendNextReq function.
gem5::GUPSGen::GUPSGenStat stats
statistics::Scalar totalWriteLat
GUPSGenStat(GUPSGen *parent)
bool blocked()
Return whether the port is blocked.
bool recvTimingResp(PacketPtr pkt) override
Receive a timing response from the peer.
PacketPtr getWritePacket(Addr addr, unsigned int size, uint8_t *data)
Generate a write request to be sent to the outside.
statistics::Formula avgWriteBW
void recvReqRetry() override
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
void sendNextReq()
Send outstanding requests from requestPool to the port.
const uint64_t memSize
Size of the memory in bytes that will be allocated for the array.
int reqQueueSize
The maximum number of outstanding requests (i.e.
statistics::Scalar totalBytesRead
virtual void startup() override
startup() is the final initialization call before simulation.
void createNextReq()
Create the next request and store in the requestPool.
const PortID InvalidPortID
int onTheFlyRequests
The number of requests that have existed this GUPSGen and have no corresponding response (they are be...
bool initMemory
Boolean value to determine whether we need to initialize the array with the right values,...
void handleResponse(PacketPtr pkt)
Handles the incoming responses from the outside.
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
definition of the GenPort class which is of the type RequestPort.
Addr startAddr
The beginning address for allocating the array.
void wakeUp()
This function allows the port to wake its owner GUPSGen object in case it has stopped working due to ...
Addr indexToAddr(uint64_t index)
Convert and index from array to its physical address in the memory.
EventFunctionWrapper nextCreateEvent
Corresponding event to the createNextReq function.
std::queue< PacketPtr > responsePool
A queue to store response packets from reads.
const Params & params() const
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
PacketPtr blockedPacket
Pointer to the blocked packet in the port.
virtual void init() override
init() is called after all C++ SimObjects have been created and all ports are connected.
const int elementSize
size of each element in the array (in bytes).
bool _blocked
Boolean value to remember if the port is previously blocked and is occupied by a previous request,...
GenPort(const std::string &name, GUPSGen *owner)
statistics::Scalar totalReadLat
statistics::Formula avgReadLat
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
int64_t numUpdates
The total number of updates (one read and one write) to do for running the benchmark to completion.
int updateLimit
The number of updates to do before creating an exit event.
Ports are used to interface objects to each other.
std::unordered_map< RequestPtr, uint64_t > updateTable
Use an unordered map to store future updates on current reads as the updated value depends on the ind...
PacketPtr getReadPacket(Addr addr, unsigned int size)
Generate a read request to be sent to the outside.
const RequestorID requestorId
Used to identify each requestor in a system object.
statistics::Scalar totalBytesWritten
std::queue< PacketPtr > requestPool
A queue to store the outstanding requests whether read or write.
void regStats() override
Callback to set stat parameters.
void sendTimingPacket(PacketPtr pkt)
This function send a timing request to the port's peer responsePort.
bool doneReading
Boolean to indicate whether the generator is done creating read requests, which means number of reads...
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
statistics::Scalar totalWrites
statistics::Formula avgReadBW
GUPSGen * owner
Pointer to the GUPSGen this port belongs to.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
int readRequests
The number of read requests currently created.
System *const system
Pointer to the system object this GUPSGen belongs to, the system object is used to acquire a requesto...
std::unordered_map< RequestPtr, Tick > exitTimes
Use an unordered map to track the time at which each request exits the GUPSGen.
statistics::Formula avgWriteLat
int64_t tableSize
Number of elements in the allocated array.
statistics::Scalar totalReads
void sendFunctionalPacket(PacketPtr pkt)
This function send a functional request to the port's peer responsePort.
Generated on Tue Dec 21 2021 11:34:27 for gem5 by doxygen 1.8.17