46 #include "debug/TLB.hh" 47 #include "debug/TLBVerbose.hh" 49 #include "params/RiscvTLB.hh" 65 return (static_cast<Addr>(asid) << 48) | vpn;
69 :
BaseTLB(p), size(p->size),
tlb(size), lruSeq(0)
71 for (
size_t x = 0;
x <
size;
x++) {
72 tlb[
x].trieHandle = NULL;
93 for (
size_t i = 1;
i <
size;
i++) {
128 DPRINTF(TLBVerbose,
"lookup(vpn=%#x, asid=%#x): %s ppn %#x\n",
129 vpn, asid, entry ?
"hit" :
"miss", entry ? entry->
paddr : 0);
138 DPRINTF(
TLB,
"insert(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
145 newEntry->pte = entry.
pte;
146 assert(newEntry->vaddr == vpn);
159 newEntry->vaddr = vpn;
160 newEntry->trieHandle =
170 if (vpn == 0 && asid == 0)
173 DPRINTF(
TLB,
"flush(vpn=%#x, asid=%#x)\n", vpn, asid);
174 if (vpn != 0 && asid != 0) {
177 remove(newEntry -
tlb.data());
180 for (
size_t i = 0;
i <
size;
i++) {
181 if (
tlb[
i].trieHandle) {
183 if ((vpn == 0 || (vpn & mask) ==
tlb[
i].
vaddr) &&
196 for (
size_t i = 0;
i <
size;
i++) {
197 if (
tlb[
i].trieHandle)
205 DPRINTF(
TLB,
"remove(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
209 assert(
tlb[idx].trieHandle);
211 tlb[idx].trieHandle = NULL;
222 DPRINTF(
TLB,
"PTE has no read perm, raising PF\n");
226 DPRINTF(
TLB,
"PTE has no write perm, raising PF\n");
230 DPRINTF(
TLB,
"PTE has no exec perm, raising PF\n");
237 DPRINTF(
TLB,
"PTE is not user accessible, raising PF\n");
241 DPRINTF(
TLB,
"PTE is only user accessible, raising PF\n");
259 return std::make_shared<AddressFault>(
vaddr, code);
266 assert(e !=
nullptr);
282 if (translation !=
nullptr || fault !=
NoFault) {
287 e =
lookup(vaddr, satp.asid, mode,
false);
288 assert(e !=
nullptr);
298 DPRINTF(
TLB,
"Dirty bit not set, repeating PT walk\n");
300 if (translation !=
nullptr || fault !=
NoFault) {
310 DPRINTF(TLBVerbose,
"translate(vpn=%#x, asid=%#x): %#x\n",
311 vaddr, satp.asid, paddr);
312 req->setPaddr(paddr);
322 if (mode != Mode::Execute && status.mprv == 1)
344 req->setPaddr(req->getVaddr());
347 fault =
doTranslate(req, tc, translation, mode, delayed);
353 if (!delayed && fault ==
NoFault &&
bits(req->getPaddr(), 63)) {
361 fault = make_shared<AddressFault>(req->getVaddr(), code);
373 assert(req->getSize() > 0);
374 if (req->getVaddr() + req->getSize() - 1 < req->getVaddr())
375 return make_shared<GenericPageTableFault>(req->getVaddr());
391 return translate(req, tc,
nullptr, mode, delayed);
402 translation->
finish(fault, req, tc, mode);
419 satp.mode != AddrXlateMode::BARE) {
423 tc, paddr, logBytes, mode);
427 Addr masked_addr = vaddr &
mask(logBytes);
428 paddr |= masked_addr;
444 return std::make_shared<GenericPageTableFault>(req->getVaddr());
449 DPRINTF(
TLB,
"Translated (functional) %#x -> %#x.\n", vaddr, paddr);
450 req->setPaddr(paddr);
470 for (uint32_t
x = 0;
x <
size;
x++) {
471 if (
tlb[
x].trieHandle != NULL)
472 tlb[
x].serializeSection(cp,
csprintf(
"Entry%d", _count++));
483 fatal(
"TLB size less than the one in checkpoint!");
488 for (uint32_t
x = 0;
x < _size;
x++) {
506 .
desc(
"DTB read hits")
511 .
desc(
"DTB read misses")
517 .
desc(
"DTB read accesses")
522 .
desc(
"DTB write hits")
527 .
desc(
"DTB write misses")
533 .
desc(
"DTB write accesses")
548 .
desc(
"DTB accesses")
557 RiscvTLBParams::create()
559 return new TLB(
this);
Stats::Scalar write_accesses
Handle insert(Key key, unsigned width, Value *val)
Method which inserts a key/value pair into the trie.
decltype(nullptr) constexpr NoFault
#define fatal(...)
This implements a cprintf based fatal() function.
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
virtual BaseTLB * getDTBPtr()=0
static Addr buildKey(Addr vpn, uint16_t asid)
std::shared_ptr< Request > RequestPtr
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
static const unsigned MaxBits
Addr translateWithTLB(Addr vaddr, uint16_t asid, Mode mode)
Fault start(ThreadContext *_tc, BaseTLB::Translation *translation, const RequestPtr &req, BaseTLB::Mode mode)
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
virtual Process * getProcessPtr()=0
Overload hash function for BasicBlockRange type.
Fault checkPermissions(STATUS status, PrivilegeMode pmode, Addr vaddr, Mode mode, PTESv39 pte)
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void serialize(CheckpointOut &cp) const override
Serialize an object.
#define UNSERIALIZE_SCALAR(scalar)
TlbEntry * insert(Addr vpn, const TlbEntry &entry)
TlbEntry * lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden)
std::string csprintf(const char *format, const Args &...args)
void flushAll() override
Remove all entries from the TLB.
bool translate(Addr vaddr, Addr &paddr)
Translate function.
The virtual address is also the physical address.
Fault doTranslate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Value * lookup(Key key)
Method which looks up the Value corresponding to a particular key.
void regStats() override
Callback to set stat parameters.
Stats::Scalar read_accesses
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
PrivilegeMode getMemPriv(ThreadContext *tc, Mode mode)
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
std::vector< TlbEntry > tlb
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Declaration of IniFile object.
Fault startFunctional(ThreadContext *_tc, Addr &addr, unsigned &logBytes, BaseTLB::Mode mode)
#define SERIALIZE_SCALAR(scalar)
void demapPage(Addr vaddr, uint64_t asn) override
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Value * remove(Handle handle)
Method to delete a value from the trie.
Stats::Scalar read_misses
virtual const std::string name() const
EmulationPageTable * pTable
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Declarations of a non-full system Page Table.
bool fixupFault(Addr vaddr)
Attempt to fix up a fault at vaddr by allocating a page on the stack.
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
std::ostream CheckpointOut
const Entry * lookup(Addr vaddr)
Lookup function.
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
virtual void regStats()
Callback to set stat parameters.
TlbEntryTrie::Handle trieHandle
T bits(T val, int first, int last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it...
virtual RegVal readMiscReg(RegIndex misc_reg)=0
std::shared_ptr< FaultBase > Fault
Stats::Scalar write_misses
Fault createPagefault(Addr vaddr, Mode mode)
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.