blob: 7c2fb4b788d1513266c3a4fb80669f5ceac00c0a [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
Chandler Carruth29a18a42015-09-12 09:09:14 +000026#include "llvm/Transforms/Scalar/SROA.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000027#include "llvm/ADT/APInt.h"
28#include "llvm/ADT/ArrayRef.h"
29#include "llvm/ADT/DenseMap.h"
30#include "llvm/ADT/PointerIntPair.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/ADT/STLExtras.h"
Davide Italiano81a26da2017-04-27 23:09:01 +000032#include "llvm/ADT/SetVector.h"
Hiroshi Inoue48e4c7a2017-12-01 06:05:05 +000033#include "llvm/ADT/SmallBitVector.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000034#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000035#include "llvm/ADT/SmallVector.h"
36#include "llvm/ADT/Statistic.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000037#include "llvm/ADT/StringRef.h"
38#include "llvm/ADT/Twine.h"
39#include "llvm/ADT/iterator.h"
40#include "llvm/ADT/iterator_range.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000041#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruth29a18a42015-09-12 09:09:14 +000042#include "llvm/Analysis/GlobalsModRef.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000043#include "llvm/Analysis/Loads.h"
Chandler Carruthe41e7b72012-12-10 08:28:39 +000044#include "llvm/Analysis/PtrUseVisitor.h"
David Blaikie2be39222018-03-21 22:34:23 +000045#include "llvm/Analysis/Utils/Local.h"
Nico Weber432a3882018-04-30 14:59:11 +000046#include "llvm/Config/llvm-config.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000047#include "llvm/IR/BasicBlock.h"
48#include "llvm/IR/Constant.h"
49#include "llvm/IR/ConstantFolder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000050#include "llvm/IR/Constants.h"
Chandler Carruth12664a02014-03-06 00:22:06 +000051#include "llvm/IR/DIBuilder.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000052#include "llvm/IR/DataLayout.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000053#include "llvm/IR/DebugInfoMetadata.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000054#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000055#include "llvm/IR/Dominators.h"
56#include "llvm/IR/Function.h"
57#include "llvm/IR/GetElementPtrTypeIterator.h"
58#include "llvm/IR/GlobalAlias.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000059#include "llvm/IR/IRBuilder.h"
Chandler Carruth7da14f12014-03-06 03:23:41 +000060#include "llvm/IR/InstVisitor.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000061#include "llvm/IR/InstrTypes.h"
62#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000063#include "llvm/IR/Instructions.h"
64#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000065#include "llvm/IR/Intrinsics.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000066#include "llvm/IR/LLVMContext.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000067#include "llvm/IR/Metadata.h"
68#include "llvm/IR/Module.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000069#include "llvm/IR/Operator.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000070#include "llvm/IR/PassManager.h"
71#include "llvm/IR/Type.h"
72#include "llvm/IR/Use.h"
73#include "llvm/IR/User.h"
74#include "llvm/IR/Value.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000075#include "llvm/Pass.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000076#include "llvm/Support/Casting.h"
Chandler Carruth70b44c52012-09-15 11:43:14 +000077#include "llvm/Support/CommandLine.h"
Chandler Carruthf0546402013-07-18 07:15:00 +000078#include "llvm/Support/Compiler.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000079#include "llvm/Support/Debug.h"
80#include "llvm/Support/ErrorHandling.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000081#include "llvm/Support/MathExtras.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000082#include "llvm/Support/raw_ostream.h"
Chandler Carruth29a18a42015-09-12 09:09:14 +000083#include "llvm/Transforms/Scalar.h"
Chandler Carruth1b398ae2012-09-14 09:22:59 +000084#include "llvm/Transforms/Utils/PromoteMemToReg.h"
Eugene Zelenko75075ef2017-09-01 21:37:29 +000085#include <algorithm>
86#include <cassert>
87#include <chrono>
88#include <cstddef>
89#include <cstdint>
90#include <cstring>
91#include <iterator>
92#include <string>
93#include <tuple>
94#include <utility>
95#include <vector>
Chandler Carruth83cee772014-02-25 03:59:29 +000096
Hal Finkel29f51312016-03-28 11:13:03 +000097#ifndef NDEBUG
98// We only use this for a debug check.
Chandler Carruth83cee772014-02-25 03:59:29 +000099#include <random>
100#endif
101
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000102using namespace llvm;
Chandler Carruth29a18a42015-09-12 09:09:14 +0000103using namespace llvm::sroa;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000104
Chandler Carruth964daaa2014-04-22 02:55:47 +0000105#define DEBUG_TYPE "sroa"
106
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000107STATISTIC(NumAllocasAnalyzed, "Number of allocas analyzed for replacement");
Chandler Carruth5f5b6162013-03-20 06:30:46 +0000108STATISTIC(NumAllocaPartitions, "Number of alloca partitions formed");
Chandler Carruth6c321c12013-07-19 10:57:36 +0000109STATISTIC(MaxPartitionsPerAlloca, "Maximum number of partitions per alloca");
110STATISTIC(NumAllocaPartitionUses, "Number of alloca partition uses rewritten");
111STATISTIC(MaxUsesPerAllocaPartition, "Maximum number of uses of a partition");
Chandler Carruth5f5b6162013-03-20 06:30:46 +0000112STATISTIC(NumNewAllocas, "Number of new, smaller allocas introduced");
113STATISTIC(NumPromoted, "Number of allocas promoted to SSA values");
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000114STATISTIC(NumLoadsSpeculated, "Number of loads speculated to allow promotion");
Chandler Carruth5f5b6162013-03-20 06:30:46 +0000115STATISTIC(NumDeleted, "Number of instructions deleted");
116STATISTIC(NumVectorized, "Number of vectorized aggregates");
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000117
Chandler Carruth83cee772014-02-25 03:59:29 +0000118/// Hidden option to enable randomly shuffling the slices to help uncover
119/// instability in their order.
120static cl::opt<bool> SROARandomShuffleSlices("sroa-random-shuffle-slices",
121 cl::init(false), cl::Hidden);
122
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000123/// Hidden option to experiment with completely strict handling of inbounds
124/// GEPs.
Chandler Carruth113dc642014-12-20 02:39:18 +0000125static cl::opt<bool> SROAStrictInbounds("sroa-strict-inbounds", cl::init(false),
126 cl::Hidden);
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000127
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000128namespace {
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000129
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000130/// A custom IRBuilder inserter which prefixes all names, but only in
Mehdi Amini1e9c9252016-03-11 17:15:34 +0000131/// Assert builds.
Mehdi Aminiba9fba82016-03-13 21:05:13 +0000132class IRBuilderPrefixedInserter : public IRBuilderDefaultInserter {
Chandler Carruth34f0c7f2013-03-21 09:52:18 +0000133 std::string Prefix;
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000134
Zachary Turner41a9ee92017-10-11 23:54:34 +0000135 const Twine getNameWithPrefix(const Twine &Name) const {
136 return Name.isTriviallyEmpty() ? Name : Prefix + Name;
137 }
138
Chandler Carruth34f0c7f2013-03-21 09:52:18 +0000139public:
140 void SetNamePrefix(const Twine &P) { Prefix = P.str(); }
141
142protected:
143 void InsertHelper(Instruction *I, const Twine &Name, BasicBlock *BB,
144 BasicBlock::iterator InsertPt) const {
Zachary Turner41a9ee92017-10-11 23:54:34 +0000145 IRBuilderDefaultInserter::InsertHelper(I, getNameWithPrefix(Name), BB,
146 InsertPt);
Chandler Carruth34f0c7f2013-03-21 09:52:18 +0000147 }
148};
149
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000150/// Provide a type for IRBuilder that drops names in release builds.
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000151using IRBuilderTy = IRBuilder<ConstantFolder, IRBuilderPrefixedInserter>;
Chandler Carruthd177f862013-03-20 07:30:36 +0000152
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000153/// A used slice of an alloca.
Chandler Carruthf0546402013-07-18 07:15:00 +0000154///
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000155/// This structure represents a slice of an alloca used by some instruction. It
156/// stores both the begin and end offsets of this use, a pointer to the use
157/// itself, and a flag indicating whether we can classify the use as splittable
158/// or not when forming partitions of the alloca.
159class Slice {
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000160 /// The beginning offset of the range.
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000161 uint64_t BeginOffset = 0;
Chandler Carruthf74654d2013-03-18 08:36:46 +0000162
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000163 /// The ending offset, not included in the range.
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000164 uint64_t EndOffset = 0;
Chandler Carruthf74654d2013-03-18 08:36:46 +0000165
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000166 /// Storage for both the use of this slice and whether it can be
Chandler Carruthf0546402013-07-18 07:15:00 +0000167 /// split.
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000168 PointerIntPair<Use *, 1, bool> UseAndIsSplittable;
Chandler Carruthf0546402013-07-18 07:15:00 +0000169
170public:
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000171 Slice() = default;
172
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000173 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable)
Chandler Carruthf0546402013-07-18 07:15:00 +0000174 : BeginOffset(BeginOffset), EndOffset(EndOffset),
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000175 UseAndIsSplittable(U, IsSplittable) {}
Chandler Carruthf0546402013-07-18 07:15:00 +0000176
177 uint64_t beginOffset() const { return BeginOffset; }
178 uint64_t endOffset() const { return EndOffset; }
179
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000180 bool isSplittable() const { return UseAndIsSplittable.getInt(); }
181 void makeUnsplittable() { UseAndIsSplittable.setInt(false); }
Chandler Carruthf0546402013-07-18 07:15:00 +0000182
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000183 Use *getUse() const { return UseAndIsSplittable.getPointer(); }
Chandler Carruthf0546402013-07-18 07:15:00 +0000184
Craig Topperf40110f2014-04-25 05:29:35 +0000185 bool isDead() const { return getUse() == nullptr; }
186 void kill() { UseAndIsSplittable.setPointer(nullptr); }
Chandler Carruthf74654d2013-03-18 08:36:46 +0000187
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000188 /// Support for ordering ranges.
Chandler Carruthf74654d2013-03-18 08:36:46 +0000189 ///
190 /// This provides an ordering over ranges such that start offsets are
191 /// always increasing, and within equal start offsets, the end offsets are
192 /// decreasing. Thus the spanning range comes first in a cluster with the
193 /// same start position.
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000194 bool operator<(const Slice &RHS) const {
Chandler Carruth113dc642014-12-20 02:39:18 +0000195 if (beginOffset() < RHS.beginOffset())
196 return true;
197 if (beginOffset() > RHS.beginOffset())
198 return false;
199 if (isSplittable() != RHS.isSplittable())
200 return !isSplittable();
201 if (endOffset() > RHS.endOffset())
202 return true;
Chandler Carruthf74654d2013-03-18 08:36:46 +0000203 return false;
204 }
205
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000206 /// Support comparison with a single offset to allow binary searches.
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000207 friend LLVM_ATTRIBUTE_UNUSED bool operator<(const Slice &LHS,
Chandler Carruthf0546402013-07-18 07:15:00 +0000208 uint64_t RHSOffset) {
209 return LHS.beginOffset() < RHSOffset;
Chandler Carruthf74654d2013-03-18 08:36:46 +0000210 }
Chandler Carruthe3899f22013-07-15 17:36:21 +0000211 friend LLVM_ATTRIBUTE_UNUSED bool operator<(uint64_t LHSOffset,
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000212 const Slice &RHS) {
Chandler Carruthf0546402013-07-18 07:15:00 +0000213 return LHSOffset < RHS.beginOffset();
Chandler Carruthf74654d2013-03-18 08:36:46 +0000214 }
Chandler Carruthe3899f22013-07-15 17:36:21 +0000215
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000216 bool operator==(const Slice &RHS) const {
Chandler Carruthf0546402013-07-18 07:15:00 +0000217 return isSplittable() == RHS.isSplittable() &&
218 beginOffset() == RHS.beginOffset() && endOffset() == RHS.endOffset();
Chandler Carruthe3899f22013-07-15 17:36:21 +0000219 }
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000220 bool operator!=(const Slice &RHS) const { return !operator==(RHS); }
Chandler Carruthf74654d2013-03-18 08:36:46 +0000221};
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000222
Chandler Carruthf0546402013-07-18 07:15:00 +0000223} // end anonymous namespace
Chandler Carruthf74654d2013-03-18 08:36:46 +0000224
225namespace llvm {
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000226
Chandler Carruthf0546402013-07-18 07:15:00 +0000227template <typename T> struct isPodLike;
Chandler Carruth113dc642014-12-20 02:39:18 +0000228template <> struct isPodLike<Slice> { static const bool value = true; };
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000229
230} // end namespace llvm
Chandler Carruthf74654d2013-03-18 08:36:46 +0000231
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000232/// Representation of the alloca slices.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000233///
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000234/// This class represents the slices of an alloca which are formed by its
235/// various uses. If a pointer escapes, we can't fully build a representation
236/// for the slices used and we reflect that in this structure. The uses are
237/// stored, sorted by increasing beginning offset and with unsplittable slices
238/// starting at a particular offset before splittable slices.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000239class llvm::sroa::AllocaSlices {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000240public:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000241 /// Construct the slices of a particular alloca.
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000242 AllocaSlices(const DataLayout &DL, AllocaInst &AI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000243
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000244 /// Test whether a pointer to the allocation escapes our analysis.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000245 ///
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000246 /// If this is true, the slices are never fully built and should be
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000247 /// ignored.
248 bool isEscaped() const { return PointerEscapingInstr; }
249
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000250 /// Support for iterating over the slices.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000251 /// @{
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000252 using iterator = SmallVectorImpl<Slice>::iterator;
253 using range = iterator_range<iterator>;
254
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000255 iterator begin() { return Slices.begin(); }
256 iterator end() { return Slices.end(); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000257
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000258 using const_iterator = SmallVectorImpl<Slice>::const_iterator;
259 using const_range = iterator_range<const_iterator>;
260
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000261 const_iterator begin() const { return Slices.begin(); }
262 const_iterator end() const { return Slices.end(); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000263 /// @}
264
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000265 /// Erase a range of slices.
Chandler Carruth994cde82015-01-01 12:01:03 +0000266 void erase(iterator Start, iterator Stop) { Slices.erase(Start, Stop); }
Chandler Carruth0715cba2015-01-01 11:54:38 +0000267
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000268 /// Insert new slices for this alloca.
Chandler Carruth0715cba2015-01-01 11:54:38 +0000269 ///
270 /// This moves the slices into the alloca's slices collection, and re-sorts
271 /// everything so that the usual ordering properties of the alloca's slices
272 /// hold.
273 void insert(ArrayRef<Slice> NewSlices) {
274 int OldSize = Slices.size();
Benjamin Kramer4f6ac162015-02-28 10:11:12 +0000275 Slices.append(NewSlices.begin(), NewSlices.end());
Chandler Carruth0715cba2015-01-01 11:54:38 +0000276 auto SliceI = Slices.begin() + OldSize;
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +0000277 llvm::sort(SliceI, Slices.end());
Chandler Carruth0715cba2015-01-01 11:54:38 +0000278 std::inplace_merge(Slices.begin(), SliceI, Slices.end());
279 }
280
Chandler Carruth29a18a42015-09-12 09:09:14 +0000281 // Forward declare the iterator and range accessor for walking the
282 // partitions.
Chandler Carruthe2f66ce2014-12-22 22:46:00 +0000283 class partition_iterator;
Chandler Carruth29a18a42015-09-12 09:09:14 +0000284 iterator_range<partition_iterator> partitions();
Chandler Carruthe2f66ce2014-12-22 22:46:00 +0000285
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000286 /// Access the dead users for this alloca.
Chandler Carruth57d4cae2014-10-16 20:42:08 +0000287 ArrayRef<Instruction *> getDeadUsers() const { return DeadUsers; }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000288
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000289 /// Access the dead operands referring to this alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000290 ///
291 /// These are operands which have cannot actually be used to refer to the
292 /// alloca as they are outside its range and the user doesn't correct for
293 /// that. These mostly consist of PHI node inputs and the like which we just
294 /// need to replace with undef.
Chandler Carruth57d4cae2014-10-16 20:42:08 +0000295 ArrayRef<Use *> getDeadOperands() const { return DeadOperands; }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000296
Aaron Ballman615eb472017-10-15 14:32:27 +0000297#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000298 void print(raw_ostream &OS, const_iterator I, StringRef Indent = " ") const;
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000299 void printSlice(raw_ostream &OS, const_iterator I,
300 StringRef Indent = " ") const;
Chandler Carruthf0546402013-07-18 07:15:00 +0000301 void printUse(raw_ostream &OS, const_iterator I,
302 StringRef Indent = " ") const;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000303 void print(raw_ostream &OS) const;
Alp Tokerf929e092014-01-04 22:47:48 +0000304 void dump(const_iterator I) const;
305 void dump() const;
Chandler Carruth25fb23d2012-09-14 10:18:51 +0000306#endif
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000307
308private:
309 template <typename DerivedT, typename RetT = void> class BuilderBase;
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000310 class SliceBuilder;
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000311
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000312 friend class AllocaSlices::SliceBuilder;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000313
Aaron Ballman615eb472017-10-15 14:32:27 +0000314#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000315 /// Handle to alloca instruction to simplify method interfaces.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000316 AllocaInst &AI;
Nick Lewyckyc7776f72013-08-13 22:51:58 +0000317#endif
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000318
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000319 /// The instruction responsible for this alloca not having a known set
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000320 /// of slices.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000321 ///
322 /// When an instruction (potentially) escapes the pointer to the alloca, we
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000323 /// store a pointer to that here and abort trying to form slices of the
324 /// alloca. This will be null if the alloca slices are analyzed successfully.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000325 Instruction *PointerEscapingInstr;
326
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000327 /// The slices of the alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000328 ///
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000329 /// We store a vector of the slices formed by uses of the alloca here. This
330 /// vector is sorted by increasing begin offset, and then the unsplittable
331 /// slices before the splittable ones. See the Slice inner class for more
332 /// details.
333 SmallVector<Slice, 8> Slices;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000334
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000335 /// Instructions which will become dead if we rewrite the alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000336 ///
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000337 /// Note that these are not separated by slice. This is because we expect an
338 /// alloca to be completely rewritten or not rewritten at all. If rewritten,
339 /// all these instructions can simply be removed and replaced with undef as
340 /// they come from outside of the allocated space.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000341 SmallVector<Instruction *, 8> DeadUsers;
342
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000343 /// Operands which will become dead if we rewrite the alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000344 ///
345 /// These are operands that in their particular use can be replaced with
346 /// undef when we rewrite the alloca. These show up in out-of-bounds inputs
347 /// to PHI nodes and the like. They aren't entirely dead (there might be
348 /// a GEP back into the bounds using it elsewhere) and nor is the PHI, but we
349 /// want to swap this particular input for undef to simplify the use lists of
350 /// the alloca.
351 SmallVector<Use *, 8> DeadOperands;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000352};
Chandler Carruth29a18a42015-09-12 09:09:14 +0000353
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000354/// A partition of the slices.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000355///
356/// An ephemeral representation for a range of slices which can be viewed as
357/// a partition of the alloca. This range represents a span of the alloca's
358/// memory which cannot be split, and provides access to all of the slices
359/// overlapping some part of the partition.
360///
361/// Objects of this type are produced by traversing the alloca's slices, but
362/// are only ephemeral and not persistent.
363class llvm::sroa::Partition {
364private:
365 friend class AllocaSlices;
366 friend class AllocaSlices::partition_iterator;
367
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000368 using iterator = AllocaSlices::iterator;
Chandler Carruth29a18a42015-09-12 09:09:14 +0000369
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000370 /// The beginning and ending offsets of the alloca for this
Chandler Carruth29a18a42015-09-12 09:09:14 +0000371 /// partition.
372 uint64_t BeginOffset, EndOffset;
373
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000374 /// The start and end iterators of this partition.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000375 iterator SI, SJ;
376
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000377 /// A collection of split slice tails overlapping the partition.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000378 SmallVector<Slice *, 4> SplitTails;
379
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000380 /// Raw constructor builds an empty partition starting and ending at
Chandler Carruth29a18a42015-09-12 09:09:14 +0000381 /// the given iterator.
382 Partition(iterator SI) : SI(SI), SJ(SI) {}
383
384public:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000385 /// The start offset of this partition.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000386 ///
387 /// All of the contained slices start at or after this offset.
388 uint64_t beginOffset() const { return BeginOffset; }
389
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000390 /// The end offset of this partition.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000391 ///
392 /// All of the contained slices end at or before this offset.
393 uint64_t endOffset() const { return EndOffset; }
394
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000395 /// The size of the partition.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000396 ///
397 /// Note that this can never be zero.
398 uint64_t size() const {
399 assert(BeginOffset < EndOffset && "Partitions must span some bytes!");
400 return EndOffset - BeginOffset;
401 }
402
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000403 /// Test whether this partition contains no slices, and merely spans
Chandler Carruth29a18a42015-09-12 09:09:14 +0000404 /// a region occupied by split slices.
405 bool empty() const { return SI == SJ; }
406
407 /// \name Iterate slices that start within the partition.
408 /// These may be splittable or unsplittable. They have a begin offset >= the
409 /// partition begin offset.
410 /// @{
411 // FIXME: We should probably define a "concat_iterator" helper and use that
412 // to stitch together pointee_iterators over the split tails and the
413 // contiguous iterators of the partition. That would give a much nicer
414 // interface here. We could then additionally expose filtered iterators for
415 // split, unsplit, and unsplittable splices based on the usage patterns.
416 iterator begin() const { return SI; }
417 iterator end() const { return SJ; }
418 /// @}
419
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000420 /// Get the sequence of split slice tails.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000421 ///
422 /// These tails are of slices which start before this partition but are
423 /// split and overlap into the partition. We accumulate these while forming
424 /// partitions.
425 ArrayRef<Slice *> splitSliceTails() const { return SplitTails; }
426};
427
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000428/// An iterator over partitions of the alloca's slices.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000429///
430/// This iterator implements the core algorithm for partitioning the alloca's
431/// slices. It is a forward iterator as we don't support backtracking for
432/// efficiency reasons, and re-use a single storage area to maintain the
433/// current set of split slices.
434///
435/// It is templated on the slice iterator type to use so that it can operate
436/// with either const or non-const slice iterators.
437class AllocaSlices::partition_iterator
438 : public iterator_facade_base<partition_iterator, std::forward_iterator_tag,
439 Partition> {
440 friend class AllocaSlices;
441
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000442 /// Most of the state for walking the partitions is held in a class
Chandler Carruth29a18a42015-09-12 09:09:14 +0000443 /// with a nice interface for examining them.
444 Partition P;
445
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000446 /// We need to keep the end of the slices to know when to stop.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000447 AllocaSlices::iterator SE;
448
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000449 /// We also need to keep track of the maximum split end offset seen.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000450 /// FIXME: Do we really?
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000451 uint64_t MaxSplitSliceEndOffset = 0;
Chandler Carruth29a18a42015-09-12 09:09:14 +0000452
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000453 /// Sets the partition to be empty at given iterator, and sets the
Chandler Carruth29a18a42015-09-12 09:09:14 +0000454 /// end iterator.
455 partition_iterator(AllocaSlices::iterator SI, AllocaSlices::iterator SE)
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000456 : P(SI), SE(SE) {
Chandler Carruth29a18a42015-09-12 09:09:14 +0000457 // If not already at the end, advance our state to form the initial
458 // partition.
459 if (SI != SE)
460 advance();
461 }
462
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000463 /// Advance the iterator to the next partition.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000464 ///
465 /// Requires that the iterator not be at the end of the slices.
466 void advance() {
467 assert((P.SI != SE || !P.SplitTails.empty()) &&
468 "Cannot advance past the end of the slices!");
469
470 // Clear out any split uses which have ended.
471 if (!P.SplitTails.empty()) {
472 if (P.EndOffset >= MaxSplitSliceEndOffset) {
473 // If we've finished all splits, this is easy.
474 P.SplitTails.clear();
475 MaxSplitSliceEndOffset = 0;
476 } else {
477 // Remove the uses which have ended in the prior partition. This
478 // cannot change the max split slice end because we just checked that
479 // the prior partition ended prior to that max.
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000480 P.SplitTails.erase(llvm::remove_if(P.SplitTails,
481 [&](Slice *S) {
482 return S->endOffset() <=
483 P.EndOffset;
484 }),
485 P.SplitTails.end());
486 assert(llvm::any_of(P.SplitTails,
487 [&](Slice *S) {
488 return S->endOffset() == MaxSplitSliceEndOffset;
489 }) &&
Chandler Carruth29a18a42015-09-12 09:09:14 +0000490 "Could not find the current max split slice offset!");
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000491 assert(llvm::all_of(P.SplitTails,
492 [&](Slice *S) {
493 return S->endOffset() <= MaxSplitSliceEndOffset;
494 }) &&
Chandler Carruth29a18a42015-09-12 09:09:14 +0000495 "Max split slice end offset is not actually the max!");
496 }
497 }
498
499 // If P.SI is already at the end, then we've cleared the split tail and
500 // now have an end iterator.
501 if (P.SI == SE) {
502 assert(P.SplitTails.empty() && "Failed to clear the split slices!");
503 return;
504 }
505
506 // If we had a non-empty partition previously, set up the state for
507 // subsequent partitions.
508 if (P.SI != P.SJ) {
509 // Accumulate all the splittable slices which started in the old
510 // partition into the split list.
511 for (Slice &S : P)
512 if (S.isSplittable() && S.endOffset() > P.EndOffset) {
513 P.SplitTails.push_back(&S);
514 MaxSplitSliceEndOffset =
515 std::max(S.endOffset(), MaxSplitSliceEndOffset);
516 }
517
518 // Start from the end of the previous partition.
519 P.SI = P.SJ;
520
521 // If P.SI is now at the end, we at most have a tail of split slices.
522 if (P.SI == SE) {
523 P.BeginOffset = P.EndOffset;
524 P.EndOffset = MaxSplitSliceEndOffset;
525 return;
526 }
527
528 // If the we have split slices and the next slice is after a gap and is
529 // not splittable immediately form an empty partition for the split
530 // slices up until the next slice begins.
531 if (!P.SplitTails.empty() && P.SI->beginOffset() != P.EndOffset &&
532 !P.SI->isSplittable()) {
533 P.BeginOffset = P.EndOffset;
534 P.EndOffset = P.SI->beginOffset();
535 return;
536 }
537 }
538
539 // OK, we need to consume new slices. Set the end offset based on the
540 // current slice, and step SJ past it. The beginning offset of the
541 // partition is the beginning offset of the next slice unless we have
542 // pre-existing split slices that are continuing, in which case we begin
543 // at the prior end offset.
544 P.BeginOffset = P.SplitTails.empty() ? P.SI->beginOffset() : P.EndOffset;
545 P.EndOffset = P.SI->endOffset();
546 ++P.SJ;
547
548 // There are two strategies to form a partition based on whether the
549 // partition starts with an unsplittable slice or a splittable slice.
550 if (!P.SI->isSplittable()) {
551 // When we're forming an unsplittable region, it must always start at
552 // the first slice and will extend through its end.
553 assert(P.BeginOffset == P.SI->beginOffset());
554
555 // Form a partition including all of the overlapping slices with this
556 // unsplittable slice.
557 while (P.SJ != SE && P.SJ->beginOffset() < P.EndOffset) {
558 if (!P.SJ->isSplittable())
559 P.EndOffset = std::max(P.EndOffset, P.SJ->endOffset());
560 ++P.SJ;
561 }
562
563 // We have a partition across a set of overlapping unsplittable
564 // partitions.
565 return;
566 }
567
568 // If we're starting with a splittable slice, then we need to form
569 // a synthetic partition spanning it and any other overlapping splittable
570 // splices.
571 assert(P.SI->isSplittable() && "Forming a splittable partition!");
572
573 // Collect all of the overlapping splittable slices.
574 while (P.SJ != SE && P.SJ->beginOffset() < P.EndOffset &&
575 P.SJ->isSplittable()) {
576 P.EndOffset = std::max(P.EndOffset, P.SJ->endOffset());
577 ++P.SJ;
578 }
579
580 // Back upiP.EndOffset if we ended the span early when encountering an
581 // unsplittable slice. This synthesizes the early end offset of
582 // a partition spanning only splittable slices.
583 if (P.SJ != SE && P.SJ->beginOffset() < P.EndOffset) {
584 assert(!P.SJ->isSplittable());
585 P.EndOffset = P.SJ->beginOffset();
586 }
587 }
588
589public:
590 bool operator==(const partition_iterator &RHS) const {
591 assert(SE == RHS.SE &&
592 "End iterators don't match between compared partition iterators!");
593
594 // The observed positions of partitions is marked by the P.SI iterator and
595 // the emptiness of the split slices. The latter is only relevant when
596 // P.SI == SE, as the end iterator will additionally have an empty split
597 // slices list, but the prior may have the same P.SI and a tail of split
598 // slices.
599 if (P.SI == RHS.P.SI && P.SplitTails.empty() == RHS.P.SplitTails.empty()) {
600 assert(P.SJ == RHS.P.SJ &&
601 "Same set of slices formed two different sized partitions!");
602 assert(P.SplitTails.size() == RHS.P.SplitTails.size() &&
603 "Same slice position with differently sized non-empty split "
604 "slice tails!");
605 return true;
606 }
607 return false;
608 }
609
610 partition_iterator &operator++() {
611 advance();
612 return *this;
613 }
614
615 Partition &operator*() { return P; }
616};
617
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000618/// A forward range over the partitions of the alloca's slices.
Chandler Carruth29a18a42015-09-12 09:09:14 +0000619///
620/// This accesses an iterator range over the partitions of the alloca's
621/// slices. It computes these partitions on the fly based on the overlapping
622/// offsets of the slices and the ability to split them. It will visit "empty"
623/// partitions to cover regions of the alloca only accessed via split
624/// slices.
625iterator_range<AllocaSlices::partition_iterator> AllocaSlices::partitions() {
626 return make_range(partition_iterator(begin(), end()),
627 partition_iterator(end(), end()));
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000628}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000629
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000630static Value *foldSelectInst(SelectInst &SI) {
631 // If the condition being selected on is a constant or the same value is
632 // being selected between, fold the select. Yes this does (rarely) happen
633 // early on.
634 if (ConstantInt *CI = dyn_cast<ConstantInt>(SI.getCondition()))
Chandler Carruth113dc642014-12-20 02:39:18 +0000635 return SI.getOperand(1 + CI->isZero());
Jakub Staszak3c6583a2013-02-19 22:14:45 +0000636 if (SI.getOperand(1) == SI.getOperand(2))
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000637 return SI.getOperand(1);
Jakub Staszak3c6583a2013-02-19 22:14:45 +0000638
Craig Topperf40110f2014-04-25 05:29:35 +0000639 return nullptr;
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000640}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000641
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000642/// A helper that folds a PHI node or a select.
Jingyue Wuec33fa92014-08-22 22:45:57 +0000643static Value *foldPHINodeOrSelectInst(Instruction &I) {
644 if (PHINode *PN = dyn_cast<PHINode>(&I)) {
645 // If PN merges together the same value, return that value.
646 return PN->hasConstantValue();
647 }
648 return foldSelectInst(cast<SelectInst>(I));
649}
650
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000651/// Builder for the alloca slices.
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000652///
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000653/// This class builds a set of alloca slices by recursively visiting the uses
654/// of an alloca and making a slice for each load and store at each offset.
655class AllocaSlices::SliceBuilder : public PtrUseVisitor<SliceBuilder> {
656 friend class PtrUseVisitor<SliceBuilder>;
657 friend class InstVisitor<SliceBuilder>;
Eugene Zelenko75075ef2017-09-01 21:37:29 +0000658
659 using Base = PtrUseVisitor<SliceBuilder>;
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000660
661 const uint64_t AllocSize;
Chandler Carruth83934062014-10-16 21:11:55 +0000662 AllocaSlices &AS;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000663
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000664 SmallDenseMap<Instruction *, unsigned> MemTransferSliceMap;
Chandler Carruthf0546402013-07-18 07:15:00 +0000665 SmallDenseMap<Instruction *, uint64_t> PHIOrSelectSizes;
666
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000667 /// Set to de-duplicate dead instructions found in the use walk.
Chandler Carruthf0546402013-07-18 07:15:00 +0000668 SmallPtrSet<Instruction *, 4> VisitedDeadInsts;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000669
670public:
Chandler Carruth83934062014-10-16 21:11:55 +0000671 SliceBuilder(const DataLayout &DL, AllocaInst &AI, AllocaSlices &AS)
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000672 : PtrUseVisitor<SliceBuilder>(DL),
Chandler Carruth83934062014-10-16 21:11:55 +0000673 AllocSize(DL.getTypeAllocSize(AI.getAllocatedType())), AS(AS) {}
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000674
675private:
Chandler Carruthf0546402013-07-18 07:15:00 +0000676 void markAsDead(Instruction &I) {
David Blaikie70573dc2014-11-19 07:49:26 +0000677 if (VisitedDeadInsts.insert(&I).second)
Chandler Carruth83934062014-10-16 21:11:55 +0000678 AS.DeadUsers.push_back(&I);
Chandler Carruthf0546402013-07-18 07:15:00 +0000679 }
680
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000681 void insertUse(Instruction &I, const APInt &Offset, uint64_t Size,
Chandler Carruth97121172012-09-16 19:39:50 +0000682 bool IsSplittable = false) {
Chandler Carruthf02b8bf2012-12-03 10:59:55 +0000683 // Completely skip uses which have a zero size or start either before or
684 // past the end of the allocation.
Chandler Carruth6aedc102014-02-26 03:14:14 +0000685 if (Size == 0 || Offset.uge(AllocSize)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000686 LLVM_DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte use @"
687 << Offset
688 << " which has zero size or starts outside of the "
689 << AllocSize << " byte alloca:\n"
690 << " alloca: " << AS.AI << "\n"
691 << " use: " << I << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +0000692 return markAsDead(I);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000693 }
694
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000695 uint64_t BeginOffset = Offset.getZExtValue();
696 uint64_t EndOffset = BeginOffset + Size;
Chandler Carruthe7a1ba52012-09-23 11:43:14 +0000697
698 // Clamp the end offset to the end of the allocation. Note that this is
699 // formulated to handle even the case where "BeginOffset + Size" overflows.
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000700 // This may appear superficially to be something we could ignore entirely,
701 // but that is not so! There may be widened loads or PHI-node uses where
702 // some instructions are dead but not others. We can't completely ignore
703 // them, and so have to record at least the information here.
Chandler Carruthe7a1ba52012-09-23 11:43:14 +0000704 assert(AllocSize >= BeginOffset); // Established above.
705 if (Size > AllocSize - BeginOffset) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000706 LLVM_DEBUG(dbgs() << "WARNING: Clamping a " << Size << " byte use @"
707 << Offset << " to remain within the " << AllocSize
708 << " byte alloca:\n"
709 << " alloca: " << AS.AI << "\n"
710 << " use: " << I << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000711 EndOffset = AllocSize;
712 }
713
Chandler Carruth83934062014-10-16 21:11:55 +0000714 AS.Slices.push_back(Slice(BeginOffset, EndOffset, U, IsSplittable));
Chandler Carruthf0546402013-07-18 07:15:00 +0000715 }
716
717 void visitBitCastInst(BitCastInst &BC) {
718 if (BC.use_empty())
719 return markAsDead(BC);
720
721 return Base::visitBitCastInst(BC);
722 }
723
724 void visitGetElementPtrInst(GetElementPtrInst &GEPI) {
725 if (GEPI.use_empty())
726 return markAsDead(GEPI);
727
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000728 if (SROAStrictInbounds && GEPI.isInBounds()) {
729 // FIXME: This is a manually un-factored variant of the basic code inside
730 // of GEPs with checking of the inbounds invariant specified in the
731 // langref in a very strict sense. If we ever want to enable
732 // SROAStrictInbounds, this code should be factored cleanly into
733 // PtrUseVisitor, but it is easier to experiment with SROAStrictInbounds
Hal Finkel5c83a092016-03-28 11:23:21 +0000734 // by writing out the code here where we have the underlying allocation
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000735 // size readily available.
736 APInt GEPOffset = Offset;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000737 const DataLayout &DL = GEPI.getModule()->getDataLayout();
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000738 for (gep_type_iterator GTI = gep_type_begin(GEPI),
739 GTE = gep_type_end(GEPI);
740 GTI != GTE; ++GTI) {
741 ConstantInt *OpC = dyn_cast<ConstantInt>(GTI.getOperand());
742 if (!OpC)
743 break;
744
745 // Handle a struct index, which adds its field offset to the pointer.
Peter Collingbourneab85225b2016-12-02 02:24:42 +0000746 if (StructType *STy = GTI.getStructTypeOrNull()) {
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000747 unsigned ElementIdx = OpC->getZExtValue();
748 const StructLayout *SL = DL.getStructLayout(STy);
749 GEPOffset +=
750 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx));
751 } else {
Chandler Carruth113dc642014-12-20 02:39:18 +0000752 // For array or vector indices, scale the index by the size of the
753 // type.
Chandler Carruth3b79b2a2014-02-25 21:24:45 +0000754 APInt Index = OpC->getValue().sextOrTrunc(Offset.getBitWidth());
755 GEPOffset += Index * APInt(Offset.getBitWidth(),
756 DL.getTypeAllocSize(GTI.getIndexedType()));
757 }
758
759 // If this index has computed an intermediate pointer which is not
760 // inbounds, then the result of the GEP is a poison value and we can
761 // delete it and all uses.
762 if (GEPOffset.ugt(AllocSize))
763 return markAsDead(GEPI);
764 }
765 }
766
Chandler Carruthf0546402013-07-18 07:15:00 +0000767 return Base::visitGetElementPtrInst(GEPI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000768 }
769
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000770 void handleLoadOrStore(Type *Ty, Instruction &I, const APInt &Offset,
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000771 uint64_t Size, bool IsVolatile) {
Chandler Carruth24ac8302015-01-02 03:55:54 +0000772 // We allow splitting of non-volatile loads and stores where the type is an
773 // integer type. These may be used to implement 'memcpy' or other "transfer
774 // of bits" patterns.
775 bool IsSplittable = Ty->isIntegerTy() && !IsVolatile;
Chandler Carruth58d05562012-10-25 04:37:07 +0000776
777 insertUse(I, Offset, Size, IsSplittable);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000778 }
779
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000780 void visitLoadInst(LoadInst &LI) {
Chandler Carruth42cb9cb2012-09-18 12:57:43 +0000781 assert((!LI.isSimple() || LI.getType()->isSingleValueType()) &&
782 "All simple FCA loads should have been pre-split");
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000783
784 if (!IsOffsetKnown)
785 return PI.setAborted(&LI);
786
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000787 const DataLayout &DL = LI.getModule()->getDataLayout();
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000788 uint64_t Size = DL.getTypeStoreSize(LI.getType());
789 return handleLoadOrStore(LI.getType(), LI, Offset, Size, LI.isVolatile());
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000790 }
791
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000792 void visitStoreInst(StoreInst &SI) {
Chandler Carruth42cb9cb2012-09-18 12:57:43 +0000793 Value *ValOp = SI.getValueOperand();
794 if (ValOp == *U)
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000795 return PI.setEscapedAndAborted(&SI);
796 if (!IsOffsetKnown)
797 return PI.setAborted(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000798
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000799 const DataLayout &DL = SI.getModule()->getDataLayout();
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000800 uint64_t Size = DL.getTypeStoreSize(ValOp->getType());
801
802 // If this memory access can be shown to *statically* extend outside the
Hiroshi Inoue0909ca12018-01-26 08:15:29 +0000803 // bounds of the allocation, it's behavior is undefined, so simply
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000804 // ignore it. Note that this is more strict than the generic clamping
805 // behavior of insertUse. We also try to handle cases which might run the
806 // risk of overflow.
807 // FIXME: We should instead consider the pointer to have escaped if this
808 // function is being instrumented for addressing bugs or race conditions.
Chandler Carruth6aedc102014-02-26 03:14:14 +0000809 if (Size > AllocSize || Offset.ugt(AllocSize - Size)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000810 LLVM_DEBUG(dbgs() << "WARNING: Ignoring " << Size << " byte store @"
811 << Offset << " which extends past the end of the "
812 << AllocSize << " byte alloca:\n"
813 << " alloca: " << AS.AI << "\n"
814 << " use: " << SI << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +0000815 return markAsDead(SI);
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000816 }
817
Chandler Carruth42cb9cb2012-09-18 12:57:43 +0000818 assert((!SI.isSimple() || ValOp->getType()->isSingleValueType()) &&
819 "All simple FCA stores should have been pre-split");
Chandler Carrutha1c54bb2013-03-14 11:32:24 +0000820 handleLoadOrStore(ValOp->getType(), SI, Offset, Size, SI.isVolatile());
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000821 }
822
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000823 void visitMemSetInst(MemSetInst &II) {
Chandler Carruthb0de6dd2012-09-14 10:26:34 +0000824 assert(II.getRawDest() == *U && "Pointer use is not the destination?");
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000825 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000826 if ((Length && Length->getValue() == 0) ||
Chandler Carruth6aedc102014-02-26 03:14:14 +0000827 (IsOffsetKnown && Offset.uge(AllocSize)))
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000828 // Zero-length mem transfer intrinsics can be ignored entirely.
Chandler Carruthf0546402013-07-18 07:15:00 +0000829 return markAsDead(II);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000830
831 if (!IsOffsetKnown)
832 return PI.setAborted(&II);
833
Chandler Carruth113dc642014-12-20 02:39:18 +0000834 insertUse(II, Offset, Length ? Length->getLimitedValue()
835 : AllocSize - Offset.getLimitedValue(),
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000836 (bool)Length);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000837 }
838
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000839 void visitMemTransferInst(MemTransferInst &II) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000840 ConstantInt *Length = dyn_cast<ConstantInt>(II.getLength());
Chandler Carruth1bf38c62014-01-19 12:16:54 +0000841 if (Length && Length->getValue() == 0)
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000842 // Zero-length mem transfer intrinsics can be ignored entirely.
Chandler Carruthf0546402013-07-18 07:15:00 +0000843 return markAsDead(II);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000844
Chandler Carruth1bf38c62014-01-19 12:16:54 +0000845 // Because we can visit these intrinsics twice, also check to see if the
846 // first time marked this instruction as dead. If so, skip it.
847 if (VisitedDeadInsts.count(&II))
848 return;
849
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000850 if (!IsOffsetKnown)
851 return PI.setAborted(&II);
852
Chandler Carruth1bf38c62014-01-19 12:16:54 +0000853 // This side of the transfer is completely out-of-bounds, and so we can
854 // nuke the entire transfer. However, we also need to nuke the other side
855 // if already added to our partitions.
856 // FIXME: Yet another place we really should bypass this when
857 // instrumenting for ASan.
Chandler Carruth6aedc102014-02-26 03:14:14 +0000858 if (Offset.uge(AllocSize)) {
Chandler Carruth113dc642014-12-20 02:39:18 +0000859 SmallDenseMap<Instruction *, unsigned>::iterator MTPI =
860 MemTransferSliceMap.find(&II);
Chandler Carruth1bf38c62014-01-19 12:16:54 +0000861 if (MTPI != MemTransferSliceMap.end())
Chandler Carruth83934062014-10-16 21:11:55 +0000862 AS.Slices[MTPI->second].kill();
Chandler Carruth1bf38c62014-01-19 12:16:54 +0000863 return markAsDead(II);
864 }
865
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000866 uint64_t RawOffset = Offset.getLimitedValue();
Chandler Carruth113dc642014-12-20 02:39:18 +0000867 uint64_t Size = Length ? Length->getLimitedValue() : AllocSize - RawOffset;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000868
Chandler Carruthf0546402013-07-18 07:15:00 +0000869 // Check for the special case where the same exact value is used for both
870 // source and dest.
871 if (*U == II.getRawDest() && *U == II.getRawSource()) {
872 // For non-volatile transfers this is a no-op.
873 if (!II.isVolatile())
874 return markAsDead(II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000875
Nick Lewycky6ab9d932013-07-22 23:38:27 +0000876 return insertUse(II, Offset, Size, /*IsSplittable=*/false);
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000877 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000878
Chandler Carruthf0546402013-07-18 07:15:00 +0000879 // If we have seen both source and destination for a mem transfer, then
880 // they both point to the same alloca.
881 bool Inserted;
882 SmallDenseMap<Instruction *, unsigned>::iterator MTPI;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000883 std::tie(MTPI, Inserted) =
Chandler Carruth83934062014-10-16 21:11:55 +0000884 MemTransferSliceMap.insert(std::make_pair(&II, AS.Slices.size()));
Chandler Carruthf0546402013-07-18 07:15:00 +0000885 unsigned PrevIdx = MTPI->second;
886 if (!Inserted) {
Chandler Carruth83934062014-10-16 21:11:55 +0000887 Slice &PrevP = AS.Slices[PrevIdx];
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000888
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000889 // Check if the begin offsets match and this is a non-volatile transfer.
890 // In that case, we can completely elide the transfer.
Chandler Carruthf0546402013-07-18 07:15:00 +0000891 if (!II.isVolatile() && PrevP.beginOffset() == RawOffset) {
892 PrevP.kill();
893 return markAsDead(II);
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000894 }
895
896 // Otherwise we have an offset transfer within the same alloca. We can't
897 // split those.
Chandler Carruthf0546402013-07-18 07:15:00 +0000898 PrevP.makeUnsplittable();
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +0000899 }
900
Chandler Carruthe3899f22013-07-15 17:36:21 +0000901 // Insert the use now that we've fixed up the splittable nature.
Chandler Carruthf0546402013-07-18 07:15:00 +0000902 insertUse(II, Offset, Size, /*IsSplittable=*/Inserted && Length);
Chandler Carruthe3899f22013-07-15 17:36:21 +0000903
Chandler Carruthf0546402013-07-18 07:15:00 +0000904 // Check that we ended up with a valid index in the map.
Chandler Carruth83934062014-10-16 21:11:55 +0000905 assert(AS.Slices[PrevIdx].getUse()->getUser() == &II &&
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000906 "Map index doesn't point back to a slice with this user.");
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000907 }
908
909 // Disable SRoA for any intrinsics except for lifetime invariants.
Jakub Staszak086f6cd2013-02-19 22:02:21 +0000910 // FIXME: What about debug intrinsics? This matches old behavior, but
Chandler Carruth4b40e002012-09-14 10:26:36 +0000911 // doesn't make sense.
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000912 void visitIntrinsicInst(IntrinsicInst &II) {
913 if (!IsOffsetKnown)
914 return PI.setAborted(&II);
915
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000916 if (II.getIntrinsicID() == Intrinsic::lifetime_start ||
917 II.getIntrinsicID() == Intrinsic::lifetime_end) {
918 ConstantInt *Length = cast<ConstantInt>(II.getArgOperand(0));
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000919 uint64_t Size = std::min(AllocSize - Offset.getLimitedValue(),
920 Length->getLimitedValue());
Chandler Carruth97121172012-09-16 19:39:50 +0000921 insertUse(II, Offset, Size, true);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000922 return;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000923 }
924
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000925 Base::visitIntrinsicInst(II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000926 }
927
928 Instruction *hasUnsafePHIOrSelectUse(Instruction *Root, uint64_t &Size) {
929 // We consider any PHI or select that results in a direct load or store of
Chandler Carruth9f21fe12013-07-19 09:13:58 +0000930 // the same offset to be a viable use for slicing purposes. These uses
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000931 // are considered unsplittable and the size is the maximum loaded or stored
932 // size.
933 SmallPtrSet<Instruction *, 4> Visited;
934 SmallVector<std::pair<Instruction *, Instruction *>, 4> Uses;
935 Visited.insert(Root);
936 Uses.push_back(std::make_pair(cast<Instruction>(*U), Root));
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000937 const DataLayout &DL = Root->getModule()->getDataLayout();
Chandler Carruth8b907e82012-09-25 10:03:40 +0000938 // If there are no loads or stores, the access is dead. We mark that as
939 // a size zero access.
940 Size = 0;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000941 do {
942 Instruction *I, *UsedI;
Benjamin Kramerd6f1f842014-03-02 13:30:33 +0000943 std::tie(UsedI, I) = Uses.pop_back_val();
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000944
945 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000946 Size = std::max(Size, DL.getTypeStoreSize(LI->getType()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000947 continue;
948 }
949 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
950 Value *Op = SI->getOperand(0);
951 if (Op == UsedI)
952 return SI;
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000953 Size = std::max(Size, DL.getTypeStoreSize(Op->getType()));
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000954 continue;
955 }
956
957 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(I)) {
958 if (!GEP->hasAllZeroIndices())
959 return GEP;
960 } else if (!isa<BitCastInst>(I) && !isa<PHINode>(I) &&
961 !isa<SelectInst>(I)) {
962 return I;
963 }
964
Chandler Carruthcdf47882014-03-09 03:16:01 +0000965 for (User *U : I->users())
David Blaikie70573dc2014-11-19 07:49:26 +0000966 if (Visited.insert(cast<Instruction>(U)).second)
Chandler Carruthcdf47882014-03-09 03:16:01 +0000967 Uses.push_back(std::make_pair(I, cast<Instruction>(U)));
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000968 } while (!Uses.empty());
969
Craig Topperf40110f2014-04-25 05:29:35 +0000970 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000971 }
972
Jingyue Wuec33fa92014-08-22 22:45:57 +0000973 void visitPHINodeOrSelectInst(Instruction &I) {
974 assert(isa<PHINode>(I) || isa<SelectInst>(I));
975 if (I.use_empty())
976 return markAsDead(I);
Chandler Carruthe41e7b72012-12-10 08:28:39 +0000977
Jingyue Wuec33fa92014-08-22 22:45:57 +0000978 // TODO: We could use SimplifyInstruction here to fold PHINodes and
979 // SelectInsts. However, doing so requires to change the current
980 // dead-operand-tracking mechanism. For instance, suppose neither loading
981 // from %U nor %other traps. Then "load (select undef, %U, %other)" does not
982 // trap either. However, if we simply replace %U with undef using the
983 // current dead-operand-tracking mechanism, "load (select undef, undef,
984 // %other)" may trap because the select may return the first operand
985 // "undef".
986 if (Value *Result = foldPHINodeOrSelectInst(I)) {
Nick Lewyckyc7776f72013-08-13 22:51:58 +0000987 if (Result == *U)
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000988 // If the result of the constant fold will be the pointer, recurse
Jingyue Wuec33fa92014-08-22 22:45:57 +0000989 // through the PHI/select as if we had RAUW'ed it.
990 enqueueUsers(I);
Nick Lewyckyc7776f72013-08-13 22:51:58 +0000991 else
Jingyue Wuec33fa92014-08-22 22:45:57 +0000992 // Otherwise the operand to the PHI/select is dead, and we can replace
993 // it with undef.
Chandler Carruth83934062014-10-16 21:11:55 +0000994 AS.DeadOperands.push_back(U);
Chandler Carruth1b398ae2012-09-14 09:22:59 +0000995
996 return;
997 }
Jingyue Wuec33fa92014-08-22 22:45:57 +0000998
Chandler Carruthf0546402013-07-18 07:15:00 +0000999 if (!IsOffsetKnown)
Jingyue Wuec33fa92014-08-22 22:45:57 +00001000 return PI.setAborted(&I);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001001
Chandler Carruthf0546402013-07-18 07:15:00 +00001002 // See if we already have computed info on this node.
Jingyue Wuec33fa92014-08-22 22:45:57 +00001003 uint64_t &Size = PHIOrSelectSizes[&I];
1004 if (!Size) {
1005 // This is a new PHI/Select, check for an unsafe use of it.
1006 if (Instruction *UnsafeI = hasUnsafePHIOrSelectUse(&I, Size))
Chandler Carruthf0546402013-07-18 07:15:00 +00001007 return PI.setAborted(UnsafeI);
1008 }
1009
1010 // For PHI and select operands outside the alloca, we can't nuke the entire
1011 // phi or select -- the other side might still be relevant, so we special
1012 // case them here and use a separate structure to track the operands
1013 // themselves which should be replaced with undef.
1014 // FIXME: This should instead be escaped in the event we're instrumenting
1015 // for address sanitization.
Chandler Carruth6aedc102014-02-26 03:14:14 +00001016 if (Offset.uge(AllocSize)) {
Chandler Carruth83934062014-10-16 21:11:55 +00001017 AS.DeadOperands.push_back(U);
Chandler Carruthf0546402013-07-18 07:15:00 +00001018 return;
1019 }
1020
Jingyue Wuec33fa92014-08-22 22:45:57 +00001021 insertUse(I, Offset, Size);
1022 }
1023
Chandler Carruth113dc642014-12-20 02:39:18 +00001024 void visitPHINode(PHINode &PN) { visitPHINodeOrSelectInst(PN); }
Jingyue Wuec33fa92014-08-22 22:45:57 +00001025
Chandler Carruth113dc642014-12-20 02:39:18 +00001026 void visitSelectInst(SelectInst &SI) { visitPHINodeOrSelectInst(SI); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001027
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001028 /// Disable SROA entirely if there are unhandled users of the alloca.
Chandler Carruth113dc642014-12-20 02:39:18 +00001029 void visitInstruction(Instruction &I) { PI.setAborted(&I); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001030};
1031
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001032AllocaSlices::AllocaSlices(const DataLayout &DL, AllocaInst &AI)
Nick Lewyckyc7776f72013-08-13 22:51:58 +00001033 :
Aaron Ballman615eb472017-10-15 14:32:27 +00001034#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Nick Lewyckyc7776f72013-08-13 22:51:58 +00001035 AI(AI),
1036#endif
Craig Topperf40110f2014-04-25 05:29:35 +00001037 PointerEscapingInstr(nullptr) {
Nick Lewyckyc7776f72013-08-13 22:51:58 +00001038 SliceBuilder PB(DL, AI, *this);
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001039 SliceBuilder::PtrInfo PtrI = PB.visitPtr(AI);
Chandler Carruthe41e7b72012-12-10 08:28:39 +00001040 if (PtrI.isEscaped() || PtrI.isAborted()) {
1041 // FIXME: We should sink the escape vs. abort info into the caller nicely,
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001042 // possibly by just storing the PtrInfo in the AllocaSlices.
Chandler Carruthe41e7b72012-12-10 08:28:39 +00001043 PointerEscapingInstr = PtrI.getEscapingInst() ? PtrI.getEscapingInst()
1044 : PtrI.getAbortingInst();
1045 assert(PointerEscapingInstr && "Did not track a bad instruction");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001046 return;
Chandler Carruthe41e7b72012-12-10 08:28:39 +00001047 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001048
Eugene Zelenko75075ef2017-09-01 21:37:29 +00001049 Slices.erase(
1050 llvm::remove_if(Slices, [](const Slice &S) { return S.isDead(); }),
1051 Slices.end());
Benjamin Kramer08e50702013-07-20 08:38:34 +00001052
Hal Finkel29f51312016-03-28 11:13:03 +00001053#ifndef NDEBUG
Chandler Carruth83cee772014-02-25 03:59:29 +00001054 if (SROARandomShuffleSlices) {
Pavel Labathc207bec2016-11-09 12:07:12 +00001055 std::mt19937 MT(static_cast<unsigned>(
1056 std::chrono::system_clock::now().time_since_epoch().count()));
Chandler Carruth83cee772014-02-25 03:59:29 +00001057 std::shuffle(Slices.begin(), Slices.end(), MT);
1058 }
1059#endif
1060
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00001061 // Sort the uses. This arranges for the offsets to be in ascending order,
1062 // and the sizes to be in descending order.
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +00001063 llvm::sort(Slices.begin(), Slices.end());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001064}
1065
Aaron Ballman615eb472017-10-15 14:32:27 +00001066#if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth25fb23d2012-09-14 10:18:51 +00001067
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001068void AllocaSlices::print(raw_ostream &OS, const_iterator I,
1069 StringRef Indent) const {
1070 printSlice(OS, I, Indent);
Chandler Carruth0715cba2015-01-01 11:54:38 +00001071 OS << "\n";
Chandler Carruthf0546402013-07-18 07:15:00 +00001072 printUse(OS, I, Indent);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001073}
1074
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001075void AllocaSlices::printSlice(raw_ostream &OS, const_iterator I,
1076 StringRef Indent) const {
Chandler Carruthf0546402013-07-18 07:15:00 +00001077 OS << Indent << "[" << I->beginOffset() << "," << I->endOffset() << ")"
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001078 << " slice #" << (I - begin())
Chandler Carruth0715cba2015-01-01 11:54:38 +00001079 << (I->isSplittable() ? " (splittable)" : "");
Chandler Carruthf0546402013-07-18 07:15:00 +00001080}
1081
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001082void AllocaSlices::printUse(raw_ostream &OS, const_iterator I,
1083 StringRef Indent) const {
Chandler Carruthf0546402013-07-18 07:15:00 +00001084 OS << Indent << " used by: " << *I->getUse()->getUser() << "\n";
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001085}
1086
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001087void AllocaSlices::print(raw_ostream &OS) const {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001088 if (PointerEscapingInstr) {
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001089 OS << "Can't analyze slices for alloca: " << AI << "\n"
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001090 << " A pointer to this alloca escaped by:\n"
1091 << " " << *PointerEscapingInstr << "\n";
1092 return;
1093 }
1094
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001095 OS << "Slices of alloca: " << AI << "\n";
Chandler Carruthf0546402013-07-18 07:15:00 +00001096 for (const_iterator I = begin(), E = end(); I != E; ++I)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001097 print(OS, I);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001098}
1099
Alp Tokerf929e092014-01-04 22:47:48 +00001100LLVM_DUMP_METHOD void AllocaSlices::dump(const_iterator I) const {
1101 print(dbgs(), I);
1102}
1103LLVM_DUMP_METHOD void AllocaSlices::dump() const { print(dbgs()); }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001104
Aaron Ballman615eb472017-10-15 14:32:27 +00001105#endif // !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
Chandler Carruth25fb23d2012-09-14 10:18:51 +00001106
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001107/// Walk the range of a partitioning looking for a common type to cover this
1108/// sequence of slices.
1109static Type *findCommonType(AllocaSlices::const_iterator B,
1110 AllocaSlices::const_iterator E,
Chandler Carruthf0546402013-07-18 07:15:00 +00001111 uint64_t EndOffset) {
Craig Topperf40110f2014-04-25 05:29:35 +00001112 Type *Ty = nullptr;
Chandler Carruth4de31542014-01-21 23:16:05 +00001113 bool TyIsCommon = true;
Craig Topperf40110f2014-04-25 05:29:35 +00001114 IntegerType *ITy = nullptr;
Chandler Carruth4de31542014-01-21 23:16:05 +00001115
1116 // Note that we need to look at *every* alloca slice's Use to ensure we
1117 // always get consistent results regardless of the order of slices.
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001118 for (AllocaSlices::const_iterator I = B; I != E; ++I) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001119 Use *U = I->getUse();
1120 if (isa<IntrinsicInst>(*U->getUser()))
1121 continue;
1122 if (I->beginOffset() != B->beginOffset() || I->endOffset() != EndOffset)
1123 continue;
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001124
Craig Topperf40110f2014-04-25 05:29:35 +00001125 Type *UserTy = nullptr;
Chandler Carrutha1262002013-11-19 09:03:18 +00001126 if (LoadInst *LI = dyn_cast<LoadInst>(U->getUser())) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001127 UserTy = LI->getType();
Chandler Carrutha1262002013-11-19 09:03:18 +00001128 } else if (StoreInst *SI = dyn_cast<StoreInst>(U->getUser())) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001129 UserTy = SI->getValueOperand()->getType();
Chandler Carrutha1262002013-11-19 09:03:18 +00001130 }
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001131
Chandler Carruth4de31542014-01-21 23:16:05 +00001132 if (IntegerType *UserITy = dyn_cast_or_null<IntegerType>(UserTy)) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001133 // If the type is larger than the partition, skip it. We only encounter
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001134 // this for split integer operations where we want to use the type of the
Chandler Carrutha1262002013-11-19 09:03:18 +00001135 // entity causing the split. Also skip if the type is not a byte width
1136 // multiple.
Chandler Carruth4de31542014-01-21 23:16:05 +00001137 if (UserITy->getBitWidth() % 8 != 0 ||
1138 UserITy->getBitWidth() / 8 > (EndOffset - B->beginOffset()))
Chandler Carruthf0546402013-07-18 07:15:00 +00001139 continue;
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001140
Chandler Carruth4de31542014-01-21 23:16:05 +00001141 // Track the largest bitwidth integer type used in this way in case there
1142 // is no common type.
1143 if (!ITy || ITy->getBitWidth() < UserITy->getBitWidth())
1144 ITy = UserITy;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001145 }
Duncan P. N. Exon Smith73686d32014-06-17 00:19:35 +00001146
1147 // To avoid depending on the order of slices, Ty and TyIsCommon must not
1148 // depend on types skipped above.
1149 if (!UserTy || (Ty && Ty != UserTy))
1150 TyIsCommon = false; // Give up on anything but an iN type.
1151 else
1152 Ty = UserTy;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001153 }
Chandler Carruth4de31542014-01-21 23:16:05 +00001154
1155 return TyIsCommon ? Ty : ITy;
Chandler Carruthf0546402013-07-18 07:15:00 +00001156}
Chandler Carruthe3899f22013-07-15 17:36:21 +00001157
Chandler Carruthf0546402013-07-18 07:15:00 +00001158/// PHI instructions that use an alloca and are subsequently loaded can be
1159/// rewritten to load both input pointers in the pred blocks and then PHI the
1160/// results, allowing the load of the alloca to be promoted.
1161/// From this:
1162/// %P2 = phi [i32* %Alloca, i32* %Other]
1163/// %V = load i32* %P2
1164/// to:
1165/// %V1 = load i32* %Alloca -> will be mem2reg'd
1166/// ...
1167/// %V2 = load i32* %Other
1168/// ...
1169/// %V = phi [i32 %V1, i32 %V2]
1170///
1171/// We can do this to a select if its only uses are loads and if the operands
1172/// to the select can be loaded unconditionally.
1173///
1174/// FIXME: This should be hoisted into a generic utility, likely in
1175/// Transforms/Util/Local.h
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001176static bool isSafePHIToSpeculate(PHINode &PN) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001177 // For now, we can only do this promotion if the load is in the same block
1178 // as the PHI, and if there are no stores between the phi and load.
1179 // TODO: Allow recursive phi users.
1180 // TODO: Allow stores.
1181 BasicBlock *BB = PN.getParent();
1182 unsigned MaxAlign = 0;
1183 bool HaveLoad = false;
Chandler Carruthcdf47882014-03-09 03:16:01 +00001184 for (User *U : PN.users()) {
1185 LoadInst *LI = dyn_cast<LoadInst>(U);
Craig Topperf40110f2014-04-25 05:29:35 +00001186 if (!LI || !LI->isSimple())
Chandler Carruthe74ff4c2013-07-15 10:30:19 +00001187 return false;
Chandler Carruthe74ff4c2013-07-15 10:30:19 +00001188
Chandler Carruthf0546402013-07-18 07:15:00 +00001189 // For now we only allow loads in the same block as the PHI. This is
1190 // a common case that happens when instcombine merges two loads through
1191 // a PHI.
1192 if (LI->getParent() != BB)
1193 return false;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001194
Chandler Carruthf0546402013-07-18 07:15:00 +00001195 // Ensure that there are no instructions between the PHI and the load that
1196 // could store.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00001197 for (BasicBlock::iterator BBI(PN); &*BBI != LI; ++BBI)
Chandler Carruthf0546402013-07-18 07:15:00 +00001198 if (BBI->mayWriteToMemory())
Chandler Carruthe3899f22013-07-15 17:36:21 +00001199 return false;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001200
Chandler Carruthf0546402013-07-18 07:15:00 +00001201 MaxAlign = std::max(MaxAlign, LI->getAlignment());
1202 HaveLoad = true;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001203 }
1204
Chandler Carruthf0546402013-07-18 07:15:00 +00001205 if (!HaveLoad)
1206 return false;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001207
Artur Pilipenko9bb6bea2016-04-27 11:00:48 +00001208 const DataLayout &DL = PN.getModule()->getDataLayout();
1209
Chandler Carruthf0546402013-07-18 07:15:00 +00001210 // We can only transform this if it is safe to push the loads into the
1211 // predecessor blocks. The only thing to watch out for is that we can't put
1212 // a possibly trapping load in the predecessor if it is a critical edge.
1213 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
1214 TerminatorInst *TI = PN.getIncomingBlock(Idx)->getTerminator();
1215 Value *InVal = PN.getIncomingValue(Idx);
Chandler Carruthe3899f22013-07-15 17:36:21 +00001216
Chandler Carruthf0546402013-07-18 07:15:00 +00001217 // If the value is produced by the terminator of the predecessor (an
1218 // invoke) or it has side-effects, there is no valid place to put a load
1219 // in the predecessor.
1220 if (TI == InVal || TI->mayHaveSideEffects())
1221 return false;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001222
Chandler Carruthf0546402013-07-18 07:15:00 +00001223 // If the predecessor has a single successor, then the edge isn't
1224 // critical.
1225 if (TI->getNumSuccessors() == 1)
1226 continue;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001227
Chandler Carruthf0546402013-07-18 07:15:00 +00001228 // If this pointer is always safe to load, or if we can prove that there
1229 // is already a load in the block, then we can move the load to the pred
1230 // block.
Artur Pilipenko9bb6bea2016-04-27 11:00:48 +00001231 if (isSafeToLoadUnconditionally(InVal, MaxAlign, DL, TI))
Chandler Carruthf0546402013-07-18 07:15:00 +00001232 continue;
1233
1234 return false;
1235 }
1236
1237 return true;
1238}
1239
1240static void speculatePHINodeLoads(PHINode &PN) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001241 LLVM_DEBUG(dbgs() << " original: " << PN << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00001242
1243 Type *LoadTy = cast<PointerType>(PN.getType())->getElementType();
1244 IRBuilderTy PHIBuilder(&PN);
1245 PHINode *NewPN = PHIBuilder.CreatePHI(LoadTy, PN.getNumIncomingValues(),
1246 PN.getName() + ".sroa.speculated");
1247
Hal Finkelcc39b672014-07-24 12:16:19 +00001248 // Get the AA tags and alignment to use from one of the loads. It doesn't
Chandler Carruthf0546402013-07-18 07:15:00 +00001249 // matter which one we get and if any differ.
Chandler Carruthcdf47882014-03-09 03:16:01 +00001250 LoadInst *SomeLoad = cast<LoadInst>(PN.user_back());
Hal Finkelcc39b672014-07-24 12:16:19 +00001251
1252 AAMDNodes AATags;
1253 SomeLoad->getAAMetadata(AATags);
Chandler Carruthf0546402013-07-18 07:15:00 +00001254 unsigned Align = SomeLoad->getAlignment();
1255
1256 // Rewrite all loads of the PN to use the new PHI.
1257 while (!PN.use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001258 LoadInst *LI = cast<LoadInst>(PN.user_back());
Chandler Carruthf0546402013-07-18 07:15:00 +00001259 LI->replaceAllUsesWith(NewPN);
1260 LI->eraseFromParent();
1261 }
1262
1263 // Inject loads into all of the pred blocks.
1264 for (unsigned Idx = 0, Num = PN.getNumIncomingValues(); Idx != Num; ++Idx) {
1265 BasicBlock *Pred = PN.getIncomingBlock(Idx);
1266 TerminatorInst *TI = Pred->getTerminator();
1267 Value *InVal = PN.getIncomingValue(Idx);
1268 IRBuilderTy PredBuilder(TI);
1269
1270 LoadInst *Load = PredBuilder.CreateLoad(
1271 InVal, (PN.getName() + ".sroa.speculate.load." + Pred->getName()));
1272 ++NumLoadsSpeculated;
1273 Load->setAlignment(Align);
Hal Finkelcc39b672014-07-24 12:16:19 +00001274 if (AATags)
1275 Load->setAAMetadata(AATags);
Chandler Carruthf0546402013-07-18 07:15:00 +00001276 NewPN->addIncoming(Load, Pred);
1277 }
1278
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001279 LLVM_DEBUG(dbgs() << " speculated to: " << *NewPN << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00001280 PN.eraseFromParent();
1281}
1282
1283/// Select instructions that use an alloca and are subsequently loaded can be
1284/// rewritten to load both input pointers and then select between the result,
1285/// allowing the load of the alloca to be promoted.
1286/// From this:
1287/// %P2 = select i1 %cond, i32* %Alloca, i32* %Other
1288/// %V = load i32* %P2
1289/// to:
1290/// %V1 = load i32* %Alloca -> will be mem2reg'd
1291/// %V2 = load i32* %Other
1292/// %V = select i1 %cond, i32 %V1, i32 %V2
1293///
1294/// We can do this to a select if its only uses are loads and if the operand
1295/// to the select can be loaded unconditionally.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001296static bool isSafeSelectToSpeculate(SelectInst &SI) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001297 Value *TValue = SI.getTrueValue();
1298 Value *FValue = SI.getFalseValue();
Artur Pilipenko9bb6bea2016-04-27 11:00:48 +00001299 const DataLayout &DL = SI.getModule()->getDataLayout();
Chandler Carruthf0546402013-07-18 07:15:00 +00001300
Chandler Carruthcdf47882014-03-09 03:16:01 +00001301 for (User *U : SI.users()) {
1302 LoadInst *LI = dyn_cast<LoadInst>(U);
Craig Topperf40110f2014-04-25 05:29:35 +00001303 if (!LI || !LI->isSimple())
Chandler Carruthf0546402013-07-18 07:15:00 +00001304 return false;
1305
Hiroshi Inoueb3008242017-06-24 15:43:33 +00001306 // Both operands to the select need to be dereferenceable, either
Chandler Carruthf0546402013-07-18 07:15:00 +00001307 // absolutely (e.g. allocas) or at this point because we can see other
1308 // accesses to it.
Artur Pilipenko9bb6bea2016-04-27 11:00:48 +00001309 if (!isSafeToLoadUnconditionally(TValue, LI->getAlignment(), DL, LI))
Chandler Carruthf0546402013-07-18 07:15:00 +00001310 return false;
Artur Pilipenko9bb6bea2016-04-27 11:00:48 +00001311 if (!isSafeToLoadUnconditionally(FValue, LI->getAlignment(), DL, LI))
Chandler Carruthf0546402013-07-18 07:15:00 +00001312 return false;
1313 }
1314
1315 return true;
1316}
1317
1318static void speculateSelectInstLoads(SelectInst &SI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001319 LLVM_DEBUG(dbgs() << " original: " << SI << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00001320
1321 IRBuilderTy IRB(&SI);
1322 Value *TV = SI.getTrueValue();
1323 Value *FV = SI.getFalseValue();
1324 // Replace the loads of the select with a select of two loads.
1325 while (!SI.use_empty()) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00001326 LoadInst *LI = cast<LoadInst>(SI.user_back());
Chandler Carruthf0546402013-07-18 07:15:00 +00001327 assert(LI->isSimple() && "We only speculate simple loads");
1328
1329 IRB.SetInsertPoint(LI);
1330 LoadInst *TL =
Chandler Carruthe3899f22013-07-15 17:36:21 +00001331 IRB.CreateLoad(TV, LI->getName() + ".sroa.speculate.load.true");
Chandler Carruthf0546402013-07-18 07:15:00 +00001332 LoadInst *FL =
Chandler Carruthe3899f22013-07-15 17:36:21 +00001333 IRB.CreateLoad(FV, LI->getName() + ".sroa.speculate.load.false");
Chandler Carruthf0546402013-07-18 07:15:00 +00001334 NumLoadsSpeculated += 2;
Chandler Carruthe3899f22013-07-15 17:36:21 +00001335
Hal Finkelcc39b672014-07-24 12:16:19 +00001336 // Transfer alignment and AA info if present.
Chandler Carruthf0546402013-07-18 07:15:00 +00001337 TL->setAlignment(LI->getAlignment());
1338 FL->setAlignment(LI->getAlignment());
Hal Finkelcc39b672014-07-24 12:16:19 +00001339
1340 AAMDNodes Tags;
1341 LI->getAAMetadata(Tags);
1342 if (Tags) {
1343 TL->setAAMetadata(Tags);
1344 FL->setAAMetadata(Tags);
Chandler Carruthe3899f22013-07-15 17:36:21 +00001345 }
Chandler Carruthf0546402013-07-18 07:15:00 +00001346
1347 Value *V = IRB.CreateSelect(SI.getCondition(), TL, FL,
1348 LI->getName() + ".sroa.speculated");
1349
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001350 LLVM_DEBUG(dbgs() << " speculated to: " << *V << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00001351 LI->replaceAllUsesWith(V);
1352 LI->eraseFromParent();
Chandler Carruthe3899f22013-07-15 17:36:21 +00001353 }
Chandler Carruthf0546402013-07-18 07:15:00 +00001354 SI.eraseFromParent();
Chandler Carruth90c4a3a2012-10-05 01:29:06 +00001355}
1356
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001357/// Build a GEP out of a base pointer and indices.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001358///
1359/// This will return the BasePtr if that is valid, or build a new GEP
1360/// instruction using the IRBuilder if GEP-ing is needed.
Chandler Carruthd177f862013-03-20 07:30:36 +00001361static Value *buildGEP(IRBuilderTy &IRB, Value *BasePtr,
Zachary Turner41a9ee92017-10-11 23:54:34 +00001362 SmallVectorImpl<Value *> &Indices, Twine NamePrefix) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001363 if (Indices.empty())
1364 return BasePtr;
1365
1366 // A single zero index is a no-op, so check for this and avoid building a GEP
1367 // in that case.
1368 if (Indices.size() == 1 && cast<ConstantInt>(Indices.back())->isZero())
1369 return BasePtr;
1370
David Blaikieaa41cd52015-04-03 21:33:42 +00001371 return IRB.CreateInBoundsGEP(nullptr, BasePtr, Indices,
1372 NamePrefix + "sroa_idx");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001373}
1374
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001375/// Get a natural GEP off of the BasePtr walking through Ty toward
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001376/// TargetTy without changing the offset of the pointer.
1377///
1378/// This routine assumes we've already established a properly offset GEP with
1379/// Indices, and arrived at the Ty type. The goal is to continue to GEP with
1380/// zero-indices down through type layers until we find one the same as
1381/// TargetTy. If we can't find one with the same type, we at least try to use
1382/// one with the same size. If none of that works, we just produce the GEP as
1383/// indicated by Indices to have the correct offset.
Chandler Carruth90a735d2013-07-19 07:21:28 +00001384static Value *getNaturalGEPWithType(IRBuilderTy &IRB, const DataLayout &DL,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001385 Value *BasePtr, Type *Ty, Type *TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001386 SmallVectorImpl<Value *> &Indices,
Zachary Turner41a9ee92017-10-11 23:54:34 +00001387 Twine NamePrefix) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001388 if (Ty == TargetTy)
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001389 return buildGEP(IRB, BasePtr, Indices, NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001390
Chandler Carruthdfb2efd2014-02-26 10:08:16 +00001391 // Pointer size to use for the indices.
1392 unsigned PtrSize = DL.getPointerTypeSizeInBits(BasePtr->getType());
1393
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001394 // See if we can descend into a struct and locate a field with the correct
1395 // type.
1396 unsigned NumLayers = 0;
1397 Type *ElementTy = Ty;
1398 do {
1399 if (ElementTy->isPointerTy())
1400 break;
Chandler Carruthdfb2efd2014-02-26 10:08:16 +00001401
1402 if (ArrayType *ArrayTy = dyn_cast<ArrayType>(ElementTy)) {
1403 ElementTy = ArrayTy->getElementType();
1404 Indices.push_back(IRB.getIntN(PtrSize, 0));
1405 } else if (VectorType *VectorTy = dyn_cast<VectorType>(ElementTy)) {
1406 ElementTy = VectorTy->getElementType();
1407 Indices.push_back(IRB.getInt32(0));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001408 } else if (StructType *STy = dyn_cast<StructType>(ElementTy)) {
Chandler Carruth503eb2b2012-10-09 01:58:35 +00001409 if (STy->element_begin() == STy->element_end())
1410 break; // Nothing left to descend into.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001411 ElementTy = *STy->element_begin();
1412 Indices.push_back(IRB.getInt32(0));
1413 } else {
1414 break;
1415 }
1416 ++NumLayers;
1417 } while (ElementTy != TargetTy);
1418 if (ElementTy != TargetTy)
1419 Indices.erase(Indices.end() - NumLayers, Indices.end());
1420
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001421 return buildGEP(IRB, BasePtr, Indices, NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001422}
1423
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001424/// Recursively compute indices for a natural GEP.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001425///
1426/// This is the recursive step for getNaturalGEPWithOffset that walks down the
1427/// element types adding appropriate indices for the GEP.
Chandler Carruth90a735d2013-07-19 07:21:28 +00001428static Value *getNaturalGEPRecursively(IRBuilderTy &IRB, const DataLayout &DL,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001429 Value *Ptr, Type *Ty, APInt &Offset,
1430 Type *TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001431 SmallVectorImpl<Value *> &Indices,
Zachary Turner41a9ee92017-10-11 23:54:34 +00001432 Twine NamePrefix) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001433 if (Offset == 0)
Chandler Carruth113dc642014-12-20 02:39:18 +00001434 return getNaturalGEPWithType(IRB, DL, Ptr, Ty, TargetTy, Indices,
1435 NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001436
1437 // We can't recurse through pointer types.
1438 if (Ty->isPointerTy())
Craig Topperf40110f2014-04-25 05:29:35 +00001439 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001440
Chandler Carruthdd3cea82012-09-14 10:30:40 +00001441 // We try to analyze GEPs over vectors here, but note that these GEPs are
1442 // extremely poorly defined currently. The long-term goal is to remove GEPing
1443 // over a vector from the IR completely.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001444 if (VectorType *VecTy = dyn_cast<VectorType>(Ty)) {
Chandler Carruth90a735d2013-07-19 07:21:28 +00001445 unsigned ElementSizeInBits = DL.getTypeSizeInBits(VecTy->getScalarType());
Craig Topperf40110f2014-04-25 05:29:35 +00001446 if (ElementSizeInBits % 8 != 0) {
1447 // GEPs over non-multiple of 8 size vector elements are invalid.
1448 return nullptr;
1449 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001450 APInt ElementSize(Offset.getBitWidth(), ElementSizeInBits / 8);
Chandler Carruth6fab42a2012-10-17 09:23:48 +00001451 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001452 if (NumSkippedElements.ugt(VecTy->getNumElements()))
Craig Topperf40110f2014-04-25 05:29:35 +00001453 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001454 Offset -= NumSkippedElements * ElementSize;
1455 Indices.push_back(IRB.getInt(NumSkippedElements));
Chandler Carruth90a735d2013-07-19 07:21:28 +00001456 return getNaturalGEPRecursively(IRB, DL, Ptr, VecTy->getElementType(),
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001457 Offset, TargetTy, Indices, NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001458 }
1459
1460 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
1461 Type *ElementTy = ArrTy->getElementType();
Chandler Carruth90a735d2013-07-19 07:21:28 +00001462 APInt ElementSize(Offset.getBitWidth(), DL.getTypeAllocSize(ElementTy));
Chandler Carruth6fab42a2012-10-17 09:23:48 +00001463 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001464 if (NumSkippedElements.ugt(ArrTy->getNumElements()))
Craig Topperf40110f2014-04-25 05:29:35 +00001465 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001466
1467 Offset -= NumSkippedElements * ElementSize;
1468 Indices.push_back(IRB.getInt(NumSkippedElements));
Chandler Carruth90a735d2013-07-19 07:21:28 +00001469 return getNaturalGEPRecursively(IRB, DL, Ptr, ElementTy, Offset, TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001470 Indices, NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001471 }
1472
1473 StructType *STy = dyn_cast<StructType>(Ty);
1474 if (!STy)
Craig Topperf40110f2014-04-25 05:29:35 +00001475 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001476
Chandler Carruth90a735d2013-07-19 07:21:28 +00001477 const StructLayout *SL = DL.getStructLayout(STy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001478 uint64_t StructOffset = Offset.getZExtValue();
Chandler Carruthcabd96c2012-09-14 10:30:42 +00001479 if (StructOffset >= SL->getSizeInBytes())
Craig Topperf40110f2014-04-25 05:29:35 +00001480 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001481 unsigned Index = SL->getElementContainingOffset(StructOffset);
1482 Offset -= APInt(Offset.getBitWidth(), SL->getElementOffset(Index));
1483 Type *ElementTy = STy->getElementType(Index);
Chandler Carruth90a735d2013-07-19 07:21:28 +00001484 if (Offset.uge(DL.getTypeAllocSize(ElementTy)))
Craig Topperf40110f2014-04-25 05:29:35 +00001485 return nullptr; // The offset points into alignment padding.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001486
1487 Indices.push_back(IRB.getInt32(Index));
Chandler Carruth90a735d2013-07-19 07:21:28 +00001488 return getNaturalGEPRecursively(IRB, DL, Ptr, ElementTy, Offset, TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001489 Indices, NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001490}
1491
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001492/// Get a natural GEP from a base pointer to a particular offset and
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001493/// resulting in a particular type.
1494///
1495/// The goal is to produce a "natural" looking GEP that works with the existing
1496/// composite types to arrive at the appropriate offset and element type for
1497/// a pointer. TargetTy is the element type the returned GEP should point-to if
1498/// possible. We recurse by decreasing Offset, adding the appropriate index to
1499/// Indices, and setting Ty to the result subtype.
1500///
Chandler Carruth93a21e72012-09-14 10:18:49 +00001501/// If no natural GEP can be constructed, this function returns null.
Chandler Carruth90a735d2013-07-19 07:21:28 +00001502static Value *getNaturalGEPWithOffset(IRBuilderTy &IRB, const DataLayout &DL,
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001503 Value *Ptr, APInt Offset, Type *TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001504 SmallVectorImpl<Value *> &Indices,
Zachary Turner41a9ee92017-10-11 23:54:34 +00001505 Twine NamePrefix) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001506 PointerType *Ty = cast<PointerType>(Ptr->getType());
1507
1508 // Don't consider any GEPs through an i8* as natural unless the TargetTy is
1509 // an i8.
Chandler Carruth286d87e2014-02-26 08:25:02 +00001510 if (Ty == IRB.getInt8PtrTy(Ty->getAddressSpace()) && TargetTy->isIntegerTy(8))
Craig Topperf40110f2014-04-25 05:29:35 +00001511 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001512
1513 Type *ElementTy = Ty->getElementType();
Chandler Carruth3f882d42012-09-18 22:37:19 +00001514 if (!ElementTy->isSized())
Craig Topperf40110f2014-04-25 05:29:35 +00001515 return nullptr; // We can't GEP through an unsized element.
Chandler Carruth90a735d2013-07-19 07:21:28 +00001516 APInt ElementSize(Offset.getBitWidth(), DL.getTypeAllocSize(ElementTy));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001517 if (ElementSize == 0)
Craig Topperf40110f2014-04-25 05:29:35 +00001518 return nullptr; // Zero-length arrays can't help us build a natural GEP.
Chandler Carruth6fab42a2012-10-17 09:23:48 +00001519 APInt NumSkippedElements = Offset.sdiv(ElementSize);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001520
1521 Offset -= NumSkippedElements * ElementSize;
1522 Indices.push_back(IRB.getInt(NumSkippedElements));
Chandler Carruth90a735d2013-07-19 07:21:28 +00001523 return getNaturalGEPRecursively(IRB, DL, Ptr, ElementTy, Offset, TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001524 Indices, NamePrefix);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001525}
1526
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001527/// Compute an adjusted pointer from Ptr by Offset bytes where the
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001528/// resulting pointer has PointerTy.
1529///
1530/// This tries very hard to compute a "natural" GEP which arrives at the offset
1531/// and produces the pointer type desired. Where it cannot, it will try to use
1532/// the natural GEP to arrive at the offset and bitcast to the type. Where that
1533/// fails, it will try to use an existing i8* and GEP to the byte offset and
1534/// bitcast to the type.
1535///
1536/// The strategy for finding the more natural GEPs is to peel off layers of the
1537/// pointer, walking back through bit casts and GEPs, searching for a base
1538/// pointer from which we can compute a natural GEP with the desired
Jakub Staszak086f6cd2013-02-19 22:02:21 +00001539/// properties. The algorithm tries to fold as many constant indices into
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001540/// a single GEP as possible, thus making each GEP more independent of the
1541/// surrounding code.
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001542static Value *getAdjustedPtr(IRBuilderTy &IRB, const DataLayout &DL, Value *Ptr,
Zachary Turner41a9ee92017-10-11 23:54:34 +00001543 APInt Offset, Type *PointerTy, Twine NamePrefix) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001544 // Even though we don't look through PHI nodes, we could be called on an
1545 // instruction in an unreachable block, which may be on a cycle.
1546 SmallPtrSet<Value *, 4> Visited;
1547 Visited.insert(Ptr);
1548 SmallVector<Value *, 4> Indices;
1549
1550 // We may end up computing an offset pointer that has the wrong type. If we
1551 // never are able to compute one directly that has the correct type, we'll
Chandler Carruth5986b542015-01-02 02:47:38 +00001552 // fall back to it, so keep it and the base it was computed from around here.
Craig Topperf40110f2014-04-25 05:29:35 +00001553 Value *OffsetPtr = nullptr;
Chandler Carruth5986b542015-01-02 02:47:38 +00001554 Value *OffsetBasePtr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001555
1556 // Remember any i8 pointer we come across to re-use if we need to do a raw
1557 // byte offset.
Craig Topperf40110f2014-04-25 05:29:35 +00001558 Value *Int8Ptr = nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001559 APInt Int8PtrOffset(Offset.getBitWidth(), 0);
1560
1561 Type *TargetTy = PointerTy->getPointerElementType();
1562
1563 do {
1564 // First fold any existing GEPs into the offset.
1565 while (GEPOperator *GEP = dyn_cast<GEPOperator>(Ptr)) {
1566 APInt GEPOffset(Offset.getBitWidth(), 0);
Chandler Carruth90a735d2013-07-19 07:21:28 +00001567 if (!GEP->accumulateConstantOffset(DL, GEPOffset))
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001568 break;
1569 Offset += GEPOffset;
1570 Ptr = GEP->getPointerOperand();
David Blaikie70573dc2014-11-19 07:49:26 +00001571 if (!Visited.insert(Ptr).second)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001572 break;
1573 }
1574
1575 // See if we can perform a natural GEP here.
1576 Indices.clear();
Chandler Carruth90a735d2013-07-19 07:21:28 +00001577 if (Value *P = getNaturalGEPWithOffset(IRB, DL, Ptr, Offset, TargetTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001578 Indices, NamePrefix)) {
Chandler Carruth5986b542015-01-02 02:47:38 +00001579 // If we have a new natural pointer at the offset, clear out any old
1580 // offset pointer we computed. Unless it is the base pointer or
1581 // a non-instruction, we built a GEP we don't need. Zap it.
1582 if (OffsetPtr && OffsetPtr != OffsetBasePtr)
1583 if (Instruction *I = dyn_cast<Instruction>(OffsetPtr)) {
1584 assert(I->use_empty() && "Built a GEP with uses some how!");
1585 I->eraseFromParent();
1586 }
1587 OffsetPtr = P;
1588 OffsetBasePtr = Ptr;
1589 // If we also found a pointer of the right type, we're done.
1590 if (P->getType() == PointerTy)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001591 return P;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001592 }
1593
1594 // Stash this pointer if we've found an i8*.
1595 if (Ptr->getType()->isIntegerTy(8)) {
1596 Int8Ptr = Ptr;
1597 Int8PtrOffset = Offset;
1598 }
1599
1600 // Peel off a layer of the pointer and update the offset appropriately.
1601 if (Operator::getOpcode(Ptr) == Instruction::BitCast) {
1602 Ptr = cast<Operator>(Ptr)->getOperand(0);
1603 } else if (GlobalAlias *GA = dyn_cast<GlobalAlias>(Ptr)) {
Sanjoy Das5ce32722016-04-08 00:48:30 +00001604 if (GA->isInterposable())
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001605 break;
1606 Ptr = GA->getAliasee();
1607 } else {
1608 break;
1609 }
1610 assert(Ptr->getType()->isPointerTy() && "Unexpected operand type!");
David Blaikie70573dc2014-11-19 07:49:26 +00001611 } while (Visited.insert(Ptr).second);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001612
1613 if (!OffsetPtr) {
1614 if (!Int8Ptr) {
Chandler Carruth286d87e2014-02-26 08:25:02 +00001615 Int8Ptr = IRB.CreateBitCast(
1616 Ptr, IRB.getInt8PtrTy(PointerTy->getPointerAddressSpace()),
1617 NamePrefix + "sroa_raw_cast");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001618 Int8PtrOffset = Offset;
1619 }
1620
Chandler Carruth113dc642014-12-20 02:39:18 +00001621 OffsetPtr = Int8PtrOffset == 0
1622 ? Int8Ptr
David Blaikieaa41cd52015-04-03 21:33:42 +00001623 : IRB.CreateInBoundsGEP(IRB.getInt8Ty(), Int8Ptr,
1624 IRB.getInt(Int8PtrOffset),
Chandler Carruth113dc642014-12-20 02:39:18 +00001625 NamePrefix + "sroa_raw_idx");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001626 }
1627 Ptr = OffsetPtr;
1628
1629 // On the off chance we were targeting i8*, guard the bitcast here.
1630 if (Ptr->getType() != PointerTy)
Chandler Carruthcb93cd22014-02-25 11:19:56 +00001631 Ptr = IRB.CreateBitCast(Ptr, PointerTy, NamePrefix + "sroa_cast");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001632
1633 return Ptr;
1634}
1635
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001636/// Compute the adjusted alignment for a load or store from an offset.
Chandler Carruth0715cba2015-01-01 11:54:38 +00001637static unsigned getAdjustedAlignment(Instruction *I, uint64_t Offset,
1638 const DataLayout &DL) {
1639 unsigned Alignment;
1640 Type *Ty;
1641 if (auto *LI = dyn_cast<LoadInst>(I)) {
1642 Alignment = LI->getAlignment();
1643 Ty = LI->getType();
1644 } else if (auto *SI = dyn_cast<StoreInst>(I)) {
1645 Alignment = SI->getAlignment();
1646 Ty = SI->getValueOperand()->getType();
1647 } else {
1648 llvm_unreachable("Only loads and stores are allowed!");
1649 }
1650
1651 if (!Alignment)
1652 Alignment = DL.getABITypeAlignment(Ty);
1653
1654 return MinAlign(Alignment, Offset);
1655}
1656
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001657/// Test whether we can convert a value from the old to the new type.
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001658///
1659/// This predicate should be used to guard calls to convertValue in order to
1660/// ensure that we only try to convert viable values. The strategy is that we
1661/// will peel off single element struct and array wrappings to get to an
1662/// underlying value, and convert that value.
1663static bool canConvertValue(const DataLayout &DL, Type *OldTy, Type *NewTy) {
1664 if (OldTy == NewTy)
1665 return true;
Chandler Carruthccffdaf2015-07-22 03:32:42 +00001666
1667 // For integer types, we can't handle any bit-width differences. This would
1668 // break both vector conversions with extension and introduce endianness
1669 // issues when in conjunction with loads and stores.
1670 if (isa<IntegerType>(OldTy) && isa<IntegerType>(NewTy)) {
1671 assert(cast<IntegerType>(OldTy)->getBitWidth() !=
1672 cast<IntegerType>(NewTy)->getBitWidth() &&
1673 "We can't have the same bitwidth for different int types");
1674 return false;
1675 }
1676
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001677 if (DL.getTypeSizeInBits(NewTy) != DL.getTypeSizeInBits(OldTy))
1678 return false;
1679 if (!NewTy->isSingleValueType() || !OldTy->isSingleValueType())
1680 return false;
1681
Benjamin Kramer56262592013-09-22 11:24:58 +00001682 // We can convert pointers to integers and vice-versa. Same for vectors
Benjamin Kramer90901a32013-09-21 20:36:04 +00001683 // of pointers and integers.
1684 OldTy = OldTy->getScalarType();
1685 NewTy = NewTy->getScalarType();
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001686 if (NewTy->isPointerTy() || OldTy->isPointerTy()) {
Jack Liuf101c0f2016-05-03 19:30:48 +00001687 if (NewTy->isPointerTy() && OldTy->isPointerTy()) {
1688 return cast<PointerType>(NewTy)->getPointerAddressSpace() ==
1689 cast<PointerType>(OldTy)->getPointerAddressSpace();
1690 }
Sanjoy Dasb70ddd82017-06-17 20:28:13 +00001691
1692 // We can convert integers to integral pointers, but not to non-integral
1693 // pointers.
1694 if (OldTy->isIntegerTy())
1695 return !DL.isNonIntegralPointerType(NewTy);
1696
1697 // We can convert integral pointers to integers, but non-integral pointers
1698 // need to remain pointers.
1699 if (!DL.isNonIntegralPointerType(OldTy))
1700 return NewTy->isIntegerTy();
1701
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001702 return false;
1703 }
1704
1705 return true;
1706}
1707
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001708/// Generic routine to convert an SSA value to a value of a different
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001709/// type.
1710///
1711/// This will try various different casting techniques, such as bitcasts,
1712/// inttoptr, and ptrtoint casts. Use the \c canConvertValue predicate to test
1713/// two types for viability with this routine.
Chandler Carruthd177f862013-03-20 07:30:36 +00001714static Value *convertValue(const DataLayout &DL, IRBuilderTy &IRB, Value *V,
Benjamin Kramer90901a32013-09-21 20:36:04 +00001715 Type *NewTy) {
1716 Type *OldTy = V->getType();
1717 assert(canConvertValue(DL, OldTy, NewTy) && "Value not convertable to type");
1718
1719 if (OldTy == NewTy)
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001720 return V;
Benjamin Kramer90901a32013-09-21 20:36:04 +00001721
Chandler Carruthccffdaf2015-07-22 03:32:42 +00001722 assert(!(isa<IntegerType>(OldTy) && isa<IntegerType>(NewTy)) &&
1723 "Integer types must be the exact same to convert.");
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001724
Benjamin Kramer90901a32013-09-21 20:36:04 +00001725 // See if we need inttoptr for this type pair. A cast involving both scalars
1726 // and vectors requires and additional bitcast.
Craig Topper95d23472017-07-09 07:04:00 +00001727 if (OldTy->isIntOrIntVectorTy() && NewTy->isPtrOrPtrVectorTy()) {
Benjamin Kramer90901a32013-09-21 20:36:04 +00001728 // Expand <2 x i32> to i8* --> <2 x i32> to i64 to i8*
1729 if (OldTy->isVectorTy() && !NewTy->isVectorTy())
1730 return IRB.CreateIntToPtr(IRB.CreateBitCast(V, DL.getIntPtrType(NewTy)),
1731 NewTy);
1732
1733 // Expand i128 to <2 x i8*> --> i128 to <2 x i64> to <2 x i8*>
1734 if (!OldTy->isVectorTy() && NewTy->isVectorTy())
1735 return IRB.CreateIntToPtr(IRB.CreateBitCast(V, DL.getIntPtrType(NewTy)),
1736 NewTy);
1737
1738 return IRB.CreateIntToPtr(V, NewTy);
1739 }
1740
1741 // See if we need ptrtoint for this type pair. A cast involving both scalars
1742 // and vectors requires and additional bitcast.
Craig Topper95d23472017-07-09 07:04:00 +00001743 if (OldTy->isPtrOrPtrVectorTy() && NewTy->isIntOrIntVectorTy()) {
Benjamin Kramer90901a32013-09-21 20:36:04 +00001744 // Expand <2 x i8*> to i128 --> <2 x i8*> to <2 x i64> to i128
1745 if (OldTy->isVectorTy() && !NewTy->isVectorTy())
1746 return IRB.CreateBitCast(IRB.CreatePtrToInt(V, DL.getIntPtrType(OldTy)),
1747 NewTy);
1748
1749 // Expand i8* to <2 x i32> --> i8* to i64 to <2 x i32>
1750 if (!OldTy->isVectorTy() && NewTy->isVectorTy())
1751 return IRB.CreateBitCast(IRB.CreatePtrToInt(V, DL.getIntPtrType(OldTy)),
1752 NewTy);
1753
1754 return IRB.CreatePtrToInt(V, NewTy);
1755 }
1756
1757 return IRB.CreateBitCast(V, NewTy);
Chandler Carruthaa6afbb2012-10-15 08:40:22 +00001758}
1759
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001760/// Test whether the given slice use can be promoted to a vector.
Chandler Carruthf0546402013-07-18 07:15:00 +00001761///
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00001762/// This function is called to test each entry in a partition which is slated
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001763/// for a single slice.
Chandler Carruth29a18a42015-09-12 09:09:14 +00001764static bool isVectorPromotionViableForSlice(Partition &P, const Slice &S,
1765 VectorType *Ty,
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001766 uint64_t ElementSize,
1767 const DataLayout &DL) {
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001768 // First validate the slice offsets.
Chandler Carruthf0546402013-07-18 07:15:00 +00001769 uint64_t BeginOffset =
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001770 std::max(S.beginOffset(), P.beginOffset()) - P.beginOffset();
Chandler Carruthf0546402013-07-18 07:15:00 +00001771 uint64_t BeginIndex = BeginOffset / ElementSize;
1772 if (BeginIndex * ElementSize != BeginOffset ||
1773 BeginIndex >= Ty->getNumElements())
1774 return false;
1775 uint64_t EndOffset =
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001776 std::min(S.endOffset(), P.endOffset()) - P.beginOffset();
Chandler Carruthf0546402013-07-18 07:15:00 +00001777 uint64_t EndIndex = EndOffset / ElementSize;
1778 if (EndIndex * ElementSize != EndOffset || EndIndex > Ty->getNumElements())
1779 return false;
1780
1781 assert(EndIndex > BeginIndex && "Empty vector!");
1782 uint64_t NumElements = EndIndex - BeginIndex;
Chandler Carruthc659df92014-10-16 20:24:07 +00001783 Type *SliceTy = (NumElements == 1)
1784 ? Ty->getElementType()
1785 : VectorType::get(Ty->getElementType(), NumElements);
Chandler Carruthf0546402013-07-18 07:15:00 +00001786
1787 Type *SplitIntTy =
1788 Type::getIntNTy(Ty->getContext(), NumElements * ElementSize * 8);
1789
Chandler Carruthc659df92014-10-16 20:24:07 +00001790 Use *U = S.getUse();
Chandler Carruthf0546402013-07-18 07:15:00 +00001791
1792 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U->getUser())) {
1793 if (MI->isVolatile())
1794 return false;
Chandler Carruthc659df92014-10-16 20:24:07 +00001795 if (!S.isSplittable())
Chandler Carruthf0546402013-07-18 07:15:00 +00001796 return false; // Skip any unsplittable intrinsics.
Owen Anderson6c19ab12014-08-07 21:07:35 +00001797 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(U->getUser())) {
1798 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
1799 II->getIntrinsicID() != Intrinsic::lifetime_end)
1800 return false;
Chandler Carruthf0546402013-07-18 07:15:00 +00001801 } else if (U->get()->getType()->getPointerElementType()->isStructTy()) {
1802 // Disable vector promotion when there are loads or stores of an FCA.
1803 return false;
1804 } else if (LoadInst *LI = dyn_cast<LoadInst>(U->getUser())) {
1805 if (LI->isVolatile())
1806 return false;
1807 Type *LTy = LI->getType();
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001808 if (P.beginOffset() > S.beginOffset() || P.endOffset() < S.endOffset()) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001809 assert(LTy->isIntegerTy());
1810 LTy = SplitIntTy;
1811 }
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001812 if (!canConvertValue(DL, SliceTy, LTy))
Chandler Carruthf0546402013-07-18 07:15:00 +00001813 return false;
1814 } else if (StoreInst *SI = dyn_cast<StoreInst>(U->getUser())) {
1815 if (SI->isVolatile())
1816 return false;
1817 Type *STy = SI->getValueOperand()->getType();
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001818 if (P.beginOffset() > S.beginOffset() || P.endOffset() < S.endOffset()) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001819 assert(STy->isIntegerTy());
1820 STy = SplitIntTy;
1821 }
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001822 if (!canConvertValue(DL, STy, SliceTy))
Chandler Carruthf0546402013-07-18 07:15:00 +00001823 return false;
Chandler Carruth1ed848d2013-07-19 10:57:32 +00001824 } else {
1825 return false;
Chandler Carruthf0546402013-07-18 07:15:00 +00001826 }
1827
1828 return true;
1829}
1830
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001831/// Test whether the given alloca partitioning and range of slices can be
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001832/// promoted to a vector.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001833///
1834/// This is a quick test to check whether we can rewrite a particular alloca
1835/// partition (and its newly formed alloca) into a vector alloca with only
1836/// whole-vector loads and stores such that it could be promoted to a vector
1837/// SSA value. We only can ensure this for a limited set of operations, and we
1838/// don't want to do the rewrites unless we are confident that the result will
1839/// be promotable, so we have an early test here.
Chandler Carruth29a18a42015-09-12 09:09:14 +00001840static VectorType *isVectorPromotionViable(Partition &P, const DataLayout &DL) {
Chandler Carruth2dc96822014-10-18 00:44:02 +00001841 // Collect the candidate types for vector-based promotion. Also track whether
1842 // we have different element types.
1843 SmallVector<VectorType *, 4> CandidateTys;
1844 Type *CommonEltTy = nullptr;
1845 bool HaveCommonEltTy = true;
1846 auto CheckCandidateType = [&](Type *Ty) {
1847 if (auto *VTy = dyn_cast<VectorType>(Ty)) {
1848 CandidateTys.push_back(VTy);
1849 if (!CommonEltTy)
1850 CommonEltTy = VTy->getElementType();
1851 else if (CommonEltTy != VTy->getElementType())
1852 HaveCommonEltTy = false;
1853 }
1854 };
Chandler Carruth2dc96822014-10-18 00:44:02 +00001855 // Consider any loads or stores that are the exact size of the slice.
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001856 for (const Slice &S : P)
1857 if (S.beginOffset() == P.beginOffset() &&
1858 S.endOffset() == P.endOffset()) {
Chandler Carruth2dc96822014-10-18 00:44:02 +00001859 if (auto *LI = dyn_cast<LoadInst>(S.getUse()->getUser()))
1860 CheckCandidateType(LI->getType());
1861 else if (auto *SI = dyn_cast<StoreInst>(S.getUse()->getUser()))
1862 CheckCandidateType(SI->getValueOperand()->getType());
1863 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001864
Chandler Carruth2dc96822014-10-18 00:44:02 +00001865 // If we didn't find a vector type, nothing to do here.
1866 if (CandidateTys.empty())
1867 return nullptr;
Chandler Carruthf0546402013-07-18 07:15:00 +00001868
Chandler Carruth2dc96822014-10-18 00:44:02 +00001869 // Remove non-integer vector types if we had multiple common element types.
1870 // FIXME: It'd be nice to replace them with integer vector types, but we can't
1871 // do that until all the backends are known to produce good code for all
1872 // integer vector types.
1873 if (!HaveCommonEltTy) {
Eugene Zelenko75075ef2017-09-01 21:37:29 +00001874 CandidateTys.erase(
1875 llvm::remove_if(CandidateTys,
1876 [](VectorType *VTy) {
1877 return !VTy->getElementType()->isIntegerTy();
1878 }),
1879 CandidateTys.end());
Chandler Carruth2dc96822014-10-18 00:44:02 +00001880
1881 // If there were no integer vector types, give up.
1882 if (CandidateTys.empty())
1883 return nullptr;
1884
1885 // Rank the remaining candidate vector types. This is easy because we know
1886 // they're all integer vectors. We sort by ascending number of elements.
1887 auto RankVectorTypes = [&DL](VectorType *RHSTy, VectorType *LHSTy) {
David L. Jones41cecba2017-01-13 21:02:41 +00001888 (void)DL;
Chandler Carruth2dc96822014-10-18 00:44:02 +00001889 assert(DL.getTypeSizeInBits(RHSTy) == DL.getTypeSizeInBits(LHSTy) &&
1890 "Cannot have vector types of different sizes!");
1891 assert(RHSTy->getElementType()->isIntegerTy() &&
1892 "All non-integer types eliminated!");
1893 assert(LHSTy->getElementType()->isIntegerTy() &&
1894 "All non-integer types eliminated!");
1895 return RHSTy->getNumElements() < LHSTy->getNumElements();
1896 };
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +00001897 llvm::sort(CandidateTys.begin(), CandidateTys.end(), RankVectorTypes);
Chandler Carruth2dc96822014-10-18 00:44:02 +00001898 CandidateTys.erase(
1899 std::unique(CandidateTys.begin(), CandidateTys.end(), RankVectorTypes),
1900 CandidateTys.end());
1901 } else {
1902// The only way to have the same element type in every vector type is to
1903// have the same vector type. Check that and remove all but one.
1904#ifndef NDEBUG
1905 for (VectorType *VTy : CandidateTys) {
1906 assert(VTy->getElementType() == CommonEltTy &&
1907 "Unaccounted for element type!");
1908 assert(VTy == CandidateTys[0] &&
1909 "Different vector types with the same element type!");
1910 }
1911#endif
1912 CandidateTys.resize(1);
1913 }
1914
1915 // Try each vector type, and return the one which works.
1916 auto CheckVectorTypeForPromotion = [&](VectorType *VTy) {
1917 uint64_t ElementSize = DL.getTypeSizeInBits(VTy->getElementType());
1918
1919 // While the definition of LLVM vectors is bitpacked, we don't support sizes
1920 // that aren't byte sized.
1921 if (ElementSize % 8)
1922 return false;
1923 assert((DL.getTypeSizeInBits(VTy) % 8) == 0 &&
1924 "vector size not a multiple of element size?");
1925 ElementSize /= 8;
1926
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001927 for (const Slice &S : P)
1928 if (!isVectorPromotionViableForSlice(P, S, VTy, ElementSize, DL))
Chandler Carruth2dc96822014-10-18 00:44:02 +00001929 return false;
1930
Chandler Carruthffb7ce52014-12-24 01:48:09 +00001931 for (const Slice *S : P.splitSliceTails())
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001932 if (!isVectorPromotionViableForSlice(P, *S, VTy, ElementSize, DL))
Chandler Carruth2dc96822014-10-18 00:44:02 +00001933 return false;
1934
1935 return true;
1936 };
1937 for (VectorType *VTy : CandidateTys)
1938 if (CheckVectorTypeForPromotion(VTy))
1939 return VTy;
1940
1941 return nullptr;
Chandler Carruthf0546402013-07-18 07:15:00 +00001942}
1943
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001944/// Test whether a slice of an alloca is valid for integer widening.
Chandler Carruthf0546402013-07-18 07:15:00 +00001945///
1946/// This implements the necessary checking for the \c isIntegerWideningViable
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001947/// test below on a single slice of the alloca.
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001948static bool isIntegerWideningViableForSlice(const Slice &S,
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001949 uint64_t AllocBeginOffset,
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001950 Type *AllocaTy,
1951 const DataLayout &DL,
Chandler Carruth9f21fe12013-07-19 09:13:58 +00001952 bool &WholeAllocaOp) {
Chandler Carruth5031bbe2014-12-24 01:05:14 +00001953 uint64_t Size = DL.getTypeStoreSize(AllocaTy);
1954
Chandler Carruthc659df92014-10-16 20:24:07 +00001955 uint64_t RelBegin = S.beginOffset() - AllocBeginOffset;
1956 uint64_t RelEnd = S.endOffset() - AllocBeginOffset;
Chandler Carruthf0546402013-07-18 07:15:00 +00001957
1958 // We can't reasonably handle cases where the load or store extends past
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00001959 // the end of the alloca's type and into its padding.
Chandler Carruthf0546402013-07-18 07:15:00 +00001960 if (RelEnd > Size)
1961 return false;
1962
Chandler Carruthc659df92014-10-16 20:24:07 +00001963 Use *U = S.getUse();
Chandler Carruthf0546402013-07-18 07:15:00 +00001964
1965 if (LoadInst *LI = dyn_cast<LoadInst>(U->getUser())) {
1966 if (LI->isVolatile())
1967 return false;
Chandler Carruthccffdaf2015-07-22 03:32:42 +00001968 // We can't handle loads that extend past the allocated memory.
1969 if (DL.getTypeStoreSize(LI->getType()) > Size)
1970 return false;
Hiroshi Inouef5c0e6c2018-05-17 06:32:17 +00001971 // So far, AllocaSliceRewriter does not support widening split slice tails
1972 // in rewriteIntegerLoad.
1973 if (S.beginOffset() < AllocBeginOffset)
1974 return false;
Chandler Carruth2dc96822014-10-18 00:44:02 +00001975 // Note that we don't count vector loads or stores as whole-alloca
1976 // operations which enable integer widening because we would prefer to use
1977 // vector widening instead.
1978 if (!isa<VectorType>(LI->getType()) && RelBegin == 0 && RelEnd == Size)
Chandler Carruthf0546402013-07-18 07:15:00 +00001979 WholeAllocaOp = true;
1980 if (IntegerType *ITy = dyn_cast<IntegerType>(LI->getType())) {
Chandler Carruth90a735d2013-07-19 07:21:28 +00001981 if (ITy->getBitWidth() < DL.getTypeStoreSizeInBits(ITy))
Chandler Carruthe3899f22013-07-15 17:36:21 +00001982 return false;
Chandler Carruthf0546402013-07-18 07:15:00 +00001983 } else if (RelBegin != 0 || RelEnd != Size ||
Chandler Carruth90a735d2013-07-19 07:21:28 +00001984 !canConvertValue(DL, AllocaTy, LI->getType())) {
Chandler Carruthf0546402013-07-18 07:15:00 +00001985 // Non-integer loads need to be convertible from the alloca type so that
1986 // they are promotable.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00001987 return false;
1988 }
Chandler Carruthf0546402013-07-18 07:15:00 +00001989 } else if (StoreInst *SI = dyn_cast<StoreInst>(U->getUser())) {
1990 Type *ValueTy = SI->getValueOperand()->getType();
1991 if (SI->isVolatile())
1992 return false;
Chandler Carruthccffdaf2015-07-22 03:32:42 +00001993 // We can't handle stores that extend past the allocated memory.
1994 if (DL.getTypeStoreSize(ValueTy) > Size)
1995 return false;
Hiroshi Inouef5c0e6c2018-05-17 06:32:17 +00001996 // So far, AllocaSliceRewriter does not support widening split slice tails
1997 // in rewriteIntegerStore.
1998 if (S.beginOffset() < AllocBeginOffset)
1999 return false;
Chandler Carruth2dc96822014-10-18 00:44:02 +00002000 // Note that we don't count vector loads or stores as whole-alloca
2001 // operations which enable integer widening because we would prefer to use
2002 // vector widening instead.
2003 if (!isa<VectorType>(ValueTy) && RelBegin == 0 && RelEnd == Size)
Chandler Carruthf0546402013-07-18 07:15:00 +00002004 WholeAllocaOp = true;
2005 if (IntegerType *ITy = dyn_cast<IntegerType>(ValueTy)) {
Chandler Carruth90a735d2013-07-19 07:21:28 +00002006 if (ITy->getBitWidth() < DL.getTypeStoreSizeInBits(ITy))
Chandler Carruthf0546402013-07-18 07:15:00 +00002007 return false;
2008 } else if (RelBegin != 0 || RelEnd != Size ||
Chandler Carruth90a735d2013-07-19 07:21:28 +00002009 !canConvertValue(DL, ValueTy, AllocaTy)) {
Chandler Carruthf0546402013-07-18 07:15:00 +00002010 // Non-integer stores need to be convertible to the alloca type so that
2011 // they are promotable.
2012 return false;
2013 }
2014 } else if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(U->getUser())) {
2015 if (MI->isVolatile() || !isa<Constant>(MI->getLength()))
2016 return false;
Chandler Carruthc659df92014-10-16 20:24:07 +00002017 if (!S.isSplittable())
Chandler Carruthf0546402013-07-18 07:15:00 +00002018 return false; // Skip any unsplittable intrinsics.
2019 } else if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(U->getUser())) {
2020 if (II->getIntrinsicID() != Intrinsic::lifetime_start &&
2021 II->getIntrinsicID() != Intrinsic::lifetime_end)
2022 return false;
2023 } else {
2024 return false;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002025 }
Chandler Carruthf0546402013-07-18 07:15:00 +00002026
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002027 return true;
2028}
2029
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00002030/// Test whether the given alloca partition's integer operations can be
Chandler Carruth435c4e02012-10-15 08:40:30 +00002031/// widened to promotable ones.
Chandler Carruth92924fd2012-09-24 00:34:20 +00002032///
Chandler Carruth435c4e02012-10-15 08:40:30 +00002033/// This is a quick test to check whether we can rewrite the integer loads and
2034/// stores to a particular alloca into wider loads and stores and be able to
2035/// promote the resulting alloca.
Chandler Carruth29a18a42015-09-12 09:09:14 +00002036static bool isIntegerWideningViable(Partition &P, Type *AllocaTy,
Chandler Carruth5031bbe2014-12-24 01:05:14 +00002037 const DataLayout &DL) {
Chandler Carruth90a735d2013-07-19 07:21:28 +00002038 uint64_t SizeInBits = DL.getTypeSizeInBits(AllocaTy);
Benjamin Kramer47534c72012-12-01 11:53:32 +00002039 // Don't create integer types larger than the maximum bitwidth.
2040 if (SizeInBits > IntegerType::MAX_INT_BITS)
2041 return false;
Chandler Carruth435c4e02012-10-15 08:40:30 +00002042
2043 // Don't try to handle allocas with bit-padding.
Chandler Carruth90a735d2013-07-19 07:21:28 +00002044 if (SizeInBits != DL.getTypeStoreSizeInBits(AllocaTy))
Chandler Carruth92924fd2012-09-24 00:34:20 +00002045 return false;
2046
Chandler Carruth58d05562012-10-25 04:37:07 +00002047 // We need to ensure that an integer type with the appropriate bitwidth can
2048 // be converted to the alloca type, whatever that is. We don't want to force
2049 // the alloca itself to have an integer type if there is a more suitable one.
2050 Type *IntTy = Type::getIntNTy(AllocaTy->getContext(), SizeInBits);
Chandler Carruth90a735d2013-07-19 07:21:28 +00002051 if (!canConvertValue(DL, AllocaTy, IntTy) ||
2052 !canConvertValue(DL, IntTy, AllocaTy))
Chandler Carruth58d05562012-10-25 04:37:07 +00002053 return false;
2054
Chandler Carruthf0546402013-07-18 07:15:00 +00002055 // While examining uses, we ensure that the alloca has a covering load or
2056 // store. We don't want to widen the integer operations only to fail to
2057 // promote due to some other unsplittable entry (which we may make splittable
Chandler Carruth5955c9e2013-07-19 07:12:23 +00002058 // later). However, if there are only splittable uses, go ahead and assume
2059 // that we cover the alloca.
Chandler Carruth5031bbe2014-12-24 01:05:14 +00002060 // FIXME: We shouldn't consider split slices that happen to start in the
2061 // partition here...
Chandler Carruthc659df92014-10-16 20:24:07 +00002062 bool WholeAllocaOp =
Chandler Carruth5031bbe2014-12-24 01:05:14 +00002063 P.begin() != P.end() ? false : DL.isLegalInteger(SizeInBits);
Chandler Carruth43c8b462012-10-04 10:39:28 +00002064
Chandler Carruth5031bbe2014-12-24 01:05:14 +00002065 for (const Slice &S : P)
2066 if (!isIntegerWideningViableForSlice(S, P.beginOffset(), AllocaTy, DL,
2067 WholeAllocaOp))
Chandler Carruth43c8b462012-10-04 10:39:28 +00002068 return false;
2069
Chandler Carruthffb7ce52014-12-24 01:48:09 +00002070 for (const Slice *S : P.splitSliceTails())
Chandler Carruth5031bbe2014-12-24 01:05:14 +00002071 if (!isIntegerWideningViableForSlice(*S, P.beginOffset(), AllocaTy, DL,
2072 WholeAllocaOp))
Chandler Carruth92924fd2012-09-24 00:34:20 +00002073 return false;
Chandler Carruthf0546402013-07-18 07:15:00 +00002074
Chandler Carruth92924fd2012-09-24 00:34:20 +00002075 return WholeAllocaOp;
2076}
2077
Chandler Carruthd177f862013-03-20 07:30:36 +00002078static Value *extractInteger(const DataLayout &DL, IRBuilderTy &IRB, Value *V,
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002079 IntegerType *Ty, uint64_t Offset,
2080 const Twine &Name) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002081 LLVM_DEBUG(dbgs() << " start: " << *V << "\n");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002082 IntegerType *IntTy = cast<IntegerType>(V->getType());
2083 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
2084 "Element extends past full value");
Chandler Carruth113dc642014-12-20 02:39:18 +00002085 uint64_t ShAmt = 8 * Offset;
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002086 if (DL.isBigEndian())
Chandler Carruth113dc642014-12-20 02:39:18 +00002087 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
Chandler Carruth18db7952012-11-20 01:12:50 +00002088 if (ShAmt) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002089 V = IRB.CreateLShr(V, ShAmt, Name + ".shift");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002090 LLVM_DEBUG(dbgs() << " shifted: " << *V << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002091 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002092 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
2093 "Cannot extract to a larger integer!");
Chandler Carruth18db7952012-11-20 01:12:50 +00002094 if (Ty != IntTy) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002095 V = IRB.CreateTrunc(V, Ty, Name + ".trunc");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002096 LLVM_DEBUG(dbgs() << " trunced: " << *V << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002097 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002098 return V;
2099}
2100
Chandler Carruthd177f862013-03-20 07:30:36 +00002101static Value *insertInteger(const DataLayout &DL, IRBuilderTy &IRB, Value *Old,
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002102 Value *V, uint64_t Offset, const Twine &Name) {
2103 IntegerType *IntTy = cast<IntegerType>(Old->getType());
2104 IntegerType *Ty = cast<IntegerType>(V->getType());
2105 assert(Ty->getBitWidth() <= IntTy->getBitWidth() &&
2106 "Cannot insert a larger integer!");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002107 LLVM_DEBUG(dbgs() << " start: " << *V << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002108 if (Ty != IntTy) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002109 V = IRB.CreateZExt(V, IntTy, Name + ".ext");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002110 LLVM_DEBUG(dbgs() << " extended: " << *V << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002111 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002112 assert(DL.getTypeStoreSize(Ty) + Offset <= DL.getTypeStoreSize(IntTy) &&
2113 "Element store outside of alloca store");
Chandler Carruth113dc642014-12-20 02:39:18 +00002114 uint64_t ShAmt = 8 * Offset;
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002115 if (DL.isBigEndian())
Chandler Carruth113dc642014-12-20 02:39:18 +00002116 ShAmt = 8 * (DL.getTypeStoreSize(IntTy) - DL.getTypeStoreSize(Ty) - Offset);
Chandler Carruth18db7952012-11-20 01:12:50 +00002117 if (ShAmt) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002118 V = IRB.CreateShl(V, ShAmt, Name + ".shift");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002119 LLVM_DEBUG(dbgs() << " shifted: " << *V << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002120 }
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002121
2122 if (ShAmt || Ty->getBitWidth() < IntTy->getBitWidth()) {
2123 APInt Mask = ~Ty->getMask().zext(IntTy->getBitWidth()).shl(ShAmt);
2124 Old = IRB.CreateAnd(Old, Mask, Name + ".mask");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002125 LLVM_DEBUG(dbgs() << " masked: " << *Old << "\n");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002126 V = IRB.CreateOr(Old, V, Name + ".insert");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002127 LLVM_DEBUG(dbgs() << " inserted: " << *V << "\n");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002128 }
2129 return V;
2130}
2131
Chandler Carruth113dc642014-12-20 02:39:18 +00002132static Value *extractVector(IRBuilderTy &IRB, Value *V, unsigned BeginIndex,
2133 unsigned EndIndex, const Twine &Name) {
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002134 VectorType *VecTy = cast<VectorType>(V->getType());
2135 unsigned NumElements = EndIndex - BeginIndex;
2136 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2137
2138 if (NumElements == VecTy->getNumElements())
2139 return V;
2140
2141 if (NumElements == 1) {
2142 V = IRB.CreateExtractElement(V, IRB.getInt32(BeginIndex),
2143 Name + ".extract");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002144 LLVM_DEBUG(dbgs() << " extract: " << *V << "\n");
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002145 return V;
2146 }
2147
Chandler Carruth113dc642014-12-20 02:39:18 +00002148 SmallVector<Constant *, 8> Mask;
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002149 Mask.reserve(NumElements);
2150 for (unsigned i = BeginIndex; i != EndIndex; ++i)
2151 Mask.push_back(IRB.getInt32(i));
2152 V = IRB.CreateShuffleVector(V, UndefValue::get(V->getType()),
Chandler Carruth113dc642014-12-20 02:39:18 +00002153 ConstantVector::get(Mask), Name + ".extract");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002154 LLVM_DEBUG(dbgs() << " shuffle: " << *V << "\n");
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002155 return V;
2156}
2157
Chandler Carruthd177f862013-03-20 07:30:36 +00002158static Value *insertVector(IRBuilderTy &IRB, Value *Old, Value *V,
Chandler Carruthce4562b2012-12-17 13:41:21 +00002159 unsigned BeginIndex, const Twine &Name) {
2160 VectorType *VecTy = cast<VectorType>(Old->getType());
2161 assert(VecTy && "Can only insert a vector into a vector");
2162
2163 VectorType *Ty = dyn_cast<VectorType>(V->getType());
2164 if (!Ty) {
2165 // Single element to insert.
2166 V = IRB.CreateInsertElement(Old, V, IRB.getInt32(BeginIndex),
2167 Name + ".insert");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002168 LLVM_DEBUG(dbgs() << " insert: " << *V << "\n");
Chandler Carruthce4562b2012-12-17 13:41:21 +00002169 return V;
2170 }
2171
2172 assert(Ty->getNumElements() <= VecTy->getNumElements() &&
2173 "Too many elements!");
2174 if (Ty->getNumElements() == VecTy->getNumElements()) {
2175 assert(V->getType() == VecTy && "Vector type mismatch");
2176 return V;
2177 }
2178 unsigned EndIndex = BeginIndex + Ty->getNumElements();
2179
2180 // When inserting a smaller vector into the larger to store, we first
2181 // use a shuffle vector to widen it with undef elements, and then
2182 // a second shuffle vector to select between the loaded vector and the
2183 // incoming vector.
Chandler Carruth113dc642014-12-20 02:39:18 +00002184 SmallVector<Constant *, 8> Mask;
Chandler Carruthce4562b2012-12-17 13:41:21 +00002185 Mask.reserve(VecTy->getNumElements());
2186 for (unsigned i = 0; i != VecTy->getNumElements(); ++i)
2187 if (i >= BeginIndex && i < EndIndex)
2188 Mask.push_back(IRB.getInt32(i - BeginIndex));
2189 else
2190 Mask.push_back(UndefValue::get(IRB.getInt32Ty()));
2191 V = IRB.CreateShuffleVector(V, UndefValue::get(V->getType()),
Chandler Carruth113dc642014-12-20 02:39:18 +00002192 ConstantVector::get(Mask), Name + ".expand");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002193 LLVM_DEBUG(dbgs() << " shuffle: " << *V << "\n");
Chandler Carruthce4562b2012-12-17 13:41:21 +00002194
2195 Mask.clear();
2196 for (unsigned i = 0; i != VecTy->getNumElements(); ++i)
Nadav Rotem1e211912013-05-01 19:53:30 +00002197 Mask.push_back(IRB.getInt1(i >= BeginIndex && i < EndIndex));
2198
2199 V = IRB.CreateSelect(ConstantVector::get(Mask), V, Old, Name + "blend");
2200
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002201 LLVM_DEBUG(dbgs() << " blend: " << *V << "\n");
Chandler Carruthce4562b2012-12-17 13:41:21 +00002202 return V;
2203}
2204
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00002205/// Visitor to rewrite instructions using p particular slice of an alloca
Chandler Carruth9f21fe12013-07-19 09:13:58 +00002206/// to use a new alloca.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002207///
2208/// Also implements the rewriting to vector-based accesses when the partition
2209/// passes the isVectorPromotionViable predicate. Most of the rewriting logic
2210/// lives here.
Chandler Carruth29a18a42015-09-12 09:09:14 +00002211class llvm::sroa::AllocaSliceRewriter
2212 : public InstVisitor<AllocaSliceRewriter, bool> {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002213 // Befriend the base class so it can delegate to private visit methods.
Eugene Zelenko75075ef2017-09-01 21:37:29 +00002214 friend class InstVisitor<AllocaSliceRewriter, bool>;
2215
2216 using Base = InstVisitor<AllocaSliceRewriter, bool>;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002217
Chandler Carruth90a735d2013-07-19 07:21:28 +00002218 const DataLayout &DL;
Chandler Carruth83934062014-10-16 21:11:55 +00002219 AllocaSlices &AS;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002220 SROA &Pass;
2221 AllocaInst &OldAI, &NewAI;
2222 const uint64_t NewAllocaBeginOffset, NewAllocaEndOffset;
Chandler Carruth891fec02012-10-13 02:41:05 +00002223 Type *NewAllocaTy;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002224
Chandler Carruth2dc96822014-10-18 00:44:02 +00002225 // This is a convenience and flag variable that will be null unless the new
2226 // alloca's integer operations should be widened to this integer type due to
2227 // passing isIntegerWideningViable above. If it is non-null, the desired
2228 // integer type will be stored here for easy access during rewriting.
2229 IntegerType *IntTy;
2230
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002231 // If we are rewriting an alloca partition which can be written as pure
2232 // vector operations, we stash extra information here. When VecTy is
Jakub Staszak086f6cd2013-02-19 22:02:21 +00002233 // non-null, we have some strict guarantees about the rewritten alloca:
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002234 // - The new alloca is exactly the size of the vector type here.
2235 // - The accesses all either map to the entire vector or to a single
2236 // element.
2237 // - The set of accessing instructions is only one of those handled above
2238 // in isVectorPromotionViable. Generally these are the same access kinds
2239 // which are promotable via mem2reg.
2240 VectorType *VecTy;
2241 Type *ElementTy;
2242 uint64_t ElementSize;
2243
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002244 // The original offset of the slice currently being rewritten relative to
2245 // the original alloca.
Eugene Zelenko75075ef2017-09-01 21:37:29 +00002246 uint64_t BeginOffset = 0;
2247 uint64_t EndOffset = 0;
2248
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002249 // The new offsets of the slice currently being rewritten relative to the
2250 // original alloca.
2251 uint64_t NewBeginOffset, NewEndOffset;
2252
2253 uint64_t SliceSize;
Eugene Zelenko75075ef2017-09-01 21:37:29 +00002254 bool IsSplittable = false;
2255 bool IsSplit = false;
2256 Use *OldUse = nullptr;
2257 Instruction *OldPtr = nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002258
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00002259 // Track post-rewrite users which are PHI nodes and Selects.
Davide Italiano81a26da2017-04-27 23:09:01 +00002260 SmallSetVector<PHINode *, 8> &PHIUsers;
2261 SmallSetVector<SelectInst *, 8> &SelectUsers;
Chandler Carruth83ea1952013-07-24 09:47:28 +00002262
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002263 // Utility IR builder, whose name prefix is setup for each visited use, and
2264 // the insertion point is set to point to the user.
2265 IRBuilderTy IRB;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002266
2267public:
Chandler Carruth83934062014-10-16 21:11:55 +00002268 AllocaSliceRewriter(const DataLayout &DL, AllocaSlices &AS, SROA &Pass,
Chandler Carruth9f21fe12013-07-19 09:13:58 +00002269 AllocaInst &OldAI, AllocaInst &NewAI,
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002270 uint64_t NewAllocaBeginOffset,
Chandler Carruth2dc96822014-10-18 00:44:02 +00002271 uint64_t NewAllocaEndOffset, bool IsIntegerPromotable,
2272 VectorType *PromotableVecTy,
Davide Italiano81a26da2017-04-27 23:09:01 +00002273 SmallSetVector<PHINode *, 8> &PHIUsers,
2274 SmallSetVector<SelectInst *, 8> &SelectUsers)
Chandler Carruth83934062014-10-16 21:11:55 +00002275 : DL(DL), AS(AS), Pass(Pass), OldAI(OldAI), NewAI(NewAI),
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002276 NewAllocaBeginOffset(NewAllocaBeginOffset),
2277 NewAllocaEndOffset(NewAllocaEndOffset),
Chandler Carruthf0546402013-07-18 07:15:00 +00002278 NewAllocaTy(NewAI.getAllocatedType()),
Chandler Carruthf0546402013-07-18 07:15:00 +00002279 IntTy(IsIntegerPromotable
2280 ? Type::getIntNTy(
2281 NewAI.getContext(),
Chandler Carruth90a735d2013-07-19 07:21:28 +00002282 DL.getTypeSizeInBits(NewAI.getAllocatedType()))
Craig Topperf40110f2014-04-25 05:29:35 +00002283 : nullptr),
Chandler Carruth2dc96822014-10-18 00:44:02 +00002284 VecTy(PromotableVecTy),
2285 ElementTy(VecTy ? VecTy->getElementType() : nullptr),
2286 ElementSize(VecTy ? DL.getTypeSizeInBits(ElementTy) / 8 : 0),
Eugene Zelenko75075ef2017-09-01 21:37:29 +00002287 PHIUsers(PHIUsers), SelectUsers(SelectUsers),
Chandler Carruth83ea1952013-07-24 09:47:28 +00002288 IRB(NewAI.getContext(), ConstantFolder()) {
Chandler Carruthf0546402013-07-18 07:15:00 +00002289 if (VecTy) {
Chandler Carruth90a735d2013-07-19 07:21:28 +00002290 assert((DL.getTypeSizeInBits(ElementTy) % 8) == 0 &&
Chandler Carruthf0546402013-07-18 07:15:00 +00002291 "Only multiple-of-8 sized vector elements are viable");
2292 ++NumVectorized;
2293 }
Chandler Carruth2dc96822014-10-18 00:44:02 +00002294 assert((!IntTy && !VecTy) || (IntTy && !VecTy) || (!IntTy && VecTy));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002295 }
2296
Chandler Carruth9f21fe12013-07-19 09:13:58 +00002297 bool visit(AllocaSlices::const_iterator I) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002298 bool CanSROA = true;
Chandler Carruthf0546402013-07-18 07:15:00 +00002299 BeginOffset = I->beginOffset();
2300 EndOffset = I->endOffset();
2301 IsSplittable = I->isSplittable();
2302 IsSplit =
2303 BeginOffset < NewAllocaBeginOffset || EndOffset > NewAllocaEndOffset;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002304 LLVM_DEBUG(dbgs() << " rewriting " << (IsSplit ? "split " : ""));
2305 LLVM_DEBUG(AS.printSlice(dbgs(), I, ""));
2306 LLVM_DEBUG(dbgs() << "\n");
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002307
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002308 // Compute the intersecting offset range.
2309 assert(BeginOffset < NewAllocaEndOffset);
2310 assert(EndOffset > NewAllocaBeginOffset);
2311 NewBeginOffset = std::max(BeginOffset, NewAllocaBeginOffset);
2312 NewEndOffset = std::min(EndOffset, NewAllocaEndOffset);
2313
2314 SliceSize = NewEndOffset - NewBeginOffset;
2315
Chandler Carruthf0546402013-07-18 07:15:00 +00002316 OldUse = I->getUse();
2317 OldPtr = cast<Instruction>(OldUse->get());
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002318
Chandler Carruthf0546402013-07-18 07:15:00 +00002319 Instruction *OldUserI = cast<Instruction>(OldUse->getUser());
2320 IRB.SetInsertPoint(OldUserI);
2321 IRB.SetCurrentDebugLocation(OldUserI->getDebugLoc());
2322 IRB.SetNamePrefix(Twine(NewAI.getName()) + "." + Twine(BeginOffset) + ".");
2323
2324 CanSROA &= visit(cast<Instruction>(OldUse->getUser()));
2325 if (VecTy || IntTy)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002326 assert(CanSROA);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002327 return CanSROA;
2328 }
2329
2330private:
Chandler Carruthf0546402013-07-18 07:15:00 +00002331 // Make sure the other visit overloads are visible.
2332 using Base::visit;
2333
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002334 // Every instruction which can end up as a user must have a rewrite rule.
2335 bool visitInstruction(Instruction &I) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002336 LLVM_DEBUG(dbgs() << " !!!! Cannot rewrite: " << I << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002337 llvm_unreachable("No rewrite rule for this instruction!");
2338 }
2339
Chandler Carruth47954c82014-02-26 05:12:43 +00002340 Value *getNewAllocaSlicePtr(IRBuilderTy &IRB, Type *PointerTy) {
2341 // Note that the offset computation can use BeginOffset or NewBeginOffset
2342 // interchangeably for unsplit slices.
2343 assert(IsSplit || BeginOffset == NewBeginOffset);
2344 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset;
2345
Chandler Carruthcb93cd22014-02-25 11:19:56 +00002346#ifndef NDEBUG
2347 StringRef OldName = OldPtr->getName();
2348 // Skip through the last '.sroa.' component of the name.
2349 size_t LastSROAPrefix = OldName.rfind(".sroa.");
2350 if (LastSROAPrefix != StringRef::npos) {
2351 OldName = OldName.substr(LastSROAPrefix + strlen(".sroa."));
2352 // Look for an SROA slice index.
2353 size_t IndexEnd = OldName.find_first_not_of("0123456789");
2354 if (IndexEnd != StringRef::npos && OldName[IndexEnd] == '.') {
2355 // Strip the index and look for the offset.
2356 OldName = OldName.substr(IndexEnd + 1);
2357 size_t OffsetEnd = OldName.find_first_not_of("0123456789");
2358 if (OffsetEnd != StringRef::npos && OldName[OffsetEnd] == '.')
2359 // Strip the offset.
2360 OldName = OldName.substr(OffsetEnd + 1);
2361 }
2362 }
2363 // Strip any SROA suffixes as well.
2364 OldName = OldName.substr(0, OldName.find(".sroa_"));
2365#endif
Chandler Carruth47954c82014-02-26 05:12:43 +00002366
2367 return getAdjustedPtr(IRB, DL, &NewAI,
Matt Arsenault3c1fc762017-04-10 22:27:50 +00002368 APInt(DL.getPointerTypeSizeInBits(PointerTy), Offset),
2369 PointerTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00002370#ifndef NDEBUG
2371 Twine(OldName) + "."
2372#else
2373 Twine()
2374#endif
2375 );
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002376 }
2377
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00002378 /// Compute suitable alignment to access this slice of the *new*
Chandler Carruth113dc642014-12-20 02:39:18 +00002379 /// alloca.
Chandler Carruth2659e502014-02-26 05:02:19 +00002380 ///
2381 /// You can optionally pass a type to this routine and if that type's ABI
2382 /// alignment is itself suitable, this will return zero.
Craig Topperf40110f2014-04-25 05:29:35 +00002383 unsigned getSliceAlign(Type *Ty = nullptr) {
Chandler Carruth176ca712012-10-01 12:16:54 +00002384 unsigned NewAIAlign = NewAI.getAlignment();
2385 if (!NewAIAlign)
Chandler Carruth90a735d2013-07-19 07:21:28 +00002386 NewAIAlign = DL.getABITypeAlignment(NewAI.getAllocatedType());
Chandler Carruth113dc642014-12-20 02:39:18 +00002387 unsigned Align =
2388 MinAlign(NewAIAlign, NewBeginOffset - NewAllocaBeginOffset);
Chandler Carruth2659e502014-02-26 05:02:19 +00002389 return (Ty && Align == DL.getABITypeAlignment(Ty)) ? 0 : Align;
Chandler Carruth4b2b38d2012-10-03 08:14:02 +00002390 }
2391
Chandler Carruth845b73c2012-11-21 08:16:30 +00002392 unsigned getIndex(uint64_t Offset) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002393 assert(VecTy && "Can only call getIndex when rewriting a vector");
2394 uint64_t RelOffset = Offset - NewAllocaBeginOffset;
2395 assert(RelOffset / ElementSize < UINT32_MAX && "Index out of bounds");
2396 uint32_t Index = RelOffset / ElementSize;
2397 assert(Index * ElementSize == RelOffset);
Chandler Carruth845b73c2012-11-21 08:16:30 +00002398 return Index;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002399 }
2400
2401 void deleteIfTriviallyDead(Value *V) {
2402 Instruction *I = cast<Instruction>(V);
2403 if (isInstructionTriviallyDead(I))
Chandler Carruth18db7952012-11-20 01:12:50 +00002404 Pass.DeadInsts.insert(I);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002405 }
2406
Chandler Carruthea27cf02014-02-26 04:25:04 +00002407 Value *rewriteVectorizedLoadInst() {
Chandler Carruthf0546402013-07-18 07:15:00 +00002408 unsigned BeginIndex = getIndex(NewBeginOffset);
2409 unsigned EndIndex = getIndex(NewEndOffset);
Chandler Carruth769445e2012-12-17 12:50:21 +00002410 assert(EndIndex > BeginIndex && "Empty vector!");
Chandler Carruthb6bc8742012-12-17 13:07:30 +00002411
Chandler Carruth113dc642014-12-20 02:39:18 +00002412 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "load");
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002413 return extractVector(IRB, V, BeginIndex, EndIndex, "vec");
Chandler Carruth769445e2012-12-17 12:50:21 +00002414 }
2415
Chandler Carruthea27cf02014-02-26 04:25:04 +00002416 Value *rewriteIntegerLoad(LoadInst &LI) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002417 assert(IntTy && "We cannot insert an integer to the alloca");
Chandler Carruth92924fd2012-09-24 00:34:20 +00002418 assert(!LI.isVolatile());
Chandler Carruth113dc642014-12-20 02:39:18 +00002419 Value *V = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "load");
Chandler Carruth90a735d2013-07-19 07:21:28 +00002420 V = convertValue(DL, IRB, V, IntTy);
Chandler Carruthf0546402013-07-18 07:15:00 +00002421 assert(NewBeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2422 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset;
Chandler Carruth4b682f62015-08-28 09:03:52 +00002423 if (Offset > 0 || NewEndOffset < NewAllocaEndOffset) {
2424 IntegerType *ExtractTy = Type::getIntNTy(LI.getContext(), SliceSize * 8);
2425 V = extractInteger(DL, IRB, V, ExtractTy, Offset, "extract");
2426 }
2427 // It is possible that the extracted type is not the load type. This
2428 // happens if there is a load past the end of the alloca, and as
2429 // a consequence the slice is narrower but still a candidate for integer
2430 // lowering. To handle this case, we just zero extend the extracted
2431 // integer.
2432 assert(cast<IntegerType>(LI.getType())->getBitWidth() >= SliceSize * 8 &&
2433 "Can only handle an extract for an overly wide load");
2434 if (cast<IntegerType>(LI.getType())->getBitWidth() > SliceSize * 8)
2435 V = IRB.CreateZExt(V, LI.getType());
Chandler Carruth18db7952012-11-20 01:12:50 +00002436 return V;
Chandler Carruth92924fd2012-09-24 00:34:20 +00002437 }
2438
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002439 bool visitLoadInst(LoadInst &LI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002440 LLVM_DEBUG(dbgs() << " original: " << LI << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002441 Value *OldOp = LI.getOperand(0);
2442 assert(OldOp == OldPtr);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002443
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002444 AAMDNodes AATags;
2445 LI.getAAMetadata(AATags);
2446
Matt Arsenault3c1fc762017-04-10 22:27:50 +00002447 unsigned AS = LI.getPointerAddressSpace();
2448
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002449 Type *TargetTy = IsSplit ? Type::getIntNTy(LI.getContext(), SliceSize * 8)
Chandler Carrutha1c54bb2013-03-14 11:32:24 +00002450 : LI.getType();
Chandler Carruthccffdaf2015-07-22 03:32:42 +00002451 const bool IsLoadPastEnd = DL.getTypeStoreSize(TargetTy) > SliceSize;
Chandler Carruth18db7952012-11-20 01:12:50 +00002452 bool IsPtrAdjusted = false;
2453 Value *V;
2454 if (VecTy) {
Chandler Carruthea27cf02014-02-26 04:25:04 +00002455 V = rewriteVectorizedLoadInst();
Chandler Carruth18db7952012-11-20 01:12:50 +00002456 } else if (IntTy && LI.getType()->isIntegerTy()) {
Chandler Carruthea27cf02014-02-26 04:25:04 +00002457 V = rewriteIntegerLoad(LI);
Chandler Carruthf0546402013-07-18 07:15:00 +00002458 } else if (NewBeginOffset == NewAllocaBeginOffset &&
Chandler Carruthccffdaf2015-07-22 03:32:42 +00002459 NewEndOffset == NewAllocaEndOffset &&
2460 (canConvertValue(DL, NewAllocaTy, TargetTy) ||
2461 (IsLoadPastEnd && NewAllocaTy->isIntegerTy() &&
2462 TargetTy->isIntegerTy()))) {
David Majnemer62690b12015-07-14 06:19:58 +00002463 LoadInst *NewLI = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(),
2464 LI.isVolatile(), LI.getName());
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002465 if (AATags)
2466 NewLI->setAAMetadata(AATags);
David Majnemer62690b12015-07-14 06:19:58 +00002467 if (LI.isVolatile())
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00002468 NewLI->setAtomic(LI.getOrdering(), LI.getSyncScopeID());
Luqman Aden3f807c92017-03-22 19:16:39 +00002469
Chandler Carruth3f81d802017-06-27 08:32:03 +00002470 // Any !nonnull metadata or !range metadata on the old load is also valid
2471 // on the new load. This is even true in some cases even when the loads
2472 // are different types, for example by mapping !nonnull metadata to
2473 // !range metadata by modeling the null pointer constant converted to the
2474 // integer type.
Rafael Espindolac06f55e2017-11-28 01:25:38 +00002475 // FIXME: Add support for range metadata here. Currently the utilities
2476 // for this don't propagate range metadata in trivial cases from one
2477 // integer load to another, don't handle non-addrspace-0 null pointers
2478 // correctly, and don't have any support for mapping ranges as the
2479 // integer type becomes winder or narrower.
Chandler Carruth3f81d802017-06-27 08:32:03 +00002480 if (MDNode *N = LI.getMetadata(LLVMContext::MD_nonnull))
2481 copyNonnullMetadata(LI, N, *NewLI);
Rafael Espindolac06f55e2017-11-28 01:25:38 +00002482
2483 // Try to preserve nonnull metadata
David Majnemer62690b12015-07-14 06:19:58 +00002484 V = NewLI;
Chandler Carruthccffdaf2015-07-22 03:32:42 +00002485
2486 // If this is an integer load past the end of the slice (which means the
2487 // bytes outside the slice are undef or this load is dead) just forcibly
2488 // fix the integer size with correct handling of endianness.
2489 if (auto *AITy = dyn_cast<IntegerType>(NewAllocaTy))
2490 if (auto *TITy = dyn_cast<IntegerType>(TargetTy))
2491 if (AITy->getBitWidth() < TITy->getBitWidth()) {
2492 V = IRB.CreateZExt(V, TITy, "load.ext");
2493 if (DL.isBigEndian())
2494 V = IRB.CreateShl(V, TITy->getBitWidth() - AITy->getBitWidth(),
2495 "endian_shift");
2496 }
Chandler Carruth18db7952012-11-20 01:12:50 +00002497 } else {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00002498 Type *LTy = TargetTy->getPointerTo(AS);
David Majnemer62690b12015-07-14 06:19:58 +00002499 LoadInst *NewLI = IRB.CreateAlignedLoad(getNewAllocaSlicePtr(IRB, LTy),
2500 getSliceAlign(TargetTy),
2501 LI.isVolatile(), LI.getName());
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002502 if (AATags)
2503 NewLI->setAAMetadata(AATags);
David Majnemer62690b12015-07-14 06:19:58 +00002504 if (LI.isVolatile())
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00002505 NewLI->setAtomic(LI.getOrdering(), LI.getSyncScopeID());
David Majnemer62690b12015-07-14 06:19:58 +00002506
2507 V = NewLI;
Chandler Carruth18db7952012-11-20 01:12:50 +00002508 IsPtrAdjusted = true;
2509 }
Chandler Carruth90a735d2013-07-19 07:21:28 +00002510 V = convertValue(DL, IRB, V, TargetTy);
Chandler Carruth18db7952012-11-20 01:12:50 +00002511
Chandler Carrutha1c54bb2013-03-14 11:32:24 +00002512 if (IsSplit) {
Chandler Carruth58d05562012-10-25 04:37:07 +00002513 assert(!LI.isVolatile());
2514 assert(LI.getType()->isIntegerTy() &&
2515 "Only integer type loads and stores are split");
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002516 assert(SliceSize < DL.getTypeStoreSize(LI.getType()) &&
Chandler Carrutha1c54bb2013-03-14 11:32:24 +00002517 "Split load isn't smaller than original load");
Chandler Carruth58d05562012-10-25 04:37:07 +00002518 assert(LI.getType()->getIntegerBitWidth() ==
Chandler Carruth113dc642014-12-20 02:39:18 +00002519 DL.getTypeStoreSizeInBits(LI.getType()) &&
Chandler Carruth58d05562012-10-25 04:37:07 +00002520 "Non-byte-multiple bit width");
Chandler Carruth58d05562012-10-25 04:37:07 +00002521 // Move the insertion point just past the load so that we can refer to it.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00002522 IRB.SetInsertPoint(&*std::next(BasicBlock::iterator(&LI)));
Chandler Carruth58d05562012-10-25 04:37:07 +00002523 // Create a placeholder value with the same type as LI to use as the
2524 // basis for the new value. This allows us to replace the uses of LI with
2525 // the computed value, and then replace the placeholder with LI, leaving
2526 // LI only used for this computation.
Chandler Carruth113dc642014-12-20 02:39:18 +00002527 Value *Placeholder =
Matt Arsenault3c1fc762017-04-10 22:27:50 +00002528 new LoadInst(UndefValue::get(LI.getType()->getPointerTo(AS)));
Chandler Carruth24ac8302015-01-02 03:55:54 +00002529 V = insertInteger(DL, IRB, Placeholder, V, NewBeginOffset - BeginOffset,
2530 "insert");
Chandler Carruth58d05562012-10-25 04:37:07 +00002531 LI.replaceAllUsesWith(V);
2532 Placeholder->replaceAllUsesWith(&LI);
Reid Kleckner96ab8722017-05-18 17:24:10 +00002533 Placeholder->deleteValue();
Chandler Carruth18db7952012-11-20 01:12:50 +00002534 } else {
2535 LI.replaceAllUsesWith(V);
Chandler Carruth58d05562012-10-25 04:37:07 +00002536 }
2537
Chandler Carruth18db7952012-11-20 01:12:50 +00002538 Pass.DeadInsts.insert(&LI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002539 deleteIfTriviallyDead(OldOp);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002540 LLVM_DEBUG(dbgs() << " to: " << *V << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002541 return !LI.isVolatile() && !IsPtrAdjusted;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002542 }
2543
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002544 bool rewriteVectorizedStoreInst(Value *V, StoreInst &SI, Value *OldOp,
2545 AAMDNodes AATags) {
Bob Wilsonacfc01d2013-06-25 19:09:50 +00002546 if (V->getType() != VecTy) {
Chandler Carruthf0546402013-07-18 07:15:00 +00002547 unsigned BeginIndex = getIndex(NewBeginOffset);
2548 unsigned EndIndex = getIndex(NewEndOffset);
Bob Wilsonacfc01d2013-06-25 19:09:50 +00002549 assert(EndIndex > BeginIndex && "Empty vector!");
2550 unsigned NumElements = EndIndex - BeginIndex;
2551 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
Chandler Carruth113dc642014-12-20 02:39:18 +00002552 Type *SliceTy = (NumElements == 1)
2553 ? ElementTy
2554 : VectorType::get(ElementTy, NumElements);
Chandler Carruth9f21fe12013-07-19 09:13:58 +00002555 if (V->getType() != SliceTy)
2556 V = convertValue(DL, IRB, V, SliceTy);
Chandler Carruth845b73c2012-11-21 08:16:30 +00002557
Bob Wilsonacfc01d2013-06-25 19:09:50 +00002558 // Mix in the existing elements.
Chandler Carruth113dc642014-12-20 02:39:18 +00002559 Value *Old = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "load");
Bob Wilsonacfc01d2013-06-25 19:09:50 +00002560 V = insertVector(IRB, Old, V, BeginIndex, "vec");
2561 }
Chandler Carruth871ba722012-09-26 10:27:46 +00002562 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002563 if (AATags)
2564 Store->setAAMetadata(AATags);
Chandler Carruth18db7952012-11-20 01:12:50 +00002565 Pass.DeadInsts.insert(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002566
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002567 LLVM_DEBUG(dbgs() << " to: " << *Store << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002568 return true;
2569 }
2570
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002571 bool rewriteIntegerStore(Value *V, StoreInst &SI, AAMDNodes AATags) {
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002572 assert(IntTy && "We cannot extract an integer from the alloca");
Chandler Carruth92924fd2012-09-24 00:34:20 +00002573 assert(!SI.isVolatile());
Chandler Carruth90a735d2013-07-19 07:21:28 +00002574 if (DL.getTypeSizeInBits(V->getType()) != IntTy->getBitWidth()) {
Chandler Carruth113dc642014-12-20 02:39:18 +00002575 Value *Old =
2576 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "oldload");
Chandler Carruth90a735d2013-07-19 07:21:28 +00002577 Old = convertValue(DL, IRB, Old, IntTy);
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002578 assert(BeginOffset >= NewAllocaBeginOffset && "Out of bounds offset");
2579 uint64_t Offset = BeginOffset - NewAllocaBeginOffset;
Chandler Carruth113dc642014-12-20 02:39:18 +00002580 V = insertInteger(DL, IRB, Old, SI.getValueOperand(), Offset, "insert");
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002581 }
Chandler Carruth90a735d2013-07-19 07:21:28 +00002582 V = convertValue(DL, IRB, V, NewAllocaTy);
Chandler Carruth59ff93af2012-10-18 09:56:08 +00002583 StoreInst *Store = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment());
Dorit Nuzmand1247a62016-09-22 07:56:23 +00002584 Store->copyMetadata(SI, LLVMContext::MD_mem_parallel_loop_access);
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002585 if (AATags)
2586 Store->setAAMetadata(AATags);
Chandler Carruth18db7952012-11-20 01:12:50 +00002587 Pass.DeadInsts.insert(&SI);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002588 LLVM_DEBUG(dbgs() << " to: " << *Store << "\n");
Chandler Carruth92924fd2012-09-24 00:34:20 +00002589 return true;
2590 }
2591
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002592 bool visitStoreInst(StoreInst &SI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002593 LLVM_DEBUG(dbgs() << " original: " << SI << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002594 Value *OldOp = SI.getOperand(1);
2595 assert(OldOp == OldPtr);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002596
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002597 AAMDNodes AATags;
2598 SI.getAAMetadata(AATags);
2599
Chandler Carruth18db7952012-11-20 01:12:50 +00002600 Value *V = SI.getValueOperand();
Chandler Carruth891fec02012-10-13 02:41:05 +00002601
Chandler Carruthac8317f2012-10-04 12:33:50 +00002602 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2603 // alloca that should be re-examined after promoting this alloca.
Chandler Carruth18db7952012-11-20 01:12:50 +00002604 if (V->getType()->isPointerTy())
2605 if (AllocaInst *AI = dyn_cast<AllocaInst>(V->stripInBoundsOffsets()))
Chandler Carruthac8317f2012-10-04 12:33:50 +00002606 Pass.PostPromotionWorklist.insert(AI);
2607
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002608 if (SliceSize < DL.getTypeStoreSize(V->getType())) {
Chandler Carruth18db7952012-11-20 01:12:50 +00002609 assert(!SI.isVolatile());
2610 assert(V->getType()->isIntegerTy() &&
2611 "Only integer type loads and stores are split");
2612 assert(V->getType()->getIntegerBitWidth() ==
Chandler Carruth113dc642014-12-20 02:39:18 +00002613 DL.getTypeStoreSizeInBits(V->getType()) &&
Chandler Carruth18db7952012-11-20 01:12:50 +00002614 "Non-byte-multiple bit width");
Chandler Carruthc46b6eb2014-02-26 04:20:00 +00002615 IntegerType *NarrowTy = Type::getIntNTy(SI.getContext(), SliceSize * 8);
Chandler Carruth24ac8302015-01-02 03:55:54 +00002616 V = extractInteger(DL, IRB, V, NarrowTy, NewBeginOffset - BeginOffset,
2617 "extract");
Chandler Carruth891fec02012-10-13 02:41:05 +00002618 }
2619
Chandler Carruth18db7952012-11-20 01:12:50 +00002620 if (VecTy)
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002621 return rewriteVectorizedStoreInst(V, SI, OldOp, AATags);
Chandler Carruth18db7952012-11-20 01:12:50 +00002622 if (IntTy && V->getType()->isIntegerTy())
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002623 return rewriteIntegerStore(V, SI, AATags);
Chandler Carruth435c4e02012-10-15 08:40:30 +00002624
Chandler Carruthccffdaf2015-07-22 03:32:42 +00002625 const bool IsStorePastEnd = DL.getTypeStoreSize(V->getType()) > SliceSize;
Chandler Carruth18db7952012-11-20 01:12:50 +00002626 StoreInst *NewSI;
Chandler Carruthf0546402013-07-18 07:15:00 +00002627 if (NewBeginOffset == NewAllocaBeginOffset &&
2628 NewEndOffset == NewAllocaEndOffset &&
Chandler Carruthccffdaf2015-07-22 03:32:42 +00002629 (canConvertValue(DL, V->getType(), NewAllocaTy) ||
2630 (IsStorePastEnd && NewAllocaTy->isIntegerTy() &&
2631 V->getType()->isIntegerTy()))) {
2632 // If this is an integer store past the end of slice (and thus the bytes
2633 // past that point are irrelevant or this is unreachable), truncate the
2634 // value prior to storing.
2635 if (auto *VITy = dyn_cast<IntegerType>(V->getType()))
2636 if (auto *AITy = dyn_cast<IntegerType>(NewAllocaTy))
2637 if (VITy->getBitWidth() > AITy->getBitWidth()) {
2638 if (DL.isBigEndian())
2639 V = IRB.CreateLShr(V, VITy->getBitWidth() - AITy->getBitWidth(),
2640 "endian_shift");
2641 V = IRB.CreateTrunc(V, AITy, "load.trunc");
2642 }
2643
Chandler Carruth90a735d2013-07-19 07:21:28 +00002644 V = convertValue(DL, IRB, V, NewAllocaTy);
Chandler Carruth18db7952012-11-20 01:12:50 +00002645 NewSI = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
2646 SI.isVolatile());
2647 } else {
Matt Arsenault3c1fc762017-04-10 22:27:50 +00002648 unsigned AS = SI.getPointerAddressSpace();
2649 Value *NewPtr = getNewAllocaSlicePtr(IRB, V->getType()->getPointerTo(AS));
Chandler Carruth2659e502014-02-26 05:02:19 +00002650 NewSI = IRB.CreateAlignedStore(V, NewPtr, getSliceAlign(V->getType()),
2651 SI.isVolatile());
Chandler Carruth18db7952012-11-20 01:12:50 +00002652 }
Dorit Nuzmand1247a62016-09-22 07:56:23 +00002653 NewSI->copyMetadata(SI, LLVMContext::MD_mem_parallel_loop_access);
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002654 if (AATags)
2655 NewSI->setAAMetadata(AATags);
David Majnemer62690b12015-07-14 06:19:58 +00002656 if (SI.isVolatile())
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +00002657 NewSI->setAtomic(SI.getOrdering(), SI.getSyncScopeID());
Chandler Carruth18db7952012-11-20 01:12:50 +00002658 Pass.DeadInsts.insert(&SI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002659 deleteIfTriviallyDead(OldOp);
Chandler Carruth18db7952012-11-20 01:12:50 +00002660
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002661 LLVM_DEBUG(dbgs() << " to: " << *NewSI << "\n");
Chandler Carruth18db7952012-11-20 01:12:50 +00002662 return NewSI->getPointerOperand() == &NewAI && !SI.isVolatile();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002663 }
2664
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00002665 /// Compute an integer value from splatting an i8 across the given
Chandler Carruth514f34f2012-12-17 04:07:30 +00002666 /// number of bytes.
2667 ///
2668 /// Note that this routine assumes an i8 is a byte. If that isn't true, don't
2669 /// call this routine.
Jakub Staszak086f6cd2013-02-19 22:02:21 +00002670 /// FIXME: Heed the advice above.
Chandler Carruth514f34f2012-12-17 04:07:30 +00002671 ///
2672 /// \param V The i8 value to splat.
2673 /// \param Size The number of bytes in the output (assuming i8 is one byte)
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002674 Value *getIntegerSplat(Value *V, unsigned Size) {
Chandler Carruth514f34f2012-12-17 04:07:30 +00002675 assert(Size > 0 && "Expected a positive number of bytes.");
2676 IntegerType *VTy = cast<IntegerType>(V->getType());
2677 assert(VTy->getBitWidth() == 8 && "Expected an i8 value for the byte");
2678 if (Size == 1)
2679 return V;
2680
Chandler Carruth113dc642014-12-20 02:39:18 +00002681 Type *SplatIntTy = Type::getIntNTy(VTy->getContext(), Size * 8);
2682 V = IRB.CreateMul(
2683 IRB.CreateZExt(V, SplatIntTy, "zext"),
2684 ConstantExpr::getUDiv(
2685 Constant::getAllOnesValue(SplatIntTy),
2686 ConstantExpr::getZExt(Constant::getAllOnesValue(V->getType()),
2687 SplatIntTy)),
2688 "isplat");
Chandler Carruth514f34f2012-12-17 04:07:30 +00002689 return V;
2690 }
2691
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00002692 /// Compute a vector splat for a given element value.
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002693 Value *getVectorSplat(Value *V, unsigned NumElements) {
2694 V = IRB.CreateVectorSplat(NumElements, V, "vsplat");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002695 LLVM_DEBUG(dbgs() << " splat: " << *V << "\n");
Chandler Carruthccca5042012-12-17 04:07:37 +00002696 return V;
2697 }
2698
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002699 bool visitMemSetInst(MemSetInst &II) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002700 LLVM_DEBUG(dbgs() << " original: " << II << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002701 assert(II.getRawDest() == OldPtr);
2702
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002703 AAMDNodes AATags;
2704 II.getAAMetadata(AATags);
2705
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002706 // If the memset has a variable size, it cannot be split, just adjust the
2707 // pointer to the new alloca.
2708 if (!isa<Constant>(II.getLength())) {
Chandler Carruthf0546402013-07-18 07:15:00 +00002709 assert(!IsSplit);
Chandler Carruth735d5be2014-02-26 04:45:24 +00002710 assert(NewBeginOffset == BeginOffset);
Chandler Carruth47954c82014-02-26 05:12:43 +00002711 II.setDest(getNewAllocaSlicePtr(IRB, OldPtr->getType()));
Daniel Neilson41e781d2018-03-13 14:25:33 +00002712 II.setDestAlignment(getSliceAlign());
Chandler Carruth208124f2012-09-26 10:59:22 +00002713
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002714 deleteIfTriviallyDead(OldPtr);
2715 return false;
2716 }
2717
2718 // Record this instruction for deletion.
Chandler Carruth18db7952012-11-20 01:12:50 +00002719 Pass.DeadInsts.insert(&II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002720
2721 Type *AllocaTy = NewAI.getAllocatedType();
2722 Type *ScalarTy = AllocaTy->getScalarType();
2723
2724 // If this doesn't map cleanly onto the alloca type, and that type isn't
2725 // a single value type, just emit a memset.
Chandler Carruth9d966a22012-10-15 10:24:40 +00002726 if (!VecTy && !IntTy &&
Chandler Carruth113dc642014-12-20 02:39:18 +00002727 (BeginOffset > NewAllocaBeginOffset || EndOffset < NewAllocaEndOffset ||
Reid Klecknerc36f48f2014-08-22 00:09:56 +00002728 SliceSize != DL.getTypeStoreSize(AllocaTy) ||
Chandler Carruth9d966a22012-10-15 10:24:40 +00002729 !AllocaTy->isSingleValueType() ||
Chandler Carruth90a735d2013-07-19 07:21:28 +00002730 !DL.isLegalInteger(DL.getTypeSizeInBits(ScalarTy)) ||
Chandler Carruth113dc642014-12-20 02:39:18 +00002731 DL.getTypeSizeInBits(ScalarTy) % 8 != 0)) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002732 Type *SizeTy = II.getLength()->getType();
Chandler Carruthf0546402013-07-18 07:15:00 +00002733 Constant *Size = ConstantInt::get(SizeTy, NewEndOffset - NewBeginOffset);
2734 CallInst *New = IRB.CreateMemSet(
Chandler Carruth47954c82014-02-26 05:12:43 +00002735 getNewAllocaSlicePtr(IRB, OldPtr->getType()), II.getValue(), Size,
2736 getSliceAlign(), II.isVolatile());
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002737 if (AATags)
2738 New->setAAMetadata(AATags);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002739 LLVM_DEBUG(dbgs() << " to: " << *New << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002740 return false;
2741 }
2742
2743 // If we can represent this as a simple value, we have to build the actual
2744 // value to store, which requires expanding the byte present in memset to
2745 // a sensible representation for the alloca type. This is essentially
Chandler Carruthccca5042012-12-17 04:07:37 +00002746 // splatting the byte to a sufficiently wide integer, splatting it across
2747 // any desired vector width, and bitcasting to the final type.
Benjamin Kramerc003a452013-01-01 16:13:35 +00002748 Value *V;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002749
Chandler Carruthccca5042012-12-17 04:07:37 +00002750 if (VecTy) {
2751 // If this is a memset of a vectorized alloca, insert it.
2752 assert(ElementTy == ScalarTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002753
Chandler Carruthf0546402013-07-18 07:15:00 +00002754 unsigned BeginIndex = getIndex(NewBeginOffset);
2755 unsigned EndIndex = getIndex(NewEndOffset);
Chandler Carruthccca5042012-12-17 04:07:37 +00002756 assert(EndIndex > BeginIndex && "Empty vector!");
2757 unsigned NumElements = EndIndex - BeginIndex;
2758 assert(NumElements <= VecTy->getNumElements() && "Too many elements!");
2759
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002760 Value *Splat =
Chandler Carruth90a735d2013-07-19 07:21:28 +00002761 getIntegerSplat(II.getValue(), DL.getTypeSizeInBits(ElementTy) / 8);
2762 Splat = convertValue(DL, IRB, Splat, ElementTy);
Chandler Carruthcacda252012-12-17 14:03:01 +00002763 if (NumElements > 1)
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002764 Splat = getVectorSplat(Splat, NumElements);
Chandler Carruthccca5042012-12-17 04:07:37 +00002765
Chandler Carruth113dc642014-12-20 02:39:18 +00002766 Value *Old =
2767 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "oldload");
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002768 V = insertVector(IRB, Old, Splat, BeginIndex, "vec");
Chandler Carruthccca5042012-12-17 04:07:37 +00002769 } else if (IntTy) {
2770 // If this is a memset on an alloca where we can widen stores, insert the
2771 // set integer.
Chandler Carruth9d966a22012-10-15 10:24:40 +00002772 assert(!II.isVolatile());
Chandler Carruthccca5042012-12-17 04:07:37 +00002773
Chandler Carruthf0546402013-07-18 07:15:00 +00002774 uint64_t Size = NewEndOffset - NewBeginOffset;
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002775 V = getIntegerSplat(II.getValue(), Size);
Chandler Carruthccca5042012-12-17 04:07:37 +00002776
2777 if (IntTy && (BeginOffset != NewAllocaBeginOffset ||
2778 EndOffset != NewAllocaBeginOffset)) {
Chandler Carruth113dc642014-12-20 02:39:18 +00002779 Value *Old =
2780 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "oldload");
Chandler Carruth90a735d2013-07-19 07:21:28 +00002781 Old = convertValue(DL, IRB, Old, IntTy);
Chandler Carruthf0546402013-07-18 07:15:00 +00002782 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset;
Chandler Carruth90a735d2013-07-19 07:21:28 +00002783 V = insertInteger(DL, IRB, Old, V, Offset, "insert");
Chandler Carruthccca5042012-12-17 04:07:37 +00002784 } else {
2785 assert(V->getType() == IntTy &&
2786 "Wrong type for an alloca wide integer!");
2787 }
Chandler Carruth90a735d2013-07-19 07:21:28 +00002788 V = convertValue(DL, IRB, V, AllocaTy);
Chandler Carruthccca5042012-12-17 04:07:37 +00002789 } else {
2790 // Established these invariants above.
Chandler Carruthf0546402013-07-18 07:15:00 +00002791 assert(NewBeginOffset == NewAllocaBeginOffset);
2792 assert(NewEndOffset == NewAllocaEndOffset);
Chandler Carruthccca5042012-12-17 04:07:37 +00002793
Chandler Carruth90a735d2013-07-19 07:21:28 +00002794 V = getIntegerSplat(II.getValue(), DL.getTypeSizeInBits(ScalarTy) / 8);
Chandler Carruthccca5042012-12-17 04:07:37 +00002795 if (VectorType *AllocaVecTy = dyn_cast<VectorType>(AllocaTy))
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002796 V = getVectorSplat(V, AllocaVecTy->getNumElements());
Chandler Carruth95e1fb82012-12-17 13:51:03 +00002797
Chandler Carruth90a735d2013-07-19 07:21:28 +00002798 V = convertValue(DL, IRB, V, AllocaTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002799 }
2800
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002801 StoreInst *New = IRB.CreateAlignedStore(V, &NewAI, NewAI.getAlignment(),
2802 II.isVolatile());
2803 if (AATags)
2804 New->setAAMetadata(AATags);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002805 LLVM_DEBUG(dbgs() << " to: " << *New << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002806 return !II.isVolatile();
2807 }
2808
2809 bool visitMemTransferInst(MemTransferInst &II) {
2810 // Rewriting of memory transfer instructions can be a bit tricky. We break
2811 // them into two categories: split intrinsics and unsplit intrinsics.
2812
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002813 LLVM_DEBUG(dbgs() << " original: " << II << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002814
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002815 AAMDNodes AATags;
2816 II.getAAMetadata(AATags);
2817
Chandler Carruthbb2a9322014-02-25 03:50:14 +00002818 bool IsDest = &II.getRawDestUse() == OldUse;
Alexey Samsonov26af6f72014-02-25 07:56:00 +00002819 assert((IsDest && II.getRawDest() == OldPtr) ||
Chandler Carruthbb2a9322014-02-25 03:50:14 +00002820 (!IsDest && II.getRawSource() == OldPtr));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002821
Chandler Carruthaa72b932014-02-26 07:29:54 +00002822 unsigned SliceAlign = getSliceAlign();
Chandler Carruth176ca712012-10-01 12:16:54 +00002823
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002824 // For unsplit intrinsics, we simply modify the source and destination
2825 // pointers in place. This isn't just an optimization, it is a matter of
2826 // correctness. With unsplit intrinsics we may be dealing with transfers
2827 // within a single alloca before SROA ran, or with transfers that have
2828 // a variable length. We may also be dealing with memmove instead of
2829 // memcpy, and so simply updating the pointers is the necessary for us to
2830 // update both source and dest of a single call.
Chandler Carruthf0546402013-07-18 07:15:00 +00002831 if (!IsSplittable) {
Chandler Carruth47954c82014-02-26 05:12:43 +00002832 Value *AdjustedPtr = getNewAllocaSlicePtr(IRB, OldPtr->getType());
Daniel Neilson41e781d2018-03-13 14:25:33 +00002833 if (IsDest) {
Chandler Carruth8183a502014-02-25 11:08:02 +00002834 II.setDest(AdjustedPtr);
Daniel Neilson41e781d2018-03-13 14:25:33 +00002835 II.setDestAlignment(SliceAlign);
2836 }
2837 else {
Chandler Carruth8183a502014-02-25 11:08:02 +00002838 II.setSource(AdjustedPtr);
Daniel Neilson41e781d2018-03-13 14:25:33 +00002839 II.setSourceAlignment(SliceAlign);
Chandler Carruth181ed052014-02-26 05:33:36 +00002840 }
Chandler Carruth208124f2012-09-26 10:59:22 +00002841
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002842 LLVM_DEBUG(dbgs() << " to: " << II << "\n");
Chandler Carruth8183a502014-02-25 11:08:02 +00002843 deleteIfTriviallyDead(OldPtr);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002844 return false;
2845 }
2846 // For split transfer intrinsics we have an incredibly useful assurance:
2847 // the source and destination do not reside within the same alloca, and at
2848 // least one of them does not escape. This means that we can replace
2849 // memmove with memcpy, and we don't need to worry about all manner of
2850 // downsides to splitting and transforming the operations.
2851
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002852 // If this doesn't map cleanly onto the alloca type, and that type isn't
2853 // a single value type, just emit a memcpy.
Reid Klecknerc36f48f2014-08-22 00:09:56 +00002854 bool EmitMemCpy =
2855 !VecTy && !IntTy &&
2856 (BeginOffset > NewAllocaBeginOffset || EndOffset < NewAllocaEndOffset ||
2857 SliceSize != DL.getTypeStoreSize(NewAI.getAllocatedType()) ||
2858 !NewAI.getAllocatedType()->isSingleValueType());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002859
2860 // If we're just going to emit a memcpy, the alloca hasn't changed, and the
2861 // size hasn't been shrunk based on analysis of the viable range, this is
2862 // a no-op.
2863 if (EmitMemCpy && &OldAI == &NewAI) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002864 // Ensure the start lines up.
Chandler Carruthf0546402013-07-18 07:15:00 +00002865 assert(NewBeginOffset == BeginOffset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002866
2867 // Rewrite the size as needed.
Chandler Carruthf0546402013-07-18 07:15:00 +00002868 if (NewEndOffset != EndOffset)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002869 II.setLength(ConstantInt::get(II.getLength()->getType(),
Chandler Carruthf0546402013-07-18 07:15:00 +00002870 NewEndOffset - NewBeginOffset));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002871 return false;
2872 }
2873 // Record this instruction for deletion.
Chandler Carruth18db7952012-11-20 01:12:50 +00002874 Pass.DeadInsts.insert(&II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002875
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002876 // Strip all inbounds GEPs and pointer casts to try to dig out any root
2877 // alloca that should be re-examined after rewriting this instruction.
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002878 Value *OtherPtr = IsDest ? II.getRawSource() : II.getRawDest();
Chandler Carruth113dc642014-12-20 02:39:18 +00002879 if (AllocaInst *AI =
2880 dyn_cast<AllocaInst>(OtherPtr->stripInBoundsOffsets())) {
Chandler Carruth1bf38c62014-01-19 12:16:54 +00002881 assert(AI != &OldAI && AI != &NewAI &&
2882 "Splittable transfers cannot reach the same alloca on both ends.");
Chandler Carruth4bd8f662012-09-26 07:41:40 +00002883 Pass.Worklist.insert(AI);
Chandler Carruth1bf38c62014-01-19 12:16:54 +00002884 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002885
Chandler Carruth286d87e2014-02-26 08:25:02 +00002886 Type *OtherPtrTy = OtherPtr->getType();
2887 unsigned OtherAS = OtherPtrTy->getPointerAddressSpace();
2888
Chandler Carruth181ed052014-02-26 05:33:36 +00002889 // Compute the relative offset for the other pointer within the transfer.
Chandler Carruth286d87e2014-02-26 08:25:02 +00002890 unsigned IntPtrWidth = DL.getPointerSizeInBits(OtherAS);
Chandler Carruth181ed052014-02-26 05:33:36 +00002891 APInt OtherOffset(IntPtrWidth, NewBeginOffset - BeginOffset);
Daniel Neilson41e781d2018-03-13 14:25:33 +00002892 unsigned OtherAlign =
2893 IsDest ? II.getSourceAlignment() : II.getDestAlignment();
2894 OtherAlign = MinAlign(OtherAlign ? OtherAlign : 1,
2895 OtherOffset.zextOrTrunc(64).getZExtValue());
Chandler Carruth181ed052014-02-26 05:33:36 +00002896
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002897 if (EmitMemCpy) {
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002898 // Compute the other pointer, folding as much as possible to produce
2899 // a single, simple GEP in most cases.
Chandler Carruth181ed052014-02-26 05:33:36 +00002900 OtherPtr = getAdjustedPtr(IRB, DL, OtherPtr, OtherOffset, OtherPtrTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00002901 OtherPtr->getName() + ".");
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002902
Chandler Carruth47954c82014-02-26 05:12:43 +00002903 Value *OurPtr = getNewAllocaSlicePtr(IRB, OldPtr->getType());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002904 Type *SizeTy = II.getLength()->getType();
Chandler Carruthf0546402013-07-18 07:15:00 +00002905 Constant *Size = ConstantInt::get(SizeTy, NewEndOffset - NewBeginOffset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002906
Daniel Neilson41e781d2018-03-13 14:25:33 +00002907 Value *DestPtr, *SrcPtr;
2908 unsigned DestAlign, SrcAlign;
2909 // Note: IsDest is true iff we're copying into the new alloca slice
2910 if (IsDest) {
2911 DestPtr = OurPtr;
2912 DestAlign = SliceAlign;
2913 SrcPtr = OtherPtr;
2914 SrcAlign = OtherAlign;
2915 } else {
2916 DestPtr = OtherPtr;
2917 DestAlign = OtherAlign;
2918 SrcPtr = OurPtr;
2919 SrcAlign = SliceAlign;
2920 }
2921 CallInst *New = IRB.CreateMemCpy(DestPtr, DestAlign, SrcPtr, SrcAlign,
2922 Size, II.isVolatile());
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002923 if (AATags)
2924 New->setAAMetadata(AATags);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002925 LLVM_DEBUG(dbgs() << " to: " << *New << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002926 return false;
2927 }
2928
Chandler Carruthf0546402013-07-18 07:15:00 +00002929 bool IsWholeAlloca = NewBeginOffset == NewAllocaBeginOffset &&
2930 NewEndOffset == NewAllocaEndOffset;
2931 uint64_t Size = NewEndOffset - NewBeginOffset;
2932 unsigned BeginIndex = VecTy ? getIndex(NewBeginOffset) : 0;
2933 unsigned EndIndex = VecTy ? getIndex(NewEndOffset) : 0;
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002934 unsigned NumElements = EndIndex - BeginIndex;
Chandler Carruth113dc642014-12-20 02:39:18 +00002935 IntegerType *SubIntTy =
2936 IntTy ? Type::getIntNTy(IntTy->getContext(), Size * 8) : nullptr;
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002937
Chandler Carruth286d87e2014-02-26 08:25:02 +00002938 // Reset the other pointer type to match the register type we're going to
2939 // use, but using the address space of the original other pointer.
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002940 if (VecTy && !IsWholeAlloca) {
2941 if (NumElements == 1)
2942 OtherPtrTy = VecTy->getElementType();
2943 else
2944 OtherPtrTy = VectorType::get(VecTy->getElementType(), NumElements);
2945
Chandler Carruth286d87e2014-02-26 08:25:02 +00002946 OtherPtrTy = OtherPtrTy->getPointerTo(OtherAS);
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002947 } else if (IntTy && !IsWholeAlloca) {
Chandler Carruth286d87e2014-02-26 08:25:02 +00002948 OtherPtrTy = SubIntTy->getPointerTo(OtherAS);
2949 } else {
2950 OtherPtrTy = NewAllocaTy->getPointerTo(OtherAS);
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002951 }
2952
Chandler Carruth181ed052014-02-26 05:33:36 +00002953 Value *SrcPtr = getAdjustedPtr(IRB, DL, OtherPtr, OtherOffset, OtherPtrTy,
Chandler Carruthcb93cd22014-02-25 11:19:56 +00002954 OtherPtr->getName() + ".");
Pete Cooper67cf9a72015-11-19 05:56:52 +00002955 unsigned SrcAlign = OtherAlign;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002956 Value *DstPtr = &NewAI;
Chandler Carruthaa72b932014-02-26 07:29:54 +00002957 unsigned DstAlign = SliceAlign;
2958 if (!IsDest) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002959 std::swap(SrcPtr, DstPtr);
Chandler Carruthaa72b932014-02-26 07:29:54 +00002960 std::swap(SrcAlign, DstAlign);
2961 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002962
2963 Value *Src;
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002964 if (VecTy && !IsWholeAlloca && !IsDest) {
Chandler Carruth113dc642014-12-20 02:39:18 +00002965 Src = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "load");
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002966 Src = extractVector(IRB, Src, BeginIndex, EndIndex, "vec");
Chandler Carruth49c8eea2012-10-15 10:24:43 +00002967 } else if (IntTy && !IsWholeAlloca && !IsDest) {
Chandler Carruth113dc642014-12-20 02:39:18 +00002968 Src = IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "load");
Chandler Carruth90a735d2013-07-19 07:21:28 +00002969 Src = convertValue(DL, IRB, Src, IntTy);
Chandler Carruthf0546402013-07-18 07:15:00 +00002970 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset;
Chandler Carruth90a735d2013-07-19 07:21:28 +00002971 Src = extractInteger(DL, IRB, Src, SubIntTy, Offset, "extract");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002972 } else {
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002973 LoadInst *Load = IRB.CreateAlignedLoad(SrcPtr, SrcAlign, II.isVolatile(),
2974 "copyload");
2975 if (AATags)
2976 Load->setAAMetadata(AATags);
2977 Src = Load;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002978 }
2979
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002980 if (VecTy && !IsWholeAlloca && IsDest) {
Chandler Carruth113dc642014-12-20 02:39:18 +00002981 Value *Old =
2982 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "oldload");
Chandler Carruth34f0c7f2013-03-21 09:52:18 +00002983 Src = insertVector(IRB, Old, Src, BeginIndex, "vec");
Chandler Carruth21eb4e92012-12-17 14:51:24 +00002984 } else if (IntTy && !IsWholeAlloca && IsDest) {
Chandler Carruth113dc642014-12-20 02:39:18 +00002985 Value *Old =
2986 IRB.CreateAlignedLoad(&NewAI, NewAI.getAlignment(), "oldload");
Chandler Carruth90a735d2013-07-19 07:21:28 +00002987 Old = convertValue(DL, IRB, Old, IntTy);
Chandler Carruthf0546402013-07-18 07:15:00 +00002988 uint64_t Offset = NewBeginOffset - NewAllocaBeginOffset;
Chandler Carruth90a735d2013-07-19 07:21:28 +00002989 Src = insertInteger(DL, IRB, Old, Src, Offset, "insert");
2990 Src = convertValue(DL, IRB, Src, NewAllocaTy);
Chandler Carruth49c8eea2012-10-15 10:24:43 +00002991 }
2992
Chandler Carruth871ba722012-09-26 10:27:46 +00002993 StoreInst *Store = cast<StoreInst>(
Chandler Carruthaa72b932014-02-26 07:29:54 +00002994 IRB.CreateAlignedStore(Src, DstPtr, DstAlign, II.isVolatile()));
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00002995 if (AATags)
2996 Store->setAAMetadata(AATags);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00002997 LLVM_DEBUG(dbgs() << " to: " << *Store << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00002998 return !II.isVolatile();
2999 }
3000
3001 bool visitIntrinsicInst(IntrinsicInst &II) {
3002 assert(II.getIntrinsicID() == Intrinsic::lifetime_start ||
3003 II.getIntrinsicID() == Intrinsic::lifetime_end);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003004 LLVM_DEBUG(dbgs() << " original: " << II << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003005 assert(II.getArgOperand(1) == OldPtr);
3006
3007 // Record this instruction for deletion.
Chandler Carruth18db7952012-11-20 01:12:50 +00003008 Pass.DeadInsts.insert(&II);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003009
Eli Friedman50967752016-11-28 21:50:34 +00003010 // Lifetime intrinsics are only promotable if they cover the whole alloca.
3011 // Therefore, we drop lifetime intrinsics which don't cover the whole
3012 // alloca.
3013 // (In theory, intrinsics which partially cover an alloca could be
3014 // promoted, but PromoteMemToReg doesn't handle that case.)
3015 // FIXME: Check whether the alloca is promotable before dropping the
3016 // lifetime intrinsics?
3017 if (NewBeginOffset != NewAllocaBeginOffset ||
3018 NewEndOffset != NewAllocaEndOffset)
3019 return true;
3020
Chandler Carruth113dc642014-12-20 02:39:18 +00003021 ConstantInt *Size =
3022 ConstantInt::get(cast<IntegerType>(II.getArgOperand(0)->getType()),
Chandler Carruthf0546402013-07-18 07:15:00 +00003023 NewEndOffset - NewBeginOffset);
Chandler Carruth47954c82014-02-26 05:12:43 +00003024 Value *Ptr = getNewAllocaSlicePtr(IRB, OldPtr->getType());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003025 Value *New;
3026 if (II.getIntrinsicID() == Intrinsic::lifetime_start)
3027 New = IRB.CreateLifetimeStart(Ptr, Size);
3028 else
3029 New = IRB.CreateLifetimeEnd(Ptr, Size);
3030
Edwin Vane82f80d42013-01-29 17:42:24 +00003031 (void)New;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003032 LLVM_DEBUG(dbgs() << " to: " << *New << "\n");
Eli Friedman2a65dd12016-08-08 01:30:53 +00003033
Eli Friedman50967752016-11-28 21:50:34 +00003034 return true;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003035 }
3036
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003037 bool visitPHINode(PHINode &PN) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003038 LLVM_DEBUG(dbgs() << " original: " << PN << "\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00003039 assert(BeginOffset >= NewAllocaBeginOffset && "PHIs are unsplittable");
3040 assert(EndOffset <= NewAllocaEndOffset && "PHIs are unsplittable");
Chandler Carruth82a57542012-10-01 10:54:05 +00003041
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003042 // We would like to compute a new pointer in only one place, but have it be
3043 // as local as possible to the PHI. To do that, we re-use the location of
3044 // the old pointer, which necessarily must be in the right position to
3045 // dominate the PHI.
Chandler Carruth51175532014-02-25 11:12:04 +00003046 IRBuilderTy PtrBuilder(IRB);
David Majnemerd4cffcf2014-09-01 21:20:14 +00003047 if (isa<PHINode>(OldPtr))
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00003048 PtrBuilder.SetInsertPoint(&*OldPtr->getParent()->getFirstInsertionPt());
David Majnemerd4cffcf2014-09-01 21:20:14 +00003049 else
3050 PtrBuilder.SetInsertPoint(OldPtr);
Chandler Carruth51175532014-02-25 11:12:04 +00003051 PtrBuilder.SetCurrentDebugLocation(OldPtr->getDebugLoc());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003052
Chandler Carruth47954c82014-02-26 05:12:43 +00003053 Value *NewPtr = getNewAllocaSlicePtr(PtrBuilder, OldPtr->getType());
Chandler Carruth82a57542012-10-01 10:54:05 +00003054 // Replace the operands which were using the old pointer.
Benjamin Kramer7ddd7052012-10-20 12:04:57 +00003055 std::replace(PN.op_begin(), PN.op_end(), cast<Value>(OldPtr), NewPtr);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003056
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003057 LLVM_DEBUG(dbgs() << " to: " << PN << "\n");
Chandler Carruth82a57542012-10-01 10:54:05 +00003058 deleteIfTriviallyDead(OldPtr);
Chandler Carruthf0546402013-07-18 07:15:00 +00003059
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00003060 // PHIs can't be promoted on their own, but often can be speculated. We
3061 // check the speculation outside of the rewriter so that we see the
3062 // fully-rewritten alloca.
3063 PHIUsers.insert(&PN);
3064 return true;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003065 }
3066
3067 bool visitSelectInst(SelectInst &SI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003068 LLVM_DEBUG(dbgs() << " original: " << SI << "\n");
Benjamin Kramer0212dc22013-04-21 17:48:39 +00003069 assert((SI.getTrueValue() == OldPtr || SI.getFalseValue() == OldPtr) &&
3070 "Pointer isn't an operand!");
Chandler Carruthf0546402013-07-18 07:15:00 +00003071 assert(BeginOffset >= NewAllocaBeginOffset && "Selects are unsplittable");
3072 assert(EndOffset <= NewAllocaEndOffset && "Selects are unsplittable");
Chandler Carruth82a57542012-10-01 10:54:05 +00003073
Chandler Carruth47954c82014-02-26 05:12:43 +00003074 Value *NewPtr = getNewAllocaSlicePtr(IRB, OldPtr->getType());
Benjamin Kramer0212dc22013-04-21 17:48:39 +00003075 // Replace the operands which were using the old pointer.
3076 if (SI.getOperand(1) == OldPtr)
3077 SI.setOperand(1, NewPtr);
3078 if (SI.getOperand(2) == OldPtr)
3079 SI.setOperand(2, NewPtr);
3080
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003081 LLVM_DEBUG(dbgs() << " to: " << SI << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003082 deleteIfTriviallyDead(OldPtr);
Chandler Carruthf0546402013-07-18 07:15:00 +00003083
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00003084 // Selects can't be promoted on their own, but often can be speculated. We
3085 // check the speculation outside of the rewriter so that we see the
3086 // fully-rewritten alloca.
3087 SelectUsers.insert(&SI);
3088 return true;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003089 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003090};
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003091
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003092namespace {
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003093
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003094/// Visitor to rewrite aggregate loads and stores as scalar.
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003095///
3096/// This pass aggressively rewrites all aggregate loads and stores on
3097/// a particular pointer (or any pointer derived from it which we can identify)
3098/// with scalar loads and stores.
3099class AggLoadStoreRewriter : public InstVisitor<AggLoadStoreRewriter, bool> {
3100 // Befriend the base class so it can delegate to private visit methods.
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003101 friend class InstVisitor<AggLoadStoreRewriter, bool>;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003102
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003103 /// Queue of pointer uses to analyze and potentially rewrite.
3104 SmallVector<Use *, 8> Queue;
3105
3106 /// Set to prevent us from cycling with phi nodes and loops.
3107 SmallPtrSet<User *, 8> Visited;
3108
3109 /// The current pointer use being rewritten. This is used to dig up the used
3110 /// value (as opposed to the user).
3111 Use *U;
3112
3113public:
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003114 /// Rewrite loads and stores through a pointer and all pointers derived from
3115 /// it.
3116 bool rewrite(Instruction &I) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003117 LLVM_DEBUG(dbgs() << " Rewriting FCA loads and stores...\n");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003118 enqueueUsers(I);
3119 bool Changed = false;
3120 while (!Queue.empty()) {
3121 U = Queue.pop_back_val();
3122 Changed |= visit(cast<Instruction>(U->getUser()));
3123 }
3124 return Changed;
3125 }
3126
3127private:
3128 /// Enqueue all the users of the given instruction for further processing.
3129 /// This uses a set to de-duplicate users.
3130 void enqueueUsers(Instruction &I) {
Chandler Carruthcdf47882014-03-09 03:16:01 +00003131 for (Use &U : I.uses())
David Blaikie70573dc2014-11-19 07:49:26 +00003132 if (Visited.insert(U.getUser()).second)
Chandler Carruthcdf47882014-03-09 03:16:01 +00003133 Queue.push_back(&U);
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003134 }
3135
3136 // Conservative default is to not rewrite anything.
3137 bool visitInstruction(Instruction &I) { return false; }
3138
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003139 /// Generic recursive split emission class.
Chandler Carruth113dc642014-12-20 02:39:18 +00003140 template <typename Derived> class OpSplitter {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003141 protected:
3142 /// The builder used to form new instructions.
Chandler Carruthd177f862013-03-20 07:30:36 +00003143 IRBuilderTy IRB;
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003144
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003145 /// The indices which to be used with insert- or extractvalue to select the
3146 /// appropriate value within the aggregate.
3147 SmallVector<unsigned, 4> Indices;
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003148
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003149 /// The indices to a GEP instruction which will move Ptr to the correct slot
3150 /// within the aggregate.
3151 SmallVector<Value *, 4> GEPIndices;
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003152
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003153 /// The base pointer of the original op, used as a base for GEPing the
3154 /// split operations.
3155 Value *Ptr;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003156
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003157 /// Initialize the splitter with an insertion point, Ptr and start with a
3158 /// single zero GEP index.
3159 OpSplitter(Instruction *InsertionPoint, Value *Ptr)
Chandler Carruth113dc642014-12-20 02:39:18 +00003160 : IRB(InsertionPoint), GEPIndices(1, IRB.getInt32(0)), Ptr(Ptr) {}
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003161
3162 public:
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003163 /// Generic recursive split emission routine.
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003164 ///
3165 /// This method recursively splits an aggregate op (load or store) into
3166 /// scalar or vector ops. It splits recursively until it hits a single value
3167 /// and emits that single value operation via the template argument.
3168 ///
3169 /// The logic of this routine relies on GEPs and insertvalue and
3170 /// extractvalue all operating with the same fundamental index list, merely
3171 /// formatted differently (GEPs need actual values).
3172 ///
3173 /// \param Ty The type being split recursively into smaller ops.
3174 /// \param Agg The aggregate value being built up or stored, depending on
3175 /// whether this is splitting a load or a store respectively.
3176 void emitSplitOps(Type *Ty, Value *&Agg, const Twine &Name) {
3177 if (Ty->isSingleValueType())
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003178 return static_cast<Derived *>(this)->emitFunc(Ty, Agg, Name);
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003179
3180 if (ArrayType *ATy = dyn_cast<ArrayType>(Ty)) {
3181 unsigned OldSize = Indices.size();
3182 (void)OldSize;
3183 for (unsigned Idx = 0, Size = ATy->getNumElements(); Idx != Size;
3184 ++Idx) {
3185 assert(Indices.size() == OldSize && "Did not return to the old size");
3186 Indices.push_back(Idx);
3187 GEPIndices.push_back(IRB.getInt32(Idx));
3188 emitSplitOps(ATy->getElementType(), Agg, Name + "." + Twine(Idx));
3189 GEPIndices.pop_back();
3190 Indices.pop_back();
3191 }
3192 return;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003193 }
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003194
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003195 if (StructType *STy = dyn_cast<StructType>(Ty)) {
3196 unsigned OldSize = Indices.size();
3197 (void)OldSize;
3198 for (unsigned Idx = 0, Size = STy->getNumElements(); Idx != Size;
3199 ++Idx) {
3200 assert(Indices.size() == OldSize && "Did not return to the old size");
3201 Indices.push_back(Idx);
3202 GEPIndices.push_back(IRB.getInt32(Idx));
3203 emitSplitOps(STy->getElementType(Idx), Agg, Name + "." + Twine(Idx));
3204 GEPIndices.pop_back();
3205 Indices.pop_back();
3206 }
3207 return;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003208 }
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003209
3210 llvm_unreachable("Only arrays and structs are aggregate loadable types");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003211 }
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003212 };
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003213
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003214 struct LoadOpSplitter : public OpSplitter<LoadOpSplitter> {
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00003215 AAMDNodes AATags;
3216
3217 LoadOpSplitter(Instruction *InsertionPoint, Value *Ptr, AAMDNodes AATags)
3218 : OpSplitter<LoadOpSplitter>(InsertionPoint, Ptr), AATags(AATags) {}
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003219
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003220 /// Emit a leaf load of a single value. This is called at the leaves of the
3221 /// recursive emission to actually load values.
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003222 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003223 assert(Ty->isSingleValueType());
3224 // Load the single value and insert it using the indices.
David Blaikieaa41cd52015-04-03 21:33:42 +00003225 Value *GEP =
3226 IRB.CreateInBoundsGEP(nullptr, Ptr, GEPIndices, Name + ".gep");
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00003227 LoadInst *Load = IRB.CreateLoad(GEP, Name + ".load");
3228 if (AATags)
3229 Load->setAAMetadata(AATags);
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003230 Agg = IRB.CreateInsertValue(Agg, Load, Indices, Name + ".insert");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003231 LLVM_DEBUG(dbgs() << " to: " << *Load << "\n");
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003232 }
3233 };
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003234
3235 bool visitLoadInst(LoadInst &LI) {
3236 assert(LI.getPointerOperand() == *U);
3237 if (!LI.isSimple() || LI.getType()->isSingleValueType())
3238 return false;
3239
3240 // We have an aggregate being loaded, split it apart.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003241 LLVM_DEBUG(dbgs() << " original: " << LI << "\n");
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00003242 AAMDNodes AATags;
3243 LI.getAAMetadata(AATags);
3244 LoadOpSplitter Splitter(&LI, *U, AATags);
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003245 Value *V = UndefValue::get(LI.getType());
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003246 Splitter.emitSplitOps(LI.getType(), V, LI.getName() + ".fca");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003247 LI.replaceAllUsesWith(V);
3248 LI.eraseFromParent();
3249 return true;
3250 }
3251
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003252 struct StoreOpSplitter : public OpSplitter<StoreOpSplitter> {
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00003253 StoreOpSplitter(Instruction *InsertionPoint, Value *Ptr, AAMDNodes AATags)
3254 : OpSplitter<StoreOpSplitter>(InsertionPoint, Ptr), AATags(AATags) {}
3255 AAMDNodes AATags;
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003256
3257 /// Emit a leaf store of a single value. This is called at the leaves of the
3258 /// recursive emission to actually produce stores.
Benjamin Kramer73a9e4a2012-09-18 17:06:32 +00003259 void emitFunc(Type *Ty, Value *&Agg, const Twine &Name) {
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003260 assert(Ty->isSingleValueType());
3261 // Extract the single value and store it using the indices.
Patrik Hagglunda83706e2016-06-20 10:19:00 +00003262 //
3263 // The gep and extractvalue values are factored out of the CreateStore
3264 // call to make the output independent of the argument evaluation order.
Patrik Hagglund4e0bd842016-06-20 11:19:58 +00003265 Value *ExtractValue =
3266 IRB.CreateExtractValue(Agg, Indices, Name + ".extract");
3267 Value *InBoundsGEP =
3268 IRB.CreateInBoundsGEP(nullptr, Ptr, GEPIndices, Name + ".gep");
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00003269 StoreInst *Store = IRB.CreateStore(ExtractValue, InBoundsGEP);
3270 if (AATags)
3271 Store->setAAMetadata(AATags);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003272 LLVM_DEBUG(dbgs() << " to: " << *Store << "\n");
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003273 }
3274 };
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003275
3276 bool visitStoreInst(StoreInst &SI) {
3277 if (!SI.isSimple() || SI.getPointerOperand() != *U)
3278 return false;
3279 Value *V = SI.getValueOperand();
3280 if (V->getType()->isSingleValueType())
3281 return false;
3282
3283 // We have an aggregate being stored, split it apart.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003284 LLVM_DEBUG(dbgs() << " original: " << SI << "\n");
Ivan A. Kosarev53270d02018-02-16 10:10:29 +00003285 AAMDNodes AATags;
3286 SI.getAAMetadata(AATags);
3287 StoreOpSplitter Splitter(&SI, *U, AATags);
Benjamin Kramer65f8c882012-09-18 16:20:46 +00003288 Splitter.emitSplitOps(V->getType(), V, V->getName() + ".fca");
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003289 SI.eraseFromParent();
3290 return true;
3291 }
3292
3293 bool visitBitCastInst(BitCastInst &BC) {
3294 enqueueUsers(BC);
3295 return false;
3296 }
3297
3298 bool visitGetElementPtrInst(GetElementPtrInst &GEPI) {
3299 enqueueUsers(GEPI);
3300 return false;
3301 }
3302
3303 bool visitPHINode(PHINode &PN) {
3304 enqueueUsers(PN);
3305 return false;
3306 }
3307
3308 bool visitSelectInst(SelectInst &SI) {
3309 enqueueUsers(SI);
3310 return false;
3311 }
3312};
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003313
3314} // end anonymous namespace
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00003315
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003316/// Strip aggregate type wrapping.
Chandler Carruthba931992012-10-13 10:49:33 +00003317///
3318/// This removes no-op aggregate types wrapping an underlying type. It will
3319/// strip as many layers of types as it can without changing either the type
3320/// size or the allocated size.
3321static Type *stripAggregateTypeWrapping(const DataLayout &DL, Type *Ty) {
3322 if (Ty->isSingleValueType())
3323 return Ty;
3324
3325 uint64_t AllocSize = DL.getTypeAllocSize(Ty);
3326 uint64_t TypeSize = DL.getTypeSizeInBits(Ty);
3327
3328 Type *InnerTy;
3329 if (ArrayType *ArrTy = dyn_cast<ArrayType>(Ty)) {
3330 InnerTy = ArrTy->getElementType();
3331 } else if (StructType *STy = dyn_cast<StructType>(Ty)) {
3332 const StructLayout *SL = DL.getStructLayout(STy);
3333 unsigned Index = SL->getElementContainingOffset(0);
3334 InnerTy = STy->getElementType(Index);
3335 } else {
3336 return Ty;
3337 }
3338
3339 if (AllocSize > DL.getTypeAllocSize(InnerTy) ||
3340 TypeSize > DL.getTypeSizeInBits(InnerTy))
3341 return Ty;
3342
3343 return stripAggregateTypeWrapping(DL, InnerTy);
3344}
3345
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003346/// Try to find a partition of the aggregate type passed in for a given
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003347/// offset and size.
3348///
3349/// This recurses through the aggregate type and tries to compute a subtype
3350/// based on the offset and size. When the offset and size span a sub-section
Chandler Carruth054a40a2012-09-14 11:08:31 +00003351/// of an array, it will even compute a new array type for that sub-section,
3352/// and the same for structs.
3353///
3354/// Note that this routine is very strict and tries to find a partition of the
3355/// type which produces the *exact* right offset and size. It is not forgiving
3356/// when the size or offset cause either end of type-based partition to be off.
3357/// Also, this is a best-effort routine. It is reasonable to give up and not
3358/// return a type if necessary.
Chandler Carruth113dc642014-12-20 02:39:18 +00003359static Type *getTypePartition(const DataLayout &DL, Type *Ty, uint64_t Offset,
3360 uint64_t Size) {
Chandler Carruth90a735d2013-07-19 07:21:28 +00003361 if (Offset == 0 && DL.getTypeAllocSize(Ty) == Size)
3362 return stripAggregateTypeWrapping(DL, Ty);
3363 if (Offset > DL.getTypeAllocSize(Ty) ||
3364 (DL.getTypeAllocSize(Ty) - Offset) < Size)
Craig Topperf40110f2014-04-25 05:29:35 +00003365 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003366
3367 if (SequentialType *SeqTy = dyn_cast<SequentialType>(Ty)) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003368 Type *ElementTy = SeqTy->getElementType();
Chandler Carruth90a735d2013-07-19 07:21:28 +00003369 uint64_t ElementSize = DL.getTypeAllocSize(ElementTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003370 uint64_t NumSkippedElements = Offset / ElementSize;
Peter Collingbournebc070522016-12-02 03:20:58 +00003371 if (NumSkippedElements >= SeqTy->getNumElements())
3372 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003373 Offset -= NumSkippedElements * ElementSize;
3374
3375 // First check if we need to recurse.
3376 if (Offset > 0 || Size < ElementSize) {
3377 // Bail if the partition ends in a different array element.
3378 if ((Offset + Size) > ElementSize)
Craig Topperf40110f2014-04-25 05:29:35 +00003379 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003380 // Recurse through the element type trying to peel off offset bytes.
Chandler Carruth90a735d2013-07-19 07:21:28 +00003381 return getTypePartition(DL, ElementTy, Offset, Size);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003382 }
3383 assert(Offset == 0);
3384
3385 if (Size == ElementSize)
Chandler Carruth90a735d2013-07-19 07:21:28 +00003386 return stripAggregateTypeWrapping(DL, ElementTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003387 assert(Size > ElementSize);
3388 uint64_t NumElements = Size / ElementSize;
3389 if (NumElements * ElementSize != Size)
Craig Topperf40110f2014-04-25 05:29:35 +00003390 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003391 return ArrayType::get(ElementTy, NumElements);
3392 }
3393
3394 StructType *STy = dyn_cast<StructType>(Ty);
3395 if (!STy)
Craig Topperf40110f2014-04-25 05:29:35 +00003396 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003397
Chandler Carruth90a735d2013-07-19 07:21:28 +00003398 const StructLayout *SL = DL.getStructLayout(STy);
Chandler Carruth054a40a2012-09-14 11:08:31 +00003399 if (Offset >= SL->getSizeInBytes())
Craig Topperf40110f2014-04-25 05:29:35 +00003400 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003401 uint64_t EndOffset = Offset + Size;
3402 if (EndOffset > SL->getSizeInBytes())
Craig Topperf40110f2014-04-25 05:29:35 +00003403 return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003404
3405 unsigned Index = SL->getElementContainingOffset(Offset);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003406 Offset -= SL->getElementOffset(Index);
3407
3408 Type *ElementTy = STy->getElementType(Index);
Chandler Carruth90a735d2013-07-19 07:21:28 +00003409 uint64_t ElementSize = DL.getTypeAllocSize(ElementTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003410 if (Offset >= ElementSize)
Craig Topperf40110f2014-04-25 05:29:35 +00003411 return nullptr; // The offset points into alignment padding.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003412
3413 // See if any partition must be contained by the element.
3414 if (Offset > 0 || Size < ElementSize) {
3415 if ((Offset + Size) > ElementSize)
Craig Topperf40110f2014-04-25 05:29:35 +00003416 return nullptr;
Chandler Carruth90a735d2013-07-19 07:21:28 +00003417 return getTypePartition(DL, ElementTy, Offset, Size);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003418 }
3419 assert(Offset == 0);
3420
3421 if (Size == ElementSize)
Chandler Carruth90a735d2013-07-19 07:21:28 +00003422 return stripAggregateTypeWrapping(DL, ElementTy);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003423
3424 StructType::element_iterator EI = STy->element_begin() + Index,
3425 EE = STy->element_end();
3426 if (EndOffset < SL->getSizeInBytes()) {
3427 unsigned EndIndex = SL->getElementContainingOffset(EndOffset);
3428 if (Index == EndIndex)
Craig Topperf40110f2014-04-25 05:29:35 +00003429 return nullptr; // Within a single element and its padding.
Chandler Carruth054a40a2012-09-14 11:08:31 +00003430
3431 // Don't try to form "natural" types if the elements don't line up with the
3432 // expected size.
3433 // FIXME: We could potentially recurse down through the last element in the
3434 // sub-struct to find a natural end point.
3435 if (SL->getElementOffset(EndIndex) != EndOffset)
Craig Topperf40110f2014-04-25 05:29:35 +00003436 return nullptr;
Chandler Carruth054a40a2012-09-14 11:08:31 +00003437
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003438 assert(Index < EndIndex);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003439 EE = STy->element_begin() + EndIndex;
3440 }
3441
3442 // Try to build up a sub-structure.
Chandler Carruth113dc642014-12-20 02:39:18 +00003443 StructType *SubTy =
3444 StructType::get(STy->getContext(), makeArrayRef(EI, EE), STy->isPacked());
Chandler Carruth90a735d2013-07-19 07:21:28 +00003445 const StructLayout *SubSL = DL.getStructLayout(SubTy);
Chandler Carruth054a40a2012-09-14 11:08:31 +00003446 if (Size != SubSL->getSizeInBytes())
Craig Topperf40110f2014-04-25 05:29:35 +00003447 return nullptr; // The sub-struct doesn't have quite the size needed.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003448
Chandler Carruth054a40a2012-09-14 11:08:31 +00003449 return SubTy;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003450}
3451
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003452/// Pre-split loads and stores to simplify rewriting.
Chandler Carruth0715cba2015-01-01 11:54:38 +00003453///
3454/// We want to break up the splittable load+store pairs as much as
3455/// possible. This is important to do as a preprocessing step, as once we
3456/// start rewriting the accesses to partitions of the alloca we lose the
3457/// necessary information to correctly split apart paired loads and stores
3458/// which both point into this alloca. The case to consider is something like
3459/// the following:
3460///
3461/// %a = alloca [12 x i8]
3462/// %gep1 = getelementptr [12 x i8]* %a, i32 0, i32 0
3463/// %gep2 = getelementptr [12 x i8]* %a, i32 0, i32 4
3464/// %gep3 = getelementptr [12 x i8]* %a, i32 0, i32 8
3465/// %iptr1 = bitcast i8* %gep1 to i64*
3466/// %iptr2 = bitcast i8* %gep2 to i64*
3467/// %fptr1 = bitcast i8* %gep1 to float*
3468/// %fptr2 = bitcast i8* %gep2 to float*
3469/// %fptr3 = bitcast i8* %gep3 to float*
3470/// store float 0.0, float* %fptr1
3471/// store float 1.0, float* %fptr2
3472/// %v = load i64* %iptr1
3473/// store i64 %v, i64* %iptr2
3474/// %f1 = load float* %fptr2
3475/// %f2 = load float* %fptr3
3476///
3477/// Here we want to form 3 partitions of the alloca, each 4 bytes large, and
3478/// promote everything so we recover the 2 SSA values that should have been
3479/// there all along.
3480///
3481/// \returns true if any changes are made.
3482bool SROA::presplitLoadsAndStores(AllocaInst &AI, AllocaSlices &AS) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003483 LLVM_DEBUG(dbgs() << "Pre-splitting loads and stores\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003484
3485 // Track the loads and stores which are candidates for pre-splitting here, in
3486 // the order they first appear during the partition scan. These give stable
3487 // iteration order and a basis for tracking which loads and stores we
3488 // actually split.
3489 SmallVector<LoadInst *, 4> Loads;
3490 SmallVector<StoreInst *, 4> Stores;
3491
3492 // We need to accumulate the splits required of each load or store where we
3493 // can find them via a direct lookup. This is important to cross-check loads
3494 // and stores against each other. We also track the slice so that we can kill
3495 // all the slices that end up split.
3496 struct SplitOffsets {
3497 Slice *S;
3498 std::vector<uint64_t> Splits;
3499 };
3500 SmallDenseMap<Instruction *, SplitOffsets, 8> SplitOffsetsMap;
3501
Chandler Carruth73b01642015-01-05 04:17:53 +00003502 // Track loads out of this alloca which cannot, for any reason, be pre-split.
3503 // This is important as we also cannot pre-split stores of those loads!
3504 // FIXME: This is all pretty gross. It means that we can be more aggressive
3505 // in pre-splitting when the load feeding the store happens to come from
3506 // a separate alloca. Put another way, the effectiveness of SROA would be
3507 // decreased by a frontend which just concatenated all of its local allocas
3508 // into one big flat alloca. But defeating such patterns is exactly the job
3509 // SROA is tasked with! Sadly, to not have this discrepancy we would have
3510 // change store pre-splitting to actually force pre-splitting of the load
3511 // that feeds it *and all stores*. That makes pre-splitting much harder, but
3512 // maybe it would make it more principled?
3513 SmallPtrSet<LoadInst *, 8> UnsplittableLoads;
3514
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003515 LLVM_DEBUG(dbgs() << " Searching for candidate loads and stores\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003516 for (auto &P : AS.partitions()) {
3517 for (Slice &S : P) {
Chandler Carruth73b01642015-01-05 04:17:53 +00003518 Instruction *I = cast<Instruction>(S.getUse()->getUser());
Chandler Carruth37f1f122016-03-10 15:31:17 +00003519 if (!S.isSplittable() || S.endOffset() <= P.endOffset()) {
3520 // If this is a load we have to track that it can't participate in any
3521 // pre-splitting. If this is a store of a load we have to track that
3522 // that load also can't participate in any pre-splitting.
Chandler Carruth73b01642015-01-05 04:17:53 +00003523 if (auto *LI = dyn_cast<LoadInst>(I))
3524 UnsplittableLoads.insert(LI);
Chandler Carruth37f1f122016-03-10 15:31:17 +00003525 else if (auto *SI = dyn_cast<StoreInst>(I))
3526 if (auto *LI = dyn_cast<LoadInst>(SI->getValueOperand()))
3527 UnsplittableLoads.insert(LI);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003528 continue;
Chandler Carruth73b01642015-01-05 04:17:53 +00003529 }
Chandler Carruth0715cba2015-01-01 11:54:38 +00003530 assert(P.endOffset() > S.beginOffset() &&
3531 "Empty or backwards partition!");
3532
3533 // Determine if this is a pre-splittable slice.
Chandler Carruth0715cba2015-01-01 11:54:38 +00003534 if (auto *LI = dyn_cast<LoadInst>(I)) {
3535 assert(!LI->isVolatile() && "Cannot split volatile loads!");
3536
3537 // The load must be used exclusively to store into other pointers for
3538 // us to be able to arbitrarily pre-split it. The stores must also be
3539 // simple to avoid changing semantics.
3540 auto IsLoadSimplyStored = [](LoadInst *LI) {
3541 for (User *LU : LI->users()) {
3542 auto *SI = dyn_cast<StoreInst>(LU);
3543 if (!SI || !SI->isSimple())
3544 return false;
3545 }
3546 return true;
3547 };
Chandler Carruth73b01642015-01-05 04:17:53 +00003548 if (!IsLoadSimplyStored(LI)) {
3549 UnsplittableLoads.insert(LI);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003550 continue;
Chandler Carruth73b01642015-01-05 04:17:53 +00003551 }
Chandler Carruth0715cba2015-01-01 11:54:38 +00003552
3553 Loads.push_back(LI);
Chandler Carruthd94a5962016-03-10 14:16:18 +00003554 } else if (auto *SI = dyn_cast<StoreInst>(I)) {
3555 if (S.getUse() != &SI->getOperandUse(SI->getPointerOperandIndex()))
3556 // Skip stores *of* pointers. FIXME: This shouldn't even be possible!
Chandler Carruth994cde82015-01-01 12:01:03 +00003557 continue;
3558 auto *StoredLoad = dyn_cast<LoadInst>(SI->getValueOperand());
3559 if (!StoredLoad || !StoredLoad->isSimple())
3560 continue;
3561 assert(!SI->isVolatile() && "Cannot split volatile stores!");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003562
Chandler Carruth994cde82015-01-01 12:01:03 +00003563 Stores.push_back(SI);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003564 } else {
3565 // Other uses cannot be pre-split.
3566 continue;
3567 }
3568
3569 // Record the initial split.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003570 LLVM_DEBUG(dbgs() << " Candidate: " << *I << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003571 auto &Offsets = SplitOffsetsMap[I];
3572 assert(Offsets.Splits.empty() &&
3573 "Should not have splits the first time we see an instruction!");
3574 Offsets.S = &S;
Chandler Carruth24ac8302015-01-02 03:55:54 +00003575 Offsets.Splits.push_back(P.endOffset() - S.beginOffset());
Chandler Carruth0715cba2015-01-01 11:54:38 +00003576 }
3577
3578 // Now scan the already split slices, and add a split for any of them which
3579 // we're going to pre-split.
3580 for (Slice *S : P.splitSliceTails()) {
3581 auto SplitOffsetsMapI =
3582 SplitOffsetsMap.find(cast<Instruction>(S->getUse()->getUser()));
3583 if (SplitOffsetsMapI == SplitOffsetsMap.end())
3584 continue;
3585 auto &Offsets = SplitOffsetsMapI->second;
3586
3587 assert(Offsets.S == S && "Found a mismatched slice!");
3588 assert(!Offsets.Splits.empty() &&
3589 "Cannot have an empty set of splits on the second partition!");
Chandler Carruth24ac8302015-01-02 03:55:54 +00003590 assert(Offsets.Splits.back() ==
3591 P.beginOffset() - Offsets.S->beginOffset() &&
Chandler Carruth0715cba2015-01-01 11:54:38 +00003592 "Previous split does not end where this one begins!");
3593
3594 // Record each split. The last partition's end isn't needed as the size
3595 // of the slice dictates that.
3596 if (S->endOffset() > P.endOffset())
Chandler Carruth24ac8302015-01-02 03:55:54 +00003597 Offsets.Splits.push_back(P.endOffset() - Offsets.S->beginOffset());
Chandler Carruth0715cba2015-01-01 11:54:38 +00003598 }
3599 }
3600
3601 // We may have split loads where some of their stores are split stores. For
3602 // such loads and stores, we can only pre-split them if their splits exactly
3603 // match relative to their starting offset. We have to verify this prior to
3604 // any rewriting.
Chandler Carruth0715cba2015-01-01 11:54:38 +00003605 Stores.erase(
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003606 llvm::remove_if(Stores,
3607 [&UnsplittableLoads, &SplitOffsetsMap](StoreInst *SI) {
3608 // Lookup the load we are storing in our map of split
3609 // offsets.
3610 auto *LI = cast<LoadInst>(SI->getValueOperand());
3611 // If it was completely unsplittable, then we're done,
3612 // and this store can't be pre-split.
3613 if (UnsplittableLoads.count(LI))
3614 return true;
Chandler Carruth73b01642015-01-05 04:17:53 +00003615
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003616 auto LoadOffsetsI = SplitOffsetsMap.find(LI);
3617 if (LoadOffsetsI == SplitOffsetsMap.end())
3618 return false; // Unrelated loads are definitely safe.
3619 auto &LoadOffsets = LoadOffsetsI->second;
Chandler Carruth0715cba2015-01-01 11:54:38 +00003620
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003621 // Now lookup the store's offsets.
3622 auto &StoreOffsets = SplitOffsetsMap[SI];
Chandler Carruth0715cba2015-01-01 11:54:38 +00003623
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003624 // If the relative offsets of each split in the load and
3625 // store match exactly, then we can split them and we
3626 // don't need to remove them here.
3627 if (LoadOffsets.Splits == StoreOffsets.Splits)
3628 return false;
Chandler Carruth0715cba2015-01-01 11:54:38 +00003629
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003630 LLVM_DEBUG(
3631 dbgs()
3632 << " Mismatched splits for load and store:\n"
3633 << " " << *LI << "\n"
3634 << " " << *SI << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003635
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003636 // We've found a store and load that we need to split
3637 // with mismatched relative splits. Just give up on them
3638 // and remove both instructions from our list of
3639 // candidates.
3640 UnsplittableLoads.insert(LI);
3641 return true;
3642 }),
Chandler Carruth0715cba2015-01-01 11:54:38 +00003643 Stores.end());
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00003644 // Now we have to go *back* through all the stores, because a later store may
Chandler Carruth73b01642015-01-05 04:17:53 +00003645 // have caused an earlier store's load to become unsplittable and if it is
3646 // unsplittable for the later store, then we can't rely on it being split in
3647 // the earlier store either.
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003648 Stores.erase(llvm::remove_if(Stores,
3649 [&UnsplittableLoads](StoreInst *SI) {
3650 auto *LI =
3651 cast<LoadInst>(SI->getValueOperand());
3652 return UnsplittableLoads.count(LI);
3653 }),
Chandler Carruth73b01642015-01-05 04:17:53 +00003654 Stores.end());
3655 // Once we've established all the loads that can't be split for some reason,
3656 // filter any that made it into our list out.
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003657 Loads.erase(llvm::remove_if(Loads,
3658 [&UnsplittableLoads](LoadInst *LI) {
3659 return UnsplittableLoads.count(LI);
3660 }),
Chandler Carruth0715cba2015-01-01 11:54:38 +00003661 Loads.end());
3662
3663 // If no loads or stores are left, there is no pre-splitting to be done for
3664 // this alloca.
3665 if (Loads.empty() && Stores.empty())
3666 return false;
3667
3668 // From here on, we can't fail and will be building new accesses, so rig up
3669 // an IR builder.
3670 IRBuilderTy IRB(&AI);
3671
3672 // Collect the new slices which we will merge into the alloca slices.
3673 SmallVector<Slice, 4> NewSlices;
3674
3675 // Track any allocas we end up splitting loads and stores for so we iterate
3676 // on them.
3677 SmallPtrSet<AllocaInst *, 4> ResplitPromotableAllocas;
3678
3679 // At this point, we have collected all of the loads and stores we can
3680 // pre-split, and the specific splits needed for them. We actually do the
3681 // splitting in a specific order in order to handle when one of the loads in
3682 // the value operand to one of the stores.
3683 //
3684 // First, we rewrite all of the split loads, and just accumulate each split
3685 // load in a parallel structure. We also build the slices for them and append
3686 // them to the alloca slices.
3687 SmallDenseMap<LoadInst *, std::vector<LoadInst *>, 1> SplitLoadsMap;
3688 std::vector<LoadInst *> SplitLoads;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003689 const DataLayout &DL = AI.getModule()->getDataLayout();
Chandler Carruth0715cba2015-01-01 11:54:38 +00003690 for (LoadInst *LI : Loads) {
3691 SplitLoads.clear();
3692
3693 IntegerType *Ty = cast<IntegerType>(LI->getType());
3694 uint64_t LoadSize = Ty->getBitWidth() / 8;
3695 assert(LoadSize > 0 && "Cannot have a zero-sized integer load!");
3696
3697 auto &Offsets = SplitOffsetsMap[LI];
3698 assert(LoadSize == Offsets.S->endOffset() - Offsets.S->beginOffset() &&
3699 "Slice size should always match load size exactly!");
3700 uint64_t BaseOffset = Offsets.S->beginOffset();
3701 assert(BaseOffset + LoadSize > BaseOffset &&
3702 "Cannot represent alloca access size using 64-bit integers!");
3703
3704 Instruction *BasePtr = cast<Instruction>(LI->getPointerOperand());
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00003705 IRB.SetInsertPoint(LI);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003706
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003707 LLVM_DEBUG(dbgs() << " Splitting load: " << *LI << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003708
3709 uint64_t PartOffset = 0, PartSize = Offsets.Splits.front();
3710 int Idx = 0, Size = Offsets.Splits.size();
3711 for (;;) {
3712 auto *PartTy = Type::getIntNTy(Ty->getContext(), PartSize * 8);
Yaxun Liu7c44f342017-06-27 18:26:06 +00003713 auto AS = LI->getPointerAddressSpace();
3714 auto *PartPtrTy = PartTy->getPointerTo(AS);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003715 LoadInst *PLoad = IRB.CreateAlignedLoad(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003716 getAdjustedPtr(IRB, DL, BasePtr,
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00003717 APInt(DL.getIndexSizeInBits(AS), PartOffset),
Chandler Carruth994cde82015-01-01 12:01:03 +00003718 PartPtrTy, BasePtr->getName() + "."),
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003719 getAdjustedAlignment(LI, PartOffset, DL), /*IsVolatile*/ false,
Chandler Carruth0715cba2015-01-01 11:54:38 +00003720 LI->getName());
Rafael Espindolac06f55e2017-11-28 01:25:38 +00003721 PLoad->copyMetadata(*LI, LLVMContext::MD_mem_parallel_loop_access);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003722
3723 // Append this load onto the list of split loads so we can find it later
3724 // to rewrite the stores.
3725 SplitLoads.push_back(PLoad);
3726
3727 // Now build a new slice for the alloca.
Chandler Carruth994cde82015-01-01 12:01:03 +00003728 NewSlices.push_back(
3729 Slice(BaseOffset + PartOffset, BaseOffset + PartOffset + PartSize,
3730 &PLoad->getOperandUse(PLoad->getPointerOperandIndex()),
Chandler Carruth24ac8302015-01-02 03:55:54 +00003731 /*IsSplittable*/ false));
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003732 LLVM_DEBUG(dbgs() << " new slice [" << NewSlices.back().beginOffset()
3733 << ", " << NewSlices.back().endOffset()
3734 << "): " << *PLoad << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003735
Chandler Carruth29c22fa2015-01-02 00:10:22 +00003736 // See if we've handled all the splits.
3737 if (Idx >= Size)
3738 break;
3739
Chandler Carruth0715cba2015-01-01 11:54:38 +00003740 // Setup the next partition.
3741 PartOffset = Offsets.Splits[Idx];
3742 ++Idx;
Chandler Carruth0715cba2015-01-01 11:54:38 +00003743 PartSize = (Idx < Size ? Offsets.Splits[Idx] : LoadSize) - PartOffset;
3744 }
3745
3746 // Now that we have the split loads, do the slow walk over all uses of the
3747 // load and rewrite them as split stores, or save the split loads to use
3748 // below if the store is going to be split there anyways.
3749 bool DeferredStores = false;
3750 for (User *LU : LI->users()) {
3751 StoreInst *SI = cast<StoreInst>(LU);
3752 if (!Stores.empty() && SplitOffsetsMap.count(SI)) {
3753 DeferredStores = true;
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003754 LLVM_DEBUG(dbgs() << " Deferred splitting of store: " << *SI
3755 << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003756 continue;
3757 }
3758
Chandler Carruthc39eaa52015-01-01 23:26:16 +00003759 Value *StoreBasePtr = SI->getPointerOperand();
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00003760 IRB.SetInsertPoint(SI);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003761
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003762 LLVM_DEBUG(dbgs() << " Splitting store of load: " << *SI << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003763
3764 for (int Idx = 0, Size = SplitLoads.size(); Idx < Size; ++Idx) {
3765 LoadInst *PLoad = SplitLoads[Idx];
3766 uint64_t PartOffset = Idx == 0 ? 0 : Offsets.Splits[Idx - 1];
Chandler Carruth994cde82015-01-01 12:01:03 +00003767 auto *PartPtrTy =
3768 PLoad->getType()->getPointerTo(SI->getPointerAddressSpace());
Chandler Carruth0715cba2015-01-01 11:54:38 +00003769
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003770 auto AS = SI->getPointerAddressSpace();
Chandler Carruth0715cba2015-01-01 11:54:38 +00003771 StoreInst *PStore = IRB.CreateAlignedStore(
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003772 PLoad,
3773 getAdjustedPtr(IRB, DL, StoreBasePtr,
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00003774 APInt(DL.getIndexSizeInBits(AS), PartOffset),
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003775 PartPtrTy, StoreBasePtr->getName() + "."),
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003776 getAdjustedAlignment(SI, PartOffset, DL), /*IsVolatile*/ false);
Dorit Nuzmand1247a62016-09-22 07:56:23 +00003777 PStore->copyMetadata(*LI, LLVMContext::MD_mem_parallel_loop_access);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003778 LLVM_DEBUG(dbgs() << " +" << PartOffset << ":" << *PStore << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003779 }
3780
3781 // We want to immediately iterate on any allocas impacted by splitting
3782 // this store, and we have to track any promotable alloca (indicated by
3783 // a direct store) as needing to be resplit because it is no longer
3784 // promotable.
3785 if (AllocaInst *OtherAI = dyn_cast<AllocaInst>(StoreBasePtr)) {
3786 ResplitPromotableAllocas.insert(OtherAI);
3787 Worklist.insert(OtherAI);
3788 } else if (AllocaInst *OtherAI = dyn_cast<AllocaInst>(
3789 StoreBasePtr->stripInBoundsOffsets())) {
3790 Worklist.insert(OtherAI);
3791 }
3792
3793 // Mark the original store as dead.
3794 DeadInsts.insert(SI);
3795 }
3796
3797 // Save the split loads if there are deferred stores among the users.
3798 if (DeferredStores)
3799 SplitLoadsMap.insert(std::make_pair(LI, std::move(SplitLoads)));
3800
3801 // Mark the original load as dead and kill the original slice.
3802 DeadInsts.insert(LI);
3803 Offsets.S->kill();
3804 }
3805
3806 // Second, we rewrite all of the split stores. At this point, we know that
3807 // all loads from this alloca have been split already. For stores of such
3808 // loads, we can simply look up the pre-existing split loads. For stores of
3809 // other loads, we split those loads first and then write split stores of
3810 // them.
3811 for (StoreInst *SI : Stores) {
3812 auto *LI = cast<LoadInst>(SI->getValueOperand());
3813 IntegerType *Ty = cast<IntegerType>(LI->getType());
3814 uint64_t StoreSize = Ty->getBitWidth() / 8;
3815 assert(StoreSize > 0 && "Cannot have a zero-sized integer store!");
3816
3817 auto &Offsets = SplitOffsetsMap[SI];
3818 assert(StoreSize == Offsets.S->endOffset() - Offsets.S->beginOffset() &&
3819 "Slice size should always match load size exactly!");
3820 uint64_t BaseOffset = Offsets.S->beginOffset();
3821 assert(BaseOffset + StoreSize > BaseOffset &&
3822 "Cannot represent alloca access size using 64-bit integers!");
3823
Chandler Carruthc39eaa52015-01-01 23:26:16 +00003824 Value *LoadBasePtr = LI->getPointerOperand();
Chandler Carruth0715cba2015-01-01 11:54:38 +00003825 Instruction *StoreBasePtr = cast<Instruction>(SI->getPointerOperand());
3826
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003827 LLVM_DEBUG(dbgs() << " Splitting store: " << *SI << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003828
3829 // Check whether we have an already split load.
3830 auto SplitLoadsMapI = SplitLoadsMap.find(LI);
3831 std::vector<LoadInst *> *SplitLoads = nullptr;
3832 if (SplitLoadsMapI != SplitLoadsMap.end()) {
3833 SplitLoads = &SplitLoadsMapI->second;
3834 assert(SplitLoads->size() == Offsets.Splits.size() + 1 &&
3835 "Too few split loads for the number of splits in the store!");
3836 } else {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003837 LLVM_DEBUG(dbgs() << " of load: " << *LI << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003838 }
3839
Chandler Carruth0715cba2015-01-01 11:54:38 +00003840 uint64_t PartOffset = 0, PartSize = Offsets.Splits.front();
3841 int Idx = 0, Size = Offsets.Splits.size();
3842 for (;;) {
3843 auto *PartTy = Type::getIntNTy(Ty->getContext(), PartSize * 8);
Keno Fischer514a6a52017-06-02 19:04:17 +00003844 auto *LoadPartPtrTy = PartTy->getPointerTo(LI->getPointerAddressSpace());
3845 auto *StorePartPtrTy = PartTy->getPointerTo(SI->getPointerAddressSpace());
Chandler Carruth0715cba2015-01-01 11:54:38 +00003846
3847 // Either lookup a split load or create one.
3848 LoadInst *PLoad;
3849 if (SplitLoads) {
3850 PLoad = (*SplitLoads)[Idx];
3851 } else {
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00003852 IRB.SetInsertPoint(LI);
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003853 auto AS = LI->getPointerAddressSpace();
Chandler Carruth0715cba2015-01-01 11:54:38 +00003854 PLoad = IRB.CreateAlignedLoad(
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003855 getAdjustedPtr(IRB, DL, LoadBasePtr,
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00003856 APInt(DL.getIndexSizeInBits(AS), PartOffset),
Keno Fischer514a6a52017-06-02 19:04:17 +00003857 LoadPartPtrTy, LoadBasePtr->getName() + "."),
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003858 getAdjustedAlignment(LI, PartOffset, DL), /*IsVolatile*/ false,
Chandler Carruth0715cba2015-01-01 11:54:38 +00003859 LI->getName());
3860 }
3861
3862 // And store this partition.
Duncan P. N. Exon Smithbe4d8cb2015-10-13 19:26:58 +00003863 IRB.SetInsertPoint(SI);
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003864 auto AS = SI->getPointerAddressSpace();
Chandler Carruth0715cba2015-01-01 11:54:38 +00003865 StoreInst *PStore = IRB.CreateAlignedStore(
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003866 PLoad,
3867 getAdjustedPtr(IRB, DL, StoreBasePtr,
Elena Demikhovsky945b7e52018-02-14 06:58:08 +00003868 APInt(DL.getIndexSizeInBits(AS), PartOffset),
Yaxun Liu6455b0d2017-06-09 20:46:29 +00003869 StorePartPtrTy, StoreBasePtr->getName() + "."),
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003870 getAdjustedAlignment(SI, PartOffset, DL), /*IsVolatile*/ false);
Chandler Carruth0715cba2015-01-01 11:54:38 +00003871
3872 // Now build a new slice for the alloca.
3873 NewSlices.push_back(
3874 Slice(BaseOffset + PartOffset, BaseOffset + PartOffset + PartSize,
3875 &PStore->getOperandUse(PStore->getPointerOperandIndex()),
Chandler Carruth24ac8302015-01-02 03:55:54 +00003876 /*IsSplittable*/ false));
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003877 LLVM_DEBUG(dbgs() << " new slice [" << NewSlices.back().beginOffset()
3878 << ", " << NewSlices.back().endOffset()
3879 << "): " << *PStore << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003880 if (!SplitLoads) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003881 LLVM_DEBUG(dbgs() << " of split load: " << *PLoad << "\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003882 }
3883
Chandler Carruth29c22fa2015-01-02 00:10:22 +00003884 // See if we've finished all the splits.
3885 if (Idx >= Size)
3886 break;
3887
Chandler Carruth0715cba2015-01-01 11:54:38 +00003888 // Setup the next partition.
3889 PartOffset = Offsets.Splits[Idx];
3890 ++Idx;
Chandler Carruth0715cba2015-01-01 11:54:38 +00003891 PartSize = (Idx < Size ? Offsets.Splits[Idx] : StoreSize) - PartOffset;
3892 }
3893
3894 // We want to immediately iterate on any allocas impacted by splitting
3895 // this load, which is only relevant if it isn't a load of this alloca and
3896 // thus we didn't already split the loads above. We also have to keep track
3897 // of any promotable allocas we split loads on as they can no longer be
3898 // promoted.
3899 if (!SplitLoads) {
3900 if (AllocaInst *OtherAI = dyn_cast<AllocaInst>(LoadBasePtr)) {
3901 assert(OtherAI != &AI && "We can't re-split our own alloca!");
3902 ResplitPromotableAllocas.insert(OtherAI);
3903 Worklist.insert(OtherAI);
3904 } else if (AllocaInst *OtherAI = dyn_cast<AllocaInst>(
3905 LoadBasePtr->stripInBoundsOffsets())) {
3906 assert(OtherAI != &AI && "We can't re-split our own alloca!");
3907 Worklist.insert(OtherAI);
3908 }
3909 }
3910
3911 // Mark the original store as dead now that we've split it up and kill its
Chandler Carruth24ac8302015-01-02 03:55:54 +00003912 // slice. Note that we leave the original load in place unless this store
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00003913 // was its only use. It may in turn be split up if it is an alloca load
Chandler Carruth24ac8302015-01-02 03:55:54 +00003914 // for some other alloca, but it may be a normal load. This may introduce
3915 // redundant loads, but where those can be merged the rest of the optimizer
3916 // should handle the merging, and this uncovers SSA splits which is more
3917 // important. In practice, the original loads will almost always be fully
3918 // split and removed eventually, and the splits will be merged by any
3919 // trivial CSE, including instcombine.
3920 if (LI->hasOneUse()) {
3921 assert(*LI->user_begin() == SI && "Single use isn't this store!");
3922 DeadInsts.insert(LI);
3923 }
Chandler Carruth0715cba2015-01-01 11:54:38 +00003924 DeadInsts.insert(SI);
3925 Offsets.S->kill();
3926 }
3927
Chandler Carruth24ac8302015-01-02 03:55:54 +00003928 // Remove the killed slices that have ben pre-split.
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003929 AS.erase(llvm::remove_if(AS, [](const Slice &S) { return S.isDead(); }),
3930 AS.end());
Chandler Carruth0715cba2015-01-01 11:54:38 +00003931
Chandler Carruth24ac8302015-01-02 03:55:54 +00003932 // Insert our new slices. This will sort and merge them into the sorted
3933 // sequence.
Chandler Carruth0715cba2015-01-01 11:54:38 +00003934 AS.insert(NewSlices);
3935
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003936 LLVM_DEBUG(dbgs() << " Pre-split slices:\n");
Chandler Carruth0715cba2015-01-01 11:54:38 +00003937#ifndef NDEBUG
3938 for (auto I = AS.begin(), E = AS.end(); I != E; ++I)
Nicola Zaghend34e60c2018-05-14 12:53:11 +00003939 LLVM_DEBUG(AS.print(dbgs(), I, " "));
Chandler Carruth0715cba2015-01-01 11:54:38 +00003940#endif
3941
3942 // Finally, don't try to promote any allocas that new require re-splitting.
3943 // They have already been added to the worklist above.
3944 PromotableAllocas.erase(
Eugene Zelenko75075ef2017-09-01 21:37:29 +00003945 llvm::remove_if(
David Majnemerc7004902016-08-12 04:32:37 +00003946 PromotableAllocas,
Chandler Carruth0715cba2015-01-01 11:54:38 +00003947 [&](AllocaInst *AI) { return ResplitPromotableAllocas.count(AI); }),
3948 PromotableAllocas.end());
3949
3950 return true;
3951}
3952
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00003953/// Rewrite an alloca partition's users.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003954///
3955/// This routine drives both of the rewriting goals of the SROA pass. It tries
3956/// to rewrite uses of an alloca partition to be conducive for SSA value
3957/// promotion. If the partition needs a new, more refined alloca, this will
3958/// build that new alloca, preserving as much type information as possible, and
3959/// rewrite the uses of the old alloca to point at the new one and have the
3960/// appropriate new offsets. It also evaluates how successful the rewrite was
3961/// at enabling promotion and if it was successful queues the alloca to be
3962/// promoted.
Adrian Prantl565cc182015-01-20 19:42:22 +00003963AllocaInst *SROA::rewritePartition(AllocaInst &AI, AllocaSlices &AS,
Chandler Carruth29a18a42015-09-12 09:09:14 +00003964 Partition &P) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003965 // Try to compute a friendly type for this partition of the alloca. This
3966 // won't always succeed, in which case we fall back to a legal integer type
3967 // or an i8 array of an appropriate size.
Craig Topperf40110f2014-04-25 05:29:35 +00003968 Type *SliceTy = nullptr;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003969 const DataLayout &DL = AI.getModule()->getDataLayout();
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00003970 if (Type *CommonUseTy = findCommonType(P.begin(), P.end(), P.endOffset()))
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003971 if (DL.getTypeAllocSize(CommonUseTy) >= P.size())
Chandler Carruth9f21fe12013-07-19 09:13:58 +00003972 SliceTy = CommonUseTy;
3973 if (!SliceTy)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003974 if (Type *TypePartitionTy = getTypePartition(DL, AI.getAllocatedType(),
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00003975 P.beginOffset(), P.size()))
Chandler Carruth9f21fe12013-07-19 09:13:58 +00003976 SliceTy = TypePartitionTy;
3977 if ((!SliceTy || (SliceTy->isArrayTy() &&
3978 SliceTy->getArrayElementType()->isIntegerTy())) &&
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003979 DL.isLegalInteger(P.size() * 8))
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00003980 SliceTy = Type::getIntNTy(*C, P.size() * 8);
Chandler Carruth9f21fe12013-07-19 09:13:58 +00003981 if (!SliceTy)
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00003982 SliceTy = ArrayType::get(Type::getInt8Ty(*C), P.size());
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003983 assert(DL.getTypeAllocSize(SliceTy) >= P.size());
Chandler Carruthf0546402013-07-18 07:15:00 +00003984
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003985 bool IsIntegerPromotable = isIntegerWideningViable(P, SliceTy, DL);
Chandler Carruthf0546402013-07-18 07:15:00 +00003986
Chandler Carruth2dc96822014-10-18 00:44:02 +00003987 VectorType *VecTy =
Mehdi Aminia28d91d2015-03-10 02:37:25 +00003988 IsIntegerPromotable ? nullptr : isVectorPromotionViable(P, DL);
Chandler Carruth2dc96822014-10-18 00:44:02 +00003989 if (VecTy)
3990 SliceTy = VecTy;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003991
3992 // Check for the case where we're going to rewrite to a new alloca of the
3993 // exact same type as the original, and with the same access offsets. In that
3994 // case, re-use the existing alloca, but still run through the rewriter to
Jakub Staszak086f6cd2013-02-19 22:02:21 +00003995 // perform phi and select speculation.
Hiroshi Inoue99a8faa2018-01-16 06:23:05 +00003996 // P.beginOffset() can be non-zero even with the same type in a case with
3997 // out-of-bounds access (e.g. @PR35657 function in SROA/basictest.ll).
Chandler Carruth1b398ae2012-09-14 09:22:59 +00003998 AllocaInst *NewAI;
Hiroshi Inoue99a8faa2018-01-16 06:23:05 +00003999 if (SliceTy == AI.getAllocatedType() && P.beginOffset() == 0) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004000 NewAI = &AI;
Chandler Carruthf0546402013-07-18 07:15:00 +00004001 // FIXME: We should be able to bail at this point with "nothing changed".
4002 // FIXME: We might want to defer PHI speculation until after here.
Adrian Prantl565cc182015-01-20 19:42:22 +00004003 // FIXME: return nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004004 } else {
Chandler Carruth903790e2012-09-29 10:41:21 +00004005 unsigned Alignment = AI.getAlignment();
4006 if (!Alignment) {
4007 // The minimum alignment which users can rely on when the explicit
4008 // alignment is omitted or zero is that required by the ABI for this
4009 // type.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004010 Alignment = DL.getABITypeAlignment(AI.getAllocatedType());
Chandler Carruth903790e2012-09-29 10:41:21 +00004011 }
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004012 Alignment = MinAlign(Alignment, P.beginOffset());
Chandler Carruth903790e2012-09-29 10:41:21 +00004013 // If we will get at least this much alignment from the type alone, leave
4014 // the alloca's alignment unconstrained.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004015 if (Alignment <= DL.getABITypeAlignment(SliceTy))
Chandler Carruth903790e2012-09-29 10:41:21 +00004016 Alignment = 0;
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004017 NewAI = new AllocaInst(
Matt Arsenault3c1fc762017-04-10 22:27:50 +00004018 SliceTy, AI.getType()->getAddressSpace(), nullptr, Alignment,
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004019 AI.getName() + ".sroa." + Twine(P.begin() - AS.begin()), &AI);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004020 ++NumNewAllocas;
4021 }
4022
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004023 LLVM_DEBUG(dbgs() << "Rewriting alloca partition "
4024 << "[" << P.beginOffset() << "," << P.endOffset()
4025 << ") to: " << *NewAI << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004026
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004027 // Track the high watermark on the worklist as it is only relevant for
Chandler Carruthf0546402013-07-18 07:15:00 +00004028 // promoted allocas. We will reset it to this point if the alloca is not in
4029 // fact scheduled for promotion.
Chandler Carruthac8317f2012-10-04 12:33:50 +00004030 unsigned PPWOldSize = PostPromotionWorklist.size();
Chandler Carruth6c321c12013-07-19 10:57:36 +00004031 unsigned NumUses = 0;
Davide Italiano81a26da2017-04-27 23:09:01 +00004032 SmallSetVector<PHINode *, 8> PHIUsers;
4033 SmallSetVector<SelectInst *, 8> SelectUsers;
Chandler Carruth6c321c12013-07-19 10:57:36 +00004034
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004035 AllocaSliceRewriter Rewriter(DL, AS, *this, AI, *NewAI, P.beginOffset(),
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004036 P.endOffset(), IsIntegerPromotable, VecTy,
4037 PHIUsers, SelectUsers);
Chandler Carruthf0546402013-07-18 07:15:00 +00004038 bool Promotable = true;
Chandler Carruthffb7ce52014-12-24 01:48:09 +00004039 for (Slice *S : P.splitSliceTails()) {
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004040 Promotable &= Rewriter.visit(S);
Chandler Carruth6c321c12013-07-19 10:57:36 +00004041 ++NumUses;
Chandler Carruthf0546402013-07-18 07:15:00 +00004042 }
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004043 for (Slice &S : P) {
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004044 Promotable &= Rewriter.visit(&S);
Chandler Carruth6c321c12013-07-19 10:57:36 +00004045 ++NumUses;
Chandler Carruthf0546402013-07-18 07:15:00 +00004046 }
4047
Chandler Carruth6c321c12013-07-19 10:57:36 +00004048 NumAllocaPartitionUses += NumUses;
Craig Topper8a950272017-05-18 00:51:39 +00004049 MaxUsesPerAllocaPartition.updateMax(NumUses);
Chandler Carruth6c321c12013-07-19 10:57:36 +00004050
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004051 // Now that we've processed all the slices in the new partition, check if any
4052 // PHIs or Selects would block promotion.
Davide Italiano81a26da2017-04-27 23:09:01 +00004053 for (PHINode *PHI : PHIUsers)
4054 if (!isSafePHIToSpeculate(*PHI)) {
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004055 Promotable = false;
4056 PHIUsers.clear();
4057 SelectUsers.clear();
Chandler Carrutha8c4cc62014-02-25 09:45:27 +00004058 break;
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004059 }
Davide Italiano81a26da2017-04-27 23:09:01 +00004060
4061 for (SelectInst *Sel : SelectUsers)
4062 if (!isSafeSelectToSpeculate(*Sel)) {
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004063 Promotable = false;
4064 PHIUsers.clear();
4065 SelectUsers.clear();
Chandler Carrutha8c4cc62014-02-25 09:45:27 +00004066 break;
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004067 }
4068
4069 if (Promotable) {
4070 if (PHIUsers.empty() && SelectUsers.empty()) {
4071 // Promote the alloca.
4072 PromotableAllocas.push_back(NewAI);
4073 } else {
4074 // If we have either PHIs or Selects to speculate, add them to those
4075 // worklists and re-queue the new alloca so that we promote in on the
4076 // next iteration.
Chandler Carruth61747042014-10-16 21:05:14 +00004077 for (PHINode *PHIUser : PHIUsers)
4078 SpeculatablePHIs.insert(PHIUser);
4079 for (SelectInst *SelectUser : SelectUsers)
4080 SpeculatableSelects.insert(SelectUser);
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004081 Worklist.insert(NewAI);
4082 }
4083 } else {
Chandler Carruth3bf18ed2014-02-25 00:07:09 +00004084 // Drop any post-promotion work items if promotion didn't happen.
Chandler Carruthac8317f2012-10-04 12:33:50 +00004085 while (PostPromotionWorklist.size() > PPWOldSize)
4086 PostPromotionWorklist.pop_back();
David Majnemer30ffc4c2016-04-26 01:05:00 +00004087
4088 // We couldn't promote and we didn't create a new partition, nothing
4089 // happened.
4090 if (NewAI == &AI)
4091 return nullptr;
4092
4093 // If we can't promote the alloca, iterate on it to check for new
4094 // refinements exposed by splitting the current alloca. Don't iterate on an
4095 // alloca which didn't actually change and didn't get promoted.
4096 Worklist.insert(NewAI);
Chandler Carruthf0546402013-07-18 07:15:00 +00004097 }
Chandler Carruthac8317f2012-10-04 12:33:50 +00004098
Adrian Prantl565cc182015-01-20 19:42:22 +00004099 return NewAI;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004100}
4101
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004102/// Walks the slices of an alloca and form partitions based on them,
Chandler Carruth9f21fe12013-07-19 09:13:58 +00004103/// rewriting each of their uses.
Chandler Carruth83934062014-10-16 21:11:55 +00004104bool SROA::splitAlloca(AllocaInst &AI, AllocaSlices &AS) {
4105 if (AS.begin() == AS.end())
Chandler Carruthf0546402013-07-18 07:15:00 +00004106 return false;
4107
Chandler Carruth6c321c12013-07-19 10:57:36 +00004108 unsigned NumPartitions = 0;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004109 bool Changed = false;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004110 const DataLayout &DL = AI.getModule()->getDataLayout();
Chandler Carruthf0546402013-07-18 07:15:00 +00004111
Chandler Carruth24ac8302015-01-02 03:55:54 +00004112 // First try to pre-split loads and stores.
Chandler Carruth0715cba2015-01-01 11:54:38 +00004113 Changed |= presplitLoadsAndStores(AI, AS);
4114
Hiroshi Inoue48e4c7a2017-12-01 06:05:05 +00004115 // Now that we have identified any pre-splitting opportunities,
4116 // mark loads and stores unsplittable except for the following case.
4117 // We leave a slice splittable if all other slices are disjoint or fully
4118 // included in the slice, such as whole-alloca loads and stores.
4119 // If we fail to split these during pre-splitting, we want to force them
4120 // to be rewritten into a partition.
Chandler Carruth24ac8302015-01-02 03:55:54 +00004121 bool IsSorted = true;
Hiroshi Inoue48e4c7a2017-12-01 06:05:05 +00004122
4123 uint64_t AllocaSize = DL.getTypeAllocSize(AI.getAllocatedType());
4124 const uint64_t MaxBitVectorSize = 1024;
Hiroshi Inoue99a8faa2018-01-16 06:23:05 +00004125 if (AllocaSize <= MaxBitVectorSize) {
Hiroshi Inoue48e4c7a2017-12-01 06:05:05 +00004126 // If a byte boundary is included in any load or store, a slice starting or
4127 // ending at the boundary is not splittable.
4128 SmallBitVector SplittableOffset(AllocaSize + 1, true);
4129 for (Slice &S : AS)
4130 for (unsigned O = S.beginOffset() + 1;
4131 O < S.endOffset() && O < AllocaSize; O++)
4132 SplittableOffset.reset(O);
4133
4134 for (Slice &S : AS) {
4135 if (!S.isSplittable())
4136 continue;
4137
4138 if ((S.beginOffset() > AllocaSize || SplittableOffset[S.beginOffset()]) &&
4139 (S.endOffset() > AllocaSize || SplittableOffset[S.endOffset()]))
4140 continue;
4141
4142 if (isa<LoadInst>(S.getUse()->getUser()) ||
4143 isa<StoreInst>(S.getUse()->getUser())) {
4144 S.makeUnsplittable();
4145 IsSorted = false;
4146 }
Chandler Carruth24ac8302015-01-02 03:55:54 +00004147 }
4148 }
Hiroshi Inoue48e4c7a2017-12-01 06:05:05 +00004149 else {
4150 // We only allow whole-alloca splittable loads and stores
4151 // for a large alloca to avoid creating too large BitVector.
4152 for (Slice &S : AS) {
4153 if (!S.isSplittable())
4154 continue;
4155
4156 if (S.beginOffset() == 0 && S.endOffset() >= AllocaSize)
4157 continue;
4158
4159 if (isa<LoadInst>(S.getUse()->getUser()) ||
4160 isa<StoreInst>(S.getUse()->getUser())) {
4161 S.makeUnsplittable();
4162 IsSorted = false;
4163 }
4164 }
4165 }
4166
Chandler Carruth24ac8302015-01-02 03:55:54 +00004167 if (!IsSorted)
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +00004168 llvm::sort(AS.begin(), AS.end());
Chandler Carruth24ac8302015-01-02 03:55:54 +00004169
Adrian Prantl941fa752016-12-05 18:04:47 +00004170 /// Describes the allocas introduced by rewritePartition in order to migrate
4171 /// the debug info.
4172 struct Fragment {
Adrian Prantl565cc182015-01-20 19:42:22 +00004173 AllocaInst *Alloca;
4174 uint64_t Offset;
4175 uint64_t Size;
Adrian Prantl941fa752016-12-05 18:04:47 +00004176 Fragment(AllocaInst *AI, uint64_t O, uint64_t S)
Adrian Prantl565cc182015-01-20 19:42:22 +00004177 : Alloca(AI), Offset(O), Size(S) {}
4178 };
Adrian Prantl941fa752016-12-05 18:04:47 +00004179 SmallVector<Fragment, 4> Fragments;
Adrian Prantl565cc182015-01-20 19:42:22 +00004180
Chandler Carruth0715cba2015-01-01 11:54:38 +00004181 // Rewrite each partition.
Chandler Carruthe2f66ce2014-12-22 22:46:00 +00004182 for (auto &P : AS.partitions()) {
Adrian Prantl565cc182015-01-20 19:42:22 +00004183 if (AllocaInst *NewAI = rewritePartition(AI, AS, P)) {
4184 Changed = true;
Adrian Prantl34e75902015-02-09 23:57:22 +00004185 if (NewAI != &AI) {
4186 uint64_t SizeOfByte = 8;
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004187 uint64_t AllocaSize = DL.getTypeSizeInBits(NewAI->getAllocatedType());
Adrian Prantl34e75902015-02-09 23:57:22 +00004188 // Don't include any padding.
4189 uint64_t Size = std::min(AllocaSize, P.size() * SizeOfByte);
Adrian Prantl941fa752016-12-05 18:04:47 +00004190 Fragments.push_back(Fragment(NewAI, P.beginOffset() * SizeOfByte, Size));
Adrian Prantl34e75902015-02-09 23:57:22 +00004191 }
Adrian Prantl565cc182015-01-20 19:42:22 +00004192 }
Chandler Carruth6c321c12013-07-19 10:57:36 +00004193 ++NumPartitions;
Chandler Carruthf0546402013-07-18 07:15:00 +00004194 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004195
Chandler Carruth6c321c12013-07-19 10:57:36 +00004196 NumAllocaPartitions += NumPartitions;
Craig Topper8a950272017-05-18 00:51:39 +00004197 MaxPartitionsPerAlloca.updateMax(NumPartitions);
Chandler Carruth6c321c12013-07-19 10:57:36 +00004198
Adrian Prantl565cc182015-01-20 19:42:22 +00004199 // Migrate debug information from the old alloca to the new alloca(s)
Benjamin Kramerdf005cb2015-08-08 18:27:36 +00004200 // and the individual partitions.
Reid Kleckner0fe506b2017-09-21 19:52:03 +00004201 TinyPtrVector<DbgInfoIntrinsic *> DbgDeclares = FindDbgAddrUses(&AI);
4202 if (!DbgDeclares.empty()) {
4203 auto *Var = DbgDeclares.front()->getVariable();
4204 auto *Expr = DbgDeclares.front()->getExpression();
Adrian Prantld7f6f162017-11-28 00:57:53 +00004205 auto VarSize = Var->getSizeInBits();
Sanjay Patelaf674fb2015-12-14 17:24:23 +00004206 DIBuilder DIB(*AI.getModule(), /*AllowUnresolved*/ false);
Keno Fischerd5354fd2016-01-14 20:06:34 +00004207 uint64_t AllocaSize = DL.getTypeSizeInBits(AI.getAllocatedType());
Adrian Prantl941fa752016-12-05 18:04:47 +00004208 for (auto Fragment : Fragments) {
4209 // Create a fragment expression describing the new partition or reuse AI's
Adrian Prantl565cc182015-01-20 19:42:22 +00004210 // expression if there is only one partition.
Adrian Prantl941fa752016-12-05 18:04:47 +00004211 auto *FragmentExpr = Expr;
4212 if (Fragment.Size < AllocaSize || Expr->isFragment()) {
Adrian Prantl152ac392015-02-01 00:58:04 +00004213 // If this alloca is already a scalar replacement of a larger aggregate,
Adrian Prantl941fa752016-12-05 18:04:47 +00004214 // Fragment.Offset describes the offset inside the scalar.
Adrian Prantl49797ca2016-12-22 05:27:12 +00004215 auto ExprFragment = Expr->getFragmentInfo();
4216 uint64_t Offset = ExprFragment ? ExprFragment->OffsetInBits : 0;
Adrian Prantl941fa752016-12-05 18:04:47 +00004217 uint64_t Start = Offset + Fragment.Offset;
4218 uint64_t Size = Fragment.Size;
Adrian Prantl49797ca2016-12-22 05:27:12 +00004219 if (ExprFragment) {
Adrian Prantl941fa752016-12-05 18:04:47 +00004220 uint64_t AbsEnd =
NAKAMURA Takumia1e97a72017-08-28 06:47:47 +00004221 ExprFragment->OffsetInBits + ExprFragment->SizeInBits;
Adrian Prantl34e75902015-02-09 23:57:22 +00004222 if (Start >= AbsEnd)
4223 // No need to describe a SROAed padding.
4224 continue;
4225 Size = std::min(Size, AbsEnd - Start);
4226 }
Adrian Prantlb192b542017-08-30 20:04:17 +00004227 // The new, smaller fragment is stenciled out from the old fragment.
4228 if (auto OrigFragment = FragmentExpr->getFragmentInfo()) {
4229 assert(Start >= OrigFragment->OffsetInBits &&
4230 "new fragment is outside of original fragment");
4231 Start -= OrigFragment->OffsetInBits;
4232 }
Adrian Prantl77d90b02017-11-28 21:30:38 +00004233
4234 // The alloca may be larger than the variable.
4235 if (VarSize) {
4236 if (Size > *VarSize)
4237 Size = *VarSize;
4238 if (Size == 0 || Start + Size > *VarSize)
4239 continue;
4240 }
4241
Adrian Prantld7f6f162017-11-28 00:57:53 +00004242 // Avoid creating a fragment expression that covers the entire variable.
4243 if (!VarSize || *VarSize != Size) {
4244 if (auto E =
4245 DIExpression::createFragmentExpression(Expr, Start, Size))
4246 FragmentExpr = *E;
4247 else
4248 continue;
4249 }
Adrian Prantl152ac392015-02-01 00:58:04 +00004250 }
Adrian Prantl565cc182015-01-20 19:42:22 +00004251
Reid Kleckner0fe506b2017-09-21 19:52:03 +00004252 // Remove any existing intrinsics describing the same alloca.
4253 for (DbgInfoIntrinsic *OldDII : FindDbgAddrUses(Fragment.Alloca))
4254 OldDII->eraseFromParent();
Adrian Prantl565cc182015-01-20 19:42:22 +00004255
Adrian Prantl941fa752016-12-05 18:04:47 +00004256 DIB.insertDeclare(Fragment.Alloca, Var, FragmentExpr,
Reid Kleckner0fe506b2017-09-21 19:52:03 +00004257 DbgDeclares.front()->getDebugLoc(), &AI);
Adrian Prantl565cc182015-01-20 19:42:22 +00004258 }
4259 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004260 return Changed;
4261}
4262
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004263/// Clobber a use with undef, deleting the used value if it becomes dead.
Chandler Carruth1bf38c62014-01-19 12:16:54 +00004264void SROA::clobberUse(Use &U) {
4265 Value *OldV = U;
4266 // Replace the use with an undef value.
4267 U = UndefValue::get(OldV->getType());
4268
4269 // Check for this making an instruction dead. We have to garbage collect
4270 // all the dead instructions to ensure the uses of any alloca end up being
4271 // minimal.
4272 if (Instruction *OldI = dyn_cast<Instruction>(OldV))
4273 if (isInstructionTriviallyDead(OldI)) {
4274 DeadInsts.insert(OldI);
4275 }
4276}
4277
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004278/// Analyze an alloca for SROA.
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004279///
4280/// This analyzes the alloca to ensure we can reason about it, builds
Chandler Carruth9f21fe12013-07-19 09:13:58 +00004281/// the slices of the alloca, and then hands it off to be split and
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004282/// rewritten as needed.
4283bool SROA::runOnAlloca(AllocaInst &AI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004284 LLVM_DEBUG(dbgs() << "SROA alloca: " << AI << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004285 ++NumAllocasAnalyzed;
4286
4287 // Special case dead allocas, as they're trivial.
4288 if (AI.use_empty()) {
4289 AI.eraseFromParent();
4290 return true;
4291 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004292 const DataLayout &DL = AI.getModule()->getDataLayout();
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004293
4294 // Skip alloca forms that this analysis can't handle.
4295 if (AI.isArrayAllocation() || !AI.getAllocatedType()->isSized() ||
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004296 DL.getTypeAllocSize(AI.getAllocatedType()) == 0)
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004297 return false;
4298
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00004299 bool Changed = false;
4300
4301 // First, split any FCA loads and stores touching this alloca to promote
4302 // better splitting and promotion opportunities.
Benjamin Kramer6db33382015-10-15 15:08:58 +00004303 AggLoadStoreRewriter AggRewriter;
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00004304 Changed |= AggRewriter.rewrite(AI);
4305
Chandler Carruth9f21fe12013-07-19 09:13:58 +00004306 // Build the slices using a recursive instruction-visiting builder.
Mehdi Aminia28d91d2015-03-10 02:37:25 +00004307 AllocaSlices AS(DL, AI);
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004308 LLVM_DEBUG(AS.print(dbgs()));
Chandler Carruth83934062014-10-16 21:11:55 +00004309 if (AS.isEscaped())
Chandler Carruth42cb9cb2012-09-18 12:57:43 +00004310 return Changed;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004311
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004312 // Delete all the dead users of this alloca before splitting and rewriting it.
Chandler Carruth83934062014-10-16 21:11:55 +00004313 for (Instruction *DeadUser : AS.getDeadUsers()) {
Chandler Carruth1bf38c62014-01-19 12:16:54 +00004314 // Free up everything used by this instruction.
Chandler Carruth57d4cae2014-10-16 20:42:08 +00004315 for (Use &DeadOp : DeadUser->operands())
Chandler Carruth1583e992014-03-03 10:42:58 +00004316 clobberUse(DeadOp);
Chandler Carruth1bf38c62014-01-19 12:16:54 +00004317
4318 // Now replace the uses of this instruction.
Chandler Carruth57d4cae2014-10-16 20:42:08 +00004319 DeadUser->replaceAllUsesWith(UndefValue::get(DeadUser->getType()));
Chandler Carruth1bf38c62014-01-19 12:16:54 +00004320
4321 // And mark it for deletion.
Chandler Carruth57d4cae2014-10-16 20:42:08 +00004322 DeadInsts.insert(DeadUser);
Chandler Carruth1bf38c62014-01-19 12:16:54 +00004323 Changed = true;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004324 }
Chandler Carruth83934062014-10-16 21:11:55 +00004325 for (Use *DeadOp : AS.getDeadOperands()) {
Chandler Carruth57d4cae2014-10-16 20:42:08 +00004326 clobberUse(*DeadOp);
Chandler Carruth1bf38c62014-01-19 12:16:54 +00004327 Changed = true;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004328 }
4329
Chandler Carruth9f21fe12013-07-19 09:13:58 +00004330 // No slices to split. Leave the dead alloca for a later pass to clean up.
Chandler Carruth83934062014-10-16 21:11:55 +00004331 if (AS.begin() == AS.end())
Chandler Carruthe5b7a2c2012-10-05 01:29:09 +00004332 return Changed;
4333
Chandler Carruth83934062014-10-16 21:11:55 +00004334 Changed |= splitAlloca(AI, AS);
Chandler Carruthf0546402013-07-18 07:15:00 +00004335
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004336 LLVM_DEBUG(dbgs() << " Speculating PHIs\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00004337 while (!SpeculatablePHIs.empty())
4338 speculatePHINodeLoads(*SpeculatablePHIs.pop_back_val());
4339
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004340 LLVM_DEBUG(dbgs() << " Speculating Selects\n");
Chandler Carruthf0546402013-07-18 07:15:00 +00004341 while (!SpeculatableSelects.empty())
4342 speculateSelectInstLoads(*SpeculatableSelects.pop_back_val());
4343
4344 return Changed;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004345}
4346
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004347/// Delete the dead instructions accumulated in this run.
Chandler Carruth19450da2012-09-14 10:26:38 +00004348///
4349/// Recursively deletes the dead instructions we've accumulated. This is done
4350/// at the very end to maximize locality of the recursive delete and to
4351/// minimize the problems of invalidated instruction pointers as such pointers
4352/// are used heavily in the intermediate stages of the algorithm.
4353///
4354/// We also record the alloca instructions deleted here so that they aren't
4355/// subsequently handed to mem2reg to promote.
Teresa Johnson33090022017-11-20 18:33:38 +00004356bool SROA::deleteDeadInstructions(
Chandler Carruth113dc642014-12-20 02:39:18 +00004357 SmallPtrSetImpl<AllocaInst *> &DeletedAllocas) {
Teresa Johnson33090022017-11-20 18:33:38 +00004358 bool Changed = false;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004359 while (!DeadInsts.empty()) {
4360 Instruction *I = DeadInsts.pop_back_val();
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004361 LLVM_DEBUG(dbgs() << "Deleting dead instruction: " << *I << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004362
Reid Kleckner0fe506b2017-09-21 19:52:03 +00004363 // If the instruction is an alloca, find the possible dbg.declare connected
4364 // to it, and remove it too. We must do this before calling RAUW or we will
4365 // not be able to find it.
4366 if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) {
4367 DeletedAllocas.insert(AI);
4368 for (DbgInfoIntrinsic *OldDII : FindDbgAddrUses(AI))
4369 OldDII->eraseFromParent();
4370 }
4371
Chandler Carruth58d05562012-10-25 04:37:07 +00004372 I->replaceAllUsesWith(UndefValue::get(I->getType()));
4373
Chandler Carruth1583e992014-03-03 10:42:58 +00004374 for (Use &Operand : I->operands())
4375 if (Instruction *U = dyn_cast<Instruction>(Operand)) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004376 // Zero out the operand and see if it becomes trivially dead.
Craig Topperf40110f2014-04-25 05:29:35 +00004377 Operand = nullptr;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004378 if (isInstructionTriviallyDead(U))
Chandler Carruth18db7952012-11-20 01:12:50 +00004379 DeadInsts.insert(U);
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004380 }
4381
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004382 ++NumDeleted;
4383 I->eraseFromParent();
Teresa Johnson33090022017-11-20 18:33:38 +00004384 Changed = true;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004385 }
Teresa Johnson33090022017-11-20 18:33:38 +00004386 return Changed;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004387}
4388
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00004389/// Promote the allocas, using the best available technique.
Chandler Carruth70b44c52012-09-15 11:43:14 +00004390///
4391/// This attempts to promote whatever allocas have been identified as viable in
4392/// the PromotableAllocas list. If that list is empty, there is nothing to do.
Chandler Carruth748d0952015-08-26 09:09:29 +00004393/// This function returns whether any promotion occurred.
Chandler Carruth70b44c52012-09-15 11:43:14 +00004394bool SROA::promoteAllocas(Function &F) {
4395 if (PromotableAllocas.empty())
4396 return false;
4397
4398 NumPromoted += PromotableAllocas.size();
4399
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004400 LLVM_DEBUG(dbgs() << "Promoting allocas with mem2reg...\n");
Davide Italiano612d5a92017-04-09 20:47:14 +00004401 PromoteMemToReg(PromotableAllocas, *DT, AC);
Chandler Carruth70b44c52012-09-15 11:43:14 +00004402 PromotableAllocas.clear();
4403 return true;
4404}
4405
Daniel Jasperaec2fa32016-12-19 08:22:17 +00004406PreservedAnalyses SROA::runImpl(Function &F, DominatorTree &RunDT,
4407 AssumptionCache &RunAC) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00004408 LLVM_DEBUG(dbgs() << "SROA function: " << F.getName() << "\n");
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004409 C = &F.getContext();
Chandler Carruth29a18a42015-09-12 09:09:14 +00004410 DT = &RunDT;
Daniel Jasperaec2fa32016-12-19 08:22:17 +00004411 AC = &RunAC;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004412
4413 BasicBlock &EntryBB = F.getEntryBlock();
Benjamin Kramerb6d0bd42014-03-02 12:27:27 +00004414 for (BasicBlock::iterator I = EntryBB.begin(), E = std::prev(EntryBB.end());
Adrian Prantl565cc182015-01-20 19:42:22 +00004415 I != E; ++I) {
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004416 if (AllocaInst *AI = dyn_cast<AllocaInst>(I))
4417 Worklist.insert(AI);
Adrian Prantl565cc182015-01-20 19:42:22 +00004418 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004419
4420 bool Changed = false;
Chandler Carruth19450da2012-09-14 10:26:38 +00004421 // A set of deleted alloca instruction pointers which should be removed from
4422 // the list of promotable allocas.
4423 SmallPtrSet<AllocaInst *, 4> DeletedAllocas;
4424
Chandler Carruthac8317f2012-10-04 12:33:50 +00004425 do {
4426 while (!Worklist.empty()) {
4427 Changed |= runOnAlloca(*Worklist.pop_back_val());
Teresa Johnson33090022017-11-20 18:33:38 +00004428 Changed |= deleteDeadInstructions(DeletedAllocas);
Chandler Carruthb09f0a32012-10-02 22:46:45 +00004429
Chandler Carruthac8317f2012-10-04 12:33:50 +00004430 // Remove the deleted allocas from various lists so that we don't try to
4431 // continue processing them.
4432 if (!DeletedAllocas.empty()) {
Chandler Carruth113dc642014-12-20 02:39:18 +00004433 auto IsInSet = [&](AllocaInst *AI) { return DeletedAllocas.count(AI); };
Benjamin Kramer3a377bc2014-03-01 11:47:00 +00004434 Worklist.remove_if(IsInSet);
4435 PostPromotionWorklist.remove_if(IsInSet);
Eugene Zelenko75075ef2017-09-01 21:37:29 +00004436 PromotableAllocas.erase(llvm::remove_if(PromotableAllocas, IsInSet),
Chandler Carruthac8317f2012-10-04 12:33:50 +00004437 PromotableAllocas.end());
4438 DeletedAllocas.clear();
4439 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004440 }
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004441
Chandler Carruthac8317f2012-10-04 12:33:50 +00004442 Changed |= promoteAllocas(F);
4443
4444 Worklist = PostPromotionWorklist;
4445 PostPromotionWorklist.clear();
4446 } while (!Worklist.empty());
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004447
Davide Italiano16e96d42016-06-07 13:21:17 +00004448 if (!Changed)
4449 return PreservedAnalyses::all();
4450
Davide Italiano16e96d42016-06-07 13:21:17 +00004451 PreservedAnalyses PA;
Chandler Carruthca68a3e2017-01-15 06:32:49 +00004452 PA.preserveSet<CFGAnalyses>();
Davide Italiano16e96d42016-06-07 13:21:17 +00004453 PA.preserve<GlobalsAA>();
4454 return PA;
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004455}
4456
Sean Silva36e0d012016-08-09 00:28:15 +00004457PreservedAnalyses SROA::run(Function &F, FunctionAnalysisManager &AM) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00004458 return runImpl(F, AM.getResult<DominatorTreeAnalysis>(F),
4459 AM.getResult<AssumptionAnalysis>(F));
Chandler Carruth1b398ae2012-09-14 09:22:59 +00004460}
Chandler Carruth29a18a42015-09-12 09:09:14 +00004461
4462/// A legacy pass for the legacy pass manager that wraps the \c SROA pass.
4463///
4464/// This is in the llvm namespace purely to allow it to be a friend of the \c
4465/// SROA pass.
4466class llvm::sroa::SROALegacyPass : public FunctionPass {
4467 /// The SROA implementation.
4468 SROA Impl;
4469
4470public:
Eugene Zelenko75075ef2017-09-01 21:37:29 +00004471 static char ID;
4472
Chandler Carruth29a18a42015-09-12 09:09:14 +00004473 SROALegacyPass() : FunctionPass(ID) {
4474 initializeSROALegacyPassPass(*PassRegistry::getPassRegistry());
4475 }
Eugene Zelenko75075ef2017-09-01 21:37:29 +00004476
Chandler Carruth29a18a42015-09-12 09:09:14 +00004477 bool runOnFunction(Function &F) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00004478 if (skipFunction(F))
Chandler Carruth29a18a42015-09-12 09:09:14 +00004479 return false;
4480
4481 auto PA = Impl.runImpl(
Daniel Jasperaec2fa32016-12-19 08:22:17 +00004482 F, getAnalysis<DominatorTreeWrapperPass>().getDomTree(),
4483 getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F));
Chandler Carruth29a18a42015-09-12 09:09:14 +00004484 return !PA.areAllPreserved();
4485 }
Eugene Zelenko75075ef2017-09-01 21:37:29 +00004486
Chandler Carruth29a18a42015-09-12 09:09:14 +00004487 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00004488 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruth29a18a42015-09-12 09:09:14 +00004489 AU.addRequired<DominatorTreeWrapperPass>();
4490 AU.addPreserved<GlobalsAAWrapperPass>();
4491 AU.setPreservesCFG();
4492 }
4493
Mehdi Amini117296c2016-10-01 02:56:57 +00004494 StringRef getPassName() const override { return "SROA"; }
Chandler Carruth29a18a42015-09-12 09:09:14 +00004495};
4496
4497char SROALegacyPass::ID = 0;
4498
4499FunctionPass *llvm::createSROAPass() { return new SROALegacyPass(); }
4500
4501INITIALIZE_PASS_BEGIN(SROALegacyPass, "sroa",
4502 "Scalar Replacement Of Aggregates", false, false)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00004503INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruth29a18a42015-09-12 09:09:14 +00004504INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
4505INITIALIZE_PASS_END(SROALegacyPass, "sroa", "Scalar Replacement Of Aggregates",
4506 false, false)