LoopSimplify.cpp revision 1c3ff6595f944c2c9b834895e41c78c9c922f4af
167a9801bc510ff2c28068361fb30ae397fd1e026Chris Lattner//===- LoopSimplify.cpp - Loop Canonicalization Pass ----------------------===//
2fd93908ae8b9684fe71c239e3c6cfe13ff6a2663Misha Brukman//
3b576c94c15af9a440f69d9d03c2afead7971118cJohn Criswell//                     The LLVM Compiler Infrastructure
4b576c94c15af9a440f69d9d03c2afead7971118cJohn Criswell//
54ee451de366474b9c228b4e5fa573795a715216dChris Lattner// This file is distributed under the University of Illinois Open Source
64ee451de366474b9c228b4e5fa573795a715216dChris Lattner// License. See LICENSE.TXT for details.
7fd93908ae8b9684fe71c239e3c6cfe13ff6a2663Misha Brukman//
8b576c94c15af9a440f69d9d03c2afead7971118cJohn Criswell//===----------------------------------------------------------------------===//
938acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner//
10ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// This pass performs several transformations to transform natural loops into a
11ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// simpler form, which makes subsequent analyses and transformations simpler and
12ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// more effective.
13dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner//
14dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner// Loop pre-header insertion guarantees that there is a single, non-critical
15dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner// entry edge from outside of the loop to the loop header.  This simplifies a
16dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner// number of analyses and transformations, such as LICM.
17dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner//
18dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner// Loop exit-block insertion guarantees that all exit blocks from the loop
19dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner// (blocks which are outside of the loop that have predecessors inside of the
2066ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattner// loop) only have predecessors from inside of the loop (and are thus dominated
2166ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattner// by the loop header).  This simplifies transformations such as store-sinking
2266ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattner// that are built into LICM.
23dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner//
242ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner// This pass also guarantees that loops will have exactly one backedge.
252ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner//
26f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman// Indirectbr instructions introduce several complications. If the loop
27f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman// contains or is entered by an indirectbr instruction, it may not be possible
28f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman// to transform the loop and make these guarantees. Client code should check
29f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman// that these conditions are true before relying on them.
30f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman//
31dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner// Note that the simplifycfg pass will clean up blocks which are split out but
32ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// end up being unnecessary, so usage of this pass should not pessimize
33ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// generated code.
34ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner//
35ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// This pass obviously modifies the CFG, but updates loop information and
36ee2c50cca57272b92cf9e0d1fb238d14d57ea1ddChris Lattner// dominator information.
3738acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner//
3838acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner//===----------------------------------------------------------------------===//
3938acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
404a60b932a279b3f5934a274f7fe4535026c5aed1Cameron Zwarich#define DEBUG_TYPE "loop-simplify"
4138acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner#include "llvm/Transforms/Scalar.h"
423cb63ddd5183a1469e4557b3e22735ed3ace05b2Chris Lattner#include "llvm/Constants.h"
4347b14a4a6a455c7be169cfd312fcbe796f0ad426Misha Brukman#include "llvm/Instructions.h"
44689fac02268929b756086753b4656d6dabc5cf2dDevang Patel#include "llvm/IntrinsicInst.h"
452ef703ec429900c5b49d94d82332e7a216a2d7c4Chris Lattner#include "llvm/Function.h"
460a205a459884ec745df1c529396dd921f029dafdOwen Anderson#include "llvm/LLVMContext.h"
472ef703ec429900c5b49d94d82332e7a216a2d7c4Chris Lattner#include "llvm/Type.h"
48cec5b8831d4ee3d81990bf1af41ce1d4f4cf9704Chris Lattner#include "llvm/Analysis/AliasAnalysis.h"
49301278719b67dcdd1159d9f91b4db5ef57f025c6Cameron Zwarich#include "llvm/Analysis/Dominators.h"
50cdbd99262286e96729007ac535cd430ecb3d38acDuncan Sands#include "llvm/Analysis/InstructionSimplify.h"
51d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman#include "llvm/Analysis/LoopPass.h"
52cdbd99262286e96729007ac535cd430ecb3d38acDuncan Sands#include "llvm/Analysis/ScalarEvolution.h"
5354b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner#include "llvm/Transforms/Utils/BasicBlockUtils.h"
544b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman#include "llvm/Transforms/Utils/Local.h"
5538acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner#include "llvm/Support/CFG.h"
56c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman#include "llvm/Support/Debug.h"
57551ccae044b0ff658fe629dd67edd5ffe75d10e8Reid Spencer#include "llvm/ADT/SetOperations.h"
58551ccae044b0ff658fe629dd67edd5ffe75d10e8Reid Spencer#include "llvm/ADT/SetVector.h"
59551ccae044b0ff658fe629dd67edd5ffe75d10e8Reid Spencer#include "llvm/ADT/Statistic.h"
60551ccae044b0ff658fe629dd67edd5ffe75d10e8Reid Spencer#include "llvm/ADT/DepthFirstIterator.h"
6166ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattnerusing namespace llvm;
62d0fde30ce850b78371fd1386338350591f9ff494Brian Gaeke
63d216e8ba60494caacf919cbf5fef110d48f0d162Chris LattnerSTATISTIC(NumInserted, "Number of pre-header or exit blocks inserted");
64d216e8ba60494caacf919cbf5fef110d48f0d162Chris LattnerSTATISTIC(NumNested  , "Number of nested loops split out");
6538acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
66d216e8ba60494caacf919cbf5fef110d48f0d162Chris Lattnernamespace {
676726b6d75a8b679068a58cb954ba97cf9d1690baNick Lewycky  struct LoopSimplify : public LoopPass {
68ecd94c804a563f2a86572dcf1d2e81f397e19daaNick Lewycky    static char ID; // Pass identification, replacement for typeid
69081c34b725980f995be9080eaec24cd3dfaaf065Owen Anderson    LoopSimplify() : LoopPass(ID) {
70081c34b725980f995be9080eaec24cd3dfaaf065Owen Anderson      initializeLoopSimplifyPass(*PassRegistry::getPassRegistry());
71081c34b725980f995be9080eaec24cd3dfaaf065Owen Anderson    }
72794fd75c67a2cdc128d67342c6d88a504d186896Devang Patel
73cec5b8831d4ee3d81990bf1af41ce1d4f4cf9704Chris Lattner    // AA - If we have an alias analysis object to update, this is it, otherwise
74cec5b8831d4ee3d81990bf1af41ce1d4f4cf9704Chris Lattner    // this is null.
75cec5b8831d4ee3d81990bf1af41ce1d4f4cf9704Chris Lattner    AliasAnalysis *AA;
76c27e056d4fd7f6ecdd8e40eb92230be380c5c8c9Chris Lattner    LoopInfo *LI;
770e7f728ad1ac25b0ed450fe0f8b86a38d3c2a93aDevang Patel    DominatorTree *DT;
78ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman    ScalarEvolution *SE;
79d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    Loop *L;
80d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    virtual bool runOnLoop(Loop *L, LPPassManager &LPM);
81fd93908ae8b9684fe71c239e3c6cfe13ff6a2663Misha Brukman
8238acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner    virtual void getAnalysisUsage(AnalysisUsage &AU) const {
8338acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner      // We need loop information to identify the loops...
84052f0001588a1613f845c84c04b38ced28ad6711Dan Gohman      AU.addRequired<DominatorTree>();
8538acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner      AU.addPreserved<DominatorTree>();
861e381fcd553a3955a10338fd305efc023d7d22e1Dan Gohman
87052f0001588a1613f845c84c04b38ced28ad6711Dan Gohman      AU.addRequired<LoopInfo>();
881e381fcd553a3955a10338fd305efc023d7d22e1Dan Gohman      AU.addPreserved<LoopInfo>();
891e381fcd553a3955a10338fd305efc023d7d22e1Dan Gohman
904c37c07ee3bfacaaf90ea57165ef6855b4ed8b22Devang Patel      AU.addPreserved<AliasAnalysis>();
91ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman      AU.addPreserved<ScalarEvolution>();
9294f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner      AU.addPreservedID(BreakCriticalEdgesID);  // No critical edges added.
9338acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner    }
9458e0ef1e90c3f6dbae213612b44e56f7d6d65ea7Devang Patel
95f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    /// verifyAnalysis() - Verify LoopSimplifyForm's guarantees.
96f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    void verifyAnalysis() const;
9758e0ef1e90c3f6dbae213612b44e56f7d6d65ea7Devang Patel
9838acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  private:
99d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    bool ProcessLoop(Loop *L, LPPassManager &LPM);
10059fb87d469b9b38b0f4c1e31a2f34fa8f09b981dChris Lattner    BasicBlock *RewriteLoopExitBlock(Loop *L, BasicBlock *Exit);
1010df6e09d43d6d733555a10d22572ddb0006e7d23Dan Gohman    BasicBlock *InsertPreheaderForLoop(Loop *L);
102d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    Loop *SeparateNestedLoop(Loop *L, LPPassManager &LPM);
103f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    BasicBlock *InsertUniqueBackedgeBlock(Loop *L, BasicBlock *Preheader);
104120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner    void PlaceSplitBlockCarefully(BasicBlock *NewBB,
10554b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                                  SmallVectorImpl<BasicBlock*> &SplitPreds,
106120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner                                  Loop *L);
10738acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  };
10838acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner}
10938acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
110844731a7f1909f55935e3514c9e713a62d67662eDan Gohmanchar LoopSimplify::ID = 0;
1114a60b932a279b3f5934a274f7fe4535026c5aed1Cameron ZwarichINITIALIZE_PASS_BEGIN(LoopSimplify, "loop-simplify",
1122ab36d350293c77fc8941ce1023e4899df7e3a82Owen Anderson                "Canonicalize natural loops", true, false)
1132ab36d350293c77fc8941ce1023e4899df7e3a82Owen AndersonINITIALIZE_PASS_DEPENDENCY(DominatorTree)
1142ab36d350293c77fc8941ce1023e4899df7e3a82Owen AndersonINITIALIZE_PASS_DEPENDENCY(LoopInfo)
1154a60b932a279b3f5934a274f7fe4535026c5aed1Cameron ZwarichINITIALIZE_PASS_END(LoopSimplify, "loop-simplify",
116ce665bd2e2b581ab0858d1afe359192bac96b868Owen Anderson                "Canonicalize natural loops", true, false)
117844731a7f1909f55935e3514c9e713a62d67662eDan Gohman
1187a2bdde0a0eebcd2125055e0eacaca040f0b766cChris Lattner// Publicly exposed interface to pass...
11990c579de5a383cee278acc3f7e7b9d0a656e6a35Owen Andersonchar &llvm::LoopSimplifyID = LoopSimplify::ID;
120d84db1133345234738b646c70b907bf8a0983ac9Dan GohmanPass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); }
12138acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
12234d2b90d09226ebf6189775acfd2801e127b10ecDan Gohman/// runOnLoop - Run down all loops in the CFG (recursively, but we could do
12338acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner/// it in any convenient order) inserting preheaders...
12438acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner///
125d84db1133345234738b646c70b907bf8a0983ac9Dan Gohmanbool LoopSimplify::runOnLoop(Loop *l, LPPassManager &LPM) {
126d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  L = l;
12738acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  bool Changed = false;
128c27e056d4fd7f6ecdd8e40eb92230be380c5c8c9Chris Lattner  LI = &getAnalysis<LoopInfo>();
1291465d61bdd36cfd6021036a527895f0dd358e97dDuncan Sands  AA = getAnalysisIfAvailable<AliasAnalysis>();
1300e7f728ad1ac25b0ed450fe0f8b86a38d3c2a93aDevang Patel  DT = &getAnalysis<DominatorTree>();
131ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman  SE = getAnalysisIfAvailable<ScalarEvolution>();
13238acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
133d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  Changed |= ProcessLoop(L, LPM);
13438acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
13538acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  return Changed;
13638acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner}
13738acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
13838acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner/// ProcessLoop - Walk the loop structure in depth first order, ensuring that
13938acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner/// all loops have preheaders.
14038acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner///
141d84db1133345234738b646c70b907bf8a0983ac9Dan Gohmanbool LoopSimplify::ProcessLoop(Loop *L, LPPassManager &LPM) {
14238acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  bool Changed = false;
1433bb4657488f700bbe3376fb547017163b8fbbd8fChris LattnerReprocessLoop:
144d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman
1452d0a91cd6c3df32014d547255d6a615bd1bc84fbDan Gohman  // Check to see that no blocks (other than the header) in this loop have
146d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  // predecessors that are not in the loop.  This is not valid for natural
147d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  // loops, but can occur if the blocks are unreachable.  Since they are
148d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  // unreachable we can just shamelessly delete those CFG edges!
149d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  for (Loop::block_iterator BB = L->block_begin(), E = L->block_end();
150d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman       BB != E; ++BB) {
151d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    if (*BB == L->getHeader()) continue;
152d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman
153481c4c07347c40fa666d09f3b31fbe2ca27e2d52Gabor Greif    SmallPtrSet<BasicBlock*, 4> BadPreds;
154481c4c07347c40fa666d09f3b31fbe2ca27e2d52Gabor Greif    for (pred_iterator PI = pred_begin(*BB),
155481c4c07347c40fa666d09f3b31fbe2ca27e2d52Gabor Greif         PE = pred_end(*BB); PI != PE; ++PI) {
1569672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      BasicBlock *P = *PI;
1579672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      if (!L->contains(P))
1589672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif        BadPreds.insert(P);
1599672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    }
160d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman
161d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    // Delete each unique out-of-loop (and thus dead) predecessor.
162481c4c07347c40fa666d09f3b31fbe2ca27e2d52Gabor Greif    for (SmallPtrSet<BasicBlock*, 4>::iterator I = BadPreds.begin(),
163d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman         E = BadPreds.end(); I != E; ++I) {
164c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
1659fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner      DEBUG(dbgs() << "LoopSimplify: Deleting edge from dead predecessor "
1669fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner                   << (*I)->getName() << "\n");
167c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
168d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      // Inform each successor of each dead pred.
169d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      for (succ_iterator SI = succ_begin(*I), SE = succ_end(*I); SI != SE; ++SI)
170d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman        (*SI)->removePredecessor(*I);
171d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      // Zap the dead pred's terminator and replace it with unreachable.
172d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      TerminatorInst *TI = (*I)->getTerminator();
173d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman       TI->replaceAllUsesWith(UndefValue::get(TI->getType()));
174d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      (*I)->getTerminator()->eraseFromParent();
175d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      new UnreachableInst((*I)->getContext(), *I);
176d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      Changed = true;
177d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman    }
178d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  }
1792ef703ec429900c5b49d94d82332e7a216a2d7c4Chris Lattner
18085669637139089eaed8def1583ac04266c9654e2Dan Gohman  // If there are exiting blocks with branches on undef, resolve the undef in
18185669637139089eaed8def1583ac04266c9654e2Dan Gohman  // the direction which will exit the loop. This will help simplify loop
18285669637139089eaed8def1583ac04266c9654e2Dan Gohman  // trip count computations.
18385669637139089eaed8def1583ac04266c9654e2Dan Gohman  SmallVector<BasicBlock*, 8> ExitingBlocks;
18485669637139089eaed8def1583ac04266c9654e2Dan Gohman  L->getExitingBlocks(ExitingBlocks);
18585669637139089eaed8def1583ac04266c9654e2Dan Gohman  for (SmallVectorImpl<BasicBlock *>::iterator I = ExitingBlocks.begin(),
18685669637139089eaed8def1583ac04266c9654e2Dan Gohman       E = ExitingBlocks.end(); I != E; ++I)
18785669637139089eaed8def1583ac04266c9654e2Dan Gohman    if (BranchInst *BI = dyn_cast<BranchInst>((*I)->getTerminator()))
18885669637139089eaed8def1583ac04266c9654e2Dan Gohman      if (BI->isConditional()) {
18985669637139089eaed8def1583ac04266c9654e2Dan Gohman        if (UndefValue *Cond = dyn_cast<UndefValue>(BI->getCondition())) {
190c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
1919fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner          DEBUG(dbgs() << "LoopSimplify: Resolving \"br i1 undef\" to exit in "
1929fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner                       << (*I)->getName() << "\n");
193c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
19485669637139089eaed8def1583ac04266c9654e2Dan Gohman          BI->setCondition(ConstantInt::get(Cond->getType(),
19585669637139089eaed8def1583ac04266c9654e2Dan Gohman                                            !L->contains(BI->getSuccessor(0))));
19685669637139089eaed8def1583ac04266c9654e2Dan Gohman          Changed = true;
19785669637139089eaed8def1583ac04266c9654e2Dan Gohman        }
19885669637139089eaed8def1583ac04266c9654e2Dan Gohman      }
19985669637139089eaed8def1583ac04266c9654e2Dan Gohman
200fa78946482a2cc73a1485887dfd12edd12b742a4Chris Lattner  // Does the loop already have a preheader?  If so, don't insert one.
2010df6e09d43d6d733555a10d22572ddb0006e7d23Dan Gohman  BasicBlock *Preheader = L->getLoopPreheader();
2020df6e09d43d6d733555a10d22572ddb0006e7d23Dan Gohman  if (!Preheader) {
2030df6e09d43d6d733555a10d22572ddb0006e7d23Dan Gohman    Preheader = InsertPreheaderForLoop(L);
204f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    if (Preheader) {
205fe60104ac97f3a8736dcfbfdf9547c7b7cc7b951Dan Gohman      ++NumInserted;
206f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      Changed = true;
207f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    }
20838acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  }
20938acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
21066ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattner  // Next, check to make sure that all exit nodes of the loop only have
21166ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattner  // predecessors that are inside of the loop.  This check guarantees that the
21266ea98e85c5f9c03aac139563d7874e93dc345c6Chris Lattner  // loop preheader/header will dominate the exit blocks.  If the exit block has
213ee628cfefb93e0261ee3e56686d3fffa4e81f371Chris Lattner  // predecessors from outside of the loop, split the edge now.
214b7211a2ce13a0365e0e1dd2f27adda2ee3d1288bDevang Patel  SmallVector<BasicBlock*, 8> ExitBlocks;
215ee628cfefb93e0261ee3e56686d3fffa4e81f371Chris Lattner  L->getExitBlocks(ExitBlocks);
2161c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick
21717146baef5b79114f05e0f99fcba389f2764b65dDan Gohman  SmallSetVector<BasicBlock *, 8> ExitBlockSet(ExitBlocks.begin(),
21817146baef5b79114f05e0f99fcba389f2764b65dDan Gohman                                               ExitBlocks.end());
21917146baef5b79114f05e0f99fcba389f2764b65dDan Gohman  for (SmallSetVector<BasicBlock *, 8>::iterator I = ExitBlockSet.begin(),
220fed22aac4337c589841c443be70fe05559693f6aChris Lattner         E = ExitBlockSet.end(); I != E; ++I) {
221fed22aac4337c589841c443be70fe05559693f6aChris Lattner    BasicBlock *ExitBlock = *I;
222de7aee760e77d49877ec308bc47dc455b2b754afChris Lattner    for (pred_iterator PI = pred_begin(ExitBlock), PE = pred_end(ExitBlock);
223de7aee760e77d49877ec308bc47dc455b2b754afChris Lattner         PI != PE; ++PI)
2248587eb3a51117b630c18236cc53eb865e76faf2dChris Lattner      // Must be exactly this loop: no subloops, parent loops, or non-loop preds
2258587eb3a51117b630c18236cc53eb865e76faf2dChris Lattner      // allowed.
226ee628cfefb93e0261ee3e56686d3fffa4e81f371Chris Lattner      if (!L->contains(*PI)) {
227f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        if (RewriteLoopExitBlock(L, ExitBlock)) {
228fe60104ac97f3a8736dcfbfdf9547c7b7cc7b951Dan Gohman          ++NumInserted;
229f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman          Changed = true;
230f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        }
231de7aee760e77d49877ec308bc47dc455b2b754afChris Lattner        break;
232de7aee760e77d49877ec308bc47dc455b2b754afChris Lattner      }
233fed22aac4337c589841c443be70fe05559693f6aChris Lattner  }
234dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner
235529b28da455a703d226a31a03400e6662ff569feChris Lattner  // If the header has more than two predecessors at this point (from the
236529b28da455a703d226a31a03400e6662ff569feChris Lattner  // preheader and from multiple backedges), we must adjust the loop.
237f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  BasicBlock *LoopLatch = L->getLoopLatch();
238f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  if (!LoopLatch) {
2393bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner    // If this is really a nested loop, rip it out into a child loop.  Don't do
2403bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner    // this for loops with a giant number of backedges, just factor them into a
2413bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner    // common backedge instead.
242f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    if (L->getNumBackEdges() < 8) {
243d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman      if (SeparateNestedLoop(L, LPM)) {
2443bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner        ++NumNested;
2453bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner        // This is a big restructuring change, reprocess the whole loop.
2463bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner        Changed = true;
2473bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner        // GCC doesn't tail recursion eliminate this.
2483bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner        goto ReprocessLoop;
2493bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner      }
250529b28da455a703d226a31a03400e6662ff569feChris Lattner    }
251529b28da455a703d226a31a03400e6662ff569feChris Lattner
2523bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner    // If we either couldn't, or didn't want to, identify nesting of the loops,
2533bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner    // insert a new block that all backedges target, then make it jump to the
2543bb4657488f700bbe3376fb547017163b8fbbd8fChris Lattner    // loop header.
255f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    LoopLatch = InsertUniqueBackedgeBlock(L, Preheader);
256f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    if (LoopLatch) {
257fe60104ac97f3a8736dcfbfdf9547c7b7cc7b951Dan Gohman      ++NumInserted;
258f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      Changed = true;
259f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    }
2602ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  }
2612ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
26294f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner  // Scan over the PHI nodes in the loop header.  Since they now have only two
26394f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner  // incoming values (the loop is canonicalized), we may have simplified the PHI
26494f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner  // down to 'X = phi [X, Y]', which should be replaced with 'Y'.
26594f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner  PHINode *PN;
26694f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner  for (BasicBlock::iterator I = L->getHeader()->begin();
26794f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner       (PN = dyn_cast<PHINode>(I++)); )
26867fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands    if (Value *V = SimplifyInstruction(PN, 0, DT)) {
26967fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      if (AA) AA->deleteValue(PN);
270f73b99ab43c36b026a03430a30c329a343cdd77bChris Lattner      if (SE) SE->forgetValue(PN);
27167fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      PN->replaceAllUsesWith(V);
27267fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      PN->eraseFromParent();
27367fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands    }
27494f40324481c04ae8718967b4b5a3d7ca22370e6Chris Lattner
2755cd8770412f98f6e6416c439e01222b3643b9e22Bob Wilson  // If this loop has multiple exits and the exits all go to the same
2764b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // block, attempt to merge the exits. This helps several passes, such
2774b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // as LoopRotation, which do not support loops with multiple exits.
2784b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // SimplifyCFG also does this (and this code uses the same utility
2794b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // function), however this code is loop-aware, where SimplifyCFG is
2804b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // not. That gives it the advantage of being able to hoist
2814b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // loop-invariant instructions out of the way to open up more
2824b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // opportunities, and the disadvantage of having the responsibility
2834b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  // to preserve dominator information.
284b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman  bool UniqueExit = true;
285b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman  if (!ExitBlocks.empty())
286b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman    for (unsigned i = 1, e = ExitBlocks.size(); i != e; ++i)
287b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman      if (ExitBlocks[i] != ExitBlocks[0]) {
288b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman        UniqueExit = false;
289b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman        break;
290b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman      }
291b1dc915a8d4971880a016e678ccf563d1a03a916Dan Gohman  if (UniqueExit) {
2924b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman    for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i) {
2934b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      BasicBlock *ExitingBlock = ExitingBlocks[i];
2944b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      if (!ExitingBlock->getSinglePredecessor()) continue;
2954b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      BranchInst *BI = dyn_cast<BranchInst>(ExitingBlock->getTerminator());
2964b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      if (!BI || !BI->isConditional()) continue;
2974b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      CmpInst *CI = dyn_cast<CmpInst>(BI->getCondition());
2984b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      if (!CI || CI->getParent() != ExitingBlock) continue;
2994b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman
3004b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      // Attempt to hoist out all instructions except for the
3014b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      // comparison and the branch.
3024b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      bool AllInvariant = true;
3032aa93efa0c983449e5464165e80ebd9c0fb5f6c1Dan Gohman      for (BasicBlock::iterator I = ExitingBlock->begin(); &*I != BI; ) {
3044b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman        Instruction *Inst = I++;
305689fac02268929b756086753b4656d6dabc5cf2dDevang Patel        // Skip debug info intrinsics.
306689fac02268929b756086753b4656d6dabc5cf2dDevang Patel        if (isa<DbgInfoIntrinsic>(Inst))
307689fac02268929b756086753b4656d6dabc5cf2dDevang Patel          continue;
3082aa93efa0c983449e5464165e80ebd9c0fb5f6c1Dan Gohman        if (Inst == CI)
3094b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman          continue;
310f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        if (!L->makeLoopInvariant(Inst, Changed,
311f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman                                  Preheader ? Preheader->getTerminator() : 0)) {
3124b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman          AllInvariant = false;
3134b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman          break;
3144b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman        }
3154b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      }
3164b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      if (!AllInvariant) continue;
3174b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman
3184b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      // The block has now been cleared of all instructions except for
3194b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      // a comparison and a conditional branch. SimplifyCFG may be able
3204b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      // to fold it now.
3214b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      if (!FoldBranchToCommonDest(BI)) continue;
3224b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman
3234b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      // Success. The block is now dead, so remove it from the loop,
324301278719b67dcdd1159d9f91b4db5ef57f025c6Cameron Zwarich      // update the dominator tree and delete it.
3259fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner      DEBUG(dbgs() << "LoopSimplify: Eliminating exiting block "
3269fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner                   << ExitingBlock->getName() << "\n");
327c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
3284b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      assert(pred_begin(ExitingBlock) == pred_end(ExitingBlock));
3294b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      Changed = true;
330a1baee20c4b042eca1f182fc003f38ab52efc7a9Dan Gohman      LI->removeBlock(ExitingBlock);
3314b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman
3324b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      DomTreeNode *Node = DT->getNode(ExitingBlock);
3334b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      const std::vector<DomTreeNodeBase<BasicBlock> *> &Children =
3344b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman        Node->getChildren();
3355184635eda68a0cdcd39c958ccc11ba1843bcc7bDan Gohman      while (!Children.empty()) {
3365184635eda68a0cdcd39c958ccc11ba1843bcc7bDan Gohman        DomTreeNode *Child = Children.front();
3375184635eda68a0cdcd39c958ccc11ba1843bcc7bDan Gohman        DT->changeImmediateDominator(Child, Node->getIDom());
3384b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      }
3394b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      DT->eraseNode(ExitingBlock);
3404b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman
3414b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      BI->getSuccessor(0)->removePredecessor(ExitingBlock);
3424b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      BI->getSuccessor(1)->removePredecessor(ExitingBlock);
3434b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman      ExitingBlock->eraseFromParent();
3444b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman    }
3454b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman  }
3464b35f83b91a1a313f0730c600e5178aaf7df98d6Dan Gohman
34738acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner  return Changed;
34838acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner}
34938acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner
350dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner/// InsertPreheaderForLoop - Once we discover that a loop doesn't have a
351dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner/// preheader, this method is called to insert one.  This method has two phases:
352dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner/// preheader insertion and analysis updating.
353dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner///
3540df6e09d43d6d733555a10d22572ddb0006e7d23Dan GohmanBasicBlock *LoopSimplify::InsertPreheaderForLoop(Loop *L) {
355dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner  BasicBlock *Header = L->getHeader();
356dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner
357dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner  // Compute the set of predecessors of the loop that are not in the loop.
35854b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner  SmallVector<BasicBlock*, 8> OutsideBlocks;
359dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner  for (pred_iterator PI = pred_begin(Header), PE = pred_end(Header);
3609672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif       PI != PE; ++PI) {
3619672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    BasicBlock *P = *PI;
3629672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    if (!L->contains(P)) {         // Coming in from outside the loop?
363f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      // If the loop is branched to from an indirect branch, we won't
364f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      // be able to fully transform the loop, because it prohibits
365f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      // edge splitting.
3669672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      if (isa<IndirectBrInst>(P->getTerminator())) return 0;
367f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
368f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      // Keep track of it.
3699672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      OutsideBlocks.push_back(P);
370f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    }
3719672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif  }
372fd93908ae8b9684fe71c239e3c6cfe13ff6a2663Misha Brukman
373c3984578bed8236f35825ca8aa30b3ed6cff60d5Chris Lattner  // Split out the loop pre-header.
374dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner  BasicBlock *NewBB =
37554b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner    SplitBlockPredecessors(Header, &OutsideBlocks[0], OutsideBlocks.size(),
37654b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                           ".preheader", this);
3779f879cfb0a93bf34818fb68e1dc209d47a7d24f3Chris Lattner
378c0136990274d5842f3f389362826e614454c0201Devang Patel  NewBB->getTerminator()->setDebugLoc(Header->getFirstNonPHI()->getDebugLoc());
3799fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner  DEBUG(dbgs() << "LoopSimplify: Creating pre-header " << NewBB->getName()
3809fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner               << "\n");
381c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
382120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // Make sure that NewBB is put someplace intelligent, which doesn't mess up
383120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // code layout too horribly.
384120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  PlaceSplitBlockCarefully(NewBB, OutsideBlocks, L);
3850df6e09d43d6d733555a10d22572ddb0006e7d23Dan Gohman
3860df6e09d43d6d733555a10d22572ddb0006e7d23Dan Gohman  return NewBB;
387dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner}
388dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner
389529b28da455a703d226a31a03400e6662ff569feChris Lattner/// RewriteLoopExitBlock - Ensure that the loop preheader dominates all exit
390529b28da455a703d226a31a03400e6662ff569feChris Lattner/// blocks.  This method is used to split exit blocks that have predecessors
391529b28da455a703d226a31a03400e6662ff569feChris Lattner/// outside of the loop.
39259fb87d469b9b38b0f4c1e31a2f34fa8f09b981dChris LattnerBasicBlock *LoopSimplify::RewriteLoopExitBlock(Loop *L, BasicBlock *Exit) {
39354b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner  SmallVector<BasicBlock*, 8> LoopBlocks;
3949672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif  for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit); I != E; ++I) {
3959672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    BasicBlock *P = *I;
3969672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    if (L->contains(P)) {
397f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      // Don't do this if the loop is exited via an indirect branch.
3989672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      if (isa<IndirectBrInst>(P->getTerminator())) return 0;
399f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
4009672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      LoopBlocks.push_back(P);
401f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    }
4029672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif  }
403dbf3cd7952736b649b4d19badb73ec6c1f9be583Chris Lattner
4047e7ad49c23867a5de8e15adfd946fdfa4ba68902Chris Lattner  assert(!LoopBlocks.empty() && "No edges coming in from outside the loop?");
4051c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick  BasicBlock *NewBB = SplitBlockPredecessors(Exit, &LoopBlocks[0],
40654b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                                             LoopBlocks.size(), ".loopexit",
40754b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                                             this);
4087e7ad49c23867a5de8e15adfd946fdfa4ba68902Chris Lattner
4099fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner  DEBUG(dbgs() << "LoopSimplify: Creating dedicated exit block "
4109fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner               << NewBB->getName() << "\n");
41159fb87d469b9b38b0f4c1e31a2f34fa8f09b981dChris Lattner  return NewBB;
4122ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner}
4132ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
414529b28da455a703d226a31a03400e6662ff569feChris Lattner/// AddBlockAndPredsToSet - Add the specified block, and all of its
415529b28da455a703d226a31a03400e6662ff569feChris Lattner/// predecessors, to the specified set, if it's not already in there.  Stop
416529b28da455a703d226a31a03400e6662ff569feChris Lattner/// predecessor traversal when we reach StopBlock.
41758d7fbf250659246fcca9417a91170a681b1850aDevang Patelstatic void AddBlockAndPredsToSet(BasicBlock *InputBB, BasicBlock *StopBlock,
418529b28da455a703d226a31a03400e6662ff569feChris Lattner                                  std::set<BasicBlock*> &Blocks) {
41958d7fbf250659246fcca9417a91170a681b1850aDevang Patel  std::vector<BasicBlock *> WorkList;
42058d7fbf250659246fcca9417a91170a681b1850aDevang Patel  WorkList.push_back(InputBB);
42158d7fbf250659246fcca9417a91170a681b1850aDevang Patel  do {
42258d7fbf250659246fcca9417a91170a681b1850aDevang Patel    BasicBlock *BB = WorkList.back(); WorkList.pop_back();
42358d7fbf250659246fcca9417a91170a681b1850aDevang Patel    if (Blocks.insert(BB).second && BB != StopBlock)
42458d7fbf250659246fcca9417a91170a681b1850aDevang Patel      // If BB is not already processed and it is not a stop block then
42558d7fbf250659246fcca9417a91170a681b1850aDevang Patel      // insert its predecessor in the work list
42658d7fbf250659246fcca9417a91170a681b1850aDevang Patel      for (pred_iterator I = pred_begin(BB), E = pred_end(BB); I != E; ++I) {
42758d7fbf250659246fcca9417a91170a681b1850aDevang Patel        BasicBlock *WBB = *I;
42858d7fbf250659246fcca9417a91170a681b1850aDevang Patel        WorkList.push_back(WBB);
42958d7fbf250659246fcca9417a91170a681b1850aDevang Patel      }
43058d7fbf250659246fcca9417a91170a681b1850aDevang Patel  } while(!WorkList.empty());
431529b28da455a703d226a31a03400e6662ff569feChris Lattner}
432529b28da455a703d226a31a03400e6662ff569feChris Lattner
4331f62f82b05563df9c83094608de24ea581014d1eChris Lattner/// FindPHIToPartitionLoops - The first part of loop-nestification is to find a
4341f62f82b05563df9c83094608de24ea581014d1eChris Lattner/// PHI node that tells us how to partition the loops.
435dba2413b2ecf4e781f457036a2eb0f103192e90dDevang Patelstatic PHINode *FindPHIToPartitionLoops(Loop *L, DominatorTree *DT,
436d0c6f3dafd7c3e9137d4e6415014c94137fcd3fcDuncan Sands                                        AliasAnalysis *AA, LoopInfo *LI) {
437200a360ec66b4d016c17d6f8e3ea559b1fd07205Alkis Evlogimenos  for (BasicBlock::iterator I = L->getHeader()->begin(); isa<PHINode>(I); ) {
438200a360ec66b4d016c17d6f8e3ea559b1fd07205Alkis Evlogimenos    PHINode *PN = cast<PHINode>(I);
4391f62f82b05563df9c83094608de24ea581014d1eChris Lattner    ++I;
44067fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands    if (Value *V = SimplifyInstruction(PN, 0, DT)) {
44167fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      // This is a degenerate PHI already, don't modify it!
44267fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      PN->replaceAllUsesWith(V);
44367fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      if (AA) AA->deleteValue(PN);
44467fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      PN->eraseFromParent();
44567fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands      continue;
44667fb341f8b0a72ca0da8ce53baa3f335c1310a85Duncan Sands    }
447c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner
448c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner    // Scan this PHI node looking for a use of the PHI node by itself.
449c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner    for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
450c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner      if (PN->getIncomingValue(i) == PN &&
451c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner          L->contains(PN->getIncomingBlock(i)))
452c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner        // We found something tasty to remove.
453c30bda7540de573c887e00bb76ac78d85f56acd4Chris Lattner        return PN;
4541f62f82b05563df9c83094608de24ea581014d1eChris Lattner  }
4551f62f82b05563df9c83094608de24ea581014d1eChris Lattner  return 0;
4561f62f82b05563df9c83094608de24ea581014d1eChris Lattner}
4571f62f82b05563df9c83094608de24ea581014d1eChris Lattner
458120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner// PlaceSplitBlockCarefully - If the block isn't already, move the new block to
459120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner// right after some 'outside block' block.  This prevents the preheader from
460120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner// being placed inside the loop body, e.g. when the loop hasn't been rotated.
461120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattnervoid LoopSimplify::PlaceSplitBlockCarefully(BasicBlock *NewBB,
46254b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                                       SmallVectorImpl<BasicBlock*> &SplitPreds,
463120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner                                            Loop *L) {
464120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // Check to see if NewBB is already well placed.
465120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  Function::iterator BBI = NewBB; --BBI;
466120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) {
467120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner    if (&*BBI == SplitPreds[i])
468120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner      return;
469120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  }
4701c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick
471120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // If it isn't already after an outside block, move it after one.  This is
472120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // always good as it makes the uncond branch from the outside block into a
473120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // fall-through.
4741c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick
475120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // Figure out *which* outside block to put this after.  Prefer an outside
476120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // block that neighbors a BB actually in the loop.
477120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  BasicBlock *FoundBB = 0;
478120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  for (unsigned i = 0, e = SplitPreds.size(); i != e; ++i) {
479120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner    Function::iterator BBI = SplitPreds[i];
4801c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick    if (++BBI != NewBB->getParent()->end() &&
481120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner        L->contains(BBI)) {
482120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner      FoundBB = SplitPreds[i];
483120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner      break;
484120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner    }
485120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  }
4861c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick
487120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // If our heuristic for a *good* bb to place this after doesn't find
488120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // anything, just pick something.  It's likely better than leaving it within
489120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // the loop.
490120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  if (!FoundBB)
491120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner    FoundBB = SplitPreds[0];
492120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  NewBB->moveAfter(FoundBB);
493120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner}
494120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner
495120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner
496529b28da455a703d226a31a03400e6662ff569feChris Lattner/// SeparateNestedLoop - If this loop has multiple backedges, try to pull one of
497529b28da455a703d226a31a03400e6662ff569feChris Lattner/// them out into a nested loop.  This is important for code that looks like
498529b28da455a703d226a31a03400e6662ff569feChris Lattner/// this:
499529b28da455a703d226a31a03400e6662ff569feChris Lattner///
500529b28da455a703d226a31a03400e6662ff569feChris Lattner///  Loop:
501529b28da455a703d226a31a03400e6662ff569feChris Lattner///     ...
502529b28da455a703d226a31a03400e6662ff569feChris Lattner///     br cond, Loop, Next
503529b28da455a703d226a31a03400e6662ff569feChris Lattner///     ...
504529b28da455a703d226a31a03400e6662ff569feChris Lattner///     br cond2, Loop, Out
505529b28da455a703d226a31a03400e6662ff569feChris Lattner///
506529b28da455a703d226a31a03400e6662ff569feChris Lattner/// To identify this common case, we look at the PHI nodes in the header of the
507529b28da455a703d226a31a03400e6662ff569feChris Lattner/// loop.  PHI nodes with unchanging values on one backedge correspond to values
508529b28da455a703d226a31a03400e6662ff569feChris Lattner/// that change in the "outer" loop, but not in the "inner" loop.
509529b28da455a703d226a31a03400e6662ff569feChris Lattner///
510529b28da455a703d226a31a03400e6662ff569feChris Lattner/// If we are able to separate out a loop, return the new outer loop that was
511529b28da455a703d226a31a03400e6662ff569feChris Lattner/// created.
512529b28da455a703d226a31a03400e6662ff569feChris Lattner///
513d84db1133345234738b646c70b907bf8a0983ac9Dan GohmanLoop *LoopSimplify::SeparateNestedLoop(Loop *L, LPPassManager &LPM) {
514d0c6f3dafd7c3e9137d4e6415014c94137fcd3fcDuncan Sands  PHINode *PN = FindPHIToPartitionLoops(L, DT, AA, LI);
5151f62f82b05563df9c83094608de24ea581014d1eChris Lattner  if (PN == 0) return 0;  // No known way to partition.
516529b28da455a703d226a31a03400e6662ff569feChris Lattner
5171f62f82b05563df9c83094608de24ea581014d1eChris Lattner  // Pull out all predecessors that have varying values in the loop.  This
5181f62f82b05563df9c83094608de24ea581014d1eChris Lattner  // handles the case when a PHI node has multiple instances of itself as
5191f62f82b05563df9c83094608de24ea581014d1eChris Lattner  // arguments.
52054b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner  SmallVector<BasicBlock*, 8> OuterLoopPreds;
5211f62f82b05563df9c83094608de24ea581014d1eChris Lattner  for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
5221f62f82b05563df9c83094608de24ea581014d1eChris Lattner    if (PN->getIncomingValue(i) != PN ||
523a58a04921deba911d6ead8d24f495cec234681c1Dan Gohman        !L->contains(PN->getIncomingBlock(i))) {
524a58a04921deba911d6ead8d24f495cec234681c1Dan Gohman      // We can't split indirectbr edges.
525a58a04921deba911d6ead8d24f495cec234681c1Dan Gohman      if (isa<IndirectBrInst>(PN->getIncomingBlock(i)->getTerminator()))
526a58a04921deba911d6ead8d24f495cec234681c1Dan Gohman        return 0;
527a58a04921deba911d6ead8d24f495cec234681c1Dan Gohman
5281f62f82b05563df9c83094608de24ea581014d1eChris Lattner      OuterLoopPreds.push_back(PN->getIncomingBlock(i));
529a58a04921deba911d6ead8d24f495cec234681c1Dan Gohman    }
530529b28da455a703d226a31a03400e6662ff569feChris Lattner
531c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman  DEBUG(dbgs() << "LoopSimplify: Splitting out a new outer loop\n");
532c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
533ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman  // If ScalarEvolution is around and knows anything about values in
534ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman  // this loop, tell it to forget them, because we're about to
535ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman  // substantially change it.
536ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman  if (SE)
537ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman    SE->forgetLoop(L);
538ffa75cdcf82ef2034249a313b9276eaa1bee6c43Dan Gohman
5394b66242c5498a99ed754f698d779243dd1e291e2Chris Lattner  BasicBlock *Header = L->getHeader();
54054b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner  BasicBlock *NewBB = SplitBlockPredecessors(Header, &OuterLoopPreds[0],
54154b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                                             OuterLoopPreds.size(),
54254b9c3ba2a5b0aa8fda817bcc72c370040cfb3f8Chris Lattner                                             ".outer", this);
543529b28da455a703d226a31a03400e6662ff569feChris Lattner
544120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // Make sure that NewBB is put someplace intelligent, which doesn't mess up
545120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  // code layout too horribly.
546120fce5540b34f81ee5773d30548ce7cc2b5f571Chris Lattner  PlaceSplitBlockCarefully(NewBB, OuterLoopPreds, L);
5471c3ff6595f944c2c9b834895e41c78c9c922f4afAndrew Trick
548529b28da455a703d226a31a03400e6662ff569feChris Lattner  // Create the new outer loop.
549529b28da455a703d226a31a03400e6662ff569feChris Lattner  Loop *NewOuter = new Loop();
550529b28da455a703d226a31a03400e6662ff569feChris Lattner
551529b28da455a703d226a31a03400e6662ff569feChris Lattner  // Change the parent loop to use the outer loop as its child now.
552529b28da455a703d226a31a03400e6662ff569feChris Lattner  if (Loop *Parent = L->getParentLoop())
553529b28da455a703d226a31a03400e6662ff569feChris Lattner    Parent->replaceChildLoopWith(L, NewOuter);
554529b28da455a703d226a31a03400e6662ff569feChris Lattner  else
555c27e056d4fd7f6ecdd8e40eb92230be380c5c8c9Chris Lattner    LI->changeTopLevelLoop(L, NewOuter);
556529b28da455a703d226a31a03400e6662ff569feChris Lattner
557529b28da455a703d226a31a03400e6662ff569feChris Lattner  // L is now a subloop of our outer loop.
558529b28da455a703d226a31a03400e6662ff569feChris Lattner  NewOuter->addChildLoop(L);
559529b28da455a703d226a31a03400e6662ff569feChris Lattner
560d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  // Add the new loop to the pass manager queue.
561d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman  LPM.insertLoopIntoQueue(NewOuter);
562d84db1133345234738b646c70b907bf8a0983ac9Dan Gohman
5639b78763fce4cb418e7a2e672efb84bac25559b79Dan Gohman  for (Loop::block_iterator I = L->block_begin(), E = L->block_end();
5649b78763fce4cb418e7a2e672efb84bac25559b79Dan Gohman       I != E; ++I)
5659b78763fce4cb418e7a2e672efb84bac25559b79Dan Gohman    NewOuter->addBlockEntry(*I);
566529b28da455a703d226a31a03400e6662ff569feChris Lattner
5675c89b5240c90eb8171f999e5f06f815502d0321cDan Gohman  // Now reset the header in L, which had been moved by
5685c89b5240c90eb8171f999e5f06f815502d0321cDan Gohman  // SplitBlockPredecessors for the outer loop.
5695c89b5240c90eb8171f999e5f06f815502d0321cDan Gohman  L->moveToHeader(Header);
5705c89b5240c90eb8171f999e5f06f815502d0321cDan Gohman
571529b28da455a703d226a31a03400e6662ff569feChris Lattner  // Determine which blocks should stay in L and which should be moved out to
572529b28da455a703d226a31a03400e6662ff569feChris Lattner  // the Outer loop now.
573529b28da455a703d226a31a03400e6662ff569feChris Lattner  std::set<BasicBlock*> BlocksInL;
5749672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif  for (pred_iterator PI=pred_begin(Header), E = pred_end(Header); PI!=E; ++PI) {
5759672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    BasicBlock *P = *PI;
5769672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif    if (DT->dominates(Header, P))
5779672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif      AddBlockAndPredsToSet(P, Header, BlocksInL);
5789672414017e9d5d764a56e5c8c61b39163d2d5e5Gabor Greif  }
579529b28da455a703d226a31a03400e6662ff569feChris Lattner
580529b28da455a703d226a31a03400e6662ff569feChris Lattner  // Scan all of the loop children of L, moving them to OuterLoop if they are
581529b28da455a703d226a31a03400e6662ff569feChris Lattner  // not part of the inner loop.
582c08fa28897356be54fba724056c3aa91da8b3e39David Greene  const std::vector<Loop*> &SubLoops = L->getSubLoops();
583c08fa28897356be54fba724056c3aa91da8b3e39David Greene  for (size_t I = 0; I != SubLoops.size(); )
584c08fa28897356be54fba724056c3aa91da8b3e39David Greene    if (BlocksInL.count(SubLoops[I]->getHeader()))
585529b28da455a703d226a31a03400e6662ff569feChris Lattner      ++I;   // Loop remains in L
586529b28da455a703d226a31a03400e6662ff569feChris Lattner    else
587c08fa28897356be54fba724056c3aa91da8b3e39David Greene      NewOuter->addChildLoop(L->removeChildLoop(SubLoops.begin() + I));
588529b28da455a703d226a31a03400e6662ff569feChris Lattner
589529b28da455a703d226a31a03400e6662ff569feChris Lattner  // Now that we know which blocks are in L and which need to be moved to
590529b28da455a703d226a31a03400e6662ff569feChris Lattner  // OuterLoop, move any blocks that need it.
591529b28da455a703d226a31a03400e6662ff569feChris Lattner  for (unsigned i = 0; i != L->getBlocks().size(); ++i) {
592529b28da455a703d226a31a03400e6662ff569feChris Lattner    BasicBlock *BB = L->getBlocks()[i];
593529b28da455a703d226a31a03400e6662ff569feChris Lattner    if (!BlocksInL.count(BB)) {
594529b28da455a703d226a31a03400e6662ff569feChris Lattner      // Move this block to the parent, updating the exit blocks sets
595529b28da455a703d226a31a03400e6662ff569feChris Lattner      L->removeBlockFromLoop(BB);
596c27e056d4fd7f6ecdd8e40eb92230be380c5c8c9Chris Lattner      if ((*LI)[BB] == L)
597c27e056d4fd7f6ecdd8e40eb92230be380c5c8c9Chris Lattner        LI->changeLoopFor(BB, NewOuter);
598529b28da455a703d226a31a03400e6662ff569feChris Lattner      --i;
599529b28da455a703d226a31a03400e6662ff569feChris Lattner    }
600529b28da455a703d226a31a03400e6662ff569feChris Lattner  }
601529b28da455a703d226a31a03400e6662ff569feChris Lattner
602529b28da455a703d226a31a03400e6662ff569feChris Lattner  return NewOuter;
603529b28da455a703d226a31a03400e6662ff569feChris Lattner}
604529b28da455a703d226a31a03400e6662ff569feChris Lattner
605529b28da455a703d226a31a03400e6662ff569feChris Lattner
606529b28da455a703d226a31a03400e6662ff569feChris Lattner
6072ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner/// InsertUniqueBackedgeBlock - This method is called when the specified loop
6082ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner/// has more than one backedge in it.  If this occurs, revector all of these
6092ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner/// backedges to target a new basic block and have that block branch to the loop
6102ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner/// header.  This ensures that loops have exactly one backedge.
6112ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner///
612f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan GohmanBasicBlock *
613f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan GohmanLoopSimplify::InsertUniqueBackedgeBlock(Loop *L, BasicBlock *Preheader) {
6142ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  assert(L->getNumBackEdges() > 1 && "Must have > 1 backedge!");
6152ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
6162ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Get information about the loop
6172ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  BasicBlock *Header = L->getHeader();
6182ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  Function *F = Header->getParent();
6192ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
620f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // Unique backedge insertion currently depends on having a preheader.
621f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  if (!Preheader)
622f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    return 0;
623f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
6242ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Figure out which basic blocks contain back-edges to the loop header.
6252ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  std::vector<BasicBlock*> BackedgeBlocks;
626bf2eefdb0dac4e331ca26fa0792a1dfd420b06f6Gabor Greif  for (pred_iterator I = pred_begin(Header), E = pred_end(Header); I != E; ++I){
627bf2eefdb0dac4e331ca26fa0792a1dfd420b06f6Gabor Greif    BasicBlock *P = *I;
628c2f40066bbceb15e73e5c4df97d2d115f8a36e58Dan Gohman
629c2f40066bbceb15e73e5c4df97d2d115f8a36e58Dan Gohman    // Indirectbr edges cannot be split, so we must fail if we find one.
630c2f40066bbceb15e73e5c4df97d2d115f8a36e58Dan Gohman    if (isa<IndirectBrInst>(P->getTerminator()))
631c2f40066bbceb15e73e5c4df97d2d115f8a36e58Dan Gohman      return 0;
632c2f40066bbceb15e73e5c4df97d2d115f8a36e58Dan Gohman
633bf2eefdb0dac4e331ca26fa0792a1dfd420b06f6Gabor Greif    if (P != Preheader) BackedgeBlocks.push_back(P);
634bf2eefdb0dac4e331ca26fa0792a1dfd420b06f6Gabor Greif  }
6352ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
6362ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Create and insert the new backedge block...
6371d0be15f89cb5056e20e2d24faa8d6afb1573bcaOwen Anderson  BasicBlock *BEBlock = BasicBlock::Create(Header->getContext(),
6381d0be15f89cb5056e20e2d24faa8d6afb1573bcaOwen Anderson                                           Header->getName()+".backedge", F);
639051a950000e21935165db56695e35bade668193bGabor Greif  BranchInst *BETerminator = BranchInst::Create(Header, BEBlock);
6402ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
6419fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner  DEBUG(dbgs() << "LoopSimplify: Inserting unique backedge block "
6429fc5cdf77c812aaa80419036de27576d45894d0dChris Lattner               << BEBlock->getName() << "\n");
643c5e49c64d18eacdd72c80c04855df846df97f8a8Dan Gohman
6442ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Move the new backedge block to right after the last backedge block.
6452ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  Function::iterator InsertPos = BackedgeBlocks.back(); ++InsertPos;
6462ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  F->getBasicBlockList().splice(InsertPos, F->getBasicBlockList(), BEBlock);
647fd93908ae8b9684fe71c239e3c6cfe13ff6a2663Misha Brukman
6482ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Now that the block has been inserted into the function, create PHI nodes in
6492ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // the backedge block which correspond to any PHI nodes in the header block.
650200a360ec66b4d016c17d6f8e3ea559b1fd07205Alkis Evlogimenos  for (BasicBlock::iterator I = Header->begin(); isa<PHINode>(I); ++I) {
651200a360ec66b4d016c17d6f8e3ea559b1fd07205Alkis Evlogimenos    PHINode *PN = cast<PHINode>(I);
6523ecfc861b4365f341c5c969b40e1afccde676e6fJay Foad    PHINode *NewPN = PHINode::Create(PN->getType(), BackedgeBlocks.size(),
6533ecfc861b4365f341c5c969b40e1afccde676e6fJay Foad                                     PN->getName()+".be", BETerminator);
654cec5b8831d4ee3d81990bf1af41ce1d4f4cf9704Chris Lattner    if (AA) AA->copyValue(PN, NewPN);
6552ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
6562ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // Loop over the PHI node, moving all entries except the one for the
6572ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // preheader over to the new PHI node.
6582ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    unsigned PreheaderIdx = ~0U;
6592ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    bool HasUniqueIncomingValue = true;
6602ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    Value *UniqueValue = 0;
6612ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
6622ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      BasicBlock *IBB = PN->getIncomingBlock(i);
6632ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      Value *IV = PN->getIncomingValue(i);
6642ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      if (IBB == Preheader) {
6652ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner        PreheaderIdx = i;
6662ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      } else {
6672ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner        NewPN->addIncoming(IV, IBB);
6682ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner        if (HasUniqueIncomingValue) {
6692ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner          if (UniqueValue == 0)
6702ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner            UniqueValue = IV;
6712ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner          else if (UniqueValue != IV)
6722ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner            HasUniqueIncomingValue = false;
6732ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner        }
6742ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      }
6752ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    }
676fd93908ae8b9684fe71c239e3c6cfe13ff6a2663Misha Brukman
6772ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // Delete all of the incoming values from the old PN except the preheader's
6782ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    assert(PreheaderIdx != ~0U && "PHI has no preheader entry??");
6792ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    if (PreheaderIdx != 0) {
6802ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      PN->setIncomingValue(0, PN->getIncomingValue(PreheaderIdx));
6812ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      PN->setIncomingBlock(0, PN->getIncomingBlock(PreheaderIdx));
6822ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    }
6835551706b0f8e970720deea0bf6aa34116030d6beChris Lattner    // Nuke all entries except the zero'th.
6845551706b0f8e970720deea0bf6aa34116030d6beChris Lattner    for (unsigned i = 0, e = PN->getNumIncomingValues()-1; i != e; ++i)
6855551706b0f8e970720deea0bf6aa34116030d6beChris Lattner      PN->removeIncomingValue(e-i, false);
6862ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
6872ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // Finally, add the newly constructed PHI node as the entry for the BEBlock.
6882ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    PN->addIncoming(NewPN, BEBlock);
6892ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
6902ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // As an optimization, if all incoming values in the new PhiNode (which is a
6912ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // subset of the incoming values of the old PHI node) have the same value,
6922ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    // eliminate the PHI Node.
6932ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    if (HasUniqueIncomingValue) {
6942ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      NewPN->replaceAllUsesWith(UniqueValue);
695cec5b8831d4ee3d81990bf1af41ce1d4f4cf9704Chris Lattner      if (AA) AA->deleteValue(NewPN);
6962ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      BEBlock->getInstList().erase(NewPN);
6972ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    }
6982ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  }
6992ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
7002ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Now that all of the PHI nodes have been inserted and adjusted, modify the
701280a6e607d8eb7401749a92db624a82de47da777Nick Lewycky  // backedge blocks to just to the BEBlock instead of the header.
7022ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  for (unsigned i = 0, e = BackedgeBlocks.size(); i != e; ++i) {
7032ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    TerminatorInst *TI = BackedgeBlocks[i]->getTerminator();
7042ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner    for (unsigned Op = 0, e = TI->getNumSuccessors(); Op != e; ++Op)
7052ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner      if (TI->getSuccessor(Op) == Header)
7062ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner        TI->setSuccessor(Op, BEBlock);
7072ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  }
7082ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
7092ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  //===--- Update all analyses which we must preserve now -----------------===//
7102ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
7112ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // Update Loop Information - we know that this block is now in the current
7122ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner  // loop and all parent loops.
713d735ee85dbab8e4f66f9ec157f19956e0d11ec7aOwen Anderson  L->addBasicBlockToLoop(BEBlock, LI->getBase());
7142ab6a7358e7788eae43b73a79e066322ef0a55d5Chris Lattner
7150e7f728ad1ac25b0ed450fe0f8b86a38d3c2a93aDevang Patel  // Update dominator information
7160e7f728ad1ac25b0ed450fe0f8b86a38d3c2a93aDevang Patel  DT->splitBlock(BEBlock);
717f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
718f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  return BEBlock;
719f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman}
720f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
721f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohmanvoid LoopSimplify::verifyAnalysis() const {
722f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // It used to be possible to just assert L->isLoopSimplifyForm(), however
723f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // with the introduction of indirectbr, there are now cases where it's
724f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // not possible to transform a loop as necessary. We can at least check
725f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // that there is an indirectbr near any time there's trouble.
726f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
727f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // Indirectbr can interfere with preheader and unique backedge insertion.
728f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  if (!L->getLoopPreheader() || !L->getLoopLatch()) {
729f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    bool HasIndBrPred = false;
730f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    for (pred_iterator PI = pred_begin(L->getHeader()),
731f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman         PE = pred_end(L->getHeader()); PI != PE; ++PI)
732f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      if (isa<IndirectBrInst>((*PI)->getTerminator())) {
733f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        HasIndBrPred = true;
734f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        break;
735f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      }
736f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    assert(HasIndBrPred &&
737f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman           "LoopSimplify has no excuse for missing loop header info!");
738f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  }
739f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman
740f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  // Indirectbr can interfere with exit block canonicalization.
741f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  if (!L->hasDedicatedExits()) {
742f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    bool HasIndBrExiting = false;
743f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    SmallVector<BasicBlock*, 8> ExitingBlocks;
744f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    L->getExitingBlocks(ExitingBlocks);
745f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    for (unsigned i = 0, e = ExitingBlocks.size(); i != e; ++i)
746f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      if (isa<IndirectBrInst>((ExitingBlocks[i])->getTerminator())) {
747f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        HasIndBrExiting = true;
748f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman        break;
749f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman      }
750f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman    assert(HasIndBrExiting &&
751f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman           "LoopSimplify has no excuse for missing exit block info!");
752f4e82d1f2e25f7cf8b7e9c3bd42b0e384139e07eDan Gohman  }
75338acf9e85d25f022309372c26d54ecb7c77840f2Chris Lattner}
754