1 //===-- UnrollLoopRuntime.cpp - Runtime Loop unrolling utilities ----------===// 2 // 3 // 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 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file implements some loop unrolling utilities for loops with run-time 10 // trip counts. See LoopUnroll.cpp for unrolling loops with compile-time 11 // trip counts. 12 // 13 // The functions in this file are used to generate extra code when the 14 // run-time trip count modulo the unroll factor is not 0. When this is the 15 // case, we need to generate code to execute these 'left over' iterations. 16 // 17 // The current strategy generates an if-then-else sequence prior to the 18 // unrolled loop to execute the 'left over' iterations before or after the 19 // unrolled loop. 20 // 21 //===----------------------------------------------------------------------===// 22 23 #include "llvm/ADT/SmallPtrSet.h" 24 #include "llvm/ADT/Statistic.h" 25 #include "llvm/Analysis/InstructionSimplify.h" 26 #include "llvm/Analysis/LoopIterator.h" 27 #include "llvm/Analysis/ScalarEvolution.h" 28 #include "llvm/IR/BasicBlock.h" 29 #include "llvm/IR/Dominators.h" 30 #include "llvm/IR/MDBuilder.h" 31 #include "llvm/IR/Metadata.h" 32 #include "llvm/IR/Module.h" 33 #include "llvm/Support/CommandLine.h" 34 #include "llvm/Support/Debug.h" 35 #include "llvm/Support/raw_ostream.h" 36 #include "llvm/Transforms/Utils.h" 37 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 38 #include "llvm/Transforms/Utils/Cloning.h" 39 #include "llvm/Transforms/Utils/Local.h" 40 #include "llvm/Transforms/Utils/LoopUtils.h" 41 #include "llvm/Transforms/Utils/ScalarEvolutionExpander.h" 42 #include "llvm/Transforms/Utils/UnrollLoop.h" 43 #include <algorithm> 44 45 using namespace llvm; 46 47 #define DEBUG_TYPE "loop-unroll" 48 49 STATISTIC(NumRuntimeUnrolled, 50 "Number of loops unrolled with run-time trip counts"); 51 static cl::opt<bool> UnrollRuntimeMultiExit( 52 "unroll-runtime-multi-exit", cl::init(false), cl::Hidden, 53 cl::desc("Allow runtime unrolling for loops with multiple exits, when " 54 "epilog is generated")); 55 static cl::opt<bool> UnrollRuntimeOtherExitPredictable( 56 "unroll-runtime-other-exit-predictable", cl::init(false), cl::Hidden, 57 cl::desc("Assume the non latch exit block to be predictable")); 58 59 /// Connect the unrolling prolog code to the original loop. 60 /// The unrolling prolog code contains code to execute the 61 /// 'extra' iterations if the run-time trip count modulo the 62 /// unroll count is non-zero. 63 /// 64 /// This function performs the following: 65 /// - Create PHI nodes at prolog end block to combine values 66 /// that exit the prolog code and jump around the prolog. 67 /// - Add a PHI operand to a PHI node at the loop exit block 68 /// for values that exit the prolog and go around the loop. 69 /// - Branch around the original loop if the trip count is less 70 /// than the unroll factor. 71 /// 72 static void ConnectProlog(Loop *L, Value *BECount, unsigned Count, 73 BasicBlock *PrologExit, 74 BasicBlock *OriginalLoopLatchExit, 75 BasicBlock *PreHeader, BasicBlock *NewPreHeader, 76 ValueToValueMapTy &VMap, DominatorTree *DT, 77 LoopInfo *LI, bool PreserveLCSSA) { 78 // Loop structure should be the following: 79 // Preheader 80 // PrologHeader 81 // ... 82 // PrologLatch 83 // PrologExit 84 // NewPreheader 85 // Header 86 // ... 87 // Latch 88 // LatchExit 89 BasicBlock *Latch = L->getLoopLatch(); 90 assert(Latch && "Loop must have a latch"); 91 BasicBlock *PrologLatch = cast<BasicBlock>(VMap[Latch]); 92 93 // Create a PHI node for each outgoing value from the original loop 94 // (which means it is an outgoing value from the prolog code too). 95 // The new PHI node is inserted in the prolog end basic block. 96 // The new PHI node value is added as an operand of a PHI node in either 97 // the loop header or the loop exit block. 98 for (BasicBlock *Succ : successors(Latch)) { 99 for (PHINode &PN : Succ->phis()) { 100 // Add a new PHI node to the prolog end block and add the 101 // appropriate incoming values. 102 // TODO: This code assumes that the PrologExit (or the LatchExit block for 103 // prolog loop) contains only one predecessor from the loop, i.e. the 104 // PrologLatch. When supporting multiple-exiting block loops, we can have 105 // two or more blocks that have the LatchExit as the target in the 106 // original loop. 107 PHINode *NewPN = PHINode::Create(PN.getType(), 2, PN.getName() + ".unr", 108 PrologExit->getFirstNonPHI()); 109 // Adding a value to the new PHI node from the original loop preheader. 110 // This is the value that skips all the prolog code. 111 if (L->contains(&PN)) { 112 // Succ is loop header. 113 NewPN->addIncoming(PN.getIncomingValueForBlock(NewPreHeader), 114 PreHeader); 115 } else { 116 // Succ is LatchExit. 117 NewPN->addIncoming(UndefValue::get(PN.getType()), PreHeader); 118 } 119 120 Value *V = PN.getIncomingValueForBlock(Latch); 121 if (Instruction *I = dyn_cast<Instruction>(V)) { 122 if (L->contains(I)) { 123 V = VMap.lookup(I); 124 } 125 } 126 // Adding a value to the new PHI node from the last prolog block 127 // that was created. 128 NewPN->addIncoming(V, PrologLatch); 129 130 // Update the existing PHI node operand with the value from the 131 // new PHI node. How this is done depends on if the existing 132 // PHI node is in the original loop block, or the exit block. 133 if (L->contains(&PN)) 134 PN.setIncomingValueForBlock(NewPreHeader, NewPN); 135 else 136 PN.addIncoming(NewPN, PrologExit); 137 } 138 } 139 140 // Make sure that created prolog loop is in simplified form 141 SmallVector<BasicBlock *, 4> PrologExitPreds; 142 Loop *PrologLoop = LI->getLoopFor(PrologLatch); 143 if (PrologLoop) { 144 for (BasicBlock *PredBB : predecessors(PrologExit)) 145 if (PrologLoop->contains(PredBB)) 146 PrologExitPreds.push_back(PredBB); 147 148 SplitBlockPredecessors(PrologExit, PrologExitPreds, ".unr-lcssa", DT, LI, 149 nullptr, PreserveLCSSA); 150 } 151 152 // Create a branch around the original loop, which is taken if there are no 153 // iterations remaining to be executed after running the prologue. 154 Instruction *InsertPt = PrologExit->getTerminator(); 155 IRBuilder<> B(InsertPt); 156 157 assert(Count != 0 && "nonsensical Count!"); 158 159 // If BECount <u (Count - 1) then (BECount + 1) % Count == (BECount + 1) 160 // This means %xtraiter is (BECount + 1) and all of the iterations of this 161 // loop were executed by the prologue. Note that if BECount <u (Count - 1) 162 // then (BECount + 1) cannot unsigned-overflow. 163 Value *BrLoopExit = 164 B.CreateICmpULT(BECount, ConstantInt::get(BECount->getType(), Count - 1)); 165 // Split the exit to maintain loop canonicalization guarantees 166 SmallVector<BasicBlock *, 4> Preds(predecessors(OriginalLoopLatchExit)); 167 SplitBlockPredecessors(OriginalLoopLatchExit, Preds, ".unr-lcssa", DT, LI, 168 nullptr, PreserveLCSSA); 169 // Add the branch to the exit block (around the unrolled loop) 170 B.CreateCondBr(BrLoopExit, OriginalLoopLatchExit, NewPreHeader); 171 InsertPt->eraseFromParent(); 172 if (DT) { 173 auto *NewDom = DT->findNearestCommonDominator(OriginalLoopLatchExit, 174 PrologExit); 175 DT->changeImmediateDominator(OriginalLoopLatchExit, NewDom); 176 } 177 } 178 179 /// Connect the unrolling epilog code to the original loop. 180 /// The unrolling epilog code contains code to execute the 181 /// 'extra' iterations if the run-time trip count modulo the 182 /// unroll count is non-zero. 183 /// 184 /// This function performs the following: 185 /// - Update PHI nodes at the unrolling loop exit and epilog loop exit 186 /// - Create PHI nodes at the unrolling loop exit to combine 187 /// values that exit the unrolling loop code and jump around it. 188 /// - Update PHI operands in the epilog loop by the new PHI nodes 189 /// - Branch around the epilog loop if extra iters (ModVal) is zero. 190 /// 191 static void ConnectEpilog(Loop *L, Value *ModVal, BasicBlock *NewExit, 192 BasicBlock *Exit, BasicBlock *PreHeader, 193 BasicBlock *EpilogPreHeader, BasicBlock *NewPreHeader, 194 ValueToValueMapTy &VMap, DominatorTree *DT, 195 LoopInfo *LI, bool PreserveLCSSA) { 196 BasicBlock *Latch = L->getLoopLatch(); 197 assert(Latch && "Loop must have a latch"); 198 BasicBlock *EpilogLatch = cast<BasicBlock>(VMap[Latch]); 199 200 // Loop structure should be the following: 201 // 202 // PreHeader 203 // NewPreHeader 204 // Header 205 // ... 206 // Latch 207 // NewExit (PN) 208 // EpilogPreHeader 209 // EpilogHeader 210 // ... 211 // EpilogLatch 212 // Exit (EpilogPN) 213 214 // Update PHI nodes at NewExit and Exit. 215 for (PHINode &PN : NewExit->phis()) { 216 // PN should be used in another PHI located in Exit block as 217 // Exit was split by SplitBlockPredecessors into Exit and NewExit 218 // Basicaly it should look like: 219 // NewExit: 220 // PN = PHI [I, Latch] 221 // ... 222 // Exit: 223 // EpilogPN = PHI [PN, EpilogPreHeader], [X, Exit2], [Y, Exit2.epil] 224 // 225 // Exits from non-latch blocks point to the original exit block and the 226 // epilogue edges have already been added. 227 // 228 // There is EpilogPreHeader incoming block instead of NewExit as 229 // NewExit was spilt 1 more time to get EpilogPreHeader. 230 assert(PN.hasOneUse() && "The phi should have 1 use"); 231 PHINode *EpilogPN = cast<PHINode>(PN.use_begin()->getUser()); 232 assert(EpilogPN->getParent() == Exit && "EpilogPN should be in Exit block"); 233 234 // Add incoming PreHeader from branch around the Loop 235 PN.addIncoming(UndefValue::get(PN.getType()), PreHeader); 236 237 Value *V = PN.getIncomingValueForBlock(Latch); 238 Instruction *I = dyn_cast<Instruction>(V); 239 if (I && L->contains(I)) 240 // If value comes from an instruction in the loop add VMap value. 241 V = VMap.lookup(I); 242 // For the instruction out of the loop, constant or undefined value 243 // insert value itself. 244 EpilogPN->addIncoming(V, EpilogLatch); 245 246 assert(EpilogPN->getBasicBlockIndex(EpilogPreHeader) >= 0 && 247 "EpilogPN should have EpilogPreHeader incoming block"); 248 // Change EpilogPreHeader incoming block to NewExit. 249 EpilogPN->setIncomingBlock(EpilogPN->getBasicBlockIndex(EpilogPreHeader), 250 NewExit); 251 // Now PHIs should look like: 252 // NewExit: 253 // PN = PHI [I, Latch], [undef, PreHeader] 254 // ... 255 // Exit: 256 // EpilogPN = PHI [PN, NewExit], [VMap[I], EpilogLatch] 257 } 258 259 // Create PHI nodes at NewExit (from the unrolling loop Latch and PreHeader). 260 // Update corresponding PHI nodes in epilog loop. 261 for (BasicBlock *Succ : successors(Latch)) { 262 // Skip this as we already updated phis in exit blocks. 263 if (!L->contains(Succ)) 264 continue; 265 for (PHINode &PN : Succ->phis()) { 266 // Add new PHI nodes to the loop exit block and update epilog 267 // PHIs with the new PHI values. 268 PHINode *NewPN = PHINode::Create(PN.getType(), 2, PN.getName() + ".unr", 269 NewExit->getFirstNonPHI()); 270 // Adding a value to the new PHI node from the unrolling loop preheader. 271 NewPN->addIncoming(PN.getIncomingValueForBlock(NewPreHeader), PreHeader); 272 // Adding a value to the new PHI node from the unrolling loop latch. 273 NewPN->addIncoming(PN.getIncomingValueForBlock(Latch), Latch); 274 275 // Update the existing PHI node operand with the value from the new PHI 276 // node. Corresponding instruction in epilog loop should be PHI. 277 PHINode *VPN = cast<PHINode>(VMap[&PN]); 278 VPN->setIncomingValueForBlock(EpilogPreHeader, NewPN); 279 } 280 } 281 282 Instruction *InsertPt = NewExit->getTerminator(); 283 IRBuilder<> B(InsertPt); 284 Value *BrLoopExit = B.CreateIsNotNull(ModVal, "lcmp.mod"); 285 assert(Exit && "Loop must have a single exit block only"); 286 // Split the epilogue exit to maintain loop canonicalization guarantees 287 SmallVector<BasicBlock*, 4> Preds(predecessors(Exit)); 288 SplitBlockPredecessors(Exit, Preds, ".epilog-lcssa", DT, LI, nullptr, 289 PreserveLCSSA); 290 // Add the branch to the exit block (around the unrolling loop) 291 B.CreateCondBr(BrLoopExit, EpilogPreHeader, Exit); 292 InsertPt->eraseFromParent(); 293 if (DT) { 294 auto *NewDom = DT->findNearestCommonDominator(Exit, NewExit); 295 DT->changeImmediateDominator(Exit, NewDom); 296 } 297 298 // Split the main loop exit to maintain canonicalization guarantees. 299 SmallVector<BasicBlock*, 4> NewExitPreds{Latch}; 300 SplitBlockPredecessors(NewExit, NewExitPreds, ".loopexit", DT, LI, nullptr, 301 PreserveLCSSA); 302 } 303 304 /// Create a clone of the blocks in a loop and connect them together. A new 305 /// loop will be created including all cloned blocks, and the iterator of the 306 /// new loop switched to count NewIter down to 0. 307 /// The cloned blocks should be inserted between InsertTop and InsertBot. 308 /// InsertTop should be new preheader, InsertBot new loop exit. 309 /// Returns the new cloned loop that is created. 310 static Loop * 311 CloneLoopBlocks(Loop *L, Value *NewIter, const bool UseEpilogRemainder, 312 const bool UnrollRemainder, 313 BasicBlock *InsertTop, 314 BasicBlock *InsertBot, BasicBlock *Preheader, 315 std::vector<BasicBlock *> &NewBlocks, LoopBlocksDFS &LoopBlocks, 316 ValueToValueMapTy &VMap, DominatorTree *DT, LoopInfo *LI) { 317 StringRef suffix = UseEpilogRemainder ? "epil" : "prol"; 318 BasicBlock *Header = L->getHeader(); 319 BasicBlock *Latch = L->getLoopLatch(); 320 Function *F = Header->getParent(); 321 LoopBlocksDFS::RPOIterator BlockBegin = LoopBlocks.beginRPO(); 322 LoopBlocksDFS::RPOIterator BlockEnd = LoopBlocks.endRPO(); 323 Loop *ParentLoop = L->getParentLoop(); 324 NewLoopsMap NewLoops; 325 NewLoops[ParentLoop] = ParentLoop; 326 327 // For each block in the original loop, create a new copy, 328 // and update the value map with the newly created values. 329 for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) { 330 BasicBlock *NewBB = CloneBasicBlock(*BB, VMap, "." + suffix, F); 331 NewBlocks.push_back(NewBB); 332 333 addClonedBlockToLoopInfo(*BB, NewBB, LI, NewLoops); 334 335 VMap[*BB] = NewBB; 336 if (Header == *BB) { 337 // For the first block, add a CFG connection to this newly 338 // created block. 339 InsertTop->getTerminator()->setSuccessor(0, NewBB); 340 } 341 342 if (DT) { 343 if (Header == *BB) { 344 // The header is dominated by the preheader. 345 DT->addNewBlock(NewBB, InsertTop); 346 } else { 347 // Copy information from original loop to unrolled loop. 348 BasicBlock *IDomBB = DT->getNode(*BB)->getIDom()->getBlock(); 349 DT->addNewBlock(NewBB, cast<BasicBlock>(VMap[IDomBB])); 350 } 351 } 352 353 if (Latch == *BB) { 354 // For the last block, create a loop back to cloned head. 355 VMap.erase((*BB)->getTerminator()); 356 BasicBlock *FirstLoopBB = cast<BasicBlock>(VMap[Header]); 357 BranchInst *LatchBR = cast<BranchInst>(NewBB->getTerminator()); 358 IRBuilder<> Builder(LatchBR); 359 PHINode *NewIdx = PHINode::Create(NewIter->getType(), 2, 360 suffix + ".iter", 361 FirstLoopBB->getFirstNonPHI()); 362 Value *IdxSub = 363 Builder.CreateSub(NewIdx, ConstantInt::get(NewIdx->getType(), 1), 364 NewIdx->getName() + ".sub"); 365 Value *IdxCmp = 366 Builder.CreateIsNotNull(IdxSub, NewIdx->getName() + ".cmp"); 367 Builder.CreateCondBr(IdxCmp, FirstLoopBB, InsertBot); 368 NewIdx->addIncoming(NewIter, InsertTop); 369 NewIdx->addIncoming(IdxSub, NewBB); 370 LatchBR->eraseFromParent(); 371 } 372 } 373 374 // Change the incoming values to the ones defined in the preheader or 375 // cloned loop. 376 for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) { 377 PHINode *NewPHI = cast<PHINode>(VMap[&*I]); 378 unsigned idx = NewPHI->getBasicBlockIndex(Preheader); 379 NewPHI->setIncomingBlock(idx, InsertTop); 380 BasicBlock *NewLatch = cast<BasicBlock>(VMap[Latch]); 381 idx = NewPHI->getBasicBlockIndex(Latch); 382 Value *InVal = NewPHI->getIncomingValue(idx); 383 NewPHI->setIncomingBlock(idx, NewLatch); 384 if (Value *V = VMap.lookup(InVal)) 385 NewPHI->setIncomingValue(idx, V); 386 } 387 388 Loop *NewLoop = NewLoops[L]; 389 assert(NewLoop && "L should have been cloned"); 390 MDNode *LoopID = NewLoop->getLoopID(); 391 392 // Only add loop metadata if the loop is not going to be completely 393 // unrolled. 394 if (UnrollRemainder) 395 return NewLoop; 396 397 Optional<MDNode *> NewLoopID = makeFollowupLoopID( 398 LoopID, {LLVMLoopUnrollFollowupAll, LLVMLoopUnrollFollowupRemainder}); 399 if (NewLoopID.hasValue()) { 400 NewLoop->setLoopID(NewLoopID.getValue()); 401 402 // Do not setLoopAlreadyUnrolled if loop attributes have been defined 403 // explicitly. 404 return NewLoop; 405 } 406 407 // Add unroll disable metadata to disable future unrolling for this loop. 408 NewLoop->setLoopAlreadyUnrolled(); 409 return NewLoop; 410 } 411 412 /// Returns true if we can safely unroll a multi-exit/exiting loop. OtherExits 413 /// is populated with all the loop exit blocks other than the LatchExit block. 414 static bool canSafelyUnrollMultiExitLoop(Loop *L, BasicBlock *LatchExit, 415 bool PreserveLCSSA, 416 bool UseEpilogRemainder) { 417 418 // We currently have some correctness constrains in unrolling a multi-exit 419 // loop. Check for these below. 420 421 // We rely on LCSSA form being preserved when the exit blocks are transformed. 422 // (Note that only an off-by-default mode of the old PM disables PreserveLCCA.) 423 if (!PreserveLCSSA) 424 return false; 425 426 // All constraints have been satisfied. 427 return true; 428 } 429 430 /// Returns true if we can profitably unroll the multi-exit loop L. Currently, 431 /// we return true only if UnrollRuntimeMultiExit is set to true. 432 static bool canProfitablyUnrollMultiExitLoop( 433 Loop *L, SmallVectorImpl<BasicBlock *> &OtherExits, BasicBlock *LatchExit, 434 bool PreserveLCSSA, bool UseEpilogRemainder) { 435 436 #if !defined(NDEBUG) 437 assert(canSafelyUnrollMultiExitLoop(L, LatchExit, PreserveLCSSA, 438 UseEpilogRemainder) && 439 "Should be safe to unroll before checking profitability!"); 440 #endif 441 442 // Priority goes to UnrollRuntimeMultiExit if it's supplied. 443 if (UnrollRuntimeMultiExit.getNumOccurrences()) 444 return UnrollRuntimeMultiExit; 445 446 // TODO: We used to bail out for correctness (now fixed). Under what 447 // circumstances is this case profitable to allow? 448 if (!LatchExit->getSinglePredecessor()) 449 return false; 450 451 // TODO: We used to bail out for correctness (now fixed). Under what 452 // circumstances is this case profitable to allow? 453 if (UseEpilogRemainder && L->getParentLoop()) 454 return false; 455 456 // The main pain point with multi-exit loop unrolling is that once unrolled, 457 // we will not be able to merge all blocks into a straight line code. 458 // There are branches within the unrolled loop that go to the OtherExits. 459 // The second point is the increase in code size, but this is true 460 // irrespective of multiple exits. 461 462 // Note: Both the heuristics below are coarse grained. We are essentially 463 // enabling unrolling of loops that have a single side exit other than the 464 // normal LatchExit (i.e. exiting into a deoptimize block). 465 // The heuristics considered are: 466 // 1. low number of branches in the unrolled version. 467 // 2. high predictability of these extra branches. 468 // We avoid unrolling loops that have more than two exiting blocks. This 469 // limits the total number of branches in the unrolled loop to be atmost 470 // the unroll factor (since one of the exiting blocks is the latch block). 471 SmallVector<BasicBlock*, 4> ExitingBlocks; 472 L->getExitingBlocks(ExitingBlocks); 473 if (ExitingBlocks.size() > 2) 474 return false; 475 476 // Allow unrolling of loops with no non latch exit blocks. 477 if (OtherExits.size() == 0) 478 return true; 479 480 // The second heuristic is that L has one exit other than the latchexit and 481 // that exit is a deoptimize block. We know that deoptimize blocks are rarely 482 // taken, which also implies the branch leading to the deoptimize block is 483 // highly predictable. When UnrollRuntimeOtherExitPredictable is specified, we 484 // assume the other exit branch is predictable even if it has no deoptimize 485 // call. 486 return (OtherExits.size() == 1 && 487 (UnrollRuntimeOtherExitPredictable || 488 OtherExits[0]->getTerminatingDeoptimizeCall())); 489 // TODO: These can be fine-tuned further to consider code size or deopt states 490 // that are captured by the deoptimize exit block. 491 // Also, we can extend this to support more cases, if we actually 492 // know of kinds of multiexit loops that would benefit from unrolling. 493 } 494 495 // Assign the maximum possible trip count as the back edge weight for the 496 // remainder loop if the original loop comes with a branch weight. 497 static void updateLatchBranchWeightsForRemainderLoop(Loop *OrigLoop, 498 Loop *RemainderLoop, 499 uint64_t UnrollFactor) { 500 uint64_t TrueWeight, FalseWeight; 501 BranchInst *LatchBR = 502 cast<BranchInst>(OrigLoop->getLoopLatch()->getTerminator()); 503 if (!LatchBR->extractProfMetadata(TrueWeight, FalseWeight)) 504 return; 505 uint64_t ExitWeight = LatchBR->getSuccessor(0) == OrigLoop->getHeader() 506 ? FalseWeight 507 : TrueWeight; 508 assert(UnrollFactor > 1); 509 uint64_t BackEdgeWeight = (UnrollFactor - 1) * ExitWeight; 510 BasicBlock *Header = RemainderLoop->getHeader(); 511 BasicBlock *Latch = RemainderLoop->getLoopLatch(); 512 auto *RemainderLatchBR = cast<BranchInst>(Latch->getTerminator()); 513 unsigned HeaderIdx = (RemainderLatchBR->getSuccessor(0) == Header ? 0 : 1); 514 MDBuilder MDB(RemainderLatchBR->getContext()); 515 MDNode *WeightNode = 516 HeaderIdx ? MDB.createBranchWeights(ExitWeight, BackEdgeWeight) 517 : MDB.createBranchWeights(BackEdgeWeight, ExitWeight); 518 RemainderLatchBR->setMetadata(LLVMContext::MD_prof, WeightNode); 519 } 520 521 /// Calculate ModVal = (BECount + 1) % Count on the abstract integer domain 522 /// accounting for the possibility of unsigned overflow in the 2s complement 523 /// domain. Preconditions: 524 /// 1) TripCount = BECount + 1 (allowing overflow) 525 /// 2) Log2(Count) <= BitWidth(BECount) 526 static Value *CreateTripRemainder(IRBuilder<> &B, Value *BECount, 527 Value *TripCount, unsigned Count) { 528 // Note that TripCount is BECount + 1. 529 if (isPowerOf2_32(Count)) 530 // If the expression is zero, then either: 531 // 1. There are no iterations to be run in the prolog/epilog loop. 532 // OR 533 // 2. The addition computing TripCount overflowed. 534 // 535 // If (2) is true, we know that TripCount really is (1 << BEWidth) and so 536 // the number of iterations that remain to be run in the original loop is a 537 // multiple Count == (1 << Log2(Count)) because Log2(Count) <= BEWidth (a 538 // precondition of this method). 539 return B.CreateAnd(TripCount, Count - 1, "xtraiter"); 540 541 // As (BECount + 1) can potentially unsigned overflow we count 542 // (BECount % Count) + 1 which is overflow safe as BECount % Count < Count. 543 Constant *CountC = ConstantInt::get(BECount->getType(), Count); 544 Value *ModValTmp = B.CreateURem(BECount, CountC); 545 Value *ModValAdd = B.CreateAdd(ModValTmp, 546 ConstantInt::get(ModValTmp->getType(), 1)); 547 // At that point (BECount % Count) + 1 could be equal to Count. 548 // To handle this case we need to take mod by Count one more time. 549 return B.CreateURem(ModValAdd, CountC, "xtraiter"); 550 } 551 552 553 /// Insert code in the prolog/epilog code when unrolling a loop with a 554 /// run-time trip-count. 555 /// 556 /// This method assumes that the loop unroll factor is total number 557 /// of loop bodies in the loop after unrolling. (Some folks refer 558 /// to the unroll factor as the number of *extra* copies added). 559 /// We assume also that the loop unroll factor is a power-of-two. So, after 560 /// unrolling the loop, the number of loop bodies executed is 2, 561 /// 4, 8, etc. Note - LLVM converts the if-then-sequence to a switch 562 /// instruction in SimplifyCFG.cpp. Then, the backend decides how code for 563 /// the switch instruction is generated. 564 /// 565 /// ***Prolog case*** 566 /// extraiters = tripcount % loopfactor 567 /// if (extraiters == 0) jump Loop: 568 /// else jump Prol: 569 /// Prol: LoopBody; 570 /// extraiters -= 1 // Omitted if unroll factor is 2. 571 /// if (extraiters != 0) jump Prol: // Omitted if unroll factor is 2. 572 /// if (tripcount < loopfactor) jump End: 573 /// Loop: 574 /// ... 575 /// End: 576 /// 577 /// ***Epilog case*** 578 /// extraiters = tripcount % loopfactor 579 /// if (tripcount < loopfactor) jump LoopExit: 580 /// unroll_iters = tripcount - extraiters 581 /// Loop: LoopBody; (executes unroll_iter times); 582 /// unroll_iter -= 1 583 /// if (unroll_iter != 0) jump Loop: 584 /// LoopExit: 585 /// if (extraiters == 0) jump EpilExit: 586 /// Epil: LoopBody; (executes extraiters times) 587 /// extraiters -= 1 // Omitted if unroll factor is 2. 588 /// if (extraiters != 0) jump Epil: // Omitted if unroll factor is 2. 589 /// EpilExit: 590 591 bool llvm::UnrollRuntimeLoopRemainder( 592 Loop *L, unsigned Count, bool AllowExpensiveTripCount, 593 bool UseEpilogRemainder, bool UnrollRemainder, bool ForgetAllSCEV, 594 LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC, 595 const TargetTransformInfo *TTI, bool PreserveLCSSA, Loop **ResultLoop) { 596 LLVM_DEBUG(dbgs() << "Trying runtime unrolling on Loop: \n"); 597 LLVM_DEBUG(L->dump()); 598 LLVM_DEBUG(UseEpilogRemainder ? dbgs() << "Using epilog remainder.\n" 599 : dbgs() << "Using prolog remainder.\n"); 600 601 // Make sure the loop is in canonical form. 602 if (!L->isLoopSimplifyForm()) { 603 LLVM_DEBUG(dbgs() << "Not in simplify form!\n"); 604 return false; 605 } 606 607 // Guaranteed by LoopSimplifyForm. 608 BasicBlock *Latch = L->getLoopLatch(); 609 BasicBlock *Header = L->getHeader(); 610 611 BranchInst *LatchBR = cast<BranchInst>(Latch->getTerminator()); 612 613 if (!LatchBR || LatchBR->isUnconditional()) { 614 // The loop-rotate pass can be helpful to avoid this in many cases. 615 LLVM_DEBUG( 616 dbgs() 617 << "Loop latch not terminated by a conditional branch.\n"); 618 return false; 619 } 620 621 unsigned ExitIndex = LatchBR->getSuccessor(0) == Header ? 1 : 0; 622 BasicBlock *LatchExit = LatchBR->getSuccessor(ExitIndex); 623 624 if (L->contains(LatchExit)) { 625 // Cloning the loop basic blocks (`CloneLoopBlocks`) requires that one of the 626 // targets of the Latch be an exit block out of the loop. 627 LLVM_DEBUG( 628 dbgs() 629 << "One of the loop latch successors must be the exit block.\n"); 630 return false; 631 } 632 633 // These are exit blocks other than the target of the latch exiting block. 634 SmallVector<BasicBlock *, 4> OtherExits; 635 L->getUniqueNonLatchExitBlocks(OtherExits); 636 bool isMultiExitUnrollingEnabled = 637 canSafelyUnrollMultiExitLoop(L, LatchExit, PreserveLCSSA, 638 UseEpilogRemainder) && 639 canProfitablyUnrollMultiExitLoop(L, OtherExits, LatchExit, PreserveLCSSA, 640 UseEpilogRemainder); 641 // Support only single exit and exiting block unless multi-exit loop unrolling is enabled. 642 if (!isMultiExitUnrollingEnabled && 643 (!L->getExitingBlock() || OtherExits.size())) { 644 LLVM_DEBUG( 645 dbgs() 646 << "Multiple exit/exiting blocks in loop and multi-exit unrolling not " 647 "enabled!\n"); 648 return false; 649 } 650 // Use Scalar Evolution to compute the trip count. This allows more loops to 651 // be unrolled than relying on induction var simplification. 652 if (!SE) 653 return false; 654 655 // Only unroll loops with a computable trip count, and the trip count needs 656 // to be an int value (allowing a pointer type is a TODO item). 657 // We calculate the backedge count by using getExitCount on the Latch block, 658 // which is proven to be the only exiting block in this loop. This is same as 659 // calculating getBackedgeTakenCount on the loop (which computes SCEV for all 660 // exiting blocks). 661 const SCEV *BECountSC = SE->getExitCount(L, Latch); 662 if (isa<SCEVCouldNotCompute>(BECountSC) || 663 !BECountSC->getType()->isIntegerTy()) { 664 LLVM_DEBUG(dbgs() << "Could not compute exit block SCEV\n"); 665 return false; 666 } 667 668 unsigned BEWidth = cast<IntegerType>(BECountSC->getType())->getBitWidth(); 669 670 // Add 1 since the backedge count doesn't include the first loop iteration. 671 // (Note that overflow can occur, this is handled explicitly below) 672 const SCEV *TripCountSC = 673 SE->getAddExpr(BECountSC, SE->getConstant(BECountSC->getType(), 1)); 674 if (isa<SCEVCouldNotCompute>(TripCountSC)) { 675 LLVM_DEBUG(dbgs() << "Could not compute trip count SCEV.\n"); 676 return false; 677 } 678 679 BasicBlock *PreHeader = L->getLoopPreheader(); 680 BranchInst *PreHeaderBR = cast<BranchInst>(PreHeader->getTerminator()); 681 const DataLayout &DL = Header->getModule()->getDataLayout(); 682 SCEVExpander Expander(*SE, DL, "loop-unroll"); 683 if (!AllowExpensiveTripCount && 684 Expander.isHighCostExpansion(TripCountSC, L, SCEVCheapExpansionBudget, 685 TTI, PreHeaderBR)) { 686 LLVM_DEBUG(dbgs() << "High cost for expanding trip count scev!\n"); 687 return false; 688 } 689 690 // This constraint lets us deal with an overflowing trip count easily; see the 691 // comment on ModVal below. 692 if (Log2_32(Count) > BEWidth) { 693 LLVM_DEBUG( 694 dbgs() 695 << "Count failed constraint on overflow trip count calculation.\n"); 696 return false; 697 } 698 699 // Loop structure is the following: 700 // 701 // PreHeader 702 // Header 703 // ... 704 // Latch 705 // LatchExit 706 707 BasicBlock *NewPreHeader; 708 BasicBlock *NewExit = nullptr; 709 BasicBlock *PrologExit = nullptr; 710 BasicBlock *EpilogPreHeader = nullptr; 711 BasicBlock *PrologPreHeader = nullptr; 712 713 if (UseEpilogRemainder) { 714 // If epilog remainder 715 // Split PreHeader to insert a branch around loop for unrolling. 716 NewPreHeader = SplitBlock(PreHeader, PreHeader->getTerminator(), DT, LI); 717 NewPreHeader->setName(PreHeader->getName() + ".new"); 718 // Split LatchExit to create phi nodes from branch above. 719 NewExit = SplitBlockPredecessors(LatchExit, {Latch}, ".unr-lcssa", DT, LI, 720 nullptr, PreserveLCSSA); 721 // NewExit gets its DebugLoc from LatchExit, which is not part of the 722 // original Loop. 723 // Fix this by setting Loop's DebugLoc to NewExit. 724 auto *NewExitTerminator = NewExit->getTerminator(); 725 NewExitTerminator->setDebugLoc(Header->getTerminator()->getDebugLoc()); 726 // Split NewExit to insert epilog remainder loop. 727 EpilogPreHeader = SplitBlock(NewExit, NewExitTerminator, DT, LI); 728 EpilogPreHeader->setName(Header->getName() + ".epil.preheader"); 729 730 // If the latch exits from multiple level of nested loops, then 731 // by assumption there must be another loop exit which branches to the 732 // outer loop and we must adjust the loop for the newly inserted blocks 733 // to account for the fact that our epilogue is still in the same outer 734 // loop. Note that this leaves loopinfo temporarily out of sync with the 735 // CFG until the actual epilogue loop is inserted. 736 if (auto *ParentL = L->getParentLoop()) 737 if (LI->getLoopFor(LatchExit) != ParentL) { 738 LI->removeBlock(NewExit); 739 ParentL->addBasicBlockToLoop(NewExit, *LI); 740 LI->removeBlock(EpilogPreHeader); 741 ParentL->addBasicBlockToLoop(EpilogPreHeader, *LI); 742 } 743 744 } else { 745 // If prolog remainder 746 // Split the original preheader twice to insert prolog remainder loop 747 PrologPreHeader = SplitEdge(PreHeader, Header, DT, LI); 748 PrologPreHeader->setName(Header->getName() + ".prol.preheader"); 749 PrologExit = SplitBlock(PrologPreHeader, PrologPreHeader->getTerminator(), 750 DT, LI); 751 PrologExit->setName(Header->getName() + ".prol.loopexit"); 752 // Split PrologExit to get NewPreHeader. 753 NewPreHeader = SplitBlock(PrologExit, PrologExit->getTerminator(), DT, LI); 754 NewPreHeader->setName(PreHeader->getName() + ".new"); 755 } 756 // Loop structure should be the following: 757 // Epilog Prolog 758 // 759 // PreHeader PreHeader 760 // *NewPreHeader *PrologPreHeader 761 // Header *PrologExit 762 // ... *NewPreHeader 763 // Latch Header 764 // *NewExit ... 765 // *EpilogPreHeader Latch 766 // LatchExit LatchExit 767 768 // Calculate conditions for branch around loop for unrolling 769 // in epilog case and around prolog remainder loop in prolog case. 770 // Compute the number of extra iterations required, which is: 771 // extra iterations = run-time trip count % loop unroll factor 772 PreHeaderBR = cast<BranchInst>(PreHeader->getTerminator()); 773 Value *TripCount = Expander.expandCodeFor(TripCountSC, TripCountSC->getType(), 774 PreHeaderBR); 775 Value *BECount = Expander.expandCodeFor(BECountSC, BECountSC->getType(), 776 PreHeaderBR); 777 IRBuilder<> B(PreHeaderBR); 778 Value * const ModVal = CreateTripRemainder(B, BECount, TripCount, Count); 779 780 Value *BranchVal = 781 UseEpilogRemainder ? B.CreateICmpULT(BECount, 782 ConstantInt::get(BECount->getType(), 783 Count - 1)) : 784 B.CreateIsNotNull(ModVal, "lcmp.mod"); 785 BasicBlock *RemainderLoop = UseEpilogRemainder ? NewExit : PrologPreHeader; 786 BasicBlock *UnrollingLoop = UseEpilogRemainder ? NewPreHeader : PrologExit; 787 // Branch to either remainder (extra iterations) loop or unrolling loop. 788 B.CreateCondBr(BranchVal, RemainderLoop, UnrollingLoop); 789 PreHeaderBR->eraseFromParent(); 790 if (DT) { 791 if (UseEpilogRemainder) 792 DT->changeImmediateDominator(NewExit, PreHeader); 793 else 794 DT->changeImmediateDominator(PrologExit, PreHeader); 795 } 796 Function *F = Header->getParent(); 797 // Get an ordered list of blocks in the loop to help with the ordering of the 798 // cloned blocks in the prolog/epilog code 799 LoopBlocksDFS LoopBlocks(L); 800 LoopBlocks.perform(LI); 801 802 // 803 // For each extra loop iteration, create a copy of the loop's basic blocks 804 // and generate a condition that branches to the copy depending on the 805 // number of 'left over' iterations. 806 // 807 std::vector<BasicBlock *> NewBlocks; 808 ValueToValueMapTy VMap; 809 810 // Clone all the basic blocks in the loop. If Count is 2, we don't clone 811 // the loop, otherwise we create a cloned loop to execute the extra 812 // iterations. This function adds the appropriate CFG connections. 813 BasicBlock *InsertBot = UseEpilogRemainder ? LatchExit : PrologExit; 814 BasicBlock *InsertTop = UseEpilogRemainder ? EpilogPreHeader : PrologPreHeader; 815 Loop *remainderLoop = CloneLoopBlocks( 816 L, ModVal, UseEpilogRemainder, UnrollRemainder, InsertTop, InsertBot, 817 NewPreHeader, NewBlocks, LoopBlocks, VMap, DT, LI); 818 819 // Assign the maximum possible trip count as the back edge weight for the 820 // remainder loop if the original loop comes with a branch weight. 821 if (remainderLoop && !UnrollRemainder) 822 updateLatchBranchWeightsForRemainderLoop(L, remainderLoop, Count); 823 824 // Insert the cloned blocks into the function. 825 F->getBasicBlockList().splice(InsertBot->getIterator(), 826 F->getBasicBlockList(), 827 NewBlocks[0]->getIterator(), 828 F->end()); 829 830 // Now the loop blocks are cloned and the other exiting blocks from the 831 // remainder are connected to the original Loop's exit blocks. The remaining 832 // work is to update the phi nodes in the original loop, and take in the 833 // values from the cloned region. 834 for (auto *BB : OtherExits) { 835 // Given we preserve LCSSA form, we know that the values used outside the 836 // loop will be used through these phi nodes at the exit blocks that are 837 // transformed below. 838 for (PHINode &PN : BB->phis()) { 839 unsigned oldNumOperands = PN.getNumIncomingValues(); 840 // Add the incoming values from the remainder code to the end of the phi 841 // node. 842 for (unsigned i = 0; i < oldNumOperands; i++){ 843 auto *PredBB =PN.getIncomingBlock(i); 844 if (PredBB == Latch) 845 // The latch exit is handled seperately, see connectX 846 continue; 847 if (!L->contains(PredBB)) 848 // Even if we had dedicated exits, the code above inserted an 849 // extra branch which can reach the latch exit. 850 continue; 851 852 auto *V = PN.getIncomingValue(i); 853 if (Instruction *I = dyn_cast<Instruction>(V)) 854 if (L->contains(I)) 855 V = VMap.lookup(I); 856 PN.addIncoming(V, cast<BasicBlock>(VMap[PredBB])); 857 } 858 } 859 #if defined(EXPENSIVE_CHECKS) && !defined(NDEBUG) 860 for (BasicBlock *SuccBB : successors(BB)) { 861 assert(!(any_of(OtherExits, 862 [SuccBB](BasicBlock *EB) { return EB == SuccBB; }) || 863 SuccBB == LatchExit) && 864 "Breaks the definition of dedicated exits!"); 865 } 866 #endif 867 } 868 869 // Update the immediate dominator of the exit blocks and blocks that are 870 // reachable from the exit blocks. This is needed because we now have paths 871 // from both the original loop and the remainder code reaching the exit 872 // blocks. While the IDom of these exit blocks were from the original loop, 873 // now the IDom is the preheader (which decides whether the original loop or 874 // remainder code should run). 875 if (DT && !L->getExitingBlock()) { 876 SmallVector<BasicBlock *, 16> ChildrenToUpdate; 877 // NB! We have to examine the dom children of all loop blocks, not just 878 // those which are the IDom of the exit blocks. This is because blocks 879 // reachable from the exit blocks can have their IDom as the nearest common 880 // dominator of the exit blocks. 881 for (auto *BB : L->blocks()) { 882 auto *DomNodeBB = DT->getNode(BB); 883 for (auto *DomChild : DomNodeBB->children()) { 884 auto *DomChildBB = DomChild->getBlock(); 885 if (!L->contains(LI->getLoopFor(DomChildBB))) 886 ChildrenToUpdate.push_back(DomChildBB); 887 } 888 } 889 for (auto *BB : ChildrenToUpdate) 890 DT->changeImmediateDominator(BB, PreHeader); 891 } 892 893 // Loop structure should be the following: 894 // Epilog Prolog 895 // 896 // PreHeader PreHeader 897 // NewPreHeader PrologPreHeader 898 // Header PrologHeader 899 // ... ... 900 // Latch PrologLatch 901 // NewExit PrologExit 902 // EpilogPreHeader NewPreHeader 903 // EpilogHeader Header 904 // ... ... 905 // EpilogLatch Latch 906 // LatchExit LatchExit 907 908 // Rewrite the cloned instruction operands to use the values created when the 909 // clone is created. 910 for (BasicBlock *BB : NewBlocks) { 911 for (Instruction &I : *BB) { 912 RemapInstruction(&I, VMap, 913 RF_NoModuleLevelChanges | RF_IgnoreMissingLocals); 914 } 915 } 916 917 if (UseEpilogRemainder) { 918 // Connect the epilog code to the original loop and update the 919 // PHI functions. 920 ConnectEpilog(L, ModVal, NewExit, LatchExit, PreHeader, 921 EpilogPreHeader, NewPreHeader, VMap, DT, LI, 922 PreserveLCSSA); 923 924 // Update counter in loop for unrolling. 925 // I should be multiply of Count. 926 IRBuilder<> B2(NewPreHeader->getTerminator()); 927 Value *TestVal = B2.CreateSub(TripCount, ModVal, "unroll_iter"); 928 BranchInst *LatchBR = cast<BranchInst>(Latch->getTerminator()); 929 B2.SetInsertPoint(LatchBR); 930 PHINode *NewIdx = PHINode::Create(TestVal->getType(), 2, "niter", 931 Header->getFirstNonPHI()); 932 Value *IdxSub = 933 B2.CreateSub(NewIdx, ConstantInt::get(NewIdx->getType(), 1), 934 NewIdx->getName() + ".nsub"); 935 Value *IdxCmp; 936 if (LatchBR->getSuccessor(0) == Header) 937 IdxCmp = B2.CreateIsNotNull(IdxSub, NewIdx->getName() + ".ncmp"); 938 else 939 IdxCmp = B2.CreateIsNull(IdxSub, NewIdx->getName() + ".ncmp"); 940 NewIdx->addIncoming(TestVal, NewPreHeader); 941 NewIdx->addIncoming(IdxSub, Latch); 942 LatchBR->setCondition(IdxCmp); 943 } else { 944 // Connect the prolog code to the original loop and update the 945 // PHI functions. 946 ConnectProlog(L, BECount, Count, PrologExit, LatchExit, PreHeader, 947 NewPreHeader, VMap, DT, LI, PreserveLCSSA); 948 } 949 950 // If this loop is nested, then the loop unroller changes the code in the any 951 // of its parent loops, so the Scalar Evolution pass needs to be run again. 952 SE->forgetTopmostLoop(L); 953 954 // Verify that the Dom Tree and Loop Info are correct. 955 #if defined(EXPENSIVE_CHECKS) && !defined(NDEBUG) 956 if (DT) { 957 assert(DT->verify(DominatorTree::VerificationLevel::Full)); 958 LI->verify(*DT); 959 } 960 #endif 961 962 // For unroll factor 2 remainder loop will have 1 iteration. 963 if (Count == 2 && DT && LI && SE) { 964 // TODO: This code could probably be pulled out into a helper function 965 // (e.g. breakLoopBackedgeAndSimplify) and reused in loop-deletion. 966 BasicBlock *RemainderLatch = remainderLoop->getLoopLatch(); 967 assert(RemainderLatch); 968 SmallVector<BasicBlock*> RemainderBlocks(remainderLoop->getBlocks().begin(), 969 remainderLoop->getBlocks().end()); 970 breakLoopBackedge(remainderLoop, *DT, *SE, *LI, nullptr); 971 remainderLoop = nullptr; 972 973 // Simplify loop values after breaking the backedge 974 const DataLayout &DL = L->getHeader()->getModule()->getDataLayout(); 975 SmallVector<WeakTrackingVH, 16> DeadInsts; 976 for (BasicBlock *BB : RemainderBlocks) { 977 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) { 978 Instruction *Inst = &*I++; 979 if (Value *V = SimplifyInstruction(Inst, {DL, nullptr, DT, AC})) 980 if (LI->replacementPreservesLCSSAForm(Inst, V)) 981 Inst->replaceAllUsesWith(V); 982 if (isInstructionTriviallyDead(Inst)) 983 DeadInsts.emplace_back(Inst); 984 } 985 // We can't do recursive deletion until we're done iterating, as we might 986 // have a phi which (potentially indirectly) uses instructions later in 987 // the block we're iterating through. 988 RecursivelyDeleteTriviallyDeadInstructions(DeadInsts); 989 } 990 991 // Merge latch into exit block. 992 auto *ExitBB = RemainderLatch->getSingleSuccessor(); 993 assert(ExitBB && "required after breaking cond br backedge"); 994 DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager); 995 MergeBlockIntoPredecessor(ExitBB, &DTU, LI); 996 } 997 998 // Canonicalize to LoopSimplifyForm both original and remainder loops. We 999 // cannot rely on the LoopUnrollPass to do this because it only does 1000 // canonicalization for parent/subloops and not the sibling loops. 1001 if (OtherExits.size() > 0) { 1002 // Generate dedicated exit blocks for the original loop, to preserve 1003 // LoopSimplifyForm. 1004 formDedicatedExitBlocks(L, DT, LI, nullptr, PreserveLCSSA); 1005 // Generate dedicated exit blocks for the remainder loop if one exists, to 1006 // preserve LoopSimplifyForm. 1007 if (remainderLoop) 1008 formDedicatedExitBlocks(remainderLoop, DT, LI, nullptr, PreserveLCSSA); 1009 } 1010 1011 auto UnrollResult = LoopUnrollResult::Unmodified; 1012 if (remainderLoop && UnrollRemainder) { 1013 LLVM_DEBUG(dbgs() << "Unrolling remainder loop\n"); 1014 UnrollResult = 1015 UnrollLoop(remainderLoop, 1016 {/*Count*/ Count - 1, /*Force*/ false, /*Runtime*/ false, 1017 /*AllowExpensiveTripCount*/ false, 1018 /*UnrollRemainder*/ false, ForgetAllSCEV}, 1019 LI, SE, DT, AC, TTI, /*ORE*/ nullptr, PreserveLCSSA); 1020 } 1021 1022 if (ResultLoop && UnrollResult != LoopUnrollResult::FullyUnrolled) 1023 *ResultLoop = remainderLoop; 1024 NumRuntimeUnrolled++; 1025 return true; 1026 } 1027