2004-04-18 05:20:17 +00:00
|
|
|
//===-- LoopUnroll.cpp - Loop unroller pass -------------------------------===//
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2004-04-18 05:20:17 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-21 23:48:37 +00:00
|
|
|
//
|
2004-04-18 05:20:17 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This pass implements a simple loop unroller. It works best when loops have
|
|
|
|
// been canonicalized by the -indvars pass, allowing it to determine the trip
|
|
|
|
// counts of loops easily.
|
|
|
|
//
|
2006-08-24 21:28:19 +00:00
|
|
|
// This pass will multi-block loops only if they contain no non-unrolled
|
|
|
|
// subloops. The process of unrolling can produce extraneous basic blocks
|
|
|
|
// linked with unconditional branches. This will be corrected in the future.
|
2004-04-18 05:20:17 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "loop-unroll"
|
|
|
|
#include "llvm/Transforms/Scalar.h"
|
|
|
|
#include "llvm/Constants.h"
|
|
|
|
#include "llvm/Function.h"
|
|
|
|
#include "llvm/Instructions.h"
|
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
|
|
|
#include "llvm/Transforms/Utils/Cloning.h"
|
|
|
|
#include "llvm/Transforms/Utils/Local.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/Support/Debug.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
|
|
|
#include "llvm/ADT/STLExtras.h"
|
2004-11-22 17:18:36 +00:00
|
|
|
#include "llvm/IntrinsicInst.h"
|
2004-04-18 05:20:17 +00:00
|
|
|
#include <cstdio>
|
2004-04-19 03:01:23 +00:00
|
|
|
#include <set>
|
2004-10-18 14:38:48 +00:00
|
|
|
#include <algorithm>
|
2006-01-22 23:32:06 +00:00
|
|
|
#include <iostream>
|
2004-04-18 05:20:17 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
Statistic<> NumUnrolled("loop-unroll", "Number of loops completely unrolled");
|
|
|
|
|
|
|
|
cl::opt<unsigned>
|
2004-04-18 18:06:14 +00:00
|
|
|
UnrollThreshold("unroll-threshold", cl::init(100), cl::Hidden,
|
2004-04-18 05:20:17 +00:00
|
|
|
cl::desc("The cut-off point for loop unrolling"));
|
|
|
|
|
|
|
|
class LoopUnroll : public FunctionPass {
|
|
|
|
LoopInfo *LI; // The current loop information
|
|
|
|
public:
|
|
|
|
virtual bool runOnFunction(Function &F);
|
|
|
|
bool visitLoop(Loop *L);
|
|
|
|
|
|
|
|
/// This transformation requires natural loop information & requires that
|
|
|
|
/// loop preheaders be inserted into the CFG...
|
|
|
|
///
|
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.addRequiredID(LoopSimplifyID);
|
2006-08-24 21:28:19 +00:00
|
|
|
AU.addRequiredID(LCSSAID);
|
2004-04-18 05:20:17 +00:00
|
|
|
AU.addRequired<LoopInfo>();
|
2006-08-24 21:28:19 +00:00
|
|
|
AU.addPreservedID(LCSSAID);
|
2004-04-18 05:38:37 +00:00
|
|
|
AU.addPreserved<LoopInfo>();
|
2004-04-18 05:20:17 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
RegisterOpt<LoopUnroll> X("loop-unroll", "Unroll loops");
|
|
|
|
}
|
|
|
|
|
|
|
|
FunctionPass *llvm::createLoopUnrollPass() { return new LoopUnroll(); }
|
|
|
|
|
|
|
|
bool LoopUnroll::runOnFunction(Function &F) {
|
|
|
|
bool Changed = false;
|
|
|
|
LI = &getAnalysis<LoopInfo>();
|
|
|
|
|
2004-04-18 05:38:37 +00:00
|
|
|
// Transform all the top-level loops. Copy the loop list so that the child
|
|
|
|
// can update the loop tree if it needs to delete the loop.
|
|
|
|
std::vector<Loop*> SubLoops(LI->begin(), LI->end());
|
|
|
|
for (unsigned i = 0, e = SubLoops.size(); i != e; ++i)
|
|
|
|
Changed |= visitLoop(SubLoops[i]);
|
2004-04-18 05:20:17 +00:00
|
|
|
|
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// ApproximateLoopSize - Approximate the size of the loop after it has been
|
|
|
|
/// unrolled.
|
|
|
|
static unsigned ApproximateLoopSize(const Loop *L) {
|
|
|
|
unsigned Size = 0;
|
|
|
|
for (unsigned i = 0, e = L->getBlocks().size(); i != e; ++i) {
|
|
|
|
BasicBlock *BB = L->getBlocks()[i];
|
|
|
|
Instruction *Term = BB->getTerminator();
|
|
|
|
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
|
|
|
|
if (isa<PHINode>(I) && BB == L->getHeader()) {
|
|
|
|
// Ignore PHI nodes in the header.
|
|
|
|
} else if (I->hasOneUse() && I->use_back() == Term) {
|
|
|
|
// Ignore instructions only used by the loop terminator.
|
2004-11-22 17:18:36 +00:00
|
|
|
} else if (DbgInfoIntrinsic *DbgI = dyn_cast<DbgInfoIntrinsic>(I)) {
|
2005-04-23 21:38:35 +00:00
|
|
|
// Ignore debug instructions
|
2004-04-18 05:20:17 +00:00
|
|
|
} else {
|
|
|
|
++Size;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Ignore expressions derived from PHI and constants if inval of phi
|
|
|
|
// is a constant, or if operation is associative. This will get induction
|
|
|
|
// variables.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Size;
|
|
|
|
}
|
|
|
|
|
2005-04-21 23:48:37 +00:00
|
|
|
// RemapInstruction - Convert the instruction operands from referencing the
|
2004-04-18 05:20:17 +00:00
|
|
|
// current values into those specified by ValueMap.
|
|
|
|
//
|
2005-04-21 23:48:37 +00:00
|
|
|
static inline void RemapInstruction(Instruction *I,
|
2004-04-18 05:20:17 +00:00
|
|
|
std::map<const Value *, Value*> &ValueMap) {
|
|
|
|
for (unsigned op = 0, E = I->getNumOperands(); op != E; ++op) {
|
|
|
|
Value *Op = I->getOperand(op);
|
|
|
|
std::map<const Value *, Value*>::iterator It = ValueMap.find(Op);
|
|
|
|
if (It != ValueMap.end()) Op = It->second;
|
|
|
|
I->setOperand(op, Op);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool LoopUnroll::visitLoop(Loop *L) {
|
|
|
|
bool Changed = false;
|
|
|
|
|
|
|
|
// Recurse through all subloops before we process this loop. Copy the loop
|
|
|
|
// list so that the child can update the loop tree if it needs to delete the
|
|
|
|
// loop.
|
|
|
|
std::vector<Loop*> SubLoops(L->begin(), L->end());
|
|
|
|
for (unsigned i = 0, e = SubLoops.size(); i != e; ++i)
|
|
|
|
Changed |= visitLoop(SubLoops[i]);
|
|
|
|
|
2006-08-24 21:28:19 +00:00
|
|
|
BasicBlock* Header = L->getHeader();
|
|
|
|
BasicBlock* LatchBlock = L->getLoopLatch();
|
2004-04-18 05:20:17 +00:00
|
|
|
|
2006-08-24 21:28:19 +00:00
|
|
|
BranchInst *BI = dyn_cast<BranchInst>(LatchBlock->getTerminator());
|
2004-04-18 05:20:17 +00:00
|
|
|
if (BI == 0) return Changed; // Must end in a conditional branch
|
|
|
|
|
|
|
|
ConstantInt *TripCountC = dyn_cast_or_null<ConstantInt>(L->getTripCount());
|
|
|
|
if (!TripCountC) return Changed; // Must have constant trip count!
|
|
|
|
|
2005-01-08 19:37:20 +00:00
|
|
|
uint64_t TripCountFull = TripCountC->getRawValue();
|
|
|
|
if (TripCountFull != TripCountC->getRawValue() || TripCountFull == 0)
|
2004-04-18 05:20:17 +00:00
|
|
|
return Changed; // More than 2^32 iterations???
|
|
|
|
|
|
|
|
unsigned LoopSize = ApproximateLoopSize(L);
|
2006-08-24 21:28:19 +00:00
|
|
|
DEBUG(std::cerr << "Loop Unroll: F[" << Header->getParent()->getName()
|
|
|
|
<< "] Loop %" << Header->getName() << " Loop Size = "
|
|
|
|
<< LoopSize << " Trip Count = " << TripCountFull << " - ");
|
2005-01-08 19:37:20 +00:00
|
|
|
uint64_t Size = (uint64_t)LoopSize*TripCountFull;
|
2004-05-13 20:43:31 +00:00
|
|
|
if (Size > UnrollThreshold) {
|
|
|
|
DEBUG(std::cerr << "TOO LARGE: " << Size << ">" << UnrollThreshold << "\n");
|
2004-04-18 05:20:17 +00:00
|
|
|
return Changed;
|
|
|
|
}
|
|
|
|
DEBUG(std::cerr << "UNROLLING!\n");
|
2005-04-21 23:48:37 +00:00
|
|
|
|
2006-08-24 21:28:19 +00:00
|
|
|
std::vector<BasicBlock*> LoopBlocks = L->getBlocks();
|
2005-01-08 19:37:20 +00:00
|
|
|
|
2006-08-24 21:28:19 +00:00
|
|
|
unsigned TripCount = (unsigned)TripCountFull;
|
2004-04-18 05:20:17 +00:00
|
|
|
|
2006-08-24 21:28:19 +00:00
|
|
|
BasicBlock *LoopExit = BI->getSuccessor(L->contains(BI->getSuccessor(0)));
|
2004-04-18 05:20:17 +00:00
|
|
|
|
|
|
|
// For the first iteration of the loop, we should use the precloned values for
|
|
|
|
// PHI nodes. Insert associations now.
|
|
|
|
std::map<const Value*, Value*> LastValueMap;
|
|
|
|
std::vector<PHINode*> OrigPHINode;
|
2006-08-24 21:28:19 +00:00
|
|
|
for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
|
2004-09-15 17:06:42 +00:00
|
|
|
PHINode *PN = cast<PHINode>(I);
|
2004-04-18 05:20:17 +00:00
|
|
|
OrigPHINode.push_back(PN);
|
2006-08-24 21:28:19 +00:00
|
|
|
if (Instruction *I =
|
|
|
|
dyn_cast<Instruction>(PN->getIncomingValueForBlock(LatchBlock)))
|
|
|
|
if (L->contains(I->getParent()))
|
2004-04-18 05:20:17 +00:00
|
|
|
LastValueMap[I] = I;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove the exit branch from the loop
|
2006-08-24 21:28:19 +00:00
|
|
|
LatchBlock->getInstList().erase(BI);
|
|
|
|
|
|
|
|
std::vector<BasicBlock*> Headers;
|
|
|
|
std::vector<BasicBlock*> Latches;
|
|
|
|
Headers.push_back(Header);
|
|
|
|
Latches.push_back(LatchBlock);
|
2004-04-18 05:20:17 +00:00
|
|
|
|
|
|
|
assert(TripCount != 0 && "Trip count of 0 is impossible!");
|
|
|
|
for (unsigned It = 1; It != TripCount; ++It) {
|
|
|
|
char SuffixBuffer[100];
|
|
|
|
sprintf(SuffixBuffer, ".%d", It);
|
2006-08-24 21:28:19 +00:00
|
|
|
|
|
|
|
std::vector<BasicBlock*> NewBlocks;
|
|
|
|
|
|
|
|
for (std::vector<BasicBlock*>::iterator BB = LoopBlocks.begin(),
|
|
|
|
E = LoopBlocks.end(); BB != E; ++BB) {
|
|
|
|
std::map<const Value*, Value*> ValueMap;
|
|
|
|
BasicBlock *New = CloneBasicBlock(*BB, ValueMap, SuffixBuffer);
|
|
|
|
Header->getParent()->getBasicBlockList().push_back(New);
|
|
|
|
|
|
|
|
// Loop over all of the PHI nodes in the block, changing them to use the
|
|
|
|
// incoming values from the previous block.
|
|
|
|
if (*BB == Header)
|
|
|
|
for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
|
|
|
|
PHINode *NewPHI = cast<PHINode>(ValueMap[OrigPHINode[i]]);
|
|
|
|
Value *InVal = NewPHI->getIncomingValueForBlock(LatchBlock);
|
|
|
|
if (Instruction *InValI = dyn_cast<Instruction>(InVal))
|
|
|
|
if (It > 1 && L->contains(InValI->getParent()))
|
|
|
|
InVal = LastValueMap[InValI];
|
|
|
|
ValueMap[OrigPHINode[i]] = InVal;
|
|
|
|
New->getInstList().erase(NewPHI);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update our running map of newest clones
|
|
|
|
LastValueMap[*BB] = New;
|
|
|
|
for (std::map<const Value*, Value*>::iterator VI = ValueMap.begin(),
|
|
|
|
VE = ValueMap.end(); VI != VE; ++VI)
|
|
|
|
LastValueMap[VI->first] = VI->second;
|
|
|
|
|
|
|
|
L->addBasicBlockToLoop(New, *LI);
|
|
|
|
|
|
|
|
// Add phi entries for newly created values to all exit blocks except
|
|
|
|
// the successor of the latch block. The successor of the exit block will
|
|
|
|
// be updated specially after unrolling all the way.
|
|
|
|
if (*BB != LatchBlock)
|
|
|
|
for (Value::use_iterator UI = (*BB)->use_begin(), UE = (*BB)->use_end();
|
|
|
|
UI != UE; ++UI) {
|
|
|
|
Instruction* UseInst = cast<Instruction>(*UI);
|
|
|
|
if (isa<PHINode>(UseInst) && !L->contains(UseInst->getParent())) {
|
|
|
|
PHINode* phi = cast<PHINode>(UseInst);
|
|
|
|
Value* Incoming = phi->getIncomingValueForBlock(*BB);
|
|
|
|
if (isa<Instruction>(Incoming))
|
|
|
|
Incoming = LastValueMap[Incoming];
|
|
|
|
|
|
|
|
phi->addIncoming(Incoming, New);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
if (*BB == LatchBlock)
|
|
|
|
Latches.push_back(New);
|
|
|
|
|
|
|
|
NewBlocks.push_back(New);
|
2004-04-18 05:20:17 +00:00
|
|
|
}
|
2006-08-24 21:28:19 +00:00
|
|
|
|
|
|
|
// Remap all instructions in the most recent iteration
|
|
|
|
for (unsigned i = 0; i < NewBlocks.size(); ++i)
|
|
|
|
for (BasicBlock::iterator I = NewBlocks[i]->begin(),
|
|
|
|
E = NewBlocks[i]->end(); I != E; ++I)
|
|
|
|
RemapInstruction(I, LastValueMap);
|
2004-04-18 05:20:17 +00:00
|
|
|
}
|
|
|
|
|
2006-08-24 21:28:19 +00:00
|
|
|
// Insert the branches that link the different iterations together
|
|
|
|
for (unsigned i = 0; i < Latches.size()-1; ++i)
|
|
|
|
new BranchInst(Headers[i+1], Latches[i]);
|
|
|
|
|
|
|
|
// Finally, add an unconditional branch to the block to continue into the exit
|
|
|
|
// block.
|
|
|
|
new BranchInst(LoopExit, Latches[Latches.size()-1]);
|
|
|
|
|
|
|
|
// Update PHI nodes that reference the final latch block
|
|
|
|
if (TripCount > 1) {
|
|
|
|
std::set<PHINode*> Users;
|
|
|
|
for (Value::use_iterator UI = LatchBlock->use_begin(),
|
|
|
|
UE = LatchBlock->use_end(); UI != UE; ++UI)
|
|
|
|
if (PHINode* phi = dyn_cast<PHINode>(*UI))
|
|
|
|
Users.insert(phi);
|
|
|
|
|
|
|
|
for (std::set<PHINode*>::iterator SI = Users.begin(), SE = Users.end();
|
|
|
|
SI != SE; ++SI) {
|
|
|
|
Value* InVal = (*SI)->getIncomingValueForBlock(LatchBlock);
|
|
|
|
if (isa<Instruction>(InVal))
|
|
|
|
InVal = LastValueMap[InVal];
|
|
|
|
(*SI)->removeIncomingValue(LatchBlock, false);
|
2006-08-25 22:13:55 +00:00
|
|
|
if (InVal)
|
|
|
|
(*SI)->addIncoming(InVal, cast<BasicBlock>(LastValueMap[LatchBlock]));
|
2004-04-18 05:20:17 +00:00
|
|
|
}
|
2004-04-18 17:32:39 +00:00
|
|
|
}
|
2004-04-18 05:20:17 +00:00
|
|
|
|
|
|
|
// Now loop over the PHI nodes in the original block, setting them to their
|
|
|
|
// incoming values.
|
|
|
|
BasicBlock *Preheader = L->getLoopPreheader();
|
|
|
|
for (unsigned i = 0, e = OrigPHINode.size(); i != e; ++i) {
|
|
|
|
PHINode *PN = OrigPHINode[i];
|
|
|
|
PN->replaceAllUsesWith(PN->getIncomingValueForBlock(Preheader));
|
2006-08-24 21:28:19 +00:00
|
|
|
Header->getInstList().erase(PN);
|
|
|
|
}
|
2004-04-18 05:20:17 +00:00
|
|
|
|
|
|
|
// 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.
|
2006-08-24 21:28:19 +00:00
|
|
|
const std::vector<BasicBlock*> &NewLoopBlocks = L->getBlocks();
|
|
|
|
for (std::vector<BasicBlock*>::const_iterator BB = NewLoopBlocks.begin(),
|
|
|
|
E = NewLoopBlocks.end(); BB != E; ++BB)
|
|
|
|
for (BasicBlock::iterator I = (*BB)->begin(), E = (*BB)->end(); I != E; ) {
|
|
|
|
Instruction *Inst = I++;
|
|
|
|
|
|
|
|
if (isInstructionTriviallyDead(Inst))
|
|
|
|
(*BB)->getInstList().erase(Inst);
|
|
|
|
else if (Constant *C = ConstantFoldInstruction(Inst)) {
|
|
|
|
Inst->replaceAllUsesWith(C);
|
|
|
|
(*BB)->getInstList().erase(Inst);
|
|
|
|
}
|
2004-04-18 05:20:17 +00:00
|
|
|
}
|
|
|
|
|
2004-04-18 05:38:37 +00:00
|
|
|
// Update the loop information for this loop.
|
|
|
|
Loop *Parent = L->getParentLoop();
|
|
|
|
|
|
|
|
// Move all of the basic blocks in the loop into the parent loop.
|
2006-08-24 21:28:19 +00:00
|
|
|
for (std::vector<BasicBlock*>::const_iterator BB = NewLoopBlocks.begin(),
|
|
|
|
E = NewLoopBlocks.end(); BB != E; ++BB)
|
|
|
|
LI->changeLoopFor(*BB, Parent);
|
2004-04-18 05:38:37 +00:00
|
|
|
|
|
|
|
// Remove the loop from the parent.
|
|
|
|
if (Parent)
|
|
|
|
delete Parent->removeChildLoop(std::find(Parent->begin(), Parent->end(),L));
|
|
|
|
else
|
|
|
|
delete LI->removeLoop(std::find(LI->begin(), LI->end(), L));
|
|
|
|
|
2004-04-18 05:20:17 +00:00
|
|
|
++NumUnrolled;
|
|
|
|
return true;
|
|
|
|
}
|