diff options
author | Nilay Vaish <nilay@cs.wisc.edu> | 2015-03-09 09:39:08 -0500 |
---|---|---|
committer | Nilay Vaish <nilay@cs.wisc.edu> | 2015-03-09 09:39:08 -0500 |
commit | 53de2512b1bb3179912a3d592cc281b475b9f881 (patch) | |
tree | 59ad217666542be3654a405643b7cc2fdaf99139 /src/cpu/o3/commit.hh | |
parent | 54bc67f6190e691ad2978b7fe3f9582695767f93 (diff) | |
download | gem5-53de2512b1bb3179912a3d592cc281b475b9f881.tar.xz |
cpu: o3: remove unused stat variables.
Diffstat (limited to 'src/cpu/o3/commit.hh')
-rw-r--r-- | src/cpu/o3/commit.hh | 6 |
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__ |