blob: 5ca09046199d252d8074bfadb6b3ca4468f620a4 [file] [log] [blame]
Eugene Zelenko57bd5a02017-10-27 01:09:08 +00001//===- UnrollLoopPeel.cpp - Loop peeling utilities ------------------------===//
Michael Kupersteinb151a642016-11-30 21:13:57 +00002//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Michael Kupersteinb151a642016-11-30 21:13:57 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file implements some loop unrolling utilities for peeling loops
10// with dynamically inferred (from PGO) trip counts. See LoopUnroll.cpp for
11// unrolling loops with compile-time constant trip counts.
12//
13//===----------------------------------------------------------------------===//
14
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000015#include "llvm/ADT/DenseMap.h"
16#include "llvm/ADT/Optional.h"
17#include "llvm/ADT/SmallVector.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000018#include "llvm/ADT/Statistic.h"
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000019#include "llvm/Analysis/LoopInfo.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000020#include "llvm/Analysis/LoopIterator.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000021#include "llvm/Analysis/ScalarEvolution.h"
Florian Hahnfc97b612018-03-15 21:34:43 +000022#include "llvm/Analysis/ScalarEvolutionExpressions.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000023#include "llvm/Analysis/TargetTransformInfo.h"
24#include "llvm/IR/BasicBlock.h"
25#include "llvm/IR/Dominators.h"
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000026#include "llvm/IR/Function.h"
27#include "llvm/IR/InstrTypes.h"
28#include "llvm/IR/Instruction.h"
29#include "llvm/IR/Instructions.h"
30#include "llvm/IR/LLVMContext.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000031#include "llvm/IR/MDBuilder.h"
32#include "llvm/IR/Metadata.h"
Florian Hahnfc97b612018-03-15 21:34:43 +000033#include "llvm/IR/PatternMatch.h"
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000034#include "llvm/Support/Casting.h"
35#include "llvm/Support/CommandLine.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000036#include "llvm/Support/Debug.h"
37#include "llvm/Support/raw_ostream.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000038#include "llvm/Transforms/Utils/BasicBlockUtils.h"
39#include "llvm/Transforms/Utils/Cloning.h"
Eli Friedman0a217452017-01-18 23:26:37 +000040#include "llvm/Transforms/Utils/LoopSimplify.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000041#include "llvm/Transforms/Utils/LoopUtils.h"
42#include "llvm/Transforms/Utils/UnrollLoop.h"
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000043#include "llvm/Transforms/Utils/ValueMapper.h"
Michael Kupersteinb151a642016-11-30 21:13:57 +000044#include <algorithm>
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000045#include <cassert>
46#include <cstdint>
47#include <limits>
Michael Kupersteinb151a642016-11-30 21:13:57 +000048
49using namespace llvm;
Florian Hahnfc97b612018-03-15 21:34:43 +000050using namespace llvm::PatternMatch;
Michael Kupersteinb151a642016-11-30 21:13:57 +000051
52#define DEBUG_TYPE "loop-unroll"
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000053
Michael Kupersteinb151a642016-11-30 21:13:57 +000054STATISTIC(NumPeeled, "Number of loops peeled");
55
56static cl::opt<unsigned> UnrollPeelMaxCount(
57 "unroll-peel-max-count", cl::init(7), cl::Hidden,
58 cl::desc("Max average trip count which will cause loop peeling."));
59
60static cl::opt<unsigned> UnrollForcePeelCount(
61 "unroll-force-peel-count", cl::init(0), cl::Hidden,
62 cl::desc("Force a peel count regardless of profiling information."));
63
Max Kazantsev751579c2017-04-17 09:52:02 +000064// Designates that a Phi is estimated to become invariant after an "infinite"
65// number of loop iterations (i.e. only may become an invariant if the loop is
66// fully unrolled).
Eugene Zelenko57bd5a02017-10-27 01:09:08 +000067static const unsigned InfiniteIterationsToInvariance =
68 std::numeric_limits<unsigned>::max();
Max Kazantsev751579c2017-04-17 09:52:02 +000069
Michael Kupersteinb151a642016-11-30 21:13:57 +000070// Check whether we are capable of peeling this loop.
Ikhlas Ajbarb7322e82018-04-03 03:39:43 +000071bool llvm::canPeel(Loop *L) {
Michael Kupersteinb151a642016-11-30 21:13:57 +000072 // Make sure the loop is in simplified form
73 if (!L->isLoopSimplifyForm())
74 return false;
75
76 // Only peel loops that contain a single exit
77 if (!L->getExitingBlock() || !L->getUniqueExitBlock())
78 return false;
79
Michael Kuperstein2da2bfa2017-03-16 21:07:48 +000080 // Don't try to peel loops where the latch is not the exiting block.
81 // This can be an indication of two different things:
82 // 1) The loop is not rotated.
83 // 2) The loop contains irreducible control flow that involves the latch.
84 if (L->getLoopLatch() != L->getExitingBlock())
85 return false;
86
Michael Kupersteinb151a642016-11-30 21:13:57 +000087 return true;
88}
89
Max Kazantsev751579c2017-04-17 09:52:02 +000090// This function calculates the number of iterations after which the given Phi
91// becomes an invariant. The pre-calculated values are memorized in the map. The
92// function (shortcut is I) is calculated according to the following definition:
93// Given %x = phi <Inputs from above the loop>, ..., [%y, %back.edge].
94// If %y is a loop invariant, then I(%x) = 1.
95// If %y is a Phi from the loop header, I(%x) = I(%y) + 1.
96// Otherwise, I(%x) is infinite.
97// TODO: Actually if %y is an expression that depends only on Phi %z and some
98// loop invariants, we can estimate I(%x) = I(%z) + 1. The example
99// looks like:
100// %x = phi(0, %a), <-- becomes invariant starting from 3rd iteration.
101// %y = phi(0, 5),
102// %a = %y + 1.
103static unsigned calculateIterationsToInvariance(
104 PHINode *Phi, Loop *L, BasicBlock *BackEdge,
105 SmallDenseMap<PHINode *, unsigned> &IterationsToInvariance) {
106 assert(Phi->getParent() == L->getHeader() &&
107 "Non-loop Phi should not be checked for turning into invariant.");
108 assert(BackEdge == L->getLoopLatch() && "Wrong latch?");
109 // If we already know the answer, take it from the map.
110 auto I = IterationsToInvariance.find(Phi);
111 if (I != IterationsToInvariance.end())
112 return I->second;
113
114 // Otherwise we need to analyze the input from the back edge.
115 Value *Input = Phi->getIncomingValueForBlock(BackEdge);
116 // Place infinity to map to avoid infinite recursion for cycled Phis. Such
117 // cycles can never stop on an invariant.
118 IterationsToInvariance[Phi] = InfiniteIterationsToInvariance;
119 unsigned ToInvariance = InfiniteIterationsToInvariance;
120
121 if (L->isLoopInvariant(Input))
122 ToInvariance = 1u;
123 else if (PHINode *IncPhi = dyn_cast<PHINode>(Input)) {
124 // Only consider Phis in header block.
125 if (IncPhi->getParent() != L->getHeader())
126 return InfiniteIterationsToInvariance;
127 // If the input becomes an invariant after X iterations, then our Phi
128 // becomes an invariant after X + 1 iterations.
129 unsigned InputToInvariance = calculateIterationsToInvariance(
130 IncPhi, L, BackEdge, IterationsToInvariance);
131 if (InputToInvariance != InfiniteIterationsToInvariance)
132 ToInvariance = InputToInvariance + 1u;
133 }
134
135 // If we found that this Phi lies in an invariant chain, update the map.
136 if (ToInvariance != InfiniteIterationsToInvariance)
137 IterationsToInvariance[Phi] = ToInvariance;
138 return ToInvariance;
139}
140
Florian Hahnfc97b612018-03-15 21:34:43 +0000141// Return the number of iterations to peel off that make conditions in the
142// body true/false. For example, if we peel 2 iterations off the loop below,
143// the condition i < 2 can be evaluated at compile time.
144// for (i = 0; i < n; i++)
145// if (i < 2)
146// ..
147// else
148// ..
149// }
150static unsigned countToEliminateCompares(Loop &L, unsigned MaxPeelCount,
151 ScalarEvolution &SE) {
152 assert(L.isLoopSimplifyForm() && "Loop needs to be in loop simplify form");
153 unsigned DesiredPeelCount = 0;
154
155 for (auto *BB : L.blocks()) {
156 auto *BI = dyn_cast<BranchInst>(BB->getTerminator());
157 if (!BI || BI->isUnconditional())
158 continue;
159
160 // Ignore loop exit condition.
161 if (L.getLoopLatch() == BB)
162 continue;
163
164 Value *Condition = BI->getCondition();
165 Value *LeftVal, *RightVal;
166 CmpInst::Predicate Pred;
167 if (!match(Condition, m_ICmp(Pred, m_Value(LeftVal), m_Value(RightVal))))
168 continue;
169
170 const SCEV *LeftSCEV = SE.getSCEV(LeftVal);
171 const SCEV *RightSCEV = SE.getSCEV(RightVal);
172
173 // Do not consider predicates that are known to be true or false
174 // independently of the loop iteration.
175 if (SE.isKnownPredicate(Pred, LeftSCEV, RightSCEV) ||
176 SE.isKnownPredicate(ICmpInst::getInversePredicate(Pred), LeftSCEV,
177 RightSCEV))
178 continue;
179
180 // Check if we have a condition with one AddRec and one non AddRec
181 // expression. Normalize LeftSCEV to be the AddRec.
182 if (!isa<SCEVAddRecExpr>(LeftSCEV)) {
183 if (isa<SCEVAddRecExpr>(RightSCEV)) {
184 std::swap(LeftSCEV, RightSCEV);
185 Pred = ICmpInst::getSwappedPredicate(Pred);
186 } else
187 continue;
188 }
189
190 const SCEVAddRecExpr *LeftAR = cast<SCEVAddRecExpr>(LeftSCEV);
191
Florian Hahnac277582018-04-18 12:29:24 +0000192 // Avoid huge SCEV computations in the loop below, make sure we only
193 // consider AddRecs of the loop we are trying to peel and avoid
194 // non-monotonic predicates, as we will not be able to simplify the loop
195 // body.
196 // FIXME: For the non-monotonic predicates ICMP_EQ and ICMP_NE we can
197 // simplify the loop, if we peel 1 additional iteration, if there
198 // is no wrapping.
199 bool Increasing;
200 if (!LeftAR->isAffine() || LeftAR->getLoop() != &L ||
201 !SE.isMonotonicPredicate(LeftAR, Pred, Increasing))
Florian Hahnfc97b612018-03-15 21:34:43 +0000202 continue;
Florian Hahnac277582018-04-18 12:29:24 +0000203 (void)Increasing;
Florian Hahnfc97b612018-03-15 21:34:43 +0000204
Florian Hahnac277582018-04-18 12:29:24 +0000205 // Check if extending the current DesiredPeelCount lets us evaluate Pred
206 // or !Pred in the loop body statically.
207 unsigned NewPeelCount = DesiredPeelCount;
208
Florian Hahnfc97b612018-03-15 21:34:43 +0000209 const SCEV *IterVal = LeftAR->evaluateAtIteration(
Florian Hahnac277582018-04-18 12:29:24 +0000210 SE.getConstant(LeftSCEV->getType(), NewPeelCount), SE);
Florian Hahnfc97b612018-03-15 21:34:43 +0000211
212 // If the original condition is not known, get the negated predicate
213 // (which holds on the else branch) and check if it is known. This allows
214 // us to peel of iterations that make the original condition false.
215 if (!SE.isKnownPredicate(Pred, IterVal, RightSCEV))
216 Pred = ICmpInst::getInversePredicate(Pred);
217
218 const SCEV *Step = LeftAR->getStepRecurrence(SE);
Florian Hahnac277582018-04-18 12:29:24 +0000219 while (NewPeelCount < MaxPeelCount &&
Florian Hahnfc97b612018-03-15 21:34:43 +0000220 SE.isKnownPredicate(Pred, IterVal, RightSCEV)) {
221 IterVal = SE.getAddExpr(IterVal, Step);
Florian Hahnac277582018-04-18 12:29:24 +0000222 NewPeelCount++;
Florian Hahnfc97b612018-03-15 21:34:43 +0000223 }
Florian Hahnac277582018-04-18 12:29:24 +0000224
225 // Only peel the loop if the monotonic predicate !Pred becomes known in the
226 // first iteration of the loop body after peeling.
227 if (NewPeelCount > DesiredPeelCount &&
228 SE.isKnownPredicate(ICmpInst::getInversePredicate(Pred), IterVal,
229 RightSCEV))
230 DesiredPeelCount = NewPeelCount;
Florian Hahnfc97b612018-03-15 21:34:43 +0000231 }
232
233 return DesiredPeelCount;
234}
235
Michael Kupersteinb151a642016-11-30 21:13:57 +0000236// Return the number of iterations we want to peel off.
237void llvm::computePeelCount(Loop *L, unsigned LoopSize,
Sanjoy Daseed71b92017-03-03 18:19:10 +0000238 TargetTransformInfo::UnrollingPreferences &UP,
Florian Hahnfc97b612018-03-15 21:34:43 +0000239 unsigned &TripCount, ScalarEvolution &SE) {
Max Kazantsev751579c2017-04-17 09:52:02 +0000240 assert(LoopSize > 0 && "Zero loop size is not allowed!");
Ikhlas Ajbarb7322e82018-04-03 03:39:43 +0000241 // Save the UP.PeelCount value set by the target in
242 // TTI.getUnrollingPreferences or by the flag -unroll-peel-count.
243 unsigned TargetPeelCount = UP.PeelCount;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000244 UP.PeelCount = 0;
245 if (!canPeel(L))
246 return;
247
248 // Only try to peel innermost loops.
249 if (!L->empty())
250 return;
251
Chad Rosier45735b82018-04-06 13:57:21 +0000252 // If the user provided a peel count, use that.
253 bool UserPeelCount = UnrollForcePeelCount.getNumOccurrences() > 0;
254 if (UserPeelCount) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000255 LLVM_DEBUG(dbgs() << "Force-peeling first " << UnrollForcePeelCount
256 << " iterations.\n");
Chad Rosier45735b82018-04-06 13:57:21 +0000257 UP.PeelCount = UnrollForcePeelCount;
258 return;
259 }
260
261 // Skip peeling if it's disabled.
262 if (!UP.AllowPeeling)
263 return;
264
Max Kazantsev751579c2017-04-17 09:52:02 +0000265 // Here we try to get rid of Phis which become invariants after 1, 2, ..., N
266 // iterations of the loop. For this we compute the number for iterations after
267 // which every Phi is guaranteed to become an invariant, and try to peel the
268 // maximum number of iterations among these values, thus turning all those
269 // Phis into invariants.
Max Kazantsev8ed6b662017-04-17 05:38:28 +0000270 // First, check that we can peel at least one iteration.
271 if (2 * LoopSize <= UP.Threshold && UnrollPeelMaxCount > 0) {
Max Kazantsev751579c2017-04-17 09:52:02 +0000272 // Store the pre-calculated values here.
273 SmallDenseMap<PHINode *, unsigned> IterationsToInvariance;
274 // Now go through all Phis to calculate their the number of iterations they
275 // need to become invariants.
Ikhlas Ajbarb7322e82018-04-03 03:39:43 +0000276 // Start the max computation with the UP.PeelCount value set by the target
277 // in TTI.getUnrollingPreferences or by the flag -unroll-peel-count.
278 unsigned DesiredPeelCount = TargetPeelCount;
Sanjoy Das30c35382017-03-07 06:03:15 +0000279 BasicBlock *BackEdge = L->getLoopLatch();
280 assert(BackEdge && "Loop is not in simplified form?");
Max Kazantsev751579c2017-04-17 09:52:02 +0000281 for (auto BI = L->getHeader()->begin(); isa<PHINode>(&*BI); ++BI) {
282 PHINode *Phi = cast<PHINode>(&*BI);
283 unsigned ToInvariance = calculateIterationsToInvariance(
284 Phi, L, BackEdge, IterationsToInvariance);
285 if (ToInvariance != InfiniteIterationsToInvariance)
286 DesiredPeelCount = std::max(DesiredPeelCount, ToInvariance);
Sanjoy Das664c9252017-03-03 18:19:15 +0000287 }
Florian Hahnfc97b612018-03-15 21:34:43 +0000288
289 // Pay respect to limitations implied by loop size and the max peel count.
290 unsigned MaxPeelCount = UnrollPeelMaxCount;
291 MaxPeelCount = std::min(MaxPeelCount, UP.Threshold / LoopSize - 1);
292
293 DesiredPeelCount = std::max(DesiredPeelCount,
294 countToEliminateCompares(*L, MaxPeelCount, SE));
295
Max Kazantsev751579c2017-04-17 09:52:02 +0000296 if (DesiredPeelCount > 0) {
Max Kazantsev751579c2017-04-17 09:52:02 +0000297 DesiredPeelCount = std::min(DesiredPeelCount, MaxPeelCount);
298 // Consider max peel count limitation.
299 assert(DesiredPeelCount > 0 && "Wrong loop size estimation?");
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000300 LLVM_DEBUG(dbgs() << "Peel " << DesiredPeelCount
301 << " iteration(s) to turn"
302 << " some Phis into invariants.\n");
Max Kazantsev751579c2017-04-17 09:52:02 +0000303 UP.PeelCount = DesiredPeelCount;
Sanjoy Das664c9252017-03-03 18:19:15 +0000304 return;
305 }
306 }
307
Sanjoy Daseed71b92017-03-03 18:19:10 +0000308 // Bail if we know the statically calculated trip count.
309 // In this case we rather prefer partial unrolling.
310 if (TripCount)
311 return;
312
Michael Kupersteinb151a642016-11-30 21:13:57 +0000313 // If we don't know the trip count, but have reason to believe the average
314 // trip count is low, peeling should be beneficial, since we will usually
315 // hit the peeled section.
316 // We only do this in the presence of profile information, since otherwise
317 // our estimates of the trip count are not reliable enough.
Chad Rosier45735b82018-04-06 13:57:21 +0000318 if (L->getHeader()->getParent()->hasProfileData()) {
Michael Kupersteinb151a642016-11-30 21:13:57 +0000319 Optional<unsigned> PeelCount = getLoopEstimatedTripCount(L);
320 if (!PeelCount)
321 return;
322
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000323 LLVM_DEBUG(dbgs() << "Profile-based estimated trip count is " << *PeelCount
324 << "\n");
Michael Kupersteinb151a642016-11-30 21:13:57 +0000325
326 if (*PeelCount) {
327 if ((*PeelCount <= UnrollPeelMaxCount) &&
328 (LoopSize * (*PeelCount + 1) <= UP.Threshold)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000329 LLVM_DEBUG(dbgs() << "Peeling first " << *PeelCount
330 << " iterations.\n");
Michael Kupersteinb151a642016-11-30 21:13:57 +0000331 UP.PeelCount = *PeelCount;
332 return;
333 }
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000334 LLVM_DEBUG(dbgs() << "Requested peel count: " << *PeelCount << "\n");
335 LLVM_DEBUG(dbgs() << "Max peel count: " << UnrollPeelMaxCount << "\n");
336 LLVM_DEBUG(dbgs() << "Peel cost: " << LoopSize * (*PeelCount + 1)
337 << "\n");
338 LLVM_DEBUG(dbgs() << "Max peel cost: " << UP.Threshold << "\n");
Michael Kupersteinb151a642016-11-30 21:13:57 +0000339 }
340 }
Michael Kupersteinb151a642016-11-30 21:13:57 +0000341}
342
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000343/// Update the branch weights of the latch of a peeled-off loop
Michael Kupersteinb151a642016-11-30 21:13:57 +0000344/// iteration.
345/// This sets the branch weights for the latch of the recently peeled off loop
Fangrui Songf78650a2018-07-30 19:41:25 +0000346/// iteration correctly.
Michael Kupersteinb151a642016-11-30 21:13:57 +0000347/// Our goal is to make sure that:
348/// a) The total weight of all the copies of the loop body is preserved.
349/// b) The total weight of the loop exit is preserved.
350/// c) The body weight is reasonably distributed between the peeled iterations.
351///
352/// \param Header The copy of the header block that belongs to next iteration.
353/// \param LatchBR The copy of the latch branch that belongs to this iteration.
354/// \param IterNumber The serial number of the iteration that was just
355/// peeled off.
356/// \param AvgIters The average number of iterations we expect the loop to have.
357/// \param[in,out] PeeledHeaderWeight The total number of dynamic loop
358/// iterations that are unaccounted for. As an input, it represents the number
359/// of times we expect to enter the header of the iteration currently being
360/// peeled off. The output is the number of times we expect to enter the
361/// header of the next iteration.
362static void updateBranchWeights(BasicBlock *Header, BranchInst *LatchBR,
363 unsigned IterNumber, unsigned AvgIters,
364 uint64_t &PeeledHeaderWeight) {
Michael Kupersteinb151a642016-11-30 21:13:57 +0000365 // FIXME: Pick a more realistic distribution.
366 // Currently the proportion of weight we assign to the fall-through
367 // side of the branch drops linearly with the iteration number, and we use
368 // a 0.9 fudge factor to make the drop-off less sharp...
369 if (PeeledHeaderWeight) {
370 uint64_t FallThruWeight =
371 PeeledHeaderWeight * ((float)(AvgIters - IterNumber) / AvgIters * 0.9);
372 uint64_t ExitWeight = PeeledHeaderWeight - FallThruWeight;
373 PeeledHeaderWeight -= ExitWeight;
374
375 unsigned HeaderIdx = (LatchBR->getSuccessor(0) == Header ? 0 : 1);
376 MDBuilder MDB(LatchBR->getContext());
377 MDNode *WeightNode =
378 HeaderIdx ? MDB.createBranchWeights(ExitWeight, FallThruWeight)
379 : MDB.createBranchWeights(FallThruWeight, ExitWeight);
380 LatchBR->setMetadata(LLVMContext::MD_prof, WeightNode);
381 }
382}
383
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000384/// Clones the body of the loop L, putting it between \p InsertTop and \p
Michael Kupersteinb151a642016-11-30 21:13:57 +0000385/// InsertBot.
386/// \param IterNumber The serial number of the iteration currently being
387/// peeled off.
388/// \param Exit The exit block of the original loop.
Hiroshi Inoued24ddcd2018-01-19 10:55:29 +0000389/// \param[out] NewBlocks A list of the blocks in the newly created clone
Michael Kupersteinb151a642016-11-30 21:13:57 +0000390/// \param[out] VMap The value map between the loop and the new clone.
391/// \param LoopBlocks A helper for DFS-traversal of the loop.
392/// \param LVMap A value-map that maps instructions from the original loop to
393/// instructions in the last peeled-off iteration.
394static void cloneLoopBlocks(Loop *L, unsigned IterNumber, BasicBlock *InsertTop,
395 BasicBlock *InsertBot, BasicBlock *Exit,
396 SmallVectorImpl<BasicBlock *> &NewBlocks,
397 LoopBlocksDFS &LoopBlocks, ValueToValueMapTy &VMap,
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000398 ValueToValueMapTy &LVMap, DominatorTree *DT,
399 LoopInfo *LI) {
Michael Kupersteinb151a642016-11-30 21:13:57 +0000400 BasicBlock *Header = L->getHeader();
401 BasicBlock *Latch = L->getLoopLatch();
402 BasicBlock *PreHeader = L->getLoopPreheader();
403
404 Function *F = Header->getParent();
405 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO();
406 LoopBlocksDFS::RPOIterator BlockEnd = LoopBlocks.endRPO();
407 Loop *ParentLoop = L->getParentLoop();
408
409 // For each block in the original loop, create a new copy,
410 // and update the value map with the newly created values.
411 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {
412 BasicBlock *NewBB = CloneBasicBlock(*BB, VMap, ".peel", F);
413 NewBlocks.push_back(NewBB);
414
415 if (ParentLoop)
416 ParentLoop->addBasicBlockToLoop(NewBB, *LI);
417
418 VMap[*BB] = NewBB;
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000419
420 // If dominator tree is available, insert nodes to represent cloned blocks.
421 if (DT) {
422 if (Header == *BB)
423 DT->addNewBlock(NewBB, InsertTop);
424 else {
425 DomTreeNode *IDom = DT->getNode(*BB)->getIDom();
426 // VMap must contain entry for IDom, as the iteration order is RPO.
427 DT->addNewBlock(NewBB, cast<BasicBlock>(VMap[IDom->getBlock()]));
428 }
429 }
Michael Kupersteinb151a642016-11-30 21:13:57 +0000430 }
431
432 // Hook-up the control flow for the newly inserted blocks.
433 // The new header is hooked up directly to the "top", which is either
434 // the original loop preheader (for the first iteration) or the previous
435 // iteration's exiting block (for every other iteration)
436 InsertTop->getTerminator()->setSuccessor(0, cast<BasicBlock>(VMap[Header]));
437
438 // Similarly, for the latch:
439 // The original exiting edge is still hooked up to the loop exit.
440 // The backedge now goes to the "bottom", which is either the loop's real
441 // header (for the last peeled iteration) or the copied header of the next
442 // iteration (for every other iteration)
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000443 BasicBlock *NewLatch = cast<BasicBlock>(VMap[Latch]);
444 BranchInst *LatchBR = cast<BranchInst>(NewLatch->getTerminator());
Michael Kupersteinb151a642016-11-30 21:13:57 +0000445 unsigned HeaderIdx = (LatchBR->getSuccessor(0) == Header ? 0 : 1);
446 LatchBR->setSuccessor(HeaderIdx, InsertBot);
447 LatchBR->setSuccessor(1 - HeaderIdx, Exit);
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000448 if (DT)
449 DT->changeImmediateDominator(InsertBot, NewLatch);
Michael Kupersteinb151a642016-11-30 21:13:57 +0000450
451 // The new copy of the loop body starts with a bunch of PHI nodes
452 // that pick an incoming value from either the preheader, or the previous
453 // loop iteration. Since this copy is no longer part of the loop, we
454 // resolve this statically:
455 // For the first iteration, we use the value from the preheader directly.
456 // For any other iteration, we replace the phi with the value generated by
457 // the immediately preceding clone of the loop body (which represents
458 // the previous iteration).
459 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
460 PHINode *NewPHI = cast<PHINode>(VMap[&*I]);
461 if (IterNumber == 0) {
462 VMap[&*I] = NewPHI->getIncomingValueForBlock(PreHeader);
463 } else {
464 Value *LatchVal = NewPHI->getIncomingValueForBlock(Latch);
465 Instruction *LatchInst = dyn_cast<Instruction>(LatchVal);
466 if (LatchInst && L->contains(LatchInst))
467 VMap[&*I] = LVMap[LatchInst];
468 else
469 VMap[&*I] = LatchVal;
470 }
471 cast<BasicBlock>(VMap[Header])->getInstList().erase(NewPHI);
472 }
473
474 // Fix up the outgoing values - we need to add a value for the iteration
475 // we've just created. Note that this must happen *after* the incoming
476 // values are adjusted, since the value going out of the latch may also be
477 // a value coming into the header.
478 for (BasicBlock::iterator I = Exit->begin(); isa<PHINode>(I); ++I) {
479 PHINode *PHI = cast<PHINode>(I);
480 Value *LatchVal = PHI->getIncomingValueForBlock(Latch);
481 Instruction *LatchInst = dyn_cast<Instruction>(LatchVal);
482 if (LatchInst && L->contains(LatchInst))
483 LatchVal = VMap[LatchVal];
484 PHI->addIncoming(LatchVal, cast<BasicBlock>(VMap[Latch]));
485 }
486
487 // LastValueMap is updated with the values for the current loop
488 // which are used the next time this function is called.
489 for (const auto &KV : VMap)
490 LVMap[KV.first] = KV.second;
491}
492
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000493/// Peel off the first \p PeelCount iterations of loop \p L.
Michael Kupersteinb151a642016-11-30 21:13:57 +0000494///
495/// Note that this does not peel them off as a single straight-line block.
496/// Rather, each iteration is peeled off separately, and needs to check the
497/// exit condition.
498/// For loops that dynamically execute \p PeelCount iterations or less
499/// this provides a benefit, since the peeled off iterations, which account
500/// for the bulk of dynamic execution, can be further simplified by scalar
501/// optimizations.
502bool llvm::peelLoop(Loop *L, unsigned PeelCount, LoopInfo *LI,
503 ScalarEvolution *SE, DominatorTree *DT,
Eli Friedman0a217452017-01-18 23:26:37 +0000504 AssumptionCache *AC, bool PreserveLCSSA) {
Max Kazantsevb1ad66f2018-03-27 09:40:51 +0000505 assert(PeelCount > 0 && "Attempt to peel out zero iterations?");
506 assert(canPeel(L) && "Attempt to peel a loop which is not peelable?");
Michael Kupersteinb151a642016-11-30 21:13:57 +0000507
508 LoopBlocksDFS LoopBlocks(L);
509 LoopBlocks.perform(LI);
510
511 BasicBlock *Header = L->getHeader();
512 BasicBlock *PreHeader = L->getLoopPreheader();
513 BasicBlock *Latch = L->getLoopLatch();
514 BasicBlock *Exit = L->getUniqueExitBlock();
515
516 Function *F = Header->getParent();
517
518 // Set up all the necessary basic blocks. It is convenient to split the
519 // preheader into 3 parts - two blocks to anchor the peeled copy of the loop
520 // body, and a new preheader for the "real" loop.
521
522 // Peeling the first iteration transforms.
523 //
524 // PreHeader:
525 // ...
526 // Header:
527 // LoopBody
528 // If (cond) goto Header
529 // Exit:
530 //
531 // into
532 //
533 // InsertTop:
534 // LoopBody
535 // If (!cond) goto Exit
536 // InsertBot:
537 // NewPreHeader:
538 // ...
539 // Header:
540 // LoopBody
541 // If (cond) goto Header
542 // Exit:
543 //
544 // Each following iteration will split the current bottom anchor in two,
545 // and put the new copy of the loop body between these two blocks. That is,
Fangrui Songf78650a2018-07-30 19:41:25 +0000546 // after peeling another iteration from the example above, we'll split
Michael Kupersteinb151a642016-11-30 21:13:57 +0000547 // InsertBot, and get:
548 //
549 // InsertTop:
550 // LoopBody
551 // If (!cond) goto Exit
552 // InsertBot:
553 // LoopBody
554 // If (!cond) goto Exit
555 // InsertBot.next:
556 // NewPreHeader:
557 // ...
558 // Header:
559 // LoopBody
560 // If (cond) goto Header
561 // Exit:
562
563 BasicBlock *InsertTop = SplitEdge(PreHeader, Header, DT, LI);
564 BasicBlock *InsertBot =
565 SplitBlock(InsertTop, InsertTop->getTerminator(), DT, LI);
566 BasicBlock *NewPreHeader =
567 SplitBlock(InsertBot, InsertBot->getTerminator(), DT, LI);
568
569 InsertTop->setName(Header->getName() + ".peel.begin");
570 InsertBot->setName(Header->getName() + ".peel.next");
571 NewPreHeader->setName(PreHeader->getName() + ".peel.newph");
572
573 ValueToValueMapTy LVMap;
574
575 // If we have branch weight information, we'll want to update it for the
576 // newly created branches.
577 BranchInst *LatchBR =
578 cast<BranchInst>(cast<BasicBlock>(Latch)->getTerminator());
579 unsigned HeaderIdx = (LatchBR->getSuccessor(0) == Header ? 0 : 1);
580
581 uint64_t TrueWeight, FalseWeight;
Xin Tong29402312017-01-02 20:27:23 +0000582 uint64_t ExitWeight = 0, CurHeaderWeight = 0;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000583 if (LatchBR->extractProfMetadata(TrueWeight, FalseWeight)) {
584 ExitWeight = HeaderIdx ? TrueWeight : FalseWeight;
Xin Tong29402312017-01-02 20:27:23 +0000585 // The # of times the loop body executes is the sum of the exit block
586 // weight and the # of times the backedges are taken.
587 CurHeaderWeight = TrueWeight + FalseWeight;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000588 }
589
590 // For each peeled-off iteration, make a copy of the loop.
591 for (unsigned Iter = 0; Iter < PeelCount; ++Iter) {
592 SmallVector<BasicBlock *, 8> NewBlocks;
593 ValueToValueMapTy VMap;
594
Xin Tong29402312017-01-02 20:27:23 +0000595 // Subtract the exit weight from the current header weight -- the exit
596 // weight is exactly the weight of the previous iteration's header.
Michael Kupersteinb151a642016-11-30 21:13:57 +0000597 // FIXME: due to the way the distribution is constructed, we need a
598 // guard here to make sure we don't end up with non-positive weights.
Xin Tong29402312017-01-02 20:27:23 +0000599 if (ExitWeight < CurHeaderWeight)
600 CurHeaderWeight -= ExitWeight;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000601 else
Xin Tong29402312017-01-02 20:27:23 +0000602 CurHeaderWeight = 1;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000603
604 cloneLoopBlocks(L, Iter, InsertTop, InsertBot, Exit,
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000605 NewBlocks, LoopBlocks, VMap, LVMap, DT, LI);
Serge Pavlovb71bb802017-03-26 16:46:53 +0000606
607 // Remap to use values from the current iteration instead of the
608 // previous one.
609 remapInstructionsInBlocks(NewBlocks, VMap);
610
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000611 if (DT) {
612 // Latches of the cloned loops dominate over the loop exit, so idom of the
613 // latter is the first cloned loop body, as original PreHeader dominates
614 // the original loop body.
615 if (Iter == 0)
616 DT->changeImmediateDominator(Exit, cast<BasicBlock>(LVMap[Latch]));
Eli Friedman3af2f532018-12-21 01:28:49 +0000617#ifdef EXPENSIVE_CHECKS
David Green7c35de12018-02-28 11:00:08 +0000618 assert(DT->verify(DominatorTree::VerificationLevel::Fast));
Eli Friedman3af2f532018-12-21 01:28:49 +0000619#endif
Serge Pavlov098ee2f2017-01-24 06:58:39 +0000620 }
621
Vyacheslav Zakharine06831a2018-09-26 01:03:21 +0000622 auto *LatchBRCopy = cast<BranchInst>(VMap[LatchBR]);
623 updateBranchWeights(InsertBot, LatchBRCopy, Iter,
Michael Kupersteinb151a642016-11-30 21:13:57 +0000624 PeelCount, ExitWeight);
Vyacheslav Zakharine06831a2018-09-26 01:03:21 +0000625 // Remove Loop metadata from the latch branch instruction
626 // because it is not the Loop's latch branch anymore.
627 LatchBRCopy->setMetadata(LLVMContext::MD_loop, nullptr);
Michael Kupersteinb151a642016-11-30 21:13:57 +0000628
629 InsertTop = InsertBot;
630 InsertBot = SplitBlock(InsertBot, InsertBot->getTerminator(), DT, LI);
631 InsertBot->setName(Header->getName() + ".peel.next");
632
633 F->getBasicBlockList().splice(InsertTop->getIterator(),
634 F->getBasicBlockList(),
635 NewBlocks[0]->getIterator(), F->end());
Michael Kupersteinb151a642016-11-30 21:13:57 +0000636 }
637
638 // Now adjust the phi nodes in the loop header to get their initial values
639 // from the last peeled-off iteration instead of the preheader.
640 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
641 PHINode *PHI = cast<PHINode>(I);
642 Value *NewVal = PHI->getIncomingValueForBlock(Latch);
643 Instruction *LatchInst = dyn_cast<Instruction>(NewVal);
644 if (LatchInst && L->contains(LatchInst))
645 NewVal = LVMap[LatchInst];
646
647 PHI->setIncomingValue(PHI->getBasicBlockIndex(NewPreHeader), NewVal);
648 }
649
650 // Adjust the branch weights on the loop exit.
651 if (ExitWeight) {
Xin Tong29402312017-01-02 20:27:23 +0000652 // The backedge count is the difference of current header weight and
653 // current loop exit weight. If the current header weight is smaller than
654 // the current loop exit weight, we mark the loop backedge weight as 1.
655 uint64_t BackEdgeWeight = 0;
656 if (ExitWeight < CurHeaderWeight)
657 BackEdgeWeight = CurHeaderWeight - ExitWeight;
658 else
659 BackEdgeWeight = 1;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000660 MDBuilder MDB(LatchBR->getContext());
661 MDNode *WeightNode =
662 HeaderIdx ? MDB.createBranchWeights(ExitWeight, BackEdgeWeight)
663 : MDB.createBranchWeights(BackEdgeWeight, ExitWeight);
664 LatchBR->setMetadata(LLVMContext::MD_prof, WeightNode);
665 }
666
Florian Hahn6ab83b72019-02-14 13:59:39 +0000667 if (Loop *ParentLoop = L->getParentLoop())
668 L = ParentLoop;
Michael Kupersteinb151a642016-11-30 21:13:57 +0000669
Florian Hahn6ab83b72019-02-14 13:59:39 +0000670 // We modified the loop, update SE.
671 SE->forgetTopmostLoop(L);
672
673 // FIXME: Incrementally update loop-simplify
Alina Sbirleaf31eba62019-05-08 17:05:36 +0000674 simplifyLoop(L, DT, LI, SE, AC, nullptr, PreserveLCSSA);
Eli Friedman0a217452017-01-18 23:26:37 +0000675
Michael Kupersteinb151a642016-11-30 21:13:57 +0000676 NumPeeled++;
677
678 return true;
679}