File: PrivateMemoryUsageAnalysis.hpp

package info (click to toggle)
intel-graphics-compiler2 2.16.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 106,644 kB
  • sloc: cpp: 805,640; lisp: 287,672; ansic: 16,414; python: 3,952; yacc: 2,588; lex: 1,666; pascal: 313; sh: 186; makefile: 35
file content (100 lines) | stat: -rw-r--r-- 3,596 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*========================== begin_copyright_notice ============================

Copyright (C) 2017-2021 Intel Corporation

SPDX-License-Identifier: MIT

============================= end_copyright_notice ===========================*/

#pragma once

#include "Compiler/MetaDataUtilsWrapper.h"
#include "Compiler/CodeGenContextWrapper.hpp"
#include "common/LLVMWarningsPush.hpp"
#include <llvm/Pass.h>
#include <llvm/IR/InstVisitor.h>
#include "common/LLVMWarningsPop.hpp"

namespace IGC {
/// @brief  PrivateMemoryUsageAnalysis pass used for analyzing if functions use private memory.
///         This is done by analyzing the alloca instructions.

class PrivateMemoryUsageAnalysis : public llvm::ModulePass, public llvm::InstVisitor<PrivateMemoryUsageAnalysis> {
public:
  // Pass identification, replacement for typeid
  static char ID;

  /// @brief  Constructor
  PrivateMemoryUsageAnalysis();

  /// @brief  Destructor
  ~PrivateMemoryUsageAnalysis() {}

  /// @brief  Provides name of pass
  virtual llvm::StringRef getPassName() const override { return "PrivateMemoryUsageAnalysis"; }

  virtual void getAnalysisUsage(llvm::AnalysisUsage &AU) const override {
    AU.addRequired<MetaDataUtilsWrapper>();
    AU.addRequired<CodeGenContextWrapper>();
  }

  /// @brief  Main entry point.
  ///         Runs on all functions defined in the given module, finds all alloca instructions,
  ///         analyzes them and checks if the functions use private memory.
  ///         If so, private base implicit argument is added to the implicit arguments of the function
  /// @param  M The destination module.
  virtual bool runOnModule(llvm::Module &M) override;

  /// @brief  Alloca instructions visitor.
  ///         Analyzes if there are private memory allocation.
  /// @param  AI The alloca instruction.
  void visitAllocaInst(llvm::AllocaInst &AI);

  /// @brief  BinaryOperator instructions visitor.
  ///         Analyzes if there are private memory allocation.
  /// @param  I The binary op
  void visitBinaryOperator(llvm::BinaryOperator &I);

  /// @brief  CallInst instructions visitor.
  ///         Analyzes if there are private memory allocation.
  /// @param  CI The binary op
  void visitCallInst(llvm::CallInst &CI);

  /// @brief  LoadInst instructions visitor.
  ///         Analyzes if there are struct types loaded.
  /// @param  LI The load instruction.
  void visitLoadInst(llvm::LoadInst &LI);

  /// @brief  StoreInst instructions visitor.
  ///         Analyzes if there are struct types stored.
  /// @param  SI The store instruction.
  void visitStoreInst(llvm::StoreInst &SI);

  /// @brief  GetElementPtrInst instructions visitor.
  ///         Analyzes if there are struct types accessed.
  /// @param  GEP The GEP instruction.
  void visitGetElementPtrInst(llvm::GetElementPtrInst &GEP);

private:
  /// @brief  Function entry point.
  ///         Finds all alloca instructions in this function, analyzes them and adds
  ///         private base implicit argument if needed.
  /// @param  F The destination function.
  bool runOnFunction(llvm::Function &F);

  /// @brief  Type visitor.
  ///         Checks if the type is a non-opaque struct.
  /// @param  Ty The type to inspect.
  inline void visitType(llvm::Type *Ty);

  /// @brief  A flag signaling if the current function uses private memory
  bool m_hasPrivateMem;

  /// @brief A flag signaling if the platform has partial fp64 emulation
  bool m_hasDPDivSqrtEmu = false;

  /// @brief  MetaData utils used to generate LLVM metadata
  IGCMD::MetaDataUtils *m_pMDUtils = nullptr;
};

} // namespace IGC