Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 1 | //===- 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 Carruth | e8c686a | 2015-02-01 10:51:23 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Scalar/EarlyCSE.h" |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 16 | #include "llvm/ADT/Hashing.h" |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 17 | #include "llvm/ADT/ScopedHashTable.h" |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 18 | #include "llvm/ADT/Statistic.h" |
Chandler Carruth | 66b3130 | 2015-01-04 12:03:27 +0000 | [diff] [blame] | 19 | #include "llvm/Analysis/AssumptionCache.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 20 | #include "llvm/Analysis/InstructionSimplify.h" |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 21 | #include "llvm/Analysis/TargetTransformInfo.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 22 | #include "llvm/IR/DataLayout.h" |
Chandler Carruth | 5ad5f15 | 2014-01-13 09:26:24 +0000 | [diff] [blame] | 23 | #include "llvm/IR/Dominators.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 24 | #include "llvm/IR/Instructions.h" |
Hal Finkel | 1e16fa3 | 2014-11-03 20:21:32 +0000 | [diff] [blame] | 25 | #include "llvm/IR/IntrinsicInst.h" |
| 26 | #include "llvm/IR/PatternMatch.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 27 | #include "llvm/Pass.h" |
| 28 | #include "llvm/Support/Debug.h" |
| 29 | #include "llvm/Support/RecyclingAllocator.h" |
Chandler Carruth | 62d4215 | 2015-01-15 02:16:27 +0000 | [diff] [blame] | 30 | #include "llvm/Analysis/TargetLibraryInfo.h" |
Chandler Carruth | e8c686a | 2015-02-01 10:51:23 +0000 | [diff] [blame] | 31 | #include "llvm/Transforms/Scalar.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 32 | #include "llvm/Transforms/Utils/Local.h" |
Lenny Maiorani | 9eefc81 | 2014-09-20 13:29:20 +0000 | [diff] [blame] | 33 | #include <deque> |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 34 | using namespace llvm; |
Hal Finkel | 1e16fa3 | 2014-11-03 20:21:32 +0000 | [diff] [blame] | 35 | using namespace llvm::PatternMatch; |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 36 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 37 | #define DEBUG_TYPE "early-cse" |
| 38 | |
Chris Lattner | 4cb3654 | 2011-01-03 03:28:23 +0000 | [diff] [blame] | 39 | STATISTIC(NumSimplify, "Number of instructions simplified or DCE'd"); |
| 40 | STATISTIC(NumCSE, "Number of instructions CSE'd"); |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 41 | STATISTIC(NumCSELoad, "Number of load instructions CSE'd"); |
| 42 | STATISTIC(NumCSECall, "Number of call instructions CSE'd"); |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 43 | STATISTIC(NumDSE, "Number of trivial dead stores removed"); |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 44 | |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 45 | //===----------------------------------------------------------------------===// |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 46 | // SimpleValue |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 47 | //===----------------------------------------------------------------------===// |
| 48 | |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 49 | namespace { |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 50 | /// \brief Struct representing the available values in the scoped hash table. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 51 | struct SimpleValue { |
| 52 | Instruction *Inst; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 53 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 54 | SimpleValue(Instruction *I) : Inst(I) { |
| 55 | assert((isSentinel() || canHandle(I)) && "Inst can't be handled!"); |
| 56 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 57 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 58 | bool isSentinel() const { |
| 59 | return Inst == DenseMapInfo<Instruction *>::getEmptyKey() || |
| 60 | Inst == DenseMapInfo<Instruction *>::getTombstoneKey(); |
| 61 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 62 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 63 | static bool canHandle(Instruction *Inst) { |
| 64 | // This can only handle non-void readnone functions. |
| 65 | if (CallInst *CI = dyn_cast<CallInst>(Inst)) |
| 66 | return CI->doesNotAccessMemory() && !CI->getType()->isVoidTy(); |
| 67 | return isa<CastInst>(Inst) || isa<BinaryOperator>(Inst) || |
| 68 | isa<GetElementPtrInst>(Inst) || isa<CmpInst>(Inst) || |
| 69 | isa<SelectInst>(Inst) || isa<ExtractElementInst>(Inst) || |
| 70 | isa<InsertElementInst>(Inst) || isa<ShuffleVectorInst>(Inst) || |
| 71 | isa<ExtractValueInst>(Inst) || isa<InsertValueInst>(Inst); |
| 72 | } |
| 73 | }; |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | namespace llvm { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 77 | template <> struct DenseMapInfo<SimpleValue> { |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 78 | static inline SimpleValue getEmptyKey() { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 79 | return DenseMapInfo<Instruction *>::getEmptyKey(); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 80 | } |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 81 | static inline SimpleValue getTombstoneKey() { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 82 | return DenseMapInfo<Instruction *>::getTombstoneKey(); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 83 | } |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 84 | static unsigned getHashValue(SimpleValue Val); |
| 85 | static bool isEqual(SimpleValue LHS, SimpleValue RHS); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 86 | }; |
| 87 | } |
| 88 | |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 89 | unsigned DenseMapInfo<SimpleValue>::getHashValue(SimpleValue Val) { |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 90 | Instruction *Inst = Val.Inst; |
Chris Lattner | 02a9776 | 2011-01-03 01:10:08 +0000 | [diff] [blame] | 91 | // Hash in all of the operands as pointers. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 92 | if (BinaryOperator *BinOp = dyn_cast<BinaryOperator>(Inst)) { |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 93 | Value *LHS = BinOp->getOperand(0); |
| 94 | Value *RHS = BinOp->getOperand(1); |
| 95 | if (BinOp->isCommutative() && BinOp->getOperand(0) > BinOp->getOperand(1)) |
| 96 | std::swap(LHS, RHS); |
Chris Lattner | 02a9776 | 2011-01-03 01:10:08 +0000 | [diff] [blame] | 97 | |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 98 | if (isa<OverflowingBinaryOperator>(BinOp)) { |
| 99 | // Hash the overflow behavior |
| 100 | unsigned Overflow = |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 101 | BinOp->hasNoSignedWrap() * OverflowingBinaryOperator::NoSignedWrap | |
| 102 | BinOp->hasNoUnsignedWrap() * |
| 103 | OverflowingBinaryOperator::NoUnsignedWrap; |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 104 | return hash_combine(BinOp->getOpcode(), Overflow, LHS, RHS); |
| 105 | } |
| 106 | |
| 107 | return hash_combine(BinOp->getOpcode(), LHS, RHS); |
Chris Lattner | 02a9776 | 2011-01-03 01:10:08 +0000 | [diff] [blame] | 108 | } |
| 109 | |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 110 | if (CmpInst *CI = dyn_cast<CmpInst>(Inst)) { |
| 111 | Value *LHS = CI->getOperand(0); |
| 112 | Value *RHS = CI->getOperand(1); |
| 113 | CmpInst::Predicate Pred = CI->getPredicate(); |
| 114 | if (Inst->getOperand(0) > Inst->getOperand(1)) { |
| 115 | std::swap(LHS, RHS); |
| 116 | Pred = CI->getSwappedPredicate(); |
| 117 | } |
| 118 | return hash_combine(Inst->getOpcode(), Pred, LHS, RHS); |
| 119 | } |
| 120 | |
| 121 | if (CastInst *CI = dyn_cast<CastInst>(Inst)) |
| 122 | return hash_combine(CI->getOpcode(), CI->getType(), CI->getOperand(0)); |
| 123 | |
| 124 | if (const ExtractValueInst *EVI = dyn_cast<ExtractValueInst>(Inst)) |
| 125 | return hash_combine(EVI->getOpcode(), EVI->getOperand(0), |
| 126 | hash_combine_range(EVI->idx_begin(), EVI->idx_end())); |
| 127 | |
| 128 | if (const InsertValueInst *IVI = dyn_cast<InsertValueInst>(Inst)) |
| 129 | return hash_combine(IVI->getOpcode(), IVI->getOperand(0), |
| 130 | IVI->getOperand(1), |
| 131 | hash_combine_range(IVI->idx_begin(), IVI->idx_end())); |
| 132 | |
| 133 | assert((isa<CallInst>(Inst) || isa<BinaryOperator>(Inst) || |
| 134 | isa<GetElementPtrInst>(Inst) || isa<SelectInst>(Inst) || |
| 135 | isa<ExtractElementInst>(Inst) || isa<InsertElementInst>(Inst) || |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 136 | isa<ShuffleVectorInst>(Inst)) && |
| 137 | "Invalid/unknown instruction"); |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 138 | |
Chris Lattner | 02a9776 | 2011-01-03 01:10:08 +0000 | [diff] [blame] | 139 | // Mix in the opcode. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 140 | return hash_combine( |
| 141 | Inst->getOpcode(), |
| 142 | hash_combine_range(Inst->value_op_begin(), Inst->value_op_end())); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 143 | } |
| 144 | |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 145 | bool DenseMapInfo<SimpleValue>::isEqual(SimpleValue LHS, SimpleValue RHS) { |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 146 | Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; |
| 147 | |
| 148 | if (LHS.isSentinel() || RHS.isSentinel()) |
| 149 | return LHSI == RHSI; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 150 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 151 | if (LHSI->getOpcode() != RHSI->getOpcode()) |
| 152 | return false; |
| 153 | if (LHSI->isIdenticalTo(RHSI)) |
| 154 | return true; |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 155 | |
| 156 | // If we're not strictly identical, we still might be a commutable instruction |
| 157 | if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) { |
| 158 | if (!LHSBinOp->isCommutative()) |
| 159 | return false; |
| 160 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 161 | assert(isa<BinaryOperator>(RHSI) && |
| 162 | "same opcode, but different instruction type?"); |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 163 | BinaryOperator *RHSBinOp = cast<BinaryOperator>(RHSI); |
| 164 | |
| 165 | // Check overflow attributes |
| 166 | if (isa<OverflowingBinaryOperator>(LHSBinOp)) { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 167 | assert(isa<OverflowingBinaryOperator>(RHSBinOp) && |
| 168 | "same opcode, but different operator type?"); |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 169 | if (LHSBinOp->hasNoUnsignedWrap() != RHSBinOp->hasNoUnsignedWrap() || |
| 170 | LHSBinOp->hasNoSignedWrap() != RHSBinOp->hasNoSignedWrap()) |
| 171 | return false; |
| 172 | } |
| 173 | |
| 174 | // Commuted equality |
| 175 | return LHSBinOp->getOperand(0) == RHSBinOp->getOperand(1) && |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 176 | LHSBinOp->getOperand(1) == RHSBinOp->getOperand(0); |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 177 | } |
| 178 | if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 179 | assert(isa<CmpInst>(RHSI) && |
| 180 | "same opcode, but different instruction type?"); |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 181 | CmpInst *RHSCmp = cast<CmpInst>(RHSI); |
| 182 | // Commuted equality |
| 183 | return LHSCmp->getOperand(0) == RHSCmp->getOperand(1) && |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 184 | LHSCmp->getOperand(1) == RHSCmp->getOperand(0) && |
| 185 | LHSCmp->getSwappedPredicate() == RHSCmp->getPredicate(); |
Michael Ilseman | 336cb79 | 2012-10-09 16:57:38 +0000 | [diff] [blame] | 186 | } |
| 187 | |
| 188 | return false; |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 189 | } |
| 190 | |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 191 | //===----------------------------------------------------------------------===// |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 192 | // CallValue |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 193 | //===----------------------------------------------------------------------===// |
| 194 | |
| 195 | namespace { |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 196 | /// \brief Struct representing the available call values in the scoped hash |
| 197 | /// table. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 198 | struct CallValue { |
| 199 | Instruction *Inst; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 200 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 201 | CallValue(Instruction *I) : Inst(I) { |
| 202 | assert((isSentinel() || canHandle(I)) && "Inst can't be handled!"); |
| 203 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 204 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 205 | bool isSentinel() const { |
| 206 | return Inst == DenseMapInfo<Instruction *>::getEmptyKey() || |
| 207 | Inst == DenseMapInfo<Instruction *>::getTombstoneKey(); |
| 208 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 209 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 210 | static bool canHandle(Instruction *Inst) { |
| 211 | // Don't value number anything that returns void. |
| 212 | if (Inst->getType()->isVoidTy()) |
| 213 | return false; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 214 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 215 | CallInst *CI = dyn_cast<CallInst>(Inst); |
| 216 | if (!CI || !CI->onlyReadsMemory()) |
| 217 | return false; |
| 218 | return true; |
| 219 | } |
| 220 | }; |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | namespace llvm { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 224 | template <> struct DenseMapInfo<CallValue> { |
| 225 | static inline CallValue getEmptyKey() { |
| 226 | return DenseMapInfo<Instruction *>::getEmptyKey(); |
| 227 | } |
| 228 | static inline CallValue getTombstoneKey() { |
| 229 | return DenseMapInfo<Instruction *>::getTombstoneKey(); |
| 230 | } |
| 231 | static unsigned getHashValue(CallValue Val); |
| 232 | static bool isEqual(CallValue LHS, CallValue RHS); |
| 233 | }; |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 234 | } |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 235 | |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 236 | unsigned DenseMapInfo<CallValue>::getHashValue(CallValue Val) { |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 237 | Instruction *Inst = Val.Inst; |
Benjamin Kramer | 6ab86b1 | 2015-02-01 12:30:59 +0000 | [diff] [blame] | 238 | // Hash all of the operands as pointers and mix in the opcode. |
| 239 | return hash_combine( |
| 240 | Inst->getOpcode(), |
| 241 | hash_combine_range(Inst->value_op_begin(), Inst->value_op_end())); |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 242 | } |
| 243 | |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 244 | bool DenseMapInfo<CallValue>::isEqual(CallValue LHS, CallValue RHS) { |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 245 | Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 246 | if (LHS.isSentinel() || RHS.isSentinel()) |
| 247 | return LHSI == RHSI; |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 248 | return LHSI->isIdenticalTo(RHSI); |
| 249 | } |
| 250 | |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 251 | //===----------------------------------------------------------------------===// |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 252 | // EarlyCSE implementation |
Chris Lattner | 79d8306 | 2011-01-03 02:20:48 +0000 | [diff] [blame] | 253 | //===----------------------------------------------------------------------===// |
| 254 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 255 | namespace { |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 256 | /// \brief A simple and fast domtree-based CSE pass. |
| 257 | /// |
| 258 | /// This pass does a simple depth-first walk over the dominator tree, |
| 259 | /// eliminating trivially redundant instructions and using instsimplify to |
| 260 | /// canonicalize things as it goes. It is intended to be fast and catch obvious |
| 261 | /// cases so that instcombine and other passes are more effective. It is |
| 262 | /// expected that a later pass of GVN will catch the interesting/hard cases. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 263 | class EarlyCSE { |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 264 | public: |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 265 | Function &F; |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 266 | const DataLayout *DL; |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 267 | const TargetLibraryInfo &TLI; |
| 268 | const TargetTransformInfo &TTI; |
| 269 | DominatorTree &DT; |
| 270 | AssumptionCache &AC; |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 271 | typedef RecyclingAllocator< |
| 272 | BumpPtrAllocator, ScopedHashTableVal<SimpleValue, Value *>> AllocatorTy; |
| 273 | typedef ScopedHashTable<SimpleValue, Value *, DenseMapInfo<SimpleValue>, |
Chris Lattner | d815f69 | 2011-01-03 01:42:46 +0000 | [diff] [blame] | 274 | AllocatorTy> ScopedHTType; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 275 | |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 276 | /// \brief A scoped hash table of the current values of all of our simple |
| 277 | /// scalar expressions. |
| 278 | /// |
| 279 | /// As we walk down the domtree, we look to see if instructions are in this: |
| 280 | /// if so, we replace them with what we find, otherwise we insert them so |
| 281 | /// that dominated values can succeed in their lookup. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 282 | ScopedHTType AvailableValues; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 283 | |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 284 | /// \brief A scoped hash table of the current values of loads. |
| 285 | /// |
| 286 | /// This allows us to get efficient access to dominating loads when we have |
| 287 | /// a fully redundant load. In addition to the most recent load, we keep |
| 288 | /// track of a generation count of the read, which is compared against the |
| 289 | /// current generation count. The current generation count is incremented |
| 290 | /// after every possibly writing memory operation, which ensures that we only |
| 291 | /// CSE loads with other loads that have no intervening store. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 292 | typedef RecyclingAllocator< |
| 293 | BumpPtrAllocator, |
| 294 | ScopedHashTableVal<Value *, std::pair<Value *, unsigned>>> |
| 295 | LoadMapAllocator; |
| 296 | typedef ScopedHashTable<Value *, std::pair<Value *, unsigned>, |
| 297 | DenseMapInfo<Value *>, LoadMapAllocator> LoadHTType; |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 298 | LoadHTType AvailableLoads; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 299 | |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 300 | /// \brief A scoped hash table of the current values of read-only call |
| 301 | /// values. |
| 302 | /// |
| 303 | /// It uses the same generation count as loads. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 304 | typedef ScopedHashTable<CallValue, std::pair<Value *, unsigned>> CallHTType; |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 305 | CallHTType AvailableCalls; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 306 | |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 307 | /// \brief This is the current generation of the memory value. |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 308 | unsigned CurrentGeneration; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 309 | |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 310 | /// \brief Set up the EarlyCSE runner for a particular function. |
| 311 | EarlyCSE(Function &F, const DataLayout *DL, const TargetLibraryInfo &TLI, |
| 312 | const TargetTransformInfo &TTI, DominatorTree &DT, |
| 313 | AssumptionCache &AC) |
| 314 | : F(F), DL(DL), TLI(TLI), TTI(TTI), DT(DT), AC(AC), CurrentGeneration(0) { |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 315 | } |
| 316 | |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 317 | bool run(); |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 318 | |
| 319 | private: |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 320 | // Almost a POD, but needs to call the constructors for the scoped hash |
| 321 | // tables so that a new scope gets pushed on. These are RAII so that the |
| 322 | // scope gets popped when the NodeScope is destroyed. |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 323 | class NodeScope { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 324 | public: |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 325 | NodeScope(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads, |
| 326 | CallHTType &AvailableCalls) |
| 327 | : Scope(AvailableValues), LoadScope(AvailableLoads), |
| 328 | CallScope(AvailableCalls) {} |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 329 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 330 | private: |
Aaron Ballman | f9a1897 | 2015-02-15 22:54:22 +0000 | [diff] [blame^] | 331 | NodeScope(const NodeScope &) = delete; |
| 332 | void operator=(const NodeScope &) = delete; |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 333 | |
| 334 | ScopedHTType::ScopeTy Scope; |
| 335 | LoadHTType::ScopeTy LoadScope; |
| 336 | CallHTType::ScopeTy CallScope; |
| 337 | }; |
| 338 | |
Chandler Carruth | 9dea5cd | 2015-01-24 11:44:32 +0000 | [diff] [blame] | 339 | // Contains all the needed information to create a stack for doing a depth |
| 340 | // first tranversal of the tree. This includes scopes for values, loads, and |
| 341 | // calls as well as the generation. There is a child iterator so that the |
| 342 | // children do not need to be store spearately. |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 343 | class StackNode { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 344 | public: |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 345 | StackNode(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads, |
| 346 | CallHTType &AvailableCalls, unsigned cg, DomTreeNode *n, |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 347 | DomTreeNode::iterator child, DomTreeNode::iterator end) |
| 348 | : CurrentGeneration(cg), ChildGeneration(cg), Node(n), ChildIter(child), |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 349 | EndIter(end), Scopes(AvailableValues, AvailableLoads, AvailableCalls), |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 350 | Processed(false) {} |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 351 | |
| 352 | // Accessors. |
| 353 | unsigned currentGeneration() { return CurrentGeneration; } |
| 354 | unsigned childGeneration() { return ChildGeneration; } |
| 355 | void childGeneration(unsigned generation) { ChildGeneration = generation; } |
| 356 | DomTreeNode *node() { return Node; } |
| 357 | DomTreeNode::iterator childIter() { return ChildIter; } |
| 358 | DomTreeNode *nextChild() { |
| 359 | DomTreeNode *child = *ChildIter; |
| 360 | ++ChildIter; |
| 361 | return child; |
| 362 | } |
| 363 | DomTreeNode::iterator end() { return EndIter; } |
| 364 | bool isProcessed() { return Processed; } |
| 365 | void process() { Processed = true; } |
| 366 | |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 367 | private: |
Aaron Ballman | f9a1897 | 2015-02-15 22:54:22 +0000 | [diff] [blame^] | 368 | StackNode(const StackNode &) = delete; |
| 369 | void operator=(const StackNode &) = delete; |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 370 | |
| 371 | // Members. |
| 372 | unsigned CurrentGeneration; |
| 373 | unsigned ChildGeneration; |
| 374 | DomTreeNode *Node; |
| 375 | DomTreeNode::iterator ChildIter; |
| 376 | DomTreeNode::iterator EndIter; |
| 377 | NodeScope Scopes; |
| 378 | bool Processed; |
| 379 | }; |
| 380 | |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 381 | /// \brief Wrapper class to handle memory instructions, including loads, |
| 382 | /// stores and intrinsic loads and stores defined by the target. |
| 383 | class ParseMemoryInst { |
| 384 | public: |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 385 | ParseMemoryInst(Instruction *Inst, const TargetTransformInfo &TTI) |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 386 | : Load(false), Store(false), Vol(false), MayReadFromMemory(false), |
| 387 | MayWriteToMemory(false), MatchingId(-1), Ptr(nullptr) { |
| 388 | MayReadFromMemory = Inst->mayReadFromMemory(); |
| 389 | MayWriteToMemory = Inst->mayWriteToMemory(); |
| 390 | if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(Inst)) { |
| 391 | MemIntrinsicInfo Info; |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 392 | if (!TTI.getTgtMemIntrinsic(II, Info)) |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 393 | return; |
| 394 | if (Info.NumMemRefs == 1) { |
| 395 | Store = Info.WriteMem; |
| 396 | Load = Info.ReadMem; |
| 397 | MatchingId = Info.MatchingId; |
| 398 | MayReadFromMemory = Info.ReadMem; |
| 399 | MayWriteToMemory = Info.WriteMem; |
| 400 | Vol = Info.Vol; |
| 401 | Ptr = Info.PtrVal; |
| 402 | } |
| 403 | } else if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) { |
| 404 | Load = true; |
| 405 | Vol = !LI->isSimple(); |
| 406 | Ptr = LI->getPointerOperand(); |
| 407 | } else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) { |
| 408 | Store = true; |
| 409 | Vol = !SI->isSimple(); |
| 410 | Ptr = SI->getPointerOperand(); |
| 411 | } |
| 412 | } |
| 413 | bool isLoad() { return Load; } |
| 414 | bool isStore() { return Store; } |
| 415 | bool isVolatile() { return Vol; } |
| 416 | bool isMatchingMemLoc(const ParseMemoryInst &Inst) { |
| 417 | return Ptr == Inst.Ptr && MatchingId == Inst.MatchingId; |
| 418 | } |
| 419 | bool isValid() { return Ptr != nullptr; } |
| 420 | int getMatchingId() { return MatchingId; } |
| 421 | Value *getPtr() { return Ptr; } |
| 422 | bool mayReadFromMemory() { return MayReadFromMemory; } |
| 423 | bool mayWriteToMemory() { return MayWriteToMemory; } |
| 424 | |
| 425 | private: |
| 426 | bool Load; |
| 427 | bool Store; |
| 428 | bool Vol; |
| 429 | bool MayReadFromMemory; |
| 430 | bool MayWriteToMemory; |
| 431 | // For regular (non-intrinsic) loads/stores, this is set to -1. For |
| 432 | // intrinsic loads/stores, the id is retrieved from the corresponding |
| 433 | // field in the MemIntrinsicInfo structure. That field contains |
| 434 | // non-negative values only. |
| 435 | int MatchingId; |
| 436 | Value *Ptr; |
| 437 | }; |
| 438 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 439 | bool processNode(DomTreeNode *Node); |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 440 | |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 441 | Value *getOrCreateResult(Value *Inst, Type *ExpectedType) const { |
| 442 | if (LoadInst *LI = dyn_cast<LoadInst>(Inst)) |
| 443 | return LI; |
| 444 | else if (StoreInst *SI = dyn_cast<StoreInst>(Inst)) |
| 445 | return SI->getValueOperand(); |
| 446 | assert(isa<IntrinsicInst>(Inst) && "Instruction not supported"); |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 447 | return TTI.getOrCreateResultFromMemIntrinsic(cast<IntrinsicInst>(Inst), |
| 448 | ExpectedType); |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 449 | } |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 450 | }; |
| 451 | } |
| 452 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 453 | bool EarlyCSE::processNode(DomTreeNode *Node) { |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 454 | BasicBlock *BB = Node->getBlock(); |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 455 | |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 456 | // If this block has a single predecessor, then the predecessor is the parent |
| 457 | // of the domtree node and all of the live out memory values are still current |
| 458 | // in this block. If this block has multiple predecessors, then they could |
| 459 | // have invalidated the live-out memory values of our parent value. For now, |
| 460 | // just be conservative and invalidate memory if this block has multiple |
| 461 | // predecessors. |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 462 | if (!BB->getSinglePredecessor()) |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 463 | ++CurrentGeneration; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 464 | |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 465 | /// LastStore - Keep track of the last non-volatile store that we saw... for |
| 466 | /// as long as there in no instruction that reads memory. If we see a store |
| 467 | /// to the same location, we delete the dead store. This zaps trivial dead |
| 468 | /// stores which can occur in bitfield code among other things. |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 469 | Instruction *LastStore = nullptr; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 470 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 471 | bool Changed = false; |
| 472 | |
| 473 | // See if any instructions in the block can be eliminated. If so, do it. If |
| 474 | // not, add them to AvailableValues. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 475 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) { |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 476 | Instruction *Inst = I++; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 477 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 478 | // Dead instructions should just be removed. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 479 | if (isInstructionTriviallyDead(Inst, &TLI)) { |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 480 | DEBUG(dbgs() << "EarlyCSE DCE: " << *Inst << '\n'); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 481 | Inst->eraseFromParent(); |
| 482 | Changed = true; |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 483 | ++NumSimplify; |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 484 | continue; |
| 485 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 486 | |
Hal Finkel | 1e16fa3 | 2014-11-03 20:21:32 +0000 | [diff] [blame] | 487 | // Skip assume intrinsics, they don't really have side effects (although |
| 488 | // they're marked as such to ensure preservation of control dependencies), |
| 489 | // and this pass will not disturb any of the assumption's control |
| 490 | // dependencies. |
| 491 | if (match(Inst, m_Intrinsic<Intrinsic::assume>())) { |
| 492 | DEBUG(dbgs() << "EarlyCSE skipping assumption: " << *Inst << '\n'); |
| 493 | continue; |
| 494 | } |
| 495 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 496 | // If the instruction can be simplified (e.g. X+0 = X) then replace it with |
| 497 | // its simpler value. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 498 | if (Value *V = SimplifyInstruction(Inst, DL, &TLI, &DT, &AC)) { |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 499 | DEBUG(dbgs() << "EarlyCSE Simplify: " << *Inst << " to: " << *V << '\n'); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 500 | Inst->replaceAllUsesWith(V); |
| 501 | Inst->eraseFromParent(); |
| 502 | Changed = true; |
Chris Lattner | 8fac5db | 2011-01-02 23:19:45 +0000 | [diff] [blame] | 503 | ++NumSimplify; |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 504 | continue; |
| 505 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 506 | |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 507 | // If this is a simple instruction that we can value number, process it. |
| 508 | if (SimpleValue::canHandle(Inst)) { |
| 509 | // See if the instruction has an available value. If so, use it. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 510 | if (Value *V = AvailableValues.lookup(Inst)) { |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 511 | DEBUG(dbgs() << "EarlyCSE CSE: " << *Inst << " to: " << *V << '\n'); |
| 512 | Inst->replaceAllUsesWith(V); |
| 513 | Inst->eraseFromParent(); |
| 514 | Changed = true; |
| 515 | ++NumCSE; |
| 516 | continue; |
| 517 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 518 | |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 519 | // Otherwise, just remember that this value is available. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 520 | AvailableValues.insert(Inst, Inst); |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 521 | continue; |
| 522 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 523 | |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 524 | ParseMemoryInst MemInst(Inst, TTI); |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 525 | // If this is a non-volatile load, process it. |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 526 | if (MemInst.isValid() && MemInst.isLoad()) { |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 527 | // Ignore volatile loads. |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 528 | if (MemInst.isVolatile()) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 529 | LastStore = nullptr; |
David Majnemer | 7679300 | 2015-02-10 23:09:43 +0000 | [diff] [blame] | 530 | // Don't CSE across synchronization boundaries. |
| 531 | if (Inst->mayWriteToMemory()) |
| 532 | ++CurrentGeneration; |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 533 | continue; |
| 534 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 535 | |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 536 | // If we have an available version of this load, and if it is the right |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 537 | // generation, replace this instruction. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 538 | std::pair<Value *, unsigned> InVal = |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 539 | AvailableLoads.lookup(MemInst.getPtr()); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 540 | if (InVal.first != nullptr && InVal.second == CurrentGeneration) { |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 541 | Value *Op = getOrCreateResult(InVal.first, Inst->getType()); |
| 542 | if (Op != nullptr) { |
| 543 | DEBUG(dbgs() << "EarlyCSE CSE LOAD: " << *Inst |
| 544 | << " to: " << *InVal.first << '\n'); |
| 545 | if (!Inst->use_empty()) |
| 546 | Inst->replaceAllUsesWith(Op); |
| 547 | Inst->eraseFromParent(); |
| 548 | Changed = true; |
| 549 | ++NumCSELoad; |
| 550 | continue; |
| 551 | } |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 552 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 553 | |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 554 | // Otherwise, remember that we have this instruction. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 555 | AvailableLoads.insert(MemInst.getPtr(), std::pair<Value *, unsigned>( |
| 556 | Inst, CurrentGeneration)); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 557 | LastStore = nullptr; |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 558 | continue; |
| 559 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 560 | |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 561 | // If this instruction may read from memory, forget LastStore. |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 562 | // Load/store intrinsics will indicate both a read and a write to |
| 563 | // memory. The target may override this (e.g. so that a store intrinsic |
| 564 | // does not read from memory, and thus will be treated the same as a |
| 565 | // regular store for commoning purposes). |
| 566 | if (Inst->mayReadFromMemory() && |
| 567 | !(MemInst.isValid() && !MemInst.mayReadFromMemory())) |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 568 | LastStore = nullptr; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 569 | |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 570 | // If this is a read-only call, process it. |
| 571 | if (CallValue::canHandle(Inst)) { |
| 572 | // If we have an available version of this call, and if it is the right |
| 573 | // generation, replace this instruction. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 574 | std::pair<Value *, unsigned> InVal = AvailableCalls.lookup(Inst); |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 575 | if (InVal.first != nullptr && InVal.second == CurrentGeneration) { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 576 | DEBUG(dbgs() << "EarlyCSE CSE CALL: " << *Inst |
| 577 | << " to: " << *InVal.first << '\n'); |
| 578 | if (!Inst->use_empty()) |
| 579 | Inst->replaceAllUsesWith(InVal.first); |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 580 | Inst->eraseFromParent(); |
| 581 | Changed = true; |
| 582 | ++NumCSECall; |
| 583 | continue; |
| 584 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 585 | |
Chris Lattner | 92bb0f9 | 2011-01-03 03:41:27 +0000 | [diff] [blame] | 586 | // Otherwise, remember that we have this instruction. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 587 | AvailableCalls.insert( |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 588 | Inst, std::pair<Value *, unsigned>(Inst, CurrentGeneration)); |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 589 | continue; |
| 590 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 591 | |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 592 | // Okay, this isn't something we can CSE at all. Check to see if it is |
| 593 | // something that could modify memory. If so, our available memory values |
| 594 | // cannot be used so bump the generation count. |
Chris Lattner | e0e32a9 | 2011-01-03 03:46:34 +0000 | [diff] [blame] | 595 | if (Inst->mayWriteToMemory()) { |
Chris Lattner | b9a8efc | 2011-01-03 03:18:43 +0000 | [diff] [blame] | 596 | ++CurrentGeneration; |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 597 | |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 598 | if (MemInst.isValid() && MemInst.isStore()) { |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 599 | // We do a trivial form of DSE if there are two stores to the same |
| 600 | // location with no intervening loads. Delete the earlier store. |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 601 | if (LastStore) { |
| 602 | ParseMemoryInst LastStoreMemInst(LastStore, TTI); |
| 603 | if (LastStoreMemInst.isMatchingMemLoc(MemInst)) { |
| 604 | DEBUG(dbgs() << "EarlyCSE DEAD STORE: " << *LastStore |
| 605 | << " due to: " << *Inst << '\n'); |
| 606 | LastStore->eraseFromParent(); |
| 607 | Changed = true; |
| 608 | ++NumDSE; |
| 609 | LastStore = nullptr; |
| 610 | } |
Philip Reames | 018dbf1 | 2014-11-18 17:46:32 +0000 | [diff] [blame] | 611 | // fallthrough - we can exploit information about this store |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 612 | } |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 613 | |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 614 | // Okay, we just invalidated anything we knew about loaded values. Try |
| 615 | // to salvage *something* by remembering that the stored value is a live |
| 616 | // version of the pointer. It is safe to forward from volatile stores |
| 617 | // to non-volatile loads, so we don't have to check for volatility of |
| 618 | // the store. |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 619 | AvailableLoads.insert(MemInst.getPtr(), std::pair<Value *, unsigned>( |
| 620 | Inst, CurrentGeneration)); |
Nadav Rotem | 465834c | 2012-07-24 10:51:42 +0000 | [diff] [blame] | 621 | |
Chris Lattner | 9e5e9ed | 2011-01-03 04:17:24 +0000 | [diff] [blame] | 622 | // Remember that this was the last store we saw for DSE. |
Chad Rosier | f9327d6 | 2015-01-26 22:51:15 +0000 | [diff] [blame] | 623 | if (!MemInst.isVolatile()) |
| 624 | LastStore = Inst; |
Chris Lattner | e0e32a9 | 2011-01-03 03:46:34 +0000 | [diff] [blame] | 625 | } |
| 626 | } |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 627 | } |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 628 | |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 629 | return Changed; |
Chris Lattner | 704541b | 2011-01-02 21:47:05 +0000 | [diff] [blame] | 630 | } |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 631 | |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 632 | bool EarlyCSE::run() { |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 633 | // Note, deque is being used here because there is significant performance |
| 634 | // gains over vector when the container becomes very large due to the |
| 635 | // specific access patterns. For more information see the mailing list |
| 636 | // discussion on this: |
Lenny Maiorani | 9eefc81 | 2014-09-20 13:29:20 +0000 | [diff] [blame] | 637 | // http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20120116/135228.html |
| 638 | std::deque<StackNode *> nodesToProcess; |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 639 | |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 640 | bool Changed = false; |
| 641 | |
| 642 | // Process the root node. |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 643 | nodesToProcess.push_back(new StackNode( |
| 644 | AvailableValues, AvailableLoads, AvailableCalls, CurrentGeneration, |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 645 | DT.getRootNode(), DT.getRootNode()->begin(), DT.getRootNode()->end())); |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 646 | |
| 647 | // Save the current generation. |
| 648 | unsigned LiveOutGeneration = CurrentGeneration; |
| 649 | |
| 650 | // Process the stack. |
| 651 | while (!nodesToProcess.empty()) { |
| 652 | // Grab the first item off the stack. Set the current generation, remove |
| 653 | // the node from the stack, and process it. |
Michael Gottesman | 2bf0173 | 2013-12-05 18:42:12 +0000 | [diff] [blame] | 654 | StackNode *NodeToProcess = nodesToProcess.back(); |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 655 | |
| 656 | // Initialize class members. |
| 657 | CurrentGeneration = NodeToProcess->currentGeneration(); |
| 658 | |
| 659 | // Check if the node needs to be processed. |
| 660 | if (!NodeToProcess->isProcessed()) { |
| 661 | // Process the node. |
| 662 | Changed |= processNode(NodeToProcess->node()); |
| 663 | NodeToProcess->childGeneration(CurrentGeneration); |
| 664 | NodeToProcess->process(); |
| 665 | } else if (NodeToProcess->childIter() != NodeToProcess->end()) { |
| 666 | // Push the next child onto the stack. |
| 667 | DomTreeNode *child = NodeToProcess->nextChild(); |
Michael Gottesman | 2bf0173 | 2013-12-05 18:42:12 +0000 | [diff] [blame] | 668 | nodesToProcess.push_back( |
Chandler Carruth | 7253bba | 2015-01-24 11:33:55 +0000 | [diff] [blame] | 669 | new StackNode(AvailableValues, AvailableLoads, AvailableCalls, |
| 670 | NodeToProcess->childGeneration(), child, child->begin(), |
| 671 | child->end())); |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 672 | } else { |
| 673 | // It has been processed, and there are no more children to process, |
| 674 | // so delete it and pop it off the stack. |
| 675 | delete NodeToProcess; |
Michael Gottesman | 2bf0173 | 2013-12-05 18:42:12 +0000 | [diff] [blame] | 676 | nodesToProcess.pop_back(); |
Lenny Maiorani | 8d670b8 | 2012-01-31 23:14:41 +0000 | [diff] [blame] | 677 | } |
| 678 | } // while (!nodes...) |
| 679 | |
| 680 | // Reset the current generation. |
| 681 | CurrentGeneration = LiveOutGeneration; |
| 682 | |
| 683 | return Changed; |
Chris Lattner | 18ae543 | 2011-01-02 23:04:14 +0000 | [diff] [blame] | 684 | } |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 685 | |
Chandler Carruth | e8c686a | 2015-02-01 10:51:23 +0000 | [diff] [blame] | 686 | PreservedAnalyses EarlyCSEPass::run(Function &F, |
| 687 | AnalysisManager<Function> *AM) { |
| 688 | const DataLayout *DL = F.getParent()->getDataLayout(); |
| 689 | |
| 690 | auto &TLI = AM->getResult<TargetLibraryAnalysis>(F); |
| 691 | auto &TTI = AM->getResult<TargetIRAnalysis>(F); |
| 692 | auto &DT = AM->getResult<DominatorTreeAnalysis>(F); |
| 693 | auto &AC = AM->getResult<AssumptionAnalysis>(F); |
| 694 | |
| 695 | EarlyCSE CSE(F, DL, TLI, TTI, DT, AC); |
| 696 | |
| 697 | if (!CSE.run()) |
| 698 | return PreservedAnalyses::all(); |
| 699 | |
| 700 | // CSE preserves the dominator tree because it doesn't mutate the CFG. |
| 701 | // FIXME: Bundle this with other CFG-preservation. |
| 702 | PreservedAnalyses PA; |
| 703 | PA.preserve<DominatorTreeAnalysis>(); |
| 704 | return PA; |
| 705 | } |
| 706 | |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 707 | namespace { |
| 708 | /// \brief A simple and fast domtree-based CSE pass. |
| 709 | /// |
| 710 | /// This pass does a simple depth-first walk over the dominator tree, |
| 711 | /// eliminating trivially redundant instructions and using instsimplify to |
| 712 | /// canonicalize things as it goes. It is intended to be fast and catch obvious |
| 713 | /// cases so that instcombine and other passes are more effective. It is |
| 714 | /// expected that a later pass of GVN will catch the interesting/hard cases. |
| 715 | class EarlyCSELegacyPass : public FunctionPass { |
| 716 | public: |
| 717 | static char ID; |
| 718 | |
| 719 | EarlyCSELegacyPass() : FunctionPass(ID) { |
| 720 | initializeEarlyCSELegacyPassPass(*PassRegistry::getPassRegistry()); |
| 721 | } |
| 722 | |
| 723 | bool runOnFunction(Function &F) override { |
| 724 | if (skipOptnoneFunction(F)) |
| 725 | return false; |
| 726 | |
| 727 | DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>(); |
| 728 | auto *DL = DLP ? &DLP->getDataLayout() : nullptr; |
| 729 | auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(); |
Chandler Carruth | fdb9c57 | 2015-02-01 12:01:35 +0000 | [diff] [blame] | 730 | auto &TTI = getAnalysis<TargetTransformInfoWrapperPass>().getTTI(F); |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 731 | auto &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); |
| 732 | auto &AC = getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F); |
| 733 | |
| 734 | EarlyCSE CSE(F, DL, TLI, TTI, DT, AC); |
| 735 | |
| 736 | return CSE.run(); |
| 737 | } |
| 738 | |
| 739 | void getAnalysisUsage(AnalysisUsage &AU) const override { |
| 740 | AU.addRequired<AssumptionCacheTracker>(); |
| 741 | AU.addRequired<DominatorTreeWrapperPass>(); |
| 742 | AU.addRequired<TargetLibraryInfoWrapperPass>(); |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 743 | AU.addRequired<TargetTransformInfoWrapperPass>(); |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 744 | AU.setPreservesCFG(); |
| 745 | } |
| 746 | }; |
| 747 | } |
| 748 | |
| 749 | char EarlyCSELegacyPass::ID = 0; |
| 750 | |
| 751 | FunctionPass *llvm::createEarlyCSEPass() { return new EarlyCSELegacyPass(); } |
| 752 | |
| 753 | INITIALIZE_PASS_BEGIN(EarlyCSELegacyPass, "early-cse", "Early CSE", false, |
| 754 | false) |
Chandler Carruth | 705b185 | 2015-01-31 03:43:40 +0000 | [diff] [blame] | 755 | INITIALIZE_PASS_DEPENDENCY(TargetTransformInfoWrapperPass) |
Chandler Carruth | d649c0a | 2015-01-27 01:34:14 +0000 | [diff] [blame] | 756 | INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) |
| 757 | INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) |
| 758 | INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) |
| 759 | INITIALIZE_PASS_END(EarlyCSELegacyPass, "early-cse", "Early CSE", false, false) |