xref: /llvm-project/llvm/lib/Target/AMDGPU/AMDGPULowerModuleLDSPass.cpp (revision 74e928a08173094ab9a46dd0b956c85cac48f041)
1 //===-- AMDGPULowerModuleLDSPass.cpp ------------------------------*- C++ -*-=//
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 eliminates local data store, LDS, uses from non-kernel functions.
10 // LDS is contiguous memory allocated per kernel execution.
11 //
12 // Background.
13 //
14 // The programming model is global variables, or equivalently function local
15 // static variables, accessible from kernels or other functions. For uses from
16 // kernels this is straightforward - assign an integer to the kernel for the
17 // memory required by all the variables combined, allocate them within that.
18 // For uses from functions there are performance tradeoffs to choose between.
19 //
20 // This model means the GPU runtime can specify the amount of memory allocated.
21 // If this is more than the kernel assumed, the excess can be made available
22 // using a language specific feature, which IR represents as a variable with
23 // no initializer. This feature is referred to here as "Dynamic LDS" and is
24 // lowered slightly differently to the normal case.
25 //
26 // Consequences of this GPU feature:
27 // - memory is limited and exceeding it halts compilation
28 // - a global accessed by one kernel exists independent of other kernels
29 // - a global exists independent of simultaneous execution of the same kernel
30 // - the address of the global may be different from different kernels as they
31 //   do not alias, which permits only allocating variables they use
32 // - if the address is allowed to differ, functions need help to find it
33 //
34 // Uses from kernels are implemented here by grouping them in a per-kernel
35 // struct instance. This duplicates the variables, accurately modelling their
36 // aliasing properties relative to a single global representation. It also
37 // permits control over alignment via padding.
38 //
39 // Uses from functions are more complicated and the primary purpose of this
40 // IR pass. Several different lowering are chosen between to meet requirements
41 // to avoid allocating any LDS where it is not necessary, as that impacts
42 // occupancy and may fail the compilation, while not imposing overhead on a
43 // feature whose primary advantage over global memory is performance. The basic
44 // design goal is to avoid one kernel imposing overhead on another.
45 //
46 // Implementation.
47 //
48 // LDS variables with constant annotation or non-undef initializer are passed
49 // through unchanged for simplification or error diagnostics in later passes.
50 // Non-undef initializers are not yet implemented for LDS.
51 //
52 // LDS variables that are always allocated at the same address can be found
53 // by lookup at that address. Otherwise runtime information/cost is required.
54 //
55 // The simplest strategy possible is to group all LDS variables in a single
56 // struct and allocate that struct in every kernel such that the original
57 // variables are always at the same address. LDS is however a limited resource
58 // so this strategy is unusable in practice. It is not implemented here.
59 //
60 // Strategy | Precise allocation | Zero runtime cost | General purpose |
61 //  --------+--------------------+-------------------+-----------------+
62 //   Module |                 No |               Yes |             Yes |
63 //    Table |                Yes |                No |             Yes |
64 //   Kernel |                Yes |               Yes |              No |
65 //   Hybrid |                Yes |           Partial |             Yes |
66 //
67 // "Module" spends LDS memory to save cycles. "Table" spends cycles and global
68 // memory to save LDS. "Kernel" is as fast as kernel allocation but only works
69 // for variables that are known reachable from a single kernel. "Hybrid" picks
70 // between all three. When forced to choose between LDS and cycles we minimise
71 // LDS use.
72 
73 // The "module" lowering implemented here finds LDS variables which are used by
74 // non-kernel functions and creates a new struct with a field for each of those
75 // LDS variables. Variables that are only used from kernels are excluded.
76 // Kernels that do not use this struct are annoteated with the attribute
77 // amdgpu-elide-module-lds which allows the back end to elide the allocation.
78 //
79 // The "table" lowering implemented here has three components.
80 // First kernels are assigned a unique integer identifier which is available in
81 // functions it calls through the intrinsic amdgcn_lds_kernel_id. The integer
82 // is passed through a specific SGPR, thus works with indirect calls.
83 // Second, each kernel allocates LDS variables independent of other kernels and
84 // writes the addresses it chose for each variable into an array in consistent
85 // order. If the kernel does not allocate a given variable, it writes undef to
86 // the corresponding array location. These arrays are written to a constant
87 // table in the order matching the kernel unique integer identifier.
88 // Third, uses from non-kernel functions are replaced with a table lookup using
89 // the intrinsic function to find the address of the variable.
90 //
91 // "Kernel" lowering is only applicable for variables that are unambiguously
92 // reachable from exactly one kernel. For those cases, accesses to the variable
93 // can be lowered to ConstantExpr address of a struct instance specific to that
94 // one kernel. This is zero cost in space and in compute. It will raise a fatal
95 // error on any variable that might be reachable from multiple kernels and is
96 // thus most easily used as part of the hybrid lowering strategy.
97 //
98 // Hybrid lowering is a mixture of the above. It uses the zero cost kernel
99 // lowering where it can. It lowers the variable accessed by the greatest
100 // number of kernels using the module strategy as that is free for the first
101 // variable. Any futher variables that can be lowered with the module strategy
102 // without incurring LDS memory overhead are. The remaining ones are lowered
103 // via table.
104 //
105 // Consequences
106 // - No heuristics or user controlled magic numbers, hybrid is the right choice
107 // - Kernels that don't use functions (or have had them all inlined) are not
108 //   affected by any lowering for kernels that do.
109 // - Kernels that don't make indirect function calls are not affected by those
110 //   that do.
111 // - Variables which are used by lots of kernels, e.g. those injected by a
112 //   language runtime in most kernels, are expected to have no overhead
113 // - Implementations that instantiate templates per-kernel where those templates
114 //   use LDS are expected to hit the "Kernel" lowering strategy
115 // - The runtime properties impose a cost in compiler implementation complexity
116 //
117 // Dynamic LDS implementation
118 // Dynamic LDS is lowered similarly to the "table" strategy above and uses the
119 // same intrinsic to identify which kernel is at the root of the dynamic call
120 // graph. This relies on the specified behaviour that all dynamic LDS variables
121 // alias one another, i.e. are at the same address, with respect to a given
122 // kernel. Therefore this pass creates new dynamic LDS variables for each kernel
123 // that allocates any dynamic LDS and builds a table of addresses out of those.
124 // The AMDGPUPromoteAlloca pass skips kernels that use dynamic LDS.
125 // The corresponding optimisation for "kernel" lowering where the table lookup
126 // is elided is not implemented.
127 //
128 //
129 // Implementation notes / limitations
130 // A single LDS global variable represents an instance per kernel that can reach
131 // said variables. This pass essentially specialises said variables per kernel.
132 // Handling ConstantExpr during the pass complicated this significantly so now
133 // all ConstantExpr uses of LDS variables are expanded to instructions. This
134 // may need amending when implementing non-undef initialisers.
135 //
136 // Lowering is split between this IR pass and the back end. This pass chooses
137 // where given variables should be allocated and marks them with metadata,
138 // MD_absolute_symbol. The backend places the variables in coincidentally the
139 // same location and raises a fatal error if something has gone awry. This works
140 // in practice because the only pass between this one and the backend that
141 // changes LDS is PromoteAlloca and the changes it makes do not conflict.
142 //
143 // Addresses are written to constant global arrays based on the same metadata.
144 //
145 // The backend lowers LDS variables in the order of traversal of the function.
146 // This is at odds with the deterministic layout required. The workaround is to
147 // allocate the fixed-address variables immediately upon starting the function
148 // where they can be placed as intended. This requires a means of mapping from
149 // the function to the variables that it allocates. For the module scope lds,
150 // this is via metadata indicating whether the variable is not required. If a
151 // pass deletes that metadata, a fatal error on disagreement with the absolute
152 // symbol metadata will occur. For kernel scope and dynamic, this is by _name_
153 // correspondence between the function and the variable. It requires the
154 // kernel to have a name (which is only a limitation for tests in practice) and
155 // for nothing to rename the corresponding symbols. This is a hazard if the pass
156 // is run multiple times during debugging. Alternative schemes considered all
157 // involve bespoke metadata.
158 //
159 // If the name correspondence can be replaced, multiple distinct kernels that
160 // have the same memory layout can map to the same kernel id (as the address
161 // itself is handled by the absolute symbol metadata) and that will allow more
162 // uses of the "kernel" style faster lowering and reduce the size of the lookup
163 // tables.
164 //
165 // There is a test that checks this does not fire for a graphics shader. This
166 // lowering is expected to work for graphics if the isKernel test is changed.
167 //
168 // The current markUsedByKernel is sufficient for PromoteAlloca but is elided
169 // before codegen. Replacing this with an equivalent intrinsic which lasts until
170 // shortly after the machine function lowering of LDS would help break the name
171 // mapping. The other part needed is probably to amend PromoteAlloca to embed
172 // the LDS variables it creates in the same struct created here. That avoids the
173 // current hazard where a PromoteAlloca LDS variable might be allocated before
174 // the kernel scope (and thus error on the address check). Given a new invariant
175 // that no LDS variables exist outside of the structs managed here, and an
176 // intrinsic that lasts until after the LDS frame lowering, it should be
177 // possible to drop the name mapping and fold equivalent memory layouts.
178 //
179 //===----------------------------------------------------------------------===//
180 
181 #include "AMDGPU.h"
182 #include "Utils/AMDGPUBaseInfo.h"
183 #include "Utils/AMDGPUMemoryUtils.h"
184 #include "llvm/ADT/BitVector.h"
185 #include "llvm/ADT/DenseMap.h"
186 #include "llvm/ADT/DenseSet.h"
187 #include "llvm/ADT/STLExtras.h"
188 #include "llvm/ADT/SetOperations.h"
189 #include "llvm/ADT/SetVector.h"
190 #include "llvm/Analysis/CallGraph.h"
191 #include "llvm/IR/Constants.h"
192 #include "llvm/IR/DerivedTypes.h"
193 #include "llvm/IR/IRBuilder.h"
194 #include "llvm/IR/InlineAsm.h"
195 #include "llvm/IR/Instructions.h"
196 #include "llvm/IR/IntrinsicsAMDGPU.h"
197 #include "llvm/IR/MDBuilder.h"
198 #include "llvm/IR/ReplaceConstant.h"
199 #include "llvm/InitializePasses.h"
200 #include "llvm/Pass.h"
201 #include "llvm/Support/CommandLine.h"
202 #include "llvm/Support/Debug.h"
203 #include "llvm/Support/OptimizedStructLayout.h"
204 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
205 #include "llvm/Transforms/Utils/ModuleUtils.h"
206 
207 #include <tuple>
208 #include <vector>
209 
210 #include <cstdio>
211 
212 #define DEBUG_TYPE "amdgpu-lower-module-lds"
213 
214 using namespace llvm;
215 
216 namespace {
217 
218 cl::opt<bool> SuperAlignLDSGlobals(
219     "amdgpu-super-align-lds-globals",
220     cl::desc("Increase alignment of LDS if it is not on align boundary"),
221     cl::init(true), cl::Hidden);
222 
223 enum class LoweringKind { module, table, kernel, hybrid };
224 cl::opt<LoweringKind> LoweringKindLoc(
225     "amdgpu-lower-module-lds-strategy",
226     cl::desc("Specify lowering strategy for function LDS access:"), cl::Hidden,
227     cl::init(LoweringKind::hybrid),
228     cl::values(
229         clEnumValN(LoweringKind::table, "table", "Lower via table lookup"),
230         clEnumValN(LoweringKind::module, "module", "Lower via module struct"),
231         clEnumValN(
232             LoweringKind::kernel, "kernel",
233             "Lower variables reachable from one kernel, otherwise abort"),
234         clEnumValN(LoweringKind::hybrid, "hybrid",
235                    "Lower via mixture of above strategies")));
236 
237 bool isKernelLDS(const Function *F) {
238   // Some weirdness here. AMDGPU::isKernelCC does not call into
239   // AMDGPU::isKernel with the calling conv, it instead calls into
240   // isModuleEntryFunction which returns true for more calling conventions
241   // than AMDGPU::isKernel does. There's a FIXME on AMDGPU::isKernel.
242   // There's also a test that checks that the LDS lowering does not hit on
243   // a graphics shader, denoted amdgpu_ps, so stay with the limited case.
244   // Putting LDS in the name of the function to draw attention to this.
245   return AMDGPU::isKernel(F->getCallingConv());
246 }
247 
248 template <typename T> std::vector<T> sortByName(std::vector<T> &&V) {
249   llvm::sort(V.begin(), V.end(), [](const auto *L, const auto *R) {
250     return L->getName() < R->getName();
251   });
252   return {std::move(V)};
253 }
254 
255 class AMDGPULowerModuleLDS : public ModulePass {
256 
257   static void
258   removeLocalVarsFromUsedLists(Module &M,
259                                const DenseSet<GlobalVariable *> &LocalVars) {
260     // The verifier rejects used lists containing an inttoptr of a constant
261     // so remove the variables from these lists before replaceAllUsesWith
262     SmallPtrSet<Constant *, 8> LocalVarsSet;
263     for (GlobalVariable *LocalVar : LocalVars)
264       LocalVarsSet.insert(cast<Constant>(LocalVar->stripPointerCasts()));
265 
266     removeFromUsedLists(
267         M, [&LocalVarsSet](Constant *C) { return LocalVarsSet.count(C); });
268 
269     for (GlobalVariable *LocalVar : LocalVars)
270       LocalVar->removeDeadConstantUsers();
271   }
272 
273   static void markUsedByKernel(IRBuilder<> &Builder, Function *Func,
274                                GlobalVariable *SGV) {
275     // The llvm.amdgcn.module.lds instance is implicitly used by all kernels
276     // that might call a function which accesses a field within it. This is
277     // presently approximated to 'all kernels' if there are any such functions
278     // in the module. This implicit use is redefined as an explicit use here so
279     // that later passes, specifically PromoteAlloca, account for the required
280     // memory without any knowledge of this transform.
281 
282     // An operand bundle on llvm.donothing works because the call instruction
283     // survives until after the last pass that needs to account for LDS. It is
284     // better than inline asm as the latter survives until the end of codegen. A
285     // totally robust solution would be a function with the same semantics as
286     // llvm.donothing that takes a pointer to the instance and is lowered to a
287     // no-op after LDS is allocated, but that is not presently necessary.
288 
289     // This intrinsic is eliminated shortly before instruction selection. It
290     // does not suffice to indicate to ISel that a given global which is not
291     // immediately used by the kernel must still be allocated by it. An
292     // equivalent target specific intrinsic which lasts until immediately after
293     // codegen would suffice for that, but one would still need to ensure that
294     // the variables are allocated in the anticpated order.
295 
296     LLVMContext &Ctx = Func->getContext();
297 
298     Builder.SetInsertPoint(Func->getEntryBlock().getFirstNonPHI());
299 
300     FunctionType *FTy = FunctionType::get(Type::getVoidTy(Ctx), {});
301 
302     Function *Decl =
303         Intrinsic::getDeclaration(Func->getParent(), Intrinsic::donothing, {});
304 
305     Value *UseInstance[1] = {Builder.CreateInBoundsGEP(
306         SGV->getValueType(), SGV, ConstantInt::get(Type::getInt32Ty(Ctx), 0))};
307 
308     Builder.CreateCall(FTy, Decl, {},
309                        {OperandBundleDefT<Value *>("ExplicitUse", UseInstance)},
310                        "");
311   }
312 
313   static bool eliminateConstantExprUsesOfLDSFromAllInstructions(Module &M) {
314     // Constants are uniqued within LLVM. A ConstantExpr referring to a LDS
315     // global may have uses from multiple different functions as a result.
316     // This pass specialises LDS variables with respect to the kernel that
317     // allocates them.
318 
319     // This is semantically equivalent to (the unimplemented as slow):
320     // for (auto &F : M.functions())
321     //   for (auto &BB : F)
322     //     for (auto &I : BB)
323     //       for (Use &Op : I.operands())
324     //         if (constantExprUsesLDS(Op))
325     //           replaceConstantExprInFunction(I, Op);
326 
327     SmallVector<Constant *> LDSGlobals;
328     for (auto &GV : M.globals())
329       if (AMDGPU::isLDSVariableToLower(GV))
330         LDSGlobals.push_back(&GV);
331 
332     return convertUsersOfConstantsToInstructions(LDSGlobals);
333   }
334 
335 public:
336   static char ID;
337 
338   AMDGPULowerModuleLDS() : ModulePass(ID) {
339     initializeAMDGPULowerModuleLDSPass(*PassRegistry::getPassRegistry());
340   }
341 
342   using FunctionVariableMap = DenseMap<Function *, DenseSet<GlobalVariable *>>;
343 
344   using VariableFunctionMap = DenseMap<GlobalVariable *, DenseSet<Function *>>;
345 
346   static void getUsesOfLDSByFunction(CallGraph const &CG, Module &M,
347                                      FunctionVariableMap &kernels,
348                                      FunctionVariableMap &functions) {
349 
350     // Get uses from the current function, excluding uses by called functions
351     // Two output variables to avoid walking the globals list twice
352     for (auto &GV : M.globals()) {
353       if (!AMDGPU::isLDSVariableToLower(GV)) {
354         continue;
355       }
356 
357       if (GV.isAbsoluteSymbolRef()) {
358         report_fatal_error(
359             "LDS variables with absolute addresses are unimplemented.");
360       }
361 
362       for (User *V : GV.users()) {
363         if (auto *I = dyn_cast<Instruction>(V)) {
364           Function *F = I->getFunction();
365           if (isKernelLDS(F)) {
366             kernels[F].insert(&GV);
367           } else {
368             functions[F].insert(&GV);
369           }
370         }
371       }
372     }
373   }
374 
375   struct LDSUsesInfoTy {
376     FunctionVariableMap direct_access;
377     FunctionVariableMap indirect_access;
378   };
379 
380   static LDSUsesInfoTy getTransitiveUsesOfLDS(CallGraph const &CG, Module &M) {
381 
382     FunctionVariableMap direct_map_kernel;
383     FunctionVariableMap direct_map_function;
384     getUsesOfLDSByFunction(CG, M, direct_map_kernel, direct_map_function);
385 
386     // Collect variables that are used by functions whose address has escaped
387     DenseSet<GlobalVariable *> VariablesReachableThroughFunctionPointer;
388     for (Function &F : M.functions()) {
389       if (!isKernelLDS(&F))
390         if (F.hasAddressTaken(nullptr,
391                               /* IgnoreCallbackUses */ false,
392                               /* IgnoreAssumeLikeCalls */ false,
393                               /* IgnoreLLVMUsed */ true,
394                               /* IgnoreArcAttachedCall */ false)) {
395           set_union(VariablesReachableThroughFunctionPointer,
396                     direct_map_function[&F]);
397         }
398     }
399 
400     auto functionMakesUnknownCall = [&](const Function *F) -> bool {
401       assert(!F->isDeclaration());
402       for (const CallGraphNode::CallRecord &R : *CG[F]) {
403         if (!R.second->getFunction()) {
404           return true;
405         }
406       }
407       return false;
408     };
409 
410     // Work out which variables are reachable through function calls
411     FunctionVariableMap transitive_map_function = direct_map_function;
412 
413     // If the function makes any unknown call, assume the worst case that it can
414     // access all variables accessed by functions whose address escaped
415     for (Function &F : M.functions()) {
416       if (!F.isDeclaration() && functionMakesUnknownCall(&F)) {
417         if (!isKernelLDS(&F)) {
418           set_union(transitive_map_function[&F],
419                     VariablesReachableThroughFunctionPointer);
420         }
421       }
422     }
423 
424     // Direct implementation of collecting all variables reachable from each
425     // function
426     for (Function &Func : M.functions()) {
427       if (Func.isDeclaration() || isKernelLDS(&Func))
428         continue;
429 
430       DenseSet<Function *> seen; // catches cycles
431       SmallVector<Function *, 4> wip{&Func};
432 
433       while (!wip.empty()) {
434         Function *F = wip.pop_back_val();
435 
436         // Can accelerate this by referring to transitive map for functions that
437         // have already been computed, with more care than this
438         set_union(transitive_map_function[&Func], direct_map_function[F]);
439 
440         for (const CallGraphNode::CallRecord &R : *CG[F]) {
441           Function *ith = R.second->getFunction();
442           if (ith) {
443             if (!seen.contains(ith)) {
444               seen.insert(ith);
445               wip.push_back(ith);
446             }
447           }
448         }
449       }
450     }
451 
452     // direct_map_kernel lists which variables are used by the kernel
453     // find the variables which are used through a function call
454     FunctionVariableMap indirect_map_kernel;
455 
456     for (Function &Func : M.functions()) {
457       if (Func.isDeclaration() || !isKernelLDS(&Func))
458         continue;
459 
460       for (const CallGraphNode::CallRecord &R : *CG[&Func]) {
461         Function *ith = R.second->getFunction();
462         if (ith) {
463           set_union(indirect_map_kernel[&Func], transitive_map_function[ith]);
464         } else {
465           set_union(indirect_map_kernel[&Func],
466                     VariablesReachableThroughFunctionPointer);
467         }
468       }
469     }
470 
471     return {std::move(direct_map_kernel), std::move(indirect_map_kernel)};
472   }
473 
474   struct LDSVariableReplacement {
475     GlobalVariable *SGV = nullptr;
476     DenseMap<GlobalVariable *, Constant *> LDSVarsToConstantGEP;
477   };
478 
479   // remap from lds global to a constantexpr gep to where it has been moved to
480   // for each kernel
481   // an array with an element for each kernel containing where the corresponding
482   // variable was remapped to
483 
484   static Constant *getAddressesOfVariablesInKernel(
485       LLVMContext &Ctx, ArrayRef<GlobalVariable *> Variables,
486       const DenseMap<GlobalVariable *, Constant *> &LDSVarsToConstantGEP) {
487     // Create a ConstantArray containing the address of each Variable within the
488     // kernel corresponding to LDSVarsToConstantGEP, or poison if that kernel
489     // does not allocate it
490     // TODO: Drop the ptrtoint conversion
491 
492     Type *I32 = Type::getInt32Ty(Ctx);
493 
494     ArrayType *KernelOffsetsType = ArrayType::get(I32, Variables.size());
495 
496     SmallVector<Constant *> Elements;
497     for (size_t i = 0; i < Variables.size(); i++) {
498       GlobalVariable *GV = Variables[i];
499       auto ConstantGepIt = LDSVarsToConstantGEP.find(GV);
500       if (ConstantGepIt != LDSVarsToConstantGEP.end()) {
501         auto elt = ConstantExpr::getPtrToInt(ConstantGepIt->second, I32);
502         Elements.push_back(elt);
503       } else {
504         Elements.push_back(PoisonValue::get(I32));
505       }
506     }
507     return ConstantArray::get(KernelOffsetsType, Elements);
508   }
509 
510   static GlobalVariable *buildLookupTable(
511       Module &M, ArrayRef<GlobalVariable *> Variables,
512       ArrayRef<Function *> kernels,
513       DenseMap<Function *, LDSVariableReplacement> &KernelToReplacement) {
514     if (Variables.empty()) {
515       return nullptr;
516     }
517     LLVMContext &Ctx = M.getContext();
518 
519     const size_t NumberVariables = Variables.size();
520     const size_t NumberKernels = kernels.size();
521 
522     ArrayType *KernelOffsetsType =
523         ArrayType::get(Type::getInt32Ty(Ctx), NumberVariables);
524 
525     ArrayType *AllKernelsOffsetsType =
526         ArrayType::get(KernelOffsetsType, NumberKernels);
527 
528     Constant *Missing = PoisonValue::get(KernelOffsetsType);
529     std::vector<Constant *> overallConstantExprElts(NumberKernels);
530     for (size_t i = 0; i < NumberKernels; i++) {
531       auto Replacement = KernelToReplacement.find(kernels[i]);
532       overallConstantExprElts[i] =
533           (Replacement == KernelToReplacement.end())
534               ? Missing
535               : getAddressesOfVariablesInKernel(
536                     Ctx, Variables, Replacement->second.LDSVarsToConstantGEP);
537     }
538 
539     Constant *init =
540         ConstantArray::get(AllKernelsOffsetsType, overallConstantExprElts);
541 
542     return new GlobalVariable(
543         M, AllKernelsOffsetsType, true, GlobalValue::InternalLinkage, init,
544         "llvm.amdgcn.lds.offset.table", nullptr, GlobalValue::NotThreadLocal,
545         AMDGPUAS::CONSTANT_ADDRESS);
546   }
547 
548   void replaceUseWithTableLookup(Module &M, IRBuilder<> &Builder,
549                                  GlobalVariable *LookupTable,
550                                  GlobalVariable *GV, Use &U,
551                                  Value *OptionalIndex) {
552     // Table is a constant array of the same length as OrderedKernels
553     LLVMContext &Ctx = M.getContext();
554     Type *I32 = Type::getInt32Ty(Ctx);
555     auto *I = cast<Instruction>(U.getUser());
556 
557     Value *tableKernelIndex = getTableLookupKernelIndex(M, I->getFunction());
558 
559     if (auto *Phi = dyn_cast<PHINode>(I)) {
560       BasicBlock *BB = Phi->getIncomingBlock(U);
561       Builder.SetInsertPoint(&(*(BB->getFirstInsertionPt())));
562     } else {
563       Builder.SetInsertPoint(I);
564     }
565 
566     SmallVector<Value *, 3> GEPIdx = {
567         ConstantInt::get(I32, 0),
568         tableKernelIndex,
569     };
570     if (OptionalIndex)
571       GEPIdx.push_back(OptionalIndex);
572 
573     Value *Address = Builder.CreateInBoundsGEP(
574         LookupTable->getValueType(), LookupTable, GEPIdx, GV->getName());
575 
576     Value *loaded = Builder.CreateLoad(I32, Address);
577 
578     Value *replacement =
579         Builder.CreateIntToPtr(loaded, GV->getType(), GV->getName());
580 
581     U.set(replacement);
582   }
583 
584   void replaceUsesInInstructionsWithTableLookup(
585       Module &M, ArrayRef<GlobalVariable *> ModuleScopeVariables,
586       GlobalVariable *LookupTable) {
587 
588     LLVMContext &Ctx = M.getContext();
589     IRBuilder<> Builder(Ctx);
590     Type *I32 = Type::getInt32Ty(Ctx);
591 
592     for (size_t Index = 0; Index < ModuleScopeVariables.size(); Index++) {
593       auto *GV = ModuleScopeVariables[Index];
594 
595       for (Use &U : make_early_inc_range(GV->uses())) {
596         auto *I = dyn_cast<Instruction>(U.getUser());
597         if (!I)
598           continue;
599 
600         replaceUseWithTableLookup(M, Builder, LookupTable, GV, U,
601                                   ConstantInt::get(I32, Index));
602       }
603     }
604   }
605 
606   static DenseSet<Function *> kernelsThatIndirectlyAccessAnyOfPassedVariables(
607       Module &M, LDSUsesInfoTy &LDSUsesInfo,
608       DenseSet<GlobalVariable *> const &VariableSet) {
609 
610     DenseSet<Function *> KernelSet;
611 
612     if (VariableSet.empty())
613       return KernelSet;
614 
615     for (Function &Func : M.functions()) {
616       if (Func.isDeclaration() || !isKernelLDS(&Func))
617         continue;
618       for (GlobalVariable *GV : LDSUsesInfo.indirect_access[&Func]) {
619         if (VariableSet.contains(GV)) {
620           KernelSet.insert(&Func);
621           break;
622         }
623       }
624     }
625 
626     return KernelSet;
627   }
628 
629   static GlobalVariable *
630   chooseBestVariableForModuleStrategy(const DataLayout &DL,
631                                       VariableFunctionMap &LDSVars) {
632     // Find the global variable with the most indirect uses from kernels
633 
634     struct CandidateTy {
635       GlobalVariable *GV = nullptr;
636       size_t UserCount = 0;
637       size_t Size = 0;
638 
639       CandidateTy() = default;
640 
641       CandidateTy(GlobalVariable *GV, uint64_t UserCount, uint64_t AllocSize)
642           : GV(GV), UserCount(UserCount), Size(AllocSize) {}
643 
644       bool operator<(const CandidateTy &Other) const {
645         // Fewer users makes module scope variable less attractive
646         if (UserCount < Other.UserCount) {
647           return true;
648         }
649         if (UserCount > Other.UserCount) {
650           return false;
651         }
652 
653         // Bigger makes module scope variable less attractive
654         if (Size < Other.Size) {
655           return false;
656         }
657 
658         if (Size > Other.Size) {
659           return true;
660         }
661 
662         // Arbitrary but consistent
663         return GV->getName() < Other.GV->getName();
664       }
665     };
666 
667     CandidateTy MostUsed;
668 
669     for (auto &K : LDSVars) {
670       GlobalVariable *GV = K.first;
671       if (K.second.size() <= 1) {
672         // A variable reachable by only one kernel is best lowered with kernel
673         // strategy
674         continue;
675       }
676       CandidateTy Candidate(
677           GV, K.second.size(),
678           DL.getTypeAllocSize(GV->getValueType()).getFixedValue());
679       if (MostUsed < Candidate)
680         MostUsed = Candidate;
681     }
682 
683     return MostUsed.GV;
684   }
685 
686   static void recordLDSAbsoluteAddress(Module *M, GlobalVariable *GV,
687                                        uint32_t Address) {
688     // Write the specified address into metadata where it can be retrieved by
689     // the assembler. Format is a half open range, [Address Address+1)
690     LLVMContext &Ctx = M->getContext();
691     auto *IntTy =
692         M->getDataLayout().getIntPtrType(Ctx, AMDGPUAS::LOCAL_ADDRESS);
693     auto *MinC = ConstantAsMetadata::get(ConstantInt::get(IntTy, Address));
694     auto *MaxC = ConstantAsMetadata::get(ConstantInt::get(IntTy, Address + 1));
695     GV->setMetadata(LLVMContext::MD_absolute_symbol,
696                     MDNode::get(Ctx, {MinC, MaxC}));
697   }
698 
699   DenseMap<Function *, Value *> tableKernelIndexCache;
700   Value *getTableLookupKernelIndex(Module &M, Function *F) {
701     // Accesses from a function use the amdgcn_lds_kernel_id intrinsic which
702     // lowers to a read from a live in register. Emit it once in the entry
703     // block to spare deduplicating it later.
704     if (tableKernelIndexCache.count(F) == 0) {
705       LLVMContext &Ctx = M.getContext();
706       IRBuilder<> Builder(Ctx);
707       FunctionType *FTy = FunctionType::get(Type::getInt32Ty(Ctx), {});
708       Function *Decl =
709           Intrinsic::getDeclaration(&M, Intrinsic::amdgcn_lds_kernel_id, {});
710 
711       BasicBlock::iterator it =
712           F->getEntryBlock().getFirstNonPHIOrDbgOrAlloca();
713       Instruction &i = *it;
714       Builder.SetInsertPoint(&i);
715 
716       tableKernelIndexCache[F] = Builder.CreateCall(FTy, Decl, {});
717     }
718 
719     return tableKernelIndexCache[F];
720   }
721 
722   static std::vector<Function *> assignLDSKernelIDToEachKernel(
723       Module *M, DenseSet<Function *> const &KernelsThatAllocateTableLDS,
724       DenseSet<Function *> const &KernelsThatIndirectlyAllocateDynamicLDS) {
725     // Associate kernels in the set with an arbirary but reproducible order and
726     // annotate them with that order in metadata. This metadata is recognised by
727     // the backend and lowered to a SGPR which can be read from using
728     // amdgcn_lds_kernel_id.
729 
730     std::vector<Function *> OrderedKernels;
731     if (!KernelsThatAllocateTableLDS.empty() ||
732         !KernelsThatIndirectlyAllocateDynamicLDS.empty()) {
733 
734       for (Function &Func : M->functions()) {
735         if (Func.isDeclaration())
736           continue;
737         if (!isKernelLDS(&Func))
738           continue;
739 
740         if (KernelsThatAllocateTableLDS.contains(&Func) ||
741             KernelsThatIndirectlyAllocateDynamicLDS.contains(&Func)) {
742           assert(Func.hasName()); // else fatal error earlier
743           OrderedKernels.push_back(&Func);
744         }
745       }
746 
747       // Put them in an arbitrary but reproducible order
748       OrderedKernels = sortByName(std::move(OrderedKernels));
749 
750       // Annotate the kernels with their order in this vector
751       LLVMContext &Ctx = M->getContext();
752       IRBuilder<> Builder(Ctx);
753 
754       if (OrderedKernels.size() > UINT32_MAX) {
755         // 32 bit keeps it in one SGPR. > 2**32 kernels won't fit on the GPU
756         report_fatal_error("Unimplemented LDS lowering for > 2**32 kernels");
757       }
758 
759       for (size_t i = 0; i < OrderedKernels.size(); i++) {
760         Metadata *AttrMDArgs[1] = {
761             ConstantAsMetadata::get(Builder.getInt32(i)),
762         };
763         OrderedKernels[i]->setMetadata("llvm.amdgcn.lds.kernel.id",
764                                        MDNode::get(Ctx, AttrMDArgs));
765       }
766     }
767     return OrderedKernels;
768   }
769 
770   static void partitionVariablesIntoIndirectStrategies(
771       Module &M, LDSUsesInfoTy const &LDSUsesInfo,
772       VariableFunctionMap &LDSToKernelsThatNeedToAccessItIndirectly,
773       DenseSet<GlobalVariable *> &ModuleScopeVariables,
774       DenseSet<GlobalVariable *> &TableLookupVariables,
775       DenseSet<GlobalVariable *> &KernelAccessVariables,
776       DenseSet<GlobalVariable *> &DynamicVariables) {
777 
778     GlobalVariable *HybridModuleRoot =
779         LoweringKindLoc != LoweringKind::hybrid
780             ? nullptr
781             : chooseBestVariableForModuleStrategy(
782                   M.getDataLayout(), LDSToKernelsThatNeedToAccessItIndirectly);
783 
784     DenseSet<Function *> const EmptySet;
785     DenseSet<Function *> const &HybridModuleRootKernels =
786         HybridModuleRoot
787             ? LDSToKernelsThatNeedToAccessItIndirectly[HybridModuleRoot]
788             : EmptySet;
789 
790     for (auto &K : LDSToKernelsThatNeedToAccessItIndirectly) {
791       // Each iteration of this loop assigns exactly one global variable to
792       // exactly one of the implementation strategies.
793 
794       GlobalVariable *GV = K.first;
795       assert(AMDGPU::isLDSVariableToLower(*GV));
796       assert(K.second.size() != 0);
797 
798       if (AMDGPU::isDynamicLDS(*GV)) {
799         DynamicVariables.insert(GV);
800         continue;
801       }
802 
803       switch (LoweringKindLoc) {
804       case LoweringKind::module:
805         ModuleScopeVariables.insert(GV);
806         break;
807 
808       case LoweringKind::table:
809         TableLookupVariables.insert(GV);
810         break;
811 
812       case LoweringKind::kernel:
813         if (K.second.size() == 1) {
814           KernelAccessVariables.insert(GV);
815         } else {
816           report_fatal_error(
817               "cannot lower LDS '" + GV->getName() +
818               "' to kernel access as it is reachable from multiple kernels");
819         }
820         break;
821 
822       case LoweringKind::hybrid: {
823         if (GV == HybridModuleRoot) {
824           assert(K.second.size() != 1);
825           ModuleScopeVariables.insert(GV);
826         } else if (K.second.size() == 1) {
827           KernelAccessVariables.insert(GV);
828         } else if (set_is_subset(K.second, HybridModuleRootKernels)) {
829           ModuleScopeVariables.insert(GV);
830         } else {
831           TableLookupVariables.insert(GV);
832         }
833         break;
834       }
835       }
836     }
837 
838     // All LDS variables accessed indirectly have now been partitioned into
839     // the distinct lowering strategies.
840     assert(ModuleScopeVariables.size() + TableLookupVariables.size() +
841                KernelAccessVariables.size() + DynamicVariables.size() ==
842            LDSToKernelsThatNeedToAccessItIndirectly.size());
843   }
844 
845   static GlobalVariable *lowerModuleScopeStructVariables(
846       Module &M, DenseSet<GlobalVariable *> const &ModuleScopeVariables,
847       DenseSet<Function *> const &KernelsThatAllocateModuleLDS) {
848     // Create a struct to hold the ModuleScopeVariables
849     // Replace all uses of those variables from non-kernel functions with the
850     // new struct instance Replace only the uses from kernel functions that will
851     // allocate this instance. That is a space optimisation - kernels that use a
852     // subset of the module scope struct and do not need to allocate it for
853     // indirect calls will only allocate the subset they use (they do so as part
854     // of the per-kernel lowering).
855     if (ModuleScopeVariables.empty()) {
856       return nullptr;
857     }
858 
859     LLVMContext &Ctx = M.getContext();
860 
861     LDSVariableReplacement ModuleScopeReplacement =
862         createLDSVariableReplacement(M, "llvm.amdgcn.module.lds",
863                                      ModuleScopeVariables);
864 
865     appendToCompilerUsed(M, {static_cast<GlobalValue *>(
866                                 ConstantExpr::getPointerBitCastOrAddrSpaceCast(
867                                     cast<Constant>(ModuleScopeReplacement.SGV),
868                                     Type::getInt8PtrTy(Ctx)))});
869 
870     // module.lds will be allocated at zero in any kernel that allocates it
871     recordLDSAbsoluteAddress(&M, ModuleScopeReplacement.SGV, 0);
872 
873     // historic
874     removeLocalVarsFromUsedLists(M, ModuleScopeVariables);
875 
876     // Replace all uses of module scope variable from non-kernel functions
877     replaceLDSVariablesWithStruct(
878         M, ModuleScopeVariables, ModuleScopeReplacement, [&](Use &U) {
879           Instruction *I = dyn_cast<Instruction>(U.getUser());
880           if (!I) {
881             return false;
882           }
883           Function *F = I->getFunction();
884           return !isKernelLDS(F);
885         });
886 
887     // Replace uses of module scope variable from kernel functions that
888     // allocate the module scope variable, otherwise leave them unchanged
889     // Record on each kernel whether the module scope global is used by it
890 
891     IRBuilder<> Builder(Ctx);
892 
893     for (Function &Func : M.functions()) {
894       if (Func.isDeclaration() || !isKernelLDS(&Func))
895         continue;
896 
897       if (KernelsThatAllocateModuleLDS.contains(&Func)) {
898         replaceLDSVariablesWithStruct(
899             M, ModuleScopeVariables, ModuleScopeReplacement, [&](Use &U) {
900               Instruction *I = dyn_cast<Instruction>(U.getUser());
901               if (!I) {
902                 return false;
903               }
904               Function *F = I->getFunction();
905               return F == &Func;
906             });
907 
908         markUsedByKernel(Builder, &Func, ModuleScopeReplacement.SGV);
909 
910       } else {
911         markElideModuleLDS(Func);
912       }
913     }
914 
915     return ModuleScopeReplacement.SGV;
916   }
917 
918   static DenseMap<Function *, LDSVariableReplacement>
919   lowerKernelScopeStructVariables(
920       Module &M, LDSUsesInfoTy &LDSUsesInfo,
921       DenseSet<GlobalVariable *> const &ModuleScopeVariables,
922       DenseSet<Function *> const &KernelsThatAllocateModuleLDS,
923       GlobalVariable *MaybeModuleScopeStruct) {
924 
925     // Create a struct for each kernel for the non-module-scope variables.
926 
927     IRBuilder<> Builder(M.getContext());
928     DenseMap<Function *, LDSVariableReplacement> KernelToReplacement;
929     for (Function &Func : M.functions()) {
930       if (Func.isDeclaration() || !isKernelLDS(&Func))
931         continue;
932 
933       DenseSet<GlobalVariable *> KernelUsedVariables;
934       // Allocating variables that are used directly in this struct to get
935       // alignment aware allocation and predictable frame size.
936       for (auto &v : LDSUsesInfo.direct_access[&Func]) {
937         if (!AMDGPU::isDynamicLDS(*v)) {
938           KernelUsedVariables.insert(v);
939         }
940       }
941 
942       // Allocating variables that are accessed indirectly so that a lookup of
943       // this struct instance can find them from nested functions.
944       for (auto &v : LDSUsesInfo.indirect_access[&Func]) {
945         if (!AMDGPU::isDynamicLDS(*v)) {
946           KernelUsedVariables.insert(v);
947         }
948       }
949 
950       // Variables allocated in module lds must all resolve to that struct,
951       // not to the per-kernel instance.
952       if (KernelsThatAllocateModuleLDS.contains(&Func)) {
953         for (GlobalVariable *v : ModuleScopeVariables) {
954           KernelUsedVariables.erase(v);
955         }
956       }
957 
958       if (KernelUsedVariables.empty()) {
959         // Either used no LDS, or the LDS it used was all in the module struct
960         // or dynamically sized
961         continue;
962       }
963 
964       // The association between kernel function and LDS struct is done by
965       // symbol name, which only works if the function in question has a
966       // name This is not expected to be a problem in practice as kernels
967       // are called by name making anonymous ones (which are named by the
968       // backend) difficult to use. This does mean that llvm test cases need
969       // to name the kernels.
970       if (!Func.hasName()) {
971         report_fatal_error("Anonymous kernels cannot use LDS variables");
972       }
973 
974       std::string VarName =
975           (Twine("llvm.amdgcn.kernel.") + Func.getName() + ".lds").str();
976 
977       auto Replacement =
978           createLDSVariableReplacement(M, VarName, KernelUsedVariables);
979 
980       // If any indirect uses, create a direct use to ensure allocation
981       // TODO: Simpler to unconditionally mark used but that regresses
982       // codegen in test/CodeGen/AMDGPU/noclobber-barrier.ll
983       auto Accesses = LDSUsesInfo.indirect_access.find(&Func);
984       if ((Accesses != LDSUsesInfo.indirect_access.end()) &&
985           !Accesses->second.empty())
986         markUsedByKernel(Builder, &Func, Replacement.SGV);
987 
988       // remove preserves existing codegen
989       removeLocalVarsFromUsedLists(M, KernelUsedVariables);
990       KernelToReplacement[&Func] = Replacement;
991 
992       // Rewrite uses within kernel to the new struct
993       replaceLDSVariablesWithStruct(
994           M, KernelUsedVariables, Replacement, [&Func](Use &U) {
995             Instruction *I = dyn_cast<Instruction>(U.getUser());
996             return I && I->getFunction() == &Func;
997           });
998     }
999     return KernelToReplacement;
1000   }
1001 
1002   static GlobalVariable *
1003   buildRepresentativeDynamicLDSInstance(Module &M, LDSUsesInfoTy &LDSUsesInfo,
1004                                         Function *func) {
1005     // Create a dynamic lds variable with a name associated with the passed
1006     // function that has the maximum alignment of any dynamic lds variable
1007     // reachable from this kernel. Dynamic LDS is allocated after the static LDS
1008     // allocation, possibly after alignment padding. The representative variable
1009     // created here has the maximum alignment of any other dynamic variable
1010     // reachable by that kernel. All dynamic LDS variables are allocated at the
1011     // same address in each kernel in order to provide the documented aliasing
1012     // semantics. Setting the alignment here allows this IR pass to accurately
1013     // predict the exact constant at which it will be allocated.
1014 
1015     assert(isKernelLDS(func));
1016 
1017     LLVMContext &Ctx = M.getContext();
1018     const DataLayout &DL = M.getDataLayout();
1019     Align MaxDynamicAlignment(1);
1020 
1021     auto UpdateMaxAlignment = [&MaxDynamicAlignment, &DL](GlobalVariable *GV) {
1022       if (AMDGPU::isDynamicLDS(*GV)) {
1023         MaxDynamicAlignment =
1024             std::max(MaxDynamicAlignment, AMDGPU::getAlign(DL, GV));
1025       }
1026     };
1027 
1028     for (GlobalVariable *GV : LDSUsesInfo.indirect_access[func]) {
1029       UpdateMaxAlignment(GV);
1030     }
1031 
1032     for (GlobalVariable *GV : LDSUsesInfo.direct_access[func]) {
1033       UpdateMaxAlignment(GV);
1034     }
1035 
1036     assert(func->hasName()); // Checked by caller
1037     auto emptyCharArray = ArrayType::get(Type::getInt8Ty(Ctx), 0);
1038     GlobalVariable *N = new GlobalVariable(
1039         M, emptyCharArray, false, GlobalValue::ExternalLinkage, nullptr,
1040         Twine("llvm.amdgcn." + func->getName() + ".dynlds"), nullptr, GlobalValue::NotThreadLocal, AMDGPUAS::LOCAL_ADDRESS,
1041         false);
1042     N->setAlignment(MaxDynamicAlignment);
1043 
1044     assert(AMDGPU::isDynamicLDS(*N));
1045     return N;
1046   }
1047 
1048   DenseMap<Function *, GlobalVariable *> lowerDynamicLDSVariables(
1049       Module &M, LDSUsesInfoTy &LDSUsesInfo,
1050       DenseSet<Function *> const &KernelsThatIndirectlyAllocateDynamicLDS,
1051       DenseSet<GlobalVariable *> const &DynamicVariables,
1052       std::vector<Function *> const &OrderedKernels) {
1053     DenseMap<Function *, GlobalVariable *> KernelToCreatedDynamicLDS;
1054     if (!KernelsThatIndirectlyAllocateDynamicLDS.empty()) {
1055       LLVMContext &Ctx = M.getContext();
1056       IRBuilder<> Builder(Ctx);
1057       Type *I32 = Type::getInt32Ty(Ctx);
1058 
1059       std::vector<Constant *> newDynamicLDS;
1060 
1061       // Table is built in the same order as OrderedKernels
1062       for (auto &func : OrderedKernels) {
1063 
1064         if (KernelsThatIndirectlyAllocateDynamicLDS.contains(func)) {
1065           assert(isKernelLDS(func));
1066           if (!func->hasName()) {
1067             report_fatal_error("Anonymous kernels cannot use LDS variables");
1068           }
1069 
1070           GlobalVariable *N =
1071               buildRepresentativeDynamicLDSInstance(M, LDSUsesInfo, func);
1072 
1073           KernelToCreatedDynamicLDS[func] = N;
1074 
1075           markUsedByKernel(Builder, func, N);
1076 
1077           auto emptyCharArray = ArrayType::get(Type::getInt8Ty(Ctx), 0);
1078           auto GEP = ConstantExpr::getGetElementPtr(
1079               emptyCharArray, N, ConstantInt::get(I32, 0), true);
1080           newDynamicLDS.push_back(ConstantExpr::getPtrToInt(GEP, I32));
1081         } else {
1082           newDynamicLDS.push_back(PoisonValue::get(I32));
1083         }
1084       }
1085       assert(OrderedKernels.size() == newDynamicLDS.size());
1086 
1087       ArrayType *t = ArrayType::get(I32, newDynamicLDS.size());
1088       Constant *init = ConstantArray::get(t, newDynamicLDS);
1089       GlobalVariable *table = new GlobalVariable(
1090           M, t, true, GlobalValue::InternalLinkage, init,
1091           "llvm.amdgcn.dynlds.offset.table", nullptr,
1092           GlobalValue::NotThreadLocal, AMDGPUAS::CONSTANT_ADDRESS);
1093 
1094       for (GlobalVariable *GV : DynamicVariables) {
1095         for (Use &U : make_early_inc_range(GV->uses())) {
1096           auto *I = dyn_cast<Instruction>(U.getUser());
1097           if (!I)
1098             continue;
1099           if (isKernelLDS(I->getFunction()))
1100             continue;
1101 
1102           replaceUseWithTableLookup(M, Builder, table, GV, U, nullptr);
1103         }
1104       }
1105     }
1106     return KernelToCreatedDynamicLDS;
1107   }
1108 
1109   // This attribute is no longer used by the backend. TODO: Delete it in favour
1110   // of pass-local state and update the tests to remove the string.
1111   static bool canElideModuleLDS(const Function &F) {
1112     return F.hasFnAttribute("amdgpu-elide-module-lds");
1113   }
1114 
1115   static void markElideModuleLDS(Function &F) {
1116     F.addFnAttr("amdgpu-elide-module-lds");
1117   }
1118 
1119   bool runOnModule(Module &M) override {
1120     CallGraph CG = CallGraph(M);
1121     bool Changed = superAlignLDSGlobals(M);
1122 
1123     Changed |= eliminateConstantExprUsesOfLDSFromAllInstructions(M);
1124 
1125     Changed = true; // todo: narrow this down
1126 
1127     // For each kernel, what variables does it access directly or through
1128     // callees
1129     LDSUsesInfoTy LDSUsesInfo = getTransitiveUsesOfLDS(CG, M);
1130 
1131     // For each variable accessed through callees, which kernels access it
1132     VariableFunctionMap LDSToKernelsThatNeedToAccessItIndirectly;
1133     for (auto &K : LDSUsesInfo.indirect_access) {
1134       Function *F = K.first;
1135       assert(isKernelLDS(F));
1136       for (GlobalVariable *GV : K.second) {
1137         LDSToKernelsThatNeedToAccessItIndirectly[GV].insert(F);
1138       }
1139     }
1140 
1141     // Partition variables accessed indirectly into the different strategies
1142     DenseSet<GlobalVariable *> ModuleScopeVariables;
1143     DenseSet<GlobalVariable *> TableLookupVariables;
1144     DenseSet<GlobalVariable *> KernelAccessVariables;
1145     DenseSet<GlobalVariable *> DynamicVariables;
1146     partitionVariablesIntoIndirectStrategies(
1147         M, LDSUsesInfo, LDSToKernelsThatNeedToAccessItIndirectly,
1148         ModuleScopeVariables, TableLookupVariables, KernelAccessVariables,
1149         DynamicVariables);
1150 
1151     // If the kernel accesses a variable that is going to be stored in the
1152     // module instance through a call then that kernel needs to allocate the
1153     // module instance
1154     const DenseSet<Function *> KernelsThatAllocateModuleLDS =
1155         kernelsThatIndirectlyAccessAnyOfPassedVariables(M, LDSUsesInfo,
1156                                                         ModuleScopeVariables);
1157     const DenseSet<Function *> KernelsThatAllocateTableLDS =
1158         kernelsThatIndirectlyAccessAnyOfPassedVariables(M, LDSUsesInfo,
1159                                                         TableLookupVariables);
1160 
1161     const DenseSet<Function *> KernelsThatIndirectlyAllocateDynamicLDS =
1162         kernelsThatIndirectlyAccessAnyOfPassedVariables(M, LDSUsesInfo,
1163                                                         DynamicVariables);
1164 
1165     GlobalVariable *MaybeModuleScopeStruct = lowerModuleScopeStructVariables(
1166         M, ModuleScopeVariables, KernelsThatAllocateModuleLDS);
1167 
1168     DenseMap<Function *, LDSVariableReplacement> KernelToReplacement =
1169         lowerKernelScopeStructVariables(M, LDSUsesInfo, ModuleScopeVariables,
1170                                         KernelsThatAllocateModuleLDS,
1171                                         MaybeModuleScopeStruct);
1172 
1173     // Lower zero cost accesses to the kernel instances just created
1174     for (auto &GV : KernelAccessVariables) {
1175       auto &funcs = LDSToKernelsThatNeedToAccessItIndirectly[GV];
1176       assert(funcs.size() == 1); // Only one kernel can access it
1177       LDSVariableReplacement Replacement =
1178           KernelToReplacement[*(funcs.begin())];
1179 
1180       DenseSet<GlobalVariable *> Vec;
1181       Vec.insert(GV);
1182 
1183       replaceLDSVariablesWithStruct(M, Vec, Replacement, [](Use &U) {
1184         return isa<Instruction>(U.getUser());
1185       });
1186     }
1187 
1188     // The ith element of this vector is kernel id i
1189     std::vector<Function *> OrderedKernels =
1190         assignLDSKernelIDToEachKernel(&M, KernelsThatAllocateTableLDS,
1191                                       KernelsThatIndirectlyAllocateDynamicLDS);
1192 
1193     if (!KernelsThatAllocateTableLDS.empty()) {
1194       LLVMContext &Ctx = M.getContext();
1195       IRBuilder<> Builder(Ctx);
1196 
1197       // The order must be consistent between lookup table and accesses to
1198       // lookup table
1199       auto TableLookupVariablesOrdered =
1200           sortByName(std::vector<GlobalVariable *>(TableLookupVariables.begin(),
1201                                                    TableLookupVariables.end()));
1202 
1203       GlobalVariable *LookupTable = buildLookupTable(
1204           M, TableLookupVariablesOrdered, OrderedKernels, KernelToReplacement);
1205       replaceUsesInInstructionsWithTableLookup(M, TableLookupVariablesOrdered,
1206                                                LookupTable);
1207     }
1208 
1209     DenseMap<Function *, GlobalVariable *> KernelToCreatedDynamicLDS =
1210         lowerDynamicLDSVariables(M, LDSUsesInfo,
1211                                  KernelsThatIndirectlyAllocateDynamicLDS,
1212                                  DynamicVariables, OrderedKernels);
1213 
1214     // All kernel frames have been allocated. Calculate and record the
1215     // addresses.
1216     {
1217       const DataLayout &DL = M.getDataLayout();
1218 
1219       for (Function &Func : M.functions()) {
1220         if (Func.isDeclaration() || !isKernelLDS(&Func))
1221           continue;
1222 
1223         // All three of these are optional. The first variable is allocated at
1224         // zero. They are allocated by AMDGPUMachineFunction as one block.
1225         // Layout:
1226         //{
1227         //  module.lds
1228         //  alignment padding
1229         //  kernel instance
1230         //  alignment padding
1231         //  dynamic lds variables
1232         //}
1233 
1234         const bool AllocateModuleScopeStruct =
1235             MaybeModuleScopeStruct && !canElideModuleLDS(Func);
1236 
1237         auto Replacement = KernelToReplacement.find(&Func);
1238         const bool AllocateKernelScopeStruct =
1239             Replacement != KernelToReplacement.end();
1240 
1241         const bool AllocateDynamicVariable =
1242             KernelToCreatedDynamicLDS.contains(&Func);
1243 
1244         uint32_t Offset = 0;
1245 
1246         if (AllocateModuleScopeStruct) {
1247           // Allocated at zero, recorded once on construction, not once per
1248           // kernel
1249           Offset += DL.getTypeAllocSize(MaybeModuleScopeStruct->getValueType());
1250         }
1251 
1252         if (AllocateKernelScopeStruct) {
1253           GlobalVariable *KernelStruct = Replacement->second.SGV;
1254           Offset = alignTo(Offset, AMDGPU::getAlign(DL, KernelStruct));
1255           recordLDSAbsoluteAddress(&M, KernelStruct, Offset);
1256           Offset += DL.getTypeAllocSize(KernelStruct->getValueType());
1257         }
1258 
1259         // If there is dynamic allocation, the alignment needed is included in
1260         // the static frame size. There may be no reference to the dynamic
1261         // variable in the kernel itself, so without including it here, that
1262         // alignment padding could be missed.
1263         if (AllocateDynamicVariable) {
1264           GlobalVariable *DynamicVariable = KernelToCreatedDynamicLDS[&Func];
1265           Offset = alignTo(Offset, AMDGPU::getAlign(DL, DynamicVariable));
1266           recordLDSAbsoluteAddress(&M, DynamicVariable, Offset);
1267         }
1268 
1269         if (Offset != 0)
1270           Func.addFnAttr("amdgpu-lds-size", std::to_string(Offset));
1271       }
1272     }
1273 
1274     for (auto &GV : make_early_inc_range(M.globals()))
1275       if (AMDGPU::isLDSVariableToLower(GV)) {
1276         // probably want to remove from used lists
1277         GV.removeDeadConstantUsers();
1278         if (GV.use_empty())
1279           GV.eraseFromParent();
1280       }
1281 
1282     return Changed;
1283   }
1284 
1285 private:
1286   // Increase the alignment of LDS globals if necessary to maximise the chance
1287   // that we can use aligned LDS instructions to access them.
1288   static bool superAlignLDSGlobals(Module &M) {
1289     const DataLayout &DL = M.getDataLayout();
1290     bool Changed = false;
1291     if (!SuperAlignLDSGlobals) {
1292       return Changed;
1293     }
1294 
1295     for (auto &GV : M.globals()) {
1296       if (GV.getType()->getPointerAddressSpace() != AMDGPUAS::LOCAL_ADDRESS) {
1297         // Only changing alignment of LDS variables
1298         continue;
1299       }
1300       if (!GV.hasInitializer()) {
1301         // cuda/hip extern __shared__ variable, leave alignment alone
1302         continue;
1303       }
1304 
1305       Align Alignment = AMDGPU::getAlign(DL, &GV);
1306       TypeSize GVSize = DL.getTypeAllocSize(GV.getValueType());
1307 
1308       if (GVSize > 8) {
1309         // We might want to use a b96 or b128 load/store
1310         Alignment = std::max(Alignment, Align(16));
1311       } else if (GVSize > 4) {
1312         // We might want to use a b64 load/store
1313         Alignment = std::max(Alignment, Align(8));
1314       } else if (GVSize > 2) {
1315         // We might want to use a b32 load/store
1316         Alignment = std::max(Alignment, Align(4));
1317       } else if (GVSize > 1) {
1318         // We might want to use a b16 load/store
1319         Alignment = std::max(Alignment, Align(2));
1320       }
1321 
1322       if (Alignment != AMDGPU::getAlign(DL, &GV)) {
1323         Changed = true;
1324         GV.setAlignment(Alignment);
1325       }
1326     }
1327     return Changed;
1328   }
1329 
1330   static LDSVariableReplacement createLDSVariableReplacement(
1331       Module &M, std::string VarName,
1332       DenseSet<GlobalVariable *> const &LDSVarsToTransform) {
1333     // Create a struct instance containing LDSVarsToTransform and map from those
1334     // variables to ConstantExprGEP
1335     // Variables may be introduced to meet alignment requirements. No aliasing
1336     // metadata is useful for these as they have no uses. Erased before return.
1337 
1338     LLVMContext &Ctx = M.getContext();
1339     const DataLayout &DL = M.getDataLayout();
1340     assert(!LDSVarsToTransform.empty());
1341 
1342     SmallVector<OptimizedStructLayoutField, 8> LayoutFields;
1343     LayoutFields.reserve(LDSVarsToTransform.size());
1344     {
1345       // The order of fields in this struct depends on the order of
1346       // varables in the argument which varies when changing how they
1347       // are identified, leading to spurious test breakage.
1348       auto Sorted = sortByName(std::vector<GlobalVariable *>(
1349           LDSVarsToTransform.begin(), LDSVarsToTransform.end()));
1350 
1351       for (GlobalVariable *GV : Sorted) {
1352         OptimizedStructLayoutField F(GV,
1353                                      DL.getTypeAllocSize(GV->getValueType()),
1354                                      AMDGPU::getAlign(DL, GV));
1355         LayoutFields.emplace_back(F);
1356       }
1357     }
1358 
1359     performOptimizedStructLayout(LayoutFields);
1360 
1361     std::vector<GlobalVariable *> LocalVars;
1362     BitVector IsPaddingField;
1363     LocalVars.reserve(LDSVarsToTransform.size()); // will be at least this large
1364     IsPaddingField.reserve(LDSVarsToTransform.size());
1365     {
1366       uint64_t CurrentOffset = 0;
1367       for (size_t I = 0; I < LayoutFields.size(); I++) {
1368         GlobalVariable *FGV = static_cast<GlobalVariable *>(
1369             const_cast<void *>(LayoutFields[I].Id));
1370         Align DataAlign = LayoutFields[I].Alignment;
1371 
1372         uint64_t DataAlignV = DataAlign.value();
1373         if (uint64_t Rem = CurrentOffset % DataAlignV) {
1374           uint64_t Padding = DataAlignV - Rem;
1375 
1376           // Append an array of padding bytes to meet alignment requested
1377           // Note (o +      (a - (o % a)) ) % a == 0
1378           //      (offset + Padding       ) % align == 0
1379 
1380           Type *ATy = ArrayType::get(Type::getInt8Ty(Ctx), Padding);
1381           LocalVars.push_back(new GlobalVariable(
1382               M, ATy, false, GlobalValue::InternalLinkage, UndefValue::get(ATy),
1383               "", nullptr, GlobalValue::NotThreadLocal, AMDGPUAS::LOCAL_ADDRESS,
1384               false));
1385           IsPaddingField.push_back(true);
1386           CurrentOffset += Padding;
1387         }
1388 
1389         LocalVars.push_back(FGV);
1390         IsPaddingField.push_back(false);
1391         CurrentOffset += LayoutFields[I].Size;
1392       }
1393     }
1394 
1395     std::vector<Type *> LocalVarTypes;
1396     LocalVarTypes.reserve(LocalVars.size());
1397     std::transform(
1398         LocalVars.cbegin(), LocalVars.cend(), std::back_inserter(LocalVarTypes),
1399         [](const GlobalVariable *V) -> Type * { return V->getValueType(); });
1400 
1401     StructType *LDSTy = StructType::create(Ctx, LocalVarTypes, VarName + ".t");
1402 
1403     Align StructAlign = AMDGPU::getAlign(DL, LocalVars[0]);
1404 
1405     GlobalVariable *SGV = new GlobalVariable(
1406         M, LDSTy, false, GlobalValue::InternalLinkage, UndefValue::get(LDSTy),
1407         VarName, nullptr, GlobalValue::NotThreadLocal, AMDGPUAS::LOCAL_ADDRESS,
1408         false);
1409     SGV->setAlignment(StructAlign);
1410 
1411     DenseMap<GlobalVariable *, Constant *> Map;
1412     Type *I32 = Type::getInt32Ty(Ctx);
1413     for (size_t I = 0; I < LocalVars.size(); I++) {
1414       GlobalVariable *GV = LocalVars[I];
1415       Constant *GEPIdx[] = {ConstantInt::get(I32, 0), ConstantInt::get(I32, I)};
1416       Constant *GEP = ConstantExpr::getGetElementPtr(LDSTy, SGV, GEPIdx, true);
1417       if (IsPaddingField[I]) {
1418         assert(GV->use_empty());
1419         GV->eraseFromParent();
1420       } else {
1421         Map[GV] = GEP;
1422       }
1423     }
1424     assert(Map.size() == LDSVarsToTransform.size());
1425     return {SGV, std::move(Map)};
1426   }
1427 
1428   template <typename PredicateTy>
1429   static void replaceLDSVariablesWithStruct(
1430       Module &M, DenseSet<GlobalVariable *> const &LDSVarsToTransformArg,
1431       const LDSVariableReplacement &Replacement, PredicateTy Predicate) {
1432     LLVMContext &Ctx = M.getContext();
1433     const DataLayout &DL = M.getDataLayout();
1434 
1435     // A hack... we need to insert the aliasing info in a predictable order for
1436     // lit tests. Would like to have them in a stable order already, ideally the
1437     // same order they get allocated, which might mean an ordered set container
1438     auto LDSVarsToTransform = sortByName(std::vector<GlobalVariable *>(
1439         LDSVarsToTransformArg.begin(), LDSVarsToTransformArg.end()));
1440 
1441     // Create alias.scope and their lists. Each field in the new structure
1442     // does not alias with all other fields.
1443     SmallVector<MDNode *> AliasScopes;
1444     SmallVector<Metadata *> NoAliasList;
1445     const size_t NumberVars = LDSVarsToTransform.size();
1446     if (NumberVars > 1) {
1447       MDBuilder MDB(Ctx);
1448       AliasScopes.reserve(NumberVars);
1449       MDNode *Domain = MDB.createAnonymousAliasScopeDomain();
1450       for (size_t I = 0; I < NumberVars; I++) {
1451         MDNode *Scope = MDB.createAnonymousAliasScope(Domain);
1452         AliasScopes.push_back(Scope);
1453       }
1454       NoAliasList.append(&AliasScopes[1], AliasScopes.end());
1455     }
1456 
1457     // Replace uses of ith variable with a constantexpr to the corresponding
1458     // field of the instance that will be allocated by AMDGPUMachineFunction
1459     for (size_t I = 0; I < NumberVars; I++) {
1460       GlobalVariable *GV = LDSVarsToTransform[I];
1461       Constant *GEP = Replacement.LDSVarsToConstantGEP.at(GV);
1462 
1463       GV->replaceUsesWithIf(GEP, Predicate);
1464 
1465       APInt APOff(DL.getIndexTypeSizeInBits(GEP->getType()), 0);
1466       GEP->stripAndAccumulateInBoundsConstantOffsets(DL, APOff);
1467       uint64_t Offset = APOff.getZExtValue();
1468 
1469       Align A =
1470           commonAlignment(Replacement.SGV->getAlign().valueOrOne(), Offset);
1471 
1472       if (I)
1473         NoAliasList[I - 1] = AliasScopes[I - 1];
1474       MDNode *NoAlias =
1475           NoAliasList.empty() ? nullptr : MDNode::get(Ctx, NoAliasList);
1476       MDNode *AliasScope =
1477           AliasScopes.empty() ? nullptr : MDNode::get(Ctx, {AliasScopes[I]});
1478 
1479       refineUsesAlignmentAndAA(GEP, A, DL, AliasScope, NoAlias);
1480     }
1481   }
1482 
1483   static void refineUsesAlignmentAndAA(Value *Ptr, Align A,
1484                                        const DataLayout &DL, MDNode *AliasScope,
1485                                        MDNode *NoAlias, unsigned MaxDepth = 5) {
1486     if (!MaxDepth || (A == 1 && !AliasScope))
1487       return;
1488 
1489     for (User *U : Ptr->users()) {
1490       if (auto *I = dyn_cast<Instruction>(U)) {
1491         if (AliasScope && I->mayReadOrWriteMemory()) {
1492           MDNode *AS = I->getMetadata(LLVMContext::MD_alias_scope);
1493           AS = (AS ? MDNode::getMostGenericAliasScope(AS, AliasScope)
1494                    : AliasScope);
1495           I->setMetadata(LLVMContext::MD_alias_scope, AS);
1496 
1497           MDNode *NA = I->getMetadata(LLVMContext::MD_noalias);
1498           NA = (NA ? MDNode::intersect(NA, NoAlias) : NoAlias);
1499           I->setMetadata(LLVMContext::MD_noalias, NA);
1500         }
1501       }
1502 
1503       if (auto *LI = dyn_cast<LoadInst>(U)) {
1504         LI->setAlignment(std::max(A, LI->getAlign()));
1505         continue;
1506       }
1507       if (auto *SI = dyn_cast<StoreInst>(U)) {
1508         if (SI->getPointerOperand() == Ptr)
1509           SI->setAlignment(std::max(A, SI->getAlign()));
1510         continue;
1511       }
1512       if (auto *AI = dyn_cast<AtomicRMWInst>(U)) {
1513         // None of atomicrmw operations can work on pointers, but let's
1514         // check it anyway in case it will or we will process ConstantExpr.
1515         if (AI->getPointerOperand() == Ptr)
1516           AI->setAlignment(std::max(A, AI->getAlign()));
1517         continue;
1518       }
1519       if (auto *AI = dyn_cast<AtomicCmpXchgInst>(U)) {
1520         if (AI->getPointerOperand() == Ptr)
1521           AI->setAlignment(std::max(A, AI->getAlign()));
1522         continue;
1523       }
1524       if (auto *GEP = dyn_cast<GetElementPtrInst>(U)) {
1525         unsigned BitWidth = DL.getIndexTypeSizeInBits(GEP->getType());
1526         APInt Off(BitWidth, 0);
1527         if (GEP->getPointerOperand() == Ptr) {
1528           Align GA;
1529           if (GEP->accumulateConstantOffset(DL, Off))
1530             GA = commonAlignment(A, Off.getLimitedValue());
1531           refineUsesAlignmentAndAA(GEP, GA, DL, AliasScope, NoAlias,
1532                                    MaxDepth - 1);
1533         }
1534         continue;
1535       }
1536       if (auto *I = dyn_cast<Instruction>(U)) {
1537         if (I->getOpcode() == Instruction::BitCast ||
1538             I->getOpcode() == Instruction::AddrSpaceCast)
1539           refineUsesAlignmentAndAA(I, A, DL, AliasScope, NoAlias, MaxDepth - 1);
1540       }
1541     }
1542   }
1543 };
1544 
1545 } // namespace
1546 char AMDGPULowerModuleLDS::ID = 0;
1547 
1548 char &llvm::AMDGPULowerModuleLDSID = AMDGPULowerModuleLDS::ID;
1549 
1550 INITIALIZE_PASS(AMDGPULowerModuleLDS, DEBUG_TYPE,
1551                 "Lower uses of LDS variables from non-kernel functions", false,
1552                 false)
1553 
1554 ModulePass *llvm::createAMDGPULowerModuleLDSPass() {
1555   return new AMDGPULowerModuleLDS();
1556 }
1557 
1558 PreservedAnalyses AMDGPULowerModuleLDSPass::run(Module &M,
1559                                                 ModuleAnalysisManager &) {
1560   return AMDGPULowerModuleLDS().runOnModule(M) ? PreservedAnalyses::none()
1561                                                : PreservedAnalyses::all();
1562 }
1563