blob: af25c5c1a661a36d6ff7c80ab4a8fe4c2808d48b [file] [log] [blame]
Cameron Zwarich832f6112011-01-03 00:25:16 +00001//===- LoopInstSimplify.cpp - Loop Instruction Simplification Pass --------===//
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// This pass performs lightweight instruction simplification on loop bodies.
11//
12//===----------------------------------------------------------------------===//
13
14#define DEBUG_TYPE "loop-instsimplify"
Cameron Zwarich8368ac32011-01-08 15:52:22 +000015#include "llvm/Instructions.h"
Cameron Zwarich832f6112011-01-03 00:25:16 +000016#include "llvm/Analysis/Dominators.h"
17#include "llvm/Analysis/InstructionSimplify.h"
Cameron Zwaricha1cb5852011-01-04 00:12:46 +000018#include "llvm/Analysis/LoopInfo.h"
Cameron Zwariche389ab12011-01-05 05:15:53 +000019#include "llvm/Analysis/LoopPass.h"
20#include "llvm/Support/Debug.h"
Cameron Zwarich832f6112011-01-03 00:25:16 +000021#include "llvm/Target/TargetData.h"
22#include "llvm/Transforms/Scalar.h"
23#include "llvm/Transforms/Utils/Local.h"
24#include "llvm/ADT/Statistic.h"
25using namespace llvm;
26
27STATISTIC(NumSimplified, "Number of redundant instructions simplified");
28
29namespace {
Cameron Zwariche389ab12011-01-05 05:15:53 +000030 class LoopInstSimplify : public LoopPass {
Cameron Zwarich832f6112011-01-03 00:25:16 +000031 public:
32 static char ID; // Pass ID, replacement for typeid
Cameron Zwariche389ab12011-01-05 05:15:53 +000033 LoopInstSimplify() : LoopPass(ID) {
Cameron Zwarich832f6112011-01-03 00:25:16 +000034 initializeLoopInstSimplifyPass(*PassRegistry::getPassRegistry());
35 }
36
Cameron Zwariche389ab12011-01-05 05:15:53 +000037 bool runOnLoop(Loop*, LPPassManager&);
Cameron Zwarich832f6112011-01-03 00:25:16 +000038
Cameron Zwarich64573ae2011-01-04 18:19:19 +000039 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
Cameron Zwarich832f6112011-01-03 00:25:16 +000040 AU.setPreservesCFG();
Cameron Zwarich832f6112011-01-03 00:25:16 +000041 AU.addRequired<LoopInfo>();
Cameron Zwariche389ab12011-01-05 05:15:53 +000042 AU.addRequiredID(LoopSimplifyID);
Cameron Zwariche7d78652011-01-09 12:35:16 +000043 AU.addPreservedID(LoopSimplifyID);
Cameron Zwarich832f6112011-01-03 00:25:16 +000044 AU.addPreservedID(LCSSAID);
Cameron Zwarichfae0abe2011-02-11 06:08:25 +000045 AU.addPreserved("scalar-evolution");
Cameron Zwarich832f6112011-01-03 00:25:16 +000046 }
47 };
48}
49
50char LoopInstSimplify::ID = 0;
51INITIALIZE_PASS_BEGIN(LoopInstSimplify, "loop-instsimplify",
52 "Simplify instructions in loops", false, false)
53INITIALIZE_PASS_DEPENDENCY(DominatorTree)
54INITIALIZE_PASS_DEPENDENCY(LoopInfo)
55INITIALIZE_PASS_DEPENDENCY(LCSSA)
56INITIALIZE_PASS_END(LoopInstSimplify, "loop-instsimplify",
57 "Simplify instructions in loops", false, false)
58
Cameron Zwarichb434acb2011-01-08 17:07:11 +000059Pass *llvm::createLoopInstSimplifyPass() {
Cameron Zwarich832f6112011-01-03 00:25:16 +000060 return new LoopInstSimplify();
61}
62
Cameron Zwariche389ab12011-01-05 05:15:53 +000063bool LoopInstSimplify::runOnLoop(Loop *L, LPPassManager &LPM) {
Cameron Zwarich64573ae2011-01-04 18:19:19 +000064 DominatorTree *DT = getAnalysisIfAvailable<DominatorTree>();
65 LoopInfo *LI = &getAnalysis<LoopInfo>();
66 const TargetData *TD = getAnalysisIfAvailable<TargetData>();
Cameron Zwarich832f6112011-01-03 00:25:16 +000067
Cameron Zwariche389ab12011-01-05 05:15:53 +000068 SmallVector<BasicBlock*, 8> ExitBlocks;
69 L->getUniqueExitBlocks(ExitBlocks);
70 array_pod_sort(ExitBlocks.begin(), ExitBlocks.end());
71
Cameron Zwarich08602ab2011-01-05 05:47:47 +000072 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
73
Cameron Zwarich8368ac32011-01-08 15:52:22 +000074 // The bit we are stealing from the pointer represents whether this basic
75 // block is the header of a subloop, in which case we only process its phis.
76 typedef PointerIntPair<BasicBlock*, 1> WorklistItem;
77 SmallVector<WorklistItem, 16> VisitStack;
Cameron Zwariche389ab12011-01-05 05:15:53 +000078 SmallPtrSet<BasicBlock*, 32> Visited;
79
Cameron Zwarich832f6112011-01-03 00:25:16 +000080 bool Changed = false;
81 bool LocalChanged;
82 do {
83 LocalChanged = false;
84
Cameron Zwariche389ab12011-01-05 05:15:53 +000085 VisitStack.clear();
86 Visited.clear();
87
Cameron Zwarich8368ac32011-01-08 15:52:22 +000088 VisitStack.push_back(WorklistItem(L->getHeader(), false));
Cameron Zwariche389ab12011-01-05 05:15:53 +000089
90 while (!VisitStack.empty()) {
Cameron Zwarich8368ac32011-01-08 15:52:22 +000091 WorklistItem Item = VisitStack.pop_back_val();
Cameron Zwarichb434acb2011-01-08 17:07:11 +000092 BasicBlock *BB = Item.getPointer();
Cameron Zwarich8368ac32011-01-08 15:52:22 +000093 bool IsSubloopHeader = Item.getInt();
Cameron Zwariche389ab12011-01-05 05:15:53 +000094
95 // Simplify instructions in the current basic block.
96 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); BI != BE;) {
Cameron Zwarich64573ae2011-01-04 18:19:19 +000097 Instruction *I = BI++;
Cameron Zwarich08602ab2011-01-05 05:47:47 +000098
99 // The first time through the loop ToSimplify is empty and we try to
100 // simplify all instructions. On later iterations ToSimplify is not
101 // empty and we only bother simplifying instructions that are in it.
102 if (!ToSimplify->empty() && !ToSimplify->count(I))
103 continue;
104
Cameron Zwarich832f6112011-01-03 00:25:16 +0000105 // Don't bother simplifying unused instructions.
106 if (!I->use_empty()) {
Cameron Zwarich64573ae2011-01-04 18:19:19 +0000107 Value *V = SimplifyInstruction(I, TD, DT);
Cameron Zwaricha1cb5852011-01-04 00:12:46 +0000108 if (V && LI->replacementPreservesLCSSAForm(I, V)) {
Cameron Zwarich08602ab2011-01-05 05:47:47 +0000109 // Mark all uses for resimplification next time round the loop.
110 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
111 UI != UE; ++UI)
112 Next->insert(cast<Instruction>(*UI));
113
Cameron Zwarich832f6112011-01-03 00:25:16 +0000114 I->replaceAllUsesWith(V);
115 LocalChanged = true;
116 ++NumSimplified;
117 }
118 }
119 LocalChanged |= RecursivelyDeleteTriviallyDeadInstructions(I);
Cameron Zwarich8368ac32011-01-08 15:52:22 +0000120
121 if (IsSubloopHeader && !isa<PHINode>(I))
122 break;
Cameron Zwarich832f6112011-01-03 00:25:16 +0000123 }
Cameron Zwarich832f6112011-01-03 00:25:16 +0000124
Cameron Zwarich8368ac32011-01-08 15:52:22 +0000125 // Add all successors to the worklist, except for loop exit blocks and the
126 // bodies of subloops. We visit the headers of loops so that we can process
127 // their phis, but we contract the rest of the subloop body and only follow
128 // edges leading back to the original loop.
Cameron Zwariche389ab12011-01-05 05:15:53 +0000129 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); SI != SE;
130 ++SI) {
131 BasicBlock *SuccBB = *SI;
Cameron Zwarich8368ac32011-01-08 15:52:22 +0000132 if (!Visited.insert(SuccBB))
133 continue;
134
135 const Loop *SuccLoop = LI->getLoopFor(SuccBB);
136 if (SuccLoop && SuccLoop->getHeader() == SuccBB
137 && L->contains(SuccLoop)) {
138 VisitStack.push_back(WorklistItem(SuccBB, true));
139
140 SmallVector<BasicBlock*, 8> SubLoopExitBlocks;
141 SuccLoop->getExitBlocks(SubLoopExitBlocks);
142
143 for (unsigned i = 0; i < SubLoopExitBlocks.size(); ++i) {
144 BasicBlock *ExitBB = SubLoopExitBlocks[i];
145 if (LI->getLoopFor(ExitBB) == L && Visited.insert(ExitBB))
146 VisitStack.push_back(WorklistItem(ExitBB, false));
147 }
148
149 continue;
150 }
151
Cameron Zwariche389ab12011-01-05 05:15:53 +0000152 bool IsExitBlock = std::binary_search(ExitBlocks.begin(),
Cameron Zwarich8368ac32011-01-08 15:52:22 +0000153 ExitBlocks.end(), SuccBB);
154 if (IsExitBlock)
155 continue;
156
157 VisitStack.push_back(WorklistItem(SuccBB, false));
Cameron Zwariche389ab12011-01-05 05:15:53 +0000158 }
159 }
160
Cameron Zwarich08602ab2011-01-05 05:47:47 +0000161 // Place the list of instructions to simplify on the next loop iteration
162 // into ToSimplify.
163 std::swap(ToSimplify, Next);
164 Next->clear();
165
Cameron Zwaricha1cb5852011-01-04 00:12:46 +0000166 Changed |= LocalChanged;
Cameron Zwarich832f6112011-01-03 00:25:16 +0000167 } while (LocalChanged);
168
Cameron Zwarich832f6112011-01-03 00:25:16 +0000169 return Changed;
170}