summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/kern/kernel_stats.cc10
-rw-r--r--src/kern/kernel_stats.hh4
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);