gem5  v21.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
bop.hh
Go to the documentation of this file.
1 
36 #ifndef __MEM_CACHE_PREFETCH_BOP_HH__
37 #define __MEM_CACHE_PREFETCH_BOP_HH__
38 
39 #include <queue>
40 
42 #include "mem/packet.hh"
43 
44 namespace gem5
45 {
46 
47 struct BOPPrefetcherParams;
48 
50 namespace prefetch
51 {
52 
53 class BOP : public Queued
54 {
55  private:
56 
57  enum RRWay
58  {
61  };
62 
64  const unsigned int scoreMax;
65  const unsigned int roundMax;
66  const unsigned int badScore;
68  const unsigned int rrEntries;
69  const unsigned int tagMask;
71  const bool delayQueueEnabled;
72  const unsigned int delayQueueSize;
73  const unsigned int delayTicks;
74 
77 
81 
89  {
92 
94  {}
95  };
96 
98 
100  void delayQueueEventWrapper();
102 
112  unsigned int bestScore;
114  unsigned int round;
115 
120  unsigned int hash(Addr addr, unsigned int way) const;
121 
126  void insertIntoRR(Addr addr, unsigned int way);
127 
133 
135  void resetScores();
136 
141  Addr tag(Addr addr) const;
142 
145  bool testRR(Addr) const;
146 
149  void bestOffsetLearning(Addr);
150 
152  void notifyFill(const PacketPtr& pkt) override;
153 
154  public:
155 
156  BOP(const BOPPrefetcherParams &p);
157  ~BOP() = default;
158 
159  void calculatePrefetch(const PrefetchInfo &pfi,
160  std::vector<AddrPriority> &addresses) override;
161 };
162 
163 } // namespace prefetch
164 } // namespace gem5
165 
166 #endif /* __MEM_CACHE_PREFETCH_BOP_HH__ */
gem5::prefetch::BOP::bestOffset
Addr bestOffset
Current best offset to issue prefetches.
Definition: bop.hh:106
gem5::prefetch::BOP::badScore
const unsigned int badScore
Definition: bop.hh:66
gem5::prefetch::BOP::DelayQueueEntry::baseAddr
Addr baseAddr
Definition: bop.hh:90
gem5::prefetch::BOP::bestScore
unsigned int bestScore
Max score found so far.
Definition: bop.hh:112
gem5::prefetch::BOP::delayQueue
std::deque< DelayQueueEntry > delayQueue
Definition: bop.hh:97
gem5::prefetch::BOP::insertIntoDelayQueue
void insertIntoDelayQueue(Addr addr)
Insert the specified address into the delay queue.
Definition: bop.cc:139
gem5::prefetch::BOP::tagMask
const unsigned int tagMask
Definition: bop.hh:69
gem5::prefetch::BOP::offsetsList
std::vector< OffsetListEntry > offsetsList
Definition: bop.hh:80
gem5::prefetch::BOP::RRWay
RRWay
Definition: bop.hh:57
gem5::prefetch::BOP::DelayQueueEntry
In a first implementation of the BO prefetcher, both banks of the RR were written simultaneously when...
Definition: bop.hh:88
gem5::prefetch::BOP::hash
unsigned int hash(Addr addr, unsigned int way) const
Generate a hash for the specified address to index the RR table.
Definition: bop.cc:118
std::vector< Addr >
gem5::prefetch::BOP::insertIntoRR
void insertIntoRR(Addr addr, unsigned int way)
Insert the specified address into the RR table.
Definition: bop.cc:126
gem5::prefetch::BOP::Left
@ Left
Definition: bop.hh:59
queued.hh
packet.hh
gem5::prefetch::BOP::calculatePrefetch
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses) override
Definition: bop.cc:230
gem5::Packet
A Packet is used to encapsulate a transfer between two objects in the memory system (e....
Definition: packet.hh:283
gem5::prefetch::BOP::notifyFill
void notifyFill(const PacketPtr &pkt) override
Update the RR right table after a prefetch fill.
Definition: bop.cc:256
gem5::prefetch::BOP::BOP
BOP(const BOPPrefetcherParams &p)
Definition: bop.cc:41
gem5::prefetch::BOP::delayTicks
const unsigned int delayTicks
Definition: bop.hh:73
gem5::MipsISA::p
Bitfield< 0 > p
Definition: pra_constants.hh:326
gem5::Tick
uint64_t Tick
Tick count type.
Definition: types.hh:58
gem5::prefetch::BOP::scoreMax
const unsigned int scoreMax
Learning phase parameters.
Definition: bop.hh:64
gem5::prefetch::BOP::phaseBestOffset
Addr phaseBestOffset
Current best offset found in the learning phase.
Definition: bop.hh:108
gem5::prefetch::BOP::delayQueueSize
const unsigned int delayQueueSize
Definition: bop.hh:72
gem5::prefetch::BOP::rrRight
std::vector< Addr > rrRight
Definition: bop.hh:76
gem5::prefetch::BOP::testRR
bool testRR(Addr) const
Test if @X-O is hitting in the RR table to update the offset score.
Definition: bop.cc:171
gem5::ArmISA::t
Bitfield< 5 > t
Definition: misc_types.hh:70
std::pair
STL pair class.
Definition: stl.hh:58
gem5::Addr
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition: types.hh:147
gem5::prefetch::BOP::OffsetListEntry
std::pair< int16_t, uint8_t > OffsetListEntry
Structure to save the offset and the score.
Definition: bop.hh:79
gem5::prefetch::BOP::delayQueueEventWrapper
void delayQueueEventWrapper()
Event to handle the delay queue processing.
Definition: bop.cc:101
gem5::GEM5_DEPRECATED_NAMESPACE
GEM5_DEPRECATED_NAMESPACE(GuestABI, guest_abi)
gem5::prefetch::Queued
Definition: queued.hh:60
gem5::prefetch::BOP::rrEntries
const unsigned int rrEntries
Recent requests table parameteres.
Definition: bop.hh:68
gem5::EventFunctionWrapper
Definition: eventq.hh:1115
gem5::RiscvISA::x
Bitfield< 3 > x
Definition: pagetable.hh:73
gem5::prefetch::BOP::roundMax
const unsigned int roundMax
Definition: bop.hh:65
gem5::prefetch::BOP::Right
@ Right
Definition: bop.hh:60
gem5::prefetch::BOP::delayQueueEvent
EventFunctionWrapper delayQueueEvent
Definition: bop.hh:101
gem5::prefetch::BOP::resetScores
void resetScores()
Reset all the scores from the offset list.
Definition: bop.cc:157
std::deque
STL deque class.
Definition: stl.hh:44
gem5::prefetch::BOP::~BOP
~BOP()=default
gem5::prefetch::BOP::delayQueueEnabled
const bool delayQueueEnabled
Delay queue parameters.
Definition: bop.hh:71
gem5::prefetch::BOP::round
unsigned int round
Current round.
Definition: bop.hh:114
gem5::prefetch::BOP::bestOffsetLearning
void bestOffsetLearning(Addr)
Learning phase of the BOP.
Definition: bop.cc:189
gem5::context_switch_task_id::Prefetcher
@ Prefetcher
Definition: request.hh:83
gem5::prefetch::BOP
Definition: bop.hh:53
gem5
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
Definition: decoder.cc:40
gem5::prefetch::BOP::rrLeft
std::vector< Addr > rrLeft
Definition: bop.hh:75
gem5::prefetch::BOP::offsetsListIterator
std::vector< OffsetListEntry >::iterator offsetsListIterator
Current test offset index.
Definition: bop.hh:110
gem5::prefetch::BOP::tag
Addr tag(Addr addr) const
Generate the tag for the specified address based on the tag bits and the block size.
Definition: bop.cc:165
gem5::prefetch::BOP::DelayQueueEntry::processTick
Tick processTick
Definition: bop.hh:91
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::BOP::DelayQueueEntry::DelayQueueEntry
DelayQueueEntry(Addr x, Tick t)
Definition: bop.hh:93
gem5::X86ISA::addr
Bitfield< 3 > addr
Definition: types.hh:84
gem5::prefetch::BOP::issuePrefetchRequests
bool issuePrefetchRequests
Hardware prefetcher enabled.
Definition: bop.hh:104

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