File: GenXCloneIndirectFunctions.cpp

package info (click to toggle)
intel-graphics-compiler 1.0.12504.6-1%2Bdeb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 83,912 kB
  • sloc: cpp: 910,147; lisp: 202,655; ansic: 15,197; python: 4,025; yacc: 2,241; lex: 1,570; pascal: 244; sh: 104; makefile: 25
file content (208 lines) | stat: -rw-r--r-- 6,945 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*========================== begin_copyright_notice ============================

Copyright (C) 2022 Intel Corporation

SPDX-License-Identifier: MIT

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

//===----------------------------------------------------------------------===//
//
/// GenXCloneIndirectFunctions
/// --------------------------
///
/// VISA has a restriction that a function can be called either directly or
/// indirectly but a combination of these two methods are not permitted for a
/// single function. This restriction rises two problems that this pass solves:
///
/// 1. We do not know all call instructions of an extern function until final
/// linkage happens. Hence all the unknown call of the function is thought to be
/// always indirect. But the function's module can contain direct calls to it
/// that's why we create a clone function:
///   * Original function linkage type is set to external as it is expected to
///   be called indirectly;
///   * A function with external linkage type and the name of the original
///   function with "direct" suffix is created. This is a copy of the original
///   function.
/// Thus, direct calls and indirect ones are separated and all unknown possible
/// calls from other modules will original function without any need to change
/// something on their side.
///
///   Before:
///
///     direct calls   --> |
///                        | --> external foo()
///     indirect calls --> |
///
///   After:
///                       clone function
///                           |
///                           v
///     direct calls   --> internal foo_direct()
///     indirect calls --> external foo()
///                           ^
///                           |
///                    original function
///
/// 2. An internal function can also be called directly and indirectly inside a
/// module. The idea is the same: an internal clone function is created,
/// and the calls are separated.
///
//===----------------------------------------------------------------------===//

#include "llvmWrapper/IR/Value.h"
#include "vc/GenXOpts/GenXOpts.h"
#include "vc/InternalIntrinsics/InternalIntrinsics.h"
#include "vc/Support/BackendConfig.h"
#include "vc/Utils/GenX/Intrinsics.h"
#include "vc/Utils/GenX/KernelInfo.h"
#include <llvm/GenXIntrinsics/GenXIntrinsics.h>
#include <llvm/IR/InstVisitor.h>
#include <llvm/InitializePasses.h>
#include <llvm/Pass.h>
#include <llvm/Support/CommandLine.h>
#include <llvm/Support/Debug.h>
#include <llvm/Transforms/Utils/Cloning.h>

using namespace llvm;

static cl::opt<bool> EnableCloneIndirectFunctions(
    "vc-enable-clone-indirect-functions",
    llvm::cl::desc("Enable/disable GenXCloneIndirectFunctions"), cl::init(true),
    cl::Hidden);

namespace {

class GenXCloneIndirectFunctions
    : public ModulePass,
      public InstVisitor<GenXCloneIndirectFunctions> {
  std::vector<std::pair<Function *, bool>> IndirectFuncs;

public:
  static char ID;
  GenXCloneIndirectFunctions() : ModulePass(ID) {
    initializeGenXCloneIndirectFunctionsPass(*PassRegistry::getPassRegistry());
  }

  void getAnalysisUsage(AnalysisUsage &AU) const override {
    AU.addRequired<GenXBackendConfig>();
  }

  StringRef getPassName() const override {
    return "GenXCloneIndirectFunctions";
  }

  bool runOnModule(Module &M) override;

  void visitFunction(Function &F);
};

} // namespace

