summaryrefslogtreecommitdiff
path: root/src/arch/x86/tlb.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2007-10-07 18:18:39 -0700
committerGabe Black <gblack@eecs.umich.edu>2007-10-07 18:18:39 -0700
commita19c212757b13e45f481d8612fd38f603250c853 (patch)
treecbc0abe8e8a9807fecfe6c432735bac7ac3b3fa8 /src/arch/x86/tlb.cc
parentcd36c69a4de51d45b82038a012a53cf58f4f3fa2 (diff)
downloadgem5-a19c212757b13e45f481d8612fd38f603250c853.tar.xz
X86: Work on the x86 tlb.
--HG-- extra : convert_revision : a08a5cb049a6030ba9fd56a89383d56026238dbf
Diffstat (limited to 'src/arch/x86/tlb.cc')
-rw-r--r--src/arch/x86/tlb.cc105
1 files changed, 74 insertions, 31 deletions
diff --git a/src/arch/x86/tlb.cc b/src/arch/x86/tlb.cc
index 6cec246d1..93df08830 100644
--- a/src/arch/x86/tlb.cc
+++ b/src/arch/x86/tlb.cc
@@ -133,55 +133,98 @@ TLB::demapPage(Addr va)
{
}
+template<class TlbFault>
Fault
-ITB::translate(RequestPtr &req, ThreadContext *tc)
-{
- Addr vaddr = req->getVaddr();
- // Check against the limit of the CS segment, and permissions.
- // The vaddr already has the segment base applied.
- TlbEntry *entry = lookup(vaddr);
- if (!entry) {
-#if FULL_SYSTEM
- return new FakeITLBFault();
-#else
- return new FakeITLBFault(vaddr);
-#endif
- } else {
- Addr paddr = entry->pageStart | (vaddr & mask(12));
- DPRINTF(TLB, "Translated %#x to %#x\n", vaddr, paddr);
- req->setPaddr(paddr);
- }
-
- return NoFault;
-}
-
-Fault
-DTB::translate(RequestPtr &req, ThreadContext *tc, bool write)
+TLB::translate(RequestPtr &req, ThreadContext *tc, bool write, bool execute)
{
Addr vaddr = req->getVaddr();
+ DPRINTF(TLB, "Translating vaddr %#x.\n", vaddr);
uint32_t flags = req->getFlags();
bool storeCheck = flags & StoreCheck;
+
int seg = flags & (mask(NUM_SEGMENTREGS));
//XXX Junk code to surpress the warning
if (storeCheck) seg = seg;
- // Check the limit of the segment "seg", and permissions.
- // The vaddr already has the segment base applied.
- TlbEntry *entry = lookup(vaddr);
- if (!entry) {
+ // Get cr0. This will tell us how to do translation. We'll assume it was
+ // verified to be correct and consistent when set.
+ CR0 cr0 = tc->readMiscRegNoEffect(MISCREG_CR0);
+
+ // If protected mode has been enabled...
+ if (cr0.pe) {
+ Efer efer = tc->readMiscRegNoEffect(MISCREG_EFER);
+ SegAttr csAttr = tc->readMiscRegNoEffect(MISCREG_CS_ATTR);
+ // If we're not in 64-bit mode, do protection/limit checks
+ if (!efer.lma || !csAttr.longMode) {
+ SegAttr attr = tc->readMiscRegNoEffect(MISCREG_SEG_ATTR(seg));
+ if (!attr.writable && write)
+ return new GeneralProtection(0);
+ if (!attr.readable && !write && !execute)
+ return new GeneralProtection(0);
+ Addr base = tc->readMiscRegNoEffect(MISCREG_SEG_BASE(seg));
+ Addr limit = tc->readMiscRegNoEffect(MISCREG_SEG_LIMIT(seg));
+ if (!attr.expandDown) {
+ // We don't have to worry about the access going around the
+ // end of memory because accesses will be broken up into
+ // pieces at boundaries aligned on sizes smaller than an
+ // entire address space. We do have to worry about the limit
+ // being less than the base.
+ if (limit < base) {
+ if (limit < vaddr + req->getSize() && vaddr < base)
+ return new GeneralProtection(0);
+ } else {
+ if (limit < vaddr + req->getSize())
+ return new GeneralProtection(0);
+ }
+ } else {
+ if (limit < base) {
+ if (vaddr <= limit || vaddr + req->getSize() >= base)
+ return new GeneralProtection(0);
+ } else {
+ if (vaddr <= limit && vaddr + req->getSize() >= base)
+ return new GeneralProtection(0);
+ }
+ }
+ }
+ // If paging is enabled, do the translation.
+ if (cr0.pg) {
+ // The vaddr already has the segment base applied.
+ TlbEntry *entry = lookup(vaddr);
+ if (!entry) {
#if FULL_SYSTEM
- return new FakeDTLBFault();
+ return new TlbFault();
#else
- return new FakeDTLBFault(vaddr);
+ return new TlbFault(vaddr);
#endif
+ } else {
+ // Do paging protection checks.
+ Addr paddr = entry->pageStart | (vaddr & mask(12));
+ req->setPaddr(paddr);
+ }
+ } else {
+ //Use the address which already has segmentation applied.
+ req->setPaddr(vaddr);
+ }
} else {
- Addr paddr = entry->pageStart | (vaddr & mask(12));
- req->setPaddr(paddr);
+ // Real mode
+ req->setPaddr(vaddr);
}
return NoFault;
};
+Fault
+DTB::translate(RequestPtr &req, ThreadContext *tc, bool write)
+{
+ return TLB::translate<FakeDTLBFault>(req, tc, write, false);
+}
+
+Fault
+ITB::translate(RequestPtr &req, ThreadContext *tc)
+{
+ return TLB::translate<FakeITLBFault>(req, tc, false, true);
+}
+
#if FULL_SYSTEM
Tick