gem5  v20.0.0.3
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 struct PIFPrefetcherParams;
48 
49 namespace Prefetcher {
50 
51 class PIF : public Queued
52 {
53  private:
55  const unsigned int precSize;
56  const unsigned int succSize;
58  const unsigned int maxCompactorEntries;
59 
74  struct CompactorEntry {
79  CompactorEntry(Addr, unsigned int, unsigned int);
80 
90  bool inSameSpatialRegion(Addr addr, unsigned int log_blk_size,
91  bool update);
99  bool hasAddress(Addr target, unsigned int log_blk_size) const;
100 
108  void getPredictedAddresses(unsigned int log_blk_size,
109  std::vector<AddrPriority> &addresses) const;
110  private:
119  unsigned int log_blk_size) const;
120  };
121 
124 
131 
132  struct IndexEntry : public TaggedEntry
133  {
134  HistoryBuffer::iterator historyIt;
135  };
141 
149 
154  void notifyRetiredInst(const Addr pc);
155 
160  {
161  public:
163  const std::string &name)
164  : ProbeListenerArgBase(pm, name),
165  parent(_parent) {}
166  void notify(const Addr& pc) override;
167  protected:
169  };
170 
173 
174 
175  public:
176  PIF(const PIFPrefetcherParams *p);
177  ~PIF() = default;
178 
179  void calculatePrefetch(const PrefetchInfo &pfi,
180  std::vector<AddrPriority> &addresses);
181 
187  void addEventProbeRetiredInsts(SimObject *obj, const char *name);
188 };
189 
190 } // namespace Prefetcher
191 
192 #endif // __MEM_CACHE_PREFETCH_PIF_HH__
Probe Listener to handle probe events from the CPU.
Definition: pif.hh:159
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:106
CircularQueue< HistoryBuffer::iterator > streamAddressBuffer
A Stream Address Buffer (SAB) tracks a window of consecutive spatial regions.
Definition: pif.hh:148
void addEventProbeRetiredInsts(SimObject *obj, const char *name)
Add a SimObject and a probe name to monitor the retired instructions.
Definition: pif.cc:235
const unsigned int precSize
Number of preceding and subsequent spatial addresses to compact.
Definition: pif.hh:55
ip6_addr_t addr
Definition: inet.hh:330
ProbeManager is a conduit class that lives on each SimObject, and is used to match up probe listeners...
Definition: probe.hh:150
PrefetchListenerPC(PIF &_parent, ProbeManager *pm, const std::string &name)
Definition: pif.hh:162
Class containing the information needed by the prefetch to train and generate new prefetch requests...
Definition: base.hh:91
CompactorEntry spatialCompactor
Definition: pif.hh:122
const unsigned int maxCompactorEntries
Number of entries used for the temporal compactor.
Definition: pif.hh:58
~PIF()=default
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:90
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...
Definition: queued.cc:143
std::vector< PrefetchListenerPC * > listenersPC
Array of probe listeners.
Definition: pif.hh:172
Bitfield< 4 > pc
std::vector< bool > succ
Definition: pif.hh:77
ProbeListenerArgBase is used to define the base interface to a ProbeListenerArg (i.e the notify method on specific type).
Definition: probe.hh:198
const unsigned int succSize
Definition: pif.hh:56
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:72
HistoryBuffer historyBuffer
Definition: pif.hh:130
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:140
Associative container based on the previosuly defined Entry type Each element is indexed by a key of ...
PIF(const PIFPrefetcherParams *p)
Definition: pif.cc:39
STL deque class.
Definition: stl.hh:44
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:61
void notifyRetiredInst(const Addr pc)
Updates the prefetcher structures upon an instruction retired.
Definition: pif.cc:132
HistoryBuffer::iterator historyIt
Definition: pif.hh:134
std::vector< bool > prec
Definition: pif.hh:76
virtual const std::string name() const
Definition: sim_object.hh:129
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses)
Definition: pif.cc:195
std::deque< CompactorEntry > temporalCompactor
Definition: pif.hh:123
AssociativeSet< IndexEntry > index
The index table is a small cache-like structure that facilitates fast search of the history buffer...
Definition: pif.hh:140
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
The compactor tracks retired instructions addresses, leveraging the spatial and temporal locality amo...
Definition: pif.hh:74
Copyright (c) 2018 Metempsy Technology Consulting All rights reserved.
Definition: base.hh:78
Bitfield< 0 > p
void update() const
Align cycle and tick to the next clock edge if not already done.
Abstract superclass for simulation objects.
Definition: sim_object.hh:93

Generated on Fri Jul 3 2020 15:53:03 for gem5 by doxygen 1.8.13