gem5 v23.0.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
stride.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Inria
3 * Copyright (c) 2012-2013, 2015 ARM Limited
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating
9 * to a hardware implementation of the functionality of the software
10 * licensed hereunder. You may use the software subject to the license
11 * terms below provided that you ensure that this notice is replicated
12 * unmodified and in its entirety in all distributions of the software,
13 * modified or unmodified, in source code or in binary form.
14 *
15 * Copyright (c) 2005 The Regents of The University of Michigan
16 * All rights reserved.
17 *
18 * Redistribution and use in source and binary forms, with or without
19 * modification, are permitted provided that the following conditions are
20 * met: redistributions of source code must retain the above copyright
21 * notice, this list of conditions and the following disclaimer;
22 * redistributions in binary form must reproduce the above copyright
23 * notice, this list of conditions and the following disclaimer in the
24 * documentation and/or other materials provided with the distribution;
25 * neither the name of the copyright holders nor the names of its
26 * contributors may be used to endorse or promote products derived from
27 * this software without specific prior written permission.
28 *
29 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
30 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
31 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
32 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
33 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
34 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
35 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
36 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
37 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
39 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 */
41
48
49#include <cassert>
50
51#include "base/intmath.hh"
52#include "base/logging.hh"
53#include "base/random.hh"
54#include "base/trace.hh"
55#include "debug/HWPrefetch.hh"
58#include "params/StridePrefetcher.hh"
59
60namespace gem5
61{
62
63namespace prefetch
64{
65
67 : TaggedEntry(), confidence(init_confidence)
68{
69 invalidate();
70}
71
72void
74{
76 lastAddr = 0;
77 stride = 0;
78 confidence.reset();
79}
80
81Stride::Stride(const StridePrefetcherParams &p)
82 : Queued(p),
83 initConfidence(p.confidence_counter_bits, p.initial_confidence),
84 threshConf(p.confidence_threshold/100.0),
85 useRequestorId(p.use_requestor_id),
87 pcTableInfo(p.table_assoc, p.table_entries, p.table_indexing_policy,
88 p.table_replacement_policy)
89{
90}
91
94{
95 // Check if table for given context exists
96 auto it = pcTables.find(context);
97 if (it != pcTables.end())
98 return &it->second;
99
100 // If table does not exist yet, create one
101 return allocateNewContext(context);
102}
103
106{
107 // Create new table
108 auto insertion_result = pcTables.insert(std::make_pair(context,
112
113 DPRINTF(HWPrefetch, "Adding context %i with stride entries\n", context);
114
115 // Get iterator to new pc table, and then return a pointer to the new table
116 return &(insertion_result.first->second);
117}
118
119void
121 std::vector<AddrPriority> &addresses)
122{
123 if (!pfi.hasPC()) {
124 DPRINTF(HWPrefetch, "Ignoring request with no PC.\n");
125 return;
126 }
127
128 // Get required packet info
129 Addr pf_addr = pfi.getAddr();
130 Addr pc = pfi.getPC();
131 bool is_secure = pfi.isSecure();
132 RequestorID requestor_id = useRequestorId ? pfi.getRequestorId() : 0;
133
134 // Get corresponding pc table
135 PCTable* pcTable = findTable(requestor_id);
136
137 // Search for entry in the pc table
138 StrideEntry *entry = pcTable->findEntry(pc, is_secure);
139
140 if (entry != nullptr) {
141 pcTable->accessEntry(entry);
142
143 // Hit in table
144 int new_stride = pf_addr - entry->lastAddr;
145 bool stride_match = (new_stride == entry->stride);
146
147 // Adjust confidence for stride entry
148 if (stride_match && new_stride != 0) {
149 entry->confidence++;
150 } else {
151 entry->confidence--;
152 // If confidence has dropped below the threshold, train new stride
153 if (entry->confidence.calcSaturation() < threshConf) {
154 entry->stride = new_stride;
155 }
156 }
157
158 DPRINTF(HWPrefetch, "Hit: PC %x pkt_addr %x (%s) stride %d (%s), "
159 "conf %d\n", pc, pf_addr, is_secure ? "s" : "ns",
160 new_stride, stride_match ? "match" : "change",
161 (int)entry->confidence);
162
163 entry->lastAddr = pf_addr;
164
165 // Abort prefetch generation if below confidence threshold
166 if (entry->confidence.calcSaturation() < threshConf) {
167 return;
168 }
169
170 // Generate up to degree prefetches
171 for (int d = 1; d <= degree; d++) {
172 // Round strides up to atleast 1 cacheline
173 int prefetch_stride = new_stride;
174 if (abs(new_stride) < blkSize) {
175 prefetch_stride = (new_stride < 0) ? -blkSize : blkSize;
176 }
177
178 Addr new_addr = pf_addr + d * prefetch_stride;
179 addresses.push_back(AddrPriority(new_addr, 0));
180 }
181 } else {
182 // Miss in table
183 DPRINTF(HWPrefetch, "Miss: PC %x pkt_addr %x (%s)\n", pc, pf_addr,
184 is_secure ? "s" : "ns");
185
186 StrideEntry* entry = pcTable->findVictim(pc);
187
188 // Insert new entry's data
189 entry->lastAddr = pf_addr;
190 pcTable->insertEntry(pc, is_secure, entry);
191 }
192}
193
194uint32_t
196{
197 const Addr hash1 = pc >> 1;
198 const Addr hash2 = hash1 >> tagShift;
199 return (hash1 ^ hash2) & setMask;
200}
201
202Addr
204{
205 return addr;
206}
207
208} // namespace prefetch
209} // namespace gem5
#define DPRINTF(x,...)
Definition trace.hh:210
Associative container based on the previosuly defined Entry type Each element is indexed by a key of ...
void insertEntry(Addr addr, bool is_secure, Entry *entry)
Indicate that an entry has just been inserted.
Entry * findVictim(Addr addr)
Find a victim to be replaced.
void accessEntry(Entry *entry)
Do an access to the entry, this is required to update the replacement information data.
Entry * findEntry(Addr addr, bool is_secure) const
Find an entry within the set.
const unsigned setMask
Mask out all bits that aren't part of the set index.
Definition base.hh:87
const int tagShift
The amount to shift the address to get the tag.
Definition base.hh:97
A tagged entry is an entry containing a tag.
virtual void invalidate()
Invalidate the block.
Class containing the information needed by the prefetch to train and generate new prefetch requests.
Definition base.hh:97
Addr getPC() const
Returns the program counter that generated this request.
Definition base.hh:142
bool isSecure() const
Returns true if the address targets the secure memory space.
Definition base.hh:133
Addr getAddr() const
Obtains the address value of this Prefetcher address.
Definition base.hh:124
bool hasPC() const
Returns true if the associated program counter is valid.
Definition base.hh:152
RequestorID getRequestorId() const
Gets the requestor ID that generated this address.
Definition base.hh:161
unsigned blkSize
The block size of the parent cache.
Definition base.hh:269
std::pair< Addr, int32_t > AddrPriority
Definition queued.hh:190
Addr extractTag(const Addr addr) const override
Generate the tag from the given address.
Definition stride.cc:203
uint32_t extractSet(const Addr addr) const override
Apply a hash function to calculate address set.
Definition stride.cc:195
AssociativeSet< StrideEntry > PCTable
Definition stride.hh:139
const SatCounter8 initConfidence
Initial confidence counter value for the pc tables.
Definition stride.hh:99
const double threshConf
Confidence threshold for prefetch generation.
Definition stride.hh:102
PCTable * allocateNewContext(int context)
Create a PC table for the given context.
Definition stride.cc:105
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses) override
Definition stride.cc:120
Stride(const StridePrefetcherParams &p)
Definition stride.cc:81
std::unordered_map< int, PCTable > pcTables
Definition stride.hh:140
const bool useRequestorId
Definition stride.hh:104
const struct gem5::prefetch::Stride::PCTableInfo pcTableInfo
PCTable * findTable(int context)
Try to find a table of entries for the given context.
Definition stride.cc:93
STL vector class.
Definition stl.hh:37
double calcSaturation() const
Calculate saturation percentile of the current counter's value with regard to its maximum possible va...
Bitfield< 21, 20 > stride
Bitfield< 9 > d
Definition misc_types.hh:64
Bitfield< 4 > pc
Bitfield< 0 > p
Bitfield< 3 > addr
Definition types.hh:84
Reference material can be found at the JEDEC website: UFS standard http://www.jedec....
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
Definition types.hh:147
uint16_t RequestorID
Definition request.hh:95
Describes a strided prefetcher.
replacement_policy::Base *const replacementPolicy
Definition stride.hh:117
BaseIndexingPolicy *const indexingPolicy
Definition stride.hh:116
Tagged by hashed PCs.
Definition stride.hh:130
StrideEntry(const SatCounter8 &init_confidence)
Definition stride.cc:66
void invalidate() override
Invalidate the block.
Definition stride.cc:73

Generated on Mon Jul 10 2023 15:32:04 for gem5 by doxygen 1.9.7