gem5
v20.1.0.0
|
The traffic generator is a module that generates stimuli for the memory system, based on a collection of simple behaviours that are either probabilistic or based on traces. More...
#include <traffic_gen.hh>
Classes | |
struct | Transition |
Struct to represent a probabilistic transition during parsing. More... | |
Public Member Functions | |
TrafficGen (const TrafficGenParams *p) | |
~TrafficGen () | |
void | init () override |
init() is called after all C++ SimObjects have been created and all ports are connected. More... | |
void | initState () override |
initState() is called on each SimObject when not restoring from a checkpoint. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from BaseTrafficGen | |
BaseTrafficGen (const BaseTrafficGenParams *p) | |
~BaseTrafficGen () | |
Port & | getPort (const std::string &if_name, PortID idx=InvalidPortID) override |
Get a port with a given name and index. More... | |
DrainState | drain () override |
Draining is the process of clearing out the states of SimObjects.These are the SimObjects that are partially executed or are partially in flight. More... | |
std::shared_ptr< BaseGen > | createIdle (Tick duration) |
std::shared_ptr< BaseGen > | createExit (Tick duration) |
std::shared_ptr< BaseGen > | createLinear (Tick duration, Addr start_addr, Addr end_addr, Addr blocksize, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit) |
std::shared_ptr< BaseGen > | createRandom (Tick duration, Addr start_addr, Addr end_addr, Addr blocksize, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit) |
std::shared_ptr< BaseGen > | createDram (Tick duration, Addr start_addr, Addr end_addr, Addr blocksize, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit, unsigned int num_seq_pkts, unsigned int page_size, unsigned int nbr_of_banks, unsigned int nbr_of_banks_util, Enums::AddrMap addr_mapping, unsigned int nbr_of_ranks) |
std::shared_ptr< BaseGen > | createDramRot (Tick duration, Addr start_addr, Addr end_addr, Addr blocksize, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit, unsigned int num_seq_pkts, unsigned int page_size, unsigned int nbr_of_banks, unsigned int nbr_of_banks_util, Enums::AddrMap addr_mapping, unsigned int nbr_of_ranks, unsigned int max_seq_count_per_rank) |
std::shared_ptr< BaseGen > | createHybrid (Tick duration, Addr start_addr_dram, Addr end_addr_dram, Addr blocksize_dram, Addr start_addr_nvm, Addr end_addr_nvm, Addr blocksize_nvm, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit, unsigned int num_seq_pkts_dram, unsigned int page_size_dram, unsigned int nbr_of_banks_dram, unsigned int nbr_of_banks_util_dram, unsigned int num_seq_pkts_nvm, unsigned int buffer_size_nvm, unsigned int nbr_of_banks_nvm, unsigned int nbr_of_banks_util_nvm, Enums::AddrMap addr_mapping, unsigned int nbr_of_ranks_dram, unsigned int nbr_of_ranks_nvm, uint8_t nvm_percent) |
std::shared_ptr< BaseGen > | createNvm (Tick duration, Addr start_addr, Addr end_addr, Addr blocksize, Tick min_period, Tick max_period, uint8_t read_percent, Addr data_limit, unsigned int num_seq_pkts, unsigned int buffer_size, unsigned int nbr_of_banks, unsigned int nbr_of_banks_util, Enums::AddrMap addr_mapping, unsigned int nbr_of_ranks) |
std::shared_ptr< BaseGen > | createTrace (Tick duration, const std::string &trace_file, Addr addr_offset) |
Public Member Functions inherited from ClockedObject | |
ClockedObject (const ClockedObjectParams *p) | |
const Params * | params () const |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from SimObject | |
const Params * | params () const |
SimObject (const Params *_params) | |
virtual | ~SimObject () |
virtual const std::string | name () const |
virtual void | loadState (CheckpointIn &cp) |
loadState() is called on each SimObject when restoring from a checkpoint. More... | |
virtual void | regProbePoints () |
Register probe points for this object. More... | |
virtual void | regProbeListeners () |
Register probe listeners for this object. More... | |
ProbeManager * | getProbeManager () |
Get the probe manager for this object. More... | |
virtual void | startup () |
startup() is the final initialization call before simulation. More... | |
DrainState | drain () override |
Provide a default implementation of the drain interface for objects that don't need draining. More... | |
virtual void | memWriteback () |
Write back dirty buffers to memory using functional writes. More... | |
virtual void | memInvalidate () |
Invalidate the contents of memory buffers. More... | |
void | serialize (CheckpointOut &cp) const override |
Serialize an object. More... | |
void | unserialize (CheckpointIn &cp) override |
Unserialize an object. More... | |
Public Member Functions inherited from EventManager | |
EventQueue * | eventQueue () const |
void | schedule (Event &event, Tick when) |
void | deschedule (Event &event) |
void | reschedule (Event &event, Tick when, bool always=false) |
void | schedule (Event *event, Tick when) |
void | deschedule (Event *event) |
void | reschedule (Event *event, Tick when, bool always=false) |
void | wakeupEventQueue (Tick when=(Tick) -1) |
This function is not needed by the usual gem5 event loop but may be necessary in derived EventQueues which host gem5 on other schedulers. More... | |
void | setCurTick (Tick newVal) |
EventManager (EventManager &em) | |
Event manger manages events in the event queue. More... | |
EventManager (EventManager *em) | |
EventManager (EventQueue *eq) | |
Public Member Functions inherited from Serializable | |
Serializable () | |
virtual | ~Serializable () |
void | serializeSection (CheckpointOut &cp, const char *name) const |
Serialize an object into a new section. More... | |
void | serializeSection (CheckpointOut &cp, const std::string &name) const |
void | unserializeSection (CheckpointIn &cp, const char *name) |
Unserialize an a child object. More... | |
void | unserializeSection (CheckpointIn &cp, const std::string &name) |
Public Member Functions inherited from Drainable | |
DrainState | drainState () const |
Return the current drain state of an object. More... | |
virtual void | notifyFork () |
Notify a child process of a fork. More... | |
Public Member Functions inherited from Stats::Group | |
Group (Group *parent, const char *name=nullptr) | |
Construct a new statistics group. More... | |
virtual | ~Group () |
virtual void | regStats () |
Callback to set stat parameters. More... | |
virtual void | resetStats () |
Callback to reset stats. More... | |
virtual void | preDumpStats () |
Callback before stats are dumped. More... | |
void | addStat (Stats::Info *info) |
Register a stat with this group. More... | |
const std::map< std::string, Group * > & | getStatGroups () const |
Get all child groups associated with this object. More... | |
const std::vector< Info * > & | getStats () const |
Get all stats associated with this object. More... | |
void | addStatGroup (const char *name, Group *block) |
Add a stat block as a child of this block. More... | |
const Info * | resolveStat (std::string name) const |
Resolve a stat by its name within this group. More... | |
Group ()=delete | |
Group (const Group &)=delete | |
Group & | operator= (const Group &)=delete |
Public Member Functions inherited from Clocked | |
void | updateClockPeriod () |
Update the tick to the current tick. More... | |
Tick | clockEdge (Cycles cycles=Cycles(0)) const |
Determine the tick when a cycle begins, by default the current one, but the argument also enables the caller to determine a future cycle. More... | |
Cycles | curCycle () const |
Determine the current cycle, corresponding to a tick aligned to a clock edge. More... | |
Tick | nextCycle () const |
Based on the clock of the object, determine the start tick of the first cycle that is at least one cycle in the future. More... | |
uint64_t | frequency () const |
Tick | clockPeriod () const |
double | voltage () const |
Cycles | ticksToCycles (Tick t) const |
Tick | cyclesToTicks (Cycles c) const |
Protected Member Functions | |
std::shared_ptr< BaseGen > | nextGenerator () override |
Protected Member Functions inherited from BaseTrafficGen | |
void | start () |
Protected Member Functions inherited from Drainable | |
Drainable () | |
virtual | ~Drainable () |
virtual void | drainResume () |
Resume execution after a successful drain. More... | |
void | signalDrainDone () const |
Signal that an object is drained. More... | |
Protected Member Functions inherited from Clocked | |
Clocked (ClockDomain &clk_domain) | |
Create a clocked object and set the clock domain based on the parameters. More... | |
Clocked (Clocked &)=delete | |
Clocked & | operator= (Clocked &)=delete |
virtual | ~Clocked () |
Virtual destructor due to inheritance. More... | |
void | resetClock () const |
Reset the object's clock using the current global tick value. More... | |
virtual void | clockPeriodUpdated () |
A hook subclasses can implement so they can do any extra work that's needed when the clock rate is changed. More... | |
Private Member Functions | |
std::string | resolveFile (const std::string &name) |
Resolve a file path in the configuration file. More... | |
void | parseConfig () |
Parse the config file and build the state map and transition matrix. More... | |
size_t | nextState () |
Use the transition matrix to find the next state index. More... | |
Private Attributes | |
const std::string | configFile |
The config file to parse. More... | |
std::vector< std::vector< double > > | transitionMatrix |
State transition matrix. More... | |
uint32_t | currState |
Index of the current state. More... | |
std::unordered_map< uint32_t, std::shared_ptr< BaseGen > > | states |
Map of generator states. More... | |
Additional Inherited Members | |
Public Types inherited from ClockedObject | |
typedef ClockedObjectParams | Params |
Parameters of ClockedObject. More... | |
Public Types inherited from SimObject | |
typedef SimObjectParams | Params |
Static Public Member Functions inherited from SimObject | |
static void | serializeAll (CheckpointOut &cp) |
Serialize all SimObjects in the system. More... | |
static SimObject * | find (const char *name) |
Find the SimObject with the given name and return a pointer to it. More... | |
Static Public Member Functions inherited from Serializable | |
static const std::string & | currentSection () |
Gets the fully-qualified name of the active section. More... | |
static void | serializeAll (const std::string &cpt_dir) |
Serializes all the SimObjects. More... | |
static void | unserializeGlobals (CheckpointIn &cp) |
Public Attributes inherited from ClockedObject | |
PowerState * | powerState |
Protected Attributes inherited from BaseTrafficGen | |
System *const | system |
The system used to determine which mode we are currently operating in. More... | |
const bool | elasticReq |
Determine whether to add elasticity in the request injection, thus responding to backpressure by slowing things down. More... | |
const Tick | progressCheck |
Time to tolerate waiting for retries (not making progress), until we declare things broken. More... | |
std::unordered_map< RequestPtr, Tick > | waitingResp |
Reqs waiting for response. More... | |
BaseTrafficGen::StatGroup | stats |
const RequestorID | requestorId |
RequestorID used in generated requests. More... | |
std::shared_ptr< BaseGen > | activeGenerator |
Currently active generator. More... | |
std::unique_ptr< StreamGen > | streamGenerator |
Stream/SubStreamID Generator. More... | |
Protected Attributes inherited from SimObject | |
const SimObjectParams * | _params |
Cached copy of the object parameters. More... | |
Protected Attributes inherited from EventManager | |
EventQueue * | eventq |
A pointer to this object's event queue. More... | |
The traffic generator is a module that generates stimuli for the memory system, based on a collection of simple behaviours that are either probabilistic or based on traces.
It can be used stand alone for creating test cases for interconnect and memory controllers, or function as a black-box replacement for system components that are not yet modelled in detail, e.g. a video engine or baseband subsystem in an SoC.
The traffic generator has a single request port that is used to send requests, independent of the specific behaviour. The behaviour of the traffic generator is specified in a configuration file, and this file describes a state transition graph where each state is a specific generator behaviour. Examples include idling, generating linear address sequences, random sequences and replay of captured traces. By describing these behaviours as states, it is straight forward to create very complex behaviours, simply by arranging them in graphs. The graph transitions can also be annotated with probabilities, effectively making it a Markov Chain.
Definition at line 67 of file traffic_gen.hh.
TrafficGen::TrafficGen | ( | const TrafficGenParams * | p | ) |
Definition at line 54 of file traffic_gen.cc.
|
inline |
Definition at line 125 of file traffic_gen.hh.
|
overridevirtual |
init() is called after all C++ SimObjects have been created and all ports are connected.
Initializations that are independent of unserialization but rely on a fully instantiated and connected SimObject graph should be done here.
Reimplemented from BaseTrafficGen.
Definition at line 68 of file traffic_gen.cc.
References BaseTrafficGen::init(), and parseConfig().
|
overridevirtual |
initState() is called on each SimObject when not restoring from a checkpoint.
This provides a hook for state initializations that are only required for a "cold start".
Reimplemented from SimObject.
Definition at line 76 of file traffic_gen.cc.
References DPRINTF, SimObject::initState(), System::isTimingMode(), BaseTrafficGen::start(), and BaseTrafficGen::system.
|
overrideprotectedvirtual |
Implements BaseTrafficGen.
Definition at line 367 of file traffic_gen.cc.
References BaseTrafficGen::activeGenerator, currState, DPRINTF, nextState(), and states.
|
private |
Use the transition matrix to find the next state index.
Definition at line 352 of file traffic_gen.cc.
References currState, ArmISA::i, MipsISA::p, Random::random(), random_mt, and transitionMatrix.
Referenced by nextGenerator().
|
private |
Parse the config file and build the state map and transition matrix.
Definition at line 131 of file traffic_gen.cc.
References configFile, BaseTrafficGen::createDram(), BaseTrafficGen::createDramRot(), BaseTrafficGen::createExit(), BaseTrafficGen::createIdle(), BaseTrafficGen::createLinear(), BaseTrafficGen::createNvm(), BaseTrafficGen::createRandom(), BaseTrafficGen::createTrace(), currState, divCeil(), DPRINTF, fatal, ArmISA::i, ArmISA::id, MipsISA::is, ArmISA::j, ArmISA::mode, SimObject::name(), resolveFile(), states, RiscvISA::sum, ArmISA::t, BaseTrafficGen::transition(), transitionMatrix, and warn.
Referenced by init().
|
private |
Resolve a file path in the configuration file.
This method resolves a relative path to a file that has been referenced in the configuration file. It first tries to resolve the file relative to the configuration file's path. If that fails, it falls back to constructing a path relative to the current working directory.
Absolute paths are returned unmodified.
name | Path to resolve |
Definition at line 110 of file traffic_gen.cc.
References configFile, csprintf(), and SimObject::name().
Referenced by parseConfig().
|
overridevirtual |
Serialize an object.
Output an object's state into the current checkpoint section.
cp | Checkpoint state |
Reimplemented from BaseTrafficGen.
Definition at line 91 of file traffic_gen.cc.
References currState, BaseTrafficGen::serialize(), and SERIALIZE_SCALAR.
|
overridevirtual |
Unserialize an object.
Read an object's state from the current checkpoint section.
cp | Checkpoint state |
Reimplemented from BaseTrafficGen.
Definition at line 99 of file traffic_gen.cc.
References currState, BaseTrafficGen::unserialize(), and UNSERIALIZE_SCALAR.
|
private |
The config file to parse.
Definition at line 73 of file traffic_gen.hh.
Referenced by parseConfig(), and resolveFile().
|
private |
Index of the current state.
Definition at line 113 of file traffic_gen.hh.
Referenced by nextGenerator(), nextState(), parseConfig(), serialize(), and unserialize().
|
private |
Map of generator states.
Definition at line 116 of file traffic_gen.hh.
Referenced by nextGenerator(), and parseConfig().
|
private |
State transition matrix.
Definition at line 110 of file traffic_gen.hh.
Referenced by nextState(), and parseConfig().