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
14#include "SPIRV.h"
17#include "llvm/IR/CallingConv.h"
18#include "llvm/IR/Constants.h"
19#include "llvm/IR/Function.h"
21#include "llvm/IR/IRBuilder.h"
22#include "llvm/IR/Module.h"
23#include "llvm/IR/Value.h"
24#include "llvm/Pass.h"
26#include "llvm/Support/MD5.h"
29
30using namespace llvm;
31
32#define DEBUG_TYPE "spirv-lower-ctor-dtor"
33
35 GlobalStr("spirv-lower-global-ctor-dtor-id",
36 cl::desc("Override unique ID of ctor/dtor globals."),
37 cl::init(""), cl::Hidden);
38
39static cl::opt<bool>
40 CreateKernels("spirv-emit-init-fini-kernel",
41 cl::desc("Emit kernels to call ctor/dtor globals."),
42 cl::init(true), cl::Hidden);
43
44namespace {
45constexpr int SPIRV_GLOBAL_AS = 1;
46
47std::string getHash(StringRef Str) {
48 llvm::MD5 Hasher;
50 Hasher.update(Str);
51 Hasher.final(Hash);
52 return llvm::utohexstr(Hash.low(), /*LowerCase=*/true);
53}
54
55void addKernelAttrs(Function *F) {
56 F->setCallingConv(CallingConv::SPIR_KERNEL);
57 F->addFnAttr("uniform-work-group-size", "true");
58}
59
60Function *createInitOrFiniKernelFunction(Module &M, bool IsCtor) {
61 StringRef InitOrFiniKernelName =
62 IsCtor ? "spirv$device$init" : "spirv$device$fini";
63 if (M.getFunction(InitOrFiniKernelName))
64 return nullptr;
65
66 Function *InitOrFiniKernel = Function::createWithDefaultAttr(
67 FunctionType::get(Type::getVoidTy(M.getContext()), false),
68 GlobalValue::WeakODRLinkage, 0, InitOrFiniKernelName, &M);
69 addKernelAttrs(InitOrFiniKernel);
70
71 return InitOrFiniKernel;
72}
73
74// We create the IR required to call each callback in this section. This is
75// equivalent to the following code. Normally, the linker would provide us with
76// the definitions of the init and fini array sections. The 'spirv-link' linker
77// does not do this so initializing these values is done by the offload runtime.
78//
79// extern "C" void **__init_array_start = nullptr;
80// extern "C" void **__init_array_end = nullptr;
81// extern "C" void **__fini_array_start = nullptr;
82// extern "C" void **__fini_array_end = nullptr;
83//
84// using InitCallback = void();
85// using FiniCallback = void();
86//
87// void call_init_array_callbacks() {
88// for (auto start = __init_array_start; start != __init_array_end; ++start)
89// reinterpret_cast<InitCallback *>(*start)();
90// }
91//
92// void call_fini_array_callbacks() {
93// size_t fini_array_size = __fini_array_end - __fini_array_start;
94// for (size_t i = fini_array_size; i > 0; --i)
95// reinterpret_cast<FiniCallback *>(__fini_array_start[i - 1])();
96// }
97void createInitOrFiniCalls(Function &F, bool IsCtor) {
98 Module &M = *F.getParent();
99 LLVMContext &C = M.getContext();
100
101 IRBuilder<> IRB(BasicBlock::Create(C, "entry", &F));
102 auto *LoopBB = BasicBlock::Create(C, "while.entry", &F);
103 auto *ExitBB = BasicBlock::Create(C, "while.end", &F);
104 Type *PtrTy = IRB.getPtrTy(SPIRV_GLOBAL_AS);
105
106 auto CreateGlobal = [&](const char *Name) -> GlobalVariable * {
107 auto *GV = new GlobalVariable(
109 /*isConstant=*/false, GlobalValue::WeakAnyLinkage,
111 /*InsertBefore=*/nullptr, GlobalVariable::NotThreadLocal,
112 /*AddressSpace=*/SPIRV_GLOBAL_AS);
113 GV->setVisibility(GlobalVariable::ProtectedVisibility);
114 return GV;
115 };
116
117 auto *Begin = M.getOrInsertGlobal(
118 IsCtor ? "__init_array_start" : "__fini_array_start",
120 return CreateGlobal(IsCtor ? "__init_array_start"
121 : "__fini_array_start");
122 }));
123 auto *End = M.getOrInsertGlobal(
124 IsCtor ? "__init_array_end" : "__fini_array_end",
126 return CreateGlobal(IsCtor ? "__init_array_end" : "__fini_array_end");
127 }));
128 auto *CallBackTy = FunctionType::get(IRB.getVoidTy(), {});
129
130 // The destructor array must be called in reverse order. Get an expression to
131 // the end of the array and iterate backwards in that case.
132 Value *BeginVal = IRB.CreateLoad(Begin->getType(), Begin, "begin");
133 Value *EndVal = IRB.CreateLoad(Begin->getType(), End, "stop");
134 if (!IsCtor) {
135 Value *OldBeginVal = BeginVal;
136 BeginVal =
137 IRB.CreateInBoundsGEP(PointerType::getUnqual(C), EndVal,
140 "start");
141 EndVal = OldBeginVal;
142 }
143 IRB.CreateCondBr(
144 IRB.CreateCmp(IsCtor ? ICmpInst::ICMP_NE : ICmpInst::ICMP_UGE, BeginVal,
145 EndVal),
146 LoopBB, ExitBB);
147 IRB.SetInsertPoint(LoopBB);
148 auto *CallBackPHI = IRB.CreatePHI(PtrTy, 2, "ptr");
149 auto *CallBack = IRB.CreateLoad(IRB.getPtrTy(F.getAddressSpace()),
150 CallBackPHI, "callback");
151 IRB.CreateCall(CallBackTy, CallBack);
152 auto *NewCallBack =
153 IRB.CreateConstGEP1_64(PtrTy, CallBackPHI, IsCtor ? 1 : -1, "next");
154 auto *EndCmp = IRB.CreateCmp(IsCtor ? ICmpInst::ICMP_EQ : ICmpInst::ICMP_ULT,
155 NewCallBack, EndVal, "end");
156 CallBackPHI->addIncoming(BeginVal, &F.getEntryBlock());
157 CallBackPHI->addIncoming(NewCallBack, LoopBB);
158 IRB.CreateCondBr(EndCmp, ExitBB, LoopBB);
159 IRB.SetInsertPoint(ExitBB);
160 IRB.CreateRetVoid();
161}
162
163bool createInitOrFiniGlobals(Module &M, GlobalVariable *GV, bool IsCtor) {
165 if (!GA || GA->getNumOperands() == 0)
166 return false;
167
168 // SPIR-V has no way to emit variables at specific sections or support for
169 // the traditional constructor sections. Instead, we emit mangled global
170 // names so the runtime can build the list manually.
171 for (Value *V : GA->operands()) {
172 auto *CS = cast<ConstantStruct>(V);
173 auto *F = cast<Constant>(CS->getOperand(1));
174 uint64_t Priority = cast<ConstantInt>(CS->getOperand(0))->getSExtValue();
175 std::string PriorityStr = "." + std::to_string(Priority);
176 // We append a semi-unique hash and the priority to the global name.
177 std::string GlobalID =
178 !GlobalStr.empty() ? GlobalStr : getHash(M.getSourceFileName());
179 std::string NameStr =
180 ((IsCtor ? "__init_array_object_" : "__fini_array_object_") +
181 F->getName() + "_" + GlobalID + "_" + std::to_string(Priority))
182 .str();
183 llvm::transform(NameStr, NameStr.begin(),
184 [](char c) { return c == '.' ? '_' : c; });
185
186 auto *GV = new GlobalVariable(M, F->getType(), /*IsConstant=*/true,
189 /*AddressSpace=*/SPIRV_GLOBAL_AS);
190 GV->setSection(IsCtor ? ".init_array" + PriorityStr
191 : ".fini_array" + PriorityStr);
193 }
194
195 return true;
196}
197
198bool createInitOrFiniKernel(Module &M, StringRef GlobalName, bool IsCtor) {
199 GlobalVariable *GV = M.getGlobalVariable(GlobalName);
200 if (!GV || !GV->hasInitializer())
201 return false;
202
203 if (!createInitOrFiniGlobals(M, GV, IsCtor))
204 return false;
205
206 if (!CreateKernels)
207 return true;
208
209 Function *InitOrFiniKernel = createInitOrFiniKernelFunction(M, IsCtor);
210 if (!InitOrFiniKernel)
211 return false;
212
213 createInitOrFiniCalls(*InitOrFiniKernel, IsCtor);
214
215 GV->eraseFromParent();
216 return true;
217}
218
219bool lowerCtorsAndDtors(Module &M) {
220 // Only run this pass for OpenMP offload compilation
222 return false;
223
224 bool Modified = false;
225 Modified |= createInitOrFiniKernel(M, "llvm.global_ctors", /*IsCtor =*/true);
226 Modified |= createInitOrFiniKernel(M, "llvm.global_dtors", /*IsCtor =*/false);
227 return Modified;
228}
229
230class SPIRVCtorDtorLoweringLegacy final : public ModulePass {
231public:
232 static char ID;
233 SPIRVCtorDtorLoweringLegacy() : ModulePass(ID) {}
234 bool runOnModule(Module &M) override { return lowerCtorsAndDtors(M); }
235};
236
237} // End anonymous namespace
238
244
245char SPIRVCtorDtorLoweringLegacy::ID = 0;
246INITIALIZE_PASS(SPIRVCtorDtorLoweringLegacy, DEBUG_TYPE,
247 "SPIRV lower ctors and dtors", false, false)
248
250 return new SPIRVCtorDtorLoweringLegacy();
251}
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:376
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:2910
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:68
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