blob: 5d087c0991844ae19ad0732c72f124734aa1111f [file] [log] [blame]
Tom Stellard880a80a2014-06-17 16:53:14 +00001//===-- AMDGPUPromoteAlloca.cpp - Promote Allocas -------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This pass eliminates allocas by either converting them into vectors or
11// by migrating them to local address space.
12//
13//===----------------------------------------------------------------------===//
14
15#include "AMDGPU.h"
16#include "AMDGPUSubtarget.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000017#include "Utils/AMDGPUBaseInfo.h"
18#include "llvm/ADT/APInt.h"
19#include "llvm/ADT/None.h"
20#include "llvm/ADT/STLExtras.h"
21#include "llvm/ADT/StringRef.h"
22#include "llvm/ADT/Triple.h"
23#include "llvm/ADT/Twine.h"
Changpeng Fangc85abbd2017-01-24 19:06:28 +000024#include "llvm/Analysis/CaptureTracking.h"
Tom Stellard880a80a2014-06-17 16:53:14 +000025#include "llvm/Analysis/ValueTracking.h"
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +000026#include "llvm/CodeGen/TargetPassConfig.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000027#include "llvm/IR/Attributes.h"
28#include "llvm/IR/BasicBlock.h"
29#include "llvm/IR/Constant.h"
30#include "llvm/IR/Constants.h"
31#include "llvm/IR/DataLayout.h"
32#include "llvm/IR/DerivedTypes.h"
33#include "llvm/IR/Function.h"
34#include "llvm/IR/GlobalValue.h"
35#include "llvm/IR/GlobalVariable.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000036#include "llvm/IR/IRBuilder.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000037#include "llvm/IR/Instruction.h"
38#include "llvm/IR/Instructions.h"
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +000039#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000040#include "llvm/IR/Intrinsics.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000041#include "llvm/IR/LLVMContext.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000042#include "llvm/IR/Metadata.h"
43#include "llvm/IR/Module.h"
44#include "llvm/IR/Type.h"
45#include "llvm/IR/User.h"
46#include "llvm/IR/Value.h"
47#include "llvm/Pass.h"
48#include "llvm/Support/Casting.h"
Tom Stellard880a80a2014-06-17 16:53:14 +000049#include "llvm/Support/Debug.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000050#include "llvm/Support/ErrorHandling.h"
51#include "llvm/Support/MathExtras.h"
Benjamin Kramer16132e62015-03-23 18:07:13 +000052#include "llvm/Support/raw_ostream.h"
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000053#include "llvm/Target/TargetMachine.h"
54#include <algorithm>
55#include <cassert>
56#include <cstdint>
57#include <map>
58#include <tuple>
59#include <utility>
60#include <vector>
Tom Stellard880a80a2014-06-17 16:53:14 +000061
62#define DEBUG_TYPE "amdgpu-promote-alloca"
63
64using namespace llvm;
65
66namespace {
67
Changpeng Fangba920592018-02-16 19:14:17 +000068static cl::opt<bool> DisablePromoteAllocaToVector(
69 "disable-promote-alloca-to-vector",
70 cl::desc("Disable promote alloca to vector"),
71 cl::init(false));
72
Yaxun Liu73bf0af2018-11-06 21:28:17 +000073static cl::opt<bool> DisablePromoteAllocaToLDS(
74 "disable-promote-alloca-to-lds",
75 cl::desc("Disable promote alloca to LDS"),
76 cl::init(false));
77
Matt Arsenaulte0132462016-01-30 05:19:45 +000078// FIXME: This can create globals so should be a module pass.
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +000079class AMDGPUPromoteAlloca : public FunctionPass {
Matt Arsenaulte0132462016-01-30 05:19:45 +000080private:
81 const TargetMachine *TM;
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000082 Module *Mod = nullptr;
83 const DataLayout *DL = nullptr;
Matt Arsenaulte0132462016-01-30 05:19:45 +000084
85 // FIXME: This should be per-kernel.
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000086 uint32_t LocalMemLimit = 0;
87 uint32_t CurrentLocalMemUsage = 0;
Tom Stellard880a80a2014-06-17 16:53:14 +000088
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000089 bool IsAMDGCN = false;
90 bool IsAMDHSA = false;
Matt Arsenaulte0132462016-01-30 05:19:45 +000091
92 std::pair<Value *, Value *> getLocalSizeYZ(IRBuilder<> &Builder);
93 Value *getWorkitemID(IRBuilder<> &Builder, unsigned N);
94
Matt Arsenaulta61cb482016-05-12 01:58:58 +000095 /// BaseAlloca is the alloca root the search started from.
96 /// Val may be that alloca or a recursive user of it.
97 bool collectUsesWithPtrTypes(Value *BaseAlloca,
98 Value *Val,
99 std::vector<Value*> &WorkList) const;
100
101 /// Val is a derived pointer from Alloca. OpIdx0/OpIdx1 are the operand
102 /// indices to an instruction with 2 pointer inputs (e.g. select, icmp).
103 /// Returns true if both operands are derived from the same alloca. Val should
104 /// be the same value as one of the input operands of UseInst.
105 bool binaryOpIsDerivedFromSameAlloca(Value *Alloca, Value *Val,
106 Instruction *UseInst,
107 int OpIdx0, int OpIdx1) const;
108
Changpeng Fang1dbace12017-05-23 20:25:41 +0000109 /// Check whether we have enough local memory for promotion.
110 bool hasSufficientLocalMem(const Function &F);
111
Tom Stellard880a80a2014-06-17 16:53:14 +0000112public:
Matt Arsenaulte0132462016-01-30 05:19:45 +0000113 static char ID;
114
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000115 AMDGPUPromoteAlloca() : FunctionPass(ID) {}
Matt Arsenaulte0132462016-01-30 05:19:45 +0000116
Benjamin Kramer8c90fd72014-09-03 11:41:21 +0000117 bool doInitialization(Module &M) override;
118 bool runOnFunction(Function &F) override;
Matt Arsenaulte0132462016-01-30 05:19:45 +0000119
Mehdi Amini117296c2016-10-01 02:56:57 +0000120 StringRef getPassName() const override { return "AMDGPU Promote Alloca"; }
Matt Arsenaulte0132462016-01-30 05:19:45 +0000121
Changpeng Fang1dbace12017-05-23 20:25:41 +0000122 bool handleAlloca(AllocaInst &I, bool SufficientLDS);
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000123
124 void getAnalysisUsage(AnalysisUsage &AU) const override {
125 AU.setPreservesCFG();
126 FunctionPass::getAnalysisUsage(AU);
127 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000128};
129
Eugene Zelenko734bb7b2017-01-20 17:52:16 +0000130} // end anonymous namespace
Tom Stellard880a80a2014-06-17 16:53:14 +0000131
132char AMDGPUPromoteAlloca::ID = 0;
133
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000134INITIALIZE_PASS(AMDGPUPromoteAlloca, DEBUG_TYPE,
135 "AMDGPU promote alloca to vector or LDS", false, false)
Matt Arsenaulte0132462016-01-30 05:19:45 +0000136
137char &llvm::AMDGPUPromoteAllocaID = AMDGPUPromoteAlloca::ID;
138
Tom Stellard880a80a2014-06-17 16:53:14 +0000139bool AMDGPUPromoteAlloca::doInitialization(Module &M) {
140 Mod = &M;
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000141 DL = &Mod->getDataLayout();
Matt Arsenaulte0132462016-01-30 05:19:45 +0000142
Tom Stellard880a80a2014-06-17 16:53:14 +0000143 return false;
144}
145
146bool AMDGPUPromoteAlloca::runOnFunction(Function &F) {
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000147 if (skipFunction(F))
Matt Arsenaulte0132462016-01-30 05:19:45 +0000148 return false;
149
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000150 if (auto *TPC = getAnalysisIfAvailable<TargetPassConfig>())
151 TM = &TPC->getTM<TargetMachine>();
152 else
153 return false;
154
155 const Triple &TT = TM->getTargetTriple();
156 IsAMDGCN = TT.getArch() == Triple::amdgcn;
157 IsAMDHSA = TT.getOS() == Triple::AMDHSA;
158
Tom Stellard5bfbae52018-07-11 20:59:01 +0000159 const AMDGPUSubtarget &ST = AMDGPUSubtarget::get(*TM, F);
Matt Arsenault03d85842016-06-27 20:32:13 +0000160 if (!ST.isPromoteAllocaEnabled())
161 return false;
Changpeng Fang1dbace12017-05-23 20:25:41 +0000162
Changpeng Fang1dbace12017-05-23 20:25:41 +0000163 bool SufficientLDS = hasSufficientLocalMem(F);
164 bool Changed = false;
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +0000165 BasicBlock &EntryBB = *F.begin();
166 for (auto I = EntryBB.begin(), E = EntryBB.end(); I != E; ) {
167 AllocaInst *AI = dyn_cast<AllocaInst>(I);
168
169 ++I;
170 if (AI)
Changpeng Fang1dbace12017-05-23 20:25:41 +0000171 Changed |= handleAlloca(*AI, SufficientLDS);
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +0000172 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000173
Changpeng Fang1dbace12017-05-23 20:25:41 +0000174 return Changed;
Tom Stellard880a80a2014-06-17 16:53:14 +0000175}
176
Matt Arsenaulte0132462016-01-30 05:19:45 +0000177std::pair<Value *, Value *>
178AMDGPUPromoteAlloca::getLocalSizeYZ(IRBuilder<> &Builder) {
Tom Stellardc5a154d2018-06-28 23:47:12 +0000179 const Function &F = *Builder.GetInsertBlock()->getParent();
Tom Stellard5bfbae52018-07-11 20:59:01 +0000180 const AMDGPUSubtarget &ST = AMDGPUSubtarget::get(*TM, F);
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000181
Matt Arsenaulte0132462016-01-30 05:19:45 +0000182 if (!IsAMDHSA) {
183 Function *LocalSizeYFn
184 = Intrinsic::getDeclaration(Mod, Intrinsic::r600_read_local_size_y);
185 Function *LocalSizeZFn
186 = Intrinsic::getDeclaration(Mod, Intrinsic::r600_read_local_size_z);
187
188 CallInst *LocalSizeY = Builder.CreateCall(LocalSizeYFn, {});
189 CallInst *LocalSizeZ = Builder.CreateCall(LocalSizeZFn, {});
190
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000191 ST.makeLIDRangeMetadata(LocalSizeY);
192 ST.makeLIDRangeMetadata(LocalSizeZ);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000193
194 return std::make_pair(LocalSizeY, LocalSizeZ);
195 }
196
197 // We must read the size out of the dispatch pointer.
198 assert(IsAMDGCN);
199
200 // We are indexing into this struct, and want to extract the workgroup_size_*
201 // fields.
202 //
203 // typedef struct hsa_kernel_dispatch_packet_s {
204 // uint16_t header;
205 // uint16_t setup;
206 // uint16_t workgroup_size_x ;
207 // uint16_t workgroup_size_y;
208 // uint16_t workgroup_size_z;
209 // uint16_t reserved0;
210 // uint32_t grid_size_x ;
211 // uint32_t grid_size_y ;
212 // uint32_t grid_size_z;
213 //
214 // uint32_t private_segment_size;
215 // uint32_t group_segment_size;
216 // uint64_t kernel_object;
217 //
218 // #ifdef HSA_LARGE_MODEL
219 // void *kernarg_address;
220 // #elif defined HSA_LITTLE_ENDIAN
221 // void *kernarg_address;
222 // uint32_t reserved1;
223 // #else
224 // uint32_t reserved1;
225 // void *kernarg_address;
226 // #endif
227 // uint64_t reserved2;
228 // hsa_signal_t completion_signal; // uint64_t wrapper
229 // } hsa_kernel_dispatch_packet_t
230 //
231 Function *DispatchPtrFn
232 = Intrinsic::getDeclaration(Mod, Intrinsic::amdgcn_dispatch_ptr);
233
234 CallInst *DispatchPtr = Builder.CreateCall(DispatchPtrFn, {});
Reid Klecknerb5180542017-03-21 16:57:19 +0000235 DispatchPtr->addAttribute(AttributeList::ReturnIndex, Attribute::NoAlias);
236 DispatchPtr->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000237
238 // Size of the dispatch packet struct.
Reid Klecknerb5180542017-03-21 16:57:19 +0000239 DispatchPtr->addDereferenceableAttr(AttributeList::ReturnIndex, 64);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000240
241 Type *I32Ty = Type::getInt32Ty(Mod->getContext());
242 Value *CastDispatchPtr = Builder.CreateBitCast(
Matt Arsenault0da63502018-08-31 05:49:54 +0000243 DispatchPtr, PointerType::get(I32Ty, AMDGPUAS::CONSTANT_ADDRESS));
Matt Arsenaulte0132462016-01-30 05:19:45 +0000244
245 // We could do a single 64-bit load here, but it's likely that the basic
246 // 32-bit and extract sequence is already present, and it is probably easier
247 // to CSE this. The loads should be mergable later anyway.
248 Value *GEPXY = Builder.CreateConstInBoundsGEP1_64(CastDispatchPtr, 1);
249 LoadInst *LoadXY = Builder.CreateAlignedLoad(GEPXY, 4);
250
251 Value *GEPZU = Builder.CreateConstInBoundsGEP1_64(CastDispatchPtr, 2);
252 LoadInst *LoadZU = Builder.CreateAlignedLoad(GEPZU, 4);
253
Eugene Zelenko734bb7b2017-01-20 17:52:16 +0000254 MDNode *MD = MDNode::get(Mod->getContext(), None);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000255 LoadXY->setMetadata(LLVMContext::MD_invariant_load, MD);
256 LoadZU->setMetadata(LLVMContext::MD_invariant_load, MD);
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000257 ST.makeLIDRangeMetadata(LoadZU);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000258
259 // Extract y component. Upper half of LoadZU should be zero already.
260 Value *Y = Builder.CreateLShr(LoadXY, 16);
261
262 return std::make_pair(Y, LoadZU);
263}
264
265Value *AMDGPUPromoteAlloca::getWorkitemID(IRBuilder<> &Builder, unsigned N) {
Tom Stellard5bfbae52018-07-11 20:59:01 +0000266 const AMDGPUSubtarget &ST =
267 AMDGPUSubtarget::get(*TM, *Builder.GetInsertBlock()->getParent());
Matt Arsenaulte0132462016-01-30 05:19:45 +0000268 Intrinsic::ID IntrID = Intrinsic::ID::not_intrinsic;
269
270 switch (N) {
271 case 0:
272 IntrID = IsAMDGCN ? Intrinsic::amdgcn_workitem_id_x
273 : Intrinsic::r600_read_tidig_x;
274 break;
275 case 1:
276 IntrID = IsAMDGCN ? Intrinsic::amdgcn_workitem_id_y
277 : Intrinsic::r600_read_tidig_y;
278 break;
279
280 case 2:
281 IntrID = IsAMDGCN ? Intrinsic::amdgcn_workitem_id_z
282 : Intrinsic::r600_read_tidig_z;
283 break;
284 default:
285 llvm_unreachable("invalid dimension");
286 }
287
288 Function *WorkitemIdFn = Intrinsic::getDeclaration(Mod, IntrID);
289 CallInst *CI = Builder.CreateCall(WorkitemIdFn);
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000290 ST.makeLIDRangeMetadata(CI);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000291
292 return CI;
293}
294
Matt Arsenault37ab4cf2017-09-14 18:02:29 +0000295static VectorType *arrayTypeToVecType(ArrayType *ArrayTy) {
296 return VectorType::get(ArrayTy->getElementType(),
297 ArrayTy->getNumElements());
Tom Stellard880a80a2014-06-17 16:53:14 +0000298}
299
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +0000300static Value *
301calculateVectorIndex(Value *Ptr,
302 const std::map<GetElementPtrInst *, Value *> &GEPIdx) {
Tom Stellard880a80a2014-06-17 16:53:14 +0000303 GetElementPtrInst *GEP = cast<GetElementPtrInst>(Ptr);
304
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +0000305 auto I = GEPIdx.find(GEP);
306 return I == GEPIdx.end() ? nullptr : I->second;
Tom Stellard880a80a2014-06-17 16:53:14 +0000307}
308
309static Value* GEPToVectorIndex(GetElementPtrInst *GEP) {
310 // FIXME we only support simple cases
311 if (GEP->getNumOperands() != 3)
Matt Arsenaultefb24542016-07-18 18:34:53 +0000312 return nullptr;
Tom Stellard880a80a2014-06-17 16:53:14 +0000313
314 ConstantInt *I0 = dyn_cast<ConstantInt>(GEP->getOperand(1));
315 if (!I0 || !I0->isZero())
Matt Arsenaultefb24542016-07-18 18:34:53 +0000316 return nullptr;
Tom Stellard880a80a2014-06-17 16:53:14 +0000317
318 return GEP->getOperand(2);
319}
320
Matt Arsenault642d2e72014-06-27 16:52:49 +0000321// Not an instruction handled below to turn into a vector.
322//
323// TODO: Check isTriviallyVectorizable for calls and handle other
324// instructions.
Matt Arsenault7227cc12015-07-28 18:47:00 +0000325static bool canVectorizeInst(Instruction *Inst, User *User) {
Matt Arsenault642d2e72014-06-27 16:52:49 +0000326 switch (Inst->getOpcode()) {
Changpeng Fang161e8c39af2017-05-12 20:31:12 +0000327 case Instruction::Load: {
Changpeng Fang860d4602018-05-17 21:49:44 +0000328 // Currently only handle the case where the Pointer Operand is a GEP.
329 // Also we could not vectorize volatile or atomic loads.
Changpeng Fang161e8c39af2017-05-12 20:31:12 +0000330 LoadInst *LI = cast<LoadInst>(Inst);
Stanislav Mekhanoshin6cc8b2f2018-11-08 00:16:23 +0000331 if (isa<AllocaInst>(User) &&
332 LI->getPointerOperandType() == User->getType() &&
333 isa<VectorType>(LI->getType()))
334 return true;
Changpeng Fang860d4602018-05-17 21:49:44 +0000335 return isa<GetElementPtrInst>(LI->getPointerOperand()) && LI->isSimple();
Changpeng Fang161e8c39af2017-05-12 20:31:12 +0000336 }
Matt Arsenault642d2e72014-06-27 16:52:49 +0000337 case Instruction::BitCast:
Matt Arsenault642d2e72014-06-27 16:52:49 +0000338 return true;
Matt Arsenault7227cc12015-07-28 18:47:00 +0000339 case Instruction::Store: {
David Stuttard82618ba2017-06-09 14:16:22 +0000340 // Must be the stored pointer operand, not a stored value, plus
341 // since it should be canonical form, the User should be a GEP.
Changpeng Fang860d4602018-05-17 21:49:44 +0000342 // Also we could not vectorize volatile or atomic stores.
Matt Arsenault7227cc12015-07-28 18:47:00 +0000343 StoreInst *SI = cast<StoreInst>(Inst);
Stanislav Mekhanoshin6cc8b2f2018-11-08 00:16:23 +0000344 if (isa<AllocaInst>(User) &&
345 SI->getPointerOperandType() == User->getType() &&
346 isa<VectorType>(SI->getValueOperand()->getType()))
347 return true;
Changpeng Fang860d4602018-05-17 21:49:44 +0000348 return (SI->getPointerOperand() == User) && isa<GetElementPtrInst>(User) && SI->isSimple();
Matt Arsenault7227cc12015-07-28 18:47:00 +0000349 }
Matt Arsenault642d2e72014-06-27 16:52:49 +0000350 default:
351 return false;
352 }
353}
354
Matt Arsenault0da63502018-08-31 05:49:54 +0000355static bool tryPromoteAllocaToVector(AllocaInst *Alloca) {
Changpeng Fangba920592018-02-16 19:14:17 +0000356
357 if (DisablePromoteAllocaToVector) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000358 LLVM_DEBUG(dbgs() << " Promotion alloca to vector is disabled\n");
Changpeng Fangba920592018-02-16 19:14:17 +0000359 return false;
360 }
361
Stanislav Mekhanoshin6cc8b2f2018-11-08 00:16:23 +0000362 Type *AT = Alloca->getAllocatedType();
363 SequentialType *AllocaTy = dyn_cast<SequentialType>(AT);
Tom Stellard880a80a2014-06-17 16:53:14 +0000364
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000365 LLVM_DEBUG(dbgs() << "Alloca candidate for vectorization\n");
Tom Stellard880a80a2014-06-17 16:53:14 +0000366
367 // FIXME: There is no reason why we can't support larger arrays, we
368 // are just being conservative for now.
David Stuttard82618ba2017-06-09 14:16:22 +0000369 // FIXME: We also reject alloca's of the form [ 2 x [ 2 x i32 ]] or equivalent. Potentially these
370 // could also be promoted but we don't currently handle this case
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000371 if (!AllocaTy ||
Changpeng Fangba920592018-02-16 19:14:17 +0000372 AllocaTy->getNumElements() > 16 ||
Matt Arsenault37ab4cf2017-09-14 18:02:29 +0000373 AllocaTy->getNumElements() < 2 ||
374 !VectorType::isValidElementType(AllocaTy->getElementType())) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000375 LLVM_DEBUG(dbgs() << " Cannot convert type to vector\n");
Tom Stellard880a80a2014-06-17 16:53:14 +0000376 return false;
377 }
378
379 std::map<GetElementPtrInst*, Value*> GEPVectorIdx;
380 std::vector<Value*> WorkList;
381 for (User *AllocaUser : Alloca->users()) {
382 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(AllocaUser);
383 if (!GEP) {
Matt Arsenault7227cc12015-07-28 18:47:00 +0000384 if (!canVectorizeInst(cast<Instruction>(AllocaUser), Alloca))
Matt Arsenault642d2e72014-06-27 16:52:49 +0000385 return false;
386
Tom Stellard880a80a2014-06-17 16:53:14 +0000387 WorkList.push_back(AllocaUser);
388 continue;
389 }
390
391 Value *Index = GEPToVectorIndex(GEP);
392
393 // If we can't compute a vector index from this GEP, then we can't
394 // promote this alloca to vector.
395 if (!Index) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000396 LLVM_DEBUG(dbgs() << " Cannot compute vector index for GEP " << *GEP
397 << '\n');
Tom Stellard880a80a2014-06-17 16:53:14 +0000398 return false;
399 }
400
401 GEPVectorIdx[GEP] = Index;
402 for (User *GEPUser : AllocaUser->users()) {
Matt Arsenault7227cc12015-07-28 18:47:00 +0000403 if (!canVectorizeInst(cast<Instruction>(GEPUser), AllocaUser))
Matt Arsenault642d2e72014-06-27 16:52:49 +0000404 return false;
405
Tom Stellard880a80a2014-06-17 16:53:14 +0000406 WorkList.push_back(GEPUser);
407 }
408 }
409
Stanislav Mekhanoshin6cc8b2f2018-11-08 00:16:23 +0000410 VectorType *VectorTy = dyn_cast<VectorType>(AllocaTy);
411 if (!VectorTy)
412 VectorTy = arrayTypeToVecType(cast<ArrayType>(AllocaTy));
Tom Stellard880a80a2014-06-17 16:53:14 +0000413
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000414 LLVM_DEBUG(dbgs() << " Converting alloca to vector " << *AllocaTy << " -> "
415 << *VectorTy << '\n');
Tom Stellard880a80a2014-06-17 16:53:14 +0000416
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000417 for (Value *V : WorkList) {
418 Instruction *Inst = cast<Instruction>(V);
Tom Stellard880a80a2014-06-17 16:53:14 +0000419 IRBuilder<> Builder(Inst);
420 switch (Inst->getOpcode()) {
421 case Instruction::Load: {
Stanislav Mekhanoshin6cc8b2f2018-11-08 00:16:23 +0000422 if (Inst->getType() == AT)
423 break;
424
Matt Arsenault0da63502018-08-31 05:49:54 +0000425 Type *VecPtrTy = VectorTy->getPointerTo(AMDGPUAS::PRIVATE_ADDRESS);
David Stuttard82618ba2017-06-09 14:16:22 +0000426 Value *Ptr = cast<LoadInst>(Inst)->getPointerOperand();
Tom Stellard880a80a2014-06-17 16:53:14 +0000427 Value *Index = calculateVectorIndex(Ptr, GEPVectorIdx);
Matt Arsenaultefb24542016-07-18 18:34:53 +0000428
429 Value *BitCast = Builder.CreateBitCast(Alloca, VecPtrTy);
Tom Stellard880a80a2014-06-17 16:53:14 +0000430 Value *VecValue = Builder.CreateLoad(BitCast);
431 Value *ExtractElement = Builder.CreateExtractElement(VecValue, Index);
432 Inst->replaceAllUsesWith(ExtractElement);
433 Inst->eraseFromParent();
434 break;
435 }
436 case Instruction::Store: {
David Stuttard82618ba2017-06-09 14:16:22 +0000437 StoreInst *SI = cast<StoreInst>(Inst);
Stanislav Mekhanoshin6cc8b2f2018-11-08 00:16:23 +0000438 if (SI->getValueOperand()->getType() == AT)
439 break;
440
441 Type *VecPtrTy = VectorTy->getPointerTo(AMDGPUAS::PRIVATE_ADDRESS);
David Stuttard82618ba2017-06-09 14:16:22 +0000442 Value *Ptr = SI->getPointerOperand();
Tom Stellard880a80a2014-06-17 16:53:14 +0000443 Value *Index = calculateVectorIndex(Ptr, GEPVectorIdx);
Matt Arsenaultefb24542016-07-18 18:34:53 +0000444 Value *BitCast = Builder.CreateBitCast(Alloca, VecPtrTy);
Tom Stellard880a80a2014-06-17 16:53:14 +0000445 Value *VecValue = Builder.CreateLoad(BitCast);
446 Value *NewVecValue = Builder.CreateInsertElement(VecValue,
David Stuttard82618ba2017-06-09 14:16:22 +0000447 SI->getValueOperand(),
Tom Stellard880a80a2014-06-17 16:53:14 +0000448 Index);
449 Builder.CreateStore(NewVecValue, BitCast);
450 Inst->eraseFromParent();
451 break;
452 }
453 case Instruction::BitCast:
Matt Arsenault642d2e72014-06-27 16:52:49 +0000454 case Instruction::AddrSpaceCast:
Tom Stellard880a80a2014-06-17 16:53:14 +0000455 break;
456
457 default:
Matt Arsenault642d2e72014-06-27 16:52:49 +0000458 llvm_unreachable("Inconsistency in instructions promotable to vector");
Tom Stellard880a80a2014-06-17 16:53:14 +0000459 }
460 }
461 return true;
462}
463
Matt Arsenaultad134842016-02-02 19:18:53 +0000464static bool isCallPromotable(CallInst *CI) {
Matt Arsenaultad134842016-02-02 19:18:53 +0000465 IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI);
466 if (!II)
467 return false;
468
469 switch (II->getIntrinsicID()) {
470 case Intrinsic::memcpy:
Matt Arsenault7e747f12016-02-02 20:28:10 +0000471 case Intrinsic::memmove:
Matt Arsenaultad134842016-02-02 19:18:53 +0000472 case Intrinsic::memset:
473 case Intrinsic::lifetime_start:
474 case Intrinsic::lifetime_end:
475 case Intrinsic::invariant_start:
476 case Intrinsic::invariant_end:
Piotr Padlewski5dde8092018-05-03 11:03:01 +0000477 case Intrinsic::launder_invariant_group:
Piotr Padlewski5b3db452018-07-02 04:49:30 +0000478 case Intrinsic::strip_invariant_group:
Matt Arsenault7e747f12016-02-02 20:28:10 +0000479 case Intrinsic::objectsize:
Matt Arsenaultad134842016-02-02 19:18:53 +0000480 return true;
481 default:
482 return false;
483 }
484}
485
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000486bool AMDGPUPromoteAlloca::binaryOpIsDerivedFromSameAlloca(Value *BaseAlloca,
487 Value *Val,
488 Instruction *Inst,
489 int OpIdx0,
490 int OpIdx1) const {
491 // Figure out which operand is the one we might not be promoting.
492 Value *OtherOp = Inst->getOperand(OpIdx0);
493 if (Val == OtherOp)
494 OtherOp = Inst->getOperand(OpIdx1);
495
Matt Arsenault891fccc2016-05-18 15:57:21 +0000496 if (isa<ConstantPointerNull>(OtherOp))
497 return true;
498
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000499 Value *OtherObj = GetUnderlyingObject(OtherOp, *DL);
500 if (!isa<AllocaInst>(OtherObj))
501 return false;
502
503 // TODO: We should be able to replace undefs with the right pointer type.
504
505 // TODO: If we know the other base object is another promotable
506 // alloca, not necessarily this alloca, we can do this. The
507 // important part is both must have the same address space at
508 // the end.
509 if (OtherObj != BaseAlloca) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000510 LLVM_DEBUG(
511 dbgs() << "Found a binary instruction with another alloca object\n");
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000512 return false;
513 }
514
515 return true;
516}
517
518bool AMDGPUPromoteAlloca::collectUsesWithPtrTypes(
519 Value *BaseAlloca,
520 Value *Val,
521 std::vector<Value*> &WorkList) const {
522
Tom Stellard880a80a2014-06-17 16:53:14 +0000523 for (User *User : Val->users()) {
David Majnemer0d955d02016-08-11 22:21:41 +0000524 if (is_contained(WorkList, User))
Tom Stellard880a80a2014-06-17 16:53:14 +0000525 continue;
Matt Arsenaultad134842016-02-02 19:18:53 +0000526
Matt Arsenaultfdcd39a2015-07-28 18:29:14 +0000527 if (CallInst *CI = dyn_cast<CallInst>(User)) {
Matt Arsenaultad134842016-02-02 19:18:53 +0000528 if (!isCallPromotable(CI))
Matt Arsenaultfdcd39a2015-07-28 18:29:14 +0000529 return false;
530
Tom Stellard880a80a2014-06-17 16:53:14 +0000531 WorkList.push_back(User);
532 continue;
533 }
Tom Stellard5b2927f2014-10-31 20:52:04 +0000534
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000535 Instruction *UseInst = cast<Instruction>(User);
536 if (UseInst->getOpcode() == Instruction::PtrToInt)
Tom Stellard5b2927f2014-10-31 20:52:04 +0000537 return false;
538
Matt Arsenault210b7cf2016-07-18 19:00:07 +0000539 if (LoadInst *LI = dyn_cast<LoadInst>(UseInst)) {
Matt Arsenaultc438ef52016-05-18 23:20:24 +0000540 if (LI->isVolatile())
541 return false;
542
543 continue;
544 }
545
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000546 if (StoreInst *SI = dyn_cast<StoreInst>(UseInst)) {
Matt Arsenault0a30e452016-03-23 23:17:29 +0000547 if (SI->isVolatile())
548 return false;
549
Matt Arsenault7227cc12015-07-28 18:47:00 +0000550 // Reject if the stored value is not the pointer operand.
551 if (SI->getPointerOperand() != Val)
552 return false;
Matt Arsenault210b7cf2016-07-18 19:00:07 +0000553 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(UseInst)) {
Matt Arsenault0a30e452016-03-23 23:17:29 +0000554 if (RMW->isVolatile())
555 return false;
Matt Arsenault210b7cf2016-07-18 19:00:07 +0000556 } else if (AtomicCmpXchgInst *CAS = dyn_cast<AtomicCmpXchgInst>(UseInst)) {
Matt Arsenault0a30e452016-03-23 23:17:29 +0000557 if (CAS->isVolatile())
558 return false;
Matt Arsenault7227cc12015-07-28 18:47:00 +0000559 }
560
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000561 // Only promote a select if we know that the other select operand
562 // is from another pointer that will also be promoted.
563 if (ICmpInst *ICmp = dyn_cast<ICmpInst>(UseInst)) {
564 if (!binaryOpIsDerivedFromSameAlloca(BaseAlloca, Val, ICmp, 0, 1))
565 return false;
Matt Arsenault891fccc2016-05-18 15:57:21 +0000566
567 // May need to rewrite constant operands.
568 WorkList.push_back(ICmp);
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000569 }
570
Matt Arsenault2402b952016-12-10 00:52:50 +0000571 if (UseInst->getOpcode() == Instruction::AddrSpaceCast) {
Changpeng Fangc85abbd2017-01-24 19:06:28 +0000572 // Give up if the pointer may be captured.
573 if (PointerMayBeCaptured(UseInst, true, true))
574 return false;
Matt Arsenault2402b952016-12-10 00:52:50 +0000575 // Don't collect the users of this.
576 WorkList.push_back(User);
577 continue;
578 }
579
Tom Stellard880a80a2014-06-17 16:53:14 +0000580 if (!User->getType()->isPointerTy())
581 continue;
Tom Stellard5b2927f2014-10-31 20:52:04 +0000582
Matt Arsenaultde420812016-02-02 21:16:12 +0000583 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UseInst)) {
584 // Be conservative if an address could be computed outside the bounds of
585 // the alloca.
586 if (!GEP->isInBounds())
587 return false;
588 }
589
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000590 // Only promote a select if we know that the other select operand is from
591 // another pointer that will also be promoted.
592 if (SelectInst *SI = dyn_cast<SelectInst>(UseInst)) {
593 if (!binaryOpIsDerivedFromSameAlloca(BaseAlloca, Val, SI, 1, 2))
594 return false;
595 }
596
597 // Repeat for phis.
598 if (PHINode *Phi = dyn_cast<PHINode>(UseInst)) {
599 // TODO: Handle more complex cases. We should be able to replace loops
600 // over arrays.
601 switch (Phi->getNumIncomingValues()) {
602 case 1:
603 break;
604 case 2:
605 if (!binaryOpIsDerivedFromSameAlloca(BaseAlloca, Val, Phi, 0, 1))
606 return false;
607 break;
608 default:
609 return false;
610 }
611 }
612
Tom Stellard880a80a2014-06-17 16:53:14 +0000613 WorkList.push_back(User);
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000614 if (!collectUsesWithPtrTypes(BaseAlloca, User, WorkList))
Matt Arsenaultad134842016-02-02 19:18:53 +0000615 return false;
Tom Stellard880a80a2014-06-17 16:53:14 +0000616 }
Matt Arsenaultad134842016-02-02 19:18:53 +0000617
618 return true;
Tom Stellard880a80a2014-06-17 16:53:14 +0000619}
620
Changpeng Fang1dbace12017-05-23 20:25:41 +0000621bool AMDGPUPromoteAlloca::hasSufficientLocalMem(const Function &F) {
622
623 FunctionType *FTy = F.getFunctionType();
Tom Stellard5bfbae52018-07-11 20:59:01 +0000624 const AMDGPUSubtarget &ST = AMDGPUSubtarget::get(*TM, F);
Changpeng Fang1dbace12017-05-23 20:25:41 +0000625
626 // If the function has any arguments in the local address space, then it's
627 // possible these arguments require the entire local memory space, so
628 // we cannot use local memory in the pass.
629 for (Type *ParamTy : FTy->params()) {
630 PointerType *PtrTy = dyn_cast<PointerType>(ParamTy);
Matt Arsenault0da63502018-08-31 05:49:54 +0000631 if (PtrTy && PtrTy->getAddressSpace() == AMDGPUAS::LOCAL_ADDRESS) {
Changpeng Fang1dbace12017-05-23 20:25:41 +0000632 LocalMemLimit = 0;
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000633 LLVM_DEBUG(dbgs() << "Function has local memory argument. Promoting to "
634 "local memory disabled.\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000635 return false;
636 }
637 }
638
639 LocalMemLimit = ST.getLocalMemorySize();
640 if (LocalMemLimit == 0)
641 return false;
642
643 const DataLayout &DL = Mod->getDataLayout();
644
645 // Check how much local memory is being used by global objects
646 CurrentLocalMemUsage = 0;
647 for (GlobalVariable &GV : Mod->globals()) {
Matt Arsenault0da63502018-08-31 05:49:54 +0000648 if (GV.getType()->getAddressSpace() != AMDGPUAS::LOCAL_ADDRESS)
Changpeng Fang1dbace12017-05-23 20:25:41 +0000649 continue;
650
651 for (const User *U : GV.users()) {
652 const Instruction *Use = dyn_cast<Instruction>(U);
653 if (!Use)
654 continue;
655
656 if (Use->getParent()->getParent() == &F) {
657 unsigned Align = GV.getAlignment();
658 if (Align == 0)
659 Align = DL.getABITypeAlignment(GV.getValueType());
660
661 // FIXME: Try to account for padding here. The padding is currently
662 // determined from the inverse order of uses in the function. I'm not
663 // sure if the use list order is in any way connected to this, so the
664 // total reported size is likely incorrect.
665 uint64_t AllocSize = DL.getTypeAllocSize(GV.getValueType());
666 CurrentLocalMemUsage = alignTo(CurrentLocalMemUsage, Align);
667 CurrentLocalMemUsage += AllocSize;
668 break;
669 }
670 }
671 }
672
673 unsigned MaxOccupancy = ST.getOccupancyWithLocalMemSize(CurrentLocalMemUsage,
674 F);
675
676 // Restrict local memory usage so that we don't drastically reduce occupancy,
677 // unless it is already significantly reduced.
678
679 // TODO: Have some sort of hint or other heuristics to guess occupancy based
680 // on other factors..
681 unsigned OccupancyHint = ST.getWavesPerEU(F).second;
682 if (OccupancyHint == 0)
683 OccupancyHint = 7;
684
685 // Clamp to max value.
686 OccupancyHint = std::min(OccupancyHint, ST.getMaxWavesPerEU());
687
688 // Check the hint but ignore it if it's obviously wrong from the existing LDS
689 // usage.
690 MaxOccupancy = std::min(OccupancyHint, MaxOccupancy);
691
692
693 // Round up to the next tier of usage.
694 unsigned MaxSizeWithWaveCount
695 = ST.getMaxLocalMemSizeWithWaveCount(MaxOccupancy, F);
696
697 // Program is possibly broken by using more local mem than available.
698 if (CurrentLocalMemUsage > MaxSizeWithWaveCount)
699 return false;
700
701 LocalMemLimit = MaxSizeWithWaveCount;
702
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000703 LLVM_DEBUG(dbgs() << F.getName() << " uses " << CurrentLocalMemUsage
704 << " bytes of LDS\n"
705 << " Rounding size to " << MaxSizeWithWaveCount
706 << " with a maximum occupancy of " << MaxOccupancy << '\n'
707 << " and " << (LocalMemLimit - CurrentLocalMemUsage)
708 << " available for promotion\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000709
710 return true;
711}
712
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000713// FIXME: Should try to pick the most likely to be profitable allocas first.
Changpeng Fang1dbace12017-05-23 20:25:41 +0000714bool AMDGPUPromoteAlloca::handleAlloca(AllocaInst &I, bool SufficientLDS) {
Matt Arsenaultc5fce692016-04-28 18:38:48 +0000715 // Array allocations are probably not worth handling, since an allocation of
716 // the array type is the canonical form.
717 if (!I.isStaticAlloca() || I.isArrayAllocation())
Changpeng Fang1dbace12017-05-23 20:25:41 +0000718 return false;
Matt Arsenault19c54882015-08-26 18:37:13 +0000719
Tom Stellard880a80a2014-06-17 16:53:14 +0000720 IRBuilder<> Builder(&I);
721
722 // First try to replace the alloca with a vector
723 Type *AllocaTy = I.getAllocatedType();
724
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000725 LLVM_DEBUG(dbgs() << "Trying to promote " << I << '\n');
Tom Stellard880a80a2014-06-17 16:53:14 +0000726
Matt Arsenault0da63502018-08-31 05:49:54 +0000727 if (tryPromoteAllocaToVector(&I))
Changpeng Fang1dbace12017-05-23 20:25:41 +0000728 return true; // Promoted to vector.
Tom Stellard880a80a2014-06-17 16:53:14 +0000729
Yaxun Liu73bf0af2018-11-06 21:28:17 +0000730 if (DisablePromoteAllocaToLDS)
731 return false;
732
Tom Stellard79a1fd72016-04-14 16:27:07 +0000733 const Function &ContainingFunction = *I.getParent()->getParent();
Matt Arsenault5c806182017-05-02 18:33:18 +0000734 CallingConv::ID CC = ContainingFunction.getCallingConv();
Tom Stellard79a1fd72016-04-14 16:27:07 +0000735
Nicolai Haehnlebef1ceb2016-07-18 09:02:47 +0000736 // Don't promote the alloca to LDS for shader calling conventions as the work
737 // item ID intrinsics are not supported for these calling conventions.
738 // Furthermore not all LDS is available for some of the stages.
Matt Arsenault5c806182017-05-02 18:33:18 +0000739 switch (CC) {
740 case CallingConv::AMDGPU_KERNEL:
741 case CallingConv::SPIR_KERNEL:
742 break;
743 default:
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000744 LLVM_DEBUG(
745 dbgs()
746 << " promote alloca to LDS not supported with calling convention.\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000747 return false;
Matt Arsenault5c806182017-05-02 18:33:18 +0000748 }
Nicolai Haehnlebef1ceb2016-07-18 09:02:47 +0000749
Changpeng Fang1dbace12017-05-23 20:25:41 +0000750 // Not likely to have sufficient local memory for promotion.
751 if (!SufficientLDS)
752 return false;
753
Tom Stellard5bfbae52018-07-11 20:59:01 +0000754 const AMDGPUSubtarget &ST = AMDGPUSubtarget::get(*TM, ContainingFunction);
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000755 unsigned WorkGroupSize = ST.getFlatWorkGroupSizes(ContainingFunction).second;
Tom Stellard79a1fd72016-04-14 16:27:07 +0000756
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000757 const DataLayout &DL = Mod->getDataLayout();
Tom Stellard880a80a2014-06-17 16:53:14 +0000758
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000759 unsigned Align = I.getAlignment();
760 if (Align == 0)
761 Align = DL.getABITypeAlignment(I.getAllocatedType());
762
763 // FIXME: This computed padding is likely wrong since it depends on inverse
764 // usage order.
765 //
766 // FIXME: It is also possible that if we're allowed to use all of the memory
767 // could could end up using more than the maximum due to alignment padding.
768
769 uint32_t NewSize = alignTo(CurrentLocalMemUsage, Align);
770 uint32_t AllocSize = WorkGroupSize * DL.getTypeAllocSize(AllocaTy);
771 NewSize += AllocSize;
772
773 if (NewSize > LocalMemLimit) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000774 LLVM_DEBUG(dbgs() << " " << AllocSize
775 << " bytes of local memory not available to promote\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000776 return false;
Tom Stellard880a80a2014-06-17 16:53:14 +0000777 }
778
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000779 CurrentLocalMemUsage = NewSize;
780
Tom Stellard5b2927f2014-10-31 20:52:04 +0000781 std::vector<Value*> WorkList;
782
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000783 if (!collectUsesWithPtrTypes(&I, &I, WorkList)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000784 LLVM_DEBUG(dbgs() << " Do not know how to convert all uses\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000785 return false;
Tom Stellard5b2927f2014-10-31 20:52:04 +0000786 }
787
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000788 LLVM_DEBUG(dbgs() << "Promoting alloca to local memory\n");
Tom Stellard880a80a2014-06-17 16:53:14 +0000789
Matt Arsenaultcf84e262016-02-05 19:47:23 +0000790 Function *F = I.getParent()->getParent();
791
Tom Stellard79a1fd72016-04-14 16:27:07 +0000792 Type *GVTy = ArrayType::get(I.getAllocatedType(), WorkGroupSize);
Tom Stellard880a80a2014-06-17 16:53:14 +0000793 GlobalVariable *GV = new GlobalVariable(
Matt Arsenaultcf84e262016-02-05 19:47:23 +0000794 *Mod, GVTy, false, GlobalValue::InternalLinkage,
795 UndefValue::get(GVTy),
796 Twine(F->getName()) + Twine('.') + I.getName(),
797 nullptr,
798 GlobalVariable::NotThreadLocal,
Matt Arsenault0da63502018-08-31 05:49:54 +0000799 AMDGPUAS::LOCAL_ADDRESS);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000800 GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Matt Arsenaultcf84e262016-02-05 19:47:23 +0000801 GV->setAlignment(I.getAlignment());
Tom Stellard880a80a2014-06-17 16:53:14 +0000802
Matt Arsenaulte0132462016-01-30 05:19:45 +0000803 Value *TCntY, *TCntZ;
Tom Stellard880a80a2014-06-17 16:53:14 +0000804
Matt Arsenaulte0132462016-01-30 05:19:45 +0000805 std::tie(TCntY, TCntZ) = getLocalSizeYZ(Builder);
806 Value *TIdX = getWorkitemID(Builder, 0);
807 Value *TIdY = getWorkitemID(Builder, 1);
808 Value *TIdZ = getWorkitemID(Builder, 2);
Tom Stellard880a80a2014-06-17 16:53:14 +0000809
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000810 Value *Tmp0 = Builder.CreateMul(TCntY, TCntZ, "", true, true);
Tom Stellard880a80a2014-06-17 16:53:14 +0000811 Tmp0 = Builder.CreateMul(Tmp0, TIdX);
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000812 Value *Tmp1 = Builder.CreateMul(TIdY, TCntZ, "", true, true);
Tom Stellard880a80a2014-06-17 16:53:14 +0000813 Value *TID = Builder.CreateAdd(Tmp0, Tmp1);
814 TID = Builder.CreateAdd(TID, TIdZ);
815
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000816 Value *Indices[] = {
817 Constant::getNullValue(Type::getInt32Ty(Mod->getContext())),
818 TID
819 };
Tom Stellard880a80a2014-06-17 16:53:14 +0000820
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000821 Value *Offset = Builder.CreateInBoundsGEP(GVTy, GV, Indices);
Tom Stellard880a80a2014-06-17 16:53:14 +0000822 I.mutateType(Offset->getType());
823 I.replaceAllUsesWith(Offset);
824 I.eraseFromParent();
825
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000826 for (Value *V : WorkList) {
Tom Stellard880a80a2014-06-17 16:53:14 +0000827 CallInst *Call = dyn_cast<CallInst>(V);
828 if (!Call) {
Matt Arsenault891fccc2016-05-18 15:57:21 +0000829 if (ICmpInst *CI = dyn_cast<ICmpInst>(V)) {
830 Value *Src0 = CI->getOperand(0);
831 Type *EltTy = Src0->getType()->getPointerElementType();
Matt Arsenault0da63502018-08-31 05:49:54 +0000832 PointerType *NewTy = PointerType::get(EltTy, AMDGPUAS::LOCAL_ADDRESS);
Matt Arsenault891fccc2016-05-18 15:57:21 +0000833
834 if (isa<ConstantPointerNull>(CI->getOperand(0)))
835 CI->setOperand(0, ConstantPointerNull::get(NewTy));
836
837 if (isa<ConstantPointerNull>(CI->getOperand(1)))
838 CI->setOperand(1, ConstantPointerNull::get(NewTy));
839
840 continue;
841 }
Matt Arsenault65f67e42014-09-15 15:41:44 +0000842
Matt Arsenault2402b952016-12-10 00:52:50 +0000843 // The operand's value should be corrected on its own and we don't want to
844 // touch the users.
Matt Arsenault65f67e42014-09-15 15:41:44 +0000845 if (isa<AddrSpaceCastInst>(V))
846 continue;
847
Matt Arsenault891fccc2016-05-18 15:57:21 +0000848 Type *EltTy = V->getType()->getPointerElementType();
Matt Arsenault0da63502018-08-31 05:49:54 +0000849 PointerType *NewTy = PointerType::get(EltTy, AMDGPUAS::LOCAL_ADDRESS);
Matt Arsenault891fccc2016-05-18 15:57:21 +0000850
Matt Arsenault65f67e42014-09-15 15:41:44 +0000851 // FIXME: It doesn't really make sense to try to do this for all
852 // instructions.
Tom Stellard880a80a2014-06-17 16:53:14 +0000853 V->mutateType(NewTy);
Matt Arsenault891fccc2016-05-18 15:57:21 +0000854
855 // Adjust the types of any constant operands.
856 if (SelectInst *SI = dyn_cast<SelectInst>(V)) {
857 if (isa<ConstantPointerNull>(SI->getOperand(1)))
858 SI->setOperand(1, ConstantPointerNull::get(NewTy));
859
860 if (isa<ConstantPointerNull>(SI->getOperand(2)))
861 SI->setOperand(2, ConstantPointerNull::get(NewTy));
862 } else if (PHINode *Phi = dyn_cast<PHINode>(V)) {
863 for (unsigned I = 0, E = Phi->getNumIncomingValues(); I != E; ++I) {
864 if (isa<ConstantPointerNull>(Phi->getIncomingValue(I)))
865 Phi->setIncomingValue(I, ConstantPointerNull::get(NewTy));
866 }
867 }
868
Tom Stellard880a80a2014-06-17 16:53:14 +0000869 continue;
870 }
871
Matt Arsenault2e08e182016-07-18 18:34:48 +0000872 IntrinsicInst *Intr = cast<IntrinsicInst>(Call);
Tom Stellard880a80a2014-06-17 16:53:14 +0000873 Builder.SetInsertPoint(Intr);
874 switch (Intr->getIntrinsicID()) {
875 case Intrinsic::lifetime_start:
876 case Intrinsic::lifetime_end:
877 // These intrinsics are for address space 0 only
878 Intr->eraseFromParent();
879 continue;
880 case Intrinsic::memcpy: {
881 MemCpyInst *MemCpy = cast<MemCpyInst>(Intr);
Daniel Neilsona60f4622018-02-09 21:56:15 +0000882 Builder.CreateMemCpy(MemCpy->getRawDest(), MemCpy->getDestAlignment(),
883 MemCpy->getRawSource(), MemCpy->getSourceAlignment(),
884 MemCpy->getLength(), MemCpy->isVolatile());
Tom Stellard880a80a2014-06-17 16:53:14 +0000885 Intr->eraseFromParent();
886 continue;
887 }
Matt Arsenault7e747f12016-02-02 20:28:10 +0000888 case Intrinsic::memmove: {
889 MemMoveInst *MemMove = cast<MemMoveInst>(Intr);
Daniel Neilsona60f4622018-02-09 21:56:15 +0000890 Builder.CreateMemMove(MemMove->getRawDest(), MemMove->getDestAlignment(),
891 MemMove->getRawSource(), MemMove->getSourceAlignment(),
892 MemMove->getLength(), MemMove->isVolatile());
Matt Arsenault7e747f12016-02-02 20:28:10 +0000893 Intr->eraseFromParent();
894 continue;
895 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000896 case Intrinsic::memset: {
897 MemSetInst *MemSet = cast<MemSetInst>(Intr);
898 Builder.CreateMemSet(MemSet->getRawDest(), MemSet->getValue(),
Daniel Neilsona60f4622018-02-09 21:56:15 +0000899 MemSet->getLength(), MemSet->getDestAlignment(),
Tom Stellard880a80a2014-06-17 16:53:14 +0000900 MemSet->isVolatile());
901 Intr->eraseFromParent();
902 continue;
903 }
Matt Arsenault0b783ef02016-01-22 19:47:54 +0000904 case Intrinsic::invariant_start:
905 case Intrinsic::invariant_end:
Piotr Padlewski5dde8092018-05-03 11:03:01 +0000906 case Intrinsic::launder_invariant_group:
Piotr Padlewski5b3db452018-07-02 04:49:30 +0000907 case Intrinsic::strip_invariant_group:
Matt Arsenault0b783ef02016-01-22 19:47:54 +0000908 Intr->eraseFromParent();
909 // FIXME: I think the invariant marker should still theoretically apply,
910 // but the intrinsics need to be changed to accept pointers with any
911 // address space.
912 continue;
Matt Arsenault7e747f12016-02-02 20:28:10 +0000913 case Intrinsic::objectsize: {
914 Value *Src = Intr->getOperand(0);
915 Type *SrcTy = Src->getType()->getPointerElementType();
916 Function *ObjectSize = Intrinsic::getDeclaration(Mod,
917 Intrinsic::objectsize,
Matt Arsenault0da63502018-08-31 05:49:54 +0000918 { Intr->getType(), PointerType::get(SrcTy, AMDGPUAS::LOCAL_ADDRESS) }
Matt Arsenault7e747f12016-02-02 20:28:10 +0000919 );
920
George Burgess IV56c7e882017-03-21 20:08:59 +0000921 CallInst *NewCall = Builder.CreateCall(
922 ObjectSize, {Src, Intr->getOperand(1), Intr->getOperand(2)});
Matt Arsenault7e747f12016-02-02 20:28:10 +0000923 Intr->replaceAllUsesWith(NewCall);
924 Intr->eraseFromParent();
925 continue;
926 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000927 default:
Matthias Braun8c209aa2017-01-28 02:02:38 +0000928 Intr->print(errs());
Tom Stellard880a80a2014-06-17 16:53:14 +0000929 llvm_unreachable("Don't know how to promote alloca intrinsic use.");
930 }
931 }
Changpeng Fang1dbace12017-05-23 20:25:41 +0000932 return true;
Tom Stellard880a80a2014-06-17 16:53:14 +0000933}
934
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000935FunctionPass *llvm::createAMDGPUPromoteAlloca() {
936 return new AMDGPUPromoteAlloca();
Tom Stellard880a80a2014-06-17 16:53:14 +0000937}