summaryrefslogtreecommitdiff
path: root/src/arch/x86/miscregfile.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-11-12 14:38:02 -0800
committerGabe Black <gblack@eecs.umich.edu>2007-11-12 14:38:02 -0800
commitd89d80a5d0bea8a17149abc490ba0d46bff5b11a (patch)
tree23ff22b6d8c649676eaa3005c3a534c8bdf50604 /src/arch/x86/miscregfile.cc
parentaaa30714b3808a9283cda41bf29e167bf6b8edb0 (diff)
downloadgem5-d89d80a5d0bea8a17149abc490ba0d46bff5b11a.tar.xz
X86: Make some of the bits of CR0 do what they're supposed to.
--HG-- extra : convert_revision : 13e79ef1ef09bd842d5e075e31f98ab2a4357901
Diffstat (limited to 'src/arch/x86/miscregfile.cc')
-rw-r--r--src/arch/x86/miscregfile.cc25
1 files changed, 24 insertions, 1 deletions
diff --git a/src/arch/x86/miscregfile.cc b/src/arch/x86/miscregfile.cc
index e2c39c7cd..cd76e96aa 100644
--- a/src/arch/x86/miscregfile.cc
+++ b/src/arch/x86/miscregfile.cc
@@ -154,7 +154,30 @@ void MiscRegFile::setRegNoEffect(int miscReg, const MiscReg &val)
void MiscRegFile::setReg(int miscReg,
const MiscReg &val, ThreadContext * tc)
{
- setRegNoEffect(miscReg, val);
+ MiscReg newVal = val;
+ switch(miscReg)
+ {
+ case MISCREG_CR0:
+ CR0 toggled = regVal[miscReg] ^ val;
+ CR0 newCR0 = val;
+ Efer efer = regVal[MISCREG_EFER];
+ if (toggled.pg && efer.lme) {
+ if (newCR0.pg) {
+ //Turning on long mode
+ efer.lma = 1;
+ regVal[MISCREG_EFER] = efer;
+ } else {
+ //Turning off long mode
+ efer.lma = 0;
+ regVal[MISCREG_EFER] = efer;
+ }
+ }
+ //This must always be 1.
+ newCR0.et = 1;
+ newVal = newCR0;
+ break;
+ }
+ setRegNoEffect(miscReg, newVal);
}
void MiscRegFile::serialize(std::ostream & os)