LLVM 24.0.0git
SPIRVCtorDtorLowering.cpp
Go to the documentation of this file.
1//===-- SPIRVCtorDtorLowering.cpp - Handle global ctors and dtors --------===//
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// This pass creates a unified init and fini kernel with the required metadata
10// to call global constructors and destructors on SPIR-V targets.
11//
12//===----------------------------------------------------------------------===//
13
15#include "SPIRV.h"
18#include "llvm/IR/CallingConv.h"
19#include "llvm/IR/Constants.h"
20#include "llvm/IR/Function.h"
22#include "llvm/IR/IRBuilder.h"
23#include "llvm/IR/Module.h"
24#include "llvm/IR/Value.h"
25#include "llvm/Pass.h"
27#include "llvm/Support/MD5.h"
30
31using namespace llvm;
32
33#define DEBUG_TYPE "spirv-lower-ctor-dtor"
34
36 GlobalStr("spirv-lower-global-ctor-dtor-id",
37 cl::desc("Override unique ID of ctor/dtor globals."),
38 cl::init(""), cl::Hidden);
39
40static cl::opt<bool>
41 CreateKernels("spirv-emit-init-fini-kernel",
42 cl::desc("Emit kernels to call ctor/dtor globals."),
43 cl::init(true), cl::Hidden);
44
45namespace {
46constexpr int SPIRV_GLOBAL_AS = 1;
47
48std::string getHash(StringRef Str) {
49 llvm::MD5 Hasher;
51 Hasher.update(Str);
52 Hasher.final(Hash);
53 return llvm::utohexstr(Hash.low(), /*LowerCase=*/true);
54}
55
56void addKernelAttrs(Function *F) {
57 F->setCallingConv(CallingConv::SPIR_KERNEL);
58 F->addFnAttr("uniform-work-group-size", "true");
59}
60
61Function *createInitOrFiniKernelFunction(Module &M, bool IsCtor) {
62 StringRef InitOrFiniKernelName =
63 IsCtor ? "spirv$device$init" : "spirv$device$fini";
64 if (M.getFunction(InitOrFiniKernelName))
65 return nullptr;
66
67 Function *InitOrFiniKernel = Function::createWithDefaultAttr(
68 FunctionType::get(Type::getVoidTy(M.getContext()), false),
69 GlobalValue::WeakODRLinkage, 0, InitOrFiniKernelName, &M);
70 addKernelAttrs(InitOrFiniKernel);
71
72 return InitOrFiniKernel;
73}
74
75// We create the IR required to call each callback in this section. This is
76// equivalent to the following code. Normally, the linker would provide us with
77// the definitions of the init and fini array sections. The 'spirv-link' linker
78// does not do this so initializing these values is done by the offload runtime.
79//
80// extern "C" void **__init_array_start = nullptr;
81// extern "C" void **__init_array_end = nullptr;
82// extern "C" void **__fini_array_start = nullptr;
83// extern "C" void **__fini_array_end = nullptr;
84//
85// using InitCallback = void();
86// using FiniCallback = void();
87//
88// void call_init_array_callbacks() {
89// for (auto start = __init_array_start; start != __init_array_end; ++start)
90// reinterpret_cast<InitCallback *>(*start)();
91// }
92//
93// void call_fini_array_callbacks() {
94// size_t fini_array_size = __fini_array_end - __fini_array_start;
95// for (size_t i = fini_array_size; i > 0; --i)
96// reinterpret_cast<FiniCallback *>(__fini_array_start[i - 1])();
97// }
98void createInitOrFiniCalls(Function &F, bool IsCtor) {
99 Module &M = *F.getParent();
100 LLVMContext &C = M.getContext();
101
102 IRBuilder<> IRB(BasicBlock::Create(C, "entry", &F));
103 auto *LoopBB = BasicBlock::Create(C, "while.entry", &F);
104 auto *ExitBB = BasicBlock::Create(C, "while.end", &F);
105 Type *PtrTy = IRB.getPtrTy(SPIRV_GLOBAL_AS);
106
107 auto CreateGlobal = [&](const char *Name) -> GlobalVariable * {
108 auto *GV = new GlobalVariable(
110 /*isConstant=*/false, GlobalValue::WeakAnyLinkage,
112 /*InsertBefore=*/nullptr, GlobalVariable::NotThreadLocal,
113 /*AddressSpace=*/SPIRV_GLOBAL_AS);
114 GV->setVisibility(GlobalVariable::ProtectedVisibility);
115 return GV;
116 };
117
118 auto *Begin = M.getOrInsertGlobal(
119 IsCtor ? "__init_array_start" : "__fini_array_start",
121 return CreateGlobal(IsCtor ? "__init_array_start"
122 : "__fini_array_start");
123 }));
124 auto *End = M.getOrInsertGlobal(
125 IsCtor ? "__init_array_end" : "__fini_array_end",
127 return CreateGlobal(IsCtor ? "__init_array_end" : "__fini_array_end");
128 }));
129 auto *CallBackTy = FunctionType::get(IRB.getVoidTy(), {});
130
131 // The destructor array must be called in reverse order. Get an expression to
132 // the end of the array and iterate backwards in that case.
133 Value *BeginVal = IRB.CreateLoad(Begin->getType(), Begin, "begin");
134 Value *EndVal = IRB.CreateLoad(Begin->getType(), End, "stop");
135 if (!IsCtor) {
136 Value *OldBeginVal = BeginVal;
137 BeginVal =
138 IRB.CreateInBoundsGEP(PointerType::getUnqual(C), EndVal,
141 "start");
142 EndVal = OldBeginVal;
143 }
144 IRB.CreateCondBr(
145 IRB.CreateCmp(IsCtor ? ICmpInst::ICMP_NE : ICmpInst::ICMP_UGE, BeginVal,
146 EndVal),
147 LoopBB, ExitBB);
148 IRB.SetInsertPoint(LoopBB);
149 auto *CallBackPHI = IRB.CreatePHI(PtrTy, 2, "ptr");
150 auto *CallBack = IRB.CreateLoad(IRB.getPtrTy(F.getAddressSpace()),
151 CallBackPHI, "callback");
152 IRB.CreateCall(CallBackTy, CallBack);
153 auto *NewCallBack =
154 IRB.CreateConstGEP1_64(PtrTy, CallBackPHI, IsCtor ? 1 : -1, "next");
155 auto *EndCmp = IRB.CreateCmp(IsCtor ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_ULT,
156 NewCallBack, EndVal, "end");
157 CallBackPHI->addIncoming(BeginVal, &F.getEntryBlock());
158 CallBackPHI->addIncoming(NewCallBack, LoopBB);
159 IRB.CreateCondBr(EndCmp, ExitBB, LoopBB);
160 IRB.SetInsertPoint(ExitBB);
161 IRB.CreateRetVoid();
162}
163
164bool createInitOrFiniGlobals(Module &M, GlobalVariable *GV, bool IsCtor) {
166 if (!GA || GA->getNumOperands() == 0)
167 return false;
168
169 // SPIR-V has no way to emit variables at specific sections or support for
170 // the traditional constructor sections. Instead, we emit mangled global
171 // names so the runtime can build the list manually.
172 for (Value *V : GA->operands()) {
173 auto *CS = cast<ConstantStruct>(V);
174 auto *F = cast<Constant>(CS->getOperand(1));
175 uint64_t Priority = cast<ConstantInt>(CS->getOperand(0))->getSExtValue();
176 std::string PriorityStr = "." + std::to_string(Priority);
177 // We append a semi-unique hash and the priority to the global name.
178 std::string GlobalID =
179 !GlobalStr.empty() ? GlobalStr : getHash(M.getSourceFileName());
180 std::string NameStr =
181 ((IsCtor ? "__init_array_object_" : "__fini_array_object_") +
182 F->getName() + "_" + GlobalID + "_" + std::to_string(Priority))
183 .str();
184 llvm::transform(NameStr, NameStr.begin(),
185 [](char c) { return c == '.' ? '_' : c; });
186
187 auto *GV = new GlobalVariable(M, F->getType(), /*IsConstant=*/true,
190 /*AddressSpace=*/SPIRV_GLOBAL_AS);
191 GV->setSection(IsCtor ? ".init_array" + PriorityStr
192 : ".fini_array" + PriorityStr);
194 }
195
196 return true;
197}
198
199bool createInitOrFiniKernel(Module &M, StringRef GlobalName, bool IsCtor) {
200 GlobalVariable *GV = M.getGlobalVariable(GlobalName);
201 if (!GV || !GV->hasInitializer())
202 return false;
203
204 if (!createInitOrFiniGlobals(M, GV, IsCtor))
205 return false;
206
207 if (!CreateKernels)
208 return true;
209
210 Function *InitOrFiniKernel = createInitOrFiniKernelFunction(M, IsCtor);
211 if (!InitOrFiniKernel)
212 return false;
213
214 createInitOrFiniCalls(*InitOrFiniKernel, IsCtor);
215
216 GV->eraseFromParent();
217 return true;
218}
219
220bool lowerCtorsAndDtors(Module &M) {
221 // Only run this pass for OpenMP offload compilation
223 return false;
224
225 bool Modified = false;
226 Modified |= createInitOrFiniKernel(M, "llvm.global_ctors", /*IsCtor =*/true);
227 Modified |= createInitOrFiniKernel(M, "llvm.global_dtors", /*IsCtor =*/false);
228 return Modified;
229}
230
231class SPIRVCtorDtorLoweringLegacy final : public ModulePass {
232public:
233 static char ID;
234 SPIRVCtorDtorLoweringLegacy() : ModulePass(ID) {}
235 bool runOnModule(Module &M) override { return lowerCtorsAndDtors(M); }
236};
237
238} // End anonymous namespace
239
245
246char SPIRVCtorDtorLoweringLegacy::ID = 0;
247INITIALIZE_PASS(SPIRVCtorDtorLoweringLegacy, DEBUG_TYPE,
248 "SPIRV lower ctors and dtors", false, false)
249
251 return new SPIRVCtorDtorLoweringLegacy();
252}
unsigned uint64_t
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
#define DEBUG_TYPE
Module.h This file contains the declarations for the Module class.
#define F(x, y, z)
Definition MD5.cpp:54
static cl::opt< bool > CreateKernels("nvptx-emit-init-fini-kernel", cl::desc("Emit kernels to call ctor/dtor globals."), cl::init(true), cl::Hidden)
static cl::opt< std::string > GlobalStr("nvptx-lower-global-ctor-dtor-id", cl::desc("Override unique ID of ctor/dtor globals."), cl::init(""), cl::Hidden)
#define INITIALIZE_PASS(passName, arg, name, cfg, analysis)
Definition PassSupport.h:56
static cl::opt< std::string > GlobalStr("spirv-lower-global-ctor-dtor-id", cl::desc("Override unique ID of ctor/dtor globals."), cl::init(""), cl::Hidden)
static cl::opt< bool > CreateKernels("spirv-emit-init-fini-kernel", cl::desc("Emit kernels to call ctor/dtor globals."), cl::init(true), cl::Hidden)
This file contains some functions that are useful when dealing with strings.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition ArrayRef.h:40
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
Definition BasicBlock.h:206
@ ICMP_UGE
unsigned greater or equal
Definition InstrTypes.h:764
@ ICMP_ULT
unsigned less than
Definition InstrTypes.h:765
@ ICMP_NE
not equal
Definition InstrTypes.h:762
ConstantArray - Constant Array Declarations.
Definition Constants.h:590
static LLVM_ABI Constant * getAllOnesValue(Type *Ty)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
static LLVM_ABI FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
static Function * createWithDefaultAttr(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Creates a function with some attributes recorded in llvm.module.flags and the LLVMContext applied.
Definition Function.cpp:373
LLVM_ABI void setSection(StringRef S)
Change the section for this global.
Definition Globals.cpp:348
@ ProtectedVisibility
The GV is protected.
Definition GlobalValue.h:70
void setVisibility(VisibilityTypes V)
@ WeakODRLinkage
Same, but only replaced by something equivalent.
Definition GlobalValue.h:58
@ ExternalLinkage
Externally visible function.
Definition GlobalValue.h:53
@ WeakAnyLinkage
Keep one copy of named function when linking (weak)
Definition GlobalValue.h:57
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
bool hasInitializer() const
Definitions have initializers, declarations don't.
LLVM_ABI void eraseFromParent()
eraseFromParent - This method unlinks 'this' from the containing module and deletes it.
Definition Globals.cpp:609
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition IRBuilder.h:2903
This is an important class for using LLVM in a threaded context.
Definition LLVMContext.h:68
LLVM_ABI void update(ArrayRef< uint8_t > Data)
Updates the hash for the byte stream provided.
Definition MD5.cpp:188
LLVM_ABI void final(MD5Result &Result)
Finishes off the hash and puts the result in result.
Definition MD5.cpp:233
ModulePass class - This class is used to implement unstructured interprocedural optimizations and ana...
Definition Pass.h:255
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
static PointerType * getUnqual(LLVMContext &C)
This constructs an opaque pointer to an object in the default address space (address space zero).
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
Definition Analysis.h:115
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Definition Analysis.h:118
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
Represent a constant reference to a string, i.e.
Definition StringRef.h:56
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
Definition Type.cpp:310
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Definition Type.cpp:282
op_range operands()
Definition User.h:267
unsigned getNumOperands() const
Definition User.h:229
LLVM Value Representation.
Definition Value.h:75
An efficient, type-erasing, non-owning reference to a callable.
@ SPIR_KERNEL
Used for SPIR kernel functions.
initializer< Ty > init(const Ty &Val)
LLVM_ABI bool isOpenMPDevice(Module &M)
Helper to determine if M is a OpenMP target offloading device module.
This is an optimization pass for GlobalISel generic memory operations.
ModulePass * createSPIRVCtorDtorLoweringLegacyPass()
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:643
std::string utohexstr(uint64_t X, bool LowerCase=false, unsigned Width=0)
OutputIt transform(R &&Range, OutputIt d_first, UnaryFunction F)
Wrapper function around std::transform to apply a function to a range and store the result elsewhere.
Definition STLExtras.h:2026
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
Definition Casting.h:559
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
Definition MIRParser.h:39
uint64_t low() const
Definition MD5.h:47