31 #include "debug/HWPrefetch.hh" 32 #include "params/SBOOEPrefetcher.hh" 38 sequentialPrefetchers(p->sequential_prefetchers),
39 scoreThreshold((p->sandbox_entries*p->score_threshold_pct)/100),
40 latencyBuffer(p->latency_buffer_size),
41 averageAccessLatency(0), latencyBufferSum(0),
57 if (entry.valid && entry.line == addr) {
59 if (entry.expectedArrivalTick >
curTick()) {
70 entries.push_back(entry);
86 return (
accesses >= sandboxes.size());
127 const bool evaluationFinished =
access(pfi_line);
131 addresses.push_back(
AddrPriority(pref_line << lBlkSize, 0));
138 SBOOEPrefetcherParams::create()
std::pair< Addr, int32_t > AddrPriority
Tick latencyBufferSum
Holds the current sum of the latency buffer latency.
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses) override
Tick averageAccessLatency
Holds the current average access latency.
Bitfield< 21, 20 > stride
bool full() const
Is the queue full? A queue is full if the head is the 0^{th} element and the tail is the (size-1)^{th...
Addr line
Cache line predicted by the candidate prefetcher.
void notifyFill(const PacketPtr &pkt) override
Update the latency buffer after a prefetch fill.
const Sandbox * bestSandbox
Current best sandbox.
std::vector< Sandbox > sandboxes
SBOOE(const SBOOEPrefetcherParams *p)
Class containing the information needed by the prefetch to train and generate new prefetch requests...
void push_back(typename Base::value_type val)
Pushes an element at the end of the queue.
Tick expectedArrivalTick
Tick when the simulated prefetch is expected to be filled.
unsigned int accesses
Number of accesses notified to the prefetcher.
bool access(Addr line)
Process an access to the specified line address and update the sandbox counters counters.
void access(Addr line, Tick tick)
Update score and insert the line address being accessed into the FIFO queue of the sandbox...
Tick curTick()
The current simulated tick.
const int sequentialPrefetchers
Prefetcher parameters.
uint64_t Tick
Tick count type.
unsigned int score() const
Calculate the useful score.
Addr getAddr() const
Obtains the address value of this Prefetcher address.
unsigned lBlkSize
log_2(block size of the parent cache).
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
const unsigned int scoreThreshold
Threshold used to issue prefetchers.
A Packet is used to encapsulate a transfer between two objects in the memory system (e...
CircularQueue< Tick > latencyBuffer
The latency buffer holds the elapsed ticks between the demand and the fill in the cache for the lates...
const int stride
Sequential stride for this prefetcher.
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
std::unordered_map< Addr, Tick > demandAddresses
Holds the current demand addresses and tick.
bool valid
To indicate if it was initialized.