gem5
v21.1.0.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/compiler.hh"
#include "base/cprintf.hh"
#include "base/intmath.hh"
#include "base/logging.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 | |
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. | |
gem5::statistics | |
Typedefs | |
typedef std::shared_ptr< Node > | gem5::statistics::NodePtr |
Shared pointer to a function Node. More... | |
typedef void(* | gem5::statistics::Handler) () |
Register reset and dump handlers. More... | |
typedef std::map< const void *, Info * > | gem5::statistics::MapType |
Functions | |
gem5::GEM5_DEPRECATED_NAMESPACE (Stats, statistics) | |
Temp | gem5::statistics::operator+ (Temp l, Temp r) |
Temp | gem5::statistics::operator- (Temp l, Temp r) |
Temp | gem5::statistics::operator* (Temp l, Temp r) |
Temp | gem5::statistics::operator/ (Temp l, Temp r) |
Temp | gem5::statistics::operator- (Temp l) |
template<typename T > | |
Temp | gem5::statistics::constant (T val) |
template<typename T > | |
Temp | gem5::statistics::constantVector (T val) |
Temp | gem5::statistics::sum (Temp val) |
void | gem5::statistics::dump () |
Dump all statistics data to the registered outputs. More... | |
void | gem5::statistics::reset () |
void | gem5::statistics::enable () |
bool | gem5::statistics::enabled () |
const Info * | gem5::statistics::resolve (const std::string &name) |
void | gem5::statistics::registerHandlers (Handler reset_handler, Handler dump_handler) |
void | gem5::statistics::registerResetCallback (const std::function< void()> &callback) |
Register a callback that should be called whenever statistics are reset. More... | |
void | gem5::statistics::registerDumpCallback (const std::function< void()> &callback) |
Register a callback that should be called whenever statistics are about to be dumped. More... | |
void | gem5::statistics::processResetQueue () |
Process all the callbacks in the reset callbacks queue. More... | |
void | gem5::statistics::processDumpQueue () |
Process all the callbacks in the dump callbacks queue. More... | |
std::list< Info * > & | gem5::statistics::statsList () |
MapType & | gem5::statistics::statsMap () |
void | gem5::debugDumpStats () |
Declaration of Statistics objects.
Definition in file statistics.hh.