47 #ifndef __MEM_CACHE_PREFETCH_STRIDE_HH__ 48 #define __MEM_CACHE_PREFETCH_STRIDE_HH__ 51 #include <unordered_map> 61 #include "params/StridePrefetcherHashedSetAssociative.hh" 65 struct StridePrefetcherParams;
81 const StridePrefetcherHashedSetAssociativeParams *
p)
115 : assoc(assoc), numEntries(num_entries),
116 indexingPolicy(indexing_policy),
117 replacementPolicy(replacement_policy)
127 void invalidate()
override;
143 PCTable* findTable(
int context);
151 PCTable* allocateNewContext(
int context);
154 Stride(
const StridePrefetcherParams *
p);
162 #endif // __MEM_CACHE_PREFETCH_STRIDE_HH__ Addr extractTag(const Addr addr) const override
Generate the tag from the given address.
Override the default set associative to apply a specific hash function when extracting a set...
Information used to create a new PC table.
~StridePrefetcherHashedSetAssociative()=default
Declaration of a set associative indexing policy.
A common base class of cache replacement policy objects.
Class containing the information needed by the prefetch to train and generate new prefetch requests...
AssociativeSet< StrideEntry > PCTable
BaseIndexingPolicy *const indexingPolicy
Implements an n bit saturating counter and provides methods to increment, decrement, and read it.
uint32_t extractSet(const Addr addr) const override
Apply a hash function to calculate address set.
const double threshConf
Confidence threshold for prefetch generation.
Defines global host-dependent types: Counter, Tick, and (indirectly) {int,uint}{8,16,32,64}_t.
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 ...
StridePrefetcherHashedSetAssociative(const StridePrefetcherHashedSetAssociativeParams *p)
std::unordered_map< int, PCTable > pcTables
PCTableInfo(int assoc, int num_entries, BaseIndexingPolicy *indexing_policy, BaseReplacementPolicy *replacement_policy)
Declaration of the Packet class.
const SatCounter initConfidence
Initial confidence counter value for the pc tables.
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
A common base class for indexing table locations.
BaseReplacementPolicy *const replacementPolicy
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
A set associative indexing policy.