Go to the documentation of this file.
45 #include "debug/HWPrefetch.hh"
46 #include "debug/HWPrefetchQueue.hh"
49 #include "params/QueuedPrefetcher.hh"
64 RequestPtr req = std::make_shared<Request>(paddr, blk_size,
83 assert(translationRequest !=
nullptr);
84 if (!ongoingTranslation) {
85 ongoingTranslation =
true;
95 assert(ongoingTranslation);
96 ongoingTranslation =
false;
97 bool failed = (fault !=
NoFault);
98 owner->translationComplete(
this, failed);
104 p.max_prefetch_requests_with_pending_translation),
124 std::string queue_name =
"";
125 if (&queue == &
pfq) {
129 queue_name =
"PFTransQ";
136 Addr paddr = it->pkt ? it->pkt->getAddr() : 0;
137 DPRINTF(HWPrefetchQueue,
"%s[%d]: Prefetch Req VA: %#x PA: %#x "
138 "prio: %3d\n", queue_name, pos,
vaddr, paddr, it->priority);
161 size_t max_pfs =
total;
164 size_t min_pfs = (
total - throttle_pfs) == 0 ?
165 1 : (
total - throttle_pfs);
166 max_pfs = min_pfs + (
total - min_pfs) *
180 auto itr =
pfq.begin();
181 while (itr !=
pfq.end()) {
182 if (itr->pfInfo.getAddr() == blk_addr &&
183 itr->pfInfo.isSecure() == is_secure) {
184 DPRINTF(HWPrefetch,
"Removing pf candidate addr: %#x "
185 "(cl: %#x), demand request going to the same addr\n",
186 itr->pfInfo.getAddr(),
189 itr =
pfq.erase(itr);
215 bool can_cross_page = (
tlb !=
nullptr);
219 DPRINTF(HWPrefetch,
"Found a pf candidate addr: %#x, "
220 "inserting into prefetch queue.\n", new_pfi.
getAddr());
222 insert(pkt, new_pfi, addr_prio.second);
224 if (num_pfs == max_pfs) {
228 DPRINTF(HWPrefetch,
"Ignoring page crossing prefetch.\n");
236 DPRINTF(HWPrefetch,
"Requesting a prefetch to issue.\n");
245 DPRINTF(HWPrefetch,
"No hardware prefetches available.\n");
254 assert(pkt !=
nullptr);
255 DPRINTF(HWPrefetch,
"Generating prefetch for %#x.\n", pkt->
getAddr());
262 : statistics::
Group(parent),
263 ADD_STAT(pfIdentified, statistics::units::Count::get(),
264 "number of prefetch candidates identified"),
265 ADD_STAT(pfBufferHit, statistics::units::Count::get(),
266 "number of redundant prefetches already in prefetch queue"),
267 ADD_STAT(pfInCache, statistics::units::Count::get(),
268 "number of redundant prefetches already in cache/mshr dropped"),
269 ADD_STAT(pfRemovedDemand, statistics::units::Count::get(),
270 "number of prefetches dropped due to a demand for the same "
272 ADD_STAT(pfRemovedFull, statistics::units::Count::get(),
273 "number of prefetches dropped due to prefetch queue size"),
274 ADD_STAT(pfSpanPage, statistics::units::Count::get(),
275 "number of prefetches that crossed the page")
290 dp.startTranslation(
tlb);
307 DPRINTF(HWPrefetch,
"%s Translation of vaddr %#x succeeded: "
309 it->translationRequest->getVaddr(),
310 it->translationRequest->getPaddr());
311 Addr target_paddr = it->translationRequest->getPaddr();
314 inMissQueue(target_paddr, it->pfInfo.isSecure()))) {
316 DPRINTF(HWPrefetch,
"Dropping redundant in "
317 "cache/MSHR prefetch addr:%#x\n", target_paddr);
325 DPRINTF(HWPrefetch,
"%s Translation of vaddr %#x failed, dropping "
326 "prefetch request %#x \n",
tlb->
name(),
327 it->translationRequest->getVaddr());
338 for (it = queue.begin(); it != queue.end() && !found; it++) {
339 found = it->pfInfo.sameAddr(pfi);
343 if (it != queue.end()) {
345 if (it->priority < priority) {
347 it->priority = priority;
349 while (prev != queue.begin()) {
353 std::swap(*it, *prev);
357 DPRINTF(HWPrefetch,
"Prefetch addr already in "
358 "prefetch queue, priority updated\n");
360 DPRINTF(HWPrefetch,
"Prefetch addr already in "
371 RequestPtr translation_req = std::make_shared<Request>(
373 pkt->
req->contextId());
375 return translation_req;
404 pkt->
req->getVaddr() : pkt->
req->getPaddr();
405 bool positive_stride = new_pfi.
getAddr() >= orig_addr;
407 (new_pfi.
getAddr() - orig_addr) : (orig_addr - new_pfi.
getAddr());
410 bool has_target_pa =
false;
417 target_paddr = positive_stride ? (pkt->
req->getPaddr() +
stride) :
420 target_paddr = new_pfi.
getAddr();
422 has_target_pa =
true;
427 if (!pkt->
req->hasContextId()) {
431 has_target_pa =
false;
434 }
else if (pkt->
req->hasVaddr()) {
435 has_target_pa =
false;
437 Addr target_vaddr = positive_stride ?
452 DPRINTF(HWPrefetch,
"Dropping redundant in "
453 "cache/MSHR prefetch addr:%#x\n", target_paddr);
463 DPRINTF(HWPrefetch,
"Prefetch queued. "
464 "addr:%#x priority: %3d tick:%lld.\n",
465 new_pfi.
getAddr(), priority, pf_time);
471 DPRINTF(HWPrefetch,
"Prefetch queued with no translation. "
472 "addr:%#x priority: %3d\n", new_pfi.
getAddr(), priority);
487 "Prefetch queue is both full and empty!");
491 "Prefetch queue is full with 1 element!");
495 while (cont && prev != queue.begin()) {
498 cont = prev->priority == it->priority;
503 DPRINTF(HWPrefetch,
"Prefetch queue full, removing lowest priority "
504 "oldest packet, addr: %#x\n",it->pfInfo.getAddr());
509 if ((queue.size() == 0) || (dpp <= queue.back())) {
510 queue.emplace_back(dpp);
515 }
while (it != queue.begin() && dpp > *it);
518 if (it == queue.begin() && dpp <= *it)
520 queue.insert(it, dpp);
523 if (debug::HWPrefetchQueue)
Addr getAddr() const
Obtains the address value of this Prefetcher address.
void finish(const Fault &fault, const RequestPtr &req, ThreadContext *tc, BaseMMU::Mode mode) override
Tick curTick()
The universal simulation clock.
const bool useVirtualAddresses
Use Virtual Addresses for prefetching.
const bool cacheSnoop
Snoop the cache before generating prefetch (cheating basically)
constexpr decltype(nullptr) NoFault
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....
std::list< DeferredPacket >::iterator iterator
void addToQueue(std::list< DeferredPacket > &queue, DeferredPacket &dpp)
Adds a DeferredPacket to the specified queue.
statistics::Scalar pfRemovedDemand
Tick tick
Time when this prefetch becomes ready.
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...
void setTranslationRequest(const RequestPtr &req)
Sets the translation request needed to obtain the physical address of this request.
statistics::Scalar pfInCache
bool isSecure() const
Returns true if the address targets the secure memory space.
statistics::Scalar pfSpanPage
statistics::Scalar pfIssued
RequestPtr req
A pointer to the original request.
const unsigned missingTranslationQueueSize
Maximum size of the queue holding prefetch requests with missing address translations.
@ SECURE
The request targets the secure memory space.
bool inMissQueue(Addr addr, bool is_secure) const
Determine if address is in cache miss queue.
void printQueue(const std::list< DeferredPacket > &queue) const
Addr blockAddress(Addr a) const
Determine the address of the block in which a lays.
statistics::Scalar pfIdentified
const bool tagPrefetch
Tag prefetch with PC of generating access?
const RequestorID requestorId
Request id for prefetches.
void insert(const PacketPtr &pkt, PrefetchInfo &new_pfi, int32_t priority)
virtual void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses)=0
Addr getPC() const
Returns the program counter that generated this request.
const Cycles latency
Cycles after generation when a prefetch can first be issued.
bool samePage(Addr a, Addr b) const
Determine if addresses are on the same page.
ThreadContext is the external interface to all thread state for anything outside of the CPU.
virtual std::string name() const
std::shared_ptr< FaultBase > Fault
#define ADD_STAT(n,...)
Convenience macro to add a stat to a statistics group.
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
bool alreadyInQueue(std::list< DeferredPacket > &queue, const PrefetchInfo &pfi, int32_t priority)
Checks whether the specified prefetch request is already in the specified queue.
uint64_t usefulPrefetches
Total prefetches that has been useful.
void startTranslation(BaseTLB *tlb)
Issues the translation request to the provided TLB.
ProbePointArg< PacketInfo > Packet
Packet probe point.
uint64_t Tick
Tick count type.
@ PREFETCH
The request is a prefetch.
std::shared_ptr< Request > RequestPtr
statistics::Scalar pfBufferHit
void createPkt(Addr paddr, unsigned blk_size, RequestorID requestor_id, bool tag_prefetch, Tick t)
Create the associated memory packet.
const unsigned int throttleControlPct
Percentage of requests that can be throttled.
virtual void translateTiming(const RequestPtr &req, ThreadContext *tc, BaseMMU::Translation *translation, BaseMMU::Mode mode)=0
PacketPtr getPacket() override
std::list< DeferredPacket > pfq
QueuedStats(statistics::Group *parent)
const bool queueFilter
Filter prefetches if already queued.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
void translationComplete(DeferredPacket *dp, bool failed)
Indicates that the translation of the address of the provided deferred packet has been successfully c...
const unsigned queueSize
Maximum size of the prefetch queue.
gem5::prefetch::Base::StatGroup prefetchStats
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
PrefetchInfo pfInfo
Prefetch info corresponding to this packet.
uint64_t issuedPrefetches
Total prefetches issued.
void processMissingTranslations(unsigned max)
Starts the translations of the queued prefetches with a missing translation.
void allocate()
Allocate memory for the packet.
PacketPtr pkt
The memory packet generated by this prefetch.
Queued(const QueuedPrefetcherParams &p)
System * system
System we are currently operating in.
BaseCache * cache
Pointr to the parent cache.
unsigned blkSize
The block size of the parent cache.
BaseTLB * tlb
Registered tlb for address translations.
bool inCache(Addr addr, bool is_secure) const
Determine if address is in cache.
RequestPtr createPrefetchRequest(Addr addr, PrefetchInfo const &pfi, PacketPtr pkt)
std::list< DeferredPacket >::const_iterator const_iterator
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
const FlagsType total
Print the total.
Bitfield< 21, 20 > stride
Class containing the information needed by the prefetch to train and generate new prefetch requests.
statistics::Scalar pfRemovedFull
std::list< DeferredPacket > pfqMissingTranslation
bool hasPC() const
Returns true if the associated program counter is valid.
const bool queueSquash
Squash queued prefetch if demand access observed.
gem5::prefetch::Queued::QueuedStats statsQueued
Generated on Tue Dec 21 2021 11:34:31 for gem5 by doxygen 1.8.17