38 #ifndef __MEM_CACHE_PREFETCH_QUEUED_HH__ 39 #define __MEM_CACHE_PREFETCH_QUEUED_HH__ 50 struct QueuedPrefetcherParams;
82 int32_t prio) : owner(o), pfInfo(pfi), tick(t), pkt(nullptr),
83 priority(prio), translationRequest(), tc(nullptr),
84 ongoingTranslation(false) {
97 return !(*
this > that);
110 bool tag_prefetch,
Tick t);
119 translationRequest = req;
180 Queued(
const QueuedPrefetcherParams *
p);
193 return pfq.empty() ?
MaxTick : pfq.front().tick;
252 #endif //__MEM_CACHE_PREFETCH_QUEUED_HH__ void insert(const PacketPtr &pkt, PrefetchInfo &new_pfi, int32_t priority)
Cycles is a wrapper class for representing cycle counts, i.e.
void markDelayed() override
Signal that the translation has been delayed due to a hw page table walk.
std::list< DeferredPacket > pfqMissingTranslation
bool operator<(const DeferredPacket &that) const
void translationComplete(DeferredPacket *dp, bool failed)
Indicates that the translation of the address of the provided deferred packet has been successfully c...
const bool tagPrefetch
Tag prefetch with PC of generating access?
std::shared_ptr< Request > RequestPtr
void processMissingTranslations(unsigned max)
Starts the translations of the queued prefetches with a missing translation.
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseTLB::Mode mode) override
const bool queueSquash
Squash queued prefetch if demand access observed.
DeferredPacket(Queued *o, PrefetchInfo const &pfi, Tick t, int32_t prio)
Constructor.
Queued * owner
Owner of the packet.
RequestPtr createPrefetchRequest(Addr addr, PrefetchInfo const &pfi, PacketPtr pkt)
Stats::Scalar pfRemovedFull
void setTranslationRequest(const RequestPtr &req)
Sets the translation request needed to obtain the physical address of this request.
ThreadContext is the external interface to all thread state for anything outside of the CPU...
Declaration of Statistics objects.
PacketPtr getPacket() override
Class containing the information needed by the prefetch to train and generate new prefetch requests...
This is a simple scalar statistic, like a counter.
Tick tick
Time when this prefetch becomes ready.
void notify(const PacketPtr &pkt, const PrefetchInfo &pfi) override
Notify prefetcher of cache access (may be any access or just misses, depending on cache parameters...
Queued(const QueuedPrefetcherParams *p)
bool operator<=(const DeferredPacket &that) const
const bool cacheSnoop
Snoop the cache before generating prefetch (cheating basically)
void createPkt(Addr paddr, unsigned blk_size, MasterID mid, bool tag_prefetch, Tick t)
Create the associated memory packet.
bool alreadyInQueue(std::list< DeferredPacket > &queue, const PrefetchInfo &pfi, int32_t priority)
Checks whether the specified prefetch request is already in the specified queue.
const bool queueFilter
Filter prefetches if already queued.
const unsigned int throttleControlPct
Percentage of requests that can be throttled.
uint64_t Tick
Tick count type.
Stats::Scalar pfIdentified
const Cycles latency
Cycles after generation when a prefetch can first be issued.
const unsigned queueSize
Maximum size of the prefetch queue.
Stats::Scalar pfBufferHit
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
std::list< DeferredPacket >::const_iterator const_iterator
const FlagsType total
Print the total.
void regStats() override
Register local statistics.
std::list< DeferredPacket > pfq
std::list< DeferredPacket >::iterator iterator
bool operator>(const DeferredPacket &that) const
const unsigned missingTranslationQueueSize
Maximum size of the queue holding prefetch requests with missing address translations.
Declaration of the Packet class.
RequestPtr translationRequest
Request used when a translation is needed.
size_t getMaxPermittedPrefetches(size_t total) const
Returns the maxmimum number of prefetch requests that are allowed to be created from the number of pr...
virtual void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses)=0
Tick nextPrefetchReadyTime() const override
void startTranslation(BaseTLB *tlb)
Issues the translation request to the provided TLB.
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
Miss and writeback queue declarations.
std::shared_ptr< FaultBase > Fault
BaseTLB * tlb
Registered tlb for address translations.
int32_t priority
The priority of this prefetch.
void addToQueue(std::list< DeferredPacket > &queue, DeferredPacket &dpp)
Adds a DeferredPacket to the specified queue.
PrefetchInfo pfInfo
Prefetch info corresponding to this packet.
PacketPtr pkt
The memory packet generated by this prefetch.