blob: 4f96afe44c0f14f0301d7e460f4dfd1c032a7509 [file] [log] [blame]
Misha Brukman03a11342004-02-28 03:33:01 +00001//===- LoopExtractor.cpp - Extract each loop into a new function ----------===//
Misha Brukmanb1c93172005-04-21 23:48:37 +00002//
Chris Lattner692a47a2004-03-14 02:34:07 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerf3ebc3f2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanb1c93172005-04-21 23:48:37 +00007//
Chris Lattner692a47a2004-03-14 02:34:07 +00008//===----------------------------------------------------------------------===//
Misha Brukman03a11342004-02-28 03:33:01 +00009//
10// A pass wrapper around the ExtractLoop() scalar transformation to extract each
11// top-level loop into its own new function. If the loop is the ONLY loop in a
Misha Brukmanf272f9b2004-03-02 00:19:09 +000012// given function, it is not touched. This is a pass most useful for debugging
13// via bugpoint.
Misha Brukman03a11342004-02-28 03:33:01 +000014//
15//===----------------------------------------------------------------------===//
16
Chris Lattner1631bcb2006-12-19 22:09:18 +000017#define DEBUG_TYPE "loop-extract"
Chris Lattner78a996a2004-03-14 02:37:16 +000018#include "llvm/Transforms/IPO.h"
Misha Brukman63b38bd2004-07-29 17:30:56 +000019#include "llvm/Instructions.h"
Misha Brukman03a11342004-02-28 03:33:01 +000020#include "llvm/Module.h"
21#include "llvm/Pass.h"
Chris Lattnere9235d22004-03-18 03:48:06 +000022#include "llvm/Analysis/Dominators.h"
Dan Gohman9a7320c2009-09-28 14:37:51 +000023#include "llvm/Analysis/LoopPass.h"
Nick Lewyckyc6243022007-11-14 06:47:06 +000024#include "llvm/Support/CommandLine.h"
Chris Lattner6c3e8c72004-03-14 04:01:06 +000025#include "llvm/Transforms/Scalar.h"
Bill Wendlingc1da6ea2011-09-20 19:10:24 +000026#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Misha Brukman03a11342004-02-28 03:33:01 +000027#include "llvm/Transforms/Utils/FunctionUtils.h"
Reid Spencer7c16caa2004-09-01 22:55:40 +000028#include "llvm/ADT/Statistic.h"
Nick Lewyckyc6243022007-11-14 06:47:06 +000029#include <fstream>
30#include <set>
Misha Brukman03a11342004-02-28 03:33:01 +000031using namespace llvm;
32
Chris Lattner1631bcb2006-12-19 22:09:18 +000033STATISTIC(NumExtracted, "Number of loops extracted");
Misha Brukmanb1c93172005-04-21 23:48:37 +000034
Chris Lattner1631bcb2006-12-19 22:09:18 +000035namespace {
Nick Lewycky02d5f772009-10-25 06:33:48 +000036 struct LoopExtractor : public LoopPass {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000037 static char ID; // Pass identification, replacement for typeid
Chris Lattnera1672c12004-03-14 20:01:36 +000038 unsigned NumLoops;
39
Dan Gohman34d442f2007-08-01 15:32:29 +000040 explicit LoopExtractor(unsigned numLoops = ~0)
Owen Anderson6c18d1a2010-10-19 17:21:58 +000041 : LoopPass(ID), NumLoops(numLoops) {
42 initializeLoopExtractorPass(*PassRegistry::getPassRegistry());
43 }
Chris Lattnera1672c12004-03-14 20:01:36 +000044
Dan Gohman9a7320c2009-09-28 14:37:51 +000045 virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
Misha Brukmanb1c93172005-04-21 23:48:37 +000046
Chris Lattner692a47a2004-03-14 02:34:07 +000047 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner5bce0c82004-03-18 05:43:18 +000048 AU.addRequiredID(BreakCriticalEdgesID);
49 AU.addRequiredID(LoopSimplifyID);
Owen Andersonf095bf32007-04-07 05:31:27 +000050 AU.addRequired<DominatorTree>();
Chris Lattner692a47a2004-03-14 02:34:07 +000051 }
52 };
Dan Gohmand78c4002008-05-13 00:00:25 +000053}
Misha Brukman03a11342004-02-28 03:33:01 +000054
Dan Gohmand78c4002008-05-13 00:00:25 +000055char LoopExtractor::ID = 0;
Owen Anderson8ac477f2010-10-12 19:48:12 +000056INITIALIZE_PASS_BEGIN(LoopExtractor, "loop-extract",
Bill Wendlingc1da6ea2011-09-20 19:10:24 +000057 "Extract loops into new functions", false, false)
Owen Anderson8ac477f2010-10-12 19:48:12 +000058INITIALIZE_PASS_DEPENDENCY(BreakCriticalEdges)
59INITIALIZE_PASS_DEPENDENCY(LoopSimplify)
60INITIALIZE_PASS_DEPENDENCY(DominatorTree)
61INITIALIZE_PASS_END(LoopExtractor, "loop-extract",
Bill Wendlingc1da6ea2011-09-20 19:10:24 +000062 "Extract loops into new functions", false, false)
Chris Lattnera1672c12004-03-14 20:01:36 +000063
Dan Gohmand78c4002008-05-13 00:00:25 +000064namespace {
Chris Lattnera1672c12004-03-14 20:01:36 +000065 /// SingleLoopExtractor - For bugpoint.
66 struct SingleLoopExtractor : public LoopExtractor {
Nick Lewyckye7da2d62007-05-06 13:37:16 +000067 static char ID; // Pass identification, replacement for typeid
Chris Lattnera1672c12004-03-14 20:01:36 +000068 SingleLoopExtractor() : LoopExtractor(1) {}
69 };
Misha Brukmanb1c93172005-04-21 23:48:37 +000070} // End anonymous namespace
Misha Brukman03a11342004-02-28 03:33:01 +000071
Dan Gohmand78c4002008-05-13 00:00:25 +000072char SingleLoopExtractor::ID = 0;
Owen Andersona57b97e2010-07-21 22:09:45 +000073INITIALIZE_PASS(SingleLoopExtractor, "loop-extract-single",
Owen Andersondf7a4f22010-10-07 22:25:06 +000074 "Extract at most one loop into a new function", false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +000075
Jeff Cohen677babc2005-01-08 17:21:40 +000076// createLoopExtractorPass - This pass extracts all natural loops from the
77// program into a function if it can.
78//
Dan Gohman9a7320c2009-09-28 14:37:51 +000079Pass *llvm::createLoopExtractorPass() { return new LoopExtractor(); }
Jeff Cohen677babc2005-01-08 17:21:40 +000080
Dan Gohman9a7320c2009-09-28 14:37:51 +000081bool LoopExtractor::runOnLoop(Loop *L, LPPassManager &LPM) {
82 // Only visit top-level loops.
83 if (L->getParentLoop())
Misha Brukman03a11342004-02-28 03:33:01 +000084 return false;
85
Dan Gohmana83ac2d2009-11-05 21:11:53 +000086 // If LoopSimplify form is not available, stay out of trouble.
87 if (!L->isLoopSimplifyForm())
88 return false;
89
Owen Andersonf095bf32007-04-07 05:31:27 +000090 DominatorTree &DT = getAnalysis<DominatorTree>();
Dan Gohman9a7320c2009-09-28 14:37:51 +000091 bool Changed = false;
Chris Lattnere9235d22004-03-18 03:48:06 +000092
Chris Lattner2f155d82004-03-15 00:02:02 +000093 // If there is more than one top-level loop in this function, extract all of
Dan Gohman9a7320c2009-09-28 14:37:51 +000094 // the loops. Otherwise there is exactly one top-level loop; in this case if
95 // this function is more than a minimal wrapper around the loop, extract
96 // the loop.
97 bool ShouldExtractLoop = false;
Misha Brukmanb1c93172005-04-21 23:48:37 +000098
Dan Gohman9a7320c2009-09-28 14:37:51 +000099 // Extract the loop if the entry block doesn't branch to the loop header.
100 TerminatorInst *EntryTI =
101 L->getHeader()->getParent()->getEntryBlock().getTerminator();
102 if (!isa<BranchInst>(EntryTI) ||
103 !cast<BranchInst>(EntryTI)->isUnconditional() ||
Bill Wendling00585202011-09-20 22:23:09 +0000104 EntryTI->getSuccessor(0) != L->getHeader()) {
Dan Gohman9a7320c2009-09-28 14:37:51 +0000105 ShouldExtractLoop = true;
Bill Wendling00585202011-09-20 22:23:09 +0000106 } else {
Dan Gohman9a7320c2009-09-28 14:37:51 +0000107 // Check to see if any exits from the loop are more than just return
Bill Wendling04289fc2011-09-20 22:27:16 +0000108 // blocks.
109 SmallVector<BasicBlock*, 8> ExitBlocks;
110 L->getExitBlocks(ExitBlocks);
111 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
112 if (!isa<ReturnInst>(ExitBlocks[i]->getTerminator())) {
113 ShouldExtractLoop = true;
114 break;
115 }
116 }
117
118 if (ShouldExtractLoop) {
119 // We must omit landing pads. Landing pads must accompany the invoke
120 // instruction. But this would result in a loop in the extracted
Bill Wendling00585202011-09-20 22:23:09 +0000121 // function. An infinite cycle occurs when it tries to extract that loop as
122 // well.
Dan Gohman9a7320c2009-09-28 14:37:51 +0000123 SmallVector<BasicBlock*, 8> ExitBlocks;
124 L->getExitBlocks(ExitBlocks);
Bill Wendling04289fc2011-09-20 22:27:16 +0000125 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
Bill Wendling00585202011-09-20 22:23:09 +0000126 if (ExitBlocks[i]->isLandingPad()) {
127 ShouldExtractLoop = false;
Dan Gohman9a7320c2009-09-28 14:37:51 +0000128 break;
Chris Lattner2f155d82004-03-15 00:02:02 +0000129 }
Dan Gohman9a7320c2009-09-28 14:37:51 +0000130 }
Bill Wendling04289fc2011-09-20 22:27:16 +0000131
Dan Gohman9a7320c2009-09-28 14:37:51 +0000132 if (ShouldExtractLoop) {
133 if (NumLoops == 0) return Changed;
134 --NumLoops;
135 if (ExtractLoop(DT, L) != 0) {
136 Changed = true;
137 // After extraction, the loop is replaced by a function call, so
138 // we shouldn't try to run any more loop passes on it.
139 LPM.deleteLoopFromQueue(L);
Chris Lattner2f155d82004-03-15 00:02:02 +0000140 }
Dan Gohman9a7320c2009-09-28 14:37:51 +0000141 ++NumExtracted;
Chris Lattnera1672c12004-03-14 20:01:36 +0000142 }
Misha Brukman03a11342004-02-28 03:33:01 +0000143
144 return Changed;
145}
146
Chris Lattnera1672c12004-03-14 20:01:36 +0000147// createSingleLoopExtractorPass - This pass extracts one natural loop from the
148// program into a function if it can. This is used by bugpoint.
149//
Dan Gohman9a7320c2009-09-28 14:37:51 +0000150Pass *llvm::createSingleLoopExtractorPass() {
Chris Lattnera1672c12004-03-14 20:01:36 +0000151 return new SingleLoopExtractor();
Misha Brukman03a11342004-02-28 03:33:01 +0000152}
Chris Lattner7386e632004-08-13 03:05:17 +0000153
154
Dan Gohmand78c4002008-05-13 00:00:25 +0000155// BlockFile - A file which contains a list of blocks that should not be
156// extracted.
157static cl::opt<std::string>
158BlockFile("extract-blocks-file", cl::value_desc("filename"),
159 cl::desc("A file containing list of basic blocks to not extract"),
160 cl::Hidden);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000161
Dan Gohmand78c4002008-05-13 00:00:25 +0000162namespace {
Chris Lattner7386e632004-08-13 03:05:17 +0000163 /// BlockExtractorPass - This pass is used by bugpoint to extract all blocks
164 /// from the module into their own functions except for those specified by the
165 /// BlocksToNotExtract list.
Chris Lattner4f2cf032004-09-20 04:48:05 +0000166 class BlockExtractorPass : public ModulePass {
Nick Lewyckyc6243022007-11-14 06:47:06 +0000167 void LoadFile(const char *Filename);
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000168 void SplitLandingPadPreds(Function *F);
Nick Lewyckyc6243022007-11-14 06:47:06 +0000169
Chris Lattner7386e632004-08-13 03:05:17 +0000170 std::vector<BasicBlock*> BlocksToNotExtract;
Nick Lewyckyc6243022007-11-14 06:47:06 +0000171 std::vector<std::pair<std::string, std::string> > BlocksToNotExtractByName;
Chris Lattner7386e632004-08-13 03:05:17 +0000172 public:
Nick Lewyckye7da2d62007-05-06 13:37:16 +0000173 static char ID; // Pass identification, replacement for typeid
Owen Andersona7aed182010-08-06 18:33:48 +0000174 BlockExtractorPass() : ModulePass(ID) {
Nick Lewyckyc6243022007-11-14 06:47:06 +0000175 if (!BlockFile.empty())
176 LoadFile(BlockFile.c_str());
177 }
Chris Lattner7386e632004-08-13 03:05:17 +0000178
Chris Lattner4f2cf032004-09-20 04:48:05 +0000179 bool runOnModule(Module &M);
Chris Lattner7386e632004-08-13 03:05:17 +0000180 };
Chris Lattner7386e632004-08-13 03:05:17 +0000181}
182
Dan Gohmand78c4002008-05-13 00:00:25 +0000183char BlockExtractorPass::ID = 0;
Owen Andersona57b97e2010-07-21 22:09:45 +0000184INITIALIZE_PASS(BlockExtractorPass, "extract-blocks",
185 "Extract Basic Blocks From Module (for bugpoint use)",
Owen Andersondf7a4f22010-10-07 22:25:06 +0000186 false, false)
Dan Gohmand78c4002008-05-13 00:00:25 +0000187
Chris Lattner7386e632004-08-13 03:05:17 +0000188// createBlockExtractorPass - This pass extracts all blocks (except those
189// specified in the argument list) from the functions in the module.
190//
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000191ModulePass *llvm::createBlockExtractorPass() {
Rafael Espindola40f18832010-07-31 00:32:17 +0000192 return new BlockExtractorPass();
Chris Lattner7386e632004-08-13 03:05:17 +0000193}
194
Nick Lewyckyc6243022007-11-14 06:47:06 +0000195void BlockExtractorPass::LoadFile(const char *Filename) {
196 // Load the BlockFile...
197 std::ifstream In(Filename);
198 if (!In.good()) {
Chris Lattner4883d902009-08-23 07:19:13 +0000199 errs() << "WARNING: BlockExtractor couldn't load file '" << Filename
200 << "'!\n";
Nick Lewyckyc6243022007-11-14 06:47:06 +0000201 return;
202 }
203 while (In) {
204 std::string FunctionName, BlockName;
205 In >> FunctionName;
206 In >> BlockName;
207 if (!BlockName.empty())
208 BlocksToNotExtractByName.push_back(
209 std::make_pair(FunctionName, BlockName));
210 }
211}
212
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000213/// SplitLandingPadPreds - The landing pad needs to be extracted with the invoke
214/// instruction. The critical edge breaker will refuse to break critical edges
215/// to a landing pad. So do them here. After this method runs, all landing pads
216/// should have only one predecessor.
217void BlockExtractorPass::SplitLandingPadPreds(Function *F) {
218 for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I) {
219 InvokeInst *II = dyn_cast<InvokeInst>(I);
220 if (!II) continue;
221 BasicBlock *Parent = II->getParent();
222 BasicBlock *LPad = II->getUnwindDest();
223
224 // Look through the landing pad's predecessors. If one of them ends in an
225 // 'invoke', then we want to split the landing pad.
226 bool Split = false;
227 for (pred_iterator
228 PI = pred_begin(LPad), PE = pred_end(LPad); PI != PE; ++PI) {
229 BasicBlock *BB = *PI;
230 if (BB->isLandingPad() && BB != Parent &&
231 isa<InvokeInst>(Parent->getTerminator())) {
232 Split = true;
233 break;
234 }
235 }
236
237 if (!Split) continue;
238
239 SmallVector<BasicBlock*, 2> NewBBs;
240 SplitLandingPadPredecessors(LPad, Parent, ".1", ".2", 0, NewBBs);
241 }
242}
243
Chris Lattner4f2cf032004-09-20 04:48:05 +0000244bool BlockExtractorPass::runOnModule(Module &M) {
Chris Lattner7386e632004-08-13 03:05:17 +0000245 std::set<BasicBlock*> TranslatedBlocksToNotExtract;
246 for (unsigned i = 0, e = BlocksToNotExtract.size(); i != e; ++i) {
247 BasicBlock *BB = BlocksToNotExtract[i];
248 Function *F = BB->getParent();
249
250 // Map the corresponding function in this module.
Reid Spencer3aaaa0b2007-02-05 20:47:22 +0000251 Function *MF = M.getFunction(F->getName());
252 assert(MF->getFunctionType() == F->getFunctionType() && "Wrong function?");
Chris Lattner7386e632004-08-13 03:05:17 +0000253
254 // Figure out which index the basic block is in its function.
255 Function::iterator BBI = MF->begin();
256 std::advance(BBI, std::distance(F->begin(), Function::iterator(BB)));
257 TranslatedBlocksToNotExtract.insert(BBI);
258 }
259
Nick Lewyckyc6243022007-11-14 06:47:06 +0000260 while (!BlocksToNotExtractByName.empty()) {
261 // There's no way to find BBs by name without looking at every BB inside
262 // every Function. Fortunately, this is always empty except when used by
263 // bugpoint in which case correctness is more important than performance.
264
265 std::string &FuncName = BlocksToNotExtractByName.back().first;
266 std::string &BlockName = BlocksToNotExtractByName.back().second;
267
268 for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
269 Function &F = *FI;
270 if (F.getName() != FuncName) continue;
271
272 for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
273 BasicBlock &BB = *BI;
274 if (BB.getName() != BlockName) continue;
275
276 TranslatedBlocksToNotExtract.insert(BI);
277 }
278 }
279
280 BlocksToNotExtractByName.pop_back();
281 }
282
Chris Lattner7386e632004-08-13 03:05:17 +0000283 // Now that we know which blocks to not extract, figure out which ones we WANT
284 // to extract.
285 std::vector<BasicBlock*> BlocksToExtract;
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000286 for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
287 SplitLandingPadPreds(&*F);
Chris Lattner7386e632004-08-13 03:05:17 +0000288 for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
289 if (!TranslatedBlocksToNotExtract.count(BB))
290 BlocksToExtract.push_back(BB);
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000291 }
Chris Lattner7386e632004-08-13 03:05:17 +0000292
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000293 for (unsigned i = 0, e = BlocksToExtract.size(); i != e; ++i) {
294 SmallVector<BasicBlock*, 2> BlocksToExtractVec;
295 BlocksToExtractVec.push_back(BlocksToExtract[i]);
Bill Wendling3d48f592011-09-20 20:20:50 +0000296 if (const InvokeInst *II =
297 dyn_cast<InvokeInst>(BlocksToExtract[i]->getTerminator()))
Bill Wendlingc1da6ea2011-09-20 19:10:24 +0000298 BlocksToExtractVec.push_back(II->getUnwindDest());
299 ExtractBasicBlock(BlocksToExtractVec);
300 }
Misha Brukmanb1c93172005-04-21 23:48:37 +0000301
Chris Lattner7386e632004-08-13 03:05:17 +0000302 return !BlocksToExtract.empty();
303}