summaryrefslogtreecommitdiff
path: root/src/arch/arm/table_walker.cc
diff options
context:
space:
mode:
authorStephan Diestelhorst <stephan.diestelhorst@arm.com>2016-06-06 17:16:43 +0100
committerStephan Diestelhorst <stephan.diestelhorst@arm.com>2016-06-06 17:16:43 +0100
commit589033c94c0381fe4e67cebe08352b6e1fbcde2e (patch)
tree78e4bf3ebcb798c256e6b3248854eff42bc67377 /src/arch/arm/table_walker.cc
parent672c06a01d1931e7b6fc650ada20da54a9fc29d1 (diff)
downloadgem5-589033c94c0381fe4e67cebe08352b6e1fbcde2e.tar.xz
sim: Call regStats of base-class as well
We want to extend the stats of objects hierarchically and thus it is necessary to register the statistics of the base-class(es), as well. For now, these are empty, but generic stats will be added there. Patch originally provided by Akash Bagdia at ARM Ltd.
Diffstat (limited to 'src/arch/arm/table_walker.cc')
-rw-r--r--src/arch/arm/table_walker.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/arm/table_walker.cc b/src/arch/arm/table_walker.cc
index 82bec2547..91b13e251 100644
--- a/src/arch/arm/table_walker.cc
+++ b/src/arch/arm/table_walker.cc
@@ -2122,6 +2122,8 @@ TableWalker::pageSizeNtoStatBin(uint8_t N)
void
TableWalker::regStats()
{
+ ClockedObject::regStats();
+
statWalks
.name(name() + ".walks")
.desc("Table walker walks requested")