gem5  v20.0.0.3
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  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are
9  * met: redistributions of source code must retain the above copyright
10  * notice, this list of conditions and the following disclaimer;
11  * redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution;
14  * neither the name of the copyright holders nor the names of its
15  * contributors may be used to endorse or promote products derived from
16  * this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30 
31 #ifndef __ARCH_RISCV_TLB_HH__
32 #define __ARCH_RISCV_TLB_HH__
33 
34 #include <list>
35 
36 #include "arch/generic/tlb.hh"
37 #include "arch/riscv/isa.hh"
38 #include "arch/riscv/isa_traits.hh"
39 #include "arch/riscv/pagetable.hh"
40 #include "arch/riscv/utility.hh"
41 #include "base/statistics.hh"
42 #include "mem/request.hh"
43 #include "params/RiscvTLB.hh"
44 #include "sim/sim_object.hh"
45 
46 class ThreadContext;
47 
48 /* To maintain compatibility with other architectures, we'll
49  simply create an ITLB and DTLB that will point to the real TLB */
50 namespace RiscvISA {
51 
52 class Walker;
53 
54 class TLB : public BaseTLB
55 {
57 
58  protected:
59  size_t size;
61  TlbEntryTrie trie; // for quick access
62  EntryList freeList; // free entries
63  uint64_t lruSeq;
64 
66 
78 
79  public:
80  typedef RiscvTLBParams Params;
81  TLB(const Params *p);
82 
83  Walker *getWalker();
84 
85  void takeOverFrom(BaseTLB *otlb) override {}
86 
87  TlbEntry *insert(Addr vpn, const TlbEntry &entry);
88  void flushAll() override;
89  void demapPage(Addr vaddr, uint64_t asn) override;
90 
91  Fault checkPermissions(STATUS status, PrivilegeMode pmode, Addr vaddr,
92  Mode mode, PTESv39 pte);
93  Fault createPagefault(Addr vaddr, Mode mode);
94 
96 
97  // Checkpointing
98  void serialize(CheckpointOut &cp) const override;
99  void unserialize(CheckpointIn &cp) override;
100 
101  void regStats() override;
102 
103  Addr translateWithTLB(Addr vaddr, uint16_t asid, Mode mode);
104 
105  Fault translateAtomic(const RequestPtr &req,
106  ThreadContext *tc, Mode mode) override;
107  void translateTiming(const RequestPtr &req, ThreadContext *tc,
108  Translation *translation, Mode mode) override;
110  ThreadContext *tc, Mode mode) override;
111  Fault finalizePhysical(const RequestPtr &req,
112  ThreadContext *tc, Mode mode) const override;
113 
114  private:
115  uint64_t nextSeq() { return ++lruSeq; }
116 
117  TlbEntry *lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden);
118 
119  void evictLRU();
120  void remove(size_t idx);
121 
122  Fault translate(const RequestPtr &req, ThreadContext *tc,
123  Translation *translation, Mode mode, bool &delayed);
124  Fault doTranslate(const RequestPtr &req, ThreadContext *tc,
125  Translation *translation, Mode mode, bool &delayed);
126 };
127 
128 }
129 
130 #endif // __RISCV_MEMORY_HH__
Stats::Scalar write_accesses
Definition: tlb.hh:74
TlbEntryTrie trie
Definition: tlb.hh:61
std::list< TlbEntry * > EntryList
Definition: tlb.hh:56
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Definition: tlb.cc:328
Stats::Formula accesses
Definition: tlb.hh:77
Stats::Formula misses
Definition: tlb.hh:76
Stats::Scalar write_acv
Definition: tlb.hh:73
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
Addr translateWithTLB(Addr vaddr, uint16_t asid, Mode mode)
Definition: tlb.cc:263
size_t size
Definition: tlb.hh:59
Fault checkPermissions(STATUS status, PrivilegeMode pmode, Addr vaddr, Mode mode, PTESv39 pte)
Definition: tlb.cc:216
Definition: cprintf.cc:40
ThreadContext is the external interface to all thread state for anything outside of the CPU...
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:462
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
Bitfield< 0 > p
STL vector class.
Definition: stl.hh:37
Bitfield< 5, 0 > status
Stats::Formula hits
Definition: tlb.hh:75
Definition: tlb.hh:50
TlbEntry * insert(Addr vpn, const TlbEntry &entry)
Definition: tlb.cc:136
TlbEntry * lookup(Addr vpn, uint16_t asid, Mode mode, bool hidden)
Definition: tlb.cc:102
Bitfield< 59, 44 > asid
Definition: pagetable.hh:43
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:193
Fault doTranslate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayed)
Definition: tlb.cc:271
void regStats() override
Callback to set stat parameters.
Definition: tlb.cc:500
Stats::Scalar read_accesses
Definition: tlb.hh:70
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:408
uint64_t lruSeq
Definition: tlb.hh:63
PrivilegeMode getMemPriv(ThreadContext *tc, Mode mode)
Definition: tlb.cc:318
std::vector< TlbEntry > tlb
Definition: tlb.hh:60
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Definition: tlb.hh:85
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
PrivilegeMode
Definition: isa.hh:56
RiscvTLBParams Params
Definition: tlb.hh:80
void demapPage(Addr vaddr, uint64_t asn) override
Definition: tlb.cc:166
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
Mode
Definition: tlb.hh:57
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:395
Stats::Scalar read_misses
Definition: tlb.hh:68
Stats::Scalar read_hits
Definition: tlb.hh:67
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:477
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:388
Stats::Scalar read_acv
Definition: tlb.hh:69
std::ostream CheckpointOut
Definition: serialize.hh:63
uint64_t nextSeq()
Definition: tlb.hh:115
TLB(const Params *p)
Definition: tlb.cc:68
Stats::Scalar write_hits
Definition: tlb.hh:71
Walker * getWalker()
Definition: tlb.cc:81
Walker * walker
Definition: tlb.hh:65
void evictLRU()
Definition: tlb.cc:87
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
Stats::Scalar write_misses
Definition: tlb.hh:72
EntryList freeList
Definition: tlb.hh:62
Fault createPagefault(Addr vaddr, Mode mode)
Definition: tlb.cc:250
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:455

Generated on Fri Jul 3 2020 15:42:38 for gem5 by doxygen 1.8.13