gem5  v21.0.1.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
tlb.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2010-2013, 2016, 2019-2020 ARM Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Copyright (c) 2001-2005 The Regents of The University of Michigan
15  * All rights reserved.
16  *
17  * Redistribution and use in source and binary forms, with or without
18  * modification, are permitted provided that the following conditions are
19  * met: redistributions of source code must retain the above copyright
20  * notice, this list of conditions and the following disclaimer;
21  * redistributions in binary form must reproduce the above copyright
22  * notice, this list of conditions and the following disclaimer in the
23  * documentation and/or other materials provided with the distribution;
24  * neither the name of the copyright holders nor the names of its
25  * contributors may be used to endorse or promote products derived from
26  * this software without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39  */
40 
41 #ifndef __ARCH_ARM_TLB_HH__
42 #define __ARCH_ARM_TLB_HH__
43 
44 
45 #include "arch/arm/faults.hh"
46 #include "arch/arm/isa_traits.hh"
47 #include "arch/arm/pagetable.hh"
48 #include "arch/arm/utility.hh"
49 #include "arch/generic/tlb.hh"
50 #include "base/statistics.hh"
51 #include "mem/request.hh"
52 #include "params/ArmTLB.hh"
53 #include "sim/probe/pmu.hh"
54 
55 class ThreadContext;
56 
57 namespace ArmISA {
58 
59 class TableWalker;
60 class Stage2LookUp;
61 class Stage2MMU;
62 class TLB;
63 
64 class TLBIALL;
65 class TLBIALLEL;
66 class TLBIVMALL;
67 class TLBIALLN;
68 class TLBIMVA;
69 class TLBIASID;
70 class TLBIMVAA;
71 class TLBIIPA;
72 
74 {
75  public:
77  virtual ~TlbTestInterface() {}
78 
87  virtual Fault translationCheck(const RequestPtr &req, bool is_priv,
90 
103  virtual Fault walkCheck(Addr pa, Addr size, Addr va, bool is_secure,
104  Addr is_priv, BaseTLB::Mode mode,
106  LookupLevel lookup_level) = 0;
107 };
108 
109 class TLB : public BaseTLB
110 {
111  public:
112  enum ArmFlags {
114 
115  AlignByte = 0x0,
117  AlignWord = 0x2,
121 
123  // Priv code operating as if it wasn't
124  UserMode = 0x10
125  };
126 
129  S1CTran = 0x1,
130  HypMode = 0x2,
131  // Secure code operating as if it wasn't (required by some Address
132  // Translate operations)
133  S1S2NsTran = 0x4,
134  // Address translation instructions (eg AT S1E0R_Xt) need to be handled
135  // in special ways during translation because they could need to act
136  // like a different EL than the current EL. The following flags are
137  // for these instructions
138  S1E0Tran = 0x8,
139  S1E1Tran = 0x10,
140  S1E2Tran = 0x20,
141  S1E3Tran = 0x40,
142  S12E0Tran = 0x80,
143  S12E1Tran = 0x100
144  };
145 
152 
153  protected:
154  TlbEntry* table; // the Page Table
155  int size; // TLB Size
156  bool isStage2; // Indicates this TLB is part of the second stage MMU
157  bool stage2Req; // Indicates whether a stage 2 lookup is also required
158  // Indicates whether a stage 2 lookup of the table descriptors is required.
159  // Certain address translation instructions will intercept the IPA but the
160  // table descriptors still need to be translated by the stage2.
162  uint64_t _attr; // Memory attributes for last accessed TLB entry
163  bool directToStage2; // Indicates whether all translation requests should
164  // be routed directly to the stage 2 TLB
165 
169 
171 
172  struct TlbStats : public Stats::Group
173  {
174  TlbStats(Stats::Group *parent);
175  // Access Stats
192 
199  } stats;
200 
203 
204  int rangeMRU; //On lookup, only move entries ahead when outside rangeMRU
205 
206  public:
207  using Params = ArmTLBParams;
208  TLB(const Params &p);
209  TLB(const Params &p, int _size, TableWalker *_walker);
210 
221  TlbEntry *lookup(Addr vpn, uint16_t asn, uint8_t vmid, bool hyp,
222  bool secure, bool functional,
223  bool ignore_asn, ExceptionLevel target_el,
224  bool in_host);
225 
226  virtual ~TLB();
227 
228  void takeOverFrom(BaseTLB *otlb) override;
229 
231  void init() override;
232 
234 
236 
237  void setMMU(Stage2MMU *m, RequestorID requestor_id);
238 
239  int getsize() const { return size; }
240 
241  void insert(Addr vaddr, TlbEntry &pte);
242 
243  Fault getTE(TlbEntry **te, const RequestPtr &req,
244  ThreadContext *tc, Mode mode,
245  Translation *translation, bool timing, bool functional,
246  bool is_secure, ArmTranslationType tranType);
247 
248  Fault getResultTe(TlbEntry **te, const RequestPtr &req,
249  ThreadContext *tc, Mode mode,
250  Translation *translation, bool timing,
251  bool functional, TlbEntry *mergeTe);
252 
255  ThreadContext *tc);
256  bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req,
257  Mode mode);
258 
262  void flushAll() override;
263 
264 
267  void flush(const TLBIALL &tlbi_op);
268 
272  void flush(const TLBIALLEL &tlbi_op);
273 
277  void flush(const TLBIVMALL &tlbi_op);
278 
282  void flush(const TLBIALLN &tlbi_op);
283 
286  void flush(const TLBIMVA &tlbi_op);
287 
290  void flush(const TLBIASID &tlbi_op);
291 
294  void flush(const TLBIMVAA &tlbi_op);
295 
300  void flush(const TLBIIPA &tlbi_op);
301 
302  Fault trickBoxCheck(const RequestPtr &req, Mode mode,
304 
305  Fault walkTrickBoxCheck(Addr pa, bool is_secure, Addr va, Addr sz,
306  bool is_exec, bool is_write,
308  LookupLevel lookup_level);
309 
310  void printTlb() const;
311 
312  void demapPage(Addr vaddr, uint64_t asn) override
313  {
314  // needed for x86 only
315  panic("demapPage() is not implemented.\n");
316  }
317 
326  bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr);
327 
333  Mode mode, ArmTranslationType tranType);
334  Fault
336  ThreadContext *tc, Mode mode) override
337  {
338  return translateFunctional(req, tc, mode, NormalTran);
339  }
340 
343  void
344  setAttr(uint64_t attr)
345  {
346  _attr = attr;
347  }
348 
349  uint64_t
350  getAttr() const
351  {
352  return _attr;
353  }
354 
356  TLB::ArmTranslationType tranType, Addr vaddr, bool long_desc_format);
358  Translation *translation, bool &delay, bool timing, bool functional,
359  Addr vaddr, ArmFault::TranMethod tranMethod);
360 
362  Translation *translation, bool &delay,
363  bool timing, ArmTranslationType tranType, bool functional = false);
365  Translation *translation, bool &delay, bool timing);
367  ArmTranslationType tranType);
368  Fault
370  ThreadContext *tc, Mode mode) override
371  {
372  return translateAtomic(req, tc, mode, NormalTran);
373  }
374  void translateTiming(
375  const RequestPtr &req, ThreadContext *tc,
376  Translation *translation, Mode mode,
377  ArmTranslationType tranType);
378  void
380  Translation *translation, Mode mode) override
381  {
382  translateTiming(req, tc, translation, mode, NormalTran);
383  }
385  Translation *translation, Mode mode, ArmTranslationType tranType,
386  bool callFromS2);
388  const RequestPtr &req,
389  ThreadContext *tc, Mode mode) const override;
390 
391  void drainResume() override;
392 
393  void regProbePoints() override;
394 
405  Port *getTableWalkerPort() override;
406 
407  // Caching misc register values here.
408  // Writing to misc registers needs to invalidate them.
409  // translateFunctional/translateSe/translateFs checks if they are
410  // invalid and call updateMiscReg if necessary.
411 protected:
412  CPSR cpsr;
413  bool aarch64;
415  SCTLR sctlr;
416  SCR scr;
417  bool isPriv;
418  bool isSecure;
419  bool isHyp;
420  TTBCR ttbcr;
421  uint16_t asid;
422  uint8_t vmid;
423  PRRR prrr;
424  NMRR nmrr;
425  HCR hcr;
426  uint32_t dacr;
430 
431  // Cached copies of system-level properties
432  bool haveLPAE;
435  uint8_t physAddrRange;
436 
438 
439  void updateMiscReg(ThreadContext *tc,
440  ArmTranslationType tranType = NormalTran);
441 
442 public:
443  void invalidateMiscReg() { miscRegValid = false; }
444 
445 private:
453  void _flushMva(Addr mva, uint64_t asn, bool secure_lookup,
454  bool ignore_asn, ExceptionLevel target_el,
455  bool in_host);
456 
457  public: /* Testing */
460  Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode,
462  LookupLevel lookup_level);
463 };
464 
465 } // namespace ArmISA
466 
467 #endif // __ARCH_ARM_TLB_HH__
ArmISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.hh:379
ArmISA::TLB::TlbStats::accesses
Stats::Formula accesses
Definition: tlb.hh:198
ArmISA::LookupLevel
LookupLevel
Definition: pagetable.hh:72
ArmISA::TLB::AlignWord
@ AlignWord
Definition: tlb.hh:117
ArmISA::TLB::TlbStats::instMisses
Stats::Scalar instMisses
Definition: tlb.hh:177
ArmISA::TLB::ttbcr
TTBCR ttbcr
Definition: tlb.hh:420
ArmISA::TLB::setTestInterface
void setTestInterface(SimObject *ti)
Definition: tlb.cc:1705
ArmISA::TLB::UserMode
@ UserMode
Definition: tlb.hh:124
ArmISA::TLB::TlbStats
Definition: tlb.hh:172
MipsISA::ti
Bitfield< 30 > ti
Definition: pra_constants.hh:176
ArmISA::TLB::isStage2
bool isStage2
Definition: tlb.hh:156
ArmISA::TLB::translateFs
Fault translateFs(const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool &delay, bool timing, ArmTranslationType tranType, bool functional=false)
Definition: tlb.cc:1180
ArmISA::TLB::lookup
TlbEntry * lookup(Addr vpn, uint16_t asn, uint8_t vmid, bool hyp, bool secure, bool functional, bool ignore_asn, ExceptionLevel target_el, bool in_host)
Lookup an entry in the TLB.
Definition: tlb.cc:166
ArmISA::TLB::translateSe
Fault translateSe(const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool &delay, bool timing)
Definition: tlb.cc:557
ArmISA::TLB::translateMmuOn
Fault translateMmuOn(ThreadContext *tc, const RequestPtr &req, Mode mode, Translation *translation, bool &delay, bool timing, bool functional, Addr vaddr, ArmFault::TranMethod tranMethod)
Definition: tlb.cc:1108
ArmISA::TLB::ArmTranslationType
ArmTranslationType
Definition: tlb.hh:127
ArmISA::TLB::printTlb
void printTlb() const
Definition: tlb.cc:241
ArmISA::TLB::finalizePhysical
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:137
ArmISA::TLB::demapPage
void demapPage(Addr vaddr, uint64_t asn) override
Definition: tlb.hh:312
ArmISA::TLB::TlbStats::prefetchFaults
Stats::Scalar prefetchFaults
Definition: tlb.hh:189
ArmISA::TLB::TlbStats::flushTlbAsid
Stats::Scalar flushTlbAsid
Definition: tlb.hh:186
ArmISA::TLB::TlbStats::domainFaults
Stats::Scalar domainFaults
Definition: tlb.hh:190
pagetable.hh
ArmISA::TlbTestInterface::TlbTestInterface
TlbTestInterface()
Definition: tlb.hh:76
ContextID
int ContextID
Globally unique thread context ID.
Definition: types.hh:237
ArmISA::TLB::size
int size
Definition: tlb.hh:155
ArmISA::TlbTestInterface
Definition: tlb.hh:73
ArmISA::TLB::TlbStats::flushTlb
Stats::Scalar flushTlb
Definition: tlb.hh:183
ArmISA::te
Bitfield< 30 > te
Definition: miscregs_types.hh:334
tlb.hh
BaseTLB::Mode
Mode
Definition: tlb.hh:57
ArmISA::TLB::TlbStats::readAccesses
Stats::Formula readAccesses
Definition: tlb.hh:193
ArmISA::TLB::sctlr
SCTLR sctlr
Definition: tlb.hh:415
ArmISA::TLB::TlbStats::writeMisses
Stats::Scalar writeMisses
Definition: tlb.hh:181
ArmISA::TLB::HypMode
@ HypMode
Definition: tlb.hh:130
ArmISA::TLB::setAttr
void setAttr(uint64_t attr)
Accessor functions for memory attributes for last accessed TLB entry.
Definition: tlb.hh:344
ArmISA::TLBIMVA
TLB Invalidate by VA.
Definition: tlbi_op.hh:241
ArmISA::TLB::drainResume
void drainResume() override
Resume execution after a successful drain.
Definition: tlb.cc:477
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
ArmISA::TLBIVMALL
Implementaton of AArch64 TLBI VMALLE1(IS)/VMALLS112E1(IS) instructions.
Definition: tlbi_op.hh:145
ArmISA::TLB::stats
ArmISA::TLB::TlbStats stats
ArmISA::TLB::AlignDoubleWord
@ AlignDoubleWord
Definition: tlb.hh:118
ArmISA::TLB::getAttr
uint64_t getAttr() const
Definition: tlb.hh:350
ArmISA::TlbTestInterface::walkCheck
virtual Fault walkCheck(Addr pa, Addr size, Addr va, bool is_secure, Addr is_priv, BaseTLB::Mode mode, TlbEntry::DomainType domain, LookupLevel lookup_level)=0
Check if a page table walker access should be forced to fail.
ArmISA::TLB::table
TlbEntry * table
Definition: tlb.hh:154
ArmISA::TLB::S1S2NsTran
@ S1S2NsTran
Definition: tlb.hh:133
ArmISA::TLB::TlbStats::flushTlbMva
Stats::Scalar flushTlbMva
Definition: tlb.hh:184
ArmISA::TLB::TlbStats::permsFaults
Stats::Scalar permsFaults
Definition: tlb.hh:191
ArmISA::TLB::nmrr
NMRR nmrr
Definition: tlb.hh:424
ArmISA::TLBIASID
TLB Invalidate by ASID match.
Definition: tlbi_op.hh:167
ArmISA::TLB::haveVirtualization
bool haveVirtualization
Definition: tlb.hh:433
ArmISA::Stage2MMU
Definition: stage2_mmu.hh:50
ArmISA::TLB::TlbStats::readMisses
Stats::Scalar readMisses
Definition: tlb.hh:179
ArmISA
Definition: ccregs.hh:41
ArmISA::TLB::AlignByte
@ AlignByte
Definition: tlb.hh:115
ArmISA::TLB::stage2DescReq
bool stage2DescReq
Definition: tlb.hh:161
request.hh
BaseTLB
Definition: tlb.hh:50
ArmISA::TLB::TlbStats::instAccesses
Stats::Formula instAccesses
Definition: tlb.hh:195
ArmISA::TLB::miscRegContext
ContextID miscRegContext
Definition: tlb.hh:428
ArmISA::TLB::stage2Req
bool stage2Req
Definition: tlb.hh:157
ArmISA::TLB::_flushMva
void _flushMva(Addr mva, uint64_t asn, bool secure_lookup, bool ignore_asn, ExceptionLevel target_el, bool in_host)
Remove any entries that match both a va and asn.
Definition: tlb.cc:445
pmu.hh
ArmISA::TLB::translateMmuOff
Fault translateMmuOff(ThreadContext *tc, const RequestPtr &req, Mode mode, TLB::ArmTranslationType tranType, Addr vaddr, bool long_desc_format)
Definition: tlb.cc:1036
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
ArmISA::TLB::_attr
uint64_t _attr
Definition: tlb.hh:162
RequestorID
uint16_t RequestorID
Definition: request.hh:89
ArmISA::TLB::checkPermissions64
Fault checkPermissions64(TlbEntry *te, const RequestPtr &req, Mode mode, ThreadContext *tc)
Definition: tlb.cc:775
ArmISA::TLB::S1CTran
@ S1CTran
Definition: tlb.hh:129
ArmISA::TLB::regProbePoints
void regProbePoints() override
Register probe points for this object.
Definition: tlb.cc:551
ArmISA::TLB::curTranType
ArmTranslationType curTranType
Definition: tlb.hh:429
ArmISA::TLB::S12E0Tran
@ S12E0Tran
Definition: tlb.hh:142
ArmISA::TLB::TlbStats::TlbStats
TlbStats(Stats::Group *parent)
Definition: tlb.cc:508
ArmISA::TLB::stage2Tlb
TLB * stage2Tlb
Definition: tlb.hh:167
ArmISA::TLB::AllowUnaligned
@ AllowUnaligned
Definition: tlb.hh:122
ArmISA::TLB::TlbStats::writeHits
Stats::Scalar writeHits
Definition: tlb.hh:180
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
ArmISA::TLB::~TLB
virtual ~TLB()
Definition: tlb.cc:99
AddrRange
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
ArmISA::TLB::translateFunctional
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.hh:335
ArmISA::TLB::S1E2Tran
@ S1E2Tran
Definition: tlb.hh:140
ArmISA::TLB::TlbStats::inserts
Stats::Scalar inserts
Definition: tlb.hh:182
ArmISA::TLB::test
TlbTestInterface * test
Definition: tlb.hh:170
ArmISA::TLB::aarch64EL
ExceptionLevel aarch64EL
Definition: tlb.hh:414
ArmISA::ExceptionLevel
ExceptionLevel
Definition: types.hh:621
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
ArmISA::TLB::TlbStats::hits
Stats::Formula hits
Definition: tlb.hh:196
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
statistics.hh
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
ArmISA::TLB::AlignHalfWord
@ AlignHalfWord
Definition: tlb.hh:116
ArmISA::TLB::getsize
int getsize() const
Definition: tlb.hh:239
ArmISA::TLB::getTableWalker
TableWalker * getTableWalker()
Definition: tlb.hh:235
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
ArmISA::TLB::isSecure
bool isSecure
Definition: tlb.hh:418
ArmISA::TLB::S1E0Tran
@ S1E0Tran
Definition: tlb.hh:138
ArmISA::TLB::isHyp
bool isHyp
Definition: tlb.hh:419
ArmISA::attr
attr
Definition: miscregs_types.hh:649
ArmISA::TLB::AlignmentMask
@ AlignmentMask
Definition: tlb.hh:113
BaseTLB::Translation
Definition: tlb.hh:59
ArmISA::TLB::checkPermissions
Fault checkPermissions(TlbEntry *te, const RequestPtr &req, Mode mode)
Definition: tlb.cc:597
ArmISA::TLB::ArmFlags
ArmFlags
Definition: tlb.hh:112
ArmISA::TLB::tranTypeEL
static ExceptionLevel tranTypeEL(CPSR cpsr, ArmTranslationType type)
Determine the EL to use for the purpose of a translation given a specific translation type.
Definition: tlb.cc:1533
ArmISA::TLB::rangeMRU
int rangeMRU
Definition: tlb.hh:204
ArmISA::TLB::TlbStats::flushedEntries
Stats::Scalar flushedEntries
Definition: tlb.hh:187
ArmISA::TLB::invalidateMiscReg
void invalidateMiscReg()
Definition: tlb.hh:443
ArmISA::TLB::vmid
uint8_t vmid
Definition: tlb.hh:422
ArmISA::TLBIMVAA
TLB Invalidate by VA, All ASID.
Definition: tlbi_op.hh:226
faults.hh
ArmISA::TLB::haveLargeAsid64
bool haveLargeAsid64
Definition: tlb.hh:434
ArmISA::TLB::checkPAN
bool checkPAN(ThreadContext *tc, uint8_t ap, const RequestPtr &req, Mode mode)
Definition: tlb.cc:1016
ArmISA::TLB::testWalk
Fault testWalk(Addr pa, Addr size, Addr va, bool is_secure, Mode mode, TlbEntry::DomainType domain, LookupLevel lookup_level)
Definition: tlb.cc:1729
ArmISA::TLB::scr
SCR scr
Definition: tlb.hh:416
ArmISA::TlbTestInterface::~TlbTestInterface
virtual ~TlbTestInterface()
Definition: tlb.hh:77
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
ArmISA::TLB::tableWalker
TableWalker * tableWalker
Definition: tlb.hh:166
ArmISA::TLB::Params
ArmTLBParams Params
Definition: tlb.hh:207
ArmISA::TLB::dacr
uint32_t dacr
Definition: tlb.hh:426
ArmISA::TLB::miscRegValid
bool miscRegValid
Definition: tlb.hh:427
ArmISA::TLB::prrr
PRRR prrr
Definition: tlb.hh:423
ArmISA::TLB::trickBoxCheck
Fault trickBoxCheck(const RequestPtr &req, Mode mode, TlbEntry::DomainType domain)
utility.hh
ArmISA::TLBIALL
TLB Invalidate All.
Definition: tlbi_op.hh:80
ProbePoints::PMUUPtr
std::unique_ptr< PMU > PMUUPtr
Definition: pmu.hh:56
ArmISA::TLB::updateMiscReg
void updateMiscReg(ThreadContext *tc, ArmTranslationType tranType=NormalTran)
Definition: tlb.cc:1357
ArmISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.hh:369
ArmISA::TLB::aarch64
bool aarch64
Definition: tlb.hh:413
ArmISA::TLB::isPriv
bool isPriv
Definition: tlb.hh:417
ArmISA::TLB
Definition: tlb.hh:109
ArmISA::TLB::stage2Mmu
Stage2MMU * stage2Mmu
Definition: tlb.hh:168
ArmISA::TLB::haveLPAE
bool haveLPAE
Definition: tlb.hh:432
ArmISA::TlbEntry::DomainType
DomainType
Definition: pagetable.hh:90
ArmISA::TlbEntry
Definition: pagetable.hh:81
ArmISA::TLB::asid
uint16_t asid
Definition: tlb.hh:421
ArmISA::TLB::walkTrickBoxCheck
Fault walkTrickBoxCheck(Addr pa, bool is_secure, Addr va, Addr sz, bool is_exec, bool is_write, TlbEntry::DomainType domain, LookupLevel lookup_level)
ArmISA::TLB::S1E1Tran
@ S1E1Tran
Definition: tlb.hh:139
ArmISA::TLB::cpsr
CPSR cpsr
Definition: tlb.hh:412
ArmISA::TLB::init
void init() override
setup all the back pointers
Definition: tlb.cc:105
ArmISA::domain
Bitfield< 7, 4 > domain
Definition: miscregs_types.hh:418
ArmISA::TLB::ppRefills
ProbePoints::PMUUPtr ppRefills
PMU probe for TLB refills.
Definition: tlb.hh:202
ArmISA::TLB::takeOverFrom
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Definition: tlb.cc:485
ArmISA::ArmFault::TranMethod
TranMethod
Definition: faults.hh:146
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Stats::Group
Statistics container.
Definition: group.hh:87
ArmISA::TLB::TlbStats::readHits
Stats::Scalar readHits
Definition: tlb.hh:178
isa_traits.hh
ArmISA::TLBIALLEL
Implementaton of AArch64 TLBI ALLE(1,2,3)(IS) instructions.
Definition: tlbi_op.hh:126
ArmISA::TLB::directToStage2
bool directToStage2
Definition: tlb.hh:163
ArmISA::TLBIIPA
TLB Invalidate by Intermediate Physical Address.
Definition: tlbi_op.hh:286
X86ISA::type
type
Definition: misc.hh:727
ArmISA::TableWalker
Definition: table_walker.hh:61
ArmISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode, ArmTranslationType tranType)
Definition: tlb.cc:1262
ArmISA::TLB::getTableWalkerPort
Port * getTableWalkerPort() override
Get the table walker port.
Definition: tlb.cc:1351
ArmISA::TLB::testTranslation
Fault testTranslation(const RequestPtr &req, Mode mode, TlbEntry::DomainType domain)
Definition: tlb.cc:1717
ArmISA::pa
Bitfield< 39, 12 > pa
Definition: miscregs_types.hh:650
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
ArmISA::TLB::getTE
Fault getTE(TlbEntry **te, const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool timing, bool functional, bool is_secure, ArmTranslationType tranType)
Definition: tlb.cc:1562
ArmISA::TLB::S1E3Tran
@ S1E3Tran
Definition: tlb.hh:141
ArmISA::TLB::getResultTe
Fault getResultTe(TlbEntry **te, const RequestPtr &req, ThreadContext *tc, Mode mode, Translation *translation, bool timing, bool functional, TlbEntry *mergeTe)
Definition: tlb.cc:1632
ArmISA::TLB::TLB
TLB(const Params &p)
Definition: tlb.cc:76
ArmISA::TLB::setMMU
void setMMU(Stage2MMU *m, RequestorID requestor_id)
Definition: tlb.cc:112
ArmISA::TLB::flush
void flush(const TLBIALL &tlbi_op)
Reset the entire TLB.
Definition: tlb.cc:278
ArmISA::TLB::TlbStats::instHits
Stats::Scalar instHits
Definition: tlb.hh:176
ArmISA::TLB::AlignOctWord
@ AlignOctWord
Definition: tlb.hh:120
ArmISA::TLB::TlbStats::alignFaults
Stats::Scalar alignFaults
Definition: tlb.hh:188
ArmISA::TLB::flushAll
void flushAll() override
Reset the entire TLB.
Definition: tlb.cc:255
ArmISA::TLB::m5opRange
AddrRange m5opRange
Definition: tlb.hh:437
ArmISA::TLB::S12E1Tran
@ S12E1Tran
Definition: tlb.hh:143
ArmISA::TLB::TlbStats::flushTlbMvaAsid
Stats::Scalar flushTlbMvaAsid
Definition: tlb.hh:185
ArmISA::TlbTestInterface::translationCheck
virtual Fault translationCheck(const RequestPtr &req, bool is_priv, BaseTLB::Mode mode, TlbEntry::DomainType domain)=0
Check if a TLB translation should be forced to fail.
ArmISA::TLB::translateFunctional
bool translateFunctional(ThreadContext *tc, Addr vaddr, Addr &paddr)
Do a functional lookup on the TLB (for debugging) and don't modify any internal state.
Definition: tlb.cc:119
ArmISA::TLB::translateComplete
Fault translateComplete(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, ArmTranslationType tranType, bool callFromS2)
Definition: tlb.cc:1321
ArmISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, ArmTranslationType tranType)
Definition: tlb.cc:1304
ArmISA::TLB::TlbStats::writeAccesses
Stats::Formula writeAccesses
Definition: tlb.hh:194
ArmISA::va
Bitfield< 8 > va
Definition: miscregs_types.hh:272
ArmISA::TLB::physAddrRange
uint8_t physAddrRange
Definition: tlb.hh:435
ArmISA::m
Bitfield< 0 > m
Definition: miscregs_types.hh:389
ArmISA::TLB::NormalTran
@ NormalTran
Definition: tlb.hh:128
ArmISA::TLB::AlignQuadWord
@ AlignQuadWord
Definition: tlb.hh:119
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
ArmISA::TLB::hcr
HCR hcr
Definition: tlb.hh:425
ArmISA::TLBIALLN
TLB Invalidate All, Non-Secure.
Definition: tlbi_op.hh:209
ArmISA::TLB::TlbStats::misses
Stats::Formula misses
Definition: tlb.hh:197
ArmISA::TLB::insert
void insert(Addr vaddr, TlbEntry &pte)
Definition: tlb.cc:211
SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:141

Generated on Tue Jun 22 2021 15:28:20 for gem5 by doxygen 1.8.17