LLVM 20.0.0git
AMDGPUOpenCLEnqueuedBlockLowering.cpp
Go to the documentation of this file.
1//===- AMDGPUOpenCLEnqueuedBlockLowering.cpp - Lower enqueued block -------===//
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// This post-linking pass replaces the function pointer of enqueued
11// block kernel with a global variable (runtime handle) and adds
12// "runtime-handle" attribute to the enqueued block kernel.
13//
14// In LLVM CodeGen the runtime-handle metadata will be translated to
15// RuntimeHandle metadata in code object. Runtime allocates a global buffer
16// for each kernel with RuntimeHandle metadata and saves the kernel address
17// required for the AQL packet into the buffer. __enqueue_kernel function
18// in device library knows that the invoke function pointer in the block
19// literal is actually runtime handle and loads the kernel address from it
20// and put it into AQL packet for dispatching.
21//
22// This cannot be done in FE since FE cannot create a unique global variable
23// with external linkage across LLVM modules. The global variable with internal
24// linkage does not work since optimization passes will try to replace loads
25// of the global variable with its initialization value.
26//
27// It also identifies the kernels directly or indirectly enqueues kernels
28// and adds "calls-enqueue-kernel" function attribute to them, which will
29// be used to determine whether to emit runtime metadata for the kernel
30// enqueue related hidden kernel arguments.
31//
32//===----------------------------------------------------------------------===//
33
35#include "AMDGPU.h"
36#include "llvm/ADT/DenseSet.h"
38#include "llvm/IR/Constants.h"
40#include "llvm/IR/Mangler.h"
41#include "llvm/IR/Module.h"
42#include "llvm/Pass.h"
43#include "llvm/Support/Debug.h"
44
45#define DEBUG_TYPE "amdgpu-lower-enqueued-block"
46
47using namespace llvm;
48
49namespace {
50
51/// Lower enqueued blocks.
52class AMDGPUOpenCLEnqueuedBlockLowering {
53public:
54 bool run(Module &M);
55};
56
57class AMDGPUOpenCLEnqueuedBlockLoweringLegacy : public ModulePass {
58public:
59 static char ID;
60
61 explicit AMDGPUOpenCLEnqueuedBlockLoweringLegacy() : ModulePass(ID) {}
62
63private:
64 bool runOnModule(Module &M) override;
65};
66
67} // end anonymous namespace
68
69char AMDGPUOpenCLEnqueuedBlockLoweringLegacy::ID = 0;
70
72 AMDGPUOpenCLEnqueuedBlockLoweringLegacy::ID;
73
74INITIALIZE_PASS(AMDGPUOpenCLEnqueuedBlockLoweringLegacy, DEBUG_TYPE,
75 "Lower OpenCL enqueued blocks", false, false)
76
78 return new AMDGPUOpenCLEnqueuedBlockLoweringLegacy();
79}
80
81bool AMDGPUOpenCLEnqueuedBlockLoweringLegacy::runOnModule(Module &M) {
82 AMDGPUOpenCLEnqueuedBlockLowering Impl;
83 return Impl.run(M);
84}
85
88 AMDGPUOpenCLEnqueuedBlockLowering Impl;
89 if (Impl.run(M))
92}
93
94bool AMDGPUOpenCLEnqueuedBlockLowering::run(Module &M) {
96 auto &C = M.getContext();
97 bool Changed = false;
98
99 // ptr kernel_object, i32 private_segment_size, i32 group_segment_size
100 StructType *HandleTy = nullptr;
101
102 for (auto &F : M.functions()) {
103 if (F.hasFnAttribute("enqueued-block")) {
104 if (!F.hasName()) {
106 Mangler::getNameWithPrefix(Name, "__amdgpu_enqueued_kernel",
107 M.getDataLayout());
108 F.setName(Name);
109 }
110 LLVM_DEBUG(dbgs() << "found enqueued kernel: " << F.getName() << '\n');
111 auto RuntimeHandle = (F.getName() + ".runtime_handle").str();
112 if (!HandleTy) {
114 HandleTy =
116 "block.runtime.handle.t");
117 }
118
119 auto *GV = new GlobalVariable(
120 M, HandleTy,
121 /*isConstant=*/true, GlobalValue::ExternalLinkage,
122 /*Initializer=*/Constant::getNullValue(HandleTy), RuntimeHandle,
123 /*InsertBefore=*/nullptr, GlobalValue::NotThreadLocal,
125 /*isExternallyInitialized=*/true);
126 LLVM_DEBUG(dbgs() << "runtime handle created: " << *GV << '\n');
127
128 F.replaceAllUsesWith(ConstantExpr::getAddrSpaceCast(GV, F.getType()));
129 F.addFnAttr("runtime-handle", RuntimeHandle);
131 Changed = true;
132 }
133 }
134
135 return Changed;
136}
This file contains the declarations for the subclasses of Constant, which represent the different fla...
#define LLVM_DEBUG(...)
Definition: Debug.h:106
This file defines the DenseSet and SmallDenseSet classes.
std::string Name
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition: MD5.cpp:55
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition: PassSupport.h:38
This file defines the SmallString class.
PreservedAnalyses run(Module &M, ModuleAnalysisManager &MAM)
A container for analyses that lazily runs them and caches their results.
Definition: PassManager.h:253
static Constant * getAddrSpaceCast(Constant *C, Type *Ty, bool OnlyIfReduced=false)
Definition: Constants.cpp:2333
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
Definition: Constants.cpp:373
Implements a dense probed hash-table based set.
Definition: DenseSet.h:278
@ ExternalLinkage
Externally visible function.
Definition: GlobalValue.h:52
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV, bool CannotUsePrivateLabel) const
Print the appropriate prefix and the specified global variable's name.
Definition: Mangler.cpp:121
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition: Pass.h:251
virtual bool runOnModule(Module &M)=0
runOnModule - Virtual method overriden by subclasses to process the module being operated on.
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
static PointerType * getUnqual(Type *ElementType)
This constructs a pointer to an object of the specified type in the default address space (address sp...
Definition: DerivedTypes.h:686
A set of analyses that are preserved following a run of a transformation pass.
Definition: Analysis.h:111
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition: Analysis.h:114
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition: Analysis.h:117
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
Definition: SmallString.h:26
Class to represent struct types.
Definition: DerivedTypes.h:218
static StructType * create(LLVMContext &Context, StringRef Name)
This creates an identified struct.
Definition: Type.cpp:612
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
static IntegerType * getInt32Ty(LLVMContext &C)
@ GLOBAL_ADDRESS
Address space for global memory (RAT0, VTX0).
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition: CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
ModulePass * createAMDGPUOpenCLEnqueuedBlockLoweringLegacyPass()
char & AMDGPUOpenCLEnqueuedBlockLoweringLegacyID