gem5  v20.1.0.0
pagetable_walker.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_PAGE_TABLE_WALKER_HH__
39 #define __ARCH_X86_PAGE_TABLE_WALKER_HH__
40 
41 #include <vector>
42 
43 #include "arch/x86/pagetable.hh"
44 #include "arch/x86/tlb.hh"
45 #include "base/types.hh"
46 #include "mem/packet.hh"
47 #include "params/X86PagetableWalker.hh"
48 #include "sim/clocked_object.hh"
49 #include "sim/faults.hh"
50 #include "sim/system.hh"
51 
52 class ThreadContext;
53 
54 namespace X86ISA
55 {
56  class Walker : public ClockedObject
57  {
58  protected:
59  // Port for accessing memory
60  class WalkerPort : public RequestPort
61  {
62  public:
63  WalkerPort(const std::string &_name, Walker * _walker) :
64  RequestPort(_name, _walker), walker(_walker)
65  {}
66 
67  protected:
69 
70  bool recvTimingResp(PacketPtr pkt);
71  void recvReqRetry();
72  };
73 
74  friend class WalkerPort;
76 
77  // State to track each walk of the page table
79  {
80  friend class Walker;
81  private:
82  enum State {
85  // Long mode
87  // PAE legacy mode
89  // Non PAE legacy mode with and without PSE
91  };
92 
93  protected:
99  int dataSize;
100  bool enableNX;
101  unsigned inflight;
109  bool timing;
110  bool retrying;
111  bool started;
112  bool squashed;
113  public:
114  WalkerState(Walker * _walker, BaseTLB::Translation *_translation,
115  const RequestPtr &_req, bool _isFunctional = false) :
116  walker(_walker), req(_req), state(Ready),
117  nextState(Ready), inflight(0),
118  translation(_translation),
119  functional(_isFunctional), timing(false),
120  retrying(false), started(false), squashed(false)
121  {
122  }
123  void initState(ThreadContext * _tc, BaseTLB::Mode _mode,
124  bool _isTiming = false);
125  Fault startWalk();
126  Fault startFunctional(Addr &addr, unsigned &logBytes);
127  bool recvPacket(PacketPtr pkt);
128  unsigned numInflight() const;
129  bool isRetrying();
130  bool wasStarted();
131  bool isTiming();
132  void retry();
133  void squash();
134  std::string name() const {return walker->name();}
135 
136  private:
137  void setupWalk(Addr vaddr);
138  Fault stepWalk(PacketPtr &write);
139  void sendPackets();
140  void endWalk();
141  Fault pageFault(bool present);
142  };
143 
144  friend class WalkerState;
145  // State for timing and atomic accesses (need multiple per walker in
146  // the case of multiple outstanding requests in timing mode)
148  // State for functional accesses (only need one of these per walker)
150 
152  {
155  senderWalk(_senderWalk) {}
156  };
157 
158  public:
159  // Kick off the state machine.
160  Fault start(ThreadContext * _tc, BaseTLB::Translation *translation,
161  const RequestPtr &req, BaseTLB::Mode mode);
163  unsigned &logBytes, BaseTLB::Mode mode);
164  Port &getPort(const std::string &if_name,
165  PortID idx=InvalidPortID) override;
166 
167  protected:
168  // The TLB we're supposed to load.
169  TLB * tlb;
172 
173  // The number of outstanding walks that can be squashed per cycle.
174  unsigned numSquashable;
175 
176  // Wrapper for checking for squashes before starting a translation.
177  void startWalkWrapper();
178 
183 
184  // Functions for dealing with packets.
185  bool recvTimingResp(PacketPtr pkt);
186  void recvReqRetry();
187  bool sendTiming(WalkerState * sendingState, PacketPtr pkt);
188 
189  public:
190 
191  void setTLB(TLB * _tlb)
192  {
193  tlb = _tlb;
194  }
195 
196  typedef X86PagetableWalkerParams Params;
197 
198  const Params *
199  params() const
200  {
201  return static_cast<const Params *>(_params);
202  }
203 
204  Walker(const Params *params) :
205  ClockedObject(params), port(name() + ".port", this),
206  funcState(this, NULL, NULL, true), tlb(NULL), sys(params->system),
207  requestorId(sys->getRequestorId(this)),
208  numSquashable(params->num_squash_per_cycle),
210  {
211  }
212  };
213 }
214 #endif // __ARCH_X86_PAGE_TABLE_WALKER_HH__
pagetable.hh
X86ISA::Walker::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Definition: pagetable_walker.cc:107
X86ISA::Walker::Walker
Walker(const Params *params)
Definition: pagetable_walker.hh:204
X86ISA::Walker::WalkerState::pageFault
Fault pageFault(bool present)
Definition: pagetable_walker.cc:728
X86ISA::Walker::WalkerState::nextState
State nextState
Definition: pagetable_walker.hh:98
X86ISA::Walker::WalkerState::timing
bool timing
Definition: pagetable_walker.hh:109
system.hh
X86ISA::Walker::WalkerState::tc
ThreadContext * tc
Definition: pagetable_walker.hh:95
X86ISA::Walker::WalkerState::retrying
bool retrying
Definition: pagetable_walker.hh:110
X86ISA::Walker::WalkerState::setupWalk
void setupWalk(Addr vaddr)
Definition: pagetable_walker.cc:548
X86ISA::Walker::WalkerState::timingFault
Fault timingFault
Definition: pagetable_walker.hh:105
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:238
X86ISA::Walker::WalkerState::PAEPD
@ PAEPD
Definition: pagetable_walker.hh:88
X86ISA::Walker::WalkerPort::WalkerPort
WalkerPort(const std::string &_name, Walker *_walker)
Definition: pagetable_walker.hh:63
X86ISA::Walker::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: pagetable_walker.cc:169
X86ISA::Walker::WalkerState::recvPacket
bool recvPacket(PacketPtr pkt)
Definition: pagetable_walker.cc:598
X86ISA::TlbEntry
Definition: pagetable.hh:65
X86ISA::Walker::sendTiming
bool sendTiming(WalkerState *sendingState, PacketPtr pkt)
Definition: pagetable_walker.cc:152
X86ISA::present
Bitfield< 7 > present
Definition: misc.hh:992
BaseTLB::Mode
Mode
Definition: tlb.hh:57
X86ISA::Walker::WalkerState::writes
std::vector< PacketPtr > writes
Definition: pagetable_walker.hh:104
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:237
X86ISA::Walker::WalkerState::retry
void retry()
Definition: pagetable_walker.cc:721
X86ISA::Walker::WalkerSenderState::senderWalk
WalkerState * senderWalk
Definition: pagetable_walker.hh:153
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:82
X86ISA::TLB
Definition: tlb.hh:57
std::vector
STL vector class.
Definition: stl.hh:37
X86ISA::Walker::WalkerState
Definition: pagetable_walker.hh:78
X86ISA::Walker::params
const Params * params() const
Definition: pagetable_walker.hh:199
X86ISA::Walker::WalkerState::stepWalk
Fault stepWalk(PacketPtr &write)
Definition: pagetable_walker.cc:279
X86ISA::Walker::funcState
WalkerState funcState
Definition: pagetable_walker.hh:149
X86ISA::Walker::startWalkWrapperEvent
EventFunctionWrapper startWalkWrapperEvent
Event used to call startWalkWrapper.
Definition: pagetable_walker.hh:182
X86ISA::Walker::WalkerState::started
bool started
Definition: pagetable_walker.hh:111
faults.hh
X86ISA::Walker::recvReqRetry
void recvReqRetry()
Definition: pagetable_walker.cc:141
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
packet.hh
EventFunctionWrapper
Definition: eventq.hh:1101
X86ISA::system
Bitfield< 15 > system
Definition: misc.hh:997
RequestorID
uint16_t RequestorID
Definition: request.hh:85
X86ISA::Walker::WalkerState::Ready
@ Ready
Definition: pagetable_walker.hh:83
X86ISA::Walker::WalkerState::enableNX
bool enableNX
Definition: pagetable_walker.hh:100
X86ISA::Walker::startFunctional
Fault startFunctional(ThreadContext *_tc, Addr &addr, unsigned &logBytes, BaseTLB::Mode mode)
Definition: pagetable_walker.cc:93
X86ISA::Walker::WalkerState::PD
@ PD
Definition: pagetable_walker.hh:90
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
X86ISA::Walker::WalkerState::PSEPD
@ PSEPD
Definition: pagetable_walker.hh:90
X86ISA::Walker::WalkerState::name
std::string name() const
Definition: pagetable_walker.hh:134
Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:431
X86ISA::Walker::start
Fault start(ThreadContext *_tc, BaseTLB::Translation *translation, const RequestPtr &req, BaseTLB::Mode mode)
Definition: pagetable_walker.cc:68
System
Definition: system.hh:73
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:240
MipsISA::vaddr
vaddr
Definition: pra_constants.hh:275
X86ISA::Walker::WalkerState::LongPDP
@ LongPDP
Definition: pagetable_walker.hh:86
X86ISA::Walker::sys
System * sys
Definition: pagetable_walker.hh:170
X86ISA::Walker::WalkerState::isTiming
bool isTiming()
Definition: pagetable_walker.cc:703
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
X86ISA::Walker::WalkerState::initState
void initState(ThreadContext *_tc, BaseTLB::Mode _mode, bool _isTiming=false)
Definition: pagetable_walker.cc:178
X86ISA::Walker::requestorId
RequestorID requestorId
Definition: pagetable_walker.hh:171
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
X86ISA::Walker::WalkerState::squash
void squash()
Definition: pagetable_walker.cc:715
X86ISA::Walker::WalkerPort::walker
Walker * walker
Definition: pagetable_walker.hh:68
X86ISA::Walker
Definition: pagetable_walker.hh:56
X86ISA::Walker::WalkerState::PTE
@ PTE
Definition: pagetable_walker.hh:90
X86ISA::Walker::WalkerState::LongPML4
@ LongPML4
Definition: pagetable_walker.hh:86
X86ISA::Walker::WalkerState::numInflight
unsigned numInflight() const
Definition: pagetable_walker.cc:691
BaseTLB::Translation
Definition: tlb.hh:59
X86ISA::Walker::WalkerState::endWalk
void endWalk()
Definition: pagetable_walker.cc:540
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
X86ISA::Walker::WalkerState::State
State
Definition: pagetable_walker.hh:82
X86ISA::Walker::WalkerState::LongPD
@ LongPD
Definition: pagetable_walker.hh:86
X86ISA::Walker::WalkerState::translation
TLB::Translation * translation
Definition: pagetable_walker.hh:106
X86ISA::Walker::startWalkWrapper
void startWalkWrapper()
Definition: pagetable_walker.cc:189
X86ISA
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
X86ISA::Walker::WalkerState::state
State state
Definition: pagetable_walker.hh:97
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:142
X86ISA::Walker::WalkerState::mode
BaseTLB::Mode mode
Definition: pagetable_walker.hh:107
X86ISA::Walker::WalkerPort::recvReqRetry
void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: pagetable_walker.cc:135
X86ISA::Walker::WalkerState::startFunctional
Fault startFunctional(Addr &addr, unsigned &logBytes)
Definition: pagetable_walker.cc:255
X86ISA::Walker::currStates
std::list< WalkerState * > currStates
Definition: pagetable_walker.hh:147
X86ISA::Walker::WalkerState::req
RequestPtr req
Definition: pagetable_walker.hh:96
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:79
X86ISA::Walker::WalkerState::WalkerState
WalkerState(Walker *_walker, BaseTLB::Translation *_translation, const RequestPtr &_req, bool _isFunctional=false)
Definition: pagetable_walker.hh:114
SimObject::name
virtual const std::string name() const
Definition: sim_object.hh:133
X86ISA::Walker::setTLB
void setTLB(TLB *_tlb)
Definition: pagetable_walker.hh:191
X86ISA::Walker::port
WalkerPort port
Definition: pagetable_walker.hh:75
X86ISA::Walker::WalkerState::read
PacketPtr read
Definition: pagetable_walker.hh:103
types.hh
SimObject::_params
const SimObjectParams * _params
Cached copy of the object parameters.
Definition: sim_object.hh:110
X86ISA::Walker::WalkerPort::recvTimingResp
bool recvTimingResp(PacketPtr pkt)
Receive a timing response from the peer.
Definition: pagetable_walker.cc:101
X86ISA::Walker::WalkerState::LongPTE
@ LongPTE
Definition: pagetable_walker.hh:86
clocked_object.hh
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:257
X86ISA::Walker::WalkerState::sendPackets
void sendPackets()
Definition: pagetable_walker.cc:658
X86ISA::Walker::WalkerState::dataSize
int dataSize
Definition: pagetable_walker.hh:99
X86ISA::Walker::WalkerState::PAEPDP
@ PAEPDP
Definition: pagetable_walker.hh:88
X86ISA::Walker::WalkerState::wasStarted
bool wasStarted()
Definition: pagetable_walker.cc:709
X86ISA::Walker::WalkerSenderState
Definition: pagetable_walker.hh:151
X86ISA::Walker::WalkerState::Waiting
@ Waiting
Definition: pagetable_walker.hh:84
X86ISA::Walker::tlb
TLB * tlb
Definition: pagetable_walker.hh:169
X86ISA::Walker::WalkerState::squashed
bool squashed
Definition: pagetable_walker.hh:112
X86ISA::Walker::WalkerSenderState::WalkerSenderState
WalkerSenderState(WalkerState *_senderWalk)
Definition: pagetable_walker.hh:154
X86ISA::Walker::numSquashable
unsigned numSquashable
Definition: pagetable_walker.hh:174
tlb.hh
std::list
STL list class.
Definition: stl.hh:51
X86ISA::Walker::WalkerState::isRetrying
bool isRetrying()
Definition: pagetable_walker.cc:697
X86ISA::Walker::WalkerState::PAEPTE
@ PAEPTE
Definition: pagetable_walker.hh:88
X86ISA::Walker::WalkerState::startWalk
Fault startWalk()
Definition: pagetable_walker.cc:226
X86ISA::Walker::WalkerState::inflight
unsigned inflight
Definition: pagetable_walker.hh:101
X86ISA::Walker::WalkerState::entry
TlbEntry entry
Definition: pagetable_walker.hh:102
X86ISA::Walker::WalkerPort
Definition: pagetable_walker.hh:60
X86ISA::Walker::Params
X86PagetableWalkerParams Params
Definition: pagetable_walker.hh:196
X86ISA::Walker::WalkerState::walker
Walker * walker
Definition: pagetable_walker.hh:94
X86ISA::Walker::WalkerState::functional
bool functional
Definition: pagetable_walker.hh:108

Generated on Wed Sep 30 2020 14:02:07 for gem5 by doxygen 1.8.17