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) 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 #ifndef __ARCH_POWER_TLB_HH__
33 #define __ARCH_POWER_TLB_HH__
34 
35 #include <map>
36 
37 #include "arch/generic/tlb.hh"
38 #include "arch/power/isa_traits.hh"
39 #include "arch/power/pagetable.hh"
40 #include "arch/power/utility.hh"
41 #include "base/statistics.hh"
42 #include "mem/request.hh"
43 #include "params/PowerTLB.hh"
44 
45 class ThreadContext;
46 
47 namespace PowerISA {
48 
49 // This is copied from the ARM ISA and has not been checked against the
50 // Power at all.
51 struct TlbEntry
52 {
54 
56  {
57  }
58 
59  TlbEntry(Addr asn, Addr vaddr, Addr paddr,
60  bool uncacheable, bool read_only)
61  : _pageStart(paddr)
62  {
63  if (uncacheable || read_only)
64  warn("Power TlbEntry does not support uncacheable"
65  " or read-only mappings\n");
66  }
67 
68  void
69  updateVaddr(Addr new_vaddr)
70  {
71  panic("unimplemented");
72  }
73 
74  Addr
76  {
77  return _pageStart;
78  }
79 
80  void
82  {
83  SERIALIZE_SCALAR(_pageStart);
84  }
85 
86  void
88  {
89  UNSERIALIZE_SCALAR(_pageStart);
90  }
91 };
92 
93 class TLB : public BaseTLB
94 {
95  protected:
96  typedef std::multimap<Addr, int> PageTable;
97  PageTable lookupTable; // Quick lookup into page table
98 
99  PowerISA::PTE *table; // the Page Table
100  int size; // TLB Size
101  int nlu; // not last used entry (for replacement)
102 
103  void
105  {
106  if (++nlu >= size) {
107  nlu = 0;
108  }
109  }
110 
111  PowerISA::PTE *lookup(Addr vpn, uint8_t asn) const;
112 
124 
125  public:
126  typedef PowerTLBParams Params;
127  TLB(const Params *p);
128  virtual ~TLB();
129 
130  void takeOverFrom(BaseTLB *otlb) override {}
131 
132  int probeEntry(Addr vpn,uint8_t) const;
133  PowerISA::PTE *getEntry(unsigned) const;
134 
136 
137  int
138  getsize() const
139  {
140  return size;
141  }
142 
143  PowerISA::PTE &index(bool advance = true);
144  void insert(Addr vaddr, PowerISA::PTE &pte);
145  void insertAt(PowerISA::PTE &pte, unsigned Index, int _smallPages);
146  void flushAll() override;
147 
148  void
149  demapPage(Addr vaddr, uint64_t asn) override
150  {
151  panic("demapPage unimplemented.\n");
152  }
153 
154  // static helper functions... really
155  static bool validVirtualAddress(Addr vaddr);
156  static Fault checkCacheability(const RequestPtr &req);
157  Fault translateInst(const RequestPtr &req, ThreadContext *tc);
158  Fault translateData(const RequestPtr &req, ThreadContext *tc, bool write);
159  Fault translateAtomic(
160  const RequestPtr &req, ThreadContext *tc, Mode mode) override;
161  void translateTiming(
162  const RequestPtr &req, ThreadContext *tc,
163  Translation *translation, Mode mode) override;
164  Fault translateFunctional(
165  const RequestPtr &req, ThreadContext *tc, Mode mode) override;
166  Fault finalizePhysical(
167  const RequestPtr &req,
168  ThreadContext *tc, Mode mode) const override;
169 
170  // Checkpointing
171  void serialize(CheckpointOut &cp) const override;
172  void unserialize(CheckpointIn &cp) override;
173 
174  void regStats() override;
175 };
176 
177 } // namespace PowerISA
178 
179 #endif // __ARCH_POWER_TLB_HH__
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:163
Stats::Scalar read_misses
Definition: tlb.hh:114
int getsize() const
Definition: tlb.hh:138
void unserialize(CheckpointIn &cp)
Definition: tlb.hh:87
Bitfield< 30, 0 > index
void updateVaddr(Addr new_vaddr)
Definition: tlb.hh:69
int smallPages
Definition: tlb.hh:135
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
std::multimap< Addr, int > PageTable
Definition: tlb.hh:96
Stats::Scalar write_accesses
Definition: tlb.hh:120
PowerTLBParams Params
Definition: tlb.hh:126
Stats::Scalar read_accesses
Definition: tlb.hh:116
Stats::Scalar write_acv
Definition: tlb.hh:119
Stats::Scalar read_hits
Definition: tlb.hh:113
Definition: cprintf.cc:40
Bitfield< 4, 0 > mode
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Definition: tlb.hh:130
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Declaration of Statistics objects.
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
void demapPage(Addr vaddr, uint64_t asn) override
Definition: tlb.hh:149
Stats::Formula hits
Definition: tlb.hh:121
Definition: tlb.hh:50
#define UNSERIALIZE_SCALAR(scalar)
Definition: serialize.hh:770
void serialize(CheckpointOut &cp) const
Definition: tlb.hh:81
void nextnlu()
Definition: tlb.hh:104
Stats::Scalar read_acv
Definition: tlb.hh:115
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
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
A formula for statistics that is calculated when printed.
Definition: statistics.hh:3009
TlbEntry(Addr asn, Addr vaddr, Addr paddr, bool uncacheable, bool read_only)
Definition: tlb.hh:59
Mode
Definition: tlb.hh:57
Addr _pageStart
Definition: tlb.hh:53
std::ostream CheckpointOut
Definition: serialize.hh:63
PageTable lookupTable
Definition: tlb.hh:97
Stats::Scalar write_misses
Definition: tlb.hh:118
int size
Definition: tlb.hh:100
Stats::Formula misses
Definition: tlb.hh:122
Addr pageStart()
Definition: tlb.hh:75
#define warn(...)
Definition: logging.hh:208
Bitfield< 0 > p
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238

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