1 //===- AMDGPUPerfHintAnalysis.cpp - analysis of functions memory traffic --===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
11 /// \brief Analyzes if a function potentially memory bound and if a kernel
12 /// kernel may benefit from limiting number of waves to reduce cache thrashing.
14 //===----------------------------------------------------------------------===//
17 #include "AMDGPUPerfHintAnalysis.h"
18 #include "Utils/AMDGPUBaseInfo.h"
19 #include "llvm/ADT/SmallSet.h"
20 #include "llvm/ADT/Statistic.h"
21 #include "llvm/Analysis/ValueTracking.h"
22 #include "llvm/CodeGen/TargetLowering.h"
23 #include "llvm/CodeGen/TargetPassConfig.h"
24 #include "llvm/CodeGen/TargetSubtargetInfo.h"
25 #include "llvm/IR/Constants.h"
26 #include "llvm/IR/Instructions.h"
27 #include "llvm/IR/IntrinsicInst.h"
28 #include "llvm/IR/Module.h"
29 #include "llvm/IR/ValueMap.h"
30 #include "llvm/Support/CommandLine.h"
34 #define DEBUG_TYPE "amdgpu-perf-hint"
36 static cl::opt
<unsigned>
37 MemBoundThresh("amdgpu-membound-threshold", cl::init(50), cl::Hidden
,
38 cl::desc("Function mem bound threshold in %"));
40 static cl::opt
<unsigned>
41 LimitWaveThresh("amdgpu-limit-wave-threshold", cl::init(50), cl::Hidden
,
42 cl::desc("Kernel limit wave threshold in %"));
44 static cl::opt
<unsigned>
45 IAWeight("amdgpu-indirect-access-weight", cl::init(1000), cl::Hidden
,
46 cl::desc("Indirect access memory instruction weight"));
48 static cl::opt
<unsigned>
49 LSWeight("amdgpu-large-stride-weight", cl::init(1000), cl::Hidden
,
50 cl::desc("Large stride memory access weight"));
52 static cl::opt
<unsigned>
53 LargeStrideThresh("amdgpu-large-stride-threshold", cl::init(64), cl::Hidden
,
54 cl::desc("Large stride memory access threshold"));
56 STATISTIC(NumMemBound
, "Number of functions marked as memory bound");
57 STATISTIC(NumLimitWave
, "Number of functions marked as needing limit wave");
59 char llvm::AMDGPUPerfHintAnalysis::ID
= 0;
60 char &llvm::AMDGPUPerfHintAnalysisID
= AMDGPUPerfHintAnalysis::ID
;
62 INITIALIZE_PASS(AMDGPUPerfHintAnalysis
, DEBUG_TYPE
,
63 "Analysis if a function is memory bound", true, true)
67 struct AMDGPUPerfHint
{
68 friend AMDGPUPerfHintAnalysis
;
71 AMDGPUPerfHint(AMDGPUPerfHintAnalysis::FuncInfoMap
&FIM_
,
72 const TargetLowering
*TLI_
)
73 : FIM(FIM_
), DL(nullptr), TLI(TLI_
) {}
75 void runOnFunction(Function
&F
);
78 struct MemAccessInfo
{
82 MemAccessInfo() : V(nullptr), Base(nullptr), Offset(0) {}
83 bool isLargeStride(MemAccessInfo
&Reference
) const;
84 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
85 Printable
print() const {
86 return Printable([this](raw_ostream
&OS
) {
87 OS
<< "Value: " << *V
<< '\n'
88 << "Base: " << *Base
<< " Offset: " << Offset
<< '\n';
94 MemAccessInfo
makeMemAccessInfo(Instruction
*) const;
96 MemAccessInfo LastAccess
; // Last memory access info
98 AMDGPUPerfHintAnalysis::FuncInfoMap
&FIM
;
100 const DataLayout
*DL
;
102 const TargetLowering
*TLI
;
104 void visit(const Function
&F
);
105 static bool isMemBound(const AMDGPUPerfHintAnalysis::FuncInfo
&F
);
106 static bool needLimitWave(const AMDGPUPerfHintAnalysis::FuncInfo
&F
);
108 bool isIndirectAccess(const Instruction
*Inst
) const;
110 /// Check if the instruction is large stride.
111 /// The purpose is to identify memory access pattern like:
115 /// In the above example, the second and third memory access will be marked
116 /// large stride memory access.
117 bool isLargeStride(const Instruction
*Inst
);
119 bool isGlobalAddr(const Value
*V
) const;
120 bool isLocalAddr(const Value
*V
) const;
121 bool isConstantAddr(const Value
*V
) const;
124 static const Value
*getMemoryInstrPtr(const Instruction
*Inst
) {
125 if (auto LI
= dyn_cast
<LoadInst
>(Inst
)) {
126 return LI
->getPointerOperand();
128 if (auto SI
= dyn_cast
<StoreInst
>(Inst
)) {
129 return SI
->getPointerOperand();
131 if (auto AI
= dyn_cast
<AtomicCmpXchgInst
>(Inst
)) {
132 return AI
->getPointerOperand();
134 if (auto AI
= dyn_cast
<AtomicRMWInst
>(Inst
)) {
135 return AI
->getPointerOperand();
137 if (auto MI
= dyn_cast
<AnyMemIntrinsic
>(Inst
)) {
138 return MI
->getRawDest();
144 bool AMDGPUPerfHint::isIndirectAccess(const Instruction
*Inst
) const {
145 LLVM_DEBUG(dbgs() << "[isIndirectAccess] " << *Inst
<< '\n');
146 SmallSet
<const Value
*, 32> WorkSet
;
147 SmallSet
<const Value
*, 32> Visited
;
148 if (const Value
*MO
= getMemoryInstrPtr(Inst
)) {
149 if (isGlobalAddr(MO
))
153 while (!WorkSet
.empty()) {
154 const Value
*V
= *WorkSet
.begin();
155 WorkSet
.erase(*WorkSet
.begin());
156 if (!Visited
.insert(V
).second
)
158 LLVM_DEBUG(dbgs() << " check: " << *V
<< '\n');
160 if (auto LD
= dyn_cast
<LoadInst
>(V
)) {
161 auto M
= LD
->getPointerOperand();
162 if (isGlobalAddr(M
) || isLocalAddr(M
) || isConstantAddr(M
)) {
163 LLVM_DEBUG(dbgs() << " is IA\n");
169 if (auto GEP
= dyn_cast
<GetElementPtrInst
>(V
)) {
170 auto P
= GEP
->getPointerOperand();
172 for (unsigned I
= 1, E
= GEP
->getNumIndices() + 1; I
!= E
; ++I
)
173 WorkSet
.insert(GEP
->getOperand(I
));
177 if (auto U
= dyn_cast
<UnaryInstruction
>(V
)) {
178 WorkSet
.insert(U
->getOperand(0));
182 if (auto BO
= dyn_cast
<BinaryOperator
>(V
)) {
183 WorkSet
.insert(BO
->getOperand(0));
184 WorkSet
.insert(BO
->getOperand(1));
188 if (auto S
= dyn_cast
<SelectInst
>(V
)) {
189 WorkSet
.insert(S
->getFalseValue());
190 WorkSet
.insert(S
->getTrueValue());
194 if (auto E
= dyn_cast
<ExtractElementInst
>(V
)) {
195 WorkSet
.insert(E
->getVectorOperand());
199 LLVM_DEBUG(dbgs() << " dropped\n");
202 LLVM_DEBUG(dbgs() << " is not IA\n");
206 void AMDGPUPerfHint::visit(const Function
&F
) {
207 auto FIP
= FIM
.insert(std::make_pair(&F
, AMDGPUPerfHintAnalysis::FuncInfo()));
211 AMDGPUPerfHintAnalysis::FuncInfo
&FI
= FIP
.first
->second
;
213 LLVM_DEBUG(dbgs() << "[AMDGPUPerfHint] process " << F
.getName() << '\n');
216 LastAccess
= MemAccessInfo();
218 if (getMemoryInstrPtr(&I
)) {
219 if (isIndirectAccess(&I
))
221 if (isLargeStride(&I
))
227 CallSite
CS(const_cast<Instruction
*>(&I
));
229 Function
*Callee
= CS
.getCalledFunction();
230 if (!Callee
|| Callee
->isDeclaration()) {
234 if (&F
== Callee
) // Handle immediate recursion
238 auto Loc
= FIM
.find(Callee
);
240 assert(Loc
!= FIM
.end() && "No func info");
241 FI
.MemInstCount
+= Loc
->second
.MemInstCount
;
242 FI
.InstCount
+= Loc
->second
.InstCount
;
243 FI
.IAMInstCount
+= Loc
->second
.IAMInstCount
;
244 FI
.LSMInstCount
+= Loc
->second
.LSMInstCount
;
245 } else if (auto *GEP
= dyn_cast
<GetElementPtrInst
>(&I
)) {
246 TargetLoweringBase::AddrMode AM
;
247 auto *Ptr
= GetPointerBaseWithConstantOffset(GEP
, AM
.BaseOffs
, *DL
);
248 AM
.BaseGV
= dyn_cast_or_null
<GlobalValue
>(const_cast<Value
*>(Ptr
));
249 AM
.HasBaseReg
= !AM
.BaseGV
;
250 if (TLI
->isLegalAddressingMode(*DL
, AM
, GEP
->getResultElementType(),
251 GEP
->getPointerAddressSpace()))
252 // Offset will likely be folded into load or store
262 void AMDGPUPerfHint::runOnFunction(Function
&F
) {
263 if (FIM
.find(&F
) != FIM
.end())
266 const Module
&M
= *F
.getParent();
267 DL
= &M
.getDataLayout();
270 auto Loc
= FIM
.find(&F
);
272 assert(Loc
!= FIM
.end() && "No func info");
273 LLVM_DEBUG(dbgs() << F
.getName() << " MemInst: " << Loc
->second
.MemInstCount
275 << " IAMInst: " << Loc
->second
.IAMInstCount
<< '\n'
276 << " LSMInst: " << Loc
->second
.LSMInstCount
<< '\n'
277 << " TotalInst: " << Loc
->second
.InstCount
<< '\n');
279 auto &FI
= Loc
->second
;
281 if (isMemBound(FI
)) {
282 LLVM_DEBUG(dbgs() << F
.getName() << " is memory bound\n");
286 if (AMDGPU::isEntryFunctionCC(F
.getCallingConv()) && needLimitWave(FI
)) {
287 LLVM_DEBUG(dbgs() << F
.getName() << " needs limit wave\n");
292 bool AMDGPUPerfHint::isMemBound(const AMDGPUPerfHintAnalysis::FuncInfo
&FI
) {
293 return FI
.MemInstCount
* 100 / FI
.InstCount
> MemBoundThresh
;
296 bool AMDGPUPerfHint::needLimitWave(const AMDGPUPerfHintAnalysis::FuncInfo
&FI
) {
297 return ((FI
.MemInstCount
+ FI
.IAMInstCount
* IAWeight
+
298 FI
.LSMInstCount
* LSWeight
) *
299 100 / FI
.InstCount
) > LimitWaveThresh
;
302 bool AMDGPUPerfHint::isGlobalAddr(const Value
*V
) const {
303 if (auto PT
= dyn_cast
<PointerType
>(V
->getType())) {
304 unsigned As
= PT
->getAddressSpace();
305 // Flat likely points to global too.
306 return As
== AMDGPUAS::GLOBAL_ADDRESS
|| As
== AMDGPUAS::FLAT_ADDRESS
;
311 bool AMDGPUPerfHint::isLocalAddr(const Value
*V
) const {
312 if (auto PT
= dyn_cast
<PointerType
>(V
->getType()))
313 return PT
->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS
;
317 bool AMDGPUPerfHint::isLargeStride(const Instruction
*Inst
) {
318 LLVM_DEBUG(dbgs() << "[isLargeStride] " << *Inst
<< '\n');
320 MemAccessInfo MAI
= makeMemAccessInfo(const_cast<Instruction
*>(Inst
));
321 bool IsLargeStride
= MAI
.isLargeStride(LastAccess
);
323 LastAccess
= std::move(MAI
);
325 return IsLargeStride
;
328 AMDGPUPerfHint::MemAccessInfo
329 AMDGPUPerfHint::makeMemAccessInfo(Instruction
*Inst
) const {
331 const Value
*MO
= getMemoryInstrPtr(Inst
);
333 LLVM_DEBUG(dbgs() << "[isLargeStride] MO: " << *MO
<< '\n');
334 // Do not treat local-addr memory access as large stride.
339 MAI
.Base
= GetPointerBaseWithConstantOffset(MO
, MAI
.Offset
, *DL
);
343 bool AMDGPUPerfHint::isConstantAddr(const Value
*V
) const {
344 if (auto PT
= dyn_cast
<PointerType
>(V
->getType())) {
345 unsigned As
= PT
->getAddressSpace();
346 return As
== AMDGPUAS::CONSTANT_ADDRESS
||
347 As
== AMDGPUAS::CONSTANT_ADDRESS_32BIT
;
352 bool AMDGPUPerfHint::MemAccessInfo::isLargeStride(
353 MemAccessInfo
&Reference
) const {
355 if (!Base
|| !Reference
.Base
|| Base
!= Reference
.Base
)
358 uint64_t Diff
= Offset
> Reference
.Offset
? Offset
- Reference
.Offset
359 : Reference
.Offset
- Offset
;
360 bool Result
= Diff
> LargeStrideThresh
;
361 LLVM_DEBUG(dbgs() << "[isLargeStride compare]\n"
362 << print() << "<=>\n"
363 << Reference
.print() << "Result:" << Result
<< '\n');
368 bool AMDGPUPerfHintAnalysis::runOnFunction(Function
&F
) {
369 auto *TPC
= getAnalysisIfAvailable
<TargetPassConfig
>();
373 const TargetMachine
&TM
= TPC
->getTM
<TargetMachine
>();
374 const TargetSubtargetInfo
*ST
= TM
.getSubtargetImpl(F
);
376 AMDGPUPerfHint
Analyzer(FIM
, ST
->getTargetLowering());
377 Analyzer
.runOnFunction(F
);
381 bool AMDGPUPerfHintAnalysis::isMemoryBound(const Function
*F
) const {
382 auto FI
= FIM
.find(F
);
386 return AMDGPUPerfHint::isMemBound(FI
->second
);
389 bool AMDGPUPerfHintAnalysis::needsWaveLimiter(const Function
*F
) const {
390 auto FI
= FIM
.find(F
);
394 return AMDGPUPerfHint::needLimitWave(FI
->second
);