X86: Rename the divide count register to divide configuration.
This commit is contained in:
parent
b10742ee2b
commit
6b8d0363ee
3 changed files with 5 additions and 8 deletions
|
@ -158,9 +158,6 @@ MiscReg MiscRegFile::readReg(int miscReg, ThreadContext * tc)
|
|||
case MISCREG_APIC_CURRENT_COUNT:
|
||||
panic("Local APIC Current Count register unimplemented.\n");
|
||||
break;
|
||||
case MISCREG_APIC_DIVIDE_COUNT:
|
||||
panic("Local APIC Divide Count register unimplemented.\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
switch (miscReg) {
|
||||
|
@ -270,8 +267,8 @@ void MiscRegFile::setReg(int miscReg,
|
|||
case MISCREG_APIC_CURRENT_COUNT:
|
||||
panic("Local APIC Current Count register unimplemented.\n");
|
||||
break;
|
||||
case MISCREG_APIC_DIVIDE_COUNT:
|
||||
panic("Local APIC Divide Count register unimplemented.\n");
|
||||
case MISCREG_APIC_DIVIDE_CONFIGURATION:
|
||||
newVal = val & 0xB;
|
||||
break;
|
||||
}
|
||||
setRegNoEffect(miscReg, newVal);
|
||||
|
|
|
@ -397,8 +397,8 @@ namespace X86ISA
|
|||
MISCREG_APIC_LVT_ERROR,
|
||||
MISCREG_APIC_INITIAL_COUNT,
|
||||
MISCREG_APIC_CURRENT_COUNT,
|
||||
MISCREG_APIC_DIVIDE_COUNT,
|
||||
MISCREG_APIC_END = MISCREG_APIC_DIVIDE_COUNT,
|
||||
MISCREG_APIC_DIVIDE_CONFIGURATION,
|
||||
MISCREG_APIC_END = MISCREG_APIC_DIVIDE_CONFIGURATION,
|
||||
|
||||
MISCREG_APIC_INTERNAL_STATE,
|
||||
|
||||
|
|
|
@ -780,7 +780,7 @@ TLB::translate(RequestPtr &req, ThreadContext *tc, bool write, bool execute)
|
|||
regNum = MISCREG_APIC_CURRENT_COUNT;
|
||||
break;
|
||||
case 0x3E0:
|
||||
regNum = MISCREG_APIC_DIVIDE_COUNT;
|
||||
regNum = MISCREG_APIC_DIVIDE_CONFIGURATION;
|
||||
break;
|
||||
default:
|
||||
// A reserved register field.
|
||||
|
|
Loading…
Reference in a new issue