diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 20:07:44 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-11-06 20:07:44 -0500 |
commit | f61cd02e1391996fc247bf624ac66f7c420690c0 (patch) | |
tree | f715749965ff0fb114ae1a3d3eddf6e34b46c3a8 | |
parent | b156767f1e9c0211a398f3f40936f431c373ab9e (diff) | |
download | gem5-f61cd02e1391996fc247bf624ac66f7c420690c0.tar.xz |
Got rid of the ivlb and ivle kernel stats.
--HG--
extra : convert_revision : d85627bb3eafe6411355995a92ba8b151be8320d
-rw-r--r-- | src/kern/kernel_stats.cc | 10 | ||||
-rw-r--r-- | src/kern/kernel_stats.hh | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/src/kern/kernel_stats.cc b/src/kern/kernel_stats.cc index f7868b50f..f049ed66c 100644 --- a/src/kern/kernel_stats.cc +++ b/src/kern/kernel_stats.cc @@ -68,16 +68,6 @@ Statistics::regStats(const string &_name) .desc("number of quiesce instructions executed") ; - _ivlb - .name(name() + ".inst.ivlb") - .desc("number of ivlb instructions executed") - ; - - _ivle - .name(name() + ".inst.ivle") - .desc("number of ivle instructions executed") - ; - _hwrei .name(name() + ".inst.hwrei") .desc("number of hwrei instructions executed") diff --git a/src/kern/kernel_stats.hh b/src/kern/kernel_stats.hh index c691ad8cf..bd4850b0a 100644 --- a/src/kern/kernel_stats.hh +++ b/src/kern/kernel_stats.hh @@ -64,8 +64,6 @@ class Statistics : public Serializable private: Stats::Scalar<> _arm; Stats::Scalar<> _quiesce; - Stats::Scalar<> _ivlb; - Stats::Scalar<> _ivle; Stats::Scalar<> _hwrei; Stats::Vector<> _iplCount; @@ -97,8 +95,6 @@ class Statistics : public Serializable public: void arm() { _arm++; } void quiesce() { _quiesce++; } - void ivlb() { _ivlb++; } - void ivle() { _ivle++; } void hwrei() { _hwrei++; } void swpipl(int ipl); void mode(cpu_mode newmode, ThreadContext *tc); |