blob: 1104c18f0e00794f0cb6305c83305c4c3b6e2cdf [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- LoopUnroll.cpp - Loop unroller pass -------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This pass implements a simple loop unroller. It works best when loops have
11// been canonicalized by the -indvars pass, allowing it to determine the trip
12// counts of loops easily.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000013//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "loop-unroll"
Dan Gohman664b5162008-05-14 00:24:14 +000016#include "llvm/IntrinsicInst.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000017#include "llvm/Transforms/Scalar.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018#include "llvm/Analysis/LoopInfo.h"
19#include "llvm/Analysis/LoopPass.h"
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020#include "llvm/Support/Compiler.h"
21#include "llvm/Support/CommandLine.h"
22#include "llvm/Support/Debug.h"
Dan Gohman664b5162008-05-14 00:24:14 +000023#include "llvm/Transforms/Utils/UnrollLoop.h"
Duncan Sandsf6b6d202008-05-16 09:30:00 +000024#include <climits>
Dan Gohmanf17a25c2007-07-18 16:29:46 +000025
Dan Gohman664b5162008-05-14 00:24:14 +000026using namespace llvm;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027
Dan Gohman089efff2008-05-13 00:00:25 +000028static cl::opt<unsigned>
29UnrollThreshold("unroll-threshold", cl::init(100), cl::Hidden,
30 cl::desc("The cut-off point for automatic loop unrolling"));
31
32static cl::opt<unsigned>
33UnrollCount("unroll-count", cl::init(0), cl::Hidden,
34 cl::desc("Use this unroll count for all loops, for testing purposes"));
35
Dan Gohmanf17a25c2007-07-18 16:29:46 +000036namespace {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000037 class VISIBILITY_HIDDEN LoopUnroll : public LoopPass {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038 public:
39 static char ID; // Pass ID, replacement for typeid
40 LoopUnroll() : LoopPass((intptr_t)&ID) {}
41
42 /// A magic value for use with the Threshold parameter to indicate
43 /// that the loop unroll should be performed regardless of how much
44 /// code expansion would result.
45 static const unsigned NoThreshold = UINT_MAX;
46
47 bool runOnLoop(Loop *L, LPPassManager &LPM);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048
49 /// This transformation requires natural loop information & requires that
50 /// loop preheaders be inserted into the CFG...
51 ///
52 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
53 AU.addRequiredID(LoopSimplifyID);
54 AU.addRequiredID(LCSSAID);
55 AU.addRequired<LoopInfo>();
56 AU.addPreservedID(LCSSAID);
57 AU.addPreserved<LoopInfo>();
58 }
59 };
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060}
61
Dan Gohman089efff2008-05-13 00:00:25 +000062char LoopUnroll::ID = 0;
63static RegisterPass<LoopUnroll> X("loop-unroll", "Unroll loops");
64
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065LoopPass *llvm::createLoopUnrollPass() { return new LoopUnroll(); }
66
67/// ApproximateLoopSize - Approximate the size of the loop.
68static unsigned ApproximateLoopSize(const Loop *L) {
69 unsigned Size = 0;
Dan Gohman4d2e8ae2008-06-22 20:18:58 +000070 for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
71 I != E; ++I) {
72 BasicBlock *BB = *I;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073 Instruction *Term = BB->getTerminator();
74 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) {
75 if (isa<PHINode>(I) && BB == L->getHeader()) {
76 // Ignore PHI nodes in the header.
77 } else if (I->hasOneUse() && I->use_back() == Term) {
78 // Ignore instructions only used by the loop terminator.
79 } else if (isa<DbgInfoIntrinsic>(I)) {
80 // Ignore debug instructions
Devang Pateleb485232008-03-17 23:41:20 +000081 } else if (isa<CallInst>(I)) {
Devang Patel86ad6a22008-03-19 23:05:52 +000082 // Estimate size overhead introduced by call instructions which
83 // is higher than other instructions. Here 3 and 10 are magic
84 // numbers that help one isolated test case from PR2067 without
85 // negatively impacting measured benchmarks.
Devang Pateleb485232008-03-17 23:41:20 +000086 if (isa<IntrinsicInst>(I))
87 Size = Size + 3;
88 else
89 Size = Size + 10;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000090 } else {
91 ++Size;
92 }
93
94 // TODO: Ignore expressions derived from PHI and constants if inval of phi
95 // is a constant, or if operation is associative. This will get induction
96 // variables.
97 }
98 }
99
100 return Size;
101}
102
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000103bool LoopUnroll::runOnLoop(Loop *L, LPPassManager &LPM) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000104 assert(L->isLCSSAForm());
Dan Gohman664b5162008-05-14 00:24:14 +0000105 LoopInfo *LI = &getAnalysis<LoopInfo>();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000106
107 BasicBlock *Header = L->getHeader();
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000108 DOUT << "Loop Unroll: F[" << Header->getParent()->getName()
109 << "] Loop %" << Header->getName() << "\n";
110
Dan Gohman664b5162008-05-14 00:24:14 +0000111 // Find trip count
112 unsigned TripCount = L->getSmallConstantTripCount();
113 unsigned Count = UnrollCount;
114
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000115 // Automatically select an unroll count.
116 if (Count == 0) {
117 // Conservative heuristic: if we know the trip count, see if we can
118 // completely unroll (subject to the threshold, checked below); otherwise
119 // don't unroll.
120 if (TripCount != 0) {
121 Count = TripCount;
122 } else {
123 return false;
124 }
125 }
126
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000127 // Enforce the threshold.
Dan Gohman664b5162008-05-14 00:24:14 +0000128 if (UnrollThreshold != NoThreshold) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000129 unsigned LoopSize = ApproximateLoopSize(L);
130 DOUT << " Loop Size = " << LoopSize << "\n";
131 uint64_t Size = (uint64_t)LoopSize*Count;
Dan Gohman664b5162008-05-14 00:24:14 +0000132 if (TripCount != 1 && Size > UnrollThreshold) {
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000133 DOUT << " TOO LARGE TO UNROLL: "
Dan Gohman664b5162008-05-14 00:24:14 +0000134 << Size << ">" << UnrollThreshold << "\n";
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000135 return false;
136 }
137 }
138
Dan Gohman664b5162008-05-14 00:24:14 +0000139 // Unroll the loop.
140 if (!UnrollLoop(L, Count, LI, &LPM))
141 return false;
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000142
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000143 return true;
144}