blob: 16e08ee58fbeba3f791ef36a513c99d56fe5b39b [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"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000019#include "llvm/Analysis/AssumptionCache.h"
Geoff Berry354fac22016-04-28 14:59:27 +000020#include "llvm/Analysis/GlobalsModRef.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000021#include "llvm/Analysis/InstructionSimplify.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000022#include "llvm/Analysis/TargetLibraryInfo.h"
Chad Rosierf9327d62015-01-26 22:51:15 +000023#include "llvm/Analysis/TargetTransformInfo.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000025#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Instructions.h"
Hal Finkel1e16fa32014-11-03 20:21:32 +000027#include "llvm/IR/IntrinsicInst.h"
28#include "llvm/IR/PatternMatch.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000029#include "llvm/Pass.h"
30#include "llvm/Support/Debug.h"
31#include "llvm/Support/RecyclingAllocator.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000032#include "llvm/Support/raw_ostream.h"
Chandler Carruthe8c686a2015-02-01 10:51:23 +000033#include "llvm/Transforms/Scalar.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000034#include "llvm/Transforms/Utils/Local.h"
Geoff Berry8d846052016-08-31 19:24:10 +000035#include "llvm/Transforms/Utils/MemorySSA.h"
Lenny Maiorani9eefc812014-09-20 13:29:20 +000036#include <deque>
Chris Lattner704541b2011-01-02 21:47:05 +000037using namespace llvm;
Hal Finkel1e16fa32014-11-03 20:21:32 +000038using namespace llvm::PatternMatch;
Chris Lattner704541b2011-01-02 21:47:05 +000039
Chandler Carruth964daaa2014-04-22 02:55:47 +000040#define DEBUG_TYPE "early-cse"
41
Chris Lattner4cb36542011-01-03 03:28:23 +000042STATISTIC(NumSimplify, "Number of instructions simplified or DCE'd");
43STATISTIC(NumCSE, "Number of instructions CSE'd");
Chad Rosier1a4bc112016-04-22 18:47:21 +000044STATISTIC(NumCSECVP, "Number of compare instructions CVP'd");
Chris Lattner92bb0f92011-01-03 03:41:27 +000045STATISTIC(NumCSELoad, "Number of load instructions CSE'd");
46STATISTIC(NumCSECall, "Number of call instructions CSE'd");
Chris Lattner9e5e9ed2011-01-03 04:17:24 +000047STATISTIC(NumDSE, "Number of trivial dead stores removed");
Chris Lattnerb9a8efc2011-01-03 03:18:43 +000048
Chris Lattner79d83062011-01-03 02:20:48 +000049//===----------------------------------------------------------------------===//
Nadav Rotem465834c2012-07-24 10:51:42 +000050// SimpleValue
Chris Lattner79d83062011-01-03 02:20:48 +000051//===----------------------------------------------------------------------===//
52
Chris Lattner704541b2011-01-02 21:47:05 +000053namespace {
Chandler Carruth9dea5cd2015-01-24 11:44:32 +000054/// \brief Struct representing the available values in the scoped hash table.
Chandler Carruth7253bba2015-01-24 11:33:55 +000055struct SimpleValue {
56 Instruction *Inst;
Nadav Rotem465834c2012-07-24 10:51:42 +000057
Chandler Carruth7253bba2015-01-24 11:33:55 +000058 SimpleValue(Instruction *I) : Inst(I) {
59 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
60 }
Nadav Rotem465834c2012-07-24 10:51:42 +000061
Chandler Carruth7253bba2015-01-24 11:33:55 +000062 bool isSentinel() const {
63 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() ||
64 Inst == DenseMapInfo<Instruction *>::getTombstoneKey();
65 }
Nadav Rotem465834c2012-07-24 10:51:42 +000066
Chandler Carruth7253bba2015-01-24 11:33:55 +000067 static bool canHandle(Instruction *Inst) {
68 // This can only handle non-void readnone functions.
69 if (CallInst *CI = dyn_cast<CallInst>(Inst))
70 return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy();
71 return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) ||
72 isa<GetElementPtrInst>(Inst) || isa<CmpInst>(Inst) ||
73 isa<SelectInst>(Inst) || isa<ExtractElementInst>(Inst) ||
74 isa<InsertElementInst>(Inst) || isa<ShuffleVectorInst>(Inst) ||
75 isa<ExtractValueInst>(Inst) || isa<InsertValueInst>(Inst);
76 }
77};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000078}
Chris Lattner18ae5432011-01-02 23:04:14 +000079
80namespace llvm {
Chandler Carruth7253bba2015-01-24 11:33:55 +000081template <> struct DenseMapInfo<SimpleValue> {
Chris Lattner79d83062011-01-03 02:20:48 +000082 static inline SimpleValue getEmptyKey() {
Chandler Carruth7253bba2015-01-24 11:33:55 +000083 return DenseMapInfo<Instruction *>::getEmptyKey();
Chris Lattner18ae5432011-01-02 23:04:14 +000084 }
Chris Lattner79d83062011-01-03 02:20:48 +000085 static inline SimpleValue getTombstoneKey() {
Chandler Carruth7253bba2015-01-24 11:33:55 +000086 return DenseMapInfo<Instruction *>::getTombstoneKey();
Chris Lattner18ae5432011-01-02 23:04:14 +000087 }
Chris Lattner79d83062011-01-03 02:20:48 +000088 static unsigned getHashValue(SimpleValue Val);
89 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
Chris Lattner18ae5432011-01-02 23:04:14 +000090};
Alexander Kornienkof00654e2015-06-23 09:49:53 +000091}
Chris Lattner18ae5432011-01-02 23:04:14 +000092
Chris Lattner79d83062011-01-03 02:20:48 +000093unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
Chris Lattner18ae5432011-01-02 23:04:14 +000094 Instruction *Inst = Val.Inst;
Chris Lattner02a97762011-01-03 01:10:08 +000095 // Hash in all of the operands as pointers.
Chandler Carruth7253bba2015-01-24 11:33:55 +000096 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) {
Michael Ilseman336cb792012-10-09 16:57:38 +000097 Value *LHS = BinOp->getOperand(0);
98 Value *RHS = BinOp->getOperand(1);
99 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
100 std::swap(LHS, RHS);
Chris Lattner02a97762011-01-03 01:10:08 +0000101
Michael Ilseman336cb792012-10-09 16:57:38 +0000102 return hash_combine(BinOp->getOpcode(), LHS, RHS);
Chris Lattner02a97762011-01-03 01:10:08 +0000103 }
104
Michael Ilseman336cb792012-10-09 16:57:38 +0000105 if (CmpInst *CI = dyn_cast<CmpInst>(Inst)) {
106 Value *LHS = CI->getOperand(0);
107 Value *RHS = CI->getOperand(1);
108 CmpInst::Predicate Pred = CI->getPredicate();
109 if (Inst->getOperand(0) > Inst->getOperand(1)) {
110 std::swap(LHS, RHS);
111 Pred = CI->getSwappedPredicate();
112 }
113 return hash_combine(Inst->getOpcode(), Pred, LHS, RHS);
114 }
115
116 if (CastInst *CI = dyn_cast<CastInst>(Inst))
117 return hash_combine(CI->getOpcode(), CI->getType(), CI->getOperand(0));
118
119 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(Inst))
120 return hash_combine(EVI->getOpcode(), EVI->getOperand(0),
121 hash_combine_range(EVI->idx_begin(), EVI->idx_end()));
122
123 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst))
124 return hash_combine(IVI->getOpcode(), IVI->getOperand(0),
125 IVI->getOperand(1),
126 hash_combine_range(IVI->idx_begin(), IVI->idx_end()));
127
128 assert((isa<CallInst>(Inst) || isa<BinaryOperator>(Inst) ||
129 isa<GetElementPtrInst>(Inst) || isa<SelectInst>(Inst) ||
130 isa<ExtractElementInst>(Inst) || isa<InsertElementInst>(Inst) ||
Chandler Carruth7253bba2015-01-24 11:33:55 +0000131 isa<ShuffleVectorInst>(Inst)) &&
132 "Invalid/unknown instruction");
Michael Ilseman336cb792012-10-09 16:57:38 +0000133
Chris Lattner02a97762011-01-03 01:10:08 +0000134 // Mix in the opcode.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000135 return hash_combine(
136 Inst->getOpcode(),
137 hash_combine_range(Inst->value_op_begin(), Inst->value_op_end()));
Chris Lattner18ae5432011-01-02 23:04:14 +0000138}
139
Chris Lattner79d83062011-01-03 02:20:48 +0000140bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) {
Chris Lattner18ae5432011-01-02 23:04:14 +0000141 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
142
143 if (LHS.isSentinel() || RHS.isSentinel())
144 return LHSI == RHSI;
Nadav Rotem465834c2012-07-24 10:51:42 +0000145
Chandler Carruth7253bba2015-01-24 11:33:55 +0000146 if (LHSI->getOpcode() != RHSI->getOpcode())
147 return false;
David Majnemer9554c132016-04-22 06:37:45 +0000148 if (LHSI->isIdenticalToWhenDefined(RHSI))
Chandler Carruth7253bba2015-01-24 11:33:55 +0000149 return true;
Michael Ilseman336cb792012-10-09 16:57:38 +0000150
151 // If we're not strictly identical, we still might be a commutable instruction
152 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
153 if (!LHSBinOp->isCommutative())
154 return false;
155
Chandler Carruth7253bba2015-01-24 11:33:55 +0000156 assert(isa<BinaryOperator>(RHSI) &&
157 "same opcode, but different instruction type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000158 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
159
Michael Ilseman336cb792012-10-09 16:57:38 +0000160 // Commuted equality
161 return LHSBinOp->getOperand(0) == RHSBinOp->getOperand(1) &&
Chandler Carruth7253bba2015-01-24 11:33:55 +0000162 LHSBinOp->getOperand(1) == RHSBinOp->getOperand(0);
Michael Ilseman336cb792012-10-09 16:57:38 +0000163 }
164 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000165 assert(isa<CmpInst>(RHSI) &&
166 "same opcode, but different instruction type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000167 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
168 // Commuted equality
169 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) &&
Chandler Carruth7253bba2015-01-24 11:33:55 +0000170 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) &&
171 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate();
Michael Ilseman336cb792012-10-09 16:57:38 +0000172 }
173
174 return false;
Chris Lattner18ae5432011-01-02 23:04:14 +0000175}
176
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000177//===----------------------------------------------------------------------===//
Nadav Rotem465834c2012-07-24 10:51:42 +0000178// CallValue
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000179//===----------------------------------------------------------------------===//
180
181namespace {
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000182/// \brief Struct representing the available call values in the scoped hash
183/// table.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000184struct CallValue {
185 Instruction *Inst;
Nadav Rotem465834c2012-07-24 10:51:42 +0000186
Chandler Carruth7253bba2015-01-24 11:33:55 +0000187 CallValue(Instruction *I) : Inst(I) {
188 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
189 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000190
Chandler Carruth7253bba2015-01-24 11:33:55 +0000191 bool isSentinel() const {
192 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() ||
193 Inst == DenseMapInfo<Instruction *>::getTombstoneKey();
194 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000195
Chandler Carruth7253bba2015-01-24 11:33:55 +0000196 static bool canHandle(Instruction *Inst) {
197 // Don't value number anything that returns void.
198 if (Inst->getType()->isVoidTy())
199 return false;
Nadav Rotem465834c2012-07-24 10:51:42 +0000200
Chandler Carruth7253bba2015-01-24 11:33:55 +0000201 CallInst *CI = dyn_cast<CallInst>(Inst);
202 if (!CI || !CI->onlyReadsMemory())
203 return false;
204 return true;
205 }
206};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000207}
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000208
209namespace llvm {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000210template <> struct DenseMapInfo<CallValue> {
211 static inline CallValue getEmptyKey() {
212 return DenseMapInfo<Instruction *>::getEmptyKey();
213 }
214 static inline CallValue getTombstoneKey() {
215 return DenseMapInfo<Instruction *>::getTombstoneKey();
216 }
217 static unsigned getHashValue(CallValue Val);
218 static bool isEqual(CallValue LHS, CallValue RHS);
219};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000220}
Chandler Carruth7253bba2015-01-24 11:33:55 +0000221
Chris Lattner92bb0f92011-01-03 03:41:27 +0000222unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000223 Instruction *Inst = Val.Inst;
Benjamin Kramer6ab86b12015-02-01 12:30:59 +0000224 // Hash all of the operands as pointers and mix in the opcode.
225 return hash_combine(
226 Inst->getOpcode(),
227 hash_combine_range(Inst->value_op_begin(), Inst->value_op_end()));
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000228}
229
Chris Lattner92bb0f92011-01-03 03:41:27 +0000230bool DenseMapInfo<CallValue>::isEqual(CallValue LHS, CallValue RHS) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000231 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000232 if (LHS.isSentinel() || RHS.isSentinel())
233 return LHSI == RHSI;
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000234 return LHSI->isIdenticalTo(RHSI);
235}
236
Chris Lattner79d83062011-01-03 02:20:48 +0000237//===----------------------------------------------------------------------===//
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000238// EarlyCSE implementation
Chris Lattner79d83062011-01-03 02:20:48 +0000239//===----------------------------------------------------------------------===//
240
Chris Lattner18ae5432011-01-02 23:04:14 +0000241namespace {
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000242/// \brief A simple and fast domtree-based CSE pass.
243///
244/// This pass does a simple depth-first walk over the dominator tree,
245/// eliminating trivially redundant instructions and using instsimplify to
246/// canonicalize things as it goes. It is intended to be fast and catch obvious
247/// cases so that instcombine and other passes are more effective. It is
248/// expected that a later pass of GVN will catch the interesting/hard cases.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000249class EarlyCSE {
Chris Lattner704541b2011-01-02 21:47:05 +0000250public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000251 const TargetLibraryInfo &TLI;
252 const TargetTransformInfo &TTI;
253 DominatorTree &DT;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000254 AssumptionCache &AC;
Geoff Berry8d846052016-08-31 19:24:10 +0000255 MemorySSA *MSSA;
Chandler Carruth7253bba2015-01-24 11:33:55 +0000256 typedef RecyclingAllocator<
257 BumpPtrAllocator, ScopedHashTableVal<SimpleValue, Value *>> AllocatorTy;
258 typedef ScopedHashTable<SimpleValue, Value *, DenseMapInfo<SimpleValue>,
Chris Lattnerd815f692011-01-03 01:42:46 +0000259 AllocatorTy> ScopedHTType;
Nadav Rotem465834c2012-07-24 10:51:42 +0000260
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000261 /// \brief A scoped hash table of the current values of all of our simple
262 /// scalar expressions.
263 ///
264 /// As we walk down the domtree, we look to see if instructions are in this:
265 /// if so, we replace them with what we find, otherwise we insert them so
266 /// that dominated values can succeed in their lookup.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000267 ScopedHTType AvailableValues;
Nadav Rotem465834c2012-07-24 10:51:42 +0000268
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000269 /// A scoped hash table of the current values of previously encounted memory
270 /// locations.
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000271 ///
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000272 /// This allows us to get efficient access to dominating loads or stores when
273 /// we have a fully redundant load. In addition to the most recent load, we
274 /// keep track of a generation count of the read, which is compared against
275 /// the current generation count. The current generation count is incremented
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000276 /// after every possibly writing memory operation, which ensures that we only
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000277 /// CSE loads with other loads that have no intervening store. Ordering
278 /// events (such as fences or atomic instructions) increment the generation
279 /// count as well; essentially, we model these as writes to all possible
280 /// locations. Note that atomic and/or volatile loads and stores can be
281 /// present the table; it is the responsibility of the consumer to inspect
282 /// the atomicity/volatility if needed.
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000283 struct LoadValue {
Philip Reames32b55182016-05-06 01:13:58 +0000284 Instruction *DefInst;
Arnaud A. de Grandmaison859b2ac2015-10-09 09:23:01 +0000285 unsigned Generation;
286 int MatchingId;
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000287 bool IsAtomic;
Sanjoy Das07c65212016-06-16 20:47:57 +0000288 bool IsInvariant;
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000289 LoadValue()
Sanjoy Das07c65212016-06-16 20:47:57 +0000290 : DefInst(nullptr), Generation(0), MatchingId(-1), IsAtomic(false),
291 IsInvariant(false) {}
Geoff Berry5ae272c2016-04-28 15:22:37 +0000292 LoadValue(Instruction *Inst, unsigned Generation, unsigned MatchingId,
Sanjoy Das07c65212016-06-16 20:47:57 +0000293 bool IsAtomic, bool IsInvariant)
294 : DefInst(Inst), Generation(Generation), MatchingId(MatchingId),
295 IsAtomic(IsAtomic), IsInvariant(IsInvariant) {}
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000296 };
297 typedef RecyclingAllocator<BumpPtrAllocator,
298 ScopedHashTableVal<Value *, LoadValue>>
Chandler Carruth7253bba2015-01-24 11:33:55 +0000299 LoadMapAllocator;
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000300 typedef ScopedHashTable<Value *, LoadValue, DenseMapInfo<Value *>,
301 LoadMapAllocator> LoadHTType;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000302 LoadHTType AvailableLoads;
Nadav Rotem465834c2012-07-24 10:51:42 +0000303
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000304 /// \brief A scoped hash table of the current values of read-only call
305 /// values.
306 ///
307 /// It uses the same generation count as loads.
Geoff Berry2f64c202016-05-13 17:54:58 +0000308 typedef ScopedHashTable<CallValue, std::pair<Instruction *, unsigned>>
309 CallHTType;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000310 CallHTType AvailableCalls;
Nadav Rotem465834c2012-07-24 10:51:42 +0000311
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000312 /// \brief This is the current generation of the memory value.
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000313 unsigned CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000314
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000315 /// \brief Set up the EarlyCSE runner for a particular function.
Benjamin Kramer6db33382015-10-15 15:08:58 +0000316 EarlyCSE(const TargetLibraryInfo &TLI, const TargetTransformInfo &TTI,
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000317 DominatorTree &DT, AssumptionCache &AC, MemorySSA *MSSA)
318 : TLI(TLI), TTI(TTI), DT(DT), AC(AC), MSSA(MSSA), CurrentGeneration(0) {}
Chris Lattner704541b2011-01-02 21:47:05 +0000319
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000320 bool run();
Chris Lattner704541b2011-01-02 21:47:05 +0000321
322private:
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000323 // Almost a POD, but needs to call the constructors for the scoped hash
324 // tables so that a new scope gets pushed on. These are RAII so that the
325 // scope gets popped when the NodeScope is destroyed.
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000326 class NodeScope {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000327 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000328 NodeScope(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
329 CallHTType &AvailableCalls)
330 : Scope(AvailableValues), LoadScope(AvailableLoads),
331 CallScope(AvailableCalls) {}
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000332
Chandler Carruth7253bba2015-01-24 11:33:55 +0000333 private:
Aaron Ballmanf9a18972015-02-15 22:54:22 +0000334 NodeScope(const NodeScope &) = delete;
335 void operator=(const NodeScope &) = delete;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000336
337 ScopedHTType::ScopeTy Scope;
338 LoadHTType::ScopeTy LoadScope;
339 CallHTType::ScopeTy CallScope;
340 };
341
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000342 // Contains all the needed information to create a stack for doing a depth
Nick Lewyckyedd0a702016-09-07 01:49:41 +0000343 // first traversal of the tree. This includes scopes for values, loads, and
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000344 // calls as well as the generation. There is a child iterator so that the
Sanjoy Das5253a082016-04-27 01:44:31 +0000345 // children do not need to be store separately.
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000346 class StackNode {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000347 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000348 StackNode(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
349 CallHTType &AvailableCalls, unsigned cg, DomTreeNode *n,
Chandler Carruth7253bba2015-01-24 11:33:55 +0000350 DomTreeNode::iterator child, DomTreeNode::iterator end)
351 : CurrentGeneration(cg), ChildGeneration(cg), Node(n), ChildIter(child),
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000352 EndIter(end), Scopes(AvailableValues, AvailableLoads, AvailableCalls),
Chandler Carruth7253bba2015-01-24 11:33:55 +0000353 Processed(false) {}
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000354
355 // Accessors.
356 unsigned currentGeneration() { return CurrentGeneration; }
357 unsigned childGeneration() { return ChildGeneration; }
358 void childGeneration(unsigned generation) { ChildGeneration = generation; }
359 DomTreeNode *node() { return Node; }
360 DomTreeNode::iterator childIter() { return ChildIter; }
361 DomTreeNode *nextChild() {
362 DomTreeNode *child = *ChildIter;
363 ++ChildIter;
364 return child;
365 }
366 DomTreeNode::iterator end() { return EndIter; }
367 bool isProcessed() { return Processed; }
368 void process() { Processed = true; }
369
Chandler Carruth7253bba2015-01-24 11:33:55 +0000370 private:
Aaron Ballmanf9a18972015-02-15 22:54:22 +0000371 StackNode(const StackNode &) = delete;
372 void operator=(const StackNode &) = delete;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000373
374 // Members.
375 unsigned CurrentGeneration;
376 unsigned ChildGeneration;
377 DomTreeNode *Node;
378 DomTreeNode::iterator ChildIter;
379 DomTreeNode::iterator EndIter;
380 NodeScope Scopes;
381 bool Processed;
382 };
383
Chad Rosierf9327d62015-01-26 22:51:15 +0000384 /// \brief Wrapper class to handle memory instructions, including loads,
385 /// stores and intrinsic loads and stores defined by the target.
386 class ParseMemoryInst {
387 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000388 ParseMemoryInst(Instruction *Inst, const TargetTransformInfo &TTI)
Philip Reames9e5e2d62015-12-07 22:41:23 +0000389 : IsTargetMemInst(false), Inst(Inst) {
390 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst))
391 if (TTI.getTgtMemIntrinsic(II, Info) && Info.NumMemRefs == 1)
392 IsTargetMemInst = true;
393 }
394 bool isLoad() const {
395 if (IsTargetMemInst) return Info.ReadMem;
396 return isa<LoadInst>(Inst);
397 }
398 bool isStore() const {
399 if (IsTargetMemInst) return Info.WriteMem;
400 return isa<StoreInst>(Inst);
401 }
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000402 bool isAtomic() const {
403 if (IsTargetMemInst) {
404 assert(Info.IsSimple && "need to refine IsSimple in TTI");
405 return false;
406 }
407 return Inst->isAtomic();
408 }
409 bool isUnordered() const {
410 if (IsTargetMemInst) {
411 assert(Info.IsSimple && "need to refine IsSimple in TTI");
412 return true;
413 }
414 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
415 return LI->isUnordered();
416 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
417 return SI->isUnordered();
418 }
419 // Conservative answer
420 return !Inst->isAtomic();
421 }
422
423 bool isVolatile() const {
424 if (IsTargetMemInst) {
425 assert(Info.IsSimple && "need to refine IsSimple in TTI");
426 return false;
427 }
428 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
429 return LI->isVolatile();
430 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
431 return SI->isVolatile();
432 }
433 // Conservative answer
434 return true;
435 }
436
Sanjoy Das07c65212016-06-16 20:47:57 +0000437 bool isInvariantLoad() const {
438 if (auto *LI = dyn_cast<LoadInst>(Inst))
Sanjoy Das1ab2fad2016-06-16 21:00:57 +0000439 return LI->getMetadata(LLVMContext::MD_invariant_load) != nullptr;
Sanjoy Das07c65212016-06-16 20:47:57 +0000440 return false;
441 }
Junmo Park80440eb2016-02-18 10:09:20 +0000442
Arnaud A. de Grandmaison6fd488b2015-10-06 13:35:30 +0000443 bool isMatchingMemLoc(const ParseMemoryInst &Inst) const {
Philip Reames9e5e2d62015-12-07 22:41:23 +0000444 return (getPointerOperand() == Inst.getPointerOperand() &&
445 getMatchingId() == Inst.getMatchingId());
Chad Rosierf9327d62015-01-26 22:51:15 +0000446 }
Philip Reames9e5e2d62015-12-07 22:41:23 +0000447 bool isValid() const { return getPointerOperand() != nullptr; }
Chad Rosierf9327d62015-01-26 22:51:15 +0000448
Chad Rosierf9327d62015-01-26 22:51:15 +0000449 // For regular (non-intrinsic) loads/stores, this is set to -1. For
450 // intrinsic loads/stores, the id is retrieved from the corresponding
451 // field in the MemIntrinsicInfo structure. That field contains
452 // non-negative values only.
Philip Reames9e5e2d62015-12-07 22:41:23 +0000453 int getMatchingId() const {
454 if (IsTargetMemInst) return Info.MatchingId;
455 return -1;
456 }
457 Value *getPointerOperand() const {
458 if (IsTargetMemInst) return Info.PtrVal;
459 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
460 return LI->getPointerOperand();
461 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
462 return SI->getPointerOperand();
463 }
464 return nullptr;
465 }
466 bool mayReadFromMemory() const {
467 if (IsTargetMemInst) return Info.ReadMem;
468 return Inst->mayReadFromMemory();
469 }
470 bool mayWriteToMemory() const {
471 if (IsTargetMemInst) return Info.WriteMem;
472 return Inst->mayWriteToMemory();
473 }
474
475 private:
476 bool IsTargetMemInst;
477 MemIntrinsicInfo Info;
478 Instruction *Inst;
Chad Rosierf9327d62015-01-26 22:51:15 +0000479 };
480
Chris Lattner18ae5432011-01-02 23:04:14 +0000481 bool processNode(DomTreeNode *Node);
Nadav Rotem465834c2012-07-24 10:51:42 +0000482
Chad Rosierf9327d62015-01-26 22:51:15 +0000483 Value *getOrCreateResult(Value *Inst, Type *ExpectedType) const {
Sanjay Patel1c9867d2017-01-03 00:16:24 +0000484 if (auto *LI = dyn_cast<LoadInst>(Inst))
Chad Rosierf9327d62015-01-26 22:51:15 +0000485 return LI;
Sanjay Patel1c9867d2017-01-03 00:16:24 +0000486 if (auto *SI = dyn_cast<StoreInst>(Inst))
Chad Rosierf9327d62015-01-26 22:51:15 +0000487 return SI->getValueOperand();
488 assert(isa<IntrinsicInst>(Inst) && "Instruction not supported");
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000489 return TTI.getOrCreateResultFromMemIntrinsic(cast<IntrinsicInst>(Inst),
490 ExpectedType);
Chad Rosierf9327d62015-01-26 22:51:15 +0000491 }
Geoff Berry8d846052016-08-31 19:24:10 +0000492
493 bool isSameMemGeneration(unsigned EarlierGeneration, unsigned LaterGeneration,
494 Instruction *EarlierInst, Instruction *LaterInst);
495
496 void removeMSSA(Instruction *Inst) {
497 if (!MSSA)
498 return;
Geoff Berry91e9a5c2016-10-25 16:18:47 +0000499 // Removing a store here can leave MemorySSA in an unoptimized state by
500 // creating MemoryPhis that have identical arguments and by creating
Geoff Berry68154682016-10-24 15:54:00 +0000501 // MemoryUses whose defining access is not an actual clobber. We handle the
Geoff Berry91e9a5c2016-10-25 16:18:47 +0000502 // phi case eagerly here. The non-optimized MemoryUse case is lazily
503 // updated by MemorySSA getClobberingMemoryAccess.
Geoff Berry68154682016-10-24 15:54:00 +0000504 if (MemoryAccess *MA = MSSA->getMemoryAccess(Inst)) {
505 // Optimize MemoryPhi nodes that may become redundant by having all the
506 // same input values once MA is removed.
507 SmallVector<MemoryPhi *, 4> PhisToCheck;
508 SmallVector<MemoryAccess *, 8> WorkQueue;
509 WorkQueue.push_back(MA);
510 // Process MemoryPhi nodes in FIFO order using a ever-growing vector since
511 // we shouldn't be processing that many phis and this will avoid an
512 // allocation in almost all cases.
513 for (unsigned I = 0; I < WorkQueue.size(); ++I) {
514 MemoryAccess *WI = WorkQueue[I];
515
516 for (auto *U : WI->users())
517 if (MemoryPhi *MP = dyn_cast<MemoryPhi>(U))
518 PhisToCheck.push_back(MP);
519
520 MSSA->removeMemoryAccess(WI);
521
522 for (MemoryPhi *MP : PhisToCheck) {
523 MemoryAccess *FirstIn = MP->getIncomingValue(0);
524 if (all_of(MP->incoming_values(),
525 [=](Use &In) { return In == FirstIn; }))
526 WorkQueue.push_back(MP);
527 }
528 PhisToCheck.clear();
529 }
530 }
Geoff Berry8d846052016-08-31 19:24:10 +0000531 }
Chris Lattner704541b2011-01-02 21:47:05 +0000532};
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000533}
Chris Lattner704541b2011-01-02 21:47:05 +0000534
Geoff Berry68154682016-10-24 15:54:00 +0000535/// Determine if the memory referenced by LaterInst is from the same heap
536/// version as EarlierInst.
Geoff Berry8d846052016-08-31 19:24:10 +0000537/// This is currently called in two scenarios:
538///
539/// load p
540/// ...
541/// load p
542///
543/// and
544///
545/// x = load p
546/// ...
547/// store x, p
548///
549/// in both cases we want to verify that there are no possible writes to the
550/// memory referenced by p between the earlier and later instruction.
551bool EarlyCSE::isSameMemGeneration(unsigned EarlierGeneration,
552 unsigned LaterGeneration,
553 Instruction *EarlierInst,
554 Instruction *LaterInst) {
555 // Check the simple memory generation tracking first.
556 if (EarlierGeneration == LaterGeneration)
557 return true;
558
559 if (!MSSA)
560 return false;
561
562 // Since we know LaterDef dominates LaterInst and EarlierInst dominates
563 // LaterInst, if LaterDef dominates EarlierInst then it can't occur between
564 // EarlierInst and LaterInst and neither can any other write that potentially
565 // clobbers LaterInst.
Geoff Berry91e9a5c2016-10-25 16:18:47 +0000566 MemoryAccess *LaterDef =
567 MSSA->getWalker()->getClobberingMemoryAccess(LaterInst);
Geoff Berry8d846052016-08-31 19:24:10 +0000568 return MSSA->dominates(LaterDef, MSSA->getMemoryAccess(EarlierInst));
569}
570
Chris Lattner18ae5432011-01-02 23:04:14 +0000571bool EarlyCSE::processNode(DomTreeNode *Node) {
Chad Rosier1a4bc112016-04-22 18:47:21 +0000572 bool Changed = false;
Chris Lattner18ae5432011-01-02 23:04:14 +0000573 BasicBlock *BB = Node->getBlock();
Nadav Rotem465834c2012-07-24 10:51:42 +0000574
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000575 // If this block has a single predecessor, then the predecessor is the parent
576 // of the domtree node and all of the live out memory values are still current
577 // in this block. If this block has multiple predecessors, then they could
578 // have invalidated the live-out memory values of our parent value. For now,
579 // just be conservative and invalidate memory if this block has multiple
580 // predecessors.
Craig Topperf40110f2014-04-25 05:29:35 +0000581 if (!BB->getSinglePredecessor())
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000582 ++CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000583
Philip Reames7c78ef72015-05-22 23:53:24 +0000584 // If this node has a single predecessor which ends in a conditional branch,
585 // we can infer the value of the branch condition given that we took this
Chad Rosierb346dcb2016-04-20 19:16:23 +0000586 // path. We need the single predecessor to ensure there's not another path
Philip Reames7c78ef72015-05-22 23:53:24 +0000587 // which reaches this block where the condition might hold a different
588 // value. Since we're adding this to the scoped hash table (like any other
589 // def), it will have been popped if we encounter a future merge block.
590 if (BasicBlock *Pred = BB->getSinglePredecessor())
591 if (auto *BI = dyn_cast<BranchInst>(Pred->getTerminator()))
592 if (BI->isConditional())
593 if (auto *CondInst = dyn_cast<Instruction>(BI->getCondition()))
594 if (SimpleValue::canHandle(CondInst)) {
595 assert(BI->getSuccessor(0) == BB || BI->getSuccessor(1) == BB);
596 auto *ConditionalConstant = (BI->getSuccessor(0) == BB) ?
597 ConstantInt::getTrue(BB->getContext()) :
598 ConstantInt::getFalse(BB->getContext());
599 AvailableValues.insert(CondInst, ConditionalConstant);
600 DEBUG(dbgs() << "EarlyCSE CVP: Add conditional value for '"
601 << CondInst->getName() << "' as " << *ConditionalConstant
602 << " in " << BB->getName() << "\n");
Chad Rosier1a4bc112016-04-22 18:47:21 +0000603 // Replace all dominated uses with the known value.
604 if (unsigned Count =
605 replaceDominatedUsesWith(CondInst, ConditionalConstant, DT,
606 BasicBlockEdge(Pred, BB))) {
607 Changed = true;
608 NumCSECVP = NumCSECVP + Count;
609 }
Philip Reames7c78ef72015-05-22 23:53:24 +0000610 }
611
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000612 /// LastStore - Keep track of the last non-volatile store that we saw... for
613 /// as long as there in no instruction that reads memory. If we see a store
614 /// to the same location, we delete the dead store. This zaps trivial dead
615 /// stores which can occur in bitfield code among other things.
Chad Rosierf9327d62015-01-26 22:51:15 +0000616 Instruction *LastStore = nullptr;
Nadav Rotem465834c2012-07-24 10:51:42 +0000617
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000618 const DataLayout &DL = BB->getModule()->getDataLayout();
Chris Lattner18ae5432011-01-02 23:04:14 +0000619
620 // See if any instructions in the block can be eliminated. If so, do it. If
621 // not, add them to AvailableValues.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000622 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
Duncan P. N. Exon Smith3a9c9e32015-10-13 18:26:00 +0000623 Instruction *Inst = &*I++;
Nadav Rotem465834c2012-07-24 10:51:42 +0000624
Chris Lattner18ae5432011-01-02 23:04:14 +0000625 // Dead instructions should just be removed.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000626 if (isInstructionTriviallyDead(Inst, &TLI)) {
Chris Lattner8fac5db2011-01-02 23:19:45 +0000627 DEBUG(dbgs() << "EarlyCSE DCE: " << *Inst << '\n');
Geoff Berry8d846052016-08-31 19:24:10 +0000628 removeMSSA(Inst);
Chris Lattner18ae5432011-01-02 23:04:14 +0000629 Inst->eraseFromParent();
630 Changed = true;
Chris Lattner8fac5db2011-01-02 23:19:45 +0000631 ++NumSimplify;
Chris Lattner18ae5432011-01-02 23:04:14 +0000632 continue;
633 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000634
Hal Finkel1e16fa32014-11-03 20:21:32 +0000635 // Skip assume intrinsics, they don't really have side effects (although
636 // they're marked as such to ensure preservation of control dependencies),
637 // and this pass will not disturb any of the assumption's control
638 // dependencies.
639 if (match(Inst, m_Intrinsic<Intrinsic::assume>())) {
640 DEBUG(dbgs() << "EarlyCSE skipping assumption: " << *Inst << '\n');
641 continue;
642 }
643
Anna Thomasb2d12b82016-08-09 20:00:47 +0000644 // Skip invariant.start intrinsics since they only read memory, and we can
645 // forward values across it. Also, we dont need to consume the last store
646 // since the semantics of invariant.start allow us to perform DSE of the
647 // last store, if there was a store following invariant.start. Consider:
648 //
649 // store 30, i8* p
650 // invariant.start(p)
651 // store 40, i8* p
652 // We can DSE the store to 30, since the store 40 to invariant location p
653 // causes undefined behaviour.
654 if (match(Inst, m_Intrinsic<Intrinsic::invariant_start>()))
655 continue;
656
Sanjoy Dasee81b232016-04-29 21:52:58 +0000657 if (match(Inst, m_Intrinsic<Intrinsic::experimental_guard>())) {
Sanjoy Das107aefc2016-04-29 22:23:16 +0000658 if (auto *CondI =
659 dyn_cast<Instruction>(cast<CallInst>(Inst)->getArgOperand(0))) {
Sanjoy Dasee81b232016-04-29 21:52:58 +0000660 // The condition we're on guarding here is true for all dominated
661 // locations.
662 if (SimpleValue::canHandle(CondI))
663 AvailableValues.insert(CondI, ConstantInt::getTrue(BB->getContext()));
664 }
665
666 // Guard intrinsics read all memory, but don't write any memory.
667 // Accordingly, don't update the generation but consume the last store (to
668 // avoid an incorrect DSE).
669 LastStore = nullptr;
670 continue;
671 }
672
Chris Lattner18ae5432011-01-02 23:04:14 +0000673 // If the instruction can be simplified (e.g. X+0 = X) then replace it with
674 // its simpler value.
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000675 if (Value *V = SimplifyInstruction(Inst, DL, &TLI, &DT, &AC)) {
Chris Lattner8fac5db2011-01-02 23:19:45 +0000676 DEBUG(dbgs() << "EarlyCSE Simplify: " << *Inst << " to: " << *V << '\n');
David Majnemer130b9f92016-07-29 05:39:21 +0000677 bool Killed = false;
David Majnemerb8da3a22016-06-25 00:04:10 +0000678 if (!Inst->use_empty()) {
679 Inst->replaceAllUsesWith(V);
680 Changed = true;
681 }
682 if (isInstructionTriviallyDead(Inst, &TLI)) {
Geoff Berry8d846052016-08-31 19:24:10 +0000683 removeMSSA(Inst);
David Majnemerb8da3a22016-06-25 00:04:10 +0000684 Inst->eraseFromParent();
685 Changed = true;
David Majnemer130b9f92016-07-29 05:39:21 +0000686 Killed = true;
David Majnemerb8da3a22016-06-25 00:04:10 +0000687 }
David Majnemer130b9f92016-07-29 05:39:21 +0000688 if (Changed)
David Majnemerb8da3a22016-06-25 00:04:10 +0000689 ++NumSimplify;
David Majnemer130b9f92016-07-29 05:39:21 +0000690 if (Killed)
David Majnemerb8da3a22016-06-25 00:04:10 +0000691 continue;
Chris Lattner18ae5432011-01-02 23:04:14 +0000692 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000693
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000694 // If this is a simple instruction that we can value number, process it.
695 if (SimpleValue::canHandle(Inst)) {
696 // See if the instruction has an available value. If so, use it.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000697 if (Value *V = AvailableValues.lookup(Inst)) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000698 DEBUG(dbgs() << "EarlyCSE CSE: " << *Inst << " to: " << *V << '\n');
David Majnemer9554c132016-04-22 06:37:45 +0000699 if (auto *I = dyn_cast<Instruction>(V))
700 I->andIRFlags(Inst);
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000701 Inst->replaceAllUsesWith(V);
Geoff Berry8d846052016-08-31 19:24:10 +0000702 removeMSSA(Inst);
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000703 Inst->eraseFromParent();
704 Changed = true;
705 ++NumCSE;
706 continue;
707 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000708
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000709 // Otherwise, just remember that this value is available.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000710 AvailableValues.insert(Inst, Inst);
Chris Lattner18ae5432011-01-02 23:04:14 +0000711 continue;
712 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000713
Chad Rosierf9327d62015-01-26 22:51:15 +0000714 ParseMemoryInst MemInst(Inst, TTI);
Chris Lattner92bb0f92011-01-03 03:41:27 +0000715 // If this is a non-volatile load, process it.
Chad Rosierf9327d62015-01-26 22:51:15 +0000716 if (MemInst.isValid() && MemInst.isLoad()) {
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000717 // (conservatively) we can't peak past the ordering implied by this
718 // operation, but we can add this load to our set of available values
719 if (MemInst.isVolatile() || !MemInst.isUnordered()) {
Craig Topperf40110f2014-04-25 05:29:35 +0000720 LastStore = nullptr;
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000721 ++CurrentGeneration;
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000722 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000723
Chris Lattner92bb0f92011-01-03 03:41:27 +0000724 // If we have an available version of this load, and if it is the right
Sanjoy Das07c65212016-06-16 20:47:57 +0000725 // generation or the load is known to be from an invariant location,
726 // replace this instruction.
727 //
Geoff Berry64f5ed12016-08-31 17:45:31 +0000728 // If either the dominating load or the current load are invariant, then
729 // we can assume the current load loads the same value as the dominating
730 // load.
Philip Reames9e5e2d62015-12-07 22:41:23 +0000731 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
Sanjoy Das07c65212016-06-16 20:47:57 +0000732 if (InVal.DefInst != nullptr &&
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000733 InVal.MatchingId == MemInst.getMatchingId() &&
734 // We don't yet handle removing loads with ordering of any kind.
735 !MemInst.isVolatile() && MemInst.isUnordered() &&
736 // We can't replace an atomic load with one which isn't also atomic.
Geoff Berry8d846052016-08-31 19:24:10 +0000737 InVal.IsAtomic >= MemInst.isAtomic() &&
738 (InVal.IsInvariant || MemInst.isInvariantLoad() ||
739 isSameMemGeneration(InVal.Generation, CurrentGeneration,
740 InVal.DefInst, Inst))) {
Philip Reames32b55182016-05-06 01:13:58 +0000741 Value *Op = getOrCreateResult(InVal.DefInst, Inst->getType());
Chad Rosierf9327d62015-01-26 22:51:15 +0000742 if (Op != nullptr) {
743 DEBUG(dbgs() << "EarlyCSE CSE LOAD: " << *Inst
Philip Reames32b55182016-05-06 01:13:58 +0000744 << " to: " << *InVal.DefInst << '\n');
Chad Rosierf9327d62015-01-26 22:51:15 +0000745 if (!Inst->use_empty())
746 Inst->replaceAllUsesWith(Op);
Geoff Berry8d846052016-08-31 19:24:10 +0000747 removeMSSA(Inst);
Chad Rosierf9327d62015-01-26 22:51:15 +0000748 Inst->eraseFromParent();
749 Changed = true;
750 ++NumCSELoad;
751 continue;
752 }
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000753 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000754
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000755 // Otherwise, remember that we have this instruction.
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000756 AvailableLoads.insert(
Philip Reames9e5e2d62015-12-07 22:41:23 +0000757 MemInst.getPointerOperand(),
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000758 LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(),
Sanjoy Das07c65212016-06-16 20:47:57 +0000759 MemInst.isAtomic(), MemInst.isInvariantLoad()));
Craig Topperf40110f2014-04-25 05:29:35 +0000760 LastStore = nullptr;
Chris Lattner92bb0f92011-01-03 03:41:27 +0000761 continue;
762 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000763
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000764 // If this instruction may read from memory, forget LastStore.
Chad Rosierf9327d62015-01-26 22:51:15 +0000765 // Load/store intrinsics will indicate both a read and a write to
766 // memory. The target may override this (e.g. so that a store intrinsic
767 // does not read from memory, and thus will be treated the same as a
768 // regular store for commoning purposes).
769 if (Inst->mayReadFromMemory() &&
770 !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
Craig Topperf40110f2014-04-25 05:29:35 +0000771 LastStore = nullptr;
Nadav Rotem465834c2012-07-24 10:51:42 +0000772
Chris Lattner92bb0f92011-01-03 03:41:27 +0000773 // If this is a read-only call, process it.
774 if (CallValue::canHandle(Inst)) {
775 // If we have an available version of this call, and if it is the right
776 // generation, replace this instruction.
Geoff Berry2f64c202016-05-13 17:54:58 +0000777 std::pair<Instruction *, unsigned> InVal = AvailableCalls.lookup(Inst);
Geoff Berry8d846052016-08-31 19:24:10 +0000778 if (InVal.first != nullptr &&
779 isSameMemGeneration(InVal.second, CurrentGeneration, InVal.first,
780 Inst)) {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000781 DEBUG(dbgs() << "EarlyCSE CSE CALL: " << *Inst
782 << " to: " << *InVal.first << '\n');
783 if (!Inst->use_empty())
784 Inst->replaceAllUsesWith(InVal.first);
Geoff Berry8d846052016-08-31 19:24:10 +0000785 removeMSSA(Inst);
Chris Lattner92bb0f92011-01-03 03:41:27 +0000786 Inst->eraseFromParent();
787 Changed = true;
788 ++NumCSECall;
789 continue;
790 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000791
Chris Lattner92bb0f92011-01-03 03:41:27 +0000792 // Otherwise, remember that we have this instruction.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000793 AvailableCalls.insert(
Geoff Berry2f64c202016-05-13 17:54:58 +0000794 Inst, std::pair<Instruction *, unsigned>(Inst, CurrentGeneration));
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000795 continue;
796 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000797
Philip Reamesdfd890d2015-08-27 01:32:33 +0000798 // A release fence requires that all stores complete before it, but does
799 // not prevent the reordering of following loads 'before' the fence. As a
800 // result, we don't need to consider it as writing to memory and don't need
801 // to advance the generation. We do need to prevent DSE across the fence,
802 // but that's handled above.
803 if (FenceInst *FI = dyn_cast<FenceInst>(Inst))
JF Bastien800f87a2016-04-06 21:19:33 +0000804 if (FI->getOrdering() == AtomicOrdering::Release) {
Philip Reamesdfd890d2015-08-27 01:32:33 +0000805 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above");
806 continue;
807 }
808
Philip Reamesae1f265b2015-12-16 01:01:30 +0000809 // write back DSE - If we write back the same value we just loaded from
810 // the same location and haven't passed any intervening writes or ordering
811 // operations, we can remove the write. The primary benefit is in allowing
812 // the available load table to remain valid and value forward past where
813 // the store originally was.
814 if (MemInst.isValid() && MemInst.isStore()) {
815 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
Philip Reames32b55182016-05-06 01:13:58 +0000816 if (InVal.DefInst &&
817 InVal.DefInst == getOrCreateResult(Inst, InVal.DefInst->getType()) &&
Philip Reamesae1f265b2015-12-16 01:01:30 +0000818 InVal.MatchingId == MemInst.getMatchingId() &&
819 // We don't yet handle removing stores with ordering of any kind.
Geoff Berry8d846052016-08-31 19:24:10 +0000820 !MemInst.isVolatile() && MemInst.isUnordered() &&
821 isSameMemGeneration(InVal.Generation, CurrentGeneration,
822 InVal.DefInst, Inst)) {
823 // It is okay to have a LastStore to a different pointer here if MemorySSA
824 // tells us that the load and store are from the same memory generation.
825 // In that case, LastStore should keep its present value since we're
826 // removing the current store.
Philip Reamesae1f265b2015-12-16 01:01:30 +0000827 assert((!LastStore ||
828 ParseMemoryInst(LastStore, TTI).getPointerOperand() ==
Geoff Berry8d846052016-08-31 19:24:10 +0000829 MemInst.getPointerOperand() ||
830 MSSA) &&
831 "can't have an intervening store if not using MemorySSA!");
Philip Reamesae1f265b2015-12-16 01:01:30 +0000832 DEBUG(dbgs() << "EarlyCSE DSE (writeback): " << *Inst << '\n');
Geoff Berry8d846052016-08-31 19:24:10 +0000833 removeMSSA(Inst);
Philip Reamesae1f265b2015-12-16 01:01:30 +0000834 Inst->eraseFromParent();
835 Changed = true;
836 ++NumDSE;
837 // We can avoid incrementing the generation count since we were able
838 // to eliminate this store.
839 continue;
840 }
841 }
842
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000843 // Okay, this isn't something we can CSE at all. Check to see if it is
844 // something that could modify memory. If so, our available memory values
845 // cannot be used so bump the generation count.
Chris Lattnere0e32a92011-01-03 03:46:34 +0000846 if (Inst->mayWriteToMemory()) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000847 ++CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000848
Chad Rosierf9327d62015-01-26 22:51:15 +0000849 if (MemInst.isValid() && MemInst.isStore()) {
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000850 // We do a trivial form of DSE if there are two stores to the same
Philip Reames15145fb2015-12-17 18:50:50 +0000851 // location with no intervening loads. Delete the earlier store.
852 // At the moment, we don't remove ordered stores, but do remove
853 // unordered atomic stores. There's no special requirement (for
854 // unordered atomics) about removing atomic stores only in favor of
855 // other atomic stores since we we're going to execute the non-atomic
856 // one anyway and the atomic one might never have become visible.
Chad Rosierf9327d62015-01-26 22:51:15 +0000857 if (LastStore) {
858 ParseMemoryInst LastStoreMemInst(LastStore, TTI);
Philip Reames15145fb2015-12-17 18:50:50 +0000859 assert(LastStoreMemInst.isUnordered() &&
860 !LastStoreMemInst.isVolatile() &&
861 "Violated invariant");
Chad Rosierf9327d62015-01-26 22:51:15 +0000862 if (LastStoreMemInst.isMatchingMemLoc(MemInst)) {
863 DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore
864 << " due to: " << *Inst << '\n');
Geoff Berry8d846052016-08-31 19:24:10 +0000865 removeMSSA(LastStore);
Chad Rosierf9327d62015-01-26 22:51:15 +0000866 LastStore->eraseFromParent();
867 Changed = true;
868 ++NumDSE;
869 LastStore = nullptr;
870 }
Philip Reames018dbf12014-11-18 17:46:32 +0000871 // fallthrough - we can exploit information about this store
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000872 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000873
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000874 // Okay, we just invalidated anything we knew about loaded values. Try
875 // to salvage *something* by remembering that the stored value is a live
876 // version of the pointer. It is safe to forward from volatile stores
877 // to non-volatile loads, so we don't have to check for volatility of
878 // the store.
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000879 AvailableLoads.insert(
Philip Reames9e5e2d62015-12-07 22:41:23 +0000880 MemInst.getPointerOperand(),
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000881 LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(),
Sanjoy Das1ab2fad2016-06-16 21:00:57 +0000882 MemInst.isAtomic(), /*IsInvariant=*/false));
Nadav Rotem465834c2012-07-24 10:51:42 +0000883
Philip Reames15145fb2015-12-17 18:50:50 +0000884 // Remember that this was the last unordered store we saw for DSE. We
885 // don't yet handle DSE on ordered or volatile stores since we don't
886 // have a good way to model the ordering requirement for following
887 // passes once the store is removed. We could insert a fence, but
888 // since fences are slightly stronger than stores in their ordering,
889 // it's not clear this is a profitable transform. Another option would
890 // be to merge the ordering with that of the post dominating store.
891 if (MemInst.isUnordered() && !MemInst.isVolatile())
Chad Rosierf9327d62015-01-26 22:51:15 +0000892 LastStore = Inst;
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000893 else
894 LastStore = nullptr;
Chris Lattnere0e32a92011-01-03 03:46:34 +0000895 }
896 }
Chris Lattner18ae5432011-01-02 23:04:14 +0000897 }
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000898
Chris Lattner18ae5432011-01-02 23:04:14 +0000899 return Changed;
Chris Lattner704541b2011-01-02 21:47:05 +0000900}
Chris Lattner18ae5432011-01-02 23:04:14 +0000901
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000902bool EarlyCSE::run() {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000903 // Note, deque is being used here because there is significant performance
904 // gains over vector when the container becomes very large due to the
905 // specific access patterns. For more information see the mailing list
906 // discussion on this:
Tanya Lattner0d28f802015-08-05 03:51:17 +0000907 // http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20120116/135228.html
Lenny Maiorani9eefc812014-09-20 13:29:20 +0000908 std::deque<StackNode *> nodesToProcess;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000909
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000910 bool Changed = false;
911
912 // Process the root node.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000913 nodesToProcess.push_back(new StackNode(
914 AvailableValues, AvailableLoads, AvailableCalls, CurrentGeneration,
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000915 DT.getRootNode(), DT.getRootNode()->begin(), DT.getRootNode()->end()));
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000916
917 // Save the current generation.
918 unsigned LiveOutGeneration = CurrentGeneration;
919
920 // Process the stack.
921 while (!nodesToProcess.empty()) {
922 // Grab the first item off the stack. Set the current generation, remove
923 // the node from the stack, and process it.
Michael Gottesman2bf01732013-12-05 18:42:12 +0000924 StackNode *NodeToProcess = nodesToProcess.back();
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000925
926 // Initialize class members.
927 CurrentGeneration = NodeToProcess->currentGeneration();
928
929 // Check if the node needs to be processed.
930 if (!NodeToProcess->isProcessed()) {
931 // Process the node.
932 Changed |= processNode(NodeToProcess->node());
933 NodeToProcess->childGeneration(CurrentGeneration);
934 NodeToProcess->process();
935 } else if (NodeToProcess->childIter() != NodeToProcess->end()) {
936 // Push the next child onto the stack.
937 DomTreeNode *child = NodeToProcess->nextChild();
Michael Gottesman2bf01732013-12-05 18:42:12 +0000938 nodesToProcess.push_back(
Chandler Carruth7253bba2015-01-24 11:33:55 +0000939 new StackNode(AvailableValues, AvailableLoads, AvailableCalls,
940 NodeToProcess->childGeneration(), child, child->begin(),
941 child->end()));
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000942 } else {
943 // It has been processed, and there are no more children to process,
944 // so delete it and pop it off the stack.
945 delete NodeToProcess;
Michael Gottesman2bf01732013-12-05 18:42:12 +0000946 nodesToProcess.pop_back();
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000947 }
948 } // while (!nodes...)
949
950 // Reset the current generation.
951 CurrentGeneration = LiveOutGeneration;
952
953 return Changed;
Chris Lattner18ae5432011-01-02 23:04:14 +0000954}
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000955
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000956PreservedAnalyses EarlyCSEPass::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +0000957 FunctionAnalysisManager &AM) {
Chandler Carruthb47f8012016-03-11 11:05:24 +0000958 auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
959 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
960 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000961 auto &AC = AM.getResult<AssumptionAnalysis>(F);
Geoff Berry8d846052016-08-31 19:24:10 +0000962 auto *MSSA =
963 UseMemorySSA ? &AM.getResult<MemorySSAAnalysis>(F).getMSSA() : nullptr;
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000964
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000965 EarlyCSE CSE(TLI, TTI, DT, AC, MSSA);
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000966
967 if (!CSE.run())
968 return PreservedAnalyses::all();
969
970 // CSE preserves the dominator tree because it doesn't mutate the CFG.
971 // FIXME: Bundle this with other CFG-preservation.
972 PreservedAnalyses PA;
973 PA.preserve<DominatorTreeAnalysis>();
Davide Italiano02861d82016-06-08 21:31:55 +0000974 PA.preserve<GlobalsAA>();
Geoff Berry8d846052016-08-31 19:24:10 +0000975 if (UseMemorySSA)
976 PA.preserve<MemorySSAAnalysis>();
Chandler Carruthe8c686a2015-02-01 10:51:23 +0000977 return PA;
978}
979
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000980namespace {
981/// \brief A simple and fast domtree-based CSE pass.
982///
983/// This pass does a simple depth-first walk over the dominator tree,
984/// eliminating trivially redundant instructions and using instsimplify to
985/// canonicalize things as it goes. It is intended to be fast and catch obvious
986/// cases so that instcombine and other passes are more effective. It is
987/// expected that a later pass of GVN will catch the interesting/hard cases.
Geoff Berry8d846052016-08-31 19:24:10 +0000988template<bool UseMemorySSA>
989class EarlyCSELegacyCommonPass : public FunctionPass {
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000990public:
991 static char ID;
992
Geoff Berry8d846052016-08-31 19:24:10 +0000993 EarlyCSELegacyCommonPass() : FunctionPass(ID) {
994 if (UseMemorySSA)
995 initializeEarlyCSEMemSSALegacyPassPass(*PassRegistry::getPassRegistry());
996 else
997 initializeEarlyCSELegacyPassPass(*PassRegistry::getPassRegistry());
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000998 }
999
1000 bool runOnFunction(Function &F) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001001 if (skipFunction(F))
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001002 return false;
1003
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001004 auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Chandler Carruthfdb9c572015-02-01 12:01:35 +00001005 auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001006 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001007 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Geoff Berry8d846052016-08-31 19:24:10 +00001008 auto *MSSA =
1009 UseMemorySSA ? &getAnalysis<MemorySSAWrapperPass>().getMSSA() : nullptr;
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001010
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001011 EarlyCSE CSE(TLI, TTI, DT, AC, MSSA);
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001012
1013 return CSE.run();
1014 }
1015
1016 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001017 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001018 AU.addRequired<DominatorTreeWrapperPass>();
1019 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +00001020 AU.addRequired<TargetTransformInfoWrapperPass>();
Geoff Berry8d846052016-08-31 19:24:10 +00001021 if (UseMemorySSA) {
1022 AU.addRequired<MemorySSAWrapperPass>();
1023 AU.addPreserved<MemorySSAWrapperPass>();
1024 }
James Molloyefbba722015-09-10 10:22:12 +00001025 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001026 AU.setPreservesCFG();
1027 }
1028};
Alexander Kornienkof00654e2015-06-23 09:49:53 +00001029}
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001030
Geoff Berry8d846052016-08-31 19:24:10 +00001031using EarlyCSELegacyPass = EarlyCSELegacyCommonPass</*UseMemorySSA=*/false>;
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001032
Geoff Berry8d846052016-08-31 19:24:10 +00001033template<>
1034char EarlyCSELegacyPass::ID = 0;
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001035
1036INITIALIZE_PASS_BEGIN(EarlyCSELegacyPass, "early-cse", "Early CSE", false,
1037 false)
Chandler Carruth705b1852015-01-31 03:43:40 +00001038INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001039INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001040INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
1041INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1042INITIALIZE_PASS_END(EarlyCSELegacyPass, "early-cse", "Early CSE", false, false)
Geoff Berry8d846052016-08-31 19:24:10 +00001043
1044using EarlyCSEMemSSALegacyPass =
1045 EarlyCSELegacyCommonPass</*UseMemorySSA=*/true>;
1046
1047template<>
1048char EarlyCSEMemSSALegacyPass::ID = 0;
1049
1050FunctionPass *llvm::createEarlyCSEPass(bool UseMemorySSA) {
1051 if (UseMemorySSA)
1052 return new EarlyCSEMemSSALegacyPass();
1053 else
1054 return new EarlyCSELegacyPass();
1055}
1056
1057INITIALIZE_PASS_BEGIN(EarlyCSEMemSSALegacyPass, "early-cse-memssa",
1058 "Early CSE w/ MemorySSA", false, false)
1059INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001060INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Geoff Berry8d846052016-08-31 19:24:10 +00001061INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
1062INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1063INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
1064INITIALIZE_PASS_END(EarlyCSEMemSSALegacyPass, "early-cse-memssa",
1065 "Early CSE w/ MemorySSA", false, false)