Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / lib / Target / AMDGPU / AMDGPUPerfHintAnalysis.h
blob2db8db6957cee3d5622af1b20e03e3d7eaabd17b
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"
21 namespace llvm {
23 struct AMDGPUPerfHintAnalysis : public CallGraphSCCPass {
24 static char ID;
26 public:
27 AMDGPUPerfHintAnalysis() : CallGraphSCCPass(ID) {}
29 bool runOnSCC(CallGraphSCC &SCC) override;
31 void getAnalysisUsage(AnalysisUsage &AU) const override {
32 AU.setPreservesAll();
35 bool isMemoryBound(const Function *F) const;
37 bool needsWaveLimiter(const Function *F) const;
39 struct FuncInfo {
40 unsigned MemInstCost;
41 unsigned InstCost;
42 unsigned IAMInstCost; // Indirect access memory instruction count
43 unsigned LSMInstCost; // Large stride memory instruction count
44 bool HasDenseGlobalMemAcc; // Set if at least 1 basic block has relatively
45 // high global memory access
46 FuncInfo()
47 : MemInstCost(0), InstCost(0), IAMInstCost(0), LSMInstCost(0),
48 HasDenseGlobalMemAcc(false) {}
51 typedef ValueMap<const Function*, FuncInfo> FuncInfoMap;
53 private:
55 FuncInfoMap FIM;
57 } // namespace llvm
58 #endif // LLVM_LIB_TARGET_AMDGPU_MDGPUPERFHINTANALYSIS_H