LoopExtractor.cpp revision 03e896bd6073efc4523d8bcd0239d6ed62126db7
1//===- LoopExtractor.cpp - Extract each loop into a new function ----------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
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
12// given function, it is not touched. This is a pass most useful for debugging
13// via bugpoint.
14//
15//===----------------------------------------------------------------------===//
16
17#define DEBUG_TYPE "loop-extract"
18#include "llvm/Transforms/IPO.h"
19#include "llvm/Instructions.h"
20#include "llvm/Module.h"
21#include "llvm/Pass.h"
22#include "llvm/Analysis/Dominators.h"
23#include "llvm/Analysis/LoopPass.h"
24#include "llvm/Support/CommandLine.h"
25#include "llvm/Transforms/Scalar.h"
26#include "llvm/Transforms/Utils/FunctionUtils.h"
27#include "llvm/ADT/Statistic.h"
28#include <fstream>
29#include <set>
30using namespace llvm;
31
32STATISTIC(NumExtracted, "Number of loops extracted");
33
34namespace {
35  struct LoopExtractor : public LoopPass {
36    static char ID; // Pass identification, replacement for typeid
37    unsigned NumLoops;
38
39    explicit LoopExtractor(unsigned numLoops = ~0)
40      : LoopPass(&ID), NumLoops(numLoops) {}
41
42    virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
43
44    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
45      AU.addRequiredID(BreakCriticalEdgesID);
46      AU.addRequiredID(LoopSimplifyID);
47      AU.addRequired<DominatorTree>();
48    }
49  };
50}
51
52char LoopExtractor::ID = 0;
53static RegisterPass<LoopExtractor>
54X("loop-extract", "Extract loops into new functions");
55
56namespace {
57  /// SingleLoopExtractor - For bugpoint.
58  struct SingleLoopExtractor : public LoopExtractor {
59    static char ID; // Pass identification, replacement for typeid
60    SingleLoopExtractor() : LoopExtractor(1) {}
61  };
62} // End anonymous namespace
63
64char SingleLoopExtractor::ID = 0;
65static RegisterPass<SingleLoopExtractor>
66Y("loop-extract-single", "Extract at most one loop into a new function");
67
68// createLoopExtractorPass - This pass extracts all natural loops from the
69// program into a function if it can.
70//
71Pass *llvm::createLoopExtractorPass() { return new LoopExtractor(); }
72
73bool LoopExtractor::runOnLoop(Loop *L, LPPassManager &LPM) {
74  // Only visit top-level loops.
75  if (L->getParentLoop())
76    return false;
77
78  // If LoopSimplify form is not available, stay out of trouble.
79  if (!L->isLoopSimplifyForm())
80    return false;
81
82  DominatorTree &DT = getAnalysis<DominatorTree>();
83  bool Changed = false;
84
85  // If there is more than one top-level loop in this function, extract all of
86  // the loops. Otherwise there is exactly one top-level loop; in this case if
87  // this function is more than a minimal wrapper around the loop, extract
88  // the loop.
89  bool ShouldExtractLoop = false;
90
91  // Extract the loop if the entry block doesn't branch to the loop header.
92  TerminatorInst *EntryTI =
93    L->getHeader()->getParent()->getEntryBlock().getTerminator();
94  if (!isa<BranchInst>(EntryTI) ||
95      !cast<BranchInst>(EntryTI)->isUnconditional() ||
96      EntryTI->getSuccessor(0) != L->getHeader())
97    ShouldExtractLoop = true;
98  else {
99    // Check to see if any exits from the loop are more than just return
100    // blocks.
101    SmallVector<BasicBlock*, 8> ExitBlocks;
102    L->getExitBlocks(ExitBlocks);
103    for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
104      if (!isa<ReturnInst>(ExitBlocks[i]->getTerminator())) {
105        ShouldExtractLoop = true;
106        break;
107      }
108  }
109  if (ShouldExtractLoop) {
110    if (NumLoops == 0) return Changed;
111    --NumLoops;
112    if (ExtractLoop(DT, L) != 0) {
113      Changed = true;
114      // After extraction, the loop is replaced by a function call, so
115      // we shouldn't try to run any more loop passes on it.
116      LPM.deleteLoopFromQueue(L);
117    }
118    ++NumExtracted;
119  }
120
121  return Changed;
122}
123
124// createSingleLoopExtractorPass - This pass extracts one natural loop from the
125// program into a function if it can.  This is used by bugpoint.
126//
127Pass *llvm::createSingleLoopExtractorPass() {
128  return new SingleLoopExtractor();
129}
130
131
132// BlockFile - A file which contains a list of blocks that should not be
133// extracted.
134static cl::opt<std::string>
135BlockFile("extract-blocks-file", cl::value_desc("filename"),
136          cl::desc("A file containing list of basic blocks to not extract"),
137          cl::Hidden);
138
139namespace {
140  /// BlockExtractorPass - This pass is used by bugpoint to extract all blocks
141  /// from the module into their own functions except for those specified by the
142  /// BlocksToNotExtract list.
143  class BlockExtractorPass : public ModulePass {
144    void LoadFile(const char *Filename);
145
146    std::vector<BasicBlock*> BlocksToNotExtract;
147    std::vector<std::pair<std::string, std::string> > BlocksToNotExtractByName;
148  public:
149    static char ID; // Pass identification, replacement for typeid
150    explicit BlockExtractorPass(const std::vector<BasicBlock*> &B)
151      : ModulePass(&ID), BlocksToNotExtract(B) {
152      if (!BlockFile.empty())
153        LoadFile(BlockFile.c_str());
154    }
155    BlockExtractorPass() : ModulePass(&ID) {}
156
157    bool runOnModule(Module &M);
158  };
159}
160
161char BlockExtractorPass::ID = 0;
162static RegisterPass<BlockExtractorPass>
163XX("extract-blocks", "Extract Basic Blocks From Module (for bugpoint use)");
164
165// createBlockExtractorPass - This pass extracts all blocks (except those
166// specified in the argument list) from the functions in the module.
167//
168ModulePass *llvm::createBlockExtractorPass(const std::vector<BasicBlock*> &BTNE)
169{
170  return new BlockExtractorPass(BTNE);
171}
172
173void BlockExtractorPass::LoadFile(const char *Filename) {
174  // Load the BlockFile...
175  std::ifstream In(Filename);
176  if (!In.good()) {
177    errs() << "WARNING: BlockExtractor couldn't load file '" << Filename
178           << "'!\n";
179    return;
180  }
181  while (In) {
182    std::string FunctionName, BlockName;
183    In >> FunctionName;
184    In >> BlockName;
185    if (!BlockName.empty())
186      BlocksToNotExtractByName.push_back(
187          std::make_pair(FunctionName, BlockName));
188  }
189}
190
191bool BlockExtractorPass::runOnModule(Module &M) {
192  std::set<BasicBlock*> TranslatedBlocksToNotExtract;
193  for (unsigned i = 0, e = BlocksToNotExtract.size(); i != e; ++i) {
194    BasicBlock *BB = BlocksToNotExtract[i];
195    Function *F = BB->getParent();
196
197    // Map the corresponding function in this module.
198    Function *MF = M.getFunction(F->getName());
199    assert(MF->getFunctionType() == F->getFunctionType() && "Wrong function?");
200
201    // Figure out which index the basic block is in its function.
202    Function::iterator BBI = MF->begin();
203    std::advance(BBI, std::distance(F->begin(), Function::iterator(BB)));
204    TranslatedBlocksToNotExtract.insert(BBI);
205  }
206
207  while (!BlocksToNotExtractByName.empty()) {
208    // There's no way to find BBs by name without looking at every BB inside
209    // every Function. Fortunately, this is always empty except when used by
210    // bugpoint in which case correctness is more important than performance.
211
212    std::string &FuncName  = BlocksToNotExtractByName.back().first;
213    std::string &BlockName = BlocksToNotExtractByName.back().second;
214
215    for (Module::iterator FI = M.begin(), FE = M.end(); FI != FE; ++FI) {
216      Function &F = *FI;
217      if (F.getName() != FuncName) continue;
218
219      for (Function::iterator BI = F.begin(), BE = F.end(); BI != BE; ++BI) {
220        BasicBlock &BB = *BI;
221        if (BB.getName() != BlockName) continue;
222
223        TranslatedBlocksToNotExtract.insert(BI);
224      }
225    }
226
227    BlocksToNotExtractByName.pop_back();
228  }
229
230  // Now that we know which blocks to not extract, figure out which ones we WANT
231  // to extract.
232  std::vector<BasicBlock*> BlocksToExtract;
233  for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F)
234    for (Function::iterator BB = F->begin(), E = F->end(); BB != E; ++BB)
235      if (!TranslatedBlocksToNotExtract.count(BB))
236        BlocksToExtract.push_back(BB);
237
238  for (unsigned i = 0, e = BlocksToExtract.size(); i != e; ++i)
239    ExtractBasicBlock(BlocksToExtract[i]);
240
241  return !BlocksToExtract.empty();
242}
243