[InstCombine] Signed saturation patterns
[llvm-complete.git] / lib / Target / AMDGPU / AMDGPUPerfHintAnalysis.h
blob9599e09fbd962c41ff79efc0ed7403edbe300ab6
1 //===- AMDGPUPerfHintAnalysis.h ---- analysis of memory traffic -*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 /// \file
10 /// \brief Analyzes if a function potentially memory bound and if a kernel
11 /// kernel may benefit from limiting number of waves to reduce cache thrashing.
12 ///
13 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_LIB_TARGET_AMDGPU_MDGPUPERFHINTANALYSIS_H
16 #define LLVM_LIB_TARGET_AMDGPU_MDGPUPERFHINTANALYSIS_H
18 #include "llvm/Analysis/CallGraphSCCPass.h"
19 #include "llvm/IR/ValueMap.h"
20 #include "llvm/Pass.h"
22 namespace llvm {
24 struct AMDGPUPerfHintAnalysis : public CallGraphSCCPass {
25 static char ID;
27 public:
28 AMDGPUPerfHintAnalysis() : CallGraphSCCPass(ID) {}
30 bool runOnSCC(CallGraphSCC &SCC) override;
32 void getAnalysisUsage(AnalysisUsage &AU) const override {
33 AU.setPreservesAll();
36 bool isMemoryBound(const Function *F) const;
38 bool needsWaveLimiter(const Function *F) const;
40 struct FuncInfo {
41 unsigned MemInstCount;
42 unsigned InstCount;
43 unsigned IAMInstCount; // Indirect access memory instruction count
44 unsigned LSMInstCount; // Large stride memory instruction count
45 FuncInfo() : MemInstCount(0), InstCount(0), IAMInstCount(0),
46 LSMInstCount(0) {}
49 typedef ValueMap<const Function*, FuncInfo> FuncInfoMap;
51 private:
53 FuncInfoMap FIM;
55 } // namespace llvm
56 #endif // LLVM_LIB_TARGET_AMDGPU_MDGPUPERFHINTANALYSIS_H