gem5  v20.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) 2007 The Hewlett-Packard Development Company
3  * All rights reserved.
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __ARCH_X86_TLB_HH__
39 #define __ARCH_X86_TLB_HH__
40 
41 #include <list>
42 #include <vector>
43 
44 #include "arch/generic/tlb.hh"
45 #include "arch/x86/pagetable.hh"
46 #include "base/trie.hh"
47 #include "mem/request.hh"
48 #include "params/X86TLB.hh"
49 #include "sim/stats.hh"
50 
51 class ThreadContext;
52 
53 namespace X86ISA
54 {
55  class Walker;
56 
57  class TLB : public BaseTLB
58  {
59  protected:
60  friend class Walker;
61 
63 
64  uint32_t configAddress;
65 
66  public:
67 
68  typedef X86TLBParams Params;
69  TLB(const Params *p);
70 
71  void takeOverFrom(BaseTLB *otlb) override {}
72 
73  TlbEntry *lookup(Addr va, bool update_lru = true);
74 
75  void setConfigAddress(uint32_t addr);
76 
77  protected:
78 
79  EntryList::iterator lookupIt(Addr va, bool update_lru = true);
80 
82 
83  public:
84  Walker *getWalker();
85 
86  void flushAll() override;
87 
88  void flushNonGlobal();
89 
90  void demapPage(Addr va, uint64_t asn) override;
91 
92  protected:
93  uint32_t size;
94 
96 
97  EntryList freeList;
98 
100  uint64_t lruSeq;
101 
103 
104  // Statistics
109 
110  Fault translateInt(bool read, RequestPtr req, ThreadContext *tc);
111 
112  Fault translate(const RequestPtr &req, ThreadContext *tc,
113  Translation *translation, Mode mode,
114  bool &delayedResponse, bool timing);
115 
116  public:
117 
118  void evictLRU();
119 
120  uint64_t
122  {
123  return ++lruSeq;
124  }
125 
127  const RequestPtr &req, ThreadContext *tc, Mode mode) override;
129  const RequestPtr &req, ThreadContext *tc, Mode mode) override;
130  void translateTiming(
131  const RequestPtr &req, ThreadContext *tc,
132  Translation *translation, Mode mode) override;
133 
148  Mode mode) const override;
149 
150  TlbEntry *insert(Addr vpn, const TlbEntry &entry);
151 
152  /*
153  * Function to register Stats
154  */
155  void regStats() override;
156 
157  // Checkpointing
158  void serialize(CheckpointOut &cp) const override;
159  void unserialize(CheckpointIn &cp) override;
160 
171  Port *getTableWalkerPort() override;
172  };
173 }
174 
175 #endif // __ARCH_X86_TLB_HH__
Ports are used to interface objects to each other.
Definition: port.hh:56
Stats::Scalar rdMisses
Definition: tlb.hh:107
void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: tlb.cc:560
void setConfigAddress(uint32_t addr)
Definition: tlb.cc:143
Port * getTableWalkerPort() override
Get the table walker port.
Definition: tlb.cc:582
std::vector< TlbEntry > tlb
Definition: tlb.hh:95
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
TLB(const Params *p)
Definition: tlb.cc:62
uint32_t configAddress
Definition: tlb.hh:64
Fault finalizePhysical(const RequestPtr &req, ThreadContext *tc, Mode mode) const override
Do post-translation physical address finalization.
Definition: tlb.cc:258
Definition: cprintf.cc:40
Bitfield< 4, 0 > mode
void flushNonGlobal()
Definition: tlb.cc:149
TlbEntryTrie trie
Definition: tlb.hh:99
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayedResponse, bool timing)
Definition: tlb.cc:307
ThreadContext is the external interface to all thread state for anything outside of the CPU...
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:2505
STL vector class.
Definition: stl.hh:37
Stats::Scalar rdAccesses
Definition: tlb.hh:105
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
Definition: tlb.hh:50
uint64_t nextSeq()
Definition: tlb.hh:121
void regStats() override
Callback to set stat parameters.
Definition: tlb.cc:522
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode) override
Definition: tlb.cc:502
void evictLRU()
Definition: tlb.cc:79
Stats::Scalar wrMisses
Definition: tlb.hh:108
Walker * getWalker()
Definition: tlb.cc:516
Stats::Scalar wrAccesses
Definition: tlb.hh:106
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
EntryList::iterator lookupIt(Addr va, bool update_lru=true)
Bitfield< 8 > va
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:461
void flushAll() override
Remove all entries from the TLB.
Definition: tlb.cc:130
Mode
Definition: tlb.hh:57
X86TLBParams Params
Definition: tlb.hh:68
TlbEntry * lookup(Addr va, bool update_lru=true)
Definition: tlb.cc:121
std::ostream CheckpointOut
Definition: serialize.hh:63
void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: tlb.cc:545
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
void demapPage(Addr va, uint64_t asn) override
Definition: tlb.cc:162
EntryList freeList
Definition: tlb.hh:97
Fault translateInt(bool read, RequestPtr req, ThreadContext *tc)
Definition: tlb.cc:195
void takeOverFrom(BaseTLB *otlb) override
Take over from an old tlb context.
Definition: tlb.hh:71
std::list< TlbEntry * > EntryList
Definition: tlb.hh:62
uint64_t lruSeq
Definition: tlb.hh:100
Bitfield< 0 > p
Definition: pagetable.hh:151
Fault translateFunctional(const RequestPtr &req, ThreadContext *tc, Mode mode) override
Definition: tlb.cc:468
Walker * walker
Definition: tlb.hh:81
AddrRange m5opRange
Definition: tlb.hh:102
std::shared_ptr< FaultBase > Fault
Definition: types.hh:238
Bitfield< 3 > addr
Definition: types.hh:79
TlbEntry * insert(Addr vpn, const TlbEntry &entry)
Definition: tlb.cc:97
uint32_t size
Definition: tlb.hh:93

Generated on Thu May 28 2020 16:11:01 for gem5 by doxygen 1.8.13