blob: 65f9514874ff3172643df596aa629b244feab2e1 [file] [log] [blame]
Misha Brukman03a11342004-02-28 03:33:01 +00001//===- LoopExtractor.cpp - Extract each loop into a new function ----------===//
Chris Lattner692a47a2004-03-14 02:34:07 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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 Lattner78a996a2004-03-14 02:37:16 +000017#include "llvm/Transforms/IPO.h"
Chris Lattner2f155d82004-03-15 00:02:02 +000018#include "llvm/iTerminators.h"
Misha Brukman03a11342004-02-28 03:33:01 +000019#include "llvm/Module.h"
20#include "llvm/Pass.h"
Chris Lattnere9235d22004-03-18 03:48:06 +000021#include "llvm/Analysis/Dominators.h"
Misha Brukman03a11342004-02-28 03:33:01 +000022#include "llvm/Analysis/LoopInfo.h"
Chris Lattner6c3e8c72004-03-14 04:01:06 +000023#include "llvm/Transforms/Scalar.h"
Misha Brukman03a11342004-02-28 03:33:01 +000024#include "llvm/Transforms/Utils/FunctionUtils.h"
Chris Lattnere8369352004-03-18 05:46:10 +000025#include "Support/Statistic.h"
Misha Brukman03a11342004-02-28 03:33:01 +000026using namespace llvm;
27
28namespace {
Chris Lattnere8369352004-03-18 05:46:10 +000029 Statistic<> NumExtracted("loop-extract", "Number of loops extracted");
30
Chris Lattnera1672c12004-03-14 20:01:36 +000031 // FIXME: This is not a function pass, but the PassManager doesn't allow
32 // Module passes to require FunctionPasses, so we can't get loop info if we're
33 // not a function pass.
Chris Lattner692a47a2004-03-14 02:34:07 +000034 struct LoopExtractor : public FunctionPass {
Chris Lattnera1672c12004-03-14 20:01:36 +000035 unsigned NumLoops;
36
37 LoopExtractor(unsigned numLoops = ~0) : NumLoops(numLoops) {}
38
Chris Lattner692a47a2004-03-14 02:34:07 +000039 virtual bool runOnFunction(Function &F);
40
41 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Chris Lattner5bce0c82004-03-18 05:43:18 +000042 AU.addRequiredID(BreakCriticalEdgesID);
43 AU.addRequiredID(LoopSimplifyID);
Chris Lattnere9235d22004-03-18 03:48:06 +000044 AU.addRequired<DominatorSet>();
Chris Lattner692a47a2004-03-14 02:34:07 +000045 AU.addRequired<LoopInfo>();
46 }
47 };
Misha Brukman03a11342004-02-28 03:33:01 +000048
Chris Lattner692a47a2004-03-14 02:34:07 +000049 RegisterOpt<LoopExtractor>
50 X("loop-extract", "Extract loops into new functions");
Chris Lattnera1672c12004-03-14 20:01:36 +000051
52 /// SingleLoopExtractor - For bugpoint.
53 struct SingleLoopExtractor : public LoopExtractor {
54 SingleLoopExtractor() : LoopExtractor(1) {}
55 };
56
57 RegisterOpt<SingleLoopExtractor>
58 Y("loop-extract-single", "Extract at most one loop into a new function");
Chris Lattner692a47a2004-03-14 02:34:07 +000059} // End anonymous namespace
Misha Brukman03a11342004-02-28 03:33:01 +000060
Misha Brukman03a11342004-02-28 03:33:01 +000061bool LoopExtractor::runOnFunction(Function &F) {
Misha Brukman03a11342004-02-28 03:33:01 +000062 LoopInfo &LI = getAnalysis<LoopInfo>();
63
Chris Lattner2f155d82004-03-15 00:02:02 +000064 // If this function has no loops, there is nothing to do.
65 if (LI.begin() == LI.end())
Misha Brukman03a11342004-02-28 03:33:01 +000066 return false;
67
Chris Lattnere9235d22004-03-18 03:48:06 +000068 DominatorSet &DS = getAnalysis<DominatorSet>();
69
Chris Lattner2f155d82004-03-15 00:02:02 +000070 // If there is more than one top-level loop in this function, extract all of
71 // the loops.
Misha Brukman03a11342004-02-28 03:33:01 +000072 bool Changed = false;
Chris Lattner2f155d82004-03-15 00:02:02 +000073 if (LI.end()-LI.begin() > 1) {
74 for (LoopInfo::iterator i = LI.begin(), e = LI.end(); i != e; ++i) {
75 if (NumLoops == 0) return Changed;
76 --NumLoops;
Chris Lattnere9235d22004-03-18 03:48:06 +000077 Changed |= ExtractLoop(DS, *i) != 0;
Chris Lattnere8369352004-03-18 05:46:10 +000078 ++NumExtracted;
Chris Lattner2f155d82004-03-15 00:02:02 +000079 }
80 } else {
81 // Otherwise there is exactly one top-level loop. If this function is more
82 // than a minimal wrapper around the loop, extract the loop.
83 Loop *TLL = *LI.begin();
84 bool ShouldExtractLoop = false;
85
86 // Extract the loop if the entry block doesn't branch to the loop header.
87 TerminatorInst *EntryTI = F.getEntryBlock().getTerminator();
88 if (!isa<BranchInst>(EntryTI) ||
89 !cast<BranchInst>(EntryTI)->isUnconditional() ||
90 EntryTI->getSuccessor(0) != TLL->getHeader())
91 ShouldExtractLoop = true;
92 else {
93 // Check to see if any exits from the loop are more than just return
94 // blocks.
Chris Lattnerd72c3eb2004-04-18 22:14:10 +000095 std::vector<BasicBlock*> ExitBlocks;
96 TLL->getExitBlocks(ExitBlocks);
97 for (unsigned i = 0, e = ExitBlocks.size(); i != e; ++i)
98 if (!isa<ReturnInst>(ExitBlocks[i]->getTerminator())) {
Chris Lattner2f155d82004-03-15 00:02:02 +000099 ShouldExtractLoop = true;
100 break;
101 }
102 }
103
104 if (ShouldExtractLoop) {
105 if (NumLoops == 0) return Changed;
106 --NumLoops;
Chris Lattnere9235d22004-03-18 03:48:06 +0000107 Changed |= ExtractLoop(DS, TLL) != 0;
Chris Lattnere8369352004-03-18 05:46:10 +0000108 ++NumExtracted;
Chris Lattner2f155d82004-03-15 00:02:02 +0000109 } else {
110 // Okay, this function is a minimal container around the specified loop.
111 // If we extract the loop, we will continue to just keep extracting it
112 // infinitely... so don't extract it. However, if the loop contains any
113 // subloops, extract them.
114 for (Loop::iterator i = TLL->begin(), e = TLL->end(); i != e; ++i) {
115 if (NumLoops == 0) return Changed;
116 --NumLoops;
Chris Lattnere9235d22004-03-18 03:48:06 +0000117 Changed |= ExtractLoop(DS, *i) != 0;
Chris Lattnere8369352004-03-18 05:46:10 +0000118 ++NumExtracted;
Chris Lattner2f155d82004-03-15 00:02:02 +0000119 }
120 }
Chris Lattnera1672c12004-03-14 20:01:36 +0000121 }
Misha Brukman03a11342004-02-28 03:33:01 +0000122
123 return Changed;
124}
125
Chris Lattnera1672c12004-03-14 20:01:36 +0000126// createSingleLoopExtractorPass - This pass extracts one natural loop from the
127// program into a function if it can. This is used by bugpoint.
128//
129Pass *llvm::createSingleLoopExtractorPass() {
130 return new SingleLoopExtractor();
Misha Brukman03a11342004-02-28 03:33:01 +0000131}