blob: 6c1482a8fd308c47f95d7efe0b5fa20e9b3ff882 [file] [log] [blame]
Andrew Trickd04d15292011-12-09 06:19:40 +00001//===-- UnrollLoopRuntime.cpp - Runtime Loop unrolling utilities ----------===//
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 some loop unrolling utilities for loops with run-time
11// trip counts. See LoopUnroll.cpp for unrolling loops with compile-time
12// trip counts.
13//
Jakub Staszak1b1d5232011-12-18 21:52:30 +000014// The functions in this file are used to generate extra code when the
Andrew Trickd04d15292011-12-09 06:19:40 +000015// run-time trip count modulo the unroll factor is not 0. When this is the
16// case, we need to generate code to execute these 'left over' iterations.
17//
Jakub Staszak1b1d5232011-12-18 21:52:30 +000018// The current strategy generates an if-then-else sequence prior to the
David L Kreitzer188de5a2016-04-05 12:19:35 +000019// unrolled loop to execute the 'left over' iterations before or after the
20// unrolled loop.
Andrew Trickd04d15292011-12-09 06:19:40 +000021//
22//===----------------------------------------------------------------------===//
23
Anna Thomasec9b3262017-07-13 13:21:23 +000024#include "llvm/ADT/SmallSet.h"
David Blaikiea373d182018-03-28 17:44:36 +000025#include "llvm/ADT/Statistic.h"
Chandler Carruthb5797b62015-01-18 09:21:15 +000026#include "llvm/Analysis/AliasAnalysis.h"
Andrew Trickd04d15292011-12-09 06:19:40 +000027#include "llvm/Analysis/LoopIterator.h"
Andrew Trickd04d15292011-12-09 06:19:40 +000028#include "llvm/Analysis/ScalarEvolution.h"
29#include "llvm/Analysis/ScalarEvolutionExpander.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/BasicBlock.h"
Chandler Carruth32c52c72015-01-18 02:39:37 +000031#include "llvm/IR/Dominators.h"
Kevin Qinfc02e3c2014-09-29 11:15:00 +000032#include "llvm/IR/Metadata.h"
Mehdi Aminia28d91d2015-03-10 02:37:25 +000033#include "llvm/IR/Module.h"
Andrew Trickd04d15292011-12-09 06:19:40 +000034#include "llvm/Support/Debug.h"
35#include "llvm/Support/raw_ostream.h"
David Blaikiea373d182018-03-28 17:44:36 +000036#include "llvm/Transforms/Utils.h"
Andrew Trickd04d15292011-12-09 06:19:40 +000037#include "llvm/Transforms/Utils/BasicBlockUtils.h"
38#include "llvm/Transforms/Utils/Cloning.h"
Anna Thomase5e5e592017-06-30 17:57:07 +000039#include "llvm/Transforms/Utils/LoopUtils.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000040#include "llvm/Transforms/Utils/UnrollLoop.h"
Andrew Trickd04d15292011-12-09 06:19:40 +000041#include <algorithm>
42
43using namespace llvm;
44
Chandler Carruth964daaa2014-04-22 02:55:47 +000045#define DEBUG_TYPE "loop-unroll"
46
Jakub Staszak1b1d5232011-12-18 21:52:30 +000047STATISTIC(NumRuntimeUnrolled,
Andrew Trickd04d15292011-12-09 06:19:40 +000048 "Number of loops unrolled with run-time trip counts");
Anna Thomase5e5e592017-06-30 17:57:07 +000049static cl::opt<bool> UnrollRuntimeMultiExit(
50 "unroll-runtime-multi-exit", cl::init(false), cl::Hidden,
51 cl::desc("Allow runtime unrolling for loops with multiple exits, when "
52 "epilog is generated"));
Andrew Trickd04d15292011-12-09 06:19:40 +000053
54/// Connect the unrolling prolog code to the original loop.
55/// The unrolling prolog code contains code to execute the
56/// 'extra' iterations if the run-time trip count modulo the
57/// unroll count is non-zero.
58///
59/// This function performs the following:
60/// - Create PHI nodes at prolog end block to combine values
61/// that exit the prolog code and jump around the prolog.
62/// - Add a PHI operand to a PHI node at the loop exit block
63/// for values that exit the prolog and go around the loop.
64/// - Branch around the original loop if the trip count is less
65/// than the unroll factor.
66///
Sanjoy Das11b279a2015-02-18 19:32:25 +000067static void ConnectProlog(Loop *L, Value *BECount, unsigned Count,
Anna Thomas734ab3f2017-07-07 18:05:28 +000068 BasicBlock *PrologExit,
69 BasicBlock *OriginalLoopLatchExit,
70 BasicBlock *PreHeader, BasicBlock *NewPreHeader,
71 ValueToValueMapTy &VMap, DominatorTree *DT,
72 LoopInfo *LI, bool PreserveLCSSA) {
Andrew Trickd04d15292011-12-09 06:19:40 +000073 BasicBlock *Latch = L->getLoopLatch();
Craig Toppere73658d2014-04-28 04:05:08 +000074 assert(Latch && "Loop must have a latch");
David L Kreitzer188de5a2016-04-05 12:19:35 +000075 BasicBlock *PrologLatch = cast<BasicBlock>(VMap[Latch]);
Andrew Trickd04d15292011-12-09 06:19:40 +000076
77 // Create a PHI node for each outgoing value from the original loop
78 // (which means it is an outgoing value from the prolog code too).
79 // The new PHI node is inserted in the prolog end basic block.
David L Kreitzer188de5a2016-04-05 12:19:35 +000080 // The new PHI node value is added as an operand of a PHI node in either
Andrew Trickd04d15292011-12-09 06:19:40 +000081 // the loop header or the loop exit block.
David L Kreitzer188de5a2016-04-05 12:19:35 +000082 for (BasicBlock *Succ : successors(Latch)) {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +000083 for (PHINode &PN : Succ->phis()) {
Andrew Trickd04d15292011-12-09 06:19:40 +000084 // Add a new PHI node to the prolog end block and add the
85 // appropriate incoming values.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +000086 PHINode *NewPN = PHINode::Create(PN.getType(), 2, PN.getName() + ".unr",
David L Kreitzer188de5a2016-04-05 12:19:35 +000087 PrologExit->getFirstNonPHI());
Andrew Trickd04d15292011-12-09 06:19:40 +000088 // Adding a value to the new PHI node from the original loop preheader.
89 // This is the value that skips all the prolog code.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +000090 if (L->contains(&PN)) {
91 NewPN->addIncoming(PN.getIncomingValueForBlock(NewPreHeader),
David L Kreitzer188de5a2016-04-05 12:19:35 +000092 PreHeader);
Andrew Trickd04d15292011-12-09 06:19:40 +000093 } else {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +000094 NewPN->addIncoming(UndefValue::get(PN.getType()), PreHeader);
Andrew Trickd04d15292011-12-09 06:19:40 +000095 }
Jakub Staszak1b1d5232011-12-18 21:52:30 +000096
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +000097 Value *V = PN.getIncomingValueForBlock(Latch);
Andrew Trickd04d15292011-12-09 06:19:40 +000098 if (Instruction *I = dyn_cast<Instruction>(V)) {
99 if (L->contains(I)) {
Duncan P. N. Exon Smitha71301b2016-04-17 19:26:49 +0000100 V = VMap.lookup(I);
Andrew Trickd04d15292011-12-09 06:19:40 +0000101 }
102 }
103 // Adding a value to the new PHI node from the last prolog block
104 // that was created.
David L Kreitzer188de5a2016-04-05 12:19:35 +0000105 NewPN->addIncoming(V, PrologLatch);
Andrew Trickd04d15292011-12-09 06:19:40 +0000106
107 // Update the existing PHI node operand with the value from the
108 // new PHI node. How this is done depends on if the existing
109 // PHI node is in the original loop block, or the exit block.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000110 if (L->contains(&PN)) {
111 PN.setIncomingValue(PN.getBasicBlockIndex(NewPreHeader), NewPN);
Andrew Trickd04d15292011-12-09 06:19:40 +0000112 } else {
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000113 PN.addIncoming(NewPN, PrologExit);
Andrew Trickd04d15292011-12-09 06:19:40 +0000114 }
115 }
116 }
117
Michael Zolotukhind9b6ad32016-08-02 19:19:31 +0000118 // Make sure that created prolog loop is in simplified form
119 SmallVector<BasicBlock *, 4> PrologExitPreds;
120 Loop *PrologLoop = LI->getLoopFor(PrologLatch);
121 if (PrologLoop) {
122 for (BasicBlock *PredBB : predecessors(PrologExit))
123 if (PrologLoop->contains(PredBB))
124 PrologExitPreds.push_back(PredBB);
125
126 SplitBlockPredecessors(PrologExit, PrologExitPreds, ".unr-lcssa", DT, LI,
127 PreserveLCSSA);
128 }
129
Sanjay Patele08381a2016-02-08 19:27:33 +0000130 // Create a branch around the original loop, which is taken if there are no
Sanjoy Das11b279a2015-02-18 19:32:25 +0000131 // iterations remaining to be executed after running the prologue.
David L Kreitzer188de5a2016-04-05 12:19:35 +0000132 Instruction *InsertPt = PrologExit->getTerminator();
Alexey Samsonovea201992015-06-11 18:25:44 +0000133 IRBuilder<> B(InsertPt);
Sanjoy Das11b279a2015-02-18 19:32:25 +0000134
135 assert(Count != 0 && "nonsensical Count!");
136
David L Kreitzer8d441eb2016-03-25 14:24:52 +0000137 // If BECount <u (Count - 1) then (BECount + 1) % Count == (BECount + 1)
138 // This means %xtraiter is (BECount + 1) and all of the iterations of this
139 // loop were executed by the prologue. Note that if BECount <u (Count - 1)
140 // then (BECount + 1) cannot unsigned-overflow.
Alexey Samsonovea201992015-06-11 18:25:44 +0000141 Value *BrLoopExit =
142 B.CreateICmpULT(BECount, ConstantInt::get(BECount->getType(), Count - 1));
Andrew Trickd04d15292011-12-09 06:19:40 +0000143 // Split the exit to maintain loop canonicalization guarantees
Anna Thomas734ab3f2017-07-07 18:05:28 +0000144 SmallVector<BasicBlock *, 4> Preds(predecessors(OriginalLoopLatchExit));
145 SplitBlockPredecessors(OriginalLoopLatchExit, Preds, ".unr-lcssa", DT, LI,
Justin Bogner843fb202015-12-15 19:40:57 +0000146 PreserveLCSSA);
Andrew Trickd04d15292011-12-09 06:19:40 +0000147 // Add the branch to the exit block (around the unrolled loop)
Anna Thomas734ab3f2017-07-07 18:05:28 +0000148 B.CreateCondBr(BrLoopExit, OriginalLoopLatchExit, NewPreHeader);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000149 InsertPt->eraseFromParent();
Eli Friedman0a217452017-01-18 23:26:37 +0000150 if (DT)
Anna Thomas734ab3f2017-07-07 18:05:28 +0000151 DT->changeImmediateDominator(OriginalLoopLatchExit, PrologExit);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000152}
153
154/// Connect the unrolling epilog code to the original loop.
155/// The unrolling epilog code contains code to execute the
156/// 'extra' iterations if the run-time trip count modulo the
157/// unroll count is non-zero.
158///
159/// This function performs the following:
160/// - Update PHI nodes at the unrolling loop exit and epilog loop exit
161/// - Create PHI nodes at the unrolling loop exit to combine
162/// values that exit the unrolling loop code and jump around it.
163/// - Update PHI operands in the epilog loop by the new PHI nodes
164/// - Branch around the epilog loop if extra iters (ModVal) is zero.
165///
166static void ConnectEpilog(Loop *L, Value *ModVal, BasicBlock *NewExit,
167 BasicBlock *Exit, BasicBlock *PreHeader,
168 BasicBlock *EpilogPreHeader, BasicBlock *NewPreHeader,
169 ValueToValueMapTy &VMap, DominatorTree *DT,
170 LoopInfo *LI, bool PreserveLCSSA) {
171 BasicBlock *Latch = L->getLoopLatch();
172 assert(Latch && "Loop must have a latch");
173 BasicBlock *EpilogLatch = cast<BasicBlock>(VMap[Latch]);
174
175 // Loop structure should be the following:
176 //
177 // PreHeader
178 // NewPreHeader
179 // Header
180 // ...
181 // Latch
182 // NewExit (PN)
183 // EpilogPreHeader
184 // EpilogHeader
185 // ...
186 // EpilogLatch
187 // Exit (EpilogPN)
188
189 // Update PHI nodes at NewExit and Exit.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000190 for (PHINode &PN : NewExit->phis()) {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000191 // PN should be used in another PHI located in Exit block as
192 // Exit was split by SplitBlockPredecessors into Exit and NewExit
193 // Basicaly it should look like:
194 // NewExit:
195 // PN = PHI [I, Latch]
196 // ...
197 // Exit:
198 // EpilogPN = PHI [PN, EpilogPreHeader]
199 //
200 // There is EpilogPreHeader incoming block instead of NewExit as
201 // NewExit was spilt 1 more time to get EpilogPreHeader.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000202 assert(PN.hasOneUse() && "The phi should have 1 use");
203 PHINode *EpilogPN = cast<PHINode>(PN.use_begin()->getUser());
David L Kreitzer188de5a2016-04-05 12:19:35 +0000204 assert(EpilogPN->getParent() == Exit && "EpilogPN should be in Exit block");
205
206 // Add incoming PreHeader from branch around the Loop
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000207 PN.addIncoming(UndefValue::get(PN.getType()), PreHeader);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000208
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000209 Value *V = PN.getIncomingValueForBlock(Latch);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000210 Instruction *I = dyn_cast<Instruction>(V);
211 if (I && L->contains(I))
212 // If value comes from an instruction in the loop add VMap value.
Duncan P. N. Exon Smitha71301b2016-04-17 19:26:49 +0000213 V = VMap.lookup(I);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000214 // For the instruction out of the loop, constant or undefined value
215 // insert value itself.
216 EpilogPN->addIncoming(V, EpilogLatch);
217
218 assert(EpilogPN->getBasicBlockIndex(EpilogPreHeader) >= 0 &&
219 "EpilogPN should have EpilogPreHeader incoming block");
220 // Change EpilogPreHeader incoming block to NewExit.
221 EpilogPN->setIncomingBlock(EpilogPN->getBasicBlockIndex(EpilogPreHeader),
222 NewExit);
223 // Now PHIs should look like:
224 // NewExit:
225 // PN = PHI [I, Latch], [undef, PreHeader]
226 // ...
227 // Exit:
228 // EpilogPN = PHI [PN, NewExit], [VMap[I], EpilogLatch]
229 }
230
231 // Create PHI nodes at NewExit (from the unrolling loop Latch and PreHeader).
232 // Update corresponding PHI nodes in epilog loop.
233 for (BasicBlock *Succ : successors(Latch)) {
234 // Skip this as we already updated phis in exit blocks.
235 if (!L->contains(Succ))
236 continue;
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000237 for (PHINode &PN : Succ->phis()) {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000238 // Add new PHI nodes to the loop exit block and update epilog
239 // PHIs with the new PHI values.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000240 PHINode *NewPN = PHINode::Create(PN.getType(), 2, PN.getName() + ".unr",
David L Kreitzer188de5a2016-04-05 12:19:35 +0000241 NewExit->getFirstNonPHI());
242 // Adding a value to the new PHI node from the unrolling loop preheader.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000243 NewPN->addIncoming(PN.getIncomingValueForBlock(NewPreHeader), PreHeader);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000244 // Adding a value to the new PHI node from the unrolling loop latch.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000245 NewPN->addIncoming(PN.getIncomingValueForBlock(Latch), Latch);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000246
247 // Update the existing PHI node operand with the value from the new PHI
248 // node. Corresponding instruction in epilog loop should be PHI.
Benjamin Kramerc7fc81e2017-12-30 15:27:33 +0000249 PHINode *VPN = cast<PHINode>(VMap[&PN]);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000250 VPN->setIncomingValue(VPN->getBasicBlockIndex(EpilogPreHeader), NewPN);
251 }
252 }
253
254 Instruction *InsertPt = NewExit->getTerminator();
255 IRBuilder<> B(InsertPt);
Evgeny Stupachenko23ce61b2016-04-27 03:04:54 +0000256 Value *BrLoopExit = B.CreateIsNotNull(ModVal, "lcmp.mod");
David L Kreitzer188de5a2016-04-05 12:19:35 +0000257 assert(Exit && "Loop must have a single exit block only");
Eli Friedman0a217452017-01-18 23:26:37 +0000258 // Split the epilogue exit to maintain loop canonicalization guarantees
David L Kreitzer188de5a2016-04-05 12:19:35 +0000259 SmallVector<BasicBlock*, 4> Preds(predecessors(Exit));
260 SplitBlockPredecessors(Exit, Preds, ".epilog-lcssa", DT, LI,
261 PreserveLCSSA);
262 // Add the branch to the exit block (around the unrolling loop)
263 B.CreateCondBr(BrLoopExit, EpilogPreHeader, Exit);
Andrew Trickd04d15292011-12-09 06:19:40 +0000264 InsertPt->eraseFromParent();
Eli Friedman0a217452017-01-18 23:26:37 +0000265 if (DT)
266 DT->changeImmediateDominator(Exit, NewExit);
267
268 // Split the main loop exit to maintain canonicalization guarantees.
269 SmallVector<BasicBlock*, 4> NewExitPreds{Latch};
270 SplitBlockPredecessors(NewExit, NewExitPreds, ".loopexit", DT, LI,
271 PreserveLCSSA);
Andrew Trickd04d15292011-12-09 06:19:40 +0000272}
273
274/// Create a clone of the blocks in a loop and connect them together.
David L Kreitzer188de5a2016-04-05 12:19:35 +0000275/// If CreateRemainderLoop is false, loop structure will not be cloned,
276/// otherwise a new loop will be created including all cloned blocks, and the
277/// iterator of it switches to count NewIter down to 0.
278/// The cloned blocks should be inserted between InsertTop and InsertBot.
279/// If loop structure is cloned InsertTop should be new preheader, InsertBot
280/// new loop exit.
Anna Thomase5e5e592017-06-30 17:57:07 +0000281/// Return the new cloned loop that is created when CreateRemainderLoop is true.
282static Loop *
283CloneLoopBlocks(Loop *L, Value *NewIter, const bool CreateRemainderLoop,
Sam Parker718c8a62017-08-14 09:25:26 +0000284 const bool UseEpilogRemainder, const bool UnrollRemainder,
285 BasicBlock *InsertTop,
Anna Thomase5e5e592017-06-30 17:57:07 +0000286 BasicBlock *InsertBot, BasicBlock *Preheader,
287 std::vector<BasicBlock *> &NewBlocks, LoopBlocksDFS &LoopBlocks,
288 ValueToValueMapTy &VMap, DominatorTree *DT, LoopInfo *LI) {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000289 StringRef suffix = UseEpilogRemainder ? "epil" : "prol";
Andrew Trickd04d15292011-12-09 06:19:40 +0000290 BasicBlock *Header = L->getHeader();
291 BasicBlock *Latch = L->getLoopLatch();
292 Function *F = Header->getParent();
293 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO();
294 LoopBlocksDFS::RPOIterator BlockEnd = LoopBlocks.endRPO();
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000295 Loop *ParentLoop = L->getParentLoop();
Florian Hahn4f9d6d52017-01-10 23:43:35 +0000296 NewLoopsMap NewLoops;
Florian Hahn5364cf32017-01-31 11:13:44 +0000297 NewLoops[ParentLoop] = ParentLoop;
298 if (!CreateRemainderLoop)
Michael Kuperstein5dd55e82017-01-26 01:04:11 +0000299 NewLoops[L] = ParentLoop;
300
Andrew Trickd04d15292011-12-09 06:19:40 +0000301 // For each block in the original loop, create a new copy,
302 // and update the value map with the newly created values.
303 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000304 BasicBlock *NewBB = CloneBasicBlock(*BB, VMap, "." + suffix, F);
Andrew Trickd04d15292011-12-09 06:19:40 +0000305 NewBlocks.push_back(NewBB);
Florian Hahn5364cf32017-01-31 11:13:44 +0000306
Michael Kuperstein5dd55e82017-01-26 01:04:11 +0000307 // If we're unrolling the outermost loop, there's no remainder loop,
308 // and this block isn't in a nested loop, then the new block is not
309 // in any loop. Otherwise, add it to loopinfo.
310 if (CreateRemainderLoop || LI->getLoopFor(*BB) != L || ParentLoop)
Florian Hahn4f9d6d52017-01-10 23:43:35 +0000311 addClonedBlockToLoopInfo(*BB, NewBB, LI, NewLoops);
Andrew Trickd04d15292011-12-09 06:19:40 +0000312
313 VMap[*BB] = NewBB;
314 if (Header == *BB) {
315 // For the first block, add a CFG connection to this newly
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000316 // created block.
Andrew Trickd04d15292011-12-09 06:19:40 +0000317 InsertTop->getTerminator()->setSuccessor(0, NewBB);
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000318 }
Junmo Park502ff662016-01-28 01:23:18 +0000319
Eli Friedman0a217452017-01-18 23:26:37 +0000320 if (DT) {
321 if (Header == *BB) {
322 // The header is dominated by the preheader.
323 DT->addNewBlock(NewBB, InsertTop);
324 } else {
325 // Copy information from original loop to unrolled loop.
326 BasicBlock *IDomBB = DT->getNode(*BB)->getIDom()->getBlock();
327 DT->addNewBlock(NewBB, cast<BasicBlock>(VMap[IDomBB]));
328 }
329 }
330
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000331 if (Latch == *BB) {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000332 // For the last block, if CreateRemainderLoop is false, create a direct
333 // jump to InsertBot. If not, create a loop back to cloned head.
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000334 VMap.erase((*BB)->getTerminator());
335 BasicBlock *FirstLoopBB = cast<BasicBlock>(VMap[Header]);
336 BranchInst *LatchBR = cast<BranchInst>(NewBB->getTerminator());
Alexey Samsonovea201992015-06-11 18:25:44 +0000337 IRBuilder<> Builder(LatchBR);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000338 if (!CreateRemainderLoop) {
Alexey Samsonovea201992015-06-11 18:25:44 +0000339 Builder.CreateBr(InsertBot);
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000340 } else {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000341 PHINode *NewIdx = PHINode::Create(NewIter->getType(), 2,
342 suffix + ".iter",
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000343 FirstLoopBB->getFirstNonPHI());
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000344 Value *IdxSub =
345 Builder.CreateSub(NewIdx, ConstantInt::get(NewIdx->getType(), 1),
346 NewIdx->getName() + ".sub");
347 Value *IdxCmp =
348 Builder.CreateIsNotNull(IdxSub, NewIdx->getName() + ".cmp");
Alexey Samsonovea201992015-06-11 18:25:44 +0000349 Builder.CreateCondBr(IdxCmp, FirstLoopBB, InsertBot);
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000350 NewIdx->addIncoming(NewIter, InsertTop);
351 NewIdx->addIncoming(IdxSub, NewBB);
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000352 }
Alexey Samsonovea201992015-06-11 18:25:44 +0000353 LatchBR->eraseFromParent();
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000354 }
355 }
356
357 // Change the incoming values to the ones defined in the preheader or
358 // cloned loop.
359 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
Duncan P. N. Exon Smith5b4c8372015-10-13 02:39:05 +0000360 PHINode *NewPHI = cast<PHINode>(VMap[&*I]);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000361 if (!CreateRemainderLoop) {
362 if (UseEpilogRemainder) {
363 unsigned idx = NewPHI->getBasicBlockIndex(Preheader);
364 NewPHI->setIncomingBlock(idx, InsertTop);
365 NewPHI->removeIncomingValue(Latch, false);
366 } else {
367 VMap[&*I] = NewPHI->getIncomingValueForBlock(Preheader);
368 cast<BasicBlock>(VMap[Header])->getInstList().erase(NewPHI);
369 }
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000370 } else {
371 unsigned idx = NewPHI->getBasicBlockIndex(Preheader);
372 NewPHI->setIncomingBlock(idx, InsertTop);
373 BasicBlock *NewLatch = cast<BasicBlock>(VMap[Latch]);
374 idx = NewPHI->getBasicBlockIndex(Latch);
375 Value *InVal = NewPHI->getIncomingValue(idx);
376 NewPHI->setIncomingBlock(idx, NewLatch);
Duncan P. N. Exon Smitha71301b2016-04-17 19:26:49 +0000377 if (Value *V = VMap.lookup(InVal))
378 NewPHI->setIncomingValue(idx, V);
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000379 }
380 }
Florian Hahn5364cf32017-01-31 11:13:44 +0000381 if (CreateRemainderLoop) {
382 Loop *NewLoop = NewLoops[L];
383 assert(NewLoop && "L should have been cloned");
Sam Parker7cd826a2017-09-04 08:12:16 +0000384
385 // Only add loop metadata if the loop is not going to be completely
386 // unrolled.
387 if (UnrollRemainder)
388 return NewLoop;
389
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000390 // Add unroll disable metadata to disable future unrolling for this loop.
Hongbin Zheng73f65042017-10-15 07:31:02 +0000391 NewLoop->setLoopAlreadyUnrolled();
Anna Thomase5e5e592017-06-30 17:57:07 +0000392 return NewLoop;
Andrew Trickd04d15292011-12-09 06:19:40 +0000393 }
Anna Thomase5e5e592017-06-30 17:57:07 +0000394 else
395 return nullptr;
Andrew Trickd04d15292011-12-09 06:19:40 +0000396}
397
Anna Thomas8e431a92017-07-12 20:55:43 +0000398/// Returns true if we can safely unroll a multi-exit/exiting loop. OtherExits
399/// is populated with all the loop exit blocks other than the LatchExit block.
400static bool
401canSafelyUnrollMultiExitLoop(Loop *L, SmallVectorImpl<BasicBlock *> &OtherExits,
402 BasicBlock *LatchExit, bool PreserveLCSSA,
403 bool UseEpilogRemainder) {
404
Anna Thomas5c07a4c2017-07-21 16:30:38 +0000405 // We currently have some correctness constrains in unrolling a multi-exit
406 // loop. Check for these below.
407
Anna Thomas8e431a92017-07-12 20:55:43 +0000408 // We rely on LCSSA form being preserved when the exit blocks are transformed.
409 if (!PreserveLCSSA)
410 return false;
411 SmallVector<BasicBlock *, 4> Exits;
412 L->getUniqueExitBlocks(Exits);
413 for (auto *BB : Exits)
414 if (BB != LatchExit)
415 OtherExits.push_back(BB);
416
417 // TODO: Support multiple exiting blocks jumping to the `LatchExit` when
418 // UnrollRuntimeMultiExit is true. This will need updating the logic in
419 // connectEpilog/connectProlog.
420 if (!LatchExit->getSinglePredecessor()) {
421 DEBUG(dbgs() << "Bailout for multi-exit handling when latch exit has >1 "
422 "predecessor.\n");
423 return false;
424 }
425 // FIXME: We bail out of multi-exit unrolling when epilog loop is generated
426 // and L is an inner loop. This is because in presence of multiple exits, the
427 // outer loop is incorrect: we do not add the EpilogPreheader and exit to the
428 // outer loop. This is automatically handled in the prolog case, so we do not
429 // have that bug in prolog generation.
430 if (UseEpilogRemainder && L->getParentLoop())
431 return false;
432
433 // All constraints have been satisfied.
434 return true;
435}
436
Anna Thomas5c07a4c2017-07-21 16:30:38 +0000437/// Returns true if we can profitably unroll the multi-exit loop L. Currently,
438/// we return true only if UnrollRuntimeMultiExit is set to true.
439static bool canProfitablyUnrollMultiExitLoop(
440 Loop *L, SmallVectorImpl<BasicBlock *> &OtherExits, BasicBlock *LatchExit,
441 bool PreserveLCSSA, bool UseEpilogRemainder) {
Anna Thomas8e431a92017-07-12 20:55:43 +0000442
Anna Thomas5c07a4c2017-07-21 16:30:38 +0000443#if !defined(NDEBUG)
444 SmallVector<BasicBlock *, 8> OtherExitsDummyCheck;
445 assert(canSafelyUnrollMultiExitLoop(L, OtherExitsDummyCheck, LatchExit,
446 PreserveLCSSA, UseEpilogRemainder) &&
447 "Should be safe to unroll before checking profitability!");
448#endif
Anna Thomasf34537d2017-09-15 15:56:05 +0000449
Anna Thomas5c07a4c2017-07-21 16:30:38 +0000450 // Priority goes to UnrollRuntimeMultiExit if it's supplied.
Anna Thomasf34537d2017-09-15 15:56:05 +0000451 if (UnrollRuntimeMultiExit.getNumOccurrences())
452 return UnrollRuntimeMultiExit;
453
454 // The main pain point with multi-exit loop unrolling is that once unrolled,
455 // we will not be able to merge all blocks into a straight line code.
456 // There are branches within the unrolled loop that go to the OtherExits.
457 // The second point is the increase in code size, but this is true
458 // irrespective of multiple exits.
459
460 // Note: Both the heuristics below are coarse grained. We are essentially
461 // enabling unrolling of loops that have a single side exit other than the
462 // normal LatchExit (i.e. exiting into a deoptimize block).
463 // The heuristics considered are:
464 // 1. low number of branches in the unrolled version.
465 // 2. high predictability of these extra branches.
466 // We avoid unrolling loops that have more than two exiting blocks. This
467 // limits the total number of branches in the unrolled loop to be atmost
468 // the unroll factor (since one of the exiting blocks is the latch block).
469 SmallVector<BasicBlock*, 4> ExitingBlocks;
470 L->getExitingBlocks(ExitingBlocks);
471 if (ExitingBlocks.size() > 2)
472 return false;
473
474 // The second heuristic is that L has one exit other than the latchexit and
475 // that exit is a deoptimize block. We know that deoptimize blocks are rarely
476 // taken, which also implies the branch leading to the deoptimize block is
477 // highly predictable.
478 return (OtherExits.size() == 1 &&
479 OtherExits[0]->getTerminatingDeoptimizeCall());
480 // TODO: These can be fine-tuned further to consider code size or deopt states
481 // that are captured by the deoptimize exit block.
482 // Also, we can extend this to support more cases, if we actually
483 // know of kinds of multiexit loops that would benefit from unrolling.
Anna Thomas5c07a4c2017-07-21 16:30:38 +0000484}
Anna Thomas8e431a92017-07-12 20:55:43 +0000485
David L Kreitzer188de5a2016-04-05 12:19:35 +0000486/// Insert code in the prolog/epilog code when unrolling a loop with a
Andrew Trickd04d15292011-12-09 06:19:40 +0000487/// run-time trip-count.
488///
489/// This method assumes that the loop unroll factor is total number
Justin Lebar6086c6a2016-02-12 21:01:37 +0000490/// of loop bodies in the loop after unrolling. (Some folks refer
Andrew Trickd04d15292011-12-09 06:19:40 +0000491/// to the unroll factor as the number of *extra* copies added).
492/// We assume also that the loop unroll factor is a power-of-two. So, after
493/// unrolling the loop, the number of loop bodies executed is 2,
Jakub Staszak1b1d5232011-12-18 21:52:30 +0000494/// 4, 8, etc. Note - LLVM converts the if-then-sequence to a switch
Andrew Trickd04d15292011-12-09 06:19:40 +0000495/// instruction in SimplifyCFG.cpp. Then, the backend decides how code for
496/// the switch instruction is generated.
497///
David L Kreitzer188de5a2016-04-05 12:19:35 +0000498/// ***Prolog case***
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000499/// extraiters = tripcount % loopfactor
500/// if (extraiters == 0) jump Loop:
Evgeny Stupachenko87880482016-04-08 20:20:38 +0000501/// else jump Prol:
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000502/// Prol: LoopBody;
503/// extraiters -= 1 // Omitted if unroll factor is 2.
504/// if (extraiters != 0) jump Prol: // Omitted if unroll factor is 2.
Evgeny Stupachenko87880482016-04-08 20:20:38 +0000505/// if (tripcount < loopfactor) jump End:
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000506/// Loop:
507/// ...
508/// End:
Andrew Trickd04d15292011-12-09 06:19:40 +0000509///
David L Kreitzer188de5a2016-04-05 12:19:35 +0000510/// ***Epilog case***
511/// extraiters = tripcount % loopfactor
Evgeny Stupachenko23ce61b2016-04-27 03:04:54 +0000512/// if (tripcount < loopfactor) jump LoopExit:
David L Kreitzer188de5a2016-04-05 12:19:35 +0000513/// unroll_iters = tripcount - extraiters
514/// Loop: LoopBody; (executes unroll_iter times);
515/// unroll_iter -= 1
516/// if (unroll_iter != 0) jump Loop:
517/// LoopExit:
518/// if (extraiters == 0) jump EpilExit:
519/// Epil: LoopBody; (executes extraiters times)
520/// extraiters -= 1 // Omitted if unroll factor is 2.
521/// if (extraiters != 0) jump Epil: // Omitted if unroll factor is 2.
522/// EpilExit:
523
524bool llvm::UnrollRuntimeLoopRemainder(Loop *L, unsigned Count,
525 bool AllowExpensiveTripCount,
526 bool UseEpilogRemainder,
Sam Parker718c8a62017-08-14 09:25:26 +0000527 bool UnrollRemainder,
David L Kreitzer188de5a2016-04-05 12:19:35 +0000528 LoopInfo *LI, ScalarEvolution *SE,
Sam Parker718c8a62017-08-14 09:25:26 +0000529 DominatorTree *DT, AssumptionCache *AC,
Sam Parker718c8a62017-08-14 09:25:26 +0000530 bool PreserveLCSSA) {
Anna Thomasbafe7662017-07-11 20:44:37 +0000531 DEBUG(dbgs() << "Trying runtime unrolling on Loop: \n");
532 DEBUG(L->dump());
Sam Parker7cd826a2017-09-04 08:12:16 +0000533 DEBUG(UseEpilogRemainder ? dbgs() << "Using epilog remainder.\n" :
534 dbgs() << "Using prolog remainder.\n");
Andrew Trickd04d15292011-12-09 06:19:40 +0000535
Anna Thomase5e5e592017-06-30 17:57:07 +0000536 // Make sure the loop is in canonical form.
Anna Thomasbafe7662017-07-11 20:44:37 +0000537 if (!L->isLoopSimplifyForm()) {
538 DEBUG(dbgs() << "Not in simplify form!\n");
David L Kreitzer188de5a2016-04-05 12:19:35 +0000539 return false;
Anna Thomasbafe7662017-07-11 20:44:37 +0000540 }
Andrew Trickd04d15292011-12-09 06:19:40 +0000541
Anna Thomas91eed9a2017-06-23 14:28:01 +0000542 // Guaranteed by LoopSimplifyForm.
543 BasicBlock *Latch = L->getLoopLatch();
Anna Thomase5e5e592017-06-30 17:57:07 +0000544 BasicBlock *Header = L->getHeader();
Anna Thomas91eed9a2017-06-23 14:28:01 +0000545
Anna Thomas91eed9a2017-06-23 14:28:01 +0000546 BranchInst *LatchBR = cast<BranchInst>(Latch->getTerminator());
Anna Thomas8e431a92017-07-12 20:55:43 +0000547 unsigned ExitIndex = LatchBR->getSuccessor(0) == Header ? 1 : 0;
548 BasicBlock *LatchExit = LatchBR->getSuccessor(ExitIndex);
Anna Thomase5e5e592017-06-30 17:57:07 +0000549 // Cloning the loop basic blocks (`CloneLoopBlocks`) requires that one of the
550 // targets of the Latch be an exit block out of the loop. This needs
551 // to be guaranteed by the callers of UnrollRuntimeLoopRemainder.
Anna Thomas8e431a92017-07-12 20:55:43 +0000552 assert(!L->contains(LatchExit) &&
Anna Thomase5e5e592017-06-30 17:57:07 +0000553 "one of the loop latch successors should be the exit block!");
Anna Thomas8e431a92017-07-12 20:55:43 +0000554 // These are exit blocks other than the target of the latch exiting block.
555 SmallVector<BasicBlock *, 4> OtherExits;
Anna Thomas5c07a4c2017-07-21 16:30:38 +0000556 bool isMultiExitUnrollingEnabled =
557 canSafelyUnrollMultiExitLoop(L, OtherExits, LatchExit, PreserveLCSSA,
558 UseEpilogRemainder) &&
559 canProfitablyUnrollMultiExitLoop(L, OtherExits, LatchExit, PreserveLCSSA,
560 UseEpilogRemainder);
Anna Thomas8e431a92017-07-12 20:55:43 +0000561 // Support only single exit and exiting block unless multi-exit loop unrolling is enabled.
562 if (!isMultiExitUnrollingEnabled &&
563 (!L->getExitingBlock() || OtherExits.size())) {
564 DEBUG(
565 dbgs()
566 << "Multiple exit/exiting blocks in loop and multi-exit unrolling not "
567 "enabled!\n");
Anna Thomaseb6d5d12017-07-06 18:39:26 +0000568 return false;
Anna Thomasbafe7662017-07-11 20:44:37 +0000569 }
Sanjay Patele08381a2016-02-08 19:27:33 +0000570 // Use Scalar Evolution to compute the trip count. This allows more loops to
571 // be unrolled than relying on induction var simplification.
Justin Bogner843fb202015-12-15 19:40:57 +0000572 if (!SE)
Andrew Trickd29cd732012-05-08 02:52:09 +0000573 return false;
Andrew Trickd04d15292011-12-09 06:19:40 +0000574
Sanjay Patele08381a2016-02-08 19:27:33 +0000575 // Only unroll loops with a computable trip count, and the trip count needs
576 // to be an int value (allowing a pointer type is a TODO item).
Anna Thomasdc935a62017-06-27 14:14:35 +0000577 // We calculate the backedge count by using getExitCount on the Latch block,
578 // which is proven to be the only exiting block in this loop. This is same as
579 // calculating getBackedgeTakenCount on the loop (which computes SCEV for all
580 // exiting blocks).
581 const SCEV *BECountSC = SE->getExitCount(L, Latch);
Sanjoy Das11b279a2015-02-18 19:32:25 +0000582 if (isa<SCEVCouldNotCompute>(BECountSC) ||
Anna Thomasbafe7662017-07-11 20:44:37 +0000583 !BECountSC->getType()->isIntegerTy()) {
584 DEBUG(dbgs() << "Could not compute exit block SCEV\n");
Andrew Trickd04d15292011-12-09 06:19:40 +0000585 return false;
Anna Thomasbafe7662017-07-11 20:44:37 +0000586 }
Andrew Trickd04d15292011-12-09 06:19:40 +0000587
Sanjoy Das11b279a2015-02-18 19:32:25 +0000588 unsigned BEWidth = cast<IntegerType>(BECountSC->getType())->getBitWidth();
Michael Zolotukhin0dcae712014-11-20 20:19:55 +0000589
Sanjay Patele08381a2016-02-08 19:27:33 +0000590 // Add 1 since the backedge count doesn't include the first loop iteration.
Jakub Staszak1b1d5232011-12-18 21:52:30 +0000591 const SCEV *TripCountSC =
Justin Bogner843fb202015-12-15 19:40:57 +0000592 SE->getAddExpr(BECountSC, SE->getConstant(BECountSC->getType(), 1));
Anna Thomasbafe7662017-07-11 20:44:37 +0000593 if (isa<SCEVCouldNotCompute>(TripCountSC)) {
594 DEBUG(dbgs() << "Could not compute trip count SCEV.\n");
Andrew Trickd04d15292011-12-09 06:19:40 +0000595 return false;
Anna Thomasbafe7662017-07-11 20:44:37 +0000596 }
Andrew Trickd04d15292011-12-09 06:19:40 +0000597
David L Kreitzer188de5a2016-04-05 12:19:35 +0000598 BasicBlock *PreHeader = L->getLoopPreheader();
599 BranchInst *PreHeaderBR = cast<BranchInst>(PreHeader->getTerminator());
Sanjoy Dase178f462015-04-14 03:20:38 +0000600 const DataLayout &DL = Header->getModule()->getDataLayout();
Justin Bogner843fb202015-12-15 19:40:57 +0000601 SCEVExpander Expander(*SE, DL, "loop-unroll");
Junmo Park6ebdc142016-02-16 06:46:58 +0000602 if (!AllowExpensiveTripCount &&
Anna Thomasbafe7662017-07-11 20:44:37 +0000603 Expander.isHighCostExpansion(TripCountSC, L, PreHeaderBR)) {
604 DEBUG(dbgs() << "High cost for expanding trip count scev!\n");
Sanjoy Dase178f462015-04-14 03:20:38 +0000605 return false;
Anna Thomasbafe7662017-07-11 20:44:37 +0000606 }
Sanjoy Dase178f462015-04-14 03:20:38 +0000607
Sanjoy Das11b279a2015-02-18 19:32:25 +0000608 // This constraint lets us deal with an overflowing trip count easily; see the
Sanjoy Das71190fe2015-04-12 01:24:01 +0000609 // comment on ModVal below.
Anna Thomasbafe7662017-07-11 20:44:37 +0000610 if (Log2_32(Count) > BEWidth) {
611 DEBUG(dbgs()
612 << "Count failed constraint on overflow trip count calculation.\n");
Andrew Trickd04d15292011-12-09 06:19:40 +0000613 return false;
Anna Thomasbafe7662017-07-11 20:44:37 +0000614 }
Andrew Trickd04d15292011-12-09 06:19:40 +0000615
David L Kreitzer188de5a2016-04-05 12:19:35 +0000616 // Loop structure is the following:
617 //
618 // PreHeader
619 // Header
620 // ...
621 // Latch
Anna Thomas91eed9a2017-06-23 14:28:01 +0000622 // LatchExit
David L Kreitzer188de5a2016-04-05 12:19:35 +0000623
624 BasicBlock *NewPreHeader;
625 BasicBlock *NewExit = nullptr;
626 BasicBlock *PrologExit = nullptr;
627 BasicBlock *EpilogPreHeader = nullptr;
628 BasicBlock *PrologPreHeader = nullptr;
629
630 if (UseEpilogRemainder) {
631 // If epilog remainder
632 // Split PreHeader to insert a branch around loop for unrolling.
633 NewPreHeader = SplitBlock(PreHeader, PreHeader->getTerminator(), DT, LI);
634 NewPreHeader->setName(PreHeader->getName() + ".new");
Anna Thomas91eed9a2017-06-23 14:28:01 +0000635 // Split LatchExit to create phi nodes from branch above.
636 SmallVector<BasicBlock*, 4> Preds(predecessors(LatchExit));
637 NewExit = SplitBlockPredecessors(LatchExit, Preds, ".unr-lcssa",
David L Kreitzer188de5a2016-04-05 12:19:35 +0000638 DT, LI, PreserveLCSSA);
Zhaoshi Zheng8af1e1c2017-12-26 23:31:21 +0000639 // NewExit gets its DebugLoc from LatchExit, which is not part of the
640 // original Loop.
641 // Fix this by setting Loop's DebugLoc to NewExit.
642 auto *NewExitTerminator = NewExit->getTerminator();
643 NewExitTerminator->setDebugLoc(Header->getTerminator()->getDebugLoc());
David L Kreitzer188de5a2016-04-05 12:19:35 +0000644 // Split NewExit to insert epilog remainder loop.
Zhaoshi Zheng8af1e1c2017-12-26 23:31:21 +0000645 EpilogPreHeader = SplitBlock(NewExit, NewExitTerminator, DT, LI);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000646 EpilogPreHeader->setName(Header->getName() + ".epil.preheader");
647 } else {
648 // If prolog remainder
649 // Split the original preheader twice to insert prolog remainder loop
650 PrologPreHeader = SplitEdge(PreHeader, Header, DT, LI);
651 PrologPreHeader->setName(Header->getName() + ".prol.preheader");
652 PrologExit = SplitBlock(PrologPreHeader, PrologPreHeader->getTerminator(),
653 DT, LI);
654 PrologExit->setName(Header->getName() + ".prol.loopexit");
655 // Split PrologExit to get NewPreHeader.
656 NewPreHeader = SplitBlock(PrologExit, PrologExit->getTerminator(), DT, LI);
657 NewPreHeader->setName(PreHeader->getName() + ".new");
658 }
659 // Loop structure should be the following:
660 // Epilog Prolog
661 //
662 // PreHeader PreHeader
663 // *NewPreHeader *PrologPreHeader
664 // Header *PrologExit
665 // ... *NewPreHeader
666 // Latch Header
667 // *NewExit ...
668 // *EpilogPreHeader Latch
Anna Thomas91eed9a2017-06-23 14:28:01 +0000669 // LatchExit LatchExit
David L Kreitzer188de5a2016-04-05 12:19:35 +0000670
671 // Calculate conditions for branch around loop for unrolling
672 // in epilog case and around prolog remainder loop in prolog case.
Andrew Trickd04d15292011-12-09 06:19:40 +0000673 // Compute the number of extra iterations required, which is:
David L Kreitzer188de5a2016-04-05 12:19:35 +0000674 // extra iterations = run-time trip count % loop unroll factor
675 PreHeaderBR = cast<BranchInst>(PreHeader->getTerminator());
Andrew Trickd04d15292011-12-09 06:19:40 +0000676 Value *TripCount = Expander.expandCodeFor(TripCountSC, TripCountSC->getType(),
677 PreHeaderBR);
Sanjoy Das11b279a2015-02-18 19:32:25 +0000678 Value *BECount = Expander.expandCodeFor(BECountSC, BECountSC->getType(),
679 PreHeaderBR);
Benjamin Kramer0bf086f2014-06-21 13:46:25 +0000680 IRBuilder<> B(PreHeaderBR);
David L Kreitzer8d441eb2016-03-25 14:24:52 +0000681 Value *ModVal;
682 // Calculate ModVal = (BECount + 1) % Count.
683 // Note that TripCount is BECount + 1.
684 if (isPowerOf2_32(Count)) {
David L Kreitzer188de5a2016-04-05 12:19:35 +0000685 // When Count is power of 2 we don't BECount for epilog case, however we'll
686 // need it for a branch around unrolling loop for prolog case.
David L Kreitzer8d441eb2016-03-25 14:24:52 +0000687 ModVal = B.CreateAnd(TripCount, Count - 1, "xtraiter");
David L Kreitzer188de5a2016-04-05 12:19:35 +0000688 // 1. There are no iterations to be run in the prolog/epilog loop.
David L Kreitzer8d441eb2016-03-25 14:24:52 +0000689 // OR
690 // 2. The addition computing TripCount overflowed.
691 //
692 // If (2) is true, we know that TripCount really is (1 << BEWidth) and so
693 // the number of iterations that remain to be run in the original loop is a
694 // multiple Count == (1 << Log2(Count)) because Log2(Count) <= BEWidth (we
695 // explicitly check this above).
696 } else {
697 // As (BECount + 1) can potentially unsigned overflow we count
698 // (BECount % Count) + 1 which is overflow safe as BECount % Count < Count.
699 Value *ModValTmp = B.CreateURem(BECount,
700 ConstantInt::get(BECount->getType(),
701 Count));
702 Value *ModValAdd = B.CreateAdd(ModValTmp,
703 ConstantInt::get(ModValTmp->getType(), 1));
704 // At that point (BECount % Count) + 1 could be equal to Count.
705 // To handle this case we need to take mod by Count one more time.
706 ModVal = B.CreateURem(ModValAdd,
707 ConstantInt::get(BECount->getType(), Count),
708 "xtraiter");
709 }
Evgeny Stupachenko23ce61b2016-04-27 03:04:54 +0000710 Value *BranchVal =
711 UseEpilogRemainder ? B.CreateICmpULT(BECount,
712 ConstantInt::get(BECount->getType(),
713 Count - 1)) :
714 B.CreateIsNotNull(ModVal, "lcmp.mod");
715 BasicBlock *RemainderLoop = UseEpilogRemainder ? NewExit : PrologPreHeader;
716 BasicBlock *UnrollingLoop = UseEpilogRemainder ? NewPreHeader : PrologExit;
David L Kreitzer188de5a2016-04-05 12:19:35 +0000717 // Branch to either remainder (extra iterations) loop or unrolling loop.
Evgeny Stupachenko23ce61b2016-04-27 03:04:54 +0000718 B.CreateCondBr(BranchVal, RemainderLoop, UnrollingLoop);
Andrew Trickd04d15292011-12-09 06:19:40 +0000719 PreHeaderBR->eraseFromParent();
Eli Friedman0a217452017-01-18 23:26:37 +0000720 if (DT) {
721 if (UseEpilogRemainder)
722 DT->changeImmediateDominator(NewExit, PreHeader);
723 else
724 DT->changeImmediateDominator(PrologExit, PreHeader);
725 }
Andrew Trickd04d15292011-12-09 06:19:40 +0000726 Function *F = Header->getParent();
Andrew Trickd04d15292011-12-09 06:19:40 +0000727 // Get an ordered list of blocks in the loop to help with the ordering of the
David L Kreitzer188de5a2016-04-05 12:19:35 +0000728 // cloned blocks in the prolog/epilog code
Andrew Trickd04d15292011-12-09 06:19:40 +0000729 LoopBlocksDFS LoopBlocks(L);
730 LoopBlocks.perform(LI);
731
732 //
733 // For each extra loop iteration, create a copy of the loop's basic blocks
734 // and generate a condition that branches to the copy depending on the
735 // number of 'left over' iterations.
736 //
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000737 std::vector<BasicBlock *> NewBlocks;
738 ValueToValueMapTy VMap;
Andrew Trickd04d15292011-12-09 06:19:40 +0000739
David L Kreitzer188de5a2016-04-05 12:19:35 +0000740 // For unroll factor 2 remainder loop will have 1 iterations.
741 // Do not create 1 iteration loop.
742 bool CreateRemainderLoop = (Count != 2);
Michael Zolotukhin0dcae712014-11-20 20:19:55 +0000743
Kevin Qinfc02e3c2014-09-29 11:15:00 +0000744 // Clone all the basic blocks in the loop. If Count is 2, we don't clone
745 // the loop, otherwise we create a cloned loop to execute the extra
746 // iterations. This function adds the appropriate CFG connections.
Anna Thomas91eed9a2017-06-23 14:28:01 +0000747 BasicBlock *InsertBot = UseEpilogRemainder ? LatchExit : PrologExit;
David L Kreitzer188de5a2016-04-05 12:19:35 +0000748 BasicBlock *InsertTop = UseEpilogRemainder ? EpilogPreHeader : PrologPreHeader;
Anna Thomase5e5e592017-06-30 17:57:07 +0000749 Loop *remainderLoop = CloneLoopBlocks(
Sam Parker718c8a62017-08-14 09:25:26 +0000750 L, ModVal, CreateRemainderLoop, UseEpilogRemainder, UnrollRemainder,
751 InsertTop, InsertBot,
Anna Thomase5e5e592017-06-30 17:57:07 +0000752 NewPreHeader, NewBlocks, LoopBlocks, VMap, DT, LI);
Andrew Trickd04d15292011-12-09 06:19:40 +0000753
David L Kreitzer188de5a2016-04-05 12:19:35 +0000754 // Insert the cloned blocks into the function.
755 F->getBasicBlockList().splice(InsertBot->getIterator(),
756 F->getBasicBlockList(),
757 NewBlocks[0]->getIterator(),
758 F->end());
759
Anna Thomase5e5e592017-06-30 17:57:07 +0000760 // Now the loop blocks are cloned and the other exiting blocks from the
761 // remainder are connected to the original Loop's exit blocks. The remaining
762 // work is to update the phi nodes in the original loop, and take in the
763 // values from the cloned region. Also update the dominator info for
Anna Thomasec9b3262017-07-13 13:21:23 +0000764 // OtherExits and their immediate successors, since we have new edges into
765 // OtherExits.
766 SmallSet<BasicBlock*, 8> ImmediateSuccessorsOfExitBlocks;
Anna Thomase5e5e592017-06-30 17:57:07 +0000767 for (auto *BB : OtherExits) {
768 for (auto &II : *BB) {
769
770 // Given we preserve LCSSA form, we know that the values used outside the
771 // loop will be used through these phi nodes at the exit blocks that are
772 // transformed below.
773 if (!isa<PHINode>(II))
774 break;
775 PHINode *Phi = cast<PHINode>(&II);
776 unsigned oldNumOperands = Phi->getNumIncomingValues();
777 // Add the incoming values from the remainder code to the end of the phi
778 // node.
779 for (unsigned i =0; i < oldNumOperands; i++){
Anna Thomas512dde72017-09-15 13:29:33 +0000780 Value *newVal = VMap.lookup(Phi->getIncomingValue(i));
Anna Thomas70ffd652017-07-10 15:29:38 +0000781 // newVal can be a constant or derived from values outside the loop, and
Anna Thomas512dde72017-09-15 13:29:33 +0000782 // hence need not have a VMap value. Also, since lookup already generated
783 // a default "null" VMap entry for this value, we need to populate that
784 // VMap entry correctly, with the mapped entry being itself.
785 if (!newVal) {
Anna Thomase5e5e592017-06-30 17:57:07 +0000786 newVal = Phi->getIncomingValue(i);
Anna Thomas512dde72017-09-15 13:29:33 +0000787 VMap[Phi->getIncomingValue(i)] = Phi->getIncomingValue(i);
788 }
Anna Thomase5e5e592017-06-30 17:57:07 +0000789 Phi->addIncoming(newVal,
790 cast<BasicBlock>(VMap[Phi->getIncomingBlock(i)]));
791 }
792 }
Simon Pilgrimf32f4be2017-07-13 17:10:12 +0000793#if defined(EXPENSIVE_CHECKS) && !defined(NDEBUG)
Anna Thomasec9b3262017-07-13 13:21:23 +0000794 for (BasicBlock *SuccBB : successors(BB)) {
795 assert(!(any_of(OtherExits,
796 [SuccBB](BasicBlock *EB) { return EB == SuccBB; }) ||
797 SuccBB == LatchExit) &&
798 "Breaks the definition of dedicated exits!");
799 }
800#endif
Anna Thomase5e5e592017-06-30 17:57:07 +0000801 // Update the dominator info because the immediate dominator is no longer the
802 // header of the original Loop. BB has edges both from L and remainder code.
803 // Since the preheader determines which loop is run (L or directly jump to
804 // the remainder code), we set the immediate dominator as the preheader.
Anna Thomasec9b3262017-07-13 13:21:23 +0000805 if (DT) {
Anna Thomase5e5e592017-06-30 17:57:07 +0000806 DT->changeImmediateDominator(BB, PreHeader);
Anna Thomasec9b3262017-07-13 13:21:23 +0000807 // Also update the IDom for immediate successors of BB. If the current
808 // IDom is the header, update the IDom to be the preheader because that is
809 // the nearest common dominator of all predecessors of SuccBB. We need to
810 // check for IDom being the header because successors of exit blocks can
811 // have edges from outside the loop, and we should not incorrectly update
812 // the IDom in that case.
813 for (BasicBlock *SuccBB: successors(BB))
814 if (ImmediateSuccessorsOfExitBlocks.insert(SuccBB).second) {
815 if (DT->getNode(SuccBB)->getIDom()->getBlock() == Header) {
816 assert(!SuccBB->getSinglePredecessor() &&
817 "BB should be the IDom then!");
818 DT->changeImmediateDominator(SuccBB, PreHeader);
819 }
820 }
821 }
Anna Thomase5e5e592017-06-30 17:57:07 +0000822 }
823
David L Kreitzer188de5a2016-04-05 12:19:35 +0000824 // Loop structure should be the following:
825 // Epilog Prolog
826 //
827 // PreHeader PreHeader
828 // NewPreHeader PrologPreHeader
829 // Header PrologHeader
830 // ... ...
831 // Latch PrologLatch
832 // NewExit PrologExit
833 // EpilogPreHeader NewPreHeader
834 // EpilogHeader Header
835 // ... ...
836 // EpilogLatch Latch
Anna Thomas91eed9a2017-06-23 14:28:01 +0000837 // LatchExit LatchExit
Andrew Trickd04d15292011-12-09 06:19:40 +0000838
Sanjay Patel4d36bba2016-02-08 21:32:43 +0000839 // Rewrite the cloned instruction operands to use the values created when the
840 // clone is created.
841 for (BasicBlock *BB : NewBlocks) {
842 for (Instruction &I : *BB) {
843 RemapInstruction(&I, VMap,
Duncan P. N. Exon Smithda68cbc2016-04-07 00:26:43 +0000844 RF_NoModuleLevelChanges | RF_IgnoreMissingLocals);
Andrew Trickd04d15292011-12-09 06:19:40 +0000845 }
846 }
847
David L Kreitzer188de5a2016-04-05 12:19:35 +0000848 if (UseEpilogRemainder) {
849 // Connect the epilog code to the original loop and update the
850 // PHI functions.
Anna Thomas91eed9a2017-06-23 14:28:01 +0000851 ConnectEpilog(L, ModVal, NewExit, LatchExit, PreHeader,
David L Kreitzer188de5a2016-04-05 12:19:35 +0000852 EpilogPreHeader, NewPreHeader, VMap, DT, LI,
853 PreserveLCSSA);
854
855 // Update counter in loop for unrolling.
856 // I should be multiply of Count.
857 IRBuilder<> B2(NewPreHeader->getTerminator());
858 Value *TestVal = B2.CreateSub(TripCount, ModVal, "unroll_iter");
859 BranchInst *LatchBR = cast<BranchInst>(Latch->getTerminator());
860 B2.SetInsertPoint(LatchBR);
861 PHINode *NewIdx = PHINode::Create(TestVal->getType(), 2, "niter",
862 Header->getFirstNonPHI());
863 Value *IdxSub =
864 B2.CreateSub(NewIdx, ConstantInt::get(NewIdx->getType(), 1),
865 NewIdx->getName() + ".nsub");
866 Value *IdxCmp;
867 if (LatchBR->getSuccessor(0) == Header)
868 IdxCmp = B2.CreateIsNotNull(IdxSub, NewIdx->getName() + ".ncmp");
869 else
870 IdxCmp = B2.CreateIsNull(IdxSub, NewIdx->getName() + ".ncmp");
871 NewIdx->addIncoming(TestVal, NewPreHeader);
872 NewIdx->addIncoming(IdxSub, Latch);
873 LatchBR->setCondition(IdxCmp);
874 } else {
875 // Connect the prolog code to the original loop and update the
876 // PHI functions.
Anna Thomas734ab3f2017-07-07 18:05:28 +0000877 ConnectProlog(L, BECount, Count, PrologExit, LatchExit, PreHeader,
878 NewPreHeader, VMap, DT, LI, PreserveLCSSA);
David L Kreitzer188de5a2016-04-05 12:19:35 +0000879 }
Wei Mi59ca9662016-08-25 16:17:18 +0000880
881 // If this loop is nested, then the loop unroller changes the code in the
882 // parent loop, so the Scalar Evolution pass needs to be run again.
883 if (Loop *ParentLoop = L->getParentLoop())
884 SE->forgetLoop(ParentLoop);
885
Anna Thomase5e5e592017-06-30 17:57:07 +0000886 // Canonicalize to LoopSimplifyForm both original and remainder loops. We
887 // cannot rely on the LoopUnrollPass to do this because it only does
888 // canonicalization for parent/subloops and not the sibling loops.
889 if (OtherExits.size() > 0) {
890 // Generate dedicated exit blocks for the original loop, to preserve
891 // LoopSimplifyForm.
892 formDedicatedExitBlocks(L, DT, LI, PreserveLCSSA);
893 // Generate dedicated exit blocks for the remainder loop if one exists, to
894 // preserve LoopSimplifyForm.
895 if (remainderLoop)
896 formDedicatedExitBlocks(remainderLoop, DT, LI, PreserveLCSSA);
897 }
898
Sam Parker718c8a62017-08-14 09:25:26 +0000899 if (remainderLoop && UnrollRemainder) {
Sam Parker7cd826a2017-09-04 08:12:16 +0000900 DEBUG(dbgs() << "Unrolling remainder loop\n");
David Green64f53b42017-10-31 10:47:46 +0000901 UnrollLoop(remainderLoop, /*Count*/ Count - 1, /*TripCount*/ Count - 1,
902 /*Force*/ false, /*AllowRuntime*/ false,
903 /*AllowExpensiveTripCount*/ false, /*PreserveCondBr*/ true,
904 /*PreserveOnlyFirst*/ false, /*TripMultiple*/ 1,
905 /*PeelCount*/ 0, /*UnrollRemainder*/ false, LI, SE, DT, AC,
906 /*ORE*/ nullptr, PreserveLCSSA);
Sam Parker718c8a62017-08-14 09:25:26 +0000907 }
908
Andrew Trickd04d15292011-12-09 06:19:40 +0000909 NumRuntimeUnrolled++;
910 return true;
911}