gem5  v21.0.1.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"
38 #include "arch/riscv/mmu.hh"
39 #include "arch/riscv/pagetable.hh"
43 #include "arch/riscv/utility.hh"
44 #include "base/inifile.hh"
45 #include "base/str.hh"
46 #include "base/trace.hh"
47 #include "cpu/thread_context.hh"
48 #include "debug/TLB.hh"
49 #include "debug/TLBVerbose.hh"
50 #include "mem/page_table.hh"
51 #include "params/RiscvTLB.hh"
52 #include "sim/full_system.hh"
53 #include "sim/process.hh"
54 #include "sim/system.hh"
55 
56 using namespace RiscvISA;
57 
59 //
60 // RISC-V TLB
61 //
62 
63 static Addr
64 buildKey(Addr vpn, uint16_t asid)
65 {
66  return (static_cast<Addr>(asid) << 48) | vpn;
67 }
68 
69 TLB::TLB(const Params &p) :
70  BaseTLB(p), size(p.size), tlb(size),
71  lruSeq(0), stats(this), pma(p.pma_checker)
72 {
73  for (size_t x = 0; x < size; x++) {
74  tlb[x].trieHandle = NULL;
75  freeList.push_back(&tlb[x]);
76  }
77 
78  walker = p.walker;
79  walker->setTLB(this);
80 }
81 
82 Walker *
84 {
85  return walker;
86 }
87 
88 void
90 {
91  // Find the entry with the lowest (and hence least recently updated)
92  // sequence number.
93 
94  size_t lru = 0;
95  for (size_t i = 1; i < size; i++) {
96  if (tlb[i].lruSeq < tlb[lru].lruSeq)
97  lru = i;
98  }
99 
100  remove(lru);
101 }
102 
103 TlbEntry *
104 TLB::lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden)
105 {
106  TlbEntry *entry = trie.lookup(buildKey(vpn, asid));
107 
108  if (!hidden) {
109  if (entry)
110  entry->lruSeq = nextSeq();
111 
112  if (mode == Write)
114  else
116 
117  if (!entry) {
118  if (mode == Write)
119  stats.writeMisses++;
120  else
121  stats.readMisses++;
122  }
123  else {
124  if (mode == Write)
125  stats.writeHits++;
126  else
127  stats.readHits++;
128  }
129 
130  DPRINTF(TLBVerbose, "lookup(vpn=%#x, asid=%#x): %s ppn %#x\n",
131  vpn, asid, entry ? "hit" : "miss", entry ? entry->paddr : 0);
132  }
133 
134  return entry;
135 }
136 
137 TlbEntry *
138 TLB::insert(Addr vpn, const TlbEntry &entry)
139 {
140  DPRINTF(TLB, "insert(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
141  vpn, entry.asid, entry.paddr, entry.pte, entry.size());
142 
143  // If somebody beat us to it, just use that existing entry.
144  TlbEntry *newEntry = lookup(vpn, entry.asid, Mode::Read, true);
145  if (newEntry) {
146  // update PTE flags (maybe we set the dirty/writable flag)
147  newEntry->pte = entry.pte;
148  assert(newEntry->vaddr == vpn);
149  return newEntry;
150  }
151 
152  if (freeList.empty())
153  evictLRU();
154 
155  newEntry = freeList.front();
156  freeList.pop_front();
157 
158  Addr key = buildKey(vpn, entry.asid);
159  *newEntry = entry;
160  newEntry->lruSeq = nextSeq();
161  newEntry->vaddr = vpn;
162  newEntry->trieHandle =
163  trie.insert(key, TlbEntryTrie::MaxBits - entry.logBytes, newEntry);
164  return newEntry;
165 }
166 
167 void
168 TLB::demapPage(Addr vpn, uint64_t asid)
169 {
170  asid &= 0xFFFF;
171 
172  if (vpn == 0 && asid == 0)
173  flushAll();
174  else {
175  DPRINTF(TLB, "flush(vpn=%#x, asid=%#x)\n", vpn, asid);
176  if (vpn != 0 && asid != 0) {
177  TlbEntry *newEntry = lookup(vpn, asid, Mode::Read, true);
178  if (newEntry)
179  remove(newEntry - tlb.data());
180  }
181  else {
182  for (size_t i = 0; i < size; i++) {
183  if (tlb[i].trieHandle) {
184  Addr mask = ~(tlb[i].size() - 1);
185  if ((vpn == 0 || (vpn & mask) == tlb[i].vaddr) &&
186  (asid == 0 || tlb[i].asid == asid))
187  remove(i);
188  }
189  }
190  }
191  }
192 }
193 
194 void
196 {
197  DPRINTF(TLB, "flushAll()\n");
198  for (size_t i = 0; i < size; i++) {
199  if (tlb[i].trieHandle)
200  remove(i);
201  }
202 }
203 
204 void
205 TLB::remove(size_t idx)
206 {
207  DPRINTF(TLB, "remove(vpn=%#x, asid=%#x): ppn=%#x pte=%#x size=%#x\n",
208  tlb[idx].vaddr, tlb[idx].asid, tlb[idx].paddr, tlb[idx].pte,
209  tlb[idx].size());
210 
211  assert(tlb[idx].trieHandle);
212  trie.remove(tlb[idx].trieHandle);
213  tlb[idx].trieHandle = NULL;
214  freeList.push_back(&tlb[idx]);
215 }
216 
217 Fault
219  Mode mode, PTESv39 pte)
220 {
221  Fault fault = NoFault;
222 
223  if (mode == TLB::Read && !pte.r) {
224  DPRINTF(TLB, "PTE has no read perm, raising PF\n");
225  fault = createPagefault(vaddr, mode);
226  }
227  else if (mode == TLB::Write && !pte.w) {
228  DPRINTF(TLB, "PTE has no write perm, raising PF\n");
229  fault = createPagefault(vaddr, mode);
230  }
231  else if (mode == TLB::Execute && !pte.x) {
232  DPRINTF(TLB, "PTE has no exec perm, raising PF\n");
233  fault = createPagefault(vaddr, mode);
234  }
235 
236  if (fault == NoFault) {
237  // check pte.u
238  if (pmode == PrivilegeMode::PRV_U && !pte.u) {
239  DPRINTF(TLB, "PTE is not user accessible, raising PF\n");
240  fault = createPagefault(vaddr, mode);
241  }
242  else if (pmode == PrivilegeMode::PRV_S && pte.u && status.sum == 0) {
243  DPRINTF(TLB, "PTE is only user accessible, raising PF\n");
244  fault = createPagefault(vaddr, mode);
245  }
246  }
247 
248  return fault;
249 }
250 
251 Fault
253 {
254  ExceptionCode code;
255  if (mode == TLB::Read)
257  else if (mode == TLB::Write)
259  else
261  return std::make_shared<AddressFault>(vaddr, code);
262 }
263 
264 Addr
266 {
267  TlbEntry *e = lookup(vaddr, asid, mode, false);
268  assert(e != nullptr);
269  return e->paddr << PageShift | (vaddr & mask(e->logBytes));
270 }
271 
272 Fault
274  Translation *translation, Mode mode, bool &delayed)
275 {
276  delayed = false;
277 
278  Addr vaddr = req->getVaddr() & ((static_cast<Addr>(1) << VADDR_BITS) - 1);
279  SATP satp = tc->readMiscReg(MISCREG_SATP);
280 
281  TlbEntry *e = lookup(vaddr, satp.asid, mode, false);
282  if (!e) {
283  Fault fault = walker->start(tc, translation, req, mode);
284  if (translation != nullptr || fault != NoFault) {
285  // This gets ignored in atomic mode.
286  delayed = true;
287  return fault;
288  }
289  e = lookup(vaddr, satp.asid, mode, false);
290  assert(e != nullptr);
291  }
292 
293  STATUS status = tc->readMiscReg(MISCREG_STATUS);
294  PrivilegeMode pmode = getMemPriv(tc, mode);
295  Fault fault = checkPermissions(status, pmode, vaddr, mode, e->pte);
296  if (fault != NoFault) {
297  // if we want to write and it isn't writable, do a page table walk
298  // again to update the dirty flag.
299  if (mode == TLB::Write && !e->pte.w) {
300  DPRINTF(TLB, "Dirty bit not set, repeating PT walk\n");
301  fault = walker->start(tc, translation, req, mode);
302  if (translation != nullptr || fault != NoFault) {
303  delayed = true;
304  return fault;
305  }
306  }
307  if (fault != NoFault)
308  return fault;
309  }
310 
311  Addr paddr = e->paddr << PageShift | (vaddr & mask(e->logBytes));
312  DPRINTF(TLBVerbose, "translate(vpn=%#x, asid=%#x): %#x\n",
313  vaddr, satp.asid, paddr);
314  req->setPaddr(paddr);
315 
316  return NoFault;
317 }
318 
321 {
322  STATUS status = (STATUS)tc->readMiscReg(MISCREG_STATUS);
324  if (mode != Mode::Execute && status.mprv == 1)
325  pmode = (PrivilegeMode)(RegVal)status.mpp;
326  return pmode;
327 }
328 
329 Fault
331  Translation *translation, Mode mode, bool &delayed)
332 {
333  delayed = false;
334 
335  if (FullSystem) {
336  PrivilegeMode pmode = getMemPriv(tc, mode);
337  SATP satp = tc->readMiscReg(MISCREG_SATP);
338  if (pmode == PrivilegeMode::PRV_M || satp.mode == AddrXlateMode::BARE)
339  req->setFlags(Request::PHYSICAL);
340 
341  Fault fault;
342  if (req->getFlags() & Request::PHYSICAL) {
346  req->setPaddr(req->getVaddr());
347  fault = NoFault;
348  } else {
349  fault = doTranslate(req, tc, translation, mode, delayed);
350  }
351 
352  // according to the RISC-V tests, negative physical addresses trigger
353  // an illegal address exception.
354  // TODO where is that written in the manual?
355  if (!delayed && fault == NoFault && bits(req->getPaddr(), 63)) {
356  ExceptionCode code;
357  if (mode == TLB::Read)
359  else if (mode == TLB::Write)
361  else
363  fault = std::make_shared<AddressFault>(req->getVaddr(), code);
364  }
365 
366  if (!delayed && fault == NoFault) {
367  pma->check(req);
368  }
369 
370  return fault;
371  } else {
372  // In the O3 CPU model, sometimes a memory access will be speculatively
373  // executed along a branch that will end up not being taken where the
374  // address is invalid. In that case, return a fault rather than trying
375  // to translate it (which will cause a panic). Since RISC-V allows
376  // unaligned memory accesses, this should only happen if the request's
377  // length is long enough to wrap around from the end of the memory to
378  // the start.
379  assert(req->getSize() > 0);
380  if (req->getVaddr() + req->getSize() - 1 < req->getVaddr())
381  return std::make_shared<GenericPageTableFault>(req->getVaddr());
382 
383  Process * p = tc->getProcessPtr();
384 
385  Fault fault = p->pTable->translate(req);
386  if (fault != NoFault)
387  return fault;
388 
389  return NoFault;
390  }
391 }
392 
393 Fault
395 {
396  bool delayed;
397  return translate(req, tc, nullptr, mode, delayed);
398 }
399 
400 void
402  Translation *translation, Mode mode)
403 {
404  bool delayed;
405  assert(translation);
406  Fault fault = translate(req, tc, translation, mode, delayed);
407  if (!delayed)
408  translation->finish(fault, req, tc, mode);
409  else
410  translation->markDelayed();
411 }
412 
413 Fault
415 {
416  const Addr vaddr = req->getVaddr();
417  Addr paddr = vaddr;
418 
419  if (FullSystem) {
420  MMU *mmu = static_cast<MMU *>(tc->getMMUPtr());
421 
422  PrivilegeMode pmode = mmu->getMemPriv(tc, mode);
423  SATP satp = tc->readMiscReg(MISCREG_SATP);
424  if (pmode != PrivilegeMode::PRV_M &&
425  satp.mode != AddrXlateMode::BARE) {
426  Walker *walker = mmu->getDataWalker();
427  unsigned logBytes;
428  Fault fault = walker->startFunctional(
429  tc, paddr, logBytes, mode);
430  if (fault != NoFault)
431  return fault;
432 
433  Addr masked_addr = vaddr & mask(logBytes);
434  paddr |= masked_addr;
435  }
436  }
437  else {
438  Process *process = tc->getProcessPtr();
439  const auto *pte = process->pTable->lookup(vaddr);
440 
441  if (!pte && mode != Execute) {
442  // Check if we just need to grow the stack.
443  if (process->fixupFault(vaddr)) {
444  // If we did, lookup the entry for the new page.
445  pte = process->pTable->lookup(vaddr);
446  }
447  }
448 
449  if (!pte)
450  return std::make_shared<GenericPageTableFault>(req->getVaddr());
451 
452  paddr = pte->paddr | process->pTable->pageOffset(vaddr);
453  }
454 
455  DPRINTF(TLB, "Translated (functional) %#x -> %#x.\n", vaddr, paddr);
456  req->setPaddr(paddr);
457  return NoFault;
458 }
459 
460 Fault
462  ThreadContext *tc, Mode mode) const
463 {
464  return NoFault;
465 }
466 
467 void
469 {
470  // Only store the entries in use.
471  uint32_t _size = size - freeList.size();
472  SERIALIZE_SCALAR(_size);
474 
475  uint32_t _count = 0;
476  for (uint32_t x = 0; x < size; x++) {
477  if (tlb[x].trieHandle != NULL)
478  tlb[x].serializeSection(cp, csprintf("Entry%d", _count++));
479  }
480 }
481 
482 void
484 {
485  // Do not allow to restore with a smaller tlb.
486  uint32_t _size;
487  UNSERIALIZE_SCALAR(_size);
488  if (_size > size) {
489  fatal("TLB size less than the one in checkpoint!");
490  }
491 
493 
494  for (uint32_t x = 0; x < _size; x++) {
495  TlbEntry *newEntry = freeList.front();
496  freeList.pop_front();
497 
498  newEntry->unserializeSection(cp, csprintf("Entry%d", x));
499  Addr key = buildKey(newEntry->vaddr, newEntry->asid);
500  newEntry->trieHandle = trie.insert(key,
501  TlbEntryTrie::MaxBits - newEntry->logBytes, newEntry);
502  }
503 }
504 
506  : Stats::Group(parent),
507  ADD_STAT(readHits, UNIT_COUNT, "read hits"),
508  ADD_STAT(readMisses, UNIT_COUNT, "read misses"),
509  ADD_STAT(readAccesses, UNIT_COUNT, "read accesses"),
510  ADD_STAT(writeHits, UNIT_COUNT, "write hits"),
511  ADD_STAT(writeMisses, UNIT_COUNT, "write misses"),
512  ADD_STAT(writeAccesses, UNIT_COUNT, "write accesses"),
513  ADD_STAT(hits, UNIT_COUNT, "Total TLB (read and write) hits",
514  readHits + writeHits),
515  ADD_STAT(misses, UNIT_COUNT, "Total TLB (read and write) misses",
516  readMisses + writeMisses),
517  ADD_STAT(accesses, UNIT_COUNT, "Total TLB (read and write) accesses",
518  readAccesses + writeAccesses)
519 {
520 }
521 
522 Port *
524 {
525  return &walker->getPort("port");
526 }
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:320
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:168
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:330
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:138
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:468
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:414
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:265
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:89
BaseTLB
Definition: tlb.hh:50
EmulationPageTable::lookup
const Entry * lookup(Addr vaddr)
Lookup function.
Definition: page_table.cc:130
RiscvISA
Definition: fs_workload.cc:37
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:205
Trie< Addr, TlbEntry >::MaxBits
static const unsigned MaxBits
Definition: trie.hh:133
RiscvISA::TLB::createPagefault
Fault createPagefault(Addr vaddr, Mode mode)
Definition: tlb.cc:252
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:64
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:401
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:104
RiscvISA::TLB::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:483
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:461
RiscvISA::TLB::flushAll
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:195
RiscvISA::TLB::TLB
TLB(const Params &p)
Definition: tlb.cc:69
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:505
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:273
full_system.hh
ArmISA::e
Bitfield< 9 > e
Definition: miscregs_types.hh:61
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:394
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:218
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:523
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:83
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 Jun 22 2021 15:28:20 for gem5 by doxygen 1.8.17