gem5
v21.0.1.0
|
#include <Histogram.hh>
Public Member Functions | |
Histogram (int binsize=1, uint32_t bins=50) | |
~Histogram () | |
void | add (int64_t value) |
void | add (Histogram &hist) |
void | doubleBinSize () |
void | clear () |
void | clear (uint32_t bins) |
void | clear (int binsize, uint32_t bins) |
uint64_t | size () const |
uint32_t | getBins () const |
int | getBinSize () const |
int64_t | getTotal () const |
uint64_t | getSquaredTotal () const |
uint64_t | getData (int index) const |
int64_t | getMax () const |
void | printWithMultiplier (std::ostream &out, double multiplier) const |
void | printPercent (std::ostream &out) const |
void | print (std::ostream &out) const |
Private Member Functions | |
double | getStandardDeviation () const |
Private Attributes | |
std::vector< uint64_t > | m_data |
int64_t | m_max |
uint64_t | m_count |
int | m_binsize |
uint32_t | m_largest_bin |
int64_t | m_sumSamples |
uint64_t | m_sumSquaredSamples |
Definition at line 37 of file Histogram.hh.
Histogram::Histogram | ( | int | binsize = 1 , |
uint32_t | bins = 50 |
||
) |
Definition at line 36 of file Histogram.cc.
Histogram::~Histogram | ( | ) |
Definition at line 42 of file Histogram.cc.
void Histogram::add | ( | Histogram & | hist | ) |
Definition at line 121 of file Histogram.cc.
References add(), doubleBinSize(), fatal, getBins(), getBinSize(), getData(), getMax(), getSquaredTotal(), getTotal(), ArmISA::i, ArmISA::j, m_binsize, m_count, m_data, m_largest_bin, m_max, m_sumSamples, m_sumSquaredSamples, and size().
void Histogram::add | ( | int64_t | value | ) |
Definition at line 86 of file Histogram.cc.
References doubleBinSize(), floorLog2(), MipsISA::index, m_binsize, m_count, m_data, m_largest_bin, m_max, m_sumSamples, and m_sumSquaredSamples.
Referenced by add(), AccessTraceForAddress::addSample(), StoreTrace::downgrade(), printSorted(), AddressProfiler::profileGetS(), AddressProfiler::profileGetX(), and AddressProfiler::profileRetry().
|
inline |
Definition at line 47 of file Histogram.hh.
References clear(), and m_data.
Referenced by clear(), AddressProfiler::clearStats(), StoreTrace::clearSummary(), and Histogram().
void Histogram::clear | ( | int | binsize, |
uint32_t | bins | ||
) |
Definition at line 47 of file Histogram.cc.
void Histogram::clear | ( | uint32_t | bins | ) |
Definition at line 54 of file Histogram.cc.
References ArmISA::i, m_count, m_data, m_largest_bin, m_max, m_sumSamples, and m_sumSquaredSamples.
void Histogram::doubleBinSize | ( | ) |
|
inline |
|
inline |
|
inline |
Definition at line 56 of file Histogram.hh.
References MipsISA::index, and m_data.
Referenced by add().
|
inline |
|
inline |
|
private |
Definition at line 174 of file Histogram.cc.
References m_count, m_sumSamples, and m_sumSquaredSamples.
Referenced by printWithMultiplier().
|
inline |
Definition at line 54 of file Histogram.hh.
References m_sumSamples.
Referenced by add(), and AccessTraceForAddress::getTotal().
void Histogram::print | ( | std::ostream & | out | ) | const |
Definition at line 186 of file Histogram.cc.
References printWithMultiplier().
Referenced by operator<<().
void Histogram::printPercent | ( | std::ostream & | out | ) | const |
Definition at line 192 of file Histogram.cc.
References m_count, and printWithMultiplier().
Referenced by AddressProfiler::printStats().
void Histogram::printWithMultiplier | ( | std::ostream & | out, |
double | multiplier | ||
) | const |
Definition at line 202 of file Histogram.cc.
References getStandardDeviation(), ArmISA::i, m_binsize, m_count, m_data, m_largest_bin, m_max, and m_sumSamples.
Referenced by print(), and printPercent().
|
inline |
Definition at line 51 of file Histogram.hh.
References m_count.
Referenced by add(), node_less_then_eq(), and AddressProfiler::printStats().
|
private |
Definition at line 67 of file Histogram.hh.
Referenced by add(), clear(), doubleBinSize(), getBinSize(), Histogram(), and printWithMultiplier().
|
private |
Definition at line 66 of file Histogram.hh.
Referenced by add(), clear(), getStandardDeviation(), printPercent(), printWithMultiplier(), and size().
|
private |
Definition at line 64 of file Histogram.hh.
Referenced by add(), clear(), doubleBinSize(), getBins(), getData(), and printWithMultiplier().
|
private |
Definition at line 68 of file Histogram.hh.
Referenced by add(), clear(), and printWithMultiplier().
|
private |
Definition at line 65 of file Histogram.hh.
Referenced by add(), clear(), getMax(), and printWithMultiplier().
|
private |
Definition at line 70 of file Histogram.hh.
Referenced by add(), clear(), getStandardDeviation(), getTotal(), and printWithMultiplier().
|
private |
Definition at line 71 of file Histogram.hh.
Referenced by add(), clear(), getSquaredTotal(), and getStandardDeviation().