37 #ifndef __MEM_CACHE_PREFETCH_PIF_HH__ 38 #define __MEM_CACHE_PREFETCH_PIF_HH__ 47 struct PIFPrefetcherParams;
119 unsigned int log_blk_size)
const;
163 const std::string &
name)
176 PIF(
const PIFPrefetcherParams *
p);
192 #endif // __MEM_CACHE_PREFETCH_PIF_HH__ Probe Listener to handle probe events from the CPU.
void getPredictedAddresses(unsigned int log_blk_size, std::vector< AddrPriority > &addresses) const
Fills the provided vector with the predicted addresses using the recorded bit vectors of the entry...
CircularQueue< HistoryBuffer::iterator > streamAddressBuffer
A Stream Address Buffer (SAB) tracks a window of consecutive spatial regions.
void addEventProbeRetiredInsts(SimObject *obj, const char *name)
Add a SimObject and a probe name to monitor the retired instructions.
const unsigned int precSize
Number of preceding and subsequent spatial addresses to compact.
ProbeManager is a conduit class that lives on each SimObject, and is used to match up probe listeners...
PrefetchListenerPC(PIF &_parent, ProbeManager *pm, const std::string &name)
Class containing the information needed by the prefetch to train and generate new prefetch requests...
CompactorEntry spatialCompactor
const unsigned int maxCompactorEntries
Number of entries used for the temporal compactor.
bool hasAddress(Addr target, unsigned int log_blk_size) const
Checks if the provided address is contained in this spatial region and if its corresponding bit vecto...
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::vector< PrefetchListenerPC * > listenersPC
Array of probe listeners.
ProbeListenerArgBase is used to define the base interface to a ProbeListenerArg (i.e the notify method on specific type).
const unsigned int succSize
bool inSameSpatialRegion(Addr addr, unsigned int log_blk_size, bool update)
Checks if a given address is in the same defined spatial region as the compactor entry.
HistoryBuffer historyBuffer
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Associative container based on the previosuly defined Entry type Each element is indexed by a key of ...
PIF(const PIFPrefetcherParams *p)
Addr distanceFromTrigger(Addr addr, unsigned int log_blk_size) const
Computes the distance, in cache blocks, from an address to the trigger of the entry.
void notifyRetiredInst(const Addr pc)
Updates the prefetcher structures upon an instruction retired.
HistoryBuffer::iterator historyIt
virtual const std::string name() const
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses)
std::deque< CompactorEntry > temporalCompactor
AssociativeSet< IndexEntry > index
The index table is a small cache-like structure that facilitates fast search of the history buffer...
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
The compactor tracks retired instructions addresses, leveraging the spatial and temporal locality amo...
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
void update() const
Align cycle and tick to the next clock edge if not already done.
Abstract superclass for simulation objects.