summaryrefslogtreecommitdiff
path: root/src/arch/x86/mmaped_ipr.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-23 17:40:40 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-23 17:40:40 -0700
commitb0e3aab5df9328ddfd13e396456cebdcaf0c8912 (patch)
tree95d4320bb73689187b33a3a59fdba7a78a1b877f /src/arch/x86/mmaped_ipr.hh
parent9eda6f7d59fbcc4bb5c9779df85aa1a0b189565c (diff)
downloadgem5-b0e3aab5df9328ddfd13e396456cebdcaf0c8912.tar.xz
X86: Fix X86_FS compilation.
--HG-- extra : convert_revision : 5f014337e33a9e1ebe4df4063335315539fff69e
Diffstat (limited to 'src/arch/x86/mmaped_ipr.hh')
-rw-r--r--src/arch/x86/mmaped_ipr.hh3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/arch/x86/mmaped_ipr.hh b/src/arch/x86/mmaped_ipr.hh
index c7befa35b..9184ec4dc 100644
--- a/src/arch/x86/mmaped_ipr.hh
+++ b/src/arch/x86/mmaped_ipr.hh
@@ -65,6 +65,7 @@
*/
#include "config/full_system.hh"
+#include "cpu/base.hh"
#include "cpu/thread_context.hh"
#include "mem/packet.hh"
@@ -78,6 +79,7 @@ namespace X86ISA
#else
pkt->set(xc->readMiscReg(pkt->getAddr() / sizeof(MiscReg)));
#endif
+ return xc->getCpuPtr()->ticks(1);
}
inline Tick
@@ -89,6 +91,7 @@ namespace X86ISA
xc->setMiscReg(pkt->getAddr() / sizeof(MiscReg),
gtoh(pkt->get<uint64_t>()));
#endif
+ return xc->getCpuPtr()->ticks(1);
}
};