gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlb.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2001-2005 The Regents of The University of Michigan
3  * Copyright (c) 2007 MIPS Technologies, Inc.
4  * Copyright (c) 2020 Barkhausen Institut
5  * Copyright (c) 2021 Huawei International
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions are
10  * met: redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer;
12  * redistributions in binary form must reproduce the above copyright
13  * notice, this list of conditions and the following disclaimer in the
14  * documentation and/or other materials provided with the distribution;
15  * neither the name of the copyright holders nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 #include "arch/riscv/tlb.hh"
33 
34 #include <string>
35 #include <vector>
36 
37 #include "arch/riscv/faults.hh"
39 #include "arch/riscv/mmu.hh"
40 #include "arch/riscv/pagetable.hh"
44 #include "arch/riscv/utility.hh"
45 #include "base/inifile.hh"
46 #include "base/str.hh"
47 #include "base/trace.hh"
48 #include "cpu/thread_context.hh"
49 #include "debug/TLB.hh"
50 #include "debug/TLBVerbose.hh"
51 #include "mem/page_table.hh"
52 #include "params/RiscvTLB.hh"
53 #include "sim/full_system.hh"
54 #include "sim/process.hh"
55 #include "sim/system.hh"
56 
57 using namespace RiscvISA;
58 
60 //
61 // RISC-V TLB
62 //
63 
64 static Addr
65 buildKey(Addr vpn, uint16_t asid)
66 {
67  return (static_cast<Addr>(asid) << 48) | vpn;
68 }
69 
70 TLB::TLB(const Params &p) :
71  BaseTLB(p), size(p.size), tlb(size),
72  lruSeq(0), stats(this), pma(p.pma_checker)
73 {
74  for (size_t x = 0; x < size; x++) {
75  tlb[x].trieHandle = NULL;
76  freeList.push_back(&tlb[x]);
77  }
78 
79  walker = p.walker;
80  walker->setTLB(this);
81 }
82 
83 Walker *
85 {
86  return walker;
87 }
88 
89 void
91 {
92  // Find the entry with the lowest (and hence least recently updated)
93  // sequence number.
94 
95  size_t lru = 0;
96  for (size_t i = 1; i < size; i++) {
97  if (tlb[i].lruSeq < tlb[lru].lruSeq)
98  lru = i;
99  }
100 
101  remove(lru);
102 }
103 
104 TlbEntry *
105 TLB::lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden)
106 {
107  TlbEntry *entry = trie.lookup(buildKey(vpn, asid));
108 
109  if (!hidden) {
110  if (entry)
111  entry->lruSeq = nextSeq();
112 
113  if (mode == Write)
115  else
117 
118  if (!entry) {
119  if (mode == Write)
120  stats.writeMisses++;
121  else
122  stats.readMisses++;
123  }
124  else {
125  if (mode == Write)
126  stats.writeHits++;
127  else
128  stats.readHits++;
129  }
130 
131  DPRINTF(TLBVerbose, "lookup(vpn=%#x, asid=%#x): %s ppn %#x\n",
132  vpn, asid, entry ? "hit" : "miss", entry ? entry->paddr : 0);
133  }
134 
135  return entry;
136 }
137 
138 TlbEntry *
139 TLB::insert(Addr vpn, const TlbEntry &entry)
140 {
141  DPRINTF(TLB, "insert(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
142  vpn, entry.asid, entry.paddr, entry.pte, entry.size());
143 
144  // If somebody beat us to it, just use that existing entry.
145  TlbEntry *newEntry = lookup(vpn, entry.asid, Mode::Read, true);
146  if (newEntry) {
147  // update PTE flags (maybe we set the dirty/writable flag)
148  newEntry->pte = entry.pte;
149  assert(newEntry->vaddr == vpn);
150  return newEntry;
151  }
152 
153  if (freeList.empty())
154  evictLRU();
155 
156  newEntry = freeList.front();
157  freeList.pop_front();
158 
159  Addr key = buildKey(vpn, entry.asid);
160  *newEntry = entry;
161  newEntry->lruSeq = nextSeq();
162  newEntry->vaddr = vpn;
163  newEntry->trieHandle =
164  trie.insert(key, TlbEntryTrie::MaxBits - entry.logBytes, newEntry);
165  return newEntry;
166 }
167 
168 void
169 TLB::demapPage(Addr vpn, uint64_t asid)
170 {
171  asid &= 0xFFFF;
172 
173  if (vpn == 0 && asid == 0)
174  flushAll();
175  else {
176  DPRINTF(TLB, "flush(vpn=%#x, asid=%#x)\n", vpn, asid);
177  if (vpn != 0 && asid != 0) {
178  TlbEntry *newEntry = lookup(vpn, asid, Mode::Read, true);
179  if (newEntry)
180  remove(newEntry - tlb.data());
181  }
182  else {
183  for (size_t i = 0; i < size; i++) {
184  if (tlb[i].trieHandle) {
185  Addr mask = ~(tlb[i].size() - 1);
186  if ((vpn == 0 || (vpn & mask) == tlb[i].vaddr) &&
187  (asid == 0 || tlb[i].asid == asid))
188  remove(i);
189  }
190  }
191  }
192  }
193 }
194 
195 void
197 {
198  DPRINTF(TLB, "flushAll()\n");
199  for (size_t i = 0; i < size; i++) {
200  if (tlb[i].trieHandle)
201  remove(i);
202  }
203 }
204 
205 void
206 TLB::remove(size_t idx)
207 {
208  DPRINTF(TLB, "remove(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
209  tlb[idx].vaddr, tlb[idx].asid, tlb[idx].paddr, tlb[idx].pte,
210  tlb[idx].size());
211 
212  assert(tlb[idx].trieHandle);
213  trie.remove(tlb[idx].trieHandle);
214  tlb[idx].trieHandle = NULL;
215  freeList.push_back(&tlb[idx]);
216 }
217 
218 Fault
220  Mode mode, PTESv39 pte)
221 {
222  Fault fault = NoFault;
223 
224  if (mode == TLB::Read && !pte.r) {
225  DPRINTF(TLB, "PTE has no read perm, raising PF\n");
226  fault = createPagefault(vaddr, mode);
227  }
228  else if (mode == TLB::Write && !pte.w) {
229  DPRINTF(TLB, "PTE has no write perm, raising PF\n");
230  fault = createPagefault(vaddr, mode);
231  }
232  else if (mode == TLB::Execute && !pte.x) {
233  DPRINTF(TLB, "PTE has no exec perm, raising PF\n");
234  fault = createPagefault(vaddr, mode);
235  }
236 
237  if (fault == NoFault) {
238  // check pte.u
239  if (pmode == PrivilegeMode::PRV_U && !pte.u) {
240  DPRINTF(TLB, "PTE is not user accessible, raising PF\n");
241  fault = createPagefault(vaddr, mode);
242  }
243  else if (pmode == PrivilegeMode::PRV_S && pte.u && status.sum == 0) {
244  DPRINTF(TLB, "PTE is only user accessible, raising PF\n");
245  fault = createPagefault(vaddr, mode);
246  }
247  }
248 
249  return fault;
250 }
251 
252 Fault
254 {
255  ExceptionCode code;
256  if (mode == TLB::Read)
258  else if (mode == TLB::Write)
260  else
262  return std::make_shared<AddressFault>(vaddr, code);
263 }
264 
265 Addr
267 {
268  TlbEntry *e = lookup(vaddr, asid, mode, false);
269  assert(e != nullptr);
270  return e->paddr << PageShift | (vaddr & mask(e->logBytes));
271 }
272 
273 Fault
275  Translation *translation, Mode mode, bool &delayed)
276 {
277  delayed = false;
278 
279  Addr vaddr = req->getVaddr() & ((static_cast<Addr>(1) << VADDR_BITS) - 1);
280  SATP satp = tc->readMiscReg(MISCREG_SATP);
281 
282  TlbEntry *e = lookup(vaddr, satp.asid, mode, false);
283  if (!e) {
284  Fault fault = walker->start(tc, translation, req, mode);
285  if (translation != nullptr || fault != NoFault) {
286  // This gets ignored in atomic mode.
287  delayed = true;
288  return fault;
289  }
290  e = lookup(vaddr, satp.asid, mode, false);
291  assert(e != nullptr);
292  }
293 
294  STATUS status = tc->readMiscReg(MISCREG_STATUS);
295  PrivilegeMode pmode = getMemPriv(tc, mode);
296  Fault fault = checkPermissions(status, pmode, vaddr, mode, e->pte);
297  if (fault != NoFault) {
298  // if we want to write and it isn't writable, do a page table walk
299  // again to update the dirty flag.
300  if (mode == TLB::Write && !e->pte.w) {
301  DPRINTF(TLB, "Dirty bit not set, repeating PT walk\n");
302  fault = walker->start(tc, translation, req, mode);
303  if (translation != nullptr || fault != NoFault) {
304  delayed = true;
305  return fault;
306  }
307  }
308  if (fault != NoFault)
309  return fault;
310  }
311 
312  Addr paddr = e->paddr << PageShift | (vaddr & mask(e->logBytes));
313  DPRINTF(TLBVerbose, "translate(vpn=%#x, asid=%#x): %#x\n",
314  vaddr, satp.asid, paddr);
315  req->setPaddr(paddr);
316 
317  return NoFault;
318 }
319 
322 {
323  STATUS status = (STATUS)tc->readMiscReg(MISCREG_STATUS);
325  if (mode != Mode::Execute && status.mprv == 1)
326  pmode = (PrivilegeMode)(RegVal)status.mpp;
327  return pmode;
328 }
329 
330 Fault
332  Translation *translation, Mode mode, bool &delayed)
333 {
334  delayed = false;
335 
336  if (FullSystem) {
337  PrivilegeMode pmode = getMemPriv(tc, mode);
338  SATP satp = tc->readMiscReg(MISCREG_SATP);
339  if (pmode == PrivilegeMode::PRV_M || satp.mode == AddrXlateMode::BARE)
340  req->setFlags(Request::PHYSICAL);
341 
342  Fault fault;
343  if (req->getFlags() & Request::PHYSICAL) {
347  req->setPaddr(req->getVaddr());
348  fault = NoFault;
349  } else {
350  fault = doTranslate(req, tc, translation, mode, delayed);
351  }
352 
353  // according to the RISC-V tests, negative physical addresses trigger
354  // an illegal address exception.
355  // TODO where is that written in the manual?
356  if (!delayed && fault == NoFault && bits(req->getPaddr(), 63)) {
357  ExceptionCode code;
358  if (mode == TLB::Read)
360  else if (mode == TLB::Write)
362  else
364  fault = std::make_shared<AddressFault>(req->getVaddr(), code);
365  }
366 
367  if (!delayed && fault == NoFault) {
368  pma->check(req);
369  }
370 
371  return fault;
372  } else {
373  // In the O3 CPU model, sometimes a memory access will be speculatively
374  // executed along a branch that will end up not being taken where the
375  // address is invalid. In that case, return a fault rather than trying
376  // to translate it (which will cause a panic). Since RISC-V allows
377  // unaligned memory accesses, this should only happen if the request's
378  // length is long enough to wrap around from the end of the memory to
379  // the start.
380  assert(req->getSize() > 0);
381  if (req->getVaddr() + req->getSize() - 1 < req->getVaddr())
382  return std::make_shared<GenericPageTableFault>(req->getVaddr());
383 
384  Process * p = tc->getProcessPtr();
385 
386  Fault fault = p->pTable->translate(req);
387  if (fault != NoFault)
388  return fault;
389 
390  return NoFault;
391  }
392 }
393 
394 Fault
396 {
397  bool delayed;
398  return translate(req, tc, nullptr, mode, delayed);
399 }
400 
401 void
403  Translation *translation, Mode mode)
404 {
405  bool delayed;
406  assert(translation);
407  Fault fault = translate(req, tc, translation, mode, delayed);
408  if (!delayed)
409  translation->finish(fault, req, tc, mode);
410  else
411  translation->markDelayed();
412 }
413 
414 Fault
416 {
417  const Addr vaddr = req->getVaddr();
418  Addr paddr = vaddr;
419 
420  if (FullSystem) {
421  MMU *mmu = static_cast<MMU *>(tc->getMMUPtr());
422 
423  PrivilegeMode pmode = mmu->getMemPriv(tc, mode);
424  SATP satp = tc->readMiscReg(MISCREG_SATP);
425  if (pmode != PrivilegeMode::PRV_M &&
426  satp.mode != AddrXlateMode::BARE) {
427  Walker *walker = mmu->getDataWalker();
428  unsigned logBytes;
429  Fault fault = walker->startFunctional(
430  tc, paddr, logBytes, mode);
431  if (fault != NoFault)
432  return fault;
433 
434  Addr masked_addr = vaddr & mask(logBytes);
435  paddr |= masked_addr;
436  }
437  }
438  else {
439  Process *process = tc->getProcessPtr();
440  const auto *pte = process->pTable->lookup(vaddr);
441 
442  if (!pte && mode != Execute) {
443  // Check if we just need to grow the stack.
444  if (process->fixupFault(vaddr)) {
445  // If we did, lookup the entry for the new page.
446  pte = process->pTable->lookup(vaddr);
447  }
448  }
449 
450  if (!pte)
451  return std::make_shared<GenericPageTableFault>(req->getVaddr());
452 
453  paddr = pte->paddr | process->pTable->pageOffset(vaddr);
454  }
455 
456  DPRINTF(TLB, "Translated (functional) %#x -> %#x.\n", vaddr, paddr);
457  req->setPaddr(paddr);
458  return NoFault;
459 }
460 
461 Fault
463  ThreadContext *tc, Mode mode) const
464 {
465  return NoFault;
466 }
467 
468 void
470 {
471  // Only store the entries in use.
472  uint32_t _size = size - freeList.size();
473  SERIALIZE_SCALAR(_size);
475 
476  uint32_t _count = 0;
477  for (uint32_t x = 0; x < size; x++) {
478  if (tlb[x].trieHandle != NULL)
479  tlb[x].serializeSection(cp, csprintf("Entry%d", _count++));
480  }
481 }
482 
483 void
485 {
486  // Do not allow to restore with a smaller tlb.
487  uint32_t _size;
488  UNSERIALIZE_SCALAR(_size);
489  if (_size > size) {
490  fatal("TLB size less than the one in checkpoint!");
491  }
492 
494 
495  for (uint32_t x = 0; x < _size; x++) {
496  TlbEntry *newEntry = freeList.front();
497  freeList.pop_front();
498 
499  newEntry->unserializeSection(cp, csprintf("Entry%d", x));
500  Addr key = buildKey(newEntry->vaddr, newEntry->asid);
501  newEntry->trieHandle = trie.insert(key,
502  TlbEntryTrie::MaxBits - newEntry->logBytes, newEntry);
503  }
504 }
505 
507  : Stats::Group(parent),
508  ADD_STAT(readHits, UNIT_COUNT, "read hits"),
509  ADD_STAT(readMisses, UNIT_COUNT, "read misses"),
510  ADD_STAT(readAccesses, UNIT_COUNT, "read accesses"),
511  ADD_STAT(writeHits, UNIT_COUNT, "write hits"),
512  ADD_STAT(writeMisses, UNIT_COUNT, "write misses"),
513  ADD_STAT(writeAccesses, UNIT_COUNT, "write accesses"),
514  ADD_STAT(hits, UNIT_COUNT, "Total TLB (read and write) hits",
515  readHits + writeHits),
516  ADD_STAT(misses, UNIT_COUNT, "Total TLB (read and write) misses",
517  readMisses + writeMisses),
518  ADD_STAT(accesses, UNIT_COUNT, "Total TLB (read and write) accesses",
519  readAccesses + writeAccesses)
520 {
521 }
522 
523 Port *
525 {
526  return &walker->getPort("port");
527 }
RiscvISA::MISCREG_PRV
@ MISCREG_PRV
Definition: registers.hh:154
RiscvISA::TlbEntry
Definition: pagetable.hh:79
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
RiscvISA::TLB::getMemPriv
PrivilegeMode getMemPriv(ThreadContext *tc, Mode mode)
Definition: tlb.cc:321
ArmISA::status
Bitfield< 5, 0 > status
Definition: miscregs_types.hh:417
BaseTLB::Translation::finish
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
Serializable::unserializeSection
void unserializeSection(CheckpointIn &cp, const char *name)
Unserialize an a child object.
Definition: serialize.cc:177
RiscvISA::STORE_PAGE
@ STORE_PAGE
Definition: faults.hh:77
RiscvISA::TLB::demapPage
void demapPage(Addr vaddr, uint64_t asn) override
Definition: tlb.cc:169
RiscvISA::mode
mode
Definition: pagetable.hh:43
RiscvISA::TLB::translate
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Definition: tlb.cc:331
RiscvISA::TLB::freeList
EntryList freeList
Definition: tlb.hh:64
faults.hh
system.hh
BaseTLB::Read
@ Read
Definition: tlb.hh:57
RiscvISA::TLB::TlbStats::writeAccesses
Stats::Scalar writeAccesses
Definition: tlb.hh:79
RiscvISA::MMU
Definition: mmu.hh:50
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
RiscvISA::TLB::TlbStats::writeHits
Stats::Scalar writeHits
Definition: tlb.hh:76
Process
Definition: process.hh:65
RiscvISA::TLB::insert
TlbEntry * insert(Addr vpn, const TlbEntry &entry)
Definition: tlb.cc:139
RiscvISA::TlbEntry::size
Addr size() const
Definition: pagetable.hh:103
RiscvISA::PageShift
const Addr PageShift
Definition: isa_traits.hh:53
Trie::remove
Value * remove(Handle handle)
Method to delete a value from the trie.
Definition: trie.hh:315
ThreadContext::getMMUPtr
virtual BaseMMU * getMMUPtr()=0
RiscvISA::TLB::TlbStats::readAccesses
Stats::Scalar readAccesses
Definition: tlb.hh:75
Trie::insert
Handle insert(Key key, unsigned width, Value *val)
Method which inserts a key/value pair into the trie.
Definition: trie.hh:210
RiscvISA::TLB::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:469
RiscvISA::PRV_S
@ PRV_S
Definition: isa.hh:59
BaseTLB::Mode
Mode
Definition: tlb.hh:57
pma_checker.hh
Process::pTable
EmulationPageTable * pTable
Definition: process.hh:169
RiscvISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
RiscvISA::TLB::lruSeq
uint64_t lruSeq
Definition: tlb.hh:65
RiscvISA::TlbEntry::logBytes
unsigned logBytes
Definition: pagetable.hh:87
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
RiscvISA::TLB::TlbStats::readMisses
Stats::Scalar readMisses
Definition: tlb.hh:73
RiscvISA::asid
Bitfield< 59, 44 > asid
Definition: pagetable.hh:44
RiscvISA::TLB::Params
RiscvTLBParams Params
Definition: tlb.hh:90
FullSystem
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:204
ThreadContext::getProcessPtr
virtual Process * getProcessPtr()=0
RiscvISA::TlbEntry::lruSeq
uint64_t lruSeq
Definition: pagetable.hh:96
RiscvISA::TLB::translateFunctional
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:415
RiscvISA::LOAD_ACCESS
@ LOAD_ACCESS
Definition: faults.hh:67
RiscvISA::TLB
Definition: tlb.hh:56
RiscvISA::TLB::translateWithTLB
Addr translateWithTLB(Addr vaddr, uint16_t asid, Mode mode)
Definition: tlb.cc:266
RiscvISA::LOAD_PAGE
@ LOAD_PAGE
Definition: faults.hh:76
RiscvISA::MISCREG_STATUS
@ MISCREG_STATUS
Definition: registers.hh:160
Trie::lookup
Value * lookup(Key key)
Method which looks up the Value corresponding to a particular key.
Definition: trie.hh:298
RiscvISA::TLB::evictLRU
void evictLRU()
Definition: tlb.cc:90
BaseTLB
Definition: tlb.hh:50
EmulationPageTable::lookup
const Entry * lookup(Addr vaddr)
Lookup function.
Definition: page_table.cc:130
RiscvISA
Definition: fs_workload.cc:36
RiscvISA::MMU::getMemPriv
PrivilegeMode getMemPriv(ThreadContext *tc, BaseTLB::Mode mode)
Definition: mmu.hh:60
RiscvISA::VADDR_BITS
const Addr VADDR_BITS
Definition: pagetable.hh:56
str.hh
RiscvISA::Walker::start
Fault start(ThreadContext *_tc, BaseTLB::Translation *translation, const RequestPtr &req, BaseTLB::Mode mode)
Definition: pagetable_walker.cc:69
RiscvISA::vaddr
vaddr
Definition: pra_constants.hh:275
cp
Definition: cprintf.cc:37
RiscvISA::TLB::remove
void remove(size_t idx)
Definition: tlb.cc:206
Trie< Addr, TlbEntry >::MaxBits
static const unsigned MaxBits
Definition: trie.hh:133
RiscvISA::TLB::createPagefault
Fault createPagefault(Addr vaddr, Mode mode)
Definition: tlb.cc:253
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
buildKey
static Addr buildKey(Addr vpn, uint16_t asid)
Definition: tlb.cc:65
tlb.hh
RiscvISA::TLB::pma
PMAChecker * pma
Definition: tlb.hh:87
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
ADD_STAT
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
Definition: group.hh:71
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
RiscvISA::Walker::setTLB
void setTLB(TLB *_tlb)
Definition: pagetable_walker.hh:191
RiscvISA::TlbEntry::pte
PTESv39 pte
Definition: pagetable.hh:91
RiscvISA::STORE_ACCESS
@ STORE_ACCESS
Definition: faults.hh:70
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
RiscvISA::INST_ACCESS
@ INST_ACCESS
Definition: faults.hh:63
process.hh
RiscvISA::Walker
Definition: pagetable_walker.hh:58
RiscvISA::MMU::getDataWalker
Walker * getDataWalker()
Definition: mmu.hh:66
RiscvISA::PrivilegeMode
PrivilegeMode
Definition: isa.hh:56
RiscvISA::TLB::TlbStats::writeMisses
Stats::Scalar writeMisses
Definition: tlb.hh:77
BaseTLB::Translation
Definition: tlb.hh:59
RiscvISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:402
RiscvISA::PRV_U
@ PRV_U
Definition: isa.hh:58
pra_constants.hh
inifile.hh
RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:70
RiscvISA::TLB::lookup
TlbEntry * lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden)
Definition: tlb.cc:105
RiscvISA::TLB::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:484
RiscvISA::TLB::trie
TlbEntryTrie trie
Definition: tlb.hh:63
RiscvISA::TLB::finalizePhysical
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:462
RiscvISA::TLB::flushAll
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:196
RiscvISA::TLB::TLB
TLB(const Params &p)
Definition: tlb.cc:70
UNIT_COUNT
#define UNIT_COUNT
Definition: units.hh:49
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
RiscvISA::TLB::TlbStats::TlbStats
TlbStats(Stats::Group *parent)
Definition: tlb.cc:506
EmulationPageTable::pageOffset
Addr pageOffset(Addr a)
Definition: page_table.hh:107
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
RiscvISA::TLB::doTranslate
Fault doTranslate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Definition: tlb.cc:274
full_system.hh
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
fs_workload.hh
BaseTLB::Write
@ Write
Definition: tlb.hh:57
RiscvISA::mask
mask
Definition: pra_constants.hh:70
RiscvISA::i
Bitfield< 2 > i
Definition: pra_constants.hh:276
BaseTLB::Translation::markDelayed
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
RiscvISA::Walker::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: pagetable_walker.cc:170
mmu.hh
RiscvISA::TLB::walker
Walker * walker
Definition: tlb.hh:67
RiscvISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:395
RiscvISA::INST_PAGE
@ INST_PAGE
Definition: faults.hh:75
Stats::Group
Statistics container.
Definition: group.hh:87
ThreadContext::readMiscReg
virtual RegVal readMiscReg(RegIndex misc_reg)=0
PMAChecker::check
void check(const RequestPtr &req)
Definition: pma_checker.cc:54
Request::PHYSICAL
@ PHYSICAL
The virtual address is also the physical address.
Definition: request.hh:110
RiscvISA::TLB::checkPermissions
Fault checkPermissions(STATUS status, PrivilegeMode pmode, Addr vaddr, Mode mode, PTESv39 pte)
Definition: tlb.cc:219
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
bits
constexpr T bits(T val, unsigned first, unsigned last)
Extract the bitfield from position 'first' to 'last' (inclusive) from 'val' and right justify it.
Definition: bitfield.hh:73
RiscvISA::ExceptionCode
ExceptionCode
Definition: faults.hh:61
Stats
Definition: statistics.cc:53
utility.hh
RiscvISA::TLB::stats
RiscvISA::TLB::TlbStats stats
Process::fixupFault
bool fixupFault(Addr vaddr)
Attempt to fix up a fault at vaddr by allocating a page on the stack.
Definition: process.cc:349
trace.hh
RiscvISA::MISCREG_SATP
@ MISCREG_SATP
Definition: registers.hh:269
RiscvISA::TLB::getTableWalkerPort
Port * getTableWalkerPort() override
Get the table walker port.
Definition: tlb.cc:524
RiscvISA::TlbEntry::trieHandle
TlbEntryTrie::Handle trieHandle
Definition: pagetable.hh:93
RiscvISA::TLB::nextSeq
uint64_t nextSeq()
Definition: tlb.hh:135
page_table.hh
RiscvISA::TLB::TlbStats::readHits
Stats::Scalar readHits
Definition: tlb.hh:72
CheckpointIn
Definition: serialize.hh:68
RiscvISA::PRV_M
@ PRV_M
Definition: isa.hh:60
RiscvISA::Walker::startFunctional
Fault startFunctional(ThreadContext *_tc, Addr &addr, unsigned &logBytes, BaseTLB::Mode mode)
Definition: pagetable_walker.cc:94
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
ArmISA::tlb
Bitfield< 59, 56 > tlb
Definition: miscregs_types.hh:88
pagetable.hh
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
RiscvISA::TlbEntry::vaddr
Addr vaddr
Definition: pagetable.hh:85
thread_context.hh
RiscvISA::TLB::getWalker
Walker * getWalker()
Definition: tlb.cc:84
RiscvISA::TlbEntry::paddr
Addr paddr
Definition: pagetable.hh:82
RegVal
uint64_t RegVal
Definition: types.hh:174
RiscvISA::TLB::tlb
std::vector< TlbEntry > tlb
Definition: tlb.hh:62
RiscvISA::TLB::size
size_t size
Definition: tlb.hh:61
RiscvISA::TlbEntry::asid
uint16_t asid
Definition: pagetable.hh:89
pagetable_walker.hh

Generated on Tue Mar 23 2021 19:41:19 for gem5 by doxygen 1.8.17