blob: 4f99ee8e6efbf32b8a6aa19672f4e813c49b8970 [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"
Owen Andersonfa5cbd62009-07-03 19:42:02 +000030#include "llvm/LLVMContext.h"
Chris Lattner372dda82007-03-05 07:52:57 +000031#include "llvm/Pass.h"
Chris Lattner38aec322003-09-11 16:45:55 +000032#include "llvm/Analysis/Dominators.h"
33#include "llvm/Target/TargetData.h"
34#include "llvm/Transforms/Utils/PromoteMemToReg.h"
Devang Patel4afc90d2009-02-10 07:00:59 +000035#include "llvm/Transforms/Utils/Local.h"
Chris Lattner95255282006-06-28 23:17:24 +000036#include "llvm/Support/Debug.h"
Torok Edwin7d696d82009-07-11 13:10:19 +000037#include "llvm/Support/ErrorHandling.h"
Chris Lattnera1888942005-12-12 07:19:13 +000038#include "llvm/Support/GetElementPtrTypeIterator.h"
Chris Lattner65a65022009-02-03 19:41:50 +000039#include "llvm/Support/IRBuilder.h"
Chris Lattnera1888942005-12-12 07:19:13 +000040#include "llvm/Support/MathExtras.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000041#include "llvm/Support/Compiler.h"
Chris Lattner1ccd1852007-02-12 22:56:41 +000042#include "llvm/ADT/SmallVector.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000043#include "llvm/ADT/Statistic.h"
Chris Lattnerd8664732003-12-02 17:43:55 +000044using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000045
Chris Lattner0e5f4992006-12-19 21:40:18 +000046STATISTIC(NumReplaced, "Number of allocas broken up");
47STATISTIC(NumPromoted, "Number of allocas promoted");
48STATISTIC(NumConverted, "Number of aggregates converted to scalar");
Chris Lattner79b3bd32007-04-25 06:40:51 +000049STATISTIC(NumGlobals, "Number of allocas copied from constant global");
Chris Lattnered7b41e2003-05-27 15:45:27 +000050
Chris Lattner0e5f4992006-12-19 21:40:18 +000051namespace {
Chris Lattner95255282006-06-28 23:17:24 +000052 struct VISIBILITY_HIDDEN SROA : public FunctionPass {
Nick Lewyckyecd94c82007-05-06 13:37:16 +000053 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +000054 explicit SROA(signed T = -1) : FunctionPass(&ID) {
Devang Patelff366852007-07-09 21:19:23 +000055 if (T == -1)
Chris Lattnerb0e71ed2007-08-02 21:33:36 +000056 SRThreshold = 128;
Devang Patelff366852007-07-09 21:19:23 +000057 else
58 SRThreshold = T;
59 }
Devang Patel794fd752007-05-01 21:15:47 +000060
Chris Lattnered7b41e2003-05-27 15:45:27 +000061 bool runOnFunction(Function &F);
62
Chris Lattner38aec322003-09-11 16:45:55 +000063 bool performScalarRepl(Function &F);
64 bool performPromotion(Function &F);
65
Chris Lattnera15854c2003-08-31 00:45:13 +000066 // getAnalysisUsage - This pass does not require any passes, but we know it
67 // will not alter the CFG, so say so.
68 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Devang Patel326821e2007-06-07 21:57:03 +000069 AU.addRequired<DominatorTree>();
Chris Lattner38aec322003-09-11 16:45:55 +000070 AU.addRequired<DominanceFrontier>();
71 AU.addRequired<TargetData>();
Chris Lattnera15854c2003-08-31 00:45:13 +000072 AU.setPreservesCFG();
73 }
74
Chris Lattnered7b41e2003-05-27 15:45:27 +000075 private:
Chris Lattner56c38522009-01-07 06:34:28 +000076 TargetData *TD;
77
Chris Lattner39a1c042007-05-30 06:11:23 +000078 /// AllocaInfo - When analyzing uses of an alloca instruction, this captures
79 /// information about the uses. All these fields are initialized to false
80 /// and set to true when something is learned.
81 struct AllocaInfo {
82 /// isUnsafe - This is set to true if the alloca cannot be SROA'd.
83 bool isUnsafe : 1;
84
Devang Patel4afc90d2009-02-10 07:00:59 +000085 /// needsCleanup - This is set to true if there is some use of the alloca
86 /// that requires cleanup.
87 bool needsCleanup : 1;
Chris Lattner39a1c042007-05-30 06:11:23 +000088
89 /// isMemCpySrc - This is true if this aggregate is memcpy'd from.
90 bool isMemCpySrc : 1;
91
Zhou Sheng33b0b8d2007-07-06 06:01:16 +000092 /// isMemCpyDst - This is true if this aggregate is memcpy'd into.
Chris Lattner39a1c042007-05-30 06:11:23 +000093 bool isMemCpyDst : 1;
94
95 AllocaInfo()
Devang Patel4afc90d2009-02-10 07:00:59 +000096 : isUnsafe(false), needsCleanup(false),
Chris Lattner39a1c042007-05-30 06:11:23 +000097 isMemCpySrc(false), isMemCpyDst(false) {}
98 };
99
Devang Patelff366852007-07-09 21:19:23 +0000100 unsigned SRThreshold;
101
Chris Lattner39a1c042007-05-30 06:11:23 +0000102 void MarkUnsafe(AllocaInfo &I) { I.isUnsafe = true; }
103
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000104 int isSafeAllocaToScalarRepl(AllocationInst *AI);
Chris Lattner39a1c042007-05-30 06:11:23 +0000105
106 void isSafeUseOfAllocation(Instruction *User, AllocationInst *AI,
107 AllocaInfo &Info);
108 void isSafeElementUse(Value *Ptr, bool isFirstElt, AllocationInst *AI,
109 AllocaInfo &Info);
110 void isSafeMemIntrinsicOnAllocation(MemIntrinsic *MI, AllocationInst *AI,
111 unsigned OpNo, AllocaInfo &Info);
112 void isSafeUseOfBitCastedAllocation(BitCastInst *User, AllocationInst *AI,
113 AllocaInfo &Info);
114
Chris Lattnera10b29b2007-04-25 05:02:56 +0000115 void DoScalarReplacement(AllocationInst *AI,
116 std::vector<AllocationInst*> &WorkList);
Devang Patel4afc90d2009-02-10 07:00:59 +0000117 void CleanupGEP(GetElementPtrInst *GEP);
118 void CleanupAllocaUsers(AllocationInst *AI);
Chris Lattnered7b41e2003-05-27 15:45:27 +0000119 AllocaInst *AddNewAlloca(Function &F, const Type *Ty, AllocationInst *Base);
Chris Lattnera1888942005-12-12 07:19:13 +0000120
Chris Lattner8bf99112007-03-19 00:16:43 +0000121 void RewriteBitCastUserOfAlloca(Instruction *BCInst, AllocationInst *AI,
Chris Lattner372dda82007-03-05 07:52:57 +0000122 SmallVector<AllocaInst*, 32> &NewElts);
123
Chris Lattnerd93afec2009-01-07 07:18:45 +0000124 void RewriteMemIntrinUserOfAlloca(MemIntrinsic *MI, Instruction *BCInst,
125 AllocationInst *AI,
126 SmallVector<AllocaInst*, 32> &NewElts);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000127 void RewriteStoreUserOfWholeAlloca(StoreInst *SI, AllocationInst *AI,
128 SmallVector<AllocaInst*, 32> &NewElts);
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000129 void RewriteLoadUserOfWholeAlloca(LoadInst *LI, AllocationInst *AI,
Chris Lattner6e733d32009-01-28 20:16:43 +0000130 SmallVector<AllocaInst*, 32> &NewElts);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000131
Chris Lattner7809ecd2009-02-03 01:30:09 +0000132 bool CanConvertToScalar(Value *V, bool &IsNotTrivial, const Type *&VecTy,
Chris Lattner1a3257b2009-02-03 18:15:05 +0000133 bool &SawVec, uint64_t Offset, unsigned AllocaSize);
Chris Lattner2e0d5f82009-01-31 02:28:54 +0000134 void ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, uint64_t Offset);
Chris Lattner6e011152009-02-03 21:01:03 +0000135 Value *ConvertScalar_ExtractValue(Value *NV, const Type *ToType,
Chris Lattner9bc67da2009-02-03 19:45:44 +0000136 uint64_t Offset, IRBuilder<> &Builder);
Chris Lattner9b872db2009-02-03 19:30:11 +0000137 Value *ConvertScalar_InsertValue(Value *StoredVal, Value *ExistingVal,
Chris Lattner65a65022009-02-03 19:41:50 +0000138 uint64_t Offset, IRBuilder<> &Builder);
Chris Lattner79b3bd32007-04-25 06:40:51 +0000139 static Instruction *isOnlyCopiedFromConstantGlobal(AllocationInst *AI);
Chris Lattnered7b41e2003-05-27 15:45:27 +0000140 };
Chris Lattnered7b41e2003-05-27 15:45:27 +0000141}
142
Dan Gohman844731a2008-05-13 00:00:25 +0000143char SROA::ID = 0;
144static RegisterPass<SROA> X("scalarrepl", "Scalar Replacement of Aggregates");
145
Brian Gaeked0fde302003-11-11 22:41:34 +0000146// Public interface to the ScalarReplAggregates pass
Devang Patelff366852007-07-09 21:19:23 +0000147FunctionPass *llvm::createScalarReplAggregatesPass(signed int Threshold) {
148 return new SROA(Threshold);
149}
Chris Lattnered7b41e2003-05-27 15:45:27 +0000150
151
Chris Lattnered7b41e2003-05-27 15:45:27 +0000152bool SROA::runOnFunction(Function &F) {
Chris Lattner56c38522009-01-07 06:34:28 +0000153 TD = &getAnalysis<TargetData>();
154
Chris Lattnerfe7ea0d2003-09-12 15:36:03 +0000155 bool Changed = performPromotion(F);
156 while (1) {
157 bool LocalChange = performScalarRepl(F);
158 if (!LocalChange) break; // No need to repromote if no scalarrepl
159 Changed = true;
160 LocalChange = performPromotion(F);
161 if (!LocalChange) break; // No need to re-scalarrepl if no promotion
162 }
Chris Lattner38aec322003-09-11 16:45:55 +0000163
164 return Changed;
165}
166
167
168bool SROA::performPromotion(Function &F) {
169 std::vector<AllocaInst*> Allocas;
Devang Patel326821e2007-06-07 21:57:03 +0000170 DominatorTree &DT = getAnalysis<DominatorTree>();
Chris Lattner43f820d2003-10-05 21:20:13 +0000171 DominanceFrontier &DF = getAnalysis<DominanceFrontier>();
Chris Lattner38aec322003-09-11 16:45:55 +0000172
Chris Lattner02a3be02003-09-20 14:39:18 +0000173 BasicBlock &BB = F.getEntryBlock(); // Get the entry node for the function
Chris Lattner38aec322003-09-11 16:45:55 +0000174
Chris Lattnerfe7ea0d2003-09-12 15:36:03 +0000175 bool Changed = false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000176
Chris Lattner38aec322003-09-11 16:45:55 +0000177 while (1) {
178 Allocas.clear();
179
180 // Find allocas that are safe to promote, by looking at all instructions in
181 // the entry node
182 for (BasicBlock::iterator I = BB.begin(), E = --BB.end(); I != E; ++I)
183 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) // Is it an alloca?
Devang Patel41968df2007-04-25 17:15:20 +0000184 if (isAllocaPromotable(AI))
Chris Lattner38aec322003-09-11 16:45:55 +0000185 Allocas.push_back(AI);
186
187 if (Allocas.empty()) break;
188
Owen Andersone922c022009-07-22 00:24:57 +0000189 PromoteMemToReg(Allocas, DT, DF, F.getContext());
Chris Lattner38aec322003-09-11 16:45:55 +0000190 NumPromoted += Allocas.size();
191 Changed = true;
192 }
193
194 return Changed;
195}
196
Chris Lattner963a97f2008-06-22 17:46:21 +0000197/// getNumSAElements - Return the number of elements in the specific struct or
198/// array.
199static uint64_t getNumSAElements(const Type *T) {
200 if (const StructType *ST = dyn_cast<StructType>(T))
201 return ST->getNumElements();
202 return cast<ArrayType>(T)->getNumElements();
203}
204
Chris Lattner38aec322003-09-11 16:45:55 +0000205// performScalarRepl - This algorithm is a simple worklist driven algorithm,
206// which runs on all of the malloc/alloca instructions in the function, removing
207// them if they are only used by getelementptr instructions.
208//
209bool SROA::performScalarRepl(Function &F) {
Chris Lattnered7b41e2003-05-27 15:45:27 +0000210 std::vector<AllocationInst*> WorkList;
211
212 // Scan the entry basic block, adding any alloca's and mallocs to the worklist
Chris Lattner02a3be02003-09-20 14:39:18 +0000213 BasicBlock &BB = F.getEntryBlock();
Chris Lattnered7b41e2003-05-27 15:45:27 +0000214 for (BasicBlock::iterator I = BB.begin(), E = BB.end(); I != E; ++I)
215 if (AllocationInst *A = dyn_cast<AllocationInst>(I))
216 WorkList.push_back(A);
217
218 // Process the worklist
219 bool Changed = false;
220 while (!WorkList.empty()) {
221 AllocationInst *AI = WorkList.back();
222 WorkList.pop_back();
Chris Lattnera1888942005-12-12 07:19:13 +0000223
Chris Lattneradd2bd72006-12-22 23:14:42 +0000224 // Handle dead allocas trivially. These can be formed by SROA'ing arrays
225 // with unused elements.
226 if (AI->use_empty()) {
227 AI->eraseFromParent();
228 continue;
229 }
Chris Lattner7809ecd2009-02-03 01:30:09 +0000230
231 // If this alloca is impossible for us to promote, reject it early.
232 if (AI->isArrayAllocation() || !AI->getAllocatedType()->isSized())
233 continue;
Chris Lattner79b3bd32007-04-25 06:40:51 +0000234
235 // Check to see if this allocation is only modified by a memcpy/memmove from
236 // a constant global. If this is the case, we can change all users to use
237 // the constant global instead. This is commonly produced by the CFE by
238 // constructs like "void foo() { int A[] = {1,2,3,4,5,6,7,8,9...}; }" if 'A'
239 // is only subsequently read.
240 if (Instruction *TheCopy = isOnlyCopiedFromConstantGlobal(AI)) {
241 DOUT << "Found alloca equal to global: " << *AI;
242 DOUT << " memcpy = " << *TheCopy;
243 Constant *TheSrc = cast<Constant>(TheCopy->getOperand(2));
Owen Andersonbaf3c402009-07-29 18:55:55 +0000244 AI->replaceAllUsesWith(ConstantExpr::getBitCast(TheSrc, AI->getType()));
Chris Lattner79b3bd32007-04-25 06:40:51 +0000245 TheCopy->eraseFromParent(); // Don't mutate the global.
246 AI->eraseFromParent();
247 ++NumGlobals;
248 Changed = true;
249 continue;
250 }
Chris Lattner15c82772009-02-02 20:44:45 +0000251
Chris Lattner7809ecd2009-02-03 01:30:09 +0000252 // Check to see if we can perform the core SROA transformation. We cannot
253 // transform the allocation instruction if it is an array allocation
254 // (allocations OF arrays are ok though), and an allocation of a scalar
255 // value cannot be decomposed at all.
Duncan Sands777d2302009-05-09 07:06:46 +0000256 uint64_t AllocaSize = TD->getTypeAllocSize(AI->getAllocatedType());
Bill Wendling5a377cb2009-03-03 12:12:58 +0000257
Nick Lewyckyd3aa25e2009-08-17 05:37:31 +0000258 // Do not promote [0 x %struct].
259 if (AllocaSize == 0) continue;
260
Bill Wendling5a377cb2009-03-03 12:12:58 +0000261 // Do not promote any struct whose size is too big.
Bill Wendling3aaf5d92009-03-03 19:18:49 +0000262 if (AllocaSize > SRThreshold) continue;
Nick Lewyckyd3aa25e2009-08-17 05:37:31 +0000263
Chris Lattner7809ecd2009-02-03 01:30:09 +0000264 if ((isa<StructType>(AI->getAllocatedType()) ||
265 isa<ArrayType>(AI->getAllocatedType())) &&
Chris Lattner7809ecd2009-02-03 01:30:09 +0000266 // Do not promote any struct into more than "32" separate vars.
Evan Cheng67fca632009-03-06 00:56:43 +0000267 getNumSAElements(AI->getAllocatedType()) <= SRThreshold/4) {
Chris Lattner7809ecd2009-02-03 01:30:09 +0000268 // Check that all of the users of the allocation are capable of being
269 // transformed.
270 switch (isSafeAllocaToScalarRepl(AI)) {
Torok Edwinc23197a2009-07-14 16:55:14 +0000271 default: llvm_unreachable("Unexpected value!");
Chris Lattner7809ecd2009-02-03 01:30:09 +0000272 case 0: // Not safe to scalar replace.
273 break;
274 case 1: // Safe, but requires cleanup/canonicalizations first
Devang Patel4afc90d2009-02-10 07:00:59 +0000275 CleanupAllocaUsers(AI);
Chris Lattner7809ecd2009-02-03 01:30:09 +0000276 // FALL THROUGH.
277 case 3: // Safe to scalar replace.
278 DoScalarReplacement(AI, WorkList);
279 Changed = true;
280 continue;
281 }
282 }
Chris Lattner6e733d32009-01-28 20:16:43 +0000283
284 // If we can turn this aggregate value (potentially with casts) into a
285 // simple scalar value that can be mem2reg'd into a register value.
Chris Lattner2e0d5f82009-01-31 02:28:54 +0000286 // IsNotTrivial tracks whether this is something that mem2reg could have
287 // promoted itself. If so, we don't want to transform it needlessly. Note
288 // that we can't just check based on the type: the alloca may be of an i32
289 // but that has pointer arithmetic to set byte 3 of it or something.
Chris Lattner6e733d32009-01-28 20:16:43 +0000290 bool IsNotTrivial = false;
Chris Lattner7809ecd2009-02-03 01:30:09 +0000291 const Type *VectorTy = 0;
Chris Lattner1a3257b2009-02-03 18:15:05 +0000292 bool HadAVector = false;
293 if (CanConvertToScalar(AI, IsNotTrivial, VectorTy, HadAVector,
Chris Lattner0ff83ab2009-03-04 19:22:30 +0000294 0, unsigned(AllocaSize)) && IsNotTrivial) {
Chris Lattner7809ecd2009-02-03 01:30:09 +0000295 AllocaInst *NewAI;
Chris Lattner1a3257b2009-02-03 18:15:05 +0000296 // If we were able to find a vector type that can handle this with
297 // insert/extract elements, and if there was at least one use that had
298 // a vector type, promote this to a vector. We don't want to promote
299 // random stuff that doesn't use vectors (e.g. <9 x double>) because then
300 // we just get a lot of insert/extracts. If at least one vector is
301 // involved, then we probably really do have a union of vector/array.
302 if (VectorTy && isa<VectorType>(VectorTy) && HadAVector) {
Chris Lattner7809ecd2009-02-03 01:30:09 +0000303 DOUT << "CONVERT TO VECTOR: " << *AI << " TYPE = " << *VectorTy <<"\n";
Chris Lattner15c82772009-02-02 20:44:45 +0000304
Chris Lattner7809ecd2009-02-03 01:30:09 +0000305 // Create and insert the vector alloca.
Owen Anderson50dead02009-07-15 23:53:25 +0000306 NewAI = new AllocaInst(VectorTy, 0, "", AI->getParent()->begin());
Chris Lattner15c82772009-02-02 20:44:45 +0000307 ConvertUsesToScalar(AI, NewAI, 0);
Chris Lattner7809ecd2009-02-03 01:30:09 +0000308 } else {
309 DOUT << "CONVERT TO SCALAR INTEGER: " << *AI << "\n";
310
311 // Create and insert the integer alloca.
Owen Anderson1d0be152009-08-13 21:58:54 +0000312 const Type *NewTy = IntegerType::get(AI->getContext(), AllocaSize*8);
Owen Anderson50dead02009-07-15 23:53:25 +0000313 NewAI = new AllocaInst(NewTy, 0, "", AI->getParent()->begin());
Chris Lattner7809ecd2009-02-03 01:30:09 +0000314 ConvertUsesToScalar(AI, NewAI, 0);
Chris Lattner6e733d32009-01-28 20:16:43 +0000315 }
Chris Lattner7809ecd2009-02-03 01:30:09 +0000316 NewAI->takeName(AI);
317 AI->eraseFromParent();
318 ++NumConverted;
319 Changed = true;
320 continue;
321 }
Chris Lattner6e733d32009-01-28 20:16:43 +0000322
Chris Lattner7809ecd2009-02-03 01:30:09 +0000323 // Otherwise, couldn't process this alloca.
Chris Lattnered7b41e2003-05-27 15:45:27 +0000324 }
325
326 return Changed;
327}
Chris Lattner5e062a12003-05-30 04:15:41 +0000328
Chris Lattnera10b29b2007-04-25 05:02:56 +0000329/// DoScalarReplacement - This alloca satisfied the isSafeAllocaToScalarRepl
330/// predicate, do SROA now.
331void SROA::DoScalarReplacement(AllocationInst *AI,
332 std::vector<AllocationInst*> &WorkList) {
Chris Lattner79b3bd32007-04-25 06:40:51 +0000333 DOUT << "Found inst to SROA: " << *AI;
Chris Lattnera10b29b2007-04-25 05:02:56 +0000334 SmallVector<AllocaInst*, 32> ElementAllocas;
335 if (const StructType *ST = dyn_cast<StructType>(AI->getAllocatedType())) {
336 ElementAllocas.reserve(ST->getNumContainedTypes());
337 for (unsigned i = 0, e = ST->getNumContainedTypes(); i != e; ++i) {
Owen Anderson50dead02009-07-15 23:53:25 +0000338 AllocaInst *NA = new AllocaInst(ST->getContainedType(i), 0,
Chris Lattnera10b29b2007-04-25 05:02:56 +0000339 AI->getAlignment(),
Daniel Dunbarfe09b202009-07-30 17:37:43 +0000340 AI->getName() + "." + Twine(i), AI);
Chris Lattnera10b29b2007-04-25 05:02:56 +0000341 ElementAllocas.push_back(NA);
342 WorkList.push_back(NA); // Add to worklist for recursive processing
343 }
344 } else {
345 const ArrayType *AT = cast<ArrayType>(AI->getAllocatedType());
346 ElementAllocas.reserve(AT->getNumElements());
347 const Type *ElTy = AT->getElementType();
348 for (unsigned i = 0, e = AT->getNumElements(); i != e; ++i) {
Owen Anderson50dead02009-07-15 23:53:25 +0000349 AllocaInst *NA = new AllocaInst(ElTy, 0, AI->getAlignment(),
Daniel Dunbarfe09b202009-07-30 17:37:43 +0000350 AI->getName() + "." + Twine(i), AI);
Chris Lattnera10b29b2007-04-25 05:02:56 +0000351 ElementAllocas.push_back(NA);
352 WorkList.push_back(NA); // Add to worklist for recursive processing
353 }
354 }
355
356 // Now that we have created the alloca instructions that we want to use,
357 // expand the getelementptr instructions to use them.
358 //
359 while (!AI->use_empty()) {
360 Instruction *User = cast<Instruction>(AI->use_back());
361 if (BitCastInst *BCInst = dyn_cast<BitCastInst>(User)) {
362 RewriteBitCastUserOfAlloca(BCInst, AI, ElementAllocas);
363 BCInst->eraseFromParent();
364 continue;
365 }
366
Chris Lattner2a6a6452008-06-23 17:11:23 +0000367 // Replace:
368 // %res = load { i32, i32 }* %alloc
369 // with:
370 // %load.0 = load i32* %alloc.0
371 // %insert.0 insertvalue { i32, i32 } zeroinitializer, i32 %load.0, 0
372 // %load.1 = load i32* %alloc.1
373 // %insert = insertvalue { i32, i32 } %insert.0, i32 %load.1, 1
Matthijs Kooijman02518142008-06-05 12:51:53 +0000374 // (Also works for arrays instead of structs)
375 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Owen Anderson9e9a0d52009-07-30 23:03:37 +0000376 Value *Insert = UndefValue::get(LI->getType());
Matthijs Kooijman02518142008-06-05 12:51:53 +0000377 for (unsigned i = 0, e = ElementAllocas.size(); i != e; ++i) {
378 Value *Load = new LoadInst(ElementAllocas[i], "load", LI);
379 Insert = InsertValueInst::Create(Insert, Load, i, "insert", LI);
380 }
381 LI->replaceAllUsesWith(Insert);
382 LI->eraseFromParent();
383 continue;
384 }
385
Chris Lattner2a6a6452008-06-23 17:11:23 +0000386 // Replace:
387 // store { i32, i32 } %val, { i32, i32 }* %alloc
388 // with:
389 // %val.0 = extractvalue { i32, i32 } %val, 0
390 // store i32 %val.0, i32* %alloc.0
391 // %val.1 = extractvalue { i32, i32 } %val, 1
392 // store i32 %val.1, i32* %alloc.1
Matthijs Kooijman02518142008-06-05 12:51:53 +0000393 // (Also works for arrays instead of structs)
394 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
395 Value *Val = SI->getOperand(0);
396 for (unsigned i = 0, e = ElementAllocas.size(); i != e; ++i) {
397 Value *Extract = ExtractValueInst::Create(Val, i, Val->getName(), SI);
398 new StoreInst(Extract, ElementAllocas[i], SI);
399 }
400 SI->eraseFromParent();
401 continue;
402 }
403
Chris Lattnera10b29b2007-04-25 05:02:56 +0000404 GetElementPtrInst *GEPI = cast<GetElementPtrInst>(User);
405 // We now know that the GEP is of the form: GEP <ptr>, 0, <cst>
406 unsigned Idx =
407 (unsigned)cast<ConstantInt>(GEPI->getOperand(2))->getZExtValue();
408
409 assert(Idx < ElementAllocas.size() && "Index out of range?");
410 AllocaInst *AllocaToUse = ElementAllocas[Idx];
411
412 Value *RepValue;
413 if (GEPI->getNumOperands() == 3) {
414 // Do not insert a new getelementptr instruction with zero indices, only
415 // to have it optimized out later.
416 RepValue = AllocaToUse;
417 } else {
418 // We are indexing deeply into the structure, so we still need a
419 // getelement ptr instruction to finish the indexing. This may be
420 // expanded itself once the worklist is rerun.
421 //
422 SmallVector<Value*, 8> NewArgs;
Owen Anderson1d0be152009-08-13 21:58:54 +0000423 NewArgs.push_back(Constant::getNullValue(
424 Type::getInt32Ty(AI->getContext())));
Chris Lattnera10b29b2007-04-25 05:02:56 +0000425 NewArgs.append(GEPI->op_begin()+3, GEPI->op_end());
Gabor Greif051a9502008-04-06 20:25:17 +0000426 RepValue = GetElementPtrInst::Create(AllocaToUse, NewArgs.begin(),
427 NewArgs.end(), "", GEPI);
Chris Lattnera10b29b2007-04-25 05:02:56 +0000428 RepValue->takeName(GEPI);
429 }
430
431 // If this GEP is to the start of the aggregate, check for memcpys.
Chris Lattnerd356a7e2009-01-07 06:25:07 +0000432 if (Idx == 0 && GEPI->hasAllZeroIndices())
433 RewriteBitCastUserOfAlloca(GEPI, AI, ElementAllocas);
Chris Lattnera10b29b2007-04-25 05:02:56 +0000434
435 // Move all of the users over to the new GEP.
436 GEPI->replaceAllUsesWith(RepValue);
437 // Delete the old GEP
438 GEPI->eraseFromParent();
439 }
440
441 // Finally, delete the Alloca instruction
442 AI->eraseFromParent();
443 NumReplaced++;
444}
445
Chris Lattner5e062a12003-05-30 04:15:41 +0000446
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000447/// isSafeElementUse - Check to see if this use is an allowed use for a
Chris Lattner8bf99112007-03-19 00:16:43 +0000448/// getelementptr instruction of an array aggregate allocation. isFirstElt
449/// indicates whether Ptr is known to the start of the aggregate.
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000450///
Chris Lattner39a1c042007-05-30 06:11:23 +0000451void SROA::isSafeElementUse(Value *Ptr, bool isFirstElt, AllocationInst *AI,
452 AllocaInfo &Info) {
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000453 for (Value::use_iterator I = Ptr->use_begin(), E = Ptr->use_end();
454 I != E; ++I) {
455 Instruction *User = cast<Instruction>(*I);
456 switch (User->getOpcode()) {
457 case Instruction::Load: break;
458 case Instruction::Store:
459 // Store is ok if storing INTO the pointer, not storing the pointer
Chris Lattner39a1c042007-05-30 06:11:23 +0000460 if (User->getOperand(0) == Ptr) return MarkUnsafe(Info);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000461 break;
462 case Instruction::GetElementPtr: {
463 GetElementPtrInst *GEP = cast<GetElementPtrInst>(User);
Chris Lattner8bf99112007-03-19 00:16:43 +0000464 bool AreAllZeroIndices = isFirstElt;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000465 if (GEP->getNumOperands() > 1) {
Chris Lattner8bf99112007-03-19 00:16:43 +0000466 if (!isa<ConstantInt>(GEP->getOperand(1)) ||
467 !cast<ConstantInt>(GEP->getOperand(1))->isZero())
Chris Lattner39a1c042007-05-30 06:11:23 +0000468 // Using pointer arithmetic to navigate the array.
469 return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000470
Chris Lattnerd356a7e2009-01-07 06:25:07 +0000471 if (AreAllZeroIndices)
472 AreAllZeroIndices = GEP->hasAllZeroIndices();
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000473 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000474 isSafeElementUse(GEP, AreAllZeroIndices, AI, Info);
475 if (Info.isUnsafe) return;
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000476 break;
477 }
Chris Lattner8bf99112007-03-19 00:16:43 +0000478 case Instruction::BitCast:
Chris Lattner39a1c042007-05-30 06:11:23 +0000479 if (isFirstElt) {
480 isSafeUseOfBitCastedAllocation(cast<BitCastInst>(User), AI, Info);
481 if (Info.isUnsafe) return;
Chris Lattner8bf99112007-03-19 00:16:43 +0000482 break;
Chris Lattner8bf99112007-03-19 00:16:43 +0000483 }
484 DOUT << " Transformation preventing inst: " << *User;
Chris Lattner39a1c042007-05-30 06:11:23 +0000485 return MarkUnsafe(Info);
486 case Instruction::Call:
487 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(User)) {
488 if (isFirstElt) {
489 isSafeMemIntrinsicOnAllocation(MI, AI, I.getOperandNo(), Info);
490 if (Info.isUnsafe) return;
491 break;
492 }
493 }
494 DOUT << " Transformation preventing inst: " << *User;
495 return MarkUnsafe(Info);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000496 default:
Bill Wendlingb7427032006-11-26 09:46:52 +0000497 DOUT << " Transformation preventing inst: " << *User;
Chris Lattner39a1c042007-05-30 06:11:23 +0000498 return MarkUnsafe(Info);
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000499 }
500 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000501 return; // All users look ok :)
Chris Lattnerf5990ed2004-11-14 04:24:28 +0000502}
503
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000504/// AllUsersAreLoads - Return true if all users of this value are loads.
505static bool AllUsersAreLoads(Value *Ptr) {
506 for (Value::use_iterator I = Ptr->use_begin(), E = Ptr->use_end();
507 I != E; ++I)
508 if (cast<Instruction>(*I)->getOpcode() != Instruction::Load)
509 return false;
Misha Brukmanfd939082005-04-21 23:48:37 +0000510 return true;
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000511}
512
Chris Lattner5e062a12003-05-30 04:15:41 +0000513/// isSafeUseOfAllocation - Check to see if this user is an allowed use for an
514/// aggregate allocation.
515///
Chris Lattner39a1c042007-05-30 06:11:23 +0000516void SROA::isSafeUseOfAllocation(Instruction *User, AllocationInst *AI,
517 AllocaInfo &Info) {
Chris Lattner372dda82007-03-05 07:52:57 +0000518 if (BitCastInst *C = dyn_cast<BitCastInst>(User))
Chris Lattner39a1c042007-05-30 06:11:23 +0000519 return isSafeUseOfBitCastedAllocation(C, AI, Info);
Chris Lattnerbe883a22003-11-25 21:09:18 +0000520
Chris Lattner6e733d32009-01-28 20:16:43 +0000521 if (LoadInst *LI = dyn_cast<LoadInst>(User))
522 if (!LI->isVolatile())
523 return;// Loads (returning a first class aggregrate) are always rewritable
Matthijs Kooijman02518142008-06-05 12:51:53 +0000524
Chris Lattner6e733d32009-01-28 20:16:43 +0000525 if (StoreInst *SI = dyn_cast<StoreInst>(User))
526 if (!SI->isVolatile() && SI->getOperand(0) != AI)
527 return;// Store is ok if storing INTO the pointer, not storing the pointer
Matthijs Kooijman02518142008-06-05 12:51:53 +0000528
Chris Lattner39a1c042007-05-30 06:11:23 +0000529 GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(User);
530 if (GEPI == 0)
531 return MarkUnsafe(Info);
532
Chris Lattnerbe883a22003-11-25 21:09:18 +0000533 gep_type_iterator I = gep_type_begin(GEPI), E = gep_type_end(GEPI);
534
Chris Lattner25de4862006-03-08 01:05:29 +0000535 // The GEP is not safe to transform if not of the form "GEP <ptr>, 0, <cst>".
Chris Lattnerbe883a22003-11-25 21:09:18 +0000536 if (I == E ||
Owen Andersona7235ea2009-07-31 20:28:14 +0000537 I.getOperand() != Constant::getNullValue(I.getOperand()->getType())) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000538 return MarkUnsafe(Info);
539 }
Chris Lattnerbe883a22003-11-25 21:09:18 +0000540
541 ++I;
Chris Lattner39a1c042007-05-30 06:11:23 +0000542 if (I == E) return MarkUnsafe(Info); // ran out of GEP indices??
Chris Lattnerbe883a22003-11-25 21:09:18 +0000543
Chris Lattner8bf99112007-03-19 00:16:43 +0000544 bool IsAllZeroIndices = true;
545
Chris Lattner88e6dc82008-08-23 05:21:06 +0000546 // If the first index is a non-constant index into an array, see if we can
547 // handle it as a special case.
Chris Lattnerbe883a22003-11-25 21:09:18 +0000548 if (const ArrayType *AT = dyn_cast<ArrayType>(*I)) {
Chris Lattner88e6dc82008-08-23 05:21:06 +0000549 if (!isa<ConstantInt>(I.getOperand())) {
Chris Lattner8bf99112007-03-19 00:16:43 +0000550 IsAllZeroIndices = 0;
Chris Lattner88e6dc82008-08-23 05:21:06 +0000551 uint64_t NumElements = AT->getNumElements();
Chris Lattner8bf99112007-03-19 00:16:43 +0000552
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000553 // If this is an array index and the index is not constant, we cannot
554 // promote... that is unless the array has exactly one or two elements in
555 // it, in which case we CAN promote it, but we have to canonicalize this
556 // out if this is the only problem.
Chris Lattner25de4862006-03-08 01:05:29 +0000557 if ((NumElements == 1 || NumElements == 2) &&
Chris Lattner39a1c042007-05-30 06:11:23 +0000558 AllUsersAreLoads(GEPI)) {
Devang Patel4afc90d2009-02-10 07:00:59 +0000559 Info.needsCleanup = true;
Chris Lattner39a1c042007-05-30 06:11:23 +0000560 return; // Canonicalization required!
561 }
562 return MarkUnsafe(Info);
Chris Lattnerd878ecd2004-11-14 05:00:19 +0000563 }
Chris Lattner5e062a12003-05-30 04:15:41 +0000564 }
Matthijs Kooijman5fac55f2008-10-06 16:23:31 +0000565
Chris Lattner88e6dc82008-08-23 05:21:06 +0000566 // Walk through the GEP type indices, checking the types that this indexes
567 // into.
568 for (; I != E; ++I) {
569 // Ignore struct elements, no extra checking needed for these.
570 if (isa<StructType>(*I))
571 continue;
572
Chris Lattner88e6dc82008-08-23 05:21:06 +0000573 ConstantInt *IdxVal = dyn_cast<ConstantInt>(I.getOperand());
574 if (!IdxVal) return MarkUnsafe(Info);
Matthijs Kooijman5fac55f2008-10-06 16:23:31 +0000575
576 // Are all indices still zero?
Chris Lattner88e6dc82008-08-23 05:21:06 +0000577 IsAllZeroIndices &= IdxVal->isZero();
Matthijs Kooijman5fac55f2008-10-06 16:23:31 +0000578
579 if (const ArrayType *AT = dyn_cast<ArrayType>(*I)) {
580 // This GEP indexes an array. Verify that this is an in-range constant
581 // integer. Specifically, consider A[0][i]. We cannot know that the user
582 // isn't doing invalid things like allowing i to index an out-of-range
583 // subscript that accesses A[1]. Because of this, we have to reject SROA
Dale Johannesenc0bc5472008-11-04 20:54:03 +0000584 // of any accesses into structs where any of the components are variables.
Matthijs Kooijman5fac55f2008-10-06 16:23:31 +0000585 if (IdxVal->getZExtValue() >= AT->getNumElements())
586 return MarkUnsafe(Info);
Dale Johannesenc0bc5472008-11-04 20:54:03 +0000587 } else if (const VectorType *VT = dyn_cast<VectorType>(*I)) {
588 if (IdxVal->getZExtValue() >= VT->getNumElements())
589 return MarkUnsafe(Info);
Matthijs Kooijman5fac55f2008-10-06 16:23:31 +0000590 }
Chris Lattner88e6dc82008-08-23 05:21:06 +0000591 }
592
Chris Lattnerbe883a22003-11-25 21:09:18 +0000593 // If there are any non-simple uses of this getelementptr, make sure to reject
594 // them.
Chris Lattner39a1c042007-05-30 06:11:23 +0000595 return isSafeElementUse(GEPI, IsAllZeroIndices, AI, Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000596}
597
598/// isSafeMemIntrinsicOnAllocation - Return true if the specified memory
599/// intrinsic can be promoted by SROA. At this point, we know that the operand
600/// of the memintrinsic is a pointer to the beginning of the allocation.
Chris Lattner39a1c042007-05-30 06:11:23 +0000601void SROA::isSafeMemIntrinsicOnAllocation(MemIntrinsic *MI, AllocationInst *AI,
602 unsigned OpNo, AllocaInfo &Info) {
Chris Lattner8bf99112007-03-19 00:16:43 +0000603 // If not constant length, give up.
604 ConstantInt *Length = dyn_cast<ConstantInt>(MI->getLength());
Chris Lattner39a1c042007-05-30 06:11:23 +0000605 if (!Length) return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000606
607 // If not the whole aggregate, give up.
Duncan Sands3cb36502007-11-04 14:43:57 +0000608 if (Length->getZExtValue() !=
Duncan Sands777d2302009-05-09 07:06:46 +0000609 TD->getTypeAllocSize(AI->getType()->getElementType()))
Chris Lattner39a1c042007-05-30 06:11:23 +0000610 return MarkUnsafe(Info);
Chris Lattner8bf99112007-03-19 00:16:43 +0000611
612 // We only know about memcpy/memset/memmove.
Chris Lattner3ce5e882009-03-08 03:37:16 +0000613 if (!isa<MemIntrinsic>(MI))
Chris Lattner39a1c042007-05-30 06:11:23 +0000614 return MarkUnsafe(Info);
615
616 // Otherwise, we can transform it. Determine whether this is a memcpy/set
617 // into or out of the aggregate.
618 if (OpNo == 1)
619 Info.isMemCpyDst = true;
620 else {
621 assert(OpNo == 2);
622 Info.isMemCpySrc = true;
623 }
Chris Lattner5e062a12003-05-30 04:15:41 +0000624}
625
Chris Lattner372dda82007-03-05 07:52:57 +0000626/// isSafeUseOfBitCastedAllocation - Return true if all users of this bitcast
627/// are
Chris Lattner39a1c042007-05-30 06:11:23 +0000628void SROA::isSafeUseOfBitCastedAllocation(BitCastInst *BC, AllocationInst *AI,
629 AllocaInfo &Info) {
Chris Lattner372dda82007-03-05 07:52:57 +0000630 for (Value::use_iterator UI = BC->use_begin(), E = BC->use_end();
631 UI != E; ++UI) {
632 if (BitCastInst *BCU = dyn_cast<BitCastInst>(UI)) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000633 isSafeUseOfBitCastedAllocation(BCU, AI, Info);
Chris Lattner372dda82007-03-05 07:52:57 +0000634 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(UI)) {
Chris Lattner39a1c042007-05-30 06:11:23 +0000635 isSafeMemIntrinsicOnAllocation(MI, AI, UI.getOperandNo(), Info);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000636 } else if (StoreInst *SI = dyn_cast<StoreInst>(UI)) {
Chris Lattner6e733d32009-01-28 20:16:43 +0000637 if (SI->isVolatile())
638 return MarkUnsafe(Info);
639
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000640 // If storing the entire alloca in one chunk through a bitcasted pointer
641 // to integer, we can transform it. This happens (for example) when you
642 // cast a {i32,i32}* to i64* and store through it. This is similar to the
643 // memcpy case and occurs in various "byval" cases and emulated memcpys.
644 if (isa<IntegerType>(SI->getOperand(0)->getType()) &&
Duncan Sands777d2302009-05-09 07:06:46 +0000645 TD->getTypeAllocSize(SI->getOperand(0)->getType()) ==
646 TD->getTypeAllocSize(AI->getType()->getElementType())) {
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000647 Info.isMemCpyDst = true;
648 continue;
649 }
650 return MarkUnsafe(Info);
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000651 } else if (LoadInst *LI = dyn_cast<LoadInst>(UI)) {
Chris Lattner6e733d32009-01-28 20:16:43 +0000652 if (LI->isVolatile())
653 return MarkUnsafe(Info);
654
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000655 // If loading the entire alloca in one chunk through a bitcasted pointer
656 // to integer, we can transform it. This happens (for example) when you
657 // cast a {i32,i32}* to i64* and load through it. This is similar to the
658 // memcpy case and occurs in various "byval" cases and emulated memcpys.
659 if (isa<IntegerType>(LI->getType()) &&
Duncan Sands777d2302009-05-09 07:06:46 +0000660 TD->getTypeAllocSize(LI->getType()) ==
661 TD->getTypeAllocSize(AI->getType()->getElementType())) {
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000662 Info.isMemCpySrc = true;
663 continue;
664 }
665 return MarkUnsafe(Info);
Devang Patel4afc90d2009-02-10 07:00:59 +0000666 } else if (isa<DbgInfoIntrinsic>(UI)) {
667 // If one user is DbgInfoIntrinsic then check if all users are
668 // DbgInfoIntrinsics.
669 if (OnlyUsedByDbgInfoIntrinsics(BC)) {
670 Info.needsCleanup = true;
671 return;
672 }
673 else
674 MarkUnsafe(Info);
675 }
676 else {
Chris Lattner39a1c042007-05-30 06:11:23 +0000677 return MarkUnsafe(Info);
Chris Lattner372dda82007-03-05 07:52:57 +0000678 }
Chris Lattner39a1c042007-05-30 06:11:23 +0000679 if (Info.isUnsafe) return;
Chris Lattner372dda82007-03-05 07:52:57 +0000680 }
Chris Lattner372dda82007-03-05 07:52:57 +0000681}
682
Chris Lattner8bf99112007-03-19 00:16:43 +0000683/// RewriteBitCastUserOfAlloca - BCInst (transitively) bitcasts AI, or indexes
684/// to its first element. Transform users of the cast to use the new values
685/// instead.
686void SROA::RewriteBitCastUserOfAlloca(Instruction *BCInst, AllocationInst *AI,
Chris Lattner372dda82007-03-05 07:52:57 +0000687 SmallVector<AllocaInst*, 32> &NewElts) {
Chris Lattner8bf99112007-03-19 00:16:43 +0000688 Value::use_iterator UI = BCInst->use_begin(), UE = BCInst->use_end();
689 while (UI != UE) {
Chris Lattnerd93afec2009-01-07 07:18:45 +0000690 Instruction *User = cast<Instruction>(*UI++);
691 if (BitCastInst *BCU = dyn_cast<BitCastInst>(User)) {
Chris Lattner372dda82007-03-05 07:52:57 +0000692 RewriteBitCastUserOfAlloca(BCU, AI, NewElts);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000693 if (BCU->use_empty()) BCU->eraseFromParent();
Chris Lattner372dda82007-03-05 07:52:57 +0000694 continue;
695 }
696
Chris Lattnerd93afec2009-01-07 07:18:45 +0000697 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(User)) {
698 // This must be memcpy/memmove/memset of the entire aggregate.
699 // Split into one per element.
700 RewriteMemIntrinUserOfAlloca(MI, BCInst, AI, NewElts);
Chris Lattner8bf99112007-03-19 00:16:43 +0000701 continue;
702 }
Chris Lattnerd93afec2009-01-07 07:18:45 +0000703
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000704 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000705 // If this is a store of the entire alloca from an integer, rewrite it.
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000706 RewriteStoreUserOfWholeAlloca(SI, AI, NewElts);
707 continue;
708 }
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000709
710 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
711 // If this is a load of the entire alloca to an integer, rewrite it.
712 RewriteLoadUserOfWholeAlloca(LI, AI, NewElts);
713 continue;
714 }
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000715
716 // Otherwise it must be some other user of a gep of the first pointer. Just
717 // leave these alone.
Chris Lattnerd93afec2009-01-07 07:18:45 +0000718 continue;
Chris Lattner5ffe6ac2009-01-08 05:42:05 +0000719 }
Chris Lattnerd93afec2009-01-07 07:18:45 +0000720}
721
722/// RewriteMemIntrinUserOfAlloca - MI is a memcpy/memset/memmove from or to AI.
723/// Rewrite it to copy or set the elements of the scalarized memory.
724void SROA::RewriteMemIntrinUserOfAlloca(MemIntrinsic *MI, Instruction *BCInst,
725 AllocationInst *AI,
726 SmallVector<AllocaInst*, 32> &NewElts) {
727
728 // If this is a memcpy/memmove, construct the other pointer as the
Chris Lattner88fe1ad2009-03-04 19:23:25 +0000729 // appropriate type. The "Other" pointer is the pointer that goes to memory
730 // that doesn't have anything to do with the alloca that we are promoting. For
731 // memset, this Value* stays null.
Chris Lattnerd93afec2009-01-07 07:18:45 +0000732 Value *OtherPtr = 0;
Owen Andersone922c022009-07-22 00:24:57 +0000733 LLVMContext &Context = MI->getContext();
Chris Lattnerdfe964c2009-03-08 03:59:00 +0000734 unsigned MemAlignment = MI->getAlignment();
Chris Lattner3ce5e882009-03-08 03:37:16 +0000735 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI)) { // memmove/memcopy
736 if (BCInst == MTI->getRawDest())
737 OtherPtr = MTI->getRawSource();
Chris Lattnerd93afec2009-01-07 07:18:45 +0000738 else {
Chris Lattner3ce5e882009-03-08 03:37:16 +0000739 assert(BCInst == MTI->getRawSource());
740 OtherPtr = MTI->getRawDest();
Chris Lattnerd93afec2009-01-07 07:18:45 +0000741 }
742 }
743
744 // If there is an other pointer, we want to convert it to the same pointer
745 // type as AI has, so we can GEP through it safely.
746 if (OtherPtr) {
747 // It is likely that OtherPtr is a bitcast, if so, remove it.
748 if (BitCastInst *BC = dyn_cast<BitCastInst>(OtherPtr))
749 OtherPtr = BC->getOperand(0);
750 // All zero GEPs are effectively bitcasts.
751 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(OtherPtr))
752 if (GEP->hasAllZeroIndices())
753 OtherPtr = GEP->getOperand(0);
Chris Lattner372dda82007-03-05 07:52:57 +0000754
Chris Lattnerd93afec2009-01-07 07:18:45 +0000755 if (ConstantExpr *BCE = dyn_cast<ConstantExpr>(OtherPtr))
756 if (BCE->getOpcode() == Instruction::BitCast)
757 OtherPtr = BCE->getOperand(0);
758
759 // If the pointer is not the right type, insert a bitcast to the right
760 // type.
761 if (OtherPtr->getType() != AI->getType())
762 OtherPtr = new BitCastInst(OtherPtr, AI->getType(), OtherPtr->getName(),
763 MI);
764 }
765
766 // Process each element of the aggregate.
767 Value *TheFn = MI->getOperand(0);
768 const Type *BytePtrTy = MI->getRawDest()->getType();
769 bool SROADest = MI->getRawDest() == BCInst;
770
Owen Anderson1d0be152009-08-13 21:58:54 +0000771 Constant *Zero = Constant::getNullValue(Type::getInt32Ty(MI->getContext()));
Chris Lattnerd93afec2009-01-07 07:18:45 +0000772
773 for (unsigned i = 0, e = NewElts.size(); i != e; ++i) {
774 // If this is a memcpy/memmove, emit a GEP of the other element address.
775 Value *OtherElt = 0;
Chris Lattner1541e0f2009-03-04 19:20:50 +0000776 unsigned OtherEltAlign = MemAlignment;
777
Chris Lattner372dda82007-03-05 07:52:57 +0000778 if (OtherPtr) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000779 Value *Idx[2] = { Zero,
780 ConstantInt::get(Type::getInt32Ty(MI->getContext()), i) };
Chris Lattnerd93afec2009-01-07 07:18:45 +0000781 OtherElt = GetElementPtrInst::Create(OtherPtr, Idx, Idx + 2,
Daniel Dunbarfe09b202009-07-30 17:37:43 +0000782 OtherPtr->getNameStr()+"."+Twine(i),
Chris Lattnerd93afec2009-01-07 07:18:45 +0000783 MI);
Chris Lattner1541e0f2009-03-04 19:20:50 +0000784 uint64_t EltOffset;
785 const PointerType *OtherPtrTy = cast<PointerType>(OtherPtr->getType());
786 if (const StructType *ST =
787 dyn_cast<StructType>(OtherPtrTy->getElementType())) {
788 EltOffset = TD->getStructLayout(ST)->getElementOffset(i);
789 } else {
790 const Type *EltTy =
791 cast<SequentialType>(OtherPtr->getType())->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000792 EltOffset = TD->getTypeAllocSize(EltTy)*i;
Chris Lattner1541e0f2009-03-04 19:20:50 +0000793 }
794
795 // The alignment of the other pointer is the guaranteed alignment of the
796 // element, which is affected by both the known alignment of the whole
797 // mem intrinsic and the alignment of the element. If the alignment of
798 // the memcpy (f.e.) is 32 but the element is at a 4-byte offset, then the
799 // known alignment is just 4 bytes.
800 OtherEltAlign = (unsigned)MinAlign(OtherEltAlign, EltOffset);
Chris Lattnerc14d3ca2007-03-08 06:36:54 +0000801 }
Chris Lattnerd93afec2009-01-07 07:18:45 +0000802
803 Value *EltPtr = NewElts[i];
Chris Lattner1541e0f2009-03-04 19:20:50 +0000804 const Type *EltTy = cast<PointerType>(EltPtr->getType())->getElementType();
Chris Lattnerd93afec2009-01-07 07:18:45 +0000805
806 // If we got down to a scalar, insert a load or store as appropriate.
807 if (EltTy->isSingleValueType()) {
Chris Lattner3ce5e882009-03-08 03:37:16 +0000808 if (isa<MemTransferInst>(MI)) {
Chris Lattner1541e0f2009-03-04 19:20:50 +0000809 if (SROADest) {
810 // From Other to Alloca.
811 Value *Elt = new LoadInst(OtherElt, "tmp", false, OtherEltAlign, MI);
812 new StoreInst(Elt, EltPtr, MI);
813 } else {
814 // From Alloca to Other.
815 Value *Elt = new LoadInst(EltPtr, "tmp", MI);
816 new StoreInst(Elt, OtherElt, false, OtherEltAlign, MI);
817 }
Chris Lattnerd93afec2009-01-07 07:18:45 +0000818 continue;
819 }
820 assert(isa<MemSetInst>(MI));
821
822 // If the stored element is zero (common case), just store a null
823 // constant.
824 Constant *StoreVal;
825 if (ConstantInt *CI = dyn_cast<ConstantInt>(MI->getOperand(2))) {
826 if (CI->isZero()) {
Owen Andersona7235ea2009-07-31 20:28:14 +0000827 StoreVal = Constant::getNullValue(EltTy); // 0.0, null, 0, <0,0>
Chris Lattnerd93afec2009-01-07 07:18:45 +0000828 } else {
829 // If EltTy is a vector type, get the element type.
Dan Gohman44118f02009-06-16 00:20:26 +0000830 const Type *ValTy = EltTy->getScalarType();
831
Chris Lattnerd93afec2009-01-07 07:18:45 +0000832 // Construct an integer with the right value.
833 unsigned EltSize = TD->getTypeSizeInBits(ValTy);
834 APInt OneVal(EltSize, CI->getZExtValue());
835 APInt TotalVal(OneVal);
836 // Set each byte.
837 for (unsigned i = 0; 8*i < EltSize; ++i) {
838 TotalVal = TotalVal.shl(8);
839 TotalVal |= OneVal;
840 }
841
842 // Convert the integer value to the appropriate type.
Owen Andersoneed707b2009-07-24 23:12:02 +0000843 StoreVal = ConstantInt::get(Context, TotalVal);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000844 if (isa<PointerType>(ValTy))
Owen Andersonbaf3c402009-07-29 18:55:55 +0000845 StoreVal = ConstantExpr::getIntToPtr(StoreVal, ValTy);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000846 else if (ValTy->isFloatingPoint())
Owen Andersonbaf3c402009-07-29 18:55:55 +0000847 StoreVal = ConstantExpr::getBitCast(StoreVal, ValTy);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000848 assert(StoreVal->getType() == ValTy && "Type mismatch!");
849
850 // If the requested value was a vector constant, create it.
851 if (EltTy != ValTy) {
852 unsigned NumElts = cast<VectorType>(ValTy)->getNumElements();
853 SmallVector<Constant*, 16> Elts(NumElts, StoreVal);
Owen Andersonaf7ec972009-07-28 21:19:26 +0000854 StoreVal = ConstantVector::get(&Elts[0], NumElts);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000855 }
856 }
857 new StoreInst(StoreVal, EltPtr, MI);
858 continue;
859 }
860 // Otherwise, if we're storing a byte variable, use a memset call for
861 // this element.
862 }
863
864 // Cast the element pointer to BytePtrTy.
865 if (EltPtr->getType() != BytePtrTy)
866 EltPtr = new BitCastInst(EltPtr, BytePtrTy, EltPtr->getNameStr(), MI);
867
868 // Cast the other pointer (if we have one) to BytePtrTy.
869 if (OtherElt && OtherElt->getType() != BytePtrTy)
870 OtherElt = new BitCastInst(OtherElt, BytePtrTy,OtherElt->getNameStr(),
871 MI);
872
Duncan Sands777d2302009-05-09 07:06:46 +0000873 unsigned EltSize = TD->getTypeAllocSize(EltTy);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000874
875 // Finally, insert the meminst for this element.
Chris Lattner3ce5e882009-03-08 03:37:16 +0000876 if (isa<MemTransferInst>(MI)) {
Chris Lattnerd93afec2009-01-07 07:18:45 +0000877 Value *Ops[] = {
878 SROADest ? EltPtr : OtherElt, // Dest ptr
879 SROADest ? OtherElt : EltPtr, // Src ptr
Owen Andersoneed707b2009-07-24 23:12:02 +0000880 ConstantInt::get(MI->getOperand(3)->getType(), EltSize), // Size
Owen Anderson1d0be152009-08-13 21:58:54 +0000881 // Align
882 ConstantInt::get(Type::getInt32Ty(MI->getContext()), OtherEltAlign)
Chris Lattnerd93afec2009-01-07 07:18:45 +0000883 };
884 CallInst::Create(TheFn, Ops, Ops + 4, "", MI);
885 } else {
886 assert(isa<MemSetInst>(MI));
887 Value *Ops[] = {
888 EltPtr, MI->getOperand(2), // Dest, Value,
Owen Andersoneed707b2009-07-24 23:12:02 +0000889 ConstantInt::get(MI->getOperand(3)->getType(), EltSize), // Size
Chris Lattnerd93afec2009-01-07 07:18:45 +0000890 Zero // Align
891 };
892 CallInst::Create(TheFn, Ops, Ops + 4, "", MI);
893 }
Chris Lattner372dda82007-03-05 07:52:57 +0000894 }
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000895 MI->eraseFromParent();
Chris Lattner372dda82007-03-05 07:52:57 +0000896}
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000897
898/// RewriteStoreUserOfWholeAlloca - We found an store of an integer that
899/// overwrites the entire allocation. Extract out the pieces of the stored
900/// integer and store them individually.
901void SROA::RewriteStoreUserOfWholeAlloca(StoreInst *SI,
902 AllocationInst *AI,
903 SmallVector<AllocaInst*, 32> &NewElts){
904 // Extract each element out of the integer according to its structure offset
905 // and store the element value to the individual alloca.
906 Value *SrcVal = SI->getOperand(0);
907 const Type *AllocaEltTy = AI->getType()->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000908 uint64_t AllocaSizeBits = TD->getTypeAllocSizeInBits(AllocaEltTy);
Chris Lattnerd93afec2009-01-07 07:18:45 +0000909
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000910 // If this isn't a store of an integer to the whole alloca, it may be a store
911 // to the first element. Just ignore the store in this case and normal SROA
Eli Friedman41b33f42009-06-01 09:14:32 +0000912 // will handle it.
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000913 if (!isa<IntegerType>(SrcVal->getType()) ||
Eli Friedman41b33f42009-06-01 09:14:32 +0000914 TD->getTypeAllocSizeInBits(SrcVal->getType()) != AllocaSizeBits)
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000915 return;
Eli Friedman41b33f42009-06-01 09:14:32 +0000916 // Handle tail padding by extending the operand
917 if (TD->getTypeSizeInBits(SrcVal->getType()) != AllocaSizeBits)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000918 SrcVal = new ZExtInst(SrcVal,
Owen Anderson1d0be152009-08-13 21:58:54 +0000919 IntegerType::get(SI->getContext(), AllocaSizeBits),
920 "", SI);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000921
922 DOUT << "PROMOTING STORE TO WHOLE ALLOCA: " << *AI << *SI;
923
924 // There are two forms here: AI could be an array or struct. Both cases
925 // have different ways to compute the element offset.
926 if (const StructType *EltSTy = dyn_cast<StructType>(AllocaEltTy)) {
927 const StructLayout *Layout = TD->getStructLayout(EltSTy);
928
929 for (unsigned i = 0, e = NewElts.size(); i != e; ++i) {
930 // Get the number of bits to shift SrcVal to get the value.
931 const Type *FieldTy = EltSTy->getElementType(i);
932 uint64_t Shift = Layout->getElementOffsetInBits(i);
933
934 if (TD->isBigEndian())
Duncan Sands777d2302009-05-09 07:06:46 +0000935 Shift = AllocaSizeBits-Shift-TD->getTypeAllocSizeInBits(FieldTy);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000936
937 Value *EltVal = SrcVal;
938 if (Shift) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000939 Value *ShiftVal = ConstantInt::get(EltVal->getType(), Shift);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000940 EltVal = BinaryOperator::CreateLShr(EltVal, ShiftVal,
941 "sroa.store.elt", SI);
942 }
943
944 // Truncate down to an integer of the right size.
945 uint64_t FieldSizeBits = TD->getTypeSizeInBits(FieldTy);
Chris Lattner583dd602009-01-09 18:18:43 +0000946
947 // Ignore zero sized fields like {}, they obviously contain no data.
948 if (FieldSizeBits == 0) continue;
949
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000950 if (FieldSizeBits != AllocaSizeBits)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000951 EltVal = new TruncInst(EltVal,
Owen Anderson1d0be152009-08-13 21:58:54 +0000952 IntegerType::get(SI->getContext(), FieldSizeBits),
953 "", SI);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000954 Value *DestField = NewElts[i];
955 if (EltVal->getType() == FieldTy) {
956 // Storing to an integer field of this size, just do it.
957 } else if (FieldTy->isFloatingPoint() || isa<VectorType>(FieldTy)) {
958 // Bitcast to the right element type (for fp/vector values).
959 EltVal = new BitCastInst(EltVal, FieldTy, "", SI);
960 } else {
961 // Otherwise, bitcast the dest pointer (for aggregates).
962 DestField = new BitCastInst(DestField,
Owen Andersondebcb012009-07-29 22:17:13 +0000963 PointerType::getUnqual(EltVal->getType()),
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000964 "", SI);
965 }
966 new StoreInst(EltVal, DestField, SI);
967 }
968
969 } else {
970 const ArrayType *ATy = cast<ArrayType>(AllocaEltTy);
971 const Type *ArrayEltTy = ATy->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000972 uint64_t ElementOffset = TD->getTypeAllocSizeInBits(ArrayEltTy);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000973 uint64_t ElementSizeBits = TD->getTypeSizeInBits(ArrayEltTy);
974
975 uint64_t Shift;
976
977 if (TD->isBigEndian())
978 Shift = AllocaSizeBits-ElementOffset;
979 else
980 Shift = 0;
981
982 for (unsigned i = 0, e = NewElts.size(); i != e; ++i) {
Chris Lattner583dd602009-01-09 18:18:43 +0000983 // Ignore zero sized fields like {}, they obviously contain no data.
984 if (ElementSizeBits == 0) continue;
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000985
986 Value *EltVal = SrcVal;
987 if (Shift) {
Owen Andersoneed707b2009-07-24 23:12:02 +0000988 Value *ShiftVal = ConstantInt::get(EltVal->getType(), Shift);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000989 EltVal = BinaryOperator::CreateLShr(EltVal, ShiftVal,
990 "sroa.store.elt", SI);
991 }
992
993 // Truncate down to an integer of the right size.
994 if (ElementSizeBits != AllocaSizeBits)
Owen Andersonfa5cbd62009-07-03 19:42:02 +0000995 EltVal = new TruncInst(EltVal,
Owen Anderson1d0be152009-08-13 21:58:54 +0000996 IntegerType::get(SI->getContext(),
997 ElementSizeBits),"",SI);
Chris Lattnerd2fa7812009-01-07 08:11:13 +0000998 Value *DestField = NewElts[i];
999 if (EltVal->getType() == ArrayEltTy) {
1000 // Storing to an integer field of this size, just do it.
1001 } else if (ArrayEltTy->isFloatingPoint() || isa<VectorType>(ArrayEltTy)) {
1002 // Bitcast to the right element type (for fp/vector values).
1003 EltVal = new BitCastInst(EltVal, ArrayEltTy, "", SI);
1004 } else {
1005 // Otherwise, bitcast the dest pointer (for aggregates).
1006 DestField = new BitCastInst(DestField,
Owen Andersondebcb012009-07-29 22:17:13 +00001007 PointerType::getUnqual(EltVal->getType()),
Chris Lattnerd2fa7812009-01-07 08:11:13 +00001008 "", SI);
1009 }
1010 new StoreInst(EltVal, DestField, SI);
1011
1012 if (TD->isBigEndian())
1013 Shift -= ElementOffset;
1014 else
1015 Shift += ElementOffset;
1016 }
1017 }
1018
1019 SI->eraseFromParent();
1020}
1021
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001022/// RewriteLoadUserOfWholeAlloca - We found an load of the entire allocation to
1023/// an integer. Load the individual pieces to form the aggregate value.
1024void SROA::RewriteLoadUserOfWholeAlloca(LoadInst *LI, AllocationInst *AI,
1025 SmallVector<AllocaInst*, 32> &NewElts) {
1026 // Extract each element out of the NewElts according to its structure offset
1027 // and form the result value.
1028 const Type *AllocaEltTy = AI->getType()->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +00001029 uint64_t AllocaSizeBits = TD->getTypeAllocSizeInBits(AllocaEltTy);
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001030
1031 // If this isn't a load of the whole alloca to an integer, it may be a load
1032 // of the first element. Just ignore the load in this case and normal SROA
Eli Friedman41b33f42009-06-01 09:14:32 +00001033 // will handle it.
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001034 if (!isa<IntegerType>(LI->getType()) ||
Eli Friedman41b33f42009-06-01 09:14:32 +00001035 TD->getTypeAllocSizeInBits(LI->getType()) != AllocaSizeBits)
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001036 return;
1037
1038 DOUT << "PROMOTING LOAD OF WHOLE ALLOCA: " << *AI << *LI;
1039
1040 // There are two forms here: AI could be an array or struct. Both cases
1041 // have different ways to compute the element offset.
1042 const StructLayout *Layout = 0;
1043 uint64_t ArrayEltBitOffset = 0;
1044 if (const StructType *EltSTy = dyn_cast<StructType>(AllocaEltTy)) {
1045 Layout = TD->getStructLayout(EltSTy);
1046 } else {
1047 const Type *ArrayEltTy = cast<ArrayType>(AllocaEltTy)->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +00001048 ArrayEltBitOffset = TD->getTypeAllocSizeInBits(ArrayEltTy);
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001049 }
Owen Andersone922c022009-07-22 00:24:57 +00001050
Owen Andersone922c022009-07-22 00:24:57 +00001051 Value *ResultVal =
Owen Anderson1d0be152009-08-13 21:58:54 +00001052 Constant::getNullValue(IntegerType::get(LI->getContext(), AllocaSizeBits));
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001053
1054 for (unsigned i = 0, e = NewElts.size(); i != e; ++i) {
1055 // Load the value from the alloca. If the NewElt is an aggregate, cast
1056 // the pointer to an integer of the same size before doing the load.
1057 Value *SrcField = NewElts[i];
1058 const Type *FieldTy =
1059 cast<PointerType>(SrcField->getType())->getElementType();
Chris Lattner583dd602009-01-09 18:18:43 +00001060 uint64_t FieldSizeBits = TD->getTypeSizeInBits(FieldTy);
1061
1062 // Ignore zero sized fields like {}, they obviously contain no data.
1063 if (FieldSizeBits == 0) continue;
1064
Owen Anderson1d0be152009-08-13 21:58:54 +00001065 const IntegerType *FieldIntTy = IntegerType::get(LI->getContext(),
1066 FieldSizeBits);
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001067 if (!isa<IntegerType>(FieldTy) && !FieldTy->isFloatingPoint() &&
1068 !isa<VectorType>(FieldTy))
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001069 SrcField = new BitCastInst(SrcField,
Owen Andersondebcb012009-07-29 22:17:13 +00001070 PointerType::getUnqual(FieldIntTy),
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001071 "", LI);
1072 SrcField = new LoadInst(SrcField, "sroa.load.elt", LI);
1073
1074 // If SrcField is a fp or vector of the right size but that isn't an
1075 // integer type, bitcast to an integer so we can shift it.
1076 if (SrcField->getType() != FieldIntTy)
1077 SrcField = new BitCastInst(SrcField, FieldIntTy, "", LI);
1078
1079 // Zero extend the field to be the same size as the final alloca so that
1080 // we can shift and insert it.
1081 if (SrcField->getType() != ResultVal->getType())
1082 SrcField = new ZExtInst(SrcField, ResultVal->getType(), "", LI);
1083
1084 // Determine the number of bits to shift SrcField.
1085 uint64_t Shift;
1086 if (Layout) // Struct case.
1087 Shift = Layout->getElementOffsetInBits(i);
1088 else // Array case.
1089 Shift = i*ArrayEltBitOffset;
1090
1091 if (TD->isBigEndian())
1092 Shift = AllocaSizeBits-Shift-FieldIntTy->getBitWidth();
1093
1094 if (Shift) {
Owen Andersoneed707b2009-07-24 23:12:02 +00001095 Value *ShiftVal = ConstantInt::get(SrcField->getType(), Shift);
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001096 SrcField = BinaryOperator::CreateShl(SrcField, ShiftVal, "", LI);
1097 }
1098
1099 ResultVal = BinaryOperator::CreateOr(SrcField, ResultVal, "", LI);
1100 }
Eli Friedman41b33f42009-06-01 09:14:32 +00001101
1102 // Handle tail padding by truncating the result
1103 if (TD->getTypeSizeInBits(LI->getType()) != AllocaSizeBits)
1104 ResultVal = new TruncInst(ResultVal, LI->getType(), "", LI);
1105
Chris Lattner5ffe6ac2009-01-08 05:42:05 +00001106 LI->replaceAllUsesWith(ResultVal);
1107 LI->eraseFromParent();
1108}
1109
Chris Lattner372dda82007-03-05 07:52:57 +00001110
Duncan Sands3cb36502007-11-04 14:43:57 +00001111/// HasPadding - Return true if the specified type has any structure or
1112/// alignment padding, false otherwise.
Duncan Sandsa0fcc082008-06-04 08:21:45 +00001113static bool HasPadding(const Type *Ty, const TargetData &TD) {
Chris Lattner39a1c042007-05-30 06:11:23 +00001114 if (const StructType *STy = dyn_cast<StructType>(Ty)) {
1115 const StructLayout *SL = TD.getStructLayout(STy);
1116 unsigned PrevFieldBitOffset = 0;
1117 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
Duncan Sands3cb36502007-11-04 14:43:57 +00001118 unsigned FieldBitOffset = SL->getElementOffsetInBits(i);
1119
Chris Lattner39a1c042007-05-30 06:11:23 +00001120 // Padding in sub-elements?
Duncan Sandsa0fcc082008-06-04 08:21:45 +00001121 if (HasPadding(STy->getElementType(i), TD))
Chris Lattner39a1c042007-05-30 06:11:23 +00001122 return true;
Duncan Sands3cb36502007-11-04 14:43:57 +00001123
Chris Lattner39a1c042007-05-30 06:11:23 +00001124 // Check to see if there is any padding between this element and the
1125 // previous one.
1126 if (i) {
Duncan Sands3cb36502007-11-04 14:43:57 +00001127 unsigned PrevFieldEnd =
Chris Lattner39a1c042007-05-30 06:11:23 +00001128 PrevFieldBitOffset+TD.getTypeSizeInBits(STy->getElementType(i-1));
1129 if (PrevFieldEnd < FieldBitOffset)
1130 return true;
1131 }
Duncan Sands3cb36502007-11-04 14:43:57 +00001132
Chris Lattner39a1c042007-05-30 06:11:23 +00001133 PrevFieldBitOffset = FieldBitOffset;
1134 }
Duncan Sands3cb36502007-11-04 14:43:57 +00001135
Chris Lattner39a1c042007-05-30 06:11:23 +00001136 // Check for tail padding.
1137 if (unsigned EltCount = STy->getNumElements()) {
1138 unsigned PrevFieldEnd = PrevFieldBitOffset +
1139 TD.getTypeSizeInBits(STy->getElementType(EltCount-1));
Duncan Sands3cb36502007-11-04 14:43:57 +00001140 if (PrevFieldEnd < SL->getSizeInBits())
Chris Lattner39a1c042007-05-30 06:11:23 +00001141 return true;
1142 }
1143
1144 } else if (const ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
Duncan Sandsa0fcc082008-06-04 08:21:45 +00001145 return HasPadding(ATy->getElementType(), TD);
Duncan Sands3cb36502007-11-04 14:43:57 +00001146 } else if (const VectorType *VTy = dyn_cast<VectorType>(Ty)) {
Duncan Sandsa0fcc082008-06-04 08:21:45 +00001147 return HasPadding(VTy->getElementType(), TD);
Chris Lattner39a1c042007-05-30 06:11:23 +00001148 }
Duncan Sands777d2302009-05-09 07:06:46 +00001149 return TD.getTypeSizeInBits(Ty) != TD.getTypeAllocSizeInBits(Ty);
Chris Lattner39a1c042007-05-30 06:11:23 +00001150}
Chris Lattner372dda82007-03-05 07:52:57 +00001151
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001152/// isSafeStructAllocaToScalarRepl - Check to see if the specified allocation of
1153/// an aggregate can be broken down into elements. Return 0 if not, 3 if safe,
1154/// or 1 if safe after canonicalization has been performed.
Chris Lattner5e062a12003-05-30 04:15:41 +00001155///
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001156int SROA::isSafeAllocaToScalarRepl(AllocationInst *AI) {
Chris Lattner5e062a12003-05-30 04:15:41 +00001157 // Loop over the use list of the alloca. We can only transform it if all of
1158 // the users are safe to transform.
Chris Lattner39a1c042007-05-30 06:11:23 +00001159 AllocaInfo Info;
1160
Chris Lattner5e062a12003-05-30 04:15:41 +00001161 for (Value::use_iterator I = AI->use_begin(), E = AI->use_end();
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001162 I != E; ++I) {
Chris Lattner39a1c042007-05-30 06:11:23 +00001163 isSafeUseOfAllocation(cast<Instruction>(*I), AI, Info);
1164 if (Info.isUnsafe) {
Bill Wendlingb7427032006-11-26 09:46:52 +00001165 DOUT << "Cannot transform: " << *AI << " due to user: " << **I;
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001166 return 0;
Chris Lattner5e062a12003-05-30 04:15:41 +00001167 }
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001168 }
Chris Lattner39a1c042007-05-30 06:11:23 +00001169
1170 // Okay, we know all the users are promotable. If the aggregate is a memcpy
1171 // source and destination, we have to be careful. In particular, the memcpy
1172 // could be moving around elements that live in structure padding of the LLVM
1173 // types, but may actually be used. In these cases, we refuse to promote the
1174 // struct.
1175 if (Info.isMemCpySrc && Info.isMemCpyDst &&
Chris Lattner56c38522009-01-07 06:34:28 +00001176 HasPadding(AI->getType()->getElementType(), *TD))
Chris Lattner39a1c042007-05-30 06:11:23 +00001177 return 0;
Duncan Sands3cb36502007-11-04 14:43:57 +00001178
Chris Lattner39a1c042007-05-30 06:11:23 +00001179 // If we require cleanup, return 1, otherwise return 3.
Devang Patel4afc90d2009-02-10 07:00:59 +00001180 return Info.needsCleanup ? 1 : 3;
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001181}
1182
Devang Patel4afc90d2009-02-10 07:00:59 +00001183/// CleanupGEP - GEP is used by an Alloca, which can be prompted after the GEP
1184/// is canonicalized here.
1185void SROA::CleanupGEP(GetElementPtrInst *GEPI) {
1186 gep_type_iterator I = gep_type_begin(GEPI);
1187 ++I;
1188
Devang Patel7afe8fa2009-02-10 19:28:07 +00001189 const ArrayType *AT = dyn_cast<ArrayType>(*I);
1190 if (!AT)
1191 return;
1192
1193 uint64_t NumElements = AT->getNumElements();
1194
1195 if (isa<ConstantInt>(I.getOperand()))
1196 return;
1197
1198 if (NumElements == 1) {
Owen Anderson1d0be152009-08-13 21:58:54 +00001199 GEPI->setOperand(2,
1200 Constant::getNullValue(Type::getInt32Ty(GEPI->getContext())));
Devang Patel7afe8fa2009-02-10 19:28:07 +00001201 return;
1202 }
Devang Patel4afc90d2009-02-10 07:00:59 +00001203
Devang Patel7afe8fa2009-02-10 19:28:07 +00001204 assert(NumElements == 2 && "Unhandled case!");
1205 // All users of the GEP must be loads. At each use of the GEP, insert
1206 // two loads of the appropriate indexed GEP and select between them.
Owen Anderson333c4002009-07-09 23:48:35 +00001207 Value *IsOne = new ICmpInst(GEPI, ICmpInst::ICMP_NE, I.getOperand(),
Owen Andersona7235ea2009-07-31 20:28:14 +00001208 Constant::getNullValue(I.getOperand()->getType()),
Owen Anderson333c4002009-07-09 23:48:35 +00001209 "isone");
Devang Patel7afe8fa2009-02-10 19:28:07 +00001210 // Insert the new GEP instructions, which are properly indexed.
1211 SmallVector<Value*, 8> Indices(GEPI->op_begin()+1, GEPI->op_end());
Owen Anderson1d0be152009-08-13 21:58:54 +00001212 Indices[1] = Constant::getNullValue(Type::getInt32Ty(GEPI->getContext()));
Devang Patel7afe8fa2009-02-10 19:28:07 +00001213 Value *ZeroIdx = GetElementPtrInst::Create(GEPI->getOperand(0),
1214 Indices.begin(),
1215 Indices.end(),
1216 GEPI->getName()+".0", GEPI);
Owen Anderson1d0be152009-08-13 21:58:54 +00001217 Indices[1] = ConstantInt::get(Type::getInt32Ty(GEPI->getContext()), 1);
Devang Patel7afe8fa2009-02-10 19:28:07 +00001218 Value *OneIdx = GetElementPtrInst::Create(GEPI->getOperand(0),
1219 Indices.begin(),
1220 Indices.end(),
1221 GEPI->getName()+".1", GEPI);
1222 // Replace all loads of the variable index GEP with loads from both
1223 // indexes and a select.
1224 while (!GEPI->use_empty()) {
1225 LoadInst *LI = cast<LoadInst>(GEPI->use_back());
1226 Value *Zero = new LoadInst(ZeroIdx, LI->getName()+".0", LI);
1227 Value *One = new LoadInst(OneIdx , LI->getName()+".1", LI);
1228 Value *R = SelectInst::Create(IsOne, One, Zero, LI->getName(), LI);
1229 LI->replaceAllUsesWith(R);
1230 LI->eraseFromParent();
Devang Patel4afc90d2009-02-10 07:00:59 +00001231 }
Devang Patel7afe8fa2009-02-10 19:28:07 +00001232 GEPI->eraseFromParent();
Devang Patel4afc90d2009-02-10 07:00:59 +00001233}
1234
Devang Patel7afe8fa2009-02-10 19:28:07 +00001235
Devang Patel4afc90d2009-02-10 07:00:59 +00001236/// CleanupAllocaUsers - If SROA reported that it can promote the specified
Chris Lattnerf5990ed2004-11-14 04:24:28 +00001237/// allocation, but only if cleaned up, perform the cleanups required.
Devang Patel4afc90d2009-02-10 07:00:59 +00001238void SROA::CleanupAllocaUsers(AllocationInst *AI) {
Chris Lattnerd878ecd2004-11-14 05:00:19 +00001239 // At this point, we know that the end result will be SROA'd and promoted, so
1240 // we can insert ugly code if required so long as sroa+mem2reg will clean it
1241 // up.
1242 for (Value::use_iterator UI = AI->use_begin(), E = AI->use_end();
1243 UI != E; ) {
Devang Patel4afc90d2009-02-10 07:00:59 +00001244 User *U = *UI++;
1245 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U))
1246 CleanupGEP(GEPI);
Jay Foad0906b1b2009-06-06 17:49:35 +00001247 else {
1248 Instruction *I = cast<Instruction>(U);
Devang Patel4afc90d2009-02-10 07:00:59 +00001249 SmallVector<DbgInfoIntrinsic *, 2> DbgInUses;
Zhou Shengb0c41992009-03-18 12:48:48 +00001250 if (!isa<StoreInst>(I) && OnlyUsedByDbgInfoIntrinsics(I, &DbgInUses)) {
Devang Patel4afc90d2009-02-10 07:00:59 +00001251 // Safe to remove debug info uses.
1252 while (!DbgInUses.empty()) {
1253 DbgInfoIntrinsic *DI = DbgInUses.back(); DbgInUses.pop_back();
1254 DI->eraseFromParent();
Chris Lattnerd878ecd2004-11-14 05:00:19 +00001255 }
Devang Patel4afc90d2009-02-10 07:00:59 +00001256 I->eraseFromParent();
Chris Lattnerd878ecd2004-11-14 05:00:19 +00001257 }
1258 }
1259 }
Chris Lattner5e062a12003-05-30 04:15:41 +00001260}
Chris Lattnera1888942005-12-12 07:19:13 +00001261
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001262/// MergeInType - Add the 'In' type to the accumulated type (Accum) so far at
1263/// the offset specified by Offset (which is specified in bytes).
Chris Lattnerde6df882006-04-14 21:42:41 +00001264///
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001265/// There are two cases we handle here:
1266/// 1) A union of vector types of the same size and potentially its elements.
Chris Lattnerd22dbdf2006-12-15 07:32:38 +00001267/// Here we turn element accesses into insert/extract element operations.
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001268/// This promotes a <4 x float> with a store of float to the third element
1269/// into a <4 x float> that uses insert element.
1270/// 2) A fully general blob of memory, which we turn into some (potentially
1271/// large) integer type with extract and insert operations where the loads
1272/// and stores would mutate the memory.
Chris Lattner7809ecd2009-02-03 01:30:09 +00001273static void MergeInType(const Type *In, uint64_t Offset, const Type *&VecTy,
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001274 unsigned AllocaSize, const TargetData &TD,
Owen Andersone922c022009-07-22 00:24:57 +00001275 LLVMContext &Context) {
Chris Lattner7809ecd2009-02-03 01:30:09 +00001276 // If this could be contributing to a vector, analyze it.
Owen Anderson1d0be152009-08-13 21:58:54 +00001277 if (VecTy != Type::getVoidTy(Context)) { // either null or a vector type.
Chris Lattner996d7a92009-02-02 18:02:59 +00001278
Chris Lattner7809ecd2009-02-03 01:30:09 +00001279 // If the In type is a vector that is the same size as the alloca, see if it
1280 // matches the existing VecTy.
1281 if (const VectorType *VInTy = dyn_cast<VectorType>(In)) {
1282 if (VInTy->getBitWidth()/8 == AllocaSize && Offset == 0) {
1283 // If we're storing/loading a vector of the right size, allow it as a
1284 // vector. If this the first vector we see, remember the type so that
1285 // we know the element size.
1286 if (VecTy == 0)
1287 VecTy = VInTy;
1288 return;
1289 }
Owen Anderson1d0be152009-08-13 21:58:54 +00001290 } else if (In == Type::getFloatTy(Context) ||
1291 In == Type::getDoubleTy(Context) ||
Chris Lattner7809ecd2009-02-03 01:30:09 +00001292 (isa<IntegerType>(In) && In->getPrimitiveSizeInBits() >= 8 &&
1293 isPowerOf2_32(In->getPrimitiveSizeInBits()))) {
1294 // If we're accessing something that could be an element of a vector, see
1295 // if the implied vector agrees with what we already have and if Offset is
1296 // compatible with it.
1297 unsigned EltSize = In->getPrimitiveSizeInBits()/8;
1298 if (Offset % EltSize == 0 &&
1299 AllocaSize % EltSize == 0 &&
1300 (VecTy == 0 ||
1301 cast<VectorType>(VecTy)->getElementType()
1302 ->getPrimitiveSizeInBits()/8 == EltSize)) {
1303 if (VecTy == 0)
Owen Andersondebcb012009-07-29 22:17:13 +00001304 VecTy = VectorType::get(In, AllocaSize/EltSize);
Chris Lattner7809ecd2009-02-03 01:30:09 +00001305 return;
1306 }
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001307 }
1308 }
1309
Chris Lattner7809ecd2009-02-03 01:30:09 +00001310 // Otherwise, we have a case that we can't handle with an optimized vector
1311 // form. We can still turn this into a large integer.
Owen Anderson1d0be152009-08-13 21:58:54 +00001312 VecTy = Type::getVoidTy(Context);
Chris Lattnera1888942005-12-12 07:19:13 +00001313}
1314
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001315/// CanConvertToScalar - V is a pointer. If we can convert the pointee and all
Chris Lattner7809ecd2009-02-03 01:30:09 +00001316/// its accesses to use a to single vector type, return true, and set VecTy to
1317/// the new type. If we could convert the alloca into a single promotable
1318/// integer, return true but set VecTy to VoidTy. Further, if the use is not a
1319/// completely trivial use that mem2reg could promote, set IsNotTrivial. Offset
1320/// is the current offset from the base of the alloca being analyzed.
Chris Lattnera1888942005-12-12 07:19:13 +00001321///
Chris Lattner1a3257b2009-02-03 18:15:05 +00001322/// If we see at least one access to the value that is as a vector type, set the
1323/// SawVec flag.
1324///
1325bool SROA::CanConvertToScalar(Value *V, bool &IsNotTrivial, const Type *&VecTy,
1326 bool &SawVec, uint64_t Offset,
Chris Lattner7809ecd2009-02-03 01:30:09 +00001327 unsigned AllocaSize) {
Chris Lattnera1888942005-12-12 07:19:13 +00001328 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI!=E; ++UI) {
1329 Instruction *User = cast<Instruction>(*UI);
1330
1331 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001332 // Don't break volatile loads.
Chris Lattner6e733d32009-01-28 20:16:43 +00001333 if (LI->isVolatile())
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001334 return false;
Owen Andersone922c022009-07-22 00:24:57 +00001335 MergeInType(LI->getType(), Offset, VecTy,
1336 AllocaSize, *TD, V->getContext());
Chris Lattner1a3257b2009-02-03 18:15:05 +00001337 SawVec |= isa<VectorType>(LI->getType());
Chris Lattnercf321862009-01-07 06:39:58 +00001338 continue;
1339 }
1340
1341 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
Reid Spencer24d6da52007-01-21 00:29:26 +00001342 // Storing the pointer, not into the value?
Chris Lattner6e733d32009-01-28 20:16:43 +00001343 if (SI->getOperand(0) == V || SI->isVolatile()) return 0;
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001344 MergeInType(SI->getOperand(0)->getType(), Offset,
Owen Andersone922c022009-07-22 00:24:57 +00001345 VecTy, AllocaSize, *TD, V->getContext());
Chris Lattner1a3257b2009-02-03 18:15:05 +00001346 SawVec |= isa<VectorType>(SI->getOperand(0)->getType());
Chris Lattnercf321862009-01-07 06:39:58 +00001347 continue;
1348 }
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001349
1350 if (BitCastInst *BCI = dyn_cast<BitCastInst>(User)) {
Chris Lattner1a3257b2009-02-03 18:15:05 +00001351 if (!CanConvertToScalar(BCI, IsNotTrivial, VecTy, SawVec, Offset,
1352 AllocaSize))
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001353 return false;
Chris Lattnera1888942005-12-12 07:19:13 +00001354 IsNotTrivial = true;
Chris Lattnercf321862009-01-07 06:39:58 +00001355 continue;
1356 }
1357
1358 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(User)) {
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001359 // If this is a GEP with a variable indices, we can't handle it.
1360 if (!GEP->hasAllConstantIndices())
1361 return false;
Chris Lattnercf321862009-01-07 06:39:58 +00001362
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001363 // Compute the offset that this GEP adds to the pointer.
1364 SmallVector<Value*, 8> Indices(GEP->op_begin()+1, GEP->op_end());
1365 uint64_t GEPOffset = TD->getIndexedOffset(GEP->getOperand(0)->getType(),
1366 &Indices[0], Indices.size());
1367 // See if all uses can be converted.
Chris Lattner1a3257b2009-02-03 18:15:05 +00001368 if (!CanConvertToScalar(GEP, IsNotTrivial, VecTy, SawVec,Offset+GEPOffset,
Chris Lattner7809ecd2009-02-03 01:30:09 +00001369 AllocaSize))
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001370 return false;
1371 IsNotTrivial = true;
1372 continue;
Chris Lattnera1888942005-12-12 07:19:13 +00001373 }
Chris Lattner3ce5e882009-03-08 03:37:16 +00001374
Chris Lattner3d730f72009-02-03 02:01:43 +00001375 // If this is a constant sized memset of a constant value (e.g. 0) we can
1376 // handle it.
Chris Lattner3ce5e882009-03-08 03:37:16 +00001377 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
1378 // Store of constant value and constant size.
1379 if (isa<ConstantInt>(MSI->getValue()) &&
1380 isa<ConstantInt>(MSI->getLength())) {
Chris Lattner3ce5e882009-03-08 03:37:16 +00001381 IsNotTrivial = true;
1382 continue;
1383 }
Chris Lattner3d730f72009-02-03 02:01:43 +00001384 }
Chris Lattnerc5704872009-03-08 04:04:21 +00001385
1386 // If this is a memcpy or memmove into or out of the whole allocation, we
1387 // can handle it like a load or store of the scalar type.
1388 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(User)) {
1389 if (ConstantInt *Len = dyn_cast<ConstantInt>(MTI->getLength()))
1390 if (Len->getZExtValue() == AllocaSize && Offset == 0) {
1391 IsNotTrivial = true;
1392 continue;
1393 }
1394 }
Chris Lattnerdfe964c2009-03-08 03:59:00 +00001395
Devang Patel00e389c2009-03-06 07:03:54 +00001396 // Ignore dbg intrinsic.
1397 if (isa<DbgInfoIntrinsic>(User))
1398 continue;
1399
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001400 // Otherwise, we cannot handle this!
1401 return false;
Chris Lattnera1888942005-12-12 07:19:13 +00001402 }
1403
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001404 return true;
Chris Lattnera1888942005-12-12 07:19:13 +00001405}
1406
Chris Lattnera1888942005-12-12 07:19:13 +00001407
1408/// ConvertUsesToScalar - Convert all of the users of Ptr to use the new alloca
Chris Lattnerde6df882006-04-14 21:42:41 +00001409/// directly. This happens when we are converting an "integer union" to a
1410/// single integer scalar, or when we are converting a "vector union" to a
1411/// vector with insert/extractelement instructions.
1412///
1413/// Offset is an offset from the original alloca, in bits that need to be
1414/// shifted to the right. By the end of this, there should be no uses of Ptr.
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001415void SROA::ConvertUsesToScalar(Value *Ptr, AllocaInst *NewAI, uint64_t Offset) {
Chris Lattnera1888942005-12-12 07:19:13 +00001416 while (!Ptr->use_empty()) {
1417 Instruction *User = cast<Instruction>(Ptr->use_back());
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001418
Chris Lattnercf321862009-01-07 06:39:58 +00001419 if (BitCastInst *CI = dyn_cast<BitCastInst>(User)) {
Chris Lattnerb10e0da2008-01-30 00:39:15 +00001420 ConvertUsesToScalar(CI, NewAI, Offset);
Chris Lattnera1888942005-12-12 07:19:13 +00001421 CI->eraseFromParent();
Chris Lattnercf321862009-01-07 06:39:58 +00001422 continue;
1423 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001424
Chris Lattnercf321862009-01-07 06:39:58 +00001425 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(User)) {
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001426 // Compute the offset that this GEP adds to the pointer.
1427 SmallVector<Value*, 8> Indices(GEP->op_begin()+1, GEP->op_end());
1428 uint64_t GEPOffset = TD->getIndexedOffset(GEP->getOperand(0)->getType(),
1429 &Indices[0], Indices.size());
1430 ConvertUsesToScalar(GEP, NewAI, Offset+GEPOffset*8);
Chris Lattnera1888942005-12-12 07:19:13 +00001431 GEP->eraseFromParent();
Chris Lattnercf321862009-01-07 06:39:58 +00001432 continue;
Chris Lattnera1888942005-12-12 07:19:13 +00001433 }
Chris Lattner3d730f72009-02-03 02:01:43 +00001434
Chris Lattner9bc67da2009-02-03 19:45:44 +00001435 IRBuilder<> Builder(User->getParent(), User);
1436
1437 if (LoadInst *LI = dyn_cast<LoadInst>(User)) {
Chris Lattner6e011152009-02-03 21:01:03 +00001438 // The load is a bit extract from NewAI shifted right by Offset bits.
1439 Value *LoadedVal = Builder.CreateLoad(NewAI, "tmp");
1440 Value *NewLoadVal
1441 = ConvertScalar_ExtractValue(LoadedVal, LI->getType(), Offset, Builder);
1442 LI->replaceAllUsesWith(NewLoadVal);
Chris Lattner9bc67da2009-02-03 19:45:44 +00001443 LI->eraseFromParent();
1444 continue;
1445 }
1446
1447 if (StoreInst *SI = dyn_cast<StoreInst>(User)) {
1448 assert(SI->getOperand(0) != Ptr && "Consistency error!");
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001449 // FIXME: Remove once builder has Twine API.
1450 Value *Old = Builder.CreateLoad(NewAI, (NewAI->getName()+".in").str().c_str());
Chris Lattner9bc67da2009-02-03 19:45:44 +00001451 Value *New = ConvertScalar_InsertValue(SI->getOperand(0), Old, Offset,
1452 Builder);
1453 Builder.CreateStore(New, NewAI);
1454 SI->eraseFromParent();
1455 continue;
1456 }
1457
Chris Lattner3d730f72009-02-03 02:01:43 +00001458 // If this is a constant sized memset of a constant value (e.g. 0) we can
1459 // transform it into a store of the expanded constant value.
1460 if (MemSetInst *MSI = dyn_cast<MemSetInst>(User)) {
1461 assert(MSI->getRawDest() == Ptr && "Consistency error!");
1462 unsigned NumBytes = cast<ConstantInt>(MSI->getLength())->getZExtValue();
Chris Lattner33e24ad2009-04-21 16:52:12 +00001463 if (NumBytes != 0) {
1464 unsigned Val = cast<ConstantInt>(MSI->getValue())->getZExtValue();
1465
1466 // Compute the value replicated the right number of times.
1467 APInt APVal(NumBytes*8, Val);
Chris Lattner3d730f72009-02-03 02:01:43 +00001468
Chris Lattner33e24ad2009-04-21 16:52:12 +00001469 // Splat the value if non-zero.
1470 if (Val)
1471 for (unsigned i = 1; i != NumBytes; ++i)
1472 APVal |= APVal << 8;
1473
Daniel Dunbar6e0d1cb2009-07-25 04:41:11 +00001474 // FIXME: Remove once builder has Twine API.
1475 Value *Old = Builder.CreateLoad(NewAI, (NewAI->getName()+".in").str().c_str());
Owen Andersone922c022009-07-22 00:24:57 +00001476 Value *New = ConvertScalar_InsertValue(
Owen Andersoneed707b2009-07-24 23:12:02 +00001477 ConstantInt::get(User->getContext(), APVal),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001478 Old, Offset, Builder);
Chris Lattner33e24ad2009-04-21 16:52:12 +00001479 Builder.CreateStore(New, NewAI);
1480 }
Chris Lattner3d730f72009-02-03 02:01:43 +00001481 MSI->eraseFromParent();
1482 continue;
1483 }
Chris Lattnerc5704872009-03-08 04:04:21 +00001484
1485 // If this is a memcpy or memmove into or out of the whole allocation, we
1486 // can handle it like a load or store of the scalar type.
1487 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(User)) {
1488 assert(Offset == 0 && "must be store to start of alloca");
1489
1490 // If the source and destination are both to the same alloca, then this is
1491 // a noop copy-to-self, just delete it. Otherwise, emit a load and store
1492 // as appropriate.
1493 AllocaInst *OrigAI = cast<AllocaInst>(Ptr->getUnderlyingObject());
1494
1495 if (MTI->getSource()->getUnderlyingObject() != OrigAI) {
1496 // Dest must be OrigAI, change this to be a load from the original
1497 // pointer (bitcasted), then a store to our new alloca.
1498 assert(MTI->getRawDest() == Ptr && "Neither use is of pointer?");
1499 Value *SrcPtr = MTI->getSource();
1500 SrcPtr = Builder.CreateBitCast(SrcPtr, NewAI->getType());
1501
1502 LoadInst *SrcVal = Builder.CreateLoad(SrcPtr, "srcval");
1503 SrcVal->setAlignment(MTI->getAlignment());
1504 Builder.CreateStore(SrcVal, NewAI);
1505 } else if (MTI->getDest()->getUnderlyingObject() != OrigAI) {
1506 // Src must be OrigAI, change this to be a load from NewAI then a store
1507 // through the original dest pointer (bitcasted).
1508 assert(MTI->getRawSource() == Ptr && "Neither use is of pointer?");
1509 LoadInst *SrcVal = Builder.CreateLoad(NewAI, "srcval");
1510
1511 Value *DstPtr = Builder.CreateBitCast(MTI->getDest(), NewAI->getType());
1512 StoreInst *NewStore = Builder.CreateStore(SrcVal, DstPtr);
1513 NewStore->setAlignment(MTI->getAlignment());
1514 } else {
1515 // Noop transfer. Src == Dst
1516 }
1517
1518
1519 MTI->eraseFromParent();
1520 continue;
1521 }
Chris Lattnerdfe964c2009-03-08 03:59:00 +00001522
Devang Patel00e389c2009-03-06 07:03:54 +00001523 // If user is a dbg info intrinsic then it is safe to remove it.
1524 if (isa<DbgInfoIntrinsic>(User)) {
1525 User->eraseFromParent();
1526 continue;
1527 }
1528
Torok Edwinc23197a2009-07-14 16:55:14 +00001529 llvm_unreachable("Unsupported operation!");
Chris Lattnera1888942005-12-12 07:19:13 +00001530 }
1531}
Chris Lattner79b3bd32007-04-25 06:40:51 +00001532
Chris Lattner6e011152009-02-03 21:01:03 +00001533/// ConvertScalar_ExtractValue - Extract a value of type ToType from an integer
1534/// or vector value FromVal, extracting the bits from the offset specified by
1535/// Offset. This returns the value, which is of type ToType.
1536///
1537/// This happens when we are converting an "integer union" to a single
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001538/// integer scalar, or when we are converting a "vector union" to a vector with
1539/// insert/extractelement instructions.
Chris Lattner800de312008-02-29 07:03:13 +00001540///
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001541/// Offset is an offset from the original alloca, in bits that need to be
Chris Lattner6e011152009-02-03 21:01:03 +00001542/// shifted to the right.
1543Value *SROA::ConvertScalar_ExtractValue(Value *FromVal, const Type *ToType,
1544 uint64_t Offset, IRBuilder<> &Builder) {
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001545 // If the load is of the whole new alloca, no conversion is needed.
Chris Lattner6e011152009-02-03 21:01:03 +00001546 if (FromVal->getType() == ToType && Offset == 0)
1547 return FromVal;
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001548
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001549 // If the result alloca is a vector type, this is either an element
1550 // access or a bitcast to another vector type of the same size.
Chris Lattner6e011152009-02-03 21:01:03 +00001551 if (const VectorType *VTy = dyn_cast<VectorType>(FromVal->getType())) {
1552 if (isa<VectorType>(ToType))
1553 return Builder.CreateBitCast(FromVal, ToType, "tmp");
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001554
1555 // Otherwise it must be an element access.
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001556 unsigned Elt = 0;
1557 if (Offset) {
Duncan Sands777d2302009-05-09 07:06:46 +00001558 unsigned EltSize = TD->getTypeAllocSizeInBits(VTy->getElementType());
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001559 Elt = Offset/EltSize;
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001560 assert(EltSize*Elt == Offset && "Invalid modulus in validity checking");
Chris Lattner800de312008-02-29 07:03:13 +00001561 }
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001562 // Return the element extracted out of it.
Owen Anderson1d0be152009-08-13 21:58:54 +00001563 Value *V = Builder.CreateExtractElement(FromVal, ConstantInt::get(
1564 Type::getInt32Ty(FromVal->getContext()), Elt), "tmp");
Chris Lattner6e011152009-02-03 21:01:03 +00001565 if (V->getType() != ToType)
1566 V = Builder.CreateBitCast(V, ToType, "tmp");
Chris Lattner7809ecd2009-02-03 01:30:09 +00001567 return V;
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001568 }
Chris Lattner1aa70562009-02-03 21:08:45 +00001569
1570 // If ToType is a first class aggregate, extract out each of the pieces and
1571 // use insertvalue's to form the FCA.
1572 if (const StructType *ST = dyn_cast<StructType>(ToType)) {
1573 const StructLayout &Layout = *TD->getStructLayout(ST);
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001574 Value *Res = UndefValue::get(ST);
Chris Lattner1aa70562009-02-03 21:08:45 +00001575 for (unsigned i = 0, e = ST->getNumElements(); i != e; ++i) {
1576 Value *Elt = ConvertScalar_ExtractValue(FromVal, ST->getElementType(i),
Chris Lattnere991ced2009-02-06 04:34:07 +00001577 Offset+Layout.getElementOffsetInBits(i),
Chris Lattner1aa70562009-02-03 21:08:45 +00001578 Builder);
1579 Res = Builder.CreateInsertValue(Res, Elt, i, "tmp");
1580 }
1581 return Res;
1582 }
1583
1584 if (const ArrayType *AT = dyn_cast<ArrayType>(ToType)) {
Duncan Sands777d2302009-05-09 07:06:46 +00001585 uint64_t EltSize = TD->getTypeAllocSizeInBits(AT->getElementType());
Owen Anderson9e9a0d52009-07-30 23:03:37 +00001586 Value *Res = UndefValue::get(AT);
Chris Lattner1aa70562009-02-03 21:08:45 +00001587 for (unsigned i = 0, e = AT->getNumElements(); i != e; ++i) {
1588 Value *Elt = ConvertScalar_ExtractValue(FromVal, AT->getElementType(),
1589 Offset+i*EltSize, Builder);
1590 Res = Builder.CreateInsertValue(Res, Elt, i, "tmp");
1591 }
1592 return Res;
1593 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001594
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001595 // Otherwise, this must be a union that was converted to an integer value.
Chris Lattner6e011152009-02-03 21:01:03 +00001596 const IntegerType *NTy = cast<IntegerType>(FromVal->getType());
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001597
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001598 // If this is a big-endian system and the load is narrower than the
1599 // full alloca type, we need to do a shift to get the right bits.
1600 int ShAmt = 0;
Chris Lattner56c38522009-01-07 06:34:28 +00001601 if (TD->isBigEndian()) {
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001602 // On big-endian machines, the lowest bit is stored at the bit offset
1603 // from the pointer given by getTypeStoreSizeInBits. This matters for
1604 // integers with a bitwidth that is not a multiple of 8.
Chris Lattner56c38522009-01-07 06:34:28 +00001605 ShAmt = TD->getTypeStoreSizeInBits(NTy) -
Chris Lattner6e011152009-02-03 21:01:03 +00001606 TD->getTypeStoreSizeInBits(ToType) - Offset;
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001607 } else {
1608 ShAmt = Offset;
1609 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001610
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001611 // Note: we support negative bitwidths (with shl) which are not defined.
1612 // We do this to support (f.e.) loads off the end of a structure where
1613 // only some bits are used.
1614 if (ShAmt > 0 && (unsigned)ShAmt < NTy->getBitWidth())
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001615 FromVal = Builder.CreateLShr(FromVal,
Owen Andersoneed707b2009-07-24 23:12:02 +00001616 ConstantInt::get(FromVal->getType(),
Chris Lattner1aa70562009-02-03 21:08:45 +00001617 ShAmt), "tmp");
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001618 else if (ShAmt < 0 && (unsigned)-ShAmt < NTy->getBitWidth())
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001619 FromVal = Builder.CreateShl(FromVal,
Owen Andersoneed707b2009-07-24 23:12:02 +00001620 ConstantInt::get(FromVal->getType(),
Chris Lattner1aa70562009-02-03 21:08:45 +00001621 -ShAmt), "tmp");
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001622
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001623 // Finally, unconditionally truncate the integer to the right width.
Chris Lattner6e011152009-02-03 21:01:03 +00001624 unsigned LIBitWidth = TD->getTypeSizeInBits(ToType);
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001625 if (LIBitWidth < NTy->getBitWidth())
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001626 FromVal =
Owen Anderson1d0be152009-08-13 21:58:54 +00001627 Builder.CreateTrunc(FromVal, IntegerType::get(FromVal->getContext(),
1628 LIBitWidth), "tmp");
Chris Lattner55a683d2009-02-03 07:08:57 +00001629 else if (LIBitWidth > NTy->getBitWidth())
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001630 FromVal =
Owen Anderson1d0be152009-08-13 21:58:54 +00001631 Builder.CreateZExt(FromVal, IntegerType::get(FromVal->getContext(),
1632 LIBitWidth), "tmp");
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001633
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001634 // If the result is an integer, this is a trunc or bitcast.
Chris Lattner6e011152009-02-03 21:01:03 +00001635 if (isa<IntegerType>(ToType)) {
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001636 // Should be done.
Chris Lattner6e011152009-02-03 21:01:03 +00001637 } else if (ToType->isFloatingPoint() || isa<VectorType>(ToType)) {
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001638 // Just do a bitcast, we know the sizes match up.
Chris Lattner6e011152009-02-03 21:01:03 +00001639 FromVal = Builder.CreateBitCast(FromVal, ToType, "tmp");
Chris Lattner800de312008-02-29 07:03:13 +00001640 } else {
Chris Lattner9d34c4d2008-02-29 07:12:06 +00001641 // Otherwise must be a pointer.
Chris Lattner6e011152009-02-03 21:01:03 +00001642 FromVal = Builder.CreateIntToPtr(FromVal, ToType, "tmp");
Chris Lattner800de312008-02-29 07:03:13 +00001643 }
Chris Lattner6e011152009-02-03 21:01:03 +00001644 assert(FromVal->getType() == ToType && "Didn't convert right?");
1645 return FromVal;
Chris Lattner800de312008-02-29 07:03:13 +00001646}
1647
1648
Chris Lattner9b872db2009-02-03 19:30:11 +00001649/// ConvertScalar_InsertValue - Insert the value "SV" into the existing integer
1650/// or vector value "Old" at the offset specified by Offset.
1651///
1652/// This happens when we are converting an "integer union" to a
Chris Lattner800de312008-02-29 07:03:13 +00001653/// single integer scalar, or when we are converting a "vector union" to a
1654/// vector with insert/extractelement instructions.
1655///
1656/// Offset is an offset from the original alloca, in bits that need to be
Chris Lattner9b872db2009-02-03 19:30:11 +00001657/// shifted to the right.
1658Value *SROA::ConvertScalar_InsertValue(Value *SV, Value *Old,
Chris Lattner65a65022009-02-03 19:41:50 +00001659 uint64_t Offset, IRBuilder<> &Builder) {
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001660
Chris Lattner800de312008-02-29 07:03:13 +00001661 // Convert the stored type to the actual type, shift it left to insert
1662 // then 'or' into place.
Chris Lattner9b872db2009-02-03 19:30:11 +00001663 const Type *AllocaType = Old->getType();
Owen Andersone922c022009-07-22 00:24:57 +00001664 LLVMContext &Context = Old->getContext();
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001665
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001666 if (const VectorType *VTy = dyn_cast<VectorType>(AllocaType)) {
Duncan Sands777d2302009-05-09 07:06:46 +00001667 uint64_t VecSize = TD->getTypeAllocSizeInBits(VTy);
1668 uint64_t ValSize = TD->getTypeAllocSizeInBits(SV->getType());
Chris Lattner29e64172009-03-08 04:17:04 +00001669
1670 // Changing the whole vector with memset or with an access of a different
1671 // vector type?
1672 if (ValSize == VecSize)
1673 return Builder.CreateBitCast(SV, AllocaType, "tmp");
1674
Duncan Sands777d2302009-05-09 07:06:46 +00001675 uint64_t EltSize = TD->getTypeAllocSizeInBits(VTy->getElementType());
Chris Lattner29e64172009-03-08 04:17:04 +00001676
1677 // Must be an element insertion.
1678 unsigned Elt = Offset/EltSize;
1679
1680 if (SV->getType() != VTy->getElementType())
1681 SV = Builder.CreateBitCast(SV, VTy->getElementType(), "tmp");
1682
1683 SV = Builder.CreateInsertElement(Old, SV,
Owen Anderson1d0be152009-08-13 21:58:54 +00001684 ConstantInt::get(Type::getInt32Ty(SV->getContext()), Elt),
Chris Lattner29e64172009-03-08 04:17:04 +00001685 "tmp");
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001686 return SV;
1687 }
Chris Lattner9b872db2009-02-03 19:30:11 +00001688
1689 // If SV is a first-class aggregate value, insert each value recursively.
1690 if (const StructType *ST = dyn_cast<StructType>(SV->getType())) {
1691 const StructLayout &Layout = *TD->getStructLayout(ST);
1692 for (unsigned i = 0, e = ST->getNumElements(); i != e; ++i) {
Chris Lattner65a65022009-02-03 19:41:50 +00001693 Value *Elt = Builder.CreateExtractValue(SV, i, "tmp");
Chris Lattner9b872db2009-02-03 19:30:11 +00001694 Old = ConvertScalar_InsertValue(Elt, Old,
Chris Lattnere991ced2009-02-06 04:34:07 +00001695 Offset+Layout.getElementOffsetInBits(i),
Chris Lattner65a65022009-02-03 19:41:50 +00001696 Builder);
Chris Lattner9b872db2009-02-03 19:30:11 +00001697 }
1698 return Old;
1699 }
1700
1701 if (const ArrayType *AT = dyn_cast<ArrayType>(SV->getType())) {
Duncan Sands777d2302009-05-09 07:06:46 +00001702 uint64_t EltSize = TD->getTypeAllocSizeInBits(AT->getElementType());
Chris Lattner9b872db2009-02-03 19:30:11 +00001703 for (unsigned i = 0, e = AT->getNumElements(); i != e; ++i) {
Chris Lattner65a65022009-02-03 19:41:50 +00001704 Value *Elt = Builder.CreateExtractValue(SV, i, "tmp");
1705 Old = ConvertScalar_InsertValue(Elt, Old, Offset+i*EltSize, Builder);
Chris Lattner9b872db2009-02-03 19:30:11 +00001706 }
1707 return Old;
1708 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001709
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001710 // If SV is a float, convert it to the appropriate integer type.
Chris Lattner9b872db2009-02-03 19:30:11 +00001711 // If it is a pointer, do the same.
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001712 unsigned SrcWidth = TD->getTypeSizeInBits(SV->getType());
1713 unsigned DestWidth = TD->getTypeSizeInBits(AllocaType);
1714 unsigned SrcStoreWidth = TD->getTypeStoreSizeInBits(SV->getType());
1715 unsigned DestStoreWidth = TD->getTypeStoreSizeInBits(AllocaType);
1716 if (SV->getType()->isFloatingPoint() || isa<VectorType>(SV->getType()))
Owen Anderson1d0be152009-08-13 21:58:54 +00001717 SV = Builder.CreateBitCast(SV,
1718 IntegerType::get(SV->getContext(),SrcWidth), "tmp");
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001719 else if (isa<PointerType>(SV->getType()))
Owen Anderson1d0be152009-08-13 21:58:54 +00001720 SV = Builder.CreatePtrToInt(SV, TD->getIntPtrType(SV->getContext()), "tmp");
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001721
Chris Lattner7809ecd2009-02-03 01:30:09 +00001722 // Zero extend or truncate the value if needed.
1723 if (SV->getType() != AllocaType) {
1724 if (SV->getType()->getPrimitiveSizeInBits() <
1725 AllocaType->getPrimitiveSizeInBits())
Chris Lattner65a65022009-02-03 19:41:50 +00001726 SV = Builder.CreateZExt(SV, AllocaType, "tmp");
Chris Lattner7809ecd2009-02-03 01:30:09 +00001727 else {
1728 // Truncation may be needed if storing more than the alloca can hold
1729 // (undefined behavior).
Chris Lattner65a65022009-02-03 19:41:50 +00001730 SV = Builder.CreateTrunc(SV, AllocaType, "tmp");
Chris Lattner7809ecd2009-02-03 01:30:09 +00001731 SrcWidth = DestWidth;
1732 SrcStoreWidth = DestStoreWidth;
1733 }
1734 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001735
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001736 // If this is a big-endian system and the store is narrower than the
1737 // full alloca type, we need to do a shift to get the right bits.
1738 int ShAmt = 0;
1739 if (TD->isBigEndian()) {
1740 // On big-endian machines, the lowest bit is stored at the bit offset
1741 // from the pointer given by getTypeStoreSizeInBits. This matters for
1742 // integers with a bitwidth that is not a multiple of 8.
1743 ShAmt = DestStoreWidth - SrcStoreWidth - Offset;
Chris Lattner800de312008-02-29 07:03:13 +00001744 } else {
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001745 ShAmt = Offset;
1746 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001747
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001748 // Note: we support negative bitwidths (with shr) which are not defined.
1749 // We do this to support (f.e.) stores off the end of a structure where
1750 // only some bits in the structure are set.
1751 APInt Mask(APInt::getLowBitsSet(DestWidth, SrcWidth));
1752 if (ShAmt > 0 && (unsigned)ShAmt < DestWidth) {
Owen Andersoneed707b2009-07-24 23:12:02 +00001753 SV = Builder.CreateShl(SV, ConstantInt::get(SV->getType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001754 ShAmt), "tmp");
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001755 Mask <<= ShAmt;
1756 } else if (ShAmt < 0 && (unsigned)-ShAmt < DestWidth) {
Owen Andersoneed707b2009-07-24 23:12:02 +00001757 SV = Builder.CreateLShr(SV, ConstantInt::get(SV->getType(),
Owen Andersonfa5cbd62009-07-03 19:42:02 +00001758 -ShAmt), "tmp");
Duncan Sands0e7c46b2009-02-02 09:53:14 +00001759 Mask = Mask.lshr(-ShAmt);
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001760 }
Duncan Sands4b3dfbd2009-02-02 10:06:20 +00001761
Chris Lattner2e0d5f82009-01-31 02:28:54 +00001762 // Mask out the bits we are about to insert from the old value, and or
1763 // in the new bits.
1764 if (SrcWidth != DestWidth) {
1765 assert(DestWidth > SrcWidth);
Owen Andersoneed707b2009-07-24 23:12:02 +00001766 Old = Builder.CreateAnd(Old, ConstantInt::get(Context, ~Mask), "mask");
Chris Lattner65a65022009-02-03 19:41:50 +00001767 SV = Builder.CreateOr(Old, SV, "ins");
Chris Lattner800de312008-02-29 07:03:13 +00001768 }
1769 return SV;
1770}
1771
1772
Chris Lattner79b3bd32007-04-25 06:40:51 +00001773
1774/// PointsToConstantGlobal - Return true if V (possibly indirectly) points to
1775/// some part of a constant global variable. This intentionally only accepts
1776/// constant expressions because we don't can't rewrite arbitrary instructions.
1777static bool PointsToConstantGlobal(Value *V) {
1778 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
1779 return GV->isConstant();
1780 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V))
1781 if (CE->getOpcode() == Instruction::BitCast ||
1782 CE->getOpcode() == Instruction::GetElementPtr)
1783 return PointsToConstantGlobal(CE->getOperand(0));
1784 return false;
1785}
1786
1787/// isOnlyCopiedFromConstantGlobal - Recursively walk the uses of a (derived)
1788/// pointer to an alloca. Ignore any reads of the pointer, return false if we
1789/// see any stores or other unknown uses. If we see pointer arithmetic, keep
1790/// track of whether it moves the pointer (with isOffset) but otherwise traverse
1791/// the uses. If we see a memcpy/memmove that targets an unoffseted pointer to
1792/// the alloca, and if the source pointer is a pointer to a constant global, we
1793/// can optimize this.
1794static bool isOnlyCopiedFromConstantGlobal(Value *V, Instruction *&TheCopy,
1795 bool isOffset) {
1796 for (Value::use_iterator UI = V->use_begin(), E = V->use_end(); UI!=E; ++UI) {
Chris Lattner6e733d32009-01-28 20:16:43 +00001797 if (LoadInst *LI = dyn_cast<LoadInst>(*UI))
1798 // Ignore non-volatile loads, they are always ok.
1799 if (!LI->isVolatile())
1800 continue;
1801
Chris Lattner79b3bd32007-04-25 06:40:51 +00001802 if (BitCastInst *BCI = dyn_cast<BitCastInst>(*UI)) {
1803 // If uses of the bitcast are ok, we are ok.
1804 if (!isOnlyCopiedFromConstantGlobal(BCI, TheCopy, isOffset))
1805 return false;
1806 continue;
1807 }
1808 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(*UI)) {
1809 // If the GEP has all zero indices, it doesn't offset the pointer. If it
1810 // doesn't, it does.
1811 if (!isOnlyCopiedFromConstantGlobal(GEP, TheCopy,
1812 isOffset || !GEP->hasAllZeroIndices()))
1813 return false;
1814 continue;
1815 }
1816
1817 // If this is isn't our memcpy/memmove, reject it as something we can't
1818 // handle.
Chris Lattner3ce5e882009-03-08 03:37:16 +00001819 if (!isa<MemTransferInst>(*UI))
Chris Lattner79b3bd32007-04-25 06:40:51 +00001820 return false;
1821
1822 // If we already have seen a copy, reject the second one.
1823 if (TheCopy) return false;
1824
1825 // If the pointer has been offset from the start of the alloca, we can't
1826 // safely handle this.
1827 if (isOffset) return false;
1828
1829 // If the memintrinsic isn't using the alloca as the dest, reject it.
1830 if (UI.getOperandNo() != 1) return false;
1831
1832 MemIntrinsic *MI = cast<MemIntrinsic>(*UI);
1833
1834 // If the source of the memcpy/move is not a constant global, reject it.
1835 if (!PointsToConstantGlobal(MI->getOperand(2)))
1836 return false;
1837
1838 // Otherwise, the transform is safe. Remember the copy instruction.
1839 TheCopy = MI;
1840 }
1841 return true;
1842}
1843
1844/// isOnlyCopiedFromConstantGlobal - Return true if the specified alloca is only
1845/// modified by a copy from a constant global. If we can prove this, we can
1846/// replace any uses of the alloca with uses of the global directly.
1847Instruction *SROA::isOnlyCopiedFromConstantGlobal(AllocationInst *AI) {
1848 Instruction *TheCopy = 0;
1849 if (::isOnlyCopiedFromConstantGlobal(AI, TheCopy, false))
1850 return TheCopy;
1851 return 0;
1852}