2008-05-14 08:24:14 +08:00
|
|
|
//===-- UnrollLoop.cpp - Loop unrolling utilities -------------------------===//
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2008-05-14 08:24:14 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements some loop unrolling utilities. It does not define any
|
|
|
|
// actual pass or policy, but provides a single function to perform loop
|
|
|
|
// unrolling.
|
|
|
|
//
|
|
|
|
// The process of unrolling can produce extraneous basic blocks linked with
|
|
|
|
// unconditional branches. This will be corrected in the future.
|
2011-01-11 16:00:40 +08:00
|
|
|
//
|
2008-05-14 08:24:14 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-07-11 07:30:06 +08:00
|
|
|
#include "llvm/ADT/SmallPtrSet.h"
|
2008-05-14 08:24:14 +08:00
|
|
|
#include "llvm/ADT/Statistic.h"
|
2016-12-19 16:22:17 +08:00
|
|
|
#include "llvm/Analysis/AssumptionCache.h"
|
2010-11-24 04:26:33 +08:00
|
|
|
#include "llvm/Analysis/InstructionSimplify.h"
|
2011-08-10 08:28:10 +08:00
|
|
|
#include "llvm/Analysis/LoopIterator.h"
|
2017-10-10 07:19:02 +08:00
|
|
|
#include "llvm/Analysis/OptimizationRemarkEmitter.h"
|
2010-07-27 02:02:06 +08:00
|
|
|
#include "llvm/Analysis/ScalarEvolution.h"
|
2018-06-05 05:23:21 +08:00
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2013-01-02 19:36:10 +08:00
|
|
|
#include "llvm/IR/BasicBlock.h"
|
2014-07-10 22:41:31 +08:00
|
|
|
#include "llvm/IR/DataLayout.h"
|
2017-02-11 05:09:07 +08:00
|
|
|
#include "llvm/IR/DebugInfoMetadata.h"
|
2015-03-24 03:32:43 +08:00
|
|
|
#include "llvm/IR/Dominators.h"
|
2016-08-17 05:09:46 +08:00
|
|
|
#include "llvm/IR/IntrinsicInst.h"
|
2014-04-29 22:27:31 +08:00
|
|
|
#include "llvm/IR/LLVMContext.h"
|
2008-05-14 08:24:14 +08:00
|
|
|
#include "llvm/Support/Debug.h"
|
2009-07-25 08:23:56 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2008-12-04 03:44:02 +08:00
|
|
|
#include "llvm/Transforms/Utils/BasicBlockUtils.h"
|
2008-05-14 08:24:14 +08:00
|
|
|
#include "llvm/Transforms/Utils/Cloning.h"
|
2016-07-09 11:03:01 +08:00
|
|
|
#include "llvm/Transforms/Utils/LoopSimplify.h"
|
2014-01-23 19:23:19 +08:00
|
|
|
#include "llvm/Transforms/Utils/LoopUtils.h"
|
2011-08-10 12:29:49 +08:00
|
|
|
#include "llvm/Transforms/Utils/SimplifyIndVar.h"
|
2017-06-06 19:49:48 +08:00
|
|
|
#include "llvm/Transforms/Utils/UnrollLoop.h"
|
2008-05-14 08:24:14 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2014-04-22 10:55:47 +08:00
|
|
|
#define DEBUG_TYPE "loop-unroll"
|
|
|
|
|
2008-12-04 03:44:02 +08:00
|
|
|
// TODO: Should these be here or in LoopUnroll?
|
2008-05-14 08:24:14 +08:00
|
|
|
STATISTIC(NumCompletelyUnrolled, "Number of loops completely unrolled");
|
2011-01-11 16:00:40 +08:00
|
|
|
STATISTIC(NumUnrolled, "Number of loops unrolled (completely or otherwise)");
|
2008-05-14 08:24:14 +08:00
|
|
|
|
2016-04-05 20:19:35 +08:00
|
|
|
static cl::opt<bool>
|
2016-08-03 05:24:14 +08:00
|
|
|
UnrollRuntimeEpilog("unroll-runtime-epilog", cl::init(false), cl::Hidden,
|
2016-04-05 20:19:35 +08:00
|
|
|
cl::desc("Allow runtime unrolled loops to be unrolled "
|
|
|
|
"with epilog instead of prolog."));
|
|
|
|
|
2017-01-19 07:26:37 +08:00
|
|
|
static cl::opt<bool>
|
|
|
|
UnrollVerifyDomtree("unroll-verify-domtree", cl::Hidden,
|
|
|
|
cl::desc("Verify domtree after unrolling"),
|
2018-12-21 09:28:49 +08:00
|
|
|
#ifdef EXPENSIVE_CHECKS
|
2017-01-19 07:26:37 +08:00
|
|
|
cl::init(true)
|
2018-12-21 09:28:49 +08:00
|
|
|
#else
|
|
|
|
cl::init(false)
|
2017-01-19 07:26:37 +08:00
|
|
|
#endif
|
|
|
|
);
|
|
|
|
|
2016-03-09 00:26:39 +08:00
|
|
|
/// Convert the instruction operands from referencing the current values into
|
|
|
|
/// those specified by VMap.
|
2018-07-01 20:47:30 +08:00
|
|
|
void llvm::remapInstruction(Instruction *I, ValueToValueMapTy &VMap) {
|
2008-05-14 08:24:14 +08:00
|
|
|
for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
|
|
|
|
Value *Op = I->getOperand(op);
|
2017-11-02 07:12:35 +08:00
|
|
|
|
|
|
|
// Unwrap arguments of dbg.value intrinsics.
|
|
|
|
bool Wrapped = false;
|
|
|
|
if (auto *V = dyn_cast<MetadataAsValue>(Op))
|
|
|
|
if (auto *Unwrapped = dyn_cast<ValueAsMetadata>(V->getMetadata())) {
|
|
|
|
Op = Unwrapped->getValue();
|
|
|
|
Wrapped = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto wrap = [&](Value *V) {
|
|
|
|
auto &C = I->getContext();
|
|
|
|
return Wrapped ? MetadataAsValue::get(C, ValueAsMetadata::get(V)) : V;
|
|
|
|
};
|
|
|
|
|
2010-10-13 09:36:30 +08:00
|
|
|
ValueToValueMapTy::iterator It = VMap.find(Op);
|
2010-06-24 07:55:51 +08:00
|
|
|
if (It != VMap.end())
|
2017-11-02 07:12:35 +08:00
|
|
|
I->setOperand(op, wrap(It->second));
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
2011-06-23 17:09:15 +08:00
|
|
|
|
|
|
|
if (PHINode *PN = dyn_cast<PHINode>(I)) {
|
|
|
|
for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
|
|
|
|
ValueToValueMapTy::iterator It = VMap.find(PN->getIncomingBlock(i));
|
|
|
|
if (It != VMap.end())
|
|
|
|
PN->setIncomingBlock(i, cast<BasicBlock>(It->second));
|
|
|
|
}
|
|
|
|
}
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
|
|
|
|
2016-03-09 00:26:39 +08:00
|
|
|
/// Folds a basic block into its predecessor if it only has one predecessor, and
|
|
|
|
/// that predecessor only has one successor.
|
2018-03-26 19:31:46 +08:00
|
|
|
/// The LoopInfo Analysis that is passed will be kept consistent.
|
2018-07-01 20:47:30 +08:00
|
|
|
BasicBlock *llvm::foldBlockIntoPredecessor(BasicBlock *BB, LoopInfo *LI,
|
|
|
|
ScalarEvolution *SE,
|
|
|
|
DominatorTree *DT) {
|
2009-11-01 01:33:01 +08:00
|
|
|
// Merge basic blocks into their predecessor if there is only one distinct
|
|
|
|
// pred, and if there is only one distinct successor of the predecessor, and
|
|
|
|
// if there are no PHI nodes.
|
|
|
|
BasicBlock *OnlyPred = BB->getSinglePredecessor();
|
2014-04-25 13:29:35 +08:00
|
|
|
if (!OnlyPred) return nullptr;
|
2009-11-01 01:33:01 +08:00
|
|
|
|
|
|
|
if (OnlyPred->getTerminator()->getNumSuccessors() != 1)
|
2014-04-25 13:29:35 +08:00
|
|
|
return nullptr;
|
2009-11-01 01:33:01 +08:00
|
|
|
|
2018-07-01 20:47:30 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Merging: " << BB->getName() << " into "
|
|
|
|
<< OnlyPred->getName() << "\n");
|
2009-11-01 01:33:01 +08:00
|
|
|
|
|
|
|
// Resolve any PHI nodes at the start of the block. They are all
|
|
|
|
// guaranteed to have exactly one entry if they exist, unless there are
|
|
|
|
// multiple duplicate (but guaranteed to be equal) entries for the
|
|
|
|
// incoming edges. This occurs when there are multiple edges from
|
|
|
|
// OnlyPred to OnlySucc.
|
|
|
|
FoldSingleEntryPHINodes(BB);
|
|
|
|
|
|
|
|
// Delete the unconditional branch from the predecessor...
|
|
|
|
OnlyPred->getInstList().pop_back();
|
|
|
|
|
|
|
|
// Make all PHI nodes that referred to BB now refer to Pred as their
|
|
|
|
// source...
|
|
|
|
BB->replaceAllUsesWith(OnlyPred);
|
|
|
|
|
2011-06-23 17:09:15 +08:00
|
|
|
// Move all definitions in the successor to the predecessor...
|
|
|
|
OnlyPred->getInstList().splice(OnlyPred->end(), BB->getInstList());
|
|
|
|
|
2013-11-18 02:05:34 +08:00
|
|
|
// OldName will be valid until erased.
|
2013-11-14 04:09:11 +08:00
|
|
|
StringRef OldName = BB->getName();
|
2009-11-01 01:33:01 +08:00
|
|
|
|
2016-02-23 08:30:50 +08:00
|
|
|
// Erase the old block and update dominator info.
|
|
|
|
if (DT)
|
|
|
|
if (DomTreeNode *DTN = DT->getNode(BB)) {
|
|
|
|
DomTreeNode *PredDTN = DT->getNode(OnlyPred);
|
|
|
|
SmallVector<DomTreeNode *, 8> Children(DTN->begin(), DTN->end());
|
2016-02-23 08:57:48 +08:00
|
|
|
for (auto *DI : Children)
|
2016-02-23 08:48:44 +08:00
|
|
|
DT->changeImmediateDominator(DI, PredDTN);
|
2016-02-23 08:30:50 +08:00
|
|
|
|
|
|
|
DT->eraseNode(BB);
|
|
|
|
}
|
2011-08-04 02:32:11 +08:00
|
|
|
|
2009-11-01 01:33:01 +08:00
|
|
|
LI->removeBlock(BB);
|
|
|
|
|
|
|
|
// Inherit predecessor's name if it exists...
|
|
|
|
if (!OldName.empty() && !OnlyPred->hasName())
|
|
|
|
OnlyPred->setName(OldName);
|
|
|
|
|
2013-11-18 02:05:34 +08:00
|
|
|
BB->eraseFromParent();
|
|
|
|
|
2009-11-01 01:33:01 +08:00
|
|
|
return OnlyPred;
|
|
|
|
}
|
|
|
|
|
2016-02-05 10:17:36 +08:00
|
|
|
/// Check if unrolling created a situation where we need to insert phi nodes to
|
|
|
|
/// preserve LCSSA form.
|
|
|
|
/// \param Blocks is a vector of basic blocks representing unrolled loop.
|
|
|
|
/// \param L is the outer loop.
|
|
|
|
/// It's possible that some of the blocks are in L, and some are not. In this
|
|
|
|
/// case, if there is a use is outside L, and definition is inside L, we need to
|
|
|
|
/// insert a phi-node, otherwise LCSSA will be broken.
|
|
|
|
/// The function is just a helper function for llvm::UnrollLoop that returns
|
|
|
|
/// true if this situation occurs, indicating that LCSSA needs to be fixed.
|
|
|
|
static bool needToInsertPhisForLCSSA(Loop *L, std::vector<BasicBlock *> Blocks,
|
|
|
|
LoopInfo *LI) {
|
|
|
|
for (BasicBlock *BB : Blocks) {
|
|
|
|
if (LI->getLoopFor(BB) == L)
|
|
|
|
continue;
|
|
|
|
for (Instruction &I : *BB) {
|
|
|
|
for (Use &U : I.operands()) {
|
2016-02-23 05:21:45 +08:00
|
|
|
if (auto Def = dyn_cast<Instruction>(U)) {
|
|
|
|
Loop *DefLoop = LI->getLoopFor(Def->getParent());
|
|
|
|
if (!DefLoop)
|
|
|
|
continue;
|
|
|
|
if (DefLoop->contains(L))
|
2016-02-05 10:17:36 +08:00
|
|
|
return true;
|
2016-02-23 05:21:45 +08:00
|
|
|
}
|
2016-02-05 10:17:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-11 07:24:54 +08:00
|
|
|
/// Adds ClonedBB to LoopInfo, creates a new loop for ClonedBB if necessary
|
|
|
|
/// and adds a mapping from the original loop to the new loop to NewLoops.
|
|
|
|
/// Returns nullptr if no new loop was created and a pointer to the
|
|
|
|
/// original loop OriginalBB was part of otherwise.
|
|
|
|
const Loop* llvm::addClonedBlockToLoopInfo(BasicBlock *OriginalBB,
|
|
|
|
BasicBlock *ClonedBB, LoopInfo *LI,
|
|
|
|
NewLoopsMap &NewLoops) {
|
|
|
|
// Figure out which loop New is in.
|
|
|
|
const Loop *OldLoop = LI->getLoopFor(OriginalBB);
|
|
|
|
assert(OldLoop && "Should (at least) be in the loop being unrolled!");
|
|
|
|
|
|
|
|
Loop *&NewLoop = NewLoops[OldLoop];
|
|
|
|
if (!NewLoop) {
|
|
|
|
// Found a new sub-loop.
|
|
|
|
assert(OriginalBB == OldLoop->getHeader() &&
|
|
|
|
"Header should be first in RPO");
|
|
|
|
|
2017-09-28 10:45:42 +08:00
|
|
|
NewLoop = LI->AllocateLoop();
|
2017-01-11 07:24:54 +08:00
|
|
|
Loop *NewLoopParent = NewLoops.lookup(OldLoop->getParentLoop());
|
2017-01-26 09:04:11 +08:00
|
|
|
|
|
|
|
if (NewLoopParent)
|
|
|
|
NewLoopParent->addChildLoop(NewLoop);
|
|
|
|
else
|
|
|
|
LI->addTopLevelLoop(NewLoop);
|
|
|
|
|
2017-01-11 07:24:54 +08:00
|
|
|
NewLoop->addBasicBlockToLoop(ClonedBB, *LI);
|
|
|
|
return OldLoop;
|
|
|
|
} else {
|
|
|
|
NewLoop->addBasicBlockToLoop(ClonedBB, *LI);
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-03 01:38:46 +08:00
|
|
|
/// The function chooses which type of unroll (epilog or prolog) is more
|
|
|
|
/// profitabale.
|
|
|
|
/// Epilog unroll is more profitable when there is PHI that starts from
|
|
|
|
/// constant. In this case epilog will leave PHI start from constant,
|
|
|
|
/// but prolog will convert it to non-constant.
|
|
|
|
///
|
|
|
|
/// loop:
|
|
|
|
/// PN = PHI [I, Latch], [CI, PreHeader]
|
|
|
|
/// I = foo(PN)
|
|
|
|
/// ...
|
|
|
|
///
|
|
|
|
/// Epilog unroll case.
|
|
|
|
/// loop:
|
|
|
|
/// PN = PHI [I2, Latch], [CI, PreHeader]
|
|
|
|
/// I1 = foo(PN)
|
|
|
|
/// I2 = foo(I1)
|
|
|
|
/// ...
|
|
|
|
/// Prolog unroll case.
|
|
|
|
/// NewPN = PHI [PrologI, Prolog], [CI, PreHeader]
|
|
|
|
/// loop:
|
|
|
|
/// PN = PHI [I2, Latch], [NewPN, PreHeader]
|
|
|
|
/// I1 = foo(PN)
|
|
|
|
/// I2 = foo(I1)
|
|
|
|
/// ...
|
|
|
|
///
|
|
|
|
static bool isEpilogProfitable(Loop *L) {
|
|
|
|
BasicBlock *PreHeader = L->getLoopPreheader();
|
|
|
|
BasicBlock *Header = L->getHeader();
|
|
|
|
assert(PreHeader && Header);
|
2017-12-30 23:27:33 +08:00
|
|
|
for (const PHINode &PN : Header->phis()) {
|
|
|
|
if (isa<ConstantInt>(PN.getIncomingValueForBlock(PreHeader)))
|
2017-03-03 01:38:46 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-16 18:41:58 +08:00
|
|
|
/// Perform some cleanup and simplifications on loops after unrolling. It is
|
|
|
|
/// useful to simplify the IV's in the new loop, as well as do a quick
|
|
|
|
/// simplify/dce pass of the instructions.
|
2018-07-01 20:47:30 +08:00
|
|
|
void llvm::simplifyLoopAfterUnroll(Loop *L, bool SimplifyIVs, LoopInfo *LI,
|
|
|
|
ScalarEvolution *SE, DominatorTree *DT,
|
|
|
|
AssumptionCache *AC) {
|
2018-05-16 18:41:58 +08:00
|
|
|
// Simplify any new induction variables in the partially unrolled loop.
|
|
|
|
if (SE && SimplifyIVs) {
|
|
|
|
SmallVector<WeakTrackingVH, 16> DeadInsts;
|
|
|
|
simplifyLoopIVs(L, SE, DT, LI, DeadInsts);
|
|
|
|
|
|
|
|
// Aggressively clean up dead instructions that simplifyLoopIVs already
|
|
|
|
// identified. Any remaining should be cleaned up below.
|
|
|
|
while (!DeadInsts.empty())
|
|
|
|
if (Instruction *Inst =
|
|
|
|
dyn_cast_or_null<Instruction>(&*DeadInsts.pop_back_val()))
|
|
|
|
RecursivelyDeleteTriviallyDeadInstructions(Inst);
|
|
|
|
}
|
|
|
|
|
|
|
|
// At this point, the code is well formed. We now do a quick sweep over the
|
|
|
|
// inserted code, doing constant propagation and dead code elimination as we
|
|
|
|
// go.
|
|
|
|
const DataLayout &DL = L->getHeader()->getModule()->getDataLayout();
|
2018-09-10 20:32:06 +08:00
|
|
|
for (BasicBlock *BB : L->getBlocks()) {
|
2018-05-16 18:41:58 +08:00
|
|
|
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
|
|
|
|
Instruction *Inst = &*I++;
|
|
|
|
|
|
|
|
if (Value *V = SimplifyInstruction(Inst, {DL, nullptr, DT, AC}))
|
|
|
|
if (LI->replacementPreservesLCSSAForm(Inst, V))
|
|
|
|
Inst->replaceAllUsesWith(V);
|
|
|
|
if (isInstructionTriviallyDead(Inst))
|
|
|
|
BB->getInstList().erase(Inst);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: after peeling or unrolling, previously loop variant conditions are
|
|
|
|
// likely to fold to constants, eagerly propagating those here will require
|
|
|
|
// fewer cleanup passes to be run. Alternatively, a LoopEarlyCSE might be
|
|
|
|
// appropriate.
|
|
|
|
}
|
|
|
|
|
2017-09-20 10:31:57 +08:00
|
|
|
/// Unroll the given loop by Count. The loop must be in LCSSA form. Unrolling
|
2008-05-14 08:24:14 +08:00
|
|
|
/// can only fail when the loop's latch block is not terminated by a conditional
|
|
|
|
/// branch instruction. However, if the trip count (and multiple) are not known,
|
|
|
|
/// loop unrolling will mostly produce more code that is no faster.
|
|
|
|
///
|
2016-12-21 04:23:48 +08:00
|
|
|
/// TripCount is the upper bound of the iteration on which control exits
|
|
|
|
/// LatchBlock. Control may exit the loop prior to TripCount iterations either
|
|
|
|
/// via an early branch in other loop block or via LatchBlock terminator. This
|
|
|
|
/// is relaxed from the general definition of trip count which is the number of
|
|
|
|
/// times the loop header executes. Note that UnrollLoop assumes that the loop
|
|
|
|
/// counter test is in LatchBlock in order to remove unnecesssary instances of
|
|
|
|
/// the test. If control can exit the loop from the LatchBlock's terminator
|
|
|
|
/// prior to TripCount iterations, flag PreserveCondBr needs to be set.
|
2011-07-26 06:17:47 +08:00
|
|
|
///
|
2016-10-13 05:29:38 +08:00
|
|
|
/// PreserveCondBr indicates whether the conditional branch of the LatchBlock
|
|
|
|
/// needs to be preserved. It is needed when we use trip count upper bound to
|
2016-10-21 19:08:48 +08:00
|
|
|
/// fully unroll the loop. If PreserveOnlyFirst is also set then only the first
|
|
|
|
/// conditional branch needs to be preserved.
|
2016-10-13 05:29:38 +08:00
|
|
|
///
|
2011-07-26 06:17:47 +08:00
|
|
|
/// Similarly, TripMultiple divides the number of times that the LatchBlock may
|
|
|
|
/// execute without exiting the loop.
|
|
|
|
///
|
2015-04-14 11:20:38 +08:00
|
|
|
/// If AllowRuntime is true then UnrollLoop will consider unrolling loops that
|
|
|
|
/// have a runtime (i.e. not compile time constant) trip count. Unrolling these
|
|
|
|
/// loops require a unroll "prologue" that runs "RuntimeTripCount % Count"
|
|
|
|
/// iterations before branching into the unrolled loop. UnrollLoop will not
|
|
|
|
/// runtime-unroll the loop if computing RuntimeTripCount will be expensive and
|
|
|
|
/// AllowExpensiveTripCount is false.
|
|
|
|
///
|
2017-09-20 10:31:57 +08:00
|
|
|
/// If we want to perform PGO-based loop peeling, PeelCount is set to the
|
2016-12-01 05:13:57 +08:00
|
|
|
/// number of iterations we want to peel off.
|
|
|
|
///
|
2008-05-14 08:24:14 +08:00
|
|
|
/// The LoopInfo Analysis that is passed will be kept consistent.
|
|
|
|
///
|
2015-12-16 03:40:57 +08:00
|
|
|
/// This utility preserves LoopInfo. It will also preserve ScalarEvolution and
|
|
|
|
/// DominatorTree if they are non-null.
|
[Unroll/UnrollAndJam/Vectorizer/Distribute] Add followup loop attributes.
When multiple loop transformation are defined in a loop's metadata, their order of execution is defined by the order of their respective passes in the pass pipeline. For instance, e.g.
#pragma clang loop unroll_and_jam(enable)
#pragma clang loop distribute(enable)
is the same as
#pragma clang loop distribute(enable)
#pragma clang loop unroll_and_jam(enable)
and will try to loop-distribute before Unroll-And-Jam because the LoopDistribute pass is scheduled after UnrollAndJam pass. UnrollAndJamPass only supports one inner loop, i.e. it will necessarily fail after loop distribution. It is not possible to specify another execution order. Also,t the order of passes in the pipeline is subject to change between versions of LLVM, optimization options and which pass manager is used.
This patch adds 'followup' attributes to various loop transformation passes. These attributes define which attributes the resulting loop of a transformation should have. For instance,
!0 = !{!0, !1, !2}
!1 = !{!"llvm.loop.unroll_and_jam.enable"}
!2 = !{!"llvm.loop.unroll_and_jam.followup_inner", !3}
!3 = !{!"llvm.loop.distribute.enable"}
defines a loop ID (!0) to be unrolled-and-jammed (!1) and then the attribute !3 to be added to the jammed inner loop, which contains the instruction to distribute the inner loop.
Currently, in both pass managers, pass execution is in a fixed order and UnrollAndJamPass will not execute again after LoopDistribute. We hope to fix this in the future by allowing pass managers to run passes until a fixpoint is reached, use Polly to perform these transformations, or add a loop transformation pass which takes the order issue into account.
For mandatory/forced transformations (e.g. by having been declared by #pragma omp simd), the user must be notified when a transformation could not be performed. It is not possible that the responsible pass emits such a warning because the transformation might be 'hidden' in a followup attribute when it is executed, or it is not present in the pipeline at all. For this reason, this patche introduces a WarnMissedTransformations pass, to warn about orphaned transformations.
Since this changes the user-visible diagnostic message when a transformation is applied, two test cases in the clang repository need to be updated.
To ensure that no other transformation is executed before the intended one, the attribute `llvm.loop.disable_nonforced` can be added which should disable transformation heuristics before the intended transformation is applied. E.g. it would be surprising if a loop is distributed before a #pragma unroll_and_jam is applied.
With more supported code transformations (loop fusion, interchange, stripmining, offloading, etc.), transformations can be used as building blocks for more complex transformations (e.g. stripmining+stripmining+interchange -> tiling).
Reviewed By: hfinkel, dmgreen
Differential Revision: https://reviews.llvm.org/D49281
Differential Revision: https://reviews.llvm.org/D55288
llvm-svn: 348944
2018-12-13 01:32:52 +08:00
|
|
|
///
|
|
|
|
/// If RemainderLoop is non-null, it will receive the remainder loop (if
|
|
|
|
/// required and not fully unrolled).
|
2017-09-28 05:45:19 +08:00
|
|
|
LoopUnrollResult llvm::UnrollLoop(
|
2017-09-20 10:31:57 +08:00
|
|
|
Loop *L, unsigned Count, unsigned TripCount, bool Force, bool AllowRuntime,
|
|
|
|
bool AllowExpensiveTripCount, bool PreserveCondBr, bool PreserveOnlyFirst,
|
|
|
|
unsigned TripMultiple, unsigned PeelCount, bool UnrollRemainder,
|
|
|
|
LoopInfo *LI, ScalarEvolution *SE, DominatorTree *DT, AssumptionCache *AC,
|
[Unroll/UnrollAndJam/Vectorizer/Distribute] Add followup loop attributes.
When multiple loop transformation are defined in a loop's metadata, their order of execution is defined by the order of their respective passes in the pass pipeline. For instance, e.g.
#pragma clang loop unroll_and_jam(enable)
#pragma clang loop distribute(enable)
is the same as
#pragma clang loop distribute(enable)
#pragma clang loop unroll_and_jam(enable)
and will try to loop-distribute before Unroll-And-Jam because the LoopDistribute pass is scheduled after UnrollAndJam pass. UnrollAndJamPass only supports one inner loop, i.e. it will necessarily fail after loop distribution. It is not possible to specify another execution order. Also,t the order of passes in the pipeline is subject to change between versions of LLVM, optimization options and which pass manager is used.
This patch adds 'followup' attributes to various loop transformation passes. These attributes define which attributes the resulting loop of a transformation should have. For instance,
!0 = !{!0, !1, !2}
!1 = !{!"llvm.loop.unroll_and_jam.enable"}
!2 = !{!"llvm.loop.unroll_and_jam.followup_inner", !3}
!3 = !{!"llvm.loop.distribute.enable"}
defines a loop ID (!0) to be unrolled-and-jammed (!1) and then the attribute !3 to be added to the jammed inner loop, which contains the instruction to distribute the inner loop.
Currently, in both pass managers, pass execution is in a fixed order and UnrollAndJamPass will not execute again after LoopDistribute. We hope to fix this in the future by allowing pass managers to run passes until a fixpoint is reached, use Polly to perform these transformations, or add a loop transformation pass which takes the order issue into account.
For mandatory/forced transformations (e.g. by having been declared by #pragma omp simd), the user must be notified when a transformation could not be performed. It is not possible that the responsible pass emits such a warning because the transformation might be 'hidden' in a followup attribute when it is executed, or it is not present in the pipeline at all. For this reason, this patche introduces a WarnMissedTransformations pass, to warn about orphaned transformations.
Since this changes the user-visible diagnostic message when a transformation is applied, two test cases in the clang repository need to be updated.
To ensure that no other transformation is executed before the intended one, the attribute `llvm.loop.disable_nonforced` can be added which should disable transformation heuristics before the intended transformation is applied. E.g. it would be surprising if a loop is distributed before a #pragma unroll_and_jam is applied.
With more supported code transformations (loop fusion, interchange, stripmining, offloading, etc.), transformations can be used as building blocks for more complex transformations (e.g. stripmining+stripmining+interchange -> tiling).
Reviewed By: hfinkel, dmgreen
Differential Revision: https://reviews.llvm.org/D49281
Differential Revision: https://reviews.llvm.org/D55288
llvm-svn: 348944
2018-12-13 01:32:52 +08:00
|
|
|
OptimizationRemarkEmitter *ORE, bool PreserveLCSSA, Loop **RemainderLoop) {
|
2016-12-01 05:13:57 +08:00
|
|
|
|
2009-11-06 03:44:06 +08:00
|
|
|
BasicBlock *Preheader = L->getLoopPreheader();
|
|
|
|
if (!Preheader) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " Can't unroll; loop preheader-insertion failed.\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2009-11-06 03:44:06 +08:00
|
|
|
}
|
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
BasicBlock *LatchBlock = L->getLoopLatch();
|
2009-11-06 03:44:06 +08:00
|
|
|
if (!LatchBlock) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " Can't unroll; loop exit-block-insertion failed.\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2009-11-06 03:44:06 +08:00
|
|
|
}
|
|
|
|
|
2012-04-10 13:14:42 +08:00
|
|
|
// Loops with indirectbr cannot be cloned.
|
|
|
|
if (!L->isSafeToClone()) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " Can't unroll; Loop body cannot be cloned.\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2012-04-10 13:14:42 +08:00
|
|
|
}
|
|
|
|
|
2017-04-25 04:14:11 +08:00
|
|
|
// The current loop unroll pass can only unroll loops with a single latch
|
|
|
|
// that's a conditional branch exiting the loop.
|
|
|
|
// FIXME: The implementation can be extended to work with more complicated
|
|
|
|
// cases, e.g. loops with multiple latches.
|
2009-11-06 03:44:06 +08:00
|
|
|
BasicBlock *Header = L->getHeader();
|
2008-05-14 08:24:14 +08:00
|
|
|
BranchInst *BI = dyn_cast<BranchInst>(LatchBlock->getTerminator());
|
2011-07-23 08:29:16 +08:00
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
if (!BI || BI->isUnconditional()) {
|
|
|
|
// The loop-rotate pass can be helpful to avoid this in many cases.
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(
|
|
|
|
dbgs()
|
|
|
|
<< " Can't unroll; loop not terminated by a conditional branch.\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
2011-07-23 08:29:16 +08:00
|
|
|
|
2017-04-25 04:14:11 +08:00
|
|
|
auto CheckSuccessors = [&](unsigned S1, unsigned S2) {
|
|
|
|
return BI->getSuccessor(S1) == Header && !L->contains(BI->getSuccessor(S2));
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!CheckSuccessors(0, 1) && !CheckSuccessors(1, 0)) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Can't unroll; only loops with one conditional latch"
|
|
|
|
" exiting the loop can be unrolled\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2017-04-25 04:14:11 +08:00
|
|
|
}
|
|
|
|
|
2011-02-18 12:25:21 +08:00
|
|
|
if (Header->hasAddressTaken()) {
|
|
|
|
// The loop-rotate pass can be helpful to avoid this in many cases.
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(
|
|
|
|
dbgs() << " Won't unroll loop: address of header block is taken.\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2011-02-18 12:25:21 +08:00
|
|
|
}
|
2008-05-14 08:24:14 +08:00
|
|
|
|
|
|
|
if (TripCount != 0)
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " Trip Count = " << TripCount << "\n");
|
2008-05-14 08:24:14 +08:00
|
|
|
if (TripMultiple != 1)
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " Trip Multiple = " << TripMultiple << "\n");
|
2008-05-14 08:24:14 +08:00
|
|
|
|
|
|
|
// Effectively "DCE" unrolled iterations that are beyond the tripcount
|
|
|
|
// and will never be executed.
|
|
|
|
if (TripCount != 0 && Count > TripCount)
|
|
|
|
Count = TripCount;
|
|
|
|
|
2016-12-01 05:13:57 +08:00
|
|
|
// Don't enter the unroll code if there is nothing to do.
|
2017-01-28 01:57:05 +08:00
|
|
|
if (TripCount == 0 && Count < 2 && PeelCount == 0) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Won't unroll; almost nothing to do\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2017-01-28 01:57:05 +08:00
|
|
|
}
|
2011-12-16 10:03:48 +08:00
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
assert(Count > 0);
|
|
|
|
assert(TripMultiple > 0);
|
|
|
|
assert(TripCount == 0 || TripCount % TripMultiple == 0);
|
|
|
|
|
|
|
|
// Are we eliminating the loop control altogether?
|
|
|
|
bool CompletelyUnroll = Count == TripCount;
|
2015-12-10 02:20:28 +08:00
|
|
|
SmallVector<BasicBlock *, 4> ExitBlocks;
|
|
|
|
L->getExitBlocks(ExitBlocks);
|
2016-04-07 05:47:12 +08:00
|
|
|
std::vector<BasicBlock*> OriginalLoopBlocks = L->getBlocks();
|
2016-02-05 10:17:36 +08:00
|
|
|
|
|
|
|
// Go through all exits of L and see if there are any phi-nodes there. We just
|
|
|
|
// conservatively assume that they're inserted to preserve LCSSA form, which
|
|
|
|
// means that complete unrolling might break this form. We need to either fix
|
|
|
|
// it in-place after the transformation, or entirely rebuild LCSSA. TODO: For
|
|
|
|
// now we just recompute LCSSA for the outer loop, but it should be possible
|
|
|
|
// to fix it in-place.
|
|
|
|
bool NeedToFixLCSSA = PreserveLCSSA && CompletelyUnroll &&
|
2016-08-12 05:15:00 +08:00
|
|
|
any_of(ExitBlocks, [](const BasicBlock *BB) {
|
|
|
|
return isa<PHINode>(BB->begin());
|
|
|
|
});
|
2008-05-14 08:24:14 +08:00
|
|
|
|
2011-12-09 14:19:40 +08:00
|
|
|
// We assume a run-time trip count if the compiler cannot
|
|
|
|
// figure out the loop trip count and the unroll-runtime
|
|
|
|
// flag is specified.
|
|
|
|
bool RuntimeTripCount = (TripCount == 0 && Count > 0 && AllowRuntime);
|
|
|
|
|
2016-12-01 05:13:57 +08:00
|
|
|
assert((!RuntimeTripCount || !PeelCount) &&
|
|
|
|
"Did not expect runtime trip-count unrolling "
|
|
|
|
"and peeling for the same loop");
|
|
|
|
|
2018-03-23 18:38:12 +08:00
|
|
|
bool Peeled = false;
|
2017-08-29 04:29:33 +08:00
|
|
|
if (PeelCount) {
|
2018-03-23 18:38:12 +08:00
|
|
|
Peeled = peelLoop(L, PeelCount, LI, SE, DT, AC, PreserveLCSSA);
|
2017-08-29 04:29:33 +08:00
|
|
|
|
|
|
|
// Successful peeling may result in a change in the loop preheader/trip
|
|
|
|
// counts. If we later unroll the loop, we want these to be updated.
|
|
|
|
if (Peeled) {
|
|
|
|
BasicBlock *ExitingBlock = L->getExitingBlock();
|
|
|
|
assert(ExitingBlock && "Loop without exiting block?");
|
|
|
|
Preheader = L->getLoopPreheader();
|
|
|
|
TripCount = SE->getSmallConstantTripCount(L, ExitingBlock);
|
|
|
|
TripMultiple = SE->getSmallConstantTripMultiple(L, ExitingBlock);
|
|
|
|
}
|
|
|
|
}
|
2016-12-01 05:13:57 +08:00
|
|
|
|
2016-03-15 07:15:34 +08:00
|
|
|
// Loops containing convergent instructions must have a count that divides
|
|
|
|
// their TripMultiple.
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(
|
2016-03-15 11:01:31 +08:00
|
|
|
{
|
|
|
|
bool HasConvergent = false;
|
2016-05-10 08:31:23 +08:00
|
|
|
for (auto &BB : L->blocks())
|
2016-03-15 11:01:31 +08:00
|
|
|
for (auto &I : *BB)
|
|
|
|
if (auto CS = CallSite(&I))
|
|
|
|
HasConvergent |= CS.isConvergent();
|
2016-03-15 10:19:06 +08:00
|
|
|
assert((!HasConvergent || TripMultiple % Count == 0) &&
|
|
|
|
"Unroll count must divide trip multiple if loop contains a "
|
2016-05-10 08:31:23 +08:00
|
|
|
"convergent operation.");
|
2016-03-15 11:01:31 +08:00
|
|
|
});
|
2016-12-01 05:13:57 +08:00
|
|
|
|
2017-03-03 01:38:46 +08:00
|
|
|
bool EpilogProfitability =
|
|
|
|
UnrollRuntimeEpilog.getNumOccurrences() ? UnrollRuntimeEpilog
|
|
|
|
: isEpilogProfitable(L);
|
|
|
|
|
2016-03-15 07:15:34 +08:00
|
|
|
if (RuntimeTripCount && TripMultiple % Count != 0 &&
|
2016-04-05 20:19:35 +08:00
|
|
|
!UnrollRuntimeLoopRemainder(L, Count, AllowExpensiveTripCount,
|
2017-10-31 18:47:46 +08:00
|
|
|
EpilogProfitability, UnrollRemainder, LI, SE,
|
[Unroll/UnrollAndJam/Vectorizer/Distribute] Add followup loop attributes.
When multiple loop transformation are defined in a loop's metadata, their order of execution is defined by the order of their respective passes in the pass pipeline. For instance, e.g.
#pragma clang loop unroll_and_jam(enable)
#pragma clang loop distribute(enable)
is the same as
#pragma clang loop distribute(enable)
#pragma clang loop unroll_and_jam(enable)
and will try to loop-distribute before Unroll-And-Jam because the LoopDistribute pass is scheduled after UnrollAndJam pass. UnrollAndJamPass only supports one inner loop, i.e. it will necessarily fail after loop distribution. It is not possible to specify another execution order. Also,t the order of passes in the pipeline is subject to change between versions of LLVM, optimization options and which pass manager is used.
This patch adds 'followup' attributes to various loop transformation passes. These attributes define which attributes the resulting loop of a transformation should have. For instance,
!0 = !{!0, !1, !2}
!1 = !{!"llvm.loop.unroll_and_jam.enable"}
!2 = !{!"llvm.loop.unroll_and_jam.followup_inner", !3}
!3 = !{!"llvm.loop.distribute.enable"}
defines a loop ID (!0) to be unrolled-and-jammed (!1) and then the attribute !3 to be added to the jammed inner loop, which contains the instruction to distribute the inner loop.
Currently, in both pass managers, pass execution is in a fixed order and UnrollAndJamPass will not execute again after LoopDistribute. We hope to fix this in the future by allowing pass managers to run passes until a fixpoint is reached, use Polly to perform these transformations, or add a loop transformation pass which takes the order issue into account.
For mandatory/forced transformations (e.g. by having been declared by #pragma omp simd), the user must be notified when a transformation could not be performed. It is not possible that the responsible pass emits such a warning because the transformation might be 'hidden' in a followup attribute when it is executed, or it is not present in the pipeline at all. For this reason, this patche introduces a WarnMissedTransformations pass, to warn about orphaned transformations.
Since this changes the user-visible diagnostic message when a transformation is applied, two test cases in the clang repository need to be updated.
To ensure that no other transformation is executed before the intended one, the attribute `llvm.loop.disable_nonforced` can be added which should disable transformation heuristics before the intended transformation is applied. E.g. it would be surprising if a loop is distributed before a #pragma unroll_and_jam is applied.
With more supported code transformations (loop fusion, interchange, stripmining, offloading, etc.), transformations can be used as building blocks for more complex transformations (e.g. stripmining+stripmining+interchange -> tiling).
Reviewed By: hfinkel, dmgreen
Differential Revision: https://reviews.llvm.org/D49281
Differential Revision: https://reviews.llvm.org/D55288
llvm-svn: 348944
2018-12-13 01:32:52 +08:00
|
|
|
DT, AC, PreserveLCSSA, RemainderLoop)) {
|
2016-05-28 07:15:06 +08:00
|
|
|
if (Force)
|
|
|
|
RuntimeTripCount = false;
|
2017-01-28 01:57:05 +08:00
|
|
|
else {
|
2018-07-01 20:47:30 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "Won't unroll; remainder loop could not be "
|
|
|
|
"generated when assuming runtime trip count\n");
|
2017-09-28 05:45:19 +08:00
|
|
|
return LoopUnrollResult::Unmodified;
|
2017-01-28 01:57:05 +08:00
|
|
|
}
|
2016-05-28 07:15:06 +08:00
|
|
|
}
|
2011-12-09 14:19:40 +08:00
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
// If we know the trip count, we know the multiple...
|
|
|
|
unsigned BreakoutTrip = 0;
|
|
|
|
if (TripCount != 0) {
|
|
|
|
BreakoutTrip = TripCount % Count;
|
|
|
|
TripMultiple = 0;
|
|
|
|
} else {
|
|
|
|
// Figure out what multiple to use.
|
|
|
|
BreakoutTrip = TripMultiple =
|
|
|
|
(unsigned)GreatestCommonDivisor64(Count, TripMultiple);
|
|
|
|
}
|
|
|
|
|
2016-09-30 11:44:16 +08:00
|
|
|
using namespace ore;
|
2014-04-29 22:27:31 +08:00
|
|
|
// Report the unrolling decision.
|
2008-05-14 08:24:14 +08:00
|
|
|
if (CompletelyUnroll) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "COMPLETELY UNROLLING loop %" << Header->getName()
|
|
|
|
<< " with trip count " << TripCount << "!\n");
|
2017-10-31 18:47:46 +08:00
|
|
|
if (ORE)
|
|
|
|
ORE->emit([&]() {
|
|
|
|
return OptimizationRemark(DEBUG_TYPE, "FullyUnrolled", L->getStartLoc(),
|
|
|
|
L->getHeader())
|
|
|
|
<< "completely unrolled loop with "
|
|
|
|
<< NV("UnrollCount", TripCount) << " iterations";
|
|
|
|
});
|
2016-12-01 05:13:57 +08:00
|
|
|
} else if (PeelCount) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "PEELING loop %" << Header->getName()
|
|
|
|
<< " with iteration count " << PeelCount << "!\n");
|
2017-10-31 18:47:46 +08:00
|
|
|
if (ORE)
|
|
|
|
ORE->emit([&]() {
|
|
|
|
return OptimizationRemark(DEBUG_TYPE, "Peeled", L->getStartLoc(),
|
|
|
|
L->getHeader())
|
|
|
|
<< " peeled loop by " << NV("PeelCount", PeelCount)
|
|
|
|
<< " iterations";
|
|
|
|
});
|
2008-05-14 08:24:14 +08:00
|
|
|
} else {
|
2017-09-20 07:00:55 +08:00
|
|
|
auto DiagBuilder = [&]() {
|
|
|
|
OptimizationRemark Diag(DEBUG_TYPE, "PartialUnrolled", L->getStartLoc(),
|
|
|
|
L->getHeader());
|
|
|
|
return Diag << "unrolled loop by a factor of "
|
|
|
|
<< NV("UnrollCount", Count);
|
|
|
|
};
|
2014-07-08 22:55:06 +08:00
|
|
|
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "UNROLLING loop %" << Header->getName() << " by "
|
|
|
|
<< Count);
|
2008-05-14 08:24:14 +08:00
|
|
|
if (TripMultiple == 0 || BreakoutTrip != TripMultiple) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " with a breakout at trip " << BreakoutTrip);
|
2017-10-31 18:47:46 +08:00
|
|
|
if (ORE)
|
|
|
|
ORE->emit([&]() {
|
|
|
|
return DiagBuilder() << " with a breakout at trip "
|
|
|
|
<< NV("BreakoutTrip", BreakoutTrip);
|
|
|
|
});
|
2008-05-14 08:24:14 +08:00
|
|
|
} else if (TripMultiple != 1) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " with " << TripMultiple << " trips per branch");
|
2017-10-31 18:47:46 +08:00
|
|
|
if (ORE)
|
|
|
|
ORE->emit([&]() {
|
|
|
|
return DiagBuilder() << " with " << NV("TripMultiple", TripMultiple)
|
|
|
|
<< " trips per branch";
|
|
|
|
});
|
2011-12-09 14:19:40 +08:00
|
|
|
} else if (RuntimeTripCount) {
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << " with run-time trip count");
|
2017-10-31 18:47:46 +08:00
|
|
|
if (ORE)
|
|
|
|
ORE->emit(
|
|
|
|
[&]() { return DiagBuilder() << " with run-time trip count"; });
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
2018-05-14 20:53:11 +08:00
|
|
|
LLVM_DEBUG(dbgs() << "!\n");
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
|
|
|
|
2018-03-26 19:31:46 +08:00
|
|
|
// We are going to make changes to this loop. SCEV may be keeping cached info
|
|
|
|
// about it, in particular about backedge taken count. The changes we make
|
|
|
|
// are guaranteed to invalidate this information for our loop. It is tempting
|
|
|
|
// to only invalidate the loop being unrolled, but it is incorrect as long as
|
|
|
|
// all exiting branches from all inner loops have impact on the outer loops,
|
|
|
|
// and if something changes inside them then any of outer loops may also
|
|
|
|
// change. When we forget outermost loop, we also forget all contained loops
|
|
|
|
// and this is what we need here.
|
2018-04-24 12:33:04 +08:00
|
|
|
if (SE)
|
|
|
|
SE->forgetTopmostLoop(L);
|
2018-03-26 19:31:46 +08:00
|
|
|
|
2008-06-25 04:44:42 +08:00
|
|
|
bool ContinueOnTrue = L->contains(BI->getSuccessor(0));
|
2008-05-14 08:24:14 +08:00
|
|
|
BasicBlock *LoopExit = BI->getSuccessor(ContinueOnTrue);
|
|
|
|
|
|
|
|
// For the first iteration of the loop, we should use the precloned values for
|
|
|
|
// PHI nodes. Insert associations now.
|
2010-04-21 06:24:18 +08:00
|
|
|
ValueToValueMapTy LastValueMap;
|
2008-06-25 04:44:42 +08:00
|
|
|
std::vector<PHINode*> OrigPHINode;
|
2008-05-14 08:24:14 +08:00
|
|
|
for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
|
2011-08-09 11:11:29 +08:00
|
|
|
OrigPHINode.push_back(cast<PHINode>(I));
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<BasicBlock*> Headers;
|
|
|
|
std::vector<BasicBlock*> Latches;
|
|
|
|
Headers.push_back(Header);
|
|
|
|
Latches.push_back(LatchBlock);
|
|
|
|
|
2011-08-10 08:28:10 +08:00
|
|
|
// The current on-the-fly SSA update requires blocks to be processed in
|
|
|
|
// reverse postorder so that LastValueMap contains the correct value at each
|
|
|
|
// exit.
|
|
|
|
LoopBlocksDFS DFS(L);
|
2011-08-10 09:59:05 +08:00
|
|
|
DFS.perform(LI);
|
|
|
|
|
2011-08-10 08:28:10 +08:00
|
|
|
// Stash the DFS iterators before adding blocks to the loop.
|
|
|
|
LoopBlocksDFS::RPOIterator BlockBegin = DFS.beginRPO();
|
|
|
|
LoopBlocksDFS::RPOIterator BlockEnd = DFS.endRPO();
|
|
|
|
|
2016-02-05 10:17:36 +08:00
|
|
|
std::vector<BasicBlock*> UnrolledLoopBlocks = L->getBlocks();
|
2016-08-09 03:02:15 +08:00
|
|
|
|
|
|
|
// Loop Unrolling might create new loops. While we do preserve LoopInfo, we
|
|
|
|
// might break loop-simplified form for these loops (as they, e.g., would
|
|
|
|
// share the same exit blocks). We'll keep track of loops for which we can
|
|
|
|
// break this so that later we can re-simplify them.
|
|
|
|
SmallSetVector<Loop *, 4> LoopsToSimplify;
|
|
|
|
for (Loop *SubLoop : *L)
|
|
|
|
LoopsToSimplify.insert(SubLoop);
|
|
|
|
|
2017-02-11 05:09:07 +08:00
|
|
|
if (Header->getParent()->isDebugInfoForProfiling())
|
|
|
|
for (BasicBlock *BB : L->getBlocks())
|
|
|
|
for (Instruction &I : *BB)
|
2017-10-27 05:20:52 +08:00
|
|
|
if (!isa<DbgInfoIntrinsic>(&I))
|
2018-12-22 06:48:50 +08:00
|
|
|
if (const DILocation *DIL = I.getDebugLoc()) {
|
2019-01-24 08:10:25 +08:00
|
|
|
auto NewDIL = DIL->cloneByMultiplyingDuplicationFactor(Count);
|
2018-12-22 06:48:50 +08:00
|
|
|
if (NewDIL)
|
|
|
|
I.setDebugLoc(NewDIL.getValue());
|
|
|
|
else
|
|
|
|
LLVM_DEBUG(dbgs()
|
|
|
|
<< "Failed to create new discriminator: "
|
|
|
|
<< DIL->getFilename() << " Line: " << DIL->getLine());
|
|
|
|
}
|
2017-02-11 05:09:07 +08:00
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
for (unsigned It = 1; It != Count; ++It) {
|
|
|
|
std::vector<BasicBlock*> NewBlocks;
|
2014-10-08 05:19:00 +08:00
|
|
|
SmallDenseMap<const Loop *, Loop *, 4> NewLoops;
|
|
|
|
NewLoops[L] = L;
|
2011-07-23 08:29:16 +08:00
|
|
|
|
2011-08-10 08:28:10 +08:00
|
|
|
for (LoopBlocksDFS::RPOIterator BB = BlockBegin; BB != BlockEnd; ++BB) {
|
2010-06-24 07:55:51 +08:00
|
|
|
ValueToValueMapTy VMap;
|
|
|
|
BasicBlock *New = CloneBasicBlock(*BB, VMap, "." + Twine(It));
|
2008-06-25 04:44:42 +08:00
|
|
|
Header->getParent()->getBasicBlockList().push_back(New);
|
|
|
|
|
2017-02-02 05:06:33 +08:00
|
|
|
assert((*BB != Header || LI->getLoopFor(*BB) == L) &&
|
2017-02-01 18:39:35 +08:00
|
|
|
"Header should not be in a sub-loop");
|
2014-10-08 05:19:00 +08:00
|
|
|
// Tell LI about New.
|
2017-02-01 18:39:35 +08:00
|
|
|
const Loop *OldLoop = addClonedBlockToLoopInfo(*BB, New, LI, NewLoops);
|
2018-03-26 19:31:46 +08:00
|
|
|
if (OldLoop)
|
2017-02-01 18:39:35 +08:00
|
|
|
LoopsToSimplify.insert(NewLoops[OldLoop]);
|
|
|
|
|
2008-06-25 04:44:42 +08:00
|
|
|
if (*BB == Header)
|
2014-10-07 06:04:59 +08:00
|
|
|
// Loop over all of the PHI nodes in the block, changing them to use
|
|
|
|
// the incoming values from the previous block.
|
2016-03-09 01:12:32 +08:00
|
|
|
for (PHINode *OrigPHI : OrigPHINode) {
|
|
|
|
PHINode *NewPHI = cast<PHINode>(VMap[OrigPHI]);
|
2008-05-14 08:24:14 +08:00
|
|
|
Value *InVal = NewPHI->getIncomingValueForBlock(LatchBlock);
|
|
|
|
if (Instruction *InValI = dyn_cast<Instruction>(InVal))
|
2009-12-18 09:24:09 +08:00
|
|
|
if (It > 1 && L->contains(InValI))
|
2008-05-14 08:24:14 +08:00
|
|
|
InVal = LastValueMap[InValI];
|
2016-03-09 01:12:32 +08:00
|
|
|
VMap[OrigPHI] = InVal;
|
2008-05-14 08:24:14 +08:00
|
|
|
New->getInstList().erase(NewPHI);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update our running map of newest clones
|
2008-06-25 04:44:42 +08:00
|
|
|
LastValueMap[*BB] = New;
|
2010-06-24 07:55:51 +08:00
|
|
|
for (ValueToValueMapTy::iterator VI = VMap.begin(), VE = VMap.end();
|
2008-05-14 08:24:14 +08:00
|
|
|
VI != VE; ++VI)
|
|
|
|
LastValueMap[VI->first] = VI->second;
|
|
|
|
|
2011-08-10 08:28:10 +08:00
|
|
|
// Add phi entries for newly created values to all exit blocks.
|
2016-03-09 01:12:32 +08:00
|
|
|
for (BasicBlock *Succ : successors(*BB)) {
|
|
|
|
if (L->contains(Succ))
|
2011-08-10 08:28:10 +08:00
|
|
|
continue;
|
2017-12-30 23:27:33 +08:00
|
|
|
for (PHINode &PHI : Succ->phis()) {
|
|
|
|
Value *Incoming = PHI.getIncomingValueForBlock(*BB);
|
2011-08-10 08:28:10 +08:00
|
|
|
ValueToValueMapTy::iterator It = LastValueMap.find(Incoming);
|
|
|
|
if (It != LastValueMap.end())
|
|
|
|
Incoming = It->second;
|
2017-12-30 23:27:33 +08:00
|
|
|
PHI.addIncoming(Incoming, New);
|
2011-08-10 08:28:10 +08:00
|
|
|
}
|
|
|
|
}
|
2008-06-25 04:44:42 +08:00
|
|
|
// Keep track of new headers and latches as we create them, so that
|
|
|
|
// we can insert the proper branches later.
|
|
|
|
if (*BB == Header)
|
|
|
|
Headers.push_back(New);
|
2011-08-10 08:28:10 +08:00
|
|
|
if (*BB == LatchBlock)
|
2008-06-25 04:44:42 +08:00
|
|
|
Latches.push_back(New);
|
|
|
|
|
|
|
|
NewBlocks.push_back(New);
|
2016-02-05 10:17:36 +08:00
|
|
|
UnrolledLoopBlocks.push_back(New);
|
2016-02-23 08:30:50 +08:00
|
|
|
|
|
|
|
// Update DomTree: since we just copy the loop body, and each copy has a
|
|
|
|
// dedicated entry block (copy of the header block), this header's copy
|
|
|
|
// dominates all copied blocks. That means, dominance relations in the
|
|
|
|
// copied body are the same as in the original body.
|
|
|
|
if (DT) {
|
|
|
|
if (*BB == Header)
|
|
|
|
DT->addNewBlock(New, Latches[It - 1]);
|
|
|
|
else {
|
|
|
|
auto BBDomNode = DT->getNode(*BB);
|
|
|
|
auto BBIDom = BBDomNode->getIDom();
|
|
|
|
BasicBlock *OriginalBBIDom = BBIDom->getBlock();
|
|
|
|
DT->addNewBlock(
|
|
|
|
New, cast<BasicBlock>(LastValueMap[cast<Value>(OriginalBBIDom)]));
|
|
|
|
}
|
|
|
|
}
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
2011-07-23 08:29:16 +08:00
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
// Remap all instructions in the most recent iteration
|
2016-12-19 16:22:17 +08:00
|
|
|
for (BasicBlock *NewBlock : NewBlocks) {
|
|
|
|
for (Instruction &I : *NewBlock) {
|
2016-03-09 01:12:32 +08:00
|
|
|
::remapInstruction(&I, LastValueMap);
|
2016-12-19 16:22:17 +08:00
|
|
|
if (auto *II = dyn_cast<IntrinsicInst>(&I))
|
|
|
|
if (II->getIntrinsicID() == Intrinsic::assume)
|
|
|
|
AC->registerAssumption(II);
|
|
|
|
}
|
|
|
|
}
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
2011-07-23 08:29:16 +08:00
|
|
|
|
2011-08-10 08:28:10 +08:00
|
|
|
// Loop over the PHI nodes in the original block, setting incoming values.
|
2016-03-09 01:12:32 +08:00
|
|
|
for (PHINode *PN : OrigPHINode) {
|
2011-08-10 08:28:10 +08:00
|
|
|
if (CompletelyUnroll) {
|
2008-06-25 04:44:42 +08:00
|
|
|
PN->replaceAllUsesWith(PN->getIncomingValueForBlock(Preheader));
|
|
|
|
Header->getInstList().erase(PN);
|
|
|
|
}
|
2011-08-10 08:28:10 +08:00
|
|
|
else if (Count > 1) {
|
|
|
|
Value *InVal = PN->removeIncomingValue(LatchBlock, false);
|
|
|
|
// If this value was defined in the loop, take the value defined by the
|
|
|
|
// last iteration of the loop.
|
|
|
|
if (Instruction *InValI = dyn_cast<Instruction>(InVal)) {
|
|
|
|
if (L->contains(InValI))
|
|
|
|
InVal = LastValueMap[InVal];
|
|
|
|
}
|
|
|
|
assert(Latches.back() == LastValueMap[LatchBlock] && "bad last latch");
|
|
|
|
PN->addIncoming(InVal, Latches.back());
|
|
|
|
}
|
2008-06-25 04:44:42 +08:00
|
|
|
}
|
2008-05-14 08:24:14 +08:00
|
|
|
|
|
|
|
// Now that all the basic blocks for the unrolled iterations are in place,
|
|
|
|
// set up the branches to connect them.
|
2008-06-25 04:44:42 +08:00
|
|
|
for (unsigned i = 0, e = Latches.size(); i != e; ++i) {
|
2008-05-14 08:24:14 +08:00
|
|
|
// The original branch was replicated in each unrolled iteration.
|
2008-06-25 04:44:42 +08:00
|
|
|
BranchInst *Term = cast<BranchInst>(Latches[i]->getTerminator());
|
2008-05-14 08:24:14 +08:00
|
|
|
|
|
|
|
// The branch destination.
|
2008-06-25 04:44:42 +08:00
|
|
|
unsigned j = (i + 1) % e;
|
|
|
|
BasicBlock *Dest = Headers[j];
|
2008-05-14 08:24:14 +08:00
|
|
|
bool NeedConditional = true;
|
|
|
|
|
2011-12-09 14:19:40 +08:00
|
|
|
if (RuntimeTripCount && j != 0) {
|
|
|
|
NeedConditional = false;
|
|
|
|
}
|
|
|
|
|
2008-06-25 04:44:42 +08:00
|
|
|
// For a complete unroll, make the last iteration end with a branch
|
|
|
|
// to the exit block.
|
2015-09-24 07:12:43 +08:00
|
|
|
if (CompletelyUnroll) {
|
|
|
|
if (j == 0)
|
|
|
|
Dest = LoopExit;
|
2016-10-13 05:29:38 +08:00
|
|
|
// If using trip count upper bound to completely unroll, we need to keep
|
|
|
|
// the conditional branch except the last one because the loop may exit
|
|
|
|
// after any iteration.
|
|
|
|
assert(NeedConditional &&
|
|
|
|
"NeedCondition cannot be modified by both complete "
|
|
|
|
"unrolling and runtime unrolling");
|
2016-10-21 19:08:48 +08:00
|
|
|
NeedConditional = (PreserveCondBr && j && !(PreserveOnlyFirst && i != 0));
|
2016-10-13 05:29:38 +08:00
|
|
|
} else if (j != BreakoutTrip && (TripMultiple == 0 || j % TripMultiple != 0)) {
|
|
|
|
// If we know the trip count or a multiple of it, we can safely use an
|
|
|
|
// unconditional branch for some iterations.
|
2008-05-14 08:24:14 +08:00
|
|
|
NeedConditional = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NeedConditional) {
|
|
|
|
// Update the conditional branch's successor for the following
|
|
|
|
// iteration.
|
|
|
|
Term->setSuccessor(!ContinueOnTrue, Dest);
|
|
|
|
} else {
|
2011-08-10 08:28:10 +08:00
|
|
|
// Remove phi operands at this loop exit
|
|
|
|
if (Dest != LoopExit) {
|
|
|
|
BasicBlock *BB = Latches[i];
|
2016-03-09 01:12:32 +08:00
|
|
|
for (BasicBlock *Succ: successors(BB)) {
|
|
|
|
if (Succ == Headers[i])
|
2011-08-10 08:28:10 +08:00
|
|
|
continue;
|
2017-12-30 23:27:33 +08:00
|
|
|
for (PHINode &Phi : Succ->phis())
|
|
|
|
Phi.removeIncomingValue(BB, false);
|
2011-08-10 08:28:10 +08:00
|
|
|
}
|
|
|
|
}
|
2011-01-08 04:25:56 +08:00
|
|
|
// Replace the conditional branch with an unconditional one.
|
|
|
|
BranchInst::Create(Dest, Term);
|
|
|
|
Term->eraseFromParent();
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
|
|
|
}
|
2017-01-19 07:26:37 +08:00
|
|
|
|
2016-04-07 05:47:12 +08:00
|
|
|
// Update dominators of blocks we might reach through exits.
|
|
|
|
// Immediate dominator of such block might change, because we add more
|
2016-02-23 08:30:50 +08:00
|
|
|
// routes which can lead to the exit: we can now reach it from the copied
|
2017-01-19 07:26:37 +08:00
|
|
|
// iterations too.
|
2016-02-23 08:30:50 +08:00
|
|
|
if (DT && Count > 1) {
|
2016-04-07 05:47:12 +08:00
|
|
|
for (auto *BB : OriginalLoopBlocks) {
|
|
|
|
auto *BBDomNode = DT->getNode(BB);
|
2016-04-07 08:09:42 +08:00
|
|
|
SmallVector<BasicBlock *, 16> ChildrenToUpdate;
|
2016-04-07 05:47:12 +08:00
|
|
|
for (auto *ChildDomNode : BBDomNode->getChildren()) {
|
|
|
|
auto *ChildBB = ChildDomNode->getBlock();
|
2016-04-07 08:09:42 +08:00
|
|
|
if (!L->contains(ChildBB))
|
|
|
|
ChildrenToUpdate.push_back(ChildBB);
|
2016-04-07 05:47:12 +08:00
|
|
|
}
|
2017-01-19 07:26:37 +08:00
|
|
|
BasicBlock *NewIDom;
|
|
|
|
if (BB == LatchBlock) {
|
|
|
|
// The latch is special because we emit unconditional branches in
|
|
|
|
// some cases where the original loop contained a conditional branch.
|
|
|
|
// Since the latch is always at the bottom of the loop, if the latch
|
|
|
|
// dominated an exit before unrolling, the new dominator of that exit
|
|
|
|
// must also be a latch. Specifically, the dominator is the first
|
|
|
|
// latch which ends in a conditional branch, or the last latch if
|
|
|
|
// there is no such latch.
|
|
|
|
NewIDom = Latches.back();
|
|
|
|
for (BasicBlock *IterLatch : Latches) {
|
2018-10-15 18:04:59 +08:00
|
|
|
Instruction *Term = IterLatch->getTerminator();
|
2017-01-19 07:26:37 +08:00
|
|
|
if (isa<BranchInst>(Term) && cast<BranchInst>(Term)->isConditional()) {
|
|
|
|
NewIDom = IterLatch;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// The new idom of the block will be the nearest common dominator
|
|
|
|
// of all copies of the previous idom. This is equivalent to the
|
|
|
|
// nearest common dominator of the previous idom and the first latch,
|
|
|
|
// which dominates all copies of the previous idom.
|
|
|
|
NewIDom = DT->findNearestCommonDominator(BB, LatchBlock);
|
|
|
|
}
|
2016-04-07 08:09:42 +08:00
|
|
|
for (auto *ChildBB : ChildrenToUpdate)
|
|
|
|
DT->changeImmediateDominator(ChildBB, NewIDom);
|
2016-02-23 08:30:50 +08:00
|
|
|
}
|
|
|
|
}
|
2011-06-23 14:24:52 +08:00
|
|
|
|
2018-02-28 19:00:08 +08:00
|
|
|
assert(!DT || !UnrollVerifyDomtree ||
|
|
|
|
DT->verify(DominatorTree::VerificationLevel::Fast));
|
2017-01-19 07:26:37 +08:00
|
|
|
|
2011-06-23 17:09:15 +08:00
|
|
|
// Merge adjacent basic blocks, if possible.
|
2016-03-09 01:12:32 +08:00
|
|
|
for (BasicBlock *Latch : Latches) {
|
|
|
|
BranchInst *Term = cast<BranchInst>(Latch->getTerminator());
|
2011-06-23 17:09:15 +08:00
|
|
|
if (Term->isUnconditional()) {
|
|
|
|
BasicBlock *Dest = Term->getSuccessor(0);
|
2018-03-26 19:31:46 +08:00
|
|
|
if (BasicBlock *Fold = foldBlockIntoPredecessor(Dest, LI, SE, DT)) {
|
2016-02-05 10:17:36 +08:00
|
|
|
// Dest has been folded into Fold. Update our worklists accordingly.
|
2011-06-23 17:09:15 +08:00
|
|
|
std::replace(Latches.begin(), Latches.end(), Dest, Fold);
|
2016-02-05 10:17:36 +08:00
|
|
|
UnrolledLoopBlocks.erase(std::remove(UnrolledLoopBlocks.begin(),
|
|
|
|
UnrolledLoopBlocks.end(), Dest),
|
|
|
|
UnrolledLoopBlocks.end());
|
|
|
|
}
|
2011-06-23 17:09:15 +08:00
|
|
|
}
|
|
|
|
}
|
2011-07-23 08:29:16 +08:00
|
|
|
|
2018-05-16 18:41:58 +08:00
|
|
|
// At this point, the code is well formed. We now simplify the unrolled loop,
|
|
|
|
// doing constant propagation and dead code elimination as we go.
|
|
|
|
simplifyLoopAfterUnroll(L, !CompletelyUnroll && (Count > 1 || Peeled), LI, SE,
|
|
|
|
DT, AC);
|
2016-12-31 06:10:19 +08:00
|
|
|
|
2008-05-14 08:24:14 +08:00
|
|
|
NumCompletelyUnrolled += CompletelyUnroll;
|
|
|
|
++NumUnrolled;
|
2014-01-23 19:23:19 +08:00
|
|
|
|
|
|
|
Loop *OuterL = L->getParentLoop();
|
2015-12-17 02:40:20 +08:00
|
|
|
// Update LoopInfo if the loop is completely removed.
|
|
|
|
if (CompletelyUnroll)
|
2017-09-22 09:47:41 +08:00
|
|
|
LI->erase(L);
|
2008-05-14 08:24:14 +08:00
|
|
|
|
2016-02-05 10:17:36 +08:00
|
|
|
// After complete unrolling most of the blocks should be contained in OuterL.
|
|
|
|
// However, some of them might happen to be out of OuterL (e.g. if they
|
|
|
|
// precede a loop exit). In this case we might need to insert PHI nodes in
|
|
|
|
// order to preserve LCSSA form.
|
|
|
|
// We don't need to check this if we already know that we need to fix LCSSA
|
|
|
|
// form.
|
|
|
|
// TODO: For now we just recompute LCSSA for the outer loop in this case, but
|
|
|
|
// it should be possible to fix it in-place.
|
|
|
|
if (PreserveLCSSA && OuterL && CompletelyUnroll && !NeedToFixLCSSA)
|
|
|
|
NeedToFixLCSSA |= ::needToInsertPhisForLCSSA(OuterL, UnrolledLoopBlocks, LI);
|
|
|
|
|
2014-01-23 19:23:19 +08:00
|
|
|
// If we have a pass and a DominatorTree we should re-simplify impacted loops
|
|
|
|
// to ensure subsequent analyses can rely on this form. We want to simplify
|
|
|
|
// at least one layer outside of the loop that was unrolled so that any
|
|
|
|
// changes to the parent loop exposed by the unrolling are considered.
|
2015-12-16 03:40:57 +08:00
|
|
|
if (DT) {
|
2014-01-28 09:25:38 +08:00
|
|
|
if (OuterL) {
|
2016-08-09 03:02:15 +08:00
|
|
|
// OuterL includes all loops for which we can break loop-simplify, so
|
|
|
|
// it's sufficient to simplify only it (it'll recursively simplify inner
|
|
|
|
// loops too).
|
2017-01-24 07:45:42 +08:00
|
|
|
if (NeedToFixLCSSA) {
|
|
|
|
// LCSSA must be performed on the outermost affected loop. The unrolled
|
|
|
|
// loop's last loop latch is guaranteed to be in the outermost loop
|
2017-09-22 09:47:41 +08:00
|
|
|
// after LoopInfo's been updated by LoopInfo::erase.
|
2017-01-24 07:45:42 +08:00
|
|
|
Loop *LatchLoop = LI->getLoopFor(Latches.back());
|
|
|
|
Loop *FixLCSSALoop = OuterL;
|
|
|
|
if (!FixLCSSALoop->contains(LatchLoop))
|
|
|
|
while (FixLCSSALoop->getParentLoop() != LatchLoop)
|
|
|
|
FixLCSSALoop = FixLCSSALoop->getParentLoop();
|
|
|
|
|
|
|
|
formLCSSARecursively(*FixLCSSALoop, *DT, LI, SE);
|
|
|
|
} else if (PreserveLCSSA) {
|
2015-12-10 02:20:28 +08:00
|
|
|
assert(OuterL->isLCSSAForm(*DT) &&
|
|
|
|
"Loops should be in LCSSA form after loop-unroll.");
|
2017-01-24 07:45:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: That potentially might be compile-time expensive. We should try
|
|
|
|
// to fix the loop-simplified form incrementally.
|
|
|
|
simplifyLoop(OuterL, DT, LI, SE, AC, PreserveLCSSA);
|
2016-08-09 03:02:15 +08:00
|
|
|
} else {
|
|
|
|
// Simplify loops for which we might've broken loop-simplify form.
|
|
|
|
for (Loop *SubLoop : LoopsToSimplify)
|
2016-12-19 16:22:17 +08:00
|
|
|
simplifyLoop(SubLoop, DT, LI, SE, AC, PreserveLCSSA);
|
2014-01-28 09:25:38 +08:00
|
|
|
}
|
2014-01-23 19:23:19 +08:00
|
|
|
}
|
|
|
|
|
2017-09-28 05:45:19 +08:00
|
|
|
return CompletelyUnroll ? LoopUnrollResult::FullyUnrolled
|
|
|
|
: LoopUnrollResult::PartiallyUnrolled;
|
2008-05-14 08:24:14 +08:00
|
|
|
}
|
2015-02-01 10:27:45 +08:00
|
|
|
|
|
|
|
/// Given an llvm.loop loop id metadata node, returns the loop hint metadata
|
|
|
|
/// node with the given name (for example, "llvm.loop.unroll.count"). If no
|
|
|
|
/// such metadata node exists, then nullptr is returned.
|
2015-02-03 04:41:11 +08:00
|
|
|
MDNode *llvm::GetUnrollMetadata(MDNode *LoopID, StringRef Name) {
|
2015-02-01 10:27:45 +08:00
|
|
|
// First operand should refer to the loop id itself.
|
|
|
|
assert(LoopID->getNumOperands() > 0 && "requires at least one operand");
|
2015-02-03 04:41:11 +08:00
|
|
|
assert(LoopID->getOperand(0) == LoopID && "invalid loop id");
|
2015-02-01 10:27:45 +08:00
|
|
|
|
|
|
|
for (unsigned i = 1, e = LoopID->getNumOperands(); i < e; ++i) {
|
2015-02-03 04:41:11 +08:00
|
|
|
MDNode *MD = dyn_cast<MDNode>(LoopID->getOperand(i));
|
2015-02-01 10:27:45 +08:00
|
|
|
if (!MD)
|
|
|
|
continue;
|
|
|
|
|
2015-02-03 04:41:11 +08:00
|
|
|
MDString *S = dyn_cast<MDString>(MD->getOperand(0));
|
2015-02-01 10:27:45 +08:00
|
|
|
if (!S)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (Name.equals(S->getString()))
|
|
|
|
return MD;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|