void GenXCloneIndirectFunctions::visitFunction(Function &F) {
  if (GenXIntrinsic::isAnyNonTrivialIntrinsic(&F))
    return;
  if (vc::InternalIntrinsic::isInternalNonTrivialIntrinsic(&F))
    return;
  if (vc::isEmulationFunction(F))
    return;
  if (vc::isKernel(&F))
    return;
  if (vc::isCMCallable(F))
    return;

  if (!F.hasLocalLinkage()) {
    IndirectFuncs.emplace_back(&F, true);
    return;
  }

  IGC_ASSERT_MESSAGE(!F.isDeclaration(), "Declaration with local linkage?");
  if (F.hasAddressTaken())
    IndirectFuncs.emplace_back(&F, false);
}

static void cloneIndirectFunction(Function &F,
                                  GlobalValue::LinkageTypes IndirectLinkage) {
  // Clone the function F for direct calls
  ValueToValueMapTy VMap;
  auto *Direct = CloneFunction(&F, VMap);
  Direct->setName(F.getName() + "_direct");
  Direct->setLinkage(GlobalValue::InternalLinkage);

  // Replace all uses of the original function that are direct calls.
  IGCLLVM::replaceUsesWithIf(&F, Direct, [&F](Use &U) {
    auto *CI = dyn_cast<CallInst>(U.getUser());
    return CI && CI->getCalledFunction() == &F;
  });

  // Original function is an indirect stack call
  if (!vc::requiresStackCall(&F))
    F.addFnAttr(genx::FunctionMD::CMStackCall);
}

bool GenXCloneIndirectFunctions::runOnModule(Module &M) {
  if (!EnableCloneIndirectFunctions)
    return false;

  auto &&BECfg = getAnalysis<GenXBackendConfig>();
  IGC_ASSERT_MESSAGE(
    llvm::none_of(M.functions(),
      [&](const Function& F) { return F.hasAddressTaken() && BECfg.directCallsOnly(F.getName()); }),
    "A function has address taken inside the module that contradicts "
    "DirectCallsOnly option");

  // If direct calls are forced for all functions.
  if (BECfg.directCallsOnly()) {
    return false;
  }

  visit(M);

  bool Modified = false;

  for (auto [F, IsExternal] : IndirectFuncs) {
    if (BECfg.directCallsOnly(F->getName())) continue;

    auto CheckDirectCall = [Func = F](User *U) {
      auto *CI = dyn_cast<CallInst>(U);
      return CI && CI->getCalledFunction() == Func;
    };

    if (F->isDeclaration()) {
      IGC_ASSERT_MESSAGE(IsExternal,
                         "Internal-linkage function cannot be a declaration");
      if (!vc::requiresStackCall(F)) {
        F->addFnAttr(genx::FunctionMD::CMStackCall);
        Modified = true;
      }
      IGC_ASSERT_MESSAGE(vc::isIndirect(F) || F->hasExternalLinkage(),
                         "Must be indirect");
    } else if (llvm::any_of(F->users(), CheckDirectCall)) {
      cloneIndirectFunction(*F, IsExternal ? GlobalValue::ExternalLinkage
                                           : GlobalValue::InternalLinkage);
      Modified = true;
    } else {
      // If the function is not called directly, there is no need to clone
      if (!vc::requiresStackCall(F)) {
        F->addFnAttr(genx::FunctionMD::CMStackCall);
        Modified = true;
      }
    }

    IGC_ASSERT_MESSAGE(vc::isIndirect(F), "Must be indirect");
  }

  IndirectFuncs.clear();
  return Modified;
}

char GenXCloneIndirectFunctions::ID = 0;
INITIALIZE_PASS_BEGIN(GenXCloneIndirectFunctions, "GenXCloneIndirectFunctions",
                      "GenXCloneIndirectFunctions", false, false)
INITIALIZE_PASS_DEPENDENCY(GenXBackendConfig)
INITIALIZE_PASS_END(GenXCloneIndirectFunctions, "GenXCloneIndirectFunctions",
                    "GenXCloneIndirectFunctions", false, false)

ModulePass *llvm::createGenXCloneIndirectFunctionsPass() {
  return new GenXCloneIndirectFunctions();
}