power: Fix regStats for PowerModel and PowerModelState
authorGiacomo Travaglini <giacomo.travaglini@arm.com>
Thu, 12 Mar 2020 16:21:01 +0000 (16:21 +0000)
committerGiacomo Travaglini <giacomo.travaglini@arm.com>
Mon, 16 Mar 2020 08:50:24 +0000 (08:50 +0000)
Every Stats::Group need to call the parent regStats to
make sure that the base Stats::Group::regStats() gets
called

JIRA: https://gem5.atlassian.net/projects/GEM5/issues/GEM5-319

Change-Id: I931941d8ec5f375f7e51e719d43ae31af095f661
Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com>
Reviewed-by: Nikos Nikoleris <nikos.nikoleris@arm.com>
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/26643
Tested-by: kokoro <noreply+kokoro@google.com>
src/sim/power/power_model.hh

index 36e0a3e2a5986a75d03bc0e7333223a160d5f178..918b2d2b37ffb12ea8cbbf815a05e33fbba560b5 100644 (file)
@@ -84,6 +84,8 @@ class PowerModelState : public SimObject
     }
 
     void regStats() {
+        SimObject::regStats();
+
         dynamicPower
           .method(this, &PowerModelState::getDynamicPower)
           .name(params()->name + ".dynamic_power")
@@ -135,6 +137,8 @@ class PowerModel : public SimObject
     double getStaticPower() const;
 
     void regStats() {
+        SimObject::regStats();
+
         dynamicPower
           .method(this, &PowerModel::getDynamicPower)
           .name(params()->name + ".dynamic_power")