blob: c29202826c24c047c838fbeb03208e9db4194e1d [file] [log] [blame]
Chris Lattnerfb41a502003-05-27 15:45:27 +00001//===- ScalarReplAggregates.cpp - Scalar Replacement of Aggregates --------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
John Criswell482202a2003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
John Criswell482202a2003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnerfb41a502003-05-27 15:45:27 +00009//
10// This transformation implements the well known scalar replacement of
11// aggregates transformation. This xform breaks up alloca instructions of
12// aggregate type (structure or array) into individual alloca instructions for
Chris Lattner5d8a12e2003-09-11 16:45:55 +000013// each member (if possible). Then, if possible, it transforms the individual
14// alloca instructions into nice clean scalar SSA form.
15//
16// This combines a simple SRoA algorithm with the Mem2Reg algorithm because
17// often interact, especially for C++ programs. As such, iterating between
18// SRoA, then Mem2Reg until we run out of things to promote works well.
Chris Lattnerfb41a502003-05-27 15:45:27 +000019//
20//===----------------------------------------------------------------------===//
21
Chris Lattner79a42ac2006-12-19 21:40:18 +000022#define DEBUG_TYPE "scalarrepl"
Chris Lattnerfb41a502003-05-27 15:45:27 +000023#include "llvm/Transforms/Scalar.h"
Chris Lattner5d8a12e2003-09-11 16:45:55 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
Chris Lattnerfb41a502003-05-27 15:45:27 +000026#include "llvm/Function.h"
Chris Lattner827cb982007-04-25 06:40:51 +000027#include "llvm/GlobalVariable.h"
Misha Brukman2b3387a2004-07-29 17:05:13 +000028#include "llvm/Instructions.h"
Chris Lattner66e6a822007-03-05 07:52:57 +000029#include "llvm/IntrinsicInst.h"
30#include "llvm/Pass.h"
Chris Lattner5d8a12e2003-09-11 16:45:55 +000031#include "llvm/Analysis/Dominators.h"
32#include "llvm/Target/TargetData.h"
33#include "llvm/Transforms/Utils/PromoteMemToReg.h"
Chris Lattner996795b2006-06-28 23:17:24 +000034#include "llvm/Support/Debug.h"
Chris Lattner3b0a62d2005-12-12 07:19:13 +000035#include "llvm/Support/GetElementPtrTypeIterator.h"
36#include "llvm/Support/MathExtras.h"
Chris Lattner3d27be12006-08-27 12:54:02 +000037#include "llvm/Support/Compiler.h"
Chris Lattnera7315132007-02-12 22:56:41 +000038#include "llvm/ADT/SmallVector.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000039#include "llvm/ADT/Statistic.h"
40#include "llvm/ADT/StringExtras.h"
Chris Lattner40d2aeb2003-12-02 17:43:55 +000041using namespace llvm;
Brian Gaeke960707c2003-11-11 22:41:34 +000042
Chris Lattner79a42ac2006-12-19 21:40:18 +000043STATISTIC(NumReplaced, "Number of allocas broken up");
44STATISTIC(NumPromoted, "Number of allocas promoted");
45STATISTIC(NumConverted, "Number of aggregates converted to scalar");
Chris Lattner827cb982007-04-25 06:40:51 +000046STATISTIC(NumGlobals, "Number of allocas copied from constant global");
Chris Lattnerfb41a502003-05-27 15:45:27 +000047
Chris Lattner79a42ac2006-12-19 21:40:18 +000048namespace {
Chris Lattner996795b2006-06-28 23:17:24 +000049 struct VISIBILITY_HIDDEN SROA : public FunctionPass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000050 static char ID; // Pass identification, replacement for typeid
Dan Gohmana79db302008-09-04 17:05:41 +000051 explicit SROA(signed T = -1) : FunctionPass(&ID) {
Devang Patele8ec7662007-07-09 21:19:23 +000052 if (T == -1)
Chris Lattner1f708162007-08-02 21:33:36 +000053 SRThreshold = 128;
Devang Patele8ec7662007-07-09 21:19:23 +000054 else
55 SRThreshold = T;
56 }
Devang Patel09f162c2007-05-01 21:15:47 +000057
Chris Lattnerfb41a502003-05-27 15:45:27 +000058 bool runOnFunction(Function &F);
59
Chris Lattner5d8a12e2003-09-11 16:45:55 +000060 bool performScalarRepl(Function &F);
61 bool performPromotion(Function &F);
62
Chris Lattnerc8174582003-08-31 00:45:13 +000063 // getAnalysisUsage - This pass does not require any passes, but we know it
64 // will not alter the CFG, so say so.
65 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Devang Patelfc7fdef2007-06-07 21:57:03 +000066 AU.addRequired<DominatorTree>();
Chris Lattner5d8a12e2003-09-11 16:45:55 +000067 AU.addRequired<DominanceFrontier>();
68 AU.addRequired<TargetData>();
Chris Lattnerc8174582003-08-31 00:45:13 +000069 AU.setPreservesCFG();
70 }
71
Chris Lattnerfb41a502003-05-27 15:45:27 +000072 private:
Chris Lattner87679202007-05-30 06:11:23 +000073 /// AllocaInfo - When analyzing uses of an alloca instruction, this captures
74 /// information about the uses. All these fields are initialized to false
75 /// and set to true when something is learned.
76 struct AllocaInfo {
77 /// isUnsafe - This is set to true if the alloca cannot be SROA'd.
78 bool isUnsafe : 1;
79
80 /// needsCanon - This is set to true if there is some use of the alloca
81 /// that requires canonicalization.
82 bool needsCanon : 1;
83
84 /// isMemCpySrc - This is true if this aggregate is memcpy'd from.
85 bool isMemCpySrc : 1;
86
Zhou Sheng1ee941d2007-07-06 06:01:16 +000087 /// isMemCpyDst - This is true if this aggregate is memcpy'd into.
Chris Lattner87679202007-05-30 06:11:23 +000088 bool isMemCpyDst : 1;
89
90 AllocaInfo()
91 : isUnsafe(false), needsCanon(false),
92 isMemCpySrc(false), isMemCpyDst(false) {}
93 };
94
Devang Patele8ec7662007-07-09 21:19:23 +000095 unsigned SRThreshold;
96
Chris Lattner87679202007-05-30 06:11:23 +000097 void MarkUnsafe(AllocaInfo &I) { I.isUnsafe = true; }
98
Chris Lattner88819122004-11-14 04:24:28 +000099 int isSafeAllocaToScalarRepl(AllocationInst *AI);
Chris Lattner87679202007-05-30 06:11:23 +0000100
101 void isSafeUseOfAllocation(Instruction *User, AllocationInst *AI,
102 AllocaInfo &Info);
103 void isSafeElementUse(Value *Ptr, bool isFirstElt, AllocationInst *AI,
104 AllocaInfo &Info);
105 void isSafeMemIntrinsicOnAllocation(MemIntrinsic *MI, AllocationInst *AI,
106 unsigned OpNo, AllocaInfo &Info);
107 void isSafeUseOfBitCastedAllocation(BitCastInst *User, AllocationInst *AI,
108 AllocaInfo &Info);
109
Chris Lattner31e5add2007-04-25 05:02:56 +0000110 void DoScalarReplacement(AllocationInst *AI,
111 std::vector<AllocationInst*> &WorkList);
Chris Lattner88819122004-11-14 04:24:28 +0000112 void CanonicalizeAllocaUsers(AllocationInst *AI);
Chris Lattnerfb41a502003-05-27 15:45:27 +0000113 AllocaInst *AddNewAlloca(Function &F, const Type *Ty, AllocationInst *Base);
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000114
Chris Lattner877a3b42007-03-19 00:16:43 +0000115 void RewriteBitCastUserOfAlloca(Instruction *BCInst, AllocationInst *AI,
Chris Lattner66e6a822007-03-05 07:52:57 +0000116 SmallVector<AllocaInst*, 32> &NewElts);
117
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000118 const Type *CanConvertToScalar(Value *V, bool &IsNotTrivial);
119 void ConvertToScalar(AllocationInst *AI, const Type *Ty);
120 void ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, unsigned Offset);
Chris Lattner77205de2008-02-29 07:03:13 +0000121 Value *ConvertUsesOfLoadToScalar(LoadInst *LI, AllocaInst *NewAI,
122 unsigned Offset);
123 Value *ConvertUsesOfStoreToScalar(StoreInst *SI, AllocaInst *NewAI,
124 unsigned Offset);
Chris Lattner827cb982007-04-25 06:40:51 +0000125 static Instruction *isOnlyCopiedFromConstantGlobal(AllocationInst *AI);
Chris Lattnerfb41a502003-05-27 15:45:27 +0000126 };
Chris Lattnerfb41a502003-05-27 15:45:27 +0000127}
128
Dan Gohmand78c4002008-05-13 00:00:25 +0000129char SROA::ID = 0;
130static RegisterPass<SROA> X("scalarrepl", "Scalar Replacement of Aggregates");
131
Brian Gaeke960707c2003-11-11 22:41:34 +0000132// Public interface to the ScalarReplAggregates pass
Devang Patele8ec7662007-07-09 21:19:23 +0000133FunctionPass *llvm::createScalarReplAggregatesPass(signed int Threshold) {
134 return new SROA(Threshold);
135}
Chris Lattnerfb41a502003-05-27 15:45:27 +0000136
137
Chris Lattnerfb41a502003-05-27 15:45:27 +0000138bool SROA::runOnFunction(Function &F) {
Chris Lattner9a95f2a2003-09-12 15:36:03 +0000139 bool Changed = performPromotion(F);
140 while (1) {
141 bool LocalChange = performScalarRepl(F);
142 if (!LocalChange) break; // No need to repromote if no scalarrepl
143 Changed = true;
144 LocalChange = performPromotion(F);
145 if (!LocalChange) break; // No need to re-scalarrepl if no promotion
146 }
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000147
148 return Changed;
149}
150
151
152bool SROA::performPromotion(Function &F) {
153 std::vector<AllocaInst*> Allocas;
Devang Patelfc7fdef2007-06-07 21:57:03 +0000154 DominatorTree &DT = getAnalysis<DominatorTree>();
Chris Lattnera906bac2003-10-05 21:20:13 +0000155 DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000156
Chris Lattner5dac64f2003-09-20 14:39:18 +0000157 BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000158
Chris Lattner9a95f2a2003-09-12 15:36:03 +0000159 bool Changed = false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000160
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000161 while (1) {
162 Allocas.clear();
163
164 // Find allocas that are safe to promote, by looking at all instructions in
165 // the entry node
166 for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
167 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca?
Devang Patel073be552007-04-25 17:15:20 +0000168 if (isAllocaPromotable(AI))
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000169 Allocas.push_back(AI);
170
171 if (Allocas.empty()) break;
172
Devang Patelfc7fdef2007-06-07 21:57:03 +0000173 PromoteMemToReg(Allocas, DT, DF);
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000174 NumPromoted += Allocas.size();
175 Changed = true;
176 }
177
178 return Changed;
179}
180
Chris Lattner6ff85682008-06-22 17:46:21 +0000181/// getNumSAElements - Return the number of elements in the specific struct or
182/// array.
183static uint64_t getNumSAElements(const Type *T) {
184 if (const StructType *ST = dyn_cast<StructType>(T))
185 return ST->getNumElements();
186 return cast<ArrayType>(T)->getNumElements();
187}
188
Chris Lattner5d8a12e2003-09-11 16:45:55 +0000189// performScalarRepl - This algorithm is a simple worklist driven algorithm,
190// which runs on all of the malloc/alloca instructions in the function, removing
191// them if they are only used by getelementptr instructions.
192//
193bool SROA::performScalarRepl(Function &F) {
Chris Lattnerfb41a502003-05-27 15:45:27 +0000194 std::vector<AllocationInst*> WorkList;
195
196 // Scan the entry basic block, adding any alloca's and mallocs to the worklist
Chris Lattner5dac64f2003-09-20 14:39:18 +0000197 BasicBlock &BB = F.getEntryBlock();
Chris Lattnerfb41a502003-05-27 15:45:27 +0000198 for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
199 if (AllocationInst *A = dyn_cast<AllocationInst>(I))
200 WorkList.push_back(A);
201
Chris Lattner80c94a42007-05-24 18:43:04 +0000202 const TargetData &TD = getAnalysis<TargetData>();
203
Chris Lattnerfb41a502003-05-27 15:45:27 +0000204 // Process the worklist
205 bool Changed = false;
206 while (!WorkList.empty()) {
207 AllocationInst *AI = WorkList.back();
208 WorkList.pop_back();
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000209
Chris Lattnerf171af92006-12-22 23:14:42 +0000210 // Handle dead allocas trivially. These can be formed by SROA'ing arrays
211 // with unused elements.
212 if (AI->use_empty()) {
213 AI->eraseFromParent();
214 continue;
215 }
216
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000217 // If we can turn this aggregate value (potentially with casts) into a
218 // simple scalar value that can be mem2reg'd into a register value.
219 bool IsNotTrivial = false;
220 if (const Type *ActualType = CanConvertToScalar(AI, IsNotTrivial))
Chris Lattnerdae49df2006-04-20 20:48:50 +0000221 if (IsNotTrivial && ActualType != Type::VoidTy) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000222 ConvertToScalar(AI, ActualType);
223 Changed = true;
224 continue;
225 }
Chris Lattnerfb41a502003-05-27 15:45:27 +0000226
Chris Lattner827cb982007-04-25 06:40:51 +0000227 // Check to see if we can perform the core SROA transformation. We cannot
228 // transform the allocation instruction if it is an array allocation
229 // (allocations OF arrays are ok though), and an allocation of a scalar
230 // value cannot be decomposed at all.
Chris Lattner31e5add2007-04-25 05:02:56 +0000231 if (!AI->isArrayAllocation() &&
232 (isa<StructType>(AI->getAllocatedType()) ||
Chris Lattner80c94a42007-05-24 18:43:04 +0000233 isa<ArrayType>(AI->getAllocatedType())) &&
234 AI->getAllocatedType()->isSized() &&
Chris Lattner6ff85682008-06-22 17:46:21 +0000235 // Do not promote any struct whose size is larger than "128" bytes.
236 TD.getABITypeSize(AI->getAllocatedType()) < SRThreshold &&
237 // Do not promote any struct into more than "32" separate vars.
238 getNumSAElements(AI->getAllocatedType()) < SRThreshold/4) {
Chris Lattner31e5add2007-04-25 05:02:56 +0000239 // Check that all of the users of the allocation are capable of being
240 // transformed.
241 switch (isSafeAllocaToScalarRepl(AI)) {
242 default: assert(0 && "Unexpected value!");
243 case 0: // Not safe to scalar replace.
244 break;
245 case 1: // Safe, but requires cleanup/canonicalizations first
246 CanonicalizeAllocaUsers(AI);
247 // FALL THROUGH.
248 case 3: // Safe to scalar replace.
249 DoScalarReplacement(AI, WorkList);
250 Changed = true;
Chris Lattner66e6a822007-03-05 07:52:57 +0000251 continue;
252 }
Chris Lattnerfb41a502003-05-27 15:45:27 +0000253 }
Chris Lattner827cb982007-04-25 06:40:51 +0000254
255 // Check to see if this allocation is only modified by a memcpy/memmove from
256 // a constant global. If this is the case, we can change all users to use
257 // the constant global instead. This is commonly produced by the CFE by
258 // constructs like "void foo() { int A[] = {1,2,3,4,5,6,7,8,9...}; }" if 'A'
259 // is only subsequently read.
260 if (Instruction *TheCopy = isOnlyCopiedFromConstantGlobal(AI)) {
261 DOUT << "Found alloca equal to global: " << *AI;
262 DOUT << " memcpy = " << *TheCopy;
263 Constant *TheSrc = cast<Constant>(TheCopy->getOperand(2));
264 AI->replaceAllUsesWith(ConstantExpr::getBitCast(TheSrc, AI->getType()));
265 TheCopy->eraseFromParent(); // Don't mutate the global.
266 AI->eraseFromParent();
267 ++NumGlobals;
268 Changed = true;
269 continue;
270 }
Chris Lattner31e5add2007-04-25 05:02:56 +0000271
272 // Otherwise, couldn't process this.
Chris Lattnerfb41a502003-05-27 15:45:27 +0000273 }
274
275 return Changed;
276}
Chris Lattner6e5398d2003-05-30 04:15:41 +0000277
Chris Lattner31e5add2007-04-25 05:02:56 +0000278/// DoScalarReplacement - This alloca satisfied the isSafeAllocaToScalarRepl
279/// predicate, do SROA now.
280void SROA::DoScalarReplacement(AllocationInst *AI,
281 std::vector<AllocationInst*> &WorkList) {
Chris Lattner827cb982007-04-25 06:40:51 +0000282 DOUT << "Found inst to SROA: " << *AI;
Chris Lattner31e5add2007-04-25 05:02:56 +0000283 SmallVector<AllocaInst*, 32> ElementAllocas;
284 if (const StructType *ST = dyn_cast<StructType>(AI->getAllocatedType())) {
285 ElementAllocas.reserve(ST->getNumContainedTypes());
286 for (unsigned i = 0, e = ST->getNumContainedTypes(); i != e; ++i) {
287 AllocaInst *NA = new AllocaInst(ST->getContainedType(i), 0,
288 AI->getAlignment(),
289 AI->getName() + "." + utostr(i), AI);
290 ElementAllocas.push_back(NA);
291 WorkList.push_back(NA); // Add to worklist for recursive processing
292 }
293 } else {
294 const ArrayType *AT = cast<ArrayType>(AI->getAllocatedType());
295 ElementAllocas.reserve(AT->getNumElements());
296 const Type *ElTy = AT->getElementType();
297 for (unsigned i = 0, e = AT->getNumElements(); i != e; ++i) {
298 AllocaInst *NA = new AllocaInst(ElTy, 0, AI->getAlignment(),
299 AI->getName() + "." + utostr(i), AI);
300 ElementAllocas.push_back(NA);
301 WorkList.push_back(NA); // Add to worklist for recursive processing
302 }
303 }
304
305 // Now that we have created the alloca instructions that we want to use,
306 // expand the getelementptr instructions to use them.
307 //
308 while (!AI->use_empty()) {
309 Instruction *User = cast<Instruction>(AI->use_back());
310 if (BitCastInst *BCInst = dyn_cast<BitCastInst>(User)) {
311 RewriteBitCastUserOfAlloca(BCInst, AI, ElementAllocas);
312 BCInst->eraseFromParent();
313 continue;
314 }
315
Chris Lattner4d754bc2008-06-23 17:11:23 +0000316 // Replace:
317 // %res = load { i32, i32 }* %alloc
318 // with:
319 // %load.0 = load i32* %alloc.0
320 // %insert.0 insertvalue { i32, i32 } zeroinitializer, i32 %load.0, 0
321 // %load.1 = load i32* %alloc.1
322 // %insert = insertvalue { i32, i32 } %insert.0, i32 %load.1, 1
Matthijs Kooijman812989b2008-06-05 12:51:53 +0000323 // (Also works for arrays instead of structs)
324 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
325 Value *Insert = UndefValue::get(LI->getType());
326 for (unsigned i = 0, e = ElementAllocas.size(); i != e; ++i) {
327 Value *Load = new LoadInst(ElementAllocas[i], "load", LI);
328 Insert = InsertValueInst::Create(Insert, Load, i, "insert", LI);
329 }
330 LI->replaceAllUsesWith(Insert);
331 LI->eraseFromParent();
332 continue;
333 }
334
Chris Lattner4d754bc2008-06-23 17:11:23 +0000335 // Replace:
336 // store { i32, i32 } %val, { i32, i32 }* %alloc
337 // with:
338 // %val.0 = extractvalue { i32, i32 } %val, 0
339 // store i32 %val.0, i32* %alloc.0
340 // %val.1 = extractvalue { i32, i32 } %val, 1
341 // store i32 %val.1, i32* %alloc.1
Matthijs Kooijman812989b2008-06-05 12:51:53 +0000342 // (Also works for arrays instead of structs)
343 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
344 Value *Val = SI->getOperand(0);
345 for (unsigned i = 0, e = ElementAllocas.size(); i != e; ++i) {
346 Value *Extract = ExtractValueInst::Create(Val, i, Val->getName(), SI);
347 new StoreInst(Extract, ElementAllocas[i], SI);
348 }
349 SI->eraseFromParent();
350 continue;
351 }
352
Chris Lattner31e5add2007-04-25 05:02:56 +0000353 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(User);
354 // We now know that the GEP is of the form: GEP <ptr>, 0, <cst>
355 unsigned Idx =
356 (unsigned)cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
357
358 assert(Idx < ElementAllocas.size() && "Index out of range?");
359 AllocaInst *AllocaToUse = ElementAllocas[Idx];
360
361 Value *RepValue;
362 if (GEPI->getNumOperands() == 3) {
363 // Do not insert a new getelementptr instruction with zero indices, only
364 // to have it optimized out later.
365 RepValue = AllocaToUse;
366 } else {
367 // We are indexing deeply into the structure, so we still need a
368 // getelement ptr instruction to finish the indexing. This may be
369 // expanded itself once the worklist is rerun.
370 //
371 SmallVector<Value*, 8> NewArgs;
372 NewArgs.push_back(Constant::getNullValue(Type::Int32Ty));
373 NewArgs.append(GEPI->op_begin()+3, GEPI->op_end());
Gabor Greife9ecc682008-04-06 20:25:17 +0000374 RepValue = GetElementPtrInst::Create(AllocaToUse, NewArgs.begin(),
375 NewArgs.end(), "", GEPI);
Chris Lattner31e5add2007-04-25 05:02:56 +0000376 RepValue->takeName(GEPI);
377 }
378
379 // If this GEP is to the start of the aggregate, check for memcpys.
380 if (Idx == 0) {
381 bool IsStartOfAggregateGEP = true;
382 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i) {
383 if (!isa<ConstantInt>(GEPI->getOperand(i))) {
384 IsStartOfAggregateGEP = false;
385 break;
386 }
387 if (!cast<ConstantInt>(GEPI->getOperand(i))->isZero()) {
388 IsStartOfAggregateGEP = false;
389 break;
390 }
391 }
392
393 if (IsStartOfAggregateGEP)
394 RewriteBitCastUserOfAlloca(GEPI, AI, ElementAllocas);
395 }
396
397
398 // Move all of the users over to the new GEP.
399 GEPI->replaceAllUsesWith(RepValue);
400 // Delete the old GEP
401 GEPI->eraseFromParent();
402 }
403
404 // Finally, delete the Alloca instruction
405 AI->eraseFromParent();
406 NumReplaced++;
407}
408
Chris Lattner6e5398d2003-05-30 04:15:41 +0000409
Chris Lattner88819122004-11-14 04:24:28 +0000410/// isSafeElementUse - Check to see if this use is an allowed use for a
Chris Lattner877a3b42007-03-19 00:16:43 +0000411/// getelementptr instruction of an array aggregate allocation. isFirstElt
412/// indicates whether Ptr is known to the start of the aggregate.
Chris Lattner88819122004-11-14 04:24:28 +0000413///
Chris Lattner87679202007-05-30 06:11:23 +0000414void SROA::isSafeElementUse(Value *Ptr, bool isFirstElt, AllocationInst *AI,
415 AllocaInfo &Info) {
Chris Lattner88819122004-11-14 04:24:28 +0000416 for (Value::use_iterator I = Ptr->use_begin(), E = Ptr->use_end();
417 I != E; ++I) {
418 Instruction *User = cast<Instruction>(*I);
419 switch (User->getOpcode()) {
420 case Instruction::Load: break;
421 case Instruction::Store:
422 // Store is ok if storing INTO the pointer, not storing the pointer
Chris Lattner87679202007-05-30 06:11:23 +0000423 if (User->getOperand(0) == Ptr) return MarkUnsafe(Info);
Chris Lattner88819122004-11-14 04:24:28 +0000424 break;
425 case Instruction::GetElementPtr: {
426 GetElementPtrInst *GEP = cast<GetElementPtrInst>(User);
Chris Lattner877a3b42007-03-19 00:16:43 +0000427 bool AreAllZeroIndices = isFirstElt;
Chris Lattner88819122004-11-14 04:24:28 +0000428 if (GEP->getNumOperands() > 1) {
Chris Lattner877a3b42007-03-19 00:16:43 +0000429 if (!isa<ConstantInt>(GEP->getOperand(1)) ||
430 !cast<ConstantInt>(GEP->getOperand(1))->isZero())
Chris Lattner87679202007-05-30 06:11:23 +0000431 // Using pointer arithmetic to navigate the array.
432 return MarkUnsafe(Info);
Chris Lattner877a3b42007-03-19 00:16:43 +0000433
434 if (AreAllZeroIndices) {
435 for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i) {
436 if (!isa<ConstantInt>(GEP->getOperand(i)) ||
437 !cast<ConstantInt>(GEP->getOperand(i))->isZero()) {
438 AreAllZeroIndices = false;
439 break;
440 }
441 }
442 }
Chris Lattner88819122004-11-14 04:24:28 +0000443 }
Chris Lattner87679202007-05-30 06:11:23 +0000444 isSafeElementUse(GEP, AreAllZeroIndices, AI, Info);
445 if (Info.isUnsafe) return;
Chris Lattner88819122004-11-14 04:24:28 +0000446 break;
447 }
Chris Lattner877a3b42007-03-19 00:16:43 +0000448 case Instruction::BitCast:
Chris Lattner87679202007-05-30 06:11:23 +0000449 if (isFirstElt) {
450 isSafeUseOfBitCastedAllocation(cast<BitCastInst>(User), AI, Info);
451 if (Info.isUnsafe) return;
Chris Lattner877a3b42007-03-19 00:16:43 +0000452 break;
Chris Lattner877a3b42007-03-19 00:16:43 +0000453 }
454 DOUT << " Transformation preventing inst: " << *User;
Chris Lattner87679202007-05-30 06:11:23 +0000455 return MarkUnsafe(Info);
456 case Instruction::Call:
457 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(User)) {
458 if (isFirstElt) {
459 isSafeMemIntrinsicOnAllocation(MI, AI, I.getOperandNo(), Info);
460 if (Info.isUnsafe) return;
461 break;
462 }
463 }
464 DOUT << " Transformation preventing inst: " << *User;
465 return MarkUnsafe(Info);
Chris Lattner88819122004-11-14 04:24:28 +0000466 default:
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000467 DOUT << " Transformation preventing inst: " << *User;
Chris Lattner87679202007-05-30 06:11:23 +0000468 return MarkUnsafe(Info);
Chris Lattner88819122004-11-14 04:24:28 +0000469 }
470 }
Chris Lattner87679202007-05-30 06:11:23 +0000471 return; // All users look ok :)
Chris Lattner88819122004-11-14 04:24:28 +0000472}
473
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000474/// AllUsersAreLoads - Return true if all users of this value are loads.
475static bool AllUsersAreLoads(Value *Ptr) {
476 for (Value::use_iterator I = Ptr->use_begin(), E = Ptr->use_end();
477 I != E; ++I)
478 if (cast<Instruction>(*I)->getOpcode() != Instruction::Load)
479 return false;
Misha Brukmanb1c93172005-04-21 23:48:37 +0000480 return true;
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000481}
482
Chris Lattner6e5398d2003-05-30 04:15:41 +0000483/// isSafeUseOfAllocation - Check to see if this user is an allowed use for an
484/// aggregate allocation.
485///
Chris Lattner87679202007-05-30 06:11:23 +0000486void SROA::isSafeUseOfAllocation(Instruction *User, AllocationInst *AI,
487 AllocaInfo &Info) {
Chris Lattner66e6a822007-03-05 07:52:57 +0000488 if (BitCastInst *C = dyn_cast<BitCastInst>(User))
Chris Lattner87679202007-05-30 06:11:23 +0000489 return isSafeUseOfBitCastedAllocation(C, AI, Info);
Chris Lattner52310702003-11-25 21:09:18 +0000490
Matthijs Kooijman812989b2008-06-05 12:51:53 +0000491 if (isa<LoadInst>(User))
492 return; // Loads (returning a first class aggregrate) are always rewritable
493
494 if (isa<StoreInst>(User) && User->getOperand(0) != AI)
495 return; // Store is ok if storing INTO the pointer, not storing the pointer
496
Chris Lattner87679202007-05-30 06:11:23 +0000497 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(User);
498 if (GEPI == 0)
499 return MarkUnsafe(Info);
500
Chris Lattner52310702003-11-25 21:09:18 +0000501 gep_type_iterator I = gep_type_begin(GEPI), E = gep_type_end(GEPI);
502
Chris Lattnerfc34f8b2006-03-08 01:05:29 +0000503 // The GEP is not safe to transform if not of the form "GEP <ptr>, 0, <cst>".
Chris Lattner52310702003-11-25 21:09:18 +0000504 if (I == E ||
Chris Lattner87679202007-05-30 06:11:23 +0000505 I.getOperand() != Constant::getNullValue(I.getOperand()->getType())) {
506 return MarkUnsafe(Info);
507 }
Chris Lattner52310702003-11-25 21:09:18 +0000508
509 ++I;
Chris Lattner87679202007-05-30 06:11:23 +0000510 if (I == E) return MarkUnsafe(Info); // ran out of GEP indices??
Chris Lattner52310702003-11-25 21:09:18 +0000511
Chris Lattner877a3b42007-03-19 00:16:43 +0000512 bool IsAllZeroIndices = true;
513
Chris Lattner3f972c92008-08-23 05:21:06 +0000514 // If the first index is a non-constant index into an array, see if we can
515 // handle it as a special case.
Chris Lattner52310702003-11-25 21:09:18 +0000516 if (const ArrayType *AT = dyn_cast<ArrayType>(*I)) {
Chris Lattner3f972c92008-08-23 05:21:06 +0000517 if (!isa<ConstantInt>(I.getOperand())) {
Chris Lattner877a3b42007-03-19 00:16:43 +0000518 IsAllZeroIndices = 0;
Chris Lattner3f972c92008-08-23 05:21:06 +0000519 uint64_t NumElements = AT->getNumElements();
Chris Lattner877a3b42007-03-19 00:16:43 +0000520
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000521 // If this is an array index and the index is not constant, we cannot
522 // promote... that is unless the array has exactly one or two elements in
523 // it, in which case we CAN promote it, but we have to canonicalize this
524 // out if this is the only problem.
Chris Lattnerfc34f8b2006-03-08 01:05:29 +0000525 if ((NumElements == 1 || NumElements == 2) &&
Chris Lattner87679202007-05-30 06:11:23 +0000526 AllUsersAreLoads(GEPI)) {
527 Info.needsCanon = true;
528 return; // Canonicalization required!
529 }
530 return MarkUnsafe(Info);
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000531 }
Chris Lattner6e5398d2003-05-30 04:15:41 +0000532 }
Chris Lattner3f972c92008-08-23 05:21:06 +0000533
534
535 // Walk through the GEP type indices, checking the types that this indexes
536 // into.
537 for (; I != E; ++I) {
538 // Ignore struct elements, no extra checking needed for these.
539 if (isa<StructType>(*I))
540 continue;
541
542 // Don't SROA pointers into vectors.
543 if (isa<VectorType>(*I))
544 return MarkUnsafe(Info);
545
546 // Otherwise, we must have an index into an array type. Verify that this is
547 // an in-range constant integer. Specifically, consider A[0][i]. We
548 // cannot know that the user isn't doing invalid things like allowing i to
549 // index an out-of-range subscript that accesses A[1]. Because of this, we
550 // have to reject SROA of any accesses into structs where any of the
551 // components are variables.
552 ConstantInt *IdxVal = dyn_cast<ConstantInt>(I.getOperand());
553 if (!IdxVal) return MarkUnsafe(Info);
554 if (IdxVal->getZExtValue() >= cast<ArrayType>(*I)->getNumElements())
555 return MarkUnsafe(Info);
556
557 IsAllZeroIndices &= IdxVal->isZero();
558 }
559
Chris Lattner52310702003-11-25 21:09:18 +0000560 // If there are any non-simple uses of this getelementptr, make sure to reject
561 // them.
Chris Lattner87679202007-05-30 06:11:23 +0000562 return isSafeElementUse(GEPI, IsAllZeroIndices, AI, Info);
Chris Lattner877a3b42007-03-19 00:16:43 +0000563}
564
565/// isSafeMemIntrinsicOnAllocation - Return true if the specified memory
566/// intrinsic can be promoted by SROA. At this point, we know that the operand
567/// of the memintrinsic is a pointer to the beginning of the allocation.
Chris Lattner87679202007-05-30 06:11:23 +0000568void SROA::isSafeMemIntrinsicOnAllocation(MemIntrinsic *MI, AllocationInst *AI,
569 unsigned OpNo, AllocaInfo &Info) {
Chris Lattner877a3b42007-03-19 00:16:43 +0000570 // If not constant length, give up.
571 ConstantInt *Length = dyn_cast<ConstantInt>(MI->getLength());
Chris Lattner87679202007-05-30 06:11:23 +0000572 if (!Length) return MarkUnsafe(Info);
Chris Lattner877a3b42007-03-19 00:16:43 +0000573
574 // If not the whole aggregate, give up.
575 const TargetData &TD = getAnalysis<TargetData>();
Duncan Sands399d9792007-11-04 14:43:57 +0000576 if (Length->getZExtValue() !=
577 TD.getABITypeSize(AI->getType()->getElementType()))
Chris Lattner87679202007-05-30 06:11:23 +0000578 return MarkUnsafe(Info);
Chris Lattner877a3b42007-03-19 00:16:43 +0000579
580 // We only know about memcpy/memset/memmove.
581 if (!isa<MemCpyInst>(MI) && !isa<MemSetInst>(MI) && !isa<MemMoveInst>(MI))
Chris Lattner87679202007-05-30 06:11:23 +0000582 return MarkUnsafe(Info);
583
584 // Otherwise, we can transform it. Determine whether this is a memcpy/set
585 // into or out of the aggregate.
586 if (OpNo == 1)
587 Info.isMemCpyDst = true;
588 else {
589 assert(OpNo == 2);
590 Info.isMemCpySrc = true;
591 }
Chris Lattner6e5398d2003-05-30 04:15:41 +0000592}
593
Chris Lattner66e6a822007-03-05 07:52:57 +0000594/// isSafeUseOfBitCastedAllocation - Return true if all users of this bitcast
595/// are
Chris Lattner87679202007-05-30 06:11:23 +0000596void SROA::isSafeUseOfBitCastedAllocation(BitCastInst *BC, AllocationInst *AI,
597 AllocaInfo &Info) {
Chris Lattner66e6a822007-03-05 07:52:57 +0000598 for (Value::use_iterator UI = BC->use_begin(), E = BC->use_end();
599 UI != E; ++UI) {
600 if (BitCastInst *BCU = dyn_cast<BitCastInst>(UI)) {
Chris Lattner87679202007-05-30 06:11:23 +0000601 isSafeUseOfBitCastedAllocation(BCU, AI, Info);
Chris Lattner66e6a822007-03-05 07:52:57 +0000602 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(UI)) {
Chris Lattner87679202007-05-30 06:11:23 +0000603 isSafeMemIntrinsicOnAllocation(MI, AI, UI.getOperandNo(), Info);
Chris Lattner66e6a822007-03-05 07:52:57 +0000604 } else {
Chris Lattner87679202007-05-30 06:11:23 +0000605 return MarkUnsafe(Info);
Chris Lattner66e6a822007-03-05 07:52:57 +0000606 }
Chris Lattner87679202007-05-30 06:11:23 +0000607 if (Info.isUnsafe) return;
Chris Lattner66e6a822007-03-05 07:52:57 +0000608 }
Chris Lattner66e6a822007-03-05 07:52:57 +0000609}
610
Chris Lattner877a3b42007-03-19 00:16:43 +0000611/// RewriteBitCastUserOfAlloca - BCInst (transitively) bitcasts AI, or indexes
612/// to its first element. Transform users of the cast to use the new values
613/// instead.
614void SROA::RewriteBitCastUserOfAlloca(Instruction *BCInst, AllocationInst *AI,
Chris Lattner66e6a822007-03-05 07:52:57 +0000615 SmallVector<AllocaInst*, 32> &NewElts) {
616 Constant *Zero = Constant::getNullValue(Type::Int32Ty);
617 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattner877a3b42007-03-19 00:16:43 +0000618
619 Value::use_iterator UI = BCInst->use_begin(), UE = BCInst->use_end();
620 while (UI != UE) {
621 if (BitCastInst *BCU = dyn_cast<BitCastInst>(*UI)) {
Chris Lattner66e6a822007-03-05 07:52:57 +0000622 RewriteBitCastUserOfAlloca(BCU, AI, NewElts);
Chris Lattner877a3b42007-03-19 00:16:43 +0000623 ++UI;
624 BCU->eraseFromParent();
Chris Lattner66e6a822007-03-05 07:52:57 +0000625 continue;
626 }
627
628 // Otherwise, must be memcpy/memmove/memset of the entire aggregate. Split
629 // into one per element.
Chris Lattner877a3b42007-03-19 00:16:43 +0000630 MemIntrinsic *MI = dyn_cast<MemIntrinsic>(*UI);
631
632 // If it's not a mem intrinsic, it must be some other user of a gep of the
633 // first pointer. Just leave these alone.
634 if (!MI) {
635 ++UI;
636 continue;
637 }
Chris Lattner66e6a822007-03-05 07:52:57 +0000638
639 // If this is a memcpy/memmove, construct the other pointer as the
640 // appropriate type.
641 Value *OtherPtr = 0;
642 if (MemCpyInst *MCI = dyn_cast<MemCpyInst>(MI)) {
643 if (BCInst == MCI->getRawDest())
644 OtherPtr = MCI->getRawSource();
645 else {
646 assert(BCInst == MCI->getRawSource());
647 OtherPtr = MCI->getRawDest();
648 }
649 } else if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
650 if (BCInst == MMI->getRawDest())
651 OtherPtr = MMI->getRawSource();
652 else {
653 assert(BCInst == MMI->getRawSource());
654 OtherPtr = MMI->getRawDest();
655 }
656 }
657
658 // If there is an other pointer, we want to convert it to the same pointer
659 // type as AI has, so we can GEP through it.
660 if (OtherPtr) {
661 // It is likely that OtherPtr is a bitcast, if so, remove it.
662 if (BitCastInst *BC = dyn_cast<BitCastInst>(OtherPtr))
663 OtherPtr = BC->getOperand(0);
664 if (ConstantExpr *BCE = dyn_cast<ConstantExpr>(OtherPtr))
665 if (BCE->getOpcode() == Instruction::BitCast)
666 OtherPtr = BCE->getOperand(0);
667
668 // If the pointer is not the right type, insert a bitcast to the right
669 // type.
670 if (OtherPtr->getType() != AI->getType())
671 OtherPtr = new BitCastInst(OtherPtr, AI->getType(), OtherPtr->getName(),
672 MI);
673 }
674
675 // Process each element of the aggregate.
676 Value *TheFn = MI->getOperand(0);
677 const Type *BytePtrTy = MI->getRawDest()->getType();
678 bool SROADest = MI->getRawDest() == BCInst;
679
680 for (unsigned i = 0, e = NewElts.size(); i != e; ++i) {
681 // If this is a memcpy/memmove, emit a GEP of the other element address.
682 Value *OtherElt = 0;
683 if (OtherPtr) {
Chris Lattner6ff85682008-06-22 17:46:21 +0000684 Value *Idx[2] = { Zero, ConstantInt::get(Type::Int32Ty, i) };
Gabor Greife9ecc682008-04-06 20:25:17 +0000685 OtherElt = GetElementPtrInst::Create(OtherPtr, Idx, Idx + 2,
Chris Lattner6ff85682008-06-22 17:46:21 +0000686 OtherPtr->getNameStr()+"."+utostr(i),
Gabor Greife9ecc682008-04-06 20:25:17 +0000687 MI);
Chris Lattner66e6a822007-03-05 07:52:57 +0000688 }
689
690 Value *EltPtr = NewElts[i];
Chris Lattner9f022d52007-03-08 06:36:54 +0000691 const Type *EltTy =cast<PointerType>(EltPtr->getType())->getElementType();
692
693 // If we got down to a scalar, insert a load or store as appropriate.
Dan Gohman7a0566b2008-05-23 00:12:03 +0000694 if (EltTy->isSingleValueType()) {
Chris Lattner9f022d52007-03-08 06:36:54 +0000695 if (isa<MemCpyInst>(MI) || isa<MemMoveInst>(MI)) {
696 Value *Elt = new LoadInst(SROADest ? OtherElt : EltPtr, "tmp",
697 MI);
698 new StoreInst(Elt, SROADest ? EltPtr : OtherElt, MI);
699 continue;
700 } else {
701 assert(isa<MemSetInst>(MI));
702
703 // If the stored element is zero (common case), just store a null
704 // constant.
705 Constant *StoreVal;
706 if (ConstantInt *CI = dyn_cast<ConstantInt>(MI->getOperand(2))) {
707 if (CI->isZero()) {
708 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0>
709 } else {
Dan Gohman06c60b62007-07-16 14:29:03 +0000710 // If EltTy is a vector type, get the element type.
Chris Lattner9f022d52007-03-08 06:36:54 +0000711 const Type *ValTy = EltTy;
712 if (const VectorType *VTy = dyn_cast<VectorType>(ValTy))
713 ValTy = VTy->getElementType();
Duncan Sands399d9792007-11-04 14:43:57 +0000714
Chris Lattner9f022d52007-03-08 06:36:54 +0000715 // Construct an integer with the right value.
Duncan Sands399d9792007-11-04 14:43:57 +0000716 unsigned EltSize = TD.getTypeSizeInBits(ValTy);
717 APInt OneVal(EltSize, CI->getZExtValue());
Chris Lattner9f022d52007-03-08 06:36:54 +0000718 APInt TotalVal(OneVal);
719 // Set each byte.
Duncan Sands399d9792007-11-04 14:43:57 +0000720 for (unsigned i = 0; 8*i < EltSize; ++i) {
Chris Lattner9f022d52007-03-08 06:36:54 +0000721 TotalVal = TotalVal.shl(8);
722 TotalVal |= OneVal;
723 }
Duncan Sands399d9792007-11-04 14:43:57 +0000724
Chris Lattner9f022d52007-03-08 06:36:54 +0000725 // Convert the integer value to the appropriate type.
726 StoreVal = ConstantInt::get(TotalVal);
727 if (isa<PointerType>(ValTy))
728 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
729 else if (ValTy->isFloatingPoint())
730 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
731 assert(StoreVal->getType() == ValTy && "Type mismatch!");
732
733 // If the requested value was a vector constant, create it.
734 if (EltTy != ValTy) {
735 unsigned NumElts = cast<VectorType>(ValTy)->getNumElements();
736 SmallVector<Constant*, 16> Elts(NumElts, StoreVal);
737 StoreVal = ConstantVector::get(&Elts[0], NumElts);
738 }
739 }
740 new StoreInst(StoreVal, EltPtr, MI);
741 continue;
742 }
743 // Otherwise, if we're storing a byte variable, use a memset call for
744 // this element.
745 }
746 }
Chris Lattner66e6a822007-03-05 07:52:57 +0000747
748 // Cast the element pointer to BytePtrTy.
749 if (EltPtr->getType() != BytePtrTy)
750 EltPtr = new BitCastInst(EltPtr, BytePtrTy, EltPtr->getNameStr(), MI);
Chris Lattner9f022d52007-03-08 06:36:54 +0000751
752 // Cast the other pointer (if we have one) to BytePtrTy.
753 if (OtherElt && OtherElt->getType() != BytePtrTy)
754 OtherElt = new BitCastInst(OtherElt, BytePtrTy,OtherElt->getNameStr(),
755 MI);
756
Duncan Sands399d9792007-11-04 14:43:57 +0000757 unsigned EltSize = TD.getABITypeSize(EltTy);
Chris Lattner9f022d52007-03-08 06:36:54 +0000758
Chris Lattner66e6a822007-03-05 07:52:57 +0000759 // Finally, insert the meminst for this element.
760 if (isa<MemCpyInst>(MI) || isa<MemMoveInst>(MI)) {
761 Value *Ops[] = {
762 SROADest ? EltPtr : OtherElt, // Dest ptr
763 SROADest ? OtherElt : EltPtr, // Src ptr
764 ConstantInt::get(MI->getOperand(3)->getType(), EltSize), // Size
765 Zero // Align
766 };
Gabor Greife9ecc682008-04-06 20:25:17 +0000767 CallInst::Create(TheFn, Ops, Ops + 4, "", MI);
Chris Lattner9f022d52007-03-08 06:36:54 +0000768 } else {
769 assert(isa<MemSetInst>(MI));
Chris Lattner66e6a822007-03-05 07:52:57 +0000770 Value *Ops[] = {
771 EltPtr, MI->getOperand(2), // Dest, Value,
772 ConstantInt::get(MI->getOperand(3)->getType(), EltSize), // Size
773 Zero // Align
774 };
Gabor Greife9ecc682008-04-06 20:25:17 +0000775 CallInst::Create(TheFn, Ops, Ops + 4, "", MI);
Chris Lattner66e6a822007-03-05 07:52:57 +0000776 }
Chris Lattner9f022d52007-03-08 06:36:54 +0000777 }
Chris Lattner66e6a822007-03-05 07:52:57 +0000778
779 // Finally, MI is now dead, as we've modified its actions to occur on all of
780 // the elements of the aggregate.
Chris Lattner877a3b42007-03-19 00:16:43 +0000781 ++UI;
Chris Lattner66e6a822007-03-05 07:52:57 +0000782 MI->eraseFromParent();
783 }
Chris Lattner66e6a822007-03-05 07:52:57 +0000784}
785
Duncan Sands399d9792007-11-04 14:43:57 +0000786/// HasPadding - Return true if the specified type has any structure or
787/// alignment padding, false otherwise.
Duncan Sandsfc3c4892008-06-04 08:21:45 +0000788static bool HasPadding(const Type *Ty, const TargetData &TD) {
Chris Lattner87679202007-05-30 06:11:23 +0000789 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
790 const StructLayout *SL = TD.getStructLayout(STy);
791 unsigned PrevFieldBitOffset = 0;
792 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Duncan Sands399d9792007-11-04 14:43:57 +0000793 unsigned FieldBitOffset = SL->getElementOffsetInBits(i);
794
Chris Lattner87679202007-05-30 06:11:23 +0000795 // Padding in sub-elements?
Duncan Sandsfc3c4892008-06-04 08:21:45 +0000796 if (HasPadding(STy->getElementType(i), TD))
Chris Lattner87679202007-05-30 06:11:23 +0000797 return true;
Duncan Sands399d9792007-11-04 14:43:57 +0000798
Chris Lattner87679202007-05-30 06:11:23 +0000799 // Check to see if there is any padding between this element and the
800 // previous one.
801 if (i) {
Duncan Sands399d9792007-11-04 14:43:57 +0000802 unsigned PrevFieldEnd =
Chris Lattner87679202007-05-30 06:11:23 +0000803 PrevFieldBitOffset+TD.getTypeSizeInBits(STy->getElementType(i-1));
804 if (PrevFieldEnd < FieldBitOffset)
805 return true;
806 }
Duncan Sands399d9792007-11-04 14:43:57 +0000807
Chris Lattner87679202007-05-30 06:11:23 +0000808 PrevFieldBitOffset = FieldBitOffset;
809 }
Duncan Sands399d9792007-11-04 14:43:57 +0000810
Chris Lattner87679202007-05-30 06:11:23 +0000811 // Check for tail padding.
812 if (unsigned EltCount = STy->getNumElements()) {
813 unsigned PrevFieldEnd = PrevFieldBitOffset +
814 TD.getTypeSizeInBits(STy->getElementType(EltCount-1));
Duncan Sands399d9792007-11-04 14:43:57 +0000815 if (PrevFieldEnd < SL->getSizeInBits())
Chris Lattner87679202007-05-30 06:11:23 +0000816 return true;
817 }
818
819 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Duncan Sandsfc3c4892008-06-04 08:21:45 +0000820 return HasPadding(ATy->getElementType(), TD);
Duncan Sands399d9792007-11-04 14:43:57 +0000821 } else if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Duncan Sandsfc3c4892008-06-04 08:21:45 +0000822 return HasPadding(VTy->getElementType(), TD);
Chris Lattner87679202007-05-30 06:11:23 +0000823 }
Duncan Sandsfc3c4892008-06-04 08:21:45 +0000824 return TD.getTypeSizeInBits(Ty) != TD.getABITypeSizeInBits(Ty);
Chris Lattner87679202007-05-30 06:11:23 +0000825}
Chris Lattner66e6a822007-03-05 07:52:57 +0000826
Chris Lattner88819122004-11-14 04:24:28 +0000827/// isSafeStructAllocaToScalarRepl - Check to see if the specified allocation of
828/// an aggregate can be broken down into elements. Return 0 if not, 3 if safe,
829/// or 1 if safe after canonicalization has been performed.
Chris Lattner6e5398d2003-05-30 04:15:41 +0000830///
Chris Lattner88819122004-11-14 04:24:28 +0000831int SROA::isSafeAllocaToScalarRepl(AllocationInst *AI) {
Chris Lattner6e5398d2003-05-30 04:15:41 +0000832 // Loop over the use list of the alloca. We can only transform it if all of
833 // the users are safe to transform.
Chris Lattner87679202007-05-30 06:11:23 +0000834 AllocaInfo Info;
835
Chris Lattner6e5398d2003-05-30 04:15:41 +0000836 for (Value::use_iterator I = AI->use_begin(), E = AI->use_end();
Chris Lattner88819122004-11-14 04:24:28 +0000837 I != E; ++I) {
Chris Lattner87679202007-05-30 06:11:23 +0000838 isSafeUseOfAllocation(cast<Instruction>(*I), AI, Info);
839 if (Info.isUnsafe) {
Bill Wendling5dbf43c2006-11-26 09:46:52 +0000840 DOUT << "Cannot transform: " << *AI << " due to user: " << **I;
Chris Lattner88819122004-11-14 04:24:28 +0000841 return 0;
Chris Lattner6e5398d2003-05-30 04:15:41 +0000842 }
Chris Lattner88819122004-11-14 04:24:28 +0000843 }
Chris Lattner87679202007-05-30 06:11:23 +0000844
845 // Okay, we know all the users are promotable. If the aggregate is a memcpy
846 // source and destination, we have to be careful. In particular, the memcpy
847 // could be moving around elements that live in structure padding of the LLVM
848 // types, but may actually be used. In these cases, we refuse to promote the
849 // struct.
850 if (Info.isMemCpySrc && Info.isMemCpyDst &&
Duncan Sands399d9792007-11-04 14:43:57 +0000851 HasPadding(AI->getType()->getElementType(), getAnalysis<TargetData>()))
Chris Lattner87679202007-05-30 06:11:23 +0000852 return 0;
Duncan Sands399d9792007-11-04 14:43:57 +0000853
Chris Lattner87679202007-05-30 06:11:23 +0000854 // If we require cleanup, return 1, otherwise return 3.
855 return Info.needsCanon ? 1 : 3;
Chris Lattner88819122004-11-14 04:24:28 +0000856}
857
858/// CanonicalizeAllocaUsers - If SROA reported that it can promote the specified
859/// allocation, but only if cleaned up, perform the cleanups required.
860void SROA::CanonicalizeAllocaUsers(AllocationInst *AI) {
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000861 // At this point, we know that the end result will be SROA'd and promoted, so
862 // we can insert ugly code if required so long as sroa+mem2reg will clean it
863 // up.
864 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
865 UI != E; ) {
Chris Lattner9c62db72007-03-19 18:25:57 +0000866 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI++);
867 if (!GEPI) continue;
Reid Spencer93396382004-11-15 17:29:41 +0000868 gep_type_iterator I = gep_type_begin(GEPI);
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000869 ++I;
Chris Lattner88819122004-11-14 04:24:28 +0000870
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000871 if (const ArrayType *AT = dyn_cast<ArrayType>(*I)) {
872 uint64_t NumElements = AT->getNumElements();
Misha Brukmanb1c93172005-04-21 23:48:37 +0000873
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000874 if (!isa<ConstantInt>(I.getOperand())) {
875 if (NumElements == 1) {
Reid Spencerc635f472006-12-31 05:48:39 +0000876 GEPI->setOperand(2, Constant::getNullValue(Type::Int32Ty));
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000877 } else {
878 assert(NumElements == 2 && "Unhandled case!");
879 // All users of the GEP must be loads. At each use of the GEP, insert
880 // two loads of the appropriate indexed GEP and select between them.
Reid Spencer266e42b2006-12-23 06:05:41 +0000881 Value *IsOne = new ICmpInst(ICmpInst::ICMP_NE, I.getOperand(),
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000882 Constant::getNullValue(I.getOperand()->getType()),
Reid Spencer266e42b2006-12-23 06:05:41 +0000883 "isone", GEPI);
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000884 // Insert the new GEP instructions, which are properly indexed.
Chris Lattnera7315132007-02-12 22:56:41 +0000885 SmallVector<Value*, 8> Indices(GEPI->op_begin()+1, GEPI->op_end());
Reid Spencerc635f472006-12-31 05:48:39 +0000886 Indices[1] = Constant::getNullValue(Type::Int32Ty);
Gabor Greife9ecc682008-04-06 20:25:17 +0000887 Value *ZeroIdx = GetElementPtrInst::Create(GEPI->getOperand(0),
888 Indices.begin(),
889 Indices.end(),
890 GEPI->getName()+".0", GEPI);
Reid Spencerc635f472006-12-31 05:48:39 +0000891 Indices[1] = ConstantInt::get(Type::Int32Ty, 1);
Gabor Greife9ecc682008-04-06 20:25:17 +0000892 Value *OneIdx = GetElementPtrInst::Create(GEPI->getOperand(0),
893 Indices.begin(),
894 Indices.end(),
895 GEPI->getName()+".1", GEPI);
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000896 // Replace all loads of the variable index GEP with loads from both
897 // indexes and a select.
898 while (!GEPI->use_empty()) {
899 LoadInst *LI = cast<LoadInst>(GEPI->use_back());
900 Value *Zero = new LoadInst(ZeroIdx, LI->getName()+".0", LI);
901 Value *One = new LoadInst(OneIdx , LI->getName()+".1", LI);
Gabor Greife9ecc682008-04-06 20:25:17 +0000902 Value *R = SelectInst::Create(IsOne, One, Zero, LI->getName(), LI);
Chris Lattnerfe3f4e62004-11-14 05:00:19 +0000903 LI->replaceAllUsesWith(R);
904 LI->eraseFromParent();
905 }
906 GEPI->eraseFromParent();
907 }
908 }
909 }
910 }
Chris Lattner6e5398d2003-05-30 04:15:41 +0000911}
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000912
913/// MergeInType - Add the 'In' type to the accumulated type so far. If the
914/// types are incompatible, return true, otherwise update Accum and return
915/// false.
Chris Lattner3323ce12006-04-14 21:42:41 +0000916///
Chris Lattner8f7b7752006-12-15 07:32:38 +0000917/// There are three cases we handle here:
918/// 1) An effectively-integer union, where the pieces are stored into as
Chris Lattner3323ce12006-04-14 21:42:41 +0000919/// smaller integers (common with byte swap and other idioms).
Chris Lattner8f7b7752006-12-15 07:32:38 +0000920/// 2) A union of vector types of the same size and potentially its elements.
921/// Here we turn element accesses into insert/extract element operations.
922/// 3) A union of scalar types, such as int/float or int/pointer. Here we
923/// merge together into integers, allowing the xform to work with #1 as
924/// well.
Chris Lattner05f82722006-10-08 23:28:04 +0000925static bool MergeInType(const Type *In, const Type *&Accum,
926 const TargetData &TD) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000927 // If this is our first type, just use it.
Reid Spencerd84d35b2007-02-15 02:26:10 +0000928 const VectorType *PTy;
Chris Lattner3323ce12006-04-14 21:42:41 +0000929 if (Accum == Type::VoidTy || In == Accum) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000930 Accum = In;
Chris Lattner8f7b7752006-12-15 07:32:38 +0000931 } else if (In == Type::VoidTy) {
932 // Noop.
Chris Lattner03c49532007-01-15 02:27:26 +0000933 } else if (In->isInteger() && Accum->isInteger()) { // integer union.
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000934 // Otherwise pick whichever type is larger.
Reid Spencer7a9c62b2007-01-12 07:05:14 +0000935 if (cast<IntegerType>(In)->getBitWidth() >
936 cast<IntegerType>(Accum)->getBitWidth())
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000937 Accum = In;
Chris Lattner05f82722006-10-08 23:28:04 +0000938 } else if (isa<PointerType>(In) && isa<PointerType>(Accum)) {
Chris Lattner41b44222006-10-08 23:53:04 +0000939 // Pointer unions just stay as one of the pointers.
Reid Spencerd84d35b2007-02-15 02:26:10 +0000940 } else if (isa<VectorType>(In) || isa<VectorType>(Accum)) {
941 if ((PTy = dyn_cast<VectorType>(Accum)) &&
Chris Lattner8f7b7752006-12-15 07:32:38 +0000942 PTy->getElementType() == In) {
943 // Accum is a vector, and we are accessing an element: ok.
Reid Spencerd84d35b2007-02-15 02:26:10 +0000944 } else if ((PTy = dyn_cast<VectorType>(In)) &&
Chris Lattner8f7b7752006-12-15 07:32:38 +0000945 PTy->getElementType() == Accum) {
946 // In is a vector, and accum is an element: ok, remember In.
947 Accum = In;
Reid Spencerd84d35b2007-02-15 02:26:10 +0000948 } else if ((PTy = dyn_cast<VectorType>(In)) && isa<VectorType>(Accum) &&
949 PTy->getBitWidth() == cast<VectorType>(Accum)->getBitWidth()) {
Chris Lattner8f7b7752006-12-15 07:32:38 +0000950 // Two vectors of the same size: keep Accum.
951 } else {
952 // Cannot insert an short into a <4 x int> or handle
953 // <2 x int> -> <4 x int>
954 return true;
955 }
Chris Lattner7c1dff92006-12-13 02:26:45 +0000956 } else {
Chris Lattner8f7b7752006-12-15 07:32:38 +0000957 // Pointer/FP/Integer unions merge together as integers.
958 switch (Accum->getTypeID()) {
959 case Type::PointerTyID: Accum = TD.getIntPtrType(); break;
Reid Spencerc635f472006-12-31 05:48:39 +0000960 case Type::FloatTyID: Accum = Type::Int32Ty; break;
961 case Type::DoubleTyID: Accum = Type::Int64Ty; break;
Dale Johannesen1d1d0e72007-09-28 00:21:38 +0000962 case Type::X86_FP80TyID: return true;
963 case Type::FP128TyID: return true;
964 case Type::PPC_FP128TyID: return true;
Chris Lattner8f7b7752006-12-15 07:32:38 +0000965 default:
Chris Lattner03c49532007-01-15 02:27:26 +0000966 assert(Accum->isInteger() && "Unknown FP type!");
Chris Lattner8f7b7752006-12-15 07:32:38 +0000967 break;
968 }
969
970 switch (In->getTypeID()) {
971 case Type::PointerTyID: In = TD.getIntPtrType(); break;
Reid Spencerc635f472006-12-31 05:48:39 +0000972 case Type::FloatTyID: In = Type::Int32Ty; break;
973 case Type::DoubleTyID: In = Type::Int64Ty; break;
Dale Johannesen1d1d0e72007-09-28 00:21:38 +0000974 case Type::X86_FP80TyID: return true;
975 case Type::FP128TyID: return true;
976 case Type::PPC_FP128TyID: return true;
Chris Lattner8f7b7752006-12-15 07:32:38 +0000977 default:
Chris Lattner03c49532007-01-15 02:27:26 +0000978 assert(In->isInteger() && "Unknown FP type!");
Chris Lattner8f7b7752006-12-15 07:32:38 +0000979 break;
980 }
981 return MergeInType(In, Accum, TD);
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000982 }
983 return false;
984}
985
Duncan Sands399d9792007-11-04 14:43:57 +0000986/// getUIntAtLeastAsBigAs - Return an unsigned integer type that is at least
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000987/// as big as the specified type. If there is no suitable type, this returns
988/// null.
Duncan Sands399d9792007-11-04 14:43:57 +0000989const Type *getUIntAtLeastAsBigAs(unsigned NumBits) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000990 if (NumBits > 64) return 0;
Reid Spencerc635f472006-12-31 05:48:39 +0000991 if (NumBits > 32) return Type::Int64Ty;
992 if (NumBits > 16) return Type::Int32Ty;
993 if (NumBits > 8) return Type::Int16Ty;
994 return Type::Int8Ty;
Chris Lattner3b0a62d2005-12-12 07:19:13 +0000995}
996
997/// CanConvertToScalar - V is a pointer. If we can convert the pointee to a
998/// single scalar integer type, return that type. Further, if the use is not
999/// a completely trivial use that mem2reg could promote, set IsNotTrivial. If
1000/// there are no uses of this pointer, return Type::VoidTy to differentiate from
1001/// failure.
1002///
1003const Type *SROA::CanConvertToScalar(Value *V, bool &IsNotTrivial) {
1004 const Type *UsedType = Type::VoidTy; // No uses, no forced type.
1005 const TargetData &TD = getAnalysis<TargetData>();
1006 const PointerType *PTy = cast<PointerType>(V->getType());
1007
1008 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI!=E; ++UI) {
1009 Instruction *User = cast<Instruction>(*UI);
1010
1011 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Matthijs Kooijman812989b2008-06-05 12:51:53 +00001012 // FIXME: Loads of a first class aggregrate value could be converted to a
1013 // series of loads and insertvalues
1014 if (!LI->getType()->isSingleValueType())
1015 return 0;
1016
Chris Lattner05f82722006-10-08 23:28:04 +00001017 if (MergeInType(LI->getType(), UsedType, TD))
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001018 return 0;
1019
1020 } else if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
Reid Spencer2eadb532007-01-21 00:29:26 +00001021 // Storing the pointer, not into the value?
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001022 if (SI->getOperand(0) == V) return 0;
Matthijs Kooijman812989b2008-06-05 12:51:53 +00001023
1024 // FIXME: Stores of a first class aggregrate value could be converted to a
1025 // series of extractvalues and stores
1026 if (!SI->getOperand(0)->getType()->isSingleValueType())
1027 return 0;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001028
Chris Lattner3323ce12006-04-14 21:42:41 +00001029 // NOTE: We could handle storing of FP imms into integers here!
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001030
Chris Lattner05f82722006-10-08 23:28:04 +00001031 if (MergeInType(SI->getOperand(0)->getType(), UsedType, TD))
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001032 return 0;
Chris Lattner8f7b7752006-12-15 07:32:38 +00001033 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001034 IsNotTrivial = true;
1035 const Type *SubTy = CanConvertToScalar(CI, IsNotTrivial);
Chris Lattner05f82722006-10-08 23:28:04 +00001036 if (!SubTy || MergeInType(SubTy, UsedType, TD)) return 0;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001037 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(User)) {
1038 // Check to see if this is stepping over an element: GEP Ptr, int C
1039 if (GEP->getNumOperands() == 2 && isa<ConstantInt>(GEP->getOperand(1))) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00001040 unsigned Idx = cast<ConstantInt>(GEP->getOperand(1))->getZExtValue();
Duncan Sands399d9792007-11-04 14:43:57 +00001041 unsigned ElSize = TD.getABITypeSize(PTy->getElementType());
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001042 unsigned BitOffset = Idx*ElSize*8;
1043 if (BitOffset > 64 || !isPowerOf2_32(ElSize)) return 0;
1044
1045 IsNotTrivial = true;
1046 const Type *SubElt = CanConvertToScalar(GEP, IsNotTrivial);
1047 if (SubElt == 0) return 0;
Chris Lattner03c49532007-01-15 02:27:26 +00001048 if (SubElt != Type::VoidTy && SubElt->isInteger()) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001049 const Type *NewTy =
Duncan Sands399d9792007-11-04 14:43:57 +00001050 getUIntAtLeastAsBigAs(TD.getABITypeSizeInBits(SubElt)+BitOffset);
Chris Lattner05f82722006-10-08 23:28:04 +00001051 if (NewTy == 0 || MergeInType(NewTy, UsedType, TD)) return 0;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001052 continue;
1053 }
1054 } else if (GEP->getNumOperands() == 3 &&
1055 isa<ConstantInt>(GEP->getOperand(1)) &&
1056 isa<ConstantInt>(GEP->getOperand(2)) &&
Zhou Shengaafe4e22007-04-19 05:39:12 +00001057 cast<ConstantInt>(GEP->getOperand(1))->isZero()) {
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001058 // We are stepping into an element, e.g. a structure or an array:
1059 // GEP Ptr, int 0, uint C
1060 const Type *AggTy = PTy->getElementType();
Reid Spencere0fc4df2006-10-20 07:07:24 +00001061 unsigned Idx = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001062
1063 if (const ArrayType *ATy = dyn_cast<ArrayType>(AggTy)) {
1064 if (Idx >= ATy->getNumElements()) return 0; // Out of range.
Reid Spencer09575ba2007-02-15 03:39:18 +00001065 } else if (const VectorType *VectorTy = dyn_cast<VectorType>(AggTy)) {
Dan Gohman06c60b62007-07-16 14:29:03 +00001066 // Getting an element of the vector.
Reid Spencer09575ba2007-02-15 03:39:18 +00001067 if (Idx >= VectorTy->getNumElements()) return 0; // Out of range.
Chris Lattner3323ce12006-04-14 21:42:41 +00001068
Reid Spencer09575ba2007-02-15 03:39:18 +00001069 // Merge in the vector type.
1070 if (MergeInType(VectorTy, UsedType, TD)) return 0;
Chris Lattner3323ce12006-04-14 21:42:41 +00001071
1072 const Type *SubTy = CanConvertToScalar(GEP, IsNotTrivial);
1073 if (SubTy == 0) return 0;
1074
Chris Lattner05f82722006-10-08 23:28:04 +00001075 if (SubTy != Type::VoidTy && MergeInType(SubTy, UsedType, TD))
Chris Lattner3323ce12006-04-14 21:42:41 +00001076 return 0;
1077
1078 // We'll need to change this to an insert/extract element operation.
1079 IsNotTrivial = true;
1080 continue; // Everything looks ok
1081
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001082 } else if (isa<StructType>(AggTy)) {
1083 // Structs are always ok.
1084 } else {
1085 return 0;
1086 }
Duncan Sands399d9792007-11-04 14:43:57 +00001087 const Type *NTy = getUIntAtLeastAsBigAs(TD.getABITypeSizeInBits(AggTy));
Chris Lattner05f82722006-10-08 23:28:04 +00001088 if (NTy == 0 || MergeInType(NTy, UsedType, TD)) return 0;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001089 const Type *SubTy = CanConvertToScalar(GEP, IsNotTrivial);
1090 if (SubTy == 0) return 0;
Chris Lattner05f82722006-10-08 23:28:04 +00001091 if (SubTy != Type::VoidTy && MergeInType(SubTy, UsedType, TD))
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001092 return 0;
1093 continue; // Everything looks ok
1094 }
1095 return 0;
1096 } else {
1097 // Cannot handle this!
1098 return 0;
1099 }
1100 }
1101
1102 return UsedType;
1103}
1104
1105/// ConvertToScalar - The specified alloca passes the CanConvertToScalar
1106/// predicate and is non-trivial. Convert it to something that can be trivially
1107/// promoted into a register by mem2reg.
1108void SROA::ConvertToScalar(AllocationInst *AI, const Type *ActualTy) {
Bill Wendling5dbf43c2006-11-26 09:46:52 +00001109 DOUT << "CONVERT TO SCALAR: " << *AI << " TYPE = "
1110 << *ActualTy << "\n";
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001111 ++NumConverted;
1112
1113 BasicBlock *EntryBlock = AI->getParent();
Dan Gohmandcb291f2007-03-22 16:38:57 +00001114 assert(EntryBlock == &EntryBlock->getParent()->getEntryBlock() &&
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001115 "Not in the entry block!");
1116 EntryBlock->getInstList().remove(AI); // Take the alloca out of the program.
1117
1118 // Create and insert the alloca.
Chris Lattner3323ce12006-04-14 21:42:41 +00001119 AllocaInst *NewAI = new AllocaInst(ActualTy, 0, AI->getName(),
1120 EntryBlock->begin());
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001121 ConvertUsesToScalar(AI, NewAI, 0);
1122 delete AI;
1123}
1124
1125
1126/// ConvertUsesToScalar - Convert all of the users of Ptr to use the new alloca
Chris Lattner3323ce12006-04-14 21:42:41 +00001127/// directly. This happens when we are converting an "integer union" to a
1128/// single integer scalar, or when we are converting a "vector union" to a
1129/// vector with insert/extractelement instructions.
1130///
1131/// Offset is an offset from the original alloca, in bits that need to be
1132/// shifted to the right. By the end of this, there should be no uses of Ptr.
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001133void SROA::ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, unsigned Offset) {
1134 while (!Ptr->use_empty()) {
1135 Instruction *User = cast<Instruction>(Ptr->use_back());
1136
1137 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner77205de2008-02-29 07:03:13 +00001138 Value *NV = ConvertUsesOfLoadToScalar(LI, NewAI, Offset);
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001139 LI->replaceAllUsesWith(NV);
1140 LI->eraseFromParent();
1141 } else if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
1142 assert(SI->getOperand(0) != Ptr && "Consistency error!");
1143
Chris Lattner77205de2008-02-29 07:03:13 +00001144 Value *SV = ConvertUsesOfStoreToScalar(SI, NewAI, Offset);
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001145 new StoreInst(SV, NewAI, SI);
1146 SI->eraseFromParent();
1147
Chris Lattnerdaa012d2007-04-11 00:57:54 +00001148 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
Chris Lattnerb9e5b8f2008-01-30 00:39:15 +00001149 ConvertUsesToScalar(CI, NewAI, Offset);
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001150 CI->eraseFromParent();
1151 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(User)) {
1152 const PointerType *AggPtrTy =
1153 cast<PointerType>(GEP->getOperand(0)->getType());
1154 const TargetData &TD = getAnalysis<TargetData>();
Duncan Sands399d9792007-11-04 14:43:57 +00001155 unsigned AggSizeInBits =
1156 TD.getABITypeSizeInBits(AggPtrTy->getElementType());
1157
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001158 // Check to see if this is stepping over an element: GEP Ptr, int C
1159 unsigned NewOffset = Offset;
1160 if (GEP->getNumOperands() == 2) {
Reid Spencere0fc4df2006-10-20 07:07:24 +00001161 unsigned Idx = cast<ConstantInt>(GEP->getOperand(1))->getZExtValue();
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001162 unsigned BitOffset = Idx*AggSizeInBits;
1163
Chris Lattnerdaa012d2007-04-11 00:57:54 +00001164 NewOffset += BitOffset;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001165 } else if (GEP->getNumOperands() == 3) {
1166 // We know that operand #2 is zero.
Reid Spencere0fc4df2006-10-20 07:07:24 +00001167 unsigned Idx = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001168 const Type *AggTy = AggPtrTy->getElementType();
1169 if (const SequentialType *SeqTy = dyn_cast<SequentialType>(AggTy)) {
Duncan Sands399d9792007-11-04 14:43:57 +00001170 unsigned ElSizeBits =
1171 TD.getABITypeSizeInBits(SeqTy->getElementType());
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001172
Chris Lattnerdaa012d2007-04-11 00:57:54 +00001173 NewOffset += ElSizeBits*Idx;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001174 } else if (const StructType *STy = dyn_cast<StructType>(AggTy)) {
Chris Lattnerc473d8e2007-02-10 19:55:17 +00001175 unsigned EltBitOffset =
Duncan Sands399d9792007-11-04 14:43:57 +00001176 TD.getStructLayout(STy)->getElementOffsetInBits(Idx);
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001177
Chris Lattnerdaa012d2007-04-11 00:57:54 +00001178 NewOffset += EltBitOffset;
Chris Lattner3b0a62d2005-12-12 07:19:13 +00001179 } else {
1180 assert(0 && "Unsupported operation!");
1181 abort();
1182 }
1183 } else {
1184 assert(0 && "Unsupported operation!");
1185 abort();
1186 }
1187 ConvertUsesToScalar(GEP, NewAI, NewOffset);
1188 GEP->eraseFromParent();
1189 } else {
1190 assert(0 && "Unsupported operation!");
1191 abort();
1192 }
1193 }
1194}
Chris Lattner827cb982007-04-25 06:40:51 +00001195
Chris Lattner77205de2008-02-29 07:03:13 +00001196/// ConvertUsesOfLoadToScalar - Convert all of the users the specified load to
1197/// use the new alloca directly, returning the value that should replace the
1198/// load. This happens when we are converting an "integer union" to a
1199/// single integer scalar, or when we are converting a "vector union" to a
1200/// vector with insert/extractelement instructions.
1201///
1202/// Offset is an offset from the original alloca, in bits that need to be
1203/// shifted to the right. By the end of this, there should be no uses of Ptr.
1204Value *SROA::ConvertUsesOfLoadToScalar(LoadInst *LI, AllocaInst *NewAI,
1205 unsigned Offset) {
1206 // The load is a bit extract from NewAI shifted right by Offset bits.
1207 Value *NV = new LoadInst(NewAI, LI->getName(), LI);
1208
1209 if (NV->getType() == LI->getType() && Offset == 0) {
1210 // We win, no conversion needed.
1211 return NV;
1212 }
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001213
1214 // If the result type of the 'union' is a pointer, then this must be ptr->ptr
1215 // cast. Anything else would result in NV being an integer.
1216 if (isa<PointerType>(NV->getType())) {
1217 assert(isa<PointerType>(LI->getType()));
1218 return new BitCastInst(NV, LI->getType(), LI->getName(), LI);
1219 }
Chris Lattner77205de2008-02-29 07:03:13 +00001220
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001221 if (const VectorType *VTy = dyn_cast<VectorType>(NV->getType())) {
Chris Lattner77205de2008-02-29 07:03:13 +00001222 // If the result alloca is a vector type, this is either an element
1223 // access or a bitcast to another vector type.
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001224 if (isa<VectorType>(LI->getType()))
1225 return new BitCastInst(NV, LI->getType(), LI->getName(), LI);
1226
1227 // Otherwise it must be an element access.
1228 const TargetData &TD = getAnalysis<TargetData>();
1229 unsigned Elt = 0;
1230 if (Offset) {
1231 unsigned EltSize = TD.getABITypeSizeInBits(VTy->getElementType());
1232 Elt = Offset/EltSize;
1233 Offset -= EltSize*Elt;
Chris Lattner77205de2008-02-29 07:03:13 +00001234 }
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001235 NV = new ExtractElementInst(NV, ConstantInt::get(Type::Int32Ty, Elt),
1236 "tmp", LI);
1237
1238 // If we're done, return this element.
1239 if (NV->getType() == LI->getType() && Offset == 0)
1240 return NV;
1241 }
1242
1243 const IntegerType *NTy = cast<IntegerType>(NV->getType());
1244
1245 // If this is a big-endian system and the load is narrower than the
1246 // full alloca type, we need to do a shift to get the right bits.
1247 int ShAmt = 0;
1248 const TargetData &TD = getAnalysis<TargetData>();
1249 if (TD.isBigEndian()) {
1250 // On big-endian machines, the lowest bit is stored at the bit offset
1251 // from the pointer given by getTypeStoreSizeInBits. This matters for
1252 // integers with a bitwidth that is not a multiple of 8.
1253 ShAmt = TD.getTypeStoreSizeInBits(NTy) -
1254 TD.getTypeStoreSizeInBits(LI->getType()) - Offset;
1255 } else {
1256 ShAmt = Offset;
1257 }
1258
1259 // Note: we support negative bitwidths (with shl) which are not defined.
1260 // We do this to support (f.e.) loads off the end of a structure where
1261 // only some bits are used.
1262 if (ShAmt > 0 && (unsigned)ShAmt < NTy->getBitWidth())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001263 NV = BinaryOperator::CreateLShr(NV,
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001264 ConstantInt::get(NV->getType(),ShAmt),
1265 LI->getName(), LI);
1266 else if (ShAmt < 0 && (unsigned)-ShAmt < NTy->getBitWidth())
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001267 NV = BinaryOperator::CreateShl(NV,
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001268 ConstantInt::get(NV->getType(),-ShAmt),
1269 LI->getName(), LI);
1270
1271 // Finally, unconditionally truncate the integer to the right width.
1272 unsigned LIBitWidth = TD.getTypeSizeInBits(LI->getType());
1273 if (LIBitWidth < NTy->getBitWidth())
1274 NV = new TruncInst(NV, IntegerType::get(LIBitWidth),
1275 LI->getName(), LI);
1276
1277 // If the result is an integer, this is a trunc or bitcast.
1278 if (isa<IntegerType>(LI->getType())) {
1279 // Should be done.
1280 } else if (LI->getType()->isFloatingPoint()) {
1281 // Just do a bitcast, we know the sizes match up.
Chris Lattner77205de2008-02-29 07:03:13 +00001282 NV = new BitCastInst(NV, LI->getType(), LI->getName(), LI);
1283 } else {
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001284 // Otherwise must be a pointer.
1285 NV = new IntToPtrInst(NV, LI->getType(), LI->getName(), LI);
Chris Lattner77205de2008-02-29 07:03:13 +00001286 }
Chris Lattnerc966ceb2008-02-29 07:12:06 +00001287 assert(NV->getType() == LI->getType() && "Didn't convert right?");
Chris Lattner77205de2008-02-29 07:03:13 +00001288 return NV;
1289}
1290
1291
1292/// ConvertUsesOfStoreToScalar - Convert the specified store to a load+store
1293/// pair of the new alloca directly, returning the value that should be stored
1294/// to the alloca. This happens when we are converting an "integer union" to a
1295/// single integer scalar, or when we are converting a "vector union" to a
1296/// vector with insert/extractelement instructions.
1297///
1298/// Offset is an offset from the original alloca, in bits that need to be
1299/// shifted to the right. By the end of this, there should be no uses of Ptr.
1300Value *SROA::ConvertUsesOfStoreToScalar(StoreInst *SI, AllocaInst *NewAI,
1301 unsigned Offset) {
1302
1303 // Convert the stored type to the actual type, shift it left to insert
1304 // then 'or' into place.
1305 Value *SV = SI->getOperand(0);
1306 const Type *AllocaType = NewAI->getType()->getElementType();
1307 if (SV->getType() == AllocaType && Offset == 0) {
1308 // All is well.
1309 } else if (const VectorType *PTy = dyn_cast<VectorType>(AllocaType)) {
1310 Value *Old = new LoadInst(NewAI, NewAI->getName()+".in", SI);
1311
1312 // If the result alloca is a vector type, this is either an element
1313 // access or a bitcast to another vector type.
1314 if (isa<VectorType>(SV->getType())) {
1315 SV = new BitCastInst(SV, AllocaType, SV->getName(), SI);
1316 } else {
1317 // Must be an element insertion.
1318 const TargetData &TD = getAnalysis<TargetData>();
1319 unsigned Elt = Offset/TD.getABITypeSizeInBits(PTy->getElementType());
Gabor Greife9ecc682008-04-06 20:25:17 +00001320 SV = InsertElementInst::Create(Old, SV,
1321 ConstantInt::get(Type::Int32Ty, Elt),
1322 "tmp", SI);
Chris Lattner77205de2008-02-29 07:03:13 +00001323 }
1324 } else if (isa<PointerType>(AllocaType)) {
1325 // If the alloca type is a pointer, then all the elements must be
1326 // pointers.
1327 if (SV->getType() != AllocaType)
1328 SV = new BitCastInst(SV, AllocaType, SV->getName(), SI);
1329 } else {
1330 Value *Old = new LoadInst(NewAI, NewAI->getName()+".in", SI);
1331
1332 // If SV is a float, convert it to the appropriate integer type.
1333 // If it is a pointer, do the same, and also handle ptr->ptr casts
1334 // here.
1335 const TargetData &TD = getAnalysis<TargetData>();
1336 unsigned SrcWidth = TD.getTypeSizeInBits(SV->getType());
1337 unsigned DestWidth = TD.getTypeSizeInBits(AllocaType);
1338 unsigned SrcStoreWidth = TD.getTypeStoreSizeInBits(SV->getType());
1339 unsigned DestStoreWidth = TD.getTypeStoreSizeInBits(AllocaType);
1340 if (SV->getType()->isFloatingPoint())
1341 SV = new BitCastInst(SV, IntegerType::get(SrcWidth),
1342 SV->getName(), SI);
1343 else if (isa<PointerType>(SV->getType()))
1344 SV = new PtrToIntInst(SV, TD.getIntPtrType(), SV->getName(), SI);
1345
1346 // Always zero extend the value if needed.
1347 if (SV->getType() != AllocaType)
1348 SV = new ZExtInst(SV, AllocaType, SV->getName(), SI);
1349
1350 // If this is a big-endian system and the store is narrower than the
1351 // full alloca type, we need to do a shift to get the right bits.
1352 int ShAmt = 0;
1353 if (TD.isBigEndian()) {
1354 // On big-endian machines, the lowest bit is stored at the bit offset
1355 // from the pointer given by getTypeStoreSizeInBits. This matters for
1356 // integers with a bitwidth that is not a multiple of 8.
1357 ShAmt = DestStoreWidth - SrcStoreWidth - Offset;
1358 } else {
1359 ShAmt = Offset;
1360 }
1361
1362 // Note: we support negative bitwidths (with shr) which are not defined.
1363 // We do this to support (f.e.) stores off the end of a structure where
1364 // only some bits in the structure are set.
1365 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
1366 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001367 SV = BinaryOperator::CreateShl(SV,
Chris Lattner77205de2008-02-29 07:03:13 +00001368 ConstantInt::get(SV->getType(), ShAmt),
1369 SV->getName(), SI);
1370 Mask <<= ShAmt;
1371 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001372 SV = BinaryOperator::CreateLShr(SV,
Chris Lattner77205de2008-02-29 07:03:13 +00001373 ConstantInt::get(SV->getType(),-ShAmt),
1374 SV->getName(), SI);
1375 Mask = Mask.lshr(ShAmt);
1376 }
1377
1378 // Mask out the bits we are about to insert from the old value, and or
1379 // in the new bits.
1380 if (SrcWidth != DestWidth) {
1381 assert(DestWidth > SrcWidth);
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001382 Old = BinaryOperator::CreateAnd(Old, ConstantInt::get(~Mask),
Chris Lattner77205de2008-02-29 07:03:13 +00001383 Old->getName()+".mask", SI);
Gabor Greife1f6e4b2008-05-16 19:29:10 +00001384 SV = BinaryOperator::CreateOr(Old, SV, SV->getName()+".ins", SI);
Chris Lattner77205de2008-02-29 07:03:13 +00001385 }
1386 }
1387 return SV;
1388}
1389
1390
Chris Lattner827cb982007-04-25 06:40:51 +00001391
1392/// PointsToConstantGlobal - Return true if V (possibly indirectly) points to
1393/// some part of a constant global variable. This intentionally only accepts
1394/// constant expressions because we don't can't rewrite arbitrary instructions.
1395static bool PointsToConstantGlobal(Value *V) {
1396 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
1397 return GV->isConstant();
1398 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
1399 if (CE->getOpcode() == Instruction::BitCast ||
1400 CE->getOpcode() == Instruction::GetElementPtr)
1401 return PointsToConstantGlobal(CE->getOperand(0));
1402 return false;
1403}
1404
1405/// isOnlyCopiedFromConstantGlobal - Recursively walk the uses of a (derived)
1406/// pointer to an alloca. Ignore any reads of the pointer, return false if we
1407/// see any stores or other unknown uses. If we see pointer arithmetic, keep
1408/// track of whether it moves the pointer (with isOffset) but otherwise traverse
1409/// the uses. If we see a memcpy/memmove that targets an unoffseted pointer to
1410/// the alloca, and if the source pointer is a pointer to a constant global, we
1411/// can optimize this.
1412static bool isOnlyCopiedFromConstantGlobal(Value *V, Instruction *&TheCopy,
1413 bool isOffset) {
1414 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI!=E; ++UI) {
1415 if (isa<LoadInst>(*UI)) {
1416 // Ignore loads, they are always ok.
1417 continue;
1418 }
1419 if (BitCastInst *BCI = dyn_cast<BitCastInst>(*UI)) {
1420 // If uses of the bitcast are ok, we are ok.
1421 if (!isOnlyCopiedFromConstantGlobal(BCI, TheCopy, isOffset))
1422 return false;
1423 continue;
1424 }
1425 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(*UI)) {
1426 // If the GEP has all zero indices, it doesn't offset the pointer. If it
1427 // doesn't, it does.
1428 if (!isOnlyCopiedFromConstantGlobal(GEP, TheCopy,
1429 isOffset || !GEP->hasAllZeroIndices()))
1430 return false;
1431 continue;
1432 }
1433
1434 // If this is isn't our memcpy/memmove, reject it as something we can't
1435 // handle.
1436 if (!isa<MemCpyInst>(*UI) && !isa<MemMoveInst>(*UI))
1437 return false;
1438
1439 // If we already have seen a copy, reject the second one.
1440 if (TheCopy) return false;
1441
1442 // If the pointer has been offset from the start of the alloca, we can't
1443 // safely handle this.
1444 if (isOffset) return false;
1445
1446 // If the memintrinsic isn't using the alloca as the dest, reject it.
1447 if (UI.getOperandNo() != 1) return false;
1448
1449 MemIntrinsic *MI = cast<MemIntrinsic>(*UI);
1450
1451 // If the source of the memcpy/move is not a constant global, reject it.
1452 if (!PointsToConstantGlobal(MI->getOperand(2)))
1453 return false;
1454
1455 // Otherwise, the transform is safe. Remember the copy instruction.
1456 TheCopy = MI;
1457 }
1458 return true;
1459}
1460
1461/// isOnlyCopiedFromConstantGlobal - Return true if the specified alloca is only
1462/// modified by a copy from a constant global. If we can prove this, we can
1463/// replace any uses of the alloca with uses of the global directly.
1464Instruction *SROA::isOnlyCopiedFromConstantGlobal(AllocationInst *AI) {
1465 Instruction *TheCopy = 0;
1466 if (::isOnlyCopiedFromConstantGlobal(AI, TheCopy, false))
1467 return TheCopy;
1468 return 0;
1469}