blob: 0d7e3db901cb5773037aa489965d042f09142d17 [file] [log] [blame]
Adam Nemet938d3d62015-05-14 12:05:18 +00001//===- LoopDistribute.cpp - Loop Distribution Pass ------------------------===//
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//
10// This file implements the Loop Distribution Pass. Its main focus is to
11// distribute loops that cannot be vectorized due to dependence cycles. It
12// tries to isolate the offending dependences into a new loop allowing
13// vectorization of the remaining parts.
14//
15// For dependence analysis, the pass uses the LoopVectorizer's
16// LoopAccessAnalysis. Because this analysis presumes no change in the order of
17// memory operations, special care is taken to preserve the lexical order of
18// these operations.
19//
20// Similarly to the Vectorizer, the pass also supports loop versioning to
21// run-time disambiguate potentially overlapping arrays.
22//
23//===----------------------------------------------------------------------===//
24
Adam Nemetb2593f72016-07-18 16:29:27 +000025#include "llvm/Transforms/Scalar/LoopDistribute.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000026#include "llvm/ADT/DenseMap.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000027#include "llvm/ADT/DepthFirstIterator.h"
28#include "llvm/ADT/EquivalenceClasses.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000029#include "llvm/ADT/Optional.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000030#include "llvm/ADT/STLExtras.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000031#include "llvm/ADT/SmallPtrSet.h"
32#include "llvm/ADT/SmallVector.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000033#include "llvm/ADT/Statistic.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000034#include "llvm/ADT/StringRef.h"
35#include "llvm/ADT/Twine.h"
36#include "llvm/ADT/iterator_range.h"
37#include "llvm/Analysis/AliasAnalysis.h"
38#include "llvm/Analysis/AssumptionCache.h"
Eli Friedman66fdba82016-09-16 18:01:48 +000039#include "llvm/Analysis/GlobalsModRef.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000040#include "llvm/Analysis/LoopAccessAnalysis.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000041#include "llvm/Analysis/LoopAnalysisManager.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000042#include "llvm/Analysis/LoopInfo.h"
Adam Nemet0965da22017-10-09 23:19:02 +000043#include "llvm/Analysis/OptimizationRemarkEmitter.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000044#include "llvm/Analysis/ScalarEvolution.h"
45#include "llvm/Analysis/TargetLibraryInfo.h"
46#include "llvm/Analysis/TargetTransformInfo.h"
47#include "llvm/IR/BasicBlock.h"
48#include "llvm/IR/Constants.h"
Adam Nemet0ba164b2016-04-28 23:08:32 +000049#include "llvm/IR/DiagnosticInfo.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000050#include "llvm/IR/Dominators.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000051#include "llvm/IR/Function.h"
52#include "llvm/IR/InstrTypes.h"
53#include "llvm/IR/Instruction.h"
54#include "llvm/IR/Instructions.h"
55#include "llvm/IR/LLVMContext.h"
56#include "llvm/IR/Metadata.h"
57#include "llvm/IR/PassManager.h"
58#include "llvm/IR/Value.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000059#include "llvm/Pass.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000060#include "llvm/Support/Casting.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000061#include "llvm/Support/CommandLine.h"
62#include "llvm/Support/Debug.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000063#include "llvm/Support/raw_ostream.h"
64#include "llvm/Transforms/Scalar.h"
Adam Nemet938d3d62015-05-14 12:05:18 +000065#include "llvm/Transforms/Utils/BasicBlockUtils.h"
66#include "llvm/Transforms/Utils/Cloning.h"
Ashutosh Nemac5b7b552015-08-19 05:40:42 +000067#include "llvm/Transforms/Utils/LoopUtils.h"
Adam Nemet215746b2015-07-10 18:55:13 +000068#include "llvm/Transforms/Utils/LoopVersioning.h"
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000069#include "llvm/Transforms/Utils/ValueMapper.h"
70#include <cassert>
71#include <functional>
Adam Nemet938d3d62015-05-14 12:05:18 +000072#include <list>
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +000073#include <tuple>
74#include <utility>
75
76using namespace llvm;
Adam Nemet938d3d62015-05-14 12:05:18 +000077
78#define LDIST_NAME "loop-distribute"
79#define DEBUG_TYPE LDIST_NAME
80
Adam Nemet938d3d62015-05-14 12:05:18 +000081static cl::opt<bool>
82 LDistVerify("loop-distribute-verify", cl::Hidden,
83 cl::desc("Turn on DominatorTree and LoopInfo verification "
84 "after Loop Distribution"),
85 cl::init(false));
86
87static cl::opt<bool> DistributeNonIfConvertible(
88 "loop-distribute-non-if-convertible", cl::Hidden,
89 cl::desc("Whether to distribute into a loop that may not be "
90 "if-convertible by the loop vectorizer"),
91 cl::init(false));
92
Silviu Baranga2910a4f2015-11-09 13:26:09 +000093static cl::opt<unsigned> DistributeSCEVCheckThreshold(
94 "loop-distribute-scev-check-threshold", cl::init(8), cl::Hidden,
95 cl::desc("The maximum number of SCEV checks allowed for Loop "
96 "Distribution"));
97
Adam Nemetd2fa4142016-04-27 05:28:18 +000098static cl::opt<unsigned> PragmaDistributeSCEVCheckThreshold(
99 "loop-distribute-scev-check-threshold-with-pragma", cl::init(128),
100 cl::Hidden,
101 cl::desc(
102 "The maximum number of SCEV checks allowed for Loop "
103 "Distribution for loop marked with #pragma loop distribute(enable)"));
104
Adam Nemetd2fa4142016-04-27 05:28:18 +0000105static cl::opt<bool> EnableLoopDistribute(
106 "enable-loop-distribute", cl::Hidden,
Adam Nemet32e6a342016-12-21 04:07:40 +0000107 cl::desc("Enable the new, experimental LoopDistribution Pass"),
108 cl::init(false));
Adam Nemetd2fa4142016-04-27 05:28:18 +0000109
Adam Nemet938d3d62015-05-14 12:05:18 +0000110STATISTIC(NumLoopsDistributed, "Number of loops distributed");
111
Adam Nemet2f85b732015-05-14 12:33:32 +0000112namespace {
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000113
Adam Nemet938d3d62015-05-14 12:05:18 +0000114/// \brief Maintains the set of instructions of the loop for a partition before
115/// cloning. After cloning, it hosts the new loop.
116class InstPartition {
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000117 using InstructionSet = SmallPtrSet<Instruction *, 8>;
Adam Nemet938d3d62015-05-14 12:05:18 +0000118
119public:
120 InstPartition(Instruction *I, Loop *L, bool DepCycle = false)
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000121 : DepCycle(DepCycle), OrigLoop(L) {
Adam Nemet938d3d62015-05-14 12:05:18 +0000122 Set.insert(I);
123 }
124
125 /// \brief Returns whether this partition contains a dependence cycle.
126 bool hasDepCycle() const { return DepCycle; }
127
128 /// \brief Adds an instruction to this partition.
129 void add(Instruction *I) { Set.insert(I); }
130
131 /// \brief Collection accessors.
132 InstructionSet::iterator begin() { return Set.begin(); }
133 InstructionSet::iterator end() { return Set.end(); }
134 InstructionSet::const_iterator begin() const { return Set.begin(); }
135 InstructionSet::const_iterator end() const { return Set.end(); }
136 bool empty() const { return Set.empty(); }
137
138 /// \brief Moves this partition into \p Other. This partition becomes empty
139 /// after this.
140 void moveTo(InstPartition &Other) {
141 Other.Set.insert(Set.begin(), Set.end());
142 Set.clear();
143 Other.DepCycle |= DepCycle;
144 }
145
146 /// \brief Populates the partition with a transitive closure of all the
147 /// instructions that the seeded instructions dependent on.
148 void populateUsedSet() {
149 // FIXME: We currently don't use control-dependence but simply include all
150 // blocks (possibly empty at the end) and let simplifycfg mostly clean this
151 // up.
152 for (auto *B : OrigLoop->getBlocks())
153 Set.insert(B->getTerminator());
154
155 // Follow the use-def chains to form a transitive closure of all the
156 // instructions that the originally seeded instructions depend on.
157 SmallVector<Instruction *, 8> Worklist(Set.begin(), Set.end());
158 while (!Worklist.empty()) {
159 Instruction *I = Worklist.pop_back_val();
160 // Insert instructions from the loop that we depend on.
161 for (Value *V : I->operand_values()) {
162 auto *I = dyn_cast<Instruction>(V);
163 if (I && OrigLoop->contains(I->getParent()) && Set.insert(I).second)
164 Worklist.push_back(I);
165 }
166 }
167 }
168
169 /// \brief Clones the original loop.
170 ///
171 /// Updates LoopInfo and DominatorTree using the information that block \p
172 /// LoopDomBB dominates the loop.
173 Loop *cloneLoopWithPreheader(BasicBlock *InsertBefore, BasicBlock *LoopDomBB,
174 unsigned Index, LoopInfo *LI,
175 DominatorTree *DT) {
176 ClonedLoop = ::cloneLoopWithPreheader(InsertBefore, LoopDomBB, OrigLoop,
177 VMap, Twine(".ldist") + Twine(Index),
178 LI, DT, ClonedLoopBlocks);
179 return ClonedLoop;
180 }
181
182 /// \brief The cloned loop. If this partition is mapped to the original loop,
183 /// this is null.
184 const Loop *getClonedLoop() const { return ClonedLoop; }
185
186 /// \brief Returns the loop where this partition ends up after distribution.
187 /// If this partition is mapped to the original loop then use the block from
188 /// the loop.
189 const Loop *getDistributedLoop() const {
190 return ClonedLoop ? ClonedLoop : OrigLoop;
191 }
192
193 /// \brief The VMap that is populated by cloning and then used in
194 /// remapinstruction to remap the cloned instructions.
195 ValueToValueMapTy &getVMap() { return VMap; }
196
197 /// \brief Remaps the cloned instructions using VMap.
Adam Nemet1a689182015-07-10 18:55:09 +0000198 void remapInstructions() {
199 remapInstructionsInBlocks(ClonedLoopBlocks, VMap);
200 }
Adam Nemet938d3d62015-05-14 12:05:18 +0000201
202 /// \brief Based on the set of instructions selected for this partition,
203 /// removes the unnecessary ones.
204 void removeUnusedInsts() {
205 SmallVector<Instruction *, 8> Unused;
206
207 for (auto *Block : OrigLoop->getBlocks())
208 for (auto &Inst : *Block)
209 if (!Set.count(&Inst)) {
210 Instruction *NewInst = &Inst;
211 if (!VMap.empty())
212 NewInst = cast<Instruction>(VMap[NewInst]);
213
214 assert(!isa<BranchInst>(NewInst) &&
215 "Branches are marked used early on");
216 Unused.push_back(NewInst);
217 }
218
219 // Delete the instructions backwards, as it has a reduced likelihood of
220 // having to update as many def-use and use-def chains.
David Majnemerd7708772016-06-24 04:05:21 +0000221 for (auto *Inst : reverse(Unused)) {
Adam Nemet938d3d62015-05-14 12:05:18 +0000222 if (!Inst->use_empty())
223 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
224 Inst->eraseFromParent();
225 }
226 }
227
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000228 void print() const {
Adam Nemet938d3d62015-05-14 12:05:18 +0000229 if (DepCycle)
230 dbgs() << " (cycle)\n";
231 for (auto *I : Set)
232 // Prefix with the block name.
233 dbgs() << " " << I->getParent()->getName() << ":" << *I << "\n";
234 }
235
236 void printBlocks() const {
237 for (auto *BB : getDistributedLoop()->getBlocks())
238 dbgs() << *BB;
239 }
240
241private:
242 /// \brief Instructions from OrigLoop selected for this partition.
243 InstructionSet Set;
244
245 /// \brief Whether this partition contains a dependence cycle.
246 bool DepCycle;
247
248 /// \brief The original loop.
249 Loop *OrigLoop;
250
251 /// \brief The cloned loop. If this partition is mapped to the original loop,
252 /// this is null.
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000253 Loop *ClonedLoop = nullptr;
Adam Nemet938d3d62015-05-14 12:05:18 +0000254
255 /// \brief The blocks of ClonedLoop including the preheader. If this
256 /// partition is mapped to the original loop, this is empty.
257 SmallVector<BasicBlock *, 8> ClonedLoopBlocks;
258
259 /// \brief These gets populated once the set of instructions have been
260 /// finalized. If this partition is mapped to the original loop, these are not
261 /// set.
262 ValueToValueMapTy VMap;
263};
264
265/// \brief Holds the set of Partitions. It populates them, merges them and then
266/// clones the loops.
267class InstPartitionContainer {
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000268 using InstToPartitionIdT = DenseMap<Instruction *, int>;
Adam Nemet938d3d62015-05-14 12:05:18 +0000269
270public:
271 InstPartitionContainer(Loop *L, LoopInfo *LI, DominatorTree *DT)
272 : L(L), LI(LI), DT(DT) {}
273
274 /// \brief Returns the number of partitions.
275 unsigned getSize() const { return PartitionContainer.size(); }
276
277 /// \brief Adds \p Inst into the current partition if that is marked to
278 /// contain cycles. Otherwise start a new partition for it.
279 void addToCyclicPartition(Instruction *Inst) {
280 // If the current partition is non-cyclic. Start a new one.
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000281 if (PartitionContainer.empty() || !PartitionContainer.back().hasDepCycle())
282 PartitionContainer.emplace_back(Inst, L, /*DepCycle=*/true);
Adam Nemet938d3d62015-05-14 12:05:18 +0000283 else
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000284 PartitionContainer.back().add(Inst);
Adam Nemet938d3d62015-05-14 12:05:18 +0000285 }
286
287 /// \brief Adds \p Inst into a partition that is not marked to contain
288 /// dependence cycles.
289 ///
290 // Initially we isolate memory instructions into as many partitions as
291 // possible, then later we may merge them back together.
292 void addToNewNonCyclicPartition(Instruction *Inst) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000293 PartitionContainer.emplace_back(Inst, L);
Adam Nemet938d3d62015-05-14 12:05:18 +0000294 }
295
296 /// \brief Merges adjacent non-cyclic partitions.
297 ///
298 /// The idea is that we currently only want to isolate the non-vectorizable
299 /// partition. We could later allow more distribution among these partition
300 /// too.
301 void mergeAdjacentNonCyclic() {
302 mergeAdjacentPartitionsIf(
303 [](const InstPartition *P) { return !P->hasDepCycle(); });
304 }
305
306 /// \brief If a partition contains only conditional stores, we won't vectorize
307 /// it. Try to merge it with a previous cyclic partition.
308 void mergeNonIfConvertible() {
309 mergeAdjacentPartitionsIf([&](const InstPartition *Partition) {
310 if (Partition->hasDepCycle())
311 return true;
312
313 // Now, check if all stores are conditional in this partition.
314 bool seenStore = false;
315
316 for (auto *Inst : *Partition)
317 if (isa<StoreInst>(Inst)) {
318 seenStore = true;
319 if (!LoopAccessInfo::blockNeedsPredication(Inst->getParent(), L, DT))
320 return false;
321 }
322 return seenStore;
323 });
324 }
325
326 /// \brief Merges the partitions according to various heuristics.
327 void mergeBeforePopulating() {
328 mergeAdjacentNonCyclic();
329 if (!DistributeNonIfConvertible)
330 mergeNonIfConvertible();
331 }
332
333 /// \brief Merges partitions in order to ensure that no loads are duplicated.
334 ///
335 /// We can't duplicate loads because that could potentially reorder them.
336 /// LoopAccessAnalysis provides dependency information with the context that
337 /// the order of memory operation is preserved.
338 ///
339 /// Return if any partitions were merged.
340 bool mergeToAvoidDuplicatedLoads() {
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000341 using LoadToPartitionT = DenseMap<Instruction *, InstPartition *>;
342 using ToBeMergedT = EquivalenceClasses<InstPartition *>;
Adam Nemet938d3d62015-05-14 12:05:18 +0000343
344 LoadToPartitionT LoadToPartition;
345 ToBeMergedT ToBeMerged;
346
347 // Step through the partitions and create equivalence between partitions
348 // that contain the same load. Also put partitions in between them in the
349 // same equivalence class to avoid reordering of memory operations.
350 for (PartitionContainerT::iterator I = PartitionContainer.begin(),
351 E = PartitionContainer.end();
352 I != E; ++I) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000353 auto *PartI = &*I;
Adam Nemet938d3d62015-05-14 12:05:18 +0000354
355 // If a load occurs in two partitions PartI and PartJ, merge all
356 // partitions (PartI, PartJ] into PartI.
357 for (Instruction *Inst : *PartI)
358 if (isa<LoadInst>(Inst)) {
359 bool NewElt;
360 LoadToPartitionT::iterator LoadToPart;
361
362 std::tie(LoadToPart, NewElt) =
363 LoadToPartition.insert(std::make_pair(Inst, PartI));
364 if (!NewElt) {
365 DEBUG(dbgs() << "Merging partitions due to this load in multiple "
366 << "partitions: " << PartI << ", "
367 << LoadToPart->second << "\n" << *Inst << "\n");
368
369 auto PartJ = I;
370 do {
371 --PartJ;
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000372 ToBeMerged.unionSets(PartI, &*PartJ);
373 } while (&*PartJ != LoadToPart->second);
Adam Nemet938d3d62015-05-14 12:05:18 +0000374 }
375 }
376 }
377 if (ToBeMerged.empty())
378 return false;
379
380 // Merge the member of an equivalence class into its class leader. This
381 // makes the members empty.
382 for (ToBeMergedT::iterator I = ToBeMerged.begin(), E = ToBeMerged.end();
383 I != E; ++I) {
384 if (!I->isLeader())
385 continue;
386
387 auto PartI = I->getData();
388 for (auto PartJ : make_range(std::next(ToBeMerged.member_begin(I)),
389 ToBeMerged.member_end())) {
390 PartJ->moveTo(*PartI);
391 }
392 }
393
394 // Remove the empty partitions.
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000395 PartitionContainer.remove_if(
396 [](const InstPartition &P) { return P.empty(); });
Adam Nemet938d3d62015-05-14 12:05:18 +0000397
398 return true;
399 }
400
401 /// \brief Sets up the mapping between instructions to partitions. If the
402 /// instruction is duplicated across multiple partitions, set the entry to -1.
403 void setupPartitionIdOnInstructions() {
404 int PartitionID = 0;
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000405 for (const auto &Partition : PartitionContainer) {
406 for (Instruction *Inst : Partition) {
Adam Nemet938d3d62015-05-14 12:05:18 +0000407 bool NewElt;
408 InstToPartitionIdT::iterator Iter;
409
410 std::tie(Iter, NewElt) =
411 InstToPartitionId.insert(std::make_pair(Inst, PartitionID));
412 if (!NewElt)
413 Iter->second = -1;
414 }
415 ++PartitionID;
416 }
417 }
418
419 /// \brief Populates the partition with everything that the seeding
420 /// instructions require.
421 void populateUsedSet() {
422 for (auto &P : PartitionContainer)
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000423 P.populateUsedSet();
Adam Nemet938d3d62015-05-14 12:05:18 +0000424 }
425
426 /// \brief This performs the main chunk of the work of cloning the loops for
427 /// the partitions.
Justin Bogner843fb202015-12-15 19:40:57 +0000428 void cloneLoops() {
Adam Nemet938d3d62015-05-14 12:05:18 +0000429 BasicBlock *OrigPH = L->getLoopPreheader();
430 // At this point the predecessor of the preheader is either the memcheck
431 // block or the top part of the original preheader.
432 BasicBlock *Pred = OrigPH->getSinglePredecessor();
433 assert(Pred && "Preheader does not have a single predecessor");
434 BasicBlock *ExitBlock = L->getExitBlock();
435 assert(ExitBlock && "No single exit block");
436 Loop *NewLoop;
437
438 assert(!PartitionContainer.empty() && "at least two partitions expected");
439 // We're cloning the preheader along with the loop so we already made sure
440 // it was empty.
441 assert(&*OrigPH->begin() == OrigPH->getTerminator() &&
442 "preheader not empty");
443
444 // Create a loop for each partition except the last. Clone the original
445 // loop before PH along with adding a preheader for the cloned loop. Then
446 // update PH to point to the newly added preheader.
447 BasicBlock *TopPH = OrigPH;
448 unsigned Index = getSize() - 1;
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000449 for (auto I = std::next(PartitionContainer.rbegin()),
450 E = PartitionContainer.rend();
Adam Nemet938d3d62015-05-14 12:05:18 +0000451 I != E; ++I, --Index, TopPH = NewLoop->getLoopPreheader()) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000452 auto *Part = &*I;
Adam Nemet938d3d62015-05-14 12:05:18 +0000453
454 NewLoop = Part->cloneLoopWithPreheader(TopPH, Pred, Index, LI, DT);
455
456 Part->getVMap()[ExitBlock] = TopPH;
457 Part->remapInstructions();
458 }
459 Pred->getTerminator()->replaceUsesOfWith(OrigPH, TopPH);
460
461 // Now go in forward order and update the immediate dominator for the
462 // preheaders with the exiting block of the previous loop. Dominance
463 // within the loop is updated in cloneLoopWithPreheader.
464 for (auto Curr = PartitionContainer.cbegin(),
465 Next = std::next(PartitionContainer.cbegin()),
466 E = PartitionContainer.cend();
467 Next != E; ++Curr, ++Next)
468 DT->changeImmediateDominator(
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000469 Next->getDistributedLoop()->getLoopPreheader(),
470 Curr->getDistributedLoop()->getExitingBlock());
Adam Nemet938d3d62015-05-14 12:05:18 +0000471 }
472
473 /// \brief Removes the dead instructions from the cloned loops.
474 void removeUnusedInsts() {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000475 for (auto &Partition : PartitionContainer)
476 Partition.removeUnusedInsts();
Adam Nemet938d3d62015-05-14 12:05:18 +0000477 }
478
479 /// \brief For each memory pointer, it computes the partitionId the pointer is
480 /// used in.
481 ///
482 /// This returns an array of int where the I-th entry corresponds to I-th
483 /// entry in LAI.getRuntimePointerCheck(). If the pointer is used in multiple
484 /// partitions its entry is set to -1.
485 SmallVector<int, 8>
486 computePartitionSetForPointers(const LoopAccessInfo &LAI) {
Adam Nemet7cdebac2015-07-14 22:32:44 +0000487 const RuntimePointerChecking *RtPtrCheck = LAI.getRuntimePointerChecking();
Adam Nemet938d3d62015-05-14 12:05:18 +0000488
489 unsigned N = RtPtrCheck->Pointers.size();
490 SmallVector<int, 8> PtrToPartitions(N);
491 for (unsigned I = 0; I < N; ++I) {
Adam Nemet9f7dedc2015-07-14 22:32:50 +0000492 Value *Ptr = RtPtrCheck->Pointers[I].PointerValue;
Adam Nemet938d3d62015-05-14 12:05:18 +0000493 auto Instructions =
Adam Nemet9f7dedc2015-07-14 22:32:50 +0000494 LAI.getInstructionsForAccess(Ptr, RtPtrCheck->Pointers[I].IsWritePtr);
Adam Nemet938d3d62015-05-14 12:05:18 +0000495
496 int &Partition = PtrToPartitions[I];
497 // First set it to uninitialized.
498 Partition = -2;
499 for (Instruction *Inst : Instructions) {
500 // Note that this could be -1 if Inst is duplicated across multiple
501 // partitions.
502 int ThisPartition = this->InstToPartitionId[Inst];
503 if (Partition == -2)
504 Partition = ThisPartition;
505 // -1 means belonging to multiple partitions.
506 else if (Partition == -1)
507 break;
508 else if (Partition != (int)ThisPartition)
509 Partition = -1;
510 }
511 assert(Partition != -2 && "Pointer not belonging to any partition");
512 }
513
514 return PtrToPartitions;
515 }
516
517 void print(raw_ostream &OS) const {
518 unsigned Index = 0;
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000519 for (const auto &P : PartitionContainer) {
520 OS << "Partition " << Index++ << " (" << &P << "):\n";
521 P.print();
Adam Nemet938d3d62015-05-14 12:05:18 +0000522 }
523 }
524
525 void dump() const { print(dbgs()); }
526
527#ifndef NDEBUG
528 friend raw_ostream &operator<<(raw_ostream &OS,
529 const InstPartitionContainer &Partitions) {
530 Partitions.print(OS);
531 return OS;
532 }
533#endif
534
535 void printBlocks() const {
536 unsigned Index = 0;
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000537 for (const auto &P : PartitionContainer) {
538 dbgs() << "\nPartition " << Index++ << " (" << &P << "):\n";
539 P.printBlocks();
Adam Nemet938d3d62015-05-14 12:05:18 +0000540 }
541 }
542
543private:
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000544 using PartitionContainerT = std::list<InstPartition>;
Adam Nemet938d3d62015-05-14 12:05:18 +0000545
546 /// \brief List of partitions.
547 PartitionContainerT PartitionContainer;
548
549 /// \brief Mapping from Instruction to partition Id. If the instruction
550 /// belongs to multiple partitions the entry contains -1.
551 InstToPartitionIdT InstToPartitionId;
552
553 Loop *L;
554 LoopInfo *LI;
555 DominatorTree *DT;
556
557 /// \brief The control structure to merge adjacent partitions if both satisfy
558 /// the \p Predicate.
559 template <class UnaryPredicate>
560 void mergeAdjacentPartitionsIf(UnaryPredicate Predicate) {
561 InstPartition *PrevMatch = nullptr;
562 for (auto I = PartitionContainer.begin(); I != PartitionContainer.end();) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000563 auto DoesMatch = Predicate(&*I);
Adam Nemet938d3d62015-05-14 12:05:18 +0000564 if (PrevMatch == nullptr && DoesMatch) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000565 PrevMatch = &*I;
Adam Nemet938d3d62015-05-14 12:05:18 +0000566 ++I;
567 } else if (PrevMatch != nullptr && DoesMatch) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000568 I->moveTo(*PrevMatch);
Adam Nemet938d3d62015-05-14 12:05:18 +0000569 I = PartitionContainer.erase(I);
570 } else {
571 PrevMatch = nullptr;
572 ++I;
573 }
574 }
575 }
576};
577
578/// \brief For each memory instruction, this class maintains difference of the
579/// number of unsafe dependences that start out from this instruction minus
580/// those that end here.
581///
582/// By traversing the memory instructions in program order and accumulating this
583/// number, we know whether any unsafe dependence crosses over a program point.
584class MemoryInstructionDependences {
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000585 using Dependence = MemoryDepChecker::Dependence;
Adam Nemet938d3d62015-05-14 12:05:18 +0000586
587public:
588 struct Entry {
589 Instruction *Inst;
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000590 unsigned NumUnsafeDependencesStartOrEnd = 0;
Adam Nemet938d3d62015-05-14 12:05:18 +0000591
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000592 Entry(Instruction *Inst) : Inst(Inst) {}
Adam Nemet938d3d62015-05-14 12:05:18 +0000593 };
594
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000595 using AccessesType = SmallVector<Entry, 8>;
Adam Nemet938d3d62015-05-14 12:05:18 +0000596
597 AccessesType::const_iterator begin() const { return Accesses.begin(); }
598 AccessesType::const_iterator end() const { return Accesses.end(); }
599
600 MemoryInstructionDependences(
601 const SmallVectorImpl<Instruction *> &Instructions,
Adam Nemeta2df7502015-11-03 21:39:52 +0000602 const SmallVectorImpl<Dependence> &Dependences) {
Benjamin Kramere6987bf2015-05-21 18:32:07 +0000603 Accesses.append(Instructions.begin(), Instructions.end());
Adam Nemet938d3d62015-05-14 12:05:18 +0000604
605 DEBUG(dbgs() << "Backward dependences:\n");
Adam Nemeta2df7502015-11-03 21:39:52 +0000606 for (auto &Dep : Dependences)
Adam Nemet938d3d62015-05-14 12:05:18 +0000607 if (Dep.isPossiblyBackward()) {
608 // Note that the designations source and destination follow the program
609 // order, i.e. source is always first. (The direction is given by the
610 // DepType.)
611 ++Accesses[Dep.Source].NumUnsafeDependencesStartOrEnd;
612 --Accesses[Dep.Destination].NumUnsafeDependencesStartOrEnd;
613
614 DEBUG(Dep.print(dbgs(), 2, Instructions));
615 }
616 }
617
618private:
619 AccessesType Accesses;
620};
621
Adam Nemet61399ac2016-04-27 00:31:03 +0000622/// \brief The actual class performing the per-loop work.
623class LoopDistributeForLoop {
Adam Nemet938d3d62015-05-14 12:05:18 +0000624public:
Adam Nemeteff76642016-05-13 04:20:31 +0000625 LoopDistributeForLoop(Loop *L, Function *F, LoopInfo *LI, DominatorTree *DT,
Adam Nemetaad81602016-07-15 17:23:20 +0000626 ScalarEvolution *SE, OptimizationRemarkEmitter *ORE)
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000627 : L(L), F(F), LI(LI), DT(DT), SE(SE), ORE(ORE) {
Adam Nemetd2fa4142016-04-27 05:28:18 +0000628 setForced();
629 }
Adam Nemetc75ad692015-07-30 03:29:16 +0000630
Adam Nemet938d3d62015-05-14 12:05:18 +0000631 /// \brief Try to distribute an inner-most loop.
Adam Nemetb2593f72016-07-18 16:29:27 +0000632 bool processLoop(std::function<const LoopAccessInfo &(Loop &)> &GetLAA) {
Adam Nemet938d3d62015-05-14 12:05:18 +0000633 assert(L->empty() && "Only process inner loops.");
634
635 DEBUG(dbgs() << "\nLDist: In \"" << L->getHeader()->getParent()->getName()
636 << "\" checking " << *L << "\n");
637
Adam Nemet7f38e112016-04-28 23:08:27 +0000638 if (!L->getExitBlock())
Adam Nemetf744ad72016-09-30 04:56:25 +0000639 return fail("MultipleExitBlocks", "multiple exit blocks");
Florian Hahn2e032132016-12-19 17:13:37 +0000640 if (!L->isLoopSimplifyForm())
641 return fail("NotLoopSimplifyForm",
642 "loop is not in loop-simplify form");
643
644 BasicBlock *PH = L->getLoopPreheader();
Adam Nemeteff76642016-05-13 04:20:31 +0000645
Adam Nemet938d3d62015-05-14 12:05:18 +0000646 // LAA will check that we only have a single exiting block.
Adam Nemetb2593f72016-07-18 16:29:27 +0000647 LAI = &GetLAA(*L);
Adam Nemet938d3d62015-05-14 12:05:18 +0000648
Adam Nemet938d3d62015-05-14 12:05:18 +0000649 // Currently, we only distribute to isolate the part of the loop with
650 // dependence cycles to enable partial vectorization.
Adam Nemeteff76642016-05-13 04:20:31 +0000651 if (LAI->canVectorizeMemory())
Adam Nemetf744ad72016-09-30 04:56:25 +0000652 return fail("MemOpsCanBeVectorized",
653 "memory operations are safe for vectorization");
Adam Nemet7f38e112016-04-28 23:08:27 +0000654
Adam Nemeteff76642016-05-13 04:20:31 +0000655 auto *Dependences = LAI->getDepChecker().getDependences();
Adam Nemet7f38e112016-04-28 23:08:27 +0000656 if (!Dependences || Dependences->empty())
Adam Nemetf744ad72016-09-30 04:56:25 +0000657 return fail("NoUnsafeDeps", "no unsafe dependences to isolate");
Adam Nemet938d3d62015-05-14 12:05:18 +0000658
659 InstPartitionContainer Partitions(L, LI, DT);
660
661 // First, go through each memory operation and assign them to consecutive
662 // partitions (the order of partitions follows program order). Put those
663 // with unsafe dependences into "cyclic" partition otherwise put each store
664 // in its own "non-cyclic" partition (we'll merge these later).
665 //
666 // Note that a memory operation (e.g. Load2 below) at a program point that
667 // has an unsafe dependence (Store3->Load1) spanning over it must be
668 // included in the same cyclic partition as the dependent operations. This
669 // is to preserve the original program order after distribution. E.g.:
670 //
671 // NumUnsafeDependencesStartOrEnd NumUnsafeDependencesActive
672 // Load1 -. 1 0->1
673 // Load2 | /Unsafe/ 0 1
674 // Store3 -' -1 1->0
675 // Load4 0 0
676 //
677 // NumUnsafeDependencesActive > 0 indicates this situation and in this case
678 // we just keep assigning to the same cyclic partition until
679 // NumUnsafeDependencesActive reaches 0.
Adam Nemeteff76642016-05-13 04:20:31 +0000680 const MemoryDepChecker &DepChecker = LAI->getDepChecker();
Adam Nemet938d3d62015-05-14 12:05:18 +0000681 MemoryInstructionDependences MID(DepChecker.getMemoryInstructions(),
Adam Nemeta2df7502015-11-03 21:39:52 +0000682 *Dependences);
Adam Nemet938d3d62015-05-14 12:05:18 +0000683
684 int NumUnsafeDependencesActive = 0;
685 for (auto &InstDep : MID) {
686 Instruction *I = InstDep.Inst;
687 // We update NumUnsafeDependencesActive post-instruction, catch the
688 // start of a dependence directly via NumUnsafeDependencesStartOrEnd.
689 if (NumUnsafeDependencesActive ||
690 InstDep.NumUnsafeDependencesStartOrEnd > 0)
691 Partitions.addToCyclicPartition(I);
692 else
693 Partitions.addToNewNonCyclicPartition(I);
694 NumUnsafeDependencesActive += InstDep.NumUnsafeDependencesStartOrEnd;
695 assert(NumUnsafeDependencesActive >= 0 &&
696 "Negative number of dependences active");
697 }
698
699 // Add partitions for values used outside. These partitions can be out of
700 // order from the original program order. This is OK because if the
701 // partition uses a load we will merge this partition with the original
702 // partition of the load that we set up in the previous loop (see
703 // mergeToAvoidDuplicatedLoads).
704 auto DefsUsedOutside = findDefsUsedOutsideOfLoop(L);
705 for (auto *Inst : DefsUsedOutside)
706 Partitions.addToNewNonCyclicPartition(Inst);
707
708 DEBUG(dbgs() << "Seeded partitions:\n" << Partitions);
709 if (Partitions.getSize() < 2)
Adam Nemetf744ad72016-09-30 04:56:25 +0000710 return fail("CantIsolateUnsafeDeps",
711 "cannot isolate unsafe dependencies");
Adam Nemet938d3d62015-05-14 12:05:18 +0000712
713 // Run the merge heuristics: Merge non-cyclic adjacent partitions since we
714 // should be able to vectorize these together.
715 Partitions.mergeBeforePopulating();
716 DEBUG(dbgs() << "\nMerged partitions:\n" << Partitions);
717 if (Partitions.getSize() < 2)
Adam Nemetf744ad72016-09-30 04:56:25 +0000718 return fail("CantIsolateUnsafeDeps",
719 "cannot isolate unsafe dependencies");
Adam Nemet938d3d62015-05-14 12:05:18 +0000720
721 // Now, populate the partitions with non-memory operations.
722 Partitions.populateUsedSet();
723 DEBUG(dbgs() << "\nPopulated partitions:\n" << Partitions);
724
725 // In order to preserve original lexical order for loads, keep them in the
726 // partition that we set up in the MemoryInstructionDependences loop.
727 if (Partitions.mergeToAvoidDuplicatedLoads()) {
728 DEBUG(dbgs() << "\nPartitions merged to ensure unique loads:\n"
729 << Partitions);
730 if (Partitions.getSize() < 2)
Adam Nemetf744ad72016-09-30 04:56:25 +0000731 return fail("CantIsolateUnsafeDeps",
732 "cannot isolate unsafe dependencies");
Adam Nemet938d3d62015-05-14 12:05:18 +0000733 }
734
Silviu Baranga2910a4f2015-11-09 13:26:09 +0000735 // Don't distribute the loop if we need too many SCEV run-time checks.
Xinliang David Li94734ee2016-07-01 05:59:55 +0000736 const SCEVUnionPredicate &Pred = LAI->getPSE().getUnionPredicate();
Adam Nemetd2fa4142016-04-27 05:28:18 +0000737 if (Pred.getComplexity() > (IsForced.getValueOr(false)
738 ? PragmaDistributeSCEVCheckThreshold
Adam Nemet7f38e112016-04-28 23:08:27 +0000739 : DistributeSCEVCheckThreshold))
Adam Nemetf744ad72016-09-30 04:56:25 +0000740 return fail("TooManySCEVRuntimeChecks",
741 "too many SCEV run-time checks needed.\n");
Silviu Baranga2910a4f2015-11-09 13:26:09 +0000742
Adam Nemet938d3d62015-05-14 12:05:18 +0000743 DEBUG(dbgs() << "\nDistributing loop: " << *L << "\n");
744 // We're done forming the partitions set up the reverse mapping from
745 // instructions to partitions.
746 Partitions.setupPartitionIdOnInstructions();
747
748 // To keep things simple have an empty preheader before we version or clone
749 // the loop. (Also split if this has no predecessor, i.e. entry, because we
750 // rely on PH having a predecessor.)
751 if (!PH->getSinglePredecessor() || &*PH->begin() != PH->getTerminator())
752 SplitBlock(PH, PH->getTerminator(), DT, LI);
753
Silviu Baranga2910a4f2015-11-09 13:26:09 +0000754 // If we need run-time checks, version the loop now.
Adam Nemeteff76642016-05-13 04:20:31 +0000755 auto PtrToPartition = Partitions.computePartitionSetForPointers(*LAI);
756 const auto *RtPtrChecking = LAI->getRuntimePointerChecking();
Adam Nemet15840392015-08-07 22:44:15 +0000757 const auto &AllChecks = RtPtrChecking->getChecks();
Adam Nemetc75ad692015-07-30 03:29:16 +0000758 auto Checks = includeOnlyCrossPartitionChecks(AllChecks, PtrToPartition,
759 RtPtrChecking);
Silviu Baranga2910a4f2015-11-09 13:26:09 +0000760
761 if (!Pred.isAlwaysTrue() || !Checks.empty()) {
Adam Nemet772a1502015-06-19 19:32:41 +0000762 DEBUG(dbgs() << "\nPointers:\n");
Adam Nemeteff76642016-05-13 04:20:31 +0000763 DEBUG(LAI->getRuntimePointerChecking()->printChecks(dbgs(), Checks));
764 LoopVersioning LVer(*LAI, L, LI, DT, SE, false);
Silviu Baranga2910a4f2015-11-09 13:26:09 +0000765 LVer.setAliasChecks(std::move(Checks));
Xinliang David Li94734ee2016-07-01 05:59:55 +0000766 LVer.setSCEVChecks(LAI->getPSE().getUnionPredicate());
Adam Nemete4813402015-08-20 17:22:29 +0000767 LVer.versionLoop(DefsUsedOutside);
Adam Nemet5eccf072016-03-17 20:32:32 +0000768 LVer.annotateLoopWithNoAlias();
Adam Nemet938d3d62015-05-14 12:05:18 +0000769 }
770
771 // Create identical copies of the original loop for each partition and hook
772 // them up sequentially.
Justin Bogner843fb202015-12-15 19:40:57 +0000773 Partitions.cloneLoops();
Adam Nemet938d3d62015-05-14 12:05:18 +0000774
775 // Now, we remove the instruction from each loop that don't belong to that
776 // partition.
777 Partitions.removeUnusedInsts();
778 DEBUG(dbgs() << "\nAfter removing unused Instrs:\n");
779 DEBUG(Partitions.printBlocks());
780
781 if (LDistVerify) {
Michael Zolotukhine0b2d972016-08-31 19:26:19 +0000782 LI->verify(*DT);
Adam Nemet938d3d62015-05-14 12:05:18 +0000783 DT->verifyDomTree();
784 }
785
786 ++NumLoopsDistributed;
Adam Nemet88ec4912016-04-29 07:10:46 +0000787 // Report the success.
Vivek Pandya95906582017-10-11 17:12:59 +0000788 ORE->emit([&]() {
789 return OptimizationRemark(LDIST_NAME, "Distribute", L->getStartLoc(),
790 L->getHeader())
791 << "distributed loop";
792 });
Adam Nemet938d3d62015-05-14 12:05:18 +0000793 return true;
794 }
795
Adam Nemet7f38e112016-04-28 23:08:27 +0000796 /// \brief Provide diagnostics then \return with false.
Adam Nemetf744ad72016-09-30 04:56:25 +0000797 bool fail(StringRef RemarkName, StringRef Message) {
Adam Nemet0ba164b2016-04-28 23:08:32 +0000798 LLVMContext &Ctx = F->getContext();
799 bool Forced = isForced().getValueOr(false);
800
Adam Nemetadeccf72016-04-28 23:08:30 +0000801 DEBUG(dbgs() << "Skipping; " << Message << "\n");
Adam Nemet0ba164b2016-04-28 23:08:32 +0000802
803 // With Rpass-missed report that distribution failed.
Vivek Pandya95906582017-10-11 17:12:59 +0000804 ORE->emit([&]() {
805 return OptimizationRemarkMissed(LDIST_NAME, "NotDistributed",
806 L->getStartLoc(), L->getHeader())
807 << "loop not distributed: use -Rpass-analysis=loop-distribute for "
808 "more "
809 "info";
810 });
Adam Nemet0ba164b2016-04-28 23:08:32 +0000811
812 // With Rpass-analysis report why. This is on by default if distribution
813 // was requested explicitly.
Adam Nemetf744ad72016-09-30 04:56:25 +0000814 ORE->emit(OptimizationRemarkAnalysis(
815 Forced ? OptimizationRemarkAnalysis::AlwaysPrint : LDIST_NAME,
816 RemarkName, L->getStartLoc(), L->getHeader())
817 << "loop not distributed: " << Message);
Adam Nemet0ba164b2016-04-28 23:08:32 +0000818
819 // Also issue a warning if distribution was requested explicitly but it
820 // failed.
821 if (Forced)
822 Ctx.diagnose(DiagnosticInfoOptimizationFailure(
Adam Nemet74730d92016-07-14 22:33:46 +0000823 *F, L->getStartLoc(), "loop not distributed: failed "
Adam Nemet0ba164b2016-04-28 23:08:32 +0000824 "explicitly specified loop distribution"));
825
Adam Nemet7f38e112016-04-28 23:08:27 +0000826 return false;
827 }
828
Adam Nemetd2fa4142016-04-27 05:28:18 +0000829 /// \brief Return if distribution forced to be enabled/disabled for the loop.
830 ///
831 /// If the optional has a value, it indicates whether distribution was forced
832 /// to be enabled (true) or disabled (false). If the optional has no value
833 /// distribution was not forced either way.
834 const Optional<bool> &isForced() const { return IsForced; }
835
Adam Nemet61399ac2016-04-27 00:31:03 +0000836private:
837 /// \brief Filter out checks between pointers from the same partition.
838 ///
839 /// \p PtrToPartition contains the partition number for pointers. Partition
840 /// number -1 means that the pointer is used in multiple partitions. In this
841 /// case we can't safely omit the check.
842 SmallVector<RuntimePointerChecking::PointerCheck, 4>
843 includeOnlyCrossPartitionChecks(
844 const SmallVectorImpl<RuntimePointerChecking::PointerCheck> &AllChecks,
845 const SmallVectorImpl<int> &PtrToPartition,
846 const RuntimePointerChecking *RtPtrChecking) {
847 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks;
848
Sanjoy Das90208722017-02-21 00:38:44 +0000849 copy_if(AllChecks, std::back_inserter(Checks),
850 [&](const RuntimePointerChecking::PointerCheck &Check) {
851 for (unsigned PtrIdx1 : Check.first->Members)
852 for (unsigned PtrIdx2 : Check.second->Members)
853 // Only include this check if there is a pair of pointers
854 // that require checking and the pointers fall into
855 // separate partitions.
856 //
857 // (Note that we already know at this point that the two
858 // pointer groups need checking but it doesn't follow
859 // that each pair of pointers within the two groups need
860 // checking as well.
861 //
862 // In other words we don't want to include a check just
863 // because there is a pair of pointers between the two
864 // pointer groups that require checks and a different
865 // pair whose pointers fall into different partitions.)
866 if (RtPtrChecking->needsChecking(PtrIdx1, PtrIdx2) &&
867 !RuntimePointerChecking::arePointersInSamePartition(
868 PtrToPartition, PtrIdx1, PtrIdx2))
869 return true;
870 return false;
871 });
Adam Nemet61399ac2016-04-27 00:31:03 +0000872
873 return Checks;
874 }
875
Adam Nemetd2fa4142016-04-27 05:28:18 +0000876 /// \brief Check whether the loop metadata is forcing distribution to be
877 /// enabled/disabled.
878 void setForced() {
879 Optional<const MDOperand *> Value =
880 findStringMetadataForLoop(L, "llvm.loop.distribute.enable");
881 if (!Value)
882 return;
883
884 const MDOperand *Op = *Value;
885 assert(Op && mdconst::hasa<ConstantInt>(*Op) && "invalid metadata");
886 IsForced = mdconst::extract<ConstantInt>(*Op)->getZExtValue();
887 }
888
Adam Nemet61399ac2016-04-27 00:31:03 +0000889 Loop *L;
Adam Nemet4338d672016-04-29 07:10:39 +0000890 Function *F;
891
892 // Analyses used.
Adam Nemet938d3d62015-05-14 12:05:18 +0000893 LoopInfo *LI;
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000894 const LoopAccessInfo *LAI = nullptr;
Adam Nemet938d3d62015-05-14 12:05:18 +0000895 DominatorTree *DT;
Silviu Baranga2910a4f2015-11-09 13:26:09 +0000896 ScalarEvolution *SE;
Adam Nemetaad81602016-07-15 17:23:20 +0000897 OptimizationRemarkEmitter *ORE;
Adam Nemetd2fa4142016-04-27 05:28:18 +0000898
899 /// \brief Indicates whether distribution is forced to be enabled/disabled for
900 /// the loop.
901 ///
902 /// If the optional has a value, it indicates whether distribution was forced
903 /// to be enabled (true) or disabled (false). If the optional has no value
904 /// distribution was not forced either way.
905 Optional<bool> IsForced;
Adam Nemet938d3d62015-05-14 12:05:18 +0000906};
Adam Nemet61399ac2016-04-27 00:31:03 +0000907
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000908} // end anonymous namespace
909
Adam Nemetb2593f72016-07-18 16:29:27 +0000910/// Shared implementation between new and old PMs.
911static bool runImpl(Function &F, LoopInfo *LI, DominatorTree *DT,
912 ScalarEvolution *SE, OptimizationRemarkEmitter *ORE,
Adam Nemet32e6a342016-12-21 04:07:40 +0000913 std::function<const LoopAccessInfo &(Loop &)> &GetLAA) {
Adam Nemetb2593f72016-07-18 16:29:27 +0000914 // Build up a worklist of inner-loops to vectorize. This is necessary as the
915 // act of distributing a loop creates new loops and can invalidate iterators
916 // across the loops.
917 SmallVector<Loop *, 8> Worklist;
918
919 for (Loop *TopLevelLoop : *LI)
920 for (Loop *L : depth_first(TopLevelLoop))
921 // We only handle inner-most loops.
922 if (L->empty())
923 Worklist.push_back(L);
924
925 // Now walk the identified inner loops.
926 bool Changed = false;
927 for (Loop *L : Worklist) {
928 LoopDistributeForLoop LDL(L, &F, LI, DT, SE, ORE);
929
930 // If distribution was forced for the specific loop to be
931 // enabled/disabled, follow that. Otherwise use the global flag.
Adam Nemet32e6a342016-12-21 04:07:40 +0000932 if (LDL.isForced().getValueOr(EnableLoopDistribute))
Adam Nemetb2593f72016-07-18 16:29:27 +0000933 Changed |= LDL.processLoop(GetLAA);
934 }
935
936 // Process each loop nest in the function.
937 return Changed;
938}
939
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000940namespace {
941
Adam Nemet61399ac2016-04-27 00:31:03 +0000942/// \brief The pass class.
Adam Nemetb2593f72016-07-18 16:29:27 +0000943class LoopDistributeLegacy : public FunctionPass {
Adam Nemet61399ac2016-04-27 00:31:03 +0000944public:
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000945 static char ID;
946
Adam Nemet32e6a342016-12-21 04:07:40 +0000947 LoopDistributeLegacy() : FunctionPass(ID) {
Adam Nemetd2fa4142016-04-27 05:28:18 +0000948 // The default is set by the caller.
Adam Nemetb2593f72016-07-18 16:29:27 +0000949 initializeLoopDistributeLegacyPass(*PassRegistry::getPassRegistry());
Adam Nemet61399ac2016-04-27 00:31:03 +0000950 }
951
952 bool runOnFunction(Function &F) override {
Andrew Kaylor50271f72016-05-03 22:32:30 +0000953 if (skipFunction(F))
954 return false;
955
Adam Nemet61399ac2016-04-27 00:31:03 +0000956 auto *LI = &getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
Xinliang David Li7853c1d2016-07-08 20:55:26 +0000957 auto *LAA = &getAnalysis<LoopAccessLegacyAnalysis>();
Adam Nemet61399ac2016-04-27 00:31:03 +0000958 auto *DT = &getAnalysis<DominatorTreeWrapperPass>().getDomTree();
959 auto *SE = &getAnalysis<ScalarEvolutionWrapperPass>().getSE();
Adam Nemet79ac42a2016-07-18 16:29:21 +0000960 auto *ORE = &getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE();
Adam Nemetb2593f72016-07-18 16:29:27 +0000961 std::function<const LoopAccessInfo &(Loop &)> GetLAA =
962 [&](Loop &L) -> const LoopAccessInfo & { return LAA->getInfo(&L); };
Adam Nemet61399ac2016-04-27 00:31:03 +0000963
Adam Nemet32e6a342016-12-21 04:07:40 +0000964 return runImpl(F, LI, DT, SE, ORE, GetLAA);
Adam Nemet61399ac2016-04-27 00:31:03 +0000965 }
966
967 void getAnalysisUsage(AnalysisUsage &AU) const override {
968 AU.addRequired<ScalarEvolutionWrapperPass>();
969 AU.addRequired<LoopInfoWrapperPass>();
970 AU.addPreserved<LoopInfoWrapperPass>();
Xinliang David Li7853c1d2016-07-08 20:55:26 +0000971 AU.addRequired<LoopAccessLegacyAnalysis>();
Adam Nemet61399ac2016-04-27 00:31:03 +0000972 AU.addRequired<DominatorTreeWrapperPass>();
973 AU.addPreserved<DominatorTreeWrapperPass>();
Adam Nemet79ac42a2016-07-18 16:29:21 +0000974 AU.addRequired<OptimizationRemarkEmitterWrapperPass>();
Eli Friedman66fdba82016-09-16 18:01:48 +0000975 AU.addPreserved<GlobalsAAWrapperPass>();
Adam Nemet61399ac2016-04-27 00:31:03 +0000976 }
Adam Nemet61399ac2016-04-27 00:31:03 +0000977};
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +0000978
979} // end anonymous namespace
Adam Nemet938d3d62015-05-14 12:05:18 +0000980
Adam Nemetb2593f72016-07-18 16:29:27 +0000981PreservedAnalyses LoopDistributePass::run(Function &F,
982 FunctionAnalysisManager &AM) {
Adam Nemetb2593f72016-07-18 16:29:27 +0000983 auto &LI = AM.getResult<LoopAnalysis>(F);
984 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
985 auto &SE = AM.getResult<ScalarEvolutionAnalysis>(F);
986 auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F);
987
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000988 // We don't directly need these analyses but they're required for loop
989 // analyses so provide them below.
990 auto &AA = AM.getResult<AAManager>(F);
991 auto &AC = AM.getResult<AssumptionAnalysis>(F);
992 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
993 auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
994
Adam Nemetb2593f72016-07-18 16:29:27 +0000995 auto &LAM = AM.getResult<LoopAnalysisManagerFunctionProxy>(F).getManager();
996 std::function<const LoopAccessInfo &(Loop &)> GetLAA =
997 [&](Loop &L) -> const LoopAccessInfo & {
Alina Sbirleaff8b8ae2017-11-21 15:45:46 +0000998 LoopStandardAnalysisResults AR = {AA, AC, DT, LI, SE, TLI, TTI, nullptr};
Chandler Carruth410eaeb2017-01-11 06:23:21 +0000999 return LAM.getResult<LoopAccessAnalysis>(L, AR);
Adam Nemetb2593f72016-07-18 16:29:27 +00001000 };
1001
Adam Nemet32e6a342016-12-21 04:07:40 +00001002 bool Changed = runImpl(F, &LI, &DT, &SE, &ORE, GetLAA);
Adam Nemetb2593f72016-07-18 16:29:27 +00001003 if (!Changed)
1004 return PreservedAnalyses::all();
1005 PreservedAnalyses PA;
1006 PA.preserve<LoopAnalysis>();
1007 PA.preserve<DominatorTreeAnalysis>();
Davide Italiano11a871b2016-11-08 19:52:32 +00001008 PA.preserve<GlobalsAA>();
Adam Nemetb2593f72016-07-18 16:29:27 +00001009 return PA;
1010}
1011
1012char LoopDistributeLegacy::ID;
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +00001013
Michael Zolotukhin5cda89a2016-10-05 00:44:52 +00001014static const char ldist_name[] = "Loop Distribution";
Adam Nemet938d3d62015-05-14 12:05:18 +00001015
Adam Nemetb2593f72016-07-18 16:29:27 +00001016INITIALIZE_PASS_BEGIN(LoopDistributeLegacy, LDIST_NAME, ldist_name, false,
1017 false)
Adam Nemet938d3d62015-05-14 12:05:18 +00001018INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass)
Xinliang David Li7853c1d2016-07-08 20:55:26 +00001019INITIALIZE_PASS_DEPENDENCY(LoopAccessLegacyAnalysis)
Adam Nemet938d3d62015-05-14 12:05:18 +00001020INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
Silviu Baranga2910a4f2015-11-09 13:26:09 +00001021INITIALIZE_PASS_DEPENDENCY(ScalarEvolutionWrapperPass)
Adam Nemet79ac42a2016-07-18 16:29:21 +00001022INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass)
Adam Nemetb2593f72016-07-18 16:29:27 +00001023INITIALIZE_PASS_END(LoopDistributeLegacy, LDIST_NAME, ldist_name, false, false)
Adam Nemet938d3d62015-05-14 12:05:18 +00001024
Eugene Zelenkodd40f5e2017-10-16 21:34:24 +00001025FunctionPass *llvm::createLoopDistributePass() { return new LoopDistributeLegacy(); }