blob: 927f996beb3f2f1621f9770569e67bc04d19c33a [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"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000028#include "llvm/ADT/STLExtras.h"
29#include "llvm/ADT/SetVector.h"
30#include "llvm/ADT/SmallVector.h"
31#include "llvm/ADT/Statistic.h"
32#include "llvm/Analysis/Dominators.h"
33#include "llvm/Analysis/Loads.h"
Chandler Carruthed90ed02012-12-10 08:28:39 +000034#include "llvm/Analysis/PtrUseVisitor.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000035#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000036#include "llvm/Constants.h"
37#include "llvm/DIBuilder.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000038#include "llvm/DataLayout.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000039#include "llvm/DebugInfo.h"
40#include "llvm/DerivedTypes.h"
41#include "llvm/Function.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000042#include "llvm/IRBuilder.h"
Chandler Carruth84bcf932012-11-30 03:08:41 +000043#include "llvm/InstVisitor.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000044#include "llvm/Instructions.h"
45#include "llvm/IntrinsicInst.h"
46#include "llvm/LLVMContext.h"
47#include "llvm/Module.h"
48#include "llvm/Operator.h"
49#include "llvm/Pass.h"
Chandler Carruth1c8db502012-09-15 11:43:14 +000050#include "llvm/Support/CommandLine.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000051#include "llvm/Support/Debug.h"
52#include "llvm/Support/ErrorHandling.h"
53#include "llvm/Support/GetElementPtrTypeIterator.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000054#include "llvm/Support/MathExtras.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000055#include "llvm/Support/raw_ostream.h"
Chandler Carruth713aa942012-09-14 09:22:59 +000056#include "llvm/Transforms/Utils/Local.h"
57#include "llvm/Transforms/Utils/PromoteMemToReg.h"
58#include "llvm/Transforms/Utils/SSAUpdater.h"
59using namespace llvm;
60
61STATISTIC(NumAllocasAnalyzed, "Number of allocas analyzed for replacement");
62STATISTIC(NumNewAllocas, "Number of new, smaller allocas introduced");
63STATISTIC(NumPromoted, "Number of allocas promoted to SSA values");
64STATISTIC(NumLoadsSpeculated, "Number of loads speculated to allow promotion");
65STATISTIC(NumDeleted, "Number of instructions deleted");
66STATISTIC(NumVectorized, "Number of vectorized aggregates");
67
Chandler Carruth1c8db502012-09-15 11:43:14 +000068/// Hidden option to force the pass to not use DomTree and mem2reg, instead
69/// forming SSA values through the SSAUpdater infrastructure.
70static cl::opt<bool>
71ForceSSAUpdater("force-ssa-updater", cl::init(false), cl::Hidden);
72
Chandler Carruth713aa942012-09-14 09:22:59 +000073namespace {
74/// \brief Alloca partitioning representation.
75///
76/// This class represents a partitioning of an alloca into slices, and
77/// information about the nature of uses of each slice of the alloca. The goal
78/// is that this information is sufficient to decide if and how to split the
79/// alloca apart and replace slices with scalars. It is also intended that this
Chandler Carruth7f5bede2012-09-14 10:18:49 +000080/// structure can capture the relevant information needed both to decide about
Chandler Carruth713aa942012-09-14 09:22:59 +000081/// and to enact these transformations.
82class AllocaPartitioning {
83public:
84 /// \brief A common base class for representing a half-open byte range.
85 struct ByteRange {
86 /// \brief The beginning offset of the range.
87 uint64_t BeginOffset;
88
89 /// \brief The ending offset, not included in the range.
90 uint64_t EndOffset;
91
92 ByteRange() : BeginOffset(), EndOffset() {}
93 ByteRange(uint64_t BeginOffset, uint64_t EndOffset)
94 : BeginOffset(BeginOffset), EndOffset(EndOffset) {}
95
96 /// \brief Support for ordering ranges.
97 ///
98 /// This provides an ordering over ranges such that start offsets are
99 /// always increasing, and within equal start offsets, the end offsets are
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000100 /// decreasing. Thus the spanning range comes first in a cluster with the
Chandler Carruth713aa942012-09-14 09:22:59 +0000101 /// same start position.
102 bool operator<(const ByteRange &RHS) const {
103 if (BeginOffset < RHS.BeginOffset) return true;
104 if (BeginOffset > RHS.BeginOffset) return false;
105 if (EndOffset > RHS.EndOffset) return true;
106 return false;
107 }
108
109 /// \brief Support comparison with a single offset to allow binary searches.
Benjamin Kramer2d1c2a22012-09-17 16:42:36 +0000110 friend bool operator<(const ByteRange &LHS, uint64_t RHSOffset) {
111 return LHS.BeginOffset < RHSOffset;
112 }
113
114 friend LLVM_ATTRIBUTE_UNUSED bool operator<(uint64_t LHSOffset,
115 const ByteRange &RHS) {
116 return LHSOffset < RHS.BeginOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000117 }
118
119 bool operator==(const ByteRange &RHS) const {
120 return BeginOffset == RHS.BeginOffset && EndOffset == RHS.EndOffset;
121 }
122 bool operator!=(const ByteRange &RHS) const { return !operator==(RHS); }
123 };
124
125 /// \brief A partition of an alloca.
126 ///
127 /// This structure represents a contiguous partition of the alloca. These are
128 /// formed by examining the uses of the alloca. During formation, they may
129 /// overlap but once an AllocaPartitioning is built, the Partitions within it
130 /// are all disjoint.
131 struct Partition : public ByteRange {
132 /// \brief Whether this partition is splittable into smaller partitions.
133 ///
134 /// We flag partitions as splittable when they are formed entirely due to
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000135 /// accesses by trivially splittable operations such as memset and memcpy.
Chandler Carruth713aa942012-09-14 09:22:59 +0000136 bool IsSplittable;
137
Chandler Carruthfca3f402012-10-05 01:29:09 +0000138 /// \brief Test whether a partition has been marked as dead.
139 bool isDead() const {
140 if (BeginOffset == UINT64_MAX) {
141 assert(EndOffset == UINT64_MAX);
142 return true;
143 }
144 return false;
145 }
146
147 /// \brief Kill a partition.
148 /// This is accomplished by setting both its beginning and end offset to
149 /// the maximum possible value.
150 void kill() {
151 assert(!isDead() && "He's Dead, Jim!");
152 BeginOffset = EndOffset = UINT64_MAX;
153 }
154
Chandler Carruth713aa942012-09-14 09:22:59 +0000155 Partition() : ByteRange(), IsSplittable() {}
156 Partition(uint64_t BeginOffset, uint64_t EndOffset, bool IsSplittable)
157 : ByteRange(BeginOffset, EndOffset), IsSplittable(IsSplittable) {}
158 };
159
160 /// \brief A particular use of a partition of the alloca.
161 ///
162 /// This structure is used to associate uses of a partition with it. They
163 /// mark the range of bytes which are referenced by a particular instruction,
164 /// and includes a handle to the user itself and the pointer value in use.
165 /// The bounds of these uses are determined by intersecting the bounds of the
166 /// memory use itself with a particular partition. As a consequence there is
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000167 /// intentionally overlap between various uses of the same partition.
Chandler Carruth713aa942012-09-14 09:22:59 +0000168 struct PartitionUse : public ByteRange {
Chandler Carruth77c12702012-10-01 01:49:22 +0000169 /// \brief The use in question. Provides access to both user and used value.
Chandler Carruthfdb15852012-10-02 18:57:13 +0000170 ///
171 /// Note that this may be null if the partition use is *dead*, that is, it
172 /// should be ignored.
173 Use *U;
Chandler Carruth713aa942012-09-14 09:22:59 +0000174
Chandler Carruth77c12702012-10-01 01:49:22 +0000175 PartitionUse() : ByteRange(), U() {}
176 PartitionUse(uint64_t BeginOffset, uint64_t EndOffset, Use *U)
177 : ByteRange(BeginOffset, EndOffset), U(U) {}
Chandler Carruth713aa942012-09-14 09:22:59 +0000178 };
179
180 /// \brief Construct a partitioning of a particular alloca.
181 ///
182 /// Construction does most of the work for partitioning the alloca. This
183 /// performs the necessary walks of users and builds a partitioning from it.
Micah Villmow3574eca2012-10-08 16:38:25 +0000184 AllocaPartitioning(const DataLayout &TD, AllocaInst &AI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000185
186 /// \brief Test whether a pointer to the allocation escapes our analysis.
187 ///
188 /// If this is true, the partitioning is never fully built and should be
189 /// ignored.
190 bool isEscaped() const { return PointerEscapingInstr; }
191
192 /// \brief Support for iterating over the partitions.
193 /// @{
194 typedef SmallVectorImpl<Partition>::iterator iterator;
195 iterator begin() { return Partitions.begin(); }
196 iterator end() { return Partitions.end(); }
197
198 typedef SmallVectorImpl<Partition>::const_iterator const_iterator;
199 const_iterator begin() const { return Partitions.begin(); }
200 const_iterator end() const { return Partitions.end(); }
201 /// @}
202
203 /// \brief Support for iterating over and manipulating a particular
204 /// partition's uses.
205 ///
206 /// The iteration support provided for uses is more limited, but also
207 /// includes some manipulation routines to support rewriting the uses of
208 /// partitions during SROA.
209 /// @{
210 typedef SmallVectorImpl<PartitionUse>::iterator use_iterator;
211 use_iterator use_begin(unsigned Idx) { return Uses[Idx].begin(); }
212 use_iterator use_begin(const_iterator I) { return Uses[I - begin()].begin(); }
213 use_iterator use_end(unsigned Idx) { return Uses[Idx].end(); }
214 use_iterator use_end(const_iterator I) { return Uses[I - begin()].end(); }
Chandler Carruth713aa942012-09-14 09:22:59 +0000215
216 typedef SmallVectorImpl<PartitionUse>::const_iterator const_use_iterator;
217 const_use_iterator use_begin(unsigned Idx) const { return Uses[Idx].begin(); }
218 const_use_iterator use_begin(const_iterator I) const {
219 return Uses[I - begin()].begin();
220 }
221 const_use_iterator use_end(unsigned Idx) const { return Uses[Idx].end(); }
222 const_use_iterator use_end(const_iterator I) const {
223 return Uses[I - begin()].end();
224 }
Chandler Carrutha346f462012-10-02 17:49:47 +0000225
226 unsigned use_size(unsigned Idx) const { return Uses[Idx].size(); }
227 unsigned use_size(const_iterator I) const { return Uses[I - begin()].size(); }
228 const PartitionUse &getUse(unsigned PIdx, unsigned UIdx) const {
229 return Uses[PIdx][UIdx];
230 }
231 const PartitionUse &getUse(const_iterator I, unsigned UIdx) const {
232 return Uses[I - begin()][UIdx];
233 }
234
235 void use_push_back(unsigned Idx, const PartitionUse &PU) {
236 Uses[Idx].push_back(PU);
237 }
238 void use_push_back(const_iterator I, const PartitionUse &PU) {
239 Uses[I - begin()].push_back(PU);
240 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000241 /// @}
242
243 /// \brief Allow iterating the dead users for this alloca.
244 ///
245 /// These are instructions which will never actually use the alloca as they
246 /// are outside the allocated range. They are safe to replace with undef and
247 /// delete.
248 /// @{
249 typedef SmallVectorImpl<Instruction *>::const_iterator dead_user_iterator;
250 dead_user_iterator dead_user_begin() const { return DeadUsers.begin(); }
251 dead_user_iterator dead_user_end() const { return DeadUsers.end(); }
252 /// @}
253
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000254 /// \brief Allow iterating the dead expressions referring to this alloca.
Chandler Carruth713aa942012-09-14 09:22:59 +0000255 ///
256 /// These are operands which have cannot actually be used to refer to the
257 /// alloca as they are outside its range and the user doesn't correct for
258 /// that. These mostly consist of PHI node inputs and the like which we just
259 /// need to replace with undef.
260 /// @{
261 typedef SmallVectorImpl<Use *>::const_iterator dead_op_iterator;
262 dead_op_iterator dead_op_begin() const { return DeadOperands.begin(); }
263 dead_op_iterator dead_op_end() const { return DeadOperands.end(); }
264 /// @}
265
266 /// \brief MemTransferInst auxiliary data.
267 /// This struct provides some auxiliary data about memory transfer
268 /// intrinsics such as memcpy and memmove. These intrinsics can use two
269 /// different ranges within the same alloca, and provide other challenges to
270 /// correctly represent. We stash extra data to help us untangle this
271 /// after the partitioning is complete.
272 struct MemTransferOffsets {
Chandler Carruthfca3f402012-10-05 01:29:09 +0000273 /// The destination begin and end offsets when the destination is within
274 /// this alloca. If the end offset is zero the destination is not within
275 /// this alloca.
Chandler Carruth713aa942012-09-14 09:22:59 +0000276 uint64_t DestBegin, DestEnd;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000277
278 /// The source begin and end offsets when the source is within this alloca.
279 /// If the end offset is zero, the source is not within this alloca.
Chandler Carruth713aa942012-09-14 09:22:59 +0000280 uint64_t SourceBegin, SourceEnd;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000281
282 /// Flag for whether an alloca is splittable.
Chandler Carruth713aa942012-09-14 09:22:59 +0000283 bool IsSplittable;
284 };
285 MemTransferOffsets getMemTransferOffsets(MemTransferInst &II) const {
286 return MemTransferInstData.lookup(&II);
287 }
288
289 /// \brief Map from a PHI or select operand back to a partition.
290 ///
291 /// When manipulating PHI nodes or selects, they can use more than one
292 /// partition of an alloca. We store a special mapping to allow finding the
293 /// partition referenced by each of these operands, if any.
Chandler Carruth77c12702012-10-01 01:49:22 +0000294 iterator findPartitionForPHIOrSelectOperand(Use *U) {
295 SmallDenseMap<Use *, std::pair<unsigned, unsigned> >::const_iterator MapIt
296 = PHIOrSelectOpMap.find(U);
Chandler Carruth713aa942012-09-14 09:22:59 +0000297 if (MapIt == PHIOrSelectOpMap.end())
298 return end();
299
300 return begin() + MapIt->second.first;
301 }
302
303 /// \brief Map from a PHI or select operand back to the specific use of
304 /// a partition.
305 ///
306 /// Similar to mapping these operands back to the partitions, this maps
307 /// directly to the use structure of that partition.
Chandler Carruth77c12702012-10-01 01:49:22 +0000308 use_iterator findPartitionUseForPHIOrSelectOperand(Use *U) {
309 SmallDenseMap<Use *, std::pair<unsigned, unsigned> >::const_iterator MapIt
310 = PHIOrSelectOpMap.find(U);
Chandler Carruth713aa942012-09-14 09:22:59 +0000311 assert(MapIt != PHIOrSelectOpMap.end());
312 return Uses[MapIt->second.first].begin() + MapIt->second.second;
313 }
314
315 /// \brief Compute a common type among the uses of a particular partition.
316 ///
317 /// This routines walks all of the uses of a particular partition and tries
318 /// to find a common type between them. Untyped operations such as memset and
319 /// memcpy are ignored.
320 Type *getCommonType(iterator I) const;
321
Chandler Carruthba13d2e2012-09-14 10:18:51 +0000322#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth713aa942012-09-14 09:22:59 +0000323 void print(raw_ostream &OS, const_iterator I, StringRef Indent = " ") const;
324 void printUsers(raw_ostream &OS, const_iterator I,
325 StringRef Indent = " ") const;
326 void print(raw_ostream &OS) const;
NAKAMURA Takumiad9f5b82012-09-14 10:06:10 +0000327 void LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED dump(const_iterator I) const;
328 void LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED dump() const;
Chandler Carruthba13d2e2012-09-14 10:18:51 +0000329#endif
Chandler Carruth713aa942012-09-14 09:22:59 +0000330
331private:
332 template <typename DerivedT, typename RetT = void> class BuilderBase;
333 class PartitionBuilder;
334 friend class AllocaPartitioning::PartitionBuilder;
335 class UseBuilder;
336 friend class AllocaPartitioning::UseBuilder;
337
Chandler Carruth3a902d02012-11-20 10:23:07 +0000338#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth713aa942012-09-14 09:22:59 +0000339 /// \brief Handle to alloca instruction to simplify method interfaces.
340 AllocaInst &AI;
Benjamin Kramerd0807692012-09-14 13:08:09 +0000341#endif
Chandler Carruth713aa942012-09-14 09:22:59 +0000342
343 /// \brief The instruction responsible for this alloca having no partitioning.
344 ///
345 /// When an instruction (potentially) escapes the pointer to the alloca, we
346 /// store a pointer to that here and abort trying to partition the alloca.
347 /// This will be null if the alloca is partitioned successfully.
348 Instruction *PointerEscapingInstr;
349
350 /// \brief The partitions of the alloca.
351 ///
352 /// We store a vector of the partitions over the alloca here. This vector is
353 /// sorted by increasing begin offset, and then by decreasing end offset. See
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000354 /// the Partition inner class for more details. Initially (during
355 /// construction) there are overlaps, but we form a disjoint sequence of
356 /// partitions while finishing construction and a fully constructed object is
357 /// expected to always have this as a disjoint space.
Chandler Carruth713aa942012-09-14 09:22:59 +0000358 SmallVector<Partition, 8> Partitions;
359
360 /// \brief The uses of the partitions.
361 ///
362 /// This is essentially a mapping from each partition to a list of uses of
363 /// that partition. The mapping is done with a Uses vector that has the exact
364 /// same number of entries as the partition vector. Each entry is itself
365 /// a vector of the uses.
366 SmallVector<SmallVector<PartitionUse, 2>, 8> Uses;
367
368 /// \brief Instructions which will become dead if we rewrite the alloca.
369 ///
370 /// Note that these are not separated by partition. This is because we expect
371 /// a partitioned alloca to be completely rewritten or not rewritten at all.
372 /// If rewritten, all these instructions can simply be removed and replaced
373 /// with undef as they come from outside of the allocated space.
374 SmallVector<Instruction *, 8> DeadUsers;
375
376 /// \brief Operands which will become dead if we rewrite the alloca.
377 ///
378 /// These are operands that in their particular use can be replaced with
379 /// undef when we rewrite the alloca. These show up in out-of-bounds inputs
380 /// to PHI nodes and the like. They aren't entirely dead (there might be
381 /// a GEP back into the bounds using it elsewhere) and nor is the PHI, but we
382 /// want to swap this particular input for undef to simplify the use lists of
383 /// the alloca.
384 SmallVector<Use *, 8> DeadOperands;
385
386 /// \brief The underlying storage for auxiliary memcpy and memset info.
387 SmallDenseMap<MemTransferInst *, MemTransferOffsets, 4> MemTransferInstData;
388
389 /// \brief A side datastructure used when building up the partitions and uses.
390 ///
391 /// This mapping is only really used during the initial building of the
392 /// partitioning so that we can retain information about PHI and select nodes
393 /// processed.
394 SmallDenseMap<Instruction *, std::pair<uint64_t, bool> > PHIOrSelectSizes;
395
396 /// \brief Auxiliary information for particular PHI or select operands.
Chandler Carruth77c12702012-10-01 01:49:22 +0000397 SmallDenseMap<Use *, std::pair<unsigned, unsigned>, 4> PHIOrSelectOpMap;
Chandler Carruth713aa942012-09-14 09:22:59 +0000398
399 /// \brief A utility routine called from the constructor.
400 ///
401 /// This does what it says on the tin. It is the key of the alloca partition
402 /// splitting and merging. After it is called we have the desired disjoint
403 /// collection of partitions.
404 void splitAndMergePartitions();
405};
406}
407
Chandler Carruthed90ed02012-12-10 08:28:39 +0000408static Value *foldSelectInst(SelectInst &SI) {
409 // If the condition being selected on is a constant or the same value is
410 // being selected between, fold the select. Yes this does (rarely) happen
411 // early on.
412 if (ConstantInt *CI = dyn_cast<ConstantInt>(SI.getCondition()))
413 return SI.getOperand(1+CI->isZero());
414 if (SI.getOperand(1) == SI.getOperand(2)) {
415 return SI.getOperand(1);
Chandler Carruth713aa942012-09-14 09:22:59 +0000416 }
Chandler Carruthed90ed02012-12-10 08:28:39 +0000417 return 0;
418}
Chandler Carruth713aa942012-09-14 09:22:59 +0000419
420/// \brief Builder for the alloca partitioning.
421///
422/// This class builds an alloca partitioning by recursively visiting the uses
423/// of an alloca and splitting the partitions for each load and store at each
424/// offset.
425class AllocaPartitioning::PartitionBuilder
Chandler Carruthed90ed02012-12-10 08:28:39 +0000426 : public PtrUseVisitor<PartitionBuilder> {
427 friend class PtrUseVisitor<PartitionBuilder>;
428 friend class InstVisitor<PartitionBuilder>;
429 typedef PtrUseVisitor<PartitionBuilder> Base;
430
431 const uint64_t AllocSize;
432 AllocaPartitioning &P;
Chandler Carruth713aa942012-09-14 09:22:59 +0000433
434 SmallDenseMap<Instruction *, unsigned> MemTransferPartitionMap;
435
436public:
Chandler Carruthed90ed02012-12-10 08:28:39 +0000437 PartitionBuilder(const DataLayout &DL, AllocaInst &AI, AllocaPartitioning &P)
438 : PtrUseVisitor<PartitionBuilder>(DL),
439 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())),
440 P(P) {}
Chandler Carruth713aa942012-09-14 09:22:59 +0000441
442private:
Chandler Carruthed90ed02012-12-10 08:28:39 +0000443 void insertUse(Instruction &I, const APInt &Offset, uint64_t Size,
Chandler Carruth63392ea2012-09-16 19:39:50 +0000444 bool IsSplittable = false) {
Chandler Carruthe74a4a72012-12-03 10:59:55 +0000445 // Completely skip uses which have a zero size or start either before or
446 // past the end of the allocation.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000447 if (Size == 0 || Offset.isNegative() || Offset.uge(AllocSize)) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000448 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte use @" << Offset
Chandler Carruthe74a4a72012-12-03 10:59:55 +0000449 << " which has zero size or starts outside of the "
450 << AllocSize << " byte alloca:\n"
Chandler Carruth713aa942012-09-14 09:22:59 +0000451 << " alloca: " << P.AI << "\n"
452 << " use: " << I << "\n");
453 return;
454 }
455
Chandler Carruthed90ed02012-12-10 08:28:39 +0000456 uint64_t BeginOffset = Offset.getZExtValue();
457 uint64_t EndOffset = BeginOffset + Size;
Chandler Carruth02e92a02012-09-23 11:43:14 +0000458
459 // Clamp the end offset to the end of the allocation. Note that this is
460 // formulated to handle even the case where "BeginOffset + Size" overflows.
Chandler Carruth17679292012-11-20 10:02:19 +0000461 // NOTE! This may appear superficially to be something we could ignore
462 // entirely, but that is not so! There may be PHI-node uses where some
463 // instructions are dead but not others. We can't completely ignore the
464 // PHI node, and so have to record at least the information here.
Chandler Carruth02e92a02012-09-23 11:43:14 +0000465 assert(AllocSize >= BeginOffset); // Established above.
466 if (Size > AllocSize - BeginOffset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000467 DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @" << Offset
468 << " to remain within the " << AllocSize << " byte alloca:\n"
469 << " alloca: " << P.AI << "\n"
470 << " use: " << I << "\n");
471 EndOffset = AllocSize;
472 }
473
Chandler Carruth713aa942012-09-14 09:22:59 +0000474 Partition New(BeginOffset, EndOffset, IsSplittable);
475 P.Partitions.push_back(New);
476 }
477
Chandler Carruthed90ed02012-12-10 08:28:39 +0000478 void handleLoadOrStore(Type *Ty, Instruction &I, const APInt &Offset,
Chandler Carrutha2b88162012-10-25 04:37:07 +0000479 bool IsVolatile) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000480 uint64_t Size = DL.getTypeStoreSize(Ty);
Chandler Carruth713aa942012-09-14 09:22:59 +0000481
482 // If this memory access can be shown to *statically* extend outside the
483 // bounds of of the allocation, it's behavior is undefined, so simply
484 // ignore it. Note that this is more strict than the generic clamping
485 // behavior of insertUse. We also try to handle cases which might run the
486 // risk of overflow.
487 // FIXME: We should instead consider the pointer to have escaped if this
488 // function is being instrumented for addressing bugs or race conditions.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000489 if (Offset.isNegative() || Size > AllocSize ||
490 Offset.ugt(AllocSize - Size)) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000491 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte "
492 << (isa<LoadInst>(I) ? "load" : "store") << " @" << Offset
493 << " which extends past the end of the " << AllocSize
494 << " byte alloca:\n"
495 << " alloca: " << P.AI << "\n"
496 << " use: " << I << "\n");
Chandler Carruthed90ed02012-12-10 08:28:39 +0000497 return;
Chandler Carruth713aa942012-09-14 09:22:59 +0000498 }
499
Chandler Carrutha2b88162012-10-25 04:37:07 +0000500 // We allow splitting of loads and stores where the type is an integer type
501 // and which cover the entire alloca. Such integer loads and stores
502 // often require decomposition into fine grained loads and stores.
503 bool IsSplittable = false;
504 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
505 IsSplittable = !IsVolatile && ITy->getBitWidth() == AllocSize*8;
506
507 insertUse(I, Offset, Size, IsSplittable);
Chandler Carruth713aa942012-09-14 09:22:59 +0000508 }
509
Chandler Carruthed90ed02012-12-10 08:28:39 +0000510 void visitLoadInst(LoadInst &LI) {
Chandler Carruthc370acd2012-09-18 12:57:43 +0000511 assert((!LI.isSimple() || LI.getType()->isSingleValueType()) &&
512 "All simple FCA loads should have been pre-split");
Chandler Carruthed90ed02012-12-10 08:28:39 +0000513
514 if (!IsOffsetKnown)
515 return PI.setAborted(&LI);
516
Chandler Carrutha2b88162012-10-25 04:37:07 +0000517 return handleLoadOrStore(LI.getType(), LI, Offset, LI.isVolatile());
Chandler Carruth713aa942012-09-14 09:22:59 +0000518 }
519
Chandler Carruthed90ed02012-12-10 08:28:39 +0000520 void visitStoreInst(StoreInst &SI) {
Chandler Carruthc370acd2012-09-18 12:57:43 +0000521 Value *ValOp = SI.getValueOperand();
522 if (ValOp == *U)
Chandler Carruthed90ed02012-12-10 08:28:39 +0000523 return PI.setEscapedAndAborted(&SI);
524 if (!IsOffsetKnown)
525 return PI.setAborted(&SI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000526
Chandler Carruthc370acd2012-09-18 12:57:43 +0000527 assert((!SI.isSimple() || ValOp->getType()->isSingleValueType()) &&
528 "All simple FCA stores should have been pre-split");
Chandler Carruthed90ed02012-12-10 08:28:39 +0000529 handleLoadOrStore(ValOp->getType(), SI, Offset, SI.isVolatile());
Chandler Carruth713aa942012-09-14 09:22:59 +0000530 }
531
532
Chandler Carruthed90ed02012-12-10 08:28:39 +0000533 void visitMemSetInst(MemSetInst &II) {
Chandler Carruthb3dd9a12012-09-14 10:26:34 +0000534 assert(II.getRawDest() == *U && "Pointer use is not the destination?");
Chandler Carruth713aa942012-09-14 09:22:59 +0000535 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthed90ed02012-12-10 08:28:39 +0000536 if ((Length && Length->getValue() == 0) ||
537 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
538 // Zero-length mem transfer intrinsics can be ignored entirely.
539 return;
540
541 if (!IsOffsetKnown)
542 return PI.setAborted(&II);
543
544 insertUse(II, Offset,
545 Length ? Length->getLimitedValue()
546 : AllocSize - Offset.getLimitedValue(),
547 (bool)Length);
Chandler Carruth713aa942012-09-14 09:22:59 +0000548 }
549
Chandler Carruthed90ed02012-12-10 08:28:39 +0000550 void visitMemTransferInst(MemTransferInst &II) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000551 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthed90ed02012-12-10 08:28:39 +0000552 if ((Length && Length->getValue() == 0) ||
553 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
Chandler Carruth713aa942012-09-14 09:22:59 +0000554 // Zero-length mem transfer intrinsics can be ignored entirely.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000555 return;
556
557 if (!IsOffsetKnown)
558 return PI.setAborted(&II);
559
560 uint64_t RawOffset = Offset.getLimitedValue();
561 uint64_t Size = Length ? Length->getLimitedValue()
562 : AllocSize - RawOffset;
Chandler Carruth713aa942012-09-14 09:22:59 +0000563
564 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
565
566 // Only intrinsics with a constant length can be split.
567 Offsets.IsSplittable = Length;
568
Chandler Carruthfca3f402012-10-05 01:29:09 +0000569 if (*U == II.getRawDest()) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000570 Offsets.DestBegin = RawOffset;
571 Offsets.DestEnd = RawOffset + Size;
Chandler Carruth713aa942012-09-14 09:22:59 +0000572 }
Chandler Carruthfca3f402012-10-05 01:29:09 +0000573 if (*U == II.getRawSource()) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000574 Offsets.SourceBegin = RawOffset;
575 Offsets.SourceEnd = RawOffset + Size;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000576 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000577
Chandler Carruthfca3f402012-10-05 01:29:09 +0000578 // If we have set up end offsets for both the source and the destination,
579 // we have found both sides of this transfer pointing at the same alloca.
580 bool SeenBothEnds = Offsets.SourceEnd && Offsets.DestEnd;
581 if (SeenBothEnds && II.getRawDest() != II.getRawSource()) {
582 unsigned PrevIdx = MemTransferPartitionMap[&II];
Chandler Carruth713aa942012-09-14 09:22:59 +0000583
Chandler Carruthfca3f402012-10-05 01:29:09 +0000584 // Check if the begin offsets match and this is a non-volatile transfer.
585 // In that case, we can completely elide the transfer.
586 if (!II.isVolatile() && Offsets.SourceBegin == Offsets.DestBegin) {
587 P.Partitions[PrevIdx].kill();
Chandler Carruthed90ed02012-12-10 08:28:39 +0000588 return;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000589 }
590
591 // Otherwise we have an offset transfer within the same alloca. We can't
592 // split those.
593 P.Partitions[PrevIdx].IsSplittable = Offsets.IsSplittable = false;
594 } else if (SeenBothEnds) {
595 // Handle the case where this exact use provides both ends of the
596 // operation.
597 assert(II.getRawDest() == II.getRawSource());
598
599 // For non-volatile transfers this is a no-op.
600 if (!II.isVolatile())
Chandler Carruthed90ed02012-12-10 08:28:39 +0000601 return;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000602
603 // Otherwise just suppress splitting.
Chandler Carruth713aa942012-09-14 09:22:59 +0000604 Offsets.IsSplittable = false;
Chandler Carruthfca3f402012-10-05 01:29:09 +0000605 }
606
607
608 // Insert the use now that we've fixed up the splittable nature.
609 insertUse(II, Offset, Size, Offsets.IsSplittable);
610
611 // Setup the mapping from intrinsic to partition of we've not seen both
612 // ends of this transfer.
613 if (!SeenBothEnds) {
614 unsigned NewIdx = P.Partitions.size() - 1;
615 bool Inserted
616 = MemTransferPartitionMap.insert(std::make_pair(&II, NewIdx)).second;
617 assert(Inserted &&
618 "Already have intrinsic in map but haven't seen both ends");
NAKAMURA Takumi0559d312012-10-05 13:56:23 +0000619 (void)Inserted;
Chandler Carruth713aa942012-09-14 09:22:59 +0000620 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000621 }
622
623 // Disable SRoA for any intrinsics except for lifetime invariants.
Chandler Carruth50754f02012-09-14 10:26:36 +0000624 // FIXME: What about debug instrinsics? This matches old behavior, but
625 // doesn't make sense.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000626 void visitIntrinsicInst(IntrinsicInst &II) {
627 if (!IsOffsetKnown)
628 return PI.setAborted(&II);
629
Chandler Carruth713aa942012-09-14 09:22:59 +0000630 if (II.getIntrinsicID() == Intrinsic::lifetime_start ||
631 II.getIntrinsicID() == Intrinsic::lifetime_end) {
632 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
Chandler Carruthed90ed02012-12-10 08:28:39 +0000633 uint64_t Size = std::min(AllocSize - Offset.getLimitedValue(),
634 Length->getLimitedValue());
Chandler Carruth63392ea2012-09-16 19:39:50 +0000635 insertUse(II, Offset, Size, true);
Chandler Carruthed90ed02012-12-10 08:28:39 +0000636 return;
Chandler Carruth713aa942012-09-14 09:22:59 +0000637 }
638
Chandler Carruthed90ed02012-12-10 08:28:39 +0000639 Base::visitIntrinsicInst(II);
Chandler Carruth713aa942012-09-14 09:22:59 +0000640 }
641
642 Instruction *hasUnsafePHIOrSelectUse(Instruction *Root, uint64_t &Size) {
643 // We consider any PHI or select that results in a direct load or store of
644 // the same offset to be a viable use for partitioning purposes. These uses
645 // are considered unsplittable and the size is the maximum loaded or stored
646 // size.
647 SmallPtrSet<Instruction *, 4> Visited;
648 SmallVector<std::pair<Instruction *, Instruction *>, 4> Uses;
649 Visited.insert(Root);
650 Uses.push_back(std::make_pair(cast<Instruction>(*U), Root));
Chandler Carruthc3034632012-09-25 10:03:40 +0000651 // If there are no loads or stores, the access is dead. We mark that as
652 // a size zero access.
653 Size = 0;
Chandler Carruth713aa942012-09-14 09:22:59 +0000654 do {
655 Instruction *I, *UsedI;
656 llvm::tie(UsedI, I) = Uses.pop_back_val();
657
658 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000659 Size = std::max(Size, DL.getTypeStoreSize(LI->getType()));
Chandler Carruth713aa942012-09-14 09:22:59 +0000660 continue;
661 }
662 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
663 Value *Op = SI->getOperand(0);
664 if (Op == UsedI)
665 return SI;
Chandler Carruthed90ed02012-12-10 08:28:39 +0000666 Size = std::max(Size, DL.getTypeStoreSize(Op->getType()));
Chandler Carruth713aa942012-09-14 09:22:59 +0000667 continue;
668 }
669
670 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
671 if (!GEP->hasAllZeroIndices())
672 return GEP;
673 } else if (!isa<BitCastInst>(I) && !isa<PHINode>(I) &&
674 !isa<SelectInst>(I)) {
675 return I;
676 }
677
678 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE;
679 ++UI)
680 if (Visited.insert(cast<Instruction>(*UI)))
681 Uses.push_back(std::make_pair(I, cast<Instruction>(*UI)));
682 } while (!Uses.empty());
683
684 return 0;
685 }
686
Chandler Carruthed90ed02012-12-10 08:28:39 +0000687 void visitPHINode(PHINode &PN) {
688 if (PN.use_empty())
689 return;
690 if (!IsOffsetKnown)
691 return PI.setAborted(&PN);
692
Chandler Carruth713aa942012-09-14 09:22:59 +0000693 // See if we already have computed info on this node.
694 std::pair<uint64_t, bool> &PHIInfo = P.PHIOrSelectSizes[&PN];
695 if (PHIInfo.first) {
696 PHIInfo.second = true;
Chandler Carruth63392ea2012-09-16 19:39:50 +0000697 insertUse(PN, Offset, PHIInfo.first);
Chandler Carruthed90ed02012-12-10 08:28:39 +0000698 return;
Chandler Carruth713aa942012-09-14 09:22:59 +0000699 }
700
701 // Check for an unsafe use of the PHI node.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000702 if (Instruction *UnsafeI = hasUnsafePHIOrSelectUse(&PN, PHIInfo.first))
703 return PI.setAborted(UnsafeI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000704
Chandler Carruth63392ea2012-09-16 19:39:50 +0000705 insertUse(PN, Offset, PHIInfo.first);
Chandler Carruth713aa942012-09-14 09:22:59 +0000706 }
707
Chandler Carruthed90ed02012-12-10 08:28:39 +0000708 void visitSelectInst(SelectInst &SI) {
709 if (SI.use_empty())
710 return;
Chandler Carruth713aa942012-09-14 09:22:59 +0000711 if (Value *Result = foldSelectInst(SI)) {
712 if (Result == *U)
713 // If the result of the constant fold will be the pointer, recurse
714 // through the select as if we had RAUW'ed it.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000715 enqueueUsers(SI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000716
Chandler Carruthed90ed02012-12-10 08:28:39 +0000717 return;
Chandler Carruth713aa942012-09-14 09:22:59 +0000718 }
Chandler Carruthed90ed02012-12-10 08:28:39 +0000719 if (!IsOffsetKnown)
720 return PI.setAborted(&SI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000721
722 // See if we already have computed info on this node.
723 std::pair<uint64_t, bool> &SelectInfo = P.PHIOrSelectSizes[&SI];
724 if (SelectInfo.first) {
725 SelectInfo.second = true;
Chandler Carruth63392ea2012-09-16 19:39:50 +0000726 insertUse(SI, Offset, SelectInfo.first);
Chandler Carruthed90ed02012-12-10 08:28:39 +0000727 return;
Chandler Carruth713aa942012-09-14 09:22:59 +0000728 }
729
730 // Check for an unsafe use of the PHI node.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000731 if (Instruction *UnsafeI = hasUnsafePHIOrSelectUse(&SI, SelectInfo.first))
732 return PI.setAborted(UnsafeI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000733
Chandler Carruth63392ea2012-09-16 19:39:50 +0000734 insertUse(SI, Offset, SelectInfo.first);
Chandler Carruth713aa942012-09-14 09:22:59 +0000735 }
736
737 /// \brief Disable SROA entirely if there are unhandled users of the alloca.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000738 void visitInstruction(Instruction &I) {
739 PI.setAborted(&I);
740 }
Chandler Carruth713aa942012-09-14 09:22:59 +0000741};
742
Chandler Carruth713aa942012-09-14 09:22:59 +0000743/// \brief Use adder for the alloca partitioning.
744///
Chandler Carruth7f5bede2012-09-14 10:18:49 +0000745/// This class adds the uses of an alloca to all of the partitions which they
746/// use. For splittable partitions, this can end up doing essentially a linear
Chandler Carruth713aa942012-09-14 09:22:59 +0000747/// walk of the partitions, but the number of steps remains bounded by the
748/// total result instruction size:
749/// - The number of partitions is a result of the number unsplittable
750/// instructions using the alloca.
751/// - The number of users of each partition is at worst the total number of
752/// splittable instructions using the alloca.
753/// Thus we will produce N * M instructions in the end, where N are the number
754/// of unsplittable uses and M are the number of splittable. This visitor does
755/// the exact same number of updates to the partitioning.
756///
757/// In the more common case, this visitor will leverage the fact that the
758/// partition space is pre-sorted, and do a logarithmic search for the
759/// partition needed, making the total visit a classical ((N + M) * log(N))
760/// complexity operation.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000761class AllocaPartitioning::UseBuilder : public PtrUseVisitor<UseBuilder> {
762 friend class PtrUseVisitor<UseBuilder>;
Chandler Carruth713aa942012-09-14 09:22:59 +0000763 friend class InstVisitor<UseBuilder>;
Chandler Carruthed90ed02012-12-10 08:28:39 +0000764 typedef PtrUseVisitor<UseBuilder> Base;
765
766 const uint64_t AllocSize;
767 AllocaPartitioning &P;
Chandler Carruth713aa942012-09-14 09:22:59 +0000768
769 /// \brief Set to de-duplicate dead instructions found in the use walk.
770 SmallPtrSet<Instruction *, 4> VisitedDeadInsts;
771
772public:
Micah Villmow3574eca2012-10-08 16:38:25 +0000773 UseBuilder(const DataLayout &TD, AllocaInst &AI, AllocaPartitioning &P)
Chandler Carruthed90ed02012-12-10 08:28:39 +0000774 : PtrUseVisitor<UseBuilder>(TD),
775 AllocSize(TD.getTypeAllocSize(AI.getAllocatedType())),
776 P(P) {}
Chandler Carruth713aa942012-09-14 09:22:59 +0000777
778private:
779 void markAsDead(Instruction &I) {
780 if (VisitedDeadInsts.insert(&I))
781 P.DeadUsers.push_back(&I);
782 }
783
Chandler Carruthed90ed02012-12-10 08:28:39 +0000784 void insertUse(Instruction &User, const APInt &Offset, uint64_t Size) {
Chandler Carruthc3034632012-09-25 10:03:40 +0000785 // If the use has a zero size or extends outside of the allocation, record
786 // it as a dead use for elimination later.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000787 if (Size == 0 || Offset.isNegative() || Offset.uge(AllocSize))
Chandler Carruth713aa942012-09-14 09:22:59 +0000788 return markAsDead(User);
789
Chandler Carruthed90ed02012-12-10 08:28:39 +0000790 uint64_t BeginOffset = Offset.getZExtValue();
791 uint64_t EndOffset = BeginOffset + Size;
Chandler Carruth02e92a02012-09-23 11:43:14 +0000792
793 // Clamp the end offset to the end of the allocation. Note that this is
794 // formulated to handle even the case where "BeginOffset + Size" overflows.
795 assert(AllocSize >= BeginOffset); // Established above.
796 if (Size > AllocSize - BeginOffset)
Chandler Carruth713aa942012-09-14 09:22:59 +0000797 EndOffset = AllocSize;
798
799 // NB: This only works if we have zero overlapping partitions.
800 iterator B = std::lower_bound(P.begin(), P.end(), BeginOffset);
801 if (B != P.begin() && llvm::prior(B)->EndOffset > BeginOffset)
802 B = llvm::prior(B);
803 for (iterator I = B, E = P.end(); I != E && I->BeginOffset < EndOffset;
804 ++I) {
Chandler Carruth77c12702012-10-01 01:49:22 +0000805 PartitionUse NewPU(std::max(I->BeginOffset, BeginOffset),
806 std::min(I->EndOffset, EndOffset), U);
807 P.use_push_back(I, NewPU);
Chandler Carruth713aa942012-09-14 09:22:59 +0000808 if (isa<PHINode>(U->getUser()) || isa<SelectInst>(U->getUser()))
Chandler Carruth77c12702012-10-01 01:49:22 +0000809 P.PHIOrSelectOpMap[U]
Chandler Carruth713aa942012-09-14 09:22:59 +0000810 = std::make_pair(I - P.begin(), P.Uses[I - P.begin()].size() - 1);
811 }
812 }
813
Chandler Carruthed90ed02012-12-10 08:28:39 +0000814 void handleLoadOrStore(Type *Ty, Instruction &I, const APInt &Offset) {
815 uint64_t Size = DL.getTypeStoreSize(Ty);
Chandler Carruth713aa942012-09-14 09:22:59 +0000816
817 // If this memory access can be shown to *statically* extend outside the
818 // bounds of of the allocation, it's behavior is undefined, so simply
819 // ignore it. Note that this is more strict than the generic clamping
820 // behavior of insertUse.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000821 if (Offset.isNegative() || Size > AllocSize ||
822 Offset.ugt(AllocSize - Size))
Chandler Carruth713aa942012-09-14 09:22:59 +0000823 return markAsDead(I);
824
Chandler Carruth63392ea2012-09-16 19:39:50 +0000825 insertUse(I, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000826 }
827
828 void visitBitCastInst(BitCastInst &BC) {
829 if (BC.use_empty())
830 return markAsDead(BC);
831
Chandler Carruthed90ed02012-12-10 08:28:39 +0000832 return Base::visitBitCastInst(BC);
Chandler Carruth713aa942012-09-14 09:22:59 +0000833 }
834
835 void visitGetElementPtrInst(GetElementPtrInst &GEPI) {
836 if (GEPI.use_empty())
837 return markAsDead(GEPI);
838
Chandler Carruthed90ed02012-12-10 08:28:39 +0000839 return Base::visitGetElementPtrInst(GEPI);
Chandler Carruth713aa942012-09-14 09:22:59 +0000840 }
841
842 void visitLoadInst(LoadInst &LI) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000843 assert(IsOffsetKnown);
Chandler Carruth63392ea2012-09-16 19:39:50 +0000844 handleLoadOrStore(LI.getType(), LI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000845 }
846
847 void visitStoreInst(StoreInst &SI) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000848 assert(IsOffsetKnown);
Chandler Carruth63392ea2012-09-16 19:39:50 +0000849 handleLoadOrStore(SI.getOperand(0)->getType(), SI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000850 }
851
852 void visitMemSetInst(MemSetInst &II) {
853 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthed90ed02012-12-10 08:28:39 +0000854 if ((Length && Length->getValue() == 0) ||
855 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
856 return markAsDead(II);
857
858 assert(IsOffsetKnown);
859 insertUse(II, Offset, Length ? Length->getLimitedValue()
860 : AllocSize - Offset.getLimitedValue());
Chandler Carruth713aa942012-09-14 09:22:59 +0000861 }
862
863 void visitMemTransferInst(MemTransferInst &II) {
864 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthed90ed02012-12-10 08:28:39 +0000865 if ((Length && Length->getValue() == 0) ||
866 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
Chandler Carruthfca3f402012-10-05 01:29:09 +0000867 return markAsDead(II);
868
Chandler Carruthed90ed02012-12-10 08:28:39 +0000869 assert(IsOffsetKnown);
870 uint64_t Size = Length ? Length->getLimitedValue()
871 : AllocSize - Offset.getLimitedValue();
872
Chandler Carruthfca3f402012-10-05 01:29:09 +0000873 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
874 if (!II.isVolatile() && Offsets.DestEnd && Offsets.SourceEnd &&
875 Offsets.DestBegin == Offsets.SourceBegin)
876 return markAsDead(II); // Skip identity transfers without side-effects.
877
Chandler Carruth63392ea2012-09-16 19:39:50 +0000878 insertUse(II, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000879 }
880
881 void visitIntrinsicInst(IntrinsicInst &II) {
Chandler Carruthed90ed02012-12-10 08:28:39 +0000882 assert(IsOffsetKnown);
Chandler Carruth713aa942012-09-14 09:22:59 +0000883 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
884 II.getIntrinsicID() == Intrinsic::lifetime_end);
885
886 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
Chandler Carruthed90ed02012-12-10 08:28:39 +0000887 insertUse(II, Offset, std::min(Length->getLimitedValue(),
888 AllocSize - Offset.getLimitedValue()));
Chandler Carruth713aa942012-09-14 09:22:59 +0000889 }
890
Chandler Carruthed90ed02012-12-10 08:28:39 +0000891 void insertPHIOrSelect(Instruction &User, const APInt &Offset) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000892 uint64_t Size = P.PHIOrSelectSizes.lookup(&User).first;
893
894 // For PHI and select operands outside the alloca, we can't nuke the entire
895 // phi or select -- the other side might still be relevant, so we special
896 // case them here and use a separate structure to track the operands
897 // themselves which should be replaced with undef.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000898 if ((Offset.isNegative() && Offset.uge(Size)) ||
899 (!Offset.isNegative() && Offset.uge(AllocSize))) {
Chandler Carruth713aa942012-09-14 09:22:59 +0000900 P.DeadOperands.push_back(U);
901 return;
902 }
903
Chandler Carruth63392ea2012-09-16 19:39:50 +0000904 insertUse(User, Offset, Size);
Chandler Carruth713aa942012-09-14 09:22:59 +0000905 }
Chandler Carruthed90ed02012-12-10 08:28:39 +0000906
Chandler Carruth713aa942012-09-14 09:22:59 +0000907 void visitPHINode(PHINode &PN) {
908 if (PN.use_empty())
909 return markAsDead(PN);
910
Chandler Carruthed90ed02012-12-10 08:28:39 +0000911 assert(IsOffsetKnown);
Chandler Carruth63392ea2012-09-16 19:39:50 +0000912 insertPHIOrSelect(PN, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000913 }
Chandler Carruthed90ed02012-12-10 08:28:39 +0000914
Chandler Carruth713aa942012-09-14 09:22:59 +0000915 void visitSelectInst(SelectInst &SI) {
916 if (SI.use_empty())
917 return markAsDead(SI);
918
919 if (Value *Result = foldSelectInst(SI)) {
920 if (Result == *U)
921 // If the result of the constant fold will be the pointer, recurse
922 // through the select as if we had RAUW'ed it.
Chandler Carruthed90ed02012-12-10 08:28:39 +0000923 enqueueUsers(SI);
Chandler Carruthd54a6b52012-09-21 23:36:40 +0000924 else
925 // Otherwise the operand to the select is dead, and we can replace it
926 // with undef.
927 P.DeadOperands.push_back(U);
Chandler Carruth713aa942012-09-14 09:22:59 +0000928
929 return;
930 }
931
Chandler Carruthed90ed02012-12-10 08:28:39 +0000932 assert(IsOffsetKnown);
Chandler Carruth63392ea2012-09-16 19:39:50 +0000933 insertPHIOrSelect(SI, Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +0000934 }
935
936 /// \brief Unreachable, we've already visited the alloca once.
937 void visitInstruction(Instruction &I) {
938 llvm_unreachable("Unhandled instruction in use builder.");
939 }
940};
941
942void AllocaPartitioning::splitAndMergePartitions() {
943 size_t NumDeadPartitions = 0;
944
945 // Track the range of splittable partitions that we pass when accumulating
946 // overlapping unsplittable partitions.
947 uint64_t SplitEndOffset = 0ull;
948
949 Partition New(0ull, 0ull, false);
950
951 for (unsigned i = 0, j = i, e = Partitions.size(); i != e; i = j) {
952 ++j;
953
954 if (!Partitions[i].IsSplittable || New.BeginOffset == New.EndOffset) {
955 assert(New.BeginOffset == New.EndOffset);
956 New = Partitions[i];
957 } else {
958 assert(New.IsSplittable);
959 New.EndOffset = std::max(New.EndOffset, Partitions[i].EndOffset);
960 }
961 assert(New.BeginOffset != New.EndOffset);
962
963 // Scan the overlapping partitions.
964 while (j != e && New.EndOffset > Partitions[j].BeginOffset) {
965 // If the new partition we are forming is splittable, stop at the first
966 // unsplittable partition.
967 if (New.IsSplittable && !Partitions[j].IsSplittable)
968 break;
969
970 // Grow the new partition to include any equally splittable range. 'j' is
971 // always equally splittable when New is splittable, but when New is not
972 // splittable, we may subsume some (or part of some) splitable partition
973 // without growing the new one.
974 if (New.IsSplittable == Partitions[j].IsSplittable) {
975 New.EndOffset = std::max(New.EndOffset, Partitions[j].EndOffset);
976 } else {
977 assert(!New.IsSplittable);
978 assert(Partitions[j].IsSplittable);
979 SplitEndOffset = std::max(SplitEndOffset, Partitions[j].EndOffset);
980 }
981
Chandler Carruthfca3f402012-10-05 01:29:09 +0000982 Partitions[j].kill();
Chandler Carruth713aa942012-09-14 09:22:59 +0000983 ++NumDeadPartitions;
984 ++j;
985 }
986
987 // If the new partition is splittable, chop off the end as soon as the
988 // unsplittable subsequent partition starts and ensure we eventually cover
989 // the splittable area.
990 if (j != e && New.IsSplittable) {
991 SplitEndOffset = std::max(SplitEndOffset, New.EndOffset);
992 New.EndOffset = std::min(New.EndOffset, Partitions[j].BeginOffset);
993 }
994
995 // Add the new partition if it differs from the original one and is
996 // non-empty. We can end up with an empty partition here if it was
997 // splittable but there is an unsplittable one that starts at the same
998 // offset.
999 if (New != Partitions[i]) {
1000 if (New.BeginOffset != New.EndOffset)
1001 Partitions.push_back(New);
1002 // Mark the old one for removal.
Chandler Carruthfca3f402012-10-05 01:29:09 +00001003 Partitions[i].kill();
Chandler Carruth713aa942012-09-14 09:22:59 +00001004 ++NumDeadPartitions;
1005 }
1006
1007 New.BeginOffset = New.EndOffset;
1008 if (!New.IsSplittable) {
1009 New.EndOffset = std::max(New.EndOffset, SplitEndOffset);
1010 if (j != e && !Partitions[j].IsSplittable)
1011 New.EndOffset = std::min(New.EndOffset, Partitions[j].BeginOffset);
1012 New.IsSplittable = true;
1013 // If there is a trailing splittable partition which won't be fused into
1014 // the next splittable partition go ahead and add it onto the partitions
1015 // list.
1016 if (New.BeginOffset < New.EndOffset &&
1017 (j == e || !Partitions[j].IsSplittable ||
1018 New.EndOffset < Partitions[j].BeginOffset)) {
1019 Partitions.push_back(New);
1020 New.BeginOffset = New.EndOffset = 0ull;
1021 }
1022 }
1023 }
1024
1025 // Re-sort the partitions now that they have been split and merged into
1026 // disjoint set of partitions. Also remove any of the dead partitions we've
1027 // replaced in the process.
1028 std::sort(Partitions.begin(), Partitions.end());
1029 if (NumDeadPartitions) {
Chandler Carruthfca3f402012-10-05 01:29:09 +00001030 assert(Partitions.back().isDead());
Chandler Carruth713aa942012-09-14 09:22:59 +00001031 assert((ptrdiff_t)NumDeadPartitions ==
1032 std::count(Partitions.begin(), Partitions.end(), Partitions.back()));
1033 }
1034 Partitions.erase(Partitions.end() - NumDeadPartitions, Partitions.end());
1035}
1036
Micah Villmow3574eca2012-10-08 16:38:25 +00001037AllocaPartitioning::AllocaPartitioning(const DataLayout &TD, AllocaInst &AI)
Benjamin Kramerd0807692012-09-14 13:08:09 +00001038 :
Chandler Carruth3a902d02012-11-20 10:23:07 +00001039#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Benjamin Kramerd0807692012-09-14 13:08:09 +00001040 AI(AI),
1041#endif
1042 PointerEscapingInstr(0) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001043 PartitionBuilder PB(TD, AI, *this);
Chandler Carruthed90ed02012-12-10 08:28:39 +00001044 PartitionBuilder::PtrInfo PtrI = PB.visitPtr(AI);
1045 if (PtrI.isEscaped() || PtrI.isAborted()) {
1046 // FIXME: We should sink the escape vs. abort info into the caller nicely,
1047 // possibly by just storing the PtrInfo in the AllocaPartitioning.
1048 PointerEscapingInstr = PtrI.getEscapingInst() ? PtrI.getEscapingInst()
1049 : PtrI.getAbortingInst();
1050 assert(PointerEscapingInstr && "Did not track a bad instruction");
Chandler Carruth713aa942012-09-14 09:22:59 +00001051 return;
Chandler Carruthed90ed02012-12-10 08:28:39 +00001052 }
Chandler Carruth713aa942012-09-14 09:22:59 +00001053
Chandler Carruthfca3f402012-10-05 01:29:09 +00001054 // Sort the uses. This arranges for the offsets to be in ascending order,
1055 // and the sizes to be in descending order.
1056 std::sort(Partitions.begin(), Partitions.end());
Chandler Carruth713aa942012-09-14 09:22:59 +00001057
Chandler Carruthfca3f402012-10-05 01:29:09 +00001058 // Remove any partitions from the back which are marked as dead.
1059 while (!Partitions.empty() && Partitions.back().isDead())
1060 Partitions.pop_back();
1061
1062 if (Partitions.size() > 1) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001063 // Intersect splittability for all partitions with equal offsets and sizes.
1064 // Then remove all but the first so that we have a sequence of non-equal but
1065 // potentially overlapping partitions.
1066 for (iterator I = Partitions.begin(), J = I, E = Partitions.end(); I != E;
1067 I = J) {
1068 ++J;
1069 while (J != E && *I == *J) {
1070 I->IsSplittable &= J->IsSplittable;
1071 ++J;
1072 }
1073 }
1074 Partitions.erase(std::unique(Partitions.begin(), Partitions.end()),
1075 Partitions.end());
1076
1077 // Split splittable and merge unsplittable partitions into a disjoint set
1078 // of partitions over the used space of the allocation.
1079 splitAndMergePartitions();
1080 }
1081
1082 // Now build up the user lists for each of these disjoint partitions by
1083 // re-walking the recursive users of the alloca.
1084 Uses.resize(Partitions.size());
1085 UseBuilder UB(TD, AI, *this);
Chandler Carruthed90ed02012-12-10 08:28:39 +00001086 PtrI = UB.visitPtr(AI);
1087 assert(!PtrI.isEscaped() && "Previously analyzed pointer now escapes!");
1088 assert(!PtrI.isAborted() && "Early aborted the visit of the pointer.");
Chandler Carruth713aa942012-09-14 09:22:59 +00001089}
1090
1091Type *AllocaPartitioning::getCommonType(iterator I) const {
1092 Type *Ty = 0;
1093 for (const_use_iterator UI = use_begin(I), UE = use_end(I); UI != UE; ++UI) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00001094 if (!UI->U)
1095 continue; // Skip dead uses.
Chandler Carruth77c12702012-10-01 01:49:22 +00001096 if (isa<IntrinsicInst>(*UI->U->getUser()))
Chandler Carruth713aa942012-09-14 09:22:59 +00001097 continue;
1098 if (UI->BeginOffset != I->BeginOffset || UI->EndOffset != I->EndOffset)
Chandler Carruth7c8df7a2012-09-18 17:49:37 +00001099 continue;
Chandler Carruth713aa942012-09-14 09:22:59 +00001100
1101 Type *UserTy = 0;
Chandler Carruth77c12702012-10-01 01:49:22 +00001102 if (LoadInst *LI = dyn_cast<LoadInst>(UI->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001103 UserTy = LI->getType();
Chandler Carruth77c12702012-10-01 01:49:22 +00001104 } else if (StoreInst *SI = dyn_cast<StoreInst>(UI->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001105 UserTy = SI->getValueOperand()->getType();
Chandler Carrutha2b88162012-10-25 04:37:07 +00001106 } else {
1107 return 0; // Bail if we have weird uses.
1108 }
1109
1110 if (IntegerType *ITy = dyn_cast<IntegerType>(UserTy)) {
1111 // If the type is larger than the partition, skip it. We only encounter
1112 // this for split integer operations where we want to use the type of the
1113 // entity causing the split.
1114 if (ITy->getBitWidth() > (I->EndOffset - I->BeginOffset)*8)
1115 continue;
1116
1117 // If we have found an integer type use covering the alloca, use that
1118 // regardless of the other types, as integers are often used for a "bucket
1119 // of bits" type.
1120 return ITy;
Chandler Carruth713aa942012-09-14 09:22:59 +00001121 }
1122
1123 if (Ty && Ty != UserTy)
1124 return 0;
1125
1126 Ty = UserTy;
1127 }
1128 return Ty;
1129}
1130
Chandler Carruthba13d2e2012-09-14 10:18:51 +00001131#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1132
Chandler Carruth713aa942012-09-14 09:22:59 +00001133void AllocaPartitioning::print(raw_ostream &OS, const_iterator I,
1134 StringRef Indent) const {
1135 OS << Indent << "partition #" << (I - begin())
1136 << " [" << I->BeginOffset << "," << I->EndOffset << ")"
1137 << (I->IsSplittable ? " (splittable)" : "")
1138 << (Uses[I - begin()].empty() ? " (zero uses)" : "")
1139 << "\n";
1140}
1141
1142void AllocaPartitioning::printUsers(raw_ostream &OS, const_iterator I,
1143 StringRef Indent) const {
1144 for (const_use_iterator UI = use_begin(I), UE = use_end(I);
1145 UI != UE; ++UI) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00001146 if (!UI->U)
1147 continue; // Skip dead uses.
Chandler Carruth713aa942012-09-14 09:22:59 +00001148 OS << Indent << " [" << UI->BeginOffset << "," << UI->EndOffset << ") "
Chandler Carruth77c12702012-10-01 01:49:22 +00001149 << "used by: " << *UI->U->getUser() << "\n";
1150 if (MemTransferInst *II = dyn_cast<MemTransferInst>(UI->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001151 const MemTransferOffsets &MTO = MemTransferInstData.lookup(II);
1152 bool IsDest;
1153 if (!MTO.IsSplittable)
1154 IsDest = UI->BeginOffset == MTO.DestBegin;
1155 else
1156 IsDest = MTO.DestBegin != 0u;
1157 OS << Indent << " (original " << (IsDest ? "dest" : "source") << ": "
1158 << "[" << (IsDest ? MTO.DestBegin : MTO.SourceBegin)
1159 << "," << (IsDest ? MTO.DestEnd : MTO.SourceEnd) << ")\n";
1160 }
1161 }
1162}
1163
1164void AllocaPartitioning::print(raw_ostream &OS) const {
1165 if (PointerEscapingInstr) {
1166 OS << "No partitioning for alloca: " << AI << "\n"
1167 << " A pointer to this alloca escaped by:\n"
1168 << " " << *PointerEscapingInstr << "\n";
1169 return;
1170 }
1171
1172 OS << "Partitioning of alloca: " << AI << "\n";
1173 unsigned Num = 0;
1174 for (const_iterator I = begin(), E = end(); I != E; ++I, ++Num) {
1175 print(OS, I);
1176 printUsers(OS, I);
1177 }
1178}
1179
1180void AllocaPartitioning::dump(const_iterator I) const { print(dbgs(), I); }
1181void AllocaPartitioning::dump() const { print(dbgs()); }
1182
Chandler Carruthba13d2e2012-09-14 10:18:51 +00001183#endif // !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1184
Chandler Carruth713aa942012-09-14 09:22:59 +00001185
1186namespace {
Chandler Carruth1c8db502012-09-15 11:43:14 +00001187/// \brief Implementation of LoadAndStorePromoter for promoting allocas.
1188///
1189/// This subclass of LoadAndStorePromoter adds overrides to handle promoting
1190/// the loads and stores of an alloca instruction, as well as updating its
1191/// debug information. This is used when a domtree is unavailable and thus
1192/// mem2reg in its full form can't be used to handle promotion of allocas to
1193/// scalar values.
1194class AllocaPromoter : public LoadAndStorePromoter {
1195 AllocaInst &AI;
1196 DIBuilder &DIB;
1197
1198 SmallVector<DbgDeclareInst *, 4> DDIs;
1199 SmallVector<DbgValueInst *, 4> DVIs;
1200
1201public:
1202 AllocaPromoter(const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
1203 AllocaInst &AI, DIBuilder &DIB)
1204 : LoadAndStorePromoter(Insts, S), AI(AI), DIB(DIB) {}
1205
1206 void run(const SmallVectorImpl<Instruction*> &Insts) {
1207 // Remember which alloca we're promoting (for isInstInList).
1208 if (MDNode *DebugNode = MDNode::getIfExists(AI.getContext(), &AI)) {
1209 for (Value::use_iterator UI = DebugNode->use_begin(),
1210 UE = DebugNode->use_end();
1211 UI != UE; ++UI)
1212 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(*UI))
1213 DDIs.push_back(DDI);
1214 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI))
1215 DVIs.push_back(DVI);
1216 }
1217
1218 LoadAndStorePromoter::run(Insts);
1219 AI.eraseFromParent();
1220 while (!DDIs.empty())
1221 DDIs.pop_back_val()->eraseFromParent();
1222 while (!DVIs.empty())
1223 DVIs.pop_back_val()->eraseFromParent();
1224 }
1225
1226 virtual bool isInstInList(Instruction *I,
1227 const SmallVectorImpl<Instruction*> &Insts) const {
1228 if (LoadInst *LI = dyn_cast<LoadInst>(I))
1229 return LI->getOperand(0) == &AI;
1230 return cast<StoreInst>(I)->getPointerOperand() == &AI;
1231 }
1232
1233 virtual void updateDebugInfo(Instruction *Inst) const {
1234 for (SmallVector<DbgDeclareInst *, 4>::const_iterator I = DDIs.begin(),
1235 E = DDIs.end(); I != E; ++I) {
1236 DbgDeclareInst *DDI = *I;
1237 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
1238 ConvertDebugDeclareToDebugValue(DDI, SI, DIB);
1239 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
1240 ConvertDebugDeclareToDebugValue(DDI, LI, DIB);
1241 }
1242 for (SmallVector<DbgValueInst *, 4>::const_iterator I = DVIs.begin(),
1243 E = DVIs.end(); I != E; ++I) {
1244 DbgValueInst *DVI = *I;
1245 Value *Arg = NULL;
1246 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1247 // If an argument is zero extended then use argument directly. The ZExt
1248 // may be zapped by an optimization pass in future.
1249 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0)))
1250 Arg = dyn_cast<Argument>(ZExt->getOperand(0));
1251 if (SExtInst *SExt = dyn_cast<SExtInst>(SI->getOperand(0)))
1252 Arg = dyn_cast<Argument>(SExt->getOperand(0));
1253 if (!Arg)
1254 Arg = SI->getOperand(0);
1255 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
1256 Arg = LI->getOperand(0);
1257 } else {
1258 continue;
1259 }
1260 Instruction *DbgVal =
1261 DIB.insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
1262 Inst);
1263 DbgVal->setDebugLoc(DVI->getDebugLoc());
1264 }
1265 }
1266};
1267} // end anon namespace
1268
1269
1270namespace {
Chandler Carruth713aa942012-09-14 09:22:59 +00001271/// \brief An optimization pass providing Scalar Replacement of Aggregates.
1272///
1273/// This pass takes allocations which can be completely analyzed (that is, they
1274/// don't escape) and tries to turn them into scalar SSA values. There are
1275/// a few steps to this process.
1276///
1277/// 1) It takes allocations of aggregates and analyzes the ways in which they
1278/// are used to try to split them into smaller allocations, ideally of
1279/// a single scalar data type. It will split up memcpy and memset accesses
1280/// as necessary and try to isolate invidual scalar accesses.
1281/// 2) It will transform accesses into forms which are suitable for SSA value
1282/// promotion. This can be replacing a memset with a scalar store of an
1283/// integer value, or it can involve speculating operations on a PHI or
1284/// select to be a PHI or select of the results.
1285/// 3) Finally, this will try to detect a pattern of accesses which map cleanly
1286/// onto insert and extract operations on a vector value, and convert them to
1287/// this form. By doing so, it will enable promotion of vector aggregates to
1288/// SSA vector values.
1289class SROA : public FunctionPass {
Chandler Carruth1c8db502012-09-15 11:43:14 +00001290 const bool RequiresDomTree;
1291
Chandler Carruth713aa942012-09-14 09:22:59 +00001292 LLVMContext *C;
Micah Villmow3574eca2012-10-08 16:38:25 +00001293 const DataLayout *TD;
Chandler Carruth713aa942012-09-14 09:22:59 +00001294 DominatorTree *DT;
1295
1296 /// \brief Worklist of alloca instructions to simplify.
1297 ///
1298 /// Each alloca in the function is added to this. Each new alloca formed gets
1299 /// added to it as well to recursively simplify unless that alloca can be
1300 /// directly promoted. Finally, each time we rewrite a use of an alloca other
1301 /// the one being actively rewritten, we add it back onto the list if not
1302 /// already present to ensure it is re-visited.
1303 SetVector<AllocaInst *, SmallVector<AllocaInst *, 16> > Worklist;
1304
1305 /// \brief A collection of instructions to delete.
1306 /// We try to batch deletions to simplify code and make things a bit more
1307 /// efficient.
Chandler Carruthf5837aa2012-11-20 01:12:50 +00001308 SetVector<Instruction *, SmallVector<Instruction *, 8> > DeadInsts;
Chandler Carruth713aa942012-09-14 09:22:59 +00001309
Chandler Carruthb2d98c22012-10-04 12:33:50 +00001310 /// \brief Post-promotion worklist.
1311 ///
1312 /// Sometimes we discover an alloca which has a high probability of becoming
1313 /// viable for SROA after a round of promotion takes place. In those cases,
1314 /// the alloca is enqueued here for re-processing.
1315 ///
1316 /// Note that we have to be very careful to clear allocas out of this list in
1317 /// the event they are deleted.
1318 SetVector<AllocaInst *, SmallVector<AllocaInst *, 16> > PostPromotionWorklist;
1319
Chandler Carruth713aa942012-09-14 09:22:59 +00001320 /// \brief A collection of alloca instructions we can directly promote.
1321 std::vector<AllocaInst *> PromotableAllocas;
1322
1323public:
Chandler Carruth1c8db502012-09-15 11:43:14 +00001324 SROA(bool RequiresDomTree = true)
1325 : FunctionPass(ID), RequiresDomTree(RequiresDomTree),
1326 C(0), TD(0), DT(0) {
Chandler Carruth713aa942012-09-14 09:22:59 +00001327 initializeSROAPass(*PassRegistry::getPassRegistry());
1328 }
1329 bool runOnFunction(Function &F);
1330 void getAnalysisUsage(AnalysisUsage &AU) const;
1331
1332 const char *getPassName() const { return "SROA"; }
1333 static char ID;
1334
1335private:
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00001336 friend class PHIOrSelectSpeculator;
Chandler Carruth713aa942012-09-14 09:22:59 +00001337 friend class AllocaPartitionRewriter;
1338 friend class AllocaPartitionVectorRewriter;
1339
1340 bool rewriteAllocaPartition(AllocaInst &AI,
1341 AllocaPartitioning &P,
1342 AllocaPartitioning::iterator PI);
1343 bool splitAlloca(AllocaInst &AI, AllocaPartitioning &P);
1344 bool runOnAlloca(AllocaInst &AI);
Chandler Carruth8615cd22012-09-14 10:26:38 +00001345 void deleteDeadInstructions(SmallPtrSet<AllocaInst *, 4> &DeletedAllocas);
Chandler Carruth1c8db502012-09-15 11:43:14 +00001346 bool promoteAllocas(Function &F);
Chandler Carruth713aa942012-09-14 09:22:59 +00001347};
1348}
1349
1350char SROA::ID = 0;
1351
Chandler Carruth1c8db502012-09-15 11:43:14 +00001352FunctionPass *llvm::createSROAPass(bool RequiresDomTree) {
1353 return new SROA(RequiresDomTree);
Chandler Carruth713aa942012-09-14 09:22:59 +00001354}
1355
1356INITIALIZE_PASS_BEGIN(SROA, "sroa", "Scalar Replacement Of Aggregates",
1357 false, false)
1358INITIALIZE_PASS_DEPENDENCY(DominatorTree)
1359INITIALIZE_PASS_END(SROA, "sroa", "Scalar Replacement Of Aggregates",
1360 false, false)
1361
Chandler Carruth0e9da582012-10-05 01:29:06 +00001362namespace {
1363/// \brief Visitor to speculate PHIs and Selects where possible.
1364class PHIOrSelectSpeculator : public InstVisitor<PHIOrSelectSpeculator> {
1365 // Befriend the base class so it can delegate to private visit methods.
1366 friend class llvm::InstVisitor<PHIOrSelectSpeculator>;
1367
Micah Villmow3574eca2012-10-08 16:38:25 +00001368 const DataLayout &TD;
Chandler Carruth0e9da582012-10-05 01:29:06 +00001369 AllocaPartitioning &P;
1370 SROA &Pass;
1371
1372public:
Micah Villmow3574eca2012-10-08 16:38:25 +00001373 PHIOrSelectSpeculator(const DataLayout &TD, AllocaPartitioning &P, SROA &Pass)
Chandler Carruth0e9da582012-10-05 01:29:06 +00001374 : TD(TD), P(P), Pass(Pass) {}
1375
1376 /// \brief Visit the users of an alloca partition and rewrite them.
1377 void visitUsers(AllocaPartitioning::const_iterator PI) {
1378 // Note that we need to use an index here as the underlying vector of uses
1379 // may be grown during speculation. However, we never need to re-visit the
1380 // new uses, and so we can use the initial size bound.
1381 for (unsigned Idx = 0, Size = P.use_size(PI); Idx != Size; ++Idx) {
1382 const AllocaPartitioning::PartitionUse &PU = P.getUse(PI, Idx);
1383 if (!PU.U)
1384 continue; // Skip dead use.
1385
1386 visit(cast<Instruction>(PU.U->getUser()));
1387 }
1388 }
1389
1390private:
1391 // By default, skip this instruction.
1392 void visitInstruction(Instruction &I) {}
1393
1394 /// PHI instructions that use an alloca and are subsequently loaded can be
1395 /// rewritten to load both input pointers in the pred blocks and then PHI the
1396 /// results, allowing the load of the alloca to be promoted.
1397 /// From this:
1398 /// %P2 = phi [i32* %Alloca, i32* %Other]
1399 /// %V = load i32* %P2
1400 /// to:
1401 /// %V1 = load i32* %Alloca -> will be mem2reg'd
1402 /// ...
1403 /// %V2 = load i32* %Other
1404 /// ...
1405 /// %V = phi [i32 %V1, i32 %V2]
1406 ///
1407 /// We can do this to a select if its only uses are loads and if the operands
1408 /// to the select can be loaded unconditionally.
1409 ///
1410 /// FIXME: This should be hoisted into a generic utility, likely in
1411 /// Transforms/Util/Local.h
1412 bool isSafePHIToSpeculate(PHINode &PN, SmallVectorImpl<LoadInst *> &Loads) {
1413 // For now, we can only do this promotion if the load is in the same block
1414 // as the PHI, and if there are no stores between the phi and load.
1415 // TODO: Allow recursive phi users.
1416 // TODO: Allow stores.
1417 BasicBlock *BB = PN.getParent();
1418 unsigned MaxAlign = 0;
1419 for (Value::use_iterator UI = PN.use_begin(), UE = PN.use_end();
1420 UI != UE; ++UI) {
1421 LoadInst *LI = dyn_cast<LoadInst>(*UI);
1422 if (LI == 0 || !LI->isSimple()) return false;
1423
1424 // For now we only allow loads in the same block as the PHI. This is
1425 // a common case that happens when instcombine merges two loads through
1426 // a PHI.
1427 if (LI->getParent() != BB) return false;
1428
1429 // Ensure that there are no instructions between the PHI and the load that
1430 // could store.
1431 for (BasicBlock::iterator BBI = &PN; &*BBI != LI; ++BBI)
1432 if (BBI->mayWriteToMemory())
1433 return false;
1434
1435 MaxAlign = std::max(MaxAlign, LI->getAlignment());
1436 Loads.push_back(LI);
1437 }
1438
1439 // We can only transform this if it is safe to push the loads into the
1440 // predecessor blocks. The only thing to watch out for is that we can't put
1441 // a possibly trapping load in the predecessor if it is a critical edge.
1442 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num;
1443 ++Idx) {
1444 TerminatorInst *TI = PN.getIncomingBlock(Idx)->getTerminator();
1445 Value *InVal = PN.getIncomingValue(Idx);
1446
1447 // If the value is produced by the terminator of the predecessor (an
1448 // invoke) or it has side-effects, there is no valid place to put a load
1449 // in the predecessor.
1450 if (TI == InVal || TI->mayHaveSideEffects())
1451 return false;
1452
1453 // If the predecessor has a single successor, then the edge isn't
1454 // critical.
1455 if (TI->getNumSuccessors() == 1)
1456 continue;
1457
1458 // If this pointer is always safe to load, or if we can prove that there
1459 // is already a load in the block, then we can move the load to the pred
1460 // block.
1461 if (InVal->isDereferenceablePointer() ||
1462 isSafeToLoadUnconditionally(InVal, TI, MaxAlign, &TD))
1463 continue;
1464
1465 return false;
1466 }
1467
1468 return true;
1469 }
1470
1471 void visitPHINode(PHINode &PN) {
1472 DEBUG(dbgs() << " original: " << PN << "\n");
1473
1474 SmallVector<LoadInst *, 4> Loads;
1475 if (!isSafePHIToSpeculate(PN, Loads))
1476 return;
1477
1478 assert(!Loads.empty());
1479
1480 Type *LoadTy = cast<PointerType>(PN.getType())->getElementType();
1481 IRBuilder<> PHIBuilder(&PN);
1482 PHINode *NewPN = PHIBuilder.CreatePHI(LoadTy, PN.getNumIncomingValues(),
1483 PN.getName() + ".sroa.speculated");
1484
1485 // Get the TBAA tag and alignment to use from one of the loads. It doesn't
1486 // matter which one we get and if any differ, it doesn't matter.
1487 LoadInst *SomeLoad = cast<LoadInst>(Loads.back());
1488 MDNode *TBAATag = SomeLoad->getMetadata(LLVMContext::MD_tbaa);
1489 unsigned Align = SomeLoad->getAlignment();
1490
1491 // Rewrite all loads of the PN to use the new PHI.
1492 do {
1493 LoadInst *LI = Loads.pop_back_val();
1494 LI->replaceAllUsesWith(NewPN);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00001495 Pass.DeadInsts.insert(LI);
Chandler Carruth0e9da582012-10-05 01:29:06 +00001496 } while (!Loads.empty());
1497
1498 // Inject loads into all of the pred blocks.
1499 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
1500 BasicBlock *Pred = PN.getIncomingBlock(Idx);
1501 TerminatorInst *TI = Pred->getTerminator();
1502 Use *InUse = &PN.getOperandUse(PN.getOperandNumForIncomingValue(Idx));
1503 Value *InVal = PN.getIncomingValue(Idx);
1504 IRBuilder<> PredBuilder(TI);
1505
1506 LoadInst *Load
1507 = PredBuilder.CreateLoad(InVal, (PN.getName() + ".sroa.speculate.load." +
1508 Pred->getName()));
1509 ++NumLoadsSpeculated;
1510 Load->setAlignment(Align);
1511 if (TBAATag)
1512 Load->setMetadata(LLVMContext::MD_tbaa, TBAATag);
1513 NewPN->addIncoming(Load, Pred);
1514
1515 Instruction *Ptr = dyn_cast<Instruction>(InVal);
1516 if (!Ptr)
1517 // No uses to rewrite.
1518 continue;
1519
1520 // Try to lookup and rewrite any partition uses corresponding to this phi
1521 // input.
1522 AllocaPartitioning::iterator PI
1523 = P.findPartitionForPHIOrSelectOperand(InUse);
1524 if (PI == P.end())
1525 continue;
1526
1527 // Replace the Use in the PartitionUse for this operand with the Use
1528 // inside the load.
1529 AllocaPartitioning::use_iterator UI
1530 = P.findPartitionUseForPHIOrSelectOperand(InUse);
1531 assert(isa<PHINode>(*UI->U->getUser()));
1532 UI->U = &Load->getOperandUse(Load->getPointerOperandIndex());
1533 }
1534 DEBUG(dbgs() << " speculated to: " << *NewPN << "\n");
1535 }
1536
1537 /// Select instructions that use an alloca and are subsequently loaded can be
1538 /// rewritten to load both input pointers and then select between the result,
1539 /// allowing the load of the alloca to be promoted.
1540 /// From this:
1541 /// %P2 = select i1 %cond, i32* %Alloca, i32* %Other
1542 /// %V = load i32* %P2
1543 /// to:
1544 /// %V1 = load i32* %Alloca -> will be mem2reg'd
1545 /// %V2 = load i32* %Other
1546 /// %V = select i1 %cond, i32 %V1, i32 %V2
1547 ///
1548 /// We can do this to a select if its only uses are loads and if the operand
1549 /// to the select can be loaded unconditionally.
1550 bool isSafeSelectToSpeculate(SelectInst &SI,
1551 SmallVectorImpl<LoadInst *> &Loads) {
1552 Value *TValue = SI.getTrueValue();
1553 Value *FValue = SI.getFalseValue();
1554 bool TDerefable = TValue->isDereferenceablePointer();
1555 bool FDerefable = FValue->isDereferenceablePointer();
1556
1557 for (Value::use_iterator UI = SI.use_begin(), UE = SI.use_end();
1558 UI != UE; ++UI) {
1559 LoadInst *LI = dyn_cast<LoadInst>(*UI);
1560 if (LI == 0 || !LI->isSimple()) return false;
1561
1562 // Both operands to the select need to be dereferencable, either
1563 // absolutely (e.g. allocas) or at this point because we can see other
1564 // accesses to it.
1565 if (!TDerefable && !isSafeToLoadUnconditionally(TValue, LI,
1566 LI->getAlignment(), &TD))
1567 return false;
1568 if (!FDerefable && !isSafeToLoadUnconditionally(FValue, LI,
1569 LI->getAlignment(), &TD))
1570 return false;
1571 Loads.push_back(LI);
1572 }
1573
1574 return true;
1575 }
1576
1577 void visitSelectInst(SelectInst &SI) {
1578 DEBUG(dbgs() << " original: " << SI << "\n");
1579 IRBuilder<> IRB(&SI);
1580
1581 // If the select isn't safe to speculate, just use simple logic to emit it.
1582 SmallVector<LoadInst *, 4> Loads;
1583 if (!isSafeSelectToSpeculate(SI, Loads))
1584 return;
1585
1586 Use *Ops[2] = { &SI.getOperandUse(1), &SI.getOperandUse(2) };
1587 AllocaPartitioning::iterator PIs[2];
1588 AllocaPartitioning::PartitionUse PUs[2];
1589 for (unsigned i = 0, e = 2; i != e; ++i) {
1590 PIs[i] = P.findPartitionForPHIOrSelectOperand(Ops[i]);
1591 if (PIs[i] != P.end()) {
1592 // If the pointer is within the partitioning, remove the select from
1593 // its uses. We'll add in the new loads below.
1594 AllocaPartitioning::use_iterator UI
1595 = P.findPartitionUseForPHIOrSelectOperand(Ops[i]);
1596 PUs[i] = *UI;
1597 // Clear out the use here so that the offsets into the use list remain
1598 // stable but this use is ignored when rewriting.
1599 UI->U = 0;
1600 }
1601 }
1602
1603 Value *TV = SI.getTrueValue();
1604 Value *FV = SI.getFalseValue();
1605 // Replace the loads of the select with a select of two loads.
1606 while (!Loads.empty()) {
1607 LoadInst *LI = Loads.pop_back_val();
1608
1609 IRB.SetInsertPoint(LI);
1610 LoadInst *TL =
1611 IRB.CreateLoad(TV, LI->getName() + ".sroa.speculate.load.true");
1612 LoadInst *FL =
1613 IRB.CreateLoad(FV, LI->getName() + ".sroa.speculate.load.false");
1614 NumLoadsSpeculated += 2;
1615
1616 // Transfer alignment and TBAA info if present.
1617 TL->setAlignment(LI->getAlignment());
1618 FL->setAlignment(LI->getAlignment());
1619 if (MDNode *Tag = LI->getMetadata(LLVMContext::MD_tbaa)) {
1620 TL->setMetadata(LLVMContext::MD_tbaa, Tag);
1621 FL->setMetadata(LLVMContext::MD_tbaa, Tag);
1622 }
1623
1624 Value *V = IRB.CreateSelect(SI.getCondition(), TL, FL,
1625 LI->getName() + ".sroa.speculated");
1626
1627 LoadInst *Loads[2] = { TL, FL };
1628 for (unsigned i = 0, e = 2; i != e; ++i) {
1629 if (PIs[i] != P.end()) {
1630 Use *LoadUse = &Loads[i]->getOperandUse(0);
1631 assert(PUs[i].U->get() == LoadUse->get());
1632 PUs[i].U = LoadUse;
1633 P.use_push_back(PIs[i], PUs[i]);
1634 }
1635 }
1636
1637 DEBUG(dbgs() << " speculated to: " << *V << "\n");
1638 LI->replaceAllUsesWith(V);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00001639 Pass.DeadInsts.insert(LI);
Chandler Carruth0e9da582012-10-05 01:29:06 +00001640 }
1641 }
1642};
1643}
1644
Chandler Carruth713aa942012-09-14 09:22:59 +00001645/// \brief Accumulate the constant offsets in a GEP into a single APInt offset.
1646///
1647/// If the provided GEP is all-constant, the total byte offset formed by the
1648/// GEP is computed and Offset is set to it. If the GEP has any non-constant
1649/// operands, the function returns false and the value of Offset is unmodified.
Micah Villmow3574eca2012-10-08 16:38:25 +00001650static bool accumulateGEPOffsets(const DataLayout &TD, GEPOperator &GEP,
Chandler Carruth713aa942012-09-14 09:22:59 +00001651 APInt &Offset) {
1652 APInt GEPOffset(Offset.getBitWidth(), 0);
1653 for (gep_type_iterator GTI = gep_type_begin(GEP), GTE = gep_type_end(GEP);
1654 GTI != GTE; ++GTI) {
1655 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
1656 if (!OpC)
1657 return false;
1658 if (OpC->isZero()) continue;
1659
1660 // Handle a struct index, which adds its field offset to the pointer.
1661 if (StructType *STy = dyn_cast<StructType>(*GTI)) {
1662 unsigned ElementIdx = OpC->getZExtValue();
1663 const StructLayout *SL = TD.getStructLayout(STy);
1664 GEPOffset += APInt(Offset.getBitWidth(),
1665 SL->getElementOffset(ElementIdx));
1666 continue;
1667 }
1668
1669 APInt TypeSize(Offset.getBitWidth(),
1670 TD.getTypeAllocSize(GTI.getIndexedType()));
1671 if (VectorType *VTy = dyn_cast<VectorType>(*GTI)) {
1672 assert((VTy->getScalarSizeInBits() % 8) == 0 &&
1673 "vector element size is not a multiple of 8, cannot GEP over it");
1674 TypeSize = VTy->getScalarSizeInBits() / 8;
1675 }
1676
1677 GEPOffset += OpC->getValue().sextOrTrunc(Offset.getBitWidth()) * TypeSize;
1678 }
1679 Offset = GEPOffset;
1680 return true;
1681}
1682
1683/// \brief Build a GEP out of a base pointer and indices.
1684///
1685/// This will return the BasePtr if that is valid, or build a new GEP
1686/// instruction using the IRBuilder if GEP-ing is needed.
1687static Value *buildGEP(IRBuilder<> &IRB, Value *BasePtr,
1688 SmallVectorImpl<Value *> &Indices,
1689 const Twine &Prefix) {
1690 if (Indices.empty())
1691 return BasePtr;
1692
1693 // A single zero index is a no-op, so check for this and avoid building a GEP
1694 // in that case.
1695 if (Indices.size() == 1 && cast<ConstantInt>(Indices.back())->isZero())
1696 return BasePtr;
1697
1698 return IRB.CreateInBoundsGEP(BasePtr, Indices, Prefix + ".idx");
1699}
1700
1701/// \brief Get a natural GEP off of the BasePtr walking through Ty toward
1702/// TargetTy without changing the offset of the pointer.
1703///
1704/// This routine assumes we've already established a properly offset GEP with
1705/// Indices, and arrived at the Ty type. The goal is to continue to GEP with
1706/// zero-indices down through type layers until we find one the same as
1707/// TargetTy. If we can't find one with the same type, we at least try to use
1708/// one with the same size. If none of that works, we just produce the GEP as
1709/// indicated by Indices to have the correct offset.
Micah Villmow3574eca2012-10-08 16:38:25 +00001710static Value *getNaturalGEPWithType(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001711 Value *BasePtr, Type *Ty, Type *TargetTy,
1712 SmallVectorImpl<Value *> &Indices,
1713 const Twine &Prefix) {
1714 if (Ty == TargetTy)
1715 return buildGEP(IRB, BasePtr, Indices, Prefix);
1716
1717 // See if we can descend into a struct and locate a field with the correct
1718 // type.
1719 unsigned NumLayers = 0;
1720 Type *ElementTy = Ty;
1721 do {
1722 if (ElementTy->isPointerTy())
1723 break;
1724 if (SequentialType *SeqTy = dyn_cast<SequentialType>(ElementTy)) {
1725 ElementTy = SeqTy->getElementType();
Chandler Carruth020d9d52012-10-17 07:22:16 +00001726 // Note that we use the default address space as this index is over an
1727 // array or a vector, not a pointer.
1728 Indices.push_back(IRB.getInt(APInt(TD.getPointerSizeInBits(0), 0)));
Chandler Carruth713aa942012-09-14 09:22:59 +00001729 } else if (StructType *STy = dyn_cast<StructType>(ElementTy)) {
Chandler Carruth2fdb25b2012-10-09 01:58:35 +00001730 if (STy->element_begin() == STy->element_end())
1731 break; // Nothing left to descend into.
Chandler Carruth713aa942012-09-14 09:22:59 +00001732 ElementTy = *STy->element_begin();
1733 Indices.push_back(IRB.getInt32(0));
1734 } else {
1735 break;
1736 }
1737 ++NumLayers;
1738 } while (ElementTy != TargetTy);
1739 if (ElementTy != TargetTy)
1740 Indices.erase(Indices.end() - NumLayers, Indices.end());
1741
1742 return buildGEP(IRB, BasePtr, Indices, Prefix);
1743}
1744
1745/// \brief Recursively compute indices for a natural GEP.
1746///
1747/// This is the recursive step for getNaturalGEPWithOffset that walks down the
1748/// element types adding appropriate indices for the GEP.
Micah Villmow3574eca2012-10-08 16:38:25 +00001749static Value *getNaturalGEPRecursively(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001750 Value *Ptr, Type *Ty, APInt &Offset,
1751 Type *TargetTy,
1752 SmallVectorImpl<Value *> &Indices,
1753 const Twine &Prefix) {
1754 if (Offset == 0)
1755 return getNaturalGEPWithType(IRB, TD, Ptr, Ty, TargetTy, Indices, Prefix);
1756
1757 // We can't recurse through pointer types.
1758 if (Ty->isPointerTy())
1759 return 0;
1760
Chandler Carruth8ed1ed82012-09-14 10:30:40 +00001761 // We try to analyze GEPs over vectors here, but note that these GEPs are
1762 // extremely poorly defined currently. The long-term goal is to remove GEPing
1763 // over a vector from the IR completely.
Chandler Carruth713aa942012-09-14 09:22:59 +00001764 if (VectorType *VecTy = dyn_cast<VectorType>(Ty)) {
1765 unsigned ElementSizeInBits = VecTy->getScalarSizeInBits();
1766 if (ElementSizeInBits % 8)
Chandler Carruth8ed1ed82012-09-14 10:30:40 +00001767 return 0; // GEPs over non-multiple of 8 size vector elements are invalid.
Chandler Carruth713aa942012-09-14 09:22:59 +00001768 APInt ElementSize(Offset.getBitWidth(), ElementSizeInBits / 8);
Chandler Carruth02bf98a2012-10-17 09:23:48 +00001769 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth713aa942012-09-14 09:22:59 +00001770 if (NumSkippedElements.ugt(VecTy->getNumElements()))
1771 return 0;
1772 Offset -= NumSkippedElements * ElementSize;
1773 Indices.push_back(IRB.getInt(NumSkippedElements));
1774 return getNaturalGEPRecursively(IRB, TD, Ptr, VecTy->getElementType(),
1775 Offset, TargetTy, Indices, Prefix);
1776 }
1777
1778 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
1779 Type *ElementTy = ArrTy->getElementType();
1780 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
Chandler Carruth02bf98a2012-10-17 09:23:48 +00001781 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth713aa942012-09-14 09:22:59 +00001782 if (NumSkippedElements.ugt(ArrTy->getNumElements()))
1783 return 0;
1784
1785 Offset -= NumSkippedElements * ElementSize;
1786 Indices.push_back(IRB.getInt(NumSkippedElements));
1787 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1788 Indices, Prefix);
1789 }
1790
1791 StructType *STy = dyn_cast<StructType>(Ty);
1792 if (!STy)
1793 return 0;
1794
1795 const StructLayout *SL = TD.getStructLayout(STy);
1796 uint64_t StructOffset = Offset.getZExtValue();
Chandler Carruthad41dcf2012-09-14 10:30:42 +00001797 if (StructOffset >= SL->getSizeInBytes())
Chandler Carruth713aa942012-09-14 09:22:59 +00001798 return 0;
1799 unsigned Index = SL->getElementContainingOffset(StructOffset);
1800 Offset -= APInt(Offset.getBitWidth(), SL->getElementOffset(Index));
1801 Type *ElementTy = STy->getElementType(Index);
1802 if (Offset.uge(TD.getTypeAllocSize(ElementTy)))
1803 return 0; // The offset points into alignment padding.
1804
1805 Indices.push_back(IRB.getInt32(Index));
1806 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1807 Indices, Prefix);
1808}
1809
1810/// \brief Get a natural GEP from a base pointer to a particular offset and
1811/// resulting in a particular type.
1812///
1813/// The goal is to produce a "natural" looking GEP that works with the existing
1814/// composite types to arrive at the appropriate offset and element type for
1815/// a pointer. TargetTy is the element type the returned GEP should point-to if
1816/// possible. We recurse by decreasing Offset, adding the appropriate index to
1817/// Indices, and setting Ty to the result subtype.
1818///
Chandler Carruth7f5bede2012-09-14 10:18:49 +00001819/// If no natural GEP can be constructed, this function returns null.
Micah Villmow3574eca2012-10-08 16:38:25 +00001820static Value *getNaturalGEPWithOffset(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001821 Value *Ptr, APInt Offset, Type *TargetTy,
1822 SmallVectorImpl<Value *> &Indices,
1823 const Twine &Prefix) {
1824 PointerType *Ty = cast<PointerType>(Ptr->getType());
1825
1826 // Don't consider any GEPs through an i8* as natural unless the TargetTy is
1827 // an i8.
1828 if (Ty == IRB.getInt8PtrTy() && TargetTy->isIntegerTy(8))
1829 return 0;
1830
1831 Type *ElementTy = Ty->getElementType();
Chandler Carruth38f35fd2012-09-18 22:37:19 +00001832 if (!ElementTy->isSized())
1833 return 0; // We can't GEP through an unsized element.
Chandler Carruth713aa942012-09-14 09:22:59 +00001834 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
1835 if (ElementSize == 0)
1836 return 0; // Zero-length arrays can't help us build a natural GEP.
Chandler Carruth02bf98a2012-10-17 09:23:48 +00001837 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth713aa942012-09-14 09:22:59 +00001838
1839 Offset -= NumSkippedElements * ElementSize;
1840 Indices.push_back(IRB.getInt(NumSkippedElements));
1841 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1842 Indices, Prefix);
1843}
1844
1845/// \brief Compute an adjusted pointer from Ptr by Offset bytes where the
1846/// resulting pointer has PointerTy.
1847///
1848/// This tries very hard to compute a "natural" GEP which arrives at the offset
1849/// and produces the pointer type desired. Where it cannot, it will try to use
1850/// the natural GEP to arrive at the offset and bitcast to the type. Where that
1851/// fails, it will try to use an existing i8* and GEP to the byte offset and
1852/// bitcast to the type.
1853///
1854/// The strategy for finding the more natural GEPs is to peel off layers of the
1855/// pointer, walking back through bit casts and GEPs, searching for a base
1856/// pointer from which we can compute a natural GEP with the desired
1857/// properities. The algorithm tries to fold as many constant indices into
1858/// a single GEP as possible, thus making each GEP more independent of the
1859/// surrounding code.
Micah Villmow3574eca2012-10-08 16:38:25 +00001860static Value *getAdjustedPtr(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00001861 Value *Ptr, APInt Offset, Type *PointerTy,
1862 const Twine &Prefix) {
1863 // Even though we don't look through PHI nodes, we could be called on an
1864 // instruction in an unreachable block, which may be on a cycle.
1865 SmallPtrSet<Value *, 4> Visited;
1866 Visited.insert(Ptr);
1867 SmallVector<Value *, 4> Indices;
1868
1869 // We may end up computing an offset pointer that has the wrong type. If we
1870 // never are able to compute one directly that has the correct type, we'll
1871 // fall back to it, so keep it around here.
1872 Value *OffsetPtr = 0;
1873
1874 // Remember any i8 pointer we come across to re-use if we need to do a raw
1875 // byte offset.
1876 Value *Int8Ptr = 0;
1877 APInt Int8PtrOffset(Offset.getBitWidth(), 0);
1878
1879 Type *TargetTy = PointerTy->getPointerElementType();
1880
1881 do {
1882 // First fold any existing GEPs into the offset.
1883 while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
1884 APInt GEPOffset(Offset.getBitWidth(), 0);
1885 if (!accumulateGEPOffsets(TD, *GEP, GEPOffset))
1886 break;
1887 Offset += GEPOffset;
1888 Ptr = GEP->getPointerOperand();
1889 if (!Visited.insert(Ptr))
1890 break;
1891 }
1892
1893 // See if we can perform a natural GEP here.
1894 Indices.clear();
1895 if (Value *P = getNaturalGEPWithOffset(IRB, TD, Ptr, Offset, TargetTy,
1896 Indices, Prefix)) {
1897 if (P->getType() == PointerTy) {
1898 // Zap any offset pointer that we ended up computing in previous rounds.
1899 if (OffsetPtr && OffsetPtr->use_empty())
1900 if (Instruction *I = dyn_cast<Instruction>(OffsetPtr))
1901 I->eraseFromParent();
1902 return P;
1903 }
1904 if (!OffsetPtr) {
1905 OffsetPtr = P;
1906 }
1907 }
1908
1909 // Stash this pointer if we've found an i8*.
1910 if (Ptr->getType()->isIntegerTy(8)) {
1911 Int8Ptr = Ptr;
1912 Int8PtrOffset = Offset;
1913 }
1914
1915 // Peel off a layer of the pointer and update the offset appropriately.
1916 if (Operator::getOpcode(Ptr) == Instruction::BitCast) {
1917 Ptr = cast<Operator>(Ptr)->getOperand(0);
1918 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(Ptr)) {
1919 if (GA->mayBeOverridden())
1920 break;
1921 Ptr = GA->getAliasee();
1922 } else {
1923 break;
1924 }
1925 assert(Ptr->getType()->isPointerTy() && "Unexpected operand type!");
1926 } while (Visited.insert(Ptr));
1927
1928 if (!OffsetPtr) {
1929 if (!Int8Ptr) {
1930 Int8Ptr = IRB.CreateBitCast(Ptr, IRB.getInt8PtrTy(),
1931 Prefix + ".raw_cast");
1932 Int8PtrOffset = Offset;
1933 }
1934
1935 OffsetPtr = Int8PtrOffset == 0 ? Int8Ptr :
1936 IRB.CreateInBoundsGEP(Int8Ptr, IRB.getInt(Int8PtrOffset),
1937 Prefix + ".raw_idx");
1938 }
1939 Ptr = OffsetPtr;
1940
1941 // On the off chance we were targeting i8*, guard the bitcast here.
1942 if (Ptr->getType() != PointerTy)
1943 Ptr = IRB.CreateBitCast(Ptr, PointerTy, Prefix + ".cast");
1944
1945 return Ptr;
1946}
1947
Chandler Carruth11cb6ba2012-10-15 08:40:22 +00001948/// \brief Test whether we can convert a value from the old to the new type.
1949///
1950/// This predicate should be used to guard calls to convertValue in order to
1951/// ensure that we only try to convert viable values. The strategy is that we
1952/// will peel off single element struct and array wrappings to get to an
1953/// underlying value, and convert that value.
1954static bool canConvertValue(const DataLayout &DL, Type *OldTy, Type *NewTy) {
1955 if (OldTy == NewTy)
1956 return true;
1957 if (DL.getTypeSizeInBits(NewTy) != DL.getTypeSizeInBits(OldTy))
1958 return false;
1959 if (!NewTy->isSingleValueType() || !OldTy->isSingleValueType())
1960 return false;
1961
1962 if (NewTy->isPointerTy() || OldTy->isPointerTy()) {
1963 if (NewTy->isPointerTy() && OldTy->isPointerTy())
1964 return true;
1965 if (NewTy->isIntegerTy() || OldTy->isIntegerTy())
1966 return true;
1967 return false;
1968 }
1969
1970 return true;
1971}
1972
1973/// \brief Generic routine to convert an SSA value to a value of a different
1974/// type.
1975///
1976/// This will try various different casting techniques, such as bitcasts,
1977/// inttoptr, and ptrtoint casts. Use the \c canConvertValue predicate to test
1978/// two types for viability with this routine.
1979static Value *convertValue(const DataLayout &DL, IRBuilder<> &IRB, Value *V,
1980 Type *Ty) {
1981 assert(canConvertValue(DL, V->getType(), Ty) &&
1982 "Value not convertable to type");
1983 if (V->getType() == Ty)
1984 return V;
1985 if (V->getType()->isIntegerTy() && Ty->isPointerTy())
1986 return IRB.CreateIntToPtr(V, Ty);
1987 if (V->getType()->isPointerTy() && Ty->isIntegerTy())
1988 return IRB.CreatePtrToInt(V, Ty);
1989
1990 return IRB.CreateBitCast(V, Ty);
1991}
1992
Chandler Carruth713aa942012-09-14 09:22:59 +00001993/// \brief Test whether the given alloca partition can be promoted to a vector.
1994///
1995/// This is a quick test to check whether we can rewrite a particular alloca
1996/// partition (and its newly formed alloca) into a vector alloca with only
1997/// whole-vector loads and stores such that it could be promoted to a vector
1998/// SSA value. We only can ensure this for a limited set of operations, and we
1999/// don't want to do the rewrites unless we are confident that the result will
2000/// be promotable, so we have an early test here.
Micah Villmow3574eca2012-10-08 16:38:25 +00002001static bool isVectorPromotionViable(const DataLayout &TD,
Chandler Carruth713aa942012-09-14 09:22:59 +00002002 Type *AllocaTy,
2003 AllocaPartitioning &P,
2004 uint64_t PartitionBeginOffset,
2005 uint64_t PartitionEndOffset,
2006 AllocaPartitioning::const_use_iterator I,
2007 AllocaPartitioning::const_use_iterator E) {
2008 VectorType *Ty = dyn_cast<VectorType>(AllocaTy);
2009 if (!Ty)
2010 return false;
2011
2012 uint64_t VecSize = TD.getTypeSizeInBits(Ty);
2013 uint64_t ElementSize = Ty->getScalarSizeInBits();
2014
2015 // While the definition of LLVM vectors is bitpacked, we don't support sizes
2016 // that aren't byte sized.
2017 if (ElementSize % 8)
2018 return false;
2019 assert((VecSize % 8) == 0 && "vector size not a multiple of element size?");
2020 VecSize /= 8;
2021 ElementSize /= 8;
2022
2023 for (; I != E; ++I) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00002024 if (!I->U)
2025 continue; // Skip dead use.
2026
Chandler Carruth713aa942012-09-14 09:22:59 +00002027 uint64_t BeginOffset = I->BeginOffset - PartitionBeginOffset;
2028 uint64_t BeginIndex = BeginOffset / ElementSize;
2029 if (BeginIndex * ElementSize != BeginOffset ||
2030 BeginIndex >= Ty->getNumElements())
2031 return false;
2032 uint64_t EndOffset = I->EndOffset - PartitionBeginOffset;
2033 uint64_t EndIndex = EndOffset / ElementSize;
2034 if (EndIndex * ElementSize != EndOffset ||
2035 EndIndex > Ty->getNumElements())
2036 return false;
2037
Chandler Carruth07df7652012-11-21 08:16:30 +00002038 assert(EndIndex > BeginIndex && "Empty vector!");
2039 uint64_t NumElements = EndIndex - BeginIndex;
2040 Type *PartitionTy
2041 = (NumElements == 1) ? Ty->getElementType()
2042 : VectorType::get(Ty->getElementType(), NumElements);
Chandler Carruth713aa942012-09-14 09:22:59 +00002043
Chandler Carruth77c12702012-10-01 01:49:22 +00002044 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002045 if (MI->isVolatile())
2046 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002047 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002048 const AllocaPartitioning::MemTransferOffsets &MTO
2049 = P.getMemTransferOffsets(*MTI);
2050 if (!MTO.IsSplittable)
2051 return false;
2052 }
Chandler Carruth77c12702012-10-01 01:49:22 +00002053 } else if (I->U->get()->getType()->getPointerElementType()->isStructTy()) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002054 // Disable vector promotion when there are loads or stores of an FCA.
2055 return false;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002056 } else if (LoadInst *LI = dyn_cast<LoadInst>(I->U->getUser())) {
2057 if (LI->isVolatile())
2058 return false;
Chandler Carruth07df7652012-11-21 08:16:30 +00002059 if (!canConvertValue(TD, PartitionTy, LI->getType()))
2060 return false;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002061 } else if (StoreInst *SI = dyn_cast<StoreInst>(I->U->getUser())) {
2062 if (SI->isVolatile())
2063 return false;
Chandler Carruth07df7652012-11-21 08:16:30 +00002064 if (!canConvertValue(TD, SI->getValueOperand()->getType(), PartitionTy))
2065 return false;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002066 } else {
Chandler Carruth713aa942012-09-14 09:22:59 +00002067 return false;
2068 }
2069 }
2070 return true;
2071}
2072
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002073/// \brief Test whether the given alloca partition's integer operations can be
2074/// widened to promotable ones.
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002075///
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002076/// This is a quick test to check whether we can rewrite the integer loads and
2077/// stores to a particular alloca into wider loads and stores and be able to
2078/// promote the resulting alloca.
2079static bool isIntegerWideningViable(const DataLayout &TD,
2080 Type *AllocaTy,
2081 uint64_t AllocBeginOffset,
2082 AllocaPartitioning &P,
2083 AllocaPartitioning::const_use_iterator I,
2084 AllocaPartitioning::const_use_iterator E) {
2085 uint64_t SizeInBits = TD.getTypeSizeInBits(AllocaTy);
Benjamin Kramer5bded752012-12-01 11:53:32 +00002086 // Don't create integer types larger than the maximum bitwidth.
2087 if (SizeInBits > IntegerType::MAX_INT_BITS)
2088 return false;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002089
2090 // Don't try to handle allocas with bit-padding.
2091 if (SizeInBits != TD.getTypeStoreSizeInBits(AllocaTy))
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002092 return false;
2093
Chandler Carrutha2b88162012-10-25 04:37:07 +00002094 // We need to ensure that an integer type with the appropriate bitwidth can
2095 // be converted to the alloca type, whatever that is. We don't want to force
2096 // the alloca itself to have an integer type if there is a more suitable one.
2097 Type *IntTy = Type::getIntNTy(AllocaTy->getContext(), SizeInBits);
2098 if (!canConvertValue(TD, AllocaTy, IntTy) ||
2099 !canConvertValue(TD, IntTy, AllocaTy))
2100 return false;
2101
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002102 uint64_t Size = TD.getTypeStoreSize(AllocaTy);
2103
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002104 // Check the uses to ensure the uses are (likely) promoteable integer uses.
2105 // Also ensure that the alloca has a covering load or store. We don't want
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002106 // to widen the integer operotains only to fail to promote due to some other
2107 // unsplittable entry (which we may make splittable later).
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002108 bool WholeAllocaOp = false;
2109 for (; I != E; ++I) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00002110 if (!I->U)
2111 continue; // Skip dead use.
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002112
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002113 uint64_t RelBegin = I->BeginOffset - AllocBeginOffset;
2114 uint64_t RelEnd = I->EndOffset - AllocBeginOffset;
2115
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002116 // We can't reasonably handle cases where the load or store extends past
2117 // the end of the aloca's type and into its padding.
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002118 if (RelEnd > Size)
Chandler Carruthaa3cb332012-10-04 10:39:28 +00002119 return false;
2120
Chandler Carruth77c12702012-10-01 01:49:22 +00002121 if (LoadInst *LI = dyn_cast<LoadInst>(I->U->getUser())) {
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002122 if (LI->isVolatile())
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002123 return false;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002124 if (RelBegin == 0 && RelEnd == Size)
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002125 WholeAllocaOp = true;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002126 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType())) {
Chandler Carruth3d9afa82012-12-10 00:54:45 +00002127 if (ITy->getBitWidth() < TD.getTypeStoreSizeInBits(ITy))
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002128 return false;
2129 continue;
2130 }
2131 // Non-integer loads need to be convertible from the alloca type so that
2132 // they are promotable.
2133 if (RelBegin != 0 || RelEnd != Size ||
2134 !canConvertValue(TD, AllocaTy, LI->getType()))
2135 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002136 } else if (StoreInst *SI = dyn_cast<StoreInst>(I->U->getUser())) {
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002137 Type *ValueTy = SI->getValueOperand()->getType();
2138 if (SI->isVolatile())
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002139 return false;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002140 if (RelBegin == 0 && RelEnd == Size)
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002141 WholeAllocaOp = true;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002142 if (IntegerType *ITy = dyn_cast<IntegerType>(ValueTy)) {
Chandler Carruth3d9afa82012-12-10 00:54:45 +00002143 if (ITy->getBitWidth() < TD.getTypeStoreSizeInBits(ITy))
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002144 return false;
2145 continue;
2146 }
2147 // Non-integer stores need to be convertible to the alloca type so that
2148 // they are promotable.
2149 if (RelBegin != 0 || RelEnd != Size ||
2150 !canConvertValue(TD, ValueTy, AllocaTy))
2151 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002152 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002153 if (MI->isVolatile())
2154 return false;
Chandler Carruth77c12702012-10-01 01:49:22 +00002155 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002156 const AllocaPartitioning::MemTransferOffsets &MTO
2157 = P.getMemTransferOffsets(*MTI);
2158 if (!MTO.IsSplittable)
2159 return false;
2160 }
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002161 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I->U->getUser())) {
2162 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
2163 II->getIntrinsicID() != Intrinsic::lifetime_end)
2164 return false;
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002165 } else {
2166 return false;
2167 }
2168 }
2169 return WholeAllocaOp;
2170}
2171
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002172static Value *extractInteger(const DataLayout &DL, IRBuilder<> &IRB, Value *V,
2173 IntegerType *Ty, uint64_t Offset,
2174 const Twine &Name) {
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002175 DEBUG(dbgs() << " start: " << *V << "\n");
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002176 IntegerType *IntTy = cast<IntegerType>(V->getType());
2177 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
2178 "Element extends past full value");
2179 uint64_t ShAmt = 8*Offset;
2180 if (DL.isBigEndian())
2181 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002182 if (ShAmt) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002183 V = IRB.CreateLShr(V, ShAmt, Name + ".shift");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002184 DEBUG(dbgs() << " shifted: " << *V << "\n");
2185 }
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002186 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
2187 "Cannot extract to a larger integer!");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002188 if (Ty != IntTy) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002189 V = IRB.CreateTrunc(V, Ty, Name + ".trunc");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002190 DEBUG(dbgs() << " trunced: " << *V << "\n");
2191 }
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002192 return V;
2193}
2194
2195static Value *insertInteger(const DataLayout &DL, IRBuilder<> &IRB, Value *Old,
2196 Value *V, uint64_t Offset, const Twine &Name) {
2197 IntegerType *IntTy = cast<IntegerType>(Old->getType());
2198 IntegerType *Ty = cast<IntegerType>(V->getType());
2199 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
2200 "Cannot insert a larger integer!");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002201 DEBUG(dbgs() << " start: " << *V << "\n");
2202 if (Ty != IntTy) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002203 V = IRB.CreateZExt(V, IntTy, Name + ".ext");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002204 DEBUG(dbgs() << " extended: " << *V << "\n");
2205 }
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002206 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
2207 "Element store outside of alloca store");
2208 uint64_t ShAmt = 8*Offset;
2209 if (DL.isBigEndian())
2210 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002211 if (ShAmt) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002212 V = IRB.CreateShl(V, ShAmt, Name + ".shift");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002213 DEBUG(dbgs() << " shifted: " << *V << "\n");
2214 }
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002215
2216 if (ShAmt || Ty->getBitWidth() < IntTy->getBitWidth()) {
2217 APInt Mask = ~Ty->getMask().zext(IntTy->getBitWidth()).shl(ShAmt);
2218 Old = IRB.CreateAnd(Old, Mask, Name + ".mask");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002219 DEBUG(dbgs() << " masked: " << *Old << "\n");
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002220 V = IRB.CreateOr(Old, V, Name + ".insert");
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002221 DEBUG(dbgs() << " inserted: " << *V << "\n");
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002222 }
2223 return V;
2224}
2225
Chandler Carruth5c531eb2012-12-17 13:07:30 +00002226static Value *extractVector(IRBuilder<> &IRB, Value *V,
2227 unsigned BeginIndex, unsigned EndIndex,
2228 const Twine &Name) {
2229 VectorType *VecTy = cast<VectorType>(V->getType());
2230 unsigned NumElements = EndIndex - BeginIndex;
2231 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2232
2233 if (NumElements == VecTy->getNumElements())
2234 return V;
2235
2236 if (NumElements == 1) {
2237 V = IRB.CreateExtractElement(V, IRB.getInt32(BeginIndex),
2238 Name + ".extract");
2239 DEBUG(dbgs() << " extract: " << *V << "\n");
2240 return V;
2241 }
2242
2243 SmallVector<Constant*, 8> Mask;
2244 Mask.reserve(NumElements);
2245 for (unsigned i = BeginIndex; i != EndIndex; ++i)
2246 Mask.push_back(IRB.getInt32(i));
2247 V = IRB.CreateShuffleVector(V, UndefValue::get(V->getType()),
2248 ConstantVector::get(Mask),
2249 Name + ".extract");
2250 DEBUG(dbgs() << " shuffle: " << *V << "\n");
2251 return V;
2252}
2253
Chandler Carruth713aa942012-09-14 09:22:59 +00002254namespace {
2255/// \brief Visitor to rewrite instructions using a partition of an alloca to
2256/// use a new alloca.
2257///
2258/// Also implements the rewriting to vector-based accesses when the partition
2259/// passes the isVectorPromotionViable predicate. Most of the rewriting logic
2260/// lives here.
2261class AllocaPartitionRewriter : public InstVisitor<AllocaPartitionRewriter,
2262 bool> {
2263 // Befriend the base class so it can delegate to private visit methods.
2264 friend class llvm::InstVisitor<AllocaPartitionRewriter, bool>;
2265
Micah Villmow3574eca2012-10-08 16:38:25 +00002266 const DataLayout &TD;
Chandler Carruth713aa942012-09-14 09:22:59 +00002267 AllocaPartitioning &P;
2268 SROA &Pass;
2269 AllocaInst &OldAI, &NewAI;
2270 const uint64_t NewAllocaBeginOffset, NewAllocaEndOffset;
Chandler Carruth520eeae2012-10-13 02:41:05 +00002271 Type *NewAllocaTy;
Chandler Carruth713aa942012-09-14 09:22:59 +00002272
2273 // If we are rewriting an alloca partition which can be written as pure
2274 // vector operations, we stash extra information here. When VecTy is
2275 // non-null, we have some strict guarantees about the rewriten alloca:
2276 // - The new alloca is exactly the size of the vector type here.
2277 // - The accesses all either map to the entire vector or to a single
2278 // element.
2279 // - The set of accessing instructions is only one of those handled above
2280 // in isVectorPromotionViable. Generally these are the same access kinds
2281 // which are promotable via mem2reg.
2282 VectorType *VecTy;
2283 Type *ElementTy;
2284 uint64_t ElementSize;
2285
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002286 // This is a convenience and flag variable that will be null unless the new
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002287 // alloca's integer operations should be widened to this integer type due to
2288 // passing isIntegerWideningViable above. If it is non-null, the desired
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002289 // integer type will be stored here for easy access during rewriting.
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002290 IntegerType *IntTy;
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002291
Chandler Carruth713aa942012-09-14 09:22:59 +00002292 // The offset of the partition user currently being rewritten.
2293 uint64_t BeginOffset, EndOffset;
Chandler Carruth77c12702012-10-01 01:49:22 +00002294 Use *OldUse;
Chandler Carruth713aa942012-09-14 09:22:59 +00002295 Instruction *OldPtr;
2296
2297 // The name prefix to use when rewriting instructions for this alloca.
2298 std::string NamePrefix;
2299
2300public:
Micah Villmow3574eca2012-10-08 16:38:25 +00002301 AllocaPartitionRewriter(const DataLayout &TD, AllocaPartitioning &P,
Chandler Carruth713aa942012-09-14 09:22:59 +00002302 AllocaPartitioning::iterator PI,
2303 SROA &Pass, AllocaInst &OldAI, AllocaInst &NewAI,
2304 uint64_t NewBeginOffset, uint64_t NewEndOffset)
2305 : TD(TD), P(P), Pass(Pass),
2306 OldAI(OldAI), NewAI(NewAI),
2307 NewAllocaBeginOffset(NewBeginOffset),
2308 NewAllocaEndOffset(NewEndOffset),
Chandler Carruth520eeae2012-10-13 02:41:05 +00002309 NewAllocaTy(NewAI.getAllocatedType()),
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002310 VecTy(), ElementTy(), ElementSize(), IntTy(),
Chandler Carruth713aa942012-09-14 09:22:59 +00002311 BeginOffset(), EndOffset() {
2312 }
2313
2314 /// \brief Visit the users of the alloca partition and rewrite them.
2315 bool visitUsers(AllocaPartitioning::const_use_iterator I,
2316 AllocaPartitioning::const_use_iterator E) {
2317 if (isVectorPromotionViable(TD, NewAI.getAllocatedType(), P,
2318 NewAllocaBeginOffset, NewAllocaEndOffset,
2319 I, E)) {
2320 ++NumVectorized;
2321 VecTy = cast<VectorType>(NewAI.getAllocatedType());
2322 ElementTy = VecTy->getElementType();
2323 assert((VecTy->getScalarSizeInBits() % 8) == 0 &&
2324 "Only multiple-of-8 sized vector elements are viable");
2325 ElementSize = VecTy->getScalarSizeInBits() / 8;
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002326 } else if (isIntegerWideningViable(TD, NewAI.getAllocatedType(),
2327 NewAllocaBeginOffset, P, I, E)) {
2328 IntTy = Type::getIntNTy(NewAI.getContext(),
2329 TD.getTypeSizeInBits(NewAI.getAllocatedType()));
Chandler Carruth713aa942012-09-14 09:22:59 +00002330 }
2331 bool CanSROA = true;
2332 for (; I != E; ++I) {
Chandler Carruthfdb15852012-10-02 18:57:13 +00002333 if (!I->U)
2334 continue; // Skip dead uses.
Chandler Carruth713aa942012-09-14 09:22:59 +00002335 BeginOffset = I->BeginOffset;
2336 EndOffset = I->EndOffset;
Chandler Carruth77c12702012-10-01 01:49:22 +00002337 OldUse = I->U;
2338 OldPtr = cast<Instruction>(I->U->get());
Chandler Carruth713aa942012-09-14 09:22:59 +00002339 NamePrefix = (Twine(NewAI.getName()) + "." + Twine(BeginOffset)).str();
Chandler Carruth77c12702012-10-01 01:49:22 +00002340 CanSROA &= visit(cast<Instruction>(I->U->getUser()));
Chandler Carruth713aa942012-09-14 09:22:59 +00002341 }
2342 if (VecTy) {
2343 assert(CanSROA);
2344 VecTy = 0;
2345 ElementTy = 0;
2346 ElementSize = 0;
2347 }
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002348 if (IntTy) {
2349 assert(CanSROA);
2350 IntTy = 0;
2351 }
Chandler Carruth713aa942012-09-14 09:22:59 +00002352 return CanSROA;
2353 }
2354
2355private:
2356 // Every instruction which can end up as a user must have a rewrite rule.
2357 bool visitInstruction(Instruction &I) {
2358 DEBUG(dbgs() << " !!!! Cannot rewrite: " << I << "\n");
2359 llvm_unreachable("No rewrite rule for this instruction!");
2360 }
2361
2362 Twine getName(const Twine &Suffix) {
2363 return NamePrefix + Suffix;
2364 }
2365
2366 Value *getAdjustedAllocaPtr(IRBuilder<> &IRB, Type *PointerTy) {
2367 assert(BeginOffset >= NewAllocaBeginOffset);
Chandler Carruth426c2bf2012-11-01 09:14:31 +00002368 APInt Offset(TD.getPointerSizeInBits(), BeginOffset - NewAllocaBeginOffset);
Chandler Carruth713aa942012-09-14 09:22:59 +00002369 return getAdjustedPtr(IRB, TD, &NewAI, Offset, PointerTy, getName(""));
2370 }
2371
Chandler Carruthf710fb12012-10-03 08:14:02 +00002372 /// \brief Compute suitable alignment to access an offset into the new alloca.
2373 unsigned getOffsetAlign(uint64_t Offset) {
Chandler Carruth673850a2012-10-01 12:16:54 +00002374 unsigned NewAIAlign = NewAI.getAlignment();
2375 if (!NewAIAlign)
2376 NewAIAlign = TD.getABITypeAlignment(NewAI.getAllocatedType());
2377 return MinAlign(NewAIAlign, Offset);
2378 }
Chandler Carruthf710fb12012-10-03 08:14:02 +00002379
2380 /// \brief Compute suitable alignment to access this partition of the new
2381 /// alloca.
2382 unsigned getPartitionAlign() {
2383 return getOffsetAlign(BeginOffset - NewAllocaBeginOffset);
Chandler Carruth673850a2012-10-01 12:16:54 +00002384 }
2385
Chandler Carruthf710fb12012-10-03 08:14:02 +00002386 /// \brief Compute suitable alignment to access a type at an offset of the
2387 /// new alloca.
2388 ///
2389 /// \returns zero if the type's ABI alignment is a suitable alignment,
2390 /// otherwise returns the maximal suitable alignment.
2391 unsigned getOffsetTypeAlign(Type *Ty, uint64_t Offset) {
2392 unsigned Align = getOffsetAlign(Offset);
2393 return Align == TD.getABITypeAlignment(Ty) ? 0 : Align;
2394 }
2395
2396 /// \brief Compute suitable alignment to access a type at the beginning of
2397 /// this partition of the new alloca.
2398 ///
2399 /// See \c getOffsetTypeAlign for details; this routine delegates to it.
2400 unsigned getPartitionTypeAlign(Type *Ty) {
2401 return getOffsetTypeAlign(Ty, BeginOffset - NewAllocaBeginOffset);
Chandler Carruth673850a2012-10-01 12:16:54 +00002402 }
2403
Chandler Carruth07df7652012-11-21 08:16:30 +00002404 unsigned getIndex(uint64_t Offset) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002405 assert(VecTy && "Can only call getIndex when rewriting a vector");
2406 uint64_t RelOffset = Offset - NewAllocaBeginOffset;
2407 assert(RelOffset / ElementSize < UINT32_MAX && "Index out of bounds");
2408 uint32_t Index = RelOffset / ElementSize;
2409 assert(Index * ElementSize == RelOffset);
Chandler Carruth07df7652012-11-21 08:16:30 +00002410 return Index;
Chandler Carruth713aa942012-09-14 09:22:59 +00002411 }
2412
2413 void deleteIfTriviallyDead(Value *V) {
2414 Instruction *I = cast<Instruction>(V);
2415 if (isInstructionTriviallyDead(I))
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002416 Pass.DeadInsts.insert(I);
Chandler Carruth713aa942012-09-14 09:22:59 +00002417 }
2418
Chandler Carruth8ab1efd2012-12-17 12:50:21 +00002419 Value *rewriteVectorizedLoadInst(IRBuilder<> &IRB) {
2420 unsigned BeginIndex = getIndex(BeginOffset);
2421 unsigned EndIndex = getIndex(EndOffset);
2422 assert(EndIndex > BeginIndex && "Empty vector!");
Chandler Carruth5c531eb2012-12-17 13:07:30 +00002423
2424 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2425 getName(".load"));
2426 return extractVector(IRB, V, BeginIndex, EndIndex, getName(".vec"));
Chandler Carruth8ab1efd2012-12-17 12:50:21 +00002427 }
2428
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002429 Value *rewriteIntegerLoad(IRBuilder<> &IRB, LoadInst &LI) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002430 assert(IntTy && "We cannot insert an integer to the alloca");
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002431 assert(!LI.isVolatile());
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002432 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2433 getName(".load"));
2434 V = convertValue(TD, IRB, V, IntTy);
2435 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2436 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002437 if (Offset > 0 || EndOffset < NewAllocaEndOffset)
2438 V = extractInteger(TD, IRB, V, cast<IntegerType>(LI.getType()), Offset,
2439 getName(".extract"));
2440 return V;
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002441 }
2442
Chandler Carruth713aa942012-09-14 09:22:59 +00002443 bool visitLoadInst(LoadInst &LI) {
2444 DEBUG(dbgs() << " original: " << LI << "\n");
2445 Value *OldOp = LI.getOperand(0);
2446 assert(OldOp == OldPtr);
2447 IRBuilder<> IRB(&LI);
2448
Chandler Carrutha2b88162012-10-25 04:37:07 +00002449 uint64_t Size = EndOffset - BeginOffset;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002450 bool IsSplitIntLoad = Size < TD.getTypeStoreSize(LI.getType());
Chandler Carruth17679292012-11-20 10:02:19 +00002451
2452 // If this memory access can be shown to *statically* extend outside the
2453 // bounds of the original allocation it's behavior is undefined. Rather
2454 // than trying to transform it, just replace it with undef.
2455 // FIXME: We should do something more clever for functions being
2456 // instrumented by asan.
2457 // FIXME: Eventually, once ASan and friends can flush out bugs here, this
2458 // should be transformed to a load of null making it unreachable.
2459 uint64_t OldAllocSize = TD.getTypeAllocSize(OldAI.getAllocatedType());
2460 if (TD.getTypeStoreSize(LI.getType()) > OldAllocSize) {
2461 LI.replaceAllUsesWith(UndefValue::get(LI.getType()));
2462 Pass.DeadInsts.insert(&LI);
2463 deleteIfTriviallyDead(OldOp);
2464 DEBUG(dbgs() << " to: undef!!\n");
2465 return true;
2466 }
2467
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002468 Type *TargetTy = IsSplitIntLoad ? Type::getIntNTy(LI.getContext(), Size * 8)
2469 : LI.getType();
2470 bool IsPtrAdjusted = false;
2471 Value *V;
2472 if (VecTy) {
Chandler Carruth8ab1efd2012-12-17 12:50:21 +00002473 V = rewriteVectorizedLoadInst(IRB);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002474 } else if (IntTy && LI.getType()->isIntegerTy()) {
2475 V = rewriteIntegerLoad(IRB, LI);
2476 } else if (BeginOffset == NewAllocaBeginOffset &&
2477 canConvertValue(TD, NewAllocaTy, LI.getType())) {
2478 V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2479 LI.isVolatile(), getName(".load"));
2480 } else {
2481 Type *LTy = TargetTy->getPointerTo();
2482 V = IRB.CreateAlignedLoad(getAdjustedAllocaPtr(IRB, LTy),
2483 getPartitionTypeAlign(TargetTy),
2484 LI.isVolatile(), getName(".load"));
2485 IsPtrAdjusted = true;
2486 }
2487 V = convertValue(TD, IRB, V, TargetTy);
2488
2489 if (IsSplitIntLoad) {
Chandler Carrutha2b88162012-10-25 04:37:07 +00002490 assert(!LI.isVolatile());
2491 assert(LI.getType()->isIntegerTy() &&
2492 "Only integer type loads and stores are split");
2493 assert(LI.getType()->getIntegerBitWidth() ==
2494 TD.getTypeStoreSizeInBits(LI.getType()) &&
2495 "Non-byte-multiple bit width");
2496 assert(LI.getType()->getIntegerBitWidth() ==
Chandler Carruth70dace32012-10-30 20:52:40 +00002497 TD.getTypeAllocSizeInBits(OldAI.getAllocatedType()) &&
Chandler Carrutha2b88162012-10-25 04:37:07 +00002498 "Only alloca-wide loads can be split and recomposed");
Chandler Carrutha2b88162012-10-25 04:37:07 +00002499 // Move the insertion point just past the load so that we can refer to it.
2500 IRB.SetInsertPoint(llvm::next(BasicBlock::iterator(&LI)));
Chandler Carrutha2b88162012-10-25 04:37:07 +00002501 // Create a placeholder value with the same type as LI to use as the
2502 // basis for the new value. This allows us to replace the uses of LI with
2503 // the computed value, and then replace the placeholder with LI, leaving
2504 // LI only used for this computation.
2505 Value *Placeholder
Jakub Staszak5801ff92012-11-01 01:10:43 +00002506 = new LoadInst(UndefValue::get(LI.getType()->getPointerTo()));
Chandler Carrutha2b88162012-10-25 04:37:07 +00002507 V = insertInteger(TD, IRB, Placeholder, V, BeginOffset,
2508 getName(".insert"));
2509 LI.replaceAllUsesWith(V);
2510 Placeholder->replaceAllUsesWith(&LI);
Jakub Staszak5801ff92012-11-01 01:10:43 +00002511 delete Placeholder;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002512 } else {
2513 LI.replaceAllUsesWith(V);
Chandler Carrutha2b88162012-10-25 04:37:07 +00002514 }
2515
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002516 Pass.DeadInsts.insert(&LI);
Chandler Carruth713aa942012-09-14 09:22:59 +00002517 deleteIfTriviallyDead(OldOp);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002518 DEBUG(dbgs() << " to: " << *V << "\n");
2519 return !LI.isVolatile() && !IsPtrAdjusted;
Chandler Carruth713aa942012-09-14 09:22:59 +00002520 }
2521
Chandler Carruthd6e43972012-12-17 04:07:35 +00002522 Value *insertVector(IRBuilder<> &IRB, Value *V,
2523 unsigned BeginIndex, unsigned EndIndex) {
2524 assert(VecTy && "Can only insert a vector into a vector alloca");
2525 unsigned NumElements = EndIndex - BeginIndex;
2526 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2527
2528 if (NumElements == VecTy->getNumElements())
2529 return convertValue(TD, IRB, V, VecTy);
2530
2531 LoadInst *LI = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2532 getName(".load"));
2533 if (NumElements == 1) {
2534 V = IRB.CreateInsertElement(LI, V, IRB.getInt32(BeginIndex),
2535 getName(".insert"));
2536 DEBUG(dbgs() << " insert: " << *V << "\n");
2537 return V;
2538 }
2539
2540 // When inserting a smaller vector into the larger to store, we first
2541 // use a shuffle vector to widen it with undef elements, and then
2542 // a second shuffle vector to select between the loaded vector and the
2543 // incoming vector.
2544 SmallVector<Constant*, 8> Mask;
2545 Mask.reserve(VecTy->getNumElements());
2546 for (unsigned i = 0; i != VecTy->getNumElements(); ++i)
2547 if (i >= BeginIndex && i < EndIndex)
2548 Mask.push_back(IRB.getInt32(i - BeginIndex));
2549 else
2550 Mask.push_back(UndefValue::get(IRB.getInt32Ty()));
2551 V = IRB.CreateShuffleVector(V, UndefValue::get(V->getType()),
2552 ConstantVector::get(Mask),
2553 getName(".expand"));
2554 DEBUG(dbgs() << " shuffle1: " << *V << "\n");
2555
2556 Mask.clear();
2557 for (unsigned i = 0; i != VecTy->getNumElements(); ++i)
2558 if (i >= BeginIndex && i < EndIndex)
2559 Mask.push_back(IRB.getInt32(i));
2560 else
2561 Mask.push_back(IRB.getInt32(i + VecTy->getNumElements()));
2562 V = IRB.CreateShuffleVector(V, LI, ConstantVector::get(Mask),
2563 getName("insert"));
2564 DEBUG(dbgs() << " shuffle2: " << *V << "\n");
2565 return V;
2566 }
2567
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002568 bool rewriteVectorizedStoreInst(IRBuilder<> &IRB, Value *V,
2569 StoreInst &SI, Value *OldOp) {
Chandler Carruth07df7652012-11-21 08:16:30 +00002570 unsigned BeginIndex = getIndex(BeginOffset);
2571 unsigned EndIndex = getIndex(EndOffset);
2572 assert(EndIndex > BeginIndex && "Empty vector!");
2573 unsigned NumElements = EndIndex - BeginIndex;
2574 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2575 Type *PartitionTy
2576 = (NumElements == 1) ? ElementTy
2577 : VectorType::get(ElementTy, NumElements);
2578 if (V->getType() != PartitionTy)
2579 V = convertValue(TD, IRB, V, PartitionTy);
Chandler Carruth07df7652012-11-21 08:16:30 +00002580
Chandler Carruthd6e43972012-12-17 04:07:35 +00002581 // Mix in the existing elements.
2582 V = insertVector(IRB, V, BeginIndex, EndIndex);
2583
Chandler Carruth81b001a2012-09-26 10:27:46 +00002584 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002585 Pass.DeadInsts.insert(&SI);
Chandler Carruth713aa942012-09-14 09:22:59 +00002586
2587 (void)Store;
2588 DEBUG(dbgs() << " to: " << *Store << "\n");
2589 return true;
2590 }
2591
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002592 bool rewriteIntegerStore(IRBuilder<> &IRB, Value *V, StoreInst &SI) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002593 assert(IntTy && "We cannot extract an integer from the alloca");
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002594 assert(!SI.isVolatile());
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002595 if (TD.getTypeSizeInBits(V->getType()) != IntTy->getBitWidth()) {
2596 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2597 getName(".oldload"));
2598 Old = convertValue(TD, IRB, Old, IntTy);
2599 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2600 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2601 V = insertInteger(TD, IRB, Old, SI.getValueOperand(), Offset,
2602 getName(".insert"));
2603 }
2604 V = convertValue(TD, IRB, V, NewAllocaTy);
2605 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002606 Pass.DeadInsts.insert(&SI);
Chandler Carruthbc4021f2012-09-24 00:34:20 +00002607 (void)Store;
2608 DEBUG(dbgs() << " to: " << *Store << "\n");
2609 return true;
2610 }
2611
Chandler Carruth713aa942012-09-14 09:22:59 +00002612 bool visitStoreInst(StoreInst &SI) {
2613 DEBUG(dbgs() << " original: " << SI << "\n");
2614 Value *OldOp = SI.getOperand(1);
2615 assert(OldOp == OldPtr);
2616 IRBuilder<> IRB(&SI);
2617
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002618 Value *V = SI.getValueOperand();
Chandler Carruth520eeae2012-10-13 02:41:05 +00002619
Chandler Carruthb2d98c22012-10-04 12:33:50 +00002620 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2621 // alloca that should be re-examined after promoting this alloca.
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002622 if (V->getType()->isPointerTy())
2623 if (AllocaInst *AI = dyn_cast<AllocaInst>(V->stripInBoundsOffsets()))
Chandler Carruthb2d98c22012-10-04 12:33:50 +00002624 Pass.PostPromotionWorklist.insert(AI);
2625
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002626 uint64_t Size = EndOffset - BeginOffset;
2627 if (Size < TD.getTypeStoreSize(V->getType())) {
2628 assert(!SI.isVolatile());
2629 assert(V->getType()->isIntegerTy() &&
2630 "Only integer type loads and stores are split");
2631 assert(V->getType()->getIntegerBitWidth() ==
2632 TD.getTypeStoreSizeInBits(V->getType()) &&
2633 "Non-byte-multiple bit width");
2634 assert(V->getType()->getIntegerBitWidth() ==
Chandler Carruth19820052012-12-15 09:26:06 +00002635 TD.getTypeAllocSizeInBits(OldAI.getAllocatedType()) &&
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002636 "Only alloca-wide stores can be split and recomposed");
2637 IntegerType *NarrowTy = Type::getIntNTy(SI.getContext(), Size * 8);
2638 V = extractInteger(TD, IRB, V, NarrowTy, BeginOffset,
2639 getName(".extract"));
Chandler Carruth520eeae2012-10-13 02:41:05 +00002640 }
2641
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002642 if (VecTy)
2643 return rewriteVectorizedStoreInst(IRB, V, SI, OldOp);
2644 if (IntTy && V->getType()->isIntegerTy())
2645 return rewriteIntegerStore(IRB, V, SI);
Chandler Carruth81ff90d2012-10-15 08:40:30 +00002646
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002647 StoreInst *NewSI;
2648 if (BeginOffset == NewAllocaBeginOffset &&
2649 canConvertValue(TD, V->getType(), NewAllocaTy)) {
2650 V = convertValue(TD, IRB, V, NewAllocaTy);
2651 NewSI = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
2652 SI.isVolatile());
2653 } else {
2654 Value *NewPtr = getAdjustedAllocaPtr(IRB, V->getType()->getPointerTo());
2655 NewSI = IRB.CreateAlignedStore(V, NewPtr,
2656 getPartitionTypeAlign(V->getType()),
2657 SI.isVolatile());
2658 }
2659 (void)NewSI;
2660 Pass.DeadInsts.insert(&SI);
Chandler Carruth713aa942012-09-14 09:22:59 +00002661 deleteIfTriviallyDead(OldOp);
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002662
2663 DEBUG(dbgs() << " to: " << *NewSI << "\n");
2664 return NewSI->getPointerOperand() == &NewAI && !SI.isVolatile();
Chandler Carruth713aa942012-09-14 09:22:59 +00002665 }
2666
Chandler Carruth225d25d2012-12-17 04:07:30 +00002667 /// \brief Compute an integer value from splatting an i8 across the given
2668 /// number of bytes.
2669 ///
2670 /// Note that this routine assumes an i8 is a byte. If that isn't true, don't
2671 /// call this routine.
2672 /// FIXME: Heed the abvice above.
2673 ///
2674 /// \param V The i8 value to splat.
2675 /// \param Size The number of bytes in the output (assuming i8 is one byte)
2676 Value *getIntegerSplat(IRBuilder<> &IRB, Value *V, unsigned Size) {
2677 assert(Size > 0 && "Expected a positive number of bytes.");
2678 IntegerType *VTy = cast<IntegerType>(V->getType());
2679 assert(VTy->getBitWidth() == 8 && "Expected an i8 value for the byte");
2680 if (Size == 1)
2681 return V;
2682
2683 Type *SplatIntTy = Type::getIntNTy(VTy->getContext(), Size*8);
2684 V = IRB.CreateMul(IRB.CreateZExt(V, SplatIntTy, getName(".zext")),
2685 ConstantExpr::getUDiv(
2686 Constant::getAllOnesValue(SplatIntTy),
2687 ConstantExpr::getZExt(
2688 Constant::getAllOnesValue(V->getType()),
2689 SplatIntTy)),
2690 getName(".isplat"));
2691 return V;
2692 }
2693
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002694 /// \brief Compute a vector splat for a given element value.
2695 Value *getVectorSplat(IRBuilder<> &IRB, Value *V, unsigned NumElements) {
2696 assert(NumElements > 0 && "Cannot splat to an empty vector.");
2697
2698 // First insert it into a one-element vector so we can shuffle it. It is
2699 // really silly that LLVM's IR requires this in order to form a splat.
2700 Value *Undef = UndefValue::get(VectorType::get(V->getType(), 1));
2701 V = IRB.CreateInsertElement(Undef, V, IRB.getInt32(0),
2702 getName(".splatinsert"));
2703
2704 // Shuffle the value across the desired number of elements.
2705 SmallVector<Constant*, 8> Mask(NumElements, IRB.getInt32(0));
2706 V = IRB.CreateShuffleVector(V, Undef, ConstantVector::get(Mask),
2707 getName(".splat"));
2708 DEBUG(dbgs() << " splat: " << *V << "\n");
2709 return V;
2710 }
2711
Chandler Carruth713aa942012-09-14 09:22:59 +00002712 bool visitMemSetInst(MemSetInst &II) {
2713 DEBUG(dbgs() << " original: " << II << "\n");
2714 IRBuilder<> IRB(&II);
2715 assert(II.getRawDest() == OldPtr);
2716
2717 // If the memset has a variable size, it cannot be split, just adjust the
2718 // pointer to the new alloca.
2719 if (!isa<Constant>(II.getLength())) {
2720 II.setDest(getAdjustedAllocaPtr(IRB, II.getRawDest()->getType()));
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002721 Type *CstTy = II.getAlignmentCst()->getType();
Chandler Carruthf710fb12012-10-03 08:14:02 +00002722 II.setAlignment(ConstantInt::get(CstTy, getPartitionAlign()));
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002723
Chandler Carruth713aa942012-09-14 09:22:59 +00002724 deleteIfTriviallyDead(OldPtr);
2725 return false;
2726 }
2727
2728 // Record this instruction for deletion.
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002729 Pass.DeadInsts.insert(&II);
Chandler Carruth713aa942012-09-14 09:22:59 +00002730
2731 Type *AllocaTy = NewAI.getAllocatedType();
2732 Type *ScalarTy = AllocaTy->getScalarType();
2733
2734 // If this doesn't map cleanly onto the alloca type, and that type isn't
2735 // a single value type, just emit a memset.
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002736 if (!VecTy && !IntTy &&
2737 (BeginOffset != NewAllocaBeginOffset ||
2738 EndOffset != NewAllocaEndOffset ||
2739 !AllocaTy->isSingleValueType() ||
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002740 !TD.isLegalInteger(TD.getTypeSizeInBits(ScalarTy)) ||
2741 TD.getTypeSizeInBits(ScalarTy)%8 != 0)) {
Chandler Carruth713aa942012-09-14 09:22:59 +00002742 Type *SizeTy = II.getLength()->getType();
2743 Constant *Size = ConstantInt::get(SizeTy, EndOffset - BeginOffset);
Chandler Carruth713aa942012-09-14 09:22:59 +00002744 CallInst *New
2745 = IRB.CreateMemSet(getAdjustedAllocaPtr(IRB,
2746 II.getRawDest()->getType()),
Chandler Carruthf710fb12012-10-03 08:14:02 +00002747 II.getValue(), Size, getPartitionAlign(),
Chandler Carruth713aa942012-09-14 09:22:59 +00002748 II.isVolatile());
2749 (void)New;
2750 DEBUG(dbgs() << " to: " << *New << "\n");
2751 return false;
2752 }
2753
2754 // If we can represent this as a simple value, we have to build the actual
2755 // value to store, which requires expanding the byte present in memset to
2756 // a sensible representation for the alloca type. This is essentially
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002757 // splatting the byte to a sufficiently wide integer, splatting it across
2758 // any desired vector width, and bitcasting to the final type.
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002759 uint64_t Size = EndOffset - BeginOffset;
Chandler Carruth225d25d2012-12-17 04:07:30 +00002760 Value *V = getIntegerSplat(IRB, II.getValue(), Size);
Chandler Carruth713aa942012-09-14 09:22:59 +00002761
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002762 if (VecTy) {
2763 // If this is a memset of a vectorized alloca, insert it.
2764 assert(ElementTy == ScalarTy);
Chandler Carruth713aa942012-09-14 09:22:59 +00002765
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002766 unsigned BeginIndex = getIndex(BeginOffset);
2767 unsigned EndIndex = getIndex(EndOffset);
2768 assert(EndIndex > BeginIndex && "Empty vector!");
2769 unsigned NumElements = EndIndex - BeginIndex;
2770 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2771
2772 Value *Splat = getIntegerSplat(IRB, II.getValue(),
2773 TD.getTypeSizeInBits(ElementTy)/8);
2774 if (NumElements > 1)
2775 Splat = getVectorSplat(IRB, Splat, NumElements);
2776
2777 V = insertVector(IRB, Splat, BeginIndex, EndIndex);
2778 } else if (IntTy) {
2779 // If this is a memset on an alloca where we can widen stores, insert the
2780 // set integer.
Chandler Carruth94fc64c2012-10-15 10:24:40 +00002781 assert(!II.isVolatile());
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002782
2783 V = getIntegerSplat(IRB, II.getValue(), Size);
2784
2785 if (IntTy && (BeginOffset != NewAllocaBeginOffset ||
2786 EndOffset != NewAllocaBeginOffset)) {
2787 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2788 getName(".oldload"));
2789 Old = convertValue(TD, IRB, Old, IntTy);
2790 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2791 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2792 V = insertInteger(TD, IRB, Old, V, Offset, getName(".insert"));
2793 } else {
2794 assert(V->getType() == IntTy &&
2795 "Wrong type for an alloca wide integer!");
2796 }
2797 } else {
2798 // Established these invariants above.
2799 assert(BeginOffset == NewAllocaBeginOffset);
2800 assert(EndOffset == NewAllocaEndOffset);
2801
2802 V = getIntegerSplat(IRB, II.getValue(),
2803 TD.getTypeSizeInBits(ScalarTy)/8);
2804
2805 if (VectorType *AllocaVecTy = dyn_cast<VectorType>(AllocaTy))
2806 V = getVectorSplat(IRB, V, AllocaVecTy->getNumElements());
Chandler Carruth713aa942012-09-14 09:22:59 +00002807 }
2808
Chandler Carruth17c84ea2012-12-17 04:07:37 +00002809 Value *New = IRB.CreateAlignedStore(convertValue(TD, IRB, V, AllocaTy),
2810 &NewAI, NewAI.getAlignment(),
Chandler Carruth81b001a2012-09-26 10:27:46 +00002811 II.isVolatile());
Chandler Carruth713aa942012-09-14 09:22:59 +00002812 (void)New;
2813 DEBUG(dbgs() << " to: " << *New << "\n");
2814 return !II.isVolatile();
2815 }
2816
2817 bool visitMemTransferInst(MemTransferInst &II) {
2818 // Rewriting of memory transfer instructions can be a bit tricky. We break
2819 // them into two categories: split intrinsics and unsplit intrinsics.
2820
2821 DEBUG(dbgs() << " original: " << II << "\n");
2822 IRBuilder<> IRB(&II);
2823
2824 assert(II.getRawSource() == OldPtr || II.getRawDest() == OldPtr);
2825 bool IsDest = II.getRawDest() == OldPtr;
2826
2827 const AllocaPartitioning::MemTransferOffsets &MTO
2828 = P.getMemTransferOffsets(II);
2829
Chandler Carruth673850a2012-10-01 12:16:54 +00002830 // Compute the relative offset within the transfer.
Chandler Carruth426c2bf2012-11-01 09:14:31 +00002831 unsigned IntPtrWidth = TD.getPointerSizeInBits();
Chandler Carruth673850a2012-10-01 12:16:54 +00002832 APInt RelOffset(IntPtrWidth, BeginOffset - (IsDest ? MTO.DestBegin
2833 : MTO.SourceBegin));
2834
2835 unsigned Align = II.getAlignment();
2836 if (Align > 1)
2837 Align = MinAlign(RelOffset.zextOrTrunc(64).getZExtValue(),
Chandler Carruthf710fb12012-10-03 08:14:02 +00002838 MinAlign(II.getAlignment(), getPartitionAlign()));
Chandler Carruth673850a2012-10-01 12:16:54 +00002839
Chandler Carruth713aa942012-09-14 09:22:59 +00002840 // For unsplit intrinsics, we simply modify the source and destination
2841 // pointers in place. This isn't just an optimization, it is a matter of
2842 // correctness. With unsplit intrinsics we may be dealing with transfers
2843 // within a single alloca before SROA ran, or with transfers that have
2844 // a variable length. We may also be dealing with memmove instead of
2845 // memcpy, and so simply updating the pointers is the necessary for us to
2846 // update both source and dest of a single call.
2847 if (!MTO.IsSplittable) {
2848 Value *OldOp = IsDest ? II.getRawDest() : II.getRawSource();
2849 if (IsDest)
2850 II.setDest(getAdjustedAllocaPtr(IRB, II.getRawDest()->getType()));
2851 else
2852 II.setSource(getAdjustedAllocaPtr(IRB, II.getRawSource()->getType()));
2853
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002854 Type *CstTy = II.getAlignmentCst()->getType();
Chandler Carruth673850a2012-10-01 12:16:54 +00002855 II.setAlignment(ConstantInt::get(CstTy, Align));
Chandler Carruthd0ac06d2012-09-26 10:59:22 +00002856
Chandler Carruth713aa942012-09-14 09:22:59 +00002857 DEBUG(dbgs() << " to: " << II << "\n");
2858 deleteIfTriviallyDead(OldOp);
2859 return false;
2860 }
2861 // For split transfer intrinsics we have an incredibly useful assurance:
2862 // the source and destination do not reside within the same alloca, and at
2863 // least one of them does not escape. This means that we can replace
2864 // memmove with memcpy, and we don't need to worry about all manner of
2865 // downsides to splitting and transforming the operations.
2866
Chandler Carruth713aa942012-09-14 09:22:59 +00002867 // If this doesn't map cleanly onto the alloca type, and that type isn't
2868 // a single value type, just emit a memcpy.
2869 bool EmitMemCpy
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002870 = !VecTy && !IntTy && (BeginOffset != NewAllocaBeginOffset ||
2871 EndOffset != NewAllocaEndOffset ||
2872 !NewAI.getAllocatedType()->isSingleValueType());
Chandler Carruth713aa942012-09-14 09:22:59 +00002873
2874 // If we're just going to emit a memcpy, the alloca hasn't changed, and the
2875 // size hasn't been shrunk based on analysis of the viable range, this is
2876 // a no-op.
2877 if (EmitMemCpy && &OldAI == &NewAI) {
2878 uint64_t OrigBegin = IsDest ? MTO.DestBegin : MTO.SourceBegin;
2879 uint64_t OrigEnd = IsDest ? MTO.DestEnd : MTO.SourceEnd;
2880 // Ensure the start lines up.
2881 assert(BeginOffset == OrigBegin);
Benjamin Kramerd0807692012-09-14 13:08:09 +00002882 (void)OrigBegin;
Chandler Carruth713aa942012-09-14 09:22:59 +00002883
2884 // Rewrite the size as needed.
2885 if (EndOffset != OrigEnd)
2886 II.setLength(ConstantInt::get(II.getLength()->getType(),
2887 EndOffset - BeginOffset));
2888 return false;
2889 }
2890 // Record this instruction for deletion.
Chandler Carruthf5837aa2012-11-20 01:12:50 +00002891 Pass.DeadInsts.insert(&II);
Chandler Carruth713aa942012-09-14 09:22:59 +00002892
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002893 bool IsWholeAlloca = BeginOffset == NewAllocaBeginOffset &&
2894 EndOffset == NewAllocaEndOffset;
2895 bool IsVectorElement = VecTy && !IsWholeAlloca;
2896 uint64_t Size = EndOffset - BeginOffset;
2897 IntegerType *SubIntTy
2898 = IntTy ? Type::getIntNTy(IntTy->getContext(), Size*8) : 0;
Chandler Carruth713aa942012-09-14 09:22:59 +00002899
2900 Type *OtherPtrTy = IsDest ? II.getRawSource()->getType()
2901 : II.getRawDest()->getType();
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002902 if (!EmitMemCpy) {
2903 if (IsVectorElement)
Micah Villmowb8bce922012-10-24 17:25:11 +00002904 OtherPtrTy = VecTy->getElementType()->getPointerTo();
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002905 else if (IntTy && !IsWholeAlloca)
Micah Villmowb8bce922012-10-24 17:25:11 +00002906 OtherPtrTy = SubIntTy->getPointerTo();
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002907 else
2908 OtherPtrTy = NewAI.getType();
2909 }
Chandler Carruth713aa942012-09-14 09:22:59 +00002910
2911 // Compute the other pointer, folding as much as possible to produce
2912 // a single, simple GEP in most cases.
2913 Value *OtherPtr = IsDest ? II.getRawSource() : II.getRawDest();
2914 OtherPtr = getAdjustedPtr(IRB, TD, OtherPtr, RelOffset, OtherPtrTy,
2915 getName("." + OtherPtr->getName()));
2916
2917 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2918 // alloca that should be re-examined after rewriting this instruction.
2919 if (AllocaInst *AI
2920 = dyn_cast<AllocaInst>(OtherPtr->stripInBoundsOffsets()))
Chandler Carruthb3dca3f2012-09-26 07:41:40 +00002921 Pass.Worklist.insert(AI);
Chandler Carruth713aa942012-09-14 09:22:59 +00002922
2923 if (EmitMemCpy) {
2924 Value *OurPtr
2925 = getAdjustedAllocaPtr(IRB, IsDest ? II.getRawDest()->getType()
2926 : II.getRawSource()->getType());
2927 Type *SizeTy = II.getLength()->getType();
2928 Constant *Size = ConstantInt::get(SizeTy, EndOffset - BeginOffset);
2929
2930 CallInst *New = IRB.CreateMemCpy(IsDest ? OurPtr : OtherPtr,
2931 IsDest ? OtherPtr : OurPtr,
Chandler Carruth81b001a2012-09-26 10:27:46 +00002932 Size, Align, II.isVolatile());
Chandler Carruth713aa942012-09-14 09:22:59 +00002933 (void)New;
2934 DEBUG(dbgs() << " to: " << *New << "\n");
2935 return false;
2936 }
2937
Chandler Carruth322e9ba2012-10-03 08:26:28 +00002938 // Note that we clamp the alignment to 1 here as a 0 alignment for a memcpy
2939 // is equivalent to 1, but that isn't true if we end up rewriting this as
2940 // a load or store.
2941 if (!Align)
2942 Align = 1;
2943
Chandler Carruth713aa942012-09-14 09:22:59 +00002944 Value *SrcPtr = OtherPtr;
2945 Value *DstPtr = &NewAI;
2946 if (!IsDest)
2947 std::swap(SrcPtr, DstPtr);
2948
2949 Value *Src;
2950 if (IsVectorElement && !IsDest) {
2951 // We have to extract rather than load.
Chandler Carruth81b001a2012-09-26 10:27:46 +00002952 Src = IRB.CreateExtractElement(
2953 IRB.CreateAlignedLoad(SrcPtr, Align, getName(".copyload")),
Chandler Carruth07df7652012-11-21 08:16:30 +00002954 IRB.getInt32(getIndex(BeginOffset)),
Chandler Carruth81b001a2012-09-26 10:27:46 +00002955 getName(".copyextract"));
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002956 } else if (IntTy && !IsWholeAlloca && !IsDest) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002957 Src = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2958 getName(".load"));
2959 Src = convertValue(TD, IRB, Src, IntTy);
2960 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2961 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2962 Src = extractInteger(TD, IRB, Src, SubIntTy, Offset, getName(".extract"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002963 } else {
Chandler Carruth81b001a2012-09-26 10:27:46 +00002964 Src = IRB.CreateAlignedLoad(SrcPtr, Align, II.isVolatile(),
2965 getName(".copyload"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002966 }
2967
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002968 if (IntTy && !IsWholeAlloca && IsDest) {
Chandler Carruth2360b7a2012-10-18 09:56:08 +00002969 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2970 getName(".oldload"));
2971 Old = convertValue(TD, IRB, Old, IntTy);
2972 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2973 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2974 Src = insertInteger(TD, IRB, Old, Src, Offset, getName(".insert"));
2975 Src = convertValue(TD, IRB, Src, NewAllocaTy);
Chandler Carruthd2cd73f2012-10-15 10:24:43 +00002976 }
2977
Chandler Carruth713aa942012-09-14 09:22:59 +00002978 if (IsVectorElement && IsDest) {
2979 // We have to insert into a loaded copy before storing.
Chandler Carruth81b001a2012-09-26 10:27:46 +00002980 Src = IRB.CreateInsertElement(
2981 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), getName(".load")),
Chandler Carruth07df7652012-11-21 08:16:30 +00002982 Src, IRB.getInt32(getIndex(BeginOffset)),
Chandler Carruth81b001a2012-09-26 10:27:46 +00002983 getName(".insert"));
Chandler Carruth713aa942012-09-14 09:22:59 +00002984 }
2985
Chandler Carruth81b001a2012-09-26 10:27:46 +00002986 StoreInst *Store = cast<StoreInst>(
2987 IRB.CreateAlignedStore(Src, DstPtr, Align, II.isVolatile()));
2988 (void)Store;
Chandler Carruth713aa942012-09-14 09:22:59 +00002989 DEBUG(dbgs() << " to: " << *Store << "\n");
2990 return !II.isVolatile();
2991 }
2992
2993 bool visitIntrinsicInst(IntrinsicInst &II) {
2994 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
2995 II.getIntrinsicID() == Intrinsic::lifetime_end);
2996 DEBUG(dbgs() << " original: " << II << "\n");
2997 IRBuilder<> IRB(&II);
2998 assert(II.getArgOperand(1) == OldPtr);
2999
3000 // Record this instruction for deletion.
Chandler Carruthf5837aa2012-11-20 01:12:50 +00003001 Pass.DeadInsts.insert(&II);
Chandler Carruth713aa942012-09-14 09:22:59 +00003002
3003 ConstantInt *Size
3004 = ConstantInt::get(cast<IntegerType>(II.getArgOperand(0)->getType()),
3005 EndOffset - BeginOffset);
3006 Value *Ptr = getAdjustedAllocaPtr(IRB, II.getArgOperand(1)->getType());
3007 Value *New;
3008 if (II.getIntrinsicID() == Intrinsic::lifetime_start)
3009 New = IRB.CreateLifetimeStart(Ptr, Size);
3010 else
3011 New = IRB.CreateLifetimeEnd(Ptr, Size);
3012
3013 DEBUG(dbgs() << " to: " << *New << "\n");
3014 return true;
3015 }
3016
Chandler Carruth713aa942012-09-14 09:22:59 +00003017 bool visitPHINode(PHINode &PN) {
3018 DEBUG(dbgs() << " original: " << PN << "\n");
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003019
Chandler Carruth713aa942012-09-14 09:22:59 +00003020 // We would like to compute a new pointer in only one place, but have it be
3021 // as local as possible to the PHI. To do that, we re-use the location of
3022 // the old pointer, which necessarily must be in the right position to
3023 // dominate the PHI.
3024 IRBuilder<> PtrBuilder(cast<Instruction>(OldPtr));
3025
Chandler Carruth713aa942012-09-14 09:22:59 +00003026 Value *NewPtr = getAdjustedAllocaPtr(PtrBuilder, OldPtr->getType());
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003027 // Replace the operands which were using the old pointer.
Benjamin Kramer2a132422012-10-20 12:04:57 +00003028 std::replace(PN.op_begin(), PN.op_end(), cast<Value>(OldPtr), NewPtr);
Chandler Carruth713aa942012-09-14 09:22:59 +00003029
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003030 DEBUG(dbgs() << " to: " << PN << "\n");
3031 deleteIfTriviallyDead(OldPtr);
3032 return false;
Chandler Carruth713aa942012-09-14 09:22:59 +00003033 }
3034
3035 bool visitSelectInst(SelectInst &SI) {
3036 DEBUG(dbgs() << " original: " << SI << "\n");
3037 IRBuilder<> IRB(&SI);
3038
3039 // Find the operand we need to rewrite here.
3040 bool IsTrueVal = SI.getTrueValue() == OldPtr;
3041 if (IsTrueVal)
3042 assert(SI.getFalseValue() != OldPtr && "Pointer is both operands!");
3043 else
3044 assert(SI.getFalseValue() == OldPtr && "Pointer isn't an operand!");
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003045
Chandler Carruth713aa942012-09-14 09:22:59 +00003046 Value *NewPtr = getAdjustedAllocaPtr(IRB, OldPtr->getType());
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003047 SI.setOperand(IsTrueVal ? 1 : 2, NewPtr);
3048 DEBUG(dbgs() << " to: " << SI << "\n");
Chandler Carruth713aa942012-09-14 09:22:59 +00003049 deleteIfTriviallyDead(OldPtr);
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003050 return false;
Chandler Carruth713aa942012-09-14 09:22:59 +00003051 }
3052
3053};
3054}
3055
Chandler Carruthc370acd2012-09-18 12:57:43 +00003056namespace {
3057/// \brief Visitor to rewrite aggregate loads and stores as scalar.
3058///
3059/// This pass aggressively rewrites all aggregate loads and stores on
3060/// a particular pointer (or any pointer derived from it which we can identify)
3061/// with scalar loads and stores.
3062class AggLoadStoreRewriter : public InstVisitor<AggLoadStoreRewriter, bool> {
3063 // Befriend the base class so it can delegate to private visit methods.
3064 friend class llvm::InstVisitor<AggLoadStoreRewriter, bool>;
3065
Micah Villmow3574eca2012-10-08 16:38:25 +00003066 const DataLayout &TD;
Chandler Carruthc370acd2012-09-18 12:57:43 +00003067
3068 /// Queue of pointer uses to analyze and potentially rewrite.
3069 SmallVector<Use *, 8> Queue;
3070
3071 /// Set to prevent us from cycling with phi nodes and loops.
3072 SmallPtrSet<User *, 8> Visited;
3073
3074 /// The current pointer use being rewritten. This is used to dig up the used
3075 /// value (as opposed to the user).
3076 Use *U;
3077
3078public:
Micah Villmow3574eca2012-10-08 16:38:25 +00003079 AggLoadStoreRewriter(const DataLayout &TD) : TD(TD) {}
Chandler Carruthc370acd2012-09-18 12:57:43 +00003080
3081 /// Rewrite loads and stores through a pointer and all pointers derived from
3082 /// it.
3083 bool rewrite(Instruction &I) {
3084 DEBUG(dbgs() << " Rewriting FCA loads and stores...\n");
3085 enqueueUsers(I);
3086 bool Changed = false;
3087 while (!Queue.empty()) {
3088 U = Queue.pop_back_val();
3089 Changed |= visit(cast<Instruction>(U->getUser()));
3090 }
3091 return Changed;
3092 }
3093
3094private:
3095 /// Enqueue all the users of the given instruction for further processing.
3096 /// This uses a set to de-duplicate users.
3097 void enqueueUsers(Instruction &I) {
3098 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE;
3099 ++UI)
3100 if (Visited.insert(*UI))
3101 Queue.push_back(&UI.getUse());
3102 }
3103
3104 // Conservative default is to not rewrite anything.
3105 bool visitInstruction(Instruction &I) { return false; }
3106
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003107 /// \brief Generic recursive split emission class.
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003108 template <typename Derived>
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003109 class OpSplitter {
3110 protected:
3111 /// The builder used to form new instructions.
3112 IRBuilder<> IRB;
3113 /// The indices which to be used with insert- or extractvalue to select the
3114 /// appropriate value within the aggregate.
3115 SmallVector<unsigned, 4> Indices;
3116 /// The indices to a GEP instruction which will move Ptr to the correct slot
3117 /// within the aggregate.
3118 SmallVector<Value *, 4> GEPIndices;
3119 /// The base pointer of the original op, used as a base for GEPing the
3120 /// split operations.
3121 Value *Ptr;
Chandler Carruthc370acd2012-09-18 12:57:43 +00003122
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003123 /// Initialize the splitter with an insertion point, Ptr and start with a
3124 /// single zero GEP index.
3125 OpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003126 : IRB(InsertionPoint), GEPIndices(1, IRB.getInt32(0)), Ptr(Ptr) {}
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003127
3128 public:
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003129 /// \brief Generic recursive split emission routine.
3130 ///
3131 /// This method recursively splits an aggregate op (load or store) into
3132 /// scalar or vector ops. It splits recursively until it hits a single value
3133 /// and emits that single value operation via the template argument.
3134 ///
3135 /// The logic of this routine relies on GEPs and insertvalue and
3136 /// extractvalue all operating with the same fundamental index list, merely
3137 /// formatted differently (GEPs need actual values).
3138 ///
3139 /// \param Ty The type being split recursively into smaller ops.
3140 /// \param Agg The aggregate value being built up or stored, depending on
3141 /// whether this is splitting a load or a store respectively.
3142 void emitSplitOps(Type *Ty, Value *&Agg, const Twine &Name) {
3143 if (Ty->isSingleValueType())
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003144 return static_cast<Derived *>(this)->emitFunc(Ty, Agg, Name);
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003145
3146 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
3147 unsigned OldSize = Indices.size();
3148 (void)OldSize;
3149 for (unsigned Idx = 0, Size = ATy->getNumElements(); Idx != Size;
3150 ++Idx) {
3151 assert(Indices.size() == OldSize && "Did not return to the old size");
3152 Indices.push_back(Idx);
3153 GEPIndices.push_back(IRB.getInt32(Idx));
3154 emitSplitOps(ATy->getElementType(), Agg, Name + "." + Twine(Idx));
3155 GEPIndices.pop_back();
3156 Indices.pop_back();
3157 }
3158 return;
Chandler Carruthc370acd2012-09-18 12:57:43 +00003159 }
Chandler Carruthc370acd2012-09-18 12:57:43 +00003160
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003161 if (StructType *STy = dyn_cast<StructType>(Ty)) {
3162 unsigned OldSize = Indices.size();
3163 (void)OldSize;
3164 for (unsigned Idx = 0, Size = STy->getNumElements(); Idx != Size;
3165 ++Idx) {
3166 assert(Indices.size() == OldSize && "Did not return to the old size");
3167 Indices.push_back(Idx);
3168 GEPIndices.push_back(IRB.getInt32(Idx));
3169 emitSplitOps(STy->getElementType(Idx), Agg, Name + "." + Twine(Idx));
3170 GEPIndices.pop_back();
3171 Indices.pop_back();
3172 }
3173 return;
Chandler Carruthc370acd2012-09-18 12:57:43 +00003174 }
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003175
3176 llvm_unreachable("Only arrays and structs are aggregate loadable types");
Chandler Carruthc370acd2012-09-18 12:57:43 +00003177 }
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003178 };
Chandler Carruthc370acd2012-09-18 12:57:43 +00003179
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003180 struct LoadOpSplitter : public OpSplitter<LoadOpSplitter> {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003181 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer3b682bd2012-09-18 17:11:47 +00003182 : OpSplitter<LoadOpSplitter>(InsertionPoint, Ptr) {}
Chandler Carruthc370acd2012-09-18 12:57:43 +00003183
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003184 /// Emit a leaf load of a single value. This is called at the leaves of the
3185 /// recursive emission to actually load values.
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003186 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003187 assert(Ty->isSingleValueType());
3188 // Load the single value and insert it using the indices.
3189 Value *Load = IRB.CreateLoad(IRB.CreateInBoundsGEP(Ptr, GEPIndices,
3190 Name + ".gep"),
3191 Name + ".load");
3192 Agg = IRB.CreateInsertValue(Agg, Load, Indices, Name + ".insert");
3193 DEBUG(dbgs() << " to: " << *Load << "\n");
3194 }
3195 };
Chandler Carruthc370acd2012-09-18 12:57:43 +00003196
3197 bool visitLoadInst(LoadInst &LI) {
3198 assert(LI.getPointerOperand() == *U);
3199 if (!LI.isSimple() || LI.getType()->isSingleValueType())
3200 return false;
3201
3202 // We have an aggregate being loaded, split it apart.
3203 DEBUG(dbgs() << " original: " << LI << "\n");
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003204 LoadOpSplitter Splitter(&LI, *U);
Chandler Carruthc370acd2012-09-18 12:57:43 +00003205 Value *V = UndefValue::get(LI.getType());
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003206 Splitter.emitSplitOps(LI.getType(), V, LI.getName() + ".fca");
Chandler Carruthc370acd2012-09-18 12:57:43 +00003207 LI.replaceAllUsesWith(V);
3208 LI.eraseFromParent();
3209 return true;
3210 }
3211
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003212 struct StoreOpSplitter : public OpSplitter<StoreOpSplitter> {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003213 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer3b682bd2012-09-18 17:11:47 +00003214 : OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr) {}
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003215
3216 /// Emit a leaf store of a single value. This is called at the leaves of the
3217 /// recursive emission to actually produce stores.
Benjamin Kramer371d5d82012-09-18 17:06:32 +00003218 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003219 assert(Ty->isSingleValueType());
3220 // Extract the single value and store it using the indices.
3221 Value *Store = IRB.CreateStore(
3222 IRB.CreateExtractValue(Agg, Indices, Name + ".extract"),
3223 IRB.CreateInBoundsGEP(Ptr, GEPIndices, Name + ".gep"));
3224 (void)Store;
3225 DEBUG(dbgs() << " to: " << *Store << "\n");
3226 }
3227 };
Chandler Carruthc370acd2012-09-18 12:57:43 +00003228
3229 bool visitStoreInst(StoreInst &SI) {
3230 if (!SI.isSimple() || SI.getPointerOperand() != *U)
3231 return false;
3232 Value *V = SI.getValueOperand();
3233 if (V->getType()->isSingleValueType())
3234 return false;
3235
3236 // We have an aggregate being stored, split it apart.
3237 DEBUG(dbgs() << " original: " << SI << "\n");
Benjamin Kramer6e67b252012-09-18 16:20:46 +00003238 StoreOpSplitter Splitter(&SI, *U);
3239 Splitter.emitSplitOps(V->getType(), V, V->getName() + ".fca");
Chandler Carruthc370acd2012-09-18 12:57:43 +00003240 SI.eraseFromParent();
3241 return true;
3242 }
3243
3244 bool visitBitCastInst(BitCastInst &BC) {
3245 enqueueUsers(BC);
3246 return false;
3247 }
3248
3249 bool visitGetElementPtrInst(GetElementPtrInst &GEPI) {
3250 enqueueUsers(GEPI);
3251 return false;
3252 }
3253
3254 bool visitPHINode(PHINode &PN) {
3255 enqueueUsers(PN);
3256 return false;
3257 }
3258
3259 bool visitSelectInst(SelectInst &SI) {
3260 enqueueUsers(SI);
3261 return false;
3262 }
3263};
3264}
3265
Chandler Carruth07525a62012-10-13 10:49:33 +00003266/// \brief Strip aggregate type wrapping.
3267///
3268/// This removes no-op aggregate types wrapping an underlying type. It will
3269/// strip as many layers of types as it can without changing either the type
3270/// size or the allocated size.
3271static Type *stripAggregateTypeWrapping(const DataLayout &DL, Type *Ty) {
3272 if (Ty->isSingleValueType())
3273 return Ty;
3274
3275 uint64_t AllocSize = DL.getTypeAllocSize(Ty);
3276 uint64_t TypeSize = DL.getTypeSizeInBits(Ty);
3277
3278 Type *InnerTy;
3279 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
3280 InnerTy = ArrTy->getElementType();
3281 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
3282 const StructLayout *SL = DL.getStructLayout(STy);
3283 unsigned Index = SL->getElementContainingOffset(0);
3284 InnerTy = STy->getElementType(Index);
3285 } else {
3286 return Ty;
3287 }
3288
3289 if (AllocSize > DL.getTypeAllocSize(InnerTy) ||
3290 TypeSize > DL.getTypeSizeInBits(InnerTy))
3291 return Ty;
3292
3293 return stripAggregateTypeWrapping(DL, InnerTy);
3294}
3295
Chandler Carruth713aa942012-09-14 09:22:59 +00003296/// \brief Try to find a partition of the aggregate type passed in for a given
3297/// offset and size.
3298///
3299/// This recurses through the aggregate type and tries to compute a subtype
3300/// based on the offset and size. When the offset and size span a sub-section
Chandler Carruth6b547a22012-09-14 11:08:31 +00003301/// of an array, it will even compute a new array type for that sub-section,
3302/// and the same for structs.
3303///
3304/// Note that this routine is very strict and tries to find a partition of the
3305/// type which produces the *exact* right offset and size. It is not forgiving
3306/// when the size or offset cause either end of type-based partition to be off.
3307/// Also, this is a best-effort routine. It is reasonable to give up and not
3308/// return a type if necessary.
Micah Villmow3574eca2012-10-08 16:38:25 +00003309static Type *getTypePartition(const DataLayout &TD, Type *Ty,
Chandler Carruth713aa942012-09-14 09:22:59 +00003310 uint64_t Offset, uint64_t Size) {
3311 if (Offset == 0 && TD.getTypeAllocSize(Ty) == Size)
Chandler Carruth07525a62012-10-13 10:49:33 +00003312 return stripAggregateTypeWrapping(TD, Ty);
Chandler Carrutha2b88162012-10-25 04:37:07 +00003313 if (Offset > TD.getTypeAllocSize(Ty) ||
3314 (TD.getTypeAllocSize(Ty) - Offset) < Size)
3315 return 0;
Chandler Carruth713aa942012-09-14 09:22:59 +00003316
3317 if (SequentialType *SeqTy = dyn_cast<SequentialType>(Ty)) {
3318 // We can't partition pointers...
3319 if (SeqTy->isPointerTy())
3320 return 0;
3321
3322 Type *ElementTy = SeqTy->getElementType();
3323 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy);
3324 uint64_t NumSkippedElements = Offset / ElementSize;
3325 if (ArrayType *ArrTy = dyn_cast<ArrayType>(SeqTy))
3326 if (NumSkippedElements >= ArrTy->getNumElements())
3327 return 0;
3328 if (VectorType *VecTy = dyn_cast<VectorType>(SeqTy))
3329 if (NumSkippedElements >= VecTy->getNumElements())
3330 return 0;
3331 Offset -= NumSkippedElements * ElementSize;
3332
3333 // First check if we need to recurse.
3334 if (Offset > 0 || Size < ElementSize) {
3335 // Bail if the partition ends in a different array element.
3336 if ((Offset + Size) > ElementSize)
3337 return 0;
3338 // Recurse through the element type trying to peel off offset bytes.
3339 return getTypePartition(TD, ElementTy, Offset, Size);
3340 }
3341 assert(Offset == 0);
3342
3343 if (Size == ElementSize)
Chandler Carruth07525a62012-10-13 10:49:33 +00003344 return stripAggregateTypeWrapping(TD, ElementTy);
Chandler Carruth713aa942012-09-14 09:22:59 +00003345 assert(Size > ElementSize);
3346 uint64_t NumElements = Size / ElementSize;
3347 if (NumElements * ElementSize != Size)
3348 return 0;
3349 return ArrayType::get(ElementTy, NumElements);
3350 }
3351
3352 StructType *STy = dyn_cast<StructType>(Ty);
3353 if (!STy)
3354 return 0;
3355
3356 const StructLayout *SL = TD.getStructLayout(STy);
Chandler Carruth6b547a22012-09-14 11:08:31 +00003357 if (Offset >= SL->getSizeInBytes())
Chandler Carruth713aa942012-09-14 09:22:59 +00003358 return 0;
3359 uint64_t EndOffset = Offset + Size;
3360 if (EndOffset > SL->getSizeInBytes())
3361 return 0;
3362
3363 unsigned Index = SL->getElementContainingOffset(Offset);
Chandler Carruth713aa942012-09-14 09:22:59 +00003364 Offset -= SL->getElementOffset(Index);
3365
3366 Type *ElementTy = STy->getElementType(Index);
3367 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy);
3368 if (Offset >= ElementSize)
3369 return 0; // The offset points into alignment padding.
3370
3371 // See if any partition must be contained by the element.
3372 if (Offset > 0 || Size < ElementSize) {
3373 if ((Offset + Size) > ElementSize)
3374 return 0;
Chandler Carruth713aa942012-09-14 09:22:59 +00003375 return getTypePartition(TD, ElementTy, Offset, Size);
3376 }
3377 assert(Offset == 0);
3378
3379 if (Size == ElementSize)
Chandler Carruth07525a62012-10-13 10:49:33 +00003380 return stripAggregateTypeWrapping(TD, ElementTy);
Chandler Carruth713aa942012-09-14 09:22:59 +00003381
3382 StructType::element_iterator EI = STy->element_begin() + Index,
3383 EE = STy->element_end();
3384 if (EndOffset < SL->getSizeInBytes()) {
3385 unsigned EndIndex = SL->getElementContainingOffset(EndOffset);
3386 if (Index == EndIndex)
3387 return 0; // Within a single element and its padding.
Chandler Carruth6b547a22012-09-14 11:08:31 +00003388
3389 // Don't try to form "natural" types if the elements don't line up with the
3390 // expected size.
3391 // FIXME: We could potentially recurse down through the last element in the
3392 // sub-struct to find a natural end point.
3393 if (SL->getElementOffset(EndIndex) != EndOffset)
3394 return 0;
3395
Chandler Carruth713aa942012-09-14 09:22:59 +00003396 assert(Index < EndIndex);
Chandler Carruth713aa942012-09-14 09:22:59 +00003397 EE = STy->element_begin() + EndIndex;
3398 }
3399
3400 // Try to build up a sub-structure.
Benjamin Kramer2a132422012-10-20 12:04:57 +00003401 StructType *SubTy = StructType::get(STy->getContext(), makeArrayRef(EI, EE),
Chandler Carruth713aa942012-09-14 09:22:59 +00003402 STy->isPacked());
3403 const StructLayout *SubSL = TD.getStructLayout(SubTy);
Chandler Carruth6b547a22012-09-14 11:08:31 +00003404 if (Size != SubSL->getSizeInBytes())
3405 return 0; // The sub-struct doesn't have quite the size needed.
Chandler Carruth713aa942012-09-14 09:22:59 +00003406
Chandler Carruth6b547a22012-09-14 11:08:31 +00003407 return SubTy;
Chandler Carruth713aa942012-09-14 09:22:59 +00003408}
3409
3410/// \brief Rewrite an alloca partition's users.
3411///
3412/// This routine drives both of the rewriting goals of the SROA pass. It tries
3413/// to rewrite uses of an alloca partition to be conducive for SSA value
3414/// promotion. If the partition needs a new, more refined alloca, this will
3415/// build that new alloca, preserving as much type information as possible, and
3416/// rewrite the uses of the old alloca to point at the new one and have the
3417/// appropriate new offsets. It also evaluates how successful the rewrite was
3418/// at enabling promotion and if it was successful queues the alloca to be
3419/// promoted.
3420bool SROA::rewriteAllocaPartition(AllocaInst &AI,
3421 AllocaPartitioning &P,
3422 AllocaPartitioning::iterator PI) {
3423 uint64_t AllocaSize = PI->EndOffset - PI->BeginOffset;
Chandler Carruthfdb15852012-10-02 18:57:13 +00003424 bool IsLive = false;
3425 for (AllocaPartitioning::use_iterator UI = P.use_begin(PI),
3426 UE = P.use_end(PI);
3427 UI != UE && !IsLive; ++UI)
3428 if (UI->U)
3429 IsLive = true;
3430 if (!IsLive)
Chandler Carruth713aa942012-09-14 09:22:59 +00003431 return false; // No live uses left of this partition.
3432
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003433 DEBUG(dbgs() << "Speculating PHIs and selects in partition "
3434 << "[" << PI->BeginOffset << "," << PI->EndOffset << ")\n");
3435
3436 PHIOrSelectSpeculator Speculator(*TD, P, *this);
3437 DEBUG(dbgs() << " speculating ");
3438 DEBUG(P.print(dbgs(), PI, ""));
Chandler Carrutha346f462012-10-02 17:49:47 +00003439 Speculator.visitUsers(PI);
Chandler Carruth1e1b16c2012-10-01 10:54:05 +00003440
Chandler Carruth713aa942012-09-14 09:22:59 +00003441 // Try to compute a friendly type for this partition of the alloca. This
3442 // won't always succeed, in which case we fall back to a legal integer type
3443 // or an i8 array of an appropriate size.
3444 Type *AllocaTy = 0;
3445 if (Type *PartitionTy = P.getCommonType(PI))
3446 if (TD->getTypeAllocSize(PartitionTy) >= AllocaSize)
3447 AllocaTy = PartitionTy;
3448 if (!AllocaTy)
3449 if (Type *PartitionTy = getTypePartition(*TD, AI.getAllocatedType(),
3450 PI->BeginOffset, AllocaSize))
3451 AllocaTy = PartitionTy;
3452 if ((!AllocaTy ||
3453 (AllocaTy->isArrayTy() &&
3454 AllocaTy->getArrayElementType()->isIntegerTy())) &&
3455 TD->isLegalInteger(AllocaSize * 8))
3456 AllocaTy = Type::getIntNTy(*C, AllocaSize * 8);
3457 if (!AllocaTy)
3458 AllocaTy = ArrayType::get(Type::getInt8Ty(*C), AllocaSize);
Chandler Carruthb3dd9a12012-09-14 10:26:34 +00003459 assert(TD->getTypeAllocSize(AllocaTy) >= AllocaSize);
Chandler Carruth713aa942012-09-14 09:22:59 +00003460
3461 // Check for the case where we're going to rewrite to a new alloca of the
3462 // exact same type as the original, and with the same access offsets. In that
3463 // case, re-use the existing alloca, but still run through the rewriter to
3464 // performe phi and select speculation.
3465 AllocaInst *NewAI;
3466 if (AllocaTy == AI.getAllocatedType()) {
3467 assert(PI->BeginOffset == 0 &&
3468 "Non-zero begin offset but same alloca type");
3469 assert(PI == P.begin() && "Begin offset is zero on later partition");
3470 NewAI = &AI;
3471 } else {
Chandler Carruthb67c9a52012-09-29 10:41:21 +00003472 unsigned Alignment = AI.getAlignment();
3473 if (!Alignment) {
3474 // The minimum alignment which users can rely on when the explicit
3475 // alignment is omitted or zero is that required by the ABI for this
3476 // type.
3477 Alignment = TD->getABITypeAlignment(AI.getAllocatedType());
3478 }
3479 Alignment = MinAlign(Alignment, PI->BeginOffset);
3480 // If we will get at least this much alignment from the type alone, leave
3481 // the alloca's alignment unconstrained.
3482 if (Alignment <= TD->getABITypeAlignment(AllocaTy))
3483 Alignment = 0;
3484 NewAI = new AllocaInst(AllocaTy, 0, Alignment,
Chandler Carruth713aa942012-09-14 09:22:59 +00003485 AI.getName() + ".sroa." + Twine(PI - P.begin()),
3486 &AI);
3487 ++NumNewAllocas;
3488 }
3489
3490 DEBUG(dbgs() << "Rewriting alloca partition "
3491 << "[" << PI->BeginOffset << "," << PI->EndOffset << ") to: "
3492 << *NewAI << "\n");
3493
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003494 // Track the high watermark of the post-promotion worklist. We will reset it
3495 // to this point if the alloca is not in fact scheduled for promotion.
3496 unsigned PPWOldSize = PostPromotionWorklist.size();
3497
Chandler Carruth713aa942012-09-14 09:22:59 +00003498 AllocaPartitionRewriter Rewriter(*TD, P, PI, *this, AI, *NewAI,
3499 PI->BeginOffset, PI->EndOffset);
3500 DEBUG(dbgs() << " rewriting ");
3501 DEBUG(P.print(dbgs(), PI, ""));
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003502 bool Promotable = Rewriter.visitUsers(P.use_begin(PI), P.use_end(PI));
3503 if (Promotable) {
Chandler Carruth713aa942012-09-14 09:22:59 +00003504 DEBUG(dbgs() << " and queuing for promotion\n");
3505 PromotableAllocas.push_back(NewAI);
3506 } else if (NewAI != &AI) {
3507 // If we can't promote the alloca, iterate on it to check for new
3508 // refinements exposed by splitting the current alloca. Don't iterate on an
3509 // alloca which didn't actually change and didn't get promoted.
3510 Worklist.insert(NewAI);
3511 }
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003512
3513 // Drop any post-promotion work items if promotion didn't happen.
3514 if (!Promotable)
3515 while (PostPromotionWorklist.size() > PPWOldSize)
3516 PostPromotionWorklist.pop_back();
3517
Chandler Carruth713aa942012-09-14 09:22:59 +00003518 return true;
3519}
3520
3521/// \brief Walks the partitioning of an alloca rewriting uses of each partition.
3522bool SROA::splitAlloca(AllocaInst &AI, AllocaPartitioning &P) {
3523 bool Changed = false;
3524 for (AllocaPartitioning::iterator PI = P.begin(), PE = P.end(); PI != PE;
3525 ++PI)
3526 Changed |= rewriteAllocaPartition(AI, P, PI);
3527
3528 return Changed;
3529}
3530
3531/// \brief Analyze an alloca for SROA.
3532///
3533/// This analyzes the alloca to ensure we can reason about it, builds
3534/// a partitioning of the alloca, and then hands it off to be split and
3535/// rewritten as needed.
3536bool SROA::runOnAlloca(AllocaInst &AI) {
3537 DEBUG(dbgs() << "SROA alloca: " << AI << "\n");
3538 ++NumAllocasAnalyzed;
3539
3540 // Special case dead allocas, as they're trivial.
3541 if (AI.use_empty()) {
3542 AI.eraseFromParent();
3543 return true;
3544 }
3545
3546 // Skip alloca forms that this analysis can't handle.
3547 if (AI.isArrayAllocation() || !AI.getAllocatedType()->isSized() ||
3548 TD->getTypeAllocSize(AI.getAllocatedType()) == 0)
3549 return false;
3550
Chandler Carruthc370acd2012-09-18 12:57:43 +00003551 bool Changed = false;
3552
3553 // First, split any FCA loads and stores touching this alloca to promote
3554 // better splitting and promotion opportunities.
3555 AggLoadStoreRewriter AggRewriter(*TD);
3556 Changed |= AggRewriter.rewrite(AI);
3557
Chandler Carruth713aa942012-09-14 09:22:59 +00003558 // Build the partition set using a recursive instruction-visiting builder.
3559 AllocaPartitioning P(*TD, AI);
3560 DEBUG(P.print(dbgs()));
3561 if (P.isEscaped())
Chandler Carruthc370acd2012-09-18 12:57:43 +00003562 return Changed;
Chandler Carruth713aa942012-09-14 09:22:59 +00003563
Chandler Carruth713aa942012-09-14 09:22:59 +00003564 // Delete all the dead users of this alloca before splitting and rewriting it.
Chandler Carruth713aa942012-09-14 09:22:59 +00003565 for (AllocaPartitioning::dead_user_iterator DI = P.dead_user_begin(),
3566 DE = P.dead_user_end();
3567 DI != DE; ++DI) {
3568 Changed = true;
3569 (*DI)->replaceAllUsesWith(UndefValue::get((*DI)->getType()));
Chandler Carruthf5837aa2012-11-20 01:12:50 +00003570 DeadInsts.insert(*DI);
Chandler Carruth713aa942012-09-14 09:22:59 +00003571 }
3572 for (AllocaPartitioning::dead_op_iterator DO = P.dead_op_begin(),
3573 DE = P.dead_op_end();
3574 DO != DE; ++DO) {
3575 Value *OldV = **DO;
3576 // Clobber the use with an undef value.
3577 **DO = UndefValue::get(OldV->getType());
3578 if (Instruction *OldI = dyn_cast<Instruction>(OldV))
3579 if (isInstructionTriviallyDead(OldI)) {
3580 Changed = true;
Chandler Carruthf5837aa2012-11-20 01:12:50 +00003581 DeadInsts.insert(OldI);
Chandler Carruth713aa942012-09-14 09:22:59 +00003582 }
3583 }
3584
Chandler Carruthfca3f402012-10-05 01:29:09 +00003585 // No partitions to split. Leave the dead alloca for a later pass to clean up.
3586 if (P.begin() == P.end())
3587 return Changed;
3588
Chandler Carruth713aa942012-09-14 09:22:59 +00003589 return splitAlloca(AI, P) || Changed;
3590}
3591
Chandler Carruth8615cd22012-09-14 10:26:38 +00003592/// \brief Delete the dead instructions accumulated in this run.
3593///
3594/// Recursively deletes the dead instructions we've accumulated. This is done
3595/// at the very end to maximize locality of the recursive delete and to
3596/// minimize the problems of invalidated instruction pointers as such pointers
3597/// are used heavily in the intermediate stages of the algorithm.
3598///
3599/// We also record the alloca instructions deleted here so that they aren't
3600/// subsequently handed to mem2reg to promote.
3601void SROA::deleteDeadInstructions(SmallPtrSet<AllocaInst*, 4> &DeletedAllocas) {
Chandler Carruth713aa942012-09-14 09:22:59 +00003602 while (!DeadInsts.empty()) {
3603 Instruction *I = DeadInsts.pop_back_val();
3604 DEBUG(dbgs() << "Deleting dead instruction: " << *I << "\n");
3605
Chandler Carrutha2b88162012-10-25 04:37:07 +00003606 I->replaceAllUsesWith(UndefValue::get(I->getType()));
3607
Chandler Carruth713aa942012-09-14 09:22:59 +00003608 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
3609 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
3610 // Zero out the operand and see if it becomes trivially dead.
3611 *OI = 0;
3612 if (isInstructionTriviallyDead(U))
Chandler Carruthf5837aa2012-11-20 01:12:50 +00003613 DeadInsts.insert(U);
Chandler Carruth713aa942012-09-14 09:22:59 +00003614 }
3615
3616 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
3617 DeletedAllocas.insert(AI);
3618
3619 ++NumDeleted;
3620 I->eraseFromParent();
3621 }
3622}
3623
Chandler Carruth1c8db502012-09-15 11:43:14 +00003624/// \brief Promote the allocas, using the best available technique.
3625///
3626/// This attempts to promote whatever allocas have been identified as viable in
3627/// the PromotableAllocas list. If that list is empty, there is nothing to do.
3628/// If there is a domtree available, we attempt to promote using the full power
3629/// of mem2reg. Otherwise, we build and use the AllocaPromoter above which is
3630/// based on the SSAUpdater utilities. This function returns whether any
3631/// promotion occured.
3632bool SROA::promoteAllocas(Function &F) {
3633 if (PromotableAllocas.empty())
3634 return false;
3635
3636 NumPromoted += PromotableAllocas.size();
3637
3638 if (DT && !ForceSSAUpdater) {
3639 DEBUG(dbgs() << "Promoting allocas with mem2reg...\n");
3640 PromoteMemToReg(PromotableAllocas, *DT);
3641 PromotableAllocas.clear();
3642 return true;
3643 }
3644
3645 DEBUG(dbgs() << "Promoting allocas with SSAUpdater...\n");
3646 SSAUpdater SSA;
3647 DIBuilder DIB(*F.getParent());
3648 SmallVector<Instruction*, 64> Insts;
3649
3650 for (unsigned Idx = 0, Size = PromotableAllocas.size(); Idx != Size; ++Idx) {
3651 AllocaInst *AI = PromotableAllocas[Idx];
3652 for (Value::use_iterator UI = AI->use_begin(), UE = AI->use_end();
3653 UI != UE;) {
3654 Instruction *I = cast<Instruction>(*UI++);
3655 // FIXME: Currently the SSAUpdater infrastructure doesn't reason about
3656 // lifetime intrinsics and so we strip them (and the bitcasts+GEPs
3657 // leading to them) here. Eventually it should use them to optimize the
3658 // scalar values produced.
3659 if (isa<BitCastInst>(I) || isa<GetElementPtrInst>(I)) {
3660 assert(onlyUsedByLifetimeMarkers(I) &&
3661 "Found a bitcast used outside of a lifetime marker.");
3662 while (!I->use_empty())
3663 cast<Instruction>(*I->use_begin())->eraseFromParent();
3664 I->eraseFromParent();
3665 continue;
3666 }
3667 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
3668 assert(II->getIntrinsicID() == Intrinsic::lifetime_start ||
3669 II->getIntrinsicID() == Intrinsic::lifetime_end);
3670 II->eraseFromParent();
3671 continue;
3672 }
3673
3674 Insts.push_back(I);
3675 }
3676 AllocaPromoter(Insts, SSA, *AI, DIB).run(Insts);
3677 Insts.clear();
3678 }
3679
3680 PromotableAllocas.clear();
3681 return true;
3682}
3683
Chandler Carruth713aa942012-09-14 09:22:59 +00003684namespace {
3685 /// \brief A predicate to test whether an alloca belongs to a set.
3686 class IsAllocaInSet {
3687 typedef SmallPtrSet<AllocaInst *, 4> SetType;
3688 const SetType &Set;
3689
3690 public:
Chandler Carruth75eac5f2012-10-03 00:03:00 +00003691 typedef AllocaInst *argument_type;
3692
Chandler Carruth713aa942012-09-14 09:22:59 +00003693 IsAllocaInSet(const SetType &Set) : Set(Set) {}
Chandler Carruth75eac5f2012-10-03 00:03:00 +00003694 bool operator()(AllocaInst *AI) const { return Set.count(AI); }
Chandler Carruth713aa942012-09-14 09:22:59 +00003695 };
3696}
3697
3698bool SROA::runOnFunction(Function &F) {
3699 DEBUG(dbgs() << "SROA function: " << F.getName() << "\n");
3700 C = &F.getContext();
Micah Villmow3574eca2012-10-08 16:38:25 +00003701 TD = getAnalysisIfAvailable<DataLayout>();
Chandler Carruth713aa942012-09-14 09:22:59 +00003702 if (!TD) {
3703 DEBUG(dbgs() << " Skipping SROA -- no target data!\n");
3704 return false;
3705 }
Chandler Carruth1c8db502012-09-15 11:43:14 +00003706 DT = getAnalysisIfAvailable<DominatorTree>();
Chandler Carruth713aa942012-09-14 09:22:59 +00003707
3708 BasicBlock &EntryBB = F.getEntryBlock();
3709 for (BasicBlock::iterator I = EntryBB.begin(), E = llvm::prior(EntryBB.end());
3710 I != E; ++I)
3711 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
3712 Worklist.insert(AI);
3713
3714 bool Changed = false;
Chandler Carruth8615cd22012-09-14 10:26:38 +00003715 // A set of deleted alloca instruction pointers which should be removed from
3716 // the list of promotable allocas.
3717 SmallPtrSet<AllocaInst *, 4> DeletedAllocas;
3718
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003719 do {
3720 while (!Worklist.empty()) {
3721 Changed |= runOnAlloca(*Worklist.pop_back_val());
3722 deleteDeadInstructions(DeletedAllocas);
Chandler Carruth5c5b3cf2012-10-02 22:46:45 +00003723
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003724 // Remove the deleted allocas from various lists so that we don't try to
3725 // continue processing them.
3726 if (!DeletedAllocas.empty()) {
3727 Worklist.remove_if(IsAllocaInSet(DeletedAllocas));
3728 PostPromotionWorklist.remove_if(IsAllocaInSet(DeletedAllocas));
3729 PromotableAllocas.erase(std::remove_if(PromotableAllocas.begin(),
3730 PromotableAllocas.end(),
3731 IsAllocaInSet(DeletedAllocas)),
3732 PromotableAllocas.end());
3733 DeletedAllocas.clear();
3734 }
Chandler Carruth713aa942012-09-14 09:22:59 +00003735 }
Chandler Carruth713aa942012-09-14 09:22:59 +00003736
Chandler Carruthb2d98c22012-10-04 12:33:50 +00003737 Changed |= promoteAllocas(F);
3738
3739 Worklist = PostPromotionWorklist;
3740 PostPromotionWorklist.clear();
3741 } while (!Worklist.empty());
Chandler Carruth713aa942012-09-14 09:22:59 +00003742
3743 return Changed;
3744}
3745
3746void SROA::getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruth1c8db502012-09-15 11:43:14 +00003747 if (RequiresDomTree)
3748 AU.addRequired<DominatorTree>();
Chandler Carruth713aa942012-09-14 09:22:59 +00003749 AU.setPreservesCFG();
3750}