gem5  v20.0.0.3
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 std;
52 using namespace PowerISA;
53 
55 //
56 // POWER TLB
57 //
58 
59 #define MODE2MASK(X) (1 << (X))
60 
61 TLB::TLB(const Params *p)
62  : BaseTLB(p), size(p->size), nlu(0)
63 {
64  table = new PowerISA::PTE[size];
65  memset(table, 0, sizeof(PowerISA::PTE[size]));
66  smallPages = 0;
67 }
68 
70 {
71  if (table)
72  delete [] table;
73 }
74 
75 // look up an entry in the TLB
77 TLB::lookup(Addr vpn, uint8_t asn) const
78 {
79  // assume not found...
80  PowerISA::PTE *retval = NULL;
81  PageTable::const_iterator i = lookupTable.find(vpn);
82  if (i != lookupTable.end()) {
83  while (i->first == vpn) {
84  int index = i->second;
85  PowerISA::PTE *pte = &table[index];
86  Addr Mask = pte->Mask;
87  Addr InvMask = ~Mask;
88  Addr VPN = pte->VPN;
89  if (((vpn & InvMask) == (VPN & InvMask))
90  && (pte->G || (asn == pte->asid))) {
91 
92  // We have a VPN + ASID Match
93  retval = pte;
94  break;
95  }
96  ++i;
97  }
98  }
99 
100  DPRINTF(TLB, "lookup %#x, asn %#x -> %s ppn %#x\n", vpn, (int)asn,
101  retval ? "hit" : "miss", retval ? retval->PFN1 : 0);
102  return retval;
103 }
104 
106 TLB::getEntry(unsigned Index) const
107 {
108  // Make sure that Index is valid
109  assert(Index<size);
110  return &table[Index];
111 }
112 
113 int
114 TLB::probeEntry(Addr vpn,uint8_t asn) const
115 {
116  // assume not found...
117  int Ind = -1;
118  PageTable::const_iterator i = lookupTable.find(vpn);
119  if (i != lookupTable.end()) {
120  while (i->first == vpn) {
121  int index = i->second;
122  PowerISA::PTE *pte = &table[index];
123  Addr Mask = pte->Mask;
124  Addr InvMask = ~Mask;
125  Addr VPN = pte->VPN;
126  if (((vpn & InvMask) == (VPN & InvMask))
127  && (pte->G || (asn == pte->asid))) {
128 
129  // We have a VPN + ASID Match
130  Ind = index;
131  break;
132  }
133  ++i;
134  }
135  }
136 
137  DPRINTF(Power, "VPN: %x, asid: %d, Result of TLBP: %d\n", vpn, asn, Ind);
138  return Ind;
139 }
140 
141 inline Fault
143 {
144  Addr VAddrUncacheable = 0xA0000000;
145  if ((req->getVaddr() & VAddrUncacheable) == VAddrUncacheable) {
146 
147  // mark request as uncacheable
149  }
150  return NoFault;
151 }
152 
153 void
154 TLB::insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
155 {
156  smallPages=_smallPages;
157  if (Index > size){
158  warn("Attempted to write at index (%d) beyond TLB size (%d)",
159  Index, size);
160  } else {
161 
162  // Update TLB
163  if (table[Index].V0 || table[Index].V1) {
164 
165  // Previous entry is valid
166  PageTable::iterator i = lookupTable.find(table[Index].VPN);
167  lookupTable.erase(i);
168  }
169  table[Index]=pte;
170 
171  // Update fast lookup table
172  lookupTable.insert(make_pair(table[Index].VPN, Index));
173  }
174 }
175 
176 // insert a new TLB entry
177 void
179 {
180  fatal("TLB Insert not yet implemented\n");
181 }
182 
183 void
185 {
186  DPRINTF(TLB, "flushAll\n");
187  memset(table, 0, sizeof(PowerISA::PTE[size]));
188  lookupTable.clear();
189  nlu = 0;
190 }
191 
192 void
194 {
197 
198  for (int i = 0; i < size; i++) {
199  ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
200  table[i].serialize(cp);
201  }
202 }
203 
204 void
206 {
209 
210  for (int i = 0; i < size; i++) {
211  ScopedCheckpointSection sec(cp, csprintf("PTE%d", i));
212  if (table[i].V0 || table[i].V1) {
213  lookupTable.insert(make_pair(table[i].VPN, i));
214  }
215  }
216 }
217 
218 void
220 {
222 
223  read_hits
224  .name(name() + ".read_hits")
225  .desc("DTB read hits")
226  ;
227 
229  .name(name() + ".read_misses")
230  .desc("DTB read misses")
231  ;
232 
233 
235  .name(name() + ".read_accesses")
236  .desc("DTB read accesses")
237  ;
238 
239  write_hits
240  .name(name() + ".write_hits")
241  .desc("DTB write hits")
242  ;
243 
245  .name(name() + ".write_misses")
246  .desc("DTB write misses")
247  ;
248 
249 
251  .name(name() + ".write_accesses")
252  .desc("DTB write accesses")
253  ;
254 
255  hits
256  .name(name() + ".hits")
257  .desc("DTB hits")
258  ;
259 
260  misses
261  .name(name() + ".misses")
262  .desc("DTB misses")
263  ;
264 
265  accesses
266  .name(name() + ".accesses")
267  .desc("DTB accesses")
268  ;
269 
273 }
274 
275 Fault
277 {
278  // Instruction accesses must be word-aligned
279  if (req->getVaddr() & 0x3) {
280  DPRINTF(TLB, "Alignment Fault on %#x, size = %d\n", req->getVaddr(),
281  req->getSize());
282  return std::make_shared<AlignmentFault>();
283  }
284 
285  return tc->getProcessPtr()->pTable->translate(req);
286 }
287 
288 Fault
289 TLB::translateData(const RequestPtr &req, ThreadContext *tc, bool write)
290 {
291  return tc->getProcessPtr()->pTable->translate(req);
292 }
293 
294 Fault
296 {
298  "translateAtomic not yet implemented for full system.");
299 
300  if (mode == Execute)
301  return translateInst(req, tc);
302  else
303  return translateData(req, tc, mode == Write);
304 }
305 
306 Fault
308 {
310  "translateFunctional not implemented for full system.");
311  return tc->getProcessPtr()->pTable->translate(req);
312 }
313 
314 void
316  Translation *translation, Mode mode)
317 {
318  assert(translation);
319  translation->finish(translateAtomic(req, tc, mode), req, tc, mode);
320 }
321 
322 Fault
324  ThreadContext *tc, Mode mode) const
325 {
326  return NoFault;
327 }
328 
330 TLB::index(bool advance)
331 {
332  PowerISA::PTE *pte = &table[nlu];
333 
334  if (advance)
335  nextnlu();
336 
337  return *pte;
338 }
339 
341 PowerTLBParams::create()
342 {
343  return new PowerISA::TLB(this);
344 }
void serialize(CheckpointOut &cp) const
Definition: pagetable.cc:40
#define DPRINTF(x,...)
Definition: trace.hh:225
Stats::Scalar read_misses
Definition: tlb.hh:114
decltype(nullptr) constexpr NoFault
Definition: types.hh:243
static Fault checkCacheability(const RequestPtr &req)
Definition: tlb.cc:142
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:171
PowerISA::PTE * lookup(Addr vpn, uint8_t asn) const
Definition: tlb.cc:77
Bitfield< 7 > i
void insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages)
Definition: tlb.cc:154
int smallPages
Definition: tlb.hh:135
std::shared_ptr< Request > RequestPtr
Definition: request.hh:81
Stats::Scalar write_accesses
Definition: tlb.hh:120
PowerISA::PTE & index(bool advance=true)
Definition: tlb.cc:330
ip6_addr_t addr
Definition: inet.hh:330
bool FullSystem
The FullSystem variable can be used to determine the current mode of simulation.
Definition: root.cc:132
virtual Process * getProcessPtr()=0
PowerTLBParams Params
Definition: tlb.hh:126
Overload hash function for BasicBlockRange type.
Definition: vec_reg.hh:587
Stats::Scalar read_accesses
Definition: tlb.hh:116
Stats::Scalar read_hits
Definition: tlb.hh:113
void insert(Addr vaddr, PowerISA::PTE &pte)
Definition: tlb.cc:178
Definition: cprintf.cc:40
Bitfield< 4, 0 > mode
ThreadContext is the external interface to all thread state for anything outside of the CPU...
The request is to an uncacheable address.
Definition: request.hh:113
Stats::Formula hits
Definition: tlb.hh:121
Definition: tlb.hh:50
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
std::string csprintf(const char *format, const Args &...args)
Definition: cprintf.hh:158
uint8_t asid
Definition: pagetable.hh:116
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:307
bool translate(Addr vaddr, Addr &paddr)
Translate function.
Definition: page_table.cc:140
void nextnlu()
Definition: tlb.hh:104
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:295
void regStats() override
Callback to set stat parameters.
Definition: tlb.cc:219
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:193
virtual void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:323
int nlu
Definition: tlb.hh:101
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Declaration of IniFile object.
Fault translateInst(const RequestPtr &req, ThreadContext *tc)
Definition: tlb.cc:276
PowerISA::PTE * table
Definition: tlb.hh:99
Stats::Scalar write_hits
Definition: tlb.hh:117
Stats::Formula accesses
Definition: tlb.hh:123
#define SERIALIZE_SCALAR(scalar)
Definition: serialize.hh:763
Mode
Definition: tlb.hh:57
Derived & name(const std::string &name)
Set the name and marks this stat to print at the end of simulation.
Definition: statistics.hh:276
virtual const std::string name() const
Definition: sim_object.hh:129
EmulationPageTable * pTable
Definition: process.hh:174
Declarations of a non-full system Page Table.
std::ostream CheckpointOut
Definition: serialize.hh:63
PageTable lookupTable
Definition: tlb.hh:97
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:315
Stats::Scalar write_misses
Definition: tlb.hh:118
The request is required to be strictly ordered by CPU models and is non-speculative.
Definition: request.hh:123
int size
Definition: tlb.hh:100
Stats::Formula misses
Definition: tlb.hh:122
Derived & desc(const std::string &_desc)
Set the description and marks this stat to print at the end of simulation.
Definition: statistics.hh:309
#define warn(...)
Definition: logging.hh:208
virtual void regStats()
Callback to set stat parameters.
Definition: group.cc:64
int probeEntry(Addr vpn, uint8_t) const
Definition: tlb.cc:114
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:205
Scoped checkpoint section helper class.
Definition: serialize.hh:186
virtual ~TLB()
Definition: tlb.cc:69
Bitfield< 0 > p
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:181
Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write)
Definition: tlb.cc:289
PowerISA::PTE * getEntry(unsigned) const
Definition: tlb.cc:106
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:184

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