gem5 v24.1.0.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
sms.cc
Go to the documentation of this file.
1/*
2 * Copyright (c) 2024 Samsung Electronics
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
35
36#include "debug/HWPrefetch.hh"
37#include "params/SmsPrefetcher.hh"
38
39namespace gem5
40{
41
42namespace prefetch
43{
44
45Sms::Sms(const SmsPrefetcherParams &p)
46 : Queued(p), Max_Contexts(p.ft_size), MAX_PHTSize(p.pht_size),
47 Region_Size(p.region_size)
48{
49 AGT.clear();
50 AGTPC.clear();
51 FT.clear();
52 PHT.clear();
53 fifoFT.clear();
54 lruAGT.clear();
55 lruPHT.clear();
56
57}
58void
60{
61 //Check if any active generation has ended
62 Addr region_base = roundDown(info.addr, Region_Size);
63 std::pair <Addr,Addr> pc_offset = AGTPC[region_base];
64 if (AGT.find(region_base) != AGT.end()) {
65 //remove old recording
66 if (PHT.find(pc_offset) != PHT.end()) {
67 PHT[pc_offset].clear();
68 }
69 //Move from AGT to PHT
70 for (std::set<Addr>::iterator it = AGT[region_base].begin();
71 it != AGT[region_base].end(); it ++) {
72 PHT[pc_offset].insert(*it);
73 }
74 lruPHT.push_front(pc_offset);
75 }
76
77 while (PHT.size() > MAX_PHTSize) {
78 PHT.erase(lruPHT.back());
79 lruPHT.pop_back();
80 }
81
82 AGTPC.erase(region_base);
83 AGT.erase(region_base);
84}
85void
88 const CacheAccessor &cache)
89{
90
91 if (!pfi.hasPC()) {
92 DPRINTF(HWPrefetch, "Ignoring request with no PC.\n");
93 return;
94 }
95
96 Addr blk_addr = blockAddress(pfi.getAddr());
97 Addr pc = pfi.getPC();
98 Addr region_base = roundDown(blk_addr, Region_Size);
99 Addr offset = blk_addr - region_base;
100
101 //Training
102 if (AGT.find(region_base) != AGT.end()) {
103 assert (FT.find(region_base) == FT.end());
104 // Record Pattern
105 AGT[region_base].insert(offset);
106 //update LRU
107 for (std::deque <Addr>::iterator lit = lruAGT.begin();
108 lit != lruAGT.end(); lit ++) {
109 if ((*lit) == region_base) {
110 lruAGT.erase(lit);
111 lruAGT.push_front(region_base);
112 break;
113 }
114 }
115 } else if (FT.find(region_base) != FT.end()) {
116 //move entry from FT to AGT
117 AGT[region_base].insert(FT[region_base].second);
118 AGTPC[region_base] = FT[region_base];
119 lruAGT.push_front(region_base);
120 //Record latest offset
121 AGT[region_base].insert(offset);
122 //Recycle FT entry
123 FT.erase(region_base);
124 //Make space for next entry
125 while (AGT.size() > Max_Contexts) {
126 AGT.erase(lruAGT.back());
127 AGTPC.erase(lruAGT.back());
128 lruAGT.pop_back();
129 }
130 } else {
131 // Trigger Access
132 FT[region_base] = std::make_pair (pc,offset);
133 fifoFT.push_front(region_base);
134 while (FT.size() > Max_Contexts) {
135 FT.erase(fifoFT.back());
136 fifoFT.pop_back();
137 }
138 }
139
140 //Prediction
141 std::pair <Addr, Addr> pc_offset = std::make_pair(pc,offset);
142 if (PHT.find(pc_offset) != PHT.end()) {
143 for (std::set<Addr>::iterator it = PHT[pc_offset].begin();
144 it != PHT[pc_offset].end(); it ++) {
145 Addr pref_addr = blockAddress(region_base + (*it));
146 addresses.push_back(AddrPriority(pref_addr,0));
147 }
148 for (std::deque < std::pair <Addr,Addr> >::iterator lit
149 = lruPHT.begin(); lit != lruPHT.end(); lit ++) {
150 if ((*lit) == pc_offset) {
151 lruPHT.erase(lit);
152 lruPHT.push_front(pc_offset);
153 break;
154 }
155 }
156 }
157
158}
159
160} // namespace prefetch
161} // namespace gem5
#define DPRINTF(x,...)
Definition trace.hh:209
Class containing the information needed by the prefetch to train and generate new prefetch requests.
Definition base.hh:111
Addr getPC() const
Returns the program counter that generated this request.
Definition base.hh:156
Addr getAddr() const
Obtains the address value of this Prefetcher address.
Definition base.hh:138
bool hasPC() const
Returns true if the associated program counter is valid.
Definition base.hh:166
Addr blockAddress(Addr a) const
Determine the address of the block in which a lays.
Definition base.cc:202
std::list< DeferredPacket >::iterator iterator
Definition queued.hh:148
std::pair< Addr, int32_t > AddrPriority
Definition queued.hh:192
std::map< Addr, std::pair< Addr, Addr > > AGTPC
Definition sms.hh:60
void calculatePrefetch(const PrefetchInfo &pfi, std::vector< AddrPriority > &addresses, const CacheAccessor &cache) override
Definition sms.cc:86
Sms(const SmsPrefetcherParams &p)
Definition sms.cc:45
const int Max_Contexts
Definition sms.hh:55
std::map< Addr, std::pair< Addr, Addr > > FT
Definition sms.hh:61
std::deque< std::pair< Addr, Addr > > lruPHT
Definition sms.hh:65
const Addr Region_Size
Definition sms.hh:57
std::deque< Addr > lruAGT
Definition sms.hh:64
std::map< std::pair< Addr, Addr >, std::set< Addr > > PHT
Definition sms.hh:62
void notifyEvict(const EvictionInfo &info) override
Notify prefetcher of cache eviction.
Definition sms.cc:59
std::deque< Addr > fifoFT
Definition sms.hh:63
std::map< Addr, std::set< Addr > > AGT
Definition sms.hh:59
const uint64_t MAX_PHTSize
Definition sms.hh:56
STL deque class.
Definition stl.hh:44
STL vector class.
Definition stl.hh:37
static constexpr T roundDown(const T &val, const U &align)
This function is used to align addresses in memory.
Definition intmath.hh:279
Bitfield< 23, 0 > offset
Definition types.hh:144
Bitfield< 4 > pc
Bitfield< 0 > p
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
Describes a SMS prefetcher.
Provides generic cache lookup functions.
A data contents update is composed of the updated block's address, the old contents,...
Addr addr
The updated block's address.

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