blob: fc14d8af7637c48f4874c728d3866a2993fbd25d [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"
Eugene Zelenko3b879392017-10-13 21:17:07 +000016#include "llvm/ADT/DenseMapInfo.h"
Michael Ilseman336cb792012-10-09 16:57:38 +000017#include "llvm/ADT/Hashing.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000018#include "llvm/ADT/STLExtras.h"
Chris Lattner18ae5432011-01-02 23:04:14 +000019#include "llvm/ADT/ScopedHashTable.h"
Davide Italiano0dc47782017-06-14 19:29:53 +000020#include "llvm/ADT/SetVector.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000021#include "llvm/ADT/SmallVector.h"
Chris Lattner8fac5db2011-01-02 23:19:45 +000022#include "llvm/ADT/Statistic.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000023#include "llvm/Analysis/AssumptionCache.h"
Geoff Berry354fac22016-04-28 14:59:27 +000024#include "llvm/Analysis/GlobalsModRef.h"
Max Kazantsev3c284bd2018-08-30 03:39:16 +000025#include "llvm/Analysis/GuardUtils.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000026#include "llvm/Analysis/InstructionSimplify.h"
Daniel Berlin554dcd82017-04-11 20:06:36 +000027#include "llvm/Analysis/MemorySSA.h"
28#include "llvm/Analysis/MemorySSAUpdater.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000029#include "llvm/Analysis/TargetLibraryInfo.h"
Chad Rosierf9327d62015-01-26 22:51:15 +000030#include "llvm/Analysis/TargetTransformInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +000031#include "llvm/Transforms/Utils/Local.h"
Sanjay Patel3c7a35d2017-12-13 21:58:15 +000032#include "llvm/Analysis/ValueTracking.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000033#include "llvm/IR/BasicBlock.h"
34#include "llvm/IR/Constants.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/DataLayout.h"
Chandler Carruth5ad5f152014-01-13 09:26:24 +000036#include "llvm/IR/Dominators.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000037#include "llvm/IR/Function.h"
38#include "llvm/IR/InstrTypes.h"
39#include "llvm/IR/Instruction.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000040#include "llvm/IR/Instructions.h"
Hal Finkel1e16fa32014-11-03 20:21:32 +000041#include "llvm/IR/IntrinsicInst.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000042#include "llvm/IR/Intrinsics.h"
43#include "llvm/IR/LLVMContext.h"
44#include "llvm/IR/PassManager.h"
Hal Finkel1e16fa32014-11-03 20:21:32 +000045#include "llvm/IR/PatternMatch.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000046#include "llvm/IR/Type.h"
47#include "llvm/IR/Use.h"
48#include "llvm/IR/Value.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000049#include "llvm/Pass.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000050#include "llvm/Support/Allocator.h"
51#include "llvm/Support/AtomicOrdering.h"
52#include "llvm/Support/Casting.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000053#include "llvm/Support/Debug.h"
Geoff Berry5bf4a5e2018-04-06 18:47:33 +000054#include "llvm/Support/DebugCounter.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000055#include "llvm/Support/RecyclingAllocator.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000056#include "llvm/Support/raw_ostream.h"
Chandler Carruthe8c686a2015-02-01 10:51:23 +000057#include "llvm/Transforms/Scalar.h"
Max Kazantsev3c284bd2018-08-30 03:39:16 +000058#include "llvm/Transforms/Utils/GuardUtils.h"
Eugene Zelenko3b879392017-10-13 21:17:07 +000059#include <cassert>
Lenny Maiorani9eefc812014-09-20 13:29:20 +000060#include <deque>
Eugene Zelenko3b879392017-10-13 21:17:07 +000061#include <memory>
62#include <utility>
63
Chris Lattner704541b2011-01-02 21:47:05 +000064using namespace llvm;
Hal Finkel1e16fa32014-11-03 20:21:32 +000065using namespace llvm::PatternMatch;
Chris Lattner704541b2011-01-02 21:47:05 +000066
Chandler Carruth964daaa2014-04-22 02:55:47 +000067#define DEBUG_TYPE "early-cse"
68
Chris Lattner4cb36542011-01-03 03:28:23 +000069STATISTIC(NumSimplify, "Number of instructions simplified or DCE'd");
70STATISTIC(NumCSE, "Number of instructions CSE'd");
Chad Rosier1a4bc112016-04-22 18:47:21 +000071STATISTIC(NumCSECVP, "Number of compare instructions CVP'd");
Chris Lattner92bb0f92011-01-03 03:41:27 +000072STATISTIC(NumCSELoad, "Number of load instructions CSE'd");
73STATISTIC(NumCSECall, "Number of call instructions CSE'd");
Chris Lattner9e5e9ed2011-01-03 04:17:24 +000074STATISTIC(NumDSE, "Number of trivial dead stores removed");
Chris Lattnerb9a8efc2011-01-03 03:18:43 +000075
Geoff Berry5bf4a5e2018-04-06 18:47:33 +000076DEBUG_COUNTER(CSECounter, "early-cse",
77 "Controls which instructions are removed");
78
Chris Lattner79d83062011-01-03 02:20:48 +000079//===----------------------------------------------------------------------===//
Nadav Rotem465834c2012-07-24 10:51:42 +000080// SimpleValue
Chris Lattner79d83062011-01-03 02:20:48 +000081//===----------------------------------------------------------------------===//
82
Chris Lattner704541b2011-01-02 21:47:05 +000083namespace {
Eugene Zelenko3b879392017-10-13 21:17:07 +000084
Adrian Prantl5f8f34e42018-05-01 15:54:18 +000085/// Struct representing the available values in the scoped hash table.
Chandler Carruth7253bba2015-01-24 11:33:55 +000086struct SimpleValue {
87 Instruction *Inst;
Nadav Rotem465834c2012-07-24 10:51:42 +000088
Chandler Carruth7253bba2015-01-24 11:33:55 +000089 SimpleValue(Instruction *I) : Inst(I) {
90 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
91 }
Nadav Rotem465834c2012-07-24 10:51:42 +000092
Chandler Carruth7253bba2015-01-24 11:33:55 +000093 bool isSentinel() const {
94 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() ||
95 Inst == DenseMapInfo<Instruction *>::getTombstoneKey();
96 }
Nadav Rotem465834c2012-07-24 10:51:42 +000097
Chandler Carruth7253bba2015-01-24 11:33:55 +000098 static bool canHandle(Instruction *Inst) {
99 // This can only handle non-void readnone functions.
100 if (CallInst *CI = dyn_cast<CallInst>(Inst))
101 return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy();
102 return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) ||
103 isa<GetElementPtrInst>(Inst) || isa<CmpInst>(Inst) ||
104 isa<SelectInst>(Inst) || isa<ExtractElementInst>(Inst) ||
105 isa<InsertElementInst>(Inst) || isa<ShuffleVectorInst>(Inst) ||
106 isa<ExtractValueInst>(Inst) || isa<InsertValueInst>(Inst);
107 }
108};
Eugene Zelenko3b879392017-10-13 21:17:07 +0000109
110} // end anonymous namespace
Chris Lattner18ae5432011-01-02 23:04:14 +0000111
112namespace llvm {
Eugene Zelenko3b879392017-10-13 21:17:07 +0000113
Chandler Carruth7253bba2015-01-24 11:33:55 +0000114template <> struct DenseMapInfo<SimpleValue> {
Chris Lattner79d83062011-01-03 02:20:48 +0000115 static inline SimpleValue getEmptyKey() {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000116 return DenseMapInfo<Instruction *>::getEmptyKey();
Chris Lattner18ae5432011-01-02 23:04:14 +0000117 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000118
Chris Lattner79d83062011-01-03 02:20:48 +0000119 static inline SimpleValue getTombstoneKey() {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000120 return DenseMapInfo<Instruction *>::getTombstoneKey();
Chris Lattner18ae5432011-01-02 23:04:14 +0000121 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000122
Chris Lattner79d83062011-01-03 02:20:48 +0000123 static unsigned getHashValue(SimpleValue Val);
124 static bool isEqual(SimpleValue LHS, SimpleValue RHS);
Chris Lattner18ae5432011-01-02 23:04:14 +0000125};
Eugene Zelenko3b879392017-10-13 21:17:07 +0000126
127} // end namespace llvm
Chris Lattner18ae5432011-01-02 23:04:14 +0000128
Chris Lattner79d83062011-01-03 02:20:48 +0000129unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) {
Chris Lattner18ae5432011-01-02 23:04:14 +0000130 Instruction *Inst = Val.Inst;
Chris Lattner02a97762011-01-03 01:10:08 +0000131 // Hash in all of the operands as pointers.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000132 if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) {
Michael Ilseman336cb792012-10-09 16:57:38 +0000133 Value *LHS = BinOp->getOperand(0);
134 Value *RHS = BinOp->getOperand(1);
135 if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1))
136 std::swap(LHS, RHS);
Chris Lattner02a97762011-01-03 01:10:08 +0000137
Michael Ilseman336cb792012-10-09 16:57:38 +0000138 return hash_combine(BinOp->getOpcode(), LHS, RHS);
Chris Lattner02a97762011-01-03 01:10:08 +0000139 }
140
Michael Ilseman336cb792012-10-09 16:57:38 +0000141 if (CmpInst *CI = dyn_cast<CmpInst>(Inst)) {
142 Value *LHS = CI->getOperand(0);
143 Value *RHS = CI->getOperand(1);
144 CmpInst::Predicate Pred = CI->getPredicate();
145 if (Inst->getOperand(0) > Inst->getOperand(1)) {
146 std::swap(LHS, RHS);
147 Pred = CI->getSwappedPredicate();
148 }
149 return hash_combine(Inst->getOpcode(), Pred, LHS, RHS);
150 }
151
Sanjay Patel558a4652017-12-13 22:57:35 +0000152 // Hash min/max/abs (cmp + select) to allow for commuted operands.
153 // Min/max may also have non-canonical compare predicate (eg, the compare for
154 // smin may use 'sgt' rather than 'slt'), and non-canonical operands in the
155 // compare.
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000156 Value *A, *B;
157 SelectPatternFlavor SPF = matchSelectPattern(Inst, A, B).Flavor;
Sanjay Patel558a4652017-12-13 22:57:35 +0000158 // TODO: We should also detect FP min/max.
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000159 if (SPF == SPF_SMIN || SPF == SPF_SMAX ||
Craig Topperf14e62c2018-05-21 18:42:42 +0000160 SPF == SPF_UMIN || SPF == SPF_UMAX) {
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000161 if (A > B)
162 std::swap(A, B);
163 return hash_combine(Inst->getOpcode(), SPF, A, B);
164 }
Craig Topperf14e62c2018-05-21 18:42:42 +0000165 if (SPF == SPF_ABS || SPF == SPF_NABS) {
166 // ABS/NABS always puts the input in A and its negation in B.
167 return hash_combine(Inst->getOpcode(), SPF, A, B);
168 }
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000169
Michael Ilseman336cb792012-10-09 16:57:38 +0000170 if (CastInst *CI = dyn_cast<CastInst>(Inst))
171 return hash_combine(CI->getOpcode(), CI->getType(), CI->getOperand(0));
172
173 if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(Inst))
174 return hash_combine(EVI->getOpcode(), EVI->getOperand(0),
175 hash_combine_range(EVI->idx_begin(), EVI->idx_end()));
176
177 if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst))
178 return hash_combine(IVI->getOpcode(), IVI->getOperand(0),
179 IVI->getOperand(1),
180 hash_combine_range(IVI->idx_begin(), IVI->idx_end()));
181
182 assert((isa<CallInst>(Inst) || isa<BinaryOperator>(Inst) ||
183 isa<GetElementPtrInst>(Inst) || isa<SelectInst>(Inst) ||
184 isa<ExtractElementInst>(Inst) || isa<InsertElementInst>(Inst) ||
Chandler Carruth7253bba2015-01-24 11:33:55 +0000185 isa<ShuffleVectorInst>(Inst)) &&
186 "Invalid/unknown instruction");
Michael Ilseman336cb792012-10-09 16:57:38 +0000187
Chris Lattner02a97762011-01-03 01:10:08 +0000188 // Mix in the opcode.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000189 return hash_combine(
190 Inst->getOpcode(),
191 hash_combine_range(Inst->value_op_begin(), Inst->value_op_end()));
Chris Lattner18ae5432011-01-02 23:04:14 +0000192}
193
Chris Lattner79d83062011-01-03 02:20:48 +0000194bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) {
Chris Lattner18ae5432011-01-02 23:04:14 +0000195 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
196
197 if (LHS.isSentinel() || RHS.isSentinel())
198 return LHSI == RHSI;
Nadav Rotem465834c2012-07-24 10:51:42 +0000199
Chandler Carruth7253bba2015-01-24 11:33:55 +0000200 if (LHSI->getOpcode() != RHSI->getOpcode())
201 return false;
David Majnemer9554c132016-04-22 06:37:45 +0000202 if (LHSI->isIdenticalToWhenDefined(RHSI))
Chandler Carruth7253bba2015-01-24 11:33:55 +0000203 return true;
Michael Ilseman336cb792012-10-09 16:57:38 +0000204
205 // If we're not strictly identical, we still might be a commutable instruction
206 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
207 if (!LHSBinOp->isCommutative())
208 return false;
209
Chandler Carruth7253bba2015-01-24 11:33:55 +0000210 assert(isa<BinaryOperator>(RHSI) &&
211 "same opcode, but different instruction type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000212 BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI);
213
Michael Ilseman336cb792012-10-09 16:57:38 +0000214 // Commuted equality
215 return LHSBinOp->getOperand(0) == RHSBinOp->getOperand(1) &&
Chandler Carruth7253bba2015-01-24 11:33:55 +0000216 LHSBinOp->getOperand(1) == RHSBinOp->getOperand(0);
Michael Ilseman336cb792012-10-09 16:57:38 +0000217 }
218 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000219 assert(isa<CmpInst>(RHSI) &&
220 "same opcode, but different instruction type?");
Michael Ilseman336cb792012-10-09 16:57:38 +0000221 CmpInst *RHSCmp = cast<CmpInst>(RHSI);
222 // Commuted equality
223 return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) &&
Chandler Carruth7253bba2015-01-24 11:33:55 +0000224 LHSCmp->getOperand(1) == RHSCmp->getOperand(0) &&
225 LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate();
Michael Ilseman336cb792012-10-09 16:57:38 +0000226 }
227
Sanjay Patel558a4652017-12-13 22:57:35 +0000228 // Min/max/abs can occur with commuted operands, non-canonical predicates,
229 // and/or non-canonical operands.
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000230 Value *LHSA, *LHSB;
231 SelectPatternFlavor LSPF = matchSelectPattern(LHSI, LHSA, LHSB).Flavor;
Sanjay Patel558a4652017-12-13 22:57:35 +0000232 // TODO: We should also detect FP min/max.
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000233 if (LSPF == SPF_SMIN || LSPF == SPF_SMAX ||
Sanjay Patel558a4652017-12-13 22:57:35 +0000234 LSPF == SPF_UMIN || LSPF == SPF_UMAX ||
235 LSPF == SPF_ABS || LSPF == SPF_NABS) {
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000236 Value *RHSA, *RHSB;
237 SelectPatternFlavor RSPF = matchSelectPattern(RHSI, RHSA, RHSB).Flavor;
Craig Topperf14e62c2018-05-21 18:42:42 +0000238 if (LSPF == RSPF) {
239 // Abs results are placed in a defined order by matchSelectPattern.
240 if (LSPF == SPF_ABS || LSPF == SPF_NABS)
241 return LHSA == RHSA && LHSB == RHSB;
242 return ((LHSA == RHSA && LHSB == RHSB) ||
243 (LHSA == RHSB && LHSB == RHSA));
244 }
Sanjay Patel3c7a35d2017-12-13 21:58:15 +0000245 }
246
Michael Ilseman336cb792012-10-09 16:57:38 +0000247 return false;
Chris Lattner18ae5432011-01-02 23:04:14 +0000248}
249
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000250//===----------------------------------------------------------------------===//
Nadav Rotem465834c2012-07-24 10:51:42 +0000251// CallValue
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000252//===----------------------------------------------------------------------===//
253
254namespace {
Eugene Zelenko3b879392017-10-13 21:17:07 +0000255
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000256/// Struct representing the available call values in the scoped hash
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000257/// table.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000258struct CallValue {
259 Instruction *Inst;
Nadav Rotem465834c2012-07-24 10:51:42 +0000260
Chandler Carruth7253bba2015-01-24 11:33:55 +0000261 CallValue(Instruction *I) : Inst(I) {
262 assert((isSentinel() || canHandle(I)) && "Inst can't be handled!");
263 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000264
Chandler Carruth7253bba2015-01-24 11:33:55 +0000265 bool isSentinel() const {
266 return Inst == DenseMapInfo<Instruction *>::getEmptyKey() ||
267 Inst == DenseMapInfo<Instruction *>::getTombstoneKey();
268 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000269
Chandler Carruth7253bba2015-01-24 11:33:55 +0000270 static bool canHandle(Instruction *Inst) {
271 // Don't value number anything that returns void.
272 if (Inst->getType()->isVoidTy())
273 return false;
Nadav Rotem465834c2012-07-24 10:51:42 +0000274
Chandler Carruth7253bba2015-01-24 11:33:55 +0000275 CallInst *CI = dyn_cast<CallInst>(Inst);
276 if (!CI || !CI->onlyReadsMemory())
277 return false;
278 return true;
279 }
280};
Eugene Zelenko3b879392017-10-13 21:17:07 +0000281
282} // end anonymous namespace
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000283
284namespace llvm {
Eugene Zelenko3b879392017-10-13 21:17:07 +0000285
Chandler Carruth7253bba2015-01-24 11:33:55 +0000286template <> struct DenseMapInfo<CallValue> {
287 static inline CallValue getEmptyKey() {
288 return DenseMapInfo<Instruction *>::getEmptyKey();
289 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000290
Chandler Carruth7253bba2015-01-24 11:33:55 +0000291 static inline CallValue getTombstoneKey() {
292 return DenseMapInfo<Instruction *>::getTombstoneKey();
293 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000294
Chandler Carruth7253bba2015-01-24 11:33:55 +0000295 static unsigned getHashValue(CallValue Val);
296 static bool isEqual(CallValue LHS, CallValue RHS);
297};
Eugene Zelenko3b879392017-10-13 21:17:07 +0000298
299} // end namespace llvm
Chandler Carruth7253bba2015-01-24 11:33:55 +0000300
Chris Lattner92bb0f92011-01-03 03:41:27 +0000301unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000302 Instruction *Inst = Val.Inst;
Benjamin Kramer6ab86b12015-02-01 12:30:59 +0000303 // Hash all of the operands as pointers and mix in the opcode.
304 return hash_combine(
305 Inst->getOpcode(),
306 hash_combine_range(Inst->value_op_begin(), Inst->value_op_end()));
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000307}
308
Chris Lattner92bb0f92011-01-03 03:41:27 +0000309bool DenseMapInfo<CallValue>::isEqual(CallValue LHS, CallValue RHS) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000310 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000311 if (LHS.isSentinel() || RHS.isSentinel())
312 return LHSI == RHSI;
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000313 return LHSI->isIdenticalTo(RHSI);
314}
315
Chris Lattner79d83062011-01-03 02:20:48 +0000316//===----------------------------------------------------------------------===//
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000317// EarlyCSE implementation
Chris Lattner79d83062011-01-03 02:20:48 +0000318//===----------------------------------------------------------------------===//
319
Chris Lattner18ae5432011-01-02 23:04:14 +0000320namespace {
Eugene Zelenko3b879392017-10-13 21:17:07 +0000321
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000322/// A simple and fast domtree-based CSE pass.
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000323///
324/// This pass does a simple depth-first walk over the dominator tree,
325/// eliminating trivially redundant instructions and using instsimplify to
326/// canonicalize things as it goes. It is intended to be fast and catch obvious
327/// cases so that instcombine and other passes are more effective. It is
328/// expected that a later pass of GVN will catch the interesting/hard cases.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000329class EarlyCSE {
Chris Lattner704541b2011-01-02 21:47:05 +0000330public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000331 const TargetLibraryInfo &TLI;
332 const TargetTransformInfo &TTI;
333 DominatorTree &DT;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000334 AssumptionCache &AC;
Daniel Berlin4d0fe642017-04-28 19:55:38 +0000335 const SimplifyQuery SQ;
Geoff Berry8d846052016-08-31 19:24:10 +0000336 MemorySSA *MSSA;
Daniel Berlin17e8d0e2017-02-22 22:19:55 +0000337 std::unique_ptr<MemorySSAUpdater> MSSAUpdater;
Eugene Zelenko3b879392017-10-13 21:17:07 +0000338
339 using AllocatorTy =
340 RecyclingAllocator<BumpPtrAllocator,
341 ScopedHashTableVal<SimpleValue, Value *>>;
342 using ScopedHTType =
343 ScopedHashTable<SimpleValue, Value *, DenseMapInfo<SimpleValue>,
344 AllocatorTy>;
Nadav Rotem465834c2012-07-24 10:51:42 +0000345
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000346 /// A scoped hash table of the current values of all of our simple
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000347 /// scalar expressions.
348 ///
349 /// As we walk down the domtree, we look to see if instructions are in this:
350 /// if so, we replace them with what we find, otherwise we insert them so
351 /// that dominated values can succeed in their lookup.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000352 ScopedHTType AvailableValues;
Nadav Rotem465834c2012-07-24 10:51:42 +0000353
Hiroshi Inouef2096492018-06-14 05:41:49 +0000354 /// A scoped hash table of the current values of previously encountered
355 /// memory locations.
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000356 ///
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000357 /// This allows us to get efficient access to dominating loads or stores when
358 /// we have a fully redundant load. In addition to the most recent load, we
359 /// keep track of a generation count of the read, which is compared against
360 /// the current generation count. The current generation count is incremented
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000361 /// after every possibly writing memory operation, which ensures that we only
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000362 /// CSE loads with other loads that have no intervening store. Ordering
363 /// events (such as fences or atomic instructions) increment the generation
364 /// count as well; essentially, we model these as writes to all possible
365 /// locations. Note that atomic and/or volatile loads and stores can be
366 /// present the table; it is the responsibility of the consumer to inspect
367 /// the atomicity/volatility if needed.
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000368 struct LoadValue {
Eugene Zelenko3b879392017-10-13 21:17:07 +0000369 Instruction *DefInst = nullptr;
370 unsigned Generation = 0;
371 int MatchingId = -1;
372 bool IsAtomic = false;
Philip Reames0adbb192018-03-14 21:35:06 +0000373
Eugene Zelenko3b879392017-10-13 21:17:07 +0000374 LoadValue() = default;
Geoff Berry5ae272c2016-04-28 15:22:37 +0000375 LoadValue(Instruction *Inst, unsigned Generation, unsigned MatchingId,
Philip Reamesca587fe2018-03-15 17:29:32 +0000376 bool IsAtomic)
Sanjoy Das07c65212016-06-16 20:47:57 +0000377 : DefInst(Inst), Generation(Generation), MatchingId(MatchingId),
Philip Reamesca587fe2018-03-15 17:29:32 +0000378 IsAtomic(IsAtomic) {}
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +0000379 };
Eugene Zelenko3b879392017-10-13 21:17:07 +0000380
381 using LoadMapAllocator =
382 RecyclingAllocator<BumpPtrAllocator,
383 ScopedHashTableVal<Value *, LoadValue>>;
384 using LoadHTType =
385 ScopedHashTable<Value *, LoadValue, DenseMapInfo<Value *>,
386 LoadMapAllocator>;
387
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000388 LoadHTType AvailableLoads;
Fangrui Songf78650a2018-07-30 19:41:25 +0000389
Philip Reames0adbb192018-03-14 21:35:06 +0000390 // A scoped hash table mapping memory locations (represented as typed
391 // addresses) to generation numbers at which that memory location became
392 // (henceforth indefinitely) invariant.
393 using InvariantMapAllocator =
394 RecyclingAllocator<BumpPtrAllocator,
395 ScopedHashTableVal<MemoryLocation, unsigned>>;
396 using InvariantHTType =
397 ScopedHashTable<MemoryLocation, unsigned, DenseMapInfo<MemoryLocation>,
398 InvariantMapAllocator>;
399 InvariantHTType AvailableInvariants;
Nadav Rotem465834c2012-07-24 10:51:42 +0000400
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000401 /// A scoped hash table of the current values of read-only call
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000402 /// values.
403 ///
404 /// It uses the same generation count as loads.
Eugene Zelenko3b879392017-10-13 21:17:07 +0000405 using CallHTType =
406 ScopedHashTable<CallValue, std::pair<Instruction *, unsigned>>;
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000407 CallHTType AvailableCalls;
Nadav Rotem465834c2012-07-24 10:51:42 +0000408
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000409 /// This is the current generation of the memory value.
Eugene Zelenko3b879392017-10-13 21:17:07 +0000410 unsigned CurrentGeneration = 0;
Nadav Rotem465834c2012-07-24 10:51:42 +0000411
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000412 /// Set up the EarlyCSE runner for a particular function.
Daniel Berlin4d0fe642017-04-28 19:55:38 +0000413 EarlyCSE(const DataLayout &DL, const TargetLibraryInfo &TLI,
414 const TargetTransformInfo &TTI, DominatorTree &DT,
415 AssumptionCache &AC, MemorySSA *MSSA)
416 : TLI(TLI), TTI(TTI), DT(DT), AC(AC), SQ(DL, &TLI, &DT, &AC), MSSA(MSSA),
Eugene Zelenko3b879392017-10-13 21:17:07 +0000417 MSSAUpdater(llvm::make_unique<MemorySSAUpdater>(MSSA)) {}
Chris Lattner704541b2011-01-02 21:47:05 +0000418
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000419 bool run();
Chris Lattner704541b2011-01-02 21:47:05 +0000420
421private:
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000422 // Almost a POD, but needs to call the constructors for the scoped hash
423 // tables so that a new scope gets pushed on. These are RAII so that the
424 // scope gets popped when the NodeScope is destroyed.
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000425 class NodeScope {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000426 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000427 NodeScope(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
Philip Reames0adbb192018-03-14 21:35:06 +0000428 InvariantHTType &AvailableInvariants, CallHTType &AvailableCalls)
429 : Scope(AvailableValues), LoadScope(AvailableLoads),
430 InvariantScope(AvailableInvariants), CallScope(AvailableCalls) {}
Eugene Zelenko3b879392017-10-13 21:17:07 +0000431 NodeScope(const NodeScope &) = delete;
432 NodeScope &operator=(const NodeScope &) = delete;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000433
Chandler Carruth7253bba2015-01-24 11:33:55 +0000434 private:
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000435 ScopedHTType::ScopeTy Scope;
436 LoadHTType::ScopeTy LoadScope;
Philip Reames0adbb192018-03-14 21:35:06 +0000437 InvariantHTType::ScopeTy InvariantScope;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000438 CallHTType::ScopeTy CallScope;
439 };
440
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000441 // Contains all the needed information to create a stack for doing a depth
Nick Lewyckyedd0a702016-09-07 01:49:41 +0000442 // first traversal of the tree. This includes scopes for values, loads, and
Chandler Carruth9dea5cd2015-01-24 11:44:32 +0000443 // calls as well as the generation. There is a child iterator so that the
Sanjoy Das5253a082016-04-27 01:44:31 +0000444 // children do not need to be store separately.
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000445 class StackNode {
Chandler Carruth7253bba2015-01-24 11:33:55 +0000446 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000447 StackNode(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
Philip Reames0adbb192018-03-14 21:35:06 +0000448 InvariantHTType &AvailableInvariants, CallHTType &AvailableCalls,
449 unsigned cg, DomTreeNode *n, DomTreeNode::iterator child,
450 DomTreeNode::iterator end)
Chandler Carruth7253bba2015-01-24 11:33:55 +0000451 : CurrentGeneration(cg), ChildGeneration(cg), Node(n), ChildIter(child),
Philip Reames0adbb192018-03-14 21:35:06 +0000452 EndIter(end),
453 Scopes(AvailableValues, AvailableLoads, AvailableInvariants,
454 AvailableCalls)
Eugene Zelenko3b879392017-10-13 21:17:07 +0000455 {}
456 StackNode(const StackNode &) = delete;
457 StackNode &operator=(const StackNode &) = delete;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000458
459 // Accessors.
460 unsigned currentGeneration() { return CurrentGeneration; }
461 unsigned childGeneration() { return ChildGeneration; }
462 void childGeneration(unsigned generation) { ChildGeneration = generation; }
463 DomTreeNode *node() { return Node; }
464 DomTreeNode::iterator childIter() { return ChildIter; }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000465
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000466 DomTreeNode *nextChild() {
467 DomTreeNode *child = *ChildIter;
468 ++ChildIter;
469 return child;
470 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000471
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000472 DomTreeNode::iterator end() { return EndIter; }
473 bool isProcessed() { return Processed; }
474 void process() { Processed = true; }
475
Chandler Carruth7253bba2015-01-24 11:33:55 +0000476 private:
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000477 unsigned CurrentGeneration;
478 unsigned ChildGeneration;
479 DomTreeNode *Node;
480 DomTreeNode::iterator ChildIter;
481 DomTreeNode::iterator EndIter;
482 NodeScope Scopes;
Eugene Zelenko3b879392017-10-13 21:17:07 +0000483 bool Processed = false;
Lenny Maiorani8d670b82012-01-31 23:14:41 +0000484 };
485
Adrian Prantl5f8f34e42018-05-01 15:54:18 +0000486 /// Wrapper class to handle memory instructions, including loads,
Chad Rosierf9327d62015-01-26 22:51:15 +0000487 /// stores and intrinsic loads and stores defined by the target.
488 class ParseMemoryInst {
489 public:
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000490 ParseMemoryInst(Instruction *Inst, const TargetTransformInfo &TTI)
Eugene Zelenko3b879392017-10-13 21:17:07 +0000491 : Inst(Inst) {
Philip Reames9e5e2d62015-12-07 22:41:23 +0000492 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst))
Matt Arsenault18bb24a2017-03-24 18:56:43 +0000493 if (TTI.getTgtMemIntrinsic(II, Info))
Philip Reames9e5e2d62015-12-07 22:41:23 +0000494 IsTargetMemInst = true;
495 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000496
Philip Reames9e5e2d62015-12-07 22:41:23 +0000497 bool isLoad() const {
498 if (IsTargetMemInst) return Info.ReadMem;
499 return isa<LoadInst>(Inst);
500 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000501
Philip Reames9e5e2d62015-12-07 22:41:23 +0000502 bool isStore() const {
503 if (IsTargetMemInst) return Info.WriteMem;
504 return isa<StoreInst>(Inst);
505 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000506
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000507 bool isAtomic() const {
Matt Arsenault18bb24a2017-03-24 18:56:43 +0000508 if (IsTargetMemInst)
509 return Info.Ordering != AtomicOrdering::NotAtomic;
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000510 return Inst->isAtomic();
511 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000512
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000513 bool isUnordered() const {
Matt Arsenault18bb24a2017-03-24 18:56:43 +0000514 if (IsTargetMemInst)
515 return Info.isUnordered();
516
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000517 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
518 return LI->isUnordered();
519 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
520 return SI->isUnordered();
521 }
522 // Conservative answer
523 return !Inst->isAtomic();
524 }
525
526 bool isVolatile() const {
Matt Arsenault18bb24a2017-03-24 18:56:43 +0000527 if (IsTargetMemInst)
528 return Info.IsVolatile;
529
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000530 if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) {
531 return LI->isVolatile();
532 } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) {
533 return SI->isVolatile();
534 }
535 // Conservative answer
536 return true;
537 }
538
Sanjoy Das07c65212016-06-16 20:47:57 +0000539 bool isInvariantLoad() const {
540 if (auto *LI = dyn_cast<LoadInst>(Inst))
Sanjoy Das1ab2fad2016-06-16 21:00:57 +0000541 return LI->getMetadata(LLVMContext::MD_invariant_load) != nullptr;
Sanjoy Das07c65212016-06-16 20:47:57 +0000542 return false;
543 }
Junmo Park80440eb2016-02-18 10:09:20 +0000544
Arnaud A. de Grandmaison6fd488b2015-10-06 13:35:30 +0000545 bool isMatchingMemLoc(const ParseMemoryInst &Inst) const {
Philip Reames9e5e2d62015-12-07 22:41:23 +0000546 return (getPointerOperand() == Inst.getPointerOperand() &&
547 getMatchingId() == Inst.getMatchingId());
Chad Rosierf9327d62015-01-26 22:51:15 +0000548 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000549
Philip Reames9e5e2d62015-12-07 22:41:23 +0000550 bool isValid() const { return getPointerOperand() != nullptr; }
Chad Rosierf9327d62015-01-26 22:51:15 +0000551
Chad Rosierf9327d62015-01-26 22:51:15 +0000552 // For regular (non-intrinsic) loads/stores, this is set to -1. For
553 // intrinsic loads/stores, the id is retrieved from the corresponding
554 // field in the MemIntrinsicInfo structure. That field contains
555 // non-negative values only.
Philip Reames9e5e2d62015-12-07 22:41:23 +0000556 int getMatchingId() const {
557 if (IsTargetMemInst) return Info.MatchingId;
558 return -1;
559 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000560
Philip Reames9e5e2d62015-12-07 22:41:23 +0000561 Value *getPointerOperand() const {
562 if (IsTargetMemInst) return Info.PtrVal;
Renato Golin038ede22018-03-09 21:05:58 +0000563 return getLoadStorePointerOperand(Inst);
Philip Reames9e5e2d62015-12-07 22:41:23 +0000564 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000565
Philip Reames9e5e2d62015-12-07 22:41:23 +0000566 bool mayReadFromMemory() const {
567 if (IsTargetMemInst) return Info.ReadMem;
568 return Inst->mayReadFromMemory();
569 }
Eugene Zelenko3b879392017-10-13 21:17:07 +0000570
Philip Reames9e5e2d62015-12-07 22:41:23 +0000571 bool mayWriteToMemory() const {
572 if (IsTargetMemInst) return Info.WriteMem;
573 return Inst->mayWriteToMemory();
574 }
575
576 private:
Eugene Zelenko3b879392017-10-13 21:17:07 +0000577 bool IsTargetMemInst = false;
Philip Reames9e5e2d62015-12-07 22:41:23 +0000578 MemIntrinsicInfo Info;
579 Instruction *Inst;
Chad Rosierf9327d62015-01-26 22:51:15 +0000580 };
581
Chris Lattner18ae5432011-01-02 23:04:14 +0000582 bool processNode(DomTreeNode *Node);
Nadav Rotem465834c2012-07-24 10:51:42 +0000583
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000584 bool handleBranchCondition(Instruction *CondInst, const BranchInst *BI,
585 const BasicBlock *BB, const BasicBlock *Pred);
586
Chad Rosierf9327d62015-01-26 22:51:15 +0000587 Value *getOrCreateResult(Value *Inst, Type *ExpectedType) const {
Sanjay Patel1c9867d2017-01-03 00:16:24 +0000588 if (auto *LI = dyn_cast<LoadInst>(Inst))
Chad Rosierf9327d62015-01-26 22:51:15 +0000589 return LI;
Sanjay Patel1c9867d2017-01-03 00:16:24 +0000590 if (auto *SI = dyn_cast<StoreInst>(Inst))
Chad Rosierf9327d62015-01-26 22:51:15 +0000591 return SI->getValueOperand();
592 assert(isa<IntrinsicInst>(Inst) && "Instruction not supported");
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000593 return TTI.getOrCreateResultFromMemIntrinsic(cast<IntrinsicInst>(Inst),
594 ExpectedType);
Chad Rosierf9327d62015-01-26 22:51:15 +0000595 }
Geoff Berry8d846052016-08-31 19:24:10 +0000596
Philip Reames0adbb192018-03-14 21:35:06 +0000597 /// Return true if the instruction is known to only operate on memory
598 /// provably invariant in the given "generation".
599 bool isOperatingOnInvariantMemAt(Instruction *I, unsigned GenAt);
600
Geoff Berry8d846052016-08-31 19:24:10 +0000601 bool isSameMemGeneration(unsigned EarlierGeneration, unsigned LaterGeneration,
602 Instruction *EarlierInst, Instruction *LaterInst);
603
604 void removeMSSA(Instruction *Inst) {
605 if (!MSSA)
606 return;
Geoff Berry91e9a5c2016-10-25 16:18:47 +0000607 // Removing a store here can leave MemorySSA in an unoptimized state by
608 // creating MemoryPhis that have identical arguments and by creating
Geoff Berry68154682016-10-24 15:54:00 +0000609 // MemoryUses whose defining access is not an actual clobber. We handle the
Geoff Berry91e9a5c2016-10-25 16:18:47 +0000610 // phi case eagerly here. The non-optimized MemoryUse case is lazily
611 // updated by MemorySSA getClobberingMemoryAccess.
Geoff Berry68154682016-10-24 15:54:00 +0000612 if (MemoryAccess *MA = MSSA->getMemoryAccess(Inst)) {
613 // Optimize MemoryPhi nodes that may become redundant by having all the
614 // same input values once MA is removed.
Davide Italiano0dc47782017-06-14 19:29:53 +0000615 SmallSetVector<MemoryPhi *, 4> PhisToCheck;
Geoff Berry68154682016-10-24 15:54:00 +0000616 SmallVector<MemoryAccess *, 8> WorkQueue;
617 WorkQueue.push_back(MA);
618 // Process MemoryPhi nodes in FIFO order using a ever-growing vector since
619 // we shouldn't be processing that many phis and this will avoid an
620 // allocation in almost all cases.
621 for (unsigned I = 0; I < WorkQueue.size(); ++I) {
622 MemoryAccess *WI = WorkQueue[I];
623
624 for (auto *U : WI->users())
625 if (MemoryPhi *MP = dyn_cast<MemoryPhi>(U))
Davide Italiano0dc47782017-06-14 19:29:53 +0000626 PhisToCheck.insert(MP);
Geoff Berry68154682016-10-24 15:54:00 +0000627
Daniel Berlin17e8d0e2017-02-22 22:19:55 +0000628 MSSAUpdater->removeMemoryAccess(WI);
Geoff Berry68154682016-10-24 15:54:00 +0000629
630 for (MemoryPhi *MP : PhisToCheck) {
631 MemoryAccess *FirstIn = MP->getIncomingValue(0);
Eugene Zelenko3b879392017-10-13 21:17:07 +0000632 if (llvm::all_of(MP->incoming_values(),
633 [=](Use &In) { return In == FirstIn; }))
Geoff Berry68154682016-10-24 15:54:00 +0000634 WorkQueue.push_back(MP);
635 }
636 PhisToCheck.clear();
637 }
638 }
Geoff Berry8d846052016-08-31 19:24:10 +0000639 }
Chris Lattner704541b2011-01-02 21:47:05 +0000640};
Eugene Zelenko3b879392017-10-13 21:17:07 +0000641
642} // end anonymous namespace
Chris Lattner704541b2011-01-02 21:47:05 +0000643
Geoff Berry68154682016-10-24 15:54:00 +0000644/// Determine if the memory referenced by LaterInst is from the same heap
645/// version as EarlierInst.
Geoff Berry8d846052016-08-31 19:24:10 +0000646/// This is currently called in two scenarios:
647///
648/// load p
649/// ...
650/// load p
651///
652/// and
653///
654/// x = load p
655/// ...
656/// store x, p
657///
658/// in both cases we want to verify that there are no possible writes to the
659/// memory referenced by p between the earlier and later instruction.
660bool EarlyCSE::isSameMemGeneration(unsigned EarlierGeneration,
661 unsigned LaterGeneration,
662 Instruction *EarlierInst,
663 Instruction *LaterInst) {
664 // Check the simple memory generation tracking first.
665 if (EarlierGeneration == LaterGeneration)
666 return true;
667
668 if (!MSSA)
669 return false;
670
Geoff Berryf7d5daa2017-07-14 20:13:21 +0000671 // If MemorySSA has determined that one of EarlierInst or LaterInst does not
672 // read/write memory, then we can safely return true here.
673 // FIXME: We could be more aggressive when checking doesNotAccessMemory(),
674 // onlyReadsMemory(), mayReadFromMemory(), and mayWriteToMemory() in this pass
675 // by also checking the MemorySSA MemoryAccess on the instruction. Initial
676 // experiments suggest this isn't worthwhile, at least for C/C++ code compiled
677 // with the default optimization pipeline.
678 auto *EarlierMA = MSSA->getMemoryAccess(EarlierInst);
679 if (!EarlierMA)
680 return true;
681 auto *LaterMA = MSSA->getMemoryAccess(LaterInst);
682 if (!LaterMA)
683 return true;
684
Geoff Berry8d846052016-08-31 19:24:10 +0000685 // Since we know LaterDef dominates LaterInst and EarlierInst dominates
686 // LaterInst, if LaterDef dominates EarlierInst then it can't occur between
687 // EarlierInst and LaterInst and neither can any other write that potentially
688 // clobbers LaterInst.
Geoff Berry91e9a5c2016-10-25 16:18:47 +0000689 MemoryAccess *LaterDef =
690 MSSA->getWalker()->getClobberingMemoryAccess(LaterInst);
Geoff Berryf7d5daa2017-07-14 20:13:21 +0000691 return MSSA->dominates(LaterDef, EarlierMA);
Geoff Berry8d846052016-08-31 19:24:10 +0000692}
693
Philip Reames0adbb192018-03-14 21:35:06 +0000694bool EarlyCSE::isOperatingOnInvariantMemAt(Instruction *I, unsigned GenAt) {
695 // A location loaded from with an invariant_load is assumed to *never* change
696 // within the visible scope of the compilation.
697 if (auto *LI = dyn_cast<LoadInst>(I))
698 if (LI->getMetadata(LLVMContext::MD_invariant_load))
699 return true;
700
701 auto MemLocOpt = MemoryLocation::getOrNone(I);
702 if (!MemLocOpt)
703 // "target" intrinsic forms of loads aren't currently known to
704 // MemoryLocation::get. TODO
705 return false;
706 MemoryLocation MemLoc = *MemLocOpt;
707 if (!AvailableInvariants.count(MemLoc))
708 return false;
709
710 // Is the generation at which this became invariant older than the
711 // current one?
712 return AvailableInvariants.lookup(MemLoc) <= GenAt;
713}
714
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000715bool EarlyCSE::handleBranchCondition(Instruction *CondInst,
716 const BranchInst *BI, const BasicBlock *BB,
717 const BasicBlock *Pred) {
718 assert(BI->isConditional() && "Should be a conditional branch!");
719 assert(BI->getCondition() == CondInst && "Wrong condition?");
720 assert(BI->getSuccessor(0) == BB || BI->getSuccessor(1) == BB);
721 auto *TorF = (BI->getSuccessor(0) == BB)
722 ? ConstantInt::getTrue(BB->getContext())
723 : ConstantInt::getFalse(BB->getContext());
Simon Pilgrimdee9c672018-06-14 14:22:03 +0000724 auto MatchBinOp = [](Instruction *I, unsigned Opcode) {
Max Kazantsevff6d1c92018-06-14 13:02:13 +0000725 if (BinaryOperator *BOp = dyn_cast<BinaryOperator>(I))
Simon Pilgrimdee9c672018-06-14 14:22:03 +0000726 return BOp->getOpcode() == Opcode;
Max Kazantsevff6d1c92018-06-14 13:02:13 +0000727 return false;
728 };
729 // If the condition is AND operation, we can propagate its operands into the
730 // true branch. If it is OR operation, we can propagate them into the false
731 // branch.
Simon Pilgrimdee9c672018-06-14 14:22:03 +0000732 unsigned PropagateOpcode =
733 (BI->getSuccessor(0) == BB) ? Instruction::And : Instruction::Or;
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000734
Max Kazantsevff6d1c92018-06-14 13:02:13 +0000735 bool MadeChanges = false;
736 SmallVector<Instruction *, 4> WorkList;
737 SmallPtrSet<Instruction *, 4> Visited;
738 WorkList.push_back(CondInst);
739 while (!WorkList.empty()) {
740 Instruction *Curr = WorkList.pop_back_val();
741
742 AvailableValues.insert(Curr, TorF);
743 LLVM_DEBUG(dbgs() << "EarlyCSE CVP: Add conditional value for '"
744 << Curr->getName() << "' as " << *TorF << " in "
745 << BB->getName() << "\n");
746 if (!DebugCounter::shouldExecute(CSECounter)) {
747 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
748 } else {
749 // Replace all dominated uses with the known value.
750 if (unsigned Count = replaceDominatedUsesWith(Curr, TorF, DT,
751 BasicBlockEdge(Pred, BB))) {
752 NumCSECVP += Count;
753 MadeChanges = true;
754 }
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000755 }
Max Kazantsevff6d1c92018-06-14 13:02:13 +0000756
Simon Pilgrimdee9c672018-06-14 14:22:03 +0000757 if (MatchBinOp(Curr, PropagateOpcode))
Max Kazantsevff6d1c92018-06-14 13:02:13 +0000758 for (auto &Op : cast<BinaryOperator>(Curr)->operands())
759 if (Instruction *OPI = dyn_cast<Instruction>(Op))
760 if (SimpleValue::canHandle(OPI) && Visited.insert(OPI).second)
761 WorkList.push_back(OPI);
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000762 }
Max Kazantsevff6d1c92018-06-14 13:02:13 +0000763
764 return MadeChanges;
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000765}
766
Chris Lattner18ae5432011-01-02 23:04:14 +0000767bool EarlyCSE::processNode(DomTreeNode *Node) {
Chad Rosier1a4bc112016-04-22 18:47:21 +0000768 bool Changed = false;
Chris Lattner18ae5432011-01-02 23:04:14 +0000769 BasicBlock *BB = Node->getBlock();
Nadav Rotem465834c2012-07-24 10:51:42 +0000770
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000771 // If this block has a single predecessor, then the predecessor is the parent
772 // of the domtree node and all of the live out memory values are still current
773 // in this block. If this block has multiple predecessors, then they could
774 // have invalidated the live-out memory values of our parent value. For now,
775 // just be conservative and invalidate memory if this block has multiple
776 // predecessors.
Craig Topperf40110f2014-04-25 05:29:35 +0000777 if (!BB->getSinglePredecessor())
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000778 ++CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +0000779
Philip Reames7c78ef72015-05-22 23:53:24 +0000780 // If this node has a single predecessor which ends in a conditional branch,
781 // we can infer the value of the branch condition given that we took this
Chad Rosierb346dcb2016-04-20 19:16:23 +0000782 // path. We need the single predecessor to ensure there's not another path
Philip Reames7c78ef72015-05-22 23:53:24 +0000783 // which reaches this block where the condition might hold a different
784 // value. Since we're adding this to the scoped hash table (like any other
785 // def), it will have been popped if we encounter a future merge block.
Sanjay Patelf1e1fba2017-03-15 20:25:05 +0000786 if (BasicBlock *Pred = BB->getSinglePredecessor()) {
787 auto *BI = dyn_cast<BranchInst>(Pred->getTerminator());
788 if (BI && BI->isConditional()) {
789 auto *CondInst = dyn_cast<Instruction>(BI->getCondition());
Max Kazantsev0bad5be2018-05-31 08:08:34 +0000790 if (CondInst && SimpleValue::canHandle(CondInst))
791 Changed |= handleBranchCondition(CondInst, BI, BB, Pred);
Sanjay Patelf1e1fba2017-03-15 20:25:05 +0000792 }
793 }
Philip Reames7c78ef72015-05-22 23:53:24 +0000794
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000795 /// LastStore - Keep track of the last non-volatile store that we saw... for
796 /// as long as there in no instruction that reads memory. If we see a store
797 /// to the same location, we delete the dead store. This zaps trivial dead
798 /// stores which can occur in bitfield code among other things.
Chad Rosierf9327d62015-01-26 22:51:15 +0000799 Instruction *LastStore = nullptr;
Nadav Rotem465834c2012-07-24 10:51:42 +0000800
Chris Lattner18ae5432011-01-02 23:04:14 +0000801 // See if any instructions in the block can be eliminated. If so, do it. If
802 // not, add them to AvailableValues.
Chandler Carruth7253bba2015-01-24 11:33:55 +0000803 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
Duncan P. N. Exon Smith3a9c9e32015-10-13 18:26:00 +0000804 Instruction *Inst = &*I++;
Nadav Rotem465834c2012-07-24 10:51:42 +0000805
Chris Lattner18ae5432011-01-02 23:04:14 +0000806 // Dead instructions should just be removed.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000807 if (isInstructionTriviallyDead(Inst, &TLI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000808 LLVM_DEBUG(dbgs() << "EarlyCSE DCE: " << *Inst << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000809 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000810 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000811 continue;
812 }
Petar Jovanovic1d26c7e2018-01-09 15:08:37 +0000813 salvageDebugInfo(*Inst);
Geoff Berry8d846052016-08-31 19:24:10 +0000814 removeMSSA(Inst);
Chris Lattner18ae5432011-01-02 23:04:14 +0000815 Inst->eraseFromParent();
816 Changed = true;
Chris Lattner8fac5db2011-01-02 23:19:45 +0000817 ++NumSimplify;
Chris Lattner18ae5432011-01-02 23:04:14 +0000818 continue;
819 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000820
Hal Finkel1e16fa32014-11-03 20:21:32 +0000821 // Skip assume intrinsics, they don't really have side effects (although
822 // they're marked as such to ensure preservation of control dependencies),
Max Kazantsev531db9a2017-04-28 06:25:39 +0000823 // and this pass will not bother with its removal. However, we should mark
824 // its condition as true for all dominated blocks.
Hal Finkel1e16fa32014-11-03 20:21:32 +0000825 if (match(Inst, m_Intrinsic<Intrinsic::assume>())) {
Max Kazantsev531db9a2017-04-28 06:25:39 +0000826 auto *CondI =
827 dyn_cast<Instruction>(cast<CallInst>(Inst)->getArgOperand(0));
828 if (CondI && SimpleValue::canHandle(CondI)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000829 LLVM_DEBUG(dbgs() << "EarlyCSE considering assumption: " << *Inst
830 << '\n');
Max Kazantsev531db9a2017-04-28 06:25:39 +0000831 AvailableValues.insert(CondI, ConstantInt::getTrue(BB->getContext()));
832 } else
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000833 LLVM_DEBUG(dbgs() << "EarlyCSE skipping assumption: " << *Inst << '\n');
Hal Finkel1e16fa32014-11-03 20:21:32 +0000834 continue;
835 }
836
Dan Gohman2c74fe92017-11-08 21:59:51 +0000837 // Skip sideeffect intrinsics, for the same reason as assume intrinsics.
838 if (match(Inst, m_Intrinsic<Intrinsic::sideeffect>())) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000839 LLVM_DEBUG(dbgs() << "EarlyCSE skipping sideeffect: " << *Inst << '\n');
Dan Gohman2c74fe92017-11-08 21:59:51 +0000840 continue;
841 }
842
Philip Reames0adbb192018-03-14 21:35:06 +0000843 // We can skip all invariant.start intrinsics since they only read memory,
844 // and we can forward values across it. For invariant starts without
845 // invariant ends, we can use the fact that the invariantness never ends to
846 // start a scope in the current generaton which is true for all future
847 // generations. Also, we dont need to consume the last store since the
848 // semantics of invariant.start allow us to perform DSE of the last
Fangrui Songf78650a2018-07-30 19:41:25 +0000849 // store, if there was a store following invariant.start. Consider:
Anna Thomasb2d12b82016-08-09 20:00:47 +0000850 //
851 // store 30, i8* p
852 // invariant.start(p)
853 // store 40, i8* p
854 // We can DSE the store to 30, since the store 40 to invariant location p
855 // causes undefined behaviour.
Philip Reames0adbb192018-03-14 21:35:06 +0000856 if (match(Inst, m_Intrinsic<Intrinsic::invariant_start>())) {
Fangrui Songf78650a2018-07-30 19:41:25 +0000857 // If there are any uses, the scope might end.
Philip Reames0adbb192018-03-14 21:35:06 +0000858 if (!Inst->use_empty())
859 continue;
860 auto *CI = cast<CallInst>(Inst);
861 MemoryLocation MemLoc = MemoryLocation::getForArgument(CI, 1, TLI);
Philip Reames422024a2018-03-15 18:12:27 +0000862 // Don't start a scope if we already have a better one pushed
863 if (!AvailableInvariants.count(MemLoc))
864 AvailableInvariants.insert(MemLoc, CurrentGeneration);
Anna Thomasb2d12b82016-08-09 20:00:47 +0000865 continue;
Philip Reames0adbb192018-03-14 21:35:06 +0000866 }
Anna Thomasb2d12b82016-08-09 20:00:47 +0000867
Max Kazantsev3c284bd2018-08-30 03:39:16 +0000868 if (isGuard(Inst)) {
Sanjoy Das107aefc2016-04-29 22:23:16 +0000869 if (auto *CondI =
870 dyn_cast<Instruction>(cast<CallInst>(Inst)->getArgOperand(0))) {
Max Kazantsev0589d9f2017-04-28 06:05:48 +0000871 if (SimpleValue::canHandle(CondI)) {
872 // Do we already know the actual value of this condition?
873 if (auto *KnownCond = AvailableValues.lookup(CondI)) {
874 // Is the condition known to be true?
875 if (isa<ConstantInt>(KnownCond) &&
Craig Topper79ab6432017-07-06 18:39:47 +0000876 cast<ConstantInt>(KnownCond)->isOne()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000877 LLVM_DEBUG(dbgs()
878 << "EarlyCSE removing guard: " << *Inst << '\n');
Max Kazantsev0589d9f2017-04-28 06:05:48 +0000879 removeMSSA(Inst);
880 Inst->eraseFromParent();
881 Changed = true;
882 continue;
883 } else
884 // Use the known value if it wasn't true.
885 cast<CallInst>(Inst)->setArgOperand(0, KnownCond);
886 }
887 // The condition we're on guarding here is true for all dominated
888 // locations.
Sanjoy Dasee81b232016-04-29 21:52:58 +0000889 AvailableValues.insert(CondI, ConstantInt::getTrue(BB->getContext()));
Max Kazantsev0589d9f2017-04-28 06:05:48 +0000890 }
Sanjoy Dasee81b232016-04-29 21:52:58 +0000891 }
892
893 // Guard intrinsics read all memory, but don't write any memory.
894 // Accordingly, don't update the generation but consume the last store (to
895 // avoid an incorrect DSE).
896 LastStore = nullptr;
897 continue;
898 }
899
Chris Lattner18ae5432011-01-02 23:04:14 +0000900 // If the instruction can be simplified (e.g. X+0 = X) then replace it with
901 // its simpler value.
Daniel Berlin4d0fe642017-04-28 19:55:38 +0000902 if (Value *V = SimplifyInstruction(Inst, SQ)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000903 LLVM_DEBUG(dbgs() << "EarlyCSE Simplify: " << *Inst << " to: " << *V
904 << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000905 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000906 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000907 } else {
908 bool Killed = false;
909 if (!Inst->use_empty()) {
910 Inst->replaceAllUsesWith(V);
911 Changed = true;
912 }
913 if (isInstructionTriviallyDead(Inst, &TLI)) {
914 removeMSSA(Inst);
915 Inst->eraseFromParent();
916 Changed = true;
917 Killed = true;
918 }
919 if (Changed)
920 ++NumSimplify;
921 if (Killed)
922 continue;
David Majnemerb8da3a22016-06-25 00:04:10 +0000923 }
Chris Lattner18ae5432011-01-02 23:04:14 +0000924 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000925
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000926 // If this is a simple instruction that we can value number, process it.
927 if (SimpleValue::canHandle(Inst)) {
928 // See if the instruction has an available value. If so, use it.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000929 if (Value *V = AvailableValues.lookup(Inst)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000930 LLVM_DEBUG(dbgs() << "EarlyCSE CSE: " << *Inst << " to: " << *V
931 << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000932 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000933 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000934 continue;
935 }
David Majnemer9554c132016-04-22 06:37:45 +0000936 if (auto *I = dyn_cast<Instruction>(V))
937 I->andIRFlags(Inst);
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000938 Inst->replaceAllUsesWith(V);
Geoff Berry8d846052016-08-31 19:24:10 +0000939 removeMSSA(Inst);
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000940 Inst->eraseFromParent();
941 Changed = true;
942 ++NumCSE;
943 continue;
944 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000945
Chris Lattnerb9a8efc2011-01-03 03:18:43 +0000946 // Otherwise, just remember that this value is available.
Chandler Carruthd649c0a2015-01-27 01:34:14 +0000947 AvailableValues.insert(Inst, Inst);
Chris Lattner18ae5432011-01-02 23:04:14 +0000948 continue;
949 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000950
Chad Rosierf9327d62015-01-26 22:51:15 +0000951 ParseMemoryInst MemInst(Inst, TTI);
Chris Lattner92bb0f92011-01-03 03:41:27 +0000952 // If this is a non-volatile load, process it.
Chad Rosierf9327d62015-01-26 22:51:15 +0000953 if (MemInst.isValid() && MemInst.isLoad()) {
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000954 // (conservatively) we can't peak past the ordering implied by this
955 // operation, but we can add this load to our set of available values
956 if (MemInst.isVolatile() || !MemInst.isUnordered()) {
Craig Topperf40110f2014-04-25 05:29:35 +0000957 LastStore = nullptr;
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000958 ++CurrentGeneration;
Chris Lattner9e5e9ed2011-01-03 04:17:24 +0000959 }
Nadav Rotem465834c2012-07-24 10:51:42 +0000960
Philip Reamesca587fe2018-03-15 17:29:32 +0000961 if (MemInst.isInvariantLoad()) {
962 // If we pass an invariant load, we know that memory location is
963 // indefinitely constant from the moment of first dereferenceability.
Philip Reames422024a2018-03-15 18:12:27 +0000964 // We conservatively treat the invariant_load as that moment. If we
965 // pass a invariant load after already establishing a scope, don't
966 // restart it since we want to preserve the earliest point seen.
Philip Reamesca587fe2018-03-15 17:29:32 +0000967 auto MemLoc = MemoryLocation::get(Inst);
Philip Reames422024a2018-03-15 18:12:27 +0000968 if (!AvailableInvariants.count(MemLoc))
969 AvailableInvariants.insert(MemLoc, CurrentGeneration);
Philip Reamesca587fe2018-03-15 17:29:32 +0000970 }
971
Chris Lattner92bb0f92011-01-03 03:41:27 +0000972 // If we have an available version of this load, and if it is the right
Sanjoy Das07c65212016-06-16 20:47:57 +0000973 // generation or the load is known to be from an invariant location,
974 // replace this instruction.
975 //
Geoff Berry64f5ed12016-08-31 17:45:31 +0000976 // If either the dominating load or the current load are invariant, then
977 // we can assume the current load loads the same value as the dominating
978 // load.
Philip Reames9e5e2d62015-12-07 22:41:23 +0000979 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
Sanjoy Das07c65212016-06-16 20:47:57 +0000980 if (InVal.DefInst != nullptr &&
Philip Reames8fc2cbf2015-12-08 21:45:41 +0000981 InVal.MatchingId == MemInst.getMatchingId() &&
982 // We don't yet handle removing loads with ordering of any kind.
983 !MemInst.isVolatile() && MemInst.isUnordered() &&
984 // We can't replace an atomic load with one which isn't also atomic.
Geoff Berry8d846052016-08-31 19:24:10 +0000985 InVal.IsAtomic >= MemInst.isAtomic() &&
Philip Reamesca587fe2018-03-15 17:29:32 +0000986 (isOperatingOnInvariantMemAt(Inst, InVal.Generation) ||
Geoff Berry8d846052016-08-31 19:24:10 +0000987 isSameMemGeneration(InVal.Generation, CurrentGeneration,
988 InVal.DefInst, Inst))) {
Philip Reames32b55182016-05-06 01:13:58 +0000989 Value *Op = getOrCreateResult(InVal.DefInst, Inst->getType());
Chad Rosierf9327d62015-01-26 22:51:15 +0000990 if (Op != nullptr) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000991 LLVM_DEBUG(dbgs() << "EarlyCSE CSE LOAD: " << *Inst
992 << " to: " << *InVal.DefInst << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000993 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000994 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +0000995 continue;
996 }
Chad Rosierf9327d62015-01-26 22:51:15 +0000997 if (!Inst->use_empty())
998 Inst->replaceAllUsesWith(Op);
Geoff Berry8d846052016-08-31 19:24:10 +0000999 removeMSSA(Inst);
Chad Rosierf9327d62015-01-26 22:51:15 +00001000 Inst->eraseFromParent();
1001 Changed = true;
1002 ++NumCSELoad;
1003 continue;
1004 }
Chris Lattnerb9a8efc2011-01-03 03:18:43 +00001005 }
Nadav Rotem465834c2012-07-24 10:51:42 +00001006
Chris Lattnerb9a8efc2011-01-03 03:18:43 +00001007 // Otherwise, remember that we have this instruction.
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +00001008 AvailableLoads.insert(
Philip Reames9e5e2d62015-12-07 22:41:23 +00001009 MemInst.getPointerOperand(),
Philip Reames8fc2cbf2015-12-08 21:45:41 +00001010 LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(),
Philip Reamesca587fe2018-03-15 17:29:32 +00001011 MemInst.isAtomic()));
Craig Topperf40110f2014-04-25 05:29:35 +00001012 LastStore = nullptr;
Chris Lattner92bb0f92011-01-03 03:41:27 +00001013 continue;
1014 }
Nadav Rotem465834c2012-07-24 10:51:42 +00001015
Sanjoy Das6de072a2017-01-17 20:15:47 +00001016 // If this instruction may read from memory or throw (and potentially read
1017 // from memory in the exception handler), forget LastStore. Load/store
1018 // intrinsics will indicate both a read and a write to memory. The target
1019 // may override this (e.g. so that a store intrinsic does not read from
1020 // memory, and thus will be treated the same as a regular store for
1021 // commoning purposes).
1022 if ((Inst->mayReadFromMemory() || Inst->mayThrow()) &&
Chad Rosierf9327d62015-01-26 22:51:15 +00001023 !(MemInst.isValid() && !MemInst.mayReadFromMemory()))
Craig Topperf40110f2014-04-25 05:29:35 +00001024 LastStore = nullptr;
Nadav Rotem465834c2012-07-24 10:51:42 +00001025
Chris Lattner92bb0f92011-01-03 03:41:27 +00001026 // If this is a read-only call, process it.
1027 if (CallValue::canHandle(Inst)) {
1028 // If we have an available version of this call, and if it is the right
1029 // generation, replace this instruction.
Geoff Berry2f64c202016-05-13 17:54:58 +00001030 std::pair<Instruction *, unsigned> InVal = AvailableCalls.lookup(Inst);
Geoff Berry8d846052016-08-31 19:24:10 +00001031 if (InVal.first != nullptr &&
1032 isSameMemGeneration(InVal.second, CurrentGeneration, InVal.first,
1033 Inst)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001034 LLVM_DEBUG(dbgs() << "EarlyCSE CSE CALL: " << *Inst
1035 << " to: " << *InVal.first << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +00001036 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001037 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +00001038 continue;
1039 }
Chandler Carruth7253bba2015-01-24 11:33:55 +00001040 if (!Inst->use_empty())
1041 Inst->replaceAllUsesWith(InVal.first);
Geoff Berry8d846052016-08-31 19:24:10 +00001042 removeMSSA(Inst);
Chris Lattner92bb0f92011-01-03 03:41:27 +00001043 Inst->eraseFromParent();
1044 Changed = true;
1045 ++NumCSECall;
1046 continue;
1047 }
Nadav Rotem465834c2012-07-24 10:51:42 +00001048
Chris Lattner92bb0f92011-01-03 03:41:27 +00001049 // Otherwise, remember that we have this instruction.
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001050 AvailableCalls.insert(
Geoff Berry2f64c202016-05-13 17:54:58 +00001051 Inst, std::pair<Instruction *, unsigned>(Inst, CurrentGeneration));
Chris Lattnerb9a8efc2011-01-03 03:18:43 +00001052 continue;
1053 }
Nadav Rotem465834c2012-07-24 10:51:42 +00001054
Philip Reamesdfd890d2015-08-27 01:32:33 +00001055 // A release fence requires that all stores complete before it, but does
1056 // not prevent the reordering of following loads 'before' the fence. As a
1057 // result, we don't need to consider it as writing to memory and don't need
1058 // to advance the generation. We do need to prevent DSE across the fence,
1059 // but that's handled above.
1060 if (FenceInst *FI = dyn_cast<FenceInst>(Inst))
JF Bastien800f87a2016-04-06 21:19:33 +00001061 if (FI->getOrdering() == AtomicOrdering::Release) {
Philip Reamesdfd890d2015-08-27 01:32:33 +00001062 assert(Inst->mayReadFromMemory() && "relied on to prevent DSE above");
1063 continue;
1064 }
1065
Philip Reamesae1f265b2015-12-16 01:01:30 +00001066 // write back DSE - If we write back the same value we just loaded from
1067 // the same location and haven't passed any intervening writes or ordering
1068 // operations, we can remove the write. The primary benefit is in allowing
1069 // the available load table to remain valid and value forward past where
1070 // the store originally was.
1071 if (MemInst.isValid() && MemInst.isStore()) {
1072 LoadValue InVal = AvailableLoads.lookup(MemInst.getPointerOperand());
Philip Reames32b55182016-05-06 01:13:58 +00001073 if (InVal.DefInst &&
1074 InVal.DefInst == getOrCreateResult(Inst, InVal.DefInst->getType()) &&
Philip Reamesae1f265b2015-12-16 01:01:30 +00001075 InVal.MatchingId == MemInst.getMatchingId() &&
1076 // We don't yet handle removing stores with ordering of any kind.
Geoff Berry8d846052016-08-31 19:24:10 +00001077 !MemInst.isVolatile() && MemInst.isUnordered() &&
Philip Reames0adbb192018-03-14 21:35:06 +00001078 (isOperatingOnInvariantMemAt(Inst, InVal.Generation) ||
1079 isSameMemGeneration(InVal.Generation, CurrentGeneration,
1080 InVal.DefInst, Inst))) {
Geoff Berry8d846052016-08-31 19:24:10 +00001081 // It is okay to have a LastStore to a different pointer here if MemorySSA
1082 // tells us that the load and store are from the same memory generation.
1083 // In that case, LastStore should keep its present value since we're
1084 // removing the current store.
Philip Reamesae1f265b2015-12-16 01:01:30 +00001085 assert((!LastStore ||
1086 ParseMemoryInst(LastStore, TTI).getPointerOperand() ==
Geoff Berry8d846052016-08-31 19:24:10 +00001087 MemInst.getPointerOperand() ||
1088 MSSA) &&
1089 "can't have an intervening store if not using MemorySSA!");
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001090 LLVM_DEBUG(dbgs() << "EarlyCSE DSE (writeback): " << *Inst << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +00001091 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001092 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +00001093 continue;
1094 }
Geoff Berry8d846052016-08-31 19:24:10 +00001095 removeMSSA(Inst);
Philip Reamesae1f265b2015-12-16 01:01:30 +00001096 Inst->eraseFromParent();
1097 Changed = true;
1098 ++NumDSE;
1099 // We can avoid incrementing the generation count since we were able
1100 // to eliminate this store.
1101 continue;
1102 }
1103 }
1104
Chris Lattnerb9a8efc2011-01-03 03:18:43 +00001105 // Okay, this isn't something we can CSE at all. Check to see if it is
1106 // something that could modify memory. If so, our available memory values
1107 // cannot be used so bump the generation count.
Chris Lattnere0e32a92011-01-03 03:46:34 +00001108 if (Inst->mayWriteToMemory()) {
Chris Lattnerb9a8efc2011-01-03 03:18:43 +00001109 ++CurrentGeneration;
Nadav Rotem465834c2012-07-24 10:51:42 +00001110
Chad Rosierf9327d62015-01-26 22:51:15 +00001111 if (MemInst.isValid() && MemInst.isStore()) {
Chris Lattner9e5e9ed2011-01-03 04:17:24 +00001112 // We do a trivial form of DSE if there are two stores to the same
Philip Reames15145fb2015-12-17 18:50:50 +00001113 // location with no intervening loads. Delete the earlier store.
1114 // At the moment, we don't remove ordered stores, but do remove
1115 // unordered atomic stores. There's no special requirement (for
1116 // unordered atomics) about removing atomic stores only in favor of
1117 // other atomic stores since we we're going to execute the non-atomic
1118 // one anyway and the atomic one might never have become visible.
Chad Rosierf9327d62015-01-26 22:51:15 +00001119 if (LastStore) {
1120 ParseMemoryInst LastStoreMemInst(LastStore, TTI);
Philip Reames15145fb2015-12-17 18:50:50 +00001121 assert(LastStoreMemInst.isUnordered() &&
1122 !LastStoreMemInst.isVolatile() &&
1123 "Violated invariant");
Chad Rosierf9327d62015-01-26 22:51:15 +00001124 if (LastStoreMemInst.isMatchingMemLoc(MemInst)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001125 LLVM_DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore
1126 << " due to: " << *Inst << '\n');
Geoff Berry5bf4a5e2018-04-06 18:47:33 +00001127 if (!DebugCounter::shouldExecute(CSECounter)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001128 LLVM_DEBUG(dbgs() << "Skipping due to debug counter\n");
Geoff Berry5bf4a5e2018-04-06 18:47:33 +00001129 } else {
1130 removeMSSA(LastStore);
1131 LastStore->eraseFromParent();
1132 Changed = true;
1133 ++NumDSE;
1134 LastStore = nullptr;
1135 }
Chad Rosierf9327d62015-01-26 22:51:15 +00001136 }
Philip Reames018dbf12014-11-18 17:46:32 +00001137 // fallthrough - we can exploit information about this store
Chris Lattner9e5e9ed2011-01-03 04:17:24 +00001138 }
Nadav Rotem465834c2012-07-24 10:51:42 +00001139
Chris Lattner9e5e9ed2011-01-03 04:17:24 +00001140 // Okay, we just invalidated anything we knew about loaded values. Try
1141 // to salvage *something* by remembering that the stored value is a live
1142 // version of the pointer. It is safe to forward from volatile stores
1143 // to non-volatile loads, so we don't have to check for volatility of
1144 // the store.
Arnaud A. de Grandmaisona6178a12015-10-07 07:41:29 +00001145 AvailableLoads.insert(
Philip Reames9e5e2d62015-12-07 22:41:23 +00001146 MemInst.getPointerOperand(),
Philip Reames8fc2cbf2015-12-08 21:45:41 +00001147 LoadValue(Inst, CurrentGeneration, MemInst.getMatchingId(),
Philip Reamesca587fe2018-03-15 17:29:32 +00001148 MemInst.isAtomic()));
Nadav Rotem465834c2012-07-24 10:51:42 +00001149
Philip Reames15145fb2015-12-17 18:50:50 +00001150 // Remember that this was the last unordered store we saw for DSE. We
1151 // don't yet handle DSE on ordered or volatile stores since we don't
1152 // have a good way to model the ordering requirement for following
1153 // passes once the store is removed. We could insert a fence, but
1154 // since fences are slightly stronger than stores in their ordering,
1155 // it's not clear this is a profitable transform. Another option would
1156 // be to merge the ordering with that of the post dominating store.
1157 if (MemInst.isUnordered() && !MemInst.isVolatile())
Chad Rosierf9327d62015-01-26 22:51:15 +00001158 LastStore = Inst;
Philip Reames8fc2cbf2015-12-08 21:45:41 +00001159 else
1160 LastStore = nullptr;
Chris Lattnere0e32a92011-01-03 03:46:34 +00001161 }
1162 }
Chris Lattner18ae5432011-01-02 23:04:14 +00001163 }
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001164
Chris Lattner18ae5432011-01-02 23:04:14 +00001165 return Changed;
Chris Lattner704541b2011-01-02 21:47:05 +00001166}
Chris Lattner18ae5432011-01-02 23:04:14 +00001167
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001168bool EarlyCSE::run() {
Chandler Carruth7253bba2015-01-24 11:33:55 +00001169 // Note, deque is being used here because there is significant performance
1170 // gains over vector when the container becomes very large due to the
1171 // specific access patterns. For more information see the mailing list
1172 // discussion on this:
Tanya Lattner0d28f802015-08-05 03:51:17 +00001173 // http://lists.llvm.org/pipermail/llvm-commits/Week-of-Mon-20120116/135228.html
Lenny Maiorani9eefc812014-09-20 13:29:20 +00001174 std::deque<StackNode *> nodesToProcess;
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001175
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001176 bool Changed = false;
1177
1178 // Process the root node.
Chandler Carruth7253bba2015-01-24 11:33:55 +00001179 nodesToProcess.push_back(new StackNode(
Philip Reames0adbb192018-03-14 21:35:06 +00001180 AvailableValues, AvailableLoads, AvailableInvariants, AvailableCalls,
1181 CurrentGeneration, DT.getRootNode(),
1182 DT.getRootNode()->begin(), DT.getRootNode()->end()));
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001183
1184 // Save the current generation.
1185 unsigned LiveOutGeneration = CurrentGeneration;
1186
1187 // Process the stack.
1188 while (!nodesToProcess.empty()) {
1189 // Grab the first item off the stack. Set the current generation, remove
1190 // the node from the stack, and process it.
Michael Gottesman2bf01732013-12-05 18:42:12 +00001191 StackNode *NodeToProcess = nodesToProcess.back();
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001192
1193 // Initialize class members.
1194 CurrentGeneration = NodeToProcess->currentGeneration();
1195
1196 // Check if the node needs to be processed.
1197 if (!NodeToProcess->isProcessed()) {
1198 // Process the node.
1199 Changed |= processNode(NodeToProcess->node());
1200 NodeToProcess->childGeneration(CurrentGeneration);
1201 NodeToProcess->process();
1202 } else if (NodeToProcess->childIter() != NodeToProcess->end()) {
1203 // Push the next child onto the stack.
1204 DomTreeNode *child = NodeToProcess->nextChild();
Michael Gottesman2bf01732013-12-05 18:42:12 +00001205 nodesToProcess.push_back(
Philip Reames0adbb192018-03-14 21:35:06 +00001206 new StackNode(AvailableValues, AvailableLoads, AvailableInvariants,
1207 AvailableCalls, NodeToProcess->childGeneration(),
1208 child, child->begin(), child->end()));
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001209 } else {
1210 // It has been processed, and there are no more children to process,
1211 // so delete it and pop it off the stack.
1212 delete NodeToProcess;
Michael Gottesman2bf01732013-12-05 18:42:12 +00001213 nodesToProcess.pop_back();
Lenny Maiorani8d670b82012-01-31 23:14:41 +00001214 }
1215 } // while (!nodes...)
1216
1217 // Reset the current generation.
1218 CurrentGeneration = LiveOutGeneration;
1219
1220 return Changed;
Chris Lattner18ae5432011-01-02 23:04:14 +00001221}
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001222
Chandler Carruthe8c686a2015-02-01 10:51:23 +00001223PreservedAnalyses EarlyCSEPass::run(Function &F,
Sean Silva36e0d012016-08-09 00:28:15 +00001224 FunctionAnalysisManager &AM) {
Chandler Carruthb47f8012016-03-11 11:05:24 +00001225 auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
1226 auto &TTI = AM.getResult<TargetIRAnalysis>(F);
1227 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001228 auto &AC = AM.getResult<AssumptionAnalysis>(F);
Geoff Berry8d846052016-08-31 19:24:10 +00001229 auto *MSSA =
1230 UseMemorySSA ? &AM.getResult<MemorySSAAnalysis>(F).getMSSA() : nullptr;
Chandler Carruthe8c686a2015-02-01 10:51:23 +00001231
Daniel Berlin4d0fe642017-04-28 19:55:38 +00001232 EarlyCSE CSE(F.getParent()->getDataLayout(), TLI, TTI, DT, AC, MSSA);
Chandler Carruthe8c686a2015-02-01 10:51:23 +00001233
1234 if (!CSE.run())
1235 return PreservedAnalyses::all();
1236
Chandler Carruthe8c686a2015-02-01 10:51:23 +00001237 PreservedAnalyses PA;
Chandler Carruthca68a3e2017-01-15 06:32:49 +00001238 PA.preserveSet<CFGAnalyses>();
Davide Italiano02861d82016-06-08 21:31:55 +00001239 PA.preserve<GlobalsAA>();
Geoff Berry8d846052016-08-31 19:24:10 +00001240 if (UseMemorySSA)
1241 PA.preserve<MemorySSAAnalysis>();
Chandler Carruthe8c686a2015-02-01 10:51:23 +00001242 return PA;
1243}
1244
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001245namespace {
Eugene Zelenko3b879392017-10-13 21:17:07 +00001246
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001247/// A simple and fast domtree-based CSE pass.
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001248///
1249/// This pass does a simple depth-first walk over the dominator tree,
1250/// eliminating trivially redundant instructions and using instsimplify to
1251/// canonicalize things as it goes. It is intended to be fast and catch obvious
1252/// cases so that instcombine and other passes are more effective. It is
1253/// expected that a later pass of GVN will catch the interesting/hard cases.
Geoff Berry8d846052016-08-31 19:24:10 +00001254template<bool UseMemorySSA>
1255class EarlyCSELegacyCommonPass : public FunctionPass {
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001256public:
1257 static char ID;
1258
Geoff Berry8d846052016-08-31 19:24:10 +00001259 EarlyCSELegacyCommonPass() : FunctionPass(ID) {
1260 if (UseMemorySSA)
1261 initializeEarlyCSEMemSSALegacyPassPass(*PassRegistry::getPassRegistry());
1262 else
1263 initializeEarlyCSELegacyPassPass(*PassRegistry::getPassRegistry());
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001264 }
1265
1266 bool runOnFunction(Function &F) override {
Andrew Kayloraa641a52016-04-22 22:06:11 +00001267 if (skipFunction(F))
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001268 return false;
1269
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001270 auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Chandler Carruthfdb9c572015-02-01 12:01:35 +00001271 auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F);
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001272 auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001273 auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Geoff Berry8d846052016-08-31 19:24:10 +00001274 auto *MSSA =
1275 UseMemorySSA ? &getAnalysis<MemorySSAWrapperPass>().getMSSA() : nullptr;
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001276
Daniel Berlin4d0fe642017-04-28 19:55:38 +00001277 EarlyCSE CSE(F.getParent()->getDataLayout(), TLI, TTI, DT, AC, MSSA);
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001278
1279 return CSE.run();
1280 }
1281
1282 void getAnalysisUsage(AnalysisUsage &AU) const override {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001283 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001284 AU.addRequired<DominatorTreeWrapperPass>();
1285 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chandler Carruth705b1852015-01-31 03:43:40 +00001286 AU.addRequired<TargetTransformInfoWrapperPass>();
Geoff Berry8d846052016-08-31 19:24:10 +00001287 if (UseMemorySSA) {
1288 AU.addRequired<MemorySSAWrapperPass>();
1289 AU.addPreserved<MemorySSAWrapperPass>();
1290 }
James Molloyefbba722015-09-10 10:22:12 +00001291 AU.addPreserved<GlobalsAAWrapperPass>();
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001292 AU.setPreservesCFG();
1293 }
1294};
Eugene Zelenko3b879392017-10-13 21:17:07 +00001295
1296} // end anonymous namespace
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001297
Geoff Berry8d846052016-08-31 19:24:10 +00001298using EarlyCSELegacyPass = EarlyCSELegacyCommonPass</*UseMemorySSA=*/false>;
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001299
Geoff Berry8d846052016-08-31 19:24:10 +00001300template<>
1301char EarlyCSELegacyPass::ID = 0;
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001302
1303INITIALIZE_PASS_BEGIN(EarlyCSELegacyPass, "early-cse", "Early CSE", false,
1304 false)
Chandler Carruth705b1852015-01-31 03:43:40 +00001305INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001306INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthd649c0a2015-01-27 01:34:14 +00001307INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
1308INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1309INITIALIZE_PASS_END(EarlyCSELegacyPass, "early-cse", "Early CSE", false, false)
Geoff Berry8d846052016-08-31 19:24:10 +00001310
1311using EarlyCSEMemSSALegacyPass =
1312 EarlyCSELegacyCommonPass</*UseMemorySSA=*/true>;
1313
1314template<>
1315char EarlyCSEMemSSALegacyPass::ID = 0;
1316
1317FunctionPass *llvm::createEarlyCSEPass(bool UseMemorySSA) {
1318 if (UseMemorySSA)
1319 return new EarlyCSEMemSSALegacyPass();
1320 else
1321 return new EarlyCSELegacyPass();
1322}
1323
1324INITIALIZE_PASS_BEGIN(EarlyCSEMemSSALegacyPass, "early-cse-memssa",
1325 "Early CSE w/ MemorySSA", false, false)
1326INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001327INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Geoff Berry8d846052016-08-31 19:24:10 +00001328INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
1329INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1330INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
1331INITIALIZE_PASS_END(EarlyCSEMemSSALegacyPass, "early-cse-memssa",
1332 "Early CSE w/ MemorySSA", false, false)