Got rid of the ivlb and ivle kernel stats.

--HG--
extra : convert_revision : d85627bb3eafe6411355995a92ba8b151be8320d
This commit is contained in:
Gabe Black 2006-11-06 20:07:44 -05:00
parent b156767f1e
commit f61cd02e13
2 changed files with 0 additions and 14 deletions

View file

@ -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")

View file

@ -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);