blob: 6f7dc2429c0990abc9c3cf9a739470f2a7a53829 [file] [log] [blame]
Chandler Carruthe6c30fd2018-05-25 01:32:36 +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#include "llvm/Transforms/Scalar/LoopInstSimplify.h"
15#include "llvm/ADT/PointerIntPair.h"
16#include "llvm/ADT/STLExtras.h"
17#include "llvm/ADT/SmallPtrSet.h"
18#include "llvm/ADT/SmallVector.h"
19#include "llvm/ADT/Statistic.h"
20#include "llvm/Analysis/AssumptionCache.h"
21#include "llvm/Analysis/InstructionSimplify.h"
22#include "llvm/Analysis/LoopInfo.h"
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000023#include "llvm/Analysis/LoopIterator.h"
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000024#include "llvm/Analysis/LoopPass.h"
Alina Sbirleac1a216b2018-08-22 20:05:21 +000025#include "llvm/Analysis/MemorySSA.h"
26#include "llvm/Analysis/MemorySSAUpdater.h"
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000027#include "llvm/Analysis/TargetLibraryInfo.h"
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000028#include "llvm/IR/BasicBlock.h"
29#include "llvm/IR/CFG.h"
30#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/Dominators.h"
32#include "llvm/IR/Instruction.h"
33#include "llvm/IR/Instructions.h"
34#include "llvm/IR/Module.h"
35#include "llvm/IR/PassManager.h"
36#include "llvm/IR/User.h"
37#include "llvm/Pass.h"
38#include "llvm/Support/Casting.h"
39#include "llvm/Transforms/Scalar.h"
Alina Sbirleac1a216b2018-08-22 20:05:21 +000040#include "llvm/Transforms/Utils/Local.h"
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000041#include "llvm/Transforms/Utils/LoopUtils.h"
42#include <algorithm>
43#include <utility>
44
45using namespace llvm;
46
47#define DEBUG_TYPE "loop-instsimplify"
48
49STATISTIC(NumSimplified, "Number of redundant instructions simplified");
50
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000051static bool simplifyLoopInst(Loop &L, DominatorTree &DT, LoopInfo &LI,
Alina Sbirleac1a216b2018-08-22 20:05:21 +000052 AssumptionCache &AC, const TargetLibraryInfo &TLI,
53 MemorySSAUpdater *MSSAU) {
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000054 const DataLayout &DL = L.getHeader()->getModule()->getDataLayout();
55 SimplifyQuery SQ(DL, &TLI, &DT, &AC);
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000056
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000057 // On the first pass over the loop body we try to simplify every instruction.
58 // On subsequent passes, we can restrict this to only simplifying instructions
59 // where the inputs have been updated. We end up needing two sets: one
60 // containing the instructions we are simplifying in *this* pass, and one for
61 // the instructions we will want to simplify in the *next* pass. We use
62 // pointers so we can swap between two stably allocated sets.
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000063 SmallPtrSet<const Instruction *, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
64
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000065 // Track the PHI nodes that have already been visited during each iteration so
66 // that we can identify when it is necessary to iterate.
67 SmallPtrSet<PHINode *, 4> VisitedPHIs;
68
69 // While simplifying we may discover dead code or cause code to become dead.
70 // Keep track of all such instructions and we will delete them at the end.
71 SmallVector<Instruction *, 8> DeadInsts;
72
73 // First we want to create an RPO traversal of the loop body. By processing in
74 // RPO we can ensure that definitions are processed prior to uses (for non PHI
75 // uses) in all cases. This ensures we maximize the simplifications in each
76 // iteration over the loop and minimizes the possible causes for continuing to
77 // iterate.
78 LoopBlocksRPO RPOT(&L);
79 RPOT.perform(&LI);
Alina Sbirleac1a216b2018-08-22 20:05:21 +000080 MemorySSA *MSSA = MSSAU ? MSSAU->getMemorySSA() : nullptr;
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000081
82 bool Changed = false;
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000083 for (;;) {
Alina Sbirleac1a216b2018-08-22 20:05:21 +000084 if (MSSAU && VerifyMemorySSA)
85 MSSA->verifyMemorySSA();
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000086 for (BasicBlock *BB : RPOT) {
87 for (Instruction &I : *BB) {
88 if (auto *PI = dyn_cast<PHINode>(&I))
89 VisitedPHIs.insert(PI);
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000090
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000091 if (I.use_empty()) {
92 if (isInstructionTriviallyDead(&I, &TLI))
93 DeadInsts.push_back(&I);
Chandler Carruthe6c30fd2018-05-25 01:32:36 +000094 continue;
95 }
96
Chandler Carruth4cbcbb02018-05-29 20:15:38 +000097 // We special case the first iteration which we can detect due to the
98 // empty `ToSimplify` set.
99 bool IsFirstIteration = ToSimplify->empty();
100
101 if (!IsFirstIteration && !ToSimplify->count(&I))
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000102 continue;
103
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000104 Value *V = SimplifyInstruction(&I, SQ.getWithInstruction(&I));
105 if (!V || !LI.replacementPreservesLCSSAForm(&I, V))
106 continue;
107
108 for (Value::use_iterator UI = I.use_begin(), UE = I.use_end();
109 UI != UE;) {
110 Use &U = *UI++;
111 auto *UserI = cast<Instruction>(U.getUser());
112 U.set(V);
113
114 // If the instruction is used by a PHI node we have already processed
115 // we'll need to iterate on the loop body to converge, so add it to
116 // the next set.
117 if (auto *UserPI = dyn_cast<PHINode>(UserI))
118 if (VisitedPHIs.count(UserPI)) {
119 Next->insert(UserPI);
120 continue;
121 }
122
123 // If we are only simplifying targeted instructions and the user is an
124 // instruction in the loop body, add it to our set of targeted
125 // instructions. Because we process defs before uses (outside of PHIs)
126 // we won't have visited it yet.
127 //
128 // We also skip any uses outside of the loop being simplified. Those
129 // should always be PHI nodes due to LCSSA form, and we don't want to
130 // try to simplify those away.
131 assert((L.contains(UserI) || isa<PHINode>(UserI)) &&
132 "Uses outside the loop should be PHI nodes due to LCSSA!");
133 if (!IsFirstIteration && L.contains(UserI))
134 ToSimplify->insert(UserI);
135 }
136
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000137 if (MSSAU)
138 if (Instruction *SimpleI = dyn_cast_or_null<Instruction>(V))
139 if (MemoryAccess *MA = MSSA->getMemoryAccess(&I))
140 if (MemoryAccess *ReplacementMA = MSSA->getMemoryAccess(SimpleI))
141 MA->replaceAllUsesWith(ReplacementMA);
142
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000143 assert(I.use_empty() && "Should always have replaced all uses!");
144 if (isInstructionTriviallyDead(&I, &TLI))
145 DeadInsts.push_back(&I);
146 ++NumSimplified;
147 Changed = true;
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000148 }
149 }
150
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000151 // Delete any dead instructions found thus far now that we've finished an
152 // iteration over all instructions in all the loop blocks.
153 if (!DeadInsts.empty()) {
154 Changed = true;
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000155 RecursivelyDeleteTriviallyDeadInstructions(DeadInsts, &TLI, MSSAU);
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000156 }
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000157
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000158 if (MSSAU && VerifyMemorySSA)
159 MSSA->verifyMemorySSA();
160
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000161 // If we never found a PHI that needs to be simplified in the next
162 // iteration, we're done.
163 if (Next->empty())
164 break;
165
166 // Otherwise, put the next set in place for the next iteration and reset it
167 // and the visited PHIs for that iteration.
168 std::swap(Next, ToSimplify);
169 Next->clear();
170 VisitedPHIs.clear();
171 DeadInsts.clear();
172 }
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000173
174 return Changed;
175}
176
177namespace {
178
179class LoopInstSimplifyLegacyPass : public LoopPass {
180public:
181 static char ID; // Pass ID, replacement for typeid
182
183 LoopInstSimplifyLegacyPass() : LoopPass(ID) {
184 initializeLoopInstSimplifyLegacyPassPass(*PassRegistry::getPassRegistry());
185 }
186
187 bool runOnLoop(Loop *L, LPPassManager &LPM) override {
188 if (skipLoop(L))
189 return false;
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000190 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
191 LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo();
192 AssumptionCache &AC =
193 getAnalysis<AssumptionCacheTracker>().getAssumptionCache(
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000194 *L->getHeader()->getParent());
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000195 const TargetLibraryInfo &TLI =
196 getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000197 MemorySSA *MSSA = nullptr;
198 Optional<MemorySSAUpdater> MSSAU;
199 if (EnableMSSALoopDependency) {
200 MSSA = &getAnalysis<MemorySSAWrapperPass>().getMSSA();
201 MSSAU = MemorySSAUpdater(MSSA);
202 }
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000203
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000204 return simplifyLoopInst(*L, DT, LI, AC, TLI,
205 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr);
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000206 }
207
208 void getAnalysisUsage(AnalysisUsage &AU) const override {
209 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruth4cbcbb02018-05-29 20:15:38 +0000210 AU.addRequired<DominatorTreeWrapperPass>();
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000211 AU.addRequired<TargetLibraryInfoWrapperPass>();
212 AU.setPreservesCFG();
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000213 if (EnableMSSALoopDependency) {
214 AU.addRequired<MemorySSAWrapperPass>();
215 AU.addPreserved<MemorySSAWrapperPass>();
216 }
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000217 getLoopAnalysisUsage(AU);
218 }
219};
220
221} // end anonymous namespace
222
223PreservedAnalyses LoopInstSimplifyPass::run(Loop &L, LoopAnalysisManager &AM,
224 LoopStandardAnalysisResults &AR,
225 LPMUpdater &) {
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000226 Optional<MemorySSAUpdater> MSSAU;
227 if (AR.MSSA) {
228 MSSAU = MemorySSAUpdater(AR.MSSA);
229 AR.MSSA->verifyMemorySSA();
230 }
231 if (!simplifyLoopInst(L, AR.DT, AR.LI, AR.AC, AR.TLI,
232 MSSAU.hasValue() ? MSSAU.getPointer() : nullptr))
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000233 return PreservedAnalyses::all();
234
235 auto PA = getLoopPassPreservedAnalyses();
236 PA.preserveSet<CFGAnalyses>();
237 return PA;
238}
239
240char LoopInstSimplifyLegacyPass::ID = 0;
241
242INITIALIZE_PASS_BEGIN(LoopInstSimplifyLegacyPass, "loop-instsimplify",
243 "Simplify instructions in loops", false, false)
244INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
245INITIALIZE_PASS_DEPENDENCY(LoopPass)
Alina Sbirleac1a216b2018-08-22 20:05:21 +0000246INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
Chandler Carruthe6c30fd2018-05-25 01:32:36 +0000247INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
248INITIALIZE_PASS_END(LoopInstSimplifyLegacyPass, "loop-instsimplify",
249 "Simplify instructions in loops", false, false)
250
251Pass *llvm::createLoopInstSimplifyPass() {
252 return new LoopInstSimplifyLegacyPass();
253}