gem5 v24.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
37#ifndef __MEM_CACHE_PREFETCH_BOP_HH__
38#define __MEM_CACHE_PREFETCH_BOP_HH__
39
40#include <queue>
41
43#include "mem/packet.hh"
44
45namespace gem5
46{
47
48struct BOPPrefetcherParams;
49
50namespace prefetch
51{
52
53class BOP : public Queued
54{
55 private:
56
57 enum RRWay
58 {
60 Right
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;
72 const unsigned int delayQueueSize;
73 const unsigned int delayTicks;
74
77
81
96
98
102
112 unsigned int bestScore;
114 unsigned int round;
115
120 unsigned int index(Addr addr, unsigned int way) const;
121
127 void insertIntoRR(Addr addr, Addr addr_tag, unsigned int way);
128
134
136 void resetScores();
137
142 Addr tag(Addr addr) const;
143
146 bool testRR(Addr) const;
147
151
153 void notifyFill(const CacheAccessProbeArg &arg) override;
154
155 public:
157 unsigned int degree;
158
159 BOP(const BOPPrefetcherParams &p);
160 ~BOP() = default;
161
162 void calculatePrefetch(const PrefetchInfo &pfi,
163 std::vector<AddrPriority> &addresses,
164 const CacheAccessor &cache) override;
165};
166
167} // namespace prefetch
168} // namespace gem5
169
170#endif /* __MEM_CACHE_PREFETCH_BOP_HH__ */
Information provided to probes on a cache event.
std::deque< DelayQueueEntry > delayQueue
Definition bop.hh:97
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses, const CacheAccessor &cache) override
Definition bop.cc:286
unsigned int round
Current round.
Definition bop.hh:114
std::vector< Addr > rrLeft
Definition bop.hh:75
unsigned int bestScore
Max score found so far.
Definition bop.hh:112
const unsigned int delayQueueSize
Definition bop.hh:72
void insertIntoDelayQueue(Addr addr)
Insert the specified address into the delay queue.
Definition bop.cc:174
const unsigned int rrEntries
Recent requests table parameteres.
Definition bop.hh:68
const unsigned int tagMask
Definition bop.hh:69
std::vector< OffsetListEntry >::iterator offsetsListIterator
Current test offset index.
Definition bop.hh:110
const unsigned int badScore
Definition bop.hh:66
const bool delayQueueEnabled
Delay queue parameters.
Definition bop.hh:71
const unsigned int scoreMax
Learning phase parameters.
Definition bop.hh:64
std::pair< int16_t, uint8_t > OffsetListEntry
Structure to save the offset and the score.
Definition bop.hh:79
std::vector< Addr > rrRight
Definition bop.hh:76
bool issuePrefetchRequests
Hardware prefetcher enabled.
Definition bop.hh:104
Addr tag(Addr addr) const
Generate the tag for the specified address based on the tag bits and the block size.
Definition bop.cc:202
void delayQueueEventWrapper()
Event to handle the delay queue processing.
Definition bop.cc:108
void bestOffsetLearning(Addr)
Learning phase of the BOP.
Definition bop.cc:226
const unsigned int roundMax
Definition bop.hh:65
Addr phaseBestOffset
Current best offset found in the learning phase.
Definition bop.hh:108
EventFunctionWrapper delayQueueEvent
Definition bop.hh:101
void notifyFill(const CacheAccessProbeArg &arg) override
Update the RR right table after a prefetch fill.
Definition bop.cc:315
unsigned int degree
The prefetch degree, i.e.
Definition bop.hh:157
std::vector< OffsetListEntry > offsetsList
Definition bop.hh:80
bool testRR(Addr) const
Test if @X-O is hitting in the RR table to update the offset score.
Definition bop.cc:208
void insertIntoRR(Addr addr, Addr addr_tag, unsigned int way)
Insert the specified address into the RR table.
Definition bop.cc:161
void resetScores()
Reset all the scores from the offset list.
Definition bop.cc:194
Addr bestOffset
Current best offset to issue prefetches.
Definition bop.hh:106
const unsigned int delayTicks
Definition bop.hh:73
Class containing the information needed by the prefetch to train and generate new prefetch requests.
Definition base.hh:111
STL deque class.
Definition stl.hh:44
STL pair class.
Definition stl.hh:58
STL vector class.
Definition stl.hh:37
Bitfield< 5 > t
Definition misc_types.hh:71
Bitfield< 30, 0 > index
Bitfield< 0 > p
Bitfield< 3 > x
Definition pagetable.hh:74
Bitfield< 3 > addr
Definition types.hh:84
Copyright (c) 2024 Arm Limited All rights reserved.
Definition binary32.hh:36
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
uint64_t Tick
Tick count type.
Definition types.hh:58
Declaration of the Packet class.
Provides generic cache lookup functions.
In a first implementation of the BO prefetcher, both banks of the RR were written simultaneously when...
Definition bop.hh:89
DelayQueueEntry(Addr x, Tick t)
Definition bop.hh:93

Generated on Mon Jan 13 2025 04:28:38 for gem5 by doxygen 1.9.8