blob: 419756d4dc45fcf2867f32e4da0325b69667e925 [file] [log] [blame]
Chandler Carruth713aa942012-09-14 09:22:59 +00001//===- SROA.cpp - Scalar Replacement Of Aggregates ------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9/// \file
10/// This transformation implements the well known scalar replacement of
11/// aggregates transformation. It tries to identify promotable elements of an
12/// aggregate alloca, and promote them to registers. It will also try to
13/// convert uses of an element (or set of elements) of an alloca into a vector
14/// or bitfield-style integer scalar if appropriate.
15///
16/// It works to do this with minimal slicing of the alloca so that regions
17/// which are merely transferred in and out of external memory remain unchanged
18/// and are not decomposed to scalar code.
19///
20/// Because this also performs alloca promotion, it can be thought of as also
21/// serving the purpose of SSA formation. The algorithm iterates on the
22/// function until all opportunities for promotion have been realized.
23///
24//===----------------------------------------------------------------------===//
25
26#define DEBUG_TYPE "sroa"
27#include "llvm/Transforms/Scalar.h"
28#include "llvm/Constants.h"
29#include "llvm/DIBuilder.h"
30#include "llvm/DebugInfo.h"
31#include "llvm/DerivedTypes.h"
32#include "llvm/Function.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000033#include "llvm/IRBuilder.h"
34#include "llvm/Instructions.h"
35#include "llvm/IntrinsicInst.h"
36#include "llvm/LLVMContext.h"
37#include "llvm/Module.h"
38#include "llvm/Operator.h"
39#include "llvm/Pass.h"
40#include "llvm/ADT/SetVector.h"
41#include "llvm/ADT/SmallVector.h"
42#include "llvm/ADT/Statistic.h"
43#include "llvm/ADT/STLExtras.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000044#include "llvm/Analysis/Dominators.h"
45#include "llvm/Analysis/Loads.h"
46#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth1c8db502012-09-15 11:43:14 +000047#include "llvm/Support/CommandLine.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000048#include "llvm/Support/Debug.h"
49#include "llvm/Support/ErrorHandling.h"
50#include "llvm/Support/GetElementPtrTypeIterator.h"
51#include "llvm/Support/InstVisitor.h"
52#include "llvm/Support/MathExtras.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000053#include "llvm/Support/raw_ostream.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000054#include "llvm/DataLayout.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000055#include "llvm/Transforms/Utils/Local.h"
56#include "llvm/Transforms/Utils/PromoteMemToReg.h"
57#include "llvm/Transforms/Utils/SSAUpdater.h"
58using namespace llvm;
59
60STATISTIC(NumAllocasAnalyzed, "Number of allocas analyzed for replacement");
61STATISTIC(NumNewAllocas, "Number of new, smaller allocas introduced");
62STATISTIC(NumPromoted, "Number of allocas promoted to SSA values");
63STATISTIC(NumLoadsSpeculated, "Number of loads speculated to allow promotion");
64STATISTIC(NumDeleted, "Number of instructions deleted");
65STATISTIC(NumVectorized, "Number of vectorized aggregates");
66
Chandler Carruth1c8db502012-09-15 11:43:14 +000067/// Hidden option to force the pass to not use DomTree and mem2reg, instead
68/// forming SSA values through the SSAUpdater infrastructure.
69static cl::opt<bool>
70ForceSSAUpdater("force-ssa-updater", cl::init(false), cl::Hidden);
71
Chandler Carruth713aa942012-09-14 09:22:59 +000072namespace {
73/// \brief Alloca partitioning representation.
74///
75/// This class represents a partitioning of an alloca into slices, and
76/// information about the nature of uses of each slice of the alloca. The goal
77/// is that this information is sufficient to decide if and how to split the
78/// alloca apart and replace slices with scalars. It is also intended that this
Chandler Carruth7f5bede2012-09-14 10:18:49 +000079/// structure can capture the relevant information needed both to decide about
Chandler Carruth713aa942012-09-14 09:22:59 +000080/// and to enact these transformations.
81class AllocaPartitioning {
82public:
83 /// \brief A common base class for representing a half-open byte range.
84 struct ByteRange {
85 /// \brief The beginning offset of the range.
86 uint64_t BeginOffset;
87
88 /// \brief The ending offset, not included in the range.
89 uint64_t EndOffset;
90
91 ByteRange() : BeginOffset(), EndOffset() {}
92 ByteRange(uint64_t BeginOffset, uint64_t EndOffset)
93 : BeginOffset(BeginOffset), EndOffset(EndOffset) {}
94
95 /// \brief Support for ordering ranges.
96 ///
97 /// This provides an ordering over ranges such that start offsets are
98 /// always increasing, and within equal start offsets, the end offsets are
Chandler Carruth7f5bede2012-09-14 10:18:49 +000099 /// decreasing. Thus the spanning range comes first in a cluster with the
Chandler Carruth713aa942012-09-14 09:22:59 +0000100 /// same start position.
101 bool operator<(const ByteRange &RHS) const {
102 if (BeginOffset < RHS.BeginOffset) return true;
103 if (BeginOffset > RHS.BeginOffset) return false;
104 if (EndOffset > RHS.EndOffset) return true;
105 return false;
106 }
107
108 /// \brief Support comparison with a single offset to allow binary searches.
Benjamin Kramer2d1c2a22012-09-17 16:42:36 +0000109 friend bool operator<(const ByteRange &LHS, uint64_t RHSOffset) {
110 return LHS.BeginOffset < RHSOffset;
111 }
112
113 friend LLVM_ATTRIBUTE_UNUSED bool operator<(uint64_t LHSOffset,
114 const ByteRange &RHS) {
115 return LHSOffset < RHS.BeginOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000116 }
117
118 bool operator==(const ByteRange &RHS) const {
119 return BeginOffset == RHS.BeginOffset && EndOffset == RHS.EndOffset;
120 }
121 bool operator!=(const ByteRange &RHS) const { return !operator==(RHS); }
122 };
123
124 /// \brief A partition of an alloca.
125 ///
126 /// This structure represents a contiguous partition of the alloca. These are
127 /// formed by examining the uses of the alloca. During formation, they may
128 /// overlap but once an AllocaPartitioning is built, the Partitions within it
129 /// are all disjoint.
130 struct Partition : public ByteRange {
131 /// \brief Whether this partition is splittable into smaller partitions.
132 ///
133 /// We flag partitions as splittable when they are formed entirely due to
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000134 /// accesses by trivially splittable operations such as memset and memcpy.
Chandler Carruth713aa942012-09-14 09:22:59 +0000135 ///
136 /// FIXME: At some point we should consider loads and stores of FCAs to be
137 /// splittable and eagerly split them into scalar values.
138 bool IsSplittable;
139
Chandler Carruthfca3f402012-10-05 01:29:09 +0000140 /// \brief Test whether a partition has been marked as dead.
141 bool isDead() const {
142 if (BeginOffset == UINT64_MAX) {
143 assert(EndOffset == UINT64_MAX);
144 return true;
145 }
146 return false;
147 }
148
149 /// \brief Kill a partition.
150 /// This is accomplished by setting both its beginning and end offset to
151 /// the maximum possible value.
152 void kill() {
153 assert(!isDead() && "He's Dead, Jim!");
154 BeginOffset = EndOffset = UINT64_MAX;
155 }
156
Chandler Carruth713aa942012-09-14 09:22:59 +0000157 Partition() : ByteRange(), IsSplittable() {}
158 Partition(uint64_t BeginOffset, uint64_t EndOffset, bool IsSplittable)
159 : ByteRange(BeginOffset, EndOffset), IsSplittable(IsSplittable) {}
160 };
161
162 /// \brief A particular use of a partition of the alloca.
163 ///
164 /// This structure is used to associate uses of a partition with it. They
165 /// mark the range of bytes which are referenced by a particular instruction,
166 /// and includes a handle to the user itself and the pointer value in use.
167 /// The bounds of these uses are determined by intersecting the bounds of the
168 /// memory use itself with a particular partition. As a consequence there is
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000169 /// intentionally overlap between various uses of the same partition.
Chandler Carruth713aa942012-09-14 09:22:59 +0000170 struct PartitionUse : public ByteRange {
Chandler Carruth77c12702012-10-01 01:49:22 +0000171 /// \brief The use in question. Provides access to both user and used value.
Chandler Carruthfdb15852012-10-02 18:57:13 +0000172 ///
173 /// Note that this may be null if the partition use is *dead*, that is, it
174 /// should be ignored.
175 Use *U;
Chandler Carruth713aa942012-09-14 09:22:59 +0000176
Chandler Carruth77c12702012-10-01 01:49:22 +0000177 PartitionUse() : ByteRange(), U() {}
178 PartitionUse(uint64_t BeginOffset, uint64_t EndOffset, Use *U)
179 : ByteRange(BeginOffset, EndOffset), U(U) {}
Chandler Carruth713aa942012-09-14 09:22:59 +0000180 };
181
182 /// \brief Construct a partitioning of a particular alloca.
183 ///
184 /// Construction does most of the work for partitioning the alloca. This
185 /// performs the necessary walks of users and builds a partitioning from it.
Micah Villmow3574eca2012-10-08 16:38:25 +0000186 AllocaPartitioning(const DataLayout &TD, AllocaInst &AI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000187
188 /// \brief Test whether a pointer to the allocation escapes our analysis.
189 ///
190 /// If this is true, the partitioning is never fully built and should be
191 /// ignored.
192 bool isEscaped() const { return PointerEscapingInstr; }
193
194 /// \brief Support for iterating over the partitions.
195 /// @{
196 typedef SmallVectorImpl<Partition>::iterator iterator;
197 iterator begin() { return Partitions.begin(); }
198 iterator end() { return Partitions.end(); }
199
200 typedef SmallVectorImpl<Partition>::const_iterator const_iterator;
201 const_iterator begin() const { return Partitions.begin(); }
202 const_iterator end() const { return Partitions.end(); }
203 /// @}
204
205 /// \brief Support for iterating over and manipulating a particular
206 /// partition's uses.
207 ///
208 /// The iteration support provided for uses is more limited, but also
209 /// includes some manipulation routines to support rewriting the uses of
210 /// partitions during SROA.
211 /// @{
212 typedef SmallVectorImpl<PartitionUse>::iterator use_iterator;
213 use_iterator use_begin(unsigned Idx) { return Uses[Idx].begin(); }
214 use_iterator use_begin(const_iterator I) { return Uses[I - begin()].begin(); }
215 use_iterator use_end(unsigned Idx) { return Uses[Idx].end(); }
216 use_iterator use_end(const_iterator I) { return Uses[I - begin()].end(); }
Chandler Carruth713aa942012-09-14 09:22:59 +0000217
218 typedef SmallVectorImpl<PartitionUse>::const_iterator const_use_iterator;
219 const_use_iterator use_begin(unsigned Idx) const { return Uses[Idx].begin(); }
220 const_use_iterator use_begin(const_iterator I) const {
221 return Uses[I - begin()].begin();
222 }
223 const_use_iterator use_end(unsigned Idx) const { return Uses[Idx].end(); }
224 const_use_iterator use_end(const_iterator I) const {
225 return Uses[I - begin()].end();
226 }
Chandler Carrutha346f462012-10-02 17:49:47 +0000227
228 unsigned use_size(unsigned Idx) const { return Uses[Idx].size(); }
229 unsigned use_size(const_iterator I) const { return Uses[I - begin()].size(); }
230 const PartitionUse &getUse(unsigned PIdx, unsigned UIdx) const {
231 return Uses[PIdx][UIdx];
232 }
233 const PartitionUse &getUse(const_iterator I, unsigned UIdx) const {
234 return Uses[I - begin()][UIdx];
235 }
236
237 void use_push_back(unsigned Idx, const PartitionUse &PU) {
238 Uses[Idx].push_back(PU);
239 }
240 void use_push_back(const_iterator I, const PartitionUse &PU) {
241 Uses[I - begin()].push_back(PU);
242 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000243 /// @}
244
245 /// \brief Allow iterating the dead users for this alloca.
246 ///
247 /// These are instructions which will never actually use the alloca as they
248 /// are outside the allocated range. They are safe to replace with undef and
249 /// delete.
250 /// @{
251 typedef SmallVectorImpl<Instruction *>::const_iterator dead_user_iterator;
252 dead_user_iterator dead_user_begin() const { return DeadUsers.begin(); }
253 dead_user_iterator dead_user_end() const { return DeadUsers.end(); }
254 /// @}
255
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000256 /// \brief Allow iterating the dead expressions referring to this alloca.
Chandler Carruth713aa942012-09-14 09:22:59 +0000257 ///
258 /// These are operands which have cannot actually be used to refer to the
259 /// alloca as they are outside its range and the user doesn't correct for
260 /// that. These mostly consist of PHI node inputs and the like which we just
261 /// need to replace with undef.
262 /// @{
263 typedef SmallVectorImpl<Use *>::const_iterator dead_op_iterator;
264 dead_op_iterator dead_op_begin() const { return DeadOperands.begin(); }
265 dead_op_iterator dead_op_end() const { return DeadOperands.end(); }
266 /// @}
267
268 /// \brief MemTransferInst auxiliary data.
269 /// This struct provides some auxiliary data about memory transfer
270 /// intrinsics such as memcpy and memmove. These intrinsics can use two
271 /// different ranges within the same alloca, and provide other challenges to
272 /// correctly represent. We stash extra data to help us untangle this
273 /// after the partitioning is complete.
274 struct MemTransferOffsets {
Chandler Carruthfca3f402012-10-05 01:29:09 +0000275 /// The destination begin and end offsets when the destination is within
276 /// this alloca. If the end offset is zero the destination is not within
277 /// this alloca.
Chandler Carruth713aa942012-09-14 09:22:59 +0000278 uint64_t DestBegin, DestEnd;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000279
280 /// The source begin and end offsets when the source is within this alloca.
281 /// If the end offset is zero, the source is not within this alloca.
Chandler Carruth713aa942012-09-14 09:22:59 +0000282 uint64_t SourceBegin, SourceEnd;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000283
284 /// Flag for whether an alloca is splittable.
Chandler Carruth713aa942012-09-14 09:22:59 +0000285 bool IsSplittable;
286 };
287 MemTransferOffsets getMemTransferOffsets(MemTransferInst &II) const {
288 return MemTransferInstData.lookup(&II);
289 }
290
291 /// \brief Map from a PHI or select operand back to a partition.
292 ///
293 /// When manipulating PHI nodes or selects, they can use more than one
294 /// partition of an alloca. We store a special mapping to allow finding the
295 /// partition referenced by each of these operands, if any.
Chandler Carruth77c12702012-10-01 01:49:22 +0000296 iterator findPartitionForPHIOrSelectOperand(Use *U) {
297 SmallDenseMap<Use *, std::pair<unsigned, unsigned> >::const_iterator MapIt
298 = PHIOrSelectOpMap.find(U);
Chandler Carruth713aa942012-09-14 09:22:59 +0000299 if (MapIt == PHIOrSelectOpMap.end())
300 return end();
301
302 return begin() + MapIt->second.first;
303 }
304
305 /// \brief Map from a PHI or select operand back to the specific use of
306 /// a partition.
307 ///
308 /// Similar to mapping these operands back to the partitions, this maps
309 /// directly to the use structure of that partition.
Chandler Carruth77c12702012-10-01 01:49:22 +0000310 use_iterator findPartitionUseForPHIOrSelectOperand(Use *U) {
311 SmallDenseMap<Use *, std::pair<unsigned, unsigned> >::const_iterator MapIt
312 = PHIOrSelectOpMap.find(U);
Chandler Carruth713aa942012-09-14 09:22:59 +0000313 assert(MapIt != PHIOrSelectOpMap.end());
314 return Uses[MapIt->second.first].begin() + MapIt->second.second;
315 }
316
317 /// \brief Compute a common type among the uses of a particular partition.
318 ///
319 /// This routines walks all of the uses of a particular partition and tries
320 /// to find a common type between them. Untyped operations such as memset and
321 /// memcpy are ignored.
322 Type *getCommonType(iterator I) const;
323
Chandler Carruthba13d2e2012-09-14 10:18:51 +0000324#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth713aa942012-09-14 09:22:59 +0000325 void print(raw_ostream &OS, const_iterator I, StringRef Indent = " ") const;
326 void printUsers(raw_ostream &OS, const_iterator I,
327 StringRef Indent = " ") const;
328 void print(raw_ostream &OS) const;
NAKAMURA Takumiad9f5b82012-09-14 10:06:10 +0000329 void LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED dump(const_iterator I) const;
330 void LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED dump() const;
Chandler Carruthba13d2e2012-09-14 10:18:51 +0000331#endif
Chandler Carruth713aa942012-09-14 09:22:59 +0000332
333private:
334 template <typename DerivedT, typename RetT = void> class BuilderBase;
335 class PartitionBuilder;
336 friend class AllocaPartitioning::PartitionBuilder;
337 class UseBuilder;
338 friend class AllocaPartitioning::UseBuilder;
339
Benjamin Kramerd0807692012-09-14 13:08:09 +0000340#ifndef NDEBUG
Chandler Carruth713aa942012-09-14 09:22:59 +0000341 /// \brief Handle to alloca instruction to simplify method interfaces.
342 AllocaInst &AI;
Benjamin Kramerd0807692012-09-14 13:08:09 +0000343#endif
Chandler Carruth713aa942012-09-14 09:22:59 +0000344
345 /// \brief The instruction responsible for this alloca having no partitioning.
346 ///
347 /// When an instruction (potentially) escapes the pointer to the alloca, we
348 /// store a pointer to that here and abort trying to partition the alloca.
349 /// This will be null if the alloca is partitioned successfully.
350 Instruction *PointerEscapingInstr;
351
352 /// \brief The partitions of the alloca.
353 ///
354 /// We store a vector of the partitions over the alloca here. This vector is
355 /// sorted by increasing begin offset, and then by decreasing end offset. See
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000356 /// the Partition inner class for more details. Initially (during
357 /// construction) there are overlaps, but we form a disjoint sequence of
358 /// partitions while finishing construction and a fully constructed object is
359 /// expected to always have this as a disjoint space.
Chandler Carruth713aa942012-09-14 09:22:59 +0000360 SmallVector<Partition, 8> Partitions;
361
362 /// \brief The uses of the partitions.
363 ///
364 /// This is essentially a mapping from each partition to a list of uses of
365 /// that partition. The mapping is done with a Uses vector that has the exact
366 /// same number of entries as the partition vector. Each entry is itself
367 /// a vector of the uses.
368 SmallVector<SmallVector<PartitionUse, 2>, 8> Uses;
369
370 /// \brief Instructions which will become dead if we rewrite the alloca.
371 ///
372 /// Note that these are not separated by partition. This is because we expect
373 /// a partitioned alloca to be completely rewritten or not rewritten at all.
374 /// If rewritten, all these instructions can simply be removed and replaced
375 /// with undef as they come from outside of the allocated space.
376 SmallVector<Instruction *, 8> DeadUsers;
377
378 /// \brief Operands which will become dead if we rewrite the alloca.
379 ///
380 /// These are operands that in their particular use can be replaced with
381 /// undef when we rewrite the alloca. These show up in out-of-bounds inputs
382 /// to PHI nodes and the like. They aren't entirely dead (there might be
383 /// a GEP back into the bounds using it elsewhere) and nor is the PHI, but we
384 /// want to swap this particular input for undef to simplify the use lists of
385 /// the alloca.
386 SmallVector<Use *, 8> DeadOperands;
387
388 /// \brief The underlying storage for auxiliary memcpy and memset info.
389 SmallDenseMap<MemTransferInst *, MemTransferOffsets, 4> MemTransferInstData;
390
391 /// \brief A side datastructure used when building up the partitions and uses.
392 ///
393 /// This mapping is only really used during the initial building of the
394 /// partitioning so that we can retain information about PHI and select nodes
395 /// processed.
396 SmallDenseMap<Instruction *, std::pair<uint64_t, bool> > PHIOrSelectSizes;
397
398 /// \brief Auxiliary information for particular PHI or select operands.
Chandler Carruth77c12702012-10-01 01:49:22 +0000399 SmallDenseMap<Use *, std::pair<unsigned, unsigned>, 4> PHIOrSelectOpMap;
Chandler Carruth713aa942012-09-14 09:22:59 +0000400
401 /// \brief A utility routine called from the constructor.
402 ///
403 /// This does what it says on the tin. It is the key of the alloca partition
404 /// splitting and merging. After it is called we have the desired disjoint
405 /// collection of partitions.
406 void splitAndMergePartitions();
407};
408}
409
410template <typename DerivedT, typename RetT>
411class AllocaPartitioning::BuilderBase
412 : public InstVisitor<DerivedT, RetT> {
413public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000414 BuilderBase(const DataLayout &TD, AllocaInst &AI, AllocaPartitioning &P)
Chandler Carruth713aa942012-09-14 09:22:59 +0000415 : TD(TD),
416 AllocSize(TD.getTypeAllocSize(AI.getAllocatedType())),
417 P(P) {
418 enqueueUsers(AI, 0);
419 }
420
421protected:
Micah Villmow3574eca2012-10-08 16:38:25 +0000422 const DataLayout &TD;
Chandler Carruth713aa942012-09-14 09:22:59 +0000423 const uint64_t AllocSize;
424 AllocaPartitioning &P;
425
Chandler Carruth77c12702012-10-01 01:49:22 +0000426 SmallPtrSet<Use *, 8> VisitedUses;
427
Chandler Carruth713aa942012-09-14 09:22:59 +0000428 struct OffsetUse {
429 Use *U;
Chandler Carruth02e92a02012-09-23 11:43:14 +0000430 int64_t Offset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000431 };
432 SmallVector<OffsetUse, 8> Queue;
433
434 // The active offset and use while visiting.
435 Use *U;
Chandler Carruth02e92a02012-09-23 11:43:14 +0000436 int64_t Offset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000437
Chandler Carruth02e92a02012-09-23 11:43:14 +0000438 void enqueueUsers(Instruction &I, int64_t UserOffset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000439 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
440 UI != UE; ++UI) {
Chandler Carruth77c12702012-10-01 01:49:22 +0000441 if (VisitedUses.insert(&UI.getUse())) {
442 OffsetUse OU = { &UI.getUse(), UserOffset };
443 Queue.push_back(OU);
444 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000445 }
446 }
447
Chandler Carruth02e92a02012-09-23 11:43:14 +0000448 bool computeConstantGEPOffset(GetElementPtrInst &GEPI, int64_t &GEPOffset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000449 GEPOffset = Offset;
450 for (gep_type_iterator GTI = gep_type_begin(GEPI), GTE = gep_type_end(GEPI);
451 GTI != GTE; ++GTI) {
452 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
453 if (!OpC)
454 return false;
455 if (OpC->isZero())
456 continue;
457
458 // Handle a struct index, which adds its field offset to the pointer.
459 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
460 unsigned ElementIdx = OpC->getZExtValue();
461 const StructLayout *SL = TD.getStructLayout(STy);
Chandler Carruth02e92a02012-09-23 11:43:14 +0000462 uint64_t ElementOffset = SL->getElementOffset(ElementIdx);
463 // Check that we can continue to model this GEP in a signed 64-bit offset.
464 if (ElementOffset > INT64_MAX ||
465 (GEPOffset >= 0 &&
466 ((uint64_t)GEPOffset + ElementOffset) > INT64_MAX)) {
467 DEBUG(dbgs() << "WARNING: Encountered a cumulative offset exceeding "
468 << "what can be represented in an int64_t!\n"
469 << " alloca: " << P.AI << "\n");
470 return false;
471 }
472 if (GEPOffset < 0)
473 GEPOffset = ElementOffset + (uint64_t)-GEPOffset;
474 else
475 GEPOffset += ElementOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000476 continue;
477 }
478
Micah Villmowfb384d62012-10-11 21:27:41 +0000479 APInt Index = OpC->getValue().sextOrTrunc(TD.getPointerSizeInBits());
Chandler Carruth02e92a02012-09-23 11:43:14 +0000480 Index *= APInt(Index.getBitWidth(),
481 TD.getTypeAllocSize(GTI.getIndexedType()));
482 Index += APInt(Index.getBitWidth(), (uint64_t)GEPOffset,
483 /*isSigned*/true);
484 // Check if the result can be stored in our int64_t offset.
485 if (!Index.isSignedIntN(sizeof(GEPOffset) * 8)) {
486 DEBUG(dbgs() << "WARNING: Encountered a cumulative offset exceeding "
487 << "what can be represented in an int64_t!\n"
488 << " alloca: " << P.AI << "\n");
489 return false;
490 }
491
492 GEPOffset = Index.getSExtValue();
Chandler Carruth713aa942012-09-14 09:22:59 +0000493 }
494 return true;
495 }
496
497 Value *foldSelectInst(SelectInst &SI) {
498 // If the condition being selected on is a constant or the same value is
499 // being selected between, fold the select. Yes this does (rarely) happen
500 // early on.
501 if (ConstantInt *CI = dyn_cast<ConstantInt>(SI.getCondition()))
502 return SI.getOperand(1+CI->isZero());
503 if (SI.getOperand(1) == SI.getOperand(2)) {
504 assert(*U == SI.getOperand(1));
505 return SI.getOperand(1);
506 }
507 return 0;
508 }
509};
510
511/// \brief Builder for the alloca partitioning.
512///
513/// This class builds an alloca partitioning by recursively visiting the uses
514/// of an alloca and splitting the partitions for each load and store at each
515/// offset.
516class AllocaPartitioning::PartitionBuilder
517 : public BuilderBase<PartitionBuilder, bool> {
518 friend class InstVisitor<PartitionBuilder, bool>;
519
520 SmallDenseMap<Instruction *, unsigned> MemTransferPartitionMap;
521
522public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000523 PartitionBuilder(const DataLayout &TD, AllocaInst &AI, AllocaPartitioning &P)
Chandler Carruth2a9bf252012-09-14 09:30:33 +0000524 : BuilderBase<PartitionBuilder, bool>(TD, AI, P) {}
Chandler Carruth713aa942012-09-14 09:22:59 +0000525
526 /// \brief Run the builder over the allocation.
527 bool operator()() {
528 // Note that we have to re-evaluate size on each trip through the loop as
529 // the queue grows at the tail.
530 for (unsigned Idx = 0; Idx < Queue.size(); ++Idx) {
531 U = Queue[Idx].U;
532 Offset = Queue[Idx].Offset;
533 if (!visit(cast<Instruction>(U->getUser())))
534 return false;
535 }
536 return true;
537 }
538
539private:
540 bool markAsEscaping(Instruction &I) {
541 P.PointerEscapingInstr = &I;
542 return false;
543 }
544
Chandler Carruth02e92a02012-09-23 11:43:14 +0000545 void insertUse(Instruction &I, int64_t Offset, uint64_t Size,
Chandler Carruth63392ea2012-09-16 19:39:50 +0000546 bool IsSplittable = false) {
Chandler Carruthc3034632012-09-25 10:03:40 +0000547 // Completely skip uses which have a zero size or don't overlap the
548 // allocation.
549 if (Size == 0 ||
550 (Offset >= 0 && (uint64_t)Offset >= AllocSize) ||
Chandler Carruth02e92a02012-09-23 11:43:14 +0000551 (Offset < 0 && (uint64_t)-Offset >= Size)) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000552 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte use @" << Offset
553 << " which starts past the end of the " << AllocSize
554 << " byte alloca:\n"
555 << " alloca: " << P.AI << "\n"
556 << " use: " << I << "\n");
557 return;
558 }
559
Chandler Carruth02e92a02012-09-23 11:43:14 +0000560 // Clamp the start to the beginning of the allocation.
561 if (Offset < 0) {
562 DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @" << Offset
563 << " to start at the beginning of the alloca:\n"
564 << " alloca: " << P.AI << "\n"
565 << " use: " << I << "\n");
566 Size -= (uint64_t)-Offset;
567 Offset = 0;
568 }
569
570 uint64_t BeginOffset = Offset, EndOffset = BeginOffset + Size;
571
572 // Clamp the end offset to the end of the allocation. Note that this is
573 // formulated to handle even the case where "BeginOffset + Size" overflows.
574 assert(AllocSize >= BeginOffset); // Established above.
575 if (Size > AllocSize - BeginOffset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000576 DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @" << Offset
577 << " to remain within the " << AllocSize << " byte alloca:\n"
578 << " alloca: " << P.AI << "\n"
579 << " use: " << I << "\n");
580 EndOffset = AllocSize;
581 }
582
Chandler Carruth713aa942012-09-14 09:22:59 +0000583 Partition New(BeginOffset, EndOffset, IsSplittable);
584 P.Partitions.push_back(New);
585 }
586
Chandler Carruth02e92a02012-09-23 11:43:14 +0000587 bool handleLoadOrStore(Type *Ty, Instruction &I, int64_t Offset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000588 uint64_t Size = TD.getTypeStoreSize(Ty);
589
590 // If this memory access can be shown to *statically* extend outside the
591 // bounds of of the allocation, it's behavior is undefined, so simply
592 // ignore it. Note that this is more strict than the generic clamping
593 // behavior of insertUse. We also try to handle cases which might run the
594 // risk of overflow.
595 // FIXME: We should instead consider the pointer to have escaped if this
596 // function is being instrumented for addressing bugs or race conditions.
Chandler Carruth02e92a02012-09-23 11:43:14 +0000597 if (Offset < 0 || (uint64_t)Offset >= AllocSize ||
598 Size > (AllocSize - (uint64_t)Offset)) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000599 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte "
600 << (isa<LoadInst>(I) ? "load" : "store") << " @" << Offset
601 << " which extends past the end of the " << AllocSize
602 << " byte alloca:\n"
603 << " alloca: " << P.AI << "\n"
604 << " use: " << I << "\n");
605 return true;
606 }
607
Chandler Carruth63392ea2012-09-16 19:39:50 +0000608 insertUse(I, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000609 return true;
610 }
611
612 bool visitBitCastInst(BitCastInst &BC) {
613 enqueueUsers(BC, Offset);
614 return true;
615 }
616
617 bool visitGetElementPtrInst(GetElementPtrInst &GEPI) {
Chandler Carruth02e92a02012-09-23 11:43:14 +0000618 int64_t GEPOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000619 if (!computeConstantGEPOffset(GEPI, GEPOffset))
620 return markAsEscaping(GEPI);
621
622 enqueueUsers(GEPI, GEPOffset);
623 return true;
624 }
625
626 bool visitLoadInst(LoadInst &LI) {
Chandler Carruthc370acd2012-09-18 12:57:43 +0000627 assert((!LI.isSimple() || LI.getType()->isSingleValueType()) &&
628 "All simple FCA loads should have been pre-split");
Chandler Carruth63392ea2012-09-16 19:39:50 +0000629 return handleLoadOrStore(LI.getType(), LI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000630 }
631
632 bool visitStoreInst(StoreInst &SI) {
Chandler Carruthc370acd2012-09-18 12:57:43 +0000633 Value *ValOp = SI.getValueOperand();
634 if (ValOp == *U)
Chandler Carruth713aa942012-09-14 09:22:59 +0000635 return markAsEscaping(SI);
636
Chandler Carruthc370acd2012-09-18 12:57:43 +0000637 assert((!SI.isSimple() || ValOp->getType()->isSingleValueType()) &&
638 "All simple FCA stores should have been pre-split");
639 return handleLoadOrStore(ValOp->getType(), SI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000640 }
641
642
643 bool visitMemSetInst(MemSetInst &II) {
Chandler Carruthb3dd9a12012-09-14 10:26:34 +0000644 assert(II.getRawDest() == *U && "Pointer use is not the destination?");
Chandler Carruth713aa942012-09-14 09:22:59 +0000645 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruth63392ea2012-09-16 19:39:50 +0000646 uint64_t Size = Length ? Length->getZExtValue() : AllocSize - Offset;
647 insertUse(II, Offset, Size, Length);
Chandler Carruth713aa942012-09-14 09:22:59 +0000648 return true;
649 }
650
651 bool visitMemTransferInst(MemTransferInst &II) {
652 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
653 uint64_t Size = Length ? Length->getZExtValue() : AllocSize - Offset;
654 if (!Size)
655 // Zero-length mem transfer intrinsics can be ignored entirely.
656 return true;
657
658 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
659
660 // Only intrinsics with a constant length can be split.
661 Offsets.IsSplittable = Length;
662
Chandler Carruthfca3f402012-10-05 01:29:09 +0000663 if (*U == II.getRawDest()) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000664 Offsets.DestBegin = Offset;
665 Offsets.DestEnd = Offset + Size;
666 }
Chandler Carruthfca3f402012-10-05 01:29:09 +0000667 if (*U == II.getRawSource()) {
668 Offsets.SourceBegin = Offset;
669 Offsets.SourceEnd = Offset + Size;
670 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000671
Chandler Carruthfca3f402012-10-05 01:29:09 +0000672 // If we have set up end offsets for both the source and the destination,
673 // we have found both sides of this transfer pointing at the same alloca.
674 bool SeenBothEnds = Offsets.SourceEnd && Offsets.DestEnd;
675 if (SeenBothEnds && II.getRawDest() != II.getRawSource()) {
676 unsigned PrevIdx = MemTransferPartitionMap[&II];
Chandler Carruth713aa942012-09-14 09:22:59 +0000677
Chandler Carruthfca3f402012-10-05 01:29:09 +0000678 // Check if the begin offsets match and this is a non-volatile transfer.
679 // In that case, we can completely elide the transfer.
680 if (!II.isVolatile() && Offsets.SourceBegin == Offsets.DestBegin) {
681 P.Partitions[PrevIdx].kill();
682 return true;
683 }
684
685 // Otherwise we have an offset transfer within the same alloca. We can't
686 // split those.
687 P.Partitions[PrevIdx].IsSplittable = Offsets.IsSplittable = false;
688 } else if (SeenBothEnds) {
689 // Handle the case where this exact use provides both ends of the
690 // operation.
691 assert(II.getRawDest() == II.getRawSource());
692
693 // For non-volatile transfers this is a no-op.
694 if (!II.isVolatile())
695 return true;
696
697 // Otherwise just suppress splitting.
Chandler Carruth713aa942012-09-14 09:22:59 +0000698 Offsets.IsSplittable = false;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000699 }
700
701
702 // Insert the use now that we've fixed up the splittable nature.
703 insertUse(II, Offset, Size, Offsets.IsSplittable);
704
705 // Setup the mapping from intrinsic to partition of we've not seen both
706 // ends of this transfer.
707 if (!SeenBothEnds) {
708 unsigned NewIdx = P.Partitions.size() - 1;
709 bool Inserted
710 = MemTransferPartitionMap.insert(std::make_pair(&II, NewIdx)).second;
711 assert(Inserted &&
712 "Already have intrinsic in map but haven't seen both ends");
NAKAMURA Takumi0559d312012-10-05 13:56:23 +0000713 (void)Inserted;
Chandler Carruth713aa942012-09-14 09:22:59 +0000714 }
715
716 return true;
717 }
718
719 // Disable SRoA for any intrinsics except for lifetime invariants.
Chandler Carruth50754f02012-09-14 10:26:36 +0000720 // FIXME: What about debug instrinsics? This matches old behavior, but
721 // doesn't make sense.
Chandler Carruth713aa942012-09-14 09:22:59 +0000722 bool visitIntrinsicInst(IntrinsicInst &II) {
723 if (II.getIntrinsicID() == Intrinsic::lifetime_start ||
724 II.getIntrinsicID() == Intrinsic::lifetime_end) {
725 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
726 uint64_t Size = std::min(AllocSize - Offset, Length->getLimitedValue());
Chandler Carruth63392ea2012-09-16 19:39:50 +0000727 insertUse(II, Offset, Size, true);
Chandler Carruth713aa942012-09-14 09:22:59 +0000728 return true;
729 }
730
731 return markAsEscaping(II);
732 }
733
734 Instruction *hasUnsafePHIOrSelectUse(Instruction *Root, uint64_t &Size) {
735 // We consider any PHI or select that results in a direct load or store of
736 // the same offset to be a viable use for partitioning purposes. These uses
737 // are considered unsplittable and the size is the maximum loaded or stored
738 // size.
739 SmallPtrSet<Instruction *, 4> Visited;
740 SmallVector<std::pair<Instruction *, Instruction *>, 4> Uses;
741 Visited.insert(Root);
742 Uses.push_back(std::make_pair(cast<Instruction>(*U), Root));
Chandler Carruthc3034632012-09-25 10:03:40 +0000743 // If there are no loads or stores, the access is dead. We mark that as
744 // a size zero access.
745 Size = 0;
Chandler Carruth713aa942012-09-14 09:22:59 +0000746 do {
747 Instruction *I, *UsedI;
748 llvm::tie(UsedI, I) = Uses.pop_back_val();
749
750 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
751 Size = std::max(Size, TD.getTypeStoreSize(LI->getType()));
752 continue;
753 }
754 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
755 Value *Op = SI->getOperand(0);
756 if (Op == UsedI)
757 return SI;
758 Size = std::max(Size, TD.getTypeStoreSize(Op->getType()));
759 continue;
760 }
761
762 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
763 if (!GEP->hasAllZeroIndices())
764 return GEP;
765 } else if (!isa<BitCastInst>(I) && !isa<PHINode>(I) &&
766 !isa<SelectInst>(I)) {
767 return I;
768 }
769
770 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE;
771 ++UI)
772 if (Visited.insert(cast<Instruction>(*UI)))
773 Uses.push_back(std::make_pair(I, cast<Instruction>(*UI)));
774 } while (!Uses.empty());
775
776 return 0;
777 }
778
779 bool visitPHINode(PHINode &PN) {
780 // See if we already have computed info on this node.
781 std::pair<uint64_t, bool> &PHIInfo = P.PHIOrSelectSizes[&PN];
782 if (PHIInfo.first) {
783 PHIInfo.second = true;
Chandler Carruth63392ea2012-09-16 19:39:50 +0000784 insertUse(PN, Offset, PHIInfo.first);
Chandler Carruth713aa942012-09-14 09:22:59 +0000785 return true;
786 }
787
788 // Check for an unsafe use of the PHI node.
789 if (Instruction *EscapingI = hasUnsafePHIOrSelectUse(&PN, PHIInfo.first))
790 return markAsEscaping(*EscapingI);
791
Chandler Carruth63392ea2012-09-16 19:39:50 +0000792 insertUse(PN, Offset, PHIInfo.first);
Chandler Carruth713aa942012-09-14 09:22:59 +0000793 return true;
794 }
795
796 bool visitSelectInst(SelectInst &SI) {
797 if (Value *Result = foldSelectInst(SI)) {
798 if (Result == *U)
799 // If the result of the constant fold will be the pointer, recurse
800 // through the select as if we had RAUW'ed it.
801 enqueueUsers(SI, Offset);
802
803 return true;
804 }
805
806 // See if we already have computed info on this node.
807 std::pair<uint64_t, bool> &SelectInfo = P.PHIOrSelectSizes[&SI];
808 if (SelectInfo.first) {
809 SelectInfo.second = true;
Chandler Carruth63392ea2012-09-16 19:39:50 +0000810 insertUse(SI, Offset, SelectInfo.first);
Chandler Carruth713aa942012-09-14 09:22:59 +0000811 return true;
812 }
813
814 // Check for an unsafe use of the PHI node.
815 if (Instruction *EscapingI = hasUnsafePHIOrSelectUse(&SI, SelectInfo.first))
816 return markAsEscaping(*EscapingI);
817
Chandler Carruth63392ea2012-09-16 19:39:50 +0000818 insertUse(SI, Offset, SelectInfo.first);
Chandler Carruth713aa942012-09-14 09:22:59 +0000819 return true;
820 }
821
822 /// \brief Disable SROA entirely if there are unhandled users of the alloca.
823 bool visitInstruction(Instruction &I) { return markAsEscaping(I); }
824};
825
826
827/// \brief Use adder for the alloca partitioning.
828///
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000829/// This class adds the uses of an alloca to all of the partitions which they
830/// use. For splittable partitions, this can end up doing essentially a linear
Chandler Carruth713aa942012-09-14 09:22:59 +0000831/// walk of the partitions, but the number of steps remains bounded by the
832/// total result instruction size:
833/// - The number of partitions is a result of the number unsplittable
834/// instructions using the alloca.
835/// - The number of users of each partition is at worst the total number of
836/// splittable instructions using the alloca.
837/// Thus we will produce N * M instructions in the end, where N are the number
838/// of unsplittable uses and M are the number of splittable. This visitor does
839/// the exact same number of updates to the partitioning.
840///
841/// In the more common case, this visitor will leverage the fact that the
842/// partition space is pre-sorted, and do a logarithmic search for the
843/// partition needed, making the total visit a classical ((N + M) * log(N))
844/// complexity operation.
845class AllocaPartitioning::UseBuilder : public BuilderBase<UseBuilder> {
846 friend class InstVisitor<UseBuilder>;
847
848 /// \brief Set to de-duplicate dead instructions found in the use walk.
849 SmallPtrSet<Instruction *, 4> VisitedDeadInsts;
850
851public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000852 UseBuilder(const DataLayout &TD, AllocaInst &AI, AllocaPartitioning &P)
Chandler Carruth2a9bf252012-09-14 09:30:33 +0000853 : BuilderBase<UseBuilder>(TD, AI, P) {}
Chandler Carruth713aa942012-09-14 09:22:59 +0000854
855 /// \brief Run the builder over the allocation.
856 void operator()() {
857 // Note that we have to re-evaluate size on each trip through the loop as
858 // the queue grows at the tail.
859 for (unsigned Idx = 0; Idx < Queue.size(); ++Idx) {
860 U = Queue[Idx].U;
861 Offset = Queue[Idx].Offset;
862 this->visit(cast<Instruction>(U->getUser()));
863 }
864 }
865
866private:
867 void markAsDead(Instruction &I) {
868 if (VisitedDeadInsts.insert(&I))
869 P.DeadUsers.push_back(&I);
870 }
871
Chandler Carruth02e92a02012-09-23 11:43:14 +0000872 void insertUse(Instruction &User, int64_t Offset, uint64_t Size) {
Chandler Carruthc3034632012-09-25 10:03:40 +0000873 // If the use has a zero size or extends outside of the allocation, record
874 // it as a dead use for elimination later.
875 if (Size == 0 || (uint64_t)Offset >= AllocSize ||
Chandler Carruth02e92a02012-09-23 11:43:14 +0000876 (Offset < 0 && (uint64_t)-Offset >= Size))
Chandler Carruth713aa942012-09-14 09:22:59 +0000877 return markAsDead(User);
878
Chandler Carruth02e92a02012-09-23 11:43:14 +0000879 // Clamp the start to the beginning of the allocation.
880 if (Offset < 0) {
881 Size -= (uint64_t)-Offset;
882 Offset = 0;
883 }
884
885 uint64_t BeginOffset = Offset, EndOffset = BeginOffset + Size;
886
887 // Clamp the end offset to the end of the allocation. Note that this is
888 // formulated to handle even the case where "BeginOffset + Size" overflows.
889 assert(AllocSize >= BeginOffset); // Established above.
890 if (Size > AllocSize - BeginOffset)
Chandler Carruth713aa942012-09-14 09:22:59 +0000891 EndOffset = AllocSize;
892
893 // NB: This only works if we have zero overlapping partitions.
894 iterator B = std::lower_bound(P.begin(), P.end(), BeginOffset);
895 if (B != P.begin() && llvm::prior(B)->EndOffset > BeginOffset)
896 B = llvm::prior(B);
897 for (iterator I = B, E = P.end(); I != E && I->BeginOffset < EndOffset;
898 ++I) {
Chandler Carruth77c12702012-10-01 01:49:22 +0000899 PartitionUse NewPU(std::max(I->BeginOffset, BeginOffset),
900 std::min(I->EndOffset, EndOffset), U);
901 P.use_push_back(I, NewPU);
Chandler Carruth713aa942012-09-14 09:22:59 +0000902 if (isa<PHINode>(U->getUser()) || isa<SelectInst>(U->getUser()))
Chandler Carruth77c12702012-10-01 01:49:22 +0000903 P.PHIOrSelectOpMap[U]
Chandler Carruth713aa942012-09-14 09:22:59 +0000904 = std::make_pair(I - P.begin(), P.Uses[I - P.begin()].size() - 1);
905 }
906 }
907
Chandler Carruth02e92a02012-09-23 11:43:14 +0000908 void handleLoadOrStore(Type *Ty, Instruction &I, int64_t Offset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000909 uint64_t Size = TD.getTypeStoreSize(Ty);
910
911 // If this memory access can be shown to *statically* extend outside the
912 // bounds of of the allocation, it's behavior is undefined, so simply
913 // ignore it. Note that this is more strict than the generic clamping
914 // behavior of insertUse.
Chandler Carruth02e92a02012-09-23 11:43:14 +0000915 if (Offset < 0 || (uint64_t)Offset >= AllocSize ||
916 Size > (AllocSize - (uint64_t)Offset))
Chandler Carruth713aa942012-09-14 09:22:59 +0000917 return markAsDead(I);
918
Chandler Carruth63392ea2012-09-16 19:39:50 +0000919 insertUse(I, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000920 }
921
922 void visitBitCastInst(BitCastInst &BC) {
923 if (BC.use_empty())
924 return markAsDead(BC);
925
926 enqueueUsers(BC, Offset);
927 }
928
929 void visitGetElementPtrInst(GetElementPtrInst &GEPI) {
930 if (GEPI.use_empty())
931 return markAsDead(GEPI);
932
Chandler Carruth02e92a02012-09-23 11:43:14 +0000933 int64_t GEPOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000934 if (!computeConstantGEPOffset(GEPI, GEPOffset))
935 llvm_unreachable("Unable to compute constant offset for use");
936
937 enqueueUsers(GEPI, GEPOffset);
938 }
939
940 void visitLoadInst(LoadInst &LI) {
Chandler Carruth63392ea2012-09-16 19:39:50 +0000941 handleLoadOrStore(LI.getType(), LI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000942 }
943
944 void visitStoreInst(StoreInst &SI) {
Chandler Carruth63392ea2012-09-16 19:39:50 +0000945 handleLoadOrStore(SI.getOperand(0)->getType(), SI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000946 }
947
948 void visitMemSetInst(MemSetInst &II) {
949 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruth63392ea2012-09-16 19:39:50 +0000950 uint64_t Size = Length ? Length->getZExtValue() : AllocSize - Offset;
951 insertUse(II, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000952 }
953
954 void visitMemTransferInst(MemTransferInst &II) {
955 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruth63392ea2012-09-16 19:39:50 +0000956 uint64_t Size = Length ? Length->getZExtValue() : AllocSize - Offset;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000957 if (!Size)
958 return markAsDead(II);
959
960 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
961 if (!II.isVolatile() && Offsets.DestEnd && Offsets.SourceEnd &&
962 Offsets.DestBegin == Offsets.SourceBegin)
963 return markAsDead(II); // Skip identity transfers without side-effects.
964
Chandler Carruth63392ea2012-09-16 19:39:50 +0000965 insertUse(II, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000966 }
967
968 void visitIntrinsicInst(IntrinsicInst &II) {
969 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
970 II.getIntrinsicID() == Intrinsic::lifetime_end);
971
972 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
Chandler Carruth63392ea2012-09-16 19:39:50 +0000973 insertUse(II, Offset,
974 std::min(AllocSize - Offset, Length->getLimitedValue()));
Chandler Carruth713aa942012-09-14 09:22:59 +0000975 }
976
Chandler Carruth63392ea2012-09-16 19:39:50 +0000977 void insertPHIOrSelect(Instruction &User, uint64_t Offset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000978 uint64_t Size = P.PHIOrSelectSizes.lookup(&User).first;
979
980 // For PHI and select operands outside the alloca, we can't nuke the entire
981 // phi or select -- the other side might still be relevant, so we special
982 // case them here and use a separate structure to track the operands
983 // themselves which should be replaced with undef.
984 if (Offset >= AllocSize) {
985 P.DeadOperands.push_back(U);
986 return;
987 }
988
Chandler Carruth63392ea2012-09-16 19:39:50 +0000989 insertUse(User, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000990 }
991 void visitPHINode(PHINode &PN) {
992 if (PN.use_empty())
993 return markAsDead(PN);
994
Chandler Carruth63392ea2012-09-16 19:39:50 +0000995 insertPHIOrSelect(PN, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000996 }
997 void visitSelectInst(SelectInst &SI) {
998 if (SI.use_empty())
999 return markAsDead(SI);
1000
1001 if (Value *Result = foldSelectInst(SI)) {
1002 if (Result == *U)
1003 // If the result of the constant fold will be the pointer, recurse
1004 // through the select as if we had RAUW'ed it.
1005 enqueueUsers(SI, Offset);
Chandler Carruthd54a6b52012-09-21 23:36:40 +00001006 else
1007 // Otherwise the operand to the select is dead, and we can replace it
1008 // with undef.
1009 P.DeadOperands.push_back(U);
Chandler Carruth713aa942012-09-14 09:22:59 +00001010
1011 return;
1012 }
1013
Chandler Carruth63392ea2012-09-16 19:39:50 +00001014 insertPHIOrSelect(SI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +00001015 }
1016
1017 /// \brief Unreachable, we've already visited the alloca once.
1018 void visitInstruction(Instruction &I) {
1019 llvm_unreachable("Unhandled instruction in use builder.");
1020 }
1021};
1022
1023void AllocaPartitioning::splitAndMergePartitions() {
1024 size_t NumDeadPartitions = 0;
1025
1026 // Track the range of splittable partitions that we pass when accumulating
1027 // overlapping unsplittable partitions.
1028 uint64_t SplitEndOffset = 0ull;
1029
1030 Partition New(0ull, 0ull, false);
1031
1032 for (unsigned i = 0, j = i, e = Partitions.size(); i != e; i = j) {
1033 ++j;
1034
1035 if (!Partitions[i].IsSplittable || New.BeginOffset == New.EndOffset) {
1036 assert(New.BeginOffset == New.EndOffset);
1037 New = Partitions[i];
1038 } else {
1039 assert(New.IsSplittable);
1040 New.EndOffset = std::max(New.EndOffset, Partitions[i].EndOffset);
1041 }
1042 assert(New.BeginOffset != New.EndOffset);
1043
1044 // Scan the overlapping partitions.
1045 while (j != e && New.EndOffset > Partitions[j].BeginOffset) {
1046 // If the new partition we are forming is splittable, stop at the first
1047 // unsplittable partition.
1048 if (New.IsSplittable && !Partitions[j].IsSplittable)
1049 break;
1050
1051 // Grow the new partition to include any equally splittable range. 'j' is
1052 // always equally splittable when New is splittable, but when New is not
1053 // splittable, we may subsume some (or part of some) splitable partition
1054 // without growing the new one.
1055 if (New.IsSplittable == Partitions[j].IsSplittable) {
1056 New.EndOffset = std::max(New.EndOffset, Partitions[j].EndOffset);
1057 } else {
1058 assert(!New.IsSplittable);
1059 assert(Partitions[j].IsSplittable);
1060 SplitEndOffset = std::max(SplitEndOffset, Partitions[j].EndOffset);
1061 }
1062
Chandler Carruthfca3f402012-10-05 01:29:09 +00001063 Partitions[j].kill();
Chandler Carruth713aa942012-09-14 09:22:59 +00001064 ++NumDeadPartitions;
1065 ++j;
1066 }
1067
1068 // If the new partition is splittable, chop off the end as soon as the
1069 // unsplittable subsequent partition starts and ensure we eventually cover
1070 // the splittable area.
1071 if (j != e && New.IsSplittable) {
1072 SplitEndOffset = std::max(SplitEndOffset, New.EndOffset);
1073 New.EndOffset = std::min(New.EndOffset, Partitions[j].BeginOffset);
1074 }
1075
1076 // Add the new partition if it differs from the original one and is
1077 // non-empty. We can end up with an empty partition here if it was
1078 // splittable but there is an unsplittable one that starts at the same
1079 // offset.
1080 if (New != Partitions[i]) {
1081 if (New.BeginOffset != New.EndOffset)
1082 Partitions.push_back(New);
1083 // Mark the old one for removal.
Chandler Carruthfca3f402012-10-05 01:29:09 +00001084 Partitions[i].kill();
Chandler Carruth713aa942012-09-14 09:22:59 +00001085 ++NumDeadPartitions;
1086 }
1087
1088 New.BeginOffset = New.EndOffset;
1089 if (!New.IsSplittable) {
1090 New.EndOffset = std::max(New.EndOffset, SplitEndOffset);
1091 if (j != e && !Partitions[j].IsSplittable)
1092 New.EndOffset = std::min(New.EndOffset, Partitions[j].BeginOffset);
1093 New.IsSplittable = true;
1094 // If there is a trailing splittable partition which won't be fused into
1095 // the next splittable partition go ahead and add it onto the partitions
1096 // list.
1097 if (New.BeginOffset < New.EndOffset &&
1098 (j == e || !Partitions[j].IsSplittable ||
1099 New.EndOffset < Partitions[j].BeginOffset)) {
1100 Partitions.push_back(New);
1101 New.BeginOffset = New.EndOffset = 0ull;
1102 }
1103 }
1104 }
1105
1106 // Re-sort the partitions now that they have been split and merged into
1107 // disjoint set of partitions. Also remove any of the dead partitions we've
1108 // replaced in the process.
1109 std::sort(Partitions.begin(), Partitions.end());
1110 if (NumDeadPartitions) {
Chandler Carruthfca3f402012-10-05 01:29:09 +00001111 assert(Partitions.back().isDead());
Chandler Carruth713aa942012-09-14 09:22:59 +00001112 assert((ptrdiff_t)NumDeadPartitions ==
1113 std::count(Partitions.begin(), Partitions.end(), Partitions.back()));
1114 }
1115 Partitions.erase(Partitions.end() - NumDeadPartitions, Partitions.end());
1116}
1117
Micah Villmow3574eca2012-10-08 16:38:25 +00001118AllocaPartitioning::AllocaPartitioning(const DataLayout &TD, AllocaInst &AI)
Benjamin Kramerd0807692012-09-14 13:08:09 +00001119 :
1120#ifndef NDEBUG
1121 AI(AI),
1122#endif
1123 PointerEscapingInstr(0) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001124 PartitionBuilder PB(TD, AI, *this);
1125 if (!PB())
1126 return;
1127
Chandler Carruthfca3f402012-10-05 01:29:09 +00001128 // Sort the uses. This arranges for the offsets to be in ascending order,
1129 // and the sizes to be in descending order.
1130 std::sort(Partitions.begin(), Partitions.end());
Chandler Carruth713aa942012-09-14 09:22:59 +00001131
Chandler Carruthfca3f402012-10-05 01:29:09 +00001132 // Remove any partitions from the back which are marked as dead.
1133 while (!Partitions.empty() && Partitions.back().isDead())
1134 Partitions.pop_back();
1135
1136 if (Partitions.size() > 1) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001137 // Intersect splittability for all partitions with equal offsets and sizes.
1138 // Then remove all but the first so that we have a sequence of non-equal but
1139 // potentially overlapping partitions.
1140 for (iterator I = Partitions.begin(), J = I, E = Partitions.end(); I != E;
1141 I = J) {
1142 ++J;
1143 while (J != E && *I == *J) {
1144 I->IsSplittable &= J->IsSplittable;
1145 ++J;
1146 }
1147 }
1148 Partitions.erase(std::unique(Partitions.begin(), Partitions.end()),
1149 Partitions.end());
1150
1151 // Split splittable and merge unsplittable partitions into a disjoint set
1152 // of partitions over the used space of the allocation.
1153 splitAndMergePartitions();
1154 }
1155
1156 // Now build up the user lists for each of these disjoint partitions by
1157 // re-walking the recursive users of the alloca.
1158 Uses.resize(Partitions.size());
1159 UseBuilder UB(TD, AI, *this);
1160 UB();
Chandler Carruth713aa942012-09-14 09:22:59 +00001161}
1162
1163Type *AllocaPartitioning::getCommonType(iterator I) const {
1164 Type *Ty = 0;
1165 for (const_use_iterator UI = use_begin(I), UE = use_end(I); UI != UE; ++UI) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00001166 if (!UI->U)
1167 continue; // Skip dead uses.
Chandler Carruth77c12702012-10-01 01:49:22 +00001168 if (isa<IntrinsicInst>(*UI->U->getUser()))
Chandler Carruth713aa942012-09-14 09:22:59 +00001169 continue;
1170 if (UI->BeginOffset != I->BeginOffset || UI->EndOffset != I->EndOffset)
Chandler Carruth7c8df7a2012-09-18 17:49:37 +00001171 continue;
Chandler Carruth713aa942012-09-14 09:22:59 +00001172
1173 Type *UserTy = 0;
Chandler Carruth77c12702012-10-01 01:49:22 +00001174 if (LoadInst *LI = dyn_cast<LoadInst>(UI->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001175 UserTy = LI->getType();
Chandler Carruth77c12702012-10-01 01:49:22 +00001176 } else if (StoreInst *SI = dyn_cast<StoreInst>(UI->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001177 UserTy = SI->getValueOperand()->getType();
Chandler Carruth713aa942012-09-14 09:22:59 +00001178 }
1179
1180 if (Ty && Ty != UserTy)
1181 return 0;
1182
1183 Ty = UserTy;
1184 }
1185 return Ty;
1186}
1187
Chandler Carruthba13d2e2012-09-14 10:18:51 +00001188#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1189
Chandler Carruth713aa942012-09-14 09:22:59 +00001190void AllocaPartitioning::print(raw_ostream &OS, const_iterator I,
1191 StringRef Indent) const {
1192 OS << Indent << "partition #" << (I - begin())
1193 << " [" << I->BeginOffset << "," << I->EndOffset << ")"
1194 << (I->IsSplittable ? " (splittable)" : "")
1195 << (Uses[I - begin()].empty() ? " (zero uses)" : "")
1196 << "\n";
1197}
1198
1199void AllocaPartitioning::printUsers(raw_ostream &OS, const_iterator I,
1200 StringRef Indent) const {
1201 for (const_use_iterator UI = use_begin(I), UE = use_end(I);
1202 UI != UE; ++UI) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00001203 if (!UI->U)
1204 continue; // Skip dead uses.
Chandler Carruth713aa942012-09-14 09:22:59 +00001205 OS << Indent << " [" << UI->BeginOffset << "," << UI->EndOffset << ") "
Chandler Carruth77c12702012-10-01 01:49:22 +00001206 << "used by: " << *UI->U->getUser() << "\n";
1207 if (MemTransferInst *II = dyn_cast<MemTransferInst>(UI->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001208 const MemTransferOffsets &MTO = MemTransferInstData.lookup(II);
1209 bool IsDest;
1210 if (!MTO.IsSplittable)
1211 IsDest = UI->BeginOffset == MTO.DestBegin;
1212 else
1213 IsDest = MTO.DestBegin != 0u;
1214 OS << Indent << " (original " << (IsDest ? "dest" : "source") << ": "
1215 << "[" << (IsDest ? MTO.DestBegin : MTO.SourceBegin)
1216 << "," << (IsDest ? MTO.DestEnd : MTO.SourceEnd) << ")\n";
1217 }
1218 }
1219}
1220
1221void AllocaPartitioning::print(raw_ostream &OS) const {
1222 if (PointerEscapingInstr) {
1223 OS << "No partitioning for alloca: " << AI << "\n"
1224 << " A pointer to this alloca escaped by:\n"
1225 << " " << *PointerEscapingInstr << "\n";
1226 return;
1227 }
1228
1229 OS << "Partitioning of alloca: " << AI << "\n";
1230 unsigned Num = 0;
1231 for (const_iterator I = begin(), E = end(); I != E; ++I, ++Num) {
1232 print(OS, I);
1233 printUsers(OS, I);
1234 }
1235}
1236
1237void AllocaPartitioning::dump(const_iterator I) const { print(dbgs(), I); }
1238void AllocaPartitioning::dump() const { print(dbgs()); }
1239
Chandler Carruthba13d2e2012-09-14 10:18:51 +00001240#endif // !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1241
Chandler Carruth713aa942012-09-14 09:22:59 +00001242
1243namespace {
Chandler Carruth1c8db502012-09-15 11:43:14 +00001244/// \brief Implementation of LoadAndStorePromoter for promoting allocas.
1245///
1246/// This subclass of LoadAndStorePromoter adds overrides to handle promoting
1247/// the loads and stores of an alloca instruction, as well as updating its
1248/// debug information. This is used when a domtree is unavailable and thus
1249/// mem2reg in its full form can't be used to handle promotion of allocas to
1250/// scalar values.
1251class AllocaPromoter : public LoadAndStorePromoter {
1252 AllocaInst &AI;
1253 DIBuilder &DIB;
1254
1255 SmallVector<DbgDeclareInst *, 4> DDIs;
1256 SmallVector<DbgValueInst *, 4> DVIs;
1257
1258public:
1259 AllocaPromoter(const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
1260 AllocaInst &AI, DIBuilder &DIB)
1261 : LoadAndStorePromoter(Insts, S), AI(AI), DIB(DIB) {}
1262
1263 void run(const SmallVectorImpl<Instruction*> &Insts) {
1264 // Remember which alloca we're promoting (for isInstInList).
1265 if (MDNode *DebugNode = MDNode::getIfExists(AI.getContext(), &AI)) {
1266 for (Value::use_iterator UI = DebugNode->use_begin(),
1267 UE = DebugNode->use_end();
1268 UI != UE; ++UI)
1269 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(*UI))
1270 DDIs.push_back(DDI);
1271 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI))
1272 DVIs.push_back(DVI);
1273 }
1274
1275 LoadAndStorePromoter::run(Insts);
1276 AI.eraseFromParent();
1277 while (!DDIs.empty())
1278 DDIs.pop_back_val()->eraseFromParent();
1279 while (!DVIs.empty())
1280 DVIs.pop_back_val()->eraseFromParent();
1281 }
1282
1283 virtual bool isInstInList(Instruction *I,
1284 const SmallVectorImpl<Instruction*> &Insts) const {
1285 if (LoadInst *LI = dyn_cast<LoadInst>(I))
1286 return LI->getOperand(0) == &AI;
1287 return cast<StoreInst>(I)->getPointerOperand() == &AI;
1288 }
1289
1290 virtual void updateDebugInfo(Instruction *Inst) const {
1291 for (SmallVector<DbgDeclareInst *, 4>::const_iterator I = DDIs.begin(),
1292 E = DDIs.end(); I != E; ++I) {
1293 DbgDeclareInst *DDI = *I;
1294 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
1295 ConvertDebugDeclareToDebugValue(DDI, SI, DIB);
1296 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
1297 ConvertDebugDeclareToDebugValue(DDI, LI, DIB);
1298 }
1299 for (SmallVector<DbgValueInst *, 4>::const_iterator I = DVIs.begin(),
1300 E = DVIs.end(); I != E; ++I) {
1301 DbgValueInst *DVI = *I;
1302 Value *Arg = NULL;
1303 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1304 // If an argument is zero extended then use argument directly. The ZExt
1305 // may be zapped by an optimization pass in future.
1306 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0)))
1307 Arg = dyn_cast<Argument>(ZExt->getOperand(0));
1308 if (SExtInst *SExt = dyn_cast<SExtInst>(SI->getOperand(0)))
1309 Arg = dyn_cast<Argument>(SExt->getOperand(0));
1310 if (!Arg)
1311 Arg = SI->getOperand(0);
1312 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
1313 Arg = LI->getOperand(0);
1314 } else {
1315 continue;
1316 }
1317 Instruction *DbgVal =
1318 DIB.insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
1319 Inst);
1320 DbgVal->setDebugLoc(DVI->getDebugLoc());
1321 }
1322 }
1323};
1324} // end anon namespace
1325
1326
1327namespace {
Chandler Carruth713aa942012-09-14 09:22:59 +00001328/// \brief An optimization pass providing Scalar Replacement of Aggregates.
1329///
1330/// This pass takes allocations which can be completely analyzed (that is, they
1331/// don't escape) and tries to turn them into scalar SSA values. There are
1332/// a few steps to this process.
1333///
1334/// 1) It takes allocations of aggregates and analyzes the ways in which they
1335/// are used to try to split them into smaller allocations, ideally of
1336/// a single scalar data type. It will split up memcpy and memset accesses
1337/// as necessary and try to isolate invidual scalar accesses.
1338/// 2) It will transform accesses into forms which are suitable for SSA value
1339/// promotion. This can be replacing a memset with a scalar store of an
1340/// integer value, or it can involve speculating operations on a PHI or
1341/// select to be a PHI or select of the results.
1342/// 3) Finally, this will try to detect a pattern of accesses which map cleanly
1343/// onto insert and extract operations on a vector value, and convert them to
1344/// this form. By doing so, it will enable promotion of vector aggregates to
1345/// SSA vector values.
1346class SROA : public FunctionPass {
Chandler Carruth1c8db502012-09-15 11:43:14 +00001347 const bool RequiresDomTree;
1348
Chandler Carruth713aa942012-09-14 09:22:59 +00001349 LLVMContext *C;
Micah Villmow3574eca2012-10-08 16:38:25 +00001350 const DataLayout *TD;
Chandler Carruth713aa942012-09-14 09:22:59 +00001351 DominatorTree *DT;
1352
1353 /// \brief Worklist of alloca instructions to simplify.
1354 ///
1355 /// Each alloca in the function is added to this. Each new alloca formed gets
1356 /// added to it as well to recursively simplify unless that alloca can be
1357 /// directly promoted. Finally, each time we rewrite a use of an alloca other
1358 /// the one being actively rewritten, we add it back onto the list if not
1359 /// already present to ensure it is re-visited.
1360 SetVector<AllocaInst *, SmallVector<AllocaInst *, 16> > Worklist;
1361
1362 /// \brief A collection of instructions to delete.
1363 /// We try to batch deletions to simplify code and make things a bit more
1364 /// efficient.
1365 SmallVector<Instruction *, 8> DeadInsts;
1366
1367 /// \brief A set to prevent repeatedly marking an instruction split into many
1368 /// uses as dead. Only used to guard insertion into DeadInsts.
1369 SmallPtrSet<Instruction *, 4> DeadSplitInsts;
1370
Chandler Carruthb2d98c22012-10-04 12:33:50 +00001371 /// \brief Post-promotion worklist.
1372 ///
1373 /// Sometimes we discover an alloca which has a high probability of becoming
1374 /// viable for SROA after a round of promotion takes place. In those cases,
1375 /// the alloca is enqueued here for re-processing.
1376 ///
1377 /// Note that we have to be very careful to clear allocas out of this list in
1378 /// the event they are deleted.
1379 SetVector<AllocaInst *, SmallVector<AllocaInst *, 16> > PostPromotionWorklist;
1380
Chandler Carruth713aa942012-09-14 09:22:59 +00001381 /// \brief A collection of alloca instructions we can directly promote.
1382 std::vector<AllocaInst *> PromotableAllocas;
1383
1384public:
Chandler Carruth1c8db502012-09-15 11:43:14 +00001385 SROA(bool RequiresDomTree = true)
1386 : FunctionPass(ID), RequiresDomTree(RequiresDomTree),
1387 C(0), TD(0), DT(0) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001388 initializeSROAPass(*PassRegistry::getPassRegistry());
1389 }
1390 bool runOnFunction(Function &F);
1391 void getAnalysisUsage(AnalysisUsage &AU) const;
1392
1393 const char *getPassName() const { return "SROA"; }
1394 static char ID;
1395
1396private:
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00001397 friend class PHIOrSelectSpeculator;
Chandler Carruth713aa942012-09-14 09:22:59 +00001398 friend class AllocaPartitionRewriter;
1399 friend class AllocaPartitionVectorRewriter;
1400
1401 bool rewriteAllocaPartition(AllocaInst &AI,
1402 AllocaPartitioning &P,
1403 AllocaPartitioning::iterator PI);
1404 bool splitAlloca(AllocaInst &AI, AllocaPartitioning &P);
1405 bool runOnAlloca(AllocaInst &AI);
Chandler Carruth8615cd22012-09-14 10:26:38 +00001406 void deleteDeadInstructions(SmallPtrSet<AllocaInst *, 4> &DeletedAllocas);
Chandler Carruth1c8db502012-09-15 11:43:14 +00001407 bool promoteAllocas(Function &F);
Chandler Carruth713aa942012-09-14 09:22:59 +00001408};
1409}
1410
1411char SROA::ID = 0;
1412
Chandler Carruth1c8db502012-09-15 11:43:14 +00001413FunctionPass *llvm::createSROAPass(bool RequiresDomTree) {
1414 return new SROA(RequiresDomTree);
Chandler Carruth713aa942012-09-14 09:22:59 +00001415}
1416
1417INITIALIZE_PASS_BEGIN(SROA, "sroa", "Scalar Replacement Of Aggregates",
1418 false, false)
1419INITIALIZE_PASS_DEPENDENCY(DominatorTree)
1420INITIALIZE_PASS_END(SROA, "sroa", "Scalar Replacement Of Aggregates",
1421 false, false)
1422
Chandler Carruth0e9da582012-10-05 01:29:06 +00001423namespace {
1424/// \brief Visitor to speculate PHIs and Selects where possible.
1425class PHIOrSelectSpeculator : public InstVisitor<PHIOrSelectSpeculator> {
1426 // Befriend the base class so it can delegate to private visit methods.
1427 friend class llvm::InstVisitor<PHIOrSelectSpeculator>;
1428
Micah Villmow3574eca2012-10-08 16:38:25 +00001429 const DataLayout &TD;
Chandler Carruth0e9da582012-10-05 01:29:06 +00001430 AllocaPartitioning &P;
1431 SROA &Pass;
1432
1433public:
Micah Villmow3574eca2012-10-08 16:38:25 +00001434 PHIOrSelectSpeculator(const DataLayout &TD, AllocaPartitioning &P, SROA &Pass)
Chandler Carruth0e9da582012-10-05 01:29:06 +00001435 : TD(TD), P(P), Pass(Pass) {}
1436
1437 /// \brief Visit the users of an alloca partition and rewrite them.
1438 void visitUsers(AllocaPartitioning::const_iterator PI) {
1439 // Note that we need to use an index here as the underlying vector of uses
1440 // may be grown during speculation. However, we never need to re-visit the
1441 // new uses, and so we can use the initial size bound.
1442 for (unsigned Idx = 0, Size = P.use_size(PI); Idx != Size; ++Idx) {
1443 const AllocaPartitioning::PartitionUse &PU = P.getUse(PI, Idx);
1444 if (!PU.U)
1445 continue; // Skip dead use.
1446
1447 visit(cast<Instruction>(PU.U->getUser()));
1448 }
1449 }
1450
1451private:
1452 // By default, skip this instruction.
1453 void visitInstruction(Instruction &I) {}
1454
1455 /// PHI instructions that use an alloca and are subsequently loaded can be
1456 /// rewritten to load both input pointers in the pred blocks and then PHI the
1457 /// results, allowing the load of the alloca to be promoted.
1458 /// From this:
1459 /// %P2 = phi [i32* %Alloca, i32* %Other]
1460 /// %V = load i32* %P2
1461 /// to:
1462 /// %V1 = load i32* %Alloca -> will be mem2reg'd
1463 /// ...
1464 /// %V2 = load i32* %Other
1465 /// ...
1466 /// %V = phi [i32 %V1, i32 %V2]
1467 ///
1468 /// We can do this to a select if its only uses are loads and if the operands
1469 /// to the select can be loaded unconditionally.
1470 ///
1471 /// FIXME: This should be hoisted into a generic utility, likely in
1472 /// Transforms/Util/Local.h
1473 bool isSafePHIToSpeculate(PHINode &PN, SmallVectorImpl<LoadInst *> &Loads) {
1474 // For now, we can only do this promotion if the load is in the same block
1475 // as the PHI, and if there are no stores between the phi and load.
1476 // TODO: Allow recursive phi users.
1477 // TODO: Allow stores.
1478 BasicBlock *BB = PN.getParent();
1479 unsigned MaxAlign = 0;
1480 for (Value::use_iterator UI = PN.use_begin(), UE = PN.use_end();
1481 UI != UE; ++UI) {
1482 LoadInst *LI = dyn_cast<LoadInst>(*UI);
1483 if (LI == 0 || !LI->isSimple()) return false;
1484
1485 // For now we only allow loads in the same block as the PHI. This is
1486 // a common case that happens when instcombine merges two loads through
1487 // a PHI.
1488 if (LI->getParent() != BB) return false;
1489
1490 // Ensure that there are no instructions between the PHI and the load that
1491 // could store.
1492 for (BasicBlock::iterator BBI = &PN; &*BBI != LI; ++BBI)
1493 if (BBI->mayWriteToMemory())
1494 return false;
1495
1496 MaxAlign = std::max(MaxAlign, LI->getAlignment());
1497 Loads.push_back(LI);
1498 }
1499
1500 // We can only transform this if it is safe to push the loads into the
1501 // predecessor blocks. The only thing to watch out for is that we can't put
1502 // a possibly trapping load in the predecessor if it is a critical edge.
1503 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num;
1504 ++Idx) {
1505 TerminatorInst *TI = PN.getIncomingBlock(Idx)->getTerminator();
1506 Value *InVal = PN.getIncomingValue(Idx);
1507
1508 // If the value is produced by the terminator of the predecessor (an
1509 // invoke) or it has side-effects, there is no valid place to put a load
1510 // in the predecessor.
1511 if (TI == InVal || TI->mayHaveSideEffects())
1512 return false;
1513
1514 // If the predecessor has a single successor, then the edge isn't
1515 // critical.
1516 if (TI->getNumSuccessors() == 1)
1517 continue;
1518
1519 // If this pointer is always safe to load, or if we can prove that there
1520 // is already a load in the block, then we can move the load to the pred
1521 // block.
1522 if (InVal->isDereferenceablePointer() ||
1523 isSafeToLoadUnconditionally(InVal, TI, MaxAlign, &TD))
1524 continue;
1525
1526 return false;
1527 }
1528
1529 return true;
1530 }
1531
1532 void visitPHINode(PHINode &PN) {
1533 DEBUG(dbgs() << " original: " << PN << "\n");
1534
1535 SmallVector<LoadInst *, 4> Loads;
1536 if (!isSafePHIToSpeculate(PN, Loads))
1537 return;
1538
1539 assert(!Loads.empty());
1540
1541 Type *LoadTy = cast<PointerType>(PN.getType())->getElementType();
1542 IRBuilder<> PHIBuilder(&PN);
1543 PHINode *NewPN = PHIBuilder.CreatePHI(LoadTy, PN.getNumIncomingValues(),
1544 PN.getName() + ".sroa.speculated");
1545
1546 // Get the TBAA tag and alignment to use from one of the loads. It doesn't
1547 // matter which one we get and if any differ, it doesn't matter.
1548 LoadInst *SomeLoad = cast<LoadInst>(Loads.back());
1549 MDNode *TBAATag = SomeLoad->getMetadata(LLVMContext::MD_tbaa);
1550 unsigned Align = SomeLoad->getAlignment();
1551
1552 // Rewrite all loads of the PN to use the new PHI.
1553 do {
1554 LoadInst *LI = Loads.pop_back_val();
1555 LI->replaceAllUsesWith(NewPN);
1556 Pass.DeadInsts.push_back(LI);
1557 } while (!Loads.empty());
1558
1559 // Inject loads into all of the pred blocks.
1560 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
1561 BasicBlock *Pred = PN.getIncomingBlock(Idx);
1562 TerminatorInst *TI = Pred->getTerminator();
1563 Use *InUse = &PN.getOperandUse(PN.getOperandNumForIncomingValue(Idx));
1564 Value *InVal = PN.getIncomingValue(Idx);
1565 IRBuilder<> PredBuilder(TI);
1566
1567 LoadInst *Load
1568 = PredBuilder.CreateLoad(InVal, (PN.getName() + ".sroa.speculate.load." +
1569 Pred->getName()));
1570 ++NumLoadsSpeculated;
1571 Load->setAlignment(Align);
1572 if (TBAATag)
1573 Load->setMetadata(LLVMContext::MD_tbaa, TBAATag);
1574 NewPN->addIncoming(Load, Pred);
1575
1576 Instruction *Ptr = dyn_cast<Instruction>(InVal);
1577 if (!Ptr)
1578 // No uses to rewrite.
1579 continue;
1580
1581 // Try to lookup and rewrite any partition uses corresponding to this phi
1582 // input.
1583 AllocaPartitioning::iterator PI
1584 = P.findPartitionForPHIOrSelectOperand(InUse);
1585 if (PI == P.end())
1586 continue;
1587
1588 // Replace the Use in the PartitionUse for this operand with the Use
1589 // inside the load.
1590 AllocaPartitioning::use_iterator UI
1591 = P.findPartitionUseForPHIOrSelectOperand(InUse);
1592 assert(isa<PHINode>(*UI->U->getUser()));
1593 UI->U = &Load->getOperandUse(Load->getPointerOperandIndex());
1594 }
1595 DEBUG(dbgs() << " speculated to: " << *NewPN << "\n");
1596 }
1597
1598 /// Select instructions that use an alloca and are subsequently loaded can be
1599 /// rewritten to load both input pointers and then select between the result,
1600 /// allowing the load of the alloca to be promoted.
1601 /// From this:
1602 /// %P2 = select i1 %cond, i32* %Alloca, i32* %Other
1603 /// %V = load i32* %P2
1604 /// to:
1605 /// %V1 = load i32* %Alloca -> will be mem2reg'd
1606 /// %V2 = load i32* %Other
1607 /// %V = select i1 %cond, i32 %V1, i32 %V2
1608 ///
1609 /// We can do this to a select if its only uses are loads and if the operand
1610 /// to the select can be loaded unconditionally.
1611 bool isSafeSelectToSpeculate(SelectInst &SI,
1612 SmallVectorImpl<LoadInst *> &Loads) {
1613 Value *TValue = SI.getTrueValue();
1614 Value *FValue = SI.getFalseValue();
1615 bool TDerefable = TValue->isDereferenceablePointer();
1616 bool FDerefable = FValue->isDereferenceablePointer();
1617
1618 for (Value::use_iterator UI = SI.use_begin(), UE = SI.use_end();
1619 UI != UE; ++UI) {
1620 LoadInst *LI = dyn_cast<LoadInst>(*UI);
1621 if (LI == 0 || !LI->isSimple()) return false;
1622
1623 // Both operands to the select need to be dereferencable, either
1624 // absolutely (e.g. allocas) or at this point because we can see other
1625 // accesses to it.
1626 if (!TDerefable && !isSafeToLoadUnconditionally(TValue, LI,
1627 LI->getAlignment(), &TD))
1628 return false;
1629 if (!FDerefable && !isSafeToLoadUnconditionally(FValue, LI,
1630 LI->getAlignment(), &TD))
1631 return false;
1632 Loads.push_back(LI);
1633 }
1634
1635 return true;
1636 }
1637
1638 void visitSelectInst(SelectInst &SI) {
1639 DEBUG(dbgs() << " original: " << SI << "\n");
1640 IRBuilder<> IRB(&SI);
1641
1642 // If the select isn't safe to speculate, just use simple logic to emit it.
1643 SmallVector<LoadInst *, 4> Loads;
1644 if (!isSafeSelectToSpeculate(SI, Loads))
1645 return;
1646
1647 Use *Ops[2] = { &SI.getOperandUse(1), &SI.getOperandUse(2) };
1648 AllocaPartitioning::iterator PIs[2];
1649 AllocaPartitioning::PartitionUse PUs[2];
1650 for (unsigned i = 0, e = 2; i != e; ++i) {
1651 PIs[i] = P.findPartitionForPHIOrSelectOperand(Ops[i]);
1652 if (PIs[i] != P.end()) {
1653 // If the pointer is within the partitioning, remove the select from
1654 // its uses. We'll add in the new loads below.
1655 AllocaPartitioning::use_iterator UI
1656 = P.findPartitionUseForPHIOrSelectOperand(Ops[i]);
1657 PUs[i] = *UI;
1658 // Clear out the use here so that the offsets into the use list remain
1659 // stable but this use is ignored when rewriting.
1660 UI->U = 0;
1661 }
1662 }
1663
1664 Value *TV = SI.getTrueValue();
1665 Value *FV = SI.getFalseValue();
1666 // Replace the loads of the select with a select of two loads.
1667 while (!Loads.empty()) {
1668 LoadInst *LI = Loads.pop_back_val();
1669
1670 IRB.SetInsertPoint(LI);
1671 LoadInst *TL =
1672 IRB.CreateLoad(TV, LI->getName() + ".sroa.speculate.load.true");
1673 LoadInst *FL =
1674 IRB.CreateLoad(FV, LI->getName() + ".sroa.speculate.load.false");
1675 NumLoadsSpeculated += 2;
1676
1677 // Transfer alignment and TBAA info if present.
1678 TL->setAlignment(LI->getAlignment());
1679 FL->setAlignment(LI->getAlignment());
1680 if (MDNode *Tag = LI->getMetadata(LLVMContext::MD_tbaa)) {
1681 TL->setMetadata(LLVMContext::MD_tbaa, Tag);
1682 FL->setMetadata(LLVMContext::MD_tbaa, Tag);
1683 }
1684
1685 Value *V = IRB.CreateSelect(SI.getCondition(), TL, FL,
1686 LI->getName() + ".sroa.speculated");
1687
1688 LoadInst *Loads[2] = { TL, FL };
1689 for (unsigned i = 0, e = 2; i != e; ++i) {
1690 if (PIs[i] != P.end()) {
1691 Use *LoadUse = &Loads[i]->getOperandUse(0);
1692 assert(PUs[i].U->get() == LoadUse->get());
1693 PUs[i].U = LoadUse;
1694 P.use_push_back(PIs[i], PUs[i]);
1695 }
1696 }
1697
1698 DEBUG(dbgs() << " speculated to: " << *V << "\n");
1699 LI->replaceAllUsesWith(V);
1700 Pass.DeadInsts.push_back(LI);
1701 }
1702 }
1703};
1704}
1705
Chandler Carruth713aa942012-09-14 09:22:59 +00001706/// \brief Accumulate the constant offsets in a GEP into a single APInt offset.
1707///
1708/// If the provided GEP is all-constant, the total byte offset formed by the
1709/// GEP is computed and Offset is set to it. If the GEP has any non-constant
1710/// operands, the function returns false and the value of Offset is unmodified.
Micah Villmow3574eca2012-10-08 16:38:25 +00001711static bool accumulateGEPOffsets(const DataLayout &TD, GEPOperator &GEP,
Chandler Carruth713aa942012-09-14 09:22:59 +00001712 APInt &Offset) {
1713 APInt GEPOffset(Offset.getBitWidth(), 0);
1714 for (gep_type_iterator GTI = gep_type_begin(GEP), GTE = gep_type_end(GEP);
1715 GTI != GTE; ++GTI) {
1716 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
1717 if (!OpC)
1718 return false;
1719 if (OpC->isZero()) continue;
1720
1721 // Handle a struct index, which adds its field offset to the pointer.
1722 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
1723 unsigned ElementIdx = OpC->getZExtValue();
1724 const StructLayout *SL = TD.getStructLayout(STy);
1725 GEPOffset += APInt(Offset.getBitWidth(),
1726 SL->getElementOffset(ElementIdx));
1727 continue;
1728 }
1729
1730 APInt TypeSize(Offset.getBitWidth(),
1731 TD.getTypeAllocSize(GTI.getIndexedType()));
1732 if (VectorType *VTy = dyn_cast<VectorType>(*GTI)) {
1733 assert((VTy->getScalarSizeInBits() % 8) == 0 &&
1734 "vector element size is not a multiple of 8, cannot GEP over it");
1735 TypeSize = VTy->getScalarSizeInBits() / 8;
1736 }
1737
1738 GEPOffset += OpC->getValue().sextOrTrunc(Offset.getBitWidth()) * TypeSize;
1739 }
1740 Offset = GEPOffset;
1741 return true;
1742}
1743
1744/// \brief Build a GEP out of a base pointer and indices.
1745///
1746/// This will return the BasePtr if that is valid, or build a new GEP
1747/// instruction using the IRBuilder if GEP-ing is needed.
1748static Value *buildGEP(IRBuilder<> &IRB, Value *BasePtr,
1749 SmallVectorImpl<Value *> &Indices,
1750 const Twine &Prefix) {
1751 if (Indices.empty())
1752 return BasePtr;
1753
1754 // A single zero index is a no-op, so check for this and avoid building a GEP
1755 // in that case.
1756 if (Indices.size() == 1 && cast<ConstantInt>(Indices.back())->isZero())
1757 return BasePtr;
1758
1759 return IRB.CreateInBoundsGEP(BasePtr, Indices, Prefix + ".idx");
1760}
1761
1762/// \brief Get a natural GEP off of the BasePtr walking through Ty toward
1763/// TargetTy without changing the offset of the pointer.
1764///
1765/// This routine assumes we've already established a properly offset GEP with
1766/// Indices, and arrived at the Ty type. The goal is to continue to GEP with
1767/// zero-indices down through type layers until we find one the same as
1768/// TargetTy. If we can't find one with the same type, we at least try to use
1769/// one with the same size. If none of that works, we just produce the GEP as
1770/// indicated by Indices to have the correct offset.
Micah Villmow3574eca2012-10-08 16:38:25 +00001771static Value *getNaturalGEPWithType(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001772 Value *BasePtr, Type *Ty, Type *TargetTy,
1773 SmallVectorImpl<Value *> &Indices,
1774 const Twine &Prefix) {
1775 if (Ty == TargetTy)
1776 return buildGEP(IRB, BasePtr, Indices, Prefix);
1777
1778 // See if we can descend into a struct and locate a field with the correct
1779 // type.
1780 unsigned NumLayers = 0;
1781 Type *ElementTy = Ty;
1782 do {
1783 if (ElementTy->isPointerTy())
1784 break;
1785 if (SequentialType *SeqTy = dyn_cast<SequentialType>(ElementTy)) {
1786 ElementTy = SeqTy->getElementType();
Micah Villmowfb384d62012-10-11 21:27:41 +00001787 Indices.push_back(IRB.getInt(APInt(TD.getPointerSizeInBits(), 0)));
Chandler Carruth713aa942012-09-14 09:22:59 +00001788 } else if (StructType *STy = dyn_cast<StructType>(ElementTy)) {
Chandler Carruth2fdb25b2012-10-09 01:58:35 +00001789 if (STy->element_begin() == STy->element_end())
1790 break; // Nothing left to descend into.
Chandler Carruth713aa942012-09-14 09:22:59 +00001791 ElementTy = *STy->element_begin();
1792 Indices.push_back(IRB.getInt32(0));
1793 } else {
1794 break;
1795 }
1796 ++NumLayers;
1797 } while (ElementTy != TargetTy);
1798 if (ElementTy != TargetTy)
1799 Indices.erase(Indices.end() - NumLayers, Indices.end());
1800
1801 return buildGEP(IRB, BasePtr, Indices, Prefix);
1802}
1803
1804/// \brief Recursively compute indices for a natural GEP.
1805///
1806/// This is the recursive step for getNaturalGEPWithOffset that walks down the
1807/// element types adding appropriate indices for the GEP.
Micah Villmow3574eca2012-10-08 16:38:25 +00001808static Value *getNaturalGEPRecursively(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001809 Value *Ptr, Type *Ty, APInt &Offset,
1810 Type *TargetTy,
1811 SmallVectorImpl<Value *> &Indices,
1812 const Twine &Prefix) {
1813 if (Offset == 0)
1814 return getNaturalGEPWithType(IRB, TD, Ptr, Ty, TargetTy, Indices, Prefix);
1815
1816 // We can't recurse through pointer types.
1817 if (Ty->isPointerTy())
1818 return 0;
1819
Chandler Carruth8ed1ed82012-09-14 10:30:40 +00001820 // We try to analyze GEPs over vectors here, but note that these GEPs are
1821 // extremely poorly defined currently. The long-term goal is to remove GEPing
1822 // over a vector from the IR completely.
Chandler Carruth713aa942012-09-14 09:22:59 +00001823 if (VectorType *VecTy = dyn_cast<VectorType>(Ty)) {
1824 unsigned ElementSizeInBits = VecTy->getScalarSizeInBits();
1825 if (ElementSizeInBits % 8)
Chandler Carruth8ed1ed82012-09-14 10:30:40 +00001826 return 0; // GEPs over non-multiple of 8 size vector elements are invalid.
Chandler Carruth713aa942012-09-14 09:22:59 +00001827 APInt ElementSize(Offset.getBitWidth(), ElementSizeInBits / 8);
1828 APInt NumSkippedElements = Offset.udiv(ElementSize);
1829 if (NumSkippedElements.ugt(VecTy->getNumElements()))
1830 return 0;
1831 Offset -= NumSkippedElements * ElementSize;
1832 Indices.push_back(IRB.getInt(NumSkippedElements));
1833 return getNaturalGEPRecursively(IRB, TD, Ptr, VecTy->getElementType(),
1834 Offset, TargetTy, Indices, Prefix);
1835 }
1836
1837 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
1838 Type *ElementTy = ArrTy->getElementType();
1839 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
1840 APInt NumSkippedElements = Offset.udiv(ElementSize);
1841 if (NumSkippedElements.ugt(ArrTy->getNumElements()))
1842 return 0;
1843
1844 Offset -= NumSkippedElements * ElementSize;
1845 Indices.push_back(IRB.getInt(NumSkippedElements));
1846 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1847 Indices, Prefix);
1848 }
1849
1850 StructType *STy = dyn_cast<StructType>(Ty);
1851 if (!STy)
1852 return 0;
1853
1854 const StructLayout *SL = TD.getStructLayout(STy);
1855 uint64_t StructOffset = Offset.getZExtValue();
Chandler Carruthad41dcf2012-09-14 10:30:42 +00001856 if (StructOffset >= SL->getSizeInBytes())
Chandler Carruth713aa942012-09-14 09:22:59 +00001857 return 0;
1858 unsigned Index = SL->getElementContainingOffset(StructOffset);
1859 Offset -= APInt(Offset.getBitWidth(), SL->getElementOffset(Index));
1860 Type *ElementTy = STy->getElementType(Index);
1861 if (Offset.uge(TD.getTypeAllocSize(ElementTy)))
1862 return 0; // The offset points into alignment padding.
1863
1864 Indices.push_back(IRB.getInt32(Index));
1865 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1866 Indices, Prefix);
1867}
1868
1869/// \brief Get a natural GEP from a base pointer to a particular offset and
1870/// resulting in a particular type.
1871///
1872/// The goal is to produce a "natural" looking GEP that works with the existing
1873/// composite types to arrive at the appropriate offset and element type for
1874/// a pointer. TargetTy is the element type the returned GEP should point-to if
1875/// possible. We recurse by decreasing Offset, adding the appropriate index to
1876/// Indices, and setting Ty to the result subtype.
1877///
Chandler Carruth7f5bede2012-09-14 10:18:49 +00001878/// If no natural GEP can be constructed, this function returns null.
Micah Villmow3574eca2012-10-08 16:38:25 +00001879static Value *getNaturalGEPWithOffset(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001880 Value *Ptr, APInt Offset, Type *TargetTy,
1881 SmallVectorImpl<Value *> &Indices,
1882 const Twine &Prefix) {
1883 PointerType *Ty = cast<PointerType>(Ptr->getType());
1884
1885 // Don't consider any GEPs through an i8* as natural unless the TargetTy is
1886 // an i8.
1887 if (Ty == IRB.getInt8PtrTy() && TargetTy->isIntegerTy(8))
1888 return 0;
1889
1890 Type *ElementTy = Ty->getElementType();
Chandler Carruth38f35fd2012-09-18 22:37:19 +00001891 if (!ElementTy->isSized())
1892 return 0; // We can't GEP through an unsized element.
Chandler Carruth713aa942012-09-14 09:22:59 +00001893 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
1894 if (ElementSize == 0)
1895 return 0; // Zero-length arrays can't help us build a natural GEP.
1896 APInt NumSkippedElements = Offset.udiv(ElementSize);
1897
1898 Offset -= NumSkippedElements * ElementSize;
1899 Indices.push_back(IRB.getInt(NumSkippedElements));
1900 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1901 Indices, Prefix);
1902}
1903
1904/// \brief Compute an adjusted pointer from Ptr by Offset bytes where the
1905/// resulting pointer has PointerTy.
1906///
1907/// This tries very hard to compute a "natural" GEP which arrives at the offset
1908/// and produces the pointer type desired. Where it cannot, it will try to use
1909/// the natural GEP to arrive at the offset and bitcast to the type. Where that
1910/// fails, it will try to use an existing i8* and GEP to the byte offset and
1911/// bitcast to the type.
1912///
1913/// The strategy for finding the more natural GEPs is to peel off layers of the
1914/// pointer, walking back through bit casts and GEPs, searching for a base
1915/// pointer from which we can compute a natural GEP with the desired
1916/// properities. The algorithm tries to fold as many constant indices into
1917/// a single GEP as possible, thus making each GEP more independent of the
1918/// surrounding code.
Micah Villmow3574eca2012-10-08 16:38:25 +00001919static Value *getAdjustedPtr(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001920 Value *Ptr, APInt Offset, Type *PointerTy,
1921 const Twine &Prefix) {
1922 // Even though we don't look through PHI nodes, we could be called on an
1923 // instruction in an unreachable block, which may be on a cycle.
1924 SmallPtrSet<Value *, 4> Visited;
1925 Visited.insert(Ptr);
1926 SmallVector<Value *, 4> Indices;
1927
1928 // We may end up computing an offset pointer that has the wrong type. If we
1929 // never are able to compute one directly that has the correct type, we'll
1930 // fall back to it, so keep it around here.
1931 Value *OffsetPtr = 0;
1932
1933 // Remember any i8 pointer we come across to re-use if we need to do a raw
1934 // byte offset.
1935 Value *Int8Ptr = 0;
1936 APInt Int8PtrOffset(Offset.getBitWidth(), 0);
1937
1938 Type *TargetTy = PointerTy->getPointerElementType();
1939
1940 do {
1941 // First fold any existing GEPs into the offset.
1942 while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
1943 APInt GEPOffset(Offset.getBitWidth(), 0);
1944 if (!accumulateGEPOffsets(TD, *GEP, GEPOffset))
1945 break;
1946 Offset += GEPOffset;
1947 Ptr = GEP->getPointerOperand();
1948 if (!Visited.insert(Ptr))
1949 break;
1950 }
1951
1952 // See if we can perform a natural GEP here.
1953 Indices.clear();
1954 if (Value *P = getNaturalGEPWithOffset(IRB, TD, Ptr, Offset, TargetTy,
1955 Indices, Prefix)) {
1956 if (P->getType() == PointerTy) {
1957 // Zap any offset pointer that we ended up computing in previous rounds.
1958 if (OffsetPtr && OffsetPtr->use_empty())
1959 if (Instruction *I = dyn_cast<Instruction>(OffsetPtr))
1960 I->eraseFromParent();
1961 return P;
1962 }
1963 if (!OffsetPtr) {
1964 OffsetPtr = P;
1965 }
1966 }
1967
1968 // Stash this pointer if we've found an i8*.
1969 if (Ptr->getType()->isIntegerTy(8)) {
1970 Int8Ptr = Ptr;
1971 Int8PtrOffset = Offset;
1972 }
1973
1974 // Peel off a layer of the pointer and update the offset appropriately.
1975 if (Operator::getOpcode(Ptr) == Instruction::BitCast) {
1976 Ptr = cast<Operator>(Ptr)->getOperand(0);
1977 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(Ptr)) {
1978 if (GA->mayBeOverridden())
1979 break;
1980 Ptr = GA->getAliasee();
1981 } else {
1982 break;
1983 }
1984 assert(Ptr->getType()->isPointerTy() && "Unexpected operand type!");
1985 } while (Visited.insert(Ptr));
1986
1987 if (!OffsetPtr) {
1988 if (!Int8Ptr) {
1989 Int8Ptr = IRB.CreateBitCast(Ptr, IRB.getInt8PtrTy(),
1990 Prefix + ".raw_cast");
1991 Int8PtrOffset = Offset;
1992 }
1993
1994 OffsetPtr = Int8PtrOffset == 0 ? Int8Ptr :
1995 IRB.CreateInBoundsGEP(Int8Ptr, IRB.getInt(Int8PtrOffset),
1996 Prefix + ".raw_idx");
1997 }
1998 Ptr = OffsetPtr;
1999
2000 // On the off chance we were targeting i8*, guard the bitcast here.
2001 if (Ptr->getType() != PointerTy)
2002 Ptr = IRB.CreateBitCast(Ptr, PointerTy, Prefix + ".cast");
2003
2004 return Ptr;
2005}
2006
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002007/// \brief Test whether we can convert a value from the old to the new type.
2008///
2009/// This predicate should be used to guard calls to convertValue in order to
2010/// ensure that we only try to convert viable values. The strategy is that we
2011/// will peel off single element struct and array wrappings to get to an
2012/// underlying value, and convert that value.
2013static bool canConvertValue(const DataLayout &DL, Type *OldTy, Type *NewTy) {
2014 if (OldTy == NewTy)
2015 return true;
2016 if (DL.getTypeSizeInBits(NewTy) != DL.getTypeSizeInBits(OldTy))
2017 return false;
2018 if (!NewTy->isSingleValueType() || !OldTy->isSingleValueType())
2019 return false;
2020
2021 if (NewTy->isPointerTy() || OldTy->isPointerTy()) {
2022 if (NewTy->isPointerTy() && OldTy->isPointerTy())
2023 return true;
2024 if (NewTy->isIntegerTy() || OldTy->isIntegerTy())
2025 return true;
2026 return false;
2027 }
2028
2029 return true;
2030}
2031
2032/// \brief Generic routine to convert an SSA value to a value of a different
2033/// type.
2034///
2035/// This will try various different casting techniques, such as bitcasts,
2036/// inttoptr, and ptrtoint casts. Use the \c canConvertValue predicate to test
2037/// two types for viability with this routine.
2038static Value *convertValue(const DataLayout &DL, IRBuilder<> &IRB, Value *V,
2039 Type *Ty) {
2040 assert(canConvertValue(DL, V->getType(), Ty) &&
2041 "Value not convertable to type");
2042 if (V->getType() == Ty)
2043 return V;
2044 if (V->getType()->isIntegerTy() && Ty->isPointerTy())
2045 return IRB.CreateIntToPtr(V, Ty);
2046 if (V->getType()->isPointerTy() && Ty->isIntegerTy())
2047 return IRB.CreatePtrToInt(V, Ty);
2048
2049 return IRB.CreateBitCast(V, Ty);
2050}
2051
Chandler Carruth713aa942012-09-14 09:22:59 +00002052/// \brief Test whether the given alloca partition can be promoted to a vector.
2053///
2054/// This is a quick test to check whether we can rewrite a particular alloca
2055/// partition (and its newly formed alloca) into a vector alloca with only
2056/// whole-vector loads and stores such that it could be promoted to a vector
2057/// SSA value. We only can ensure this for a limited set of operations, and we
2058/// don't want to do the rewrites unless we are confident that the result will
2059/// be promotable, so we have an early test here.
Micah Villmow3574eca2012-10-08 16:38:25 +00002060static bool isVectorPromotionViable(const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00002061 Type *AllocaTy,
2062 AllocaPartitioning &P,
2063 uint64_t PartitionBeginOffset,
2064 uint64_t PartitionEndOffset,
2065 AllocaPartitioning::const_use_iterator I,
2066 AllocaPartitioning::const_use_iterator E) {
2067 VectorType *Ty = dyn_cast<VectorType>(AllocaTy);
2068 if (!Ty)
2069 return false;
2070
2071 uint64_t VecSize = TD.getTypeSizeInBits(Ty);
2072 uint64_t ElementSize = Ty->getScalarSizeInBits();
2073
2074 // While the definition of LLVM vectors is bitpacked, we don't support sizes
2075 // that aren't byte sized.
2076 if (ElementSize % 8)
2077 return false;
2078 assert((VecSize % 8) == 0 && "vector size not a multiple of element size?");
2079 VecSize /= 8;
2080 ElementSize /= 8;
2081
2082 for (; I != E; ++I) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00002083 if (!I->U)
2084 continue; // Skip dead use.
2085
Chandler Carruth713aa942012-09-14 09:22:59 +00002086 uint64_t BeginOffset = I->BeginOffset - PartitionBeginOffset;
2087 uint64_t BeginIndex = BeginOffset / ElementSize;
2088 if (BeginIndex * ElementSize != BeginOffset ||
2089 BeginIndex >= Ty->getNumElements())
2090 return false;
2091 uint64_t EndOffset = I->EndOffset - PartitionBeginOffset;
2092 uint64_t EndIndex = EndOffset / ElementSize;
2093 if (EndIndex * ElementSize != EndOffset ||
2094 EndIndex > Ty->getNumElements())
2095 return false;
2096
2097 // FIXME: We should build shuffle vector instructions to handle
2098 // non-element-sized accesses.
2099 if ((EndOffset - BeginOffset) != ElementSize &&
2100 (EndOffset - BeginOffset) != VecSize)
2101 return false;
2102
Chandler Carruth77c12702012-10-01 01:49:22 +00002103 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002104 if (MI->isVolatile())
2105 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002106 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002107 const AllocaPartitioning::MemTransferOffsets &MTO
2108 = P.getMemTransferOffsets(*MTI);
2109 if (!MTO.IsSplittable)
2110 return false;
2111 }
Chandler Carruth77c12702012-10-01 01:49:22 +00002112 } else if (I->U->get()->getType()->getPointerElementType()->isStructTy()) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002113 // Disable vector promotion when there are loads or stores of an FCA.
2114 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002115 } else if (!isa<LoadInst>(I->U->getUser()) &&
2116 !isa<StoreInst>(I->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002117 return false;
2118 }
2119 }
2120 return true;
2121}
2122
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002123/// \brief Test whether the given alloca partition's integer operations can be
2124/// widened to promotable ones.
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002125///
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002126/// This is a quick test to check whether we can rewrite the integer loads and
2127/// stores to a particular alloca into wider loads and stores and be able to
2128/// promote the resulting alloca.
2129static bool isIntegerWideningViable(const DataLayout &TD,
2130 Type *AllocaTy,
2131 uint64_t AllocBeginOffset,
2132 AllocaPartitioning &P,
2133 AllocaPartitioning::const_use_iterator I,
2134 AllocaPartitioning::const_use_iterator E) {
2135 uint64_t SizeInBits = TD.getTypeSizeInBits(AllocaTy);
2136
2137 // Don't try to handle allocas with bit-padding.
2138 if (SizeInBits != TD.getTypeStoreSizeInBits(AllocaTy))
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002139 return false;
2140
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002141 uint64_t Size = TD.getTypeStoreSize(AllocaTy);
2142
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002143 // Check the uses to ensure the uses are (likely) promoteable integer uses.
2144 // Also ensure that the alloca has a covering load or store. We don't want
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002145 // to widen the integer operotains only to fail to promote due to some other
2146 // unsplittable entry (which we may make splittable later).
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002147 bool WholeAllocaOp = false;
2148 for (; I != E; ++I) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00002149 if (!I->U)
2150 continue; // Skip dead use.
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002151
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002152 uint64_t RelBegin = I->BeginOffset - AllocBeginOffset;
2153 uint64_t RelEnd = I->EndOffset - AllocBeginOffset;
2154
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002155 // We can't reasonably handle cases where the load or store extends past
2156 // the end of the aloca's type and into its padding.
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002157 if (RelEnd > Size)
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002158 return false;
2159
Chandler Carruth77c12702012-10-01 01:49:22 +00002160 if (LoadInst *LI = dyn_cast<LoadInst>(I->U->getUser())) {
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002161 if (LI->isVolatile())
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002162 return false;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002163 if (RelBegin == 0 && RelEnd == Size)
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002164 WholeAllocaOp = true;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002165 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType())) {
2166 if (ITy->getBitWidth() < TD.getTypeStoreSize(ITy))
2167 return false;
2168 continue;
2169 }
2170 // Non-integer loads need to be convertible from the alloca type so that
2171 // they are promotable.
2172 if (RelBegin != 0 || RelEnd != Size ||
2173 !canConvertValue(TD, AllocaTy, LI->getType()))
2174 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002175 } else if (StoreInst *SI = dyn_cast<StoreInst>(I->U->getUser())) {
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002176 Type *ValueTy = SI->getValueOperand()->getType();
2177 if (SI->isVolatile())
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002178 return false;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002179 if (RelBegin == 0 && RelEnd == Size)
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002180 WholeAllocaOp = true;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002181 if (IntegerType *ITy = dyn_cast<IntegerType>(ValueTy)) {
2182 if (ITy->getBitWidth() < TD.getTypeStoreSize(ITy))
2183 return false;
2184 continue;
2185 }
2186 // Non-integer stores need to be convertible to the alloca type so that
2187 // they are promotable.
2188 if (RelBegin != 0 || RelEnd != Size ||
2189 !canConvertValue(TD, ValueTy, AllocaTy))
2190 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002191 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002192 if (MI->isVolatile())
2193 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002194 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002195 const AllocaPartitioning::MemTransferOffsets &MTO
2196 = P.getMemTransferOffsets(*MTI);
2197 if (!MTO.IsSplittable)
2198 return false;
2199 }
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002200 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I->U->getUser())) {
2201 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
2202 II->getIntrinsicID() != Intrinsic::lifetime_end)
2203 return false;
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002204 } else {
2205 return false;
2206 }
2207 }
2208 return WholeAllocaOp;
2209}
2210
Chandler Carruth713aa942012-09-14 09:22:59 +00002211namespace {
2212/// \brief Visitor to rewrite instructions using a partition of an alloca to
2213/// use a new alloca.
2214///
2215/// Also implements the rewriting to vector-based accesses when the partition
2216/// passes the isVectorPromotionViable predicate. Most of the rewriting logic
2217/// lives here.
2218class AllocaPartitionRewriter : public InstVisitor<AllocaPartitionRewriter,
2219 bool> {
2220 // Befriend the base class so it can delegate to private visit methods.
2221 friend class llvm::InstVisitor<AllocaPartitionRewriter, bool>;
2222
Micah Villmow3574eca2012-10-08 16:38:25 +00002223 const DataLayout &TD;
Chandler Carruth713aa942012-09-14 09:22:59 +00002224 AllocaPartitioning &P;
2225 SROA &Pass;
2226 AllocaInst &OldAI, &NewAI;
2227 const uint64_t NewAllocaBeginOffset, NewAllocaEndOffset;
Chandler Carruth520eeae2012-10-13 02:41:05 +00002228 Type *NewAllocaTy;
Chandler Carruth713aa942012-09-14 09:22:59 +00002229
2230 // If we are rewriting an alloca partition which can be written as pure
2231 // vector operations, we stash extra information here. When VecTy is
2232 // non-null, we have some strict guarantees about the rewriten alloca:
2233 // - The new alloca is exactly the size of the vector type here.
2234 // - The accesses all either map to the entire vector or to a single
2235 // element.
2236 // - The set of accessing instructions is only one of those handled above
2237 // in isVectorPromotionViable. Generally these are the same access kinds
2238 // which are promotable via mem2reg.
2239 VectorType *VecTy;
2240 Type *ElementTy;
2241 uint64_t ElementSize;
2242
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002243 // This is a convenience and flag variable that will be null unless the new
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002244 // alloca's integer operations should be widened to this integer type due to
2245 // passing isIntegerWideningViable above. If it is non-null, the desired
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002246 // integer type will be stored here for easy access during rewriting.
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002247 IntegerType *IntTy;
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002248
Chandler Carruth713aa942012-09-14 09:22:59 +00002249 // The offset of the partition user currently being rewritten.
2250 uint64_t BeginOffset, EndOffset;
Chandler Carruth77c12702012-10-01 01:49:22 +00002251 Use *OldUse;
Chandler Carruth713aa942012-09-14 09:22:59 +00002252 Instruction *OldPtr;
2253
2254 // The name prefix to use when rewriting instructions for this alloca.
2255 std::string NamePrefix;
2256
2257public:
Micah Villmow3574eca2012-10-08 16:38:25 +00002258 AllocaPartitionRewriter(const DataLayout &TD, AllocaPartitioning &P,
Chandler Carruth713aa942012-09-14 09:22:59 +00002259 AllocaPartitioning::iterator PI,
2260 SROA &Pass, AllocaInst &OldAI, AllocaInst &NewAI,
2261 uint64_t NewBeginOffset, uint64_t NewEndOffset)
2262 : TD(TD), P(P), Pass(Pass),
2263 OldAI(OldAI), NewAI(NewAI),
2264 NewAllocaBeginOffset(NewBeginOffset),
2265 NewAllocaEndOffset(NewEndOffset),
Chandler Carruth520eeae2012-10-13 02:41:05 +00002266 NewAllocaTy(NewAI.getAllocatedType()),
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002267 VecTy(), ElementTy(), ElementSize(), IntTy(),
Chandler Carruth713aa942012-09-14 09:22:59 +00002268 BeginOffset(), EndOffset() {
2269 }
2270
2271 /// \brief Visit the users of the alloca partition and rewrite them.
2272 bool visitUsers(AllocaPartitioning::const_use_iterator I,
2273 AllocaPartitioning::const_use_iterator E) {
2274 if (isVectorPromotionViable(TD, NewAI.getAllocatedType(), P,
2275 NewAllocaBeginOffset, NewAllocaEndOffset,
2276 I, E)) {
2277 ++NumVectorized;
2278 VecTy = cast<VectorType>(NewAI.getAllocatedType());
2279 ElementTy = VecTy->getElementType();
2280 assert((VecTy->getScalarSizeInBits() % 8) == 0 &&
2281 "Only multiple-of-8 sized vector elements are viable");
2282 ElementSize = VecTy->getScalarSizeInBits() / 8;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002283 } else if (isIntegerWideningViable(TD, NewAI.getAllocatedType(),
2284 NewAllocaBeginOffset, P, I, E)) {
2285 IntTy = Type::getIntNTy(NewAI.getContext(),
2286 TD.getTypeSizeInBits(NewAI.getAllocatedType()));
Chandler Carruth713aa942012-09-14 09:22:59 +00002287 }
2288 bool CanSROA = true;
2289 for (; I != E; ++I) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00002290 if (!I->U)
2291 continue; // Skip dead uses.
Chandler Carruth713aa942012-09-14 09:22:59 +00002292 BeginOffset = I->BeginOffset;
2293 EndOffset = I->EndOffset;
Chandler Carruth77c12702012-10-01 01:49:22 +00002294 OldUse = I->U;
2295 OldPtr = cast<Instruction>(I->U->get());
Chandler Carruth713aa942012-09-14 09:22:59 +00002296 NamePrefix = (Twine(NewAI.getName()) + "." + Twine(BeginOffset)).str();
Chandler Carruth77c12702012-10-01 01:49:22 +00002297 CanSROA &= visit(cast<Instruction>(I->U->getUser()));
Chandler Carruth713aa942012-09-14 09:22:59 +00002298 }
2299 if (VecTy) {
2300 assert(CanSROA);
2301 VecTy = 0;
2302 ElementTy = 0;
2303 ElementSize = 0;
2304 }
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002305 if (IntTy) {
2306 assert(CanSROA);
2307 IntTy = 0;
2308 }
Chandler Carruth713aa942012-09-14 09:22:59 +00002309 return CanSROA;
2310 }
2311
2312private:
2313 // Every instruction which can end up as a user must have a rewrite rule.
2314 bool visitInstruction(Instruction &I) {
2315 DEBUG(dbgs() << " !!!! Cannot rewrite: " << I << "\n");
2316 llvm_unreachable("No rewrite rule for this instruction!");
2317 }
2318
2319 Twine getName(const Twine &Suffix) {
2320 return NamePrefix + Suffix;
2321 }
2322
2323 Value *getAdjustedAllocaPtr(IRBuilder<> &IRB, Type *PointerTy) {
2324 assert(BeginOffset >= NewAllocaBeginOffset);
Micah Villmowfb384d62012-10-11 21:27:41 +00002325 APInt Offset(TD.getPointerSizeInBits(), BeginOffset - NewAllocaBeginOffset);
Chandler Carruth713aa942012-09-14 09:22:59 +00002326 return getAdjustedPtr(IRB, TD, &NewAI, Offset, PointerTy, getName(""));
2327 }
2328
Chandler Carruthf710fb12012-10-03 08:14:02 +00002329 /// \brief Compute suitable alignment to access an offset into the new alloca.
2330 unsigned getOffsetAlign(uint64_t Offset) {
Chandler Carruth673850a2012-10-01 12:16:54 +00002331 unsigned NewAIAlign = NewAI.getAlignment();
2332 if (!NewAIAlign)
2333 NewAIAlign = TD.getABITypeAlignment(NewAI.getAllocatedType());
2334 return MinAlign(NewAIAlign, Offset);
2335 }
Chandler Carruthf710fb12012-10-03 08:14:02 +00002336
2337 /// \brief Compute suitable alignment to access this partition of the new
2338 /// alloca.
2339 unsigned getPartitionAlign() {
2340 return getOffsetAlign(BeginOffset - NewAllocaBeginOffset);
Chandler Carruth673850a2012-10-01 12:16:54 +00002341 }
2342
Chandler Carruthf710fb12012-10-03 08:14:02 +00002343 /// \brief Compute suitable alignment to access a type at an offset of the
2344 /// new alloca.
2345 ///
2346 /// \returns zero if the type's ABI alignment is a suitable alignment,
2347 /// otherwise returns the maximal suitable alignment.
2348 unsigned getOffsetTypeAlign(Type *Ty, uint64_t Offset) {
2349 unsigned Align = getOffsetAlign(Offset);
2350 return Align == TD.getABITypeAlignment(Ty) ? 0 : Align;
2351 }
2352
2353 /// \brief Compute suitable alignment to access a type at the beginning of
2354 /// this partition of the new alloca.
2355 ///
2356 /// See \c getOffsetTypeAlign for details; this routine delegates to it.
2357 unsigned getPartitionTypeAlign(Type *Ty) {
2358 return getOffsetTypeAlign(Ty, BeginOffset - NewAllocaBeginOffset);
Chandler Carruth673850a2012-10-01 12:16:54 +00002359 }
2360
Chandler Carruth713aa942012-09-14 09:22:59 +00002361 ConstantInt *getIndex(IRBuilder<> &IRB, uint64_t Offset) {
2362 assert(VecTy && "Can only call getIndex when rewriting a vector");
2363 uint64_t RelOffset = Offset - NewAllocaBeginOffset;
2364 assert(RelOffset / ElementSize < UINT32_MAX && "Index out of bounds");
2365 uint32_t Index = RelOffset / ElementSize;
2366 assert(Index * ElementSize == RelOffset);
2367 return IRB.getInt32(Index);
2368 }
2369
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002370 Value *extractInteger(IRBuilder<> &IRB, IntegerType *TargetTy,
2371 uint64_t Offset) {
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002372 assert(IntTy && "We cannot extract an integer from the alloca");
Chandler Carruth81b001a2012-09-26 10:27:46 +00002373 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2374 getName(".load"));
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002375 V = convertValue(TD, IRB, V, IntTy);
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002376 assert(Offset >= NewAllocaBeginOffset && "Out of bounds offset");
2377 uint64_t RelOffset = Offset - NewAllocaBeginOffset;
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002378 assert(TD.getTypeStoreSize(TargetTy) + RelOffset <=
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002379 TD.getTypeStoreSize(IntTy) &&
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002380 "Element load outside of alloca store");
2381 uint64_t ShAmt = 8*RelOffset;
2382 if (TD.isBigEndian())
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002383 ShAmt = 8*(TD.getTypeStoreSize(IntTy) -
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002384 TD.getTypeStoreSize(TargetTy) - RelOffset);
2385 if (ShAmt)
2386 V = IRB.CreateLShr(V, ShAmt, getName(".shift"));
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002387 assert(TargetTy->getBitWidth() <= IntTy->getBitWidth() &&
2388 "Cannot extract to a larger integer!");
2389 if (TargetTy != IntTy)
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002390 V = IRB.CreateTrunc(V, TargetTy, getName(".trunc"));
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002391 return V;
2392 }
2393
2394 StoreInst *insertInteger(IRBuilder<> &IRB, Value *V, uint64_t Offset) {
2395 IntegerType *Ty = cast<IntegerType>(V->getType());
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002396 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002397 "Cannot insert a larger integer!");
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002398 if (Ty != IntTy)
2399 V = IRB.CreateZExt(V, IntTy, getName(".ext"));
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002400 assert(Offset >= NewAllocaBeginOffset && "Out of bounds offset");
2401 uint64_t RelOffset = Offset - NewAllocaBeginOffset;
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002402 assert(TD.getTypeStoreSize(Ty) + RelOffset <=
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002403 TD.getTypeStoreSize(IntTy) &&
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002404 "Element store outside of alloca store");
2405 uint64_t ShAmt = 8*RelOffset;
2406 if (TD.isBigEndian())
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002407 ShAmt = 8*(TD.getTypeStoreSize(IntTy) - TD.getTypeStoreSize(Ty)
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002408 - RelOffset);
2409 if (ShAmt)
2410 V = IRB.CreateShl(V, ShAmt, getName(".shift"));
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002411
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002412 if (ShAmt || Ty->getBitWidth() < IntTy->getBitWidth()) {
2413 APInt Mask = ~Ty->getMask().zext(IntTy->getBitWidth()).shl(ShAmt);
2414 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2415 getName(".oldload"));
2416 Old = convertValue(TD, IRB, Old, IntTy);
2417 Old = IRB.CreateAnd(Old, Mask, getName(".mask"));
2418 V = IRB.CreateOr(Old, V, getName(".insert"));
2419 }
2420 V = convertValue(TD, IRB, V, NewAllocaTy);
2421 return IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002422 }
2423
Chandler Carruth713aa942012-09-14 09:22:59 +00002424 void deleteIfTriviallyDead(Value *V) {
2425 Instruction *I = cast<Instruction>(V);
2426 if (isInstructionTriviallyDead(I))
2427 Pass.DeadInsts.push_back(I);
2428 }
2429
Chandler Carruth713aa942012-09-14 09:22:59 +00002430 bool rewriteVectorizedLoadInst(IRBuilder<> &IRB, LoadInst &LI, Value *OldOp) {
2431 Value *Result;
2432 if (LI.getType() == VecTy->getElementType() ||
2433 BeginOffset > NewAllocaBeginOffset || EndOffset < NewAllocaEndOffset) {
Chandler Carruth81b001a2012-09-26 10:27:46 +00002434 Result = IRB.CreateExtractElement(
2435 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), getName(".load")),
2436 getIndex(IRB, BeginOffset), getName(".extract"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002437 } else {
Chandler Carruth81b001a2012-09-26 10:27:46 +00002438 Result = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2439 getName(".load"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002440 }
2441 if (Result->getType() != LI.getType())
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002442 Result = convertValue(TD, IRB, Result, LI.getType());
Chandler Carruth713aa942012-09-14 09:22:59 +00002443 LI.replaceAllUsesWith(Result);
2444 Pass.DeadInsts.push_back(&LI);
2445
2446 DEBUG(dbgs() << " to: " << *Result << "\n");
2447 return true;
2448 }
2449
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002450 bool rewriteIntegerLoad(IRBuilder<> &IRB, LoadInst &LI) {
2451 assert(!LI.isVolatile());
2452 Value *Result = extractInteger(IRB, cast<IntegerType>(LI.getType()),
2453 BeginOffset);
2454 LI.replaceAllUsesWith(Result);
2455 Pass.DeadInsts.push_back(&LI);
2456 DEBUG(dbgs() << " to: " << *Result << "\n");
2457 return true;
2458 }
2459
Chandler Carruth713aa942012-09-14 09:22:59 +00002460 bool visitLoadInst(LoadInst &LI) {
2461 DEBUG(dbgs() << " original: " << LI << "\n");
2462 Value *OldOp = LI.getOperand(0);
2463 assert(OldOp == OldPtr);
2464 IRBuilder<> IRB(&LI);
2465
2466 if (VecTy)
2467 return rewriteVectorizedLoadInst(IRB, LI, OldOp);
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002468 if (IntTy && LI.getType()->isIntegerTy())
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002469 return rewriteIntegerLoad(IRB, LI);
Chandler Carruth713aa942012-09-14 09:22:59 +00002470
Chandler Carruth520eeae2012-10-13 02:41:05 +00002471 if (BeginOffset == NewAllocaBeginOffset &&
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002472 canConvertValue(TD, NewAllocaTy, LI.getType())) {
Chandler Carruth520eeae2012-10-13 02:41:05 +00002473 Value *NewLI = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2474 LI.isVolatile(), getName(".load"));
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002475 Value *NewV = convertValue(TD, IRB, NewLI, LI.getType());
Chandler Carruth520eeae2012-10-13 02:41:05 +00002476 LI.replaceAllUsesWith(NewV);
2477 Pass.DeadInsts.push_back(&LI);
2478
2479 DEBUG(dbgs() << " to: " << *NewLI << "\n");
2480 return !LI.isVolatile();
2481 }
2482
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002483 assert(!IntTy && "Invalid load found with int-op widening enabled");
2484
Chandler Carruth713aa942012-09-14 09:22:59 +00002485 Value *NewPtr = getAdjustedAllocaPtr(IRB,
2486 LI.getPointerOperand()->getType());
2487 LI.setOperand(0, NewPtr);
Chandler Carruthf710fb12012-10-03 08:14:02 +00002488 LI.setAlignment(getPartitionTypeAlign(LI.getType()));
Chandler Carruth713aa942012-09-14 09:22:59 +00002489 DEBUG(dbgs() << " to: " << LI << "\n");
2490
2491 deleteIfTriviallyDead(OldOp);
2492 return NewPtr == &NewAI && !LI.isVolatile();
2493 }
2494
2495 bool rewriteVectorizedStoreInst(IRBuilder<> &IRB, StoreInst &SI,
2496 Value *OldOp) {
2497 Value *V = SI.getValueOperand();
2498 if (V->getType() == ElementTy ||
2499 BeginOffset > NewAllocaBeginOffset || EndOffset < NewAllocaEndOffset) {
2500 if (V->getType() != ElementTy)
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002501 V = convertValue(TD, IRB, V, ElementTy);
Chandler Carruth81b001a2012-09-26 10:27:46 +00002502 LoadInst *LI = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2503 getName(".load"));
2504 V = IRB.CreateInsertElement(LI, V, getIndex(IRB, BeginOffset),
Chandler Carruth713aa942012-09-14 09:22:59 +00002505 getName(".insert"));
2506 } else if (V->getType() != VecTy) {
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002507 V = convertValue(TD, IRB, V, VecTy);
Chandler Carruth713aa942012-09-14 09:22:59 +00002508 }
Chandler Carruth81b001a2012-09-26 10:27:46 +00002509 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Chandler Carruth713aa942012-09-14 09:22:59 +00002510 Pass.DeadInsts.push_back(&SI);
2511
2512 (void)Store;
2513 DEBUG(dbgs() << " to: " << *Store << "\n");
2514 return true;
2515 }
2516
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002517 bool rewriteIntegerStore(IRBuilder<> &IRB, StoreInst &SI) {
2518 assert(!SI.isVolatile());
2519 StoreInst *Store = insertInteger(IRB, SI.getValueOperand(), BeginOffset);
2520 Pass.DeadInsts.push_back(&SI);
2521 (void)Store;
2522 DEBUG(dbgs() << " to: " << *Store << "\n");
2523 return true;
2524 }
2525
Chandler Carruth713aa942012-09-14 09:22:59 +00002526 bool visitStoreInst(StoreInst &SI) {
2527 DEBUG(dbgs() << " original: " << SI << "\n");
2528 Value *OldOp = SI.getOperand(1);
2529 assert(OldOp == OldPtr);
2530 IRBuilder<> IRB(&SI);
2531
2532 if (VecTy)
2533 return rewriteVectorizedStoreInst(IRB, SI, OldOp);
Chandler Carruth520eeae2012-10-13 02:41:05 +00002534 Type *ValueTy = SI.getValueOperand()->getType();
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002535 if (IntTy && ValueTy->isIntegerTy())
2536 return rewriteIntegerStore(IRB, SI);
Chandler Carruth520eeae2012-10-13 02:41:05 +00002537
Chandler Carruthb2d98c22012-10-04 12:33:50 +00002538 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2539 // alloca that should be re-examined after promoting this alloca.
Chandler Carruth520eeae2012-10-13 02:41:05 +00002540 if (ValueTy->isPointerTy())
Chandler Carruthb2d98c22012-10-04 12:33:50 +00002541 if (AllocaInst *AI = dyn_cast<AllocaInst>(SI.getValueOperand()
2542 ->stripInBoundsOffsets()))
2543 Pass.PostPromotionWorklist.insert(AI);
2544
Chandler Carruth520eeae2012-10-13 02:41:05 +00002545 if (BeginOffset == NewAllocaBeginOffset &&
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00002546 canConvertValue(TD, ValueTy, NewAllocaTy)) {
2547 Value *NewV = convertValue(TD, IRB, SI.getValueOperand(), NewAllocaTy);
Chandler Carruth520eeae2012-10-13 02:41:05 +00002548 StoreInst *NewSI = IRB.CreateAlignedStore(NewV, &NewAI, NewAI.getAlignment(),
2549 SI.isVolatile());
Chandler Carruthc2fcf1a62012-10-13 05:09:27 +00002550 (void)NewSI;
Chandler Carruth520eeae2012-10-13 02:41:05 +00002551 Pass.DeadInsts.push_back(&SI);
2552
2553 DEBUG(dbgs() << " to: " << *NewSI << "\n");
2554 return !SI.isVolatile();
2555 }
2556
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002557 assert(!IntTy && "Invalid store found with int-op widening enabled");
2558
Chandler Carruth713aa942012-09-14 09:22:59 +00002559 Value *NewPtr = getAdjustedAllocaPtr(IRB,
2560 SI.getPointerOperand()->getType());
2561 SI.setOperand(1, NewPtr);
Chandler Carruthf710fb12012-10-03 08:14:02 +00002562 SI.setAlignment(getPartitionTypeAlign(SI.getValueOperand()->getType()));
Chandler Carruth713aa942012-09-14 09:22:59 +00002563 DEBUG(dbgs() << " to: " << SI << "\n");
2564
2565 deleteIfTriviallyDead(OldOp);
2566 return NewPtr == &NewAI && !SI.isVolatile();
2567 }
2568
2569 bool visitMemSetInst(MemSetInst &II) {
2570 DEBUG(dbgs() << " original: " << II << "\n");
2571 IRBuilder<> IRB(&II);
2572 assert(II.getRawDest() == OldPtr);
2573
2574 // If the memset has a variable size, it cannot be split, just adjust the
2575 // pointer to the new alloca.
2576 if (!isa<Constant>(II.getLength())) {
2577 II.setDest(getAdjustedAllocaPtr(IRB, II.getRawDest()->getType()));
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002578 Type *CstTy = II.getAlignmentCst()->getType();
Chandler Carruthf710fb12012-10-03 08:14:02 +00002579 II.setAlignment(ConstantInt::get(CstTy, getPartitionAlign()));
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002580
Chandler Carruth713aa942012-09-14 09:22:59 +00002581 deleteIfTriviallyDead(OldPtr);
2582 return false;
2583 }
2584
2585 // Record this instruction for deletion.
2586 if (Pass.DeadSplitInsts.insert(&II))
2587 Pass.DeadInsts.push_back(&II);
2588
2589 Type *AllocaTy = NewAI.getAllocatedType();
2590 Type *ScalarTy = AllocaTy->getScalarType();
2591
2592 // If this doesn't map cleanly onto the alloca type, and that type isn't
2593 // a single value type, just emit a memset.
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002594 if (!VecTy && !IntTy &&
2595 (BeginOffset != NewAllocaBeginOffset ||
2596 EndOffset != NewAllocaEndOffset ||
2597 !AllocaTy->isSingleValueType() ||
2598 !TD.isLegalInteger(TD.getTypeSizeInBits(ScalarTy)))) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002599 Type *SizeTy = II.getLength()->getType();
2600 Constant *Size = ConstantInt::get(SizeTy, EndOffset - BeginOffset);
Chandler Carruth713aa942012-09-14 09:22:59 +00002601 CallInst *New
2602 = IRB.CreateMemSet(getAdjustedAllocaPtr(IRB,
2603 II.getRawDest()->getType()),
Chandler Carruthf710fb12012-10-03 08:14:02 +00002604 II.getValue(), Size, getPartitionAlign(),
Chandler Carruth713aa942012-09-14 09:22:59 +00002605 II.isVolatile());
2606 (void)New;
2607 DEBUG(dbgs() << " to: " << *New << "\n");
2608 return false;
2609 }
2610
2611 // If we can represent this as a simple value, we have to build the actual
2612 // value to store, which requires expanding the byte present in memset to
2613 // a sensible representation for the alloca type. This is essentially
2614 // splatting the byte to a sufficiently wide integer, bitcasting to the
2615 // desired scalar type, and splatting it across any desired vector type.
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002616 uint64_t Size = EndOffset - BeginOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +00002617 Value *V = II.getValue();
2618 IntegerType *VTy = cast<IntegerType>(V->getType());
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002619 Type *SplatIntTy = Type::getIntNTy(VTy->getContext(), Size*8);
2620 if (Size*8 > VTy->getBitWidth())
2621 V = IRB.CreateMul(IRB.CreateZExt(V, SplatIntTy, getName(".zext")),
Chandler Carruth713aa942012-09-14 09:22:59 +00002622 ConstantExpr::getUDiv(
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002623 Constant::getAllOnesValue(SplatIntTy),
Chandler Carruth713aa942012-09-14 09:22:59 +00002624 ConstantExpr::getZExt(
2625 Constant::getAllOnesValue(V->getType()),
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002626 SplatIntTy)),
Chandler Carruth713aa942012-09-14 09:22:59 +00002627 getName(".isplat"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002628
2629 // If this is an element-wide memset of a vectorizable alloca, insert it.
2630 if (VecTy && (BeginOffset > NewAllocaBeginOffset ||
2631 EndOffset < NewAllocaEndOffset)) {
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002632 if (V->getType() != ScalarTy)
2633 V = convertValue(TD, IRB, V, ScalarTy);
Chandler Carruth81b001a2012-09-26 10:27:46 +00002634 StoreInst *Store = IRB.CreateAlignedStore(
2635 IRB.CreateInsertElement(IRB.CreateAlignedLoad(&NewAI,
2636 NewAI.getAlignment(),
2637 getName(".load")),
2638 V, getIndex(IRB, BeginOffset),
Chandler Carruth713aa942012-09-14 09:22:59 +00002639 getName(".insert")),
Chandler Carruth81b001a2012-09-26 10:27:46 +00002640 &NewAI, NewAI.getAlignment());
Chandler Carruth713aa942012-09-14 09:22:59 +00002641 (void)Store;
2642 DEBUG(dbgs() << " to: " << *Store << "\n");
2643 return true;
2644 }
2645
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002646 // If this is a memset on an alloca where we can widen stores, insert the
2647 // set integer.
2648 if (IntTy && (BeginOffset > NewAllocaBeginOffset ||
2649 EndOffset < NewAllocaEndOffset)) {
2650 assert(!II.isVolatile());
2651 StoreInst *Store = insertInteger(IRB, V, BeginOffset);
2652 (void)Store;
2653 DEBUG(dbgs() << " to: " << *Store << "\n");
2654 return true;
Chandler Carruth713aa942012-09-14 09:22:59 +00002655 }
2656
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002657 if (V->getType() != AllocaTy)
2658 V = convertValue(TD, IRB, V, AllocaTy);
2659
Chandler Carruth81b001a2012-09-26 10:27:46 +00002660 Value *New = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
2661 II.isVolatile());
Chandler Carruth713aa942012-09-14 09:22:59 +00002662 (void)New;
2663 DEBUG(dbgs() << " to: " << *New << "\n");
2664 return !II.isVolatile();
2665 }
2666
2667 bool visitMemTransferInst(MemTransferInst &II) {
2668 // Rewriting of memory transfer instructions can be a bit tricky. We break
2669 // them into two categories: split intrinsics and unsplit intrinsics.
2670
2671 DEBUG(dbgs() << " original: " << II << "\n");
2672 IRBuilder<> IRB(&II);
2673
2674 assert(II.getRawSource() == OldPtr || II.getRawDest() == OldPtr);
2675 bool IsDest = II.getRawDest() == OldPtr;
2676
2677 const AllocaPartitioning::MemTransferOffsets &MTO
2678 = P.getMemTransferOffsets(II);
2679
Chandler Carruth673850a2012-10-01 12:16:54 +00002680 // Compute the relative offset within the transfer.
Micah Villmowfb384d62012-10-11 21:27:41 +00002681 unsigned IntPtrWidth = TD.getPointerSizeInBits();
Chandler Carruth673850a2012-10-01 12:16:54 +00002682 APInt RelOffset(IntPtrWidth, BeginOffset - (IsDest ? MTO.DestBegin
2683 : MTO.SourceBegin));
2684
2685 unsigned Align = II.getAlignment();
2686 if (Align > 1)
2687 Align = MinAlign(RelOffset.zextOrTrunc(64).getZExtValue(),
Chandler Carruthf710fb12012-10-03 08:14:02 +00002688 MinAlign(II.getAlignment(), getPartitionAlign()));
Chandler Carruth673850a2012-10-01 12:16:54 +00002689
Chandler Carruth713aa942012-09-14 09:22:59 +00002690 // For unsplit intrinsics, we simply modify the source and destination
2691 // pointers in place. This isn't just an optimization, it is a matter of
2692 // correctness. With unsplit intrinsics we may be dealing with transfers
2693 // within a single alloca before SROA ran, or with transfers that have
2694 // a variable length. We may also be dealing with memmove instead of
2695 // memcpy, and so simply updating the pointers is the necessary for us to
2696 // update both source and dest of a single call.
2697 if (!MTO.IsSplittable) {
2698 Value *OldOp = IsDest ? II.getRawDest() : II.getRawSource();
2699 if (IsDest)
2700 II.setDest(getAdjustedAllocaPtr(IRB, II.getRawDest()->getType()));
2701 else
2702 II.setSource(getAdjustedAllocaPtr(IRB, II.getRawSource()->getType()));
2703
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002704 Type *CstTy = II.getAlignmentCst()->getType();
Chandler Carruth673850a2012-10-01 12:16:54 +00002705 II.setAlignment(ConstantInt::get(CstTy, Align));
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002706
Chandler Carruth713aa942012-09-14 09:22:59 +00002707 DEBUG(dbgs() << " to: " << II << "\n");
2708 deleteIfTriviallyDead(OldOp);
2709 return false;
2710 }
2711 // For split transfer intrinsics we have an incredibly useful assurance:
2712 // the source and destination do not reside within the same alloca, and at
2713 // least one of them does not escape. This means that we can replace
2714 // memmove with memcpy, and we don't need to worry about all manner of
2715 // downsides to splitting and transforming the operations.
2716
Chandler Carruth713aa942012-09-14 09:22:59 +00002717 // If this doesn't map cleanly onto the alloca type, and that type isn't
2718 // a single value type, just emit a memcpy.
2719 bool EmitMemCpy
2720 = !VecTy && (BeginOffset != NewAllocaBeginOffset ||
2721 EndOffset != NewAllocaEndOffset ||
2722 !NewAI.getAllocatedType()->isSingleValueType());
2723
2724 // If we're just going to emit a memcpy, the alloca hasn't changed, and the
2725 // size hasn't been shrunk based on analysis of the viable range, this is
2726 // a no-op.
2727 if (EmitMemCpy && &OldAI == &NewAI) {
2728 uint64_t OrigBegin = IsDest ? MTO.DestBegin : MTO.SourceBegin;
2729 uint64_t OrigEnd = IsDest ? MTO.DestEnd : MTO.SourceEnd;
2730 // Ensure the start lines up.
2731 assert(BeginOffset == OrigBegin);
Benjamin Kramerd0807692012-09-14 13:08:09 +00002732 (void)OrigBegin;
Chandler Carruth713aa942012-09-14 09:22:59 +00002733
2734 // Rewrite the size as needed.
2735 if (EndOffset != OrigEnd)
2736 II.setLength(ConstantInt::get(II.getLength()->getType(),
2737 EndOffset - BeginOffset));
2738 return false;
2739 }
2740 // Record this instruction for deletion.
2741 if (Pass.DeadSplitInsts.insert(&II))
2742 Pass.DeadInsts.push_back(&II);
2743
2744 bool IsVectorElement = VecTy && (BeginOffset > NewAllocaBeginOffset ||
2745 EndOffset < NewAllocaEndOffset);
2746
2747 Type *OtherPtrTy = IsDest ? II.getRawSource()->getType()
2748 : II.getRawDest()->getType();
2749 if (!EmitMemCpy)
2750 OtherPtrTy = IsVectorElement ? VecTy->getElementType()->getPointerTo()
2751 : NewAI.getType();
2752
2753 // Compute the other pointer, folding as much as possible to produce
2754 // a single, simple GEP in most cases.
2755 Value *OtherPtr = IsDest ? II.getRawSource() : II.getRawDest();
2756 OtherPtr = getAdjustedPtr(IRB, TD, OtherPtr, RelOffset, OtherPtrTy,
2757 getName("." + OtherPtr->getName()));
2758
2759 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2760 // alloca that should be re-examined after rewriting this instruction.
2761 if (AllocaInst *AI
2762 = dyn_cast<AllocaInst>(OtherPtr->stripInBoundsOffsets()))
Chandler Carruthb3dca3f2012-09-26 07:41:40 +00002763 Pass.Worklist.insert(AI);
Chandler Carruth713aa942012-09-14 09:22:59 +00002764
2765 if (EmitMemCpy) {
2766 Value *OurPtr
2767 = getAdjustedAllocaPtr(IRB, IsDest ? II.getRawDest()->getType()
2768 : II.getRawSource()->getType());
2769 Type *SizeTy = II.getLength()->getType();
2770 Constant *Size = ConstantInt::get(SizeTy, EndOffset - BeginOffset);
2771
2772 CallInst *New = IRB.CreateMemCpy(IsDest ? OurPtr : OtherPtr,
2773 IsDest ? OtherPtr : OurPtr,
Chandler Carruth81b001a2012-09-26 10:27:46 +00002774 Size, Align, II.isVolatile());
Chandler Carruth713aa942012-09-14 09:22:59 +00002775 (void)New;
2776 DEBUG(dbgs() << " to: " << *New << "\n");
2777 return false;
2778 }
2779
Chandler Carruth322e9ba2012-10-03 08:26:28 +00002780 // Note that we clamp the alignment to 1 here as a 0 alignment for a memcpy
2781 // is equivalent to 1, but that isn't true if we end up rewriting this as
2782 // a load or store.
2783 if (!Align)
2784 Align = 1;
2785
Chandler Carruth713aa942012-09-14 09:22:59 +00002786 Value *SrcPtr = OtherPtr;
2787 Value *DstPtr = &NewAI;
2788 if (!IsDest)
2789 std::swap(SrcPtr, DstPtr);
2790
2791 Value *Src;
2792 if (IsVectorElement && !IsDest) {
2793 // We have to extract rather than load.
Chandler Carruth81b001a2012-09-26 10:27:46 +00002794 Src = IRB.CreateExtractElement(
2795 IRB.CreateAlignedLoad(SrcPtr, Align, getName(".copyload")),
2796 getIndex(IRB, BeginOffset),
2797 getName(".copyextract"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002798 } else {
Chandler Carruth81b001a2012-09-26 10:27:46 +00002799 Src = IRB.CreateAlignedLoad(SrcPtr, Align, II.isVolatile(),
2800 getName(".copyload"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002801 }
2802
2803 if (IsVectorElement && IsDest) {
2804 // We have to insert into a loaded copy before storing.
Chandler Carruth81b001a2012-09-26 10:27:46 +00002805 Src = IRB.CreateInsertElement(
2806 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), getName(".load")),
2807 Src, getIndex(IRB, BeginOffset),
2808 getName(".insert"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002809 }
2810
Chandler Carruth81b001a2012-09-26 10:27:46 +00002811 StoreInst *Store = cast<StoreInst>(
2812 IRB.CreateAlignedStore(Src, DstPtr, Align, II.isVolatile()));
2813 (void)Store;
Chandler Carruth713aa942012-09-14 09:22:59 +00002814 DEBUG(dbgs() << " to: " << *Store << "\n");
2815 return !II.isVolatile();
2816 }
2817
2818 bool visitIntrinsicInst(IntrinsicInst &II) {
2819 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
2820 II.getIntrinsicID() == Intrinsic::lifetime_end);
2821 DEBUG(dbgs() << " original: " << II << "\n");
2822 IRBuilder<> IRB(&II);
2823 assert(II.getArgOperand(1) == OldPtr);
2824
2825 // Record this instruction for deletion.
2826 if (Pass.DeadSplitInsts.insert(&II))
2827 Pass.DeadInsts.push_back(&II);
2828
2829 ConstantInt *Size
2830 = ConstantInt::get(cast<IntegerType>(II.getArgOperand(0)->getType()),
2831 EndOffset - BeginOffset);
2832 Value *Ptr = getAdjustedAllocaPtr(IRB, II.getArgOperand(1)->getType());
2833 Value *New;
2834 if (II.getIntrinsicID() == Intrinsic::lifetime_start)
2835 New = IRB.CreateLifetimeStart(Ptr, Size);
2836 else
2837 New = IRB.CreateLifetimeEnd(Ptr, Size);
2838
2839 DEBUG(dbgs() << " to: " << *New << "\n");
2840 return true;
2841 }
2842
Chandler Carruth713aa942012-09-14 09:22:59 +00002843 bool visitPHINode(PHINode &PN) {
2844 DEBUG(dbgs() << " original: " << PN << "\n");
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00002845
Chandler Carruth713aa942012-09-14 09:22:59 +00002846 // We would like to compute a new pointer in only one place, but have it be
2847 // as local as possible to the PHI. To do that, we re-use the location of
2848 // the old pointer, which necessarily must be in the right position to
2849 // dominate the PHI.
2850 IRBuilder<> PtrBuilder(cast<Instruction>(OldPtr));
2851
Chandler Carruth713aa942012-09-14 09:22:59 +00002852 Value *NewPtr = getAdjustedAllocaPtr(PtrBuilder, OldPtr->getType());
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00002853 // Replace the operands which were using the old pointer.
2854 User::op_iterator OI = PN.op_begin(), OE = PN.op_end();
2855 for (; OI != OE; ++OI)
2856 if (*OI == OldPtr)
2857 *OI = NewPtr;
Chandler Carruth713aa942012-09-14 09:22:59 +00002858
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00002859 DEBUG(dbgs() << " to: " << PN << "\n");
2860 deleteIfTriviallyDead(OldPtr);
2861 return false;
Chandler Carruth713aa942012-09-14 09:22:59 +00002862 }
2863
2864 bool visitSelectInst(SelectInst &SI) {
2865 DEBUG(dbgs() << " original: " << SI << "\n");
2866 IRBuilder<> IRB(&SI);
2867
2868 // Find the operand we need to rewrite here.
2869 bool IsTrueVal = SI.getTrueValue() == OldPtr;
2870 if (IsTrueVal)
2871 assert(SI.getFalseValue() != OldPtr && "Pointer is both operands!");
2872 else
2873 assert(SI.getFalseValue() == OldPtr && "Pointer isn't an operand!");
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00002874
Chandler Carruth713aa942012-09-14 09:22:59 +00002875 Value *NewPtr = getAdjustedAllocaPtr(IRB, OldPtr->getType());
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00002876 SI.setOperand(IsTrueVal ? 1 : 2, NewPtr);
2877 DEBUG(dbgs() << " to: " << SI << "\n");
Chandler Carruth713aa942012-09-14 09:22:59 +00002878 deleteIfTriviallyDead(OldPtr);
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00002879 return false;
Chandler Carruth713aa942012-09-14 09:22:59 +00002880 }
2881
2882};
2883}
2884
Chandler Carruthc370acd2012-09-18 12:57:43 +00002885namespace {
2886/// \brief Visitor to rewrite aggregate loads and stores as scalar.
2887///
2888/// This pass aggressively rewrites all aggregate loads and stores on
2889/// a particular pointer (or any pointer derived from it which we can identify)
2890/// with scalar loads and stores.
2891class AggLoadStoreRewriter : public InstVisitor<AggLoadStoreRewriter, bool> {
2892 // Befriend the base class so it can delegate to private visit methods.
2893 friend class llvm::InstVisitor<AggLoadStoreRewriter, bool>;
2894
Micah Villmow3574eca2012-10-08 16:38:25 +00002895 const DataLayout &TD;
Chandler Carruthc370acd2012-09-18 12:57:43 +00002896
2897 /// Queue of pointer uses to analyze and potentially rewrite.
2898 SmallVector<Use *, 8> Queue;
2899
2900 /// Set to prevent us from cycling with phi nodes and loops.
2901 SmallPtrSet<User *, 8> Visited;
2902
2903 /// The current pointer use being rewritten. This is used to dig up the used
2904 /// value (as opposed to the user).
2905 Use *U;
2906
2907public:
Micah Villmow3574eca2012-10-08 16:38:25 +00002908 AggLoadStoreRewriter(const DataLayout &TD) : TD(TD) {}
Chandler Carruthc370acd2012-09-18 12:57:43 +00002909
2910 /// Rewrite loads and stores through a pointer and all pointers derived from
2911 /// it.
2912 bool rewrite(Instruction &I) {
2913 DEBUG(dbgs() << " Rewriting FCA loads and stores...\n");
2914 enqueueUsers(I);
2915 bool Changed = false;
2916 while (!Queue.empty()) {
2917 U = Queue.pop_back_val();
2918 Changed |= visit(cast<Instruction>(U->getUser()));
2919 }
2920 return Changed;
2921 }
2922
2923private:
2924 /// Enqueue all the users of the given instruction for further processing.
2925 /// This uses a set to de-duplicate users.
2926 void enqueueUsers(Instruction &I) {
2927 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE;
2928 ++UI)
2929 if (Visited.insert(*UI))
2930 Queue.push_back(&UI.getUse());
2931 }
2932
2933 // Conservative default is to not rewrite anything.
2934 bool visitInstruction(Instruction &I) { return false; }
2935
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002936 /// \brief Generic recursive split emission class.
Benjamin Kramer371d5d82012-09-18 17:06:32 +00002937 template <typename Derived>
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002938 class OpSplitter {
2939 protected:
2940 /// The builder used to form new instructions.
2941 IRBuilder<> IRB;
2942 /// The indices which to be used with insert- or extractvalue to select the
2943 /// appropriate value within the aggregate.
2944 SmallVector<unsigned, 4> Indices;
2945 /// The indices to a GEP instruction which will move Ptr to the correct slot
2946 /// within the aggregate.
2947 SmallVector<Value *, 4> GEPIndices;
2948 /// The base pointer of the original op, used as a base for GEPing the
2949 /// split operations.
2950 Value *Ptr;
Chandler Carruthc370acd2012-09-18 12:57:43 +00002951
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002952 /// Initialize the splitter with an insertion point, Ptr and start with a
2953 /// single zero GEP index.
2954 OpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer371d5d82012-09-18 17:06:32 +00002955 : IRB(InsertionPoint), GEPIndices(1, IRB.getInt32(0)), Ptr(Ptr) {}
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002956
2957 public:
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002958 /// \brief Generic recursive split emission routine.
2959 ///
2960 /// This method recursively splits an aggregate op (load or store) into
2961 /// scalar or vector ops. It splits recursively until it hits a single value
2962 /// and emits that single value operation via the template argument.
2963 ///
2964 /// The logic of this routine relies on GEPs and insertvalue and
2965 /// extractvalue all operating with the same fundamental index list, merely
2966 /// formatted differently (GEPs need actual values).
2967 ///
2968 /// \param Ty The type being split recursively into smaller ops.
2969 /// \param Agg The aggregate value being built up or stored, depending on
2970 /// whether this is splitting a load or a store respectively.
2971 void emitSplitOps(Type *Ty, Value *&Agg, const Twine &Name) {
2972 if (Ty->isSingleValueType())
Benjamin Kramer371d5d82012-09-18 17:06:32 +00002973 return static_cast<Derived *>(this)->emitFunc(Ty, Agg, Name);
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002974
2975 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
2976 unsigned OldSize = Indices.size();
2977 (void)OldSize;
2978 for (unsigned Idx = 0, Size = ATy->getNumElements(); Idx != Size;
2979 ++Idx) {
2980 assert(Indices.size() == OldSize && "Did not return to the old size");
2981 Indices.push_back(Idx);
2982 GEPIndices.push_back(IRB.getInt32(Idx));
2983 emitSplitOps(ATy->getElementType(), Agg, Name + "." + Twine(Idx));
2984 GEPIndices.pop_back();
2985 Indices.pop_back();
2986 }
2987 return;
Chandler Carruthc370acd2012-09-18 12:57:43 +00002988 }
Chandler Carruthc370acd2012-09-18 12:57:43 +00002989
Benjamin Kramer6e67b252012-09-18 16:20:46 +00002990 if (StructType *STy = dyn_cast<StructType>(Ty)) {
2991 unsigned OldSize = Indices.size();
2992 (void)OldSize;
2993 for (unsigned Idx = 0, Size = STy->getNumElements(); Idx != Size;
2994 ++Idx) {
2995 assert(Indices.size() == OldSize && "Did not return to the old size");
2996 Indices.push_back(Idx);
2997 GEPIndices.push_back(IRB.getInt32(Idx));
2998 emitSplitOps(STy->getElementType(Idx), Agg, Name + "." + Twine(Idx));
2999 GEPIndices.pop_back();
3000 Indices.pop_back();
3001 }
3002 return;
Chandler Carruthc370acd2012-09-18 12:57:43 +00003003 }
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003004
3005 llvm_unreachable("Only arrays and structs are aggregate loadable types");
Chandler Carruthc370acd2012-09-18 12:57:43 +00003006 }
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003007 };
Chandler Carruthc370acd2012-09-18 12:57:43 +00003008
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003009 struct LoadOpSplitter : public OpSplitter<LoadOpSplitter> {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003010 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer3b682bd2012-09-18 17:11:47 +00003011 : OpSplitter<LoadOpSplitter>(InsertionPoint, Ptr) {}
Chandler Carruthc370acd2012-09-18 12:57:43 +00003012
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003013 /// Emit a leaf load of a single value. This is called at the leaves of the
3014 /// recursive emission to actually load values.
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003015 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003016 assert(Ty->isSingleValueType());
3017 // Load the single value and insert it using the indices.
3018 Value *Load = IRB.CreateLoad(IRB.CreateInBoundsGEP(Ptr, GEPIndices,
3019 Name + ".gep"),
3020 Name + ".load");
3021 Agg = IRB.CreateInsertValue(Agg, Load, Indices, Name + ".insert");
3022 DEBUG(dbgs() << " to: " << *Load << "\n");
3023 }
3024 };
Chandler Carruthc370acd2012-09-18 12:57:43 +00003025
3026 bool visitLoadInst(LoadInst &LI) {
3027 assert(LI.getPointerOperand() == *U);
3028 if (!LI.isSimple() || LI.getType()->isSingleValueType())
3029 return false;
3030
3031 // We have an aggregate being loaded, split it apart.
3032 DEBUG(dbgs() << " original: " << LI << "\n");
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003033 LoadOpSplitter Splitter(&LI, *U);
Chandler Carruthc370acd2012-09-18 12:57:43 +00003034 Value *V = UndefValue::get(LI.getType());
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003035 Splitter.emitSplitOps(LI.getType(), V, LI.getName() + ".fca");
Chandler Carruthc370acd2012-09-18 12:57:43 +00003036 LI.replaceAllUsesWith(V);
3037 LI.eraseFromParent();
3038 return true;
3039 }
3040
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003041 struct StoreOpSplitter : public OpSplitter<StoreOpSplitter> {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003042 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer3b682bd2012-09-18 17:11:47 +00003043 : OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr) {}
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003044
3045 /// Emit a leaf store of a single value. This is called at the leaves of the
3046 /// recursive emission to actually produce stores.
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003047 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003048 assert(Ty->isSingleValueType());
3049 // Extract the single value and store it using the indices.
3050 Value *Store = IRB.CreateStore(
3051 IRB.CreateExtractValue(Agg, Indices, Name + ".extract"),
3052 IRB.CreateInBoundsGEP(Ptr, GEPIndices, Name + ".gep"));
3053 (void)Store;
3054 DEBUG(dbgs() << " to: " << *Store << "\n");
3055 }
3056 };
Chandler Carruthc370acd2012-09-18 12:57:43 +00003057
3058 bool visitStoreInst(StoreInst &SI) {
3059 if (!SI.isSimple() || SI.getPointerOperand() != *U)
3060 return false;
3061 Value *V = SI.getValueOperand();
3062 if (V->getType()->isSingleValueType())
3063 return false;
3064
3065 // We have an aggregate being stored, split it apart.
3066 DEBUG(dbgs() << " original: " << SI << "\n");
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003067 StoreOpSplitter Splitter(&SI, *U);
3068 Splitter.emitSplitOps(V->getType(), V, V->getName() + ".fca");
Chandler Carruthc370acd2012-09-18 12:57:43 +00003069 SI.eraseFromParent();
3070 return true;
3071 }
3072
3073 bool visitBitCastInst(BitCastInst &BC) {
3074 enqueueUsers(BC);
3075 return false;
3076 }
3077
3078 bool visitGetElementPtrInst(GetElementPtrInst &GEPI) {
3079 enqueueUsers(GEPI);
3080 return false;
3081 }
3082
3083 bool visitPHINode(PHINode &PN) {
3084 enqueueUsers(PN);
3085 return false;
3086 }
3087
3088 bool visitSelectInst(SelectInst &SI) {
3089 enqueueUsers(SI);
3090 return false;
3091 }
3092};
3093}
3094
Chandler Carruth07525a62012-10-13 10:49:33 +00003095/// \brief Strip aggregate type wrapping.
3096///
3097/// This removes no-op aggregate types wrapping an underlying type. It will
3098/// strip as many layers of types as it can without changing either the type
3099/// size or the allocated size.
3100static Type *stripAggregateTypeWrapping(const DataLayout &DL, Type *Ty) {
3101 if (Ty->isSingleValueType())
3102 return Ty;
3103
3104 uint64_t AllocSize = DL.getTypeAllocSize(Ty);
3105 uint64_t TypeSize = DL.getTypeSizeInBits(Ty);
3106
3107 Type *InnerTy;
3108 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
3109 InnerTy = ArrTy->getElementType();
3110 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
3111 const StructLayout *SL = DL.getStructLayout(STy);
3112 unsigned Index = SL->getElementContainingOffset(0);
3113 InnerTy = STy->getElementType(Index);
3114 } else {
3115 return Ty;
3116 }
3117
3118 if (AllocSize > DL.getTypeAllocSize(InnerTy) ||
3119 TypeSize > DL.getTypeSizeInBits(InnerTy))
3120 return Ty;
3121
3122 return stripAggregateTypeWrapping(DL, InnerTy);
3123}
3124
Chandler Carruth713aa942012-09-14 09:22:59 +00003125/// \brief Try to find a partition of the aggregate type passed in for a given
3126/// offset and size.
3127///
3128/// This recurses through the aggregate type and tries to compute a subtype
3129/// based on the offset and size. When the offset and size span a sub-section
Chandler Carruth6b547a22012-09-14 11:08:31 +00003130/// of an array, it will even compute a new array type for that sub-section,
3131/// and the same for structs.
3132///
3133/// Note that this routine is very strict and tries to find a partition of the
3134/// type which produces the *exact* right offset and size. It is not forgiving
3135/// when the size or offset cause either end of type-based partition to be off.
3136/// Also, this is a best-effort routine. It is reasonable to give up and not
3137/// return a type if necessary.
Micah Villmow3574eca2012-10-08 16:38:25 +00003138static Type *getTypePartition(const DataLayout &TD, Type *Ty,
Chandler Carruth713aa942012-09-14 09:22:59 +00003139 uint64_t Offset, uint64_t Size) {
3140 if (Offset == 0 && TD.getTypeAllocSize(Ty) == Size)
Chandler Carruth07525a62012-10-13 10:49:33 +00003141 return stripAggregateTypeWrapping(TD, Ty);
Chandler Carruth713aa942012-09-14 09:22:59 +00003142
3143 if (SequentialType *SeqTy = dyn_cast<SequentialType>(Ty)) {
3144 // We can't partition pointers...
3145 if (SeqTy->isPointerTy())
3146 return 0;
3147
3148 Type *ElementTy = SeqTy->getElementType();
3149 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy);
3150 uint64_t NumSkippedElements = Offset / ElementSize;
3151 if (ArrayType *ArrTy = dyn_cast<ArrayType>(SeqTy))
3152 if (NumSkippedElements >= ArrTy->getNumElements())
3153 return 0;
3154 if (VectorType *VecTy = dyn_cast<VectorType>(SeqTy))
3155 if (NumSkippedElements >= VecTy->getNumElements())
3156 return 0;
3157 Offset -= NumSkippedElements * ElementSize;
3158
3159 // First check if we need to recurse.
3160 if (Offset > 0 || Size < ElementSize) {
3161 // Bail if the partition ends in a different array element.
3162 if ((Offset + Size) > ElementSize)
3163 return 0;
3164 // Recurse through the element type trying to peel off offset bytes.
3165 return getTypePartition(TD, ElementTy, Offset, Size);
3166 }
3167 assert(Offset == 0);
3168
3169 if (Size == ElementSize)
Chandler Carruth07525a62012-10-13 10:49:33 +00003170 return stripAggregateTypeWrapping(TD, ElementTy);
Chandler Carruth713aa942012-09-14 09:22:59 +00003171 assert(Size > ElementSize);
3172 uint64_t NumElements = Size / ElementSize;
3173 if (NumElements * ElementSize != Size)
3174 return 0;
3175 return ArrayType::get(ElementTy, NumElements);
3176 }
3177
3178 StructType *STy = dyn_cast<StructType>(Ty);
3179 if (!STy)
3180 return 0;
3181
3182 const StructLayout *SL = TD.getStructLayout(STy);
Chandler Carruth6b547a22012-09-14 11:08:31 +00003183 if (Offset >= SL->getSizeInBytes())
Chandler Carruth713aa942012-09-14 09:22:59 +00003184 return 0;
3185 uint64_t EndOffset = Offset + Size;
3186 if (EndOffset > SL->getSizeInBytes())
3187 return 0;
3188
3189 unsigned Index = SL->getElementContainingOffset(Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +00003190 Offset -= SL->getElementOffset(Index);
3191
3192 Type *ElementTy = STy->getElementType(Index);
3193 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy);
3194 if (Offset >= ElementSize)
3195 return 0; // The offset points into alignment padding.
3196
3197 // See if any partition must be contained by the element.
3198 if (Offset > 0 || Size < ElementSize) {
3199 if ((Offset + Size) > ElementSize)
3200 return 0;
Chandler Carruth713aa942012-09-14 09:22:59 +00003201 return getTypePartition(TD, ElementTy, Offset, Size);
3202 }
3203 assert(Offset == 0);
3204
3205 if (Size == ElementSize)
Chandler Carruth07525a62012-10-13 10:49:33 +00003206 return stripAggregateTypeWrapping(TD, ElementTy);
Chandler Carruth713aa942012-09-14 09:22:59 +00003207
3208 StructType::element_iterator EI = STy->element_begin() + Index,
3209 EE = STy->element_end();
3210 if (EndOffset < SL->getSizeInBytes()) {
3211 unsigned EndIndex = SL->getElementContainingOffset(EndOffset);
3212 if (Index == EndIndex)
3213 return 0; // Within a single element and its padding.
Chandler Carruth6b547a22012-09-14 11:08:31 +00003214
3215 // Don't try to form "natural" types if the elements don't line up with the
3216 // expected size.
3217 // FIXME: We could potentially recurse down through the last element in the
3218 // sub-struct to find a natural end point.
3219 if (SL->getElementOffset(EndIndex) != EndOffset)
3220 return 0;
3221
Chandler Carruth713aa942012-09-14 09:22:59 +00003222 assert(Index < EndIndex);
Chandler Carruth713aa942012-09-14 09:22:59 +00003223 EE = STy->element_begin() + EndIndex;
3224 }
3225
3226 // Try to build up a sub-structure.
3227 SmallVector<Type *, 4> ElementTys;
3228 do {
3229 ElementTys.push_back(*EI++);
3230 } while (EI != EE);
3231 StructType *SubTy = StructType::get(STy->getContext(), ElementTys,
3232 STy->isPacked());
3233 const StructLayout *SubSL = TD.getStructLayout(SubTy);
Chandler Carruth6b547a22012-09-14 11:08:31 +00003234 if (Size != SubSL->getSizeInBytes())
3235 return 0; // The sub-struct doesn't have quite the size needed.
Chandler Carruth713aa942012-09-14 09:22:59 +00003236
Chandler Carruth6b547a22012-09-14 11:08:31 +00003237 return SubTy;
Chandler Carruth713aa942012-09-14 09:22:59 +00003238}
3239
3240/// \brief Rewrite an alloca partition's users.
3241///
3242/// This routine drives both of the rewriting goals of the SROA pass. It tries
3243/// to rewrite uses of an alloca partition to be conducive for SSA value
3244/// promotion. If the partition needs a new, more refined alloca, this will
3245/// build that new alloca, preserving as much type information as possible, and
3246/// rewrite the uses of the old alloca to point at the new one and have the
3247/// appropriate new offsets. It also evaluates how successful the rewrite was
3248/// at enabling promotion and if it was successful queues the alloca to be
3249/// promoted.
3250bool SROA::rewriteAllocaPartition(AllocaInst &AI,
3251 AllocaPartitioning &P,
3252 AllocaPartitioning::iterator PI) {
3253 uint64_t AllocaSize = PI->EndOffset - PI->BeginOffset;
Chandler Carruthfdb15852012-10-02 18:57:13 +00003254 bool IsLive = false;
3255 for (AllocaPartitioning::use_iterator UI = P.use_begin(PI),
3256 UE = P.use_end(PI);
3257 UI != UE && !IsLive; ++UI)
3258 if (UI->U)
3259 IsLive = true;
3260 if (!IsLive)
Chandler Carruth713aa942012-09-14 09:22:59 +00003261 return false; // No live uses left of this partition.
3262
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003263 DEBUG(dbgs() << "Speculating PHIs and selects in partition "
3264 << "[" << PI->BeginOffset << "," << PI->EndOffset << ")\n");
3265
3266 PHIOrSelectSpeculator Speculator(*TD, P, *this);
3267 DEBUG(dbgs() << " speculating ");
3268 DEBUG(P.print(dbgs(), PI, ""));
Chandler Carrutha346f462012-10-02 17:49:47 +00003269 Speculator.visitUsers(PI);
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003270
Chandler Carruth713aa942012-09-14 09:22:59 +00003271 // Try to compute a friendly type for this partition of the alloca. This
3272 // won't always succeed, in which case we fall back to a legal integer type
3273 // or an i8 array of an appropriate size.
3274 Type *AllocaTy = 0;
3275 if (Type *PartitionTy = P.getCommonType(PI))
3276 if (TD->getTypeAllocSize(PartitionTy) >= AllocaSize)
3277 AllocaTy = PartitionTy;
3278 if (!AllocaTy)
3279 if (Type *PartitionTy = getTypePartition(*TD, AI.getAllocatedType(),
3280 PI->BeginOffset, AllocaSize))
3281 AllocaTy = PartitionTy;
3282 if ((!AllocaTy ||
3283 (AllocaTy->isArrayTy() &&
3284 AllocaTy->getArrayElementType()->isIntegerTy())) &&
3285 TD->isLegalInteger(AllocaSize * 8))
3286 AllocaTy = Type::getIntNTy(*C, AllocaSize * 8);
3287 if (!AllocaTy)
3288 AllocaTy = ArrayType::get(Type::getInt8Ty(*C), AllocaSize);
Chandler Carruthb3dd9a12012-09-14 10:26:34 +00003289 assert(TD->getTypeAllocSize(AllocaTy) >= AllocaSize);
Chandler Carruth713aa942012-09-14 09:22:59 +00003290
3291 // Check for the case where we're going to rewrite to a new alloca of the
3292 // exact same type as the original, and with the same access offsets. In that
3293 // case, re-use the existing alloca, but still run through the rewriter to
3294 // performe phi and select speculation.
3295 AllocaInst *NewAI;
3296 if (AllocaTy == AI.getAllocatedType()) {
3297 assert(PI->BeginOffset == 0 &&
3298 "Non-zero begin offset but same alloca type");
3299 assert(PI == P.begin() && "Begin offset is zero on later partition");
3300 NewAI = &AI;
3301 } else {
Chandler Carruthb67c9a52012-09-29 10:41:21 +00003302 unsigned Alignment = AI.getAlignment();
3303 if (!Alignment) {
3304 // The minimum alignment which users can rely on when the explicit
3305 // alignment is omitted or zero is that required by the ABI for this
3306 // type.
3307 Alignment = TD->getABITypeAlignment(AI.getAllocatedType());
3308 }
3309 Alignment = MinAlign(Alignment, PI->BeginOffset);
3310 // If we will get at least this much alignment from the type alone, leave
3311 // the alloca's alignment unconstrained.
3312 if (Alignment <= TD->getABITypeAlignment(AllocaTy))
3313 Alignment = 0;
3314 NewAI = new AllocaInst(AllocaTy, 0, Alignment,
Chandler Carruth713aa942012-09-14 09:22:59 +00003315 AI.getName() + ".sroa." + Twine(PI - P.begin()),
3316 &AI);
3317 ++NumNewAllocas;
3318 }
3319
3320 DEBUG(dbgs() << "Rewriting alloca partition "
3321 << "[" << PI->BeginOffset << "," << PI->EndOffset << ") to: "
3322 << *NewAI << "\n");
3323
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003324 // Track the high watermark of the post-promotion worklist. We will reset it
3325 // to this point if the alloca is not in fact scheduled for promotion.
3326 unsigned PPWOldSize = PostPromotionWorklist.size();
3327
Chandler Carruth713aa942012-09-14 09:22:59 +00003328 AllocaPartitionRewriter Rewriter(*TD, P, PI, *this, AI, *NewAI,
3329 PI->BeginOffset, PI->EndOffset);
3330 DEBUG(dbgs() << " rewriting ");
3331 DEBUG(P.print(dbgs(), PI, ""));
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003332 bool Promotable = Rewriter.visitUsers(P.use_begin(PI), P.use_end(PI));
3333 if (Promotable) {
Chandler Carruth713aa942012-09-14 09:22:59 +00003334 DEBUG(dbgs() << " and queuing for promotion\n");
3335 PromotableAllocas.push_back(NewAI);
3336 } else if (NewAI != &AI) {
3337 // If we can't promote the alloca, iterate on it to check for new
3338 // refinements exposed by splitting the current alloca. Don't iterate on an
3339 // alloca which didn't actually change and didn't get promoted.
3340 Worklist.insert(NewAI);
3341 }
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003342
3343 // Drop any post-promotion work items if promotion didn't happen.
3344 if (!Promotable)
3345 while (PostPromotionWorklist.size() > PPWOldSize)
3346 PostPromotionWorklist.pop_back();
3347
Chandler Carruth713aa942012-09-14 09:22:59 +00003348 return true;
3349}
3350
3351/// \brief Walks the partitioning of an alloca rewriting uses of each partition.
3352bool SROA::splitAlloca(AllocaInst &AI, AllocaPartitioning &P) {
3353 bool Changed = false;
3354 for (AllocaPartitioning::iterator PI = P.begin(), PE = P.end(); PI != PE;
3355 ++PI)
3356 Changed |= rewriteAllocaPartition(AI, P, PI);
3357
3358 return Changed;
3359}
3360
3361/// \brief Analyze an alloca for SROA.
3362///
3363/// This analyzes the alloca to ensure we can reason about it, builds
3364/// a partitioning of the alloca, and then hands it off to be split and
3365/// rewritten as needed.
3366bool SROA::runOnAlloca(AllocaInst &AI) {
3367 DEBUG(dbgs() << "SROA alloca: " << AI << "\n");
3368 ++NumAllocasAnalyzed;
3369
3370 // Special case dead allocas, as they're trivial.
3371 if (AI.use_empty()) {
3372 AI.eraseFromParent();
3373 return true;
3374 }
3375
3376 // Skip alloca forms that this analysis can't handle.
3377 if (AI.isArrayAllocation() || !AI.getAllocatedType()->isSized() ||
3378 TD->getTypeAllocSize(AI.getAllocatedType()) == 0)
3379 return false;
3380
Chandler Carruthc370acd2012-09-18 12:57:43 +00003381 bool Changed = false;
3382
3383 // First, split any FCA loads and stores touching this alloca to promote
3384 // better splitting and promotion opportunities.
3385 AggLoadStoreRewriter AggRewriter(*TD);
3386 Changed |= AggRewriter.rewrite(AI);
3387
Chandler Carruth713aa942012-09-14 09:22:59 +00003388 // Build the partition set using a recursive instruction-visiting builder.
3389 AllocaPartitioning P(*TD, AI);
3390 DEBUG(P.print(dbgs()));
3391 if (P.isEscaped())
Chandler Carruthc370acd2012-09-18 12:57:43 +00003392 return Changed;
Chandler Carruth713aa942012-09-14 09:22:59 +00003393
Chandler Carruth713aa942012-09-14 09:22:59 +00003394 // Delete all the dead users of this alloca before splitting and rewriting it.
Chandler Carruth713aa942012-09-14 09:22:59 +00003395 for (AllocaPartitioning::dead_user_iterator DI = P.dead_user_begin(),
3396 DE = P.dead_user_end();
3397 DI != DE; ++DI) {
3398 Changed = true;
3399 (*DI)->replaceAllUsesWith(UndefValue::get((*DI)->getType()));
3400 DeadInsts.push_back(*DI);
3401 }
3402 for (AllocaPartitioning::dead_op_iterator DO = P.dead_op_begin(),
3403 DE = P.dead_op_end();
3404 DO != DE; ++DO) {
3405 Value *OldV = **DO;
3406 // Clobber the use with an undef value.
3407 **DO = UndefValue::get(OldV->getType());
3408 if (Instruction *OldI = dyn_cast<Instruction>(OldV))
3409 if (isInstructionTriviallyDead(OldI)) {
3410 Changed = true;
3411 DeadInsts.push_back(OldI);
3412 }
3413 }
3414
Chandler Carruthfca3f402012-10-05 01:29:09 +00003415 // No partitions to split. Leave the dead alloca for a later pass to clean up.
3416 if (P.begin() == P.end())
3417 return Changed;
3418
Chandler Carruth713aa942012-09-14 09:22:59 +00003419 return splitAlloca(AI, P) || Changed;
3420}
3421
Chandler Carruth8615cd22012-09-14 10:26:38 +00003422/// \brief Delete the dead instructions accumulated in this run.
3423///
3424/// Recursively deletes the dead instructions we've accumulated. This is done
3425/// at the very end to maximize locality of the recursive delete and to
3426/// minimize the problems of invalidated instruction pointers as such pointers
3427/// are used heavily in the intermediate stages of the algorithm.
3428///
3429/// We also record the alloca instructions deleted here so that they aren't
3430/// subsequently handed to mem2reg to promote.
3431void SROA::deleteDeadInstructions(SmallPtrSet<AllocaInst*, 4> &DeletedAllocas) {
Chandler Carruth713aa942012-09-14 09:22:59 +00003432 DeadSplitInsts.clear();
3433 while (!DeadInsts.empty()) {
3434 Instruction *I = DeadInsts.pop_back_val();
3435 DEBUG(dbgs() << "Deleting dead instruction: " << *I << "\n");
3436
3437 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
3438 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
3439 // Zero out the operand and see if it becomes trivially dead.
3440 *OI = 0;
3441 if (isInstructionTriviallyDead(U))
3442 DeadInsts.push_back(U);
3443 }
3444
3445 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
3446 DeletedAllocas.insert(AI);
3447
3448 ++NumDeleted;
3449 I->eraseFromParent();
3450 }
3451}
3452
Chandler Carruth1c8db502012-09-15 11:43:14 +00003453/// \brief Promote the allocas, using the best available technique.
3454///
3455/// This attempts to promote whatever allocas have been identified as viable in
3456/// the PromotableAllocas list. If that list is empty, there is nothing to do.
3457/// If there is a domtree available, we attempt to promote using the full power
3458/// of mem2reg. Otherwise, we build and use the AllocaPromoter above which is
3459/// based on the SSAUpdater utilities. This function returns whether any
3460/// promotion occured.
3461bool SROA::promoteAllocas(Function &F) {
3462 if (PromotableAllocas.empty())
3463 return false;
3464
3465 NumPromoted += PromotableAllocas.size();
3466
3467 if (DT && !ForceSSAUpdater) {
3468 DEBUG(dbgs() << "Promoting allocas with mem2reg...\n");
3469 PromoteMemToReg(PromotableAllocas, *DT);
3470 PromotableAllocas.clear();
3471 return true;
3472 }
3473
3474 DEBUG(dbgs() << "Promoting allocas with SSAUpdater...\n");
3475 SSAUpdater SSA;
3476 DIBuilder DIB(*F.getParent());
3477 SmallVector<Instruction*, 64> Insts;
3478
3479 for (unsigned Idx = 0, Size = PromotableAllocas.size(); Idx != Size; ++Idx) {
3480 AllocaInst *AI = PromotableAllocas[Idx];
3481 for (Value::use_iterator UI = AI->use_begin(), UE = AI->use_end();
3482 UI != UE;) {
3483 Instruction *I = cast<Instruction>(*UI++);
3484 // FIXME: Currently the SSAUpdater infrastructure doesn't reason about
3485 // lifetime intrinsics and so we strip them (and the bitcasts+GEPs
3486 // leading to them) here. Eventually it should use them to optimize the
3487 // scalar values produced.
3488 if (isa<BitCastInst>(I) || isa<GetElementPtrInst>(I)) {
3489 assert(onlyUsedByLifetimeMarkers(I) &&
3490 "Found a bitcast used outside of a lifetime marker.");
3491 while (!I->use_empty())
3492 cast<Instruction>(*I->use_begin())->eraseFromParent();
3493 I->eraseFromParent();
3494 continue;
3495 }
3496 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
3497 assert(II->getIntrinsicID() == Intrinsic::lifetime_start ||
3498 II->getIntrinsicID() == Intrinsic::lifetime_end);
3499 II->eraseFromParent();
3500 continue;
3501 }
3502
3503 Insts.push_back(I);
3504 }
3505 AllocaPromoter(Insts, SSA, *AI, DIB).run(Insts);
3506 Insts.clear();
3507 }
3508
3509 PromotableAllocas.clear();
3510 return true;
3511}
3512
Chandler Carruth713aa942012-09-14 09:22:59 +00003513namespace {
3514 /// \brief A predicate to test whether an alloca belongs to a set.
3515 class IsAllocaInSet {
3516 typedef SmallPtrSet<AllocaInst *, 4> SetType;
3517 const SetType &Set;
3518
3519 public:
Chandler Carruth75eac5f2012-10-03 00:03:00 +00003520 typedef AllocaInst *argument_type;
3521
Chandler Carruth713aa942012-09-14 09:22:59 +00003522 IsAllocaInSet(const SetType &Set) : Set(Set) {}
Chandler Carruth75eac5f2012-10-03 00:03:00 +00003523 bool operator()(AllocaInst *AI) const { return Set.count(AI); }
Chandler Carruth713aa942012-09-14 09:22:59 +00003524 };
3525}
3526
3527bool SROA::runOnFunction(Function &F) {
3528 DEBUG(dbgs() << "SROA function: " << F.getName() << "\n");
3529 C = &F.getContext();
Micah Villmow3574eca2012-10-08 16:38:25 +00003530 TD = getAnalysisIfAvailable<DataLayout>();
Chandler Carruth713aa942012-09-14 09:22:59 +00003531 if (!TD) {
3532 DEBUG(dbgs() << " Skipping SROA -- no target data!\n");
3533 return false;
3534 }
Chandler Carruth1c8db502012-09-15 11:43:14 +00003535 DT = getAnalysisIfAvailable<DominatorTree>();
Chandler Carruth713aa942012-09-14 09:22:59 +00003536
3537 BasicBlock &EntryBB = F.getEntryBlock();
3538 for (BasicBlock::iterator I = EntryBB.begin(), E = llvm::prior(EntryBB.end());
3539 I != E; ++I)
3540 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
3541 Worklist.insert(AI);
3542
3543 bool Changed = false;
Chandler Carruth8615cd22012-09-14 10:26:38 +00003544 // A set of deleted alloca instruction pointers which should be removed from
3545 // the list of promotable allocas.
3546 SmallPtrSet<AllocaInst *, 4> DeletedAllocas;
3547
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003548 do {
3549 while (!Worklist.empty()) {
3550 Changed |= runOnAlloca(*Worklist.pop_back_val());
3551 deleteDeadInstructions(DeletedAllocas);
Chandler Carruth5c5b3cf2012-10-02 22:46:45 +00003552
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003553 // Remove the deleted allocas from various lists so that we don't try to
3554 // continue processing them.
3555 if (!DeletedAllocas.empty()) {
3556 Worklist.remove_if(IsAllocaInSet(DeletedAllocas));
3557 PostPromotionWorklist.remove_if(IsAllocaInSet(DeletedAllocas));
3558 PromotableAllocas.erase(std::remove_if(PromotableAllocas.begin(),
3559 PromotableAllocas.end(),
3560 IsAllocaInSet(DeletedAllocas)),
3561 PromotableAllocas.end());
3562 DeletedAllocas.clear();
3563 }
Chandler Carruth713aa942012-09-14 09:22:59 +00003564 }
Chandler Carruth713aa942012-09-14 09:22:59 +00003565
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003566 Changed |= promoteAllocas(F);
3567
3568 Worklist = PostPromotionWorklist;
3569 PostPromotionWorklist.clear();
3570 } while (!Worklist.empty());
Chandler Carruth713aa942012-09-14 09:22:59 +00003571
3572 return Changed;
3573}
3574
3575void SROA::getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruth1c8db502012-09-15 11:43:14 +00003576 if (RequiresDomTree)
3577 AU.addRequired<DominatorTree>();
Chandler Carruth713aa942012-09-14 09:22:59 +00003578 AU.setPreservesCFG();
3579}