gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
gpu_tlb.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2011-2015 Advanced Micro Devices, Inc.
3  * All rights reserved.
4  *
5  * For use for simulation and test purposes only
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright notice,
11  * this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright notice,
14  * this list of conditions and the following disclaimer in the documentation
15  * and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the copyright holder nor the names of its
18  * contributors may be used to endorse or promote products derived from this
19  * software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
25  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31  * POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __GPU_TLB_HH__
35 #define __GPU_TLB_HH__
36 
37 #include <fstream>
38 #include <list>
39 #include <queue>
40 #include <string>
41 #include <vector>
42 
43 #include "arch/generic/tlb.hh"
44 #include "arch/x86/pagetable.hh"
46 #include "arch/x86/regs/segment.hh"
47 #include "base/callback.hh"
48 #include "base/logging.hh"
49 #include "base/statistics.hh"
50 #include "base/stats/group.hh"
52 #include "mem/port.hh"
53 #include "mem/request.hh"
54 #include "params/X86GPUTLB.hh"
55 #include "sim/clocked_object.hh"
56 #include "sim/sim_object.hh"
57 
58 class BaseTLB;
59 class Packet;
60 class ThreadContext;
61 
62 namespace X86ISA
63 {
64  class GpuTLB : public ClockedObject
65  {
66  protected:
67  friend class Walker;
68 
70 
71  uint32_t configAddress;
72 
73  public:
74  typedef X86GPUTLBParams Params;
75  GpuTLB(const Params &p);
76  ~GpuTLB();
77 
78  typedef enum BaseTLB::Mode Mode;
79 
81  {
82  public:
83  virtual ~Translation() { }
84 
89  virtual void markDelayed() = 0;
90 
96  virtual void finish(Fault fault, const RequestPtr &req,
97  ThreadContext *tc, Mode mode) = 0;
98  };
99 
100  void dumpAll();
101  TlbEntry *lookup(Addr va, bool update_lru=true);
102  void setConfigAddress(uint32_t addr);
103 
104  protected:
105  EntryList::iterator lookupIt(Addr va, bool update_lru=true);
107 
108  public:
109  Walker *getWalker();
110  void invalidateAll();
111  void invalidateNonGlobal();
112  void demapPage(Addr va, uint64_t asn);
113 
114  protected:
115  int size;
116  int assoc;
117  int numSets;
118 
122  bool FA;
124 
130 
135 
141 
143 
144  /*
145  * It's a per-set list. As long as we have not reached
146  * the full capacity of the given set, grab an entry from
147  * the freeList.
148  */
150 
159 
160  Fault translateInt(bool read, const RequestPtr &req,
161  ThreadContext *tc);
162 
163  Fault translate(const RequestPtr &req, ThreadContext *tc,
164  Translation *translation, Mode mode, bool &delayedResponse,
165  bool timing, int &latency);
166 
167  public:
168  // latencies for a TLB hit, miss and page fault
172 
173  void updatePageFootprint(Addr virt_page_addr);
174  void printAccessPattern();
175 
176 
178  Mode mode, int &latency);
179 
180  void translateTiming(const RequestPtr &req, ThreadContext *tc,
181  Translation *translation, Mode mode,
182  int &latency);
183 
186 
187  TlbEntry *insert(Addr vpn, TlbEntry &entry);
188 
189  // Checkpointing
190  virtual void serialize(CheckpointOut& cp) const override;
191  virtual void unserialize(CheckpointIn& cp) override;
192  void issueTranslation();
194  bool tlbLookup(const RequestPtr &req,
195  ThreadContext *tc, bool update_stats);
196 
198  PacketPtr pkt);
199 
201 
203  TlbEntry *tlb_entry, Mode mode);
204 
205  void updatePhysAddresses(Addr virt_page_addr, TlbEntry *tlb_entry,
206  Addr phys_page_addr);
207 
208  void issueTLBLookup(PacketPtr pkt);
209 
210  // CpuSidePort is the TLB Port closer to the CPU/CU side
211  class CpuSidePort : public ResponsePort
212  {
213  public:
214  CpuSidePort(const std::string &_name, GpuTLB * gpu_TLB,
215  PortID _index)
216  : ResponsePort(_name, gpu_TLB), tlb(gpu_TLB), index(_index) { }
217 
218  protected:
220  int index;
221 
222  virtual bool recvTimingReq(PacketPtr pkt);
223  virtual Tick recvAtomic(PacketPtr pkt) { return 0; }
224  virtual void recvFunctional(PacketPtr pkt);
225  virtual void recvRangeChange() { }
226  virtual void recvReqRetry();
227  virtual void recvRespRetry() { panic("recvRespRetry called"); }
228  virtual AddrRangeList getAddrRanges() const;
229  };
230 
238  class MemSidePort : public RequestPort
239  {
240  public:
241  MemSidePort(const std::string &_name, GpuTLB * gpu_TLB,
242  PortID _index)
243  : RequestPort(_name, gpu_TLB), tlb(gpu_TLB), index(_index) { }
244 
246 
247  protected:
249  int index;
250 
251  virtual bool recvTimingResp(PacketPtr pkt);
252  virtual Tick recvAtomic(PacketPtr pkt) { return 0; }
253  virtual void recvFunctional(PacketPtr pkt) { }
254  virtual void recvRangeChange() { }
255  virtual void recvReqRetry();
256  };
257 
258  // TLB ports on the cpu Side
260  // TLB ports on the memory side
262 
263  Port &getPort(const std::string &if_name,
264  PortID idx=InvalidPortID) override;
265 
283  {
284  // TLB mode, read or write
286  // Thread context associated with this req
288 
289  /*
290  * TLB entry to be populated and passed back and filled in
291  * previous TLBs. Equivalent to the data cache concept of
292  * "data return."
293  */
295  // Is this a TLB prefetch request?
296  bool prefetch;
297  // When was the req for this translation issued
298  uint64_t issueTime;
299  // Remember where this came from
301 
302  // keep track of #uncoalesced reqs per packet per TLB level;
303  // reqCnt per level >= reqCnt higher level
305  // TLB level this packet hit in; 0 if it hit in the page table
306  int hitLevel;
308 
310  bool _prefetch=false,
311  Packet::SenderState *_saved=nullptr)
312  : tlbMode(tlb_mode), tc(_tc), tlbEntry(nullptr),
313  prefetch(_prefetch), issueTime(0),
314  hitLevel(0),saved(_saved) { }
315  };
316 
317  // maximum number of permitted coalesced requests per cycle
319 
320  // Current number of outstandings coalesced requests.
321  // Should be <= maxCoalescedReqs
323 
331  void translationReturn(Addr virtPageAddr, tlbOutcome outcome,
332  PacketPtr pkt);
333 
334  class TLBEvent : public Event
335  {
336  private:
344 
345  public:
346  TLBEvent(GpuTLB *_tlb, Addr _addr, tlbOutcome outcome,
347  PacketPtr _pkt);
348 
349  void process();
350  const char *description() const;
351 
352  // updateOutcome updates the tlbOutcome of a TLBEvent
353  void updateOutcome(tlbOutcome _outcome);
355  };
356 
357  std::unordered_map<Addr, TLBEvent*> translationReturnEvent;
358 
359  // this FIFO queue keeps track of the virt. page addresses
360  // that are pending cleanup
361  std::queue<Addr> cleanupQueue;
362 
363  // the cleanupEvent is scheduled after a TLBEvent triggers in order to
364  // free memory and do the required clean-up
365  void cleanup();
366 
368 
374  struct AccessInfo
375  {
376  unsigned int lastTimeAccessed; // last access to this page
377  unsigned int accessesPerPage;
378  // need to divide it by accessesPerPage at the end
379  unsigned int totalReuseDistance;
380 
390  unsigned int sumDistance;
391  unsigned int meanDistance;
392  };
393 
394  typedef std::unordered_map<Addr, AccessInfo> AccessPatternTable;
396 
397  // Called at the end of simulation to dump page access stats.
398  void exitCallback();
399 
401 
402  protected:
403  struct GpuTLBStats : public Stats::Group
404  {
405  GpuTLBStats(Stats::Group *parent);
406 
407  // local_stats are as seen from the TLB
408  // without taking into account coalescing
413 
414  // global_stats are as seen from the
415  // CU's perspective taking into account
416  // all coalesced requests.
421 
422  // from the CU perspective (global)
424  // from the CU perspective (global)
427  // from the perspective of this TLB
429  // from the perspective of this TLB
431  // I take the avg. per page and then
432  // the avg. over all pages.
434  } stats;
435  };
436 }
437 
438 #endif // __GPU_TLB_HH__
X86ISA::GpuTLB::MemSidePort::recvTimingResp
virtual bool recvTimingResp(PacketPtr pkt)
MemSidePort receives the packet back.
Definition: gpu_tlb.cc:1256
pagetable.hh
X86ISA::GpuTLB::cpuSidePort
std::vector< CpuSidePort * > cpuSidePort
Definition: gpu_tlb.hh:259
X86ISA::GpuTLB::unserialize
virtual void unserialize(CheckpointIn &cp) override
Unserialize an object.
Definition: gpu_tlb.cc:658
X86ISA::GpuTLB::GpuTLBStats::localTLBMissRate
Stats::Formula localTLBMissRate
Definition: gpu_tlb.hh:412
X86ISA::GpuTLB::cleanupQueue
std::queue< Addr > cleanupQueue
Definition: gpu_tlb.hh:361
X86ISA::GpuTLB::AccessInfo::localTLBAccesses
std::vector< unsigned int > localTLBAccesses
The field below will help us compute the access distance, that is the number of (coalesced) TLB acces...
Definition: gpu_tlb.hh:389
ResponsePort
A ResponsePort is a specialization of a port.
Definition: port.hh:265
X86ISA::GpuTLB::MemSidePort::recvRangeChange
virtual void recvRangeChange()
Called to receive an address range change from the peer response port.
Definition: gpu_tlb.hh:254
X86ISA::GpuTLB::GpuTLBStats::avgReuseDistance
Stats::Scalar avgReuseDistance
Definition: gpu_tlb.hh:433
X86ISA::GpuTLB::translateTiming
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, int &latency)
Definition: gpu_tlb.cc:632
X86ISA::GpuTLB::updatePhysAddresses
void updatePhysAddresses(Addr virt_page_addr, TlbEntry *tlb_entry, Addr phys_page_addr)
X86ISA::GpuTLB::Translation::~Translation
virtual ~Translation()
Definition: gpu_tlb.hh:83
X86ISA::GpuTLB::TranslationState::hitLevel
int hitLevel
Definition: gpu_tlb.hh:306
X86ISA::GpuTLB::dumpAll
void dumpAll()
X86ISA::GpuTLB::tlbOutcome
tlbOutcome
Definition: gpu_tlb.hh:193
group.hh
InvalidPortID
const PortID InvalidPortID
Definition: types.hh:244
X86ISA::GpuTLB::issueTranslation
void issueTranslation()
X86ISA::GpuTLB::numSets
int numSets
Definition: gpu_tlb.hh:117
X86ISA::GpuTLB::MemSidePort
MemSidePort is the TLB Port closer to the memory side If this is a last level TLB then this port will...
Definition: gpu_tlb.hh:238
X86ISA::GpuTLB::GpuTLBStats::localLatency
Stats::Formula localLatency
Definition: gpu_tlb.hh:430
X86ISA::GpuTLB::demapPage
void demapPage(Addr va, uint64_t asn)
Definition: gpu_tlb.cc:266
X86ISA::TlbEntry
Definition: pagetable.hh:62
compute_unit.hh
tlb.hh
X86ISA::GpuTLB::AccessInfo
This hash map will use the virtual page address as a key and will keep track of total number of acces...
Definition: gpu_tlb.hh:374
BaseTLB::Mode
Mode
Definition: tlb.hh:57
Tick
uint64_t Tick
Tick count type.
Definition: types.hh:59
X86ISA::GpuTLB::getWalker
Walker * getWalker()
Definition: gpu_tlb.cc:646
PortID
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Definition: types.hh:243
X86ISA::GpuTLB::cleanupEvent
EventFunctionWrapper cleanupEvent
Definition: gpu_tlb.hh:367
pagetable_walker.hh
X86ISA::GpuTLB::CpuSidePort
Definition: gpu_tlb.hh:211
RequestPtr
std::shared_ptr< Request > RequestPtr
Definition: request.hh:86
X86ISA::GpuTLB::pagingProtectionChecks
void pagingProtectionChecks(ThreadContext *tc, PacketPtr pkt, TlbEntry *tlb_entry, Mode mode)
Do Paging protection checks.
Definition: gpu_tlb.cc:760
X86ISA::GpuTLB::TranslationState::prefetch
bool prefetch
Definition: gpu_tlb.hh:296
std::vector
STL vector class.
Definition: stl.hh:37
X86ISA::GpuTLB::assoc
int assoc
Definition: gpu_tlb.hh:116
X86ISA::GpuTLB::CpuSidePort::CpuSidePort
CpuSidePort(const std::string &_name, GpuTLB *gpu_TLB, PortID _index)
Definition: gpu_tlb.hh:214
X86ISA::GpuTLB::accessDistance
bool accessDistance
Print out accessDistance stats.
Definition: gpu_tlb.hh:140
X86ISA::GpuTLB::getPort
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Definition: gpu_tlb.cc:137
X86ISA::GpuTLB::Translation::markDelayed
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
X86ISA::GpuTLB::PAGE_WALK
@ PAGE_WALK
Definition: gpu_tlb.hh:193
X86ISA::GpuTLB::walker
Walker * walker
Definition: gpu_tlb.hh:106
X86ISA::GpuTLB::hitLatency
int hitLatency
Definition: gpu_tlb.hh:169
X86ISA::GpuTLB::TranslationState::saved
Packet::SenderState * saved
Definition: gpu_tlb.hh:307
X86ISA::GpuTLB::MemSidePort::index
int index
Definition: gpu_tlb.hh:249
X86ISA::GpuTLB::GpuTLBStats::pageTableCycles
Stats::Scalar pageTableCycles
Definition: gpu_tlb.hh:425
request.hh
BaseTLB
Definition: tlb.hh:50
X86ISA::GpuTLB::missLatency1
int missLatency1
Definition: gpu_tlb.hh:170
X86ISA::GpuTLB::AccessInfo::accessesPerPage
unsigned int accessesPerPage
Definition: gpu_tlb.hh:377
X86ISA::GpuTLB::setMask
Addr setMask
Definition: gpu_tlb.hh:123
ClockedObject
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
Definition: clocked_object.hh:231
X86ISA::GpuTLB::insert
TlbEntry * insert(Addr vpn, TlbEntry &entry)
Definition: gpu_tlb.cc:159
X86ISA::GpuTLB::maxCoalescedReqs
int maxCoalescedReqs
Definition: gpu_tlb.hh:318
X86ISA::GpuTLB::GpuTLB
GpuTLB(const Params &p)
Definition: gpu_tlb.cc:66
X86ISA::GpuTLB::GpuTLBStats::localCycles
Stats::Scalar localCycles
Definition: gpu_tlb.hh:428
X86ISA::GpuTLB::GpuTLBStats::numUniquePages
Stats::Scalar numUniquePages
Definition: gpu_tlb.hh:426
X86ISA::GpuTLB::exitEvent
EventFunctionWrapper exitEvent
Definition: gpu_tlb.hh:400
X86ISA::GpuTLB::stats
X86ISA::GpuTLB::GpuTLBStats stats
EventFunctionWrapper
Definition: eventq.hh:1112
X86ISA::GpuTLB::MemSidePort::retries
std::deque< PacketPtr > retries
Definition: gpu_tlb.hh:245
X86ISA::GpuTLB::CpuSidePort::getAddrRanges
virtual AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
Definition: gpu_tlb.cc:1242
X86ISA::GpuTLB::TranslationState::issueTime
uint64_t issueTime
Definition: gpu_tlb.hh:298
Stats::Scalar
This is a simple scalar statistic, like a counter.
Definition: statistics.hh:1933
X86ISA::GpuTLB::TLBEvent::description
const char * description() const
Return a C string describing the event.
Definition: gpu_tlb.cc:1002
X86ISA::GpuTLB::translationReturnEvent
std::unordered_map< Addr, TLBEvent * > translationReturnEvent
Definition: gpu_tlb.hh:357
X86ISA::GpuTLB::TranslationState::tlbEntry
TlbEntry * tlbEntry
Definition: gpu_tlb.hh:294
X86ISA::GpuTLB::translate
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayedResponse, bool timing, int &latency)
Definition: gpu_tlb.cc:419
X86ISA::GpuTLB::handleTranslationReturn
void handleTranslationReturn(Addr addr, tlbOutcome outcome, PacketPtr pkt)
handleTranslationReturn is called on a TLB hit, when a TLB miss returns or when a page fault returns.
Definition: gpu_tlb.cc:795
X86ISA::GpuTLB::missLatency2
int missLatency2
Definition: gpu_tlb.hh:171
X86ISA::GpuTLB::GpuTLBStats::localNumTLBAccesses
Stats::Scalar localNumTLBAccesses
Definition: gpu_tlb.hh:409
cp
Definition: cprintf.cc:37
X86ISA::GpuTLB::TLBEvent::outcome
tlbOutcome outcome
outcome can be TLB_HIT, TLB_MISS, or PAGE_WALK
Definition: gpu_tlb.hh:342
X86ISA::GpuTLB::memSidePort
std::vector< MemSidePort * > memSidePort
Definition: gpu_tlb.hh:261
ThreadContext
ThreadContext is the external interface to all thread state for anything outside of the CPU.
Definition: thread_context.hh:88
X86ISA::GpuTLB::CpuSidePort::recvReqRetry
virtual void recvReqRetry()
Definition: gpu_tlb.cc:1234
Packet::SenderState
A virtual base opaque structure used to hold state associated with the packet (e.g....
Definition: packet.hh:432
X86ISA::GpuTLB::MemSidePort::recvReqRetry
virtual void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
Definition: gpu_tlb.cc:1275
X86ISA::GpuTLB::translateInt
Fault translateInt(bool read, const RequestPtr &req, ThreadContext *tc)
Definition: gpu_tlb.cc:301
Event
Definition: eventq.hh:248
X86ISA::GpuTLB::MemSidePort::recvFunctional
virtual void recvFunctional(PacketPtr pkt)
Definition: gpu_tlb.hh:253
X86ISA::GpuTLB::TLBEvent::process
void process()
Definition: gpu_tlb.cc:996
sim_object.hh
X86ISA::GpuTLB::TranslationState::reqCnt
std::vector< int > reqCnt
Definition: gpu_tlb.hh:304
X86ISA::GpuTLB::FA
bool FA
true if this is a fully-associative TLB
Definition: gpu_tlb.hh:122
Fault
std::shared_ptr< FaultBase > Fault
Definition: types.hh:246
statistics.hh
X86ISA::GpuTLB::allocationPolicy
bool allocationPolicy
Allocation Policy: true if we always allocate on a hit, false otherwise.
Definition: gpu_tlb.hh:129
X86ISA::GpuTLB::cleanup
void cleanup()
Definition: gpu_tlb.cc:1283
segment.hh
X86ISA::GpuTLB
Definition: gpu_tlb.hh:64
Port
Ports are used to interface objects to each other.
Definition: port.hh:56
X86ISA::GpuTLB::EntryList
std::list< TlbEntry * > EntryList
Definition: gpu_tlb.hh:69
X86ISA::GpuTLB::AccessPatternTable
std::unordered_map< Addr, AccessInfo > AccessPatternTable
Definition: gpu_tlb.hh:394
ArmISA::mode
Bitfield< 4, 0 > mode
Definition: miscregs_types.hh:70
X86ISA::GpuTLB::GpuTLBStats
Definition: gpu_tlb.hh:403
X86ISA::GpuTLB::invalidateAll
void invalidateAll()
Definition: gpu_tlb.cc:228
X86ISA::Walker
Definition: pagetable_walker.hh:56
port.hh
X86ISA::GpuTLB::AccessInfo::totalReuseDistance
unsigned int totalReuseDistance
Definition: gpu_tlb.hh:379
X86ISA::GpuTLB::lookupIt
EntryList::iterator lookupIt(Addr va, bool update_lru=true)
Definition: gpu_tlb.cc:185
X86ISA::GpuTLB::AccessInfo::lastTimeAccessed
unsigned int lastTimeAccessed
Definition: gpu_tlb.hh:376
X86ISA::GpuTLB::translateAtomic
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode, int &latency)
Definition: gpu_tlb.cc:622
X86ISA::GpuTLB::MemSidePort::recvAtomic
virtual Tick recvAtomic(PacketPtr pkt)
Definition: gpu_tlb.hh:252
X86ISA::GpuTLB::MISS_RETURN
@ MISS_RETURN
Definition: gpu_tlb.hh:193
X86ISA::GpuTLB::CpuSidePort::recvTimingReq
virtual bool recvTimingReq(PacketPtr pkt)
recvTiming receives a coalesced timing request from a TLBCoalescer and it calls issueTLBLookup() It o...
Definition: gpu_tlb.cc:1026
X86ISA::GpuTLB::TLBEvent::pkt
PacketPtr pkt
Definition: gpu_tlb.hh:343
RequestPort
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
Definition: port.hh:74
X86ISA::GpuTLB::entryList
std::vector< EntryList > entryList
An entryList per set is the equivalent of an LRU stack; it's used to guide replacement decisions.
Definition: gpu_tlb.hh:158
X86ISA::GpuTLB::~GpuTLB
~GpuTLB()
Definition: gpu_tlb.cc:130
X86ISA::GpuTLB::CpuSidePort::recvAtomic
virtual Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
Definition: gpu_tlb.hh:223
X86ISA::GpuTLB::setConfigAddress
void setConfigAddress(uint32_t addr)
Definition: gpu_tlb.cc:242
X86ISA
This is exposed globally, independent of the ISA.
Definition: acpi.hh:55
X86ISA::GpuTLB::TLB_HIT
@ TLB_HIT
Definition: gpu_tlb.hh:193
Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:148
X86ISA::GpuTLB::tlbLookup
bool tlbLookup(const RequestPtr &req, ThreadContext *tc, bool update_stats)
TLB_lookup will only perform a TLB lookup returning true on a TLB hit and false on a TLB miss.
Definition: gpu_tlb.cc:370
X86ISA::GpuTLB::exitCallback
void exitCallback()
Definition: gpu_tlb.cc:1342
X86ISA::GpuTLB::TLBEvent::virtPageAddr
Addr virtPageAddr
Definition: gpu_tlb.hh:338
X86ISA::GpuTLB::GpuTLBStats::accessCycles
Stats::Scalar accessCycles
Definition: gpu_tlb.hh:423
X86ISA::GpuTLB::CpuSidePort::recvRespRetry
virtual void recvRespRetry()
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
Definition: gpu_tlb.hh:227
X86ISA::GpuTLB::AccessInfo::meanDistance
unsigned int meanDistance
Definition: gpu_tlb.hh:391
X86ISA::GpuTLB::TLBFootprint
AccessPatternTable TLBFootprint
Definition: gpu_tlb.hh:395
X86ISA::GpuTLB::GpuTLBStats::globalNumTLBMisses
Stats::Scalar globalNumTLBMisses
Definition: gpu_tlb.hh:419
X86ISA::GpuTLB::GpuTLBStats::localNumTLBMisses
Stats::Scalar localNumTLBMisses
Definition: gpu_tlb.hh:411
X86ISA::GpuTLB::GpuTLBStats::GpuTLBStats
GpuTLBStats(Stats::Group *parent)
Definition: gpu_tlb.cc:1434
X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:80
X86ISA::GpuTLB::doMmuRegRead
Tick doMmuRegRead(ThreadContext *tc, Packet *pkt)
X86ISA::GpuTLB::TLBEvent::getTLBEventVaddr
Addr getTLBEventVaddr()
Definition: gpu_tlb.cc:1014
X86ISA::GpuTLB::TLBEvent
Definition: gpu_tlb.hh:334
X86ISA::p
Bitfield< 0 > p
Definition: pagetable.hh:148
X86ISA::GpuTLB::TLB_MISS
@ TLB_MISS
Definition: gpu_tlb.hh:193
X86ISA::GpuTLB::size
int size
Definition: gpu_tlb.hh:115
X86ISA::GpuTLB::hasMemSidePort
bool hasMemSidePort
if true, then this is not the last level TLB
Definition: gpu_tlb.hh:134
clocked_object.hh
Stats::Formula
A formula for statistics that is calculated when printed.
Definition: statistics.hh:2538
Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:258
X86ISA::GpuTLB::handleFuncTranslationReturn
void handleFuncTranslationReturn(PacketPtr pkt, tlbOutcome outcome)
handleFuncTranslationReturn is called on a TLB hit, when a TLB miss returns or when a page fault retu...
Definition: gpu_tlb.cc:1049
std::deque
STL deque class.
Definition: stl.hh:44
Stats::Group
Statistics container.
Definition: group.hh:87
X86ISA::GpuTLB::printAccessPattern
void printAccessPattern()
X86ISA::GpuTLB::CpuSidePort::tlb
GpuTLB * tlb
Definition: gpu_tlb.hh:219
X86ISA::GpuTLB::MemSidePort::MemSidePort
MemSidePort(const std::string &_name, GpuTLB *gpu_TLB, PortID _index)
Definition: gpu_tlb.hh:241
X86ISA::GpuTLB::Translation::finish
virtual void finish(Fault fault, const RequestPtr &req, ThreadContext *tc, Mode mode)=0
The memory for this object may be dynamically allocated, and it may be responsible for cleaning itsle...
logging.hh
X86ISA::GpuTLB::freeList
std::vector< EntryList > freeList
Definition: gpu_tlb.hh:149
X86ISA::GpuTLB::issueTLBLookup
void issueTLBLookup(PacketPtr pkt)
Do the TLB lookup for this coalesced request and schedule another event <TLB access latency> cycles l...
Definition: gpu_tlb.cc:668
X86ISA::GpuTLB::TLBEvent::TLBEvent
TLBEvent(GpuTLB *_tlb, Addr _addr, tlbOutcome outcome, PacketPtr _pkt)
Definition: gpu_tlb.cc:748
X86ISA::GpuTLB::TranslationState::ports
std::vector< ResponsePort * > ports
Definition: gpu_tlb.hh:300
CheckpointOut
std::ostream CheckpointOut
Definition: serialize.hh:64
X86ISA::GpuTLB::updatePageFootprint
void updatePageFootprint(Addr virt_page_addr)
Definition: gpu_tlb.cc:1307
X86ISA::GpuTLB::CpuSidePort::recvFunctional
virtual void recvFunctional(PacketPtr pkt)
Receive a functional request packet from the peer.
Definition: gpu_tlb.cc:1121
X86ISA::GpuTLB::doMmuRegWrite
Tick doMmuRegWrite(ThreadContext *tc, Packet *pkt)
std::list< TlbEntry * >
X86ISA::GpuTLB::Translation
Definition: gpu_tlb.hh:80
X86ISA::GpuTLB::GpuTLBStats::globalNumTLBHits
Stats::Scalar globalNumTLBHits
Definition: gpu_tlb.hh:418
CheckpointIn
Definition: serialize.hh:68
X86ISA::GpuTLB::configAddress
uint32_t configAddress
Definition: gpu_tlb.hh:71
X86ISA::GpuTLB::outstandingReqs
int outstandingReqs
Definition: gpu_tlb.hh:322
X86ISA::GpuTLB::GpuTLBStats::globalNumTLBAccesses
Stats::Scalar globalNumTLBAccesses
Definition: gpu_tlb.hh:417
X86ISA::GpuTLB::serialize
virtual void serialize(CheckpointOut &cp) const override
Serialize an object.
Definition: gpu_tlb.cc:653
X86ISA::GpuTLB::CpuSidePort::index
int index
Definition: gpu_tlb.hh:220
X86ISA::GpuTLB::TLBEvent::updateOutcome
void updateOutcome(tlbOutcome _outcome)
Definition: gpu_tlb.cc:1008
X86ISA::GpuTLB::translationReturn
void translationReturn(Addr virtPageAddr, tlbOutcome outcome, PacketPtr pkt)
A TLBEvent is scheduled after the TLB lookup and helps us take the appropriate actions: (e....
Definition: gpu_tlb.cc:882
X86ISA::GpuTLB::Mode
enum BaseTLB::Mode Mode
Definition: gpu_tlb.hh:78
X86ISA::GpuTLB::lookup
TlbEntry * lookup(Addr va, bool update_lru=true)
Definition: gpu_tlb.cc:215
X86ISA::GpuTLB::TranslationState::TranslationState
TranslationState(Mode tlb_mode, ThreadContext *_tc, bool _prefetch=false, Packet::SenderState *_saved=nullptr)
Definition: gpu_tlb.hh:309
X86ISA::GpuTLB::TranslationState::tlbMode
Mode tlbMode
Definition: gpu_tlb.hh:285
X86ISA::GpuTLB::Params
X86GPUTLBParams Params
Definition: gpu_tlb.hh:74
callback.hh
X86ISA::GpuTLB::GpuTLBStats::localNumTLBHits
Stats::Scalar localNumTLBHits
Definition: gpu_tlb.hh:410
ArmISA::va
Bitfield< 8 > va
Definition: miscregs_types.hh:272
X86ISA::GpuTLB::AccessInfo::sumDistance
unsigned int sumDistance
Definition: gpu_tlb.hh:390
X86ISA::GpuTLB::CpuSidePort::recvRangeChange
virtual void recvRangeChange()
Definition: gpu_tlb.hh:225
X86ISA::GpuTLB::tlb
std::vector< TlbEntry > tlb
Definition: gpu_tlb.hh:142
X86ISA::GpuTLB::TranslationState::tc
ThreadContext * tc
Definition: gpu_tlb.hh:287
X86ISA::GpuTLB::invalidateNonGlobal
void invalidateNonGlobal()
Definition: gpu_tlb.cc:248
X86ISA::GpuTLB::MemSidePort::tlb
GpuTLB * tlb
Definition: gpu_tlb.hh:248
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171
X86ISA::GpuTLB::GpuTLBStats::globalTLBMissRate
Stats::Formula globalTLBMissRate
Definition: gpu_tlb.hh:420
X86ISA::GpuTLB::TranslationState
TLB TranslationState: this currently is a somewhat bastardization of the usage of SenderState,...
Definition: gpu_tlb.hh:282
X86ISA::GpuTLB::TLBEvent::tlb
GpuTLB * tlb
Definition: gpu_tlb.hh:337

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