summaryrefslogtreecommitdiff
path: root/src/cpu/o3/cpu.cc
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.cc
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.cc')
-rw-r--r--src/cpu/o3/cpu.cc15
1 files changed, 6 insertions, 9 deletions
diff --git a/src/cpu/o3/cpu.cc b/src/cpu/o3/cpu.cc
index f87e6a923..ac003bc24 100644
--- a/src/cpu/o3/cpu.cc
+++ b/src/cpu/o3/cpu.cc
@@ -509,16 +509,14 @@ FullO3CPU<Impl>::regStats()
committedInsts
.init(numThreads)
.name(name() + ".committedInsts")
- .desc("Number of Instructions Simulated");
+ .desc("Number of Instructions Simulated")
+ .flags(Stats::total);
committedOps
.init(numThreads)
.name(name() + ".committedOps")
- .desc("Number of Ops (including micro ops) Simulated");
-
- totalCommittedInsts
- .name(name() + ".committedInsts_total")
- .desc("Number of Instructions Simulated");
+ .desc("Number of Ops (including micro ops) Simulated")
+ .flags(Stats::total);
cpi
.name(name() + ".cpi")
@@ -530,7 +528,7 @@ FullO3CPU<Impl>::regStats()
.name(name() + ".cpi_total")
.desc("CPI: Total CPI of All Threads")
.precision(6);
- totalCpi = numCycles / totalCommittedInsts;
+ totalCpi = numCycles / sum(committedInsts);
ipc
.name(name() + ".ipc")
@@ -542,7 +540,7 @@ FullO3CPU<Impl>::regStats()
.name(name() + ".ipc_total")
.desc("IPC: Total IPC of All Threads")
.precision(6);
- totalIpc = totalCommittedInsts / numCycles;
+ totalIpc = sum(committedInsts) / numCycles;
this->fetch.regStats();
this->decode.regStats();
@@ -1601,7 +1599,6 @@ FullO3CPU<Impl>::instDone(ThreadID tid, DynInstPtr &inst)
thread[tid]->numInst++;
thread[tid]->numInsts++;
committedInsts[tid]++;
- totalCommittedInsts++;
}
thread[tid]->numOp++;
thread[tid]->numOps++;