summaryrefslogtreecommitdiff
path: root/src/cpu/simple/base.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-08-26 20:25:42 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-08-26 20:25:42 -0700
commite056e49c4562108eeb7abbbeb1ee8acb096fe363 (patch)
tree162b440d59f688da34667ecf1add53bb4d52baf7 /src/cpu/simple/base.hh
parent537239b278f7b8171d2eb09ef7f99c332266c48f (diff)
downloadgem5-e056e49c4562108eeb7abbbeb1ee8acb096fe363.tar.xz
Simple CPU: Make sure only instructions which complete without faulting are counted.
--HG-- extra : convert_revision : 01019c7129ed762d8826c3e6519989aa3fc3b5fd
Diffstat (limited to 'src/cpu/simple/base.hh')
-rw-r--r--src/cpu/simple/base.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cpu/simple/base.hh b/src/cpu/simple/base.hh
index 843fd025c..2bc329b68 100644
--- a/src/cpu/simple/base.hh
+++ b/src/cpu/simple/base.hh
@@ -157,6 +157,14 @@ class BaseSimpleCPU : public BaseCPU
Counter startNumInst;
Stats::Scalar<> numInsts;
+ void countInst()
+ {
+ numInst++;
+ numInsts++;
+
+ thread->funcExeInst++;
+ }
+
virtual Counter totalInstructions() const
{
return numInst - startNumInst;