gem5 v24.0.0.0
Loading...
Searching...
No Matches
The Stats API.

Functions

 gem5::statistics::Group::Group (Group *parent, const char *name=nullptr)
 Construct a new statistics group.
 
virtual void gem5::statistics::Group::regStats ()
 Callback to set stat parameters.
 
virtual void gem5::statistics::Group::resetStats ()
 Callback to reset stats.
 
virtual void gem5::statistics::Group::preDumpStats ()
 Callback before stats are dumped.
 
void gem5::statistics::Group::addStat (statistics::Info *info)
 Register a stat with this group.
 
const std::map< std::string, Group * > & gem5::statistics::Group::getStatGroups () const
 Get all child groups associated with this object.
 
const std::vector< Info * > & gem5::statistics::Group::getStats () const
 Get all stats associated with this object.
 
void gem5::statistics::Group::addStatGroup (const char *name, Group *block)
 Add a stat block as a child of this block.
 
 gem5::statistics::Group::Group ()=delete
 
 gem5::statistics::Group::Group (const Group &)=delete
 
Groupgem5::statistics::Group::operator= (const Group &)=delete
 

Detailed Description

These methods relate to the statistics I/O interface.

Function Documentation

◆ addStat()

void gem5::statistics::Group::addStat ( statistics::Info * info)

◆ addStatGroup()

void gem5::statistics::Group::addStatGroup ( const char * name,
Group * block )

Add a stat block as a child of this block.

This method may only be called from a Group constructor or from regStats. It's typically only called explicitly from Python when setting up the SimObject hierarchy.

Definition at line 117 of file group.cc.

References name(), panic_if, and gem5::statistics::Group::statGroups.

Referenced by gem5::statistics::Group::Group(), gem5::o3::LSQUnit::init(), gem5::o3::MemDepUnit::init(), gem5::pybind_init_stats(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), and TEST().

◆ getStatGroups()

const std::map< std::string, Group * > & gem5::statistics::Group::getStatGroups ( ) const

Get all child groups associated with this object.

Definition at line 181 of file group.cc.

References gem5::statistics::Group::statGroups.

Referenced by gem5::pybind_init_stats(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), TEST(), and TEST().

◆ getStats()

const std::vector< Info * > & gem5::statistics::Group::getStats ( ) const

Get all stats associated with this object.

Definition at line 187 of file group.cc.

References gem5::statistics::Group::stats.

Referenced by gem5::pybind_init_stats(), TEST(), TEST(), TEST(), TEST(), and TEST().

◆ Group() [1/3]

gem5::statistics::Group::Group ( )
delete

Referenced by TEST(), and TEST().

◆ Group() [2/3]

gem5::statistics::Group::Group ( const Group & )
delete

◆ Group() [3/3]

gem5::statistics::Group::Group ( Group * parent,
const char * name = nullptr )

Construct a new statistics group.

The constructor takes two parameters, a parent and a name. The parent group should typically be specified. However, there are special cases where the parent group may be null. One such special case is SimObjects where the Python code performs late binding of the group parent.

If the name parameter is NULL, the group gets merged into the parent group instead of creating a sub-group. Stats belonging to a merged group behave as if they have been added directly to the parent group.

Parameters
parentParent group to associate this object to.
nameName of this group, can be NULL to merge this group with the parent group.

Definition at line 53 of file group.cc.

References gem5::statistics::Group::addStatGroup(), gem5::statistics::Group::mergeStatGroup(), and name().

◆ operator=()

Group & gem5::statistics::Group::operator= ( const Group & )
delete

◆ preDumpStats()

void gem5::statistics::Group::preDumpStats ( )
virtual

Callback before stats are dumped.

This can be overridden by objects that need to perform calculations in addition to the capabiltiies implemented in the stat framework.

Reimplemented in gem5::BaseTags::BaseTagStats, gem5::memory::DRAMInterface::RankStats, and gem5::PowerState::PowerStateStats.

