Go to the documentation of this file.
49 #include "debug/TLB.hh"
50 #include "debug/TLBVerbose.hh"
52 #include "params/RiscvTLB.hh"
67 return (
static_cast<Addr>(
asid) << 48) | vpn;
72 lruSeq(0), stats(this), pma(
p.pma_checker)
74 for (
size_t x = 0;
x <
size;
x++) {
75 tlb[
x].trieHandle = NULL;
96 for (
size_t i = 1;
i <
size;
i++) {
131 DPRINTF(TLBVerbose,
"lookup(vpn=%#x, asid=%#x): %s ppn %#x\n",
132 vpn,
asid, entry ?
"hit" :
"miss", entry ? entry->
paddr : 0);
141 DPRINTF(
TLB,
"insert(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
148 newEntry->
pte = entry.
pte;
149 assert(newEntry->
vaddr == vpn);
162 newEntry->
vaddr = vpn;
173 if (vpn == 0 &&
asid == 0)
177 if (vpn != 0 &&
asid != 0) {
183 for (
size_t i = 0;
i <
size;
i++) {
184 if (
tlb[
i].trieHandle) {
199 for (
size_t i = 0;
i <
size;
i++) {
200 if (
tlb[
i].trieHandle)
208 DPRINTF(
TLB,
"remove(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
212 assert(
tlb[idx].trieHandle);
214 tlb[idx].trieHandle = NULL;
225 DPRINTF(
TLB,
"PTE has no read perm, raising PF\n");
229 DPRINTF(
TLB,
"PTE has no write perm, raising PF\n");
233 DPRINTF(
TLB,
"PTE has no exec perm, raising PF\n");
240 DPRINTF(
TLB,
"PTE is not user accessible, raising PF\n");
244 DPRINTF(
TLB,
"PTE is only user accessible, raising PF\n");
262 return std::make_shared<AddressFault>(
vaddr, code);
269 assert(
e !=
nullptr);
285 if (translation !=
nullptr || fault !=
NoFault) {
291 assert(
e !=
nullptr);
301 DPRINTF(
TLB,
"Dirty bit not set, repeating PT walk\n");
303 if (translation !=
nullptr || fault !=
NoFault) {
313 DPRINTF(TLBVerbose,
"translate(vpn=%#x, asid=%#x): %#x\n",
314 vaddr, satp.asid, paddr);
315 req->setPaddr(paddr);
325 if (
mode != Mode::Execute &&
status.mprv == 1)
347 req->setPaddr(req->getVaddr());
356 if (!delayed && fault ==
NoFault &&
bits(req->getPaddr(), 63)) {
364 fault = std::make_shared<AddressFault>(req->getVaddr(), code);
367 if (!delayed && fault ==
NoFault) {
380 assert(req->getSize() > 0);
381 if (req->getVaddr() + req->getSize() - 1 < req->getVaddr())
382 return std::make_shared<GenericPageTableFault>(req->getVaddr());
386 Fault fault =
p->pTable->translate(req);
426 satp.mode != AddrXlateMode::BARE) {
430 tc, paddr, logBytes,
mode);
435 paddr |= masked_addr;
451 return std::make_shared<GenericPageTableFault>(req->getVaddr());
457 req->setPaddr(paddr);
477 for (uint32_t
x = 0;
x <
size;
x++) {
478 if (
tlb[
x].trieHandle != NULL)
490 fatal(
"TLB size less than the one in checkpoint!");
495 for (uint32_t
x = 0;
x < _size;
x++) {
507 :
Stats::Group(parent),
515 readHits + writeHits),
517 readMisses + writeMisses),
519 readAccesses + writeAccesses)
#define fatal(...)
This implements a cprintf based fatal() function.
PrivilegeMode getMemPriv(ThreadContext *tc, Mode mode)
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
void demapPage(Addr vaddr, uint64_t asn) override
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Stats::Scalar writeAccesses
#define UNSERIALIZE_SCALAR(scalar)
TlbEntry * insert(Addr vpn, const TlbEntry &entry)
Value * remove(Handle handle)
Method to delete a value from the trie.
virtual BaseMMU * getMMUPtr()=0
Stats::Scalar readAccesses
Handle insert(Key key, unsigned width, Value *val)
Method which inserts a key/value pair into the trie.
void serialize(CheckpointOut &cp) const override
Serialize an object.
EmulationPageTable * pTable
std::shared_ptr< Request > RequestPtr
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
virtual Process * getProcessPtr()=0
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Addr translateWithTLB(Addr vaddr, uint16_t asid, Mode mode)
Value * lookup(Key key)
Method which looks up the Value corresponding to a particular key.
const Entry * lookup(Addr vaddr)
Lookup function.
PrivilegeMode getMemPriv(ThreadContext *tc, BaseTLB::Mode mode)
Fault start(ThreadContext *_tc, BaseTLB::Translation *translation, const RequestPtr &req, BaseTLB::Mode mode)
static const unsigned MaxBits
Fault createPagefault(Addr vaddr, Mode mode)
ThreadContext is the external interface to all thread state for anything outside of the CPU.
static Addr buildKey(Addr vpn, uint16_t asid)
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
std::shared_ptr< FaultBase > Fault
Ports are used to interface objects to each other.
Stats::Scalar writeMisses
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
TlbEntry * lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden)
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
void flushAll() override
Remove all entries from the TLB.
constexpr decltype(nullptr) NoFault
TlbStats(Stats::Group *parent)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
#define SERIALIZE_SCALAR(scalar)
Fault doTranslate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
virtual RegVal readMiscReg(RegIndex misc_reg)=0
void check(const RequestPtr &req)
@ PHYSICAL
The virtual address is also the physical address.
Fault checkPermissions(STATUS status, PrivilegeMode pmode, Addr vaddr, Mode mode, PTESv39 pte)
std::ostream CheckpointOut
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
RiscvISA::TLB::TlbStats stats
bool fixupFault(Addr vaddr)
Attempt to fix up a fault at vaddr by allocating a page on the stack.
Port * getTableWalkerPort() override
Get the table walker port.
TlbEntryTrie::Handle trieHandle
Fault startFunctional(ThreadContext *_tc, Addr &addr, unsigned &logBytes, BaseTLB::Mode mode)
std::string csprintf(const char *format, const Args &...args)
std::vector< TlbEntry > tlb
Generated on Tue Mar 23 2021 19:41:19 for gem5 by doxygen 1.8.17