summaryrefslogtreecommitdiff
path: root/src/sim/ticked_object.cc
diff options
context:
space:
mode:
authorJose Marinho <jose.marinho@arm.com>2017-06-13 15:21:22 +0100
committerAndreas Sandberg <andreas.sandberg@arm.com>2017-07-10 08:29:25 +0000
commitff87b8ad52145045bc3f4d1082204d962d7c3dd5 (patch)
treefe7cf890825cfb21ed0792363ec89e769907ac0b /src/sim/ticked_object.cc
parent81db5ccf3c41e28966ce547e3fd783634581a077 (diff)
downloadgem5-ff87b8ad52145045bc3f4d1082204d962d7c3dd5.tar.xz
sim: Fix clashing stat names in TickedObject and Ticked
Change tickCycles numCycles stat name to totalTickCycles os as not to clash with the name of the tickCycles stat of the same class. Declared the params passed to the TickedObject constructer as const. Call ClockedObject::regStats() from the TickedObject::regStats to ensure the correct initialization of the base class (ClockedObject) stats Change-Id: I6cf5bbe10fa27f2ad0e31d9f70ec3be47fe41455 Signed-off-by: Andreas Sandberg <andreas.sandberg@arm.com> Reviewed-on: https://gem5-review.googlesource.com/3964 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
Diffstat (limited to 'src/sim/ticked_object.cc')
-rw-r--r--src/sim/ticked_object.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/sim/ticked_object.cc b/src/sim/ticked_object.cc
index 4cd0dc171..a9f3aceb7 100644
--- a/src/sim/ticked_object.cc
+++ b/src/sim/ticked_object.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2013-2014 ARM Limited
+ * Copyright (c) 2013-2014, 2017 ARM Limited
* All rights reserved
*
* The license below extends only to copyright in the software and shall
@@ -60,7 +60,7 @@ Ticked::regStats()
{
if (numCyclesLocal) {
numCycles
- .name(object.name() + ".tickCycles")
+ .name(object.name() + ".totalTickCycles")
.desc("Number of cycles that the object ticked or was stopped");
}
@@ -98,7 +98,7 @@ Ticked::unserialize(CheckpointIn &cp)
lastStopped = Cycles(lastStoppedUint);
}
-TickedObject::TickedObject(TickedObjectParams *params,
+TickedObject::TickedObject(const TickedObjectParams *params,
Event::Priority priority) :
ClockedObject(params),
/* Make numCycles in Ticked */
@@ -109,6 +109,7 @@ void
TickedObject::regStats()
{
Ticked::regStats();
+ ClockedObject::regStats();
}
void