34 #ifndef __GPU_TLB_HH__ 35 #define __GPU_TLB_HH__ 53 #include "params/X86GPUTLB.hh" 86 return (
Tick)clock * numCycles;
123 EntryList::iterator
lookupIt(
Addr va,
bool update_lru=
true);
183 bool timing,
int &latency);
225 Mode
mode,
int &latency);
253 Addr phys_page_addr);
269 virtual bool recvTimingReq(
PacketPtr pkt);
271 virtual void recvFunctional(
PacketPtr pkt);
273 virtual void recvReqRetry();
298 virtual bool recvTimingResp(
PacketPtr pkt);
302 virtual void recvReqRetry();
357 bool _prefetch=
false,
359 : tlbMode(tlb_mode), tc(_tc), tlbEntry(nullptr),
360 prefetch(_prefetch), issueTime(0),
361 hitLevel(0),saved(_saved) { }
397 const char *description()
const;
401 Addr getTLBEventVaddr();
451 #endif // __GPU_TLB_HH__ A MasterPort is a specialisation of a BaseMasterPort, which implements the default protocol for the t...
#define panic(...)
This implements a cprintf based panic() function.
AccessPatternTable TLBFootprint
unsigned int accessesPerPage
Stats::Formula globalTLBMissRate
Ports are used to interface objects to each other.
bool allocationPolicy
Allocation Policy: true if we always allocate on a hit, false otherwise.
Stats::Scalar localCycles
const PortID InvalidPortID
virtual void serialize(CheckpointOut &cp) const override
Serialize an object.
TLB TranslationState: this currently is a somewhat bastardization of the usage of SenderState...
Stats::Scalar avgReuseDistance
void translationReturn(Addr virtPageAddr, tlbOutcome outcome, PacketPtr pkt)
A TLBEvent is scheduled after the TLB lookup and helps us take the appropriate actions: (e...
virtual void recvRespRetry()
Called by the peer if sendTimingResp was called on this protocol (causing recvTimingResp to be called...
CpuSidePort(const std::string &_name, GpuTLB *gpu_TLB, PortID _index)
void handleFuncTranslationReturn(PacketPtr pkt, tlbOutcome outcome)
handleFuncTranslationReturn is called on a TLB hit, when a TLB miss returns or when a page fault retu...
Stats::Scalar accessCycles
Stats::Formula localTLBMissRate
void pagingProtectionChecks(ThreadContext *tc, PacketPtr pkt, TlbEntry *tlb_entry, Mode mode)
Do Paging protection checks.
Declaration of a request, the overall memory request consisting of the parts of the request that are ...
std::shared_ptr< Request > RequestPtr
unsigned int meanDistance
EntryList::iterator lookupIt(Addr va, bool update_lru=true)
std::vector< TlbEntry > tlb
Fault translateAtomic(const RequestPtr &req, ThreadContext *tc, Mode mode, int &latency)
MemSidePort is the TLB Port closer to the memory side If this is a last level TLB then this port will...
bool hasMemSidePort
if true, then this is not the last level TLB
unsigned int totalReuseDistance
Fault translate(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, bool &delayedResponse, bool timing, int &latency)
Port & getPort(const std::string &if_name, PortID idx=InvalidPortID) override
Get a port with a given name and index.
Tick doMmuRegRead(ThreadContext *tc, Packet *pkt)
unsigned int lastTimeAccessed
A SlavePort is a specialisation of a port.
Stats::Scalar localNumTLBMisses
Tick Frequency
The simulated frequency of curTick(). (In ticks per second)
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.
TlbEntry * insert(Addr vpn, TlbEntry &entry)
Stats::Scalar numUniquePages
Stats::Scalar globalNumTLBMisses
Tick tickToCycles(Tick val) const
std::queue< Addr > cleanupQueue
std::vector< MemSidePort * > memSidePort
bool accessDistance
Print out accessDistance stats.
Tick curTick()
The current simulated tick.
virtual void markDelayed()=0
Signal that the translation has been delayed due to a hw page table walk.
void translateTiming(const RequestPtr &req, ThreadContext *tc, Translation *translation, Mode mode, int &latency)
std::deque< PacketPtr > retries
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...
EventFunctionWrapper exitEvent
Stats::Formula localLatency
std::list< TlbEntry * > EntryList
virtual Tick recvAtomic(PacketPtr pkt)
std::vector< EntryList > entryList
An entryList per set is the equivalent of an LRU stack; it's used to guide replacement decisions...
void invalidateNonGlobal()
uint64_t Tick
Tick count type.
void setConfigAddress(uint32_t addr)
The ClockedObject class extends the SimObject with a clock and accessor functions to relate ticks to ...
MemSidePort(const std::string &_name, GpuTLB *gpu_TLB, PortID _index)
EventFunctionWrapper cleanupEvent
This hash map will use the virtual page address as a key and will keep track of total number of acces...
ClockedObject declaration and implementation.
void demapPage(Addr va, uint64_t asn)
virtual void recvRangeChange()
Called to receive an address range change from the peer slave port.
std::unordered_map< Addr, TLBEvent * > translationReturnEvent
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...
virtual void recvFunctional(PacketPtr pkt)
std::vector< CpuSidePort * > cpuSidePort
TlbEntry * lookup(Addr va, bool update_lru=true)
Stats::Scalar globalNumTLBAccesses
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Packet::SenderState * saved
std::vector< EntryList > freeList
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
A virtual base opaque structure used to hold state associated with the packet (e.g., an MSHR), specific to a SimObject that sees the packet.
std::unordered_map< Addr, AccessInfo > AccessPatternTable
void regStats() override
Callback to set stat parameters.
Fault translateInt(bool read, const RequestPtr &req, ThreadContext *tc)
virtual void unserialize(CheckpointIn &cp) override
Unserialize an object.
virtual Tick recvAtomic(PacketPtr pkt)
Receive an atomic request packet from the peer.
std::vector< unsigned int > localTLBAccesses
The field below will help us compute the access distance, that is the number of (coalesced) TLB acces...
std::ostream CheckpointOut
This is exposed globally, independent of the ISA.
std::vector< SlavePort * > ports
Stats::Scalar pageTableCycles
Tick ticks(int numCycles) const
Stats::Scalar localNumTLBHits
TranslationState(Mode tlb_mode, ThreadContext *_tc, bool _prefetch=false, Packet::SenderState *_saved=nullptr)
void updatePhysAddresses(Addr virt_page_addr, TlbEntry *tlb_entry, Addr phys_page_addr)
int16_t PortID
Port index/ID type, and a symbolic name for an invalid port id.
Tick doMmuRegWrite(ThreadContext *tc, Packet *pkt)
virtual void recvRangeChange()
bool FA
true if this is a fully-associative TLB
Stats::Scalar localNumTLBAccesses
Stats::Scalar globalNumTLBHits
std::shared_ptr< FaultBase > Fault
tlbOutcome outcome
outcome can be TLB_HIT, TLB_MISS, or PAGE_WALK
std::vector< int > reqCnt
void issueTLBLookup(PacketPtr pkt)
Do the TLB lookup for this coalesced request and schedule another event <TLB access="" latency>=""> c...
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...
void updatePageFootprint(Addr virt_page_addr)
void printAccessPattern()