gem5
v20.1.0.0
|
Public Member Functions | |
ElasticTraceStats (Stats::Group *parent) | |
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 Attributes | |
Stats::Scalar | numRegDep |
Number of register dependencies recorded during tracing. More... | |
Stats::Scalar | numOrderDepStores |
Number of stores that got assigned a commit order dependency on a past load/store. More... | |
Stats::Scalar | numIssueOrderDepLoads |
Number of load insts that got assigned an issue order dependency because they were dependency-free. More... | |
Stats::Scalar | numIssueOrderDepStores |
Number of store insts that got assigned an issue order dependency because they were dependency-free. More... | |
Stats::Scalar | numIssueOrderDepOther |
Number of non load/store insts that got assigned an issue order dependency because they were dependency-free. More... | |
Stats::Scalar | numFilteredNodes |
Number of filtered nodes. More... | |
Stats::Scalar | maxNumDependents |
Maximum number of dependents on any instruction. More... | |
Stats::Scalar | maxTempStoreSize |
Maximum size of the temporary store mostly useful as a check that it is not growing. More... | |
Stats::Scalar | maxPhysRegDepMapSize |
Maximum size of the map that holds the last writer to a physical register. More... | |
Definition at line 507 of file elastic_trace.hh.
ElasticTrace::ElasticTraceStats::ElasticTraceStats | ( | Stats::Group * | parent | ) |
Definition at line 878 of file elastic_trace.cc.
Stats::Scalar ElasticTrace::ElasticTraceStats::maxNumDependents |
Maximum number of dependents on any instruction.
Definition at line 541 of file elastic_trace.hh.
Referenced by ElasticTrace::assignRobDep().
Stats::Scalar ElasticTrace::ElasticTraceStats::maxPhysRegDepMapSize |
Maximum size of the map that holds the last writer to a physical register.
Definition at line 553 of file elastic_trace.hh.
Referenced by ElasticTrace::updateRegDep().
Stats::Scalar ElasticTrace::ElasticTraceStats::maxTempStoreSize |
Maximum size of the temporary store mostly useful as a check that it is not growing.
Definition at line 547 of file elastic_trace.hh.
Referenced by ElasticTrace::recordExecTick().
Stats::Scalar ElasticTrace::ElasticTraceStats::numFilteredNodes |
Number of filtered nodes.
Definition at line 538 of file elastic_trace.hh.
Referenced by ElasticTrace::writeDepTrace().
Stats::Scalar ElasticTrace::ElasticTraceStats::numIssueOrderDepLoads |
Number of load insts that got assigned an issue order dependency because they were dependency-free.
Definition at line 523 of file elastic_trace.hh.
Referenced by ElasticTrace::updateIssueOrderDep().
Stats::Scalar ElasticTrace::ElasticTraceStats::numIssueOrderDepOther |
Number of non load/store insts that got assigned an issue order dependency because they were dependency-free.
Definition at line 535 of file elastic_trace.hh.
Referenced by ElasticTrace::updateIssueOrderDep().
Stats::Scalar ElasticTrace::ElasticTraceStats::numIssueOrderDepStores |
Number of store insts that got assigned an issue order dependency because they were dependency-free.
Definition at line 529 of file elastic_trace.hh.
Referenced by ElasticTrace::updateIssueOrderDep().
Stats::Scalar ElasticTrace::ElasticTraceStats::numOrderDepStores |
Number of stores that got assigned a commit order dependency on a past load/store.
Definition at line 517 of file elastic_trace.hh.
Stats::Scalar ElasticTrace::ElasticTraceStats::numRegDep |
Number of register dependencies recorded during tracing.
Definition at line 511 of file elastic_trace.hh.
Referenced by ElasticTrace::addDepTraceRecord(), and ElasticTrace::updateCommitOrderDep().