From 3ee4957b4930a252c0185a6bc71bdf1c6ebc5ed9 Mon Sep 17 00:00:00 2001 From: Akash Bagdia Date: Tue, 18 Nov 2014 14:00:48 +0000 Subject: power: Add power states to ClockedObject Add 4 power states to the ClockedObject, provides necessary access functions to check and update the power state. Default power state is UNDEFINED, it is responsibility of the respective simulation model to provide the startup state and any other logic for state change. Add number of transition stat. Add distribution of time spent in clock gated state. Add power state residency stat. Add dump call back function to allow stats update of distribution and residency stats. --- src/sim/clock_domain.cc | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/sim/clock_domain.cc') diff --git a/src/sim/clock_domain.cc b/src/sim/clock_domain.cc index 1ccee7f1d..9865c4d11 100644 --- a/src/sim/clock_domain.cc +++ b/src/sim/clock_domain.cc @@ -56,6 +56,8 @@ void ClockDomain::regStats() { + SimObject::regStats(); + using namespace Stats; // Expose the current clock period as a stat for observability in -- cgit v1.2.3