blob: cf8469f14ba7b95979760880ed022353cfe5b0ea [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
Matt Arsenaulte0132462016-01-30 05:19:45 +000073// FIXME: This can create globals so should be a module pass.
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +000074class AMDGPUPromoteAlloca : public FunctionPass {
Matt Arsenaulte0132462016-01-30 05:19:45 +000075private:
76 const TargetMachine *TM;
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000077 Module *Mod = nullptr;
78 const DataLayout *DL = nullptr;
Yaxun Liu1a14bfa2017-03-27 14:04:01 +000079 AMDGPUAS AS;
Matt Arsenaulte0132462016-01-30 05:19:45 +000080
81 // FIXME: This should be per-kernel.
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000082 uint32_t LocalMemLimit = 0;
83 uint32_t CurrentLocalMemUsage = 0;
Tom Stellard880a80a2014-06-17 16:53:14 +000084
Eugene Zelenko734bb7b2017-01-20 17:52:16 +000085 bool IsAMDGCN = false;
86 bool IsAMDHSA = false;
Matt Arsenaulte0132462016-01-30 05:19:45 +000087
88 std::pair<Value *, Value *> getLocalSizeYZ(IRBuilder<> &Builder);
89 Value *getWorkitemID(IRBuilder<> &Builder, unsigned N);
90
Matt Arsenaulta61cb482016-05-12 01:58:58 +000091 /// BaseAlloca is the alloca root the search started from.
92 /// Val may be that alloca or a recursive user of it.
93 bool collectUsesWithPtrTypes(Value *BaseAlloca,
94 Value *Val,
95 std::vector<Value*> &WorkList) const;
96
97 /// Val is a derived pointer from Alloca. OpIdx0/OpIdx1 are the operand
98 /// indices to an instruction with 2 pointer inputs (e.g. select, icmp).
99 /// Returns true if both operands are derived from the same alloca. Val should
100 /// be the same value as one of the input operands of UseInst.
101 bool binaryOpIsDerivedFromSameAlloca(Value *Alloca, Value *Val,
102 Instruction *UseInst,
103 int OpIdx0, int OpIdx1) const;
104
Changpeng Fang1dbace12017-05-23 20:25:41 +0000105 /// Check whether we have enough local memory for promotion.
106 bool hasSufficientLocalMem(const Function &F);
107
Tom Stellard880a80a2014-06-17 16:53:14 +0000108public:
Matt Arsenaulte0132462016-01-30 05:19:45 +0000109 static char ID;
110
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000111 AMDGPUPromoteAlloca() : FunctionPass(ID) {}
Matt Arsenaulte0132462016-01-30 05:19:45 +0000112
Benjamin Kramer8c90fd72014-09-03 11:41:21 +0000113 bool doInitialization(Module &M) override;
114 bool runOnFunction(Function &F) override;
Matt Arsenaulte0132462016-01-30 05:19:45 +0000115
Mehdi Amini117296c2016-10-01 02:56:57 +0000116 StringRef getPassName() const override { return "AMDGPU Promote Alloca"; }
Matt Arsenaulte0132462016-01-30 05:19:45 +0000117
Changpeng Fang1dbace12017-05-23 20:25:41 +0000118 bool handleAlloca(AllocaInst &I, bool SufficientLDS);
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000119
120 void getAnalysisUsage(AnalysisUsage &AU) const override {
121 AU.setPreservesCFG();
122 FunctionPass::getAnalysisUsage(AU);
123 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000124};
125
Eugene Zelenko734bb7b2017-01-20 17:52:16 +0000126} // end anonymous namespace
Tom Stellard880a80a2014-06-17 16:53:14 +0000127
128char AMDGPUPromoteAlloca::ID = 0;
129
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000130INITIALIZE_PASS(AMDGPUPromoteAlloca, DEBUG_TYPE,
131 "AMDGPU promote alloca to vector or LDS", false, false)
Matt Arsenaulte0132462016-01-30 05:19:45 +0000132
133char &llvm::AMDGPUPromoteAllocaID = AMDGPUPromoteAlloca::ID;
134
Tom Stellard880a80a2014-06-17 16:53:14 +0000135bool AMDGPUPromoteAlloca::doInitialization(Module &M) {
136 Mod = &M;
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000137 DL = &Mod->getDataLayout();
Matt Arsenaulte0132462016-01-30 05:19:45 +0000138
Tom Stellard880a80a2014-06-17 16:53:14 +0000139 return false;
140}
141
142bool AMDGPUPromoteAlloca::runOnFunction(Function &F) {
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000143 if (skipFunction(F))
Matt Arsenaulte0132462016-01-30 05:19:45 +0000144 return false;
145
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000146 if (auto *TPC = getAnalysisIfAvailable<TargetPassConfig>())
147 TM = &TPC->getTM<TargetMachine>();
148 else
149 return false;
150
151 const Triple &TT = TM->getTargetTriple();
152 IsAMDGCN = TT.getArch() == Triple::amdgcn;
153 IsAMDHSA = TT.getOS() == Triple::AMDHSA;
154
Matt Arsenault03d85842016-06-27 20:32:13 +0000155 const AMDGPUSubtarget &ST = TM->getSubtarget<AMDGPUSubtarget>(F);
156 if (!ST.isPromoteAllocaEnabled())
157 return false;
Changpeng Fang1dbace12017-05-23 20:25:41 +0000158
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000159 AS = AMDGPU::getAMDGPUAS(*F.getParent());
Matt Arsenault03d85842016-06-27 20:32:13 +0000160
Changpeng Fang1dbace12017-05-23 20:25:41 +0000161 bool SufficientLDS = hasSufficientLocalMem(F);
162 bool Changed = false;
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +0000163 BasicBlock &EntryBB = *F.begin();
164 for (auto I = EntryBB.begin(), E = EntryBB.end(); I != E; ) {
165 AllocaInst *AI = dyn_cast<AllocaInst>(I);
166
167 ++I;
168 if (AI)
Changpeng Fang1dbace12017-05-23 20:25:41 +0000169 Changed |= handleAlloca(*AI, SufficientLDS);
Matt Arsenaultbafc9dc2016-03-11 08:20:50 +0000170 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000171
Changpeng Fang1dbace12017-05-23 20:25:41 +0000172 return Changed;
Tom Stellard880a80a2014-06-17 16:53:14 +0000173}
174
Matt Arsenaulte0132462016-01-30 05:19:45 +0000175std::pair<Value *, Value *>
176AMDGPUPromoteAlloca::getLocalSizeYZ(IRBuilder<> &Builder) {
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000177 const AMDGPUSubtarget &ST = TM->getSubtarget<AMDGPUSubtarget>(
178 *Builder.GetInsertBlock()->getParent());
179
Matt Arsenaulte0132462016-01-30 05:19:45 +0000180 if (!IsAMDHSA) {
181 Function *LocalSizeYFn
182 = Intrinsic::getDeclaration(Mod, Intrinsic::r600_read_local_size_y);
183 Function *LocalSizeZFn
184 = Intrinsic::getDeclaration(Mod, Intrinsic::r600_read_local_size_z);
185
186 CallInst *LocalSizeY = Builder.CreateCall(LocalSizeYFn, {});
187 CallInst *LocalSizeZ = Builder.CreateCall(LocalSizeZFn, {});
188
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000189 ST.makeLIDRangeMetadata(LocalSizeY);
190 ST.makeLIDRangeMetadata(LocalSizeZ);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000191
192 return std::make_pair(LocalSizeY, LocalSizeZ);
193 }
194
195 // We must read the size out of the dispatch pointer.
196 assert(IsAMDGCN);
197
198 // We are indexing into this struct, and want to extract the workgroup_size_*
199 // fields.
200 //
201 // typedef struct hsa_kernel_dispatch_packet_s {
202 // uint16_t header;
203 // uint16_t setup;
204 // uint16_t workgroup_size_x ;
205 // uint16_t workgroup_size_y;
206 // uint16_t workgroup_size_z;
207 // uint16_t reserved0;
208 // uint32_t grid_size_x ;
209 // uint32_t grid_size_y ;
210 // uint32_t grid_size_z;
211 //
212 // uint32_t private_segment_size;
213 // uint32_t group_segment_size;
214 // uint64_t kernel_object;
215 //
216 // #ifdef HSA_LARGE_MODEL
217 // void *kernarg_address;
218 // #elif defined HSA_LITTLE_ENDIAN
219 // void *kernarg_address;
220 // uint32_t reserved1;
221 // #else
222 // uint32_t reserved1;
223 // void *kernarg_address;
224 // #endif
225 // uint64_t reserved2;
226 // hsa_signal_t completion_signal; // uint64_t wrapper
227 // } hsa_kernel_dispatch_packet_t
228 //
229 Function *DispatchPtrFn
230 = Intrinsic::getDeclaration(Mod, Intrinsic::amdgcn_dispatch_ptr);
231
232 CallInst *DispatchPtr = Builder.CreateCall(DispatchPtrFn, {});
Reid Klecknerb5180542017-03-21 16:57:19 +0000233 DispatchPtr->addAttribute(AttributeList::ReturnIndex, Attribute::NoAlias);
234 DispatchPtr->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000235
236 // Size of the dispatch packet struct.
Reid Klecknerb5180542017-03-21 16:57:19 +0000237 DispatchPtr->addDereferenceableAttr(AttributeList::ReturnIndex, 64);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000238
239 Type *I32Ty = Type::getInt32Ty(Mod->getContext());
240 Value *CastDispatchPtr = Builder.CreateBitCast(
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000241 DispatchPtr, PointerType::get(I32Ty, AS.CONSTANT_ADDRESS));
Matt Arsenaulte0132462016-01-30 05:19:45 +0000242
243 // We could do a single 64-bit load here, but it's likely that the basic
244 // 32-bit and extract sequence is already present, and it is probably easier
245 // to CSE this. The loads should be mergable later anyway.
246 Value *GEPXY = Builder.CreateConstInBoundsGEP1_64(CastDispatchPtr, 1);
247 LoadInst *LoadXY = Builder.CreateAlignedLoad(GEPXY, 4);
248
249 Value *GEPZU = Builder.CreateConstInBoundsGEP1_64(CastDispatchPtr, 2);
250 LoadInst *LoadZU = Builder.CreateAlignedLoad(GEPZU, 4);
251
Eugene Zelenko734bb7b2017-01-20 17:52:16 +0000252 MDNode *MD = MDNode::get(Mod->getContext(), None);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000253 LoadXY->setMetadata(LLVMContext::MD_invariant_load, MD);
254 LoadZU->setMetadata(LLVMContext::MD_invariant_load, MD);
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000255 ST.makeLIDRangeMetadata(LoadZU);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000256
257 // Extract y component. Upper half of LoadZU should be zero already.
258 Value *Y = Builder.CreateLShr(LoadXY, 16);
259
260 return std::make_pair(Y, LoadZU);
261}
262
263Value *AMDGPUPromoteAlloca::getWorkitemID(IRBuilder<> &Builder, unsigned N) {
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000264 const AMDGPUSubtarget &ST = TM->getSubtarget<AMDGPUSubtarget>(
265 *Builder.GetInsertBlock()->getParent());
Matt Arsenaulte0132462016-01-30 05:19:45 +0000266 Intrinsic::ID IntrID = Intrinsic::ID::not_intrinsic;
267
268 switch (N) {
269 case 0:
270 IntrID = IsAMDGCN ? Intrinsic::amdgcn_workitem_id_x
271 : Intrinsic::r600_read_tidig_x;
272 break;
273 case 1:
274 IntrID = IsAMDGCN ? Intrinsic::amdgcn_workitem_id_y
275 : Intrinsic::r600_read_tidig_y;
276 break;
277
278 case 2:
279 IntrID = IsAMDGCN ? Intrinsic::amdgcn_workitem_id_z
280 : Intrinsic::r600_read_tidig_z;
281 break;
282 default:
283 llvm_unreachable("invalid dimension");
284 }
285
286 Function *WorkitemIdFn = Intrinsic::getDeclaration(Mod, IntrID);
287 CallInst *CI = Builder.CreateCall(WorkitemIdFn);
Stanislav Mekhanoshinc90347d2017-04-12 20:48:56 +0000288 ST.makeLIDRangeMetadata(CI);
Matt Arsenaulte0132462016-01-30 05:19:45 +0000289
290 return CI;
291}
292
Matt Arsenault37ab4cf2017-09-14 18:02:29 +0000293static VectorType *arrayTypeToVecType(ArrayType *ArrayTy) {
294 return VectorType::get(ArrayTy->getElementType(),
295 ArrayTy->getNumElements());
Tom Stellard880a80a2014-06-17 16:53:14 +0000296}
297
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +0000298static Value *
299calculateVectorIndex(Value *Ptr,
300 const std::map<GetElementPtrInst *, Value *> &GEPIdx) {
Tom Stellard880a80a2014-06-17 16:53:14 +0000301 GetElementPtrInst *GEP = cast<GetElementPtrInst>(Ptr);
302
Benjamin Kramerc6cc58e2014-10-04 16:55:56 +0000303 auto I = GEPIdx.find(GEP);
304 return I == GEPIdx.end() ? nullptr : I->second;
Tom Stellard880a80a2014-06-17 16:53:14 +0000305}
306
307static Value* GEPToVectorIndex(GetElementPtrInst *GEP) {
308 // FIXME we only support simple cases
309 if (GEP->getNumOperands() != 3)
Matt Arsenaultefb24542016-07-18 18:34:53 +0000310 return nullptr;
Tom Stellard880a80a2014-06-17 16:53:14 +0000311
312 ConstantInt *I0 = dyn_cast<ConstantInt>(GEP->getOperand(1));
313 if (!I0 || !I0->isZero())
Matt Arsenaultefb24542016-07-18 18:34:53 +0000314 return nullptr;
Tom Stellard880a80a2014-06-17 16:53:14 +0000315
316 return GEP->getOperand(2);
317}
318
Matt Arsenault642d2e72014-06-27 16:52:49 +0000319// Not an instruction handled below to turn into a vector.
320//
321// TODO: Check isTriviallyVectorizable for calls and handle other
322// instructions.
Matt Arsenault7227cc12015-07-28 18:47:00 +0000323static bool canVectorizeInst(Instruction *Inst, User *User) {
Matt Arsenault642d2e72014-06-27 16:52:49 +0000324 switch (Inst->getOpcode()) {
Changpeng Fang161e8c39af2017-05-12 20:31:12 +0000325 case Instruction::Load: {
326 LoadInst *LI = cast<LoadInst>(Inst);
David Stuttard82618ba2017-06-09 14:16:22 +0000327 // Currently only handle the case where the Pointer Operand is a GEP so check for that case.
328 return isa<GetElementPtrInst>(LI->getPointerOperand()) && !LI->isVolatile();
Changpeng Fang161e8c39af2017-05-12 20:31:12 +0000329 }
Matt Arsenault642d2e72014-06-27 16:52:49 +0000330 case Instruction::BitCast:
331 case Instruction::AddrSpaceCast:
332 return true;
Matt Arsenault7227cc12015-07-28 18:47:00 +0000333 case Instruction::Store: {
David Stuttard82618ba2017-06-09 14:16:22 +0000334 // Must be the stored pointer operand, not a stored value, plus
335 // since it should be canonical form, the User should be a GEP.
Matt Arsenault7227cc12015-07-28 18:47:00 +0000336 StoreInst *SI = cast<StoreInst>(Inst);
David Stuttard82618ba2017-06-09 14:16:22 +0000337 return (SI->getPointerOperand() == User) && isa<GetElementPtrInst>(User) && !SI->isVolatile();
Matt Arsenault7227cc12015-07-28 18:47:00 +0000338 }
Matt Arsenault642d2e72014-06-27 16:52:49 +0000339 default:
340 return false;
341 }
342}
343
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000344static bool tryPromoteAllocaToVector(AllocaInst *Alloca, AMDGPUAS AS) {
Changpeng Fangba920592018-02-16 19:14:17 +0000345
346 if (DisablePromoteAllocaToVector) {
347 DEBUG(dbgs() << " Promotion alloca to vector is disabled\n");
348 return false;
349 }
350
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000351 ArrayType *AllocaTy = dyn_cast<ArrayType>(Alloca->getAllocatedType());
Tom Stellard880a80a2014-06-17 16:53:14 +0000352
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000353 DEBUG(dbgs() << "Alloca candidate for vectorization\n");
Tom Stellard880a80a2014-06-17 16:53:14 +0000354
355 // FIXME: There is no reason why we can't support larger arrays, we
356 // are just being conservative for now.
David Stuttard82618ba2017-06-09 14:16:22 +0000357 // FIXME: We also reject alloca's of the form [ 2 x [ 2 x i32 ]] or equivalent. Potentially these
358 // could also be promoted but we don't currently handle this case
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000359 if (!AllocaTy ||
Changpeng Fangba920592018-02-16 19:14:17 +0000360 AllocaTy->getNumElements() > 16 ||
Matt Arsenault37ab4cf2017-09-14 18:02:29 +0000361 AllocaTy->getNumElements() < 2 ||
362 !VectorType::isValidElementType(AllocaTy->getElementType())) {
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000363 DEBUG(dbgs() << " Cannot convert type to vector\n");
Tom Stellard880a80a2014-06-17 16:53:14 +0000364 return false;
365 }
366
367 std::map<GetElementPtrInst*, Value*> GEPVectorIdx;
368 std::vector<Value*> WorkList;
369 for (User *AllocaUser : Alloca->users()) {
370 GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(AllocaUser);
371 if (!GEP) {
Matt Arsenault7227cc12015-07-28 18:47:00 +0000372 if (!canVectorizeInst(cast<Instruction>(AllocaUser), Alloca))
Matt Arsenault642d2e72014-06-27 16:52:49 +0000373 return false;
374
Tom Stellard880a80a2014-06-17 16:53:14 +0000375 WorkList.push_back(AllocaUser);
376 continue;
377 }
378
379 Value *Index = GEPToVectorIndex(GEP);
380
381 // If we can't compute a vector index from this GEP, then we can't
382 // promote this alloca to vector.
383 if (!Index) {
Matt Arsenault6f62cf82014-06-27 02:36:59 +0000384 DEBUG(dbgs() << " Cannot compute vector index for GEP " << *GEP << '\n');
Tom Stellard880a80a2014-06-17 16:53:14 +0000385 return false;
386 }
387
388 GEPVectorIdx[GEP] = Index;
389 for (User *GEPUser : AllocaUser->users()) {
Matt Arsenault7227cc12015-07-28 18:47:00 +0000390 if (!canVectorizeInst(cast<Instruction>(GEPUser), AllocaUser))
Matt Arsenault642d2e72014-06-27 16:52:49 +0000391 return false;
392
Tom Stellard880a80a2014-06-17 16:53:14 +0000393 WorkList.push_back(GEPUser);
394 }
395 }
396
397 VectorType *VectorTy = arrayTypeToVecType(AllocaTy);
398
Matt Arsenault6f62cf82014-06-27 02:36:59 +0000399 DEBUG(dbgs() << " Converting alloca to vector "
400 << *AllocaTy << " -> " << *VectorTy << '\n');
Tom Stellard880a80a2014-06-17 16:53:14 +0000401
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000402 for (Value *V : WorkList) {
403 Instruction *Inst = cast<Instruction>(V);
Tom Stellard880a80a2014-06-17 16:53:14 +0000404 IRBuilder<> Builder(Inst);
405 switch (Inst->getOpcode()) {
406 case Instruction::Load: {
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000407 Type *VecPtrTy = VectorTy->getPointerTo(AS.PRIVATE_ADDRESS);
David Stuttard82618ba2017-06-09 14:16:22 +0000408 Value *Ptr = cast<LoadInst>(Inst)->getPointerOperand();
Tom Stellard880a80a2014-06-17 16:53:14 +0000409 Value *Index = calculateVectorIndex(Ptr, GEPVectorIdx);
Matt Arsenaultefb24542016-07-18 18:34:53 +0000410
411 Value *BitCast = Builder.CreateBitCast(Alloca, VecPtrTy);
Tom Stellard880a80a2014-06-17 16:53:14 +0000412 Value *VecValue = Builder.CreateLoad(BitCast);
413 Value *ExtractElement = Builder.CreateExtractElement(VecValue, Index);
414 Inst->replaceAllUsesWith(ExtractElement);
415 Inst->eraseFromParent();
416 break;
417 }
418 case Instruction::Store: {
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000419 Type *VecPtrTy = VectorTy->getPointerTo(AS.PRIVATE_ADDRESS);
Matt Arsenaultefb24542016-07-18 18:34:53 +0000420
David Stuttard82618ba2017-06-09 14:16:22 +0000421 StoreInst *SI = cast<StoreInst>(Inst);
422 Value *Ptr = SI->getPointerOperand();
Tom Stellard880a80a2014-06-17 16:53:14 +0000423 Value *Index = calculateVectorIndex(Ptr, GEPVectorIdx);
Matt Arsenaultefb24542016-07-18 18:34:53 +0000424 Value *BitCast = Builder.CreateBitCast(Alloca, VecPtrTy);
Tom Stellard880a80a2014-06-17 16:53:14 +0000425 Value *VecValue = Builder.CreateLoad(BitCast);
426 Value *NewVecValue = Builder.CreateInsertElement(VecValue,
David Stuttard82618ba2017-06-09 14:16:22 +0000427 SI->getValueOperand(),
Tom Stellard880a80a2014-06-17 16:53:14 +0000428 Index);
429 Builder.CreateStore(NewVecValue, BitCast);
430 Inst->eraseFromParent();
431 break;
432 }
433 case Instruction::BitCast:
Matt Arsenault642d2e72014-06-27 16:52:49 +0000434 case Instruction::AddrSpaceCast:
Tom Stellard880a80a2014-06-17 16:53:14 +0000435 break;
436
437 default:
Matt Arsenault642d2e72014-06-27 16:52:49 +0000438 llvm_unreachable("Inconsistency in instructions promotable to vector");
Tom Stellard880a80a2014-06-17 16:53:14 +0000439 }
440 }
441 return true;
442}
443
Matt Arsenaultad134842016-02-02 19:18:53 +0000444static bool isCallPromotable(CallInst *CI) {
Matt Arsenaultad134842016-02-02 19:18:53 +0000445 IntrinsicInst *II = dyn_cast<IntrinsicInst>(CI);
446 if (!II)
447 return false;
448
449 switch (II->getIntrinsicID()) {
450 case Intrinsic::memcpy:
Matt Arsenault7e747f12016-02-02 20:28:10 +0000451 case Intrinsic::memmove:
Matt Arsenaultad134842016-02-02 19:18:53 +0000452 case Intrinsic::memset:
453 case Intrinsic::lifetime_start:
454 case Intrinsic::lifetime_end:
455 case Intrinsic::invariant_start:
456 case Intrinsic::invariant_end:
457 case Intrinsic::invariant_group_barrier:
Matt Arsenault7e747f12016-02-02 20:28:10 +0000458 case Intrinsic::objectsize:
Matt Arsenaultad134842016-02-02 19:18:53 +0000459 return true;
460 default:
461 return false;
462 }
463}
464
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000465bool AMDGPUPromoteAlloca::binaryOpIsDerivedFromSameAlloca(Value *BaseAlloca,
466 Value *Val,
467 Instruction *Inst,
468 int OpIdx0,
469 int OpIdx1) const {
470 // Figure out which operand is the one we might not be promoting.
471 Value *OtherOp = Inst->getOperand(OpIdx0);
472 if (Val == OtherOp)
473 OtherOp = Inst->getOperand(OpIdx1);
474
Matt Arsenault891fccc2016-05-18 15:57:21 +0000475 if (isa<ConstantPointerNull>(OtherOp))
476 return true;
477
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000478 Value *OtherObj = GetUnderlyingObject(OtherOp, *DL);
479 if (!isa<AllocaInst>(OtherObj))
480 return false;
481
482 // TODO: We should be able to replace undefs with the right pointer type.
483
484 // TODO: If we know the other base object is another promotable
485 // alloca, not necessarily this alloca, we can do this. The
486 // important part is both must have the same address space at
487 // the end.
488 if (OtherObj != BaseAlloca) {
489 DEBUG(dbgs() << "Found a binary instruction with another alloca object\n");
490 return false;
491 }
492
493 return true;
494}
495
496bool AMDGPUPromoteAlloca::collectUsesWithPtrTypes(
497 Value *BaseAlloca,
498 Value *Val,
499 std::vector<Value*> &WorkList) const {
500
Tom Stellard880a80a2014-06-17 16:53:14 +0000501 for (User *User : Val->users()) {
David Majnemer0d955d02016-08-11 22:21:41 +0000502 if (is_contained(WorkList, User))
Tom Stellard880a80a2014-06-17 16:53:14 +0000503 continue;
Matt Arsenaultad134842016-02-02 19:18:53 +0000504
Matt Arsenaultfdcd39a2015-07-28 18:29:14 +0000505 if (CallInst *CI = dyn_cast<CallInst>(User)) {
Matt Arsenaultad134842016-02-02 19:18:53 +0000506 if (!isCallPromotable(CI))
Matt Arsenaultfdcd39a2015-07-28 18:29:14 +0000507 return false;
508
Tom Stellard880a80a2014-06-17 16:53:14 +0000509 WorkList.push_back(User);
510 continue;
511 }
Tom Stellard5b2927f2014-10-31 20:52:04 +0000512
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000513 Instruction *UseInst = cast<Instruction>(User);
514 if (UseInst->getOpcode() == Instruction::PtrToInt)
Tom Stellard5b2927f2014-10-31 20:52:04 +0000515 return false;
516
Matt Arsenault210b7cf2016-07-18 19:00:07 +0000517 if (LoadInst *LI = dyn_cast<LoadInst>(UseInst)) {
Matt Arsenaultc438ef52016-05-18 23:20:24 +0000518 if (LI->isVolatile())
519 return false;
520
521 continue;
522 }
523
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000524 if (StoreInst *SI = dyn_cast<StoreInst>(UseInst)) {
Matt Arsenault0a30e452016-03-23 23:17:29 +0000525 if (SI->isVolatile())
526 return false;
527
Matt Arsenault7227cc12015-07-28 18:47:00 +0000528 // Reject if the stored value is not the pointer operand.
529 if (SI->getPointerOperand() != Val)
530 return false;
Matt Arsenault210b7cf2016-07-18 19:00:07 +0000531 } else if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(UseInst)) {
Matt Arsenault0a30e452016-03-23 23:17:29 +0000532 if (RMW->isVolatile())
533 return false;
Matt Arsenault210b7cf2016-07-18 19:00:07 +0000534 } else if (AtomicCmpXchgInst *CAS = dyn_cast<AtomicCmpXchgInst>(UseInst)) {
Matt Arsenault0a30e452016-03-23 23:17:29 +0000535 if (CAS->isVolatile())
536 return false;
Matt Arsenault7227cc12015-07-28 18:47:00 +0000537 }
538
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000539 // Only promote a select if we know that the other select operand
540 // is from another pointer that will also be promoted.
541 if (ICmpInst *ICmp = dyn_cast<ICmpInst>(UseInst)) {
542 if (!binaryOpIsDerivedFromSameAlloca(BaseAlloca, Val, ICmp, 0, 1))
543 return false;
Matt Arsenault891fccc2016-05-18 15:57:21 +0000544
545 // May need to rewrite constant operands.
546 WorkList.push_back(ICmp);
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000547 }
548
Matt Arsenault2402b952016-12-10 00:52:50 +0000549 if (UseInst->getOpcode() == Instruction::AddrSpaceCast) {
Changpeng Fangc85abbd2017-01-24 19:06:28 +0000550 // Give up if the pointer may be captured.
551 if (PointerMayBeCaptured(UseInst, true, true))
552 return false;
Matt Arsenault2402b952016-12-10 00:52:50 +0000553 // Don't collect the users of this.
554 WorkList.push_back(User);
555 continue;
556 }
557
Tom Stellard880a80a2014-06-17 16:53:14 +0000558 if (!User->getType()->isPointerTy())
559 continue;
Tom Stellard5b2927f2014-10-31 20:52:04 +0000560
Matt Arsenaultde420812016-02-02 21:16:12 +0000561 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(UseInst)) {
562 // Be conservative if an address could be computed outside the bounds of
563 // the alloca.
564 if (!GEP->isInBounds())
565 return false;
566 }
567
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000568 // Only promote a select if we know that the other select operand is from
569 // another pointer that will also be promoted.
570 if (SelectInst *SI = dyn_cast<SelectInst>(UseInst)) {
571 if (!binaryOpIsDerivedFromSameAlloca(BaseAlloca, Val, SI, 1, 2))
572 return false;
573 }
574
575 // Repeat for phis.
576 if (PHINode *Phi = dyn_cast<PHINode>(UseInst)) {
577 // TODO: Handle more complex cases. We should be able to replace loops
578 // over arrays.
579 switch (Phi->getNumIncomingValues()) {
580 case 1:
581 break;
582 case 2:
583 if (!binaryOpIsDerivedFromSameAlloca(BaseAlloca, Val, Phi, 0, 1))
584 return false;
585 break;
586 default:
587 return false;
588 }
589 }
590
Tom Stellard880a80a2014-06-17 16:53:14 +0000591 WorkList.push_back(User);
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000592 if (!collectUsesWithPtrTypes(BaseAlloca, User, WorkList))
Matt Arsenaultad134842016-02-02 19:18:53 +0000593 return false;
Tom Stellard880a80a2014-06-17 16:53:14 +0000594 }
Matt Arsenaultad134842016-02-02 19:18:53 +0000595
596 return true;
Tom Stellard880a80a2014-06-17 16:53:14 +0000597}
598
Changpeng Fang1dbace12017-05-23 20:25:41 +0000599bool AMDGPUPromoteAlloca::hasSufficientLocalMem(const Function &F) {
600
601 FunctionType *FTy = F.getFunctionType();
602 const AMDGPUSubtarget &ST = TM->getSubtarget<AMDGPUSubtarget>(F);
603
604 // If the function has any arguments in the local address space, then it's
605 // possible these arguments require the entire local memory space, so
606 // we cannot use local memory in the pass.
607 for (Type *ParamTy : FTy->params()) {
608 PointerType *PtrTy = dyn_cast<PointerType>(ParamTy);
609 if (PtrTy && PtrTy->getAddressSpace() == AS.LOCAL_ADDRESS) {
610 LocalMemLimit = 0;
611 DEBUG(dbgs() << "Function has local memory argument. Promoting to "
612 "local memory disabled.\n");
613 return false;
614 }
615 }
616
617 LocalMemLimit = ST.getLocalMemorySize();
618 if (LocalMemLimit == 0)
619 return false;
620
621 const DataLayout &DL = Mod->getDataLayout();
622
623 // Check how much local memory is being used by global objects
624 CurrentLocalMemUsage = 0;
625 for (GlobalVariable &GV : Mod->globals()) {
626 if (GV.getType()->getAddressSpace() != AS.LOCAL_ADDRESS)
627 continue;
628
629 for (const User *U : GV.users()) {
630 const Instruction *Use = dyn_cast<Instruction>(U);
631 if (!Use)
632 continue;
633
634 if (Use->getParent()->getParent() == &F) {
635 unsigned Align = GV.getAlignment();
636 if (Align == 0)
637 Align = DL.getABITypeAlignment(GV.getValueType());
638
639 // FIXME: Try to account for padding here. The padding is currently
640 // determined from the inverse order of uses in the function. I'm not
641 // sure if the use list order is in any way connected to this, so the
642 // total reported size is likely incorrect.
643 uint64_t AllocSize = DL.getTypeAllocSize(GV.getValueType());
644 CurrentLocalMemUsage = alignTo(CurrentLocalMemUsage, Align);
645 CurrentLocalMemUsage += AllocSize;
646 break;
647 }
648 }
649 }
650
651 unsigned MaxOccupancy = ST.getOccupancyWithLocalMemSize(CurrentLocalMemUsage,
652 F);
653
654 // Restrict local memory usage so that we don't drastically reduce occupancy,
655 // unless it is already significantly reduced.
656
657 // TODO: Have some sort of hint or other heuristics to guess occupancy based
658 // on other factors..
659 unsigned OccupancyHint = ST.getWavesPerEU(F).second;
660 if (OccupancyHint == 0)
661 OccupancyHint = 7;
662
663 // Clamp to max value.
664 OccupancyHint = std::min(OccupancyHint, ST.getMaxWavesPerEU());
665
666 // Check the hint but ignore it if it's obviously wrong from the existing LDS
667 // usage.
668 MaxOccupancy = std::min(OccupancyHint, MaxOccupancy);
669
670
671 // Round up to the next tier of usage.
672 unsigned MaxSizeWithWaveCount
673 = ST.getMaxLocalMemSizeWithWaveCount(MaxOccupancy, F);
674
675 // Program is possibly broken by using more local mem than available.
676 if (CurrentLocalMemUsage > MaxSizeWithWaveCount)
677 return false;
678
679 LocalMemLimit = MaxSizeWithWaveCount;
680
681 DEBUG(
682 dbgs() << F.getName() << " uses " << CurrentLocalMemUsage << " bytes of LDS\n"
683 << " Rounding size to " << MaxSizeWithWaveCount
684 << " with a maximum occupancy of " << MaxOccupancy << '\n'
685 << " and " << (LocalMemLimit - CurrentLocalMemUsage)
686 << " available for promotion\n"
687 );
688
689 return true;
690}
691
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000692// FIXME: Should try to pick the most likely to be profitable allocas first.
Changpeng Fang1dbace12017-05-23 20:25:41 +0000693bool AMDGPUPromoteAlloca::handleAlloca(AllocaInst &I, bool SufficientLDS) {
Matt Arsenaultc5fce692016-04-28 18:38:48 +0000694 // Array allocations are probably not worth handling, since an allocation of
695 // the array type is the canonical form.
696 if (!I.isStaticAlloca() || I.isArrayAllocation())
Changpeng Fang1dbace12017-05-23 20:25:41 +0000697 return false;
Matt Arsenault19c54882015-08-26 18:37:13 +0000698
Tom Stellard880a80a2014-06-17 16:53:14 +0000699 IRBuilder<> Builder(&I);
700
701 // First try to replace the alloca with a vector
702 Type *AllocaTy = I.getAllocatedType();
703
Matt Arsenault6f62cf82014-06-27 02:36:59 +0000704 DEBUG(dbgs() << "Trying to promote " << I << '\n');
Tom Stellard880a80a2014-06-17 16:53:14 +0000705
Changpeng Fang1dbace12017-05-23 20:25:41 +0000706 if (tryPromoteAllocaToVector(&I, AS))
707 return true; // Promoted to vector.
Tom Stellard880a80a2014-06-17 16:53:14 +0000708
Tom Stellard79a1fd72016-04-14 16:27:07 +0000709 const Function &ContainingFunction = *I.getParent()->getParent();
Matt Arsenault5c806182017-05-02 18:33:18 +0000710 CallingConv::ID CC = ContainingFunction.getCallingConv();
Tom Stellard79a1fd72016-04-14 16:27:07 +0000711
Nicolai Haehnlebef1ceb2016-07-18 09:02:47 +0000712 // Don't promote the alloca to LDS for shader calling conventions as the work
713 // item ID intrinsics are not supported for these calling conventions.
714 // Furthermore not all LDS is available for some of the stages.
Matt Arsenault5c806182017-05-02 18:33:18 +0000715 switch (CC) {
716 case CallingConv::AMDGPU_KERNEL:
717 case CallingConv::SPIR_KERNEL:
718 break;
719 default:
720 DEBUG(dbgs() << " promote alloca to LDS not supported with calling convention.\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000721 return false;
Matt Arsenault5c806182017-05-02 18:33:18 +0000722 }
Nicolai Haehnlebef1ceb2016-07-18 09:02:47 +0000723
Changpeng Fang1dbace12017-05-23 20:25:41 +0000724 // Not likely to have sufficient local memory for promotion.
725 if (!SufficientLDS)
726 return false;
727
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000728 const AMDGPUSubtarget &ST =
729 TM->getSubtarget<AMDGPUSubtarget>(ContainingFunction);
Konstantin Zhuravlyov1d650262016-09-06 20:22:28 +0000730 unsigned WorkGroupSize = ST.getFlatWorkGroupSizes(ContainingFunction).second;
Tom Stellard79a1fd72016-04-14 16:27:07 +0000731
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000732 const DataLayout &DL = Mod->getDataLayout();
Tom Stellard880a80a2014-06-17 16:53:14 +0000733
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000734 unsigned Align = I.getAlignment();
735 if (Align == 0)
736 Align = DL.getABITypeAlignment(I.getAllocatedType());
737
738 // FIXME: This computed padding is likely wrong since it depends on inverse
739 // usage order.
740 //
741 // FIXME: It is also possible that if we're allowed to use all of the memory
742 // could could end up using more than the maximum due to alignment padding.
743
744 uint32_t NewSize = alignTo(CurrentLocalMemUsage, Align);
745 uint32_t AllocSize = WorkGroupSize * DL.getTypeAllocSize(AllocaTy);
746 NewSize += AllocSize;
747
748 if (NewSize > LocalMemLimit) {
749 DEBUG(dbgs() << " " << AllocSize
750 << " bytes of local memory not available to promote\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000751 return false;
Tom Stellard880a80a2014-06-17 16:53:14 +0000752 }
753
Matt Arsenault8a028bf2016-05-16 21:19:59 +0000754 CurrentLocalMemUsage = NewSize;
755
Tom Stellard5b2927f2014-10-31 20:52:04 +0000756 std::vector<Value*> WorkList;
757
Matt Arsenaulta61cb482016-05-12 01:58:58 +0000758 if (!collectUsesWithPtrTypes(&I, &I, WorkList)) {
Tom Stellard5b2927f2014-10-31 20:52:04 +0000759 DEBUG(dbgs() << " Do not know how to convert all uses\n");
Changpeng Fang1dbace12017-05-23 20:25:41 +0000760 return false;
Tom Stellard5b2927f2014-10-31 20:52:04 +0000761 }
762
Tom Stellard880a80a2014-06-17 16:53:14 +0000763 DEBUG(dbgs() << "Promoting alloca to local memory\n");
Tom Stellard880a80a2014-06-17 16:53:14 +0000764
Matt Arsenaultcf84e262016-02-05 19:47:23 +0000765 Function *F = I.getParent()->getParent();
766
Tom Stellard79a1fd72016-04-14 16:27:07 +0000767 Type *GVTy = ArrayType::get(I.getAllocatedType(), WorkGroupSize);
Tom Stellard880a80a2014-06-17 16:53:14 +0000768 GlobalVariable *GV = new GlobalVariable(
Matt Arsenaultcf84e262016-02-05 19:47:23 +0000769 *Mod, GVTy, false, GlobalValue::InternalLinkage,
770 UndefValue::get(GVTy),
771 Twine(F->getName()) + Twine('.') + I.getName(),
772 nullptr,
773 GlobalVariable::NotThreadLocal,
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000774 AS.LOCAL_ADDRESS);
Peter Collingbourne96efdd62016-06-14 21:01:22 +0000775 GV->setUnnamedAddr(GlobalValue::UnnamedAddr::Global);
Matt Arsenaultcf84e262016-02-05 19:47:23 +0000776 GV->setAlignment(I.getAlignment());
Tom Stellard880a80a2014-06-17 16:53:14 +0000777
Matt Arsenaulte0132462016-01-30 05:19:45 +0000778 Value *TCntY, *TCntZ;
Tom Stellard880a80a2014-06-17 16:53:14 +0000779
Matt Arsenaulte0132462016-01-30 05:19:45 +0000780 std::tie(TCntY, TCntZ) = getLocalSizeYZ(Builder);
781 Value *TIdX = getWorkitemID(Builder, 0);
782 Value *TIdY = getWorkitemID(Builder, 1);
783 Value *TIdZ = getWorkitemID(Builder, 2);
Tom Stellard880a80a2014-06-17 16:53:14 +0000784
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000785 Value *Tmp0 = Builder.CreateMul(TCntY, TCntZ, "", true, true);
Tom Stellard880a80a2014-06-17 16:53:14 +0000786 Tmp0 = Builder.CreateMul(Tmp0, TIdX);
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000787 Value *Tmp1 = Builder.CreateMul(TIdY, TCntZ, "", true, true);
Tom Stellard880a80a2014-06-17 16:53:14 +0000788 Value *TID = Builder.CreateAdd(Tmp0, Tmp1);
789 TID = Builder.CreateAdd(TID, TIdZ);
790
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000791 Value *Indices[] = {
792 Constant::getNullValue(Type::getInt32Ty(Mod->getContext())),
793 TID
794 };
Tom Stellard880a80a2014-06-17 16:53:14 +0000795
Matt Arsenault853a1fc2016-02-02 19:18:48 +0000796 Value *Offset = Builder.CreateInBoundsGEP(GVTy, GV, Indices);
Tom Stellard880a80a2014-06-17 16:53:14 +0000797 I.mutateType(Offset->getType());
798 I.replaceAllUsesWith(Offset);
799 I.eraseFromParent();
800
Matt Arsenaultfb8cdba2016-02-02 19:32:35 +0000801 for (Value *V : WorkList) {
Tom Stellard880a80a2014-06-17 16:53:14 +0000802 CallInst *Call = dyn_cast<CallInst>(V);
803 if (!Call) {
Matt Arsenault891fccc2016-05-18 15:57:21 +0000804 if (ICmpInst *CI = dyn_cast<ICmpInst>(V)) {
805 Value *Src0 = CI->getOperand(0);
806 Type *EltTy = Src0->getType()->getPointerElementType();
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000807 PointerType *NewTy = PointerType::get(EltTy, AS.LOCAL_ADDRESS);
Matt Arsenault891fccc2016-05-18 15:57:21 +0000808
809 if (isa<ConstantPointerNull>(CI->getOperand(0)))
810 CI->setOperand(0, ConstantPointerNull::get(NewTy));
811
812 if (isa<ConstantPointerNull>(CI->getOperand(1)))
813 CI->setOperand(1, ConstantPointerNull::get(NewTy));
814
815 continue;
816 }
Matt Arsenault65f67e42014-09-15 15:41:44 +0000817
Matt Arsenault2402b952016-12-10 00:52:50 +0000818 // The operand's value should be corrected on its own and we don't want to
819 // touch the users.
Matt Arsenault65f67e42014-09-15 15:41:44 +0000820 if (isa<AddrSpaceCastInst>(V))
821 continue;
822
Matt Arsenault891fccc2016-05-18 15:57:21 +0000823 Type *EltTy = V->getType()->getPointerElementType();
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000824 PointerType *NewTy = PointerType::get(EltTy, AS.LOCAL_ADDRESS);
Matt Arsenault891fccc2016-05-18 15:57:21 +0000825
Matt Arsenault65f67e42014-09-15 15:41:44 +0000826 // FIXME: It doesn't really make sense to try to do this for all
827 // instructions.
Tom Stellard880a80a2014-06-17 16:53:14 +0000828 V->mutateType(NewTy);
Matt Arsenault891fccc2016-05-18 15:57:21 +0000829
830 // Adjust the types of any constant operands.
831 if (SelectInst *SI = dyn_cast<SelectInst>(V)) {
832 if (isa<ConstantPointerNull>(SI->getOperand(1)))
833 SI->setOperand(1, ConstantPointerNull::get(NewTy));
834
835 if (isa<ConstantPointerNull>(SI->getOperand(2)))
836 SI->setOperand(2, ConstantPointerNull::get(NewTy));
837 } else if (PHINode *Phi = dyn_cast<PHINode>(V)) {
838 for (unsigned I = 0, E = Phi->getNumIncomingValues(); I != E; ++I) {
839 if (isa<ConstantPointerNull>(Phi->getIncomingValue(I)))
840 Phi->setIncomingValue(I, ConstantPointerNull::get(NewTy));
841 }
842 }
843
Tom Stellard880a80a2014-06-17 16:53:14 +0000844 continue;
845 }
846
Matt Arsenault2e08e182016-07-18 18:34:48 +0000847 IntrinsicInst *Intr = cast<IntrinsicInst>(Call);
Tom Stellard880a80a2014-06-17 16:53:14 +0000848 Builder.SetInsertPoint(Intr);
849 switch (Intr->getIntrinsicID()) {
850 case Intrinsic::lifetime_start:
851 case Intrinsic::lifetime_end:
852 // These intrinsics are for address space 0 only
853 Intr->eraseFromParent();
854 continue;
855 case Intrinsic::memcpy: {
856 MemCpyInst *MemCpy = cast<MemCpyInst>(Intr);
Daniel Neilsona60f4622018-02-09 21:56:15 +0000857 Builder.CreateMemCpy(MemCpy->getRawDest(), MemCpy->getDestAlignment(),
858 MemCpy->getRawSource(), MemCpy->getSourceAlignment(),
859 MemCpy->getLength(), MemCpy->isVolatile());
Tom Stellard880a80a2014-06-17 16:53:14 +0000860 Intr->eraseFromParent();
861 continue;
862 }
Matt Arsenault7e747f12016-02-02 20:28:10 +0000863 case Intrinsic::memmove: {
864 MemMoveInst *MemMove = cast<MemMoveInst>(Intr);
Daniel Neilsona60f4622018-02-09 21:56:15 +0000865 Builder.CreateMemMove(MemMove->getRawDest(), MemMove->getDestAlignment(),
866 MemMove->getRawSource(), MemMove->getSourceAlignment(),
867 MemMove->getLength(), MemMove->isVolatile());
Matt Arsenault7e747f12016-02-02 20:28:10 +0000868 Intr->eraseFromParent();
869 continue;
870 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000871 case Intrinsic::memset: {
872 MemSetInst *MemSet = cast<MemSetInst>(Intr);
873 Builder.CreateMemSet(MemSet->getRawDest(), MemSet->getValue(),
Daniel Neilsona60f4622018-02-09 21:56:15 +0000874 MemSet->getLength(), MemSet->getDestAlignment(),
Tom Stellard880a80a2014-06-17 16:53:14 +0000875 MemSet->isVolatile());
876 Intr->eraseFromParent();
877 continue;
878 }
Matt Arsenault0b783ef02016-01-22 19:47:54 +0000879 case Intrinsic::invariant_start:
880 case Intrinsic::invariant_end:
881 case Intrinsic::invariant_group_barrier:
882 Intr->eraseFromParent();
883 // FIXME: I think the invariant marker should still theoretically apply,
884 // but the intrinsics need to be changed to accept pointers with any
885 // address space.
886 continue;
Matt Arsenault7e747f12016-02-02 20:28:10 +0000887 case Intrinsic::objectsize: {
888 Value *Src = Intr->getOperand(0);
889 Type *SrcTy = Src->getType()->getPointerElementType();
890 Function *ObjectSize = Intrinsic::getDeclaration(Mod,
891 Intrinsic::objectsize,
Yaxun Liu1a14bfa2017-03-27 14:04:01 +0000892 { Intr->getType(), PointerType::get(SrcTy, AS.LOCAL_ADDRESS) }
Matt Arsenault7e747f12016-02-02 20:28:10 +0000893 );
894
George Burgess IV56c7e882017-03-21 20:08:59 +0000895 CallInst *NewCall = Builder.CreateCall(
896 ObjectSize, {Src, Intr->getOperand(1), Intr->getOperand(2)});
Matt Arsenault7e747f12016-02-02 20:28:10 +0000897 Intr->replaceAllUsesWith(NewCall);
898 Intr->eraseFromParent();
899 continue;
900 }
Tom Stellard880a80a2014-06-17 16:53:14 +0000901 default:
Matthias Braun8c209aa2017-01-28 02:02:38 +0000902 Intr->print(errs());
Tom Stellard880a80a2014-06-17 16:53:14 +0000903 llvm_unreachable("Don't know how to promote alloca intrinsic use.");
904 }
905 }
Changpeng Fang1dbace12017-05-23 20:25:41 +0000906 return true;
Tom Stellard880a80a2014-06-17 16:53:14 +0000907}
908
Francis Visoiu Mistrih8b617642017-05-18 17:21:13 +0000909FunctionPass *llvm::createAMDGPUPromoteAlloca() {
910 return new AMDGPUPromoteAlloca();
Tom Stellard880a80a2014-06-17 16:53:14 +0000911}