Go to the documentation of this file.
42 #ifndef __MEM_RUBY_STRUCTURES_PREFETCHER_HH__
43 #define __MEM_RUBY_STRUCTURES_PREFETCHER_HH__
56 #include "params/RubyPrefetcher.hh"
59 #define MAX_PF_INFLIGHT 8
127 void print(std::ostream& out)
const;
173 uint32_t
index,
const RubyRequestType&
type);
266 #endif // __MEM_RUBY_STRUCTURES_PREFETCHER_HH__
This is a simple scalar statistic, like a counter.
void observePfHit(Addr address)
Implement the prefetch hit(miss) callback interface.
Addr m_address
The base address for the stream prefetch.
PrefetchEntry * getPrefetchEntry(Addr address, uint32_t &index)
get pointer to the matching stream entry, returns NULL if not found index holds the multiple of the s...
uint32_t hits
Counter of the number of times this entry has been hit.
void observePfMiss(Addr address)
std::bitset< MAX_PF_INFLIGHT > requestCompleted
uint32_t getLRUindex(void)
Returns an unused stream buffer (or if all are used, returns the least recently used (accessed) strea...
int m_stride
stride distance to get next address from
uint32_t m_num_streams
number of prefetch streams available
PrefetchEntry()
constructor
RubyRequestType m_type
L1D prefetches loads and stores.
uint32_t m_num_startup_pfs
number of initial prefetches to startup a stream
bool m_is_valid
valid bit for each stream
void initializeStream(Addr address, int stride, uint32_t index, const RubyRequestType &type)
allocate a new stream buffer at a specific index
int stride
Stride (in # of cache lines).
uint32_t m_train_misses
number of misses I must see before allocating a stream
Cycles is a wrapper class for representing cycle counts, i.e.
bool accessNonunitFilter(Addr line_addr, const RubyRequestType &type)
Access a non-unit stride filter to determine if there is a hit, and update it otherwise.
std::vector< PrefetchEntry > m_array
an array of the active prefetch streams
statistics::Scalar numHits
Count of successful prefetches.
CircularQueue< NonUnitFilterEntry > nonUnitFilter
A non-unit stride filter array: helps reduce BW requirement of prefetching.
void observeMiss(Addr address, const RubyRequestType &type)
Observe a memory miss from the cache.
UnitFilterEntry(Addr _addr=0)
Addr pageAddress(Addr addr) const
determine the page aligned address
void setController(AbstractController *_ctrl)
statistics::Scalar numPagesCrossed
Count of pages crossed.
Cycles m_use_time
the last time that any prefetched request was used
NonUnitFilterEntry(Addr _addr=0)
Addr addr
Address to which this filter entry refers.
static uint32_t getBlockSizeBits()
std::bitset< MAX_PF_INFLIGHT > requestIssued
Bitset for tracking prefetches for which addresses have been issued, which ones have completed.
statistics::Scalar numMissObserved
Count of accesses to the prefetcher.
CircularQueue< UnitFilterEntry > unitFilter
A unit stride filter array: helps reduce BW requirement of prefetching.
Abstract superclass for simulation objects.
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
void issueNextPrefetch(Addr address, PrefetchEntry *stream)
statistics::Scalar numMissedPrefetchedBlocks
Count of misses incurred for blocks that were prefetched.
RubyPrefetcherStats(statistics::Group *parent)
bool m_prefetch_cross_pages
Used for allowing prefetches across pages.
statistics::Scalar numAllocatedStreams
Count of prefetch streams allocated.
statistics::Scalar numPartialHits
Count of partial successful prefetches.
CircularQueue< UnitFilterEntry > negativeFilter
A negative unit stride filter array: helps reduce BW requirement of prefetching.
~RubyPrefetcher()=default
bool accessUnitFilter(CircularQueue< UnitFilterEntry > *const filter, Addr line_addr, int stride, const RubyRequestType &type)
Access a unit stride filter to determine if there is a hit, and update it otherwise.
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Bitfield< 21, 20 > stride
gem5::ruby::RubyPrefetcher::RubyPrefetcherStats rubyPrefetcherStats
statistics::Scalar numPrefetchRequested
Count of prefetch requests made.
AbstractController * m_controller
void print(std::ostream &out) const
Print out some statistics.
RubyPrefetcherParams Params
RubyPrefetcher(const Params &p)
Generated on Sun Jul 30 2023 01:56:59 for gem5 by doxygen 1.8.17