summaryrefslogtreecommitdiff
path: root/src/cpu/simple/base.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-11-08 13:55:48 -0500
committerGabe Black <gblack@eecs.umich.edu>2006-11-08 13:55:48 -0500
commit67b9a2ebd850b6b0a01324b46ac3d6f87b3a8cb5 (patch)
tree7a05754175a3ba9ac87747cb265d44f0d0e6a530 /src/cpu/simple/base.cc
parent770b575c30e734b3ed9528558a72c476a9e4bf41 (diff)
downloadgem5-67b9a2ebd850b6b0a01324b46ac3d6f87b3a8cb5.tar.xz
Move the check to see if you're in user mode into the isa directory.
--HG-- extra : convert_revision : b5b7cdf4a5e5e54228c592093516bf18d0f7dbe6
Diffstat (limited to 'src/cpu/simple/base.cc')
-rw-r--r--src/cpu/simple/base.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/simple/base.cc b/src/cpu/simple/base.cc
index 00fa4d247..ab438aa77 100644
--- a/src/cpu/simple/base.cc
+++ b/src/cpu/simple/base.cc
@@ -407,8 +407,7 @@ BaseSimpleCPU::postExecute()
{
#if FULL_SYSTEM
if (thread->profile) {
- bool usermode =
- (thread->readMiscReg(AlphaISA::IPR_DTB_CM) & 0x18) != 0;
+ bool usermode = TheISA::inUserMode(tc);
thread->profilePC = usermode ? 1 : thread->readPC();
ProfileNode *node = thread->profile->consume(tc, inst);
if (node)