gem5  v21.0.0.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) 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 #ifndef __ARCH_RISCV_TLB_HH__
33 #define __ARCH_RISCV_TLB_HH__
34 
35 #include <list>
36 
37 #include "arch/generic/tlb.hh"
38 #include "arch/riscv/isa.hh"
39 #include "arch/riscv/isa_traits.hh"
40 #include "arch/riscv/pagetable.hh"
42 #include "arch/riscv/utility.hh"
43 #include "base/statistics.hh"
44 #include "mem/request.hh"
45 #include "params/RiscvTLB.hh"
46 #include "sim/sim_object.hh"
47 
48 class ThreadContext;
49 
50 /* To maintain compatibility with other architectures, we'll
51  simply create an ITLB and DTLB that will point to the real TLB */
52 namespace RiscvISA {
53 
54 class Walker;
55 
56 class TLB : public BaseTLB
57  {
59 
60  protected:
61  size_t size;
63  TlbEntryTrie trie; // for quick access
64  EntryList freeList; // free entries
65  uint64_t lruSeq;
66 
68 
69  struct TlbStats : public Stats::Group{
70  TlbStats(Stats::Group *parent);
71 
80 
84  } stats;
85 
86  public:
88 
89  public:
90  typedef RiscvTLBParams Params;
91  TLB(const Params &p);
92 
93  Walker *getWalker();
94 
95  void takeOverFrom(BaseTLB *old) override {}
96 
97  TlbEntry *insert(Addr vpn, const TlbEntry &entry);
98  void flushAll() override;
99  void demapPage(Addr vaddr, uint64_t asn) override;
100 
102  Mode mode, PTESv39 pte);
104 
106 
107  // Checkpointing
108  void serialize(CheckpointOut &cp) const override;
109  void unserialize(CheckpointIn &cp) override;
110 
121  Port *getTableWalkerPort() override;
122 
124 
125  Fault translateAtomic(const RequestPtr &req,
126  ThreadContext *tc, Mode mode) override;
127  void translateTiming(const RequestPtr &req, ThreadContext *tc,
128  Translation *translation, Mode mode) override;
130  ThreadContext *tc, Mode mode) override;
131  Fault finalizePhysical(const RequestPtr &req,
132  ThreadContext *tc, Mode mode) const override;
133 
134  private:
135  uint64_t nextSeq() { return ++lruSeq; }
136 
137  TlbEntry *lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden);
138 
139  void evictLRU();
140  void remove(size_t idx);
141 
142  Fault translate(const RequestPtr &req, ThreadContext *tc,
143  Translation *translation, Mode mode, bool &delayed);
144  Fault doTranslate(const RequestPtr &req, ThreadContext *tc,
145  Translation *translation, Mode mode, bool &delayed);
146 };
147 
148 }
149 
150 #endif // __RISCV_MEMORY_HH__
RiscvISA::TlbEntry
Definition: pagetable.hh:79
RiscvISA::TLB::getMemPriv
PrivilegeMode getMemPriv(ThreadContext *tc, Mode mode)
Definition: tlb.cc:321
ArmISA::status
Bitfield< 5, 0 > status
Definition: miscregs_types.hh:417
RiscvISA::TLB::TlbStats
Definition: tlb.hh:69
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
RiscvISA::TLB::TlbStats::writeAccesses
Stats::Scalar writeAccesses
Definition: tlb.hh:79
RiscvISA::TLB::TlbStats::writeHits
Stats::Scalar writeHits
Definition: tlb.hh:76
RiscvISA::TLB::insert
TlbEntry * insert(Addr vpn, const TlbEntry &entry)
Definition: tlb.cc:139
RiscvISA::TLB::TlbStats::write_acv
Stats::Scalar write_acv
Definition: tlb.hh:78
RiscvISA::TLB::TlbStats::readAccesses
Stats::Scalar readAccesses
Definition: tlb.hh:75
tlb.hh
RiscvISA::TLB::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:469
BaseTLB::Mode
Mode
Definition: tlb.hh:57
pma_checker.hh
RiscvISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
RiscvISA::TLB::lruSeq
uint64_t lruSeq
Definition: tlb.hh:65
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
std::vector
STL vector class.
Definition: stl.hh:37
RiscvISA::TLB::Params
RiscvTLBParams Params
Definition: tlb.hh:90
RiscvISA::TLB::translateFunctional
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:415
RiscvISA::TLB
Definition: tlb.hh:56
RiscvISA::TLB::translateWithTLB
Addr translateWithTLB(Addr vaddr, uint16_t asid, Mode mode)
Definition: tlb.cc:266
Trie< Addr, TlbEntry >
PMAChecker
Based on the RISC-V ISA privileged specifications V1.11, there is no implementation guidelines on the...
Definition: pma_checker.hh:57
isa.hh
request.hh
RiscvISA::TLB::evictLRU
void evictLRU()
Definition: tlb.cc:90
BaseTLB
Definition: tlb.hh:50
RiscvISA
Definition: fs_workload.cc:36
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
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
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
sim_object.hh
RiscvISA::TLB::pma
PMAChecker * pma
Definition: tlb.hh:87
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
statistics.hh
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
RiscvISA::Walker
Definition: pagetable_walker.hh:58
RiscvISA::PrivilegeMode
PrivilegeMode
Definition: isa.hh:56
RiscvISA::TLB::TlbStats::writeMisses
Stats::Scalar writeMisses
Definition: tlb.hh:77
RiscvISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:402
RiscvISA::TLB::TlbStats::misses
Stats::Formula misses
Definition: tlb.hh:82
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
RiscvISA::TLB::EntryList
std::list< TlbEntry * > EntryList
Definition: tlb.hh:58
RiscvISA::TLB::TlbStats::read_acv
Stats::Scalar read_acv
Definition: tlb.hh:74
RiscvISA::TLB::TlbStats::TlbStats
TlbStats(Stats::Group *parent)
Definition: tlb.cc:506
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
RiscvISA::TLB::doTranslate
Fault doTranslate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Definition: tlb.cc:274
RiscvISA::TLB::TlbStats::hits
Stats::Formula hits
Definition: tlb.hh:81
RiscvISA::TLB::TlbStats::accesses
Stats::Formula accesses
Definition: tlb.hh:83
RiscvISA::TLB::walker
Walker * walker
Definition: tlb.hh:67
RiscvISA::TLB::takeOverFrom
void takeOverFrom(BaseTLB *old) override
Take over from an old tlb context.
Definition: tlb.hh:95
RiscvISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:395
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Stats::Group
Statistics container.
Definition: group.hh:87
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
utility.hh
RiscvISA::TLB::stats
RiscvISA::TLB::TlbStats stats
RiscvISA::TLB::getTableWalkerPort
Port * getTableWalkerPort() override
Get the table walker port.
Definition: tlb.cc:524
std::list< TlbEntry * >
RiscvISA::TLB::nextSeq
uint64_t nextSeq()
Definition: tlb.hh:135
RiscvISA::TLB::TlbStats::readHits
Stats::Scalar readHits
Definition: tlb.hh:72
CheckpointIn
Definition: serialize.hh:68
pagetable.hh
RiscvISA::TLB::getWalker
Walker * getWalker()
Definition: tlb.cc:84
RiscvISA::TLB::tlb
std::vector< TlbEntry > tlb
Definition: tlb.hh:62
RiscvISA::TLB::size
size_t size
Definition: tlb.hh:61
isa_traits.hh

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