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) 2007-2008 The Florida State University
5  * Copyright (c) 2009 The University of Edinburgh
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/power/tlb.hh"
33 
34 #include <string>
35 #include <vector>
36 
37 #include "arch/power/faults.hh"
38 #include "arch/power/pagetable.hh"
39 #include "arch/power/utility.hh"
40 #include "base/inifile.hh"
41 #include "base/str.hh"
42 #include "base/trace.hh"
43 #include "cpu/thread_context.hh"
44 #include "debug/Power.hh"
45 #include "debug/TLB.hh"
46 #include "mem/page_table.hh"
47 #include "params/PowerTLB.hh"
48 #include "sim/full_system.hh"
49 #include "sim/process.hh"
50 
51 using namespace PowerISA;
52 
54 //
55 // POWER TLB
56 //
57 
58 #define MODE2MASK(X) (1 << (X))
59 
60 TLB::TLB(const Params &p) : BaseTLB(p), size(p.size), nlu(0)
61 {
62  table = new PowerISA::PTE[size];
63  memset(table, 0, sizeof(PowerISA::PTE[size]));
64  smallPages = 0;
65 }
66 
68 {
69  if (table)
70  delete [] table;
71 }
72 
73 // look up an entry in the TLB
75 TLB::lookup(Addr vpn, uint8_t asn) const
76 {
77  // assume not found...
78  PowerISA::PTE *retval = NULL;
79  PageTable::const_iterator i = lookupTable.find(vpn);
80  if (i != lookupTable.end()) {
81  while (i->first == vpn) {
82  int index = i->second;
83  PowerISA::PTE *pte = &table[index];
84  Addr Mask = pte->Mask;
85  Addr InvMask = ~Mask;
86  Addr VPN = pte->VPN;
87  if (((vpn & InvMask) == (VPN & InvMask))
88  && (pte->G || (asn == pte->asid))) {
89 
90  // We have a VPN + ASID Match
91  retval = pte;
92  break;
93  }
94  ++i;
95  }
96  }
97 
98  DPRINTF(TLB, "lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (int)asn,
99  retval ? "hit" : "miss", retval ? retval->PFN1 : 0);
100  return retval;
101 }
102 
104 TLB::getEntry(unsigned Index) const
105 {
106  // Make sure that Index is valid
107  assert(Index<size);
108  return &table[Index];
109 }
110 
111 int
112 TLB::probeEntry(Addr vpn,uint8_t asn) const
113 {
114  // assume not found...
115  int Ind = -1;
116  PageTable::const_iterator i = lookupTable.find(vpn);
117  if (i != lookupTable.end()) {
118  while (i->first == vpn) {
119  int index = i->second;
120  PowerISA::PTE *pte = &table[index];
121  Addr Mask = pte->Mask;
122  Addr InvMask = ~Mask;
123  Addr VPN = pte->VPN;
124  if (((vpn & InvMask) == (VPN & InvMask))
125  && (pte->G || (asn == pte->asid))) {
126 
127  // We have a VPN + ASID Match
128  Ind = index;
129  break;
130  }
131  ++i;
132  }
133  }
134 
135  DPRINTF(Power, "VPN: %x, asid: %d, Result of TLBP: %d\n", vpn, asn, Ind);
136  return Ind;
137 }
138 
139 inline Fault
141 {
142  Addr VAddrUncacheable = 0xA0000000;
143  if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
144 
145  // mark request as uncacheable
147  }
148  return NoFault;
149 }
150 
151 void
152 TLB::insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
153 {
154  smallPages=_smallPages;
155  if (Index > size){
156  warn("Attempted to write at index (%d) beyond TLB size (%d)",
157  Index, size);
158  } else {
159 
160  // Update TLB
161  if (table[Index].V0 || table[Index].V1) {
162 
163  // Previous entry is valid
164  PageTable::iterator i = lookupTable.find(table[Index].VPN);
165  lookupTable.erase(i);
166  }
167  table[Index]=pte;
168 
169  // Update fast lookup table
170  lookupTable.insert(std::make_pair(table[Index].VPN, Index));
171  }
172 }
173 
174 // insert a new TLB entry
175 void
177 {
178  fatal("TLB Insert not yet implemented\n");
179 }
180 
181 void
183 {
184  DPRINTF(TLB, "flushAll\n");
185  memset(table, 0, sizeof(PowerISA::PTE[size]));
186  lookupTable.clear();
187  nlu = 0;
188 }
189 
190 void
192 {
195 
196  for (int i = 0; i < size; i++) {
197  ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
198  table[i].serialize(cp);
199  }
200 }
201 
202 void
204 {
207 
208  for (int i = 0; i < size; i++) {
209  ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
210  if (table[i].V0 || table[i].V1) {
211  lookupTable.insert(std::make_pair(table[i].VPN, i));
212  }
213  }
214 }
215 
216 Fault
218 {
219  // Instruction accesses must be word-aligned
220  if (req->getVaddr() & 0x3) {
221  DPRINTF(TLB, "Alignment Fault on %#x, size = %d\n", req->getVaddr(),
222  req->getSize());
223  return std::make_shared<AlignmentFault>();
224  }
225 
226  return tc->getProcessPtr()->pTable->translate(req);
227 }
228 
229 Fault
230 TLB::translateData(const RequestPtr &req, ThreadContext *tc, bool write)
231 {
232  return tc->getProcessPtr()->pTable->translate(req);
233 }
234 
235 Fault
237 {
239  "translateAtomic not yet implemented for full system.");
240 
241  if (mode == Execute)
242  return translateInst(req, tc);
243  else
244  return translateData(req, tc, mode == Write);
245 }
246 
247 Fault
249 {
251  "translateFunctional not implemented for full system.");
252  return tc->getProcessPtr()->pTable->translate(req);
253 }
254 
255 void
257  Translation *translation, Mode mode)
258 {
259  assert(translation);
260  translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
261 }
262 
263 Fault
265  ThreadContext *tc, Mode mode) const
266 {
267  return NoFault;
268 }
269 
271 TLB::index(bool advance)
272 {
273  PowerISA::PTE *pte = &table[nlu];
274 
275  if (advance)
276  nextnlu();
277 
278  return *pte;
279 }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
utility.hh
BaseTLB::Translation::finish
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
PowerISA::TLB::unserialize
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:203
warn
#define warn(...)
Definition: logging.hh:239
PowerISA::TLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:236
PowerISA::TLB::lookupTable
PageTable lookupTable
Definition: tlb.hh:97
PowerISA::TLB::translateFunctional
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:248
PowerISA::PTE::Mask
Addr Mask
Definition: pagetable.hh:46
UNSERIALIZE_SCALAR
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:591
ArmISA::i
Bitfield< 7 > i
Definition: miscregs_types.hh:63
PowerISA::TLB::nextnlu
void nextnlu()
Definition: tlb.hh:104
BaseTLB::Mode
Mode
Definition: tlb.hh:57
PowerISA::TLB::TLB
TLB(const Params &p)
Definition: tlb.cc:60
Loader::Power
@ Power
Definition: object_file.hh:54
PowerISA::TLB::size
int size
Definition: tlb.hh:100
Process::pTable
EmulationPageTable * pTable
Definition: process.hh:169
PowerISA::PTE
Definition: pagetable.hh:42
PowerISA::TLB::serialize
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:191
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
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
PowerISA::TLB::translateInst
Fault translateInst(const RequestPtr &req, ThreadContext *tc)
Definition: tlb.cc:217
BaseTLB
Definition: tlb.hh:50
pagetable.hh
PowerISA::TLB::checkCacheability
static Fault checkCacheability(const RequestPtr &req)
Definition: tlb.cc:140
PowerISA::TLB::insert
void insert(Addr vaddr, PowerISA::PTE &pte)
Definition: tlb.cc:176
PowerISA::TLB::nlu
int nlu
Definition: tlb.hh:101
PowerISA::TLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:256
PowerISA::PTE::asid
uint8_t asid
Definition: pagetable.hh:53
str.hh
faults.hh
cp
Definition: cprintf.cc:37
PowerISA::PTE::VPN
Addr VPN
Definition: pagetable.hh:50
PowerISA::TLB::translateData
Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write)
Definition: tlb.cc:230
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
PowerISA
Definition: decoder.cc:31
DPRINTF
#define DPRINTF(x,...)
Definition: trace.hh:237
PowerISA::TLB::smallPages
int smallPages
Definition: tlb.hh:123
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
PowerISA::TLB::finalizePhysical
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:264
process.hh
Request::STRICT_ORDER
@ STRICT_ORDER
The request is required to be strictly ordered by CPU models and is non-speculative.
Definition: request.hh:128
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
BaseTLB::Translation
Definition: tlb.hh:59
PowerISA::PTE::PFN1
Addr PFN1
Definition: pagetable.hh:65
PowerISA::TLB::table
PowerISA::PTE * table
Definition: tlb.hh:99
inifile.hh
PowerISA::TLB::probeEntry
int probeEntry(Addr vpn, uint8_t) const
Definition: tlb.cc:112
PowerISA::TLB::lookup
PowerISA::PTE * lookup(Addr vpn, uint8_t asn) const
Definition: tlb.cc:75
NoFault
constexpr decltype(nullptr) NoFault
Definition: types.hh:251
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
Serializable::ScopedCheckpointSection
Definition: serialize.hh:178
SERIALIZE_SCALAR
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:584
PowerISA::TLB::~TLB
virtual ~TLB()
Definition: tlb.cc:67
full_system.hh
PowerISA::TLB::index
PowerISA::PTE & index(bool advance=true)
Definition: tlb.cc:271
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
BaseTLB::Write
@ Write
Definition: tlb.hh:57
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
PowerISA::TLB
Definition: tlb.hh:93
Request::UNCACHEABLE
@ UNCACHEABLE
The request is to an uncacheable address.
Definition: request.hh:118
PowerISA::TLB::Params
PowerTLBParams Params
Definition: tlb.hh:114
tlb.hh
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
PowerISA::TLB::getEntry
PowerISA::PTE * getEntry(unsigned) const
Definition: tlb.cc:104
trace.hh
PowerISA::TLB::flushAll
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:182
MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:323
page_table.hh
CheckpointIn
Definition: serialize.hh:68
PowerISA::PTE::G
bool G
Definition: pagetable.hh:56
BaseTLB::Execute
@ Execute
Definition: tlb.hh:57
EmulationPageTable::translate
bool translate(Addr vaddr, Addr &paddr)
Translate function.
Definition: page_table.cc:140
PowerISA::PTE::serialize
void serialize(CheckpointOut &cp) const
Definition: pagetable.cc:40
csprintf
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
thread_context.hh
PowerISA::TLB::insertAt
void insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
Definition: tlb.cc:152

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