summaryrefslogtreecommitdiff
path: root/src/cpu/o3/iew_impl.hh
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2015-11-16 04:57:52 -0600
committerNilay Vaish <nilay@cs.wisc.edu>2015-11-16 04:57:52 -0600
commit1d268a1f2d871526a4ebd6536b672db4138b96ef (patch)
treeebb8761f33849b517eff17ef14ce01f81d2b672e /src/cpu/o3/iew_impl.hh
parent95f20a29051ec9065b9a9ea095ee697c4df10175 (diff)
downloadgem5-1d268a1f2d871526a4ebd6536b672db4138b96ef.tar.xz
o3: drop unused statistic wbPenalized and wbPenalizedRate
Diffstat (limited to 'src/cpu/o3/iew_impl.hh')
-rw-r--r--src/cpu/o3/iew_impl.hh13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/cpu/o3/iew_impl.hh b/src/cpu/o3/iew_impl.hh
index 29596db09..ae76aa9e1 100644
--- a/src/cpu/o3/iew_impl.hh
+++ b/src/cpu/o3/iew_impl.hh
@@ -273,19 +273,6 @@ DefaultIEW<Impl>::regStats()
.desc("num instructions consuming a value")
.flags(total);
- wbPenalized
- .init(cpu->numThreads)
- .name(name() + ".wb_penalized")
- .desc("number of instrctions required to write to 'other' IQ")
- .flags(total);
-
- wbPenalizedRate
- .name(name() + ".wb_penalized_rate")
- .desc ("fraction of instructions written-back that wrote to 'other' IQ")
- .flags(total);
-
- wbPenalizedRate = wbPenalized / writebackCount;
-
wbFanout
.name(name() + ".wb_fanout")
.desc("average fanout of values written-back")