summaryrefslogtreecommitdiff
path: root/src/cpu/o3/commit.hh
diff options
context:
space:
mode:
authorNilay Vaish <nilay@cs.wisc.edu>2015-03-09 09:39:08 -0500
committerNilay Vaish <nilay@cs.wisc.edu>2015-03-09 09:39:08 -0500
commit53de2512b1bb3179912a3d592cc281b475b9f881 (patch)
tree59ad217666542be3654a405643b7cc2fdaf99139 /src/cpu/o3/commit.hh
parent54bc67f6190e691ad2978b7fe3f9582695767f93 (diff)
downloadgem5-53de2512b1bb3179912a3d592cc281b475b9f881.tar.xz
cpu: o3: remove unused stat variables.
Diffstat (limited to 'src/cpu/o3/commit.hh')
-rw-r--r--src/cpu/o3/commit.hh6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/cpu/o3/commit.hh b/src/cpu/o3/commit.hh
index 12d04a1c2..a63e8e9e9 100644
--- a/src/cpu/o3/commit.hh
+++ b/src/cpu/o3/commit.hh
@@ -492,10 +492,6 @@ class DefaultCommit
/** Stat for the total number of squashed instructions discarded by commit.
*/
Stats::Scalar commitSquashedInsts;
- /** Stat for the total number of times commit is told to squash.
- * @todo: Actually increment this stat.
- */
- Stats::Scalar commitSquashEvents;
/** Stat for the total number of times commit has had to stall due to a non-
* speculative instruction reaching the head of the ROB.
*/
@@ -530,8 +526,6 @@ class DefaultCommit
/** Number of cycles where the commit bandwidth limit is reached. */
Stats::Scalar commitEligibleSamples;
- /** Number of instructions not committed due to bandwidth limits. */
- Stats::Vector commitEligible;
};
#endif // __CPU_O3_COMMIT_HH__