Definition at line 99 of file group.cc.

References gem5::MipsISA::g, gem5::statistics::Group::mergedStatGroups, and gem5::statistics::Group::statGroups.

Referenced by gem5::BaseTags::BaseTagStats::preDumpStats(), gem5::memory::DRAMInterface::RankStats::preDumpStats(), gem5::PowerState::PowerStateStats::preDumpStats(), gem5::pybind_init_stats(), and TEST().

◆ regStats()

void gem5::statistics::Group::regStats ( )
virtual

Callback to set stat parameters.

This callback is typically used for complex stats (e.g., distributions) that need parameters in addition to a name and a description. Stat names and descriptions should typically be set from the constructor usingo from the constructor using the ADD_STAT macro.

Reimplemented in gem5::BaseCache::CacheStats, gem5::BaseCPU, gem5::BaseTags::BaseTagStats, gem5::BaseXBar, gem5::CoherentXBar, gem5::compression::Base::BaseStats, gem5::compression::BaseDictionaryCompressor::DictionaryStats, gem5::compression::Multi::MultiStats, gem5::GUPSGen::GUPSGenStat, gem5::MathExprPowerModel, gem5::memory::AbstractMemory::MemStats, gem5::memory::DRAMInterface::DRAMStats, gem5::memory::DRAMInterface::RankStats, gem5::memory::MemCtrl::CtrlStats, gem5::memory::NVMInterface::NVMStats, gem5::memory::qos::MemCtrl::MemCtrlStats, gem5::memory::qos::Policy, gem5::MinorCPU, gem5::PowerDomain::PowerDomainStats, gem5::PowerState::PowerStateStats, gem5::ruby::AbstractController, gem5::ruby::garnet::GarnetNetwork, gem5::ruby::garnet::Router, gem5::ruby::RubySystem, gem5::ruby::SimpleNetwork, gem5::ruby::Switch, gem5::SectorTags::SectorTagsStats, gem5::SnoopFilter, gem5::SpatterGen::SpatterGenStats, gem5::System, gem5::TickedObject, gem5::VegaTLBCoalescer, and sc_gem5::Kernel.

Definition at line 68 of file group.cc.

References DPRINTF, gem5::MipsISA::g, gem5::statistics::Group::mergedStatGroups, gem5::Named::name(), and gem5::statistics::Group::statGroups.

Referenced by gem5::CxxConfigManager::instantiate(), gem5::pybind_init_stats(), gem5::BaseCache::CacheStats::regStats(), gem5::BaseCPU::regStats(), gem5::BaseTags::BaseTagStats::regStats(), gem5::BaseXBar::regStats(), gem5::compression::Base::BaseStats::regStats(), gem5::compression::BaseDictionaryCompressor::DictionaryStats::regStats(), gem5::compression::Multi::MultiStats::regStats(), gem5::MathExprPowerModel::regStats(), gem5::memory::AbstractMemory::MemStats::regStats(), gem5::memory::DRAMInterface::RankStats::regStats(), gem5::memory::qos::MemCtrl::MemCtrlStats::regStats(), gem5::PowerDomain::PowerDomainStats::regStats(), gem5::PowerState::PowerStateStats::regStats(), gem5::ruby::AbstractController::regStats(), gem5::ruby::garnet::GarnetNetwork::regStats(), gem5::ruby::garnet::Router::regStats(), gem5::ruby::RubySystem::regStats(), gem5::ruby::SimpleNetwork::regStats(), gem5::ruby::Switch::regStats(), gem5::SectorTags::SectorTagsStats::regStats(), gem5::SnoopFilter::regStats(), gem5::System::regStats(), gem5::TickedObject::regStats(), gem5::VegaTLBCoalescer::regStats(), sc_gem5::Kernel::regStats(), gem5::BaseCache::CacheCmdStats::regStatsFromParent(), and TEST().

◆ resetStats()


Generated on Tue Jun 18 2024 16:24:08 for gem5 by doxygen 1.11.0