summaryrefslogtreecommitdiff
path: root/arch/alpha/pseudo_inst.cc
diff options
context:
space:
mode:
authorSteve Reinhardt <stever@eecs.umich.edu>2004-05-07 19:20:30 -0700
committerSteve Reinhardt <stever@eecs.umich.edu>2004-05-07 19:20:30 -0700
commit5685020c82d8761eb0ed4cd798839f6173c4935a (patch)
treeb01d9597f77d313341962e23b736102d1d5b2336 /arch/alpha/pseudo_inst.cc
parentd85b26d65a345b8158ba9b5e95e30797bd8ad47e (diff)
parent1d44903071fa81043c75e84d45e9f41167fbd0b2 (diff)
downloadgem5-5685020c82d8761eb0ed4cd798839f6173c4935a.tar.xz
Merge
--HG-- extra : convert_revision : 7999c243a80482b9feffdf8f3dd4ff061b189377
Diffstat (limited to 'arch/alpha/pseudo_inst.cc')
-rw-r--r--arch/alpha/pseudo_inst.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/arch/alpha/pseudo_inst.cc b/arch/alpha/pseudo_inst.cc
index 7f8c6b17c..194dc6400 100644
--- a/arch/alpha/pseudo_inst.cc
+++ b/arch/alpha/pseudo_inst.cc
@@ -34,7 +34,8 @@
#include "sim/param.hh"
#include "sim/serialize.hh"
#include "sim/sim_exit.hh"
-#include "sim/sim_stats.hh"
+#include "sim/stat_control.hh"
+#include "sim/stats.hh"
using namespace std;
using namespace Statistics;
@@ -82,6 +83,7 @@ namespace AlphaPseudo
Tick when = curTick + NS2Ticks(delay);
Tick repeat = NS2Ticks(period);
+ using namespace Statistics;
SetupEvent(Reset, when, repeat);
}
@@ -97,6 +99,7 @@ namespace AlphaPseudo
Tick when = curTick + NS2Ticks(delay);
Tick repeat = NS2Ticks(period);
+ using namespace Statistics;
SetupEvent(Dump, when, repeat);
}
@@ -112,6 +115,7 @@ namespace AlphaPseudo
Tick when = curTick + NS2Ticks(delay);
Tick repeat = NS2Ticks(period);
+ using namespace Statistics;
SetupEvent(Dump|Reset, when, repeat);
}