blob: dedbbde4f7b35975509d272e82304d2886f403bb [file] [log] [blame]
Chandler Carruth1b398ae2012-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 Carruthed0881b2012-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 Carruthe41e7b72012-12-10 08:28:39 +000034#include "llvm/Analysis/PtrUseVisitor.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000036#include "llvm/DIBuilder.h"
37#include "llvm/DebugInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000038#include "llvm/IR/Constants.h"
39#include "llvm/IR/DataLayout.h"
40#include "llvm/IR/DerivedTypes.h"
41#include "llvm/IR/Function.h"
42#include "llvm/IR/IRBuilder.h"
43#include "llvm/IR/Instructions.h"
44#include "llvm/IR/IntrinsicInst.h"
45#include "llvm/IR/LLVMContext.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000046#include "llvm/IR/Operator.h"
Chandler Carruthdbd69582012-11-30 03:08:41 +000047#include "llvm/InstVisitor.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000048#include "llvm/Pass.h"
Chandler Carruth70b44c52012-09-15 11:43:14 +000049#include "llvm/Support/CommandLine.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000050#include "llvm/Support/Debug.h"
51#include "llvm/Support/ErrorHandling.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000052#include "llvm/Support/MathExtras.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000053#include "llvm/Support/raw_ostream.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000054#include "llvm/Transforms/Utils/Local.h"
55#include "llvm/Transforms/Utils/PromoteMemToReg.h"
56#include "llvm/Transforms/Utils/SSAUpdater.h"
57using namespace llvm;
58
59STATISTIC(NumAllocasAnalyzed, "Number of allocas analyzed for replacement");
60STATISTIC(NumNewAllocas, "Number of new, smaller allocas introduced");
61STATISTIC(NumPromoted, "Number of allocas promoted to SSA values");
62STATISTIC(NumLoadsSpeculated, "Number of loads speculated to allow promotion");
63STATISTIC(NumDeleted, "Number of instructions deleted");
64STATISTIC(NumVectorized, "Number of vectorized aggregates");
65
Chandler Carruth70b44c52012-09-15 11:43:14 +000066/// Hidden option to force the pass to not use DomTree and mem2reg, instead
67/// forming SSA values through the SSAUpdater infrastructure.
68static cl::opt<bool>
69ForceSSAUpdater("force-ssa-updater", cl::init(false), cl::Hidden);
70
Chandler Carruth1b398ae2012-09-14 09:22:59 +000071namespace {
72/// \brief Alloca partitioning representation.
73///
74/// This class represents a partitioning of an alloca into slices, and
75/// information about the nature of uses of each slice of the alloca. The goal
76/// is that this information is sufficient to decide if and how to split the
77/// alloca apart and replace slices with scalars. It is also intended that this
Chandler Carruth93a21e72012-09-14 10:18:49 +000078/// structure can capture the relevant information needed both to decide about
Chandler Carruth1b398ae2012-09-14 09:22:59 +000079/// and to enact these transformations.
80class AllocaPartitioning {
81public:
82 /// \brief A common base class for representing a half-open byte range.
83 struct ByteRange {
84 /// \brief The beginning offset of the range.
85 uint64_t BeginOffset;
86
87 /// \brief The ending offset, not included in the range.
88 uint64_t EndOffset;
89
90 ByteRange() : BeginOffset(), EndOffset() {}
91 ByteRange(uint64_t BeginOffset, uint64_t EndOffset)
92 : BeginOffset(BeginOffset), EndOffset(EndOffset) {}
93
94 /// \brief Support for ordering ranges.
95 ///
96 /// This provides an ordering over ranges such that start offsets are
97 /// always increasing, and within equal start offsets, the end offsets are
Chandler Carruth93a21e72012-09-14 10:18:49 +000098 /// decreasing. Thus the spanning range comes first in a cluster with the
Chandler Carruth1b398ae2012-09-14 09:22:59 +000099 /// same start position.
100 bool operator<(const ByteRange &RHS) const {
101 if (BeginOffset < RHS.BeginOffset) return true;
102 if (BeginOffset > RHS.BeginOffset) return false;
103 if (EndOffset > RHS.EndOffset) return true;
104 return false;
105 }
106
107 /// \brief Support comparison with a single offset to allow binary searches.
Benjamin Kramer02a4dff2012-09-17 16:42:36 +0000108 friend bool operator<(const ByteRange &LHS, uint64_t RHSOffset) {
109 return LHS.BeginOffset < RHSOffset;
110 }
111
112 friend LLVM_ATTRIBUTE_UNUSED bool operator<(uint64_t LHSOffset,
113 const ByteRange &RHS) {
114 return LHSOffset < RHS.BeginOffset;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000115 }
116
117 bool operator==(const ByteRange &RHS) const {
118 return BeginOffset == RHS.BeginOffset && EndOffset == RHS.EndOffset;
119 }
120 bool operator!=(const ByteRange &RHS) const { return !operator==(RHS); }
121 };
122
123 /// \brief A partition of an alloca.
124 ///
125 /// This structure represents a contiguous partition of the alloca. These are
126 /// formed by examining the uses of the alloca. During formation, they may
127 /// overlap but once an AllocaPartitioning is built, the Partitions within it
128 /// are all disjoint.
129 struct Partition : public ByteRange {
130 /// \brief Whether this partition is splittable into smaller partitions.
131 ///
132 /// We flag partitions as splittable when they are formed entirely due to
Chandler Carruth93a21e72012-09-14 10:18:49 +0000133 /// accesses by trivially splittable operations such as memset and memcpy.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000134 bool IsSplittable;
135
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000136 /// \brief Test whether a partition has been marked as dead.
137 bool isDead() const {
138 if (BeginOffset == UINT64_MAX) {
139 assert(EndOffset == UINT64_MAX);
140 return true;
141 }
142 return false;
143 }
144
145 /// \brief Kill a partition.
146 /// This is accomplished by setting both its beginning and end offset to
147 /// the maximum possible value.
148 void kill() {
149 assert(!isDead() && "He's Dead, Jim!");
150 BeginOffset = EndOffset = UINT64_MAX;
151 }
152
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000153 Partition() : ByteRange(), IsSplittable() {}
154 Partition(uint64_t BeginOffset, uint64_t EndOffset, bool IsSplittable)
155 : ByteRange(BeginOffset, EndOffset), IsSplittable(IsSplittable) {}
156 };
157
158 /// \brief A particular use of a partition of the alloca.
159 ///
160 /// This structure is used to associate uses of a partition with it. They
161 /// mark the range of bytes which are referenced by a particular instruction,
162 /// and includes a handle to the user itself and the pointer value in use.
163 /// The bounds of these uses are determined by intersecting the bounds of the
164 /// memory use itself with a particular partition. As a consequence there is
Chandler Carruth93a21e72012-09-14 10:18:49 +0000165 /// intentionally overlap between various uses of the same partition.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000166 struct PartitionUse : public ByteRange {
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000167 /// \brief The use in question. Provides access to both user and used value.
Chandler Carruth6c3890b2012-10-02 18:57:13 +0000168 ///
169 /// Note that this may be null if the partition use is *dead*, that is, it
170 /// should be ignored.
171 Use *U;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000172
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000173 PartitionUse() : ByteRange(), U() {}
174 PartitionUse(uint64_t BeginOffset, uint64_t EndOffset, Use *U)
175 : ByteRange(BeginOffset, EndOffset), U(U) {}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000176 };
177
178 /// \brief Construct a partitioning of a particular alloca.
179 ///
180 /// Construction does most of the work for partitioning the alloca. This
181 /// performs the necessary walks of users and builds a partitioning from it.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000182 AllocaPartitioning(const DataLayout &TD, AllocaInst &AI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000183
184 /// \brief Test whether a pointer to the allocation escapes our analysis.
185 ///
186 /// If this is true, the partitioning is never fully built and should be
187 /// ignored.
188 bool isEscaped() const { return PointerEscapingInstr; }
189
190 /// \brief Support for iterating over the partitions.
191 /// @{
192 typedef SmallVectorImpl<Partition>::iterator iterator;
193 iterator begin() { return Partitions.begin(); }
194 iterator end() { return Partitions.end(); }
195
196 typedef SmallVectorImpl<Partition>::const_iterator const_iterator;
197 const_iterator begin() const { return Partitions.begin(); }
198 const_iterator end() const { return Partitions.end(); }
199 /// @}
200
201 /// \brief Support for iterating over and manipulating a particular
202 /// partition's uses.
203 ///
204 /// The iteration support provided for uses is more limited, but also
205 /// includes some manipulation routines to support rewriting the uses of
206 /// partitions during SROA.
207 /// @{
208 typedef SmallVectorImpl<PartitionUse>::iterator use_iterator;
209 use_iterator use_begin(unsigned Idx) { return Uses[Idx].begin(); }
210 use_iterator use_begin(const_iterator I) { return Uses[I - begin()].begin(); }
211 use_iterator use_end(unsigned Idx) { return Uses[Idx].end(); }
212 use_iterator use_end(const_iterator I) { return Uses[I - begin()].end(); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000213
214 typedef SmallVectorImpl<PartitionUse>::const_iterator const_use_iterator;
215 const_use_iterator use_begin(unsigned Idx) const { return Uses[Idx].begin(); }
216 const_use_iterator use_begin(const_iterator I) const {
217 return Uses[I - begin()].begin();
218 }
219 const_use_iterator use_end(unsigned Idx) const { return Uses[Idx].end(); }
220 const_use_iterator use_end(const_iterator I) const {
221 return Uses[I - begin()].end();
222 }
Chandler Carruth3903e052012-10-02 17:49:47 +0000223
224 unsigned use_size(unsigned Idx) const { return Uses[Idx].size(); }
225 unsigned use_size(const_iterator I) const { return Uses[I - begin()].size(); }
226 const PartitionUse &getUse(unsigned PIdx, unsigned UIdx) const {
227 return Uses[PIdx][UIdx];
228 }
229 const PartitionUse &getUse(const_iterator I, unsigned UIdx) const {
230 return Uses[I - begin()][UIdx];
231 }
232
233 void use_push_back(unsigned Idx, const PartitionUse &PU) {
234 Uses[Idx].push_back(PU);
235 }
236 void use_push_back(const_iterator I, const PartitionUse &PU) {
237 Uses[I - begin()].push_back(PU);
238 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000239 /// @}
240
241 /// \brief Allow iterating the dead users for this alloca.
242 ///
243 /// These are instructions which will never actually use the alloca as they
244 /// are outside the allocated range. They are safe to replace with undef and
245 /// delete.
246 /// @{
247 typedef SmallVectorImpl<Instruction *>::const_iterator dead_user_iterator;
248 dead_user_iterator dead_user_begin() const { return DeadUsers.begin(); }
249 dead_user_iterator dead_user_end() const { return DeadUsers.end(); }
250 /// @}
251
Chandler Carruth93a21e72012-09-14 10:18:49 +0000252 /// \brief Allow iterating the dead expressions referring to this alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000253 ///
254 /// These are operands which have cannot actually be used to refer to the
255 /// alloca as they are outside its range and the user doesn't correct for
256 /// that. These mostly consist of PHI node inputs and the like which we just
257 /// need to replace with undef.
258 /// @{
259 typedef SmallVectorImpl<Use *>::const_iterator dead_op_iterator;
260 dead_op_iterator dead_op_begin() const { return DeadOperands.begin(); }
261 dead_op_iterator dead_op_end() const { return DeadOperands.end(); }
262 /// @}
263
264 /// \brief MemTransferInst auxiliary data.
265 /// This struct provides some auxiliary data about memory transfer
266 /// intrinsics such as memcpy and memmove. These intrinsics can use two
267 /// different ranges within the same alloca, and provide other challenges to
268 /// correctly represent. We stash extra data to help us untangle this
269 /// after the partitioning is complete.
270 struct MemTransferOffsets {
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000271 /// The destination begin and end offsets when the destination is within
272 /// this alloca. If the end offset is zero the destination is not within
273 /// this alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000274 uint64_t DestBegin, DestEnd;
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000275
276 /// The source begin and end offsets when the source is within this alloca.
277 /// If the end offset is zero, the source is not within this alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000278 uint64_t SourceBegin, SourceEnd;
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000279
280 /// Flag for whether an alloca is splittable.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000281 bool IsSplittable;
282 };
283 MemTransferOffsets getMemTransferOffsets(MemTransferInst &II) const {
284 return MemTransferInstData.lookup(&II);
285 }
286
287 /// \brief Map from a PHI or select operand back to a partition.
288 ///
289 /// When manipulating PHI nodes or selects, they can use more than one
290 /// partition of an alloca. We store a special mapping to allow finding the
291 /// partition referenced by each of these operands, if any.
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000292 iterator findPartitionForPHIOrSelectOperand(Use *U) {
293 SmallDenseMap<Use *, std::pair<unsigned, unsigned> >::const_iterator MapIt
294 = PHIOrSelectOpMap.find(U);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000295 if (MapIt == PHIOrSelectOpMap.end())
296 return end();
297
298 return begin() + MapIt->second.first;
299 }
300
301 /// \brief Map from a PHI or select operand back to the specific use of
302 /// a partition.
303 ///
304 /// Similar to mapping these operands back to the partitions, this maps
305 /// directly to the use structure of that partition.
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000306 use_iterator findPartitionUseForPHIOrSelectOperand(Use *U) {
307 SmallDenseMap<Use *, std::pair<unsigned, unsigned> >::const_iterator MapIt
308 = PHIOrSelectOpMap.find(U);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000309 assert(MapIt != PHIOrSelectOpMap.end());
310 return Uses[MapIt->second.first].begin() + MapIt->second.second;
311 }
312
313 /// \brief Compute a common type among the uses of a particular partition.
314 ///
315 /// This routines walks all of the uses of a particular partition and tries
316 /// to find a common type between them. Untyped operations such as memset and
317 /// memcpy are ignored.
318 Type *getCommonType(iterator I) const;
319
Chandler Carruth25fb23d2012-09-14 10:18:51 +0000320#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000321 void print(raw_ostream &OS, const_iterator I, StringRef Indent = " ") const;
322 void printUsers(raw_ostream &OS, const_iterator I,
323 StringRef Indent = " ") const;
324 void print(raw_ostream &OS) const;
NAKAMURA Takumi4bbca0b2012-09-14 10:06:10 +0000325 void LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED dump(const_iterator I) const;
326 void LLVM_ATTRIBUTE_NOINLINE LLVM_ATTRIBUTE_USED dump() const;
Chandler Carruth25fb23d2012-09-14 10:18:51 +0000327#endif
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000328
329private:
330 template <typename DerivedT, typename RetT = void> class BuilderBase;
331 class PartitionBuilder;
332 friend class AllocaPartitioning::PartitionBuilder;
333 class UseBuilder;
334 friend class AllocaPartitioning::UseBuilder;
335
Chandler Carruthb7915f72012-11-20 10:23:07 +0000336#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000337 /// \brief Handle to alloca instruction to simplify method interfaces.
338 AllocaInst &AI;
Benjamin Kramer4622cd72012-09-14 13:08:09 +0000339#endif
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000340
341 /// \brief The instruction responsible for this alloca having no partitioning.
342 ///
343 /// When an instruction (potentially) escapes the pointer to the alloca, we
344 /// store a pointer to that here and abort trying to partition the alloca.
345 /// This will be null if the alloca is partitioned successfully.
346 Instruction *PointerEscapingInstr;
347
348 /// \brief The partitions of the alloca.
349 ///
350 /// We store a vector of the partitions over the alloca here. This vector is
351 /// sorted by increasing begin offset, and then by decreasing end offset. See
Chandler Carruth93a21e72012-09-14 10:18:49 +0000352 /// the Partition inner class for more details. Initially (during
353 /// construction) there are overlaps, but we form a disjoint sequence of
354 /// partitions while finishing construction and a fully constructed object is
355 /// expected to always have this as a disjoint space.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000356 SmallVector<Partition, 8> Partitions;
357
358 /// \brief The uses of the partitions.
359 ///
360 /// This is essentially a mapping from each partition to a list of uses of
361 /// that partition. The mapping is done with a Uses vector that has the exact
362 /// same number of entries as the partition vector. Each entry is itself
363 /// a vector of the uses.
364 SmallVector<SmallVector<PartitionUse, 2>, 8> Uses;
365
366 /// \brief Instructions which will become dead if we rewrite the alloca.
367 ///
368 /// Note that these are not separated by partition. This is because we expect
369 /// a partitioned alloca to be completely rewritten or not rewritten at all.
370 /// If rewritten, all these instructions can simply be removed and replaced
371 /// with undef as they come from outside of the allocated space.
372 SmallVector<Instruction *, 8> DeadUsers;
373
374 /// \brief Operands which will become dead if we rewrite the alloca.
375 ///
376 /// These are operands that in their particular use can be replaced with
377 /// undef when we rewrite the alloca. These show up in out-of-bounds inputs
378 /// to PHI nodes and the like. They aren't entirely dead (there might be
379 /// a GEP back into the bounds using it elsewhere) and nor is the PHI, but we
380 /// want to swap this particular input for undef to simplify the use lists of
381 /// the alloca.
382 SmallVector<Use *, 8> DeadOperands;
383
384 /// \brief The underlying storage for auxiliary memcpy and memset info.
385 SmallDenseMap<MemTransferInst *, MemTransferOffsets, 4> MemTransferInstData;
386
387 /// \brief A side datastructure used when building up the partitions and uses.
388 ///
389 /// This mapping is only really used during the initial building of the
390 /// partitioning so that we can retain information about PHI and select nodes
391 /// processed.
392 SmallDenseMap<Instruction *, std::pair<uint64_t, bool> > PHIOrSelectSizes;
393
394 /// \brief Auxiliary information for particular PHI or select operands.
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000395 SmallDenseMap<Use *, std::pair<unsigned, unsigned>, 4> PHIOrSelectOpMap;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000396
397 /// \brief A utility routine called from the constructor.
398 ///
399 /// This does what it says on the tin. It is the key of the alloca partition
400 /// splitting and merging. After it is called we have the desired disjoint
401 /// collection of partitions.
402 void splitAndMergePartitions();
403};
404}
405
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000406static Value *foldSelectInst(SelectInst &SI) {
407 // If the condition being selected on is a constant or the same value is
408 // being selected between, fold the select. Yes this does (rarely) happen
409 // early on.
410 if (ConstantInt *CI = dyn_cast<ConstantInt>(SI.getCondition()))
411 return SI.getOperand(1+CI->isZero());
Jakub Staszak3c6583a2013-02-19 22:14:45 +0000412 if (SI.getOperand(1) == SI.getOperand(2))
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000413 return SI.getOperand(1);
Jakub Staszak3c6583a2013-02-19 22:14:45 +0000414
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000415 return 0;
416}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000417
418/// \brief Builder for the alloca partitioning.
419///
420/// This class builds an alloca partitioning by recursively visiting the uses
421/// of an alloca and splitting the partitions for each load and store at each
422/// offset.
423class AllocaPartitioning::PartitionBuilder
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000424 : public PtrUseVisitor<PartitionBuilder> {
425 friend class PtrUseVisitor<PartitionBuilder>;
426 friend class InstVisitor<PartitionBuilder>;
427 typedef PtrUseVisitor<PartitionBuilder> Base;
428
429 const uint64_t AllocSize;
430 AllocaPartitioning &P;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000431
432 SmallDenseMap<Instruction *, unsigned> MemTransferPartitionMap;
433
434public:
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000435 PartitionBuilder(const DataLayout &DL, AllocaInst &AI, AllocaPartitioning &P)
436 : PtrUseVisitor<PartitionBuilder>(DL),
437 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())),
438 P(P) {}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000439
440private:
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000441 void insertUse(Instruction &I, const APInt &Offset, uint64_t Size,
Chandler Carruth97121172012-09-16 19:39:50 +0000442 bool IsSplittable = false) {
Chandler Carruthf02b8bf2012-12-03 10:59:55 +0000443 // Completely skip uses which have a zero size or start either before or
444 // past the end of the allocation.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000445 if (Size == 0 || Offset.isNegative() || Offset.uge(AllocSize)) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000446 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte use @" << Offset
Chandler Carruthf02b8bf2012-12-03 10:59:55 +0000447 << " which has zero size or starts outside of the "
448 << AllocSize << " byte alloca:\n"
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000449 << " alloca: " << P.AI << "\n"
450 << " use: " << I << "\n");
451 return;
452 }
453
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000454 uint64_t BeginOffset = Offset.getZExtValue();
455 uint64_t EndOffset = BeginOffset + Size;
Chandler Carruthe7a1ba52012-09-23 11:43:14 +0000456
457 // Clamp the end offset to the end of the allocation. Note that this is
458 // formulated to handle even the case where "BeginOffset + Size" overflows.
Chandler Carruth3e994a22012-11-20 10:02:19 +0000459 // NOTE! This may appear superficially to be something we could ignore
460 // entirely, but that is not so! There may be PHI-node uses where some
461 // instructions are dead but not others. We can't completely ignore the
462 // PHI node, and so have to record at least the information here.
Chandler Carruthe7a1ba52012-09-23 11:43:14 +0000463 assert(AllocSize >= BeginOffset); // Established above.
464 if (Size > AllocSize - BeginOffset) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000465 DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @" << Offset
466 << " to remain within the " << AllocSize << " byte alloca:\n"
467 << " alloca: " << P.AI << "\n"
468 << " use: " << I << "\n");
469 EndOffset = AllocSize;
470 }
471
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000472 Partition New(BeginOffset, EndOffset, IsSplittable);
473 P.Partitions.push_back(New);
474 }
475
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000476 void handleLoadOrStore(Type *Ty, Instruction &I, const APInt &Offset,
Chandler Carruth58d05562012-10-25 04:37:07 +0000477 bool IsVolatile) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000478 uint64_t Size = DL.getTypeStoreSize(Ty);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000479
480 // If this memory access can be shown to *statically* extend outside the
481 // bounds of of the allocation, it's behavior is undefined, so simply
482 // ignore it. Note that this is more strict than the generic clamping
483 // behavior of insertUse. We also try to handle cases which might run the
484 // risk of overflow.
485 // FIXME: We should instead consider the pointer to have escaped if this
486 // function is being instrumented for addressing bugs or race conditions.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000487 if (Offset.isNegative() || Size > AllocSize ||
488 Offset.ugt(AllocSize - Size)) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000489 DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte "
490 << (isa<LoadInst>(I) ? "load" : "store") << " @" << Offset
491 << " which extends past the end of the " << AllocSize
492 << " byte alloca:\n"
493 << " alloca: " << P.AI << "\n"
494 << " use: " << I << "\n");
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000495 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000496 }
497
Chandler Carruth58d05562012-10-25 04:37:07 +0000498 // We allow splitting of loads and stores where the type is an integer type
499 // and which cover the entire alloca. Such integer loads and stores
500 // often require decomposition into fine grained loads and stores.
501 bool IsSplittable = false;
502 if (IntegerType *ITy = dyn_cast<IntegerType>(Ty))
503 IsSplittable = !IsVolatile && ITy->getBitWidth() == AllocSize*8;
504
505 insertUse(I, Offset, Size, IsSplittable);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000506 }
507
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000508 void visitLoadInst(LoadInst &LI) {
Chandler Carruth42cb9cb2012-09-18 12:57:43 +0000509 assert((!LI.isSimple() || LI.getType()->isSingleValueType()) &&
510 "All simple FCA loads should have been pre-split");
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000511
512 if (!IsOffsetKnown)
513 return PI.setAborted(&LI);
514
Chandler Carruth58d05562012-10-25 04:37:07 +0000515 return handleLoadOrStore(LI.getType(), LI, Offset, LI.isVolatile());
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000516 }
517
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000518 void visitStoreInst(StoreInst &SI) {
Chandler Carruth42cb9cb2012-09-18 12:57:43 +0000519 Value *ValOp = SI.getValueOperand();
520 if (ValOp == *U)
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000521 return PI.setEscapedAndAborted(&SI);
522 if (!IsOffsetKnown)
523 return PI.setAborted(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000524
Chandler Carruth42cb9cb2012-09-18 12:57:43 +0000525 assert((!SI.isSimple() || ValOp->getType()->isSingleValueType()) &&
526 "All simple FCA stores should have been pre-split");
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000527 handleLoadOrStore(ValOp->getType(), SI, Offset, SI.isVolatile());
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000528 }
529
530
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000531 void visitMemSetInst(MemSetInst &II) {
Chandler Carruthb0de6dd2012-09-14 10:26:34 +0000532 assert(II.getRawDest() == *U && "Pointer use is not the destination?");
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000533 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000534 if ((Length && Length->getValue() == 0) ||
535 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
536 // Zero-length mem transfer intrinsics can be ignored entirely.
537 return;
538
539 if (!IsOffsetKnown)
540 return PI.setAborted(&II);
541
542 insertUse(II, Offset,
543 Length ? Length->getLimitedValue()
544 : AllocSize - Offset.getLimitedValue(),
545 (bool)Length);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000546 }
547
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000548 void visitMemTransferInst(MemTransferInst &II) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000549 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000550 if ((Length && Length->getValue() == 0) ||
551 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000552 // Zero-length mem transfer intrinsics can be ignored entirely.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000553 return;
554
555 if (!IsOffsetKnown)
556 return PI.setAborted(&II);
557
558 uint64_t RawOffset = Offset.getLimitedValue();
559 uint64_t Size = Length ? Length->getLimitedValue()
560 : AllocSize - RawOffset;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000561
562 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
563
564 // Only intrinsics with a constant length can be split.
565 Offsets.IsSplittable = Length;
566
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000567 if (*U == II.getRawDest()) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000568 Offsets.DestBegin = RawOffset;
569 Offsets.DestEnd = RawOffset + Size;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000570 }
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000571 if (*U == II.getRawSource()) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000572 Offsets.SourceBegin = RawOffset;
573 Offsets.SourceEnd = RawOffset + Size;
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000574 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000575
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000576 // If we have set up end offsets for both the source and the destination,
577 // we have found both sides of this transfer pointing at the same alloca.
578 bool SeenBothEnds = Offsets.SourceEnd && Offsets.DestEnd;
579 if (SeenBothEnds && II.getRawDest() != II.getRawSource()) {
580 unsigned PrevIdx = MemTransferPartitionMap[&II];
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000581
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000582 // Check if the begin offsets match and this is a non-volatile transfer.
583 // In that case, we can completely elide the transfer.
584 if (!II.isVolatile() && Offsets.SourceBegin == Offsets.DestBegin) {
585 P.Partitions[PrevIdx].kill();
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000586 return;
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000587 }
588
589 // Otherwise we have an offset transfer within the same alloca. We can't
590 // split those.
591 P.Partitions[PrevIdx].IsSplittable = Offsets.IsSplittable = false;
592 } else if (SeenBothEnds) {
593 // Handle the case where this exact use provides both ends of the
594 // operation.
595 assert(II.getRawDest() == II.getRawSource());
596
597 // For non-volatile transfers this is a no-op.
598 if (!II.isVolatile())
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000599 return;
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000600
601 // Otherwise just suppress splitting.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000602 Offsets.IsSplittable = false;
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000603 }
604
605
606 // Insert the use now that we've fixed up the splittable nature.
607 insertUse(II, Offset, Size, Offsets.IsSplittable);
608
609 // Setup the mapping from intrinsic to partition of we've not seen both
610 // ends of this transfer.
611 if (!SeenBothEnds) {
612 unsigned NewIdx = P.Partitions.size() - 1;
613 bool Inserted
614 = MemTransferPartitionMap.insert(std::make_pair(&II, NewIdx)).second;
615 assert(Inserted &&
616 "Already have intrinsic in map but haven't seen both ends");
NAKAMURA Takumi605fe782012-10-05 13:56:23 +0000617 (void)Inserted;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000618 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000619 }
620
621 // Disable SRoA for any intrinsics except for lifetime invariants.
Jakub Staszak086f6cd2013-02-19 22:02:21 +0000622 // FIXME: What about debug intrinsics? This matches old behavior, but
Chandler Carruth4b40e002012-09-14 10:26:36 +0000623 // doesn't make sense.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000624 void visitIntrinsicInst(IntrinsicInst &II) {
625 if (!IsOffsetKnown)
626 return PI.setAborted(&II);
627
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000628 if (II.getIntrinsicID() == Intrinsic::lifetime_start ||
629 II.getIntrinsicID() == Intrinsic::lifetime_end) {
630 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000631 uint64_t Size = std::min(AllocSize - Offset.getLimitedValue(),
632 Length->getLimitedValue());
Chandler Carruth97121172012-09-16 19:39:50 +0000633 insertUse(II, Offset, Size, true);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000634 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000635 }
636
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000637 Base::visitIntrinsicInst(II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000638 }
639
640 Instruction *hasUnsafePHIOrSelectUse(Instruction *Root, uint64_t &Size) {
641 // We consider any PHI or select that results in a direct load or store of
642 // the same offset to be a viable use for partitioning purposes. These uses
643 // are considered unsplittable and the size is the maximum loaded or stored
644 // size.
645 SmallPtrSet<Instruction *, 4> Visited;
646 SmallVector<std::pair<Instruction *, Instruction *>, 4> Uses;
647 Visited.insert(Root);
648 Uses.push_back(std::make_pair(cast<Instruction>(*U), Root));
Chandler Carruth8b907e82012-09-25 10:03:40 +0000649 // If there are no loads or stores, the access is dead. We mark that as
650 // a size zero access.
651 Size = 0;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000652 do {
653 Instruction *I, *UsedI;
654 llvm::tie(UsedI, I) = Uses.pop_back_val();
655
656 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000657 Size = std::max(Size, DL.getTypeStoreSize(LI->getType()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000658 continue;
659 }
660 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
661 Value *Op = SI->getOperand(0);
662 if (Op == UsedI)
663 return SI;
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000664 Size = std::max(Size, DL.getTypeStoreSize(Op->getType()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000665 continue;
666 }
667
668 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
669 if (!GEP->hasAllZeroIndices())
670 return GEP;
671 } else if (!isa<BitCastInst>(I) && !isa<PHINode>(I) &&
672 !isa<SelectInst>(I)) {
673 return I;
674 }
675
676 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE;
677 ++UI)
678 if (Visited.insert(cast<Instruction>(*UI)))
679 Uses.push_back(std::make_pair(I, cast<Instruction>(*UI)));
680 } while (!Uses.empty());
681
682 return 0;
683 }
684
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000685 void visitPHINode(PHINode &PN) {
686 if (PN.use_empty())
687 return;
688 if (!IsOffsetKnown)
689 return PI.setAborted(&PN);
690
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000691 // See if we already have computed info on this node.
692 std::pair<uint64_t, bool> &PHIInfo = P.PHIOrSelectSizes[&PN];
693 if (PHIInfo.first) {
694 PHIInfo.second = true;
Chandler Carruth97121172012-09-16 19:39:50 +0000695 insertUse(PN, Offset, PHIInfo.first);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000696 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000697 }
698
699 // Check for an unsafe use of the PHI node.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000700 if (Instruction *UnsafeI = hasUnsafePHIOrSelectUse(&PN, PHIInfo.first))
701 return PI.setAborted(UnsafeI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000702
Chandler Carruth97121172012-09-16 19:39:50 +0000703 insertUse(PN, Offset, PHIInfo.first);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000704 }
705
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000706 void visitSelectInst(SelectInst &SI) {
707 if (SI.use_empty())
708 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000709 if (Value *Result = foldSelectInst(SI)) {
710 if (Result == *U)
711 // If the result of the constant fold will be the pointer, recurse
712 // through the select as if we had RAUW'ed it.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000713 enqueueUsers(SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000714
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000715 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000716 }
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000717 if (!IsOffsetKnown)
718 return PI.setAborted(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000719
720 // See if we already have computed info on this node.
721 std::pair<uint64_t, bool> &SelectInfo = P.PHIOrSelectSizes[&SI];
722 if (SelectInfo.first) {
723 SelectInfo.second = true;
Chandler Carruth97121172012-09-16 19:39:50 +0000724 insertUse(SI, Offset, SelectInfo.first);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000725 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000726 }
727
728 // Check for an unsafe use of the PHI node.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000729 if (Instruction *UnsafeI = hasUnsafePHIOrSelectUse(&SI, SelectInfo.first))
730 return PI.setAborted(UnsafeI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000731
Chandler Carruth97121172012-09-16 19:39:50 +0000732 insertUse(SI, Offset, SelectInfo.first);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000733 }
734
735 /// \brief Disable SROA entirely if there are unhandled users of the alloca.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000736 void visitInstruction(Instruction &I) {
737 PI.setAborted(&I);
738 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000739};
740
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000741/// \brief Use adder for the alloca partitioning.
742///
Chandler Carruth93a21e72012-09-14 10:18:49 +0000743/// This class adds the uses of an alloca to all of the partitions which they
744/// use. For splittable partitions, this can end up doing essentially a linear
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000745/// walk of the partitions, but the number of steps remains bounded by the
746/// total result instruction size:
747/// - The number of partitions is a result of the number unsplittable
748/// instructions using the alloca.
749/// - The number of users of each partition is at worst the total number of
750/// splittable instructions using the alloca.
751/// Thus we will produce N * M instructions in the end, where N are the number
752/// of unsplittable uses and M are the number of splittable. This visitor does
753/// the exact same number of updates to the partitioning.
754///
755/// In the more common case, this visitor will leverage the fact that the
756/// partition space is pre-sorted, and do a logarithmic search for the
757/// partition needed, making the total visit a classical ((N + M) * log(N))
758/// complexity operation.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000759class AllocaPartitioning::UseBuilder : public PtrUseVisitor<UseBuilder> {
760 friend class PtrUseVisitor<UseBuilder>;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000761 friend class InstVisitor<UseBuilder>;
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000762 typedef PtrUseVisitor<UseBuilder> Base;
763
764 const uint64_t AllocSize;
765 AllocaPartitioning &P;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000766
767 /// \brief Set to de-duplicate dead instructions found in the use walk.
768 SmallPtrSet<Instruction *, 4> VisitedDeadInsts;
769
770public:
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000771 UseBuilder(const DataLayout &TD, AllocaInst &AI, AllocaPartitioning &P)
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000772 : PtrUseVisitor<UseBuilder>(TD),
773 AllocSize(TD.getTypeAllocSize(AI.getAllocatedType())),
774 P(P) {}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000775
776private:
777 void markAsDead(Instruction &I) {
778 if (VisitedDeadInsts.insert(&I))
779 P.DeadUsers.push_back(&I);
780 }
781
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000782 void insertUse(Instruction &User, const APInt &Offset, uint64_t Size) {
Chandler Carruth8b907e82012-09-25 10:03:40 +0000783 // If the use has a zero size or extends outside of the allocation, record
784 // it as a dead use for elimination later.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000785 if (Size == 0 || Offset.isNegative() || Offset.uge(AllocSize))
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000786 return markAsDead(User);
787
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000788 uint64_t BeginOffset = Offset.getZExtValue();
789 uint64_t EndOffset = BeginOffset + Size;
Chandler Carruthe7a1ba52012-09-23 11:43:14 +0000790
791 // Clamp the end offset to the end of the allocation. Note that this is
792 // formulated to handle even the case where "BeginOffset + Size" overflows.
793 assert(AllocSize >= BeginOffset); // Established above.
794 if (Size > AllocSize - BeginOffset)
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000795 EndOffset = AllocSize;
796
797 // NB: This only works if we have zero overlapping partitions.
798 iterator B = std::lower_bound(P.begin(), P.end(), BeginOffset);
799 if (B != P.begin() && llvm::prior(B)->EndOffset > BeginOffset)
800 B = llvm::prior(B);
801 for (iterator I = B, E = P.end(); I != E && I->BeginOffset < EndOffset;
802 ++I) {
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000803 PartitionUse NewPU(std::max(I->BeginOffset, BeginOffset),
804 std::min(I->EndOffset, EndOffset), U);
805 P.use_push_back(I, NewPU);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000806 if (isa<PHINode>(U->getUser()) || isa<SelectInst>(U->getUser()))
Chandler Carruth54e8f0b2012-10-01 01:49:22 +0000807 P.PHIOrSelectOpMap[U]
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000808 = std::make_pair(I - P.begin(), P.Uses[I - P.begin()].size() - 1);
809 }
810 }
811
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000812 void handleLoadOrStore(Type *Ty, Instruction &I, const APInt &Offset) {
813 uint64_t Size = DL.getTypeStoreSize(Ty);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000814
815 // If this memory access can be shown to *statically* extend outside the
816 // bounds of of the allocation, it's behavior is undefined, so simply
817 // ignore it. Note that this is more strict than the generic clamping
818 // behavior of insertUse.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000819 if (Offset.isNegative() || Size > AllocSize ||
820 Offset.ugt(AllocSize - Size))
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000821 return markAsDead(I);
822
Chandler Carruth97121172012-09-16 19:39:50 +0000823 insertUse(I, Offset, Size);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000824 }
825
826 void visitBitCastInst(BitCastInst &BC) {
827 if (BC.use_empty())
828 return markAsDead(BC);
829
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000830 return Base::visitBitCastInst(BC);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000831 }
832
833 void visitGetElementPtrInst(GetElementPtrInst &GEPI) {
834 if (GEPI.use_empty())
835 return markAsDead(GEPI);
836
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000837 return Base::visitGetElementPtrInst(GEPI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000838 }
839
840 void visitLoadInst(LoadInst &LI) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000841 assert(IsOffsetKnown);
Chandler Carruth97121172012-09-16 19:39:50 +0000842 handleLoadOrStore(LI.getType(), LI, Offset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000843 }
844
845 void visitStoreInst(StoreInst &SI) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000846 assert(IsOffsetKnown);
Chandler Carruth97121172012-09-16 19:39:50 +0000847 handleLoadOrStore(SI.getOperand(0)->getType(), SI, Offset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000848 }
849
850 void visitMemSetInst(MemSetInst &II) {
851 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000852 if ((Length && Length->getValue() == 0) ||
853 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
854 return markAsDead(II);
855
856 assert(IsOffsetKnown);
857 insertUse(II, Offset, Length ? Length->getLimitedValue()
858 : AllocSize - Offset.getLimitedValue());
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000859 }
860
861 void visitMemTransferInst(MemTransferInst &II) {
862 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000863 if ((Length && Length->getValue() == 0) ||
864 (IsOffsetKnown && !Offset.isNegative() && Offset.uge(AllocSize)))
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000865 return markAsDead(II);
866
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000867 assert(IsOffsetKnown);
868 uint64_t Size = Length ? Length->getLimitedValue()
869 : AllocSize - Offset.getLimitedValue();
870
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000871 MemTransferOffsets &Offsets = P.MemTransferInstData[&II];
872 if (!II.isVolatile() && Offsets.DestEnd && Offsets.SourceEnd &&
873 Offsets.DestBegin == Offsets.SourceBegin)
874 return markAsDead(II); // Skip identity transfers without side-effects.
875
Chandler Carruth97121172012-09-16 19:39:50 +0000876 insertUse(II, Offset, Size);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000877 }
878
879 void visitIntrinsicInst(IntrinsicInst &II) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000880 assert(IsOffsetKnown);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000881 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
882 II.getIntrinsicID() == Intrinsic::lifetime_end);
883
884 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000885 insertUse(II, Offset, std::min(Length->getLimitedValue(),
886 AllocSize - Offset.getLimitedValue()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000887 }
888
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000889 void insertPHIOrSelect(Instruction &User, const APInt &Offset) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000890 uint64_t Size = P.PHIOrSelectSizes.lookup(&User).first;
891
892 // For PHI and select operands outside the alloca, we can't nuke the entire
893 // phi or select -- the other side might still be relevant, so we special
894 // case them here and use a separate structure to track the operands
895 // themselves which should be replaced with undef.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000896 if ((Offset.isNegative() && Offset.uge(Size)) ||
897 (!Offset.isNegative() && Offset.uge(AllocSize))) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000898 P.DeadOperands.push_back(U);
899 return;
900 }
901
Chandler Carruth97121172012-09-16 19:39:50 +0000902 insertUse(User, Offset, Size);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000903 }
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000904
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000905 void visitPHINode(PHINode &PN) {
906 if (PN.use_empty())
907 return markAsDead(PN);
908
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000909 assert(IsOffsetKnown);
Chandler Carruth97121172012-09-16 19:39:50 +0000910 insertPHIOrSelect(PN, Offset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000911 }
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000912
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000913 void visitSelectInst(SelectInst &SI) {
914 if (SI.use_empty())
915 return markAsDead(SI);
916
917 if (Value *Result = foldSelectInst(SI)) {
918 if (Result == *U)
919 // If the result of the constant fold will be the pointer, recurse
920 // through the select as if we had RAUW'ed it.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000921 enqueueUsers(SI);
Chandler Carruth225d4bd2012-09-21 23:36:40 +0000922 else
923 // Otherwise the operand to the select is dead, and we can replace it
924 // with undef.
925 P.DeadOperands.push_back(U);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000926
927 return;
928 }
929
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000930 assert(IsOffsetKnown);
Chandler Carruth97121172012-09-16 19:39:50 +0000931 insertPHIOrSelect(SI, Offset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000932 }
933
934 /// \brief Unreachable, we've already visited the alloca once.
935 void visitInstruction(Instruction &I) {
936 llvm_unreachable("Unhandled instruction in use builder.");
937 }
938};
939
940void AllocaPartitioning::splitAndMergePartitions() {
941 size_t NumDeadPartitions = 0;
942
943 // Track the range of splittable partitions that we pass when accumulating
944 // overlapping unsplittable partitions.
945 uint64_t SplitEndOffset = 0ull;
946
947 Partition New(0ull, 0ull, false);
948
949 for (unsigned i = 0, j = i, e = Partitions.size(); i != e; i = j) {
950 ++j;
951
952 if (!Partitions[i].IsSplittable || New.BeginOffset == New.EndOffset) {
953 assert(New.BeginOffset == New.EndOffset);
954 New = Partitions[i];
955 } else {
956 assert(New.IsSplittable);
957 New.EndOffset = std::max(New.EndOffset, Partitions[i].EndOffset);
958 }
959 assert(New.BeginOffset != New.EndOffset);
960
961 // Scan the overlapping partitions.
962 while (j != e && New.EndOffset > Partitions[j].BeginOffset) {
963 // If the new partition we are forming is splittable, stop at the first
964 // unsplittable partition.
965 if (New.IsSplittable && !Partitions[j].IsSplittable)
966 break;
967
968 // Grow the new partition to include any equally splittable range. 'j' is
969 // always equally splittable when New is splittable, but when New is not
970 // splittable, we may subsume some (or part of some) splitable partition
971 // without growing the new one.
972 if (New.IsSplittable == Partitions[j].IsSplittable) {
973 New.EndOffset = std::max(New.EndOffset, Partitions[j].EndOffset);
974 } else {
975 assert(!New.IsSplittable);
976 assert(Partitions[j].IsSplittable);
977 SplitEndOffset = std::max(SplitEndOffset, Partitions[j].EndOffset);
978 }
979
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000980 Partitions[j].kill();
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000981 ++NumDeadPartitions;
982 ++j;
983 }
984
985 // If the new partition is splittable, chop off the end as soon as the
986 // unsplittable subsequent partition starts and ensure we eventually cover
987 // the splittable area.
988 if (j != e && New.IsSplittable) {
989 SplitEndOffset = std::max(SplitEndOffset, New.EndOffset);
990 New.EndOffset = std::min(New.EndOffset, Partitions[j].BeginOffset);
991 }
992
993 // Add the new partition if it differs from the original one and is
994 // non-empty. We can end up with an empty partition here if it was
995 // splittable but there is an unsplittable one that starts at the same
996 // offset.
997 if (New != Partitions[i]) {
998 if (New.BeginOffset != New.EndOffset)
999 Partitions.push_back(New);
1000 // Mark the old one for removal.
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00001001 Partitions[i].kill();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001002 ++NumDeadPartitions;
1003 }
1004
1005 New.BeginOffset = New.EndOffset;
1006 if (!New.IsSplittable) {
1007 New.EndOffset = std::max(New.EndOffset, SplitEndOffset);
1008 if (j != e && !Partitions[j].IsSplittable)
1009 New.EndOffset = std::min(New.EndOffset, Partitions[j].BeginOffset);
1010 New.IsSplittable = true;
1011 // If there is a trailing splittable partition which won't be fused into
1012 // the next splittable partition go ahead and add it onto the partitions
1013 // list.
1014 if (New.BeginOffset < New.EndOffset &&
1015 (j == e || !Partitions[j].IsSplittable ||
1016 New.EndOffset < Partitions[j].BeginOffset)) {
1017 Partitions.push_back(New);
1018 New.BeginOffset = New.EndOffset = 0ull;
1019 }
1020 }
1021 }
1022
1023 // Re-sort the partitions now that they have been split and merged into
1024 // disjoint set of partitions. Also remove any of the dead partitions we've
1025 // replaced in the process.
1026 std::sort(Partitions.begin(), Partitions.end());
1027 if (NumDeadPartitions) {
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00001028 assert(Partitions.back().isDead());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001029 assert((ptrdiff_t)NumDeadPartitions ==
1030 std::count(Partitions.begin(), Partitions.end(), Partitions.back()));
1031 }
1032 Partitions.erase(Partitions.end() - NumDeadPartitions, Partitions.end());
1033}
1034
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001035AllocaPartitioning::AllocaPartitioning(const DataLayout &TD, AllocaInst &AI)
Benjamin Kramer4622cd72012-09-14 13:08:09 +00001036 :
Chandler Carruthb7915f72012-11-20 10:23:07 +00001037#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Benjamin Kramer4622cd72012-09-14 13:08:09 +00001038 AI(AI),
1039#endif
1040 PointerEscapingInstr(0) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001041 PartitionBuilder PB(TD, AI, *this);
Chandler Carruthe41e7b72012-12-10 08:28:39 +00001042 PartitionBuilder::PtrInfo PtrI = PB.visitPtr(AI);
1043 if (PtrI.isEscaped() || PtrI.isAborted()) {
1044 // FIXME: We should sink the escape vs. abort info into the caller nicely,
1045 // possibly by just storing the PtrInfo in the AllocaPartitioning.
1046 PointerEscapingInstr = PtrI.getEscapingInst() ? PtrI.getEscapingInst()
1047 : PtrI.getAbortingInst();
1048 assert(PointerEscapingInstr && "Did not track a bad instruction");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001049 return;
Chandler Carruthe41e7b72012-12-10 08:28:39 +00001050 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001051
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00001052 // Sort the uses. This arranges for the offsets to be in ascending order,
1053 // and the sizes to be in descending order.
1054 std::sort(Partitions.begin(), Partitions.end());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001055
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00001056 // Remove any partitions from the back which are marked as dead.
1057 while (!Partitions.empty() && Partitions.back().isDead())
1058 Partitions.pop_back();
1059
1060 if (Partitions.size() > 1) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001061 // Intersect splittability for all partitions with equal offsets and sizes.
1062 // Then remove all but the first so that we have a sequence of non-equal but
1063 // potentially overlapping partitions.
1064 for (iterator I = Partitions.begin(), J = I, E = Partitions.end(); I != E;
1065 I = J) {
1066 ++J;
1067 while (J != E && *I == *J) {
1068 I->IsSplittable &= J->IsSplittable;
1069 ++J;
1070 }
1071 }
1072 Partitions.erase(std::unique(Partitions.begin(), Partitions.end()),
1073 Partitions.end());
1074
1075 // Split splittable and merge unsplittable partitions into a disjoint set
1076 // of partitions over the used space of the allocation.
1077 splitAndMergePartitions();
1078 }
1079
1080 // Now build up the user lists for each of these disjoint partitions by
1081 // re-walking the recursive users of the alloca.
1082 Uses.resize(Partitions.size());
1083 UseBuilder UB(TD, AI, *this);
Chandler Carruthe41e7b72012-12-10 08:28:39 +00001084 PtrI = UB.visitPtr(AI);
1085 assert(!PtrI.isEscaped() && "Previously analyzed pointer now escapes!");
1086 assert(!PtrI.isAborted() && "Early aborted the visit of the pointer.");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001087}
1088
1089Type *AllocaPartitioning::getCommonType(iterator I) const {
1090 Type *Ty = 0;
1091 for (const_use_iterator UI = use_begin(I), UE = use_end(I); UI != UE; ++UI) {
Chandler Carruth6c3890b2012-10-02 18:57:13 +00001092 if (!UI->U)
1093 continue; // Skip dead uses.
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00001094 if (isa<IntrinsicInst>(*UI->U->getUser()))
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001095 continue;
1096 if (UI->BeginOffset != I->BeginOffset || UI->EndOffset != I->EndOffset)
Chandler Carruthd356fd02012-09-18 17:49:37 +00001097 continue;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001098
1099 Type *UserTy = 0;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00001100 if (LoadInst *LI = dyn_cast<LoadInst>(UI->U->getUser())) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001101 UserTy = LI->getType();
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00001102 } else if (StoreInst *SI = dyn_cast<StoreInst>(UI->U->getUser())) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001103 UserTy = SI->getValueOperand()->getType();
Chandler Carruth58d05562012-10-25 04:37:07 +00001104 } else {
1105 return 0; // Bail if we have weird uses.
1106 }
1107
1108 if (IntegerType *ITy = dyn_cast<IntegerType>(UserTy)) {
1109 // If the type is larger than the partition, skip it. We only encounter
1110 // this for split integer operations where we want to use the type of the
1111 // entity causing the split.
1112 if (ITy->getBitWidth() > (I->EndOffset - I->BeginOffset)*8)
1113 continue;
1114
1115 // If we have found an integer type use covering the alloca, use that
1116 // regardless of the other types, as integers are often used for a "bucket
1117 // of bits" type.
1118 return ITy;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001119 }
1120
1121 if (Ty && Ty != UserTy)
1122 return 0;
1123
1124 Ty = UserTy;
1125 }
1126 return Ty;
1127}
1128
Chandler Carruth25fb23d2012-09-14 10:18:51 +00001129#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1130
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001131void AllocaPartitioning::print(raw_ostream &OS, const_iterator I,
1132 StringRef Indent) const {
1133 OS << Indent << "partition #" << (I - begin())
1134 << " [" << I->BeginOffset << "," << I->EndOffset << ")"
1135 << (I->IsSplittable ? " (splittable)" : "")
1136 << (Uses[I - begin()].empty() ? " (zero uses)" : "")
1137 << "\n";
1138}
1139
1140void AllocaPartitioning::printUsers(raw_ostream &OS, const_iterator I,
1141 StringRef Indent) const {
Jakub Staszak3c6583a2013-02-19 22:14:45 +00001142 for (const_use_iterator UI = use_begin(I), UE = use_end(I); UI != UE; ++UI) {
Chandler Carruth6c3890b2012-10-02 18:57:13 +00001143 if (!UI->U)
1144 continue; // Skip dead uses.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001145 OS << Indent << " [" << UI->BeginOffset << "," << UI->EndOffset << ") "
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00001146 << "used by: " << *UI->U->getUser() << "\n";
1147 if (MemTransferInst *II = dyn_cast<MemTransferInst>(UI->U->getUser())) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001148 const MemTransferOffsets &MTO = MemTransferInstData.lookup(II);
1149 bool IsDest;
1150 if (!MTO.IsSplittable)
1151 IsDest = UI->BeginOffset == MTO.DestBegin;
1152 else
1153 IsDest = MTO.DestBegin != 0u;
1154 OS << Indent << " (original " << (IsDest ? "dest" : "source") << ": "
1155 << "[" << (IsDest ? MTO.DestBegin : MTO.SourceBegin)
1156 << "," << (IsDest ? MTO.DestEnd : MTO.SourceEnd) << ")\n";
1157 }
1158 }
1159}
1160
1161void AllocaPartitioning::print(raw_ostream &OS) const {
1162 if (PointerEscapingInstr) {
1163 OS << "No partitioning for alloca: " << AI << "\n"
1164 << " A pointer to this alloca escaped by:\n"
1165 << " " << *PointerEscapingInstr << "\n";
1166 return;
1167 }
1168
1169 OS << "Partitioning of alloca: " << AI << "\n";
Jakub Staszakae2fd9c2013-02-19 22:17:58 +00001170 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001171 print(OS, I);
1172 printUsers(OS, I);
1173 }
1174}
1175
1176void AllocaPartitioning::dump(const_iterator I) const { print(dbgs(), I); }
1177void AllocaPartitioning::dump() const { print(dbgs()); }
1178
Chandler Carruth25fb23d2012-09-14 10:18:51 +00001179#endif // !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
1180
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001181
1182namespace {
Chandler Carruth70b44c52012-09-15 11:43:14 +00001183/// \brief Implementation of LoadAndStorePromoter for promoting allocas.
1184///
1185/// This subclass of LoadAndStorePromoter adds overrides to handle promoting
1186/// the loads and stores of an alloca instruction, as well as updating its
1187/// debug information. This is used when a domtree is unavailable and thus
1188/// mem2reg in its full form can't be used to handle promotion of allocas to
1189/// scalar values.
1190class AllocaPromoter : public LoadAndStorePromoter {
1191 AllocaInst &AI;
1192 DIBuilder &DIB;
1193
1194 SmallVector<DbgDeclareInst *, 4> DDIs;
1195 SmallVector<DbgValueInst *, 4> DVIs;
1196
1197public:
1198 AllocaPromoter(const SmallVectorImpl<Instruction*> &Insts, SSAUpdater &S,
1199 AllocaInst &AI, DIBuilder &DIB)
1200 : LoadAndStorePromoter(Insts, S), AI(AI), DIB(DIB) {}
1201
1202 void run(const SmallVectorImpl<Instruction*> &Insts) {
1203 // Remember which alloca we're promoting (for isInstInList).
1204 if (MDNode *DebugNode = MDNode::getIfExists(AI.getContext(), &AI)) {
1205 for (Value::use_iterator UI = DebugNode->use_begin(),
1206 UE = DebugNode->use_end();
1207 UI != UE; ++UI)
1208 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(*UI))
1209 DDIs.push_back(DDI);
1210 else if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(*UI))
1211 DVIs.push_back(DVI);
1212 }
1213
1214 LoadAndStorePromoter::run(Insts);
1215 AI.eraseFromParent();
1216 while (!DDIs.empty())
1217 DDIs.pop_back_val()->eraseFromParent();
1218 while (!DVIs.empty())
1219 DVIs.pop_back_val()->eraseFromParent();
1220 }
1221
1222 virtual bool isInstInList(Instruction *I,
1223 const SmallVectorImpl<Instruction*> &Insts) const {
1224 if (LoadInst *LI = dyn_cast<LoadInst>(I))
1225 return LI->getOperand(0) == &AI;
1226 return cast<StoreInst>(I)->getPointerOperand() == &AI;
1227 }
1228
1229 virtual void updateDebugInfo(Instruction *Inst) const {
1230 for (SmallVector<DbgDeclareInst *, 4>::const_iterator I = DDIs.begin(),
1231 E = DDIs.end(); I != E; ++I) {
1232 DbgDeclareInst *DDI = *I;
1233 if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
1234 ConvertDebugDeclareToDebugValue(DDI, SI, DIB);
1235 else if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
1236 ConvertDebugDeclareToDebugValue(DDI, LI, DIB);
1237 }
1238 for (SmallVector<DbgValueInst *, 4>::const_iterator I = DVIs.begin(),
1239 E = DVIs.end(); I != E; ++I) {
1240 DbgValueInst *DVI = *I;
Jakub Staszak3c6583a2013-02-19 22:14:45 +00001241 Value *Arg = 0;
Chandler Carruth70b44c52012-09-15 11:43:14 +00001242 if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
1243 // If an argument is zero extended then use argument directly. The ZExt
1244 // may be zapped by an optimization pass in future.
1245 if (ZExtInst *ZExt = dyn_cast<ZExtInst>(SI->getOperand(0)))
1246 Arg = dyn_cast<Argument>(ZExt->getOperand(0));
1247 if (SExtInst *SExt = dyn_cast<SExtInst>(SI->getOperand(0)))
1248 Arg = dyn_cast<Argument>(SExt->getOperand(0));
1249 if (!Arg)
1250 Arg = SI->getOperand(0);
1251 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
1252 Arg = LI->getOperand(0);
1253 } else {
1254 continue;
1255 }
1256 Instruction *DbgVal =
1257 DIB.insertDbgValueIntrinsic(Arg, 0, DIVariable(DVI->getVariable()),
1258 Inst);
1259 DbgVal->setDebugLoc(DVI->getDebugLoc());
1260 }
1261 }
1262};
1263} // end anon namespace
1264
1265
1266namespace {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001267/// \brief An optimization pass providing Scalar Replacement of Aggregates.
1268///
1269/// This pass takes allocations which can be completely analyzed (that is, they
1270/// don't escape) and tries to turn them into scalar SSA values. There are
1271/// a few steps to this process.
1272///
1273/// 1) It takes allocations of aggregates and analyzes the ways in which they
1274/// are used to try to split them into smaller allocations, ideally of
1275/// a single scalar data type. It will split up memcpy and memset accesses
Jakub Staszak086f6cd2013-02-19 22:02:21 +00001276/// as necessary and try to isolate individual scalar accesses.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001277/// 2) It will transform accesses into forms which are suitable for SSA value
1278/// promotion. This can be replacing a memset with a scalar store of an
1279/// integer value, or it can involve speculating operations on a PHI or
1280/// select to be a PHI or select of the results.
1281/// 3) Finally, this will try to detect a pattern of accesses which map cleanly
1282/// onto insert and extract operations on a vector value, and convert them to
1283/// this form. By doing so, it will enable promotion of vector aggregates to
1284/// SSA vector values.
1285class SROA : public FunctionPass {
Chandler Carruth70b44c52012-09-15 11:43:14 +00001286 const bool RequiresDomTree;
1287
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001288 LLVMContext *C;
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001289 const DataLayout *TD;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001290 DominatorTree *DT;
1291
1292 /// \brief Worklist of alloca instructions to simplify.
1293 ///
1294 /// Each alloca in the function is added to this. Each new alloca formed gets
1295 /// added to it as well to recursively simplify unless that alloca can be
1296 /// directly promoted. Finally, each time we rewrite a use of an alloca other
1297 /// the one being actively rewritten, we add it back onto the list if not
1298 /// already present to ensure it is re-visited.
1299 SetVector<AllocaInst *, SmallVector<AllocaInst *, 16> > Worklist;
1300
1301 /// \brief A collection of instructions to delete.
1302 /// We try to batch deletions to simplify code and make things a bit more
1303 /// efficient.
Chandler Carruth18db7952012-11-20 01:12:50 +00001304 SetVector<Instruction *, SmallVector<Instruction *, 8> > DeadInsts;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001305
Chandler Carruthac8317f2012-10-04 12:33:50 +00001306 /// \brief Post-promotion worklist.
1307 ///
1308 /// Sometimes we discover an alloca which has a high probability of becoming
1309 /// viable for SROA after a round of promotion takes place. In those cases,
1310 /// the alloca is enqueued here for re-processing.
1311 ///
1312 /// Note that we have to be very careful to clear allocas out of this list in
1313 /// the event they are deleted.
1314 SetVector<AllocaInst *, SmallVector<AllocaInst *, 16> > PostPromotionWorklist;
1315
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001316 /// \brief A collection of alloca instructions we can directly promote.
1317 std::vector<AllocaInst *> PromotableAllocas;
1318
1319public:
Chandler Carruth70b44c52012-09-15 11:43:14 +00001320 SROA(bool RequiresDomTree = true)
1321 : FunctionPass(ID), RequiresDomTree(RequiresDomTree),
1322 C(0), TD(0), DT(0) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001323 initializeSROAPass(*PassRegistry::getPassRegistry());
1324 }
1325 bool runOnFunction(Function &F);
1326 void getAnalysisUsage(AnalysisUsage &AU) const;
1327
1328 const char *getPassName() const { return "SROA"; }
1329 static char ID;
1330
1331private:
Chandler Carruth82a57542012-10-01 10:54:05 +00001332 friend class PHIOrSelectSpeculator;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001333 friend class AllocaPartitionRewriter;
1334 friend class AllocaPartitionVectorRewriter;
1335
1336 bool rewriteAllocaPartition(AllocaInst &AI,
1337 AllocaPartitioning &P,
1338 AllocaPartitioning::iterator PI);
1339 bool splitAlloca(AllocaInst &AI, AllocaPartitioning &P);
1340 bool runOnAlloca(AllocaInst &AI);
Chandler Carruth19450da2012-09-14 10:26:38 +00001341 void deleteDeadInstructions(SmallPtrSet<AllocaInst *, 4> &DeletedAllocas);
Chandler Carruth70b44c52012-09-15 11:43:14 +00001342 bool promoteAllocas(Function &F);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001343};
1344}
1345
1346char SROA::ID = 0;
1347
Chandler Carruth70b44c52012-09-15 11:43:14 +00001348FunctionPass *llvm::createSROAPass(bool RequiresDomTree) {
1349 return new SROA(RequiresDomTree);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001350}
1351
1352INITIALIZE_PASS_BEGIN(SROA, "sroa", "Scalar Replacement Of Aggregates",
1353 false, false)
1354INITIALIZE_PASS_DEPENDENCY(DominatorTree)
1355INITIALIZE_PASS_END(SROA, "sroa", "Scalar Replacement Of Aggregates",
1356 false, false)
1357
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001358namespace {
1359/// \brief Visitor to speculate PHIs and Selects where possible.
1360class PHIOrSelectSpeculator : public InstVisitor<PHIOrSelectSpeculator> {
1361 // Befriend the base class so it can delegate to private visit methods.
1362 friend class llvm::InstVisitor<PHIOrSelectSpeculator>;
1363
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001364 const DataLayout &TD;
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001365 AllocaPartitioning &P;
1366 SROA &Pass;
1367
1368public:
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001369 PHIOrSelectSpeculator(const DataLayout &TD, AllocaPartitioning &P, SROA &Pass)
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001370 : TD(TD), P(P), Pass(Pass) {}
1371
1372 /// \brief Visit the users of an alloca partition and rewrite them.
1373 void visitUsers(AllocaPartitioning::const_iterator PI) {
1374 // Note that we need to use an index here as the underlying vector of uses
1375 // may be grown during speculation. However, we never need to re-visit the
1376 // new uses, and so we can use the initial size bound.
1377 for (unsigned Idx = 0, Size = P.use_size(PI); Idx != Size; ++Idx) {
1378 const AllocaPartitioning::PartitionUse &PU = P.getUse(PI, Idx);
1379 if (!PU.U)
1380 continue; // Skip dead use.
1381
1382 visit(cast<Instruction>(PU.U->getUser()));
1383 }
1384 }
1385
1386private:
1387 // By default, skip this instruction.
1388 void visitInstruction(Instruction &I) {}
1389
1390 /// PHI instructions that use an alloca and are subsequently loaded can be
1391 /// rewritten to load both input pointers in the pred blocks and then PHI the
1392 /// results, allowing the load of the alloca to be promoted.
1393 /// From this:
1394 /// %P2 = phi [i32* %Alloca, i32* %Other]
1395 /// %V = load i32* %P2
1396 /// to:
1397 /// %V1 = load i32* %Alloca -> will be mem2reg'd
1398 /// ...
1399 /// %V2 = load i32* %Other
1400 /// ...
1401 /// %V = phi [i32 %V1, i32 %V2]
1402 ///
1403 /// We can do this to a select if its only uses are loads and if the operands
1404 /// to the select can be loaded unconditionally.
1405 ///
1406 /// FIXME: This should be hoisted into a generic utility, likely in
1407 /// Transforms/Util/Local.h
1408 bool isSafePHIToSpeculate(PHINode &PN, SmallVectorImpl<LoadInst *> &Loads) {
1409 // For now, we can only do this promotion if the load is in the same block
1410 // as the PHI, and if there are no stores between the phi and load.
1411 // TODO: Allow recursive phi users.
1412 // TODO: Allow stores.
1413 BasicBlock *BB = PN.getParent();
1414 unsigned MaxAlign = 0;
1415 for (Value::use_iterator UI = PN.use_begin(), UE = PN.use_end();
1416 UI != UE; ++UI) {
1417 LoadInst *LI = dyn_cast<LoadInst>(*UI);
1418 if (LI == 0 || !LI->isSimple()) return false;
1419
1420 // For now we only allow loads in the same block as the PHI. This is
1421 // a common case that happens when instcombine merges two loads through
1422 // a PHI.
1423 if (LI->getParent() != BB) return false;
1424
1425 // Ensure that there are no instructions between the PHI and the load that
1426 // could store.
1427 for (BasicBlock::iterator BBI = &PN; &*BBI != LI; ++BBI)
1428 if (BBI->mayWriteToMemory())
1429 return false;
1430
1431 MaxAlign = std::max(MaxAlign, LI->getAlignment());
1432 Loads.push_back(LI);
1433 }
1434
1435 // We can only transform this if it is safe to push the loads into the
1436 // predecessor blocks. The only thing to watch out for is that we can't put
1437 // a possibly trapping load in the predecessor if it is a critical edge.
Jakub Staszak3c6583a2013-02-19 22:14:45 +00001438 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001439 TerminatorInst *TI = PN.getIncomingBlock(Idx)->getTerminator();
1440 Value *InVal = PN.getIncomingValue(Idx);
1441
1442 // If the value is produced by the terminator of the predecessor (an
1443 // invoke) or it has side-effects, there is no valid place to put a load
1444 // in the predecessor.
1445 if (TI == InVal || TI->mayHaveSideEffects())
1446 return false;
1447
1448 // If the predecessor has a single successor, then the edge isn't
1449 // critical.
1450 if (TI->getNumSuccessors() == 1)
1451 continue;
1452
1453 // If this pointer is always safe to load, or if we can prove that there
1454 // is already a load in the block, then we can move the load to the pred
1455 // block.
1456 if (InVal->isDereferenceablePointer() ||
1457 isSafeToLoadUnconditionally(InVal, TI, MaxAlign, &TD))
1458 continue;
1459
1460 return false;
1461 }
1462
1463 return true;
1464 }
1465
1466 void visitPHINode(PHINode &PN) {
1467 DEBUG(dbgs() << " original: " << PN << "\n");
1468
1469 SmallVector<LoadInst *, 4> Loads;
1470 if (!isSafePHIToSpeculate(PN, Loads))
1471 return;
1472
1473 assert(!Loads.empty());
1474
1475 Type *LoadTy = cast<PointerType>(PN.getType())->getElementType();
1476 IRBuilder<> PHIBuilder(&PN);
1477 PHINode *NewPN = PHIBuilder.CreatePHI(LoadTy, PN.getNumIncomingValues(),
1478 PN.getName() + ".sroa.speculated");
1479
1480 // Get the TBAA tag and alignment to use from one of the loads. It doesn't
Jakub Staszak086f6cd2013-02-19 22:02:21 +00001481 // matter which one we get and if any differ.
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001482 LoadInst *SomeLoad = cast<LoadInst>(Loads.back());
1483 MDNode *TBAATag = SomeLoad->getMetadata(LLVMContext::MD_tbaa);
1484 unsigned Align = SomeLoad->getAlignment();
1485
1486 // Rewrite all loads of the PN to use the new PHI.
1487 do {
1488 LoadInst *LI = Loads.pop_back_val();
1489 LI->replaceAllUsesWith(NewPN);
Chandler Carruth18db7952012-11-20 01:12:50 +00001490 Pass.DeadInsts.insert(LI);
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001491 } while (!Loads.empty());
1492
1493 // Inject loads into all of the pred blocks.
1494 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
1495 BasicBlock *Pred = PN.getIncomingBlock(Idx);
1496 TerminatorInst *TI = Pred->getTerminator();
1497 Use *InUse = &PN.getOperandUse(PN.getOperandNumForIncomingValue(Idx));
1498 Value *InVal = PN.getIncomingValue(Idx);
1499 IRBuilder<> PredBuilder(TI);
1500
1501 LoadInst *Load
1502 = PredBuilder.CreateLoad(InVal, (PN.getName() + ".sroa.speculate.load." +
1503 Pred->getName()));
1504 ++NumLoadsSpeculated;
1505 Load->setAlignment(Align);
1506 if (TBAATag)
1507 Load->setMetadata(LLVMContext::MD_tbaa, TBAATag);
1508 NewPN->addIncoming(Load, Pred);
1509
1510 Instruction *Ptr = dyn_cast<Instruction>(InVal);
1511 if (!Ptr)
1512 // No uses to rewrite.
1513 continue;
1514
1515 // Try to lookup and rewrite any partition uses corresponding to this phi
1516 // input.
1517 AllocaPartitioning::iterator PI
1518 = P.findPartitionForPHIOrSelectOperand(InUse);
1519 if (PI == P.end())
1520 continue;
1521
1522 // Replace the Use in the PartitionUse for this operand with the Use
1523 // inside the load.
1524 AllocaPartitioning::use_iterator UI
1525 = P.findPartitionUseForPHIOrSelectOperand(InUse);
1526 assert(isa<PHINode>(*UI->U->getUser()));
1527 UI->U = &Load->getOperandUse(Load->getPointerOperandIndex());
1528 }
1529 DEBUG(dbgs() << " speculated to: " << *NewPN << "\n");
1530 }
1531
1532 /// Select instructions that use an alloca and are subsequently loaded can be
1533 /// rewritten to load both input pointers and then select between the result,
1534 /// allowing the load of the alloca to be promoted.
1535 /// From this:
1536 /// %P2 = select i1 %cond, i32* %Alloca, i32* %Other
1537 /// %V = load i32* %P2
1538 /// to:
1539 /// %V1 = load i32* %Alloca -> will be mem2reg'd
1540 /// %V2 = load i32* %Other
1541 /// %V = select i1 %cond, i32 %V1, i32 %V2
1542 ///
1543 /// We can do this to a select if its only uses are loads and if the operand
1544 /// to the select can be loaded unconditionally.
1545 bool isSafeSelectToSpeculate(SelectInst &SI,
1546 SmallVectorImpl<LoadInst *> &Loads) {
1547 Value *TValue = SI.getTrueValue();
1548 Value *FValue = SI.getFalseValue();
1549 bool TDerefable = TValue->isDereferenceablePointer();
1550 bool FDerefable = FValue->isDereferenceablePointer();
1551
1552 for (Value::use_iterator UI = SI.use_begin(), UE = SI.use_end();
1553 UI != UE; ++UI) {
1554 LoadInst *LI = dyn_cast<LoadInst>(*UI);
1555 if (LI == 0 || !LI->isSimple()) return false;
1556
1557 // Both operands to the select need to be dereferencable, either
1558 // absolutely (e.g. allocas) or at this point because we can see other
1559 // accesses to it.
1560 if (!TDerefable && !isSafeToLoadUnconditionally(TValue, LI,
1561 LI->getAlignment(), &TD))
1562 return false;
1563 if (!FDerefable && !isSafeToLoadUnconditionally(FValue, LI,
1564 LI->getAlignment(), &TD))
1565 return false;
1566 Loads.push_back(LI);
1567 }
1568
1569 return true;
1570 }
1571
1572 void visitSelectInst(SelectInst &SI) {
1573 DEBUG(dbgs() << " original: " << SI << "\n");
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001574
1575 // If the select isn't safe to speculate, just use simple logic to emit it.
1576 SmallVector<LoadInst *, 4> Loads;
1577 if (!isSafeSelectToSpeculate(SI, Loads))
1578 return;
1579
Jakub Staszakdb4579d2013-03-07 22:10:33 +00001580 IRBuilder<> IRB(&SI);
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001581 Use *Ops[2] = { &SI.getOperandUse(1), &SI.getOperandUse(2) };
1582 AllocaPartitioning::iterator PIs[2];
1583 AllocaPartitioning::PartitionUse PUs[2];
1584 for (unsigned i = 0, e = 2; i != e; ++i) {
1585 PIs[i] = P.findPartitionForPHIOrSelectOperand(Ops[i]);
1586 if (PIs[i] != P.end()) {
1587 // If the pointer is within the partitioning, remove the select from
1588 // its uses. We'll add in the new loads below.
1589 AllocaPartitioning::use_iterator UI
1590 = P.findPartitionUseForPHIOrSelectOperand(Ops[i]);
1591 PUs[i] = *UI;
1592 // Clear out the use here so that the offsets into the use list remain
1593 // stable but this use is ignored when rewriting.
1594 UI->U = 0;
1595 }
1596 }
1597
1598 Value *TV = SI.getTrueValue();
1599 Value *FV = SI.getFalseValue();
1600 // Replace the loads of the select with a select of two loads.
1601 while (!Loads.empty()) {
1602 LoadInst *LI = Loads.pop_back_val();
1603
1604 IRB.SetInsertPoint(LI);
1605 LoadInst *TL =
1606 IRB.CreateLoad(TV, LI->getName() + ".sroa.speculate.load.true");
1607 LoadInst *FL =
1608 IRB.CreateLoad(FV, LI->getName() + ".sroa.speculate.load.false");
1609 NumLoadsSpeculated += 2;
1610
1611 // Transfer alignment and TBAA info if present.
1612 TL->setAlignment(LI->getAlignment());
1613 FL->setAlignment(LI->getAlignment());
1614 if (MDNode *Tag = LI->getMetadata(LLVMContext::MD_tbaa)) {
1615 TL->setMetadata(LLVMContext::MD_tbaa, Tag);
1616 FL->setMetadata(LLVMContext::MD_tbaa, Tag);
1617 }
1618
1619 Value *V = IRB.CreateSelect(SI.getCondition(), TL, FL,
1620 LI->getName() + ".sroa.speculated");
1621
1622 LoadInst *Loads[2] = { TL, FL };
1623 for (unsigned i = 0, e = 2; i != e; ++i) {
1624 if (PIs[i] != P.end()) {
1625 Use *LoadUse = &Loads[i]->getOperandUse(0);
1626 assert(PUs[i].U->get() == LoadUse->get());
1627 PUs[i].U = LoadUse;
1628 P.use_push_back(PIs[i], PUs[i]);
1629 }
1630 }
1631
1632 DEBUG(dbgs() << " speculated to: " << *V << "\n");
1633 LI->replaceAllUsesWith(V);
Chandler Carruth18db7952012-11-20 01:12:50 +00001634 Pass.DeadInsts.insert(LI);
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001635 }
1636 }
1637};
1638}
1639
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001640/// \brief Build a GEP out of a base pointer and indices.
1641///
1642/// This will return the BasePtr if that is valid, or build a new GEP
1643/// instruction using the IRBuilder if GEP-ing is needed.
1644static Value *buildGEP(IRBuilder<> &IRB, Value *BasePtr,
1645 SmallVectorImpl<Value *> &Indices,
1646 const Twine &Prefix) {
1647 if (Indices.empty())
1648 return BasePtr;
1649
1650 // A single zero index is a no-op, so check for this and avoid building a GEP
1651 // in that case.
1652 if (Indices.size() == 1 && cast<ConstantInt>(Indices.back())->isZero())
1653 return BasePtr;
1654
1655 return IRB.CreateInBoundsGEP(BasePtr, Indices, Prefix + ".idx");
1656}
1657
1658/// \brief Get a natural GEP off of the BasePtr walking through Ty toward
1659/// TargetTy without changing the offset of the pointer.
1660///
1661/// This routine assumes we've already established a properly offset GEP with
1662/// Indices, and arrived at the Ty type. The goal is to continue to GEP with
1663/// zero-indices down through type layers until we find one the same as
1664/// TargetTy. If we can't find one with the same type, we at least try to use
1665/// one with the same size. If none of that works, we just produce the GEP as
1666/// indicated by Indices to have the correct offset.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001667static Value *getNaturalGEPWithType(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001668 Value *BasePtr, Type *Ty, Type *TargetTy,
1669 SmallVectorImpl<Value *> &Indices,
1670 const Twine &Prefix) {
1671 if (Ty == TargetTy)
1672 return buildGEP(IRB, BasePtr, Indices, Prefix);
1673
1674 // See if we can descend into a struct and locate a field with the correct
1675 // type.
1676 unsigned NumLayers = 0;
1677 Type *ElementTy = Ty;
1678 do {
1679 if (ElementTy->isPointerTy())
1680 break;
1681 if (SequentialType *SeqTy = dyn_cast<SequentialType>(ElementTy)) {
1682 ElementTy = SeqTy->getElementType();
Chandler Carruth40617f52012-10-17 07:22:16 +00001683 // Note that we use the default address space as this index is over an
1684 // array or a vector, not a pointer.
1685 Indices.push_back(IRB.getInt(APInt(TD.getPointerSizeInBits(0), 0)));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001686 } else if (StructType *STy = dyn_cast<StructType>(ElementTy)) {
Chandler Carruth503eb2b2012-10-09 01:58:35 +00001687 if (STy->element_begin() == STy->element_end())
1688 break; // Nothing left to descend into.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001689 ElementTy = *STy->element_begin();
1690 Indices.push_back(IRB.getInt32(0));
1691 } else {
1692 break;
1693 }
1694 ++NumLayers;
1695 } while (ElementTy != TargetTy);
1696 if (ElementTy != TargetTy)
1697 Indices.erase(Indices.end() - NumLayers, Indices.end());
1698
1699 return buildGEP(IRB, BasePtr, Indices, Prefix);
1700}
1701
1702/// \brief Recursively compute indices for a natural GEP.
1703///
1704/// This is the recursive step for getNaturalGEPWithOffset that walks down the
1705/// element types adding appropriate indices for the GEP.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001706static Value *getNaturalGEPRecursively(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001707 Value *Ptr, Type *Ty, APInt &Offset,
1708 Type *TargetTy,
1709 SmallVectorImpl<Value *> &Indices,
1710 const Twine &Prefix) {
1711 if (Offset == 0)
1712 return getNaturalGEPWithType(IRB, TD, Ptr, Ty, TargetTy, Indices, Prefix);
1713
1714 // We can't recurse through pointer types.
1715 if (Ty->isPointerTy())
1716 return 0;
1717
Chandler Carruthdd3cea82012-09-14 10:30:40 +00001718 // We try to analyze GEPs over vectors here, but note that these GEPs are
1719 // extremely poorly defined currently. The long-term goal is to remove GEPing
1720 // over a vector from the IR completely.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001721 if (VectorType *VecTy = dyn_cast<VectorType>(Ty)) {
Nadav Rotema5024fc2012-12-18 05:23:31 +00001722 unsigned ElementSizeInBits = TD.getTypeSizeInBits(VecTy->getScalarType());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001723 if (ElementSizeInBits % 8)
Chandler Carruthdd3cea82012-09-14 10:30:40 +00001724 return 0; // GEPs over non-multiple of 8 size vector elements are invalid.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001725 APInt ElementSize(Offset.getBitWidth(), ElementSizeInBits / 8);
Chandler Carruth6fab42a2012-10-17 09:23:48 +00001726 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001727 if (NumSkippedElements.ugt(VecTy->getNumElements()))
1728 return 0;
1729 Offset -= NumSkippedElements * ElementSize;
1730 Indices.push_back(IRB.getInt(NumSkippedElements));
1731 return getNaturalGEPRecursively(IRB, TD, Ptr, VecTy->getElementType(),
1732 Offset, TargetTy, Indices, Prefix);
1733 }
1734
1735 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
1736 Type *ElementTy = ArrTy->getElementType();
1737 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
Chandler Carruth6fab42a2012-10-17 09:23:48 +00001738 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001739 if (NumSkippedElements.ugt(ArrTy->getNumElements()))
1740 return 0;
1741
1742 Offset -= NumSkippedElements * ElementSize;
1743 Indices.push_back(IRB.getInt(NumSkippedElements));
1744 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1745 Indices, Prefix);
1746 }
1747
1748 StructType *STy = dyn_cast<StructType>(Ty);
1749 if (!STy)
1750 return 0;
1751
1752 const StructLayout *SL = TD.getStructLayout(STy);
1753 uint64_t StructOffset = Offset.getZExtValue();
Chandler Carruthcabd96c2012-09-14 10:30:42 +00001754 if (StructOffset >= SL->getSizeInBytes())
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001755 return 0;
1756 unsigned Index = SL->getElementContainingOffset(StructOffset);
1757 Offset -= APInt(Offset.getBitWidth(), SL->getElementOffset(Index));
1758 Type *ElementTy = STy->getElementType(Index);
1759 if (Offset.uge(TD.getTypeAllocSize(ElementTy)))
1760 return 0; // The offset points into alignment padding.
1761
1762 Indices.push_back(IRB.getInt32(Index));
1763 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1764 Indices, Prefix);
1765}
1766
1767/// \brief Get a natural GEP from a base pointer to a particular offset and
1768/// resulting in a particular type.
1769///
1770/// The goal is to produce a "natural" looking GEP that works with the existing
1771/// composite types to arrive at the appropriate offset and element type for
1772/// a pointer. TargetTy is the element type the returned GEP should point-to if
1773/// possible. We recurse by decreasing Offset, adding the appropriate index to
1774/// Indices, and setting Ty to the result subtype.
1775///
Chandler Carruth93a21e72012-09-14 10:18:49 +00001776/// If no natural GEP can be constructed, this function returns null.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001777static Value *getNaturalGEPWithOffset(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001778 Value *Ptr, APInt Offset, Type *TargetTy,
1779 SmallVectorImpl<Value *> &Indices,
1780 const Twine &Prefix) {
1781 PointerType *Ty = cast<PointerType>(Ptr->getType());
1782
1783 // Don't consider any GEPs through an i8* as natural unless the TargetTy is
1784 // an i8.
1785 if (Ty == IRB.getInt8PtrTy() && TargetTy->isIntegerTy(8))
1786 return 0;
1787
1788 Type *ElementTy = Ty->getElementType();
Chandler Carruth3f882d42012-09-18 22:37:19 +00001789 if (!ElementTy->isSized())
1790 return 0; // We can't GEP through an unsized element.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001791 APInt ElementSize(Offset.getBitWidth(), TD.getTypeAllocSize(ElementTy));
1792 if (ElementSize == 0)
1793 return 0; // Zero-length arrays can't help us build a natural GEP.
Chandler Carruth6fab42a2012-10-17 09:23:48 +00001794 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001795
1796 Offset -= NumSkippedElements * ElementSize;
1797 Indices.push_back(IRB.getInt(NumSkippedElements));
1798 return getNaturalGEPRecursively(IRB, TD, Ptr, ElementTy, Offset, TargetTy,
1799 Indices, Prefix);
1800}
1801
1802/// \brief Compute an adjusted pointer from Ptr by Offset bytes where the
1803/// resulting pointer has PointerTy.
1804///
1805/// This tries very hard to compute a "natural" GEP which arrives at the offset
1806/// and produces the pointer type desired. Where it cannot, it will try to use
1807/// the natural GEP to arrive at the offset and bitcast to the type. Where that
1808/// fails, it will try to use an existing i8* and GEP to the byte offset and
1809/// bitcast to the type.
1810///
1811/// The strategy for finding the more natural GEPs is to peel off layers of the
1812/// pointer, walking back through bit casts and GEPs, searching for a base
1813/// pointer from which we can compute a natural GEP with the desired
Jakub Staszak086f6cd2013-02-19 22:02:21 +00001814/// properties. The algorithm tries to fold as many constant indices into
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001815/// a single GEP as possible, thus making each GEP more independent of the
1816/// surrounding code.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001817static Value *getAdjustedPtr(IRBuilder<> &IRB, const DataLayout &TD,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001818 Value *Ptr, APInt Offset, Type *PointerTy,
1819 const Twine &Prefix) {
1820 // Even though we don't look through PHI nodes, we could be called on an
1821 // instruction in an unreachable block, which may be on a cycle.
1822 SmallPtrSet<Value *, 4> Visited;
1823 Visited.insert(Ptr);
1824 SmallVector<Value *, 4> Indices;
1825
1826 // We may end up computing an offset pointer that has the wrong type. If we
1827 // never are able to compute one directly that has the correct type, we'll
1828 // fall back to it, so keep it around here.
1829 Value *OffsetPtr = 0;
1830
1831 // Remember any i8 pointer we come across to re-use if we need to do a raw
1832 // byte offset.
1833 Value *Int8Ptr = 0;
1834 APInt Int8PtrOffset(Offset.getBitWidth(), 0);
1835
1836 Type *TargetTy = PointerTy->getPointerElementType();
1837
1838 do {
1839 // First fold any existing GEPs into the offset.
1840 while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
1841 APInt GEPOffset(Offset.getBitWidth(), 0);
Nuno Lopesb6ad9822012-12-30 16:25:48 +00001842 if (!GEP->accumulateConstantOffset(TD, GEPOffset))
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001843 break;
1844 Offset += GEPOffset;
1845 Ptr = GEP->getPointerOperand();
1846 if (!Visited.insert(Ptr))
1847 break;
1848 }
1849
1850 // See if we can perform a natural GEP here.
1851 Indices.clear();
1852 if (Value *P = getNaturalGEPWithOffset(IRB, TD, Ptr, Offset, TargetTy,
1853 Indices, Prefix)) {
1854 if (P->getType() == PointerTy) {
1855 // Zap any offset pointer that we ended up computing in previous rounds.
1856 if (OffsetPtr && OffsetPtr->use_empty())
1857 if (Instruction *I = dyn_cast<Instruction>(OffsetPtr))
1858 I->eraseFromParent();
1859 return P;
1860 }
1861 if (!OffsetPtr) {
1862 OffsetPtr = P;
1863 }
1864 }
1865
1866 // Stash this pointer if we've found an i8*.
1867 if (Ptr->getType()->isIntegerTy(8)) {
1868 Int8Ptr = Ptr;
1869 Int8PtrOffset = Offset;
1870 }
1871
1872 // Peel off a layer of the pointer and update the offset appropriately.
1873 if (Operator::getOpcode(Ptr) == Instruction::BitCast) {
1874 Ptr = cast<Operator>(Ptr)->getOperand(0);
1875 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(Ptr)) {
1876 if (GA->mayBeOverridden())
1877 break;
1878 Ptr = GA->getAliasee();
1879 } else {
1880 break;
1881 }
1882 assert(Ptr->getType()->isPointerTy() && "Unexpected operand type!");
1883 } while (Visited.insert(Ptr));
1884
1885 if (!OffsetPtr) {
1886 if (!Int8Ptr) {
1887 Int8Ptr = IRB.CreateBitCast(Ptr, IRB.getInt8PtrTy(),
1888 Prefix + ".raw_cast");
1889 Int8PtrOffset = Offset;
1890 }
1891
1892 OffsetPtr = Int8PtrOffset == 0 ? Int8Ptr :
1893 IRB.CreateInBoundsGEP(Int8Ptr, IRB.getInt(Int8PtrOffset),
1894 Prefix + ".raw_idx");
1895 }
1896 Ptr = OffsetPtr;
1897
1898 // On the off chance we were targeting i8*, guard the bitcast here.
1899 if (Ptr->getType() != PointerTy)
1900 Ptr = IRB.CreateBitCast(Ptr, PointerTy, Prefix + ".cast");
1901
1902 return Ptr;
1903}
1904
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001905/// \brief Test whether we can convert a value from the old to the new type.
1906///
1907/// This predicate should be used to guard calls to convertValue in order to
1908/// ensure that we only try to convert viable values. The strategy is that we
1909/// will peel off single element struct and array wrappings to get to an
1910/// underlying value, and convert that value.
1911static bool canConvertValue(const DataLayout &DL, Type *OldTy, Type *NewTy) {
1912 if (OldTy == NewTy)
1913 return true;
1914 if (DL.getTypeSizeInBits(NewTy) != DL.getTypeSizeInBits(OldTy))
1915 return false;
1916 if (!NewTy->isSingleValueType() || !OldTy->isSingleValueType())
1917 return false;
1918
1919 if (NewTy->isPointerTy() || OldTy->isPointerTy()) {
1920 if (NewTy->isPointerTy() && OldTy->isPointerTy())
1921 return true;
1922 if (NewTy->isIntegerTy() || OldTy->isIntegerTy())
1923 return true;
1924 return false;
1925 }
1926
1927 return true;
1928}
1929
1930/// \brief Generic routine to convert an SSA value to a value of a different
1931/// type.
1932///
1933/// This will try various different casting techniques, such as bitcasts,
1934/// inttoptr, and ptrtoint casts. Use the \c canConvertValue predicate to test
1935/// two types for viability with this routine.
1936static Value *convertValue(const DataLayout &DL, IRBuilder<> &IRB, Value *V,
1937 Type *Ty) {
1938 assert(canConvertValue(DL, V->getType(), Ty) &&
1939 "Value not convertable to type");
1940 if (V->getType() == Ty)
1941 return V;
1942 if (V->getType()->isIntegerTy() && Ty->isPointerTy())
1943 return IRB.CreateIntToPtr(V, Ty);
1944 if (V->getType()->isPointerTy() && Ty->isIntegerTy())
1945 return IRB.CreatePtrToInt(V, Ty);
1946
1947 return IRB.CreateBitCast(V, Ty);
1948}
1949
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001950/// \brief Test whether the given alloca partition can be promoted to a vector.
1951///
1952/// This is a quick test to check whether we can rewrite a particular alloca
1953/// partition (and its newly formed alloca) into a vector alloca with only
1954/// whole-vector loads and stores such that it could be promoted to a vector
1955/// SSA value. We only can ensure this for a limited set of operations, and we
1956/// don't want to do the rewrites unless we are confident that the result will
1957/// be promotable, so we have an early test here.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00001958static bool isVectorPromotionViable(const DataLayout &TD,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001959 Type *AllocaTy,
1960 AllocaPartitioning &P,
1961 uint64_t PartitionBeginOffset,
1962 uint64_t PartitionEndOffset,
1963 AllocaPartitioning::const_use_iterator I,
1964 AllocaPartitioning::const_use_iterator E) {
1965 VectorType *Ty = dyn_cast<VectorType>(AllocaTy);
1966 if (!Ty)
1967 return false;
1968
Nadav Rotema5024fc2012-12-18 05:23:31 +00001969 uint64_t ElementSize = TD.getTypeSizeInBits(Ty->getScalarType());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001970
1971 // While the definition of LLVM vectors is bitpacked, we don't support sizes
1972 // that aren't byte sized.
1973 if (ElementSize % 8)
1974 return false;
Benjamin Kramerc003a452013-01-01 16:13:35 +00001975 assert((TD.getTypeSizeInBits(Ty) % 8) == 0 &&
1976 "vector size not a multiple of element size?");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001977 ElementSize /= 8;
1978
1979 for (; I != E; ++I) {
Chandler Carruth6c3890b2012-10-02 18:57:13 +00001980 if (!I->U)
1981 continue; // Skip dead use.
1982
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001983 uint64_t BeginOffset = I->BeginOffset - PartitionBeginOffset;
1984 uint64_t BeginIndex = BeginOffset / ElementSize;
1985 if (BeginIndex * ElementSize != BeginOffset ||
1986 BeginIndex >= Ty->getNumElements())
1987 return false;
1988 uint64_t EndOffset = I->EndOffset - PartitionBeginOffset;
1989 uint64_t EndIndex = EndOffset / ElementSize;
1990 if (EndIndex * ElementSize != EndOffset ||
1991 EndIndex > Ty->getNumElements())
1992 return false;
1993
Chandler Carruth845b73c2012-11-21 08:16:30 +00001994 assert(EndIndex > BeginIndex && "Empty vector!");
1995 uint64_t NumElements = EndIndex - BeginIndex;
1996 Type *PartitionTy
1997 = (NumElements == 1) ? Ty->getElementType()
1998 : VectorType::get(Ty->getElementType(), NumElements);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001999
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002000 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002001 if (MI->isVolatile())
2002 return false;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002003 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002004 const AllocaPartitioning::MemTransferOffsets &MTO
2005 = P.getMemTransferOffsets(*MTI);
2006 if (!MTO.IsSplittable)
2007 return false;
2008 }
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002009 } else if (I->U->get()->getType()->getPointerElementType()->isStructTy()) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002010 // Disable vector promotion when there are loads or stores of an FCA.
2011 return false;
Chandler Carruth18db7952012-11-20 01:12:50 +00002012 } else if (LoadInst *LI = dyn_cast<LoadInst>(I->U->getUser())) {
2013 if (LI->isVolatile())
2014 return false;
Chandler Carruth845b73c2012-11-21 08:16:30 +00002015 if (!canConvertValue(TD, PartitionTy, LI->getType()))
2016 return false;
Chandler Carruth18db7952012-11-20 01:12:50 +00002017 } else if (StoreInst *SI = dyn_cast<StoreInst>(I->U->getUser())) {
2018 if (SI->isVolatile())
2019 return false;
Chandler Carruth845b73c2012-11-21 08:16:30 +00002020 if (!canConvertValue(TD, SI->getValueOperand()->getType(), PartitionTy))
2021 return false;
Chandler Carruth18db7952012-11-20 01:12:50 +00002022 } else {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002023 return false;
2024 }
2025 }
2026 return true;
2027}
2028
Chandler Carruth435c4e02012-10-15 08:40:30 +00002029/// \brief Test whether the given alloca partition's integer operations can be
2030/// widened to promotable ones.
Chandler Carruth92924fd2012-09-24 00:34:20 +00002031///
Chandler Carruth435c4e02012-10-15 08:40:30 +00002032/// This is a quick test to check whether we can rewrite the integer loads and
2033/// stores to a particular alloca into wider loads and stores and be able to
2034/// promote the resulting alloca.
2035static bool isIntegerWideningViable(const DataLayout &TD,
2036 Type *AllocaTy,
2037 uint64_t AllocBeginOffset,
2038 AllocaPartitioning &P,
2039 AllocaPartitioning::const_use_iterator I,
2040 AllocaPartitioning::const_use_iterator E) {
2041 uint64_t SizeInBits = TD.getTypeSizeInBits(AllocaTy);
Benjamin Kramer47534c72012-12-01 11:53:32 +00002042 // Don't create integer types larger than the maximum bitwidth.
2043 if (SizeInBits > IntegerType::MAX_INT_BITS)
2044 return false;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002045
2046 // Don't try to handle allocas with bit-padding.
2047 if (SizeInBits != TD.getTypeStoreSizeInBits(AllocaTy))
Chandler Carruth92924fd2012-09-24 00:34:20 +00002048 return false;
2049
Chandler Carruth58d05562012-10-25 04:37:07 +00002050 // We need to ensure that an integer type with the appropriate bitwidth can
2051 // be converted to the alloca type, whatever that is. We don't want to force
2052 // the alloca itself to have an integer type if there is a more suitable one.
2053 Type *IntTy = Type::getIntNTy(AllocaTy->getContext(), SizeInBits);
2054 if (!canConvertValue(TD, AllocaTy, IntTy) ||
2055 !canConvertValue(TD, IntTy, AllocaTy))
2056 return false;
2057
Chandler Carruth435c4e02012-10-15 08:40:30 +00002058 uint64_t Size = TD.getTypeStoreSize(AllocaTy);
2059
Jakub Staszak086f6cd2013-02-19 22:02:21 +00002060 // Check the uses to ensure the uses are (likely) promotable integer uses.
Chandler Carruth92924fd2012-09-24 00:34:20 +00002061 // Also ensure that the alloca has a covering load or store. We don't want
Jakub Staszak086f6cd2013-02-19 22:02:21 +00002062 // to widen the integer operations only to fail to promote due to some other
Chandler Carruth435c4e02012-10-15 08:40:30 +00002063 // unsplittable entry (which we may make splittable later).
Chandler Carruth92924fd2012-09-24 00:34:20 +00002064 bool WholeAllocaOp = false;
2065 for (; I != E; ++I) {
Chandler Carruth6c3890b2012-10-02 18:57:13 +00002066 if (!I->U)
2067 continue; // Skip dead use.
Chandler Carruth43c8b462012-10-04 10:39:28 +00002068
Chandler Carruth435c4e02012-10-15 08:40:30 +00002069 uint64_t RelBegin = I->BeginOffset - AllocBeginOffset;
2070 uint64_t RelEnd = I->EndOffset - AllocBeginOffset;
2071
Chandler Carruth43c8b462012-10-04 10:39:28 +00002072 // We can't reasonably handle cases where the load or store extends past
2073 // the end of the aloca's type and into its padding.
Chandler Carruth435c4e02012-10-15 08:40:30 +00002074 if (RelEnd > Size)
Chandler Carruth43c8b462012-10-04 10:39:28 +00002075 return false;
2076
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002077 if (LoadInst *LI = dyn_cast<LoadInst>(I->U->getUser())) {
Chandler Carruth435c4e02012-10-15 08:40:30 +00002078 if (LI->isVolatile())
Chandler Carruth92924fd2012-09-24 00:34:20 +00002079 return false;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002080 if (RelBegin == 0 && RelEnd == Size)
Chandler Carruth92924fd2012-09-24 00:34:20 +00002081 WholeAllocaOp = true;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002082 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType())) {
Chandler Carruthe45f4652012-12-10 00:54:45 +00002083 if (ITy->getBitWidth() < TD.getTypeStoreSizeInBits(ITy))
Chandler Carruth435c4e02012-10-15 08:40:30 +00002084 return false;
2085 continue;
2086 }
2087 // Non-integer loads need to be convertible from the alloca type so that
2088 // they are promotable.
2089 if (RelBegin != 0 || RelEnd != Size ||
2090 !canConvertValue(TD, AllocaTy, LI->getType()))
2091 return false;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002092 } else if (StoreInst *SI = dyn_cast<StoreInst>(I->U->getUser())) {
Chandler Carruth435c4e02012-10-15 08:40:30 +00002093 Type *ValueTy = SI->getValueOperand()->getType();
2094 if (SI->isVolatile())
Chandler Carruth92924fd2012-09-24 00:34:20 +00002095 return false;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002096 if (RelBegin == 0 && RelEnd == Size)
Chandler Carruth92924fd2012-09-24 00:34:20 +00002097 WholeAllocaOp = true;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002098 if (IntegerType *ITy = dyn_cast<IntegerType>(ValueTy)) {
Chandler Carruthe45f4652012-12-10 00:54:45 +00002099 if (ITy->getBitWidth() < TD.getTypeStoreSizeInBits(ITy))
Chandler Carruth435c4e02012-10-15 08:40:30 +00002100 return false;
2101 continue;
2102 }
2103 // Non-integer stores need to be convertible to the alloca type so that
2104 // they are promotable.
2105 if (RelBegin != 0 || RelEnd != Size ||
2106 !canConvertValue(TD, ValueTy, AllocaTy))
2107 return false;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002108 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I->U->getUser())) {
Chandler Carruthe3f41192012-12-17 18:48:07 +00002109 if (MI->isVolatile() || !isa<Constant>(MI->getLength()))
Chandler Carruth92924fd2012-09-24 00:34:20 +00002110 return false;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002111 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(I->U->getUser())) {
Chandler Carruth92924fd2012-09-24 00:34:20 +00002112 const AllocaPartitioning::MemTransferOffsets &MTO
2113 = P.getMemTransferOffsets(*MTI);
2114 if (!MTO.IsSplittable)
2115 return false;
2116 }
Chandler Carruth435c4e02012-10-15 08:40:30 +00002117 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I->U->getUser())) {
2118 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
2119 II->getIntrinsicID() != Intrinsic::lifetime_end)
2120 return false;
Chandler Carruth92924fd2012-09-24 00:34:20 +00002121 } else {
2122 return false;
2123 }
2124 }
2125 return WholeAllocaOp;
2126}
2127
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002128static Value *extractInteger(const DataLayout &DL, IRBuilder<> &IRB, Value *V,
2129 IntegerType *Ty, uint64_t Offset,
2130 const Twine &Name) {
Chandler Carruth18db7952012-11-20 01:12:50 +00002131 DEBUG(dbgs() << " start: " << *V << "\n");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002132 IntegerType *IntTy = cast<IntegerType>(V->getType());
2133 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
2134 "Element extends past full value");
2135 uint64_t ShAmt = 8*Offset;
2136 if (DL.isBigEndian())
2137 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
Chandler Carruth18db7952012-11-20 01:12:50 +00002138 if (ShAmt) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002139 V = IRB.CreateLShr(V, ShAmt, Name + ".shift");
Chandler Carruth18db7952012-11-20 01:12:50 +00002140 DEBUG(dbgs() << " shifted: " << *V << "\n");
2141 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002142 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
2143 "Cannot extract to a larger integer!");
Chandler Carruth18db7952012-11-20 01:12:50 +00002144 if (Ty != IntTy) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002145 V = IRB.CreateTrunc(V, Ty, Name + ".trunc");
Chandler Carruth18db7952012-11-20 01:12:50 +00002146 DEBUG(dbgs() << " trunced: " << *V << "\n");
2147 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002148 return V;
2149}
2150
2151static Value *insertInteger(const DataLayout &DL, IRBuilder<> &IRB, Value *Old,
2152 Value *V, uint64_t Offset, const Twine &Name) {
2153 IntegerType *IntTy = cast<IntegerType>(Old->getType());
2154 IntegerType *Ty = cast<IntegerType>(V->getType());
2155 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
2156 "Cannot insert a larger integer!");
Chandler Carruth18db7952012-11-20 01:12:50 +00002157 DEBUG(dbgs() << " start: " << *V << "\n");
2158 if (Ty != IntTy) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002159 V = IRB.CreateZExt(V, IntTy, Name + ".ext");
Chandler Carruth18db7952012-11-20 01:12:50 +00002160 DEBUG(dbgs() << " extended: " << *V << "\n");
2161 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002162 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
2163 "Element store outside of alloca store");
2164 uint64_t ShAmt = 8*Offset;
2165 if (DL.isBigEndian())
2166 ShAmt = 8*(DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
Chandler Carruth18db7952012-11-20 01:12:50 +00002167 if (ShAmt) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002168 V = IRB.CreateShl(V, ShAmt, Name + ".shift");
Chandler Carruth18db7952012-11-20 01:12:50 +00002169 DEBUG(dbgs() << " shifted: " << *V << "\n");
2170 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002171
2172 if (ShAmt || Ty->getBitWidth() < IntTy->getBitWidth()) {
2173 APInt Mask = ~Ty->getMask().zext(IntTy->getBitWidth()).shl(ShAmt);
2174 Old = IRB.CreateAnd(Old, Mask, Name + ".mask");
Chandler Carruth18db7952012-11-20 01:12:50 +00002175 DEBUG(dbgs() << " masked: " << *Old << "\n");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002176 V = IRB.CreateOr(Old, V, Name + ".insert");
Chandler Carruth18db7952012-11-20 01:12:50 +00002177 DEBUG(dbgs() << " inserted: " << *V << "\n");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002178 }
2179 return V;
2180}
2181
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002182static Value *extractVector(IRBuilder<> &IRB, Value *V,
2183 unsigned BeginIndex, unsigned EndIndex,
2184 const Twine &Name) {
2185 VectorType *VecTy = cast<VectorType>(V->getType());
2186 unsigned NumElements = EndIndex - BeginIndex;
2187 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2188
2189 if (NumElements == VecTy->getNumElements())
2190 return V;
2191
2192 if (NumElements == 1) {
2193 V = IRB.CreateExtractElement(V, IRB.getInt32(BeginIndex),
2194 Name + ".extract");
2195 DEBUG(dbgs() << " extract: " << *V << "\n");
2196 return V;
2197 }
2198
2199 SmallVector<Constant*, 8> Mask;
2200 Mask.reserve(NumElements);
2201 for (unsigned i = BeginIndex; i != EndIndex; ++i)
2202 Mask.push_back(IRB.getInt32(i));
2203 V = IRB.CreateShuffleVector(V, UndefValue::get(V->getType()),
2204 ConstantVector::get(Mask),
2205 Name + ".extract");
2206 DEBUG(dbgs() << " shuffle: " << *V << "\n");
2207 return V;
2208}
2209
Chandler Carruthce4562b2012-12-17 13:41:21 +00002210static Value *insertVector(IRBuilder<> &IRB, Value *Old, Value *V,
2211 unsigned BeginIndex, const Twine &Name) {
2212 VectorType *VecTy = cast<VectorType>(Old->getType());
2213 assert(VecTy && "Can only insert a vector into a vector");
2214
2215 VectorType *Ty = dyn_cast<VectorType>(V->getType());
2216 if (!Ty) {
2217 // Single element to insert.
2218 V = IRB.CreateInsertElement(Old, V, IRB.getInt32(BeginIndex),
2219 Name + ".insert");
2220 DEBUG(dbgs() << " insert: " << *V << "\n");
2221 return V;
2222 }
2223
2224 assert(Ty->getNumElements() <= VecTy->getNumElements() &&
2225 "Too many elements!");
2226 if (Ty->getNumElements() == VecTy->getNumElements()) {
2227 assert(V->getType() == VecTy && "Vector type mismatch");
2228 return V;
2229 }
2230 unsigned EndIndex = BeginIndex + Ty->getNumElements();
2231
2232 // When inserting a smaller vector into the larger to store, we first
2233 // use a shuffle vector to widen it with undef elements, and then
2234 // a second shuffle vector to select between the loaded vector and the
2235 // incoming vector.
2236 SmallVector<Constant*, 8> Mask;
2237 Mask.reserve(VecTy->getNumElements());
2238 for (unsigned i = 0; i != VecTy->getNumElements(); ++i)
2239 if (i >= BeginIndex && i < EndIndex)
2240 Mask.push_back(IRB.getInt32(i - BeginIndex));
2241 else
2242 Mask.push_back(UndefValue::get(IRB.getInt32Ty()));
2243 V = IRB.CreateShuffleVector(V, UndefValue::get(V->getType()),
2244 ConstantVector::get(Mask),
2245 Name + ".expand");
2246 DEBUG(dbgs() << " shuffle1: " << *V << "\n");
2247
2248 Mask.clear();
2249 for (unsigned i = 0; i != VecTy->getNumElements(); ++i)
2250 if (i >= BeginIndex && i < EndIndex)
2251 Mask.push_back(IRB.getInt32(i));
2252 else
2253 Mask.push_back(IRB.getInt32(i + VecTy->getNumElements()));
2254 V = IRB.CreateShuffleVector(V, Old, ConstantVector::get(Mask),
2255 Name + "insert");
2256 DEBUG(dbgs() << " shuffle2: " << *V << "\n");
2257 return V;
2258}
2259
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002260namespace {
2261/// \brief Visitor to rewrite instructions using a partition of an alloca to
2262/// use a new alloca.
2263///
2264/// Also implements the rewriting to vector-based accesses when the partition
2265/// passes the isVectorPromotionViable predicate. Most of the rewriting logic
2266/// lives here.
2267class AllocaPartitionRewriter : public InstVisitor<AllocaPartitionRewriter,
2268 bool> {
2269 // Befriend the base class so it can delegate to private visit methods.
2270 friend class llvm::InstVisitor<AllocaPartitionRewriter, bool>;
2271
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002272 const DataLayout &TD;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002273 AllocaPartitioning &P;
2274 SROA &Pass;
2275 AllocaInst &OldAI, &NewAI;
2276 const uint64_t NewAllocaBeginOffset, NewAllocaEndOffset;
Chandler Carruth891fec02012-10-13 02:41:05 +00002277 Type *NewAllocaTy;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002278
2279 // If we are rewriting an alloca partition which can be written as pure
2280 // vector operations, we stash extra information here. When VecTy is
Jakub Staszak086f6cd2013-02-19 22:02:21 +00002281 // non-null, we have some strict guarantees about the rewritten alloca:
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002282 // - The new alloca is exactly the size of the vector type here.
2283 // - The accesses all either map to the entire vector or to a single
2284 // element.
2285 // - The set of accessing instructions is only one of those handled above
2286 // in isVectorPromotionViable. Generally these are the same access kinds
2287 // which are promotable via mem2reg.
2288 VectorType *VecTy;
2289 Type *ElementTy;
2290 uint64_t ElementSize;
2291
Chandler Carruth92924fd2012-09-24 00:34:20 +00002292 // This is a convenience and flag variable that will be null unless the new
Chandler Carruth435c4e02012-10-15 08:40:30 +00002293 // alloca's integer operations should be widened to this integer type due to
2294 // passing isIntegerWideningViable above. If it is non-null, the desired
Chandler Carruth92924fd2012-09-24 00:34:20 +00002295 // integer type will be stored here for easy access during rewriting.
Chandler Carruth435c4e02012-10-15 08:40:30 +00002296 IntegerType *IntTy;
Chandler Carruth92924fd2012-09-24 00:34:20 +00002297
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002298 // The offset of the partition user currently being rewritten.
2299 uint64_t BeginOffset, EndOffset;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002300 Use *OldUse;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002301 Instruction *OldPtr;
2302
2303 // The name prefix to use when rewriting instructions for this alloca.
2304 std::string NamePrefix;
2305
2306public:
Micah Villmowcdfe20b2012-10-08 16:38:25 +00002307 AllocaPartitionRewriter(const DataLayout &TD, AllocaPartitioning &P,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002308 AllocaPartitioning::iterator PI,
2309 SROA &Pass, AllocaInst &OldAI, AllocaInst &NewAI,
2310 uint64_t NewBeginOffset, uint64_t NewEndOffset)
2311 : TD(TD), P(P), Pass(Pass),
2312 OldAI(OldAI), NewAI(NewAI),
2313 NewAllocaBeginOffset(NewBeginOffset),
2314 NewAllocaEndOffset(NewEndOffset),
Chandler Carruth891fec02012-10-13 02:41:05 +00002315 NewAllocaTy(NewAI.getAllocatedType()),
Chandler Carruth435c4e02012-10-15 08:40:30 +00002316 VecTy(), ElementTy(), ElementSize(), IntTy(),
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002317 BeginOffset(), EndOffset() {
2318 }
2319
2320 /// \brief Visit the users of the alloca partition and rewrite them.
2321 bool visitUsers(AllocaPartitioning::const_use_iterator I,
2322 AllocaPartitioning::const_use_iterator E) {
2323 if (isVectorPromotionViable(TD, NewAI.getAllocatedType(), P,
2324 NewAllocaBeginOffset, NewAllocaEndOffset,
2325 I, E)) {
2326 ++NumVectorized;
2327 VecTy = cast<VectorType>(NewAI.getAllocatedType());
2328 ElementTy = VecTy->getElementType();
Nadav Rotema5024fc2012-12-18 05:23:31 +00002329 assert((TD.getTypeSizeInBits(VecTy->getScalarType()) % 8) == 0 &&
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002330 "Only multiple-of-8 sized vector elements are viable");
Nadav Rotema5024fc2012-12-18 05:23:31 +00002331 ElementSize = TD.getTypeSizeInBits(VecTy->getScalarType()) / 8;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002332 } else if (isIntegerWideningViable(TD, NewAI.getAllocatedType(),
2333 NewAllocaBeginOffset, P, I, E)) {
2334 IntTy = Type::getIntNTy(NewAI.getContext(),
2335 TD.getTypeSizeInBits(NewAI.getAllocatedType()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002336 }
2337 bool CanSROA = true;
2338 for (; I != E; ++I) {
Chandler Carruth6c3890b2012-10-02 18:57:13 +00002339 if (!I->U)
2340 continue; // Skip dead uses.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002341 BeginOffset = I->BeginOffset;
2342 EndOffset = I->EndOffset;
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002343 OldUse = I->U;
2344 OldPtr = cast<Instruction>(I->U->get());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002345 NamePrefix = (Twine(NewAI.getName()) + "." + Twine(BeginOffset)).str();
Chandler Carruth54e8f0b2012-10-01 01:49:22 +00002346 CanSROA &= visit(cast<Instruction>(I->U->getUser()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002347 }
2348 if (VecTy) {
2349 assert(CanSROA);
2350 VecTy = 0;
2351 ElementTy = 0;
2352 ElementSize = 0;
2353 }
Chandler Carruth435c4e02012-10-15 08:40:30 +00002354 if (IntTy) {
2355 assert(CanSROA);
2356 IntTy = 0;
2357 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002358 return CanSROA;
2359 }
2360
2361private:
2362 // Every instruction which can end up as a user must have a rewrite rule.
2363 bool visitInstruction(Instruction &I) {
2364 DEBUG(dbgs() << " !!!! Cannot rewrite: " << I << "\n");
2365 llvm_unreachable("No rewrite rule for this instruction!");
2366 }
2367
2368 Twine getName(const Twine &Suffix) {
2369 return NamePrefix + Suffix;
2370 }
2371
2372 Value *getAdjustedAllocaPtr(IRBuilder<> &IRB, Type *PointerTy) {
2373 assert(BeginOffset >= NewAllocaBeginOffset);
Chandler Carruth5da3f052012-11-01 09:14:31 +00002374 APInt Offset(TD.getPointerSizeInBits(), BeginOffset - NewAllocaBeginOffset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002375 return getAdjustedPtr(IRB, TD, &NewAI, Offset, PointerTy, getName(""));
2376 }
2377
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002378 /// \brief Compute suitable alignment to access an offset into the new alloca.
2379 unsigned getOffsetAlign(uint64_t Offset) {
Chandler Carruth176ca712012-10-01 12:16:54 +00002380 unsigned NewAIAlign = NewAI.getAlignment();
2381 if (!NewAIAlign)
2382 NewAIAlign = TD.getABITypeAlignment(NewAI.getAllocatedType());
2383 return MinAlign(NewAIAlign, Offset);
2384 }
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002385
2386 /// \brief Compute suitable alignment to access this partition of the new
2387 /// alloca.
2388 unsigned getPartitionAlign() {
2389 return getOffsetAlign(BeginOffset - NewAllocaBeginOffset);
Chandler Carruth176ca712012-10-01 12:16:54 +00002390 }
2391
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002392 /// \brief Compute suitable alignment to access a type at an offset of the
2393 /// new alloca.
2394 ///
2395 /// \returns zero if the type's ABI alignment is a suitable alignment,
2396 /// otherwise returns the maximal suitable alignment.
2397 unsigned getOffsetTypeAlign(Type *Ty, uint64_t Offset) {
2398 unsigned Align = getOffsetAlign(Offset);
2399 return Align == TD.getABITypeAlignment(Ty) ? 0 : Align;
2400 }
2401
2402 /// \brief Compute suitable alignment to access a type at the beginning of
2403 /// this partition of the new alloca.
2404 ///
2405 /// See \c getOffsetTypeAlign for details; this routine delegates to it.
2406 unsigned getPartitionTypeAlign(Type *Ty) {
2407 return getOffsetTypeAlign(Ty, BeginOffset - NewAllocaBeginOffset);
Chandler Carruth176ca712012-10-01 12:16:54 +00002408 }
2409
Chandler Carruth845b73c2012-11-21 08:16:30 +00002410 unsigned getIndex(uint64_t Offset) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002411 assert(VecTy && "Can only call getIndex when rewriting a vector");
2412 uint64_t RelOffset = Offset - NewAllocaBeginOffset;
2413 assert(RelOffset / ElementSize < UINT32_MAX && "Index out of bounds");
2414 uint32_t Index = RelOffset / ElementSize;
2415 assert(Index * ElementSize == RelOffset);
Chandler Carruth845b73c2012-11-21 08:16:30 +00002416 return Index;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002417 }
2418
2419 void deleteIfTriviallyDead(Value *V) {
2420 Instruction *I = cast<Instruction>(V);
2421 if (isInstructionTriviallyDead(I))
Chandler Carruth18db7952012-11-20 01:12:50 +00002422 Pass.DeadInsts.insert(I);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002423 }
2424
Chandler Carruth769445e2012-12-17 12:50:21 +00002425 Value *rewriteVectorizedLoadInst(IRBuilder<> &IRB) {
2426 unsigned BeginIndex = getIndex(BeginOffset);
2427 unsigned EndIndex = getIndex(EndOffset);
2428 assert(EndIndex > BeginIndex && "Empty vector!");
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002429
2430 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2431 getName(".load"));
2432 return extractVector(IRB, V, BeginIndex, EndIndex, getName(".vec"));
Chandler Carruth769445e2012-12-17 12:50:21 +00002433 }
2434
Chandler Carruth18db7952012-11-20 01:12:50 +00002435 Value *rewriteIntegerLoad(IRBuilder<> &IRB, LoadInst &LI) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002436 assert(IntTy && "We cannot insert an integer to the alloca");
Chandler Carruth92924fd2012-09-24 00:34:20 +00002437 assert(!LI.isVolatile());
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002438 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2439 getName(".load"));
2440 V = convertValue(TD, IRB, V, IntTy);
2441 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2442 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
Chandler Carruth18db7952012-11-20 01:12:50 +00002443 if (Offset > 0 || EndOffset < NewAllocaEndOffset)
2444 V = extractInteger(TD, IRB, V, cast<IntegerType>(LI.getType()), Offset,
2445 getName(".extract"));
2446 return V;
Chandler Carruth92924fd2012-09-24 00:34:20 +00002447 }
2448
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002449 bool visitLoadInst(LoadInst &LI) {
2450 DEBUG(dbgs() << " original: " << LI << "\n");
2451 Value *OldOp = LI.getOperand(0);
2452 assert(OldOp == OldPtr);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002453
Chandler Carruth58d05562012-10-25 04:37:07 +00002454 uint64_t Size = EndOffset - BeginOffset;
Chandler Carruth18db7952012-11-20 01:12:50 +00002455 bool IsSplitIntLoad = Size < TD.getTypeStoreSize(LI.getType());
Chandler Carruth3e994a22012-11-20 10:02:19 +00002456
2457 // If this memory access can be shown to *statically* extend outside the
2458 // bounds of the original allocation it's behavior is undefined. Rather
2459 // than trying to transform it, just replace it with undef.
2460 // FIXME: We should do something more clever for functions being
2461 // instrumented by asan.
2462 // FIXME: Eventually, once ASan and friends can flush out bugs here, this
2463 // should be transformed to a load of null making it unreachable.
2464 uint64_t OldAllocSize = TD.getTypeAllocSize(OldAI.getAllocatedType());
2465 if (TD.getTypeStoreSize(LI.getType()) > OldAllocSize) {
2466 LI.replaceAllUsesWith(UndefValue::get(LI.getType()));
2467 Pass.DeadInsts.insert(&LI);
2468 deleteIfTriviallyDead(OldOp);
2469 DEBUG(dbgs() << " to: undef!!\n");
2470 return true;
2471 }
2472
Jakub Staszakdb4579d2013-03-07 22:10:33 +00002473 IRBuilder<> IRB(&LI);
Chandler Carruth18db7952012-11-20 01:12:50 +00002474 Type *TargetTy = IsSplitIntLoad ? Type::getIntNTy(LI.getContext(), Size * 8)
2475 : LI.getType();
2476 bool IsPtrAdjusted = false;
2477 Value *V;
2478 if (VecTy) {
Chandler Carruth769445e2012-12-17 12:50:21 +00002479 V = rewriteVectorizedLoadInst(IRB);
Chandler Carruth18db7952012-11-20 01:12:50 +00002480 } else if (IntTy && LI.getType()->isIntegerTy()) {
2481 V = rewriteIntegerLoad(IRB, LI);
2482 } else if (BeginOffset == NewAllocaBeginOffset &&
2483 canConvertValue(TD, NewAllocaTy, LI.getType())) {
2484 V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2485 LI.isVolatile(), getName(".load"));
2486 } else {
2487 Type *LTy = TargetTy->getPointerTo();
2488 V = IRB.CreateAlignedLoad(getAdjustedAllocaPtr(IRB, LTy),
2489 getPartitionTypeAlign(TargetTy),
2490 LI.isVolatile(), getName(".load"));
2491 IsPtrAdjusted = true;
2492 }
2493 V = convertValue(TD, IRB, V, TargetTy);
2494
2495 if (IsSplitIntLoad) {
Chandler Carruth58d05562012-10-25 04:37:07 +00002496 assert(!LI.isVolatile());
2497 assert(LI.getType()->isIntegerTy() &&
2498 "Only integer type loads and stores are split");
2499 assert(LI.getType()->getIntegerBitWidth() ==
2500 TD.getTypeStoreSizeInBits(LI.getType()) &&
2501 "Non-byte-multiple bit width");
2502 assert(LI.getType()->getIntegerBitWidth() ==
Chandler Carruth1296b592012-10-30 20:52:40 +00002503 TD.getTypeAllocSizeInBits(OldAI.getAllocatedType()) &&
Chandler Carruth58d05562012-10-25 04:37:07 +00002504 "Only alloca-wide loads can be split and recomposed");
Chandler Carruth58d05562012-10-25 04:37:07 +00002505 // Move the insertion point just past the load so that we can refer to it.
2506 IRB.SetInsertPoint(llvm::next(BasicBlock::iterator(&LI)));
Chandler Carruth58d05562012-10-25 04:37:07 +00002507 // Create a placeholder value with the same type as LI to use as the
2508 // basis for the new value. This allows us to replace the uses of LI with
2509 // the computed value, and then replace the placeholder with LI, leaving
2510 // LI only used for this computation.
2511 Value *Placeholder
Jakub Staszak4e45abf2012-11-01 01:10:43 +00002512 = new LoadInst(UndefValue::get(LI.getType()->getPointerTo()));
Chandler Carruth58d05562012-10-25 04:37:07 +00002513 V = insertInteger(TD, IRB, Placeholder, V, BeginOffset,
2514 getName(".insert"));
2515 LI.replaceAllUsesWith(V);
2516 Placeholder->replaceAllUsesWith(&LI);
Jakub Staszak4e45abf2012-11-01 01:10:43 +00002517 delete Placeholder;
Chandler Carruth18db7952012-11-20 01:12:50 +00002518 } else {
2519 LI.replaceAllUsesWith(V);
Chandler Carruth58d05562012-10-25 04:37:07 +00002520 }
2521
Chandler Carruth18db7952012-11-20 01:12:50 +00002522 Pass.DeadInsts.insert(&LI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002523 deleteIfTriviallyDead(OldOp);
Chandler Carruth18db7952012-11-20 01:12:50 +00002524 DEBUG(dbgs() << " to: " << *V << "\n");
2525 return !LI.isVolatile() && !IsPtrAdjusted;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002526 }
2527
Chandler Carruth18db7952012-11-20 01:12:50 +00002528 bool rewriteVectorizedStoreInst(IRBuilder<> &IRB, Value *V,
2529 StoreInst &SI, Value *OldOp) {
Chandler Carruth845b73c2012-11-21 08:16:30 +00002530 unsigned BeginIndex = getIndex(BeginOffset);
2531 unsigned EndIndex = getIndex(EndOffset);
2532 assert(EndIndex > BeginIndex && "Empty vector!");
2533 unsigned NumElements = EndIndex - BeginIndex;
2534 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2535 Type *PartitionTy
2536 = (NumElements == 1) ? ElementTy
2537 : VectorType::get(ElementTy, NumElements);
2538 if (V->getType() != PartitionTy)
2539 V = convertValue(TD, IRB, V, PartitionTy);
Chandler Carruth845b73c2012-11-21 08:16:30 +00002540
Chandler Carrutheae65a52012-12-17 04:07:35 +00002541 // Mix in the existing elements.
Chandler Carruthce4562b2012-12-17 13:41:21 +00002542 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2543 getName(".load"));
2544 V = insertVector(IRB, Old, V, BeginIndex, getName(".vec"));
Chandler Carrutheae65a52012-12-17 04:07:35 +00002545
Chandler Carruth871ba722012-09-26 10:27:46 +00002546 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Chandler Carruth18db7952012-11-20 01:12:50 +00002547 Pass.DeadInsts.insert(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002548
2549 (void)Store;
2550 DEBUG(dbgs() << " to: " << *Store << "\n");
2551 return true;
2552 }
2553
Chandler Carruth18db7952012-11-20 01:12:50 +00002554 bool rewriteIntegerStore(IRBuilder<> &IRB, Value *V, StoreInst &SI) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002555 assert(IntTy && "We cannot extract an integer from the alloca");
Chandler Carruth92924fd2012-09-24 00:34:20 +00002556 assert(!SI.isVolatile());
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002557 if (TD.getTypeSizeInBits(V->getType()) != IntTy->getBitWidth()) {
2558 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2559 getName(".oldload"));
2560 Old = convertValue(TD, IRB, Old, IntTy);
2561 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2562 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2563 V = insertInteger(TD, IRB, Old, SI.getValueOperand(), Offset,
2564 getName(".insert"));
2565 }
2566 V = convertValue(TD, IRB, V, NewAllocaTy);
2567 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Chandler Carruth18db7952012-11-20 01:12:50 +00002568 Pass.DeadInsts.insert(&SI);
Chandler Carruth92924fd2012-09-24 00:34:20 +00002569 (void)Store;
2570 DEBUG(dbgs() << " to: " << *Store << "\n");
2571 return true;
2572 }
2573
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002574 bool visitStoreInst(StoreInst &SI) {
2575 DEBUG(dbgs() << " original: " << SI << "\n");
2576 Value *OldOp = SI.getOperand(1);
2577 assert(OldOp == OldPtr);
2578 IRBuilder<> IRB(&SI);
2579
Chandler Carruth18db7952012-11-20 01:12:50 +00002580 Value *V = SI.getValueOperand();
Chandler Carruth891fec02012-10-13 02:41:05 +00002581
Chandler Carruthac8317f2012-10-04 12:33:50 +00002582 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2583 // alloca that should be re-examined after promoting this alloca.
Chandler Carruth18db7952012-11-20 01:12:50 +00002584 if (V->getType()->isPointerTy())
2585 if (AllocaInst *AI = dyn_cast<AllocaInst>(V->stripInBoundsOffsets()))
Chandler Carruthac8317f2012-10-04 12:33:50 +00002586 Pass.PostPromotionWorklist.insert(AI);
2587
Chandler Carruth18db7952012-11-20 01:12:50 +00002588 uint64_t Size = EndOffset - BeginOffset;
2589 if (Size < TD.getTypeStoreSize(V->getType())) {
2590 assert(!SI.isVolatile());
2591 assert(V->getType()->isIntegerTy() &&
2592 "Only integer type loads and stores are split");
2593 assert(V->getType()->getIntegerBitWidth() ==
2594 TD.getTypeStoreSizeInBits(V->getType()) &&
2595 "Non-byte-multiple bit width");
2596 assert(V->getType()->getIntegerBitWidth() ==
Chandler Carruth067edd32012-12-15 09:26:06 +00002597 TD.getTypeAllocSizeInBits(OldAI.getAllocatedType()) &&
Chandler Carruth18db7952012-11-20 01:12:50 +00002598 "Only alloca-wide stores can be split and recomposed");
2599 IntegerType *NarrowTy = Type::getIntNTy(SI.getContext(), Size * 8);
2600 V = extractInteger(TD, IRB, V, NarrowTy, BeginOffset,
2601 getName(".extract"));
Chandler Carruth891fec02012-10-13 02:41:05 +00002602 }
2603
Chandler Carruth18db7952012-11-20 01:12:50 +00002604 if (VecTy)
2605 return rewriteVectorizedStoreInst(IRB, V, SI, OldOp);
2606 if (IntTy && V->getType()->isIntegerTy())
2607 return rewriteIntegerStore(IRB, V, SI);
Chandler Carruth435c4e02012-10-15 08:40:30 +00002608
Chandler Carruth18db7952012-11-20 01:12:50 +00002609 StoreInst *NewSI;
2610 if (BeginOffset == NewAllocaBeginOffset &&
2611 canConvertValue(TD, V->getType(), NewAllocaTy)) {
2612 V = convertValue(TD, IRB, V, NewAllocaTy);
2613 NewSI = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
2614 SI.isVolatile());
2615 } else {
2616 Value *NewPtr = getAdjustedAllocaPtr(IRB, V->getType()->getPointerTo());
2617 NewSI = IRB.CreateAlignedStore(V, NewPtr,
2618 getPartitionTypeAlign(V->getType()),
2619 SI.isVolatile());
2620 }
2621 (void)NewSI;
2622 Pass.DeadInsts.insert(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002623 deleteIfTriviallyDead(OldOp);
Chandler Carruth18db7952012-11-20 01:12:50 +00002624
2625 DEBUG(dbgs() << " to: " << *NewSI << "\n");
2626 return NewSI->getPointerOperand() == &NewAI && !SI.isVolatile();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002627 }
2628
Chandler Carruth514f34f2012-12-17 04:07:30 +00002629 /// \brief Compute an integer value from splatting an i8 across the given
2630 /// number of bytes.
2631 ///
2632 /// Note that this routine assumes an i8 is a byte. If that isn't true, don't
2633 /// call this routine.
Jakub Staszak086f6cd2013-02-19 22:02:21 +00002634 /// FIXME: Heed the advice above.
Chandler Carruth514f34f2012-12-17 04:07:30 +00002635 ///
2636 /// \param V The i8 value to splat.
2637 /// \param Size The number of bytes in the output (assuming i8 is one byte)
2638 Value *getIntegerSplat(IRBuilder<> &IRB, Value *V, unsigned Size) {
2639 assert(Size > 0 && "Expected a positive number of bytes.");
2640 IntegerType *VTy = cast<IntegerType>(V->getType());
2641 assert(VTy->getBitWidth() == 8 && "Expected an i8 value for the byte");
2642 if (Size == 1)
2643 return V;
2644
2645 Type *SplatIntTy = Type::getIntNTy(VTy->getContext(), Size*8);
2646 V = IRB.CreateMul(IRB.CreateZExt(V, SplatIntTy, getName(".zext")),
2647 ConstantExpr::getUDiv(
2648 Constant::getAllOnesValue(SplatIntTy),
2649 ConstantExpr::getZExt(
2650 Constant::getAllOnesValue(V->getType()),
2651 SplatIntTy)),
2652 getName(".isplat"));
2653 return V;
2654 }
2655
Chandler Carruthccca5042012-12-17 04:07:37 +00002656 /// \brief Compute a vector splat for a given element value.
2657 Value *getVectorSplat(IRBuilder<> &IRB, Value *V, unsigned NumElements) {
Benjamin Kramer614b5e82013-01-01 19:55:16 +00002658 V = IRB.CreateVectorSplat(NumElements, V, NamePrefix);
Chandler Carruthccca5042012-12-17 04:07:37 +00002659 DEBUG(dbgs() << " splat: " << *V << "\n");
2660 return V;
2661 }
2662
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002663 bool visitMemSetInst(MemSetInst &II) {
2664 DEBUG(dbgs() << " original: " << II << "\n");
2665 IRBuilder<> IRB(&II);
2666 assert(II.getRawDest() == OldPtr);
2667
2668 // If the memset has a variable size, it cannot be split, just adjust the
2669 // pointer to the new alloca.
2670 if (!isa<Constant>(II.getLength())) {
2671 II.setDest(getAdjustedAllocaPtr(IRB, II.getRawDest()->getType()));
Chandler Carruth208124f2012-09-26 10:59:22 +00002672 Type *CstTy = II.getAlignmentCst()->getType();
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002673 II.setAlignment(ConstantInt::get(CstTy, getPartitionAlign()));
Chandler Carruth208124f2012-09-26 10:59:22 +00002674
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002675 deleteIfTriviallyDead(OldPtr);
2676 return false;
2677 }
2678
2679 // Record this instruction for deletion.
Chandler Carruth18db7952012-11-20 01:12:50 +00002680 Pass.DeadInsts.insert(&II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002681
2682 Type *AllocaTy = NewAI.getAllocatedType();
2683 Type *ScalarTy = AllocaTy->getScalarType();
2684
2685 // If this doesn't map cleanly onto the alloca type, and that type isn't
2686 // a single value type, just emit a memset.
Chandler Carruth9d966a22012-10-15 10:24:40 +00002687 if (!VecTy && !IntTy &&
2688 (BeginOffset != NewAllocaBeginOffset ||
2689 EndOffset != NewAllocaEndOffset ||
2690 !AllocaTy->isSingleValueType() ||
Chandler Carruthccca5042012-12-17 04:07:37 +00002691 !TD.isLegalInteger(TD.getTypeSizeInBits(ScalarTy)) ||
2692 TD.getTypeSizeInBits(ScalarTy)%8 != 0)) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002693 Type *SizeTy = II.getLength()->getType();
2694 Constant *Size = ConstantInt::get(SizeTy, EndOffset - BeginOffset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002695 CallInst *New
2696 = IRB.CreateMemSet(getAdjustedAllocaPtr(IRB,
2697 II.getRawDest()->getType()),
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002698 II.getValue(), Size, getPartitionAlign(),
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002699 II.isVolatile());
2700 (void)New;
2701 DEBUG(dbgs() << " to: " << *New << "\n");
2702 return false;
2703 }
2704
2705 // If we can represent this as a simple value, we have to build the actual
2706 // value to store, which requires expanding the byte present in memset to
2707 // a sensible representation for the alloca type. This is essentially
Chandler Carruthccca5042012-12-17 04:07:37 +00002708 // splatting the byte to a sufficiently wide integer, splatting it across
2709 // any desired vector width, and bitcasting to the final type.
Benjamin Kramerc003a452013-01-01 16:13:35 +00002710 Value *V;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002711
Chandler Carruthccca5042012-12-17 04:07:37 +00002712 if (VecTy) {
2713 // If this is a memset of a vectorized alloca, insert it.
2714 assert(ElementTy == ScalarTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002715
Chandler Carruthccca5042012-12-17 04:07:37 +00002716 unsigned BeginIndex = getIndex(BeginOffset);
2717 unsigned EndIndex = getIndex(EndOffset);
2718 assert(EndIndex > BeginIndex && "Empty vector!");
2719 unsigned NumElements = EndIndex - BeginIndex;
2720 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2721
2722 Value *Splat = getIntegerSplat(IRB, II.getValue(),
2723 TD.getTypeSizeInBits(ElementTy)/8);
Chandler Carruthcacda252012-12-17 14:03:01 +00002724 Splat = convertValue(TD, IRB, Splat, ElementTy);
2725 if (NumElements > 1)
Chandler Carruthccca5042012-12-17 04:07:37 +00002726 Splat = getVectorSplat(IRB, Splat, NumElements);
2727
Chandler Carruthce4562b2012-12-17 13:41:21 +00002728 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2729 getName(".oldload"));
2730 V = insertVector(IRB, Old, Splat, BeginIndex, getName(".vec"));
Chandler Carruthccca5042012-12-17 04:07:37 +00002731 } else if (IntTy) {
2732 // If this is a memset on an alloca where we can widen stores, insert the
2733 // set integer.
Chandler Carruth9d966a22012-10-15 10:24:40 +00002734 assert(!II.isVolatile());
Chandler Carruthccca5042012-12-17 04:07:37 +00002735
Benjamin Kramerc003a452013-01-01 16:13:35 +00002736 uint64_t Size = EndOffset - BeginOffset;
Chandler Carruthccca5042012-12-17 04:07:37 +00002737 V = getIntegerSplat(IRB, II.getValue(), Size);
2738
2739 if (IntTy && (BeginOffset != NewAllocaBeginOffset ||
2740 EndOffset != NewAllocaBeginOffset)) {
2741 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2742 getName(".oldload"));
2743 Old = convertValue(TD, IRB, Old, IntTy);
2744 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2745 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2746 V = insertInteger(TD, IRB, Old, V, Offset, getName(".insert"));
2747 } else {
2748 assert(V->getType() == IntTy &&
2749 "Wrong type for an alloca wide integer!");
2750 }
Chandler Carruth95e1fb82012-12-17 13:51:03 +00002751 V = convertValue(TD, IRB, V, AllocaTy);
Chandler Carruthccca5042012-12-17 04:07:37 +00002752 } else {
2753 // Established these invariants above.
2754 assert(BeginOffset == NewAllocaBeginOffset);
2755 assert(EndOffset == NewAllocaEndOffset);
2756
2757 V = getIntegerSplat(IRB, II.getValue(),
2758 TD.getTypeSizeInBits(ScalarTy)/8);
Chandler Carruthccca5042012-12-17 04:07:37 +00002759 if (VectorType *AllocaVecTy = dyn_cast<VectorType>(AllocaTy))
2760 V = getVectorSplat(IRB, V, AllocaVecTy->getNumElements());
Chandler Carruth95e1fb82012-12-17 13:51:03 +00002761
2762 V = convertValue(TD, IRB, V, AllocaTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002763 }
2764
Chandler Carruth95e1fb82012-12-17 13:51:03 +00002765 Value *New = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
Chandler Carruth871ba722012-09-26 10:27:46 +00002766 II.isVolatile());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002767 (void)New;
2768 DEBUG(dbgs() << " to: " << *New << "\n");
2769 return !II.isVolatile();
2770 }
2771
2772 bool visitMemTransferInst(MemTransferInst &II) {
2773 // Rewriting of memory transfer instructions can be a bit tricky. We break
2774 // them into two categories: split intrinsics and unsplit intrinsics.
2775
2776 DEBUG(dbgs() << " original: " << II << "\n");
2777 IRBuilder<> IRB(&II);
2778
2779 assert(II.getRawSource() == OldPtr || II.getRawDest() == OldPtr);
2780 bool IsDest = II.getRawDest() == OldPtr;
2781
2782 const AllocaPartitioning::MemTransferOffsets &MTO
2783 = P.getMemTransferOffsets(II);
2784
Chandler Carruth176ca712012-10-01 12:16:54 +00002785 // Compute the relative offset within the transfer.
Chandler Carruth5da3f052012-11-01 09:14:31 +00002786 unsigned IntPtrWidth = TD.getPointerSizeInBits();
Chandler Carruth176ca712012-10-01 12:16:54 +00002787 APInt RelOffset(IntPtrWidth, BeginOffset - (IsDest ? MTO.DestBegin
2788 : MTO.SourceBegin));
2789
2790 unsigned Align = II.getAlignment();
2791 if (Align > 1)
2792 Align = MinAlign(RelOffset.zextOrTrunc(64).getZExtValue(),
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002793 MinAlign(II.getAlignment(), getPartitionAlign()));
Chandler Carruth176ca712012-10-01 12:16:54 +00002794
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002795 // For unsplit intrinsics, we simply modify the source and destination
2796 // pointers in place. This isn't just an optimization, it is a matter of
2797 // correctness. With unsplit intrinsics we may be dealing with transfers
2798 // within a single alloca before SROA ran, or with transfers that have
2799 // a variable length. We may also be dealing with memmove instead of
2800 // memcpy, and so simply updating the pointers is the necessary for us to
2801 // update both source and dest of a single call.
2802 if (!MTO.IsSplittable) {
2803 Value *OldOp = IsDest ? II.getRawDest() : II.getRawSource();
2804 if (IsDest)
2805 II.setDest(getAdjustedAllocaPtr(IRB, II.getRawDest()->getType()));
2806 else
2807 II.setSource(getAdjustedAllocaPtr(IRB, II.getRawSource()->getType()));
2808
Chandler Carruth208124f2012-09-26 10:59:22 +00002809 Type *CstTy = II.getAlignmentCst()->getType();
Chandler Carruth176ca712012-10-01 12:16:54 +00002810 II.setAlignment(ConstantInt::get(CstTy, Align));
Chandler Carruth208124f2012-09-26 10:59:22 +00002811
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002812 DEBUG(dbgs() << " to: " << II << "\n");
2813 deleteIfTriviallyDead(OldOp);
2814 return false;
2815 }
2816 // For split transfer intrinsics we have an incredibly useful assurance:
2817 // the source and destination do not reside within the same alloca, and at
2818 // least one of them does not escape. This means that we can replace
2819 // memmove with memcpy, and we don't need to worry about all manner of
2820 // downsides to splitting and transforming the operations.
2821
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002822 // If this doesn't map cleanly onto the alloca type, and that type isn't
2823 // a single value type, just emit a memcpy.
2824 bool EmitMemCpy
Chandler Carruth49c8eea2012-10-15 10:24:43 +00002825 = !VecTy && !IntTy && (BeginOffset != NewAllocaBeginOffset ||
2826 EndOffset != NewAllocaEndOffset ||
2827 !NewAI.getAllocatedType()->isSingleValueType());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002828
2829 // If we're just going to emit a memcpy, the alloca hasn't changed, and the
2830 // size hasn't been shrunk based on analysis of the viable range, this is
2831 // a no-op.
2832 if (EmitMemCpy && &OldAI == &NewAI) {
2833 uint64_t OrigBegin = IsDest ? MTO.DestBegin : MTO.SourceBegin;
2834 uint64_t OrigEnd = IsDest ? MTO.DestEnd : MTO.SourceEnd;
2835 // Ensure the start lines up.
2836 assert(BeginOffset == OrigBegin);
Benjamin Kramer4622cd72012-09-14 13:08:09 +00002837 (void)OrigBegin;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002838
2839 // Rewrite the size as needed.
2840 if (EndOffset != OrigEnd)
2841 II.setLength(ConstantInt::get(II.getLength()->getType(),
2842 EndOffset - BeginOffset));
2843 return false;
2844 }
2845 // Record this instruction for deletion.
Chandler Carruth18db7952012-11-20 01:12:50 +00002846 Pass.DeadInsts.insert(&II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002847
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002848 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2849 // alloca that should be re-examined after rewriting this instruction.
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002850 Value *OtherPtr = IsDest ? II.getRawSource() : II.getRawDest();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002851 if (AllocaInst *AI
2852 = dyn_cast<AllocaInst>(OtherPtr->stripInBoundsOffsets()))
Chandler Carruth4bd8f662012-09-26 07:41:40 +00002853 Pass.Worklist.insert(AI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002854
2855 if (EmitMemCpy) {
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002856 Type *OtherPtrTy = IsDest ? II.getRawSource()->getType()
2857 : II.getRawDest()->getType();
2858
2859 // Compute the other pointer, folding as much as possible to produce
2860 // a single, simple GEP in most cases.
2861 OtherPtr = getAdjustedPtr(IRB, TD, OtherPtr, RelOffset, OtherPtrTy,
2862 getName("." + OtherPtr->getName()));
2863
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002864 Value *OurPtr
2865 = getAdjustedAllocaPtr(IRB, IsDest ? II.getRawDest()->getType()
2866 : II.getRawSource()->getType());
2867 Type *SizeTy = II.getLength()->getType();
2868 Constant *Size = ConstantInt::get(SizeTy, EndOffset - BeginOffset);
2869
2870 CallInst *New = IRB.CreateMemCpy(IsDest ? OurPtr : OtherPtr,
2871 IsDest ? OtherPtr : OurPtr,
Chandler Carruth871ba722012-09-26 10:27:46 +00002872 Size, Align, II.isVolatile());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002873 (void)New;
2874 DEBUG(dbgs() << " to: " << *New << "\n");
2875 return false;
2876 }
2877
Chandler Carruth08e5f492012-10-03 08:26:28 +00002878 // Note that we clamp the alignment to 1 here as a 0 alignment for a memcpy
2879 // is equivalent to 1, but that isn't true if we end up rewriting this as
2880 // a load or store.
2881 if (!Align)
2882 Align = 1;
2883
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002884 bool IsWholeAlloca = BeginOffset == NewAllocaBeginOffset &&
2885 EndOffset == NewAllocaEndOffset;
2886 uint64_t Size = EndOffset - BeginOffset;
2887 unsigned BeginIndex = VecTy ? getIndex(BeginOffset) : 0;
2888 unsigned EndIndex = VecTy ? getIndex(EndOffset) : 0;
2889 unsigned NumElements = EndIndex - BeginIndex;
2890 IntegerType *SubIntTy
2891 = IntTy ? Type::getIntNTy(IntTy->getContext(), Size*8) : 0;
2892
2893 Type *OtherPtrTy = NewAI.getType();
2894 if (VecTy && !IsWholeAlloca) {
2895 if (NumElements == 1)
2896 OtherPtrTy = VecTy->getElementType();
2897 else
2898 OtherPtrTy = VectorType::get(VecTy->getElementType(), NumElements);
2899
2900 OtherPtrTy = OtherPtrTy->getPointerTo();
2901 } else if (IntTy && !IsWholeAlloca) {
2902 OtherPtrTy = SubIntTy->getPointerTo();
2903 }
2904
2905 Value *SrcPtr = getAdjustedPtr(IRB, TD, OtherPtr, RelOffset, OtherPtrTy,
2906 getName("." + OtherPtr->getName()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002907 Value *DstPtr = &NewAI;
2908 if (!IsDest)
2909 std::swap(SrcPtr, DstPtr);
2910
2911 Value *Src;
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002912 if (VecTy && !IsWholeAlloca && !IsDest) {
2913 Src = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2914 getName(".load"));
2915 Src = extractVector(IRB, Src, BeginIndex, EndIndex, getName(".vec"));
Chandler Carruth49c8eea2012-10-15 10:24:43 +00002916 } else if (IntTy && !IsWholeAlloca && !IsDest) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002917 Src = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2918 getName(".load"));
2919 Src = convertValue(TD, IRB, Src, IntTy);
2920 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2921 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2922 Src = extractInteger(TD, IRB, Src, SubIntTy, Offset, getName(".extract"));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002923 } else {
Chandler Carruth871ba722012-09-26 10:27:46 +00002924 Src = IRB.CreateAlignedLoad(SrcPtr, Align, II.isVolatile(),
2925 getName(".copyload"));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002926 }
2927
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002928 if (VecTy && !IsWholeAlloca && IsDest) {
2929 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2930 getName(".oldload"));
2931 Src = insertVector(IRB, Old, Src, BeginIndex, getName(".vec"));
2932 } else if (IntTy && !IsWholeAlloca && IsDest) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002933 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2934 getName(".oldload"));
2935 Old = convertValue(TD, IRB, Old, IntTy);
2936 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2937 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
2938 Src = insertInteger(TD, IRB, Old, Src, Offset, getName(".insert"));
2939 Src = convertValue(TD, IRB, Src, NewAllocaTy);
Chandler Carruth49c8eea2012-10-15 10:24:43 +00002940 }
2941
Chandler Carruth871ba722012-09-26 10:27:46 +00002942 StoreInst *Store = cast<StoreInst>(
2943 IRB.CreateAlignedStore(Src, DstPtr, Align, II.isVolatile()));
2944 (void)Store;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002945 DEBUG(dbgs() << " to: " << *Store << "\n");
2946 return !II.isVolatile();
2947 }
2948
2949 bool visitIntrinsicInst(IntrinsicInst &II) {
2950 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
2951 II.getIntrinsicID() == Intrinsic::lifetime_end);
2952 DEBUG(dbgs() << " original: " << II << "\n");
2953 IRBuilder<> IRB(&II);
2954 assert(II.getArgOperand(1) == OldPtr);
2955
2956 // Record this instruction for deletion.
Chandler Carruth18db7952012-11-20 01:12:50 +00002957 Pass.DeadInsts.insert(&II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002958
2959 ConstantInt *Size
2960 = ConstantInt::get(cast<IntegerType>(II.getArgOperand(0)->getType()),
2961 EndOffset - BeginOffset);
2962 Value *Ptr = getAdjustedAllocaPtr(IRB, II.getArgOperand(1)->getType());
2963 Value *New;
2964 if (II.getIntrinsicID() == Intrinsic::lifetime_start)
2965 New = IRB.CreateLifetimeStart(Ptr, Size);
2966 else
2967 New = IRB.CreateLifetimeEnd(Ptr, Size);
2968
Edwin Vane82f80d42013-01-29 17:42:24 +00002969 (void)New;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002970 DEBUG(dbgs() << " to: " << *New << "\n");
2971 return true;
2972 }
2973
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002974 bool visitPHINode(PHINode &PN) {
2975 DEBUG(dbgs() << " original: " << PN << "\n");
Chandler Carruth82a57542012-10-01 10:54:05 +00002976
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002977 // We would like to compute a new pointer in only one place, but have it be
2978 // as local as possible to the PHI. To do that, we re-use the location of
2979 // the old pointer, which necessarily must be in the right position to
2980 // dominate the PHI.
2981 IRBuilder<> PtrBuilder(cast<Instruction>(OldPtr));
2982
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002983 Value *NewPtr = getAdjustedAllocaPtr(PtrBuilder, OldPtr->getType());
Chandler Carruth82a57542012-10-01 10:54:05 +00002984 // Replace the operands which were using the old pointer.
Benjamin Kramer7ddd7052012-10-20 12:04:57 +00002985 std::replace(PN.op_begin(), PN.op_end(), cast<Value>(OldPtr), NewPtr);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002986
Chandler Carruth82a57542012-10-01 10:54:05 +00002987 DEBUG(dbgs() << " to: " << PN << "\n");
2988 deleteIfTriviallyDead(OldPtr);
2989 return false;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002990 }
2991
2992 bool visitSelectInst(SelectInst &SI) {
2993 DEBUG(dbgs() << " original: " << SI << "\n");
2994 IRBuilder<> IRB(&SI);
2995
2996 // Find the operand we need to rewrite here.
2997 bool IsTrueVal = SI.getTrueValue() == OldPtr;
2998 if (IsTrueVal)
2999 assert(SI.getFalseValue() != OldPtr && "Pointer is both operands!");
3000 else
3001 assert(SI.getFalseValue() == OldPtr && "Pointer isn't an operand!");
Chandler Carruth82a57542012-10-01 10:54:05 +00003002
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003003 Value *NewPtr = getAdjustedAllocaPtr(IRB, OldPtr->getType());
Chandler Carruth82a57542012-10-01 10:54:05 +00003004 SI.setOperand(IsTrueVal ? 1 : 2, NewPtr);
3005 DEBUG(dbgs() << " to: " << SI << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003006 deleteIfTriviallyDead(OldPtr);
Chandler Carruth82a57542012-10-01 10:54:05 +00003007 return false;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003008 }
3009
3010};
3011}
3012
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003013namespace {
3014/// \brief Visitor to rewrite aggregate loads and stores as scalar.
3015///
3016/// This pass aggressively rewrites all aggregate loads and stores on
3017/// a particular pointer (or any pointer derived from it which we can identify)
3018/// with scalar loads and stores.
3019class AggLoadStoreRewriter : public InstVisitor<AggLoadStoreRewriter, bool> {
3020 // Befriend the base class so it can delegate to private visit methods.
3021 friend class llvm::InstVisitor<AggLoadStoreRewriter, bool>;
3022
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003023 const DataLayout &TD;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003024
3025 /// Queue of pointer uses to analyze and potentially rewrite.
3026 SmallVector<Use *, 8> Queue;
3027
3028 /// Set to prevent us from cycling with phi nodes and loops.
3029 SmallPtrSet<User *, 8> Visited;
3030
3031 /// The current pointer use being rewritten. This is used to dig up the used
3032 /// value (as opposed to the user).
3033 Use *U;
3034
3035public:
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003036 AggLoadStoreRewriter(const DataLayout &TD) : TD(TD) {}
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003037
3038 /// Rewrite loads and stores through a pointer and all pointers derived from
3039 /// it.
3040 bool rewrite(Instruction &I) {
3041 DEBUG(dbgs() << " Rewriting FCA loads and stores...\n");
3042 enqueueUsers(I);
3043 bool Changed = false;
3044 while (!Queue.empty()) {
3045 U = Queue.pop_back_val();
3046 Changed |= visit(cast<Instruction>(U->getUser()));
3047 }
3048 return Changed;
3049 }
3050
3051private:
3052 /// Enqueue all the users of the given instruction for further processing.
3053 /// This uses a set to de-duplicate users.
3054 void enqueueUsers(Instruction &I) {
3055 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end(); UI != UE;
3056 ++UI)
3057 if (Visited.insert(*UI))
3058 Queue.push_back(&UI.getUse());
3059 }
3060
3061 // Conservative default is to not rewrite anything.
3062 bool visitInstruction(Instruction &I) { return false; }
3063
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003064 /// \brief Generic recursive split emission class.
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003065 template <typename Derived>
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003066 class OpSplitter {
3067 protected:
3068 /// The builder used to form new instructions.
3069 IRBuilder<> IRB;
3070 /// The indices which to be used with insert- or extractvalue to select the
3071 /// appropriate value within the aggregate.
3072 SmallVector<unsigned, 4> Indices;
3073 /// The indices to a GEP instruction which will move Ptr to the correct slot
3074 /// within the aggregate.
3075 SmallVector<Value *, 4> GEPIndices;
3076 /// The base pointer of the original op, used as a base for GEPing the
3077 /// split operations.
3078 Value *Ptr;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003079
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003080 /// Initialize the splitter with an insertion point, Ptr and start with a
3081 /// single zero GEP index.
3082 OpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003083 : IRB(InsertionPoint), GEPIndices(1, IRB.getInt32(0)), Ptr(Ptr) {}
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003084
3085 public:
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003086 /// \brief Generic recursive split emission routine.
3087 ///
3088 /// This method recursively splits an aggregate op (load or store) into
3089 /// scalar or vector ops. It splits recursively until it hits a single value
3090 /// and emits that single value operation via the template argument.
3091 ///
3092 /// The logic of this routine relies on GEPs and insertvalue and
3093 /// extractvalue all operating with the same fundamental index list, merely
3094 /// formatted differently (GEPs need actual values).
3095 ///
3096 /// \param Ty The type being split recursively into smaller ops.
3097 /// \param Agg The aggregate value being built up or stored, depending on
3098 /// whether this is splitting a load or a store respectively.
3099 void emitSplitOps(Type *Ty, Value *&Agg, const Twine &Name) {
3100 if (Ty->isSingleValueType())
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003101 return static_cast<Derived *>(this)->emitFunc(Ty, Agg, Name);
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003102
3103 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
3104 unsigned OldSize = Indices.size();
3105 (void)OldSize;
3106 for (unsigned Idx = 0, Size = ATy->getNumElements(); Idx != Size;
3107 ++Idx) {
3108 assert(Indices.size() == OldSize && "Did not return to the old size");
3109 Indices.push_back(Idx);
3110 GEPIndices.push_back(IRB.getInt32(Idx));
3111 emitSplitOps(ATy->getElementType(), Agg, Name + "." + Twine(Idx));
3112 GEPIndices.pop_back();
3113 Indices.pop_back();
3114 }
3115 return;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003116 }
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003117
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003118 if (StructType *STy = dyn_cast<StructType>(Ty)) {
3119 unsigned OldSize = Indices.size();
3120 (void)OldSize;
3121 for (unsigned Idx = 0, Size = STy->getNumElements(); Idx != Size;
3122 ++Idx) {
3123 assert(Indices.size() == OldSize && "Did not return to the old size");
3124 Indices.push_back(Idx);
3125 GEPIndices.push_back(IRB.getInt32(Idx));
3126 emitSplitOps(STy->getElementType(Idx), Agg, Name + "." + Twine(Idx));
3127 GEPIndices.pop_back();
3128 Indices.pop_back();
3129 }
3130 return;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003131 }
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003132
3133 llvm_unreachable("Only arrays and structs are aggregate loadable types");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003134 }
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003135 };
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003136
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003137 struct LoadOpSplitter : public OpSplitter<LoadOpSplitter> {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003138 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramera59ef572012-09-18 17:11:47 +00003139 : OpSplitter<LoadOpSplitter>(InsertionPoint, Ptr) {}
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003140
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003141 /// Emit a leaf load of a single value. This is called at the leaves of the
3142 /// recursive emission to actually load values.
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003143 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003144 assert(Ty->isSingleValueType());
3145 // Load the single value and insert it using the indices.
Jakub Staszak3c6583a2013-02-19 22:14:45 +00003146 Value *GEP = IRB.CreateInBoundsGEP(Ptr, GEPIndices, Name + ".gep");
3147 Value *Load = IRB.CreateLoad(GEP, Name + ".load");
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003148 Agg = IRB.CreateInsertValue(Agg, Load, Indices, Name + ".insert");
3149 DEBUG(dbgs() << " to: " << *Load << "\n");
3150 }
3151 };
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003152
3153 bool visitLoadInst(LoadInst &LI) {
3154 assert(LI.getPointerOperand() == *U);
3155 if (!LI.isSimple() || LI.getType()->isSingleValueType())
3156 return false;
3157
3158 // We have an aggregate being loaded, split it apart.
3159 DEBUG(dbgs() << " original: " << LI << "\n");
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003160 LoadOpSplitter Splitter(&LI, *U);
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003161 Value *V = UndefValue::get(LI.getType());
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003162 Splitter.emitSplitOps(LI.getType(), V, LI.getName() + ".fca");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003163 LI.replaceAllUsesWith(V);
3164 LI.eraseFromParent();
3165 return true;
3166 }
3167
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003168 struct StoreOpSplitter : public OpSplitter<StoreOpSplitter> {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003169 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr)
Benjamin Kramera59ef572012-09-18 17:11:47 +00003170 : OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr) {}
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003171
3172 /// Emit a leaf store of a single value. This is called at the leaves of the
3173 /// recursive emission to actually produce stores.
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003174 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003175 assert(Ty->isSingleValueType());
3176 // Extract the single value and store it using the indices.
3177 Value *Store = IRB.CreateStore(
3178 IRB.CreateExtractValue(Agg, Indices, Name + ".extract"),
3179 IRB.CreateInBoundsGEP(Ptr, GEPIndices, Name + ".gep"));
3180 (void)Store;
3181 DEBUG(dbgs() << " to: " << *Store << "\n");
3182 }
3183 };
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003184
3185 bool visitStoreInst(StoreInst &SI) {
3186 if (!SI.isSimple() || SI.getPointerOperand() != *U)
3187 return false;
3188 Value *V = SI.getValueOperand();
3189 if (V->getType()->isSingleValueType())
3190 return false;
3191
3192 // We have an aggregate being stored, split it apart.
3193 DEBUG(dbgs() << " original: " << SI << "\n");
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003194 StoreOpSplitter Splitter(&SI, *U);
3195 Splitter.emitSplitOps(V->getType(), V, V->getName() + ".fca");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003196 SI.eraseFromParent();
3197 return true;
3198 }
3199
3200 bool visitBitCastInst(BitCastInst &BC) {
3201 enqueueUsers(BC);
3202 return false;
3203 }
3204
3205 bool visitGetElementPtrInst(GetElementPtrInst &GEPI) {
3206 enqueueUsers(GEPI);
3207 return false;
3208 }
3209
3210 bool visitPHINode(PHINode &PN) {
3211 enqueueUsers(PN);
3212 return false;
3213 }
3214
3215 bool visitSelectInst(SelectInst &SI) {
3216 enqueueUsers(SI);
3217 return false;
3218 }
3219};
3220}
3221
Chandler Carruthba931992012-10-13 10:49:33 +00003222/// \brief Strip aggregate type wrapping.
3223///
3224/// This removes no-op aggregate types wrapping an underlying type. It will
3225/// strip as many layers of types as it can without changing either the type
3226/// size or the allocated size.
3227static Type *stripAggregateTypeWrapping(const DataLayout &DL, Type *Ty) {
3228 if (Ty->isSingleValueType())
3229 return Ty;
3230
3231 uint64_t AllocSize = DL.getTypeAllocSize(Ty);
3232 uint64_t TypeSize = DL.getTypeSizeInBits(Ty);
3233
3234 Type *InnerTy;
3235 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
3236 InnerTy = ArrTy->getElementType();
3237 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
3238 const StructLayout *SL = DL.getStructLayout(STy);
3239 unsigned Index = SL->getElementContainingOffset(0);
3240 InnerTy = STy->getElementType(Index);
3241 } else {
3242 return Ty;
3243 }
3244
3245 if (AllocSize > DL.getTypeAllocSize(InnerTy) ||
3246 TypeSize > DL.getTypeSizeInBits(InnerTy))
3247 return Ty;
3248
3249 return stripAggregateTypeWrapping(DL, InnerTy);
3250}
3251
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003252/// \brief Try to find a partition of the aggregate type passed in for a given
3253/// offset and size.
3254///
3255/// This recurses through the aggregate type and tries to compute a subtype
3256/// based on the offset and size. When the offset and size span a sub-section
Chandler Carruth054a40a2012-09-14 11:08:31 +00003257/// of an array, it will even compute a new array type for that sub-section,
3258/// and the same for structs.
3259///
3260/// Note that this routine is very strict and tries to find a partition of the
3261/// type which produces the *exact* right offset and size. It is not forgiving
3262/// when the size or offset cause either end of type-based partition to be off.
3263/// Also, this is a best-effort routine. It is reasonable to give up and not
3264/// return a type if necessary.
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003265static Type *getTypePartition(const DataLayout &TD, Type *Ty,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003266 uint64_t Offset, uint64_t Size) {
3267 if (Offset == 0 && TD.getTypeAllocSize(Ty) == Size)
Chandler Carruthba931992012-10-13 10:49:33 +00003268 return stripAggregateTypeWrapping(TD, Ty);
Chandler Carruth58d05562012-10-25 04:37:07 +00003269 if (Offset > TD.getTypeAllocSize(Ty) ||
3270 (TD.getTypeAllocSize(Ty) - Offset) < Size)
3271 return 0;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003272
3273 if (SequentialType *SeqTy = dyn_cast<SequentialType>(Ty)) {
3274 // We can't partition pointers...
3275 if (SeqTy->isPointerTy())
3276 return 0;
3277
3278 Type *ElementTy = SeqTy->getElementType();
3279 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy);
3280 uint64_t NumSkippedElements = Offset / ElementSize;
3281 if (ArrayType *ArrTy = dyn_cast<ArrayType>(SeqTy))
3282 if (NumSkippedElements >= ArrTy->getNumElements())
3283 return 0;
3284 if (VectorType *VecTy = dyn_cast<VectorType>(SeqTy))
3285 if (NumSkippedElements >= VecTy->getNumElements())
3286 return 0;
3287 Offset -= NumSkippedElements * ElementSize;
3288
3289 // First check if we need to recurse.
3290 if (Offset > 0 || Size < ElementSize) {
3291 // Bail if the partition ends in a different array element.
3292 if ((Offset + Size) > ElementSize)
3293 return 0;
3294 // Recurse through the element type trying to peel off offset bytes.
3295 return getTypePartition(TD, ElementTy, Offset, Size);
3296 }
3297 assert(Offset == 0);
3298
3299 if (Size == ElementSize)
Chandler Carruthba931992012-10-13 10:49:33 +00003300 return stripAggregateTypeWrapping(TD, ElementTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003301 assert(Size > ElementSize);
3302 uint64_t NumElements = Size / ElementSize;
3303 if (NumElements * ElementSize != Size)
3304 return 0;
3305 return ArrayType::get(ElementTy, NumElements);
3306 }
3307
3308 StructType *STy = dyn_cast<StructType>(Ty);
3309 if (!STy)
3310 return 0;
3311
3312 const StructLayout *SL = TD.getStructLayout(STy);
Chandler Carruth054a40a2012-09-14 11:08:31 +00003313 if (Offset >= SL->getSizeInBytes())
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003314 return 0;
3315 uint64_t EndOffset = Offset + Size;
3316 if (EndOffset > SL->getSizeInBytes())
3317 return 0;
3318
3319 unsigned Index = SL->getElementContainingOffset(Offset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003320 Offset -= SL->getElementOffset(Index);
3321
3322 Type *ElementTy = STy->getElementType(Index);
3323 uint64_t ElementSize = TD.getTypeAllocSize(ElementTy);
3324 if (Offset >= ElementSize)
3325 return 0; // The offset points into alignment padding.
3326
3327 // See if any partition must be contained by the element.
3328 if (Offset > 0 || Size < ElementSize) {
3329 if ((Offset + Size) > ElementSize)
3330 return 0;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003331 return getTypePartition(TD, ElementTy, Offset, Size);
3332 }
3333 assert(Offset == 0);
3334
3335 if (Size == ElementSize)
Chandler Carruthba931992012-10-13 10:49:33 +00003336 return stripAggregateTypeWrapping(TD, ElementTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003337
3338 StructType::element_iterator EI = STy->element_begin() + Index,
3339 EE = STy->element_end();
3340 if (EndOffset < SL->getSizeInBytes()) {
3341 unsigned EndIndex = SL->getElementContainingOffset(EndOffset);
3342 if (Index == EndIndex)
3343 return 0; // Within a single element and its padding.
Chandler Carruth054a40a2012-09-14 11:08:31 +00003344
3345 // Don't try to form "natural" types if the elements don't line up with the
3346 // expected size.
3347 // FIXME: We could potentially recurse down through the last element in the
3348 // sub-struct to find a natural end point.
3349 if (SL->getElementOffset(EndIndex) != EndOffset)
3350 return 0;
3351
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003352 assert(Index < EndIndex);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003353 EE = STy->element_begin() + EndIndex;
3354 }
3355
3356 // Try to build up a sub-structure.
Benjamin Kramer7ddd7052012-10-20 12:04:57 +00003357 StructType *SubTy = StructType::get(STy->getContext(), makeArrayRef(EI, EE),
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003358 STy->isPacked());
3359 const StructLayout *SubSL = TD.getStructLayout(SubTy);
Chandler Carruth054a40a2012-09-14 11:08:31 +00003360 if (Size != SubSL->getSizeInBytes())
3361 return 0; // The sub-struct doesn't have quite the size needed.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003362
Chandler Carruth054a40a2012-09-14 11:08:31 +00003363 return SubTy;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003364}
3365
3366/// \brief Rewrite an alloca partition's users.
3367///
3368/// This routine drives both of the rewriting goals of the SROA pass. It tries
3369/// to rewrite uses of an alloca partition to be conducive for SSA value
3370/// promotion. If the partition needs a new, more refined alloca, this will
3371/// build that new alloca, preserving as much type information as possible, and
3372/// rewrite the uses of the old alloca to point at the new one and have the
3373/// appropriate new offsets. It also evaluates how successful the rewrite was
3374/// at enabling promotion and if it was successful queues the alloca to be
3375/// promoted.
3376bool SROA::rewriteAllocaPartition(AllocaInst &AI,
3377 AllocaPartitioning &P,
3378 AllocaPartitioning::iterator PI) {
3379 uint64_t AllocaSize = PI->EndOffset - PI->BeginOffset;
Chandler Carruth6c3890b2012-10-02 18:57:13 +00003380 bool IsLive = false;
3381 for (AllocaPartitioning::use_iterator UI = P.use_begin(PI),
3382 UE = P.use_end(PI);
3383 UI != UE && !IsLive; ++UI)
3384 if (UI->U)
3385 IsLive = true;
3386 if (!IsLive)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003387 return false; // No live uses left of this partition.
3388
Chandler Carruth82a57542012-10-01 10:54:05 +00003389 DEBUG(dbgs() << "Speculating PHIs and selects in partition "
3390 << "[" << PI->BeginOffset << "," << PI->EndOffset << ")\n");
3391
3392 PHIOrSelectSpeculator Speculator(*TD, P, *this);
3393 DEBUG(dbgs() << " speculating ");
3394 DEBUG(P.print(dbgs(), PI, ""));
Chandler Carruth3903e052012-10-02 17:49:47 +00003395 Speculator.visitUsers(PI);
Chandler Carruth82a57542012-10-01 10:54:05 +00003396
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003397 // Try to compute a friendly type for this partition of the alloca. This
3398 // won't always succeed, in which case we fall back to a legal integer type
3399 // or an i8 array of an appropriate size.
3400 Type *AllocaTy = 0;
3401 if (Type *PartitionTy = P.getCommonType(PI))
3402 if (TD->getTypeAllocSize(PartitionTy) >= AllocaSize)
3403 AllocaTy = PartitionTy;
3404 if (!AllocaTy)
3405 if (Type *PartitionTy = getTypePartition(*TD, AI.getAllocatedType(),
3406 PI->BeginOffset, AllocaSize))
3407 AllocaTy = PartitionTy;
3408 if ((!AllocaTy ||
3409 (AllocaTy->isArrayTy() &&
3410 AllocaTy->getArrayElementType()->isIntegerTy())) &&
3411 TD->isLegalInteger(AllocaSize * 8))
3412 AllocaTy = Type::getIntNTy(*C, AllocaSize * 8);
3413 if (!AllocaTy)
3414 AllocaTy = ArrayType::get(Type::getInt8Ty(*C), AllocaSize);
Chandler Carruthb0de6dd2012-09-14 10:26:34 +00003415 assert(TD->getTypeAllocSize(AllocaTy) >= AllocaSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003416
3417 // Check for the case where we're going to rewrite to a new alloca of the
3418 // exact same type as the original, and with the same access offsets. In that
3419 // case, re-use the existing alloca, but still run through the rewriter to
Jakub Staszak086f6cd2013-02-19 22:02:21 +00003420 // perform phi and select speculation.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003421 AllocaInst *NewAI;
3422 if (AllocaTy == AI.getAllocatedType()) {
3423 assert(PI->BeginOffset == 0 &&
3424 "Non-zero begin offset but same alloca type");
3425 assert(PI == P.begin() && "Begin offset is zero on later partition");
3426 NewAI = &AI;
3427 } else {
Chandler Carruth903790e2012-09-29 10:41:21 +00003428 unsigned Alignment = AI.getAlignment();
3429 if (!Alignment) {
3430 // The minimum alignment which users can rely on when the explicit
3431 // alignment is omitted or zero is that required by the ABI for this
3432 // type.
3433 Alignment = TD->getABITypeAlignment(AI.getAllocatedType());
3434 }
3435 Alignment = MinAlign(Alignment, PI->BeginOffset);
3436 // If we will get at least this much alignment from the type alone, leave
3437 // the alloca's alignment unconstrained.
3438 if (Alignment <= TD->getABITypeAlignment(AllocaTy))
3439 Alignment = 0;
3440 NewAI = new AllocaInst(AllocaTy, 0, Alignment,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003441 AI.getName() + ".sroa." + Twine(PI - P.begin()),
3442 &AI);
3443 ++NumNewAllocas;
3444 }
3445
3446 DEBUG(dbgs() << "Rewriting alloca partition "
3447 << "[" << PI->BeginOffset << "," << PI->EndOffset << ") to: "
3448 << *NewAI << "\n");
3449
Chandler Carruthac8317f2012-10-04 12:33:50 +00003450 // Track the high watermark of the post-promotion worklist. We will reset it
3451 // to this point if the alloca is not in fact scheduled for promotion.
3452 unsigned PPWOldSize = PostPromotionWorklist.size();
3453
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003454 AllocaPartitionRewriter Rewriter(*TD, P, PI, *this, AI, *NewAI,
3455 PI->BeginOffset, PI->EndOffset);
3456 DEBUG(dbgs() << " rewriting ");
3457 DEBUG(P.print(dbgs(), PI, ""));
Chandler Carruthac8317f2012-10-04 12:33:50 +00003458 bool Promotable = Rewriter.visitUsers(P.use_begin(PI), P.use_end(PI));
3459 if (Promotable) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003460 DEBUG(dbgs() << " and queuing for promotion\n");
3461 PromotableAllocas.push_back(NewAI);
3462 } else if (NewAI != &AI) {
3463 // If we can't promote the alloca, iterate on it to check for new
3464 // refinements exposed by splitting the current alloca. Don't iterate on an
3465 // alloca which didn't actually change and didn't get promoted.
3466 Worklist.insert(NewAI);
3467 }
Chandler Carruthac8317f2012-10-04 12:33:50 +00003468
3469 // Drop any post-promotion work items if promotion didn't happen.
3470 if (!Promotable)
3471 while (PostPromotionWorklist.size() > PPWOldSize)
3472 PostPromotionWorklist.pop_back();
3473
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003474 return true;
3475}
3476
3477/// \brief Walks the partitioning of an alloca rewriting uses of each partition.
3478bool SROA::splitAlloca(AllocaInst &AI, AllocaPartitioning &P) {
3479 bool Changed = false;
3480 for (AllocaPartitioning::iterator PI = P.begin(), PE = P.end(); PI != PE;
3481 ++PI)
3482 Changed |= rewriteAllocaPartition(AI, P, PI);
3483
3484 return Changed;
3485}
3486
3487/// \brief Analyze an alloca for SROA.
3488///
3489/// This analyzes the alloca to ensure we can reason about it, builds
3490/// a partitioning of the alloca, and then hands it off to be split and
3491/// rewritten as needed.
3492bool SROA::runOnAlloca(AllocaInst &AI) {
3493 DEBUG(dbgs() << "SROA alloca: " << AI << "\n");
3494 ++NumAllocasAnalyzed;
3495
3496 // Special case dead allocas, as they're trivial.
3497 if (AI.use_empty()) {
3498 AI.eraseFromParent();
3499 return true;
3500 }
3501
3502 // Skip alloca forms that this analysis can't handle.
3503 if (AI.isArrayAllocation() || !AI.getAllocatedType()->isSized() ||
3504 TD->getTypeAllocSize(AI.getAllocatedType()) == 0)
3505 return false;
3506
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003507 bool Changed = false;
3508
3509 // First, split any FCA loads and stores touching this alloca to promote
3510 // better splitting and promotion opportunities.
3511 AggLoadStoreRewriter AggRewriter(*TD);
3512 Changed |= AggRewriter.rewrite(AI);
3513
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003514 // Build the partition set using a recursive instruction-visiting builder.
3515 AllocaPartitioning P(*TD, AI);
3516 DEBUG(P.print(dbgs()));
3517 if (P.isEscaped())
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003518 return Changed;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003519
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003520 // Delete all the dead users of this alloca before splitting and rewriting it.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003521 for (AllocaPartitioning::dead_user_iterator DI = P.dead_user_begin(),
3522 DE = P.dead_user_end();
3523 DI != DE; ++DI) {
3524 Changed = true;
3525 (*DI)->replaceAllUsesWith(UndefValue::get((*DI)->getType()));
Chandler Carruth18db7952012-11-20 01:12:50 +00003526 DeadInsts.insert(*DI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003527 }
3528 for (AllocaPartitioning::dead_op_iterator DO = P.dead_op_begin(),
3529 DE = P.dead_op_end();
3530 DO != DE; ++DO) {
3531 Value *OldV = **DO;
3532 // Clobber the use with an undef value.
3533 **DO = UndefValue::get(OldV->getType());
3534 if (Instruction *OldI = dyn_cast<Instruction>(OldV))
3535 if (isInstructionTriviallyDead(OldI)) {
3536 Changed = true;
Chandler Carruth18db7952012-11-20 01:12:50 +00003537 DeadInsts.insert(OldI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003538 }
3539 }
3540
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00003541 // No partitions to split. Leave the dead alloca for a later pass to clean up.
3542 if (P.begin() == P.end())
3543 return Changed;
3544
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003545 return splitAlloca(AI, P) || Changed;
3546}
3547
Chandler Carruth19450da2012-09-14 10:26:38 +00003548/// \brief Delete the dead instructions accumulated in this run.
3549///
3550/// Recursively deletes the dead instructions we've accumulated. This is done
3551/// at the very end to maximize locality of the recursive delete and to
3552/// minimize the problems of invalidated instruction pointers as such pointers
3553/// are used heavily in the intermediate stages of the algorithm.
3554///
3555/// We also record the alloca instructions deleted here so that they aren't
3556/// subsequently handed to mem2reg to promote.
3557void SROA::deleteDeadInstructions(SmallPtrSet<AllocaInst*, 4> &DeletedAllocas) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003558 while (!DeadInsts.empty()) {
3559 Instruction *I = DeadInsts.pop_back_val();
3560 DEBUG(dbgs() << "Deleting dead instruction: " << *I << "\n");
3561
Chandler Carruth58d05562012-10-25 04:37:07 +00003562 I->replaceAllUsesWith(UndefValue::get(I->getType()));
3563
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003564 for (User::op_iterator OI = I->op_begin(), E = I->op_end(); OI != E; ++OI)
3565 if (Instruction *U = dyn_cast<Instruction>(*OI)) {
3566 // Zero out the operand and see if it becomes trivially dead.
3567 *OI = 0;
3568 if (isInstructionTriviallyDead(U))
Chandler Carruth18db7952012-11-20 01:12:50 +00003569 DeadInsts.insert(U);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003570 }
3571
3572 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
3573 DeletedAllocas.insert(AI);
3574
3575 ++NumDeleted;
3576 I->eraseFromParent();
3577 }
3578}
3579
Chandler Carruth70b44c52012-09-15 11:43:14 +00003580/// \brief Promote the allocas, using the best available technique.
3581///
3582/// This attempts to promote whatever allocas have been identified as viable in
3583/// the PromotableAllocas list. If that list is empty, there is nothing to do.
3584/// If there is a domtree available, we attempt to promote using the full power
3585/// of mem2reg. Otherwise, we build and use the AllocaPromoter above which is
3586/// based on the SSAUpdater utilities. This function returns whether any
Jakub Staszak086f6cd2013-02-19 22:02:21 +00003587/// promotion occurred.
Chandler Carruth70b44c52012-09-15 11:43:14 +00003588bool SROA::promoteAllocas(Function &F) {
3589 if (PromotableAllocas.empty())
3590 return false;
3591
3592 NumPromoted += PromotableAllocas.size();
3593
3594 if (DT && !ForceSSAUpdater) {
3595 DEBUG(dbgs() << "Promoting allocas with mem2reg...\n");
3596 PromoteMemToReg(PromotableAllocas, *DT);
3597 PromotableAllocas.clear();
3598 return true;
3599 }
3600
3601 DEBUG(dbgs() << "Promoting allocas with SSAUpdater...\n");
3602 SSAUpdater SSA;
3603 DIBuilder DIB(*F.getParent());
3604 SmallVector<Instruction*, 64> Insts;
3605
3606 for (unsigned Idx = 0, Size = PromotableAllocas.size(); Idx != Size; ++Idx) {
3607 AllocaInst *AI = PromotableAllocas[Idx];
3608 for (Value::use_iterator UI = AI->use_begin(), UE = AI->use_end();
3609 UI != UE;) {
3610 Instruction *I = cast<Instruction>(*UI++);
3611 // FIXME: Currently the SSAUpdater infrastructure doesn't reason about
3612 // lifetime intrinsics and so we strip them (and the bitcasts+GEPs
3613 // leading to them) here. Eventually it should use them to optimize the
3614 // scalar values produced.
3615 if (isa<BitCastInst>(I) || isa<GetElementPtrInst>(I)) {
3616 assert(onlyUsedByLifetimeMarkers(I) &&
3617 "Found a bitcast used outside of a lifetime marker.");
3618 while (!I->use_empty())
3619 cast<Instruction>(*I->use_begin())->eraseFromParent();
3620 I->eraseFromParent();
3621 continue;
3622 }
3623 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
3624 assert(II->getIntrinsicID() == Intrinsic::lifetime_start ||
3625 II->getIntrinsicID() == Intrinsic::lifetime_end);
3626 II->eraseFromParent();
3627 continue;
3628 }
3629
3630 Insts.push_back(I);
3631 }
3632 AllocaPromoter(Insts, SSA, *AI, DIB).run(Insts);
3633 Insts.clear();
3634 }
3635
3636 PromotableAllocas.clear();
3637 return true;
3638}
3639
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003640namespace {
3641 /// \brief A predicate to test whether an alloca belongs to a set.
3642 class IsAllocaInSet {
3643 typedef SmallPtrSet<AllocaInst *, 4> SetType;
3644 const SetType &Set;
3645
3646 public:
Chandler Carruth3f57b822012-10-03 00:03:00 +00003647 typedef AllocaInst *argument_type;
3648
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003649 IsAllocaInSet(const SetType &Set) : Set(Set) {}
Chandler Carruth3f57b822012-10-03 00:03:00 +00003650 bool operator()(AllocaInst *AI) const { return Set.count(AI); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003651 };
3652}
3653
3654bool SROA::runOnFunction(Function &F) {
3655 DEBUG(dbgs() << "SROA function: " << F.getName() << "\n");
3656 C = &F.getContext();
Micah Villmowcdfe20b2012-10-08 16:38:25 +00003657 TD = getAnalysisIfAvailable<DataLayout>();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003658 if (!TD) {
3659 DEBUG(dbgs() << " Skipping SROA -- no target data!\n");
3660 return false;
3661 }
Chandler Carruth70b44c52012-09-15 11:43:14 +00003662 DT = getAnalysisIfAvailable<DominatorTree>();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003663
3664 BasicBlock &EntryBB = F.getEntryBlock();
3665 for (BasicBlock::iterator I = EntryBB.begin(), E = llvm::prior(EntryBB.end());
3666 I != E; ++I)
3667 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
3668 Worklist.insert(AI);
3669
3670 bool Changed = false;
Chandler Carruth19450da2012-09-14 10:26:38 +00003671 // A set of deleted alloca instruction pointers which should be removed from
3672 // the list of promotable allocas.
3673 SmallPtrSet<AllocaInst *, 4> DeletedAllocas;
3674
Chandler Carruthac8317f2012-10-04 12:33:50 +00003675 do {
3676 while (!Worklist.empty()) {
3677 Changed |= runOnAlloca(*Worklist.pop_back_val());
3678 deleteDeadInstructions(DeletedAllocas);
Chandler Carruthb09f0a32012-10-02 22:46:45 +00003679
Chandler Carruthac8317f2012-10-04 12:33:50 +00003680 // Remove the deleted allocas from various lists so that we don't try to
3681 // continue processing them.
3682 if (!DeletedAllocas.empty()) {
3683 Worklist.remove_if(IsAllocaInSet(DeletedAllocas));
3684 PostPromotionWorklist.remove_if(IsAllocaInSet(DeletedAllocas));
3685 PromotableAllocas.erase(std::remove_if(PromotableAllocas.begin(),
3686 PromotableAllocas.end(),
3687 IsAllocaInSet(DeletedAllocas)),
3688 PromotableAllocas.end());
3689 DeletedAllocas.clear();
3690 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003691 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003692
Chandler Carruthac8317f2012-10-04 12:33:50 +00003693 Changed |= promoteAllocas(F);
3694
3695 Worklist = PostPromotionWorklist;
3696 PostPromotionWorklist.clear();
3697 } while (!Worklist.empty());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003698
3699 return Changed;
3700}
3701
3702void SROA::getAnalysisUsage(AnalysisUsage &AU) const {
Chandler Carruth70b44c52012-09-15 11:43:14 +00003703 if (RequiresDomTree)
3704 AU.addRequired<DominatorTree>();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003705 AU.setPreservesCFG();
3706}