LLVM  8.0.1
AMDGPUOpenCLEnqueuedBlockLowering.cpp
Go to the documentation of this file.
1 //===- AMDGPUOpenCLEnqueuedBlockLowering.cpp - Lower enqueued block -------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // \file
11 // This post-linking pass replaces the function pointer of enqueued
12 // block kernel with a global variable (runtime handle) and adds
13 // "runtime-handle" attribute to the enqueued block kernel.
14 //
15 // In LLVM CodeGen the runtime-handle metadata will be translated to
16 // RuntimeHandle metadata in code object. Runtime allocates a global buffer
17 // for each kernel with RuntimeHandel metadata and saves the kernel address
18 // required for the AQL packet into the buffer. __enqueue_kernel function
19 // in device library knows that the invoke function pointer in the block
20 // literal is actually runtime handle and loads the kernel address from it
21 // and put it into AQL packet for dispatching.
22 //
23 // This cannot be done in FE since FE cannot create a unique global variable
24 // with external linkage across LLVM modules. The global variable with internal
25 // linkage does not work since optimization passes will try to replace loads
26 // of the global variable with its initialization value.
27 //
28 // It also identifies the kernels directly or indirectly enqueues kernels
29 // and adds "calls-enqueue-kernel" function attribute to them, which will
30 // be used to determine whether to emit runtime metadata for the kernel
31 // enqueue related hidden kernel arguments.
32 //
33 //===----------------------------------------------------------------------===//
34 
35 #include "AMDGPU.h"
36 #include "llvm/ADT/DenseSet.h"
37 #include "llvm/ADT/StringRef.h"
38 #include "llvm/IR/Constants.h"
39 #include "llvm/IR/DerivedTypes.h"
40 #include "llvm/IR/Instructions.h"
41 #include "llvm/IR/Mangler.h"
42 #include "llvm/IR/Module.h"
43 #include "llvm/IR/User.h"
44 #include "llvm/Pass.h"
45 #include "llvm/Support/Debug.h"
47 
48 #define DEBUG_TYPE "amdgpu-lower-enqueued-block"
49 
50 using namespace llvm;
51 
52 namespace {
53 
54 /// Lower enqueued blocks.
55 class AMDGPUOpenCLEnqueuedBlockLowering : public ModulePass {
56 public:
57  static char ID;
58 
59  explicit AMDGPUOpenCLEnqueuedBlockLowering() : ModulePass(ID) {}
60 
61 private:
62  bool runOnModule(Module &M) override;
63 };
64 
65 } // end anonymous namespace
66 
68 
71 
72 INITIALIZE_PASS(AMDGPUOpenCLEnqueuedBlockLowering, DEBUG_TYPE,
73  "Lower OpenCL enqueued blocks", false, false)
74 
76  return new AMDGPUOpenCLEnqueuedBlockLowering();
77 }
78 
79 /// Collect direct or indrect callers of \p F and save them
80 /// to \p Callers.
81 static void collectCallers(Function *F, DenseSet<Function *> &Callers) {
82  for (auto U : F->users()) {
83  if (auto *CI = dyn_cast<CallInst>(&*U)) {
84  auto *Caller = CI->getParent()->getParent();
85  if (Callers.insert(Caller).second)
86  collectCallers(Caller, Callers);
87  }
88  }
89 }
90 
91 /// If \p U is instruction or constant, collect functions which directly or
92 /// indirectly use it.
94  if (auto *I = dyn_cast<Instruction>(U)) {
95  auto *F = I->getParent()->getParent();
96  if (Funcs.insert(F).second)
97  collectCallers(F, Funcs);
98  return;
99  }
100  if (!isa<Constant>(U))
101  return;
102  for (auto UU : U->users())
103  collectFunctionUsers(&*UU, Funcs);
104 }
105 
106 bool AMDGPUOpenCLEnqueuedBlockLowering::runOnModule(Module &M) {
107  DenseSet<Function *> Callers;
108  auto &C = M.getContext();
109  bool Changed = false;
110  for (auto &F : M.functions()) {
111  if (F.hasFnAttribute("enqueued-block")) {
112  if (!F.hasName()) {
114  Mangler::getNameWithPrefix(Name, "__amdgpu_enqueued_kernel",
115  M.getDataLayout());
116  F.setName(Name);
117  }
118  LLVM_DEBUG(dbgs() << "found enqueued kernel: " << F.getName() << '\n');
119  auto RuntimeHandle = (F.getName() + ".runtime_handle").str();
120  auto T = ArrayType::get(Type::getInt64Ty(C), 2);
121  auto *GV = new GlobalVariable(
122  M, T,
123  /*IsConstant=*/false, GlobalValue::ExternalLinkage,
124  /*Initializer=*/Constant::getNullValue(T), RuntimeHandle,
125  /*InsertBefore=*/nullptr, GlobalValue::NotThreadLocal,
127  /*IsExternallyInitialized=*/false);
128  LLVM_DEBUG(dbgs() << "runtime handle created: " << *GV << '\n');
129 
130  for (auto U : F.users()) {
131  auto *UU = &*U;
132  if (!isa<ConstantExpr>(UU))
133  continue;
134  collectFunctionUsers(UU, Callers);
135  auto *BitCast = cast<ConstantExpr>(UU);
136  auto *NewPtr = ConstantExpr::getPointerCast(GV, BitCast->getType());
137  BitCast->replaceAllUsesWith(NewPtr);
138  F.addFnAttr("runtime-handle", RuntimeHandle);
139  F.setLinkage(GlobalValue::ExternalLinkage);
140  Changed = true;
141  }
142  }
143  }
144 
145  for (auto F : Callers) {
146  if (F->getCallingConv() != CallingConv::AMDGPU_KERNEL)
147  continue;
148  F->addFnAttr("calls-enqueue-kernel");
149  LLVM_DEBUG(dbgs() << "mark enqueue_kernel caller:" << F->getName() << '\n');
150  }
151  return Changed;
152 }
static void collectCallers(Function *F, DenseSet< Function *> &Callers)
Collect direct or indrect callers of F and save them to Callers.
uint64_t CallInst * C
This class represents lattice values for constants.
Definition: AllocatorList.h:24
A Module instance is used to store all the information related to an LLVM module. ...
Definition: Module.h:65
Implements a dense probed hash-table based set.
Definition: DenseSet.h:250
Externally visible function.
Definition: GlobalValue.h:49
char & AMDGPUOpenCLEnqueuedBlockLoweringID
F(f)
static IntegerType * getInt64Ty(LLVMContext &C)
Definition: Type.cpp:177
constexpr char RuntimeHandle[]
Key for Kernel::Attr::Metadata::mRuntimeHandle.
static Constant * getNullValue(Type *Ty)
Constructor to create a &#39;0&#39; constant of arbitrary type.
Definition: Constants.cpp:265
amdgpu Simplify well known AMD library false Value Value const Twine & Name
const DataLayout & getDataLayout() const
Get the data layout for the module&#39;s target platform.
Definition: Module.cpp:371
LLVMContext & getContext() const
Get the global data context.
Definition: Module.h:244
ModulePass * createAMDGPUOpenCLEnqueuedBlockLoweringPass()
void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
Definition: Value.cpp:429
iterator_range< iterator > functions()
Definition: Module.h:606
This file contains the declarations for the subclasses of Constant, which represent the different fla...
INITIALIZE_PASS(AMDGPUOpenCLEnqueuedBlockLowering, DEBUG_TYPE, "Lower OpenCL enqueued blocks", false, false) ModulePass *llvm
static void collectFunctionUsers(User *U, DenseSet< Function *> &Funcs)
If U is instruction or constant, collect functions which directly or indirectly use it...
Address space for global memory (RAT0, VTX0).
Definition: AMDGPU.h:256
static Constant * getPointerCast(Constant *C, Type *Ty)
Create a BitCast, AddrSpaceCast, or a PtrToInt cast constant expression.
Definition: Constants.cpp:1587
Module.h This file contains the declarations for the Module class.
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:133
iterator_range< user_iterator > users()
Definition: Value.h:400
#define I(x, y, z)
Definition: MD5.cpp:58
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition: Pass.h:225
static ArrayType * get(Type *ElementType, uint64_t NumElements)
This static method is the primary way to construct an ArrayType.
Definition: Type.cpp:581
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable&#39;s name.
Definition: Mangler.cpp:112
#define LLVM_DEBUG(X)
Definition: Debug.h:123
Calling convention for AMDGPU code object kernels.
Definition: CallingConv.h:201