gem5  v21.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
pif.hh
Go to the documentation of this file.
1 
37 #ifndef __MEM_CACHE_PREFETCH_PIF_HH__
38 #define __MEM_CACHE_PREFETCH_PIF_HH__
39 
40 #include <deque>
41 #include <vector>
42 
43 #include "base/circular_queue.hh"
46 
47 namespace gem5
48 {
49 
50 struct PIFPrefetcherParams;
51 
53 namespace prefetch
54 {
55 
56 class PIF : public Queued
57 {
58  private:
60  const unsigned int precSize;
61  const unsigned int succSize;
63  const unsigned int maxCompactorEntries;
64 
80  {
85  CompactorEntry(Addr, unsigned int, unsigned int);
86 
96  bool inSameSpatialRegion(Addr addr, unsigned int log_blk_size,
97  bool update);
105  bool hasAddress(Addr target, unsigned int log_blk_size) const;
106 
114  void getPredictedAddresses(unsigned int log_blk_size,
115  std::vector<AddrPriority> &addresses) const;
116  private:
125  unsigned int log_blk_size) const;
126  };
127 
130 
137 
138  struct IndexEntry : public TaggedEntry
139  {
140  HistoryBuffer::iterator historyIt;
141  };
147 
155 
160  void notifyRetiredInst(const Addr pc);
161 
166  {
167  public:
169  const std::string &name)
170  : ProbeListenerArgBase(pm, name),
171  parent(_parent) {}
172  void notify(const Addr& pc) override;
173  protected:
175  };
176 
179 
180 
181  public:
182  PIF(const PIFPrefetcherParams &p);
183  ~PIF() = default;
184 
185  void calculatePrefetch(const PrefetchInfo &pfi,
186  std::vector<AddrPriority> &addresses);
187 
193  void addEventProbeRetiredInsts(SimObject *obj, const char *name);
194 };
195 
196 } // namespace prefetch
197 } // namespace gem5
198 
199 #endif // __MEM_CACHE_PREFETCH_PIF_HH__
gem5::prefetch::PIF::CompactorEntry::trigger
Addr trigger
Definition: pif.hh:81
gem5::prefetch::PIF::PrefetchListenerPC
Probe Listener to handle probe events from the CPU.
Definition: pif.hh:165
gem5::prefetch::PIF::PrefetchListenerPC::notify
void notify(const Addr &pc) override
Definition: pif.cc:239
gem5::prefetch::PIF::IndexEntry::historyIt
HistoryBuffer::iterator historyIt
Definition: pif.hh:140
std::vector< bool >
gem5::prefetch::PIF::maxCompactorEntries
const unsigned int maxCompactorEntries
Number of entries used for the temporal compactor.
Definition: pif.hh:63
gem5::prefetch::PIF::spatialCompactor
CompactorEntry spatialCompactor
Definition: pif.hh:128
gem5::Clocked::update
void update() const
Align cycle and tick to the next clock edge if not already done.
Definition: clocked_object.hh:79
gem5::prefetch::PIF::notifyRetiredInst
void notifyRetiredInst(const Addr pc)
Updates the prefetcher structures upon an instruction retired.
Definition: pif.cc:137
queued.hh
gem5::prefetch::PIF::PrefetchListenerPC::PrefetchListenerPC
PrefetchListenerPC(PIF &_parent, ProbeManager *pm, const std::string &name)
Definition: pif.hh:168
gem5::prefetch::PIF
Definition: pif.hh:56
gem5::prefetch::PIF::CompactorEntry::hasAddress
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...
Definition: pif.cc:95
gem5::prefetch::PIF::CompactorEntry::succ
std::vector< bool > succ
Definition: pif.hh:83
gem5::TaggedEntry
A tagged entry is an entry containing a tag.
Definition: tagged_entry.hh:46
gem5::Named::name
virtual std::string name() const
Definition: named.hh:47
circular_queue.hh
gem5::AssociativeSet
Associative container based on the previosuly defined Entry type Each element is indexed by a key of ...
Definition: associative_set.hh:45
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::prefetch::PIF::CompactorEntry::distanceFromTrigger
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.
Definition: pif.cc:66
gem5::prefetch::PIF::succSize
const unsigned int succSize
Definition: pif.hh:61
gem5::prefetch::PIF::CompactorEntry::CompactorEntry
CompactorEntry()
Definition: pif.hh:84
gem5::SimObject
Abstract superclass for simulation objects.
Definition: sim_object.hh:146
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::ProbeManager
ProbeManager is a conduit class that lives on each SimObject, and is used to match up probe listeners...
Definition: probe.hh:163
gem5::prefetch::Queued
Definition: queued.hh:60
gem5::prefetch::PIF::historyBuffer
HistoryBuffer historyBuffer
Definition: pif.hh:136
gem5::prefetch::PIF::precSize
const unsigned int precSize
Number of preceding and subsequent spatial addresses to compact.
Definition: pif.hh:60
gem5::prefetch::PIF::calculatePrefetch
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses)
Definition: pif.cc:201
gem5::ProbeListenerArgBase
ProbeListenerArgBase is used to define the base interface to a ProbeListenerArg (i....
Definition: probe.hh:211
gem5::prefetch::PIF::addEventProbeRetiredInsts
void addEventProbeRetiredInsts(SimObject *obj, const char *name)
Add a SimObject and a probe name to monitor the retired instructions.
Definition: pif.cc:245
std::deque
STL deque class.
Definition: stl.hh:44
gem5::MipsISA::pc
Bitfield< 4 > pc
Definition: pra_constants.hh:243
gem5::prefetch::PIF::CompactorEntry::getPredictedAddresses
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.
Definition: pif.cc:111
gem5::prefetch::PIF::CompactorEntry::prec
std::vector< bool > prec
Definition: pif.hh:82
gem5::prefetch::PIF::PrefetchListenerPC::parent
PIF & parent
Definition: pif.hh:174
gem5::prefetch::PIF::temporalCompactor
std::deque< CompactorEntry > temporalCompactor
Definition: pif.hh:129
gem5::prefetch::PIF::CompactorEntry
The compactor tracks retired instructions addresses, leveraging the spatial and temporal locality amo...
Definition: pif.hh:79
gem5::ProbeListener::name
const std::string name
Definition: probe.hh:138
gem5::prefetch::PIF::streamAddressBuffer
CircularQueue< HistoryBuffer::iterator > streamAddressBuffer
A Stream Address Buffer (SAB) tracks a window of consecutive spatial regions.
Definition: pif.hh:154
associative_set.hh
gem5::prefetch::PIF::PIF
PIF(const PIFPrefetcherParams &p)
Definition: pif.cc:44
gem5::context_switch_task_id::Prefetcher
@ Prefetcher
Definition: request.hh:83
gem5::prefetch::PIF::~PIF
~PIF()=default
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::prefetch::PIF::index
AssociativeSet< IndexEntry > index
The index table is a small cache-like structure that facilitates fast search of the history buffer.
Definition: pif.hh:146
gem5::CircularQueue< CompactorEntry >
gem5::prefetch::PIF::CompactorEntry::inSameSpatialRegion
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.
Definition: pif.cc:77
gem5::prefetch::Base::PrefetchInfo
Class containing the information needed by the prefetch to train and generate new prefetch requests.
Definition: base.hh:97
gem5::prefetch::PIF::listenersPC
std::vector< PrefetchListenerPC * > listenersPC
Array of probe listeners.
Definition: pif.hh:178
gem5::prefetch::PIF::IndexEntry
Definition: pif.hh:138
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84

Generated on Tue Sep 7 2021 14:53:48 for gem5 by doxygen 1.8.17