From 1e26b7ea29ead4a67a060cc66cd72a193db9c766 Mon Sep 17 00:00:00 2001 From: Nilay Vaish Date: Fri, 23 May 2014 06:07:02 -0500 Subject: 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. --- src/cpu/o3/cpu.hh | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/cpu/o3/cpu.hh') 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. */ -- cgit v1.2.3