blob: fc4a6aa278d71869e1ff181a0bcd111cafe3764a [file] [log] [blame]
Chris Lattnered7b41e2003-05-27 15:45:27 +00001//===- ScalarReplAggregates.cpp - Scalar Replacement of Aggregates --------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-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 Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Chris Lattnered7b41e2003-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 Lattner38aec322003-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 Lattnered7b41e2003-05-27 15:45:27 +000019//
20//===----------------------------------------------------------------------===//
21
Chris Lattner0e5f4992006-12-19 21:40:18 +000022#define DEBUG_TYPE "scalarrepl"
Chris Lattnered7b41e2003-05-27 15:45:27 +000023#include "llvm/Transforms/Scalar.h"
Chris Lattner38aec322003-09-11 16:45:55 +000024#include "llvm/Constants.h"
25#include "llvm/DerivedTypes.h"
Chris Lattnered7b41e2003-05-27 15:45:27 +000026#include "llvm/Function.h"
Chris Lattner79b3bd32007-04-25 06:40:51 +000027#include "llvm/GlobalVariable.h"
Misha Brukmand8e1eea2004-07-29 17:05:13 +000028#include "llvm/Instructions.h"
Chris Lattner372dda82007-03-05 07:52:57 +000029#include "llvm/IntrinsicInst.h"
30#include "llvm/Pass.h"
Chris Lattner38aec322003-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 Lattner95255282006-06-28 23:17:24 +000034#include "llvm/Support/Debug.h"
Chris Lattnera1888942005-12-12 07:19:13 +000035#include "llvm/Support/GetElementPtrTypeIterator.h"
36#include "llvm/Support/MathExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000037#include "llvm/Support/Compiler.h"
Chris Lattner1ccd1852007-02-12 22:56:41 +000038#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000039#include "llvm/ADT/Statistic.h"
40#include "llvm/ADT/StringExtras.h"
Chris Lattnerd8664732003-12-02 17:43:55 +000041using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000042
Chris Lattner0e5f4992006-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 Lattner79b3bd32007-04-25 06:40:51 +000046STATISTIC(NumGlobals, "Number of allocas copied from constant global");
Chris Lattnered7b41e2003-05-27 15:45:27 +000047
Chris Lattner0e5f4992006-12-19 21:40:18 +000048namespace {
Chris Lattner95255282006-06-28 23:17:24 +000049 struct VISIBILITY_HIDDEN SROA : public FunctionPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000050 static char ID; // Pass identification, replacement for typeid
Dan Gohmanc2bbfc12007-08-01 15:32:29 +000051 explicit SROA(signed T = -1) : FunctionPass((intptr_t)&ID) {
Devang Patelff366852007-07-09 21:19:23 +000052 if (T == -1)
Chris Lattnerb0e71ed2007-08-02 21:33:36 +000053 SRThreshold = 128;
Devang Patelff366852007-07-09 21:19:23 +000054 else
55 SRThreshold = T;
56 }
Devang Patel794fd752007-05-01 21:15:47 +000057
Chris Lattnered7b41e2003-05-27 15:45:27 +000058 bool runOnFunction(Function &F);
59
Chris Lattner38aec322003-09-11 16:45:55 +000060 bool performScalarRepl(Function &F);
61 bool performPromotion(Function &F);
62
Chris Lattnera15854c2003-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 Patel326821e2007-06-07 21:57:03 +000066 AU.addRequired<DominatorTree>();
Chris Lattner38aec322003-09-11 16:45:55 +000067 AU.addRequired<DominanceFrontier>();
68 AU.addRequired<TargetData>();
Chris Lattnera15854c2003-08-31 00:45:13 +000069 AU.setPreservesCFG();
70 }
71
Chris Lattnered7b41e2003-05-27 15:45:27 +000072 private:
Chris Lattner39a1c042007-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 Sheng33b0b8d2007-07-06 06:01:16 +000087 /// isMemCpyDst - This is true if this aggregate is memcpy'd into.
Chris Lattner39a1c042007-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 Patelff366852007-07-09 21:19:23 +000095 unsigned SRThreshold;
96
Chris Lattner39a1c042007-05-30 06:11:23 +000097 void MarkUnsafe(AllocaInfo &I) { I.isUnsafe = true; }
98
Chris Lattnerf5990ed2004-11-14 04:24:28 +000099 int isSafeAllocaToScalarRepl(AllocationInst *AI);
Chris Lattner39a1c042007-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 Lattnera10b29b2007-04-25 05:02:56 +0000110 void DoScalarReplacement(AllocationInst *AI,
111 std::vector<AllocationInst*> &WorkList);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000112 void CanonicalizeAllocaUsers(AllocationInst *AI);
Chris Lattnered7b41e2003-05-27 15:45:27 +0000113 AllocaInst *AddNewAlloca(Function &F, const Type *Ty, AllocationInst *Base);
Chris Lattnera1888942005-12-12 07:19:13 +0000114
Chris Lattner8bf99112007-03-19 00:16:43 +0000115 void RewriteBitCastUserOfAlloca(Instruction *BCInst, AllocationInst *AI,
Chris Lattner372dda82007-03-05 07:52:57 +0000116 SmallVector<AllocaInst*, 32> &NewElts);
117
Chris Lattnera1888942005-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 Lattner79b3bd32007-04-25 06:40:51 +0000121 static Instruction *isOnlyCopiedFromConstantGlobal(AllocationInst *AI);
Chris Lattnered7b41e2003-05-27 15:45:27 +0000122 };
123
Devang Patel19974732007-05-03 01:11:54 +0000124 char SROA::ID = 0;
Chris Lattner7f8897f2006-08-27 22:42:52 +0000125 RegisterPass<SROA> X("scalarrepl", "Scalar Replacement of Aggregates");
Chris Lattnered7b41e2003-05-27 15:45:27 +0000126}
127
Brian Gaeked0fde302003-11-11 22:41:34 +0000128// Public interface to the ScalarReplAggregates pass
Devang Patelff366852007-07-09 21:19:23 +0000129FunctionPass *llvm::createScalarReplAggregatesPass(signed int Threshold) {
130 return new SROA(Threshold);
131}
Chris Lattnered7b41e2003-05-27 15:45:27 +0000132
133
Chris Lattnered7b41e2003-05-27 15:45:27 +0000134bool SROA::runOnFunction(Function &F) {
Chris Lattnerfe7ea0d2003-09-12 15:36:03 +0000135 bool Changed = performPromotion(F);
136 while (1) {
137 bool LocalChange = performScalarRepl(F);
138 if (!LocalChange) break; // No need to repromote if no scalarrepl
139 Changed = true;
140 LocalChange = performPromotion(F);
141 if (!LocalChange) break; // No need to re-scalarrepl if no promotion
142 }
Chris Lattner38aec322003-09-11 16:45:55 +0000143
144 return Changed;
145}
146
147
148bool SROA::performPromotion(Function &F) {
149 std::vector<AllocaInst*> Allocas;
Devang Patel326821e2007-06-07 21:57:03 +0000150 DominatorTree &DT = getAnalysis<DominatorTree>();
Chris Lattner43f820d2003-10-05 21:20:13 +0000151 DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
Chris Lattner38aec322003-09-11 16:45:55 +0000152
Chris Lattner02a3be02003-09-20 14:39:18 +0000153 BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
Chris Lattner38aec322003-09-11 16:45:55 +0000154
Chris Lattnerfe7ea0d2003-09-12 15:36:03 +0000155 bool Changed = false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000156
Chris Lattner38aec322003-09-11 16:45:55 +0000157 while (1) {
158 Allocas.clear();
159
160 // Find allocas that are safe to promote, by looking at all instructions in
161 // the entry node
162 for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
163 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca?
Devang Patel41968df2007-04-25 17:15:20 +0000164 if (isAllocaPromotable(AI))
Chris Lattner38aec322003-09-11 16:45:55 +0000165 Allocas.push_back(AI);
166
167 if (Allocas.empty()) break;
168
Devang Patel326821e2007-06-07 21:57:03 +0000169 PromoteMemToReg(Allocas, DT, DF);
Chris Lattner38aec322003-09-11 16:45:55 +0000170 NumPromoted += Allocas.size();
171 Changed = true;
172 }
173
174 return Changed;
175}
176
Chris Lattner38aec322003-09-11 16:45:55 +0000177// performScalarRepl - This algorithm is a simple worklist driven algorithm,
178// which runs on all of the malloc/alloca instructions in the function, removing
179// them if they are only used by getelementptr instructions.
180//
181bool SROA::performScalarRepl(Function &F) {
Chris Lattnered7b41e2003-05-27 15:45:27 +0000182 std::vector<AllocationInst*> WorkList;
183
184 // Scan the entry basic block, adding any alloca's and mallocs to the worklist
Chris Lattner02a3be02003-09-20 14:39:18 +0000185 BasicBlock &BB = F.getEntryBlock();
Chris Lattnered7b41e2003-05-27 15:45:27 +0000186 for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
187 if (AllocationInst *A = dyn_cast<AllocationInst>(I))
188 WorkList.push_back(A);
189
Chris Lattner71394062007-05-24 18:43:04 +0000190 const TargetData &TD = getAnalysis<TargetData>();
191
Chris Lattnered7b41e2003-05-27 15:45:27 +0000192 // Process the worklist
193 bool Changed = false;
194 while (!WorkList.empty()) {
195 AllocationInst *AI = WorkList.back();
196 WorkList.pop_back();
Chris Lattnera1888942005-12-12 07:19:13 +0000197
Chris Lattneradd2bd72006-12-22 23:14:42 +0000198 // Handle dead allocas trivially. These can be formed by SROA'ing arrays
199 // with unused elements.
200 if (AI->use_empty()) {
201 AI->eraseFromParent();
202 continue;
203 }
204
Chris Lattnera1888942005-12-12 07:19:13 +0000205 // If we can turn this aggregate value (potentially with casts) into a
206 // simple scalar value that can be mem2reg'd into a register value.
207 bool IsNotTrivial = false;
208 if (const Type *ActualType = CanConvertToScalar(AI, IsNotTrivial))
Chris Lattnerdf4f2262006-04-20 20:48:50 +0000209 if (IsNotTrivial && ActualType != Type::VoidTy) {
Chris Lattnera1888942005-12-12 07:19:13 +0000210 ConvertToScalar(AI, ActualType);
211 Changed = true;
212 continue;
213 }
Chris Lattnered7b41e2003-05-27 15:45:27 +0000214
Chris Lattner79b3bd32007-04-25 06:40:51 +0000215 // Check to see if we can perform the core SROA transformation. We cannot
216 // transform the allocation instruction if it is an array allocation
217 // (allocations OF arrays are ok though), and an allocation of a scalar
218 // value cannot be decomposed at all.
Chris Lattnera10b29b2007-04-25 05:02:56 +0000219 if (!AI->isArrayAllocation() &&
220 (isa<StructType>(AI->getAllocatedType()) ||
Chris Lattner71394062007-05-24 18:43:04 +0000221 isa<ArrayType>(AI->getAllocatedType())) &&
222 AI->getAllocatedType()->isSized() &&
Duncan Sands3cb36502007-11-04 14:43:57 +0000223 TD.getABITypeSize(AI->getAllocatedType()) < SRThreshold) {
Chris Lattnera10b29b2007-04-25 05:02:56 +0000224 // Check that all of the users of the allocation are capable of being
225 // transformed.
226 switch (isSafeAllocaToScalarRepl(AI)) {
227 default: assert(0 && "Unexpected value!");
228 case 0: // Not safe to scalar replace.
229 break;
230 case 1: // Safe, but requires cleanup/canonicalizations first
231 CanonicalizeAllocaUsers(AI);
232 // FALL THROUGH.
233 case 3: // Safe to scalar replace.
234 DoScalarReplacement(AI, WorkList);
235 Changed = true;
Chris Lattner372dda82007-03-05 07:52:57 +0000236 continue;
237 }
Chris Lattnered7b41e2003-05-27 15:45:27 +0000238 }
Chris Lattner79b3bd32007-04-25 06:40:51 +0000239
240 // Check to see if this allocation is only modified by a memcpy/memmove from
241 // a constant global. If this is the case, we can change all users to use
242 // the constant global instead. This is commonly produced by the CFE by
243 // constructs like "void foo() { int A[] = {1,2,3,4,5,6,7,8,9...}; }" if 'A'
244 // is only subsequently read.
245 if (Instruction *TheCopy = isOnlyCopiedFromConstantGlobal(AI)) {
246 DOUT << "Found alloca equal to global: " << *AI;
247 DOUT << " memcpy = " << *TheCopy;
248 Constant *TheSrc = cast<Constant>(TheCopy->getOperand(2));
249 AI->replaceAllUsesWith(ConstantExpr::getBitCast(TheSrc, AI->getType()));
250 TheCopy->eraseFromParent(); // Don't mutate the global.
251 AI->eraseFromParent();
252 ++NumGlobals;
253 Changed = true;
254 continue;
255 }
Chris Lattnera10b29b2007-04-25 05:02:56 +0000256
257 // Otherwise, couldn't process this.
Chris Lattnered7b41e2003-05-27 15:45:27 +0000258 }
259
260 return Changed;
261}
Chris Lattner5e062a12003-05-30 04:15:41 +0000262
Chris Lattnera10b29b2007-04-25 05:02:56 +0000263/// DoScalarReplacement - This alloca satisfied the isSafeAllocaToScalarRepl
264/// predicate, do SROA now.
265void SROA::DoScalarReplacement(AllocationInst *AI,
266 std::vector<AllocationInst*> &WorkList) {
Chris Lattner79b3bd32007-04-25 06:40:51 +0000267 DOUT << "Found inst to SROA: " << *AI;
Chris Lattnera10b29b2007-04-25 05:02:56 +0000268 SmallVector<AllocaInst*, 32> ElementAllocas;
269 if (const StructType *ST = dyn_cast<StructType>(AI->getAllocatedType())) {
270 ElementAllocas.reserve(ST->getNumContainedTypes());
271 for (unsigned i = 0, e = ST->getNumContainedTypes(); i != e; ++i) {
272 AllocaInst *NA = new AllocaInst(ST->getContainedType(i), 0,
273 AI->getAlignment(),
274 AI->getName() + "." + utostr(i), AI);
275 ElementAllocas.push_back(NA);
276 WorkList.push_back(NA); // Add to worklist for recursive processing
277 }
278 } else {
279 const ArrayType *AT = cast<ArrayType>(AI->getAllocatedType());
280 ElementAllocas.reserve(AT->getNumElements());
281 const Type *ElTy = AT->getElementType();
282 for (unsigned i = 0, e = AT->getNumElements(); i != e; ++i) {
283 AllocaInst *NA = new AllocaInst(ElTy, 0, AI->getAlignment(),
284 AI->getName() + "." + utostr(i), AI);
285 ElementAllocas.push_back(NA);
286 WorkList.push_back(NA); // Add to worklist for recursive processing
287 }
288 }
289
290 // Now that we have created the alloca instructions that we want to use,
291 // expand the getelementptr instructions to use them.
292 //
293 while (!AI->use_empty()) {
294 Instruction *User = cast<Instruction>(AI->use_back());
295 if (BitCastInst *BCInst = dyn_cast<BitCastInst>(User)) {
296 RewriteBitCastUserOfAlloca(BCInst, AI, ElementAllocas);
297 BCInst->eraseFromParent();
298 continue;
299 }
300
301 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(User);
302 // We now know that the GEP is of the form: GEP <ptr>, 0, <cst>
303 unsigned Idx =
304 (unsigned)cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
305
306 assert(Idx < ElementAllocas.size() && "Index out of range?");
307 AllocaInst *AllocaToUse = ElementAllocas[Idx];
308
309 Value *RepValue;
310 if (GEPI->getNumOperands() == 3) {
311 // Do not insert a new getelementptr instruction with zero indices, only
312 // to have it optimized out later.
313 RepValue = AllocaToUse;
314 } else {
315 // We are indexing deeply into the structure, so we still need a
316 // getelement ptr instruction to finish the indexing. This may be
317 // expanded itself once the worklist is rerun.
318 //
319 SmallVector<Value*, 8> NewArgs;
320 NewArgs.push_back(Constant::getNullValue(Type::Int32Ty));
321 NewArgs.append(GEPI->op_begin()+3, GEPI->op_end());
David Greeneb8f74792007-09-04 15:46:09 +0000322 RepValue = new GetElementPtrInst(AllocaToUse, NewArgs.begin(),
323 NewArgs.end(), "", GEPI);
Chris Lattnera10b29b2007-04-25 05:02:56 +0000324 RepValue->takeName(GEPI);
325 }
326
327 // If this GEP is to the start of the aggregate, check for memcpys.
328 if (Idx == 0) {
329 bool IsStartOfAggregateGEP = true;
330 for (unsigned i = 3, e = GEPI->getNumOperands(); i != e; ++i) {
331 if (!isa<ConstantInt>(GEPI->getOperand(i))) {
332 IsStartOfAggregateGEP = false;
333 break;
334 }
335 if (!cast<ConstantInt>(GEPI->getOperand(i))->isZero()) {
336 IsStartOfAggregateGEP = false;
337 break;
338 }
339 }
340
341 if (IsStartOfAggregateGEP)
342 RewriteBitCastUserOfAlloca(GEPI, AI, ElementAllocas);
343 }
344
345
346 // Move all of the users over to the new GEP.
347 GEPI->replaceAllUsesWith(RepValue);
348 // Delete the old GEP
349 GEPI->eraseFromParent();
350 }
351
352 // Finally, delete the Alloca instruction
353 AI->eraseFromParent();
354 NumReplaced++;
355}
356
Chris Lattner5e062a12003-05-30 04:15:41 +0000357
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000358/// isSafeElementUse - Check to see if this use is an allowed use for a
Chris Lattner8bf99112007-03-19 00:16:43 +0000359/// getelementptr instruction of an array aggregate allocation. isFirstElt
360/// indicates whether Ptr is known to the start of the aggregate.
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000361///
Chris Lattner39a1c042007-05-30 06:11:23 +0000362void SROA::isSafeElementUse(Value *Ptr, bool isFirstElt, AllocationInst *AI,
363 AllocaInfo &Info) {
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000364 for (Value::use_iterator I = Ptr->use_begin(), E = Ptr->use_end();
365 I != E; ++I) {
366 Instruction *User = cast<Instruction>(*I);
367 switch (User->getOpcode()) {
368 case Instruction::Load: break;
369 case Instruction::Store:
370 // Store is ok if storing INTO the pointer, not storing the pointer
Chris Lattner39a1c042007-05-30 06:11:23 +0000371 if (User->getOperand(0) == Ptr) return MarkUnsafe(Info);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000372 break;
373 case Instruction::GetElementPtr: {
374 GetElementPtrInst *GEP = cast<GetElementPtrInst>(User);
Chris Lattner8bf99112007-03-19 00:16:43 +0000375 bool AreAllZeroIndices = isFirstElt;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000376 if (GEP->getNumOperands() > 1) {
Chris Lattner8bf99112007-03-19 00:16:43 +0000377 if (!isa<ConstantInt>(GEP->getOperand(1)) ||
378 !cast<ConstantInt>(GEP->getOperand(1))->isZero())
Chris Lattner39a1c042007-05-30 06:11:23 +0000379 // Using pointer arithmetic to navigate the array.
380 return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000381
382 if (AreAllZeroIndices) {
383 for (unsigned i = 2, e = GEP->getNumOperands(); i != e; ++i) {
384 if (!isa<ConstantInt>(GEP->getOperand(i)) ||
385 !cast<ConstantInt>(GEP->getOperand(i))->isZero()) {
386 AreAllZeroIndices = false;
387 break;
388 }
389 }
390 }
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000391 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000392 isSafeElementUse(GEP, AreAllZeroIndices, AI, Info);
393 if (Info.isUnsafe) return;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000394 break;
395 }
Chris Lattner8bf99112007-03-19 00:16:43 +0000396 case Instruction::BitCast:
Chris Lattner39a1c042007-05-30 06:11:23 +0000397 if (isFirstElt) {
398 isSafeUseOfBitCastedAllocation(cast<BitCastInst>(User), AI, Info);
399 if (Info.isUnsafe) return;
Chris Lattner8bf99112007-03-19 00:16:43 +0000400 break;
Chris Lattner8bf99112007-03-19 00:16:43 +0000401 }
402 DOUT << " Transformation preventing inst: " << *User;
Chris Lattner39a1c042007-05-30 06:11:23 +0000403 return MarkUnsafe(Info);
404 case Instruction::Call:
405 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(User)) {
406 if (isFirstElt) {
407 isSafeMemIntrinsicOnAllocation(MI, AI, I.getOperandNo(), Info);
408 if (Info.isUnsafe) return;
409 break;
410 }
411 }
412 DOUT << " Transformation preventing inst: " << *User;
413 return MarkUnsafe(Info);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000414 default:
Bill Wendlingb7427032006-11-26 09:46:52 +0000415 DOUT << " Transformation preventing inst: " << *User;
Chris Lattner39a1c042007-05-30 06:11:23 +0000416 return MarkUnsafe(Info);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000417 }
418 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000419 return; // All users look ok :)
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000420}
421
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000422/// AllUsersAreLoads - Return true if all users of this value are loads.
423static bool AllUsersAreLoads(Value *Ptr) {
424 for (Value::use_iterator I = Ptr->use_begin(), E = Ptr->use_end();
425 I != E; ++I)
426 if (cast<Instruction>(*I)->getOpcode() != Instruction::Load)
427 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000428 return true;
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000429}
430
Chris Lattner5e062a12003-05-30 04:15:41 +0000431/// isSafeUseOfAllocation - Check to see if this user is an allowed use for an
432/// aggregate allocation.
433///
Chris Lattner39a1c042007-05-30 06:11:23 +0000434void SROA::isSafeUseOfAllocation(Instruction *User, AllocationInst *AI,
435 AllocaInfo &Info) {
Chris Lattner372dda82007-03-05 07:52:57 +0000436 if (BitCastInst *C = dyn_cast<BitCastInst>(User))
Chris Lattner39a1c042007-05-30 06:11:23 +0000437 return isSafeUseOfBitCastedAllocation(C, AI, Info);
Chris Lattnerbe883a22003-11-25 21:09:18 +0000438
Chris Lattner39a1c042007-05-30 06:11:23 +0000439 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(User);
440 if (GEPI == 0)
441 return MarkUnsafe(Info);
442
Chris Lattnerbe883a22003-11-25 21:09:18 +0000443 gep_type_iterator I = gep_type_begin(GEPI), E = gep_type_end(GEPI);
444
Chris Lattner25de4862006-03-08 01:05:29 +0000445 // The GEP is not safe to transform if not of the form "GEP <ptr>, 0, <cst>".
Chris Lattnerbe883a22003-11-25 21:09:18 +0000446 if (I == E ||
Chris Lattner39a1c042007-05-30 06:11:23 +0000447 I.getOperand() != Constant::getNullValue(I.getOperand()->getType())) {
448 return MarkUnsafe(Info);
449 }
Chris Lattnerbe883a22003-11-25 21:09:18 +0000450
451 ++I;
Chris Lattner39a1c042007-05-30 06:11:23 +0000452 if (I == E) return MarkUnsafe(Info); // ran out of GEP indices??
Chris Lattnerbe883a22003-11-25 21:09:18 +0000453
Chris Lattner8bf99112007-03-19 00:16:43 +0000454 bool IsAllZeroIndices = true;
455
Chris Lattnerbe883a22003-11-25 21:09:18 +0000456 // If this is a use of an array allocation, do a bit more checking for sanity.
457 if (const ArrayType *AT = dyn_cast<ArrayType>(*I)) {
458 uint64_t NumElements = AT->getNumElements();
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000459
Chris Lattner8bf99112007-03-19 00:16:43 +0000460 if (ConstantInt *Idx = dyn_cast<ConstantInt>(I.getOperand())) {
461 IsAllZeroIndices &= Idx->isZero();
462
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000463 // Check to make sure that index falls within the array. If not,
464 // something funny is going on, so we won't do the optimization.
465 //
Chris Lattner8bf99112007-03-19 00:16:43 +0000466 if (Idx->getZExtValue() >= NumElements)
Chris Lattner39a1c042007-05-30 06:11:23 +0000467 return MarkUnsafe(Info);
Misha Brukmanfd939082005-04-21 23:48:37 +0000468
Chris Lattner25de4862006-03-08 01:05:29 +0000469 // We cannot scalar repl this level of the array unless any array
470 // sub-indices are in-range constants. In particular, consider:
471 // A[0][i]. We cannot know that the user isn't doing invalid things like
472 // allowing i to index an out-of-range subscript that accesses A[1].
473 //
474 // Scalar replacing *just* the outer index of the array is probably not
475 // going to be a win anyway, so just give up.
Reid Spencer9d6565a2007-02-15 02:26:10 +0000476 for (++I; I != E && (isa<ArrayType>(*I) || isa<VectorType>(*I)); ++I) {
Chris Lattnerd9251502006-11-07 22:42:47 +0000477 uint64_t NumElements;
478 if (const ArrayType *SubArrayTy = dyn_cast<ArrayType>(*I))
479 NumElements = SubArrayTy->getNumElements();
480 else
Reid Spencer9d6565a2007-02-15 02:26:10 +0000481 NumElements = cast<VectorType>(*I)->getNumElements();
Chris Lattnerd9251502006-11-07 22:42:47 +0000482
Chris Lattner8bf99112007-03-19 00:16:43 +0000483 ConstantInt *IdxVal = dyn_cast<ConstantInt>(I.getOperand());
Chris Lattner39a1c042007-05-30 06:11:23 +0000484 if (!IdxVal) return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000485 if (IdxVal->getZExtValue() >= NumElements)
Chris Lattner39a1c042007-05-30 06:11:23 +0000486 return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000487 IsAllZeroIndices &= IdxVal->isZero();
Chris Lattner25de4862006-03-08 01:05:29 +0000488 }
489
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000490 } else {
Chris Lattner8bf99112007-03-19 00:16:43 +0000491 IsAllZeroIndices = 0;
492
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000493 // If this is an array index and the index is not constant, we cannot
494 // promote... that is unless the array has exactly one or two elements in
495 // it, in which case we CAN promote it, but we have to canonicalize this
496 // out if this is the only problem.
Chris Lattner25de4862006-03-08 01:05:29 +0000497 if ((NumElements == 1 || NumElements == 2) &&
Chris Lattner39a1c042007-05-30 06:11:23 +0000498 AllUsersAreLoads(GEPI)) {
499 Info.needsCanon = true;
500 return; // Canonicalization required!
501 }
502 return MarkUnsafe(Info);
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000503 }
Chris Lattner5e062a12003-05-30 04:15:41 +0000504 }
Chris Lattnerbe883a22003-11-25 21:09:18 +0000505
506 // If there are any non-simple uses of this getelementptr, make sure to reject
507 // them.
Chris Lattner39a1c042007-05-30 06:11:23 +0000508 return isSafeElementUse(GEPI, IsAllZeroIndices, AI, Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000509}
510
511/// isSafeMemIntrinsicOnAllocation - Return true if the specified memory
512/// intrinsic can be promoted by SROA. At this point, we know that the operand
513/// of the memintrinsic is a pointer to the beginning of the allocation.
Chris Lattner39a1c042007-05-30 06:11:23 +0000514void SROA::isSafeMemIntrinsicOnAllocation(MemIntrinsic *MI, AllocationInst *AI,
515 unsigned OpNo, AllocaInfo &Info) {
Chris Lattner8bf99112007-03-19 00:16:43 +0000516 // If not constant length, give up.
517 ConstantInt *Length = dyn_cast<ConstantInt>(MI->getLength());
Chris Lattner39a1c042007-05-30 06:11:23 +0000518 if (!Length) return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000519
520 // If not the whole aggregate, give up.
521 const TargetData &TD = getAnalysis<TargetData>();
Duncan Sands3cb36502007-11-04 14:43:57 +0000522 if (Length->getZExtValue() !=
523 TD.getABITypeSize(AI->getType()->getElementType()))
Chris Lattner39a1c042007-05-30 06:11:23 +0000524 return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000525
526 // We only know about memcpy/memset/memmove.
527 if (!isa<MemCpyInst>(MI) && !isa<MemSetInst>(MI) && !isa<MemMoveInst>(MI))
Chris Lattner39a1c042007-05-30 06:11:23 +0000528 return MarkUnsafe(Info);
529
530 // Otherwise, we can transform it. Determine whether this is a memcpy/set
531 // into or out of the aggregate.
532 if (OpNo == 1)
533 Info.isMemCpyDst = true;
534 else {
535 assert(OpNo == 2);
536 Info.isMemCpySrc = true;
537 }
Chris Lattner5e062a12003-05-30 04:15:41 +0000538}
539
Chris Lattner372dda82007-03-05 07:52:57 +0000540/// isSafeUseOfBitCastedAllocation - Return true if all users of this bitcast
541/// are
Chris Lattner39a1c042007-05-30 06:11:23 +0000542void SROA::isSafeUseOfBitCastedAllocation(BitCastInst *BC, AllocationInst *AI,
543 AllocaInfo &Info) {
Chris Lattner372dda82007-03-05 07:52:57 +0000544 for (Value::use_iterator UI = BC->use_begin(), E = BC->use_end();
545 UI != E; ++UI) {
546 if (BitCastInst *BCU = dyn_cast<BitCastInst>(UI)) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000547 isSafeUseOfBitCastedAllocation(BCU, AI, Info);
Chris Lattner372dda82007-03-05 07:52:57 +0000548 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(UI)) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000549 isSafeMemIntrinsicOnAllocation(MI, AI, UI.getOperandNo(), Info);
Chris Lattner372dda82007-03-05 07:52:57 +0000550 } else {
Chris Lattner39a1c042007-05-30 06:11:23 +0000551 return MarkUnsafe(Info);
Chris Lattner372dda82007-03-05 07:52:57 +0000552 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000553 if (Info.isUnsafe) return;
Chris Lattner372dda82007-03-05 07:52:57 +0000554 }
Chris Lattner372dda82007-03-05 07:52:57 +0000555}
556
Chris Lattner8bf99112007-03-19 00:16:43 +0000557/// RewriteBitCastUserOfAlloca - BCInst (transitively) bitcasts AI, or indexes
558/// to its first element. Transform users of the cast to use the new values
559/// instead.
560void SROA::RewriteBitCastUserOfAlloca(Instruction *BCInst, AllocationInst *AI,
Chris Lattner372dda82007-03-05 07:52:57 +0000561 SmallVector<AllocaInst*, 32> &NewElts) {
562 Constant *Zero = Constant::getNullValue(Type::Int32Ty);
563 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattner8bf99112007-03-19 00:16:43 +0000564
565 Value::use_iterator UI = BCInst->use_begin(), UE = BCInst->use_end();
566 while (UI != UE) {
567 if (BitCastInst *BCU = dyn_cast<BitCastInst>(*UI)) {
Chris Lattner372dda82007-03-05 07:52:57 +0000568 RewriteBitCastUserOfAlloca(BCU, AI, NewElts);
Chris Lattner8bf99112007-03-19 00:16:43 +0000569 ++UI;
570 BCU->eraseFromParent();
Chris Lattner372dda82007-03-05 07:52:57 +0000571 continue;
572 }
573
574 // Otherwise, must be memcpy/memmove/memset of the entire aggregate. Split
575 // into one per element.
Chris Lattner8bf99112007-03-19 00:16:43 +0000576 MemIntrinsic *MI = dyn_cast<MemIntrinsic>(*UI);
577
578 // If it's not a mem intrinsic, it must be some other user of a gep of the
579 // first pointer. Just leave these alone.
580 if (!MI) {
581 ++UI;
582 continue;
583 }
Chris Lattner372dda82007-03-05 07:52:57 +0000584
585 // If this is a memcpy/memmove, construct the other pointer as the
586 // appropriate type.
587 Value *OtherPtr = 0;
588 if (MemCpyInst *MCI = dyn_cast<MemCpyInst>(MI)) {
589 if (BCInst == MCI->getRawDest())
590 OtherPtr = MCI->getRawSource();
591 else {
592 assert(BCInst == MCI->getRawSource());
593 OtherPtr = MCI->getRawDest();
594 }
595 } else if (MemMoveInst *MMI = dyn_cast<MemMoveInst>(MI)) {
596 if (BCInst == MMI->getRawDest())
597 OtherPtr = MMI->getRawSource();
598 else {
599 assert(BCInst == MMI->getRawSource());
600 OtherPtr = MMI->getRawDest();
601 }
602 }
603
604 // If there is an other pointer, we want to convert it to the same pointer
605 // type as AI has, so we can GEP through it.
606 if (OtherPtr) {
607 // It is likely that OtherPtr is a bitcast, if so, remove it.
608 if (BitCastInst *BC = dyn_cast<BitCastInst>(OtherPtr))
609 OtherPtr = BC->getOperand(0);
610 if (ConstantExpr *BCE = dyn_cast<ConstantExpr>(OtherPtr))
611 if (BCE->getOpcode() == Instruction::BitCast)
612 OtherPtr = BCE->getOperand(0);
613
614 // If the pointer is not the right type, insert a bitcast to the right
615 // type.
616 if (OtherPtr->getType() != AI->getType())
617 OtherPtr = new BitCastInst(OtherPtr, AI->getType(), OtherPtr->getName(),
618 MI);
619 }
620
621 // Process each element of the aggregate.
622 Value *TheFn = MI->getOperand(0);
623 const Type *BytePtrTy = MI->getRawDest()->getType();
624 bool SROADest = MI->getRawDest() == BCInst;
625
626 for (unsigned i = 0, e = NewElts.size(); i != e; ++i) {
627 // If this is a memcpy/memmove, emit a GEP of the other element address.
628 Value *OtherElt = 0;
629 if (OtherPtr) {
David Greeneb8f74792007-09-04 15:46:09 +0000630 Value *Idx[2];
631 Idx[0] = Zero;
632 Idx[1] = ConstantInt::get(Type::Int32Ty, i);
633 OtherElt = new GetElementPtrInst(OtherPtr, Idx, Idx + 2,
Chris Lattner372dda82007-03-05 07:52:57 +0000634 OtherPtr->getNameStr()+"."+utostr(i),
635 MI);
Chris Lattner372dda82007-03-05 07:52:57 +0000636 }
637
638 Value *EltPtr = NewElts[i];
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000639 const Type *EltTy =cast<PointerType>(EltPtr->getType())->getElementType();
640
641 // If we got down to a scalar, insert a load or store as appropriate.
642 if (EltTy->isFirstClassType()) {
643 if (isa<MemCpyInst>(MI) || isa<MemMoveInst>(MI)) {
644 Value *Elt = new LoadInst(SROADest ? OtherElt : EltPtr, "tmp",
645 MI);
646 new StoreInst(Elt, SROADest ? EltPtr : OtherElt, MI);
647 continue;
648 } else {
649 assert(isa<MemSetInst>(MI));
650
651 // If the stored element is zero (common case), just store a null
652 // constant.
653 Constant *StoreVal;
654 if (ConstantInt *CI = dyn_cast<ConstantInt>(MI->getOperand(2))) {
655 if (CI->isZero()) {
656 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0>
657 } else {
Dan Gohman07a96762007-07-16 14:29:03 +0000658 // If EltTy is a vector type, get the element type.
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000659 const Type *ValTy = EltTy;
660 if (const VectorType *VTy = dyn_cast<VectorType>(ValTy))
661 ValTy = VTy->getElementType();
Duncan Sands3cb36502007-11-04 14:43:57 +0000662
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000663 // Construct an integer with the right value.
Duncan Sands3cb36502007-11-04 14:43:57 +0000664 unsigned EltSize = TD.getTypeSizeInBits(ValTy);
665 APInt OneVal(EltSize, CI->getZExtValue());
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000666 APInt TotalVal(OneVal);
667 // Set each byte.
Duncan Sands3cb36502007-11-04 14:43:57 +0000668 for (unsigned i = 0; 8*i < EltSize; ++i) {
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000669 TotalVal = TotalVal.shl(8);
670 TotalVal |= OneVal;
671 }
Duncan Sands3cb36502007-11-04 14:43:57 +0000672
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000673 // Convert the integer value to the appropriate type.
674 StoreVal = ConstantInt::get(TotalVal);
675 if (isa<PointerType>(ValTy))
676 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
677 else if (ValTy->isFloatingPoint())
678 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
679 assert(StoreVal->getType() == ValTy && "Type mismatch!");
680
681 // If the requested value was a vector constant, create it.
682 if (EltTy != ValTy) {
683 unsigned NumElts = cast<VectorType>(ValTy)->getNumElements();
684 SmallVector<Constant*, 16> Elts(NumElts, StoreVal);
685 StoreVal = ConstantVector::get(&Elts[0], NumElts);
686 }
687 }
688 new StoreInst(StoreVal, EltPtr, MI);
689 continue;
690 }
691 // Otherwise, if we're storing a byte variable, use a memset call for
692 // this element.
693 }
694 }
Chris Lattner372dda82007-03-05 07:52:57 +0000695
696 // Cast the element pointer to BytePtrTy.
697 if (EltPtr->getType() != BytePtrTy)
698 EltPtr = new BitCastInst(EltPtr, BytePtrTy, EltPtr->getNameStr(), MI);
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000699
700 // Cast the other pointer (if we have one) to BytePtrTy.
701 if (OtherElt && OtherElt->getType() != BytePtrTy)
702 OtherElt = new BitCastInst(OtherElt, BytePtrTy,OtherElt->getNameStr(),
703 MI);
704
Duncan Sands3cb36502007-11-04 14:43:57 +0000705 unsigned EltSize = TD.getABITypeSize(EltTy);
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000706
Chris Lattner372dda82007-03-05 07:52:57 +0000707 // Finally, insert the meminst for this element.
708 if (isa<MemCpyInst>(MI) || isa<MemMoveInst>(MI)) {
709 Value *Ops[] = {
710 SROADest ? EltPtr : OtherElt, // Dest ptr
711 SROADest ? OtherElt : EltPtr, // Src ptr
712 ConstantInt::get(MI->getOperand(3)->getType(), EltSize), // Size
713 Zero // Align
714 };
David Greene52eec542007-08-01 03:43:44 +0000715 new CallInst(TheFn, Ops, Ops + 4, "", MI);
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000716 } else {
717 assert(isa<MemSetInst>(MI));
Chris Lattner372dda82007-03-05 07:52:57 +0000718 Value *Ops[] = {
719 EltPtr, MI->getOperand(2), // Dest, Value,
720 ConstantInt::get(MI->getOperand(3)->getType(), EltSize), // Size
721 Zero // Align
722 };
David Greene52eec542007-08-01 03:43:44 +0000723 new CallInst(TheFn, Ops, Ops + 4, "", MI);
Chris Lattner372dda82007-03-05 07:52:57 +0000724 }
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000725 }
Chris Lattner372dda82007-03-05 07:52:57 +0000726
727 // Finally, MI is now dead, as we've modified its actions to occur on all of
728 // the elements of the aggregate.
Chris Lattner8bf99112007-03-19 00:16:43 +0000729 ++UI;
Chris Lattner372dda82007-03-05 07:52:57 +0000730 MI->eraseFromParent();
731 }
Chris Lattner372dda82007-03-05 07:52:57 +0000732}
733
Duncan Sands3cb36502007-11-04 14:43:57 +0000734/// HasPadding - Return true if the specified type has any structure or
735/// alignment padding, false otherwise.
Duncan Sands18b0ca82007-11-05 00:35:07 +0000736static bool HasPadding(const Type *Ty, const TargetData &TD,
737 bool inPacked = false) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000738 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
739 const StructLayout *SL = TD.getStructLayout(STy);
740 unsigned PrevFieldBitOffset = 0;
741 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Duncan Sands3cb36502007-11-04 14:43:57 +0000742 unsigned FieldBitOffset = SL->getElementOffsetInBits(i);
743
Chris Lattner39a1c042007-05-30 06:11:23 +0000744 // Padding in sub-elements?
Duncan Sands18b0ca82007-11-05 00:35:07 +0000745 if (HasPadding(STy->getElementType(i), TD, STy->isPacked()))
Chris Lattner39a1c042007-05-30 06:11:23 +0000746 return true;
Duncan Sands3cb36502007-11-04 14:43:57 +0000747
Chris Lattner39a1c042007-05-30 06:11:23 +0000748 // Check to see if there is any padding between this element and the
749 // previous one.
750 if (i) {
Duncan Sands3cb36502007-11-04 14:43:57 +0000751 unsigned PrevFieldEnd =
Chris Lattner39a1c042007-05-30 06:11:23 +0000752 PrevFieldBitOffset+TD.getTypeSizeInBits(STy->getElementType(i-1));
753 if (PrevFieldEnd < FieldBitOffset)
754 return true;
755 }
Duncan Sands3cb36502007-11-04 14:43:57 +0000756
Chris Lattner39a1c042007-05-30 06:11:23 +0000757 PrevFieldBitOffset = FieldBitOffset;
758 }
Duncan Sands3cb36502007-11-04 14:43:57 +0000759
Chris Lattner39a1c042007-05-30 06:11:23 +0000760 // Check for tail padding.
761 if (unsigned EltCount = STy->getNumElements()) {
762 unsigned PrevFieldEnd = PrevFieldBitOffset +
763 TD.getTypeSizeInBits(STy->getElementType(EltCount-1));
Duncan Sands3cb36502007-11-04 14:43:57 +0000764 if (PrevFieldEnd < SL->getSizeInBits())
Chris Lattner39a1c042007-05-30 06:11:23 +0000765 return true;
766 }
767
768 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Duncan Sands18b0ca82007-11-05 00:35:07 +0000769 return HasPadding(ATy->getElementType(), TD, false);
Duncan Sands3cb36502007-11-04 14:43:57 +0000770 } else if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Duncan Sands18b0ca82007-11-05 00:35:07 +0000771 return HasPadding(VTy->getElementType(), TD, false);
Chris Lattner39a1c042007-05-30 06:11:23 +0000772 }
Duncan Sands18b0ca82007-11-05 00:35:07 +0000773 return inPacked ?
774 false : TD.getTypeSizeInBits(Ty) != TD.getABITypeSizeInBits(Ty);
Chris Lattner39a1c042007-05-30 06:11:23 +0000775}
Chris Lattner372dda82007-03-05 07:52:57 +0000776
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000777/// isSafeStructAllocaToScalarRepl - Check to see if the specified allocation of
778/// an aggregate can be broken down into elements. Return 0 if not, 3 if safe,
779/// or 1 if safe after canonicalization has been performed.
Chris Lattner5e062a12003-05-30 04:15:41 +0000780///
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000781int SROA::isSafeAllocaToScalarRepl(AllocationInst *AI) {
Chris Lattner5e062a12003-05-30 04:15:41 +0000782 // Loop over the use list of the alloca. We can only transform it if all of
783 // the users are safe to transform.
Chris Lattner39a1c042007-05-30 06:11:23 +0000784 AllocaInfo Info;
785
Chris Lattner5e062a12003-05-30 04:15:41 +0000786 for (Value::use_iterator I = AI->use_begin(), E = AI->use_end();
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000787 I != E; ++I) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000788 isSafeUseOfAllocation(cast<Instruction>(*I), AI, Info);
789 if (Info.isUnsafe) {
Bill Wendlingb7427032006-11-26 09:46:52 +0000790 DOUT << "Cannot transform: " << *AI << " due to user: " << **I;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000791 return 0;
Chris Lattner5e062a12003-05-30 04:15:41 +0000792 }
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000793 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000794
795 // Okay, we know all the users are promotable. If the aggregate is a memcpy
796 // source and destination, we have to be careful. In particular, the memcpy
797 // could be moving around elements that live in structure padding of the LLVM
798 // types, but may actually be used. In these cases, we refuse to promote the
799 // struct.
800 if (Info.isMemCpySrc && Info.isMemCpyDst &&
Duncan Sands3cb36502007-11-04 14:43:57 +0000801 HasPadding(AI->getType()->getElementType(), getAnalysis<TargetData>()))
Chris Lattner39a1c042007-05-30 06:11:23 +0000802 return 0;
Duncan Sands3cb36502007-11-04 14:43:57 +0000803
Chris Lattner39a1c042007-05-30 06:11:23 +0000804 // If we require cleanup, return 1, otherwise return 3.
805 return Info.needsCanon ? 1 : 3;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000806}
807
808/// CanonicalizeAllocaUsers - If SROA reported that it can promote the specified
809/// allocation, but only if cleaned up, perform the cleanups required.
810void SROA::CanonicalizeAllocaUsers(AllocationInst *AI) {
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000811 // At this point, we know that the end result will be SROA'd and promoted, so
812 // we can insert ugly code if required so long as sroa+mem2reg will clean it
813 // up.
814 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
815 UI != E; ) {
Chris Lattnera9d1a842007-03-19 18:25:57 +0000816 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(*UI++);
817 if (!GEPI) continue;
Reid Spencer96326f92004-11-15 17:29:41 +0000818 gep_type_iterator I = gep_type_begin(GEPI);
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000819 ++I;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000820
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000821 if (const ArrayType *AT = dyn_cast<ArrayType>(*I)) {
822 uint64_t NumElements = AT->getNumElements();
Misha Brukmanfd939082005-04-21 23:48:37 +0000823
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000824 if (!isa<ConstantInt>(I.getOperand())) {
825 if (NumElements == 1) {
Reid Spencerc5b206b2006-12-31 05:48:39 +0000826 GEPI->setOperand(2, Constant::getNullValue(Type::Int32Ty));
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000827 } else {
828 assert(NumElements == 2 && "Unhandled case!");
829 // All users of the GEP must be loads. At each use of the GEP, insert
830 // two loads of the appropriate indexed GEP and select between them.
Reid Spencere4d87aa2006-12-23 06:05:41 +0000831 Value *IsOne = new ICmpInst(ICmpInst::ICMP_NE, I.getOperand(),
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000832 Constant::getNullValue(I.getOperand()->getType()),
Reid Spencere4d87aa2006-12-23 06:05:41 +0000833 "isone", GEPI);
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000834 // Insert the new GEP instructions, which are properly indexed.
Chris Lattner1ccd1852007-02-12 22:56:41 +0000835 SmallVector<Value*, 8> Indices(GEPI->op_begin()+1, GEPI->op_end());
Reid Spencerc5b206b2006-12-31 05:48:39 +0000836 Indices[1] = Constant::getNullValue(Type::Int32Ty);
Chris Lattner1ccd1852007-02-12 22:56:41 +0000837 Value *ZeroIdx = new GetElementPtrInst(GEPI->getOperand(0),
David Greeneb8f74792007-09-04 15:46:09 +0000838 Indices.begin(),
839 Indices.end(),
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000840 GEPI->getName()+".0", GEPI);
Reid Spencerc5b206b2006-12-31 05:48:39 +0000841 Indices[1] = ConstantInt::get(Type::Int32Ty, 1);
Chris Lattner1ccd1852007-02-12 22:56:41 +0000842 Value *OneIdx = new GetElementPtrInst(GEPI->getOperand(0),
David Greeneb8f74792007-09-04 15:46:09 +0000843 Indices.begin(),
844 Indices.end(),
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000845 GEPI->getName()+".1", GEPI);
846 // Replace all loads of the variable index GEP with loads from both
847 // indexes and a select.
848 while (!GEPI->use_empty()) {
849 LoadInst *LI = cast<LoadInst>(GEPI->use_back());
850 Value *Zero = new LoadInst(ZeroIdx, LI->getName()+".0", LI);
851 Value *One = new LoadInst(OneIdx , LI->getName()+".1", LI);
852 Value *R = new SelectInst(IsOne, One, Zero, LI->getName(), LI);
853 LI->replaceAllUsesWith(R);
854 LI->eraseFromParent();
855 }
856 GEPI->eraseFromParent();
857 }
858 }
859 }
860 }
Chris Lattner5e062a12003-05-30 04:15:41 +0000861}
Chris Lattnera1888942005-12-12 07:19:13 +0000862
863/// MergeInType - Add the 'In' type to the accumulated type so far. If the
864/// types are incompatible, return true, otherwise update Accum and return
865/// false.
Chris Lattnerde6df882006-04-14 21:42:41 +0000866///
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000867/// There are three cases we handle here:
868/// 1) An effectively-integer union, where the pieces are stored into as
Chris Lattnerde6df882006-04-14 21:42:41 +0000869/// smaller integers (common with byte swap and other idioms).
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000870/// 2) A union of vector types of the same size and potentially its elements.
871/// Here we turn element accesses into insert/extract element operations.
872/// 3) A union of scalar types, such as int/float or int/pointer. Here we
873/// merge together into integers, allowing the xform to work with #1 as
874/// well.
Chris Lattner5b121cc2006-10-08 23:28:04 +0000875static bool MergeInType(const Type *In, const Type *&Accum,
876 const TargetData &TD) {
Chris Lattnera1888942005-12-12 07:19:13 +0000877 // If this is our first type, just use it.
Reid Spencer9d6565a2007-02-15 02:26:10 +0000878 const VectorType *PTy;
Chris Lattnerde6df882006-04-14 21:42:41 +0000879 if (Accum == Type::VoidTy || In == Accum) {
Chris Lattnera1888942005-12-12 07:19:13 +0000880 Accum = In;
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000881 } else if (In == Type::VoidTy) {
882 // Noop.
Chris Lattner42a75512007-01-15 02:27:26 +0000883 } else if (In->isInteger() && Accum->isInteger()) { // integer union.
Chris Lattnera1888942005-12-12 07:19:13 +0000884 // Otherwise pick whichever type is larger.
Reid Spencera54b7cb2007-01-12 07:05:14 +0000885 if (cast<IntegerType>(In)->getBitWidth() >
886 cast<IntegerType>(Accum)->getBitWidth())
Chris Lattnera1888942005-12-12 07:19:13 +0000887 Accum = In;
Chris Lattner5b121cc2006-10-08 23:28:04 +0000888 } else if (isa<PointerType>(In) && isa<PointerType>(Accum)) {
Chris Lattnerc8363332006-10-08 23:53:04 +0000889 // Pointer unions just stay as one of the pointers.
Reid Spencer9d6565a2007-02-15 02:26:10 +0000890 } else if (isa<VectorType>(In) || isa<VectorType>(Accum)) {
891 if ((PTy = dyn_cast<VectorType>(Accum)) &&
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000892 PTy->getElementType() == In) {
893 // Accum is a vector, and we are accessing an element: ok.
Reid Spencer9d6565a2007-02-15 02:26:10 +0000894 } else if ((PTy = dyn_cast<VectorType>(In)) &&
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000895 PTy->getElementType() == Accum) {
896 // In is a vector, and accum is an element: ok, remember In.
897 Accum = In;
Reid Spencer9d6565a2007-02-15 02:26:10 +0000898 } else if ((PTy = dyn_cast<VectorType>(In)) && isa<VectorType>(Accum) &&
899 PTy->getBitWidth() == cast<VectorType>(Accum)->getBitWidth()) {
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000900 // Two vectors of the same size: keep Accum.
901 } else {
902 // Cannot insert an short into a <4 x int> or handle
903 // <2 x int> -> <4 x int>
904 return true;
905 }
Chris Lattner21c362d2006-12-13 02:26:45 +0000906 } else {
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000907 // Pointer/FP/Integer unions merge together as integers.
908 switch (Accum->getTypeID()) {
909 case Type::PointerTyID: Accum = TD.getIntPtrType(); break;
Reid Spencerc5b206b2006-12-31 05:48:39 +0000910 case Type::FloatTyID: Accum = Type::Int32Ty; break;
911 case Type::DoubleTyID: Accum = Type::Int64Ty; break;
Dale Johannesenef0ab932007-09-28 00:21:38 +0000912 case Type::X86_FP80TyID: return true;
913 case Type::FP128TyID: return true;
914 case Type::PPC_FP128TyID: return true;
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000915 default:
Chris Lattner42a75512007-01-15 02:27:26 +0000916 assert(Accum->isInteger() && "Unknown FP type!");
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000917 break;
918 }
919
920 switch (In->getTypeID()) {
921 case Type::PointerTyID: In = TD.getIntPtrType(); break;
Reid Spencerc5b206b2006-12-31 05:48:39 +0000922 case Type::FloatTyID: In = Type::Int32Ty; break;
923 case Type::DoubleTyID: In = Type::Int64Ty; break;
Dale Johannesenef0ab932007-09-28 00:21:38 +0000924 case Type::X86_FP80TyID: return true;
925 case Type::FP128TyID: return true;
926 case Type::PPC_FP128TyID: return true;
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000927 default:
Chris Lattner42a75512007-01-15 02:27:26 +0000928 assert(In->isInteger() && "Unknown FP type!");
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000929 break;
930 }
931 return MergeInType(In, Accum, TD);
Chris Lattnera1888942005-12-12 07:19:13 +0000932 }
933 return false;
934}
935
Duncan Sands3cb36502007-11-04 14:43:57 +0000936/// getUIntAtLeastAsBigAs - Return an unsigned integer type that is at least
Chris Lattnera1888942005-12-12 07:19:13 +0000937/// as big as the specified type. If there is no suitable type, this returns
938/// null.
Duncan Sands3cb36502007-11-04 14:43:57 +0000939const Type *getUIntAtLeastAsBigAs(unsigned NumBits) {
Chris Lattnera1888942005-12-12 07:19:13 +0000940 if (NumBits > 64) return 0;
Reid Spencerc5b206b2006-12-31 05:48:39 +0000941 if (NumBits > 32) return Type::Int64Ty;
942 if (NumBits > 16) return Type::Int32Ty;
943 if (NumBits > 8) return Type::Int16Ty;
944 return Type::Int8Ty;
Chris Lattnera1888942005-12-12 07:19:13 +0000945}
946
947/// CanConvertToScalar - V is a pointer. If we can convert the pointee to a
948/// single scalar integer type, return that type. Further, if the use is not
949/// a completely trivial use that mem2reg could promote, set IsNotTrivial. If
950/// there are no uses of this pointer, return Type::VoidTy to differentiate from
951/// failure.
952///
953const Type *SROA::CanConvertToScalar(Value *V, bool &IsNotTrivial) {
954 const Type *UsedType = Type::VoidTy; // No uses, no forced type.
955 const TargetData &TD = getAnalysis<TargetData>();
956 const PointerType *PTy = cast<PointerType>(V->getType());
957
958 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI!=E; ++UI) {
959 Instruction *User = cast<Instruction>(*UI);
960
961 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner5b121cc2006-10-08 23:28:04 +0000962 if (MergeInType(LI->getType(), UsedType, TD))
Chris Lattnera1888942005-12-12 07:19:13 +0000963 return 0;
964
965 } else if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
Reid Spencer24d6da52007-01-21 00:29:26 +0000966 // Storing the pointer, not into the value?
Chris Lattnera1888942005-12-12 07:19:13 +0000967 if (SI->getOperand(0) == V) return 0;
968
Chris Lattnerde6df882006-04-14 21:42:41 +0000969 // NOTE: We could handle storing of FP imms into integers here!
Chris Lattnera1888942005-12-12 07:19:13 +0000970
Chris Lattner5b121cc2006-10-08 23:28:04 +0000971 if (MergeInType(SI->getOperand(0)->getType(), UsedType, TD))
Chris Lattnera1888942005-12-12 07:19:13 +0000972 return 0;
Chris Lattnerd22dbdf2006-12-15 07:32:38 +0000973 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
Chris Lattnera1888942005-12-12 07:19:13 +0000974 IsNotTrivial = true;
975 const Type *SubTy = CanConvertToScalar(CI, IsNotTrivial);
Chris Lattner5b121cc2006-10-08 23:28:04 +0000976 if (!SubTy || MergeInType(SubTy, UsedType, TD)) return 0;
Chris Lattnera1888942005-12-12 07:19:13 +0000977 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(User)) {
978 // Check to see if this is stepping over an element: GEP Ptr, int C
979 if (GEP->getNumOperands() == 2 && isa<ConstantInt>(GEP->getOperand(1))) {
Reid Spencerb83eb642006-10-20 07:07:24 +0000980 unsigned Idx = cast<ConstantInt>(GEP->getOperand(1))->getZExtValue();
Duncan Sands3cb36502007-11-04 14:43:57 +0000981 unsigned ElSize = TD.getABITypeSize(PTy->getElementType());
Chris Lattnera1888942005-12-12 07:19:13 +0000982 unsigned BitOffset = Idx*ElSize*8;
983 if (BitOffset > 64 || !isPowerOf2_32(ElSize)) return 0;
984
985 IsNotTrivial = true;
986 const Type *SubElt = CanConvertToScalar(GEP, IsNotTrivial);
987 if (SubElt == 0) return 0;
Chris Lattner42a75512007-01-15 02:27:26 +0000988 if (SubElt != Type::VoidTy && SubElt->isInteger()) {
Chris Lattnera1888942005-12-12 07:19:13 +0000989 const Type *NewTy =
Duncan Sands3cb36502007-11-04 14:43:57 +0000990 getUIntAtLeastAsBigAs(TD.getABITypeSizeInBits(SubElt)+BitOffset);
Chris Lattner5b121cc2006-10-08 23:28:04 +0000991 if (NewTy == 0 || MergeInType(NewTy, UsedType, TD)) return 0;
Chris Lattnera1888942005-12-12 07:19:13 +0000992 continue;
993 }
994 } else if (GEP->getNumOperands() == 3 &&
995 isa<ConstantInt>(GEP->getOperand(1)) &&
996 isa<ConstantInt>(GEP->getOperand(2)) &&
Zhou Sheng843f07672007-04-19 05:39:12 +0000997 cast<ConstantInt>(GEP->getOperand(1))->isZero()) {
Chris Lattnera1888942005-12-12 07:19:13 +0000998 // We are stepping into an element, e.g. a structure or an array:
999 // GEP Ptr, int 0, uint C
1000 const Type *AggTy = PTy->getElementType();
Reid Spencerb83eb642006-10-20 07:07:24 +00001001 unsigned Idx = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnera1888942005-12-12 07:19:13 +00001002
1003 if (const ArrayType *ATy = dyn_cast<ArrayType>(AggTy)) {
1004 if (Idx >= ATy->getNumElements()) return 0; // Out of range.
Reid Spencerac9dcb92007-02-15 03:39:18 +00001005 } else if (const VectorType *VectorTy = dyn_cast<VectorType>(AggTy)) {
Dan Gohman07a96762007-07-16 14:29:03 +00001006 // Getting an element of the vector.
Reid Spencerac9dcb92007-02-15 03:39:18 +00001007 if (Idx >= VectorTy->getNumElements()) return 0; // Out of range.
Chris Lattnerde6df882006-04-14 21:42:41 +00001008
Reid Spencerac9dcb92007-02-15 03:39:18 +00001009 // Merge in the vector type.
1010 if (MergeInType(VectorTy, UsedType, TD)) return 0;
Chris Lattnerde6df882006-04-14 21:42:41 +00001011
1012 const Type *SubTy = CanConvertToScalar(GEP, IsNotTrivial);
1013 if (SubTy == 0) return 0;
1014
Chris Lattner5b121cc2006-10-08 23:28:04 +00001015 if (SubTy != Type::VoidTy && MergeInType(SubTy, UsedType, TD))
Chris Lattnerde6df882006-04-14 21:42:41 +00001016 return 0;
1017
1018 // We'll need to change this to an insert/extract element operation.
1019 IsNotTrivial = true;
1020 continue; // Everything looks ok
1021
Chris Lattnera1888942005-12-12 07:19:13 +00001022 } else if (isa<StructType>(AggTy)) {
1023 // Structs are always ok.
1024 } else {
1025 return 0;
1026 }
Duncan Sands3cb36502007-11-04 14:43:57 +00001027 const Type *NTy = getUIntAtLeastAsBigAs(TD.getABITypeSizeInBits(AggTy));
Chris Lattner5b121cc2006-10-08 23:28:04 +00001028 if (NTy == 0 || MergeInType(NTy, UsedType, TD)) return 0;
Chris Lattnera1888942005-12-12 07:19:13 +00001029 const Type *SubTy = CanConvertToScalar(GEP, IsNotTrivial);
1030 if (SubTy == 0) return 0;
Chris Lattner5b121cc2006-10-08 23:28:04 +00001031 if (SubTy != Type::VoidTy && MergeInType(SubTy, UsedType, TD))
Chris Lattnera1888942005-12-12 07:19:13 +00001032 return 0;
1033 continue; // Everything looks ok
1034 }
1035 return 0;
1036 } else {
1037 // Cannot handle this!
1038 return 0;
1039 }
1040 }
1041
1042 return UsedType;
1043}
1044
1045/// ConvertToScalar - The specified alloca passes the CanConvertToScalar
1046/// predicate and is non-trivial. Convert it to something that can be trivially
1047/// promoted into a register by mem2reg.
1048void SROA::ConvertToScalar(AllocationInst *AI, const Type *ActualTy) {
Bill Wendlingb7427032006-11-26 09:46:52 +00001049 DOUT << "CONVERT TO SCALAR: " << *AI << " TYPE = "
1050 << *ActualTy << "\n";
Chris Lattnera1888942005-12-12 07:19:13 +00001051 ++NumConverted;
1052
1053 BasicBlock *EntryBlock = AI->getParent();
Dan Gohmanecb7a772007-03-22 16:38:57 +00001054 assert(EntryBlock == &EntryBlock->getParent()->getEntryBlock() &&
Chris Lattnera1888942005-12-12 07:19:13 +00001055 "Not in the entry block!");
1056 EntryBlock->getInstList().remove(AI); // Take the alloca out of the program.
1057
1058 // Create and insert the alloca.
Chris Lattnerde6df882006-04-14 21:42:41 +00001059 AllocaInst *NewAI = new AllocaInst(ActualTy, 0, AI->getName(),
1060 EntryBlock->begin());
Chris Lattnera1888942005-12-12 07:19:13 +00001061 ConvertUsesToScalar(AI, NewAI, 0);
1062 delete AI;
1063}
1064
1065
1066/// ConvertUsesToScalar - Convert all of the users of Ptr to use the new alloca
Chris Lattnerde6df882006-04-14 21:42:41 +00001067/// directly. This happens when we are converting an "integer union" to a
1068/// single integer scalar, or when we are converting a "vector union" to a
1069/// vector with insert/extractelement instructions.
1070///
1071/// Offset is an offset from the original alloca, in bits that need to be
1072/// shifted to the right. By the end of this, there should be no uses of Ptr.
Chris Lattnera1888942005-12-12 07:19:13 +00001073void SROA::ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, unsigned Offset) {
Chris Lattnerc8363332006-10-08 23:53:04 +00001074 const TargetData &TD = getAnalysis<TargetData>();
Chris Lattnera1888942005-12-12 07:19:13 +00001075 while (!Ptr->use_empty()) {
1076 Instruction *User = cast<Instruction>(Ptr->use_back());
1077
1078 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
1079 // The load is a bit extract from NewAI shifted right by Offset bits.
1080 Value *NV = new LoadInst(NewAI, LI->getName(), LI);
Chris Lattnerf4b18182007-04-11 00:57:54 +00001081 if (NV->getType() == LI->getType()) {
1082 // We win, no conversion needed.
1083 } else if (const VectorType *PTy = dyn_cast<VectorType>(NV->getType())) {
1084 // If the result alloca is a vector type, this is either an element
1085 // access or a bitcast to another vector type.
1086 if (isa<VectorType>(LI->getType())) {
Chris Lattnerd22dbdf2006-12-15 07:32:38 +00001087 NV = new BitCastInst(NV, LI->getType(), LI->getName(), LI);
1088 } else {
Chris Lattnerf4b18182007-04-11 00:57:54 +00001089 // Must be an element access.
Duncan Sands3cb36502007-11-04 14:43:57 +00001090 unsigned Elt = Offset/TD.getABITypeSizeInBits(PTy->getElementType());
Chris Lattnerf4b18182007-04-11 00:57:54 +00001091 NV = new ExtractElementInst(
1092 NV, ConstantInt::get(Type::Int32Ty, Elt), "tmp", LI);
1093 }
1094 } else if (isa<PointerType>(NV->getType())) {
1095 assert(isa<PointerType>(LI->getType()));
1096 // Must be ptr->ptr cast. Anything else would result in NV being
1097 // an integer.
1098 NV = new BitCastInst(NV, LI->getType(), LI->getName(), LI);
1099 } else {
1100 const IntegerType *NTy = cast<IntegerType>(NV->getType());
Duncan Sands3cb36502007-11-04 14:43:57 +00001101
Chris Lattnerf4b18182007-04-11 00:57:54 +00001102 // If this is a big-endian system and the load is narrower than the
1103 // full alloca type, we need to do a shift to get the right bits.
1104 int ShAmt = 0;
1105 if (TD.isBigEndian()) {
Duncan Sands3cb36502007-11-04 14:43:57 +00001106 // On big-endian machines, the lowest bit is stored at the bit offset
1107 // from the pointer given by getTypeStoreSizeInBits. This matters for
1108 // integers with a bitwidth that is not a multiple of 8.
1109 ShAmt = TD.getTypeStoreSizeInBits(NTy) -
1110 TD.getTypeStoreSizeInBits(LI->getType()) - Offset;
Chris Lattnerf4b18182007-04-11 00:57:54 +00001111 } else {
1112 ShAmt = Offset;
1113 }
Duncan Sands3cb36502007-11-04 14:43:57 +00001114
Chris Lattnerf4b18182007-04-11 00:57:54 +00001115 // Note: we support negative bitwidths (with shl) which are not defined.
1116 // We do this to support (f.e.) loads off the end of a structure where
1117 // only some bits are used.
1118 if (ShAmt > 0 && (unsigned)ShAmt < NTy->getBitWidth())
1119 NV = BinaryOperator::createLShr(NV,
1120 ConstantInt::get(NV->getType(),ShAmt),
1121 LI->getName(), LI);
1122 else if (ShAmt < 0 && (unsigned)-ShAmt < NTy->getBitWidth())
1123 NV = BinaryOperator::createShl(NV,
1124 ConstantInt::get(NV->getType(),-ShAmt),
1125 LI->getName(), LI);
1126
1127 // Finally, unconditionally truncate the integer to the right width.
Duncan Sands3cb36502007-11-04 14:43:57 +00001128 unsigned LIBitWidth = TD.getTypeSizeInBits(LI->getType());
Chris Lattnerf4b18182007-04-11 00:57:54 +00001129 if (LIBitWidth < NTy->getBitWidth())
1130 NV = new TruncInst(NV, IntegerType::get(LIBitWidth),
1131 LI->getName(), LI);
1132
1133 // If the result is an integer, this is a trunc or bitcast.
1134 if (isa<IntegerType>(LI->getType())) {
1135 assert(NV->getType() == LI->getType() && "Truncate wasn't enough?");
1136 } else if (LI->getType()->isFloatingPoint()) {
Chris Lattnered4e51e2007-04-11 03:27:24 +00001137 // Just do a bitcast, we know the sizes match up.
Chris Lattnerf4b18182007-04-11 00:57:54 +00001138 NV = new BitCastInst(NV, LI->getType(), LI->getName(), LI);
1139 } else {
1140 // Otherwise must be a pointer.
1141 NV = new IntToPtrInst(NV, LI->getType(), LI->getName(), LI);
Chris Lattnerde6df882006-04-14 21:42:41 +00001142 }
1143 }
Chris Lattnera1888942005-12-12 07:19:13 +00001144 LI->replaceAllUsesWith(NV);
1145 LI->eraseFromParent();
1146 } else if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
1147 assert(SI->getOperand(0) != Ptr && "Consistency error!");
1148
1149 // Convert the stored type to the actual type, shift it left to insert
1150 // then 'or' into place.
1151 Value *SV = SI->getOperand(0);
Chris Lattnerde6df882006-04-14 21:42:41 +00001152 const Type *AllocaType = NewAI->getType()->getElementType();
Chris Lattnerf4b18182007-04-11 00:57:54 +00001153 if (SV->getType() == AllocaType) {
1154 // All is well.
1155 } else if (const VectorType *PTy = dyn_cast<VectorType>(AllocaType)) {
Chris Lattnera1888942005-12-12 07:19:13 +00001156 Value *Old = new LoadInst(NewAI, NewAI->getName()+".in", SI);
Chris Lattnerf4b18182007-04-11 00:57:54 +00001157
1158 // If the result alloca is a vector type, this is either an element
1159 // access or a bitcast to another vector type.
1160 if (isa<VectorType>(SV->getType())) {
1161 SV = new BitCastInst(SV, AllocaType, SV->getName(), SI);
Duncan Sands3cb36502007-11-04 14:43:57 +00001162 } else {
Chris Lattnerf4b18182007-04-11 00:57:54 +00001163 // Must be an element insertion.
Duncan Sands3cb36502007-11-04 14:43:57 +00001164 unsigned Elt = Offset/TD.getABITypeSizeInBits(PTy->getElementType());
Chris Lattnerf4b18182007-04-11 00:57:54 +00001165 SV = new InsertElementInst(Old, SV,
1166 ConstantInt::get(Type::Int32Ty, Elt),
1167 "tmp", SI);
1168 }
Chris Lattnerab462752007-04-11 15:45:25 +00001169 } else if (isa<PointerType>(AllocaType)) {
1170 // If the alloca type is a pointer, then all the elements must be
1171 // pointers.
1172 if (SV->getType() != AllocaType)
1173 SV = new BitCastInst(SV, AllocaType, SV->getName(), SI);
Chris Lattnerf4b18182007-04-11 00:57:54 +00001174 } else {
1175 Value *Old = new LoadInst(NewAI, NewAI->getName()+".in", SI);
1176
1177 // If SV is a float, convert it to the appropriate integer type.
1178 // If it is a pointer, do the same, and also handle ptr->ptr casts
1179 // here.
1180 unsigned SrcWidth = TD.getTypeSizeInBits(SV->getType());
Duncan Sands3cb36502007-11-04 14:43:57 +00001181 unsigned DestWidth = TD.getTypeSizeInBits(AllocaType);
Duncan Sands91508a42007-11-06 20:39:11 +00001182 unsigned SrcStoreWidth = TD.getTypeStoreSizeInBits(SV->getType());
1183 unsigned DestStoreWidth = TD.getTypeStoreSizeInBits(AllocaType);
Chris Lattnerf4b18182007-04-11 00:57:54 +00001184 if (SV->getType()->isFloatingPoint())
1185 SV = new BitCastInst(SV, IntegerType::get(SrcWidth),
1186 SV->getName(), SI);
Chris Lattnerab462752007-04-11 15:45:25 +00001187 else if (isa<PointerType>(SV->getType()))
1188 SV = new PtrToIntInst(SV, TD.getIntPtrType(), SV->getName(), SI);
Chris Lattnerf4b18182007-04-11 00:57:54 +00001189
1190 // Always zero extend the value if needed.
1191 if (SV->getType() != AllocaType)
1192 SV = new ZExtInst(SV, AllocaType, SV->getName(), SI);
Duncan Sands3cb36502007-11-04 14:43:57 +00001193
Chris Lattnerf4b18182007-04-11 00:57:54 +00001194 // If this is a big-endian system and the store is narrower than the
1195 // full alloca type, we need to do a shift to get the right bits.
1196 int ShAmt = 0;
1197 if (TD.isBigEndian()) {
Duncan Sands3cb36502007-11-04 14:43:57 +00001198 // On big-endian machines, the lowest bit is stored at the bit offset
1199 // from the pointer given by getTypeStoreSizeInBits. This matters for
1200 // integers with a bitwidth that is not a multiple of 8.
Duncan Sands91508a42007-11-06 20:39:11 +00001201 ShAmt = DestStoreWidth - SrcStoreWidth - Offset;
Chris Lattnerde6df882006-04-14 21:42:41 +00001202 } else {
Chris Lattnerf4b18182007-04-11 00:57:54 +00001203 ShAmt = Offset;
1204 }
Duncan Sands3cb36502007-11-04 14:43:57 +00001205
Chris Lattnerf4b18182007-04-11 00:57:54 +00001206 // Note: we support negative bitwidths (with shr) which are not defined.
1207 // We do this to support (f.e.) stores off the end of a structure where
1208 // only some bits in the structure are set.
1209 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
1210 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
1211 SV = BinaryOperator::createShl(SV,
1212 ConstantInt::get(SV->getType(), ShAmt),
1213 SV->getName(), SI);
1214 Mask <<= ShAmt;
1215 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
1216 SV = BinaryOperator::createLShr(SV,
1217 ConstantInt::get(SV->getType(),-ShAmt),
1218 SV->getName(), SI);
1219 Mask = Mask.lshr(ShAmt);
1220 }
1221
1222 // Mask out the bits we are about to insert from the old value, and or
1223 // in the new bits.
1224 if (SrcWidth != DestWidth) {
1225 assert(DestWidth > SrcWidth);
1226 Old = BinaryOperator::createAnd(Old, ConstantInt::get(~Mask),
1227 Old->getName()+".mask", SI);
1228 SV = BinaryOperator::createOr(Old, SV, SV->getName()+".ins", SI);
Chris Lattnera1888942005-12-12 07:19:13 +00001229 }
1230 }
1231 new StoreInst(SV, NewAI, SI);
1232 SI->eraseFromParent();
1233
Chris Lattnerf4b18182007-04-11 00:57:54 +00001234 } else if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
1235 ConvertUsesToScalar(CI, NewAI, Offset);
Chris Lattnera1888942005-12-12 07:19:13 +00001236 CI->eraseFromParent();
1237 } else if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(User)) {
1238 const PointerType *AggPtrTy =
1239 cast<PointerType>(GEP->getOperand(0)->getType());
1240 const TargetData &TD = getAnalysis<TargetData>();
Duncan Sands3cb36502007-11-04 14:43:57 +00001241 unsigned AggSizeInBits =
1242 TD.getABITypeSizeInBits(AggPtrTy->getElementType());
1243
Chris Lattnera1888942005-12-12 07:19:13 +00001244 // Check to see if this is stepping over an element: GEP Ptr, int C
1245 unsigned NewOffset = Offset;
1246 if (GEP->getNumOperands() == 2) {
Reid Spencerb83eb642006-10-20 07:07:24 +00001247 unsigned Idx = cast<ConstantInt>(GEP->getOperand(1))->getZExtValue();
Chris Lattnera1888942005-12-12 07:19:13 +00001248 unsigned BitOffset = Idx*AggSizeInBits;
1249
Chris Lattnerf4b18182007-04-11 00:57:54 +00001250 NewOffset += BitOffset;
Chris Lattnera1888942005-12-12 07:19:13 +00001251 } else if (GEP->getNumOperands() == 3) {
1252 // We know that operand #2 is zero.
Reid Spencerb83eb642006-10-20 07:07:24 +00001253 unsigned Idx = cast<ConstantInt>(GEP->getOperand(2))->getZExtValue();
Chris Lattnera1888942005-12-12 07:19:13 +00001254 const Type *AggTy = AggPtrTy->getElementType();
1255 if (const SequentialType *SeqTy = dyn_cast<SequentialType>(AggTy)) {
Duncan Sands3cb36502007-11-04 14:43:57 +00001256 unsigned ElSizeBits =
1257 TD.getABITypeSizeInBits(SeqTy->getElementType());
Chris Lattnera1888942005-12-12 07:19:13 +00001258
Chris Lattnerf4b18182007-04-11 00:57:54 +00001259 NewOffset += ElSizeBits*Idx;
Chris Lattnera1888942005-12-12 07:19:13 +00001260 } else if (const StructType *STy = dyn_cast<StructType>(AggTy)) {
Chris Lattnerb1919e22007-02-10 19:55:17 +00001261 unsigned EltBitOffset =
Duncan Sands3cb36502007-11-04 14:43:57 +00001262 TD.getStructLayout(STy)->getElementOffsetInBits(Idx);
Chris Lattnera1888942005-12-12 07:19:13 +00001263
Chris Lattnerf4b18182007-04-11 00:57:54 +00001264 NewOffset += EltBitOffset;
Chris Lattnera1888942005-12-12 07:19:13 +00001265 } else {
1266 assert(0 && "Unsupported operation!");
1267 abort();
1268 }
1269 } else {
1270 assert(0 && "Unsupported operation!");
1271 abort();
1272 }
1273 ConvertUsesToScalar(GEP, NewAI, NewOffset);
1274 GEP->eraseFromParent();
1275 } else {
1276 assert(0 && "Unsupported operation!");
1277 abort();
1278 }
1279 }
1280}
Chris Lattner79b3bd32007-04-25 06:40:51 +00001281
1282
1283/// PointsToConstantGlobal - Return true if V (possibly indirectly) points to
1284/// some part of a constant global variable. This intentionally only accepts
1285/// constant expressions because we don't can't rewrite arbitrary instructions.
1286static bool PointsToConstantGlobal(Value *V) {
1287 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
1288 return GV->isConstant();
1289 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
1290 if (CE->getOpcode() == Instruction::BitCast ||
1291 CE->getOpcode() == Instruction::GetElementPtr)
1292 return PointsToConstantGlobal(CE->getOperand(0));
1293 return false;
1294}
1295
1296/// isOnlyCopiedFromConstantGlobal - Recursively walk the uses of a (derived)
1297/// pointer to an alloca. Ignore any reads of the pointer, return false if we
1298/// see any stores or other unknown uses. If we see pointer arithmetic, keep
1299/// track of whether it moves the pointer (with isOffset) but otherwise traverse
1300/// the uses. If we see a memcpy/memmove that targets an unoffseted pointer to
1301/// the alloca, and if the source pointer is a pointer to a constant global, we
1302/// can optimize this.
1303static bool isOnlyCopiedFromConstantGlobal(Value *V, Instruction *&TheCopy,
1304 bool isOffset) {
1305 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI!=E; ++UI) {
1306 if (isa<LoadInst>(*UI)) {
1307 // Ignore loads, they are always ok.
1308 continue;
1309 }
1310 if (BitCastInst *BCI = dyn_cast<BitCastInst>(*UI)) {
1311 // If uses of the bitcast are ok, we are ok.
1312 if (!isOnlyCopiedFromConstantGlobal(BCI, TheCopy, isOffset))
1313 return false;
1314 continue;
1315 }
1316 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(*UI)) {
1317 // If the GEP has all zero indices, it doesn't offset the pointer. If it
1318 // doesn't, it does.
1319 if (!isOnlyCopiedFromConstantGlobal(GEP, TheCopy,
1320 isOffset || !GEP->hasAllZeroIndices()))
1321 return false;
1322 continue;
1323 }
1324
1325 // If this is isn't our memcpy/memmove, reject it as something we can't
1326 // handle.
1327 if (!isa<MemCpyInst>(*UI) && !isa<MemMoveInst>(*UI))
1328 return false;
1329
1330 // If we already have seen a copy, reject the second one.
1331 if (TheCopy) return false;
1332
1333 // If the pointer has been offset from the start of the alloca, we can't
1334 // safely handle this.
1335 if (isOffset) return false;
1336
1337 // If the memintrinsic isn't using the alloca as the dest, reject it.
1338 if (UI.getOperandNo() != 1) return false;
1339
1340 MemIntrinsic *MI = cast<MemIntrinsic>(*UI);
1341
1342 // If the source of the memcpy/move is not a constant global, reject it.
1343 if (!PointsToConstantGlobal(MI->getOperand(2)))
1344 return false;
1345
1346 // Otherwise, the transform is safe. Remember the copy instruction.
1347 TheCopy = MI;
1348 }
1349 return true;
1350}
1351
1352/// isOnlyCopiedFromConstantGlobal - Return true if the specified alloca is only
1353/// modified by a copy from a constant global. If we can prove this, we can
1354/// replace any uses of the alloca with uses of the global directly.
1355Instruction *SROA::isOnlyCopiedFromConstantGlobal(AllocationInst *AI) {
1356 Instruction *TheCopy = 0;
1357 if (::isOnlyCopiedFromConstantGlobal(AI, TheCopy, false))
1358 return TheCopy;
1359 return 0;
1360}