blob: 01abbb8ad9ef38d7a44f60d1eba7364dd8f60366 [file] [log] [blame]
Chris Lattner704541b2011-01-02 21:47:05 +00001//===- EarlyCSE.cpp - Simple and fast CSE 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 a simple dominator tree walk that eliminates trivially
11// redundant instructions.
12//
13//===----------------------------------------------------------------------===//
14
Chandler Carruthe8c686a2015-02-01 10:51:23 +000015#include "llvm/Transforms/Scalar/EarlyCSE.h"
Michael Ilseman336cb792012-10-09 16:57:38 +000016#include "llvm/ADT/Hashing.h"
Chris Lattner18ae5432011-01-02 23:04:14 +000017#include "llvm/ADT/ScopedHashTable.h"
Chris Lattner8fac5db2011-01-02 23:19:45 +000018#include "llvm/ADT/Statistic.h"
Chandler Carruth66b31302015-01-04 12:03:27 +000019#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000020#include "llvm/Analysis/InstructionSimplify.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000021#include "llvm/Analysis/TargetLibraryInfo.h"
Chad Rosierf9327d62015-01-26 22:51:15 +000022#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000024#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000025#include "llvm/IR/Instructions.h"
Hal Finkel1e16fa32014-11-03 20:21:32 +000026#include "llvm/IR/IntrinsicInst.h"
27#include "llvm/IR/PatternMatch.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000028#include "llvm/Pass.h"
29#include "llvm/Support/Debug.h"
30#include "llvm/Support/RecyclingAllocator.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000031#include "llvm/Support/raw_ostream.h"
Chandler Carruthe8c686a2015-02-01 10:51:23 +000032#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Transforms/Utils/Local.h"
Lenny Maiorani9eefc812014-09-20 13:29:20 +000034#include <deque>
Chris Lattner704541b2011-01-02 21:47:05 +000035using namespace llvm;
Hal Finkel1e16fa32014-11-03 20:21:32 +000036using namespace llvm::PatternMatch;
Chris Lattner704541b2011-01-02 21:47:05 +000037
Chandler Carruth964daaa2014-04-22 02:55:47 +000038#define DEBUG_TYPE "early-cse"
39
Chris Lattner4cb36542011-01-03 03:28:23 +000040STATISTIC(NumSimplify, "Number of instructions simplified or DCE'd");
41STATISTIC(NumCSE, "Number of instructions CSE'd");
Chris Lattner92bb0f92011-01-03 03:41:27 +000042STATISTIC(NumCSELoad, "Number of load instructions CSE'd");
43STATISTIC(NumCSECall, "Number of call instructions CSE'd");
Chris Lattner9e5e9ed2011-01-03 04:17:24 +000044STATISTIC(NumDSE, "Number of trivial dead stores removed");
Chris Lattnerb9a8efc2011-01-03 03:18:43 +000045
Chris Lattner79d83062011-01-03 02:20:48 +000046//===----------------------------------------------------------------------===//
Nadav Rotem465834c2012-07-24 10:51:42 +000047// SimpleValue
Chris Lattner79d83062011-01-03 02:20:48 +000048//===----------------------------------------------------------------------===//
49
Chris Lattner704541b2011-01-02 21:47:05 +000050namespace {
Chandler Carruth9dea5cd2015-01-24 11:44:32 +000051/// \brief Struct representing the available values in the scoped hash table.
Chandler Carruth7253bba2015-01-24 11:33:55 +000052struct SimpleValue {
53 Instruction *Inst;
Nadav Rotem465834c2012-07-24 10:51:42 +000054
Chandler Carruth7253bba2015-01-24 11:33:55 +000055 SimpleValue(Instruction *I) : Inst(I) {
56 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
57 }
Nadav Rotem465834c2012-07-24 10:51:42 +000058
Chandler Carruth7253bba2015-01-24 11:33:55 +000059 bool isSentinel() const {
60 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() ||
61 Inst == DenseMapInfo<Instruction *>::getTombstoneKey();
62 }
Nadav Rotem465834c2012-07-24 10:51:42 +000063
Chandler Carruth7253bba2015-01-24 11:33:55 +000064 static bool canHandle(Instruction *Inst) {
65 // This can only handle non-void readnone functions.
66 if (CallInst *CI = dyn_cast<CallInst>(Inst))
67 return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy();
68 return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) ||
69 isa<GetElementPtrInst>(Inst) || isa<CmpInst>(Inst) ||
70 isa<SelectInst>(Inst) || isa<ExtractElementInst>(Inst) ||
71 isa<InsertElementInst>(Inst) || isa<ShuffleVectorInst>(Inst) ||
72 isa<ExtractValueInst>(Inst) || isa<InsertValueInst>(Inst);
73 }
74};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000075}
Chris Lattner18ae5432011-01-02 23:04:14 +000076
77namespace llvm {
Chandler Carruth7253bba2015-01-24 11:33:55 +000078template <> struct DenseMapInfo<SimpleValue> {
Chris Lattner79d83062011-01-03 02:20:48 +000079 static inline SimpleValue getEmptyKey() {
Chandler Carruth7253bba2015-01-24 11:33:55 +000080 return DenseMapInfo<Instruction *>::getEmptyKey();
Chris Lattner18ae5432011-01-02 23:04:14 +000081 }
Chris Lattner79d83062011-01-03 02:20:48 +000082 static inline SimpleValue getTombstoneKey() {
Chandler Carruth7253bba2015-01-24 11:33:55 +000083 return DenseMapInfo<Instruction *>::getTombstoneKey();
Chris Lattner18ae5432011-01-02 23:04:14 +000084 }
Chris Lattner79d83062011-01-03 02:20:48 +000085 static unsigned getHashValue(SimpleValue Val);
86 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
Chris Lattner18ae5432011-01-02 23:04:14 +000087};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000088}
Chris Lattner18ae5432011-01-02 23:04:14 +000089
Chris Lattner79d83062011-01-03 02:20:48 +000090unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
Chris Lattner18ae5432011-01-02 23:04:14 +000091 Instruction *Inst = Val.Inst;
Chris Lattner02a97762011-01-03 01:10:08 +000092 // Hash in all of the operands as pointers.
Chandler Carruth7253bba2015-01-24 11:33:55 +000093 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) {
Michael Ilseman336cb792012-10-09 16:57:38 +000094 Value *LHS = BinOp->getOperand(0);
95 Value *RHS = BinOp->getOperand(1);
96 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
97 std::swap(LHS, RHS);
Chris Lattner02a97762011-01-03 01:10:08 +000098
Michael Ilseman336cb792012-10-09 16:57:38 +000099 if (isa<OverflowingBinaryOperator>(BinOp)) {
100 // Hash the overflow behavior
101 unsigned Overflow =
Chandler Carruth7253bba2015-01-24 11:33:55 +0000102 BinOp->hasNoSignedWrap() * OverflowingBinaryOperator::NoSignedWrap |
103 BinOp->hasNoUnsignedWrap() *
104 OverflowingBinaryOperator::NoUnsignedWrap;
Michael Ilseman336cb792012-10-09 16:57:38 +0000105 return hash_combine(BinOp->getOpcode(), Overflow, LHS, RHS);
106 }
107
108 return hash_combine(BinOp->getOpcode(), LHS, RHS);
Chris Lattner02a97762011-01-03 01:10:08 +0000109 }
110
Michael Ilseman336cb792012-10-09 16:57:38 +0000111 if (CmpInst *CI = dyn_cast<CmpInst>(Inst)) {
112 Value *LHS = CI->getOperand(0);
113 Value *RHS = CI->getOperand(1);
114 CmpInst::Predicate Pred = CI->getPredicate();
115 if (Inst->getOperand(0) > Inst->getOperand(1)) {
116 std::swap(LHS, RHS);
117 Pred = CI->getSwappedPredicate();
118 }
119 return hash_combine(Inst->getOpcode(), Pred, LHS, RHS);
120 }
121
122 if (CastInst *CI = dyn_cast<CastInst>(Inst))
123 return hash_combine(CI->getOpcode(), CI->getType(), CI->getOperand(0));
124
125 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(Inst))
126 return hash_combine(EVI->getOpcode(), EVI->getOperand(0),
127 hash_combine_range(EVI->idx_begin(), EVI->idx_end()));
128
129 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst))
130 return hash_combine(IVI->getOpcode(), IVI->getOperand(0),
131 IVI->getOperand(1),
132 hash_combine_range(IVI->idx_begin(), IVI->idx_end()));
133
134 assert((isa<CallInst>(Inst) || isa<BinaryOperator>(Inst) ||
135 isa<GetElementPtrInst>(Inst) || isa<SelectInst>(Inst) ||
136 isa<ExtractElementInst>(Inst) || isa<InsertElementInst>(Inst) ||
Chandler Carruth7253bba2015-01-24 11:33:55 +0000137 isa<ShuffleVectorInst>(Inst)) &&
138 "Invalid/unknown instruction");
Michael Ilseman336cb792012-10-09 16:57:38 +0000139
Chris Lattner02a97762011-01-03 01:10:08 +0000140 // Mix in the opcode.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000141 return hash_combine(
142 Inst->getOpcode(),
143 hash_combine_range(Inst->value_op_begin(), Inst->value_op_end()));
Chris Lattner18ae5432011-01-02 23:04:14 +0000144}
145
Chris Lattner79d83062011-01-03 02:20:48 +0000146bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) {
Chris Lattner18ae5432011-01-02 23:04:14 +0000147 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
148
149 if (LHS.isSentinel() || RHS.isSentinel())
150 return LHSI == RHSI;
Nadav Rotem465834c2012-07-24 10:51:42 +0000151
Chandler Carruth7253bba2015-01-24 11:33:55 +0000152 if (LHSI->getOpcode() != RHSI->getOpcode())
153 return false;
154 if (LHSI->isIdenticalTo(RHSI))
155 return true;
Michael Ilseman336cb792012-10-09 16:57:38 +0000156
157 // If we're not strictly identical, we still might be a commutable instruction
158 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
159 if (!LHSBinOp->isCommutative())
160 return false;
161
Chandler Carruth7253bba2015-01-24 11:33:55 +0000162 assert(isa<BinaryOperator>(RHSI) &&
163 "same opcode, but different instruction type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000164 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
165
166 // Check overflow attributes
167 if (isa<OverflowingBinaryOperator>(LHSBinOp)) {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000168 assert(isa<OverflowingBinaryOperator>(RHSBinOp) &&
169 "same opcode, but different operator type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000170 if (LHSBinOp->hasNoUnsignedWrap() != RHSBinOp->hasNoUnsignedWrap() ||
171 LHSBinOp->hasNoSignedWrap() != RHSBinOp->hasNoSignedWrap())
172 return false;
173 }
174
175 // Commuted equality
176 return LHSBinOp->getOperand(0) == RHSBinOp->getOperand(1) &&
Chandler Carruth7253bba2015-01-24 11:33:55 +0000177 LHSBinOp->getOperand(1) == RHSBinOp->getOperand(0);
Michael Ilseman336cb792012-10-09 16:57:38 +0000178 }
179 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000180 assert(isa<CmpInst>(RHSI) &&
181 "same opcode, but different instruction type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000182 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
183 // Commuted equality
184 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) &&
Chandler Carruth7253bba2015-01-24 11:33:55 +0000185 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) &&
186 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate();
Michael Ilseman336cb792012-10-09 16:57:38 +0000187 }
188
189 return false;
Chris Lattner18ae5432011-01-02 23:04:14 +0000190}
191
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000192//===----------------------------------------------------------------------===//
Nadav Rotem465834c2012-07-24 10:51:42 +0000193// CallValue
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000194//===----------------------------------------------------------------------===//
195
196namespace {
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000197/// \brief Struct representing the available call values in the scoped hash
198/// table.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000199struct CallValue {
200 Instruction *Inst;
Nadav Rotem465834c2012-07-24 10:51:42 +0000201
Chandler Carruth7253bba2015-01-24 11:33:55 +0000202 CallValue(Instruction *I) : Inst(I) {
203 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
204 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000205
Chandler Carruth7253bba2015-01-24 11:33:55 +0000206 bool isSentinel() const {
207 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() ||
208 Inst == DenseMapInfo<Instruction *>::getTombstoneKey();
209 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000210
Chandler Carruth7253bba2015-01-24 11:33:55 +0000211 static bool canHandle(Instruction *Inst) {
212 // Don't value number anything that returns void.
213 if (Inst->getType()->isVoidTy())
214 return false;
Nadav Rotem465834c2012-07-24 10:51:42 +0000215
Chandler Carruth7253bba2015-01-24 11:33:55 +0000216 CallInst *CI = dyn_cast<CallInst>(Inst);
217 if (!CI || !CI->onlyReadsMemory())
218 return false;
219 return true;
220 }
221};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000222}
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000223
224namespace llvm {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000225template <> struct DenseMapInfo<CallValue> {
226 static inline CallValue getEmptyKey() {
227 return DenseMapInfo<Instruction *>::getEmptyKey();
228 }
229 static inline CallValue getTombstoneKey() {
230 return DenseMapInfo<Instruction *>::getTombstoneKey();
231 }
232 static unsigned getHashValue(CallValue Val);
233 static bool isEqual(CallValue LHS, CallValue RHS);
234};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000235}
Chandler Carruth7253bba2015-01-24 11:33:55 +0000236
Chris Lattner92bb0f92011-01-03 03:41:27 +0000237unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000238 Instruction *Inst = Val.Inst;
Benjamin Kramer6ab86b12015-02-01 12:30:59 +0000239 // Hash all of the operands as pointers and mix in the opcode.
240 return hash_combine(
241 Inst->getOpcode(),
242 hash_combine_range(Inst->value_op_begin(), Inst->value_op_end()));
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000243}
244
Chris Lattner92bb0f92011-01-03 03:41:27 +0000245bool DenseMapInfo<CallValue>::isEqual(CallValue LHS, CallValue RHS) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000246 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000247 if (LHS.isSentinel() || RHS.isSentinel())
248 return LHSI == RHSI;
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000249 return LHSI->isIdenticalTo(RHSI);
250}
251
Chris Lattner79d83062011-01-03 02:20:48 +0000252//===----------------------------------------------------------------------===//
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000253// EarlyCSE implementation
Chris Lattner79d83062011-01-03 02:20:48 +0000254//===----------------------------------------------------------------------===//
255
Chris Lattner18ae5432011-01-02 23:04:14 +0000256namespace {
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000257/// \brief A simple and fast domtree-based CSE pass.
258///
259/// This pass does a simple depth-first walk over the dominator tree,
260/// eliminating trivially redundant instructions and using instsimplify to
261/// canonicalize things as it goes. It is intended to be fast and catch obvious
262/// cases so that instcombine and other passes are more effective. It is
263/// expected that a later pass of GVN will catch the interesting/hard cases.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000264class EarlyCSE {
Chris Lattner704541b2011-01-02 21:47:05 +0000265public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000266 Function &F;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000267 const TargetLibraryInfo &TLI;
268 const TargetTransformInfo &TTI;
269 DominatorTree &DT;
270 AssumptionCache &AC;
Chandler Carruth7253bba2015-01-24 11:33:55 +0000271 typedef RecyclingAllocator<
272 BumpPtrAllocator, ScopedHashTableVal<SimpleValue, Value *>> AllocatorTy;
273 typedef ScopedHashTable<SimpleValue, Value *, DenseMapInfo<SimpleValue>,
Chris Lattnerd815f692011-01-03 01:42:46 +0000274 AllocatorTy> ScopedHTType;
Nadav Rotem465834c2012-07-24 10:51:42 +0000275
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000276 /// \brief A scoped hash table of the current values of all of our simple
277 /// scalar expressions.
278 ///
279 /// As we walk down the domtree, we look to see if instructions are in this:
280 /// if so, we replace them with what we find, otherwise we insert them so
281 /// that dominated values can succeed in their lookup.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000282 ScopedHTType AvailableValues;
Nadav Rotem465834c2012-07-24 10:51:42 +0000283
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000284 /// \brief A scoped hash table of the current values of loads.
285 ///
286 /// This allows us to get efficient access to dominating loads when we have
287 /// a fully redundant load. In addition to the most recent load, we keep
288 /// track of a generation count of the read, which is compared against the
289 /// current generation count. The current generation count is incremented
290 /// after every possibly writing memory operation, which ensures that we only
291 /// CSE loads with other loads that have no intervening store.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000292 typedef RecyclingAllocator<
293 BumpPtrAllocator,
294 ScopedHashTableVal<Value *, std::pair<Value *, unsigned>>>
295 LoadMapAllocator;
296 typedef ScopedHashTable<Value *, std::pair<Value *, unsigned>,
297 DenseMapInfo<Value *>, LoadMapAllocator> LoadHTType;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000298 LoadHTType AvailableLoads;
Nadav Rotem465834c2012-07-24 10:51:42 +0000299
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000300 /// \brief A scoped hash table of the current values of read-only call
301 /// values.
302 ///
303 /// It uses the same generation count as loads.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000304 typedef ScopedHashTable<CallValue, std::pair<Value *, unsigned>> CallHTType;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000305 CallHTType AvailableCalls;
Nadav Rotem465834c2012-07-24 10:51:42 +0000306
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000307 /// \brief This is the current generation of the memory value.
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000308 unsigned CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000309
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000310 /// \brief Set up the EarlyCSE runner for a particular function.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000311 EarlyCSE(Function &F, const TargetLibraryInfo &TLI,
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000312 const TargetTransformInfo &TTI, DominatorTree &DT,
313 AssumptionCache &AC)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000314 : F(F), TLI(TLI), TTI(TTI), DT(DT), AC(AC), CurrentGeneration(0) {}
Chris Lattner704541b2011-01-02 21:47:05 +0000315
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000316 bool run();
Chris Lattner704541b2011-01-02 21:47:05 +0000317
318private:
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000319 // Almost a POD, but needs to call the constructors for the scoped hash
320 // tables so that a new scope gets pushed on. These are RAII so that the
321 // scope gets popped when the NodeScope is destroyed.
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000322 class NodeScope {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000323 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000324 NodeScope(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
325 CallHTType &AvailableCalls)
326 : Scope(AvailableValues), LoadScope(AvailableLoads),
327 CallScope(AvailableCalls) {}
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000328
Chandler Carruth7253bba2015-01-24 11:33:55 +0000329 private:
Aaron Ballmanf9a18972015-02-15 22:54:22 +0000330 NodeScope(const NodeScope &) = delete;
331 void operator=(const NodeScope &) = delete;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000332
333 ScopedHTType::ScopeTy Scope;
334 LoadHTType::ScopeTy LoadScope;
335 CallHTType::ScopeTy CallScope;
336 };
337
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000338 // Contains all the needed information to create a stack for doing a depth
339 // first tranversal of the tree. This includes scopes for values, loads, and
340 // calls as well as the generation. There is a child iterator so that the
341 // children do not need to be store spearately.
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000342 class StackNode {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000343 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000344 StackNode(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
345 CallHTType &AvailableCalls, unsigned cg, DomTreeNode *n,
Chandler Carruth7253bba2015-01-24 11:33:55 +0000346 DomTreeNode::iterator child, DomTreeNode::iterator end)
347 : CurrentGeneration(cg), ChildGeneration(cg), Node(n), ChildIter(child),
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000348 EndIter(end), Scopes(AvailableValues, AvailableLoads, AvailableCalls),
Chandler Carruth7253bba2015-01-24 11:33:55 +0000349 Processed(false) {}
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000350
351 // Accessors.
352 unsigned currentGeneration() { return CurrentGeneration; }
353 unsigned childGeneration() { return ChildGeneration; }
354 void childGeneration(unsigned generation) { ChildGeneration = generation; }
355 DomTreeNode *node() { return Node; }
356 DomTreeNode::iterator childIter() { return ChildIter; }
357 DomTreeNode *nextChild() {
358 DomTreeNode *child = *ChildIter;
359 ++ChildIter;
360 return child;
361 }
362 DomTreeNode::iterator end() { return EndIter; }
363 bool isProcessed() { return Processed; }
364 void process() { Processed = true; }
365
Chandler Carruth7253bba2015-01-24 11:33:55 +0000366 private:
Aaron Ballmanf9a18972015-02-15 22:54:22 +0000367 StackNode(const StackNode &) = delete;
368 void operator=(const StackNode &) = delete;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000369
370 // Members.
371 unsigned CurrentGeneration;
372 unsigned ChildGeneration;
373 DomTreeNode *Node;
374 DomTreeNode::iterator ChildIter;
375 DomTreeNode::iterator EndIter;
376 NodeScope Scopes;
377 bool Processed;
378 };
379
Chad Rosierf9327d62015-01-26 22:51:15 +0000380 /// \brief Wrapper class to handle memory instructions, including loads,
381 /// stores and intrinsic loads and stores defined by the target.
382 class ParseMemoryInst {
383 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000384 ParseMemoryInst(Instruction *Inst, const TargetTransformInfo &TTI)
Chad Rosierf9327d62015-01-26 22:51:15 +0000385 : Load(false), Store(false), Vol(false), MayReadFromMemory(false),
386 MayWriteToMemory(false), MatchingId(-1), Ptr(nullptr) {
387 MayReadFromMemory = Inst->mayReadFromMemory();
388 MayWriteToMemory = Inst->mayWriteToMemory();
389 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) {
390 MemIntrinsicInfo Info;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000391 if (!TTI.getTgtMemIntrinsic(II, Info))
Chad Rosierf9327d62015-01-26 22:51:15 +0000392 return;
393 if (Info.NumMemRefs == 1) {
394 Store = Info.WriteMem;
395 Load = Info.ReadMem;
396 MatchingId = Info.MatchingId;
397 MayReadFromMemory = Info.ReadMem;
398 MayWriteToMemory = Info.WriteMem;
399 Vol = Info.Vol;
400 Ptr = Info.PtrVal;
401 }
402 } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
403 Load = true;
404 Vol = !LI->isSimple();
405 Ptr = LI->getPointerOperand();
406 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
407 Store = true;
408 Vol = !SI->isSimple();
409 Ptr = SI->getPointerOperand();
410 }
411 }
412 bool isLoad() { return Load; }
413 bool isStore() { return Store; }
414 bool isVolatile() { return Vol; }
415 bool isMatchingMemLoc(const ParseMemoryInst &Inst) {
416 return Ptr == Inst.Ptr && MatchingId == Inst.MatchingId;
417 }
418 bool isValid() { return Ptr != nullptr; }
419 int getMatchingId() { return MatchingId; }
420 Value *getPtr() { return Ptr; }
421 bool mayReadFromMemory() { return MayReadFromMemory; }
422 bool mayWriteToMemory() { return MayWriteToMemory; }
423
424 private:
425 bool Load;
426 bool Store;
427 bool Vol;
428 bool MayReadFromMemory;
429 bool MayWriteToMemory;
430 // For regular (non-intrinsic) loads/stores, this is set to -1. For
431 // intrinsic loads/stores, the id is retrieved from the corresponding
432 // field in the MemIntrinsicInfo structure. That field contains
433 // non-negative values only.
434 int MatchingId;
435 Value *Ptr;
436 };
437
Chris Lattner18ae5432011-01-02 23:04:14 +0000438 bool processNode(DomTreeNode *Node);
Nadav Rotem465834c2012-07-24 10:51:42 +0000439
Chad Rosierf9327d62015-01-26 22:51:15 +0000440 Value *getOrCreateResult(Value *Inst, Type *ExpectedType) const {
441 if (LoadInst *LI = dyn_cast<LoadInst>(Inst))
442 return LI;
443 else if (StoreInst *SI = dyn_cast<StoreInst>(Inst))
444 return SI->getValueOperand();
445 assert(isa<IntrinsicInst>(Inst) && "Instruction not supported");
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000446 return TTI.getOrCreateResultFromMemIntrinsic(cast<IntrinsicInst>(Inst),
447 ExpectedType);
Chad Rosierf9327d62015-01-26 22:51:15 +0000448 }
Chris Lattner704541b2011-01-02 21:47:05 +0000449};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000450}
Chris Lattner704541b2011-01-02 21:47:05 +0000451
Chris Lattner18ae5432011-01-02 23:04:14 +0000452bool EarlyCSE::processNode(DomTreeNode *Node) {
Chris Lattner18ae5432011-01-02 23:04:14 +0000453 BasicBlock *BB = Node->getBlock();
Nadav Rotem465834c2012-07-24 10:51:42 +0000454
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000455 // If this block has a single predecessor, then the predecessor is the parent
456 // of the domtree node and all of the live out memory values are still current
457 // in this block. If this block has multiple predecessors, then they could
458 // have invalidated the live-out memory values of our parent value. For now,
459 // just be conservative and invalidate memory if this block has multiple
460 // predecessors.
Craig Topperf40110f2014-04-25 05:29:35 +0000461 if (!BB->getSinglePredecessor())
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000462 ++CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000463
Philip Reames7c78ef72015-05-22 23:53:24 +0000464 // If this node has a single predecessor which ends in a conditional branch,
465 // we can infer the value of the branch condition given that we took this
466 // path. We need the single predeccesor to ensure there's not another path
467 // which reaches this block where the condition might hold a different
468 // value. Since we're adding this to the scoped hash table (like any other
469 // def), it will have been popped if we encounter a future merge block.
470 if (BasicBlock *Pred = BB->getSinglePredecessor())
471 if (auto *BI = dyn_cast<BranchInst>(Pred->getTerminator()))
472 if (BI->isConditional())
473 if (auto *CondInst = dyn_cast<Instruction>(BI->getCondition()))
474 if (SimpleValue::canHandle(CondInst)) {
475 assert(BI->getSuccessor(0) == BB || BI->getSuccessor(1) == BB);
476 auto *ConditionalConstant = (BI->getSuccessor(0) == BB) ?
477 ConstantInt::getTrue(BB->getContext()) :
478 ConstantInt::getFalse(BB->getContext());
479 AvailableValues.insert(CondInst, ConditionalConstant);
480 DEBUG(dbgs() << "EarlyCSE CVP: Add conditional value for '"
481 << CondInst->getName() << "' as " << *ConditionalConstant
482 << " in " << BB->getName() << "\n");
483 // Replace all dominated uses with the known value
484 replaceDominatedUsesWith(CondInst, ConditionalConstant, DT,
485 BasicBlockEdge(Pred, BB));
486 }
487
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000488 /// LastStore - Keep track of the last non-volatile store that we saw... for
489 /// as long as there in no instruction that reads memory. If we see a store
490 /// to the same location, we delete the dead store. This zaps trivial dead
491 /// stores which can occur in bitfield code among other things.
Chad Rosierf9327d62015-01-26 22:51:15 +0000492 Instruction *LastStore = nullptr;
Nadav Rotem465834c2012-07-24 10:51:42 +0000493
Chris Lattner18ae5432011-01-02 23:04:14 +0000494 bool Changed = false;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000495 const DataLayout &DL = BB->getModule()->getDataLayout();
Chris Lattner18ae5432011-01-02 23:04:14 +0000496
497 // See if any instructions in the block can be eliminated. If so, do it. If
498 // not, add them to AvailableValues.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000499 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
Chris Lattner18ae5432011-01-02 23:04:14 +0000500 Instruction *Inst = I++;
Nadav Rotem465834c2012-07-24 10:51:42 +0000501
Chris Lattner18ae5432011-01-02 23:04:14 +0000502 // Dead instructions should just be removed.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000503 if (isInstructionTriviallyDead(Inst, &TLI)) {
Chris Lattner8fac5db2011-01-02 23:19:45 +0000504 DEBUG(dbgs() << "EarlyCSE DCE: " << *Inst << '\n');
Chris Lattner18ae5432011-01-02 23:04:14 +0000505 Inst->eraseFromParent();
506 Changed = true;
Chris Lattner8fac5db2011-01-02 23:19:45 +0000507 ++NumSimplify;
Chris Lattner18ae5432011-01-02 23:04:14 +0000508 continue;
509 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000510
Hal Finkel1e16fa32014-11-03 20:21:32 +0000511 // Skip assume intrinsics, they don't really have side effects (although
512 // they're marked as such to ensure preservation of control dependencies),
513 // and this pass will not disturb any of the assumption's control
514 // dependencies.
515 if (match(Inst, m_Intrinsic<Intrinsic::assume>())) {
516 DEBUG(dbgs() << "EarlyCSE skipping assumption: " << *Inst << '\n');
517 continue;
518 }
519
Chris Lattner18ae5432011-01-02 23:04:14 +0000520 // If the instruction can be simplified (e.g. X+0 = X) then replace it with
521 // its simpler value.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000522 if (Value *V = SimplifyInstruction(Inst, DL, &TLI, &DT, &AC)) {
Chris Lattner8fac5db2011-01-02 23:19:45 +0000523 DEBUG(dbgs() << "EarlyCSE Simplify: " << *Inst << " to: " << *V << '\n');
Chris Lattner18ae5432011-01-02 23:04:14 +0000524 Inst->replaceAllUsesWith(V);
525 Inst->eraseFromParent();
526 Changed = true;
Chris Lattner8fac5db2011-01-02 23:19:45 +0000527 ++NumSimplify;
Chris Lattner18ae5432011-01-02 23:04:14 +0000528 continue;
529 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000530
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000531 // If this is a simple instruction that we can value number, process it.
532 if (SimpleValue::canHandle(Inst)) {
533 // See if the instruction has an available value. If so, use it.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000534 if (Value *V = AvailableValues.lookup(Inst)) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000535 DEBUG(dbgs() << "EarlyCSE CSE: " << *Inst << " to: " << *V << '\n');
536 Inst->replaceAllUsesWith(V);
537 Inst->eraseFromParent();
538 Changed = true;
539 ++NumCSE;
540 continue;
541 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000542
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000543 // Otherwise, just remember that this value is available.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000544 AvailableValues.insert(Inst, Inst);
Chris Lattner18ae5432011-01-02 23:04:14 +0000545 continue;
546 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000547
Chad Rosierf9327d62015-01-26 22:51:15 +0000548 ParseMemoryInst MemInst(Inst, TTI);
Chris Lattner92bb0f92011-01-03 03:41:27 +0000549 // If this is a non-volatile load, process it.
Chad Rosierf9327d62015-01-26 22:51:15 +0000550 if (MemInst.isValid() && MemInst.isLoad()) {
Chris Lattner92bb0f92011-01-03 03:41:27 +0000551 // Ignore volatile loads.
Chad Rosierf9327d62015-01-26 22:51:15 +0000552 if (MemInst.isVolatile()) {
Craig Topperf40110f2014-04-25 05:29:35 +0000553 LastStore = nullptr;
David Majnemer76793002015-02-10 23:09:43 +0000554 // Don't CSE across synchronization boundaries.
555 if (Inst->mayWriteToMemory())
556 ++CurrentGeneration;
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000557 continue;
558 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000559
Chris Lattner92bb0f92011-01-03 03:41:27 +0000560 // If we have an available version of this load, and if it is the right
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000561 // generation, replace this instruction.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000562 std::pair<Value *, unsigned> InVal =
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000563 AvailableLoads.lookup(MemInst.getPtr());
Craig Topperf40110f2014-04-25 05:29:35 +0000564 if (InVal.first != nullptr && InVal.second == CurrentGeneration) {
Chad Rosierf9327d62015-01-26 22:51:15 +0000565 Value *Op = getOrCreateResult(InVal.first, Inst->getType());
566 if (Op != nullptr) {
567 DEBUG(dbgs() << "EarlyCSE CSE LOAD: " << *Inst
568 << " to: " << *InVal.first << '\n');
569 if (!Inst->use_empty())
570 Inst->replaceAllUsesWith(Op);
571 Inst->eraseFromParent();
572 Changed = true;
573 ++NumCSELoad;
574 continue;
575 }
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000576 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000577
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000578 // Otherwise, remember that we have this instruction.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000579 AvailableLoads.insert(MemInst.getPtr(), std::pair<Value *, unsigned>(
580 Inst, CurrentGeneration));
Craig Topperf40110f2014-04-25 05:29:35 +0000581 LastStore = nullptr;
Chris Lattner92bb0f92011-01-03 03:41:27 +0000582 continue;
583 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000584
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000585 // If this instruction may read from memory, forget LastStore.
Chad Rosierf9327d62015-01-26 22:51:15 +0000586 // Load/store intrinsics will indicate both a read and a write to
587 // memory. The target may override this (e.g. so that a store intrinsic
588 // does not read from memory, and thus will be treated the same as a
589 // regular store for commoning purposes).
590 if (Inst->mayReadFromMemory() &&
591 !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
Craig Topperf40110f2014-04-25 05:29:35 +0000592 LastStore = nullptr;
Nadav Rotem465834c2012-07-24 10:51:42 +0000593
Chris Lattner92bb0f92011-01-03 03:41:27 +0000594 // If this is a read-only call, process it.
595 if (CallValue::canHandle(Inst)) {
596 // If we have an available version of this call, and if it is the right
597 // generation, replace this instruction.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000598 std::pair<Value *, unsigned> InVal = AvailableCalls.lookup(Inst);
Craig Topperf40110f2014-04-25 05:29:35 +0000599 if (InVal.first != nullptr && InVal.second == CurrentGeneration) {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000600 DEBUG(dbgs() << "EarlyCSE CSE CALL: " << *Inst
601 << " to: " << *InVal.first << '\n');
602 if (!Inst->use_empty())
603 Inst->replaceAllUsesWith(InVal.first);
Chris Lattner92bb0f92011-01-03 03:41:27 +0000604 Inst->eraseFromParent();
605 Changed = true;
606 ++NumCSECall;
607 continue;
608 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000609
Chris Lattner92bb0f92011-01-03 03:41:27 +0000610 // Otherwise, remember that we have this instruction.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000611 AvailableCalls.insert(
Chandler Carruth7253bba2015-01-24 11:33:55 +0000612 Inst, std::pair<Value *, unsigned>(Inst, CurrentGeneration));
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000613 continue;
614 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000615
Philip Reamesdfd890d2015-08-27 01:32:33 +0000616 // A release fence requires that all stores complete before it, but does
617 // not prevent the reordering of following loads 'before' the fence. As a
618 // result, we don't need to consider it as writing to memory and don't need
619 // to advance the generation. We do need to prevent DSE across the fence,
620 // but that's handled above.
621 if (FenceInst *FI = dyn_cast<FenceInst>(Inst))
622 if (FI->getOrdering() == Release) {
623 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above");
624 continue;
625 }
626
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000627 // Okay, this isn't something we can CSE at all. Check to see if it is
628 // something that could modify memory. If so, our available memory values
629 // cannot be used so bump the generation count.
Chris Lattnere0e32a92011-01-03 03:46:34 +0000630 if (Inst->mayWriteToMemory()) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000631 ++CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000632
Chad Rosierf9327d62015-01-26 22:51:15 +0000633 if (MemInst.isValid() && MemInst.isStore()) {
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000634 // We do a trivial form of DSE if there are two stores to the same
635 // location with no intervening loads. Delete the earlier store.
Chad Rosierf9327d62015-01-26 22:51:15 +0000636 if (LastStore) {
637 ParseMemoryInst LastStoreMemInst(LastStore, TTI);
638 if (LastStoreMemInst.isMatchingMemLoc(MemInst)) {
639 DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore
640 << " due to: " << *Inst << '\n');
641 LastStore->eraseFromParent();
642 Changed = true;
643 ++NumDSE;
644 LastStore = nullptr;
645 }
Philip Reames018dbf12014-11-18 17:46:32 +0000646 // fallthrough - we can exploit information about this store
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000647 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000648
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000649 // Okay, we just invalidated anything we knew about loaded values. Try
650 // to salvage *something* by remembering that the stored value is a live
651 // version of the pointer. It is safe to forward from volatile stores
652 // to non-volatile loads, so we don't have to check for volatility of
653 // the store.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000654 AvailableLoads.insert(MemInst.getPtr(), std::pair<Value *, unsigned>(
655 Inst, CurrentGeneration));
Nadav Rotem465834c2012-07-24 10:51:42 +0000656
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000657 // Remember that this was the last store we saw for DSE.
Chad Rosierf9327d62015-01-26 22:51:15 +0000658 if (!MemInst.isVolatile())
659 LastStore = Inst;
Chris Lattnere0e32a92011-01-03 03:46:34 +0000660 }
661 }
Chris Lattner18ae5432011-01-02 23:04:14 +0000662 }
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000663
Chris Lattner18ae5432011-01-02 23:04:14 +0000664 return Changed;
Chris Lattner704541b2011-01-02 21:47:05 +0000665}
Chris Lattner18ae5432011-01-02 23:04:14 +0000666
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000667bool EarlyCSE::run() {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000668 // Note, deque is being used here because there is significant performance
669 // gains over vector when the container becomes very large due to the
670 // specific access patterns. For more information see the mailing list
671 // discussion on this:
Tanya Lattner0d28f802015-08-05 03:51:17 +0000672 // http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20120116/135228.html
Lenny Maiorani9eefc812014-09-20 13:29:20 +0000673 std::deque<StackNode *> nodesToProcess;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000674
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000675 bool Changed = false;
676
677 // Process the root node.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000678 nodesToProcess.push_back(new StackNode(
679 AvailableValues, AvailableLoads, AvailableCalls, CurrentGeneration,
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000680 DT.getRootNode(), DT.getRootNode()->begin(), DT.getRootNode()->end()));
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000681
682 // Save the current generation.
683 unsigned LiveOutGeneration = CurrentGeneration;
684
685 // Process the stack.
686 while (!nodesToProcess.empty()) {
687 // Grab the first item off the stack. Set the current generation, remove
688 // the node from the stack, and process it.
Michael Gottesman2bf01732013-12-05 18:42:12 +0000689 StackNode *NodeToProcess = nodesToProcess.back();
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000690
691 // Initialize class members.
692 CurrentGeneration = NodeToProcess->currentGeneration();
693
694 // Check if the node needs to be processed.
695 if (!NodeToProcess->isProcessed()) {
696 // Process the node.
697 Changed |= processNode(NodeToProcess->node());
698 NodeToProcess->childGeneration(CurrentGeneration);
699 NodeToProcess->process();
700 } else if (NodeToProcess->childIter() != NodeToProcess->end()) {
701 // Push the next child onto the stack.
702 DomTreeNode *child = NodeToProcess->nextChild();
Michael Gottesman2bf01732013-12-05 18:42:12 +0000703 nodesToProcess.push_back(
Chandler Carruth7253bba2015-01-24 11:33:55 +0000704 new StackNode(AvailableValues, AvailableLoads, AvailableCalls,
705 NodeToProcess->childGeneration(), child, child->begin(),
706 child->end()));
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000707 } else {
708 // It has been processed, and there are no more children to process,
709 // so delete it and pop it off the stack.
710 delete NodeToProcess;
Michael Gottesman2bf01732013-12-05 18:42:12 +0000711 nodesToProcess.pop_back();
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000712 }
713 } // while (!nodes...)
714
715 // Reset the current generation.
716 CurrentGeneration = LiveOutGeneration;
717
718 return Changed;
Chris Lattner18ae5432011-01-02 23:04:14 +0000719}
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000720
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000721PreservedAnalyses EarlyCSEPass::run(Function &F,
722 AnalysisManager<Function> *AM) {
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000723 auto &TLI = AM->getResult<TargetLibraryAnalysis>(F);
724 auto &TTI = AM->getResult<TargetIRAnalysis>(F);
725 auto &DT = AM->getResult<DominatorTreeAnalysis>(F);
726 auto &AC = AM->getResult<AssumptionAnalysis>(F);
727
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000728 EarlyCSE CSE(F, TLI, TTI, DT, AC);
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000729
730 if (!CSE.run())
731 return PreservedAnalyses::all();
732
733 // CSE preserves the dominator tree because it doesn't mutate the CFG.
734 // FIXME: Bundle this with other CFG-preservation.
735 PreservedAnalyses PA;
736 PA.preserve<DominatorTreeAnalysis>();
737 return PA;
738}
739
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000740namespace {
741/// \brief A simple and fast domtree-based CSE pass.
742///
743/// This pass does a simple depth-first walk over the dominator tree,
744/// eliminating trivially redundant instructions and using instsimplify to
745/// canonicalize things as it goes. It is intended to be fast and catch obvious
746/// cases so that instcombine and other passes are more effective. It is
747/// expected that a later pass of GVN will catch the interesting/hard cases.
748class EarlyCSELegacyPass : public FunctionPass {
749public:
750 static char ID;
751
752 EarlyCSELegacyPass() : FunctionPass(ID) {
753 initializeEarlyCSELegacyPassPass(*PassRegistry::getPassRegistry());
754 }
755
756 bool runOnFunction(Function &F) override {
757 if (skipOptnoneFunction(F))
758 return false;
759
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000760 auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Chandler Carruthfdb9c572015-02-01 12:01:35 +0000761 auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000762 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
763 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
764
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000765 EarlyCSE CSE(F, TLI, TTI, DT, AC);
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000766
767 return CSE.run();
768 }
769
770 void getAnalysisUsage(AnalysisUsage &AU) const override {
771 AU.addRequired<AssumptionCacheTracker>();
772 AU.addRequired<DominatorTreeWrapperPass>();
773 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +0000774 AU.addRequired<TargetTransformInfoWrapperPass>();
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000775 AU.setPreservesCFG();
776 }
777};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000778}
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000779
780char EarlyCSELegacyPass::ID = 0;
781
782FunctionPass *llvm::createEarlyCSEPass() { return new EarlyCSELegacyPass(); }
783
784INITIALIZE_PASS_BEGIN(EarlyCSELegacyPass, "early-cse", "Early CSE", false,
785 false)
Chandler Carruth705b1852015-01-31 03:43:40 +0000786INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000787INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
788INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
789INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
790INITIALIZE_PASS_END(EarlyCSELegacyPass, "early-cse", "Early CSE", false, false)