From: Gabe Black Date: Tue, 7 Nov 2006 01:07:44 +0000 (-0500) Subject: Got rid of the ivlb and ivle kernel stats. X-Git-Tag: m5_2.0_beta2~53^2~41 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=f61cd02e1391996fc247bf624ac66f7c420690c0;p=gem5.git Got rid of the ivlb and ivle kernel stats. --HG-- extra : convert_revision : d85627bb3eafe6411355995a92ba8b151be8320d --- 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);