summaryrefslogtreecommitdiff
path: root/src/cpu/o3/cpu.hh
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2014-05-23 06:07:02 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2014-05-23 06:07:02 -0500
commit1e26b7ea29ead4a67a060cc66cd72a193db9c766 (patch)
treec47f71cf7700cd3bee8ad6dc16a8f566c17d5e95 /src/cpu/o3/cpu.hh
parent53dd4497b3e554869adb9c7faede24e4fd797319 (diff)
downloadgem5-1e26b7ea29ead4a67a060cc66cd72a193db9c766.tar.xz
cpu: o3: remove stat totalCommittedInsts
This patch removes the stat totalCommittedInsts. This variable was used for recording the total number of instructions committed across all the threads of a core. The instructions committed by each thread are recorded invidually. The total would now be generated by summing these individual counts.
Diffstat (limited to 'src/cpu/o3/cpu.hh')
-rw-r--r--src/cpu/o3/cpu.hh2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/cpu/o3/cpu.hh b/src/cpu/o3/cpu.hh
index dadee5d56..f5f9897e7 100644
--- a/src/cpu/o3/cpu.hh
+++ b/src/cpu/o3/cpu.hh
@@ -843,8 +843,6 @@ class FullO3CPU : public BaseO3CPU
Stats::Vector committedInsts;
/** Stat for the number of committed ops (including micro ops) per thread. */
Stats::Vector committedOps;
- /** Stat for the total number of committed instructions. */
- Stats::Scalar totalCommittedInsts;
/** Stat for the CPI per thread. */
Stats::Formula cpi;
/** Stat for the total CPI. */