Go to the documentation of this file.
48 #include "debug/TLB.hh"
49 #include "debug/TLBVerbose.hh"
51 #include "params/RiscvTLB.hh"
66 return (
static_cast<Addr>(
asid) << 48) | vpn;
71 lruSeq(0), stats(this), pma(
p.pma_checker)
73 for (
size_t x = 0;
x <
size;
x++) {
74 tlb[
x].trieHandle = NULL;
95 for (
size_t i = 1;
i <
size;
i++) {
130 DPRINTF(TLBVerbose,
"lookup(vpn=%#x, asid=%#x): %s ppn %#x\n",
131 vpn,
asid, entry ?
"hit" :
"miss", entry ? entry->
paddr : 0);
140 DPRINTF(
TLB,
"insert(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
147 newEntry->
pte = entry.
pte;
148 assert(newEntry->
vaddr == vpn);
161 newEntry->
vaddr = vpn;
172 if (vpn == 0 &&
asid == 0)
176 if (vpn != 0 &&
asid != 0) {
182 for (
size_t i = 0;
i <
size;
i++) {
183 if (
tlb[
i].trieHandle) {
198 for (
size_t i = 0;
i <
size;
i++) {
199 if (
tlb[
i].trieHandle)
207 DPRINTF(
TLB,
"remove(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
211 assert(
tlb[idx].trieHandle);
213 tlb[idx].trieHandle = NULL;
224 DPRINTF(
TLB,
"PTE has no read perm, raising PF\n");
228 DPRINTF(
TLB,
"PTE has no write perm, raising PF\n");
232 DPRINTF(
TLB,
"PTE has no exec perm, raising PF\n");
239 DPRINTF(
TLB,
"PTE is not user accessible, raising PF\n");
243 DPRINTF(
TLB,
"PTE is only user accessible, raising PF\n");
261 return std::make_shared<AddressFault>(
vaddr, code);
268 assert(
e !=
nullptr);
284 if (translation !=
nullptr || fault !=
NoFault) {
290 assert(
e !=
nullptr);
300 DPRINTF(
TLB,
"Dirty bit not set, repeating PT walk\n");
302 if (translation !=
nullptr || fault !=
NoFault) {
312 DPRINTF(TLBVerbose,
"translate(vpn=%#x, asid=%#x): %#x\n",
313 vaddr, satp.asid, paddr);
314 req->setPaddr(paddr);
324 if (
mode != Mode::Execute &&
status.mprv == 1)
346 req->setPaddr(req->getVaddr());
355 if (!delayed && fault ==
NoFault &&
bits(req->getPaddr(), 63)) {
363 fault = std::make_shared<AddressFault>(req->getVaddr(), code);
366 if (!delayed && fault ==
NoFault) {
379 assert(req->getSize() > 0);
380 if (req->getVaddr() + req->getSize() - 1 < req->getVaddr())
381 return std::make_shared<GenericPageTableFault>(req->getVaddr());
385 Fault fault =
p->pTable->translate(req);
425 satp.mode != AddrXlateMode::BARE) {
429 tc, paddr, logBytes,
mode);
434 paddr |= masked_addr;
450 return std::make_shared<GenericPageTableFault>(req->getVaddr());
456 req->setPaddr(paddr);
476 for (uint32_t
x = 0;
x <
size;
x++) {
477 if (
tlb[
x].trieHandle != NULL)
489 fatal(
"TLB size less than the one in checkpoint!");
494 for (uint32_t
x = 0;
x < _size;
x++) {
506 :
Stats::Group(parent),
514 readHits + writeHits),
516 readMisses + writeMisses),
518 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 Jun 22 2021 15:28:20 for gem5 by doxygen 1.8.17