gem5
v21.0.1.0
|
#include <algorithm>
#include <cassert>
#include <cmath>
#include <functional>
#include <iosfwd>
#include <list>
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "base/cast.hh"
#include "base/cprintf.hh"
#include "base/intmath.hh"
#include "base/stats/group.hh"
#include "base/stats/info.hh"
#include "base/stats/output.hh"
#include "base/stats/storage.hh"
#include "base/stats/types.hh"
#include "base/stats/units.hh"
#include "base/str.hh"
#include "base/types.hh"
Go to the source code of this file.
Namespaces | |
Stats | |
Typedefs | |
typedef std::shared_ptr< Node > | Stats::NodePtr |
Shared pointer to a function Node. More... | |
typedef void(* | Stats::Handler) () |
Register reset and dump handlers. More... | |
typedef std::map< const void *, Info * > | Stats::MapType |
Functions | |
Temp | Stats::operator+ (Temp l, Temp r) |
Temp | Stats::operator- (Temp l, Temp r) |
Temp | Stats::operator* (Temp l, Temp r) |
Temp | Stats::operator/ (Temp l, Temp r) |
Temp | Stats::operator- (Temp l) |
template<typename T > | |
Temp | Stats::constant (T val) |
template<typename T > | |
Temp | Stats::constantVector (T val) |
Temp | Stats::sum (Temp val) |
void | Stats::dump () |
Dump all statistics data to the registered outputs. More... | |
void | Stats::reset () |
void | Stats::enable () |
bool | Stats::enabled () |
const Info * | Stats::resolve (const std::string &name) |
void | Stats::registerHandlers (Handler reset_handler, Handler dump_handler) |
void | Stats::registerResetCallback (const std::function< void()> &callback) |
Register a callback that should be called whenever statistics are reset. More... | |
void | Stats::registerDumpCallback (const std::function< void()> &callback) |
Register a callback that should be called whenever statistics are about to be dumped. More... | |
void | Stats::processResetQueue () |
Process all the callbacks in the reset callbacks queue. More... | |
void | Stats::processDumpQueue () |
Process all the callbacks in the dump callbacks queue. More... | |
std::list< Info * > & | Stats::statsList () |
MapType & | Stats::statsMap () |
void | debugDumpStats () |
Declaration of Statistics objects.
Definition in file statistics.hh.
void debugDumpStats | ( | ) |
Definition at line 327 of file statistics.cc.
References Stats::dump().