35 #ifndef __MEM_CACHE_PREFETCH_SBOOE_HH__ 36 #define __MEM_CACHE_PREFETCH_SBOOE_HH__ 38 #include <unordered_map> 45 struct SBOOEPrefetcherParams;
112 Sandbox(
unsigned int max_entries,
int _stride)
113 : entries(max_entries), sandboxScore(0), lateScore(0),
131 unsigned int score()
const {
return (sandboxScore - lateScore); }
154 SBOOE(
const SBOOEPrefetcherParams *
p);
162 #endif // __MEM_CACHE_PREFETCH_SBOOE_HH__
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.
unsigned int sandboxScore
Accesses during the eval period that were present in the sandbox.
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...
Sandbox(unsigned int max_entries, int _stride)
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.
const int sequentialPrefetchers
Prefetcher parameters.
uint64_t Tick
Tick count type.
unsigned int score() const
Calculate the useful score.
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.
Declaration of the Packet class.
unsigned int lateScore
Hits in the sandbox that wouldn't have been filled on time.
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
std::unordered_map< Addr, Tick > demandAddresses
Holds the current demand addresses and tick.
CircularQueue< SandboxEntry > entries
FIFO queue containing the sandbox entries.
bool valid
To indicate if it was initialized.