gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
Public Member Functions | Private Attributes | List of all members
Stats::Group Class Reference

Statistics container. More...

#include <group.hh>

Inheritance diagram for Stats::Group:
AbstractController::ControllerStats AbstractMemory::MemStats ArmISA::TableWalker::TableWalkerStats ArmISA::TLB::TlbStats BaseCache::CacheCmdStats BaseCache::CacheStats BaseCPU::BaseCPUStats BaseCPU::GlobalStats BaseKvmCPU::StatGroup BaseTags::BaseTagStats BaseTrafficGen::StatGroup BaseXBar::Layer< SrcType, DstType > BPredUnit::BPredUnitStats CacheMemory::CacheMemoryStats ClockDomain::ClockDomainStats CommMonitor::MonitorStats Compressor::Base::BaseStats Compressor::BaseDictionaryCompressor::DictionaryStats Compressor::Multi::MultiStats ComputeUnit::ComputeUnitStats CopyEngine::CopyEngineStats DefaultCommit< Impl >::CommitStats DefaultDecode< Impl >::DecodeStats DefaultFetch< Impl >::FetchStatGroup DefaultIEW< Impl >::IEWStats DefaultIEW< Impl >::IEWStats::ExecutedInstStats DefaultRename< Impl >::RenameStats DRAMInterface::DRAMStats DRAMInterface::RankStats ElasticTrace::ElasticTraceStats EtherDevice::EtherDeviceStats ExecStage::ExecStageStats FALRU::CacheTracking FetchStage::FetchStageStats FlashDevice::FlashDeviceStats FullO3CPU< Impl >::FullO3CPUStats GlobalMemPipeline::GlobalMemPipelineStats GPUDispatcher::GPUDispatcherStats HDLcd::HDLcdStats IdeDisk::IdeDiskStats InstructionQueue< Impl >::IQIOStats InstructionQueue< Impl >::IQStats BaseXBar::Layer< RequestPort, ResponsePort > BaseXBar::Layer< ResponsePort, RequestPort > LocalMemPipeline::LocalMemPipelineStats LoopPredictor::LoopPredictorStats LSQUnit< Impl >::LSQUnitStats MemCtrl::CtrlStats MemDepUnit< MemDepPred, Impl >::MemDepUnitStats MemFootprintProbe::MemFootprintProbeStats MemTest::MemTestStats Minor::Fetch2::Fetch2Stats Minor::MinorStats NVMInterface::NVMStats PowerDomain::PowerDomainStats PowerState::PowerStateStats Prefetcher::Base::StatGroup Prefetcher::Queued::QueuedStats Profiler::ProfilerStats Profiler::ProfilerStats::PerMachineTypeStats Profiler::ProfilerStats::PerRequestTypeMachineTypeStats Profiler::ProfilerStats::PerRequestTypeStats QoS::MemCtrl::MemCtrlStats QoS::MemSinkCtrl::MemSinkCtrlStats RegisterFile::RegisterFileStats RiscvISA::TLB::TlbStats ROB< Impl >::ROBStats Root::RootStats RubyPrefetcher::RubyPrefetcherStats ScheduleStage::ScheduleStageStats ScoreboardCheckStage::ScoreboardCheckStageStats SectorTags::SectorTagsStats Shader::ShaderStats SimObject SimpleCache::SimpleCacheStats SimpleExecContext::ExecContextStats SimpleNetwork::NetworkStats Sinic::Device::DeviceStats SMMUv3::SMMUv3Stats SMMUv3BaseCache::SMMUv3BaseCacheStats SnoopFilter::SnoopFilterStats StackDistProbe::StackDistProbeStats StatisticalCorrector::StatisticalCorrectorStats Switch::SwitchStats TAGEBase::TAGEBaseStats TBEStorage::TBEStorageStats ThreadState::ThreadStateStats Throttle::ThrottleStats TLBCoalescer::TLBCoalescerStats TraceCPU::ElasticDataGen::ElasticDataGenStatGroup TraceCPU::FixedRetryGen::FixedRetryGenStatGroup TraceCPU::TraceStats UFSHostDevice::UFSHostDeviceStats VoltageDomain::VoltageDomainStats WalkCache::WalkCacheStats Wavefront::WavefrontStats Workload::WorkloadStats Workload::WorkloadStats::InstStats X86ISA::GpuTLB::GpuTLBStats X86ISA::TLB::TlbStats

Public Member Functions

 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 InforesolveStat (std::string name) const
 Resolve a stat by its name within this group. More...
 
void mergeStatGroup (Group *block)
 Merge the contents (stats & children) of a block to this block. More...
 
 Group ()=delete
 
 Group (const Group &)=delete
 
Groupoperator= (const Group &)=delete
 

Private Attributes

GroupmergedParent
 Parent pointer if merged into parent. More...
 
std::map< std::string, Group * > statGroups
 
std::vector< Group * > mergedStatGroups
 
std::vector< Info * > stats
 

Detailed Description

Statistics container.

A stat group is a hierarchical structure that contain statistics and other groups. Groups are used by the stat system to reflect gem5's SimObject hierarchy and to expose internal hierarchy within an object. They can also be used to conveniently group stats into their own class/struct and then be merged into the parent group (typically a SimObject).

Definition at line 87 of file group.hh.

Constructor & Destructor Documentation

◆ ~Group()

Stats::Group::~Group ( )
virtual

Definition at line 58 of file group.cc.

Member Function Documentation

◆ mergeStatGroup()

void Stats::Group::mergeStatGroup ( Group block)

Merge the contents (stats & children) of a block to this block.

This is called on a parent group by the child when it is being merged into the parent.

Definition at line 153 of file group.cc.

References addStat(), mergedParent, mergedStatGroups, panic_if, ArmISA::s, and stats.

Referenced by Group().

◆ resolveStat()

const Info * Stats::Group::resolveStat ( std::string  name) const

Resolve a stat by its name within this group.

This method goes through the stats in this group and sub-groups and returns a pointer to the the stat that matches the provided name. The input name has to be relative to the name of this group. For example, if this group is the SimObject system.bigCluster.cpus and we want the stat system.bigCluster.cpus.ipc, the input param should be the string "ipc".

Parameters
nameName of the desired stat
Returns
Pointer to the stat with the provided name

Definition at line 121 of file group.cc.

References MipsISA::g, mergedStatGroups, name(), statGroups, and stats.

Referenced by Stats::resolve().

Member Data Documentation

◆ mergedParent

Group* Stats::Group::mergedParent
private

Parent pointer if merged into parent.

Definition at line 211 of file group.hh.

Referenced by addStat(), and mergeStatGroup().

◆ mergedStatGroups

std::vector<Group *> Stats::Group::mergedStatGroups
private

Definition at line 214 of file group.hh.

Referenced by mergeStatGroup(), preDumpStats(), regStats(), resetStats(), and resolveStat().

◆ statGroups

std::map<std::string, Group *> Stats::Group::statGroups
private

Definition at line 213 of file group.hh.

Referenced by addStatGroup(), getStatGroups(), preDumpStats(), regStats(), resetStats(), and resolveStat().

◆ stats

std::vector<Info *> Stats::Group::stats
private

The documentation for this class was generated from the following files:

Generated on Tue Mar 23 2021 19:42:06 for gem5 by doxygen 1.8.17