Go to the documentation of this file.
34 #ifndef __GPU_TLB_HH__
35 #define __GPU_TLB_HH__
54 #include "params/X86GPUTLB.hh"
168 bool timing,
int &latency);
209 Addr phys_page_addr);
313 bool is_prefetch=
false,
443 #endif // __GPU_TLB_HH__
This is a simple scalar statistic, like a counter.
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
statistics::Scalar numUniquePages
void printAccessPattern()
void updatePhysAddresses(Addr virt_page_addr, TlbEntry *tlb_entry, Addr phys_page_addr)
GpuTLBStats(statistics::Group *parent)
statistics::Scalar accessCycles
CpuSidePort(const std::string &_name, GpuTLB *gpu_TLB, PortID _index)
virtual void recvFunctional(PacketPtr pkt)
Receive a functional request packet from the peer.
void translationReturn(Addr virtPageAddr, tlbOutcome outcome, PacketPtr pkt)
A TLBEvent is scheduled after the TLB lookup and helps us take the appropriate actions: (e....
gem5::X86ISA::GpuTLB::GpuTLBStats stats
std::vector< MemSidePort * > memSidePort
statistics::Scalar avgReuseDistance
std::vector< unsigned int > localTLBAccesses
The field below will help us compute the access distance, that is the number of (coalesced) TLB acces...
statistics::Scalar localNumTLBAccesses
unsigned int totalReuseDistance
Packet::SenderState * saved
tlbOutcome outcome
outcome can be TLB_HIT, TLB_MISS, or PAGE_WALK
statistics::Formula localTLBMissRate
std::list< TlbEntry * > EntryList
TlbEntry * lookup(Addr va, bool update_lru=true)
statistics::Formula globalTLBMissRate
bool FA
true if this is a fully-associative TLB
virtual void recvRespRetry()
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
const PortID InvalidPortID
TlbEntry * insert(Addr vpn, TlbEntry &entry)
statistics::Scalar globalNumTLBAccesses
EntryList::iterator lookupIt(Addr va, bool update_lru=true)
unsigned int lastTimeAccessed
bool allocationPolicy
Allocation Policy: true if we always allocate on a hit, false otherwise.
void setConfigAddress(uint32_t addr)
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...
bool hasMemSidePort
if true, then this is not the last level TLB
A RequestPort is a specialisation of a Port, which implements the default protocol for the three diff...
statistics::Formula localLatency
std::queue< Addr > cleanupQueue
virtual AddrRangeList getAddrRanges() const
Get a list of the non-overlapping address ranges the owner is responsible for.
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode, int &latency)
virtual void serialize(CheckpointOut &cp) const override
Serialize an object.
TLB TranslationState: this currently is a somewhat bastardization of the usage of SenderState,...
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayedResponse, bool timing, int &latency)
std::vector< ResponsePort * > ports
bool accessDistance
Print out accessDistance stats.
virtual void unserialize(CheckpointIn &cp) override
Unserialize an object.
void handleFuncTranslationReturn(PacketPtr pkt, tlbOutcome outcome)
handleFuncTranslationReturn is called on a TLB hit, when a TLB miss returns or when a page fault retu...
ThreadContext is the external interface to all thread state for anything outside of the CPU.
void issueTLBLookup(PacketPtr pkt)
Do the TLB lookup for this coalesced request and schedule another event <TLB access latency> cycles l...
std::shared_ptr< FaultBase > Fault
virtual Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
EventFunctionWrapper exitEvent
ProbePointArg< PacketInfo > Packet
Packet probe point.
Tick doMmuRegRead(ThreadContext *tc, Packet *pkt)
uint64_t Tick
Tick count type.
void updatePageFootprint(Addr virt_page_addr)
Fault translateInt(bool read, const RequestPtr &req, ThreadContext *tc)
std::shared_ptr< Request > RequestPtr
MemSidePort(const std::string &_name, GpuTLB *gpu_TLB, PortID _index)
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.
MemSidePort is the TLB Port closer to the memory side If this is a last level TLB then this port will...
unsigned int accessesPerPage
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
statistics::Scalar globalNumTLBMisses
std::unordered_map< Addr, TLBEvent * > translationReturnEvent
statistics::Scalar pageTableCycles
A virtual base opaque structure used to hold state associated with the packet (e.g....
virtual void recvReqRetry()
std::vector< EntryList > freeList
TranslationState(Mode tlb_mode, ThreadContext *_tc, bool is_prefetch=false, Packet::SenderState *_saved=nullptr)
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
statistics::Scalar localNumTLBHits
std::vector< CpuSidePort * > cpuSidePort
void invalidateNonGlobal()
virtual void recvRangeChange()
statistics::Scalar localCycles
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
AccessPatternTable TLBFootprint
std::vector< EntryList > entryList
An entryList per set is the equivalent of an LRU stack; it's used to guide replacement decisions.
virtual bool recvTimingResp(PacketPtr pkt)
MemSidePort receives the packet back.
std::deque< PacketPtr > retries
A ResponsePort is a specialization of a port.
const char * description() const
Return a C string describing the event.
TLBEvent(GpuTLB *_tlb, Addr _addr, tlbOutcome outcome, PacketPtr _pkt)
void updateOutcome(tlbOutcome _outcome)
Ports are used to interface objects to each other.
virtual void recvRangeChange()
Called to receive an address range change from the peer response port.
virtual Tick recvAtomic(PacketPtr pkt)
void pagingProtectionChecks(ThreadContext *tc, PacketPtr pkt, TlbEntry *tlb_entry, Mode mode)
Do Paging protection checks.
virtual void recvFunctional(PacketPtr pkt)
unsigned int meanDistance
std::unordered_map< Addr, AccessInfo > AccessPatternTable
std::ostream CheckpointOut
This hash map will use the virtual page address as a key and will keep track of total number of acces...
std::vector< TlbEntry > tlb
statistics::Scalar globalNumTLBHits
virtual bool recvTimingReq(PacketPtr pkt)
recvTiming receives a coalesced timing request from a TLBCoalescer and it calls issueTLBLookup() It o...
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, int &latency)
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.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Tick doMmuRegWrite(ThreadContext *tc, Packet *pkt)
virtual void recvReqRetry()
Called by the peer if sendTimingReq was called on this peer (causing recvTimingReq to be called on th...
std::vector< int > reqCnt
void demapPage(Addr va, uint64_t asn)
statistics::Scalar localNumTLBMisses
#define panic(...)
This implements a cprintf based panic() function.
EventFunctionWrapper cleanupEvent
Generated on Tue Sep 7 2021 14:53:47 for gem5 by doxygen 1.8